[
  {
    "path": ".gitattributes",
    "content": "sqlite3_web/benchmark/sql/* -linguist-detectable\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: \"github-actions\"\n    directory: \"/\"\n    schedule:\n      interval: weekly\n    groups:\n      all-github-actions:\n        patterns:\n          - \"*\"\n  - package-ecosystem: \"pub\"\n    versioning-strategy: \"increase-if-necessary\"\n    directory: \"/\"\n    schedule:\n      interval: \"weekly\"\n    groups:\n      all-pub-dependencies:\n        patterns:\n          - \"*\"\n"
  },
  {
    "path": ".github/workflows/compile_sqlite.yml",
    "content": "name: Download and compile SQLite\n\non:\n  workflow_call:\n    outputs:\n      artifact_id:\n        description: \"ID of the artifact containing prebuilt SQLite libraries\"\n        value: ${{ jobs.merge_assets.outputs.sqlite_merged }}\n      pool_libs_artifact_id:\n        description: \"ID of the artifact containing libraries for sqlite3_connection_pool\"\n        value: ${{ jobs.merge_assets.outputs.pool_libs }}\n      sanitized_artifact_id:\n        description: \"ID of the artifact containing libraries compiled with sanitizers\"\n        value: ${{ jobs.build_with_sanitizers.outputs.libs }}\n\njobs:\n  download_sqlite:\n    runs-on: ubuntu-latest\n    name: Download SQLite sources\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/cache@v5\n        id: cache_build\n        with:\n          path: sqlite-src/\n          key: sqlite-src-${{ hashFiles('tool/download_sqlite.dart') }}\n\n      - uses: dart-lang/setup-dart@v1\n        if: steps.cache_build.outputs.cache-hit != 'true'\n\n      - name: Download sqlite3\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        run: |\n          dart run tool/download_sqlite.dart\n\n      - name: Upload sqlite3 sources\n        uses: actions/upload-artifact@v7\n        with:\n          name: sqlite-src\n          path: sqlite-src/\n          if-no-files-found: error\n          retention-days: 1\n\n  build_sqlite:\n    needs: [download_sqlite]\n    strategy:\n      matrix:\n        os: [ubuntu-latest, macos-latest, windows-latest]\n\n    runs-on: ${{ matrix.os }}\n    name: Compile sqlite3\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/cache@v5\n        id: cache_build\n        with:\n          path: sqlite-compiled\n          key: sqlite-prebuilt-${{ runner.os }}-${{ hashFiles('tool/**', 'sqlite3/lib/src/hook/description.dart', 'sqlite3/lib/src/hook/used_symbols.dart') }}\n\n      - name: Download sqlite3 sources\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        uses: actions/download-artifact@v8\n        with:\n          name: sqlite-src\n          path: sqlite-src\n\n      - uses: dart-lang/setup-dart@v1\n        if: steps.cache_build.outputs.cache-hit != 'true'\n\n      - name: Install cross-compiling GCC\n        shell: bash\n        if: runner.os == 'Linux' && steps.cache_build.outputs.cache-hit != 'true'\n        run: |\n          sudo apt update\n          sudo apt install -y gcc-aarch64-linux-gnu gcc-riscv64-linux-gnu gcc-arm-linux-gnueabihf gcc-i686-linux-gnu\n\n      - name: Compile sqlite3\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        run: |\n          dart pub get\n          dart run tool/build_sqlite.dart\n\n      - name: Upload sqlite3 binaries\n        uses: actions/upload-artifact@v7\n        with:\n          name: sqlite3-libs-${{ runner.os }}\n          path: sqlite-compiled\n          if-no-files-found: error\n          retention-days: 1\n\n  build_with_sanitizers:\n    needs: [download_sqlite]\n    runs-on: ubuntu-latest\n    outputs:\n      libs: ${{ steps.upload.outputs.artifact-id }}\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/cache@v5\n        id: cache_build\n        with:\n          path: sqlite-sanitized\n          key: sqlite-sanitizers-${{ runner.os }}-${{ hashFiles('tool/**', 'sqlite3/lib/src/hook/description.dart', 'sqlite3_connection_pool/src/**') }}\n      - name: Download sqlite3 sources\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        uses: actions/download-artifact@v8\n        with:\n          name: sqlite-src\n          path: sqlite-src\n\n      - uses: dart-lang/setup-dart@v1\n        if: steps.cache_build.outputs.cache-hit != 'true'\n\n      - uses: dtolnay/rust-toolchain@stable\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        with:\n          toolchain: nightly\n          components: rust-src\n\n      - name: Install LLVM toolchain\n        shell: bash\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        run: |\n          sudo apt update\n          sudo apt install -y llvm clang lld\n\n      - name: Compile sqlite3\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        run: |\n          dart pub get\n          dart run tool/build_with_sanitizers.dart\n\n      - name: Compile pool libraries\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        working-directory: sqlite3_connection_pool\n        run: ./tool/build_linux_sanitizer.sh\n\n      - name: Upload binaries\n        uses: actions/upload-artifact@v7\n        id: upload\n        with:\n          name: sqlite3-sanitized\n          path: sqlite-sanitized\n          if-no-files-found: error\n          retention-days: 1\n\n  compile_wasm:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/cache@v5\n        id: cache_build\n        with:\n          path: sqlite3_wasm_build/out/\n          key: sqlite-prebuilt-wasm-${{ hashFiles('sqlite3_wasm_build/src/**') }}\n\n      # clang 18 that ships on ubuntu crashes when compiling the wasm sources\n      - name: Install LLVM and Clang\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        uses: KyleMayes/install-llvm-action@v2.0.9\n        with:\n          version: \"21\"\n\n      - name: Download WASI SDK\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        run: |\n          ls -al ${{ env.LLVM_PATH }}\n\n          curl -L https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-27/wasi-sdk-27.0-x86_64-linux.deb -o wasi-sdk.deb\n          sudo dpkg -i wasi-sdk.deb\n          sudo mkdir /usr/lib/llvm-18/lib/clang/18/lib/wasi\n          sudo cp -r /opt/wasi-sdk/lib/clang/20/lib/* ${{ env.LLVM_PATH }}/lib/clang/21/lib/\n\n          curl -L https://github.com/WebAssembly/binaryen/releases/download/version_124/binaryen-version_124-x86_64-linux.tar.gz -o binaryen.tar.gz\n          tar --extract --gzip --file binaryen.tar.gz\n          sudo mv binaryen-version_124/bin/* /usr/local/bin\n\n      - uses: dart-lang/setup-dart@v1\n        if: steps.cache_build.outputs.cache-hit != 'true'\n\n      - name: Compile WASM binaries\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        working-directory: sqlite3_wasm_build/\n        run: |\n          cmake -Dwasi_sysroot=/opt/wasi-sdk/share/wasi-sysroot/ -S src -B .dart_tool/sqlite_build\n          cmake --build .dart_tool/sqlite_build/ -t output -j\n\n      - name: Upload sqlite3 binaries\n        uses: actions/upload-artifact@v7\n        with:\n          name: sqlite3-libs-wasm\n          path: sqlite3_wasm_build/out/\n          if-no-files-found: error\n          retention-days: 1\n\n  compile_pool_linux_android:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/cache@v5\n        id: cache_build\n        with:\n          path: sqlite3_connection_pool/out\n          key: pool-helper-${{ runner.os }}-${{ hashFiles('sqlite3_connection_pool/src/**', 'sqlite3_connection_pool/Cargo.toml', 'sqlite3_connection_pool/.cargo/**') }}\n      - uses: dtolnay/rust-toolchain@stable\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        with:\n          toolchain: nightly\n          components: rust-src\n          targets: aarch64-unknown-linux-gnu,x86_64-unknown-linux-gnu,riscv64gc-unknown-linux-gnu,armv7-unknown-linux-gnueabihf,aarch64-linux-android,armv7-linux-androideabi,x86_64-linux-android\n      - run: cargo install cargo-ndk\n        if: steps.cache_build.outputs.cache-hit != 'true'\n      - name: Install cross-compiling GCC\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        run: |\n          sudo apt update\n          sudo apt install -y gcc-aarch64-linux-gnu gcc-riscv64-linux-gnu gcc-arm-linux-gnueabihf\n\n      - name: Build for Linux\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        working-directory: sqlite3_connection_pool\n        run: |\n          rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu\n          ./tool/build_linux.sh\n      - name: Build Android libs\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        working-directory: sqlite3_connection_pool\n        env:\n          RUSTFLAGS: \"-Zlocation-detail=none -Zfmt-debug=none -Zunstable-options -Cpanic=immediate-abort\"\n        run: cargo +nightly ndk -t armeabi-v7a -t arm64-v8a -t x86_64 -o target/android build --release -Zbuild-std=std,panic_abort -Zbuild-std-features=\n\n      - name: Copy libraries\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        working-directory: sqlite3_connection_pool\n        run: |\n          mkdir out\n          cp target/x86_64-unknown-linux-gnu/release/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.linux_x64.so\n          cp target/aarch64-unknown-linux-gnu/release/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.linux_aarch64.so\n          cp target/armv7-unknown-linux-gnueabihf/release/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.linux_arm7.so\n          cp target/riscv64gc-unknown-linux-gnu/release/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.linux_riscv.so\n\n          cp target/android/x86_64/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.android_x86_64.so\n          cp target/android/armeabi-v7a/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.android_v7a.so\n          cp target/android/arm64-v8a/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.android_v8a.so\n      - uses: actions/upload-artifact@v7\n        with:\n          name: connection-pool-linux\n          retention-days: 1\n          path: sqlite3_connection_pool/out\n\n  compile_pool_apple:\n    runs-on: macos-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/cache@v5\n        id: cache_build\n        with:\n          path: sqlite3_connection_pool/out\n          key: pool-helper-${{ runner.os }}-${{ hashFiles('sqlite3_connection_pool/src/**', 'sqlite3_connection_pool/Cargo.toml', 'sqlite3_connection_pool/.cargo/**') }}\n      - uses: dtolnay/rust-toolchain@stable\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        with:\n          toolchain: nightly\n          components: rust-src\n          targets: x86_64-apple-darwin,aarch64-apple-darwin\n      - name: Build for macOS and iOS\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        working-directory: sqlite3_connection_pool\n        run: |\n          rustup component add rust-src --toolchain nightly-aarch64-apple-darwin\n          ./tool/build_apple.sh\n      - name: Copy libraries\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        working-directory: sqlite3_connection_pool\n        run: |\n          mkdir out\n          cp target/x86_64-apple-darwin/release/libsqlite3_connection_pool.dylib out/libsqlite3_connection_pool.macos_x64.dylib\n          cp target/aarch64-apple-darwin/release/libsqlite3_connection_pool.dylib out/libsqlite3_connection_pool.macos_aarch64.dylib\n\n          cp target/aarch64-apple-ios/release/libsqlite3_connection_pool.dylib out/libsqlite3_connection_pool.ios_aarch64.dylib\n          cp target/aarch64-apple-ios-sim/release/libsqlite3_connection_pool.dylib out/libsqlite3_connection_pool.ios_sim_aarch64.dylib\n          cp target/x86_64-apple-ios/release/libsqlite3_connection_pool.dylib out/libsqlite3_connection_pool.ios_sim_x64.dylib\n      - uses: actions/upload-artifact@v7\n        with:\n          name: connection-pool-apple\n          retention-days: 1\n          path: sqlite3_connection_pool/out\n\n  compile_pool_windows:\n    runs-on: windows-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/cache@v5\n        id: cache_build\n        with:\n          path: sqlite3_connection_pool/out\n          key: pool-helper-${{ runner.os }}-${{ hashFiles('sqlite3_connection_pool/src/**', 'sqlite3_connection_pool/Cargo.toml', 'sqlite3_connection_pool/.cargo/**') }}\n      - uses: dtolnay/rust-toolchain@stable\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        with:\n          toolchain: nightly\n          components: rust-src\n          targets: x86_64-pc-windows-msvc,aarch64-pc-windows-msvc\n      - name: Build for Windows\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        working-directory: sqlite3_connection_pool\n        env:\n          toolchain: nightly\n          components: rust-src\n          RUSTFLAGS: \"-Zlocation-detail=none -Zfmt-debug=none -Zunstable-options -Cpanic=immediate-abort\"\n        run: |\n          rustup component add rust-src --toolchain nightly-x86_64-pc-windows-msvc\n          cargo +nightly build --release -Z build-std=std,panic_abort -Z build-std-features= --target x86_64-pc-windows-msvc\n          cargo +nightly build --release -Z build-std=std,panic_abort -Z build-std-features= --target aarch64-pc-windows-msvc\n      - name: Copy libraries\n        if: steps.cache_build.outputs.cache-hit != 'true'\n        working-directory: sqlite3_connection_pool\n        run: |\n          mkdir out\n          cp target/x86_64-pc-windows-msvc/release/sqlite3_connection_pool.dll out/sqlite3_connection_pool.win_x64.dll\n          cp target/aarch64-pc-windows-msvc/release/sqlite3_connection_pool.dll out/sqlite3_connection_pool.win_aarch64.dll\n      - uses: actions/upload-artifact@v7\n        with:\n          name: connection-pool-windows\n          retention-days: 1\n          path: sqlite3_connection_pool/out\n\n  merge_assets:\n    runs-on: ubuntu-latest\n    needs:\n      - build_sqlite\n      - compile_wasm\n      - compile_pool_linux_android\n      - compile_pool_apple\n      - compile_pool_windows\n    name: Merge prebuilt libraries into single directory\n    outputs:\n      sqlite_merged: ${{ steps.upload.outputs.artifact-id }}\n      pool_libs: ${{ steps.upload_pool.outputs.artifact-id }}\n\n    steps:\n      - uses: actions/checkout@v6\n\n      - uses: actions/download-artifact@v8\n        with:\n          path: out/\n          merge-multiple: true\n          pattern: sqlite3-libs-*\n\n      - uses: actions/download-artifact@v8\n        with:\n          path: sqlite3_connection_pool/lib/src/precompiled\n          merge-multiple: true\n          pattern: connection-pool-*\n\n      - run: ls -al out/\n      - run: ls -al sqlite3_connection_pool/lib/src/precompiled/\n\n      - name: Upload sqlite3 binaries\n        uses: actions/upload-artifact@v7\n        id: upload\n        with:\n          name: sqlite3-precompiled\n          path: out/\n          if-no-files-found: error\n          retention-days: 1\n\n      - name: Upload pool helper binaries\n        uses: actions/upload-artifact@v7\n        id: upload_pool\n        with:\n          name: connection-pool-libs\n          path: sqlite3_connection_pool/lib/src/precompiled/\n          if-no-files-found: error\n          retention-days: 1\n"
  },
  {
    "path": ".github/workflows/main.yml",
    "content": "name: CI\n\non:\n  push:\n    branches: ['**']\n  pull_request:\n    branches: [ main ]\n\njobs:\n  fetch_sqlite:\n    if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)\n    uses: ./.github/workflows/compile_sqlite.yml\n\n  analyze:\n    if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)\n    timeout-minutes: 5\n    strategy:\n      matrix:\n        dart: [stable]\n\n    name: Analyze ${{ matrix.package }}\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v6\n    - uses: dart-lang/setup-dart@v1\n      with:\n        sdk: ${{ matrix.dart }}\n    - uses: actions/cache@v5\n      with:\n        path: \"${{ env.PUB_CACHE }}\"\n        key: dart-dependencies-${{ matrix.dart }}-${{ runner.os }}\n        restore-keys: |\n          dart-dependencies-${{ matrix.dart }}-\n          dart-dependencies-\n\n    - name: Pub get\n      run: dart pub get\n\n    - name: Format dart\n      run: |\n        dart format --set-exit-if-changed sqlite3\n        dart format --set-exit-if-changed sqlite3_test\n        dart format --set-exit-if-changed sqlite3_web\n\n    - name: Format native\n      run: clang-format --Werror --dry-run --style=google assets/*.h\n      working-directory: sqlite3\n\n    - name: Format native\n      run: clang-format --Werror --dry-run --style=google src/*{.h,.c}\n      working-directory: sqlite3_wasm_build\n\n    - name: Analyze\n      run: dart analyze --fatal-infos sqlite3 sqlite3_web sqlite3_test\n\n  test:\n    if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)\n    timeout-minutes: 5\n    needs: [analyze, fetch_sqlite]\n    strategy:\n      matrix:\n        os: [ubuntu-latest, windows-latest, macos-latest]\n        dart: [stable, dev]\n\n    name: Unit tests with Dart ${{ matrix.dart }} on ${{ matrix.os }}\n    runs-on: ${{ matrix.os }}\n\n    steps:\n    - uses: actions/checkout@v6\n    - uses: dart-lang/setup-dart@v1\n      with:\n        sdk: ${{ matrix.dart }}\n    - name: Download compiled sqlite3\n      uses: actions/download-artifact@v8\n      with:\n        artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }}\n        path: sqlite-compiled\n    - name: Download connection pool libraries\n      uses: actions/download-artifact@v8\n      with:\n        artifact-ids: ${{ needs.fetch_sqlite.outputs.pool_libs_artifact_id }}\n        path: sqlite3_connection_pool/lib/src/precompiled/\n    - name: Download libraries compiled with sanitizers\n      uses: actions/download-artifact@v8\n      with:\n        artifact-ids: ${{ needs.fetch_sqlite.outputs.sanitized_artifact_id }}\n        path: sqlite-sanitized/\n\n    - uses: actions/cache@v5\n      with:\n        path: \"${{ env.PUB_CACHE }}\"\n        key: dart-dependencies-${{ matrix.dart }}-${{ runner.os }}\n        restore-keys: |\n          dart-dependencies-${{ matrix.dart }}-\n          dart-dependencies-\n    - name: Get Dart dependencies\n      run: |\n        dart pub get\n    - name: Write asset hashes\n      run: dart run tool/write_asset_hashes.dart\n\n    - name: Prepare for tests with pre-compiled SQLite\n      run: |\n        dart run tool/hook_overrides.dart compiled\n    - name: Test sqlite3 package\n      run: |\n        dart test --test-randomize-ordering-seed \"random\" -P ci\n      working-directory: sqlite3/\n    - name: Test sqlite3_connection_pool package\n      run: |\n        dart test\n      working-directory: sqlite3_connection_pool/\n    - name: Test sqlite3_test package\n      run: dart test\n      if: ${{ runner.os != 'windows' }} # TODO: Investigate crashes on Windows\n      working-directory: sqlite3_test/\n    - name: Test extension example\n      run: dart test\n      working-directory: sqlite3/example/custom_extension\n    - name: Run tests with AOT executable\n      run: dart run run.dart\n      working-directory: native_tests/\n    - name: Run tests AddressSanitizer and MemorySanitizer\n      if: runner.os == 'Linux'\n      run: |\n        dart run.dart --sanitizer=asan\n        dart run.dart --sanitizer=msan\n        dart run.dart --sanitizer=tsan\n      working-directory: native_tests/\n\n    - name: Enable sqlite3mc\n      run: |\n        dart run tool/hook_overrides.dart compiled-ciphers\n    - name: Test sqlite3 package with sqlite3mc\n      run: |\n        dart test --test-randomize-ordering-seed \"random\" -P ci\n      working-directory: sqlite3/\n\n    - name: Prepare for tests with system SQLite\n      run: |\n        dart run tool/hook_overrides.dart system-os-specific\n    - name: Test sqlite3 package\n      run: |\n        dart test --test-randomize-ordering-seed \"random\" -P ci\n      working-directory: sqlite3/\n    - name: Test sqlite3_connection_pool package\n      run: |\n        dart test\n      working-directory: sqlite3_connection_pool/\n    - name: Test sqlite3_test package\n      run: dart test\n      if: ${{ runner.os != 'windows' }} # TODO: Investigate crashes on Windows\n      working-directory: sqlite3_test/\n\n    - name: Web tests\n      run: |\n        cp ../sqlite-compiled/*.wasm example/web\n        dart test -P web -r expanded\n      # If browsers behave differently on different platforms, surely that's not our fault...\n      # So, only run browser tests on Linux to be faster.\n      if: runner.os == 'Linux'\n      working-directory: sqlite3/\n\n  upload_asset_hashes:\n    if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)\n    timeout-minutes: 5\n    needs: [test, fetch_sqlite]\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v6\n    - uses: dart-lang/setup-dart@v1\n    - name: Download compiled sqlite3\n      uses: actions/download-artifact@v8\n      with:\n        artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }}\n        path: sqlite-compiled\n    - uses: actions/cache@v5\n      with:\n        path: \"${{ env.PUB_CACHE }}\"\n        key: dart-dependencies-beta-${{ runner.os }}\n        restore-keys: |\n          dart-dependencies-beta-\n          dart-dependencies-\n    - name: Get Dart dependencies\n      run: |\n        dart pub get\n    - name: Write asset hashes\n      run: dart run tool/write_asset_hashes.dart\n    - name: Upload asset hashes\n      uses: actions/upload-artifact@v7\n      id: upload\n      with:\n        name: asset-hashes\n        path: sqlite3/lib/src/hook/asset_hashes.dart\n        if-no-files-found: error\n        retention-days: 1\n\n  integration_test_web:\n    if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)\n    timeout-minutes: 10\n    needs: [analyze, fetch_sqlite]\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: dart-lang/setup-dart@v1\n      - name: Download compiled sqlite3\n        uses: actions/download-artifact@v8\n        with:\n          artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }}\n          path: sqlite-compiled\n      - uses: actions/cache@v5\n        with:\n          path: \"${{ env.PUB_CACHE }}\"\n          key: dart-dependencies-${{ matrix.dart }}-${{ runner.os }}\n          restore-keys: |\n            dart-dependencies-${{ matrix.dart }}-\n            dart-dependencies-\n\n      - name: Prepare for tests\n        run: |\n          dart run tool/write_asset_hashes.dart\n          dart run tool/hook_overrides.dart compiled\n      - name: Web tests\n        run: |\n          cp ../sqlite-compiled/*.wasm web/\n          dart pub get\n          dart test -P gh_actions -r expanded\n        working-directory: sqlite3_web\n\n# The integration tests for android are currently broken (the emulator doesn't want to\n# start up...)\n#\n#  integration_test_android:\n#    runs-on: macos-latest\n#    needs: [test]\n#    strategy:\n#      matrix:\n#        test:\n#          - flutter_libs\n#          - sqlcipher_flutter\n#    steps:\n#      - uses: actions/checkout@v6\n#      - uses: subosito/flutter-action@v2\n#        with:\n#          channel: dev\n#      - name: pub get\n#        working-directory: \"integration_tests/${{ matrix.test }}\"\n#        run: flutter pub get\n#\n#      - name: run tests\n#        uses: reactivecircus/android-emulator-runner@v2\n#        with:\n#          api-level: 29\n#          script: flutter test integration_test\n#          working-directory: \"integration_tests/${{ matrix.test }}\"\n\n  # Shamelessly stolen from https://medium.com/flutter-community/run-flutter-driver-tests-on-github-actions-13c639c7e4ab\n\n  integration_test:\n    if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)\n    strategy:\n      matrix:\n        runner: [ubuntu-latest, macos-latest]\n    needs: [test, fetch_sqlite]\n    runs-on: ${{ matrix.runner }}\n    timeout-minutes: 30\n    env:\n      AVD_NAME: ubuntu-avd-x86_64-34\n    steps:\n      - name: List simulators\n        if: runner.os == 'macos'\n        run: \"xcrun xctrace list devices\"\n\n      - name: Start simulator\n        if: runner.os == 'macos'\n        run: |\n          IPHONE=$(xcrun xctrace list devices  2>&1 | grep -m 1 \"iPhone\" | awk -F'[()]' '{print $4}')\n          xcrun simctl boot $IPHONE\n\n      - uses: actions/checkout@v6\n      - uses: subosito/flutter-action@v2\n\n      - name: Flutter version\n        run: flutter --version\n\n      - name: Setup runner\n        if: runner.os == 'linux'\n        # https://github.com/ReactiveCircus/android-emulator-runner?tab=readme-ov-file#usage--examples\n        run: |\n          sudo apt-get update\n          sudo apt-get install -y cmake ninja-build pkg-config libgtk-3-dev libstdc++-12-dev\n          echo 'KERNEL==\"kvm\", GROUP=\"kvm\", MODE=\"0666\", OPTIONS+=\"static_node=kvm\"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules\n          sudo udevadm control --reload-rules\n          sudo udevadm trigger --name-match=kvm\n\n      - name: AVD Cache\n        uses: actions/cache@v5\n        id: avd-cache\n        if: runner.os == 'linux'\n        with:\n          path: |\n            ~/.android/avd/*\n            ~/.android/adb*\n          key: avd-35\n\n      - name: Download compiled sqlite3\n        uses: actions/download-artifact@v8\n        with:\n          artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }}\n          path: sqlite-compiled\n      - name: Download connection pool libraries\n        uses: actions/download-artifact@v8\n        with:\n          artifact-ids: ${{ needs.fetch_sqlite.outputs.pool_libs_artifact_id }}\n          path: sqlite3_connection_pool/lib/src/precompiled/\n\n      - uses: actions/cache@v5\n        with:\n          path: \"${{ env.PUB_CACHE }}\"\n          key: dart-dependencies-${{ matrix.dart }}-${{ runner.os }}\n          restore-keys: |\n            dart-dependencies-${{ matrix.dart }}-\n            dart-dependencies-\n\n      - name: Write asset hashes\n        run: |\n          dart pub get\n          dart run tool/write_asset_hashes.dart\n          dart run tool/hook_overrides.dart compiled\n\n      - name: Flutter sqlite3 tests on macOS\n        if: runner.os == 'macos'\n        working-directory: examples/flutter_integration_tests\n        run: |\n          flutter config --enable-swift-package-manager\n          flutter test integration_test\n          flutter test integration_test -d macos\n\n      - name: Flutter sqlite3 tests on Linux\n        if: false # runner.os == 'linux' currently broken in ci, can't reproduce locally or in Ubuntu VM\n        working-directory: examples/flutter_integration_tests\n        run: |\n          flutter test integration_test -d linux\n\n      - name: SQLite Android emulator tests\n        uses: reactivecircus/android-emulator-runner@v2\n        if: runner.os == 'linux'\n        with:\n          api-level: 34\n          force-avd-creation: false\n          target: google_apis\n          arch: x86_64\n          disable-animations: false\n          avd-name: $AVD_NAME\n          emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none\n          script: flutter test integration_test\n          working-directory: \"examples/flutter_integration_tests\"\n\n      - name: Enable sqlite3mc\n        run: |\n          dart run tool/hook_overrides.dart compiled-ciphers\n\n      - name: Flutter sqlite3mc tests on macOS\n        if: runner.os == 'macos'\n        working-directory: examples/flutter_integration_tests\n        run: |\n          flutter config --enable-swift-package-manager\n          flutter test integration_test -Dsqlite3.multipleciphers=true\n          flutter test integration_test -Dsqlite3.multipleciphers=true -d macos\n\n      - name: sqlite3mc Android emulator tests\n        uses: reactivecircus/android-emulator-runner@v2\n        if: runner.os == 'linux'\n        with:\n          api-level: 34\n          force-avd-creation: false\n          target: google_apis\n          arch: x86_64\n          disable-animations: false\n          avd-name: $AVD_NAME\n          emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none\n          script: flutter test integration_test -Dsqlite3.multipleciphers=true\n          working-directory: \"examples/flutter_integration_tests\"\n"
  },
  {
    "path": ".github/workflows/release.yml",
    "content": "name: Publish to pub.dev\n\non:\n  push:\n    tags:\n      - 'sqlite3-[0-9]+.[0-9]+.[0-9]+*'\n      - 'sqlite3_test-[0-9]+.[0-9]+.[0-9]+*'\n      - 'sqlite3_web-[0-9]+.[0-9]+.[0-9]+*'\n      - 'sqlite3_connection_pool-[0-9]+.[0-9]+.[0-9]+*'\n\njobs:\n  fetch_sqlite:\n    uses: ./.github/workflows/compile_sqlite.yml\n\n  prepare_release:\n    needs: [fetch_sqlite]\n    permissions:\n      packages: write\n      contents: write\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v6\n    - uses: dart-lang/setup-dart@v1\n    - name: Pub get\n      run: dart pub get\n    - name: Download compiled sqlite3\n      uses: actions/download-artifact@v8\n      with:\n        github-token: ${{ github.token }}\n        artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }}\n        path: sqlite-compiled\n    - name: Set tag name\n      if: \"${{ startsWith(github.ref_name, 'sqlite3-') }}\"\n      id: tag\n      run: |\n        tag=$(basename \"${{ github.ref }}\")\n        echo \"tag=$tag\" >> $GITHUB_OUTPUT\n\n    - name: Verify asset hashes\n      if: \"${{ startsWith(github.ref_name, 'sqlite3-') }}\"\n      run: dart run tool/write_asset_hashes.dart \"${{ steps.tag.outputs.tag }}\"\n    - name: List libraries\n      run: ls -al sqlite-compiled\n\n    - name: Create Release\n      if: \"${{ startsWith(github.ref_name, 'sqlite3-') }}\"\n      env:\n        GH_TOKEN: ${{ github.token }}\n        GH_REPO: ${{ github.repository }}\n      run: |\n        tag=\"${{ steps.tag.outputs.tag }}\"\n        body=\"Pending release for $tag\"\n        gh release create --draft \"$tag\" --title \"$tag\" --notes \"$body\"\n\n        gh release upload \"$tag\" sqlite-compiled/*\n\n  publish_sqlite3:\n    needs: [prepare_release]\n    permissions:\n      id-token: write\n    if: \"${{ startsWith(github.ref_name, 'sqlite3-') }}\"\n    uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1\n    with:\n      environment: 'pub.dev'\n      working-directory: sqlite3/\n\n  publish_sqlite3_test:\n    needs: [prepare_release]\n    permissions:\n      id-token: write\n    if: \"${{ startsWith(github.ref_name, 'sqlite3_test-') }}\"\n    uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1\n    with:\n      environment: 'pub.dev'\n      working-directory: sqlite3_test/\n\n  publish_sqlite3_web:\n    needs: [prepare_release]\n    permissions:\n      id-token: write\n    if: \"${{ startsWith(github.ref_name, 'sqlite3_web-') }}\"\n    uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1\n    with:\n      environment: 'pub.dev'\n      working-directory: sqlite3_web/\n\n  publish_sqlite3_connection_pool:\n    needs: [fetch_sqlite, prepare_release]\n    permissions:\n      id-token: write\n    if: \"${{ startsWith(github.ref_name, 'sqlite3_connection_pool-') }}\"\n    runs-on: ubuntu-latest\n    environment: 'pub.dev'\n    # This can't use the workflow because we need to download assets to include in\n    # the package.\n    steps:\n    - uses: actions/checkout@v6\n    - uses: dart-lang/setup-dart@v1 # This will request an OIDC token for pub.dev\n\n    - name: Download connection pool libraries\n      uses: actions/download-artifact@v8\n      with:\n        artifact-ids: ${{ needs.fetch_sqlite.outputs.pool_libs_artifact_id }}\n        path: sqlite3_connection_pool/lib/src/precompiled/\n\n    - name: Pub get\n      run: dart pub get\n    - name: Publish - dry run\n      run: dart pub publish --dry-run\n      working-directory: sqlite3_connection_pool\n    - name: Publish to pub.dev\n      run: dart pub publish -f\n      working-directory: sqlite3_connection_pool\n"
  },
  {
    "path": ".gitignore",
    "content": "\n# Created by https://www.toptal.com/developers/gitignore/api/flutter,dart\n# Edit at https://www.toptal.com/developers/gitignore?templates=flutter,dart\n\n### Dart ###\n# See https://www.dartlang.org/guides/libraries/private-files\n\n# Files and directories created by pub\n.dart_tool/\n.packages\nbuild/\n# If you're building an application, you may want to check-in your pubspec.lock\npubspec.lock\n\n# Directory created by dartdoc\n# If you don't generate documentation locally you can remove this line.\ndoc/api/\n\n# dotenv environment variables file\n.env*\n\n# Avoid committing generated Javascript files:\n*.dart.js\n*.info.json      # Produced by the --dump-info flag.\n*.js             # When generated by dart2js. Don't specify *.js if your\n                 # project includes source files written in JavaScript.\n*.js_\n*.js.deps\n*.js.map\n\n.flutter-plugins\n.flutter-plugins-dependencies\n\n### Dart Patch ###\n# dotenv environment variables file\n.env\n\n### Flutter ###\n# Flutter/Dart/Pub related\n**/doc/api/\n.fvm/\n.pub-cache/\n.pub/\ncoverage/\nlib/generated_plugin_registrant.dart\n# For library packages, don’t commit the pubspec.lock file.\n# Regenerating the pubspec.lock file lets you test your package against the latest compatible versions of its dependencies.\n# See https://dart.dev/guides/libraries/private-files#pubspeclock\n#pubspec.lock\n\n# Android related\n**/android/**/gradle-wrapper.jar\n**/android/.gradle\n**/android/captures/\n**/android/gradlew\n**/android/gradlew.bat\n**/android/key.properties\n**/.idea/\n*.iml\n**/android/local.properties\n**/android/**/GeneratedPluginRegistrant.java\n\n# iOS/XCode related\n**/ios/**/*.mode1v3\n**/ios/**/*.mode2v3\n**/ios/**/*.moved-aside\n**/ios/**/*.pbxuser\n**/ios/**/*.perspectivev3\n**/ios/**/*sync/\n**/ios/**/.sconsign.dblite\n**/ios/**/.tags*\n**/ios/**/.vagrant/\n**/ios/**/DerivedData/\n**/ios/**/Icon?\n**/ios/**/Pods/\n**/ios/**/.symlinks/\n**/ios/**/profile\n**/ios/**/xcuserdata\n**/ios/.generated/\n**/ios/Flutter/.last_build_id\n**/ios/Flutter/App.framework\n**/ios/Flutter/Flutter.framework\n**/ios/Flutter/Flutter.podspec\n**/ios/Flutter/Generated.xcconfig\n**/ios/Flutter/app.flx\n**/ios/Flutter/app.zip\n**/ios/Flutter/flutter_assets/\n**/ios/Flutter/flutter_export_environment.sh\n**/ios/ServiceDefinitions.json\n**/ios/Runner/GeneratedPluginRegistrant.*\n\n# Exceptions to above rules.\n!**/ios/**/default.mode1v3\n!**/ios/**/default.mode2v3\n!**/ios/**/default.pbxuser\n!**/ios/**/default.perspectivev3\n!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages\n\n# End of https://www.toptal.com/developers/gitignore/api/flutter,dart\n\n*.wasm\nsqlite-src\nsqlite-compiled\ntmp\n"
  },
  {
    "path": ".gitmodules",
    "content": "[submodule \"sqlite3_android\"]\n\tpath = sqlite3_android\n\turl = https://github.com/rodydavis/sqlite-native-libraries\n[submodule \"sqlite_swift_package\"]\n\tpath = sqlite_swift_package\n\turl = https://github.com/rodydavis/CSQLite\n"
  },
  {
    "path": ".vscode/settings.json",
    "content": "{\n    \"rust-analyzer.linkedProjects\": [\n        \"sqlite3/example/custom_wasm_build/Cargo.toml\"\n    ],\n    \"cSpell.words\": [\n        \"Patchset\"\n    ]\n}\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2020 Simon Binder\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "README.md",
    "content": "# sqlite3.dart\n\nThis project contains Dart packages to use SQLite from Dart via `dart:ffi`.\n\nThe main package in this repository is [`sqlite3`](sqlite3), which contains all the Dart apis and their implementation.\n`package:sqlite3` is a pure-Dart package without a dependency on Flutter.\nIt can be used both in Flutter apps or in standalone Dart applications.\n\n`package:sqlite3_test` contains utilities that make integrating SQLite databases into Dart tests easier.\nIn particular, they patch `CURRENT_TIMESTAMP` and related constructs to return the (potentially faked) time\nreturned by `package:clock`.\n\n`package:sqlite3_web` contains helpers for running SQLite on the web, including code to compile web workers\nthat help with the process.\n\n`package:sqlite3_connection_pool` provides an asynchronous connection pool for SQLite that works well across\nisolates.\n\n## Example Usage\n\nA file with basic usage examples for pure Dart can be found [here](sqlite3/example/main.dart).\n"
  },
  {
    "path": "UPGRADING_TO_V3.md",
    "content": "## Upgrading `package:sqlite3`.\n\nThis document collects notes on upgrading the `sqlite3` package from version\n2.x to version 3.x.\n\nFor almost all users, upgrading should be very simple:\n\n1. If you depend on `sqlite3_flutter_libs`, stop doing that.\n2. If you depend on `sqlcipher_flutter_libs`, stop doing that and read\n   [encryption](#encryption).\n3. Upgrade to `sqlite3: ^3.0.0`.\n4. Make sure you update your `sqlite3.wasm` by downloading it from the\n   [latest releases](https://github.com/simolus3/sqlite3.dart/releases).\n5. If you had `open.overrideFor` code to customize how SQLite is loaded, that needs\n   to be removed. The package exclusively uses hooks now.\n   This includes calls to `applyWorkaroundToOpenSqlite3OnOldAndroidVersions` which can\n   be removed after upgrading.\n\nVersion 3.x relies on [hooks](https://dart.dev/tools/hooks) to automatically bundle\na pre-compiled version of SQLite with your application. By default, these binaries\nare downloaded from the GitHub releases of this package.\nThis mechanism replaces the earlier scheme based on platform-specific build\nscripts.\n\nIf you want to compile SQLite yourself instead of relying on those downloaded\nbinaries, see [custom SQLite builds](#custom-sqlite-builds).\n\nAlso note that the build definition for `sqlite3.wasm` has changed. New sources\nare available in [sqlite3_wasm_build](./sqlite3_wasm_build/).\n\n## Encryption\n\nIf you've been using SQLCipher to use encrypted databases, note that SQLCipher is\nno longer available with version 3. However, a precompiled version of SQLite3MultipleCiphers\ncan easily be enabled by adding this to your pubspec:\n\n```yaml\nhooks:\n  user_defines:\n    sqlite3:\n      source: sqlite3mc\n```\n\nSQLite3MultipleCiphers should be compatible with existing databases created by SQLCipher when running the following statements from SQLite3MultipleCiphers:\n\n```\npragma cipher = 'sqlcipher';\npragma legacy = 4;\n\npragma key = '...your key...';\n```\n\nFor details, see [hook options](./sqlite3/doc/hook.md) and [sqlite3mc documentation](https://utelle.github.io/SQLite3MultipleCiphers/docs/ciphers/cipher_sqlcipher/).\n\n## Custom SQLite builds\n\nIf you want to customize the SQLite build for `package:sqlite3`, there are two options:\n\n1. Downloading `sqlite3.c` into your project and then following the \"Custom SQLite builds\"\n   section of [hook options](./sqlite3/doc/hook.md).\n2. Using external build scripts (such as SwiftPM or CMake) to statically link SQLite into your\n   Flutter application, and then following the \"Alternatives\" section of [hook options](./sqlite3/doc/hook.md).\n\nFor details, see [hook options](./sqlite3/doc/hook.md).\n\nIf these customization options don't meet your needs, please open an issue!\n"
  },
  {
    "path": "examples/flutter_integration_tests/.gitignore",
    "content": "# Miscellaneous\n*.class\n*.log\n*.pyc\n*.swp\n.DS_Store\n.atom/\n.build/\n.buildlog/\n.history\n.svn/\n.swiftpm/\nmigrate_working_dir/\n\n# IntelliJ related\n*.iml\n*.ipr\n*.iws\n.idea/\n\n# The .vscode folder contains launch configuration and tasks you configure in\n# VS Code which you may wish to be included in version control, so this line\n# is commented out by default.\n#.vscode/\n\n# Flutter/Dart/Pub related\n**/doc/api/\n**/ios/Flutter/.last_build_id\n.dart_tool/\n.flutter-plugins-dependencies\n.pub-cache/\n.pub/\n/build/\n/coverage/\n\n# Symbolication related\napp.*.symbols\n\n# Obfuscation related\napp.*.map.json\n\n# Android Studio will place build artifacts here\n/android/app/debug\n/android/app/profile\n/android/app/release\n"
  },
  {
    "path": "examples/flutter_integration_tests/.metadata",
    "content": "# This file tracks properties of this Flutter project.\n# Used by Flutter tool to assess capabilities and perform upgrades etc.\n#\n# This file should be version controlled and should not be manually edited.\n\nversion:\n  revision: \"465e421f53c05f8f33f83a243c10c55f9f6efbc2\"\n  channel: \"beta\"\n\nproject_type: app\n\n# Tracks metadata for the flutter migrate command\nmigration:\n  platforms:\n    - platform: root\n      create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n      base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n    - platform: android\n      create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n      base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n    - platform: ios\n      create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n      base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n    - platform: linux\n      create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n      base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n    - platform: macos\n      create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n      base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n    - platform: web\n      create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n      base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n    - platform: windows\n      create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n      base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2\n\n  # User provided section\n\n  # List of Local paths (relative to this file) that should be\n  # ignored by the migrate tool.\n  #\n  # Files that are not part of the templates will be ignored by default.\n  unmanaged_files:\n    - 'lib/main.dart'\n    - 'ios/Runner.xcodeproj/project.pbxproj'\n"
  },
  {
    "path": "examples/flutter_integration_tests/README.md",
    "content": "# flutter_integration_tests\n\nIntegration tests for the `sqlite3` package embedded Flutter projects.\n"
  },
  {
    "path": "examples/flutter_integration_tests/analysis_options.yaml",
    "content": "include: package:flutter_lints/flutter.yaml\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/.gitignore",
    "content": "gradle-wrapper.jar\n/.gradle\n/captures/\n/gradlew\n/gradlew.bat\n/local.properties\nGeneratedPluginRegistrant.java\n.cxx/\n\n# Remember to never publicly share your keystore.\n# See https://flutter.dev/to/reference-keystore\nkey.properties\n**/*.keystore\n**/*.jks\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/app/build.gradle.kts",
    "content": "plugins {\n    id(\"com.android.application\")\n    id(\"kotlin-android\")\n    // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.\n    id(\"dev.flutter.flutter-gradle-plugin\")\n}\n\nandroid {\n    namespace = \"com.example.flutter_integration_tests\"\n    compileSdk = flutter.compileSdkVersion\n    ndkVersion = flutter.ndkVersion\n\n    compileOptions {\n        sourceCompatibility = JavaVersion.VERSION_11\n        targetCompatibility = JavaVersion.VERSION_11\n    }\n\n    kotlinOptions {\n        jvmTarget = JavaVersion.VERSION_11.toString()\n    }\n\n    defaultConfig {\n        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).\n        applicationId = \"com.example.flutter_integration_tests\"\n        // You can update the following values to match your application needs.\n        // For more information, see: https://flutter.dev/to/review-gradle-config.\n        minSdk = flutter.minSdkVersion\n        targetSdk = flutter.targetSdkVersion\n        versionCode = flutter.versionCode\n        versionName = flutter.versionName\n    }\n\n    buildTypes {\n        release {\n            // TODO: Add your own signing config for the release build.\n            // Signing with the debug keys for now, so `flutter run --release` works.\n            signingConfig = signingConfigs.getByName(\"debug\")\n        }\n    }\n}\n\nflutter {\n    source = \"../..\"\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/app/src/debug/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <!-- The INTERNET permission is required for development. Specifically,\n         the Flutter tool needs it to communicate with the running application\n         to allow setting breakpoints, to provide hot reload, etc.\n    -->\n    <uses-permission android:name=\"android.permission.INTERNET\"/>\n</manifest>\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/app/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <application\n        android:label=\"flutter_integration_tests\"\n        android:name=\"${applicationName}\"\n        android:icon=\"@mipmap/ic_launcher\">\n        <activity\n            android:name=\".MainActivity\"\n            android:exported=\"true\"\n            android:launchMode=\"singleTop\"\n            android:taskAffinity=\"\"\n            android:theme=\"@style/LaunchTheme\"\n            android:configChanges=\"orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode\"\n            android:hardwareAccelerated=\"true\"\n            android:windowSoftInputMode=\"adjustResize\">\n            <!-- Specifies an Android theme to apply to this Activity as soon as\n                 the Android process has started. This theme is visible to the user\n                 while the Flutter UI initializes. After that, this theme continues\n                 to determine the Window background behind the Flutter UI. -->\n            <meta-data\n              android:name=\"io.flutter.embedding.android.NormalTheme\"\n              android:resource=\"@style/NormalTheme\"\n              />\n            <intent-filter>\n                <action android:name=\"android.intent.action.MAIN\"/>\n                <category android:name=\"android.intent.category.LAUNCHER\"/>\n            </intent-filter>\n        </activity>\n        <!-- Don't delete the meta-data below.\n             This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->\n        <meta-data\n            android:name=\"flutterEmbedding\"\n            android:value=\"2\" />\n    </application>\n    <!-- Required to query activities that can process text, see:\n         https://developer.android.com/training/package-visibility and\n         https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.\n\n         In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->\n    <queries>\n        <intent>\n            <action android:name=\"android.intent.action.PROCESS_TEXT\"/>\n            <data android:mimeType=\"text/plain\"/>\n        </intent>\n    </queries>\n</manifest>\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/app/src/main/kotlin/com/example/flutter_integration_tests/MainActivity.kt",
    "content": "package com.example.flutter_integration_tests\n\nimport io.flutter.embedding.android.FlutterActivity\n\nclass MainActivity : FlutterActivity()\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/app/src/main/res/drawable/launch_background.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Modify this file to customize your launch splash screen -->\n<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:drawable=\"@android:color/white\" />\n\n    <!-- You can insert your own image assets here -->\n    <!-- <item>\n        <bitmap\n            android:gravity=\"center\"\n            android:src=\"@mipmap/launch_image\" />\n    </item> -->\n</layer-list>\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/app/src/main/res/drawable-v21/launch_background.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Modify this file to customize your launch splash screen -->\n<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:drawable=\"?android:colorBackground\" />\n\n    <!-- You can insert your own image assets here -->\n    <!-- <item>\n        <bitmap\n            android:gravity=\"center\"\n            android:src=\"@mipmap/launch_image\" />\n    </item> -->\n</layer-list>\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/app/src/main/res/values/styles.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->\n    <style name=\"LaunchTheme\" parent=\"@android:style/Theme.Light.NoTitleBar\">\n        <!-- Show a splash screen on the activity. Automatically removed when\n             the Flutter engine draws its first frame -->\n        <item name=\"android:windowBackground\">@drawable/launch_background</item>\n    </style>\n    <!-- Theme applied to the Android Window as soon as the process has started.\n         This theme determines the color of the Android Window while your\n         Flutter UI initializes, as well as behind your Flutter UI while its\n         running.\n\n         This Theme is only used starting with V2 of Flutter's Android embedding. -->\n    <style name=\"NormalTheme\" parent=\"@android:style/Theme.Light.NoTitleBar\">\n        <item name=\"android:windowBackground\">?android:colorBackground</item>\n    </style>\n</resources>\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/app/src/main/res/values-night/styles.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->\n    <style name=\"LaunchTheme\" parent=\"@android:style/Theme.Black.NoTitleBar\">\n        <!-- Show a splash screen on the activity. Automatically removed when\n             the Flutter engine draws its first frame -->\n        <item name=\"android:windowBackground\">@drawable/launch_background</item>\n    </style>\n    <!-- Theme applied to the Android Window as soon as the process has started.\n         This theme determines the color of the Android Window while your\n         Flutter UI initializes, as well as behind your Flutter UI while its\n         running.\n\n         This Theme is only used starting with V2 of Flutter's Android embedding. -->\n    <style name=\"NormalTheme\" parent=\"@android:style/Theme.Black.NoTitleBar\">\n        <item name=\"android:windowBackground\">?android:colorBackground</item>\n    </style>\n</resources>\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/app/src/profile/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <!-- The INTERNET permission is required for development. Specifically,\n         the Flutter tool needs it to communicate with the running application\n         to allow setting breakpoints, to provide hot reload, etc.\n    -->\n    <uses-permission android:name=\"android.permission.INTERNET\"/>\n</manifest>\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/build.gradle.kts",
    "content": "allprojects {\n    repositories {\n        google()\n        mavenCentral()\n    }\n}\n\nval newBuildDir: Directory =\n    rootProject.layout.buildDirectory\n        .dir(\"../../build\")\n        .get()\nrootProject.layout.buildDirectory.value(newBuildDir)\n\nsubprojects {\n    val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)\n    project.layout.buildDirectory.value(newSubprojectBuildDir)\n}\nsubprojects {\n    project.evaluationDependsOn(\":app\")\n}\n\ntasks.register<Delete>(\"clean\") {\n    delete(rootProject.layout.buildDirectory)\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/gradle/wrapper/gradle-wrapper.properties",
    "content": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\nzipStoreBase=GRADLE_USER_HOME\nzipStorePath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributions/gradle-8.12-all.zip\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/gradle.properties",
    "content": "org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError\nandroid.useAndroidX=true\n"
  },
  {
    "path": "examples/flutter_integration_tests/android/settings.gradle.kts",
    "content": "pluginManagement {\n    val flutterSdkPath =\n        run {\n            val properties = java.util.Properties()\n            file(\"local.properties\").inputStream().use { properties.load(it) }\n            val flutterSdkPath = properties.getProperty(\"flutter.sdk\")\n            require(flutterSdkPath != null) { \"flutter.sdk not set in local.properties\" }\n            flutterSdkPath\n        }\n\n    includeBuild(\"$flutterSdkPath/packages/flutter_tools/gradle\")\n\n    repositories {\n        google()\n        mavenCentral()\n        gradlePluginPortal()\n    }\n}\n\nplugins {\n    id(\"dev.flutter.flutter-plugin-loader\") version \"1.0.0\"\n    id(\"com.android.application\") version \"8.9.1\" apply false\n    id(\"org.jetbrains.kotlin.android\") version \"2.1.0\" apply false\n}\n\ninclude(\":app\")\n"
  },
  {
    "path": "examples/flutter_integration_tests/integration_test/integration_test.dart",
    "content": "// ignore_for_file: avoid_print\n\nimport 'package:integration_test/integration_test.dart';\nimport 'package:flutter_test/flutter_test.dart';\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:sqlite3_connection_pool/sqlite3_connection_pool.dart';\n\nvoid main() {\n  IntegrationTestWidgetsFlutterBinding.ensureInitialized();\n\n  test('can open sqlite3', () {\n    print(sqlite3.version);\n\n    final db = sqlite3.openInMemory()..closeWhenDone();\n    print(db.select('pragma compile_options'));\n  });\n\n  test('pool smoke test', () async {\n    final pool = SqliteConnectionPool.open(\n      name: 'test-pool',\n      openConnections: () => PoolConnections(sqlite3.openInMemory(), []),\n    );\n\n    pool.execute('CREATE TABLE foo (bar TEXT)');\n    pool.close();\n  });\n\n  test('can open databases', () {\n    final db = sqlite3.openInMemory()\n      ..closeWhenDone()\n      ..execute('CREATE TABLE foo (bar)')\n      ..execute('INSERT INTO foo VALUES (1), (2)');\n\n    expect(db.select('SELECT * FROM foo'), [\n      {'bar': 1},\n      {'bar': 2},\n    ]);\n  });\n\n  test('has json support', () {\n    final db = sqlite3.openInMemory()..closeWhenDone();\n    expect(db.select(\"SELECT json('[1,  2, 3]') AS r;\"), [\n      {'r': '[1,2,3]'},\n    ]);\n  });\n\n  test('has fts5 support', () {\n    final db = sqlite3.openInMemory()..closeWhenDone();\n\n    db.execute('CREATE VIRTUAL TABLE foo USING fts5 (a,b,c);');\n  });\n\n  test('can create collation', () {\n    final db = sqlite3.openInMemory()\n      ..closeWhenDone()\n      ..execute('CREATE TABLE foo2 (bar)')\n      ..execute(\n        \"INSERT INTO foo2 VALUES ('AaAaaaAA'), ('BBBbBb'),('cCCCcc    '), ('  dD   ')\",\n      );\n\n    /// Create a collation to compare String without extra-blank to the right and\n    /// ignoring case\n    db.createCollation(\n      name: \"RTRIMNOCASE\",\n      function: (String? a, String? b) {\n        // Combining nocase and rtrim\n        //\n        String? compareA = a?.toLowerCase().trimRight();\n        String? compareB = b?.toLowerCase().trimRight();\n\n        if (compareA == null && compareB == null) {\n          return 0;\n        } else if (compareA == null) {\n          // a < b\n          return -1;\n        } else if (compareB == null) {\n          // a > b\n          return 1;\n        } else {\n          return compareA.compareTo(compareB);\n        }\n      },\n    );\n\n    expect(\n      db.select(\n        \"SELECT * FROM foo2 WHERE bar = 'aaaaAaAa   ' COLLATE RTRIMNOCASE\",\n      ),\n      [\n        {'bar': 'AaAaaaAA'},\n      ],\n    );\n\n    expect(\n      db.select(\"SELECT * FROM foo2 WHERE bar = 'bbbbbb' COLLATE RTRIMNOCASE\"),\n      [\n        {'bar': 'BBBbBb'},\n      ],\n    );\n\n    expect(\n      db.select(\"SELECT * FROM foo2 WHERE bar = 'cCcccC' COLLATE RTRIMNOCASE\"),\n      [\n        {'bar': 'cCCCcc    '},\n      ],\n    );\n\n    expect(\n      db.select(\"SELECT * FROM foo2 WHERE bar = 'dd' COLLATE RTRIMNOCASE\"),\n      [],\n    );\n  });\n\n  const ciphers = bool.fromEnvironment('sqlite3.multipleciphers');\n  if (ciphers) {\n    test('contains sqlite3multipleciphers', () {\n      final db = sqlite3.openInMemory()..closeWhenDone();\n      print(db.select('select sqlite3mc_config(?)', ['cipher']));\n    });\n  }\n}\n\nextension on Database {\n  void closeWhenDone() => addTearDown(close);\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/.gitignore",
    "content": "**/dgph\n*.mode1v3\n*.mode2v3\n*.moved-aside\n*.pbxuser\n*.perspectivev3\n**/*sync/\n.sconsign.dblite\n.tags*\n**/.vagrant/\n**/DerivedData/\nIcon?\n**/Pods/\n**/.symlinks/\nprofile\nxcuserdata\n**/.generated/\nFlutter/App.framework\nFlutter/Flutter.framework\nFlutter/Flutter.podspec\nFlutter/Generated.xcconfig\nFlutter/ephemeral/\nFlutter/app.flx\nFlutter/app.zip\nFlutter/flutter_assets/\nFlutter/flutter_export_environment.sh\nServiceDefinitions.json\nRunner/GeneratedPluginRegistrant.*\n\n# Exceptions to above rules.\n!default.mode1v3\n!default.mode2v3\n!default.pbxuser\n!default.perspectivev3\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Flutter/AppFrameworkInfo.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>App</string>\n  <key>CFBundleIdentifier</key>\n  <string>io.flutter.flutter.app</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>App</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>1.0</string>\n  <key>MinimumOSVersion</key>\n  <string>13.0</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Flutter/Debug.xcconfig",
    "content": "#include \"Generated.xcconfig\"\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Flutter/Release.xcconfig",
    "content": "#include \"Generated.xcconfig\"\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner/AppDelegate.swift",
    "content": "import Flutter\nimport UIKit\n\n@main\n@objc class AppDelegate: FlutterAppDelegate {\n  override func application(\n    _ application: UIApplication,\n    didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?\n  ) -> Bool {\n    GeneratedPluginRegistrant.register(with: self)\n    return super.application(application, didFinishLaunchingWithOptions: launchOptions)\n  }\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"size\" : \"20x20\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-20x20@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"20x20\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-20x20@3x.png\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"size\" : \"29x29\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-29x29@1x.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"29x29\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-29x29@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"29x29\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-29x29@3x.png\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"size\" : \"40x40\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-40x40@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"40x40\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-40x40@3x.png\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"size\" : \"60x60\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-60x60@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"60x60\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-60x60@3x.png\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"size\" : \"20x20\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-20x20@1x.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"20x20\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-20x20@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"29x29\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-29x29@1x.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"29x29\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-29x29@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"40x40\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-40x40@1x.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"40x40\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-40x40@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"76x76\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-76x76@1x.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"76x76\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-76x76@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"83.5x83.5\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-83.5x83.5@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"1024x1024\",\n      \"idiom\" : \"ios-marketing\",\n      \"filename\" : \"Icon-App-1024x1024@1x.png\",\n      \"scale\" : \"1x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"LaunchImage.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"LaunchImage@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"LaunchImage@3x.png\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md",
    "content": "# Launch Screen Assets\n\nYou can customize the launch screen with your own desired assets by replacing the image files in this directory.\n\nYou can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images."
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner/Base.lproj/LaunchScreen.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"12121\" systemVersion=\"16G29\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" colorMatched=\"YES\" initialViewController=\"01J-lp-oVM\">\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"12089\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"EHf-IW-A2E\">\n            <objects>\n                <viewController id=\"01J-lp-oVM\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"Ydg-fD-yQy\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"xbc-2k-c8Z\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"Ze5-6b-2t3\">\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <imageView opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" image=\"LaunchImage\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"YRO-k0-Ey4\">\n                            </imageView>\n                        </subviews>\n                        <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                        <constraints>\n                            <constraint firstItem=\"YRO-k0-Ey4\" firstAttribute=\"centerX\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"centerX\" id=\"1a2-6s-vTC\"/>\n                            <constraint firstItem=\"YRO-k0-Ey4\" firstAttribute=\"centerY\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"centerY\" id=\"4X2-HB-R7a\"/>\n                        </constraints>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"iYj-Kq-Ea1\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"53\" y=\"375\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"LaunchImage\" width=\"168\" height=\"185\"/>\n    </resources>\n</document>\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"10117\" systemVersion=\"15F34\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" initialViewController=\"BYZ-38-t0r\">\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"10085\"/>\n    </dependencies>\n    <scenes>\n        <!--Flutter View Controller-->\n        <scene sceneID=\"tne-QT-ifu\">\n            <objects>\n                <viewController id=\"BYZ-38-t0r\" customClass=\"FlutterViewController\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"y3c-jy-aDJ\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"wfy-db-euE\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"8bC-Xf-vdC\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"600\" height=\"600\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"dkx-z0-nzr\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>$(DEVELOPMENT_LANGUAGE)</string>\n\t<key>CFBundleDisplayName</key>\n\t<string>Flutter Integration Tests</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>flutter_integration_tests</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>$(FLUTTER_BUILD_NAME)</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>$(FLUTTER_BUILD_NUMBER)</string>\n\t<key>LSRequiresIPhoneOS</key>\n\t<true/>\n\t<key>UILaunchStoryboardName</key>\n\t<string>LaunchScreen</string>\n\t<key>UIMainStoryboardFile</key>\n\t<string>Main</string>\n\t<key>UISupportedInterfaceOrientations</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n\t<key>UISupportedInterfaceOrientations~ipad</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationPortraitUpsideDown</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n\t<key>CADisableMinimumFrameDurationOnPhone</key>\n\t<true/>\n\t<key>UIApplicationSupportsIndirectInputEvents</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner/Runner-Bridging-Header.h",
    "content": "#import \"GeneratedPluginRegistrant.h\"\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 54;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };\n\t\t331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };\n\t\t3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };\n\t\t74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };\n\t\t97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };\n\t\t97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };\n\t\t97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };\n\t\t78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */ = {isa = PBXBuildFile; productRef = 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 97C146E61CF9000F007C117D /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 97C146ED1CF9000F007C117D;\n\t\t\tremoteInfo = Runner;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXCopyFilesBuildPhase section */\n\t\t9705A1C41CF9048500538489 /* Embed Frameworks */ = {\n\t\t\tisa = PBXCopyFilesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tdstPath = \"\";\n\t\t\tdstSubfolderSpec = 10;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tname = \"Embed Frameworks\";\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXCopyFilesBuildPhase section */\n\n/* Begin PBXFileReference section */\n\t\t1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = \"<group>\"; };\n\t\t1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = \"<group>\"; };\n\t\t331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = \"<group>\"; };\n\t\t331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = \"<group>\"; };\n\t\t74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = \"Runner-Bridging-Header.h\"; sourceTree = \"<group>\"; };\n\t\t74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = \"<group>\"; };\n\t\t7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = \"<group>\"; };\n\t\t9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = \"<group>\"; };\n\t\t9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = \"<group>\"; };\n\t\t97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\t97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = \"<group>\"; };\n\t\t97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = \"<group>\"; };\n\t\t97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = FlutterGeneratedPluginSwiftPackage; path = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t97C146EB1CF9000F007C117D /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t331C8082294A63A400263BE5 /* RunnerTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t331C807B294A618700263BE5 /* RunnerTests.swift */,\n\t\t\t);\n\t\t\tpath = RunnerTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9740EEB11CF90186004384FC /* Flutter */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */,\n\t\t\t\t3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,\n\t\t\t\t9740EEB21CF90195004384FC /* Debug.xcconfig */,\n\t\t\t\t7AFA3C8E1D35360C0083082E /* Release.xcconfig */,\n\t\t\t\t9740EEB31CF90195004384FC /* Generated.xcconfig */,\n\t\t\t);\n\t\t\tname = Flutter;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t97C146E51CF9000F007C117D = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9740EEB11CF90186004384FC /* Flutter */,\n\t\t\t\t97C146F01CF9000F007C117D /* Runner */,\n\t\t\t\t97C146EF1CF9000F007C117D /* Products */,\n\t\t\t\t331C8082294A63A400263BE5 /* RunnerTests */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t97C146EF1CF9000F007C117D /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t97C146EE1CF9000F007C117D /* Runner.app */,\n\t\t\t\t331C8081294A63A400263BE5 /* RunnerTests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t97C146F01CF9000F007C117D /* Runner */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t97C146FA1CF9000F007C117D /* Main.storyboard */,\n\t\t\t\t97C146FD1CF9000F007C117D /* Assets.xcassets */,\n\t\t\t\t97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,\n\t\t\t\t97C147021CF9000F007C117D /* Info.plist */,\n\t\t\t\t1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,\n\t\t\t\t1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,\n\t\t\t\t74858FAE1ED2DC5600515810 /* AppDelegate.swift */,\n\t\t\t\t74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,\n\t\t\t);\n\t\t\tpath = Runner;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\t331C8080294A63A400263BE5 /* RunnerTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget \"RunnerTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t331C807D294A63A400263BE5 /* Sources */,\n\t\t\t\t331C807F294A63A400263BE5 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t331C8086294A63A400263BE5 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = RunnerTests;\n\t\t\tproductName = RunnerTests;\n\t\t\tproductReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n\t\t97C146ED1CF9000F007C117D /* Runner */ = {\n\t\t\tpackageProductDependencies = (\n\t\t\t\t78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */,\n\t\t\t);\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget \"Runner\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t9740EEB61CF901F6004384FC /* Run Script */,\n\t\t\t\t97C146EA1CF9000F007C117D /* Sources */,\n\t\t\t\t97C146EB1CF9000F007C117D /* Frameworks */,\n\t\t\t\t97C146EC1CF9000F007C117D /* Resources */,\n\t\t\t\t9705A1C41CF9048500538489 /* Embed Frameworks */,\n\t\t\t\t3B06AD1E1E4923F5004D2608 /* Thin Binary */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = Runner;\n\t\t\tproductName = Runner;\n\t\t\tproductReference = 97C146EE1CF9000F007C117D /* Runner.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t97C146E61CF9000F007C117D /* Project object */ = {\n\t\t\tpackageReferences = (\n\t\t\t\t781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference \"Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage\" */,\n\t\t\t);\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tBuildIndependentTargetsInParallel = YES;\n\t\t\t\tLastUpgradeCheck = 1510;\n\t\t\t\tORGANIZATIONNAME = \"\";\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t331C8080294A63A400263BE5 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 14.0;\n\t\t\t\t\t\tTestTargetID = 97C146ED1CF9000F007C117D;\n\t\t\t\t\t};\n\t\t\t\t\t97C146ED1CF9000F007C117D = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 7.3.1;\n\t\t\t\t\t\tLastSwiftMigration = 1100;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject \"Runner\" */;\n\t\t\tcompatibilityVersion = \"Xcode 9.3\";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = 97C146E51CF9000F007C117D;\n\t\t\tproductRefGroup = 97C146EF1CF9000F007C117D /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t97C146ED1CF9000F007C117D /* Runner */,\n\t\t\t\t331C8080294A63A400263BE5 /* RunnerTests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t331C807F294A63A400263BE5 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t97C146EC1CF9000F007C117D /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,\n\t\t\t\t3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,\n\t\t\t\t97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,\n\t\t\t\t97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXShellScriptBuildPhase section */\n\t\t3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\talwaysOutOfDate = 1;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t\"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}\",\n\t\t\t);\n\t\t\tname = \"Thin Binary\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"/bin/sh \\\"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\\\" embed_and_thin\";\n\t\t};\n\t\t9740EEB61CF901F6004384FC /* Run Script */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\talwaysOutOfDate = 1;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"Run Script\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"/bin/sh \\\"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\\\" build\";\n\t\t};\n/* End PBXShellScriptBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t331C807D294A63A400263BE5 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t97C146EA1CF9000F007C117D /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,\n\t\t\t\t1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\t331C8086294A63A400263BE5 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 97C146ED1CF9000F007C117D /* Runner */;\n\t\t\ttargetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\t97C146FA1CF9000F007C117D /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t97C146FB1CF9000F007C117D /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t97C147001CF9000F007C117D /* Base */,\n\t\t\t);\n\t\t\tname = LaunchScreen.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\t249021D3217E4FDB00AE95B9 /* Profile */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_USER_SCRIPT_SANDBOXING = NO;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 13.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSUPPORTED_PLATFORMS = iphoneos;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Profile;\n\t\t};\n\t\t249021D4217E4FDB00AE95B9 /* Profile */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = \"$(FLUTTER_BUILD_NUMBER)\";\n\t\t\t\tENABLE_BITCODE = NO;\n\t\t\t\tINFOPLIST_FILE = Runner/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_OBJC_BRIDGING_HEADER = \"Runner/Runner-Bridging-Header.h\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t};\n\t\t\tname = Profile;\n\t\t};\n\t\t331C8088294A63A400263BE5 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tGENERATE_INFOPLIST_FILE = YES;\n\t\t\t\tMARKETING_VERSION = 1.0;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests.RunnerTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t331C8089294A63A400263BE5 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tGENERATE_INFOPLIST_FILE = YES;\n\t\t\t\tMARKETING_VERSION = 1.0;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests.RunnerTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t331C808A294A63A400263BE5 /* Profile */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tGENERATE_INFOPLIST_FILE = YES;\n\t\t\t\tMARKETING_VERSION = 1.0;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests.RunnerTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner\";\n\t\t\t};\n\t\t\tname = Profile;\n\t\t};\n\t\t97C147031CF9000F007C117D /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tENABLE_USER_SCRIPT_SANDBOXING = NO;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 13.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t97C147041CF9000F007C117D /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_USER_SCRIPT_SANDBOXING = NO;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 13.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSUPPORTED_PLATFORMS = iphoneos;\n\t\t\t\tSWIFT_COMPILATION_MODE = wholemodule;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-O\";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t97C147061CF9000F007C117D /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = \"$(FLUTTER_BUILD_NUMBER)\";\n\t\t\t\tENABLE_BITCODE = NO;\n\t\t\t\tINFOPLIST_FILE = Runner/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_OBJC_BRIDGING_HEADER = \"Runner/Runner-Bridging-Header.h\";\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t97C147071CF9000F007C117D /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = \"$(FLUTTER_BUILD_NUMBER)\";\n\t\t\t\tENABLE_BITCODE = NO;\n\t\t\t\tINFOPLIST_FILE = Runner/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_OBJC_BRIDGING_HEADER = \"Runner/Runner-Bridging-Header.h\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget \"RunnerTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t331C8088294A63A400263BE5 /* Debug */,\n\t\t\t\t331C8089294A63A400263BE5 /* Release */,\n\t\t\t\t331C808A294A63A400263BE5 /* Profile */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t97C146E91CF9000F007C117D /* Build configuration list for PBXProject \"Runner\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t97C147031CF9000F007C117D /* Debug */,\n\t\t\t\t97C147041CF9000F007C117D /* Release */,\n\t\t\t\t249021D3217E4FDB00AE95B9 /* Profile */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget \"Runner\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t97C147061CF9000F007C117D /* Debug */,\n\t\t\t\t97C147071CF9000F007C117D /* Release */,\n\t\t\t\t249021D4217E4FDB00AE95B9 /* Profile */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n/* Begin XCLocalSwiftPackageReference section */\n\t\t781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference \"Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage\" */ = {\n\t\t\tisa = XCLocalSwiftPackageReference;\n\t\t\trelativePath = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage;\n\t\t};\n/* End XCLocalSwiftPackageReference section */\n/* Begin XCSwiftPackageProductDependency section */\n\t\t78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */ = {\n\t\t\tisa = XCSwiftPackageProductDependency;\n\t\t\tproductName = FlutterGeneratedPluginSwiftPackage;\n\t\t};\n/* End XCSwiftPackageProductDependency section */\n\t};\n\trootObject = 97C146E61CF9000F007C117D /* Project object */;\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>IDEDidComputeMac32BitWarning</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreviewsEnabled</key>\n\t<false/>\n</dict>\n</plist>\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1510\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <PreActions>\n         <ExecutionAction\n            ActionType = \"Xcode.IDEStandardExecutionActionsCore.ExecutionActionType.ShellScriptAction\">\n            <ActionContent\n               title = \"Run Prepare Flutter Framework Script\"\n               scriptText = \"/bin/sh &quot;$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh&quot; prepare&#10;\">\n               <EnvironmentBuildable>\n                  <BuildableReference\n                     BuildableIdentifier = \"primary\"\n                     BlueprintIdentifier = \"97C146ED1CF9000F007C117D\"\n                     BuildableName = \"Runner.app\"\n                     BlueprintName = \"Runner\"\n                     ReferencedContainer = \"container:Runner.xcodeproj\">\n                  </BuildableReference>\n               </EnvironmentBuildable>\n            </ActionContent>\n         </ExecutionAction>\n      </PreActions>\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"97C146ED1CF9000F007C117D\"\n               BuildableName = \"Runner.app\"\n               BlueprintName = \"Runner\"\n               ReferencedContainer = \"container:Runner.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      customLLDBInitFile = \"$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"97C146ED1CF9000F007C117D\"\n            BuildableName = \"Runner.app\"\n            BlueprintName = \"Runner\"\n            ReferencedContainer = \"container:Runner.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <Testables>\n         <TestableReference\n            skipped = \"NO\"\n            parallelizable = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"331C8080294A63A400263BE5\"\n               BuildableName = \"RunnerTests.xctest\"\n               BlueprintName = \"RunnerTests\"\n               ReferencedContainer = \"container:Runner.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      customLLDBInitFile = \"$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      enableGPUValidationMode = \"1\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"97C146ED1CF9000F007C117D\"\n            BuildableName = \"Runner.app\"\n            BlueprintName = \"Runner\"\n            ReferencedContainer = \"container:Runner.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Profile\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"97C146ED1CF9000F007C117D\"\n            BuildableName = \"Runner.app\"\n            BlueprintName = \"Runner\"\n            ReferencedContainer = \"container:Runner.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:Runner.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>IDEDidComputeMac32BitWarning</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreviewsEnabled</key>\n\t<false/>\n</dict>\n</plist>\n"
  },
  {
    "path": "examples/flutter_integration_tests/ios/RunnerTests/RunnerTests.swift",
    "content": "import Flutter\nimport UIKit\nimport XCTest\n\nclass RunnerTests: XCTestCase {\n\n  func testExample() {\n    // If you add code to the Runner application, consider adding tests here.\n    // See https://developer.apple.com/documentation/xctest for more information about using XCTest.\n  }\n\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/lib/main.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:sqlite3/sqlite3.dart';\n\nvoid main() {\n  runApp(SqliteDiagnostics());\n}\n\nclass SqliteDiagnostics extends StatelessWidget {\n  const SqliteDiagnostics({super.key});\n\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      home: Scaffold(\n        body: SafeArea(\n          child: SingleChildScrollView(child: const _SqliteDiagnosticText()),\n        ),\n      ),\n    );\n  }\n}\n\nclass _SqliteDiagnosticText extends StatefulWidget {\n  const _SqliteDiagnosticText();\n\n  @override\n  State<_SqliteDiagnosticText> createState() => _SqliteDiagnosticTextState();\n}\n\nclass _SqliteDiagnosticTextState extends State<_SqliteDiagnosticText> {\n  var _text = 'Loading';\n\n  @override\n  void initState() {\n    super.initState();\n\n    final db = sqlite3.openInMemory();\n    final options = db.select('pragma compile_options');\n    setState(() {\n      _text = 'Version: ${sqlite3.version}\\nOptions: $options';\n    });\n    db.close();\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    return Text(_text);\n  }\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/linux/.gitignore",
    "content": "flutter/ephemeral\n"
  },
  {
    "path": "examples/flutter_integration_tests/linux/CMakeLists.txt",
    "content": "# Project-level configuration.\ncmake_minimum_required(VERSION 3.13)\nproject(runner LANGUAGES CXX)\n\n# The name of the executable created for the application. Change this to change\n# the on-disk name of your application.\nset(BINARY_NAME \"flutter_integration_tests\")\n# The unique GTK application identifier for this application. See:\n# https://wiki.gnome.org/HowDoI/ChooseApplicationID\nset(APPLICATION_ID \"com.example.flutter_integration_tests\")\n\n# Explicitly opt in to modern CMake behaviors to avoid warnings with recent\n# versions of CMake.\ncmake_policy(SET CMP0063 NEW)\n\n# Load bundled libraries from the lib/ directory relative to the binary.\nset(CMAKE_INSTALL_RPATH \"$ORIGIN/lib\")\n\n# Root filesystem for cross-building.\nif(FLUTTER_TARGET_PLATFORM_SYSROOT)\n  set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT})\n  set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT})\n  set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)\n  set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)\n  set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)\n  set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)\nendif()\n\n# Define build configuration options.\nif(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)\n  set(CMAKE_BUILD_TYPE \"Debug\" CACHE\n    STRING \"Flutter build mode\" FORCE)\n  set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS\n    \"Debug\" \"Profile\" \"Release\")\nendif()\n\n# Compilation settings that should be applied to most targets.\n#\n# Be cautious about adding new options here, as plugins use this function by\n# default. In most cases, you should add new options to specific targets instead\n# of modifying this function.\nfunction(APPLY_STANDARD_SETTINGS TARGET)\n  target_compile_features(${TARGET} PUBLIC cxx_std_14)\n  target_compile_options(${TARGET} PRIVATE -Wall -Werror)\n  target_compile_options(${TARGET} PRIVATE \"$<$<NOT:$<CONFIG:Debug>>:-O3>\")\n  target_compile_definitions(${TARGET} PRIVATE \"$<$<NOT:$<CONFIG:Debug>>:NDEBUG>\")\nendfunction()\n\n# Flutter library and tool build rules.\nset(FLUTTER_MANAGED_DIR \"${CMAKE_CURRENT_SOURCE_DIR}/flutter\")\nadd_subdirectory(${FLUTTER_MANAGED_DIR})\n\n# System-level dependencies.\nfind_package(PkgConfig REQUIRED)\npkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0)\n\n# Application build; see runner/CMakeLists.txt.\nadd_subdirectory(\"runner\")\n\n# Run the Flutter tool portions of the build. This must not be removed.\nadd_dependencies(${BINARY_NAME} flutter_assemble)\n\n# Only the install-generated bundle's copy of the executable will launch\n# correctly, since the resources must in the right relative locations. To avoid\n# people trying to run the unbundled copy, put it in a subdirectory instead of\n# the default top-level location.\nset_target_properties(${BINARY_NAME}\n  PROPERTIES\n  RUNTIME_OUTPUT_DIRECTORY \"${CMAKE_BINARY_DIR}/intermediates_do_not_run\"\n)\n\n\n# Generated plugin build rules, which manage building the plugins and adding\n# them to the application.\ninclude(flutter/generated_plugins.cmake)\n\n\n# === Installation ===\n# By default, \"installing\" just makes a relocatable bundle in the build\n# directory.\nset(BUILD_BUNDLE_DIR \"${PROJECT_BINARY_DIR}/bundle\")\nif(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)\n  set(CMAKE_INSTALL_PREFIX \"${BUILD_BUNDLE_DIR}\" CACHE PATH \"...\" FORCE)\nendif()\n\n# Start with a clean build bundle directory every time.\ninstall(CODE \"\n  file(REMOVE_RECURSE \\\"${BUILD_BUNDLE_DIR}/\\\")\n  \" COMPONENT Runtime)\n\nset(INSTALL_BUNDLE_DATA_DIR \"${CMAKE_INSTALL_PREFIX}/data\")\nset(INSTALL_BUNDLE_LIB_DIR \"${CMAKE_INSTALL_PREFIX}/lib\")\n\ninstall(TARGETS ${BINARY_NAME} RUNTIME DESTINATION \"${CMAKE_INSTALL_PREFIX}\"\n  COMPONENT Runtime)\n\ninstall(FILES \"${FLUTTER_ICU_DATA_FILE}\" DESTINATION \"${INSTALL_BUNDLE_DATA_DIR}\"\n  COMPONENT Runtime)\n\ninstall(FILES \"${FLUTTER_LIBRARY}\" DESTINATION \"${INSTALL_BUNDLE_LIB_DIR}\"\n  COMPONENT Runtime)\n\nforeach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES})\n  install(FILES \"${bundled_library}\"\n    DESTINATION \"${INSTALL_BUNDLE_LIB_DIR}\"\n    COMPONENT Runtime)\nendforeach(bundled_library)\n\n# Copy the native assets provided by the build.dart from all packages.\nset(NATIVE_ASSETS_DIR \"${PROJECT_BUILD_DIR}native_assets/linux/\")\ninstall(DIRECTORY \"${NATIVE_ASSETS_DIR}\"\n   DESTINATION \"${INSTALL_BUNDLE_LIB_DIR}\"\n   COMPONENT Runtime)\n\n# Fully re-copy the assets directory on each build to avoid having stale files\n# from a previous install.\nset(FLUTTER_ASSET_DIR_NAME \"flutter_assets\")\ninstall(CODE \"\n  file(REMOVE_RECURSE \\\"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\\\")\n  \" COMPONENT Runtime)\ninstall(DIRECTORY \"${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}\"\n  DESTINATION \"${INSTALL_BUNDLE_DATA_DIR}\" COMPONENT Runtime)\n\n# Install the AOT library on non-Debug builds only.\nif(NOT CMAKE_BUILD_TYPE MATCHES \"Debug\")\n  install(FILES \"${AOT_LIBRARY}\" DESTINATION \"${INSTALL_BUNDLE_LIB_DIR}\"\n    COMPONENT Runtime)\nendif()\n"
  },
  {
    "path": "examples/flutter_integration_tests/linux/flutter/CMakeLists.txt",
    "content": "# This file controls Flutter-level build steps. It should not be edited.\ncmake_minimum_required(VERSION 3.10)\n\nset(EPHEMERAL_DIR \"${CMAKE_CURRENT_SOURCE_DIR}/ephemeral\")\n\n# Configuration provided via flutter tool.\ninclude(${EPHEMERAL_DIR}/generated_config.cmake)\n\n# TODO: Move the rest of this into files in ephemeral. See\n# https://github.com/flutter/flutter/issues/57146.\n\n# Serves the same purpose as list(TRANSFORM ... PREPEND ...),\n# which isn't available in 3.10.\nfunction(list_prepend LIST_NAME PREFIX)\n    set(NEW_LIST \"\")\n    foreach(element ${${LIST_NAME}})\n        list(APPEND NEW_LIST \"${PREFIX}${element}\")\n    endforeach(element)\n    set(${LIST_NAME} \"${NEW_LIST}\" PARENT_SCOPE)\nendfunction()\n\n# === Flutter Library ===\n# System-level dependencies.\nfind_package(PkgConfig REQUIRED)\npkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0)\npkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0)\npkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0)\n\nset(FLUTTER_LIBRARY \"${EPHEMERAL_DIR}/libflutter_linux_gtk.so\")\n\n# Published to parent scope for install step.\nset(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE)\nset(FLUTTER_ICU_DATA_FILE \"${EPHEMERAL_DIR}/icudtl.dat\" PARENT_SCOPE)\nset(PROJECT_BUILD_DIR \"${PROJECT_DIR}/build/\" PARENT_SCOPE)\nset(AOT_LIBRARY \"${PROJECT_DIR}/build/lib/libapp.so\" PARENT_SCOPE)\n\nlist(APPEND FLUTTER_LIBRARY_HEADERS\n  \"fl_basic_message_channel.h\"\n  \"fl_binary_codec.h\"\n  \"fl_binary_messenger.h\"\n  \"fl_dart_project.h\"\n  \"fl_engine.h\"\n  \"fl_json_message_codec.h\"\n  \"fl_json_method_codec.h\"\n  \"fl_message_codec.h\"\n  \"fl_method_call.h\"\n  \"fl_method_channel.h\"\n  \"fl_method_codec.h\"\n  \"fl_method_response.h\"\n  \"fl_plugin_registrar.h\"\n  \"fl_plugin_registry.h\"\n  \"fl_standard_message_codec.h\"\n  \"fl_standard_method_codec.h\"\n  \"fl_string_codec.h\"\n  \"fl_value.h\"\n  \"fl_view.h\"\n  \"flutter_linux.h\"\n)\nlist_prepend(FLUTTER_LIBRARY_HEADERS \"${EPHEMERAL_DIR}/flutter_linux/\")\nadd_library(flutter INTERFACE)\ntarget_include_directories(flutter INTERFACE\n  \"${EPHEMERAL_DIR}\"\n)\ntarget_link_libraries(flutter INTERFACE \"${FLUTTER_LIBRARY}\")\ntarget_link_libraries(flutter INTERFACE\n  PkgConfig::GTK\n  PkgConfig::GLIB\n  PkgConfig::GIO\n)\nadd_dependencies(flutter flutter_assemble)\n\n# === Flutter tool backend ===\n# _phony_ is a non-existent file to force this command to run every time,\n# since currently there's no way to get a full input/output list from the\n# flutter tool.\nadd_custom_command(\n  OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS}\n    ${CMAKE_CURRENT_BINARY_DIR}/_phony_\n  COMMAND ${CMAKE_COMMAND} -E env\n    ${FLUTTER_TOOL_ENVIRONMENT}\n    \"${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh\"\n      ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE}\n  VERBATIM\n)\nadd_custom_target(flutter_assemble DEPENDS\n  \"${FLUTTER_LIBRARY}\"\n  ${FLUTTER_LIBRARY_HEADERS}\n)\n"
  },
  {
    "path": "examples/flutter_integration_tests/linux/flutter/generated_plugin_registrant.cc",
    "content": "//\n//  Generated file. Do not edit.\n//\n\n// clang-format off\n\n#include \"generated_plugin_registrant.h\"\n\n\nvoid fl_register_plugins(FlPluginRegistry* registry) {\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/linux/flutter/generated_plugin_registrant.h",
    "content": "//\n//  Generated file. Do not edit.\n//\n\n// clang-format off\n\n#ifndef GENERATED_PLUGIN_REGISTRANT_\n#define GENERATED_PLUGIN_REGISTRANT_\n\n#include <flutter_linux/flutter_linux.h>\n\n// Registers Flutter plugins.\nvoid fl_register_plugins(FlPluginRegistry* registry);\n\n#endif  // GENERATED_PLUGIN_REGISTRANT_\n"
  },
  {
    "path": "examples/flutter_integration_tests/linux/flutter/generated_plugins.cmake",
    "content": "#\n# Generated file, do not edit.\n#\n\nlist(APPEND FLUTTER_PLUGIN_LIST\n)\n\nlist(APPEND FLUTTER_FFI_PLUGIN_LIST\n)\n\nset(PLUGIN_BUNDLED_LIBRARIES)\n\nforeach(plugin ${FLUTTER_PLUGIN_LIST})\n  add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})\n  target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)\n  list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)\n  list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})\nendforeach(plugin)\n\nforeach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})\n  add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})\n  list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})\nendforeach(ffi_plugin)\n"
  },
  {
    "path": "examples/flutter_integration_tests/linux/runner/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.13)\nproject(runner LANGUAGES CXX)\n\n# Define the application target. To change its name, change BINARY_NAME in the\n# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer\n# work.\n#\n# Any new source files that you add to the application should be added here.\nadd_executable(${BINARY_NAME}\n  \"main.cc\"\n  \"my_application.cc\"\n  \"${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc\"\n)\n\n# Apply the standard set of build settings. This can be removed for applications\n# that need different build settings.\napply_standard_settings(${BINARY_NAME})\n\n# Add preprocessor definitions for the application ID.\nadd_definitions(-DAPPLICATION_ID=\"${APPLICATION_ID}\")\n\n# Add dependency libraries. Add any application-specific dependencies here.\ntarget_link_libraries(${BINARY_NAME} PRIVATE flutter)\ntarget_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK)\n\ntarget_include_directories(${BINARY_NAME} PRIVATE \"${CMAKE_SOURCE_DIR}\")\n"
  },
  {
    "path": "examples/flutter_integration_tests/linux/runner/main.cc",
    "content": "#include \"my_application.h\"\n\nint main(int argc, char** argv) {\n  g_autoptr(MyApplication) app = my_application_new();\n  return g_application_run(G_APPLICATION(app), argc, argv);\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/linux/runner/my_application.cc",
    "content": "#include \"my_application.h\"\n\n#include <flutter_linux/flutter_linux.h>\n#ifdef GDK_WINDOWING_X11\n#include <gdk/gdkx.h>\n#endif\n\n#include \"flutter/generated_plugin_registrant.h\"\n\nstruct _MyApplication {\n  GtkApplication parent_instance;\n  char** dart_entrypoint_arguments;\n};\n\nG_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION)\n\n// Called when first Flutter frame received.\nstatic void first_frame_cb(MyApplication* self, FlView *view)\n{\n  gtk_widget_show(gtk_widget_get_toplevel(GTK_WIDGET(view)));\n}\n\n// Implements GApplication::activate.\nstatic void my_application_activate(GApplication* application) {\n  MyApplication* self = MY_APPLICATION(application);\n  GtkWindow* window =\n      GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application)));\n\n  // Use a header bar when running in GNOME as this is the common style used\n  // by applications and is the setup most users will be using (e.g. Ubuntu\n  // desktop).\n  // If running on X and not using GNOME then just use a traditional title bar\n  // in case the window manager does more exotic layout, e.g. tiling.\n  // If running on Wayland assume the header bar will work (may need changing\n  // if future cases occur).\n  gboolean use_header_bar = TRUE;\n#ifdef GDK_WINDOWING_X11\n  GdkScreen* screen = gtk_window_get_screen(window);\n  if (GDK_IS_X11_SCREEN(screen)) {\n    const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen);\n    if (g_strcmp0(wm_name, \"GNOME Shell\") != 0) {\n      use_header_bar = FALSE;\n    }\n  }\n#endif\n  if (use_header_bar) {\n    GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new());\n    gtk_widget_show(GTK_WIDGET(header_bar));\n    gtk_header_bar_set_title(header_bar, \"flutter_integration_tests\");\n    gtk_header_bar_set_show_close_button(header_bar, TRUE);\n    gtk_window_set_titlebar(window, GTK_WIDGET(header_bar));\n  } else {\n    gtk_window_set_title(window, \"flutter_integration_tests\");\n  }\n\n  gtk_window_set_default_size(window, 1280, 720);\n\n  g_autoptr(FlDartProject) project = fl_dart_project_new();\n  fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments);\n\n  FlView* view = fl_view_new(project);\n  GdkRGBA background_color;\n  // Background defaults to black, override it here if necessary, e.g. #00000000 for transparent.\n  gdk_rgba_parse(&background_color, \"#000000\");\n  fl_view_set_background_color(view, &background_color);\n  gtk_widget_show(GTK_WIDGET(view));\n  gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view));\n\n  // Show the window when Flutter renders.\n  // Requires the view to be realized so we can start rendering.\n  g_signal_connect_swapped(view, \"first-frame\", G_CALLBACK(first_frame_cb), self);\n  gtk_widget_realize(GTK_WIDGET(view));\n\n  fl_register_plugins(FL_PLUGIN_REGISTRY(view));\n\n  gtk_widget_grab_focus(GTK_WIDGET(view));\n}\n\n// Implements GApplication::local_command_line.\nstatic gboolean my_application_local_command_line(GApplication* application, gchar*** arguments, int* exit_status) {\n  MyApplication* self = MY_APPLICATION(application);\n  // Strip out the first argument as it is the binary name.\n  self->dart_entrypoint_arguments = g_strdupv(*arguments + 1);\n\n  g_autoptr(GError) error = nullptr;\n  if (!g_application_register(application, nullptr, &error)) {\n     g_warning(\"Failed to register: %s\", error->message);\n     *exit_status = 1;\n     return TRUE;\n  }\n\n  g_application_activate(application);\n  *exit_status = 0;\n\n  return TRUE;\n}\n\n// Implements GApplication::startup.\nstatic void my_application_startup(GApplication* application) {\n  //MyApplication* self = MY_APPLICATION(object);\n\n  // Perform any actions required at application startup.\n\n  G_APPLICATION_CLASS(my_application_parent_class)->startup(application);\n}\n\n// Implements GApplication::shutdown.\nstatic void my_application_shutdown(GApplication* application) {\n  //MyApplication* self = MY_APPLICATION(object);\n\n  // Perform any actions required at application shutdown.\n\n  G_APPLICATION_CLASS(my_application_parent_class)->shutdown(application);\n}\n\n// Implements GObject::dispose.\nstatic void my_application_dispose(GObject* object) {\n  MyApplication* self = MY_APPLICATION(object);\n  g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev);\n  G_OBJECT_CLASS(my_application_parent_class)->dispose(object);\n}\n\nstatic void my_application_class_init(MyApplicationClass* klass) {\n  G_APPLICATION_CLASS(klass)->activate = my_application_activate;\n  G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line;\n  G_APPLICATION_CLASS(klass)->startup = my_application_startup;\n  G_APPLICATION_CLASS(klass)->shutdown = my_application_shutdown;\n  G_OBJECT_CLASS(klass)->dispose = my_application_dispose;\n}\n\nstatic void my_application_init(MyApplication* self) {}\n\nMyApplication* my_application_new() {\n  // Set the program name to the application ID, which helps various systems\n  // like GTK and desktop environments map this running application to its\n  // corresponding .desktop file. This ensures better integration by allowing\n  // the application to be recognized beyond its binary name.\n  g_set_prgname(APPLICATION_ID);\n\n  return MY_APPLICATION(g_object_new(my_application_get_type(),\n                                     \"application-id\", APPLICATION_ID,\n                                     \"flags\", G_APPLICATION_NON_UNIQUE,\n                                     nullptr));\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/linux/runner/my_application.h",
    "content": "#ifndef FLUTTER_MY_APPLICATION_H_\n#define FLUTTER_MY_APPLICATION_H_\n\n#include <gtk/gtk.h>\n\nG_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION,\n                     GtkApplication)\n\n/**\n * my_application_new:\n *\n * Creates a new Flutter-based application.\n *\n * Returns: a new #MyApplication.\n */\nMyApplication* my_application_new();\n\n#endif  // FLUTTER_MY_APPLICATION_H_\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/.gitignore",
    "content": "# Flutter-related\n**/Flutter/ephemeral/\n**/Pods/\n\n# Xcode-related\n**/dgph\n**/xcuserdata/\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Flutter/Flutter-Debug.xcconfig",
    "content": "#include \"ephemeral/Flutter-Generated.xcconfig\"\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Flutter/Flutter-Release.xcconfig",
    "content": "#include \"ephemeral/Flutter-Generated.xcconfig\"\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Flutter/GeneratedPluginRegistrant.swift",
    "content": "//\n//  Generated file. Do not edit.\n//\n\nimport FlutterMacOS\nimport Foundation\n\n\nfunc RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner/AppDelegate.swift",
    "content": "import Cocoa\nimport FlutterMacOS\n\n@main\nclass AppDelegate: FlutterAppDelegate {\n  override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {\n    return true\n  }\n\n  override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {\n    return true\n  }\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"size\" : \"16x16\",\n      \"idiom\" : \"mac\",\n      \"filename\" : \"app_icon_16.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"16x16\",\n      \"idiom\" : \"mac\",\n      \"filename\" : \"app_icon_32.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"32x32\",\n      \"idiom\" : \"mac\",\n      \"filename\" : \"app_icon_32.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"32x32\",\n      \"idiom\" : \"mac\",\n      \"filename\" : \"app_icon_64.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"128x128\",\n      \"idiom\" : \"mac\",\n      \"filename\" : \"app_icon_128.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"128x128\",\n      \"idiom\" : \"mac\",\n      \"filename\" : \"app_icon_256.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"256x256\",\n      \"idiom\" : \"mac\",\n      \"filename\" : \"app_icon_256.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"256x256\",\n      \"idiom\" : \"mac\",\n      \"filename\" : \"app_icon_512.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"512x512\",\n      \"idiom\" : \"mac\",\n      \"filename\" : \"app_icon_512.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"512x512\",\n      \"idiom\" : \"mac\",\n      \"filename\" : \"app_icon_1024.png\",\n      \"scale\" : \"2x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner/Base.lproj/MainMenu.xib",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.Cocoa.XIB\" version=\"3.0\" toolsVersion=\"14490.70\" targetRuntime=\"MacOSX.Cocoa\" propertyAccessControl=\"none\" useAutolayout=\"YES\" customObjectInstantitationMethod=\"direct\">\n    <dependencies>\n        <deployment identifier=\"macosx\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.CocoaPlugin\" version=\"14490.70\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <objects>\n        <customObject id=\"-2\" userLabel=\"File's Owner\" customClass=\"NSApplication\">\n            <connections>\n                <outlet property=\"delegate\" destination=\"Voe-Tx-rLC\" id=\"GzC-gU-4Uq\"/>\n            </connections>\n        </customObject>\n        <customObject id=\"-1\" userLabel=\"First Responder\" customClass=\"FirstResponder\"/>\n        <customObject id=\"-3\" userLabel=\"Application\" customClass=\"NSObject\"/>\n        <customObject id=\"Voe-Tx-rLC\" customClass=\"AppDelegate\" customModule=\"Runner\" customModuleProvider=\"target\">\n            <connections>\n                <outlet property=\"applicationMenu\" destination=\"uQy-DD-JDr\" id=\"XBo-yE-nKs\"/>\n                <outlet property=\"mainFlutterWindow\" destination=\"QvC-M9-y7g\" id=\"gIp-Ho-8D9\"/>\n            </connections>\n        </customObject>\n        <customObject id=\"YLy-65-1bz\" customClass=\"NSFontManager\"/>\n        <menu title=\"Main Menu\" systemMenu=\"main\" id=\"AYu-sK-qS6\">\n            <items>\n                <menuItem title=\"APP_NAME\" id=\"1Xt-HY-uBw\">\n                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                    <menu key=\"submenu\" title=\"APP_NAME\" systemMenu=\"apple\" id=\"uQy-DD-JDr\">\n                        <items>\n                            <menuItem title=\"About APP_NAME\" id=\"5kV-Vb-QxS\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <connections>\n                                    <action selector=\"orderFrontStandardAboutPanel:\" target=\"-1\" id=\"Exp-CZ-Vem\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem isSeparatorItem=\"YES\" id=\"VOq-y0-SEH\"/>\n                            <menuItem title=\"Preferences…\" keyEquivalent=\",\" id=\"BOF-NM-1cW\"/>\n                            <menuItem isSeparatorItem=\"YES\" id=\"wFC-TO-SCJ\"/>\n                            <menuItem title=\"Services\" id=\"NMo-om-nkz\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Services\" systemMenu=\"services\" id=\"hz9-B4-Xy5\"/>\n                            </menuItem>\n                            <menuItem isSeparatorItem=\"YES\" id=\"4je-JR-u6R\"/>\n                            <menuItem title=\"Hide APP_NAME\" keyEquivalent=\"h\" id=\"Olw-nP-bQN\">\n                                <connections>\n                                    <action selector=\"hide:\" target=\"-1\" id=\"PnN-Uc-m68\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem title=\"Hide Others\" keyEquivalent=\"h\" id=\"Vdr-fp-XzO\">\n                                <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                <connections>\n                                    <action selector=\"hideOtherApplications:\" target=\"-1\" id=\"VT4-aY-XCT\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem title=\"Show All\" id=\"Kd2-mp-pUS\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <connections>\n                                    <action selector=\"unhideAllApplications:\" target=\"-1\" id=\"Dhg-Le-xox\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem isSeparatorItem=\"YES\" id=\"kCx-OE-vgT\"/>\n                            <menuItem title=\"Quit APP_NAME\" keyEquivalent=\"q\" id=\"4sb-4s-VLi\">\n                                <connections>\n                                    <action selector=\"terminate:\" target=\"-1\" id=\"Te7-pn-YzF\"/>\n                                </connections>\n                            </menuItem>\n                        </items>\n                    </menu>\n                </menuItem>\n                <menuItem title=\"Edit\" id=\"5QF-Oa-p0T\">\n                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                    <menu key=\"submenu\" title=\"Edit\" id=\"W48-6f-4Dl\">\n                        <items>\n                            <menuItem title=\"Undo\" keyEquivalent=\"z\" id=\"dRJ-4n-Yzg\">\n                                <connections>\n                                    <action selector=\"undo:\" target=\"-1\" id=\"M6e-cu-g7V\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem title=\"Redo\" keyEquivalent=\"Z\" id=\"6dh-zS-Vam\">\n                                <connections>\n                                    <action selector=\"redo:\" target=\"-1\" id=\"oIA-Rs-6OD\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem isSeparatorItem=\"YES\" id=\"WRV-NI-Exz\"/>\n                            <menuItem title=\"Cut\" keyEquivalent=\"x\" id=\"uRl-iY-unG\">\n                                <connections>\n                                    <action selector=\"cut:\" target=\"-1\" id=\"YJe-68-I9s\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem title=\"Copy\" keyEquivalent=\"c\" id=\"x3v-GG-iWU\">\n                                <connections>\n                                    <action selector=\"copy:\" target=\"-1\" id=\"G1f-GL-Joy\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem title=\"Paste\" keyEquivalent=\"v\" id=\"gVA-U4-sdL\">\n                                <connections>\n                                    <action selector=\"paste:\" target=\"-1\" id=\"UvS-8e-Qdg\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem title=\"Paste and Match Style\" keyEquivalent=\"V\" id=\"WeT-3V-zwk\">\n                                <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                <connections>\n                                    <action selector=\"pasteAsPlainText:\" target=\"-1\" id=\"cEh-KX-wJQ\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem title=\"Delete\" id=\"pa3-QI-u2k\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <connections>\n                                    <action selector=\"delete:\" target=\"-1\" id=\"0Mk-Ml-PaM\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem title=\"Select All\" keyEquivalent=\"a\" id=\"Ruw-6m-B2m\">\n                                <connections>\n                                    <action selector=\"selectAll:\" target=\"-1\" id=\"VNm-Mi-diN\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem isSeparatorItem=\"YES\" id=\"uyl-h8-XO2\"/>\n                            <menuItem title=\"Find\" id=\"4EN-yA-p0u\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Find\" id=\"1b7-l0-nxx\">\n                                    <items>\n                                        <menuItem title=\"Find…\" tag=\"1\" keyEquivalent=\"f\" id=\"Xz5-n4-O0W\">\n                                            <connections>\n                                                <action selector=\"performFindPanelAction:\" target=\"-1\" id=\"cD7-Qs-BN4\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Find and Replace…\" tag=\"12\" keyEquivalent=\"f\" id=\"YEy-JH-Tfz\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"performFindPanelAction:\" target=\"-1\" id=\"WD3-Gg-5AJ\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Find Next\" tag=\"2\" keyEquivalent=\"g\" id=\"q09-fT-Sye\">\n                                            <connections>\n                                                <action selector=\"performFindPanelAction:\" target=\"-1\" id=\"NDo-RZ-v9R\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Find Previous\" tag=\"3\" keyEquivalent=\"G\" id=\"OwM-mh-QMV\">\n                                            <connections>\n                                                <action selector=\"performFindPanelAction:\" target=\"-1\" id=\"HOh-sY-3ay\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Use Selection for Find\" tag=\"7\" keyEquivalent=\"e\" id=\"buJ-ug-pKt\">\n                                            <connections>\n                                                <action selector=\"performFindPanelAction:\" target=\"-1\" id=\"U76-nv-p5D\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Jump to Selection\" keyEquivalent=\"j\" id=\"S0p-oC-mLd\">\n                                            <connections>\n                                                <action selector=\"centerSelectionInVisibleArea:\" target=\"-1\" id=\"IOG-6D-g5B\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Spelling and Grammar\" id=\"Dv1-io-Yv7\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Spelling\" id=\"3IN-sU-3Bg\">\n                                    <items>\n                                        <menuItem title=\"Show Spelling and Grammar\" keyEquivalent=\":\" id=\"HFo-cy-zxI\">\n                                            <connections>\n                                                <action selector=\"showGuessPanel:\" target=\"-1\" id=\"vFj-Ks-hy3\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Check Document Now\" keyEquivalent=\";\" id=\"hz2-CU-CR7\">\n                                            <connections>\n                                                <action selector=\"checkSpelling:\" target=\"-1\" id=\"fz7-VC-reM\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"bNw-od-mp5\"/>\n                                        <menuItem title=\"Check Spelling While Typing\" id=\"rbD-Rh-wIN\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"toggleContinuousSpellChecking:\" target=\"-1\" id=\"7w6-Qz-0kB\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Check Grammar With Spelling\" id=\"mK6-2p-4JG\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"toggleGrammarChecking:\" target=\"-1\" id=\"muD-Qn-j4w\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Correct Spelling Automatically\" id=\"78Y-hA-62v\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"toggleAutomaticSpellingCorrection:\" target=\"-1\" id=\"2lM-Qi-WAP\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Substitutions\" id=\"9ic-FL-obx\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Substitutions\" id=\"FeM-D8-WVr\">\n                                    <items>\n                                        <menuItem title=\"Show Substitutions\" id=\"z6F-FW-3nz\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"orderFrontSubstitutionsPanel:\" target=\"-1\" id=\"oku-mr-iSq\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"gPx-C9-uUO\"/>\n                                        <menuItem title=\"Smart Copy/Paste\" id=\"9yt-4B-nSM\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"toggleSmartInsertDelete:\" target=\"-1\" id=\"3IJ-Se-DZD\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Smart Quotes\" id=\"hQb-2v-fYv\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"toggleAutomaticQuoteSubstitution:\" target=\"-1\" id=\"ptq-xd-QOA\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Smart Dashes\" id=\"rgM-f4-ycn\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"toggleAutomaticDashSubstitution:\" target=\"-1\" id=\"oCt-pO-9gS\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Smart Links\" id=\"cwL-P1-jid\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"toggleAutomaticLinkDetection:\" target=\"-1\" id=\"Gip-E3-Fov\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Data Detectors\" id=\"tRr-pd-1PS\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"toggleAutomaticDataDetection:\" target=\"-1\" id=\"R1I-Nq-Kbl\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Text Replacement\" id=\"HFQ-gK-NFA\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"toggleAutomaticTextReplacement:\" target=\"-1\" id=\"DvP-Fe-Py6\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Transformations\" id=\"2oI-Rn-ZJC\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Transformations\" id=\"c8a-y6-VQd\">\n                                    <items>\n                                        <menuItem title=\"Make Upper Case\" id=\"vmV-6d-7jI\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"uppercaseWord:\" target=\"-1\" id=\"sPh-Tk-edu\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Make Lower Case\" id=\"d9M-CD-aMd\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"lowercaseWord:\" target=\"-1\" id=\"iUZ-b5-hil\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Capitalize\" id=\"UEZ-Bs-lqG\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"capitalizeWord:\" target=\"-1\" id=\"26H-TL-nsh\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Speech\" id=\"xrE-MZ-jX0\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Speech\" id=\"3rS-ZA-NoH\">\n                                    <items>\n                                        <menuItem title=\"Start Speaking\" id=\"Ynk-f8-cLZ\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"startSpeaking:\" target=\"-1\" id=\"654-Ng-kyl\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Stop Speaking\" id=\"Oyz-dy-DGm\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"stopSpeaking:\" target=\"-1\" id=\"dX8-6p-jy9\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                        </items>\n                    </menu>\n                </menuItem>\n                <menuItem title=\"View\" id=\"H8h-7b-M4v\">\n                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                    <menu key=\"submenu\" title=\"View\" id=\"HyV-fh-RgO\">\n                        <items>\n                            <menuItem title=\"Enter Full Screen\" keyEquivalent=\"f\" id=\"4J7-dP-txa\">\n                                <modifierMask key=\"keyEquivalentModifierMask\" control=\"YES\" command=\"YES\"/>\n                                <connections>\n                                    <action selector=\"toggleFullScreen:\" target=\"-1\" id=\"dU3-MA-1Rq\"/>\n                                </connections>\n                            </menuItem>\n                        </items>\n                    </menu>\n                </menuItem>\n                <menuItem title=\"Window\" id=\"aUF-d1-5bR\">\n                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                    <menu key=\"submenu\" title=\"Window\" systemMenu=\"window\" id=\"Td7-aD-5lo\">\n                        <items>\n                            <menuItem title=\"Minimize\" keyEquivalent=\"m\" id=\"OY7-WF-poV\">\n                                <connections>\n                                    <action selector=\"performMiniaturize:\" target=\"-1\" id=\"VwT-WD-YPe\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem title=\"Zoom\" id=\"R4o-n2-Eq4\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <connections>\n                                    <action selector=\"performZoom:\" target=\"-1\" id=\"DIl-cC-cCs\"/>\n                                </connections>\n                            </menuItem>\n                            <menuItem isSeparatorItem=\"YES\" id=\"eu3-7i-yIM\"/>\n                            <menuItem title=\"Bring All to Front\" id=\"LE2-aR-0XJ\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <connections>\n                                    <action selector=\"arrangeInFront:\" target=\"-1\" id=\"DRN-fu-gQh\"/>\n                                </connections>\n                            </menuItem>\n                        </items>\n                    </menu>\n                </menuItem>\n                <menuItem title=\"Help\" id=\"EPT-qC-fAb\">\n                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                    <menu key=\"submenu\" title=\"Help\" systemMenu=\"help\" id=\"rJ0-wn-3NY\"/>\n                </menuItem>\n            </items>\n            <point key=\"canvasLocation\" x=\"142\" y=\"-258\"/>\n        </menu>\n        <window title=\"APP_NAME\" allowsToolTipsWhenApplicationIsInactive=\"NO\" autorecalculatesKeyViewLoop=\"NO\" releasedWhenClosed=\"NO\" animationBehavior=\"default\" id=\"QvC-M9-y7g\" customClass=\"MainFlutterWindow\" customModule=\"Runner\" customModuleProvider=\"target\">\n            <windowStyleMask key=\"styleMask\" titled=\"YES\" closable=\"YES\" miniaturizable=\"YES\" resizable=\"YES\"/>\n            <rect key=\"contentRect\" x=\"335\" y=\"390\" width=\"800\" height=\"600\"/>\n            <rect key=\"screenRect\" x=\"0.0\" y=\"0.0\" width=\"2560\" height=\"1577\"/>\n            <view key=\"contentView\" wantsLayer=\"YES\" id=\"EiT-Mj-1SZ\">\n                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"800\" height=\"600\"/>\n                <autoresizingMask key=\"autoresizingMask\"/>\n            </view>\n        </window>\n    </objects>\n</document>\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner/Configs/AppInfo.xcconfig",
    "content": "// Application-level settings for the Runner target.\n//\n// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the\n// future. If not, the values below would default to using the project name when this becomes a\n// 'flutter create' template.\n\n// The application's name. By default this is also the title of the Flutter window.\nPRODUCT_NAME = flutter_integration_tests\n\n// The application's bundle identifier\nPRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests\n\n// The copyright displayed in application information\nPRODUCT_COPYRIGHT = Copyright © 2025 com.example. All rights reserved.\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner/Configs/Debug.xcconfig",
    "content": "#include \"../../Flutter/Flutter-Debug.xcconfig\"\n#include \"Warnings.xcconfig\"\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner/Configs/Release.xcconfig",
    "content": "#include \"../../Flutter/Flutter-Release.xcconfig\"\n#include \"Warnings.xcconfig\"\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner/Configs/Warnings.xcconfig",
    "content": "WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings\nGCC_WARN_UNDECLARED_SELECTOR = YES\nCLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES\nCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE\nCLANG_WARN__DUPLICATE_METHOD_MATCH = YES\nCLANG_WARN_PRAGMA_PACK = YES\nCLANG_WARN_STRICT_PROTOTYPES = YES\nCLANG_WARN_COMMA = YES\nGCC_WARN_STRICT_SELECTOR_MATCH = YES\nCLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES\nCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES\nGCC_WARN_SHADOW = YES\nCLANG_WARN_UNREACHABLE_CODE = YES\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner/DebugProfile.entitlements",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>com.apple.security.app-sandbox</key>\n\t<true/>\n\t<key>com.apple.security.cs.allow-jit</key>\n\t<true/>\n\t<key>com.apple.security.network.server</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>$(DEVELOPMENT_LANGUAGE)</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIconFile</key>\n\t<string></string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>$(FLUTTER_BUILD_NAME)</string>\n\t<key>CFBundleVersion</key>\n\t<string>$(FLUTTER_BUILD_NUMBER)</string>\n\t<key>LSMinimumSystemVersion</key>\n\t<string>$(MACOSX_DEPLOYMENT_TARGET)</string>\n\t<key>NSHumanReadableCopyright</key>\n\t<string>$(PRODUCT_COPYRIGHT)</string>\n\t<key>NSMainNibFile</key>\n\t<string>MainMenu</string>\n\t<key>NSPrincipalClass</key>\n\t<string>NSApplication</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner/MainFlutterWindow.swift",
    "content": "import Cocoa\nimport FlutterMacOS\n\nclass MainFlutterWindow: NSWindow {\n  override func awakeFromNib() {\n    let flutterViewController = FlutterViewController()\n    let windowFrame = self.frame\n    self.contentViewController = flutterViewController\n    self.setFrame(windowFrame, display: true)\n\n    RegisterGeneratedPlugins(registry: flutterViewController)\n\n    super.awakeFromNib()\n  }\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner/Release.entitlements",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>com.apple.security.app-sandbox</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 54;\n\tobjects = {\n\n/* Begin PBXAggregateTarget section */\n\t\t33CC111A2044C6BA0003C045 /* Flutter Assemble */ = {\n\t\t\tisa = PBXAggregateTarget;\n\t\t\tbuildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget \"Flutter Assemble\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t33CC111E2044C6BF0003C045 /* ShellScript */,\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"Flutter Assemble\";\n\t\t\tproductName = FLX;\n\t\t};\n/* End PBXAggregateTarget section */\n\n/* Begin PBXBuildFile section */\n\t\t331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; };\n\t\t335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };\n\t\t33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };\n\t\t33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };\n\t\t33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };\n\t\t33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 33CC10E52044A3C60003C045 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 33CC10EC2044A3C60003C045;\n\t\t\tremoteInfo = Runner;\n\t\t};\n\t\t33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 33CC10E52044A3C60003C045 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 33CC111A2044C6BA0003C045;\n\t\t\tremoteInfo = FLX;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXCopyFilesBuildPhase section */\n\t\t33CC110E2044A8840003C045 /* Bundle Framework */ = {\n\t\t\tisa = PBXCopyFilesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tdstPath = \"\";\n\t\t\tdstSubfolderSpec = 10;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tname = \"Bundle Framework\";\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXCopyFilesBuildPhase section */\n\n/* Begin PBXFileReference section */\n\t\t331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = \"<group>\"; };\n\t\t333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = \"<group>\"; };\n\t\t335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = \"<group>\"; };\n\t\t33CC10ED2044A3C60003C045 /* flutter_integration_tests.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = \"flutter_integration_tests.app\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = \"<group>\"; };\n\t\t33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = \"<group>\"; };\n\t\t33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = \"<group>\"; };\n\t\t33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = \"<group>\"; };\n\t\t33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = \"<group>\"; };\n\t\t33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = \"Flutter-Debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = \"Flutter-Release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = \"Flutter-Generated.xcconfig\"; path = \"ephemeral/Flutter-Generated.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = \"<group>\"; };\n\t\t33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = \"<group>\"; };\n\t\t33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = \"<group>\"; };\n\t\t7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = \"<group>\"; };\n\t\t9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t331C80D2294CF70F00263BE5 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t33CC10EA2044A3C60003C045 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t331C80D6294CF71000263BE5 /* RunnerTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t331C80D7294CF71000263BE5 /* RunnerTests.swift */,\n\t\t\t);\n\t\t\tpath = RunnerTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t33BA886A226E78AF003329D5 /* Configs */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t33E5194F232828860026EE4D /* AppInfo.xcconfig */,\n\t\t\t\t9740EEB21CF90195004384FC /* Debug.xcconfig */,\n\t\t\t\t7AFA3C8E1D35360C0083082E /* Release.xcconfig */,\n\t\t\t\t333000ED22D3DE5D00554162 /* Warnings.xcconfig */,\n\t\t\t);\n\t\t\tpath = Configs;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t33CC10E42044A3C60003C045 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t33FAB671232836740065AC1E /* Runner */,\n\t\t\t\t33CEB47122A05771004F2AC0 /* Flutter */,\n\t\t\t\t331C80D6294CF71000263BE5 /* RunnerTests */,\n\t\t\t\t33CC10EE2044A3C60003C045 /* Products */,\n\t\t\t\tD73912EC22F37F3D000D13A0 /* Frameworks */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t33CC10EE2044A3C60003C045 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t33CC10ED2044A3C60003C045 /* flutter_integration_tests.app */,\n\t\t\t\t331C80D5294CF71000263BE5 /* RunnerTests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t33CC11242044D66E0003C045 /* Resources */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t33CC10F22044A3C60003C045 /* Assets.xcassets */,\n\t\t\t\t33CC10F42044A3C60003C045 /* MainMenu.xib */,\n\t\t\t\t33CC10F72044A3C60003C045 /* Info.plist */,\n\t\t\t);\n\t\t\tname = Resources;\n\t\t\tpath = ..;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t33CEB47122A05771004F2AC0 /* Flutter */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */,\n\t\t\t\t33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */,\n\t\t\t\t33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */,\n\t\t\t\t33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */,\n\t\t\t);\n\t\t\tpath = Flutter;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t33FAB671232836740065AC1E /* Runner */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t33CC10F02044A3C60003C045 /* AppDelegate.swift */,\n\t\t\t\t33CC11122044BFA00003C045 /* MainFlutterWindow.swift */,\n\t\t\t\t33E51913231747F40026EE4D /* DebugProfile.entitlements */,\n\t\t\t\t33E51914231749380026EE4D /* Release.entitlements */,\n\t\t\t\t33CC11242044D66E0003C045 /* Resources */,\n\t\t\t\t33BA886A226E78AF003329D5 /* Configs */,\n\t\t\t);\n\t\t\tpath = Runner;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tD73912EC22F37F3D000D13A0 /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\t331C80D4294CF70F00263BE5 /* RunnerTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget \"RunnerTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t331C80D1294CF70F00263BE5 /* Sources */,\n\t\t\t\t331C80D2294CF70F00263BE5 /* Frameworks */,\n\t\t\t\t331C80D3294CF70F00263BE5 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t331C80DA294CF71000263BE5 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = RunnerTests;\n\t\t\tproductName = RunnerTests;\n\t\t\tproductReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n\t\t33CC10EC2044A3C60003C045 /* Runner */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget \"Runner\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t33CC10E92044A3C60003C045 /* Sources */,\n\t\t\t\t33CC10EA2044A3C60003C045 /* Frameworks */,\n\t\t\t\t33CC10EB2044A3C60003C045 /* Resources */,\n\t\t\t\t33CC110E2044A8840003C045 /* Bundle Framework */,\n\t\t\t\t3399D490228B24CF009A79C7 /* ShellScript */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t33CC11202044C79F0003C045 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = Runner;\n\t\t\tproductName = Runner;\n\t\t\tproductReference = 33CC10ED2044A3C60003C045 /* flutter_integration_tests.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t33CC10E52044A3C60003C045 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tBuildIndependentTargetsInParallel = YES;\n\t\t\t\tLastSwiftUpdateCheck = 0920;\n\t\t\t\tLastUpgradeCheck = 1510;\n\t\t\t\tORGANIZATIONNAME = \"\";\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t331C80D4294CF70F00263BE5 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 14.0;\n\t\t\t\t\t\tTestTargetID = 33CC10EC2044A3C60003C045;\n\t\t\t\t\t};\n\t\t\t\t\t33CC10EC2044A3C60003C045 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 9.2;\n\t\t\t\t\t\tLastSwiftMigration = 1100;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t\tSystemCapabilities = {\n\t\t\t\t\t\t\tcom.apple.Sandbox = {\n\t\t\t\t\t\t\t\tenabled = 1;\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t};\n\t\t\t\t\t};\n\t\t\t\t\t33CC111A2044C6BA0003C045 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 9.2;\n\t\t\t\t\t\tProvisioningStyle = Manual;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject \"Runner\" */;\n\t\t\tcompatibilityVersion = \"Xcode 9.3\";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = 33CC10E42044A3C60003C045;\n\t\t\tproductRefGroup = 33CC10EE2044A3C60003C045 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t33CC10EC2044A3C60003C045 /* Runner */,\n\t\t\t\t331C80D4294CF70F00263BE5 /* RunnerTests */,\n\t\t\t\t33CC111A2044C6BA0003C045 /* Flutter Assemble */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t331C80D3294CF70F00263BE5 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t33CC10EB2044A3C60003C045 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */,\n\t\t\t\t33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXShellScriptBuildPhase section */\n\t\t3399D490228B24CF009A79C7 /* ShellScript */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\talwaysOutOfDate = 1;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\toutputFileListPaths = (\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"echo \\\"$PRODUCT_NAME.app\\\" > \\\"$PROJECT_DIR\\\"/Flutter/ephemeral/.app_filename && \\\"$FLUTTER_ROOT\\\"/packages/flutter_tools/bin/macos_assemble.sh embed\\n\";\n\t\t};\n\t\t33CC111E2044C6BF0003C045 /* ShellScript */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t\tFlutter/ephemeral/FlutterInputs.xcfilelist,\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\tFlutter/ephemeral/tripwire,\n\t\t\t);\n\t\t\toutputFileListPaths = (\n\t\t\t\tFlutter/ephemeral/FlutterOutputs.xcfilelist,\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"$FLUTTER_ROOT\\\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire\";\n\t\t};\n/* End PBXShellScriptBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t331C80D1294CF70F00263BE5 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t33CC10E92044A3C60003C045 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */,\n\t\t\t\t33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */,\n\t\t\t\t335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\t331C80DA294CF71000263BE5 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 33CC10EC2044A3C60003C045 /* Runner */;\n\t\t\ttargetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */;\n\t\t};\n\t\t33CC11202044C79F0003C045 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 33CC111A2044C6BA0003C045 /* Flutter Assemble */;\n\t\t\ttargetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\t33CC10F42044A3C60003C045 /* MainMenu.xib */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t33CC10F52044A3C60003C045 /* Base */,\n\t\t\t);\n\t\t\tname = MainMenu.xib;\n\t\t\tpath = Runner;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\t331C80DB294CF71000263BE5 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tGENERATE_INFOPLIST_FILE = YES;\n\t\t\t\tMARKETING_VERSION = 1.0;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests.RunnerTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/flutter_integration_tests.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/flutter_integration_tests\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t331C80DC294CF71000263BE5 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tGENERATE_INFOPLIST_FILE = YES;\n\t\t\t\tMARKETING_VERSION = 1.0;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests.RunnerTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/flutter_integration_tests.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/flutter_integration_tests\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t331C80DD294CF71000263BE5 /* Profile */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tGENERATE_INFOPLIST_FILE = YES;\n\t\t\t\tMARKETING_VERSION = 1.0;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests.RunnerTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/flutter_integration_tests.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/flutter_integration_tests\";\n\t\t\t};\n\t\t\tname = Profile;\n\t\t};\n\t\t338D0CE9231458BD00FA5F75 /* Profile */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_USER_SCRIPT_SANDBOXING = NO;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.15;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSWIFT_COMPILATION_MODE = wholemodule;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-O\";\n\t\t\t};\n\t\t\tname = Profile;\n\t\t};\n\t\t338D0CEA231458BD00FA5F75 /* Profile */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tINFOPLIST_FILE = Runner/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/../Frameworks\",\n\t\t\t\t);\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t};\n\t\t\tname = Profile;\n\t\t};\n\t\t338D0CEB231458BD00FA5F75 /* Profile */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_STYLE = Manual;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Profile;\n\t\t};\n\t\t33CC10F92044A3C60003C045 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tENABLE_USER_SCRIPT_SANDBOXING = NO;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.15;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t33CC10FA2044A3C60003C045 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_USER_SCRIPT_SANDBOXING = NO;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.15;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSWIFT_COMPILATION_MODE = wholemodule;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-O\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t33CC10FC2044A3C60003C045 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tINFOPLIST_FILE = Runner/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/../Frameworks\",\n\t\t\t\t);\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t33CC10FD2044A3C60003C045 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements;\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tINFOPLIST_FILE = Runner/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/../Frameworks\",\n\t\t\t\t);\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t33CC111C2044C6BA0003C045 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_STYLE = Manual;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t33CC111D2044C6BA0003C045 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget \"RunnerTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t331C80DB294CF71000263BE5 /* Debug */,\n\t\t\t\t331C80DC294CF71000263BE5 /* Release */,\n\t\t\t\t331C80DD294CF71000263BE5 /* Profile */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t33CC10E82044A3C60003C045 /* Build configuration list for PBXProject \"Runner\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t33CC10F92044A3C60003C045 /* Debug */,\n\t\t\t\t33CC10FA2044A3C60003C045 /* Release */,\n\t\t\t\t338D0CE9231458BD00FA5F75 /* Profile */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget \"Runner\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t33CC10FC2044A3C60003C045 /* Debug */,\n\t\t\t\t33CC10FD2044A3C60003C045 /* Release */,\n\t\t\t\t338D0CEA231458BD00FA5F75 /* Profile */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget \"Flutter Assemble\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t33CC111C2044C6BA0003C045 /* Debug */,\n\t\t\t\t33CC111D2044C6BA0003C045 /* Release */,\n\t\t\t\t338D0CEB231458BD00FA5F75 /* Profile */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = 33CC10E52044A3C60003C045 /* Project object */;\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>IDEDidComputeMac32BitWarning</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1510\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"33CC10EC2044A3C60003C045\"\n               BuildableName = \"flutter_integration_tests.app\"\n               BlueprintName = \"Runner\"\n               ReferencedContainer = \"container:Runner.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"33CC10EC2044A3C60003C045\"\n            BuildableName = \"flutter_integration_tests.app\"\n            BlueprintName = \"Runner\"\n            ReferencedContainer = \"container:Runner.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <Testables>\n         <TestableReference\n            skipped = \"NO\"\n            parallelizable = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"331C80D4294CF70F00263BE5\"\n               BuildableName = \"RunnerTests.xctest\"\n               BlueprintName = \"RunnerTests\"\n               ReferencedContainer = \"container:Runner.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      enableGPUValidationMode = \"1\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"33CC10EC2044A3C60003C045\"\n            BuildableName = \"flutter_integration_tests.app\"\n            BlueprintName = \"Runner\"\n            ReferencedContainer = \"container:Runner.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Profile\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"33CC10EC2044A3C60003C045\"\n            BuildableName = \"flutter_integration_tests.app\"\n            BlueprintName = \"Runner\"\n            ReferencedContainer = \"container:Runner.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:Runner.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>IDEDidComputeMac32BitWarning</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "examples/flutter_integration_tests/macos/RunnerTests/RunnerTests.swift",
    "content": "import Cocoa\nimport FlutterMacOS\nimport XCTest\n\nclass RunnerTests: XCTestCase {\n\n  func testExample() {\n    // If you add code to the Runner application, consider adding tests here.\n    // See https://developer.apple.com/documentation/xctest for more information about using XCTest.\n  }\n\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/pubspec.yaml",
    "content": "name: flutter_integration_tests\npublish_to: 'none'\nversion: 1.0.0+1\nresolution: workspace\n\nenvironment:\n  sdk: ^3.10.0-0\n\ndependencies:\n  flutter:\n    sdk: flutter\n  sqlite3:\n  sqlite3_connection_pool:\n\ndev_dependencies:\n  flutter_test:\n    sdk: flutter\n  integration_test:\n    sdk: flutter\n  flutter_lints: ^6.0.0\n\nflutter:\n  uses-material-design: true\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/.gitignore",
    "content": "flutter/ephemeral/\n\n# Visual Studio user-specific files.\n*.suo\n*.user\n*.userosscache\n*.sln.docstates\n\n# Visual Studio build-related files.\nx64/\nx86/\n\n# Visual Studio cache files\n# files ending in .cache can be ignored\n*.[Cc]ache\n# but keep track of directories ending in .cache\n!*.[Cc]ache/\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/CMakeLists.txt",
    "content": "# Project-level configuration.\ncmake_minimum_required(VERSION 3.14)\nproject(flutter_integration_tests LANGUAGES CXX)\n\n# The name of the executable created for the application. Change this to change\n# the on-disk name of your application.\nset(BINARY_NAME \"flutter_integration_tests\")\n\n# Explicitly opt in to modern CMake behaviors to avoid warnings with recent\n# versions of CMake.\ncmake_policy(VERSION 3.14...3.25)\n\n# Define build configuration option.\nget_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)\nif(IS_MULTICONFIG)\n  set(CMAKE_CONFIGURATION_TYPES \"Debug;Profile;Release\"\n    CACHE STRING \"\" FORCE)\nelse()\n  if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)\n    set(CMAKE_BUILD_TYPE \"Debug\" CACHE\n      STRING \"Flutter build mode\" FORCE)\n    set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS\n      \"Debug\" \"Profile\" \"Release\")\n  endif()\nendif()\n# Define settings for the Profile build mode.\nset(CMAKE_EXE_LINKER_FLAGS_PROFILE \"${CMAKE_EXE_LINKER_FLAGS_RELEASE}\")\nset(CMAKE_SHARED_LINKER_FLAGS_PROFILE \"${CMAKE_SHARED_LINKER_FLAGS_RELEASE}\")\nset(CMAKE_C_FLAGS_PROFILE \"${CMAKE_C_FLAGS_RELEASE}\")\nset(CMAKE_CXX_FLAGS_PROFILE \"${CMAKE_CXX_FLAGS_RELEASE}\")\n\n# Use Unicode for all projects.\nadd_definitions(-DUNICODE -D_UNICODE)\n\n# Compilation settings that should be applied to most targets.\n#\n# Be cautious about adding new options here, as plugins use this function by\n# default. In most cases, you should add new options to specific targets instead\n# of modifying this function.\nfunction(APPLY_STANDARD_SETTINGS TARGET)\n  target_compile_features(${TARGET} PUBLIC cxx_std_17)\n  target_compile_options(${TARGET} PRIVATE /W4 /WX /wd\"4100\")\n  target_compile_options(${TARGET} PRIVATE /EHsc)\n  target_compile_definitions(${TARGET} PRIVATE \"_HAS_EXCEPTIONS=0\")\n  target_compile_definitions(${TARGET} PRIVATE \"$<$<CONFIG:Debug>:_DEBUG>\")\nendfunction()\n\n# Flutter library and tool build rules.\nset(FLUTTER_MANAGED_DIR \"${CMAKE_CURRENT_SOURCE_DIR}/flutter\")\nadd_subdirectory(${FLUTTER_MANAGED_DIR})\n\n# Application build; see runner/CMakeLists.txt.\nadd_subdirectory(\"runner\")\n\n\n# Generated plugin build rules, which manage building the plugins and adding\n# them to the application.\ninclude(flutter/generated_plugins.cmake)\n\n\n# === Installation ===\n# Support files are copied into place next to the executable, so that it can\n# run in place. This is done instead of making a separate bundle (as on Linux)\n# so that building and running from within Visual Studio will work.\nset(BUILD_BUNDLE_DIR \"$<TARGET_FILE_DIR:${BINARY_NAME}>\")\n# Make the \"install\" step default, as it's required to run.\nset(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1)\nif(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)\n  set(CMAKE_INSTALL_PREFIX \"${BUILD_BUNDLE_DIR}\" CACHE PATH \"...\" FORCE)\nendif()\n\nset(INSTALL_BUNDLE_DATA_DIR \"${CMAKE_INSTALL_PREFIX}/data\")\nset(INSTALL_BUNDLE_LIB_DIR \"${CMAKE_INSTALL_PREFIX}\")\n\ninstall(TARGETS ${BINARY_NAME} RUNTIME DESTINATION \"${CMAKE_INSTALL_PREFIX}\"\n  COMPONENT Runtime)\n\ninstall(FILES \"${FLUTTER_ICU_DATA_FILE}\" DESTINATION \"${INSTALL_BUNDLE_DATA_DIR}\"\n  COMPONENT Runtime)\n\ninstall(FILES \"${FLUTTER_LIBRARY}\" DESTINATION \"${INSTALL_BUNDLE_LIB_DIR}\"\n  COMPONENT Runtime)\n\nif(PLUGIN_BUNDLED_LIBRARIES)\n  install(FILES \"${PLUGIN_BUNDLED_LIBRARIES}\"\n    DESTINATION \"${INSTALL_BUNDLE_LIB_DIR}\"\n    COMPONENT Runtime)\nendif()\n\n# Copy the native assets provided by the build.dart from all packages.\nset(NATIVE_ASSETS_DIR \"${PROJECT_BUILD_DIR}native_assets/windows/\")\ninstall(DIRECTORY \"${NATIVE_ASSETS_DIR}\"\n   DESTINATION \"${INSTALL_BUNDLE_LIB_DIR}\"\n   COMPONENT Runtime)\n\n# Fully re-copy the assets directory on each build to avoid having stale files\n# from a previous install.\nset(FLUTTER_ASSET_DIR_NAME \"flutter_assets\")\ninstall(CODE \"\n  file(REMOVE_RECURSE \\\"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\\\")\n  \" COMPONENT Runtime)\ninstall(DIRECTORY \"${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}\"\n  DESTINATION \"${INSTALL_BUNDLE_DATA_DIR}\" COMPONENT Runtime)\n\n# Install the AOT library on non-Debug builds only.\ninstall(FILES \"${AOT_LIBRARY}\" DESTINATION \"${INSTALL_BUNDLE_DATA_DIR}\"\n  CONFIGURATIONS Profile;Release\n  COMPONENT Runtime)\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/flutter/CMakeLists.txt",
    "content": "# This file controls Flutter-level build steps. It should not be edited.\ncmake_minimum_required(VERSION 3.14)\n\nset(EPHEMERAL_DIR \"${CMAKE_CURRENT_SOURCE_DIR}/ephemeral\")\n\n# Configuration provided via flutter tool.\ninclude(${EPHEMERAL_DIR}/generated_config.cmake)\n\n# TODO: Move the rest of this into files in ephemeral. See\n# https://github.com/flutter/flutter/issues/57146.\nset(WRAPPER_ROOT \"${EPHEMERAL_DIR}/cpp_client_wrapper\")\n\n# Set fallback configurations for older versions of the flutter tool.\nif (NOT DEFINED FLUTTER_TARGET_PLATFORM)\n  set(FLUTTER_TARGET_PLATFORM \"windows-x64\")\nendif()\n\n# === Flutter Library ===\nset(FLUTTER_LIBRARY \"${EPHEMERAL_DIR}/flutter_windows.dll\")\n\n# Published to parent scope for install step.\nset(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE)\nset(FLUTTER_ICU_DATA_FILE \"${EPHEMERAL_DIR}/icudtl.dat\" PARENT_SCOPE)\nset(PROJECT_BUILD_DIR \"${PROJECT_DIR}/build/\" PARENT_SCOPE)\nset(AOT_LIBRARY \"${PROJECT_DIR}/build/windows/app.so\" PARENT_SCOPE)\n\nlist(APPEND FLUTTER_LIBRARY_HEADERS\n  \"flutter_export.h\"\n  \"flutter_windows.h\"\n  \"flutter_messenger.h\"\n  \"flutter_plugin_registrar.h\"\n  \"flutter_texture_registrar.h\"\n)\nlist(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND \"${EPHEMERAL_DIR}/\")\nadd_library(flutter INTERFACE)\ntarget_include_directories(flutter INTERFACE\n  \"${EPHEMERAL_DIR}\"\n)\ntarget_link_libraries(flutter INTERFACE \"${FLUTTER_LIBRARY}.lib\")\nadd_dependencies(flutter flutter_assemble)\n\n# === Wrapper ===\nlist(APPEND CPP_WRAPPER_SOURCES_CORE\n  \"core_implementations.cc\"\n  \"standard_codec.cc\"\n)\nlist(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND \"${WRAPPER_ROOT}/\")\nlist(APPEND CPP_WRAPPER_SOURCES_PLUGIN\n  \"plugin_registrar.cc\"\n)\nlist(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND \"${WRAPPER_ROOT}/\")\nlist(APPEND CPP_WRAPPER_SOURCES_APP\n  \"flutter_engine.cc\"\n  \"flutter_view_controller.cc\"\n)\nlist(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND \"${WRAPPER_ROOT}/\")\n\n# Wrapper sources needed for a plugin.\nadd_library(flutter_wrapper_plugin STATIC\n  ${CPP_WRAPPER_SOURCES_CORE}\n  ${CPP_WRAPPER_SOURCES_PLUGIN}\n)\napply_standard_settings(flutter_wrapper_plugin)\nset_target_properties(flutter_wrapper_plugin PROPERTIES\n  POSITION_INDEPENDENT_CODE ON)\nset_target_properties(flutter_wrapper_plugin PROPERTIES\n  CXX_VISIBILITY_PRESET hidden)\ntarget_link_libraries(flutter_wrapper_plugin PUBLIC flutter)\ntarget_include_directories(flutter_wrapper_plugin PUBLIC\n  \"${WRAPPER_ROOT}/include\"\n)\nadd_dependencies(flutter_wrapper_plugin flutter_assemble)\n\n# Wrapper sources needed for the runner.\nadd_library(flutter_wrapper_app STATIC\n  ${CPP_WRAPPER_SOURCES_CORE}\n  ${CPP_WRAPPER_SOURCES_APP}\n)\napply_standard_settings(flutter_wrapper_app)\ntarget_link_libraries(flutter_wrapper_app PUBLIC flutter)\ntarget_include_directories(flutter_wrapper_app PUBLIC\n  \"${WRAPPER_ROOT}/include\"\n)\nadd_dependencies(flutter_wrapper_app flutter_assemble)\n\n# === Flutter tool backend ===\n# _phony_ is a non-existent file to force this command to run every time,\n# since currently there's no way to get a full input/output list from the\n# flutter tool.\nset(PHONY_OUTPUT \"${CMAKE_CURRENT_BINARY_DIR}/_phony_\")\nset_source_files_properties(\"${PHONY_OUTPUT}\" PROPERTIES SYMBOLIC TRUE)\nadd_custom_command(\n  OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS}\n    ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN}\n    ${CPP_WRAPPER_SOURCES_APP}\n    ${PHONY_OUTPUT}\n  COMMAND ${CMAKE_COMMAND} -E env\n    ${FLUTTER_TOOL_ENVIRONMENT}\n    \"${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat\"\n      ${FLUTTER_TARGET_PLATFORM} $<CONFIG>\n  VERBATIM\n)\nadd_custom_target(flutter_assemble DEPENDS\n  \"${FLUTTER_LIBRARY}\"\n  ${FLUTTER_LIBRARY_HEADERS}\n  ${CPP_WRAPPER_SOURCES_CORE}\n  ${CPP_WRAPPER_SOURCES_PLUGIN}\n  ${CPP_WRAPPER_SOURCES_APP}\n)\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/flutter/generated_plugin_registrant.cc",
    "content": "//\n//  Generated file. Do not edit.\n//\n\n// clang-format off\n\n#include \"generated_plugin_registrant.h\"\n\n\nvoid RegisterPlugins(flutter::PluginRegistry* registry) {\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/flutter/generated_plugin_registrant.h",
    "content": "//\n//  Generated file. Do not edit.\n//\n\n// clang-format off\n\n#ifndef GENERATED_PLUGIN_REGISTRANT_\n#define GENERATED_PLUGIN_REGISTRANT_\n\n#include <flutter/plugin_registry.h>\n\n// Registers Flutter plugins.\nvoid RegisterPlugins(flutter::PluginRegistry* registry);\n\n#endif  // GENERATED_PLUGIN_REGISTRANT_\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/flutter/generated_plugins.cmake",
    "content": "#\n# Generated file, do not edit.\n#\n\nlist(APPEND FLUTTER_PLUGIN_LIST\n)\n\nlist(APPEND FLUTTER_FFI_PLUGIN_LIST\n)\n\nset(PLUGIN_BUNDLED_LIBRARIES)\n\nforeach(plugin ${FLUTTER_PLUGIN_LIST})\n  add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin})\n  target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)\n  list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)\n  list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})\nendforeach(plugin)\n\nforeach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})\n  add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})\n  list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})\nendforeach(ffi_plugin)\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/runner/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.14)\nproject(runner LANGUAGES CXX)\n\n# Define the application target. To change its name, change BINARY_NAME in the\n# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer\n# work.\n#\n# Any new source files that you add to the application should be added here.\nadd_executable(${BINARY_NAME} WIN32\n  \"flutter_window.cpp\"\n  \"main.cpp\"\n  \"utils.cpp\"\n  \"win32_window.cpp\"\n  \"${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc\"\n  \"Runner.rc\"\n  \"runner.exe.manifest\"\n)\n\n# Apply the standard set of build settings. This can be removed for applications\n# that need different build settings.\napply_standard_settings(${BINARY_NAME})\n\n# Add preprocessor definitions for the build version.\ntarget_compile_definitions(${BINARY_NAME} PRIVATE \"FLUTTER_VERSION=\\\"${FLUTTER_VERSION}\\\"\")\ntarget_compile_definitions(${BINARY_NAME} PRIVATE \"FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}\")\ntarget_compile_definitions(${BINARY_NAME} PRIVATE \"FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}\")\ntarget_compile_definitions(${BINARY_NAME} PRIVATE \"FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}\")\ntarget_compile_definitions(${BINARY_NAME} PRIVATE \"FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}\")\n\n# Disable Windows macros that collide with C++ standard library functions.\ntarget_compile_definitions(${BINARY_NAME} PRIVATE \"NOMINMAX\")\n\n# Add dependency libraries and include directories. Add any application-specific\n# dependencies here.\ntarget_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app)\ntarget_link_libraries(${BINARY_NAME} PRIVATE \"dwmapi.lib\")\ntarget_include_directories(${BINARY_NAME} PRIVATE \"${CMAKE_SOURCE_DIR}\")\n\n# Run the Flutter tool portions of the build. This must not be removed.\nadd_dependencies(${BINARY_NAME} flutter_assemble)\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/runner/Runner.rc",
    "content": "// Microsoft Visual C++ generated resource script.\n//\n#pragma code_page(65001)\n#include \"resource.h\"\n\n#define APSTUDIO_READONLY_SYMBOLS\n/////////////////////////////////////////////////////////////////////////////\n//\n// Generated from the TEXTINCLUDE 2 resource.\n//\n#include \"winres.h\"\n\n/////////////////////////////////////////////////////////////////////////////\n#undef APSTUDIO_READONLY_SYMBOLS\n\n/////////////////////////////////////////////////////////////////////////////\n// English (United States) resources\n\n#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\nLANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US\n\n#ifdef APSTUDIO_INVOKED\n/////////////////////////////////////////////////////////////////////////////\n//\n// TEXTINCLUDE\n//\n\n1 TEXTINCLUDE\nBEGIN\n    \"resource.h\\0\"\nEND\n\n2 TEXTINCLUDE\nBEGIN\n    \"#include \"\"winres.h\"\"\\r\\n\"\n    \"\\0\"\nEND\n\n3 TEXTINCLUDE\nBEGIN\n    \"\\r\\n\"\n    \"\\0\"\nEND\n\n#endif    // APSTUDIO_INVOKED\n\n\n/////////////////////////////////////////////////////////////////////////////\n//\n// Icon\n//\n\n// Icon with lowest ID value placed first to ensure application icon\n// remains consistent on all systems.\nIDI_APP_ICON            ICON                    \"resources\\\\app_icon.ico\"\n\n\n/////////////////////////////////////////////////////////////////////////////\n//\n// Version\n//\n\n#if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD)\n#define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD\n#else\n#define VERSION_AS_NUMBER 1,0,0,0\n#endif\n\n#if defined(FLUTTER_VERSION)\n#define VERSION_AS_STRING FLUTTER_VERSION\n#else\n#define VERSION_AS_STRING \"1.0.0\"\n#endif\n\nVS_VERSION_INFO VERSIONINFO\n FILEVERSION VERSION_AS_NUMBER\n PRODUCTVERSION VERSION_AS_NUMBER\n FILEFLAGSMASK VS_FFI_FILEFLAGSMASK\n#ifdef _DEBUG\n FILEFLAGS VS_FF_DEBUG\n#else\n FILEFLAGS 0x0L\n#endif\n FILEOS VOS__WINDOWS32\n FILETYPE VFT_APP\n FILESUBTYPE 0x0L\nBEGIN\n    BLOCK \"StringFileInfo\"\n    BEGIN\n        BLOCK \"040904e4\"\n        BEGIN\n            VALUE \"CompanyName\", \"com.example\" \"\\0\"\n            VALUE \"FileDescription\", \"flutter_integration_tests\" \"\\0\"\n            VALUE \"FileVersion\", VERSION_AS_STRING \"\\0\"\n            VALUE \"InternalName\", \"flutter_integration_tests\" \"\\0\"\n            VALUE \"LegalCopyright\", \"Copyright (C) 2025 com.example. All rights reserved.\" \"\\0\"\n            VALUE \"OriginalFilename\", \"flutter_integration_tests.exe\" \"\\0\"\n            VALUE \"ProductName\", \"flutter_integration_tests\" \"\\0\"\n            VALUE \"ProductVersion\", VERSION_AS_STRING \"\\0\"\n        END\n    END\n    BLOCK \"VarFileInfo\"\n    BEGIN\n        VALUE \"Translation\", 0x409, 1252\n    END\nEND\n\n#endif    // English (United States) resources\n/////////////////////////////////////////////////////////////////////////////\n\n\n\n#ifndef APSTUDIO_INVOKED\n/////////////////////////////////////////////////////////////////////////////\n//\n// Generated from the TEXTINCLUDE 3 resource.\n//\n\n\n/////////////////////////////////////////////////////////////////////////////\n#endif    // not APSTUDIO_INVOKED\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/runner/flutter_window.cpp",
    "content": "#include \"flutter_window.h\"\n\n#include <optional>\n\n#include \"flutter/generated_plugin_registrant.h\"\n\nFlutterWindow::FlutterWindow(const flutter::DartProject& project)\n    : project_(project) {}\n\nFlutterWindow::~FlutterWindow() {}\n\nbool FlutterWindow::OnCreate() {\n  if (!Win32Window::OnCreate()) {\n    return false;\n  }\n\n  RECT frame = GetClientArea();\n\n  // The size here must match the window dimensions to avoid unnecessary surface\n  // creation / destruction in the startup path.\n  flutter_controller_ = std::make_unique<flutter::FlutterViewController>(\n      frame.right - frame.left, frame.bottom - frame.top, project_);\n  // Ensure that basic setup of the controller was successful.\n  if (!flutter_controller_->engine() || !flutter_controller_->view()) {\n    return false;\n  }\n  RegisterPlugins(flutter_controller_->engine());\n  SetChildContent(flutter_controller_->view()->GetNativeWindow());\n\n  flutter_controller_->engine()->SetNextFrameCallback([&]() {\n    this->Show();\n  });\n\n  // Flutter can complete the first frame before the \"show window\" callback is\n  // registered. The following call ensures a frame is pending to ensure the\n  // window is shown. It is a no-op if the first frame hasn't completed yet.\n  flutter_controller_->ForceRedraw();\n\n  return true;\n}\n\nvoid FlutterWindow::OnDestroy() {\n  if (flutter_controller_) {\n    flutter_controller_ = nullptr;\n  }\n\n  Win32Window::OnDestroy();\n}\n\nLRESULT\nFlutterWindow::MessageHandler(HWND hwnd, UINT const message,\n                              WPARAM const wparam,\n                              LPARAM const lparam) noexcept {\n  // Give Flutter, including plugins, an opportunity to handle window messages.\n  if (flutter_controller_) {\n    std::optional<LRESULT> result =\n        flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam,\n                                                      lparam);\n    if (result) {\n      return *result;\n    }\n  }\n\n  switch (message) {\n    case WM_FONTCHANGE:\n      flutter_controller_->engine()->ReloadSystemFonts();\n      break;\n  }\n\n  return Win32Window::MessageHandler(hwnd, message, wparam, lparam);\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/runner/flutter_window.h",
    "content": "#ifndef RUNNER_FLUTTER_WINDOW_H_\n#define RUNNER_FLUTTER_WINDOW_H_\n\n#include <flutter/dart_project.h>\n#include <flutter/flutter_view_controller.h>\n\n#include <memory>\n\n#include \"win32_window.h\"\n\n// A window that does nothing but host a Flutter view.\nclass FlutterWindow : public Win32Window {\n public:\n  // Creates a new FlutterWindow hosting a Flutter view running |project|.\n  explicit FlutterWindow(const flutter::DartProject& project);\n  virtual ~FlutterWindow();\n\n protected:\n  // Win32Window:\n  bool OnCreate() override;\n  void OnDestroy() override;\n  LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam,\n                         LPARAM const lparam) noexcept override;\n\n private:\n  // The project to run.\n  flutter::DartProject project_;\n\n  // The Flutter instance hosted by this window.\n  std::unique_ptr<flutter::FlutterViewController> flutter_controller_;\n};\n\n#endif  // RUNNER_FLUTTER_WINDOW_H_\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/runner/main.cpp",
    "content": "#include <flutter/dart_project.h>\n#include <flutter/flutter_view_controller.h>\n#include <windows.h>\n\n#include \"flutter_window.h\"\n#include \"utils.h\"\n\nint APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,\n                      _In_ wchar_t *command_line, _In_ int show_command) {\n  // Attach to console when present (e.g., 'flutter run') or create a\n  // new console when running with a debugger.\n  if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) {\n    CreateAndAttachConsole();\n  }\n\n  // Initialize COM, so that it is available for use in the library and/or\n  // plugins.\n  ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED);\n\n  flutter::DartProject project(L\"data\");\n\n  std::vector<std::string> command_line_arguments =\n      GetCommandLineArguments();\n\n  project.set_dart_entrypoint_arguments(std::move(command_line_arguments));\n\n  FlutterWindow window(project);\n  Win32Window::Point origin(10, 10);\n  Win32Window::Size size(1280, 720);\n  if (!window.Create(L\"flutter_integration_tests\", origin, size)) {\n    return EXIT_FAILURE;\n  }\n  window.SetQuitOnClose(true);\n\n  ::MSG msg;\n  while (::GetMessage(&msg, nullptr, 0, 0)) {\n    ::TranslateMessage(&msg);\n    ::DispatchMessage(&msg);\n  }\n\n  ::CoUninitialize();\n  return EXIT_SUCCESS;\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/runner/resource.h",
    "content": "//{{NO_DEPENDENCIES}}\n// Microsoft Visual C++ generated include file.\n// Used by Runner.rc\n//\n#define IDI_APP_ICON                    101\n\n// Next default values for new objects\n//\n#ifdef APSTUDIO_INVOKED\n#ifndef APSTUDIO_READONLY_SYMBOLS\n#define _APS_NEXT_RESOURCE_VALUE        102\n#define _APS_NEXT_COMMAND_VALUE         40001\n#define _APS_NEXT_CONTROL_VALUE         1001\n#define _APS_NEXT_SYMED_VALUE           101\n#endif\n#endif\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/runner/runner.exe.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<assembly xmlns=\"urn:schemas-microsoft-com:asm.v1\" manifestVersion=\"1.0\">\n  <application xmlns=\"urn:schemas-microsoft-com:asm.v3\">\n    <windowsSettings>\n      <dpiAwareness xmlns=\"http://schemas.microsoft.com/SMI/2016/WindowsSettings\">PerMonitorV2</dpiAwareness>\n    </windowsSettings>\n  </application>\n  <compatibility xmlns=\"urn:schemas-microsoft-com:compatibility.v1\">\n    <application>\n      <!-- Windows 10 and Windows 11 -->\n      <supportedOS Id=\"{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}\"/>\n    </application>\n  </compatibility>\n</assembly>\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/runner/utils.cpp",
    "content": "#include \"utils.h\"\n\n#include <flutter_windows.h>\n#include <io.h>\n#include <stdio.h>\n#include <windows.h>\n\n#include <iostream>\n\nvoid CreateAndAttachConsole() {\n  if (::AllocConsole()) {\n    FILE *unused;\n    if (freopen_s(&unused, \"CONOUT$\", \"w\", stdout)) {\n      _dup2(_fileno(stdout), 1);\n    }\n    if (freopen_s(&unused, \"CONOUT$\", \"w\", stderr)) {\n      _dup2(_fileno(stdout), 2);\n    }\n    std::ios::sync_with_stdio();\n    FlutterDesktopResyncOutputStreams();\n  }\n}\n\nstd::vector<std::string> GetCommandLineArguments() {\n  // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use.\n  int argc;\n  wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc);\n  if (argv == nullptr) {\n    return std::vector<std::string>();\n  }\n\n  std::vector<std::string> command_line_arguments;\n\n  // Skip the first argument as it's the binary name.\n  for (int i = 1; i < argc; i++) {\n    command_line_arguments.push_back(Utf8FromUtf16(argv[i]));\n  }\n\n  ::LocalFree(argv);\n\n  return command_line_arguments;\n}\n\nstd::string Utf8FromUtf16(const wchar_t* utf16_string) {\n  if (utf16_string == nullptr) {\n    return std::string();\n  }\n  unsigned int target_length = ::WideCharToMultiByte(\n      CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string,\n      -1, nullptr, 0, nullptr, nullptr)\n    -1; // remove the trailing null character\n  int input_length = (int)wcslen(utf16_string);\n  std::string utf8_string;\n  if (target_length == 0 || target_length > utf8_string.max_size()) {\n    return utf8_string;\n  }\n  utf8_string.resize(target_length);\n  int converted_length = ::WideCharToMultiByte(\n      CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string,\n      input_length, utf8_string.data(), target_length, nullptr, nullptr);\n  if (converted_length == 0) {\n    return std::string();\n  }\n  return utf8_string;\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/runner/utils.h",
    "content": "#ifndef RUNNER_UTILS_H_\n#define RUNNER_UTILS_H_\n\n#include <string>\n#include <vector>\n\n// Creates a console for the process, and redirects stdout and stderr to\n// it for both the runner and the Flutter library.\nvoid CreateAndAttachConsole();\n\n// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string\n// encoded in UTF-8. Returns an empty std::string on failure.\nstd::string Utf8FromUtf16(const wchar_t* utf16_string);\n\n// Gets the command line arguments passed in as a std::vector<std::string>,\n// encoded in UTF-8. Returns an empty std::vector<std::string> on failure.\nstd::vector<std::string> GetCommandLineArguments();\n\n#endif  // RUNNER_UTILS_H_\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/runner/win32_window.cpp",
    "content": "#include \"win32_window.h\"\n\n#include <dwmapi.h>\n#include <flutter_windows.h>\n\n#include \"resource.h\"\n\nnamespace {\n\n/// Window attribute that enables dark mode window decorations.\n///\n/// Redefined in case the developer's machine has a Windows SDK older than\n/// version 10.0.22000.0.\n/// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute\n#ifndef DWMWA_USE_IMMERSIVE_DARK_MODE\n#define DWMWA_USE_IMMERSIVE_DARK_MODE 20\n#endif\n\nconstexpr const wchar_t kWindowClassName[] = L\"FLUTTER_RUNNER_WIN32_WINDOW\";\n\n/// Registry key for app theme preference.\n///\n/// A value of 0 indicates apps should use dark mode. A non-zero or missing\n/// value indicates apps should use light mode.\nconstexpr const wchar_t kGetPreferredBrightnessRegKey[] =\n  L\"Software\\\\Microsoft\\\\Windows\\\\CurrentVersion\\\\Themes\\\\Personalize\";\nconstexpr const wchar_t kGetPreferredBrightnessRegValue[] = L\"AppsUseLightTheme\";\n\n// The number of Win32Window objects that currently exist.\nstatic int g_active_window_count = 0;\n\nusing EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd);\n\n// Scale helper to convert logical scaler values to physical using passed in\n// scale factor\nint Scale(int source, double scale_factor) {\n  return static_cast<int>(source * scale_factor);\n}\n\n// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module.\n// This API is only needed for PerMonitor V1 awareness mode.\nvoid EnableFullDpiSupportIfAvailable(HWND hwnd) {\n  HMODULE user32_module = LoadLibraryA(\"User32.dll\");\n  if (!user32_module) {\n    return;\n  }\n  auto enable_non_client_dpi_scaling =\n      reinterpret_cast<EnableNonClientDpiScaling*>(\n          GetProcAddress(user32_module, \"EnableNonClientDpiScaling\"));\n  if (enable_non_client_dpi_scaling != nullptr) {\n    enable_non_client_dpi_scaling(hwnd);\n  }\n  FreeLibrary(user32_module);\n}\n\n}  // namespace\n\n// Manages the Win32Window's window class registration.\nclass WindowClassRegistrar {\n public:\n  ~WindowClassRegistrar() = default;\n\n  // Returns the singleton registrar instance.\n  static WindowClassRegistrar* GetInstance() {\n    if (!instance_) {\n      instance_ = new WindowClassRegistrar();\n    }\n    return instance_;\n  }\n\n  // Returns the name of the window class, registering the class if it hasn't\n  // previously been registered.\n  const wchar_t* GetWindowClass();\n\n  // Unregisters the window class. Should only be called if there are no\n  // instances of the window.\n  void UnregisterWindowClass();\n\n private:\n  WindowClassRegistrar() = default;\n\n  static WindowClassRegistrar* instance_;\n\n  bool class_registered_ = false;\n};\n\nWindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr;\n\nconst wchar_t* WindowClassRegistrar::GetWindowClass() {\n  if (!class_registered_) {\n    WNDCLASS window_class{};\n    window_class.hCursor = LoadCursor(nullptr, IDC_ARROW);\n    window_class.lpszClassName = kWindowClassName;\n    window_class.style = CS_HREDRAW | CS_VREDRAW;\n    window_class.cbClsExtra = 0;\n    window_class.cbWndExtra = 0;\n    window_class.hInstance = GetModuleHandle(nullptr);\n    window_class.hIcon =\n        LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON));\n    window_class.hbrBackground = 0;\n    window_class.lpszMenuName = nullptr;\n    window_class.lpfnWndProc = Win32Window::WndProc;\n    RegisterClass(&window_class);\n    class_registered_ = true;\n  }\n  return kWindowClassName;\n}\n\nvoid WindowClassRegistrar::UnregisterWindowClass() {\n  UnregisterClass(kWindowClassName, nullptr);\n  class_registered_ = false;\n}\n\nWin32Window::Win32Window() {\n  ++g_active_window_count;\n}\n\nWin32Window::~Win32Window() {\n  --g_active_window_count;\n  Destroy();\n}\n\nbool Win32Window::Create(const std::wstring& title,\n                         const Point& origin,\n                         const Size& size) {\n  Destroy();\n\n  const wchar_t* window_class =\n      WindowClassRegistrar::GetInstance()->GetWindowClass();\n\n  const POINT target_point = {static_cast<LONG>(origin.x),\n                              static_cast<LONG>(origin.y)};\n  HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST);\n  UINT dpi = FlutterDesktopGetDpiForMonitor(monitor);\n  double scale_factor = dpi / 96.0;\n\n  HWND window = CreateWindow(\n      window_class, title.c_str(), WS_OVERLAPPEDWINDOW,\n      Scale(origin.x, scale_factor), Scale(origin.y, scale_factor),\n      Scale(size.width, scale_factor), Scale(size.height, scale_factor),\n      nullptr, nullptr, GetModuleHandle(nullptr), this);\n\n  if (!window) {\n    return false;\n  }\n\n  UpdateTheme(window);\n\n  return OnCreate();\n}\n\nbool Win32Window::Show() {\n  return ShowWindow(window_handle_, SW_SHOWNORMAL);\n}\n\n// static\nLRESULT CALLBACK Win32Window::WndProc(HWND const window,\n                                      UINT const message,\n                                      WPARAM const wparam,\n                                      LPARAM const lparam) noexcept {\n  if (message == WM_NCCREATE) {\n    auto window_struct = reinterpret_cast<CREATESTRUCT*>(lparam);\n    SetWindowLongPtr(window, GWLP_USERDATA,\n                     reinterpret_cast<LONG_PTR>(window_struct->lpCreateParams));\n\n    auto that = static_cast<Win32Window*>(window_struct->lpCreateParams);\n    EnableFullDpiSupportIfAvailable(window);\n    that->window_handle_ = window;\n  } else if (Win32Window* that = GetThisFromHandle(window)) {\n    return that->MessageHandler(window, message, wparam, lparam);\n  }\n\n  return DefWindowProc(window, message, wparam, lparam);\n}\n\nLRESULT\nWin32Window::MessageHandler(HWND hwnd,\n                            UINT const message,\n                            WPARAM const wparam,\n                            LPARAM const lparam) noexcept {\n  switch (message) {\n    case WM_DESTROY:\n      window_handle_ = nullptr;\n      Destroy();\n      if (quit_on_close_) {\n        PostQuitMessage(0);\n      }\n      return 0;\n\n    case WM_DPICHANGED: {\n      auto newRectSize = reinterpret_cast<RECT*>(lparam);\n      LONG newWidth = newRectSize->right - newRectSize->left;\n      LONG newHeight = newRectSize->bottom - newRectSize->top;\n\n      SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth,\n                   newHeight, SWP_NOZORDER | SWP_NOACTIVATE);\n\n      return 0;\n    }\n    case WM_SIZE: {\n      RECT rect = GetClientArea();\n      if (child_content_ != nullptr) {\n        // Size and position the child window.\n        MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left,\n                   rect.bottom - rect.top, TRUE);\n      }\n      return 0;\n    }\n\n    case WM_ACTIVATE:\n      if (child_content_ != nullptr) {\n        SetFocus(child_content_);\n      }\n      return 0;\n\n    case WM_DWMCOLORIZATIONCOLORCHANGED:\n      UpdateTheme(hwnd);\n      return 0;\n  }\n\n  return DefWindowProc(window_handle_, message, wparam, lparam);\n}\n\nvoid Win32Window::Destroy() {\n  OnDestroy();\n\n  if (window_handle_) {\n    DestroyWindow(window_handle_);\n    window_handle_ = nullptr;\n  }\n  if (g_active_window_count == 0) {\n    WindowClassRegistrar::GetInstance()->UnregisterWindowClass();\n  }\n}\n\nWin32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept {\n  return reinterpret_cast<Win32Window*>(\n      GetWindowLongPtr(window, GWLP_USERDATA));\n}\n\nvoid Win32Window::SetChildContent(HWND content) {\n  child_content_ = content;\n  SetParent(content, window_handle_);\n  RECT frame = GetClientArea();\n\n  MoveWindow(content, frame.left, frame.top, frame.right - frame.left,\n             frame.bottom - frame.top, true);\n\n  SetFocus(child_content_);\n}\n\nRECT Win32Window::GetClientArea() {\n  RECT frame;\n  GetClientRect(window_handle_, &frame);\n  return frame;\n}\n\nHWND Win32Window::GetHandle() {\n  return window_handle_;\n}\n\nvoid Win32Window::SetQuitOnClose(bool quit_on_close) {\n  quit_on_close_ = quit_on_close;\n}\n\nbool Win32Window::OnCreate() {\n  // No-op; provided for subclasses.\n  return true;\n}\n\nvoid Win32Window::OnDestroy() {\n  // No-op; provided for subclasses.\n}\n\nvoid Win32Window::UpdateTheme(HWND const window) {\n  DWORD light_mode;\n  DWORD light_mode_size = sizeof(light_mode);\n  LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey,\n                               kGetPreferredBrightnessRegValue,\n                               RRF_RT_REG_DWORD, nullptr, &light_mode,\n                               &light_mode_size);\n\n  if (result == ERROR_SUCCESS) {\n    BOOL enable_dark_mode = light_mode == 0;\n    DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE,\n                          &enable_dark_mode, sizeof(enable_dark_mode));\n  }\n}\n"
  },
  {
    "path": "examples/flutter_integration_tests/windows/runner/win32_window.h",
    "content": "#ifndef RUNNER_WIN32_WINDOW_H_\n#define RUNNER_WIN32_WINDOW_H_\n\n#include <windows.h>\n\n#include <functional>\n#include <memory>\n#include <string>\n\n// A class abstraction for a high DPI-aware Win32 Window. Intended to be\n// inherited from by classes that wish to specialize with custom\n// rendering and input handling\nclass Win32Window {\n public:\n  struct Point {\n    unsigned int x;\n    unsigned int y;\n    Point(unsigned int x, unsigned int y) : x(x), y(y) {}\n  };\n\n  struct Size {\n    unsigned int width;\n    unsigned int height;\n    Size(unsigned int width, unsigned int height)\n        : width(width), height(height) {}\n  };\n\n  Win32Window();\n  virtual ~Win32Window();\n\n  // Creates a win32 window with |title| that is positioned and sized using\n  // |origin| and |size|. New windows are created on the default monitor. Window\n  // sizes are specified to the OS in physical pixels, hence to ensure a\n  // consistent size this function will scale the inputted width and height as\n  // as appropriate for the default monitor. The window is invisible until\n  // |Show| is called. Returns true if the window was created successfully.\n  bool Create(const std::wstring& title, const Point& origin, const Size& size);\n\n  // Show the current window. Returns true if the window was successfully shown.\n  bool Show();\n\n  // Release OS resources associated with window.\n  void Destroy();\n\n  // Inserts |content| into the window tree.\n  void SetChildContent(HWND content);\n\n  // Returns the backing Window handle to enable clients to set icon and other\n  // window properties. Returns nullptr if the window has been destroyed.\n  HWND GetHandle();\n\n  // If true, closing this window will quit the application.\n  void SetQuitOnClose(bool quit_on_close);\n\n  // Return a RECT representing the bounds of the current client area.\n  RECT GetClientArea();\n\n protected:\n  // Processes and route salient window messages for mouse handling,\n  // size change and DPI. Delegates handling of these to member overloads that\n  // inheriting classes can handle.\n  virtual LRESULT MessageHandler(HWND window,\n                                 UINT const message,\n                                 WPARAM const wparam,\n                                 LPARAM const lparam) noexcept;\n\n  // Called when CreateAndShow is called, allowing subclass window-related\n  // setup. Subclasses should return false if setup fails.\n  virtual bool OnCreate();\n\n  // Called when Destroy is called.\n  virtual void OnDestroy();\n\n private:\n  friend class WindowClassRegistrar;\n\n  // OS callback called by message pump. Handles the WM_NCCREATE message which\n  // is passed when the non-client area is being created and enables automatic\n  // non-client DPI scaling so that the non-client area automatically\n  // responds to changes in DPI. All other messages are handled by\n  // MessageHandler.\n  static LRESULT CALLBACK WndProc(HWND const window,\n                                  UINT const message,\n                                  WPARAM const wparam,\n                                  LPARAM const lparam) noexcept;\n\n  // Retrieves a class instance pointer for |window|\n  static Win32Window* GetThisFromHandle(HWND const window) noexcept;\n\n  // Update the window frame's theme to match the system theme.\n  static void UpdateTheme(HWND const window);\n\n  bool quit_on_close_ = false;\n\n  // window handle for top level window.\n  HWND window_handle_ = nullptr;\n\n  // window handle for hosted content.\n  HWND child_content_ = nullptr;\n};\n\n#endif  // RUNNER_WIN32_WINDOW_H_\n"
  },
  {
    "path": "examples/multiplatform/analysis_options.yaml",
    "content": "# https://dart.dev/guides/language/analysis-options\ninclude: package:lints/recommended.yaml\n"
  },
  {
    "path": "examples/multiplatform/db/db.dart",
    "content": "import 'package:sqlite3/common.dart' show CommonDatabase;\nimport 'sqlite3/sqlite3.dart' show openSqliteDb;\n\nlate CommonDatabase sqliteDb;\n\nFuture<void> openDb() async {\n  sqliteDb = await openSqliteDb();\n\n  final dbVersion = sqliteDb\n      .select('PRAGMA user_version')\n      .first['user_version'];\n\n  print('DB version: $dbVersion');\n\n  if (dbVersion == 0) {\n    sqliteDb.execute('''\n      BEGIN;\n      -- TODO\n      PRAGMA user_version = 1;\n      COMMIT;\n    ''');\n  }\n}\n"
  },
  {
    "path": "examples/multiplatform/db/sqlite3/native.dart",
    "content": "import 'package:path/path.dart' as path;\nimport 'package:path_provider/path_provider.dart'\n    show getApplicationDocumentsDirectory;\nimport 'package:sqlite3/common.dart' show CommonDatabase;\nimport 'package:sqlite3/sqlite3.dart' show sqlite3;\n\nFuture<CommonDatabase> openSqliteDb() async {\n  final docsDir = await getApplicationDocumentsDirectory();\n  final filename = path.join(docsDir.path, 'my_app.db');\n  return sqlite3.open(filename);\n}\n"
  },
  {
    "path": "examples/multiplatform/db/sqlite3/sqlite3.dart",
    "content": "export 'unsupported.dart'\n    if (dart.library.js) 'web.dart'\n    if (dart.library.ffi) 'native.dart'\n    show openSqliteDb;\n"
  },
  {
    "path": "examples/multiplatform/db/sqlite3/unsupported.dart",
    "content": "import 'package:sqlite3/common.dart' show CommonDatabase;\n\nFuture<CommonDatabase> openSqliteDb() async {\n  throw UnsupportedError('Sqlite3 is unsupported on this platform.');\n}\n"
  },
  {
    "path": "examples/multiplatform/db/sqlite3/web.dart",
    "content": "import 'package:sqlite3/common.dart' show CommonDatabase;\nimport 'package:sqlite3/wasm.dart' show IndexedDbFileSystem, WasmSqlite3;\n\nFuture<CommonDatabase> openSqliteDb() async {\n  const name = 'my_app';\n  // Please download `sqlite3.wasm` from https://github.com/simolus3/sqlite3.dart/releases\n  // into the `web/` dir of your Flutter app. See `README.md` for details.\n  final sqlite = await WasmSqlite3.loadFromUrl(Uri.parse('sqlite3.wasm'));\n  final fileSystem = await IndexedDbFileSystem.open(dbName: name);\n  sqlite.registerVirtualFileSystem(fileSystem, makeDefault: true);\n  return sqlite.open(name);\n}\n"
  },
  {
    "path": "examples/multiplatform/main.dart",
    "content": "import 'db/db.dart' show openDb;\n\nFuture<void> main() async {\n  // WidgetsFlutterBinding.ensureInitialized();\n  await openDb();\n  // runApp(const App());\n}\n"
  },
  {
    "path": "examples/multiplatform/pubspec.yaml",
    "content": "name: sqlite3_multiplatform_example\ndescription: Uses common interface to `sqlite3` on web and native platforms.\nversion: 0.1.0\npublish_to: 'none'\nresolution: workspace\n\nenvironment:\n  sdk: \"^3.9.0\"\n\ndependencies:\n  path: ^1.8.3\n  path_provider: ^2.1.1\n  sqlite3: ^3.0.0-0\n\ndev_dependencies:\n  lints: ^6.0.0\n"
  },
  {
    "path": "examples/pubspec.yaml",
    "content": "name: pkg_sqlite3_examples_workspace\npublish_to: none\n\nenvironment:\n  sdk: ^3.10.0-0\n\nworkspace:\n  - flutter_integration_tests\n  - multiplatform\n\ndependency_overrides:\n  sqlite3:\n    path: ../sqlite3\n  sqlite3_connection_pool:\n    path: ../sqlite3_connection_pool\n"
  },
  {
    "path": "legacy/sqlcipher_flutter_libs/CHANGELOG.md",
    "content": "## 0.7.0+eol\n\n- Deprecate this package. Starting from versions 3.x of the `sqlite3` package, `sqlcipher_flutter_libs` is no longer necessary.\n  See [these notes](https://github.com/simolus3/sqlite3.dart/blob/main/UPGRADING_TO_V3.md) for details on how to upgrade.\n  This version removes all code from this package. It can be used to require that the old Flutter-specific scripts are no longer\n  used.\n\n## 0.6.8\n\n- Update SQLCipher to version 4.10.0.\n\n## 0.6.7\n\n- Update SQLCipher to version 4.9.0.\n\n## 0.6.6\n\n- Update SQLCipher to version 4.8.0.\n\n## 0.6.5\n\n- Update SQLCipher to version 4.6.1.\n- Fix compilation error with Swift 6 on iOS.\n\n## 0.6.4\n\n- Fix compilation on Android by upgrading `compileSdk` version.\n\n## 0.6.3\n\n- Enable extension loading on Windows and Linux to match the compile options\n  used on other platforms.\n\n## 0.6.2\n\n- Update SQLCipher to `4.5.7`.\n\n## 0.6.1\n\n- Update SQLCipher to `4.5.6`.\n- For Linux builds, you can now include `set(OPENSSL_USE_STATIC_LIBS OFF)` in your\n  `CMakeLists.txt` to link OpenSSL dynamically.\n\n## 0.6.0\n\n- Update SQLCipher to `4.5.5` (https://www.zetetic.net/blog/2023/08/31/sqlcipher-4.5.5-release/)\n- On Android, migrate from `android-database-sqlcipher` to `sqlcipher-android`.\n  If you use SQLCipher APIs in your native Android platform code, consider migrating as well and\n  follow the [migration guide](https://www.zetetic.net/sqlcipher/sqlcipher-for-android-migration/).\n\n## 0.5.7\n\n- Consistently compile `SQLCipher` with `SQLITE_THREADSAFE=1` on all supported platforms.\n\n## 0.5.6\n\n- Upgrade `SQLCipher` to version `4.5.4` (https://www.zetetic.net/blog/2023/04/27/sqlcipher-4.5.4-release).\n\n## 0.5.5\n\n- Support Android projects built with Gradle 8.\n\n## 0.5.4\n\n- Fix building `SQLCipher` on Windows - see the readme for more details.\n\n## 0.5.3\n\n- Upgrade `SQLCipher` to version `4.5.2`.\n\n## 0.5.2\n\n- This package now works on Windows and Linux too!\n- Upgrade `SQLCipher` to version `4.5.1`\n\n## 0.5.1\n\n- Upgrade `SQLCipher` to version `4.5.0`\n\n## 0.5.0\n\n- Initial pub release to match the version of `sqlite3_flutter_libs`\n"
  },
  {
    "path": "legacy/sqlcipher_flutter_libs/LICENSE",
    "content": "sqlcipher_flutter_libs\n\nMIT License\n\nCopyright (c) 2020 Simon Binder\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n--------------------------------------------------------------------------------\nOpenSSL\n\n\n                                 Apache License\n                           Version 2.0, January 2004\n                        https://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n--------------------------------------------------------------------------------\nSQLCipher\n\nCopyright (c) 2008-2020 Zetetic LLC\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n    * Redistributions of source code must retain the above copyright\n        notice, this list of conditions and the following disclaimer.\n    * Redistributions in binary form must reproduce the above copyright\n        notice, this list of conditions and the following disclaimer in the\n        documentation and/or other materials provided with the distribution.\n    * Neither the name of the ZETETIC LLC nor the\n        names of its contributors may be used to endorse or promote products\n        derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY ZETETIC LLC ''AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL ZETETIC LLC BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "legacy/sqlcipher_flutter_libs/README.md",
    "content": "# sqlcipher_flutter_libs\n\n> [!CAUTION]\n> This package relates to version 2.x of `package:sqlite3`, and is obsolete after upgrading.\n> Please see [notes on upgrading](https://github.com/simolus3/sqlite3.dart/blob/main/UPGRADING_TO_V3.md)\n> and remove this package from your dependencies after adopting version 3.x of `package:sqlite3`.\n\nStarting from version `0.7.0`, this package no longer does anything.\nOther libraries can depend on version `0.7.0` after migrating to version 3.x of `package:sqlite3` to\nensure that an app does not use the old Flutter-specific SQLite build scripts from `0.6.x` and older.\n"
  },
  {
    "path": "legacy/sqlcipher_flutter_libs/lib/sqlcipher_flutter_libs.dart",
    "content": "/// This package does not do anything.\n///\n/// This package used to provide SQLCipher libraries for use with version 2.x of\n/// the `sqlite3` package. Starting from version 3.x, this separate package is\n/// no longer necessary.\n///\n/// Please see the [documentation on upgrading](https://github.com/simolus3/sqlite3.dart/blob/main/UPGRADING_TO_V3.md).\n/// The reason for keeping this package around is that other packages can depend\n/// on version `0.6.0` after upgrading to `package:sqlite3` version 3.x. This\n/// ensures that the old Flutter build scripts are guaranteed to not be part of\n/// the build.\nlibrary sqlcipher_flutter_libs;\n"
  },
  {
    "path": "legacy/sqlcipher_flutter_libs/pubspec.yaml",
    "content": "name: sqlcipher_flutter_libs\ndescription: \"Not used anymore, update to version 3.x of package:sqlite3 instead\"\nversion: 0.7.0+eol\nhomepage: https://github.com/simolus3/sqlite3.dart/tree/main/legacy/sqlcipher_flutter_libs\nissue_tracker: https://github.com/simolus3/sqlite3.dart/issues\nresolution: workspace\n\nenvironment:\n  sdk: \">=3.10.0 <4.0.0\"\n"
  },
  {
    "path": "legacy/sqlite3_flutter_libs/CHANGELOG.md",
    "content": "## 0.6.0+eol\n\n- Deprecate this package. Starting from versions 3.x of the `sqlite3` package, `sqlite3_flutter_libs` is no longer necessary.\n  See [these notes](https://github.com/simolus3/sqlite3.dart/blob/main/UPGRADING_TO_V3.md) for details on how to upgrade.\n  This version removes all code from this package. It can be used to require that the old Flutter-specific scripts are no longer\n  used.\n\n## 0.5.41\n\n- Upgrade sqlite to version `3.51.1`.\n\n## 0.5.40\n\n- iOS and macOS: Compile to a shared library when SwiftPM is used to avoid\n  conflicts with the SQLite library from Apple SDKs.\n\n## 0.5.39\n\n- Upgrade sqlite to version `3.50.4`.\n\n## 0.5.38\n\n- Enable pre-update hooks and the session extension.\n\n## 0.5.37\n\n- Upgrade sqlite to version `3.50.3`.\n\n## 0.5.36\n\n- Update Android Gradle buildscript to avoid compiler warnings on recent JDKs.\n\n## 0.5.35\n\n- Upgrade sqlite to version `3.50.2`.\n\n## 0.5.34\n\n- Upgrade sqlite to version `3.50.1`.\n\n## 0.5.33\n\n- Upgrade sqlite to version `3.49.2`.\n\n## 0.5.32\n\n- Enable builtin math functions.\n\n## 0.5.31\n\n- Upgrade sqlite to version `3.49.1`.\n\n## 0.5.30\n\n- Upgrade sqlite to version `3.49.0`.\n\n## 0.5.29+1\n\n- Android: Upgrade `compileSdkVersion` to `35`.\n\n## 0.5.29\n\n- Upgrade sqlite to version `3.48.0`.\n\n## 0.5.28\n\n- Upgrade sqlite to version `3.47.2`.\n\n## 0.5.27\n\n- Upgrade sqlite to version `3.47.1`.\n- In addition to CocoaPods, this package now supports the Swift Package Manager\n  for iOS and macOS builds.\n\n## 0.5.26\n\n- Upgrade sqlite to version `3.47.0`.\n\n## 0.5.25\n\n- Support 16KiB page sizes on Android 15.\n\n## 0.5.24\n\n- Enable the [dbstat](https://www.sqlite.org/dbstat.html) compile-time option.\n\n## 0.5.23\n\n- Enable extension loading on Windows and Linux to match the compile options\n  used on other platforms.\n\n## 0.5.22\n\n- Upgrade sqlite to version `3.46.0`.\n\n## 0.5.21\n\n- Upgrade sqlite to version `3.45.3`.\n\n## 0.5.20\n\n- Upgrade sqlite to version `3.45.1`.\n\n## 0.5.19+1\n\n- Upgrade sqlite to version `3.45.0`.\n\n## 0.5.18\n\n- Upgrade sqlite to version `3.44.0`.\n\n## 0.5.17\n\n- Upgrade sqlite to version `3.43.1`.\n\n## 0.5.16\n\n- Upgrade sqlite to version `3.43.0`.\n\n## 0.5.15\n\n- Upgrade sqlite to version `3.41.2`.\n\n## 0.5.14\n\n- Support Android projects built with Gradle 8.\n\n## 0.5.13\n\n- Upgrade sqlite to version `3.41.0`.\n\n## 0.5.12\n\n- Upgrade sqlite to version `3.40.0`.\n\n## 0.5.11+1\n\n- Upgrade sqlite3 to version `3.39.4`.\n- Fix a compilation warning on Windows.\n- Stop bundling `spellfix1` on platforms where that was still the case by\n  default.\n\n## 0.5.10\n\n- Upgrade sqlite to version `3.39.3`.\n- Consistently compile sqlite3 with `-DSQLITE_THREADSAFE=1` on all platforms.\n\n## 0.5.9\n\n- Upgrade sqlite to version `3.39.2`.\n\n## 0.5.8\n\n- Upgrade sqlite to version `3.39.0`\n\n## 0.5.7\n\n- Update sqlite to version `3.38.5`\n\n## 0.5.6\n\n- Update sqlite to version `3.38.3`\n\n## 0.5.5\n\n- Update sqlite to version `3.38.2`\n- Linux is now supported without additional setup.\n- Windows is now supported without additional setup.\n\n## 0.5.4\n\n- Update sqlite to version `3.38.0`\n\n## 0.5.3\n\n- Update sqlite to version `3.37.2`\n\n## 0.5.2\n\n- Update sqlite to version `3.37.0`\n\n## 0.5.1\n\n- Update sqlite to version `3.36.0`\n\n## 0.5.0\n\n- Also include sqlite when building for macOS\n\n## 0.4.3\n\n- Upgrade to sqlite3 version 3.35.4 on iOS as well\n\n## 0.4.2\n\n- Upgrade to sqlite3 version 3.35.4 on Android\n\n## 0.4.1\n\n- Raise minimum SDK constraint to Dart 2.12\n\n## 0.4.0\n\n`0.4.0+1` fixes an issue causing sqlite3 libraries to be unavailable in the\ncompiled app. Please don't use `0.4.0`!\n\n- Migrate native Android dependencies away from Bintray\n\n## 0.3.0\n\n- Add workaround for an apparent loader bug in Android 6.0.1 (see readme for details)\n\n## 0.2.0\n\n- Use ObjectiveC instead of Swift for the iOS plugin\n\n## 0.1.0\n\n- Add an empty Dart library to improve the pub score\n\n## 0.0.1\n\n- Initial release\n"
  },
  {
    "path": "legacy/sqlite3_flutter_libs/LICENSE",
    "content": "MIT License\n\nCopyright (c) 2020 Simon Binder\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "legacy/sqlite3_flutter_libs/README.md",
    "content": "# sqlite3_flutter_libs\n\n> [!CAUTION]\n> This package relates to version 2.x of `package:sqlite3`, and is obsolete after upgrading.\n> Please see [notes on upgrading](https://github.com/simolus3/sqlite3.dart/blob/main/UPGRADING_TO_V3.md)\n> and remove this package from your dependencies after adopting version 3.x of `package:sqlite3`.\n\nStarting from version `0.6.0`, this package no longer does anything.\nOther libraries can depend on version `0.6.0` after migrating to version 3.x of `package:sqlite3` to\nensure that an app does not use the old Flutter-specific SQLite build scripts from `0.5.x` and older.\n"
  },
  {
    "path": "legacy/sqlite3_flutter_libs/lib/sqlite3_flutter_libs.dart",
    "content": "/// This package does not do anything.\n///\n/// This package used to provide SQLite libraries for use with version 2.x of\n/// the `sqlite3` package. Starting from version 3.x, this separate package is\n/// no longer necessary.\n///\n/// Please see the [documentation on upgrading](https://github.com/simolus3/sqlite3.dart/blob/main/UPGRADING_TO_V3.md).\n/// The reason for keeping this package around is that other packages can depend\n/// on version `0.6.0` after upgrading to `package:sqlite3` version 3.x. This\n/// ensures that the old Flutter build scripts are guaranteed to not be part of\n/// the build.\nlibrary sqlite3_flutter_libs;\n"
  },
  {
    "path": "legacy/sqlite3_flutter_libs/pubspec.yaml",
    "content": "name: sqlite3_flutter_libs\ndescription: \"Not used anymore, update to version 3.x of package:sqlite3 instead\"\nversion: 0.6.0+eol\nhomepage: https://github.com/simolus3/sqlite3.dart/tree/main/legacy/sqlite3_flutter_libs\nissue_tracker: https://github.com/simolus3/sqlite3.dart/issues\nresolution: workspace\n\nenvironment:\n  sdk: \">=3.10.0 <4.0.0\"\n"
  },
  {
    "path": "native_tests/all_native_tests.dart",
    "content": "import 'package:test/test.dart';\n\nimport '../sqlite3/test/ffi/common_database_test.dart' as common_database_test;\nimport '../sqlite3/test/ffi/database_test.dart' as database_test;\nimport '../sqlite3/test/ffi/ffi_test.dart' as ffi_test;\nimport '../sqlite3/test/ffi/prepared_statement_test.dart'\n    as prepared_statement_test;\nimport '../sqlite3/test/ffi/sqlite3_test.dart' as sqlite3_test;\nimport '../sqlite3/test/ffi/vfs_test.dart' as vfs_test;\n\nimport '../sqlite3_connection_pool/test/pool_test.dart' as pool_test;\n\nimport '../sqlite3_test/test/sqlite3_test_test.dart' as sqlite3_test_test;\n\n/// Runs all native tests.\n///\n/// We aot-compile this file to run tests with different sanitizers.\nvoid main() {\n  group('package:sqlite3', () {\n    group('common_database_test.dart', common_database_test.main);\n    group('database_test.dart', database_test.main);\n    group('ffi_test.dart', ffi_test.main);\n    group('prepared_statement_test.dart', prepared_statement_test.main);\n    group('sqlite3_test.dart', sqlite3_test.main);\n    group('vfs_test.dart', vfs_test.main);\n  });\n\n  group('package:sqlite3_connection_pool', () {\n    pool_test.main();\n  });\n\n  group('package:sqlite3_test', () {\n    sqlite3_test_test.main();\n  });\n}\n"
  },
  {
    "path": "native_tests/analysis_options.yaml",
    "content": "include: package:lints/recommended.yaml\n\nanalyzer:\n  language:\n    strict-casts: true\n    strict-raw-types: true\n"
  },
  {
    "path": "native_tests/ignorelist.txt",
    "content": "src:*/sqlite3.c\n"
  },
  {
    "path": "native_tests/pubspec.yaml",
    "content": "name: native_tests\ndescription: Helper package to test other packages in this workspace in aot builds.\npublish_to: none\nresolution: workspace\n\nenvironment:\n  sdk: ^3.11.0\n\ntopics:\n  - sql\n  - database\n  - ffi\n  - sqlite\n\ndependencies:\n  sqlite3:\n  sqlite3_test:\n  sqlite3_connection_pool:\n  test: ^1.31.0\n  path: ^1.9.1\n  args: ^2.7.0\n"
  },
  {
    "path": "native_tests/run.dart",
    "content": "import 'dart:io';\n\nimport 'package:args/args.dart';\nimport 'package:path/path.dart' as p;\n\n/// Runs `all_native_tests.dart` as a single AOT-compiled executable.\n///\n/// To run AOT-compiled tests without sanitizers, use `dart run run.dart`.\n///\n/// To run tests with a sanitizer, use `dart run.dart --sanitizer $sanitizer`,\n/// where `$sanitizer` is one of `asan`, `msan` or `tsan`. Note that sanitizers\n/// are only supported on X64 Linux hosts.\n///\n/// Running tests with sanitizers also requires an instrumented build of SQLite\n/// and the pool helper library. Either obtain that from the `sqlite3-sanitized`\n/// asset uploaded to CI runs on GitHub assets, or use:\n///\n/// 1. tool/download_sqlite.dart\n/// 2. tool/build_with_sanitizers.dart (requires clang and LLVM).\n/// 3. tool/build_linux_sanitizer.sh in sqlite3_connection_pool.\nvoid main(List<String> args) async {\n  final parser = ArgParser(allowTrailingOptions: false);\n  parser.addOption('sanitizer', allowed: ['asan', 'msan', 'tsan']);\n  final result = parser.parse(args);\n  final sanitizer = result.option('sanitizer');\n\n  final dir = await Directory.systemTemp.createTemp('pkg-sqlite3-test');\n  final aotPath = p.join(dir.path, 'test.aot');\n  final assetsConfig = await _createNativeAssetsConfig(dir, sanitizer);\n\n  try {\n    print('AOT-compiling tests');\n    final result = await Process.run(Platform.executable, [\n      'compile',\n      'aot-snapshot',\n      'all_native_tests.dart',\n      '--output',\n      aotPath,\n      if (sanitizer != null) '--target-sanitizer=$sanitizer',\n      '--extra-gen-kernel-options=--native-assets=${assetsConfig.path}',\n    ]);\n\n    if (result.exitCode != 0 || !await File(aotPath).exists()) {\n      throw '''\ncould not compile test script\n\nexitCode: ${result.exitCode}\nstdout: ${result.stdout}\nstderr: ${result.stderr}\n''';\n    }\n\n    var runtimeName = 'dartaotruntime';\n    if (sanitizer != null) runtimeName += '_$sanitizer';\n    if (Platform.isWindows) runtimeName += '.exe';\n\n    print('Running with $runtimeName');\n    final runtime = p.join(p.dirname(Platform.resolvedExecutable), runtimeName);\n    final process = await Process.start(runtime, [\n      aotPath,\n    ], mode: ProcessStartMode.inheritStdio);\n    final exit = await process.exitCode;\n    if (exit != 0) {\n      throw 'Expected exit code 0, got $exit';\n    }\n  } finally {\n    await dir.delete(recursive: true);\n  }\n}\n\nFuture<File> _createNativeAssetsConfig(\n  Directory tmpForRun,\n  String? sanitizer,\n) async {\n  if (sanitizer == null) {\n    final file = File('.dart_tool/native_assets.yaml');\n    if (!await file.exists()) {\n      throw 'Expected $file to exist, are you using dart run?';\n    }\n\n    return file;\n  }\n\n  final name = switch (sanitizer) {\n    'asan' => 'address',\n    'msan' => 'memory',\n    'tsan' => 'thread',\n    _ => throw AssertionError(),\n  };\n  final sqliteFile = p.normalize(\n    p.absolute('../sqlite-sanitized', 'sqlite3.san_$name.so'),\n  );\n  final poolFile = p.normalize(\n    p.absolute(\n      '../sqlite-sanitized',\n      'libsqlite3_connection_pool.$name.san.so',\n    ),\n  );\n\n  final yaml =\n      '''\nformat-version: [1, 0, 0]\nnative-assets:\n  linux_x64:\n    \"package:sqlite3/src/ffi/libsqlite3.g.dart\":\n      - absolute\n      - \"$sqliteFile\"\n    \"package:sqlite3_connection_pool/sqlite3_connection_pool.dart\":\n      - absolute\n      - \"$poolFile\"\n''';\n\n  final file = File(p.join(tmpForRun.path, 'assets.yaml'));\n  await file.writeAsString(yaml);\n  return file;\n}\n"
  },
  {
    "path": "pubspec.yaml",
    "content": "name: _\npublish_to: none\n\nenvironment:\n  sdk: ^3.6.0\n\ndependencies:\n  path: ^1.9.1\n  crypto: ^3.0.6\n  collection: ^1.19.1\n  file: ^7.0.1\n  pool: ^1.5.2\n  hooks: ^1.0.0\n\nworkspace:\n  - sqlite3\n  - sqlite3/example/custom_extension\n  - sqlite3_connection_pool\n  - sqlite3_web\n  - sqlite3_test\n  - native_tests\n\n  - legacy/sqlcipher_flutter_libs\n  - legacy/sqlite3_flutter_libs\n"
  },
  {
    "path": "sqlite3/CHANGELOG.md",
    "content": "## 3.3.2 (unreleased)\n\n- Support `native_toolchain_c` versions `0.18.x`.\n\n## 3.3.1\n\n- Avoid memory leaks when `tempDirectory` is set multiple times.\n- Update to SQLite 3.53.0 and SQLite3 Multiple Ciphers version 2.3.3.\n\n## 3.3.0\n\n- Web: Add `WasmModuleLoader` API to customize how WebAssembly modules are loaded.\n- Hook: Improve error message for failing downloads.\n\n## 3.2.0\n\n- Add `package:sqlite3/unstable/ffi_bindings.dart` providing low-level access to generated `libsqlite3` bindings.\n- Add `PreparedStatement.leak` to transfer ownership of a prepared statement into native code.\n- Add `Database.statementFromPointer`, which can be used to access a statement prepared in native code from Dart.\n\n## 3.1.7\n\n- Update to sqlite version 3.52.0.\n\n## 3.1.6\n\n- Expose the address of `sqlite3_close_v2` as static field on `Sqlite3` class.\n- Allow wrapping databases without closing them with the `borrowed` parameter\n  on `Sqlite3.fromPointer`.\n- Add `Database.leak()`, which extracts a `sqlite3*` pointer and disables\n  finalizers.\n\n## 3.1.5\n\n- Build hook: Ensure we use consistent filenames to fix issues on Apple platforms.\n\n## 3.1.4\n\n- Build hook: Fix paths not resolving on Windows when building from source.\n\n## 3.1.3\n\n- Update to SQLite version 3.51.2.\n\n## 3.1.2\n\n- `Database.select()` will now throw an exception if the SQL string contains\n  invalid text after the first statement.\n- Build hook: Support OS-specific names when using `source: system`.\n\n## 3.1.1\n\n- Hooks: Respect `HTTPS_PROXY` and related environment variables when\n  downloading SQLite (requires Dart 3.11 or later).\n- Update SQLite to version 3.51.1.\n\n## 3.1.0\n\n- Build hook: Allow using `name` key with `source: system` to load SQLite\n  libraries under a different name (e.g. `name: sqlcipher` to load SQLCipher).\n- Wasm: Fix an internal memory corruption issue when more than 16 Dart handles\n  are referenced from C.\n\n## 3.0.1\n\n- Build hook: Use clang from XCode when pre-compiling SQLite for iOS and macOS.\n\n## 3.0.0\n\n- __Breaking change__: Use [build hooks](https://dart.dev/tools/hooks) to load\n  SQLite instead of `DynamicLibrary`.\n  - The SQLite library can only be customized with user defines.\n  - You should drop your dependencies on `sqlite3_flutter_libs` and\n    `sqlcipher_flutter_libs` when upgrading.\n  - You can also remove dependencies on `sqlite3_native_assets`, since that\n    package is now part of `package:sqlite3`.\n- __Breaking change__: Parameters to `SqliteException`s are now named.\n- Deprecated `dispose()` on `CommonDatabase` and `CommonPreparedStatement`. Use `close()`\n  instead.\n- On native platforms, use native finalizers to reliably clear statements and databases.\n- On the web, use regular finalizers more consistently.\n- Refactor binding text and blob values to reduce the chance of memory leaks.\n- On the web, use `externref`s to call Dart functions from compiled WebAssembly sources.\n- Add `busyHandler` setter to install a custom `sqlite3_busy_handler` on databases.\n\n## 2.9.4\n\n- `SimpleOpfsFileSystem`: Allow opening with `readwrite-unsafe`, which can be used to implement\n  multi-tab OPFS databases on Chrome with an outer locking scheme.\n\n## 2.9.3\n\n- Allow iterating over statements after `SQLITE_BUSY` errors.\n\n## 2.9.2\n\n- Fix a bug introduced in version `2.9.1` where the SQLite framework provided by\n  `sqlite3_flutter_libs` would not load correctly on iOS.\n\n## 2.9.1\n\n- Check for error codes when binding values to prepared statements.\n- Flutter: Fix loading SwiftPM libraries from `sqlite3_flutter_libs`.\n\n## 2.9.0\n\n- Add `CommonDatabase.updatesSync`, a synchronous variant of the updates stream.\n\n## 2.8.0\n\n- Support creating changesets and patchsets via the session extension.\n- Add the `SubtypedValue` extension type to allow returning values with a subtype.\n- Add the `subtypeOf` method to the `SqliteArguments` interface passed to user-defined\n  functions. It returns the subtype assigned to an argument.\n- Web: Refactor SQLite bindings to make them easier for compilers to optimize.\n\n## 2.7.7\n\n- `jsonb` codec: Refuse to encode NaN values since recent SQLite versions\n  reject them.\n\n## 2.7.6\n\n- Export `package:sqlite3/native_assets.dart`, making it easier for libraries\n  to support both the regular `sqlite3` getter and the upcoming\n  `sqlite3NativeAssets` variant.\n- Fix dereferencing null pointer when reading file names for temporary files in\n  native VFS implementation.\n\n## 2.7.5\n\n- On Windows, try loading `winsqlite3.dll` as a fallback if loading\n  `sqlite3.dll` fails.\n\n## 2.7.4\n\n- Prepare support for accessing SQLite through native assets. This is available\n  as a preview through `package:sqlite3_native_assets`.\n\n## 2.7.3\n\n- Web: Support `localtime` datetime modifier in SQLite.\n- Introduce topics to dartdoc documentation.\n- Report locations of syntax errors in `SqliteException`.\n\n## 2.7.2\n\n- Web: Fix update events not being delivered in some shared worker setups.\n\n## 2.7.1\n\n- Web: Fix a crash when using version `2.7.0` of this package with an older\n  WebAssembly bundle.\n  Note: Version `2.7.0` has been retracted from pub.dev for this reason.\n\n## 2.7.0\n\n- Add support for commit and rollback hooks as well as a predicate that can\n  revert transactions. Thanks to [@jackd](https://github.com/jackd)!\n\n## 2.6.1\n\n- Fix out-of-bound reads in the `xWrite` implementation of the OPFS-locks based\n  file-system implementation when writing more than 64 KiB in one operation.\n- Support SQLite libraries compiled with `SQLITE_OMIT_AUTOINIT`.\n\n## 2.6.0\n\n- Add `SimpleOpfsFileSystem.deleteFromStorage` to delete OPFS-based file\n  systems.\n- Add `jsonb`, a Dart `Codec` converting Dart object from and to SQLite\n  `JSONB` values.\n- __Experimentally__ support encryption on the web through SQLite Multiple\n  Ciphers. The readme provides more information on how to use encryption on the\n  web.\n\n## 2.5.0\n\n- Allow registering custom virtual file systems on all platforms. Previously,\n  this was only supported on the web.\n- IndexedDB file system: Store `ArrayBuffer`s instead of `Blob`s when it looks\n  like storing blobs would cause issues.\n\n## 2.4.7\n\n- Web: Improve performance of in-memory and IndexedDB file system implementations.\n\n## 2.4.6\n\n- WebAssembly: Call `_initialize` function of sqlite3 module if one is present.\n- Support version 1.0.0 of `package:web`.\n\n## 2.4.5\n\n- Fix a bug in the OPFS-locks implementation causing a deadlock when the `xSleep`\n  VFS call is issued.\n- Fix selecting large integers (being represented as a `BigInt` in Dart)\n  not working when compiled with dartdevc.\n\n## 2.4.4\n\n- Add a temporary workaround for [a Dart bug](https://github.com/dart-lang/sdk/issues/56064)\n  causing spurious exceptions when databases are closed and a debugger is attached.\n\n## 2.4.3\n\n- Migrate away from legacy web APIs: `dart:html`, `dart:js`, `dart:indexeddb`\n  and `package:js` are no longer imported from this package.\n- Experimentally support being compiled to WebAssembly. Strong caveats apply,\n  please check [#230](https://github.com/simolus3/sqlite3.dart/issues/230)\n  before relying on this!\n\n## 2.4.2\n\n- Fix string and blob arguments to prepared statements never being\n  deallocated ([#225](https://github.com/simolus3/sqlite3.dart/issues/225)).\n\n## 2.4.1+1\n\n- Allow version `0.7.x` of the `js` package.\n- Reduce size of `sqlite3.wasm` bundle by removing symbols not referenced in\n  Dart.\n\n## 2.4.0\n\n- Add `isReadOnly` and `isExplain` getters to prepared statements.\n- Set `NativeCallable.keepIsolateAlive` to `false` for callables managed by\n  this package.\n\n## 2.3.0\n\n- Add the `autocommit` getter on databases wrapping `sqlite3_get_autocommit`.\n- Improve the error message in the exception when opening a database fails.\n\n## 2.2.0\n\n- Add `updatedRows` getter to eventually replace `getUpdatedRows()` method.\n- Clarify documentation on `lastInsertRowId` and `updatedRows`.\n- Allow customizing the amount of pages to lock at a time in `backup`. A larger\n  amount will result in better backup performance.\n- Use `NativeCallable`s for user-defined functions, collations and update\n  streams.\n\n## 2.1.0\n\n- Add `config` getter to `CommonDatabase` to access `sqlite3_db_config`.\n\n## 2.0.0\n\n- __Breaking__: The WASM implementation no longer registers a default virtual\n  file system. Instead, `registerVirtualFileSystem` needs to be used to add\n  desired file system implementations.\n- __Breaking__: Fix a typo, `CommmonSqlite3` is now called `CommonSqlite3`.\n- __Breaking__: Introduce class modifiers on classes of this package that aren't\n  meant to be extended or implemented by users.\n- Add `PreparedStatement.reset()`.\n- Add the `CustomStatementParameter` class which can be passed as a statement\n  parameter with a custom `sqlite3_bind_*` call.\n- Add the `StatementParameters` class and `executeWith`/`selectWith` methods\n  on `CommonPreparedStatement`. They can be used to control whether values are\n  bound by index or by name. The `selectMap` and `executeMap` methods have\n  been deprecated.\n\n## 1.11.2\n\n- Report correct column names for statements that have been re-compiled due to\n  schema changes.\n\n## 1.11.1\n\n- Fix user-defined functions returning text not supporting multi-byte utf8\n  characters.\n\n## 1.11.0\n\n- Add `WasmSqlite3.loadFromUrl` which uses a streaming `fetch()` request to\n  load the sqlite3 WASM binary.\n- Add `OpfsFileSystem`, a file system implementation for the WASM library that\n  is based on the synchronous File System Access API.\n- The WASM version of sqlite3 used by this library is now compiled with `-Oz`\n  instead of `-Ofast`.\n\n## 1.10.1\n\n- Fix a regression introduced in 1.10.0 causing crashes when SQL statements\n  containing non-ASCII characters are prepared.\n\n## 1.10.0\n\n- Rewrite the implementation to allow more code reuse between `dart:ffi` and\n  the WASM-based web implementation.\n\n## 1.9.3\n\n- Provide more information about the source of sqlite exceptions.\n- Fix prepared statements without parameters not being reused properly.\n\n## 1.9.2\n\n- Include parameters when throwing an exception in prepared statements.\n\n## 1.9.1\n\n- Change `Row.keys` and `Row.values` to return a list.\n\n## 1.9.0\n\n- Add an API for sqlite3's backup API via `Database.backup()`.\n- Add an API to load extensions via `sqlite3.ensureExtensionLoaded`.\n\n## 1.8.0\n\n- Use a `Finalizer` to automatically dispose databases and statements. As\n  finalizers in Dart aren't reliable, you should still make sure to call\n  `dispose` manually after you're done with a database or a statement.\n- Avoid using generative constructors on `@staticInterop` classes.\n\n## 1.7.2\n\n- Optimizations in the wasm-based file system.\n- Fix the `mutex` parameter not doing anything in the FFI-based implementation.\n\n## 1.7.1\n\n- Allow binding `BigInt`s to statements and functions. They must still be\n  representable as a 64-bit int, but this closes a compatibility gap between\n  the web and the native implementations.\n- Use ABI-specific integer types internally.\n\n## 1.7.0\n\n- Add support for application-defined window functions. To register a custom\n  window function, implement `WindowFunction` and register your function with\n  `database.registerAggregateFunction`.\n- __Breaking__ (For the experimental `package:sqlite3/wasm.dart` library):\n  - The IndexedDB implementation now stores data in 4k blocks instead of full files.\n  - Removed `IndexedDbFileSystem.load`. Use `IndexedDbFileSystem.open` instead.\n  - An `IndexedDbFileSystem` now stores all files, the concept of a persistence\n    root has been removed.\n    To access independent databases, use two `IndexedDbFileSystem`s with a different\n    database name.\n\n## 1.6.4\n\n- Add `FileSystem.listFiles()` to list all files in a virtual WASM file system.\n\n## 1.6.3\n\n- Support running `sqlite3/wasm.dart` in web workers.\n\n## 1.6.2\n\n- Fix `CURRENT_TIMESTAMP` not working with the WebAssembly backend.\n\n## 1.6.1\n\n- Better support loading sqlite3 on Linux when using `sqlite3_flutter_libs`.\n\n## 1.6.0\n\n- Very experimental web support, based on compiling sqlite3 to web assembly\n  with a custom file system implementation.\n\n## 1.5.1\n\n- Fix `checkNoTail` throwing for harmless whitespace or comments following a\n  SQL statement.\n- Fix a native null-pointer dereference when calling `prepare` with a statement\n  exclusively containing whitespace or comments.\n- Fix a potential out-of-bounds read when preparing statements.\n\n## 1.5.0\n\n- Add `prepareMultiple` method to prepare multiple statements from one SQL string.\n- Add `selectMap` and `executeMap` on `PreparedStatement` to bind SQL parameters by\n  their name instead of their index.\n- Add support for custom collations with `createCollation`.\n\n## 1.4.0\n\n- Report writes on the database through the `Database.updates` stream\n- Internal: Use `ffigen` to generate native bindings\n\n## 1.3.1\n\n- Fix a crash with common iOS and macOS configurations.\n  The crash has been introduced in version 1.3.0, which should be avoided.\n  Please consider adding `sqlite3: ^1.3.1` to your pubspec to avoid getting the\n  broken version\n\n## 1.3.0\n\n- Add `Cursor.tableNames` and `Row.toTableColumnMap()` to obtain tables\n  involved in a result set.\n  Thanks to [@juancastillo0](https://github.com/juancastillo0)!\n\n## 1.2.0\n\n- Add the `selectCursor` API on `PreparedStatement` to step through a result set row by row.\n- Report the causing SQL statement in exceptions\n- Use a new Dart API to determine whether symbols are available\n\n## 1.1.2\n\n- Attempt opening sqlite3 from `DynamicLibrary.process()` on macOS\n\n## 1.1.1\n\n- Fix memory leak when preparing statements!\n- Don't allow `execute` with arguments when the provided sql string contains\n  more than one argument.\n\n## 1.1.0\n\n- Add optional parameters to `execute`.\n\n## 1.0.1\n\n- Don't throw when `PreparedStatement.execute` is used on a statement returning\n  rows.\n\n## 1.0.0\n\n- Support version `1.0.0` of `package:ffi`\n\n## 0.1.10-nullsafety.0\n\n- Support version `0.3.0` of `package:ffi`\n- Migrate library to support breaking ffi changes in Dart 2.13:\n  - Use `Opaque` instead of empty structs\n  - Use `Allocator` api\n\n## 0.1.9-nullsafety.2\n\n- Fix loading sqlite3 on iOS\n\n## 0.1.9-nullsafety.1\n\n- Migrate package to null safety\n\n## 0.1.8\n\n- Added the `mutex` parameter to control the serialization mode\n  when opening databases.\n\n## 0.1.7\n\n- Expose the `sqlite3_temp_directory` global variable\n\n## 0.1.6\n\n- Expose underlying database and statement handles\n- Support opening databases from uris\n\n## 0.1.5\n\n- Use `sqlite3_version` to determine if `sqlite3_prepare_v3` is available\n  instead of catching an error.\n\n## 0.1.4\n\n- Use `sqlite3_prepare_v2` if `sqlite3_prepare_v3` is not available\n\n## 0.1.3\n\n- Lower minimum version requirement on `collection` to `^1.14.0`\n\n## 0.1.2\n\n- Enable extended result codes\n- Expose raw rows from a `ResultSet`\n\n## 0.1.1\n\n- Expose the `ResultSet` class\n\n## 0.1.0\n\n- Initial version\n"
  },
  {
    "path": "sqlite3/LICENSE",
    "content": "MIT License\n\nCopyright (c) 2020 Simon Binder\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "sqlite3/README.md",
    "content": "# sqlite3\n\nProvides Dart bindings to [SQLite](https://www.sqlite.org/index.html) via `dart:ffi`.\n\n## Using this library\n\nBecause this library uses [hooks](https://dart.dev/tools/hooks), it bundles SQLite with\nyour application and doesn't require any external dependencies or build configuration.\nTo use it, depend on it:\n\n```shell\ndart pub add sqlite3\n```\n\nFor native platforms, the basic sketch for using this library is to:\n\n1. Import `package:sqlite3/sqlite3.dart`.\n2. Use `sqlite3.open()` to open a database file, or `sqlite3.openInMemory()` to\n   open a temporary in-memory database.\n3. Use `Database.execute` or `Database.prepare` to execute statements directly\n   or by preparing them first.\n4. Consider closing statements or databases explicitly with `close()` once you're\n   done with them. `package:sqlite3` uses native finalizers to do that automatically\n   too, though.\n\nFor a more complete example on how to use this library, see the [example](https://pub.dev/packages/sqlite3/example).\n\n## Supported platforms\n\nThis library provides prebuilt versions of SQLite for the following platforms:\n\n- __Android__: `armv7a`, `aarch64`, `x86`, `x64`.\n- __iOS__: `arm64` (devices), `arm64` (simulator), `x64` (simulator).\n- __macOS__: `arm64`, `x64`.\n- __Linux__: `armv7`, `aarch64`, `x64`, `x86`, `riscv64gc`.\n- __Windows__: `aarch64`, `x64`, `x86`.\n\nFor more information, see [hook options](./doc/hook.md).\n\nIn addition to native platforms, this package supports running on the web by accessing a sqlite3\nbuild compiled to WebAssembly.\nWeb support is only officially supported for `dartdevc` and `dart2js`. Support\nfor `dart2wasm` [is experimental and incomplete](https://github.com/simolus3/sqlite3.dart/issues/230).\nFor more information, see [web support](#wasm-web-support) below.\n\nOn all supported platforms, you can also use SQLite3MultipleCiphers instead of SQLite to encrypt\ndatabases. The [hook options page](./doc/hook.md) describe this setup.\n\n## Supported datatypes\n\nWhen binding parameters to queries, the supported types are `ìnt`,\n`double`, `String`, `List<int>` (for `BLOB`) and `null`.\nResult sets will use the same set of types.\nOn the web (but only on the web), `BigInt` is supported as well.\n\n## WASM (web support)\n\nThis package experimentally supports being used on the web with a bit of setup.\nThe web version binds to a custom version of sqlite3 compiled to WebAssembly without\nEmscripten or any JavaScript glue code.\n\nPlease note that stable web support for `package:sqlite3` is restricted to Dart\nbeing compiled to JavaScript. Support for `dart2wasm` is experimental. The API\nis identical, but the implementation [is severely limited](https://github.com/simolus3/sqlite3.dart/issues/230).\n\n### Setup\n\nTo use this package on the web, you need:\n\n- The sqlite3 library compiled as a WebAssembly module, available from the\n  [GitHub releases](https://github.com/simolus3/sqlite3.dart/releases) of this package.\n  Note that, for this package, __sqlite3 has to be compiled in a special way__.\n  Existing WebAssembly files from e.g. sql.js will not work with `package:sqlite3/wasm.dart`.\n  You can also see [this directory](https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_wasm_build)\n  for the build files to compile this yourself.\n- A file system implementation, since websites can't by default access the host's file system.\n This package provides `InMemoryFileSystem` and an `IndexedDbFileSystem` implementation.\n\nAfter putting `sqlite3.wasm` under the `web/` directory of your project, you can\nopen and use `sqlite3` like this:\n\n```dart\nimport 'package:http/http.dart' as http;\nimport 'package:sqlite3/common.dart';\nimport 'package:sqlite3/wasm.dart';\n\nFuture<WasmSqlite3> loadSqlite() async {\n  final sqlite = await WasmSqlite3.loadFromUrl(Uri.parse('sqlite3.wasm'));\n  final fileSystem = await IndexedDbFileSystem.open(dbName: 'my_app');\n  sqlite.registerVirtualFileSystem(fileSystem, makeDefault: true);\n  return sqlite;\n}\n```\n\nThe returned `WasmSqlite3` has an interface compatible to that of the standard `sqlite3` field\nin `package:sqlite3/sqlite3.dart`, databases can be opened in similar ways.\n\nAn example for such web folder is in `example/web/` of this repo.\nTo view the example, copy a compiled `sqlite3.wasm` file to `web/sqlite3.wasm` in this directory.\nThen, run `dart run build_runner serve example:8080` and visit `http://localhost:8080/web/` in a browser.\n\nAnother `../examples/multiplatform/` uses common interface to `sqlite3` on web and native platforms.\nTo run this example, merge its files into a Flutter app.\n\n### Sharing code between web and a Dart VM\n\nThe `package:sqlite3/common.dart` library defines common interfaces that are implemented by both\nthe FFI-based native version in `package:sqlite3/sqlite3.dart` and the experimental WASM\nversion in `package:sqlite3/wasm.dart`.\nBy having shared code depend on the common interfaces, it can be used for both native and web\napps.\n\n### Web encryption\n\nStarting from version 2.6.0, `package:sqlite3/wasm.dart` supports loading a compiled version of\n[SQLite Multiple Ciphers](https://utelle.github.io/SQLite3MultipleCiphers/) providing encryption\nsupport for the web.\nPlease note that this variant is not currently tested as well as the regular SQLite version.\nFor this reason, using SQLite Multiple Ciphers with `package:sqlite3/wasm.dart` should be considered\nexperimental for the time being.\n\nTo test the encryption integration, download `sqlite3mc.wasm` from the [releases](https://github.com/simolus3/sqlite3.dart/releases)\nof this package and use that as a URL to load sqlite3 on the web:\n\n```dart\nfinal sqlite3 = await WasmSqlite3.loadFromUrl(Uri.parse('sqlite3mc.wasm'));\nsqlite3.registerVirtualFileSystem(InMemoryFileSystem(), makeDefault: true);\n\nfinal database = sqlite3.open('/database')\n  ..execute(\"pragma key = 'test';\"); // TODO: Replace key\n```\n\n### Testing\n\nTo run the tests of this package with wasm, either download the `sqlite3.wasm` file from the\nGitHub releases to `example/web` or compile it yourself (see [build setup](../sqlite3_wasm_build/)).\n\nTo run tests on the Dart VM, Firefox and Chrome, use:\n\n```\ndart test -P full\n```\n"
  },
  {
    "path": "sqlite3/analysis_options.yaml",
    "content": "include: package:lints/recommended.yaml\n\nanalyzer:\n  language:\n    strict-casts: true\n    strict-raw-types: true\n"
  },
  {
    "path": "sqlite3/assets/sqlite3.h",
    "content": "// This file defines the definitions for which we generate FFI bindings on\n// native platforms. To re-generate bindings, run:\n// `dart run tool/generate_bindings.dart`.\n#include <stdint.h>\n\ntypedef struct sqlite3_char sqlite3_char;\ntypedef struct sqlite3 sqlite3;\ntypedef struct sqlite3_stmt sqlite3_stmt;\ntypedef struct sqlite3_backup sqlite3_backup;\ntypedef struct sqlite3_api_routines sqlite3_api_routines;\ntypedef struct sqlite3_session sqlite3_session;\ntypedef struct sqlite3_changeset_iter sqlite3_changeset_iter;\n\nsqlite3_char* sqlite3_temp_directory;\n\nint sqlite3_initialize();\nvoid sqlite3_free(void*);\n\nint sqlite3_open_v2(sqlite3_char* filename, sqlite3** ppDb, int flags,\n                    sqlite3_char* zVfs);\nint sqlite3_close_v2(sqlite3* db);\nsqlite3_char* sqlite3_db_filename(sqlite3* db, sqlite3_char* zDbName);\nint sqlite3_compileoption_used(const sqlite3_char* zOptName);\nconst sqlite3_char* sqlite3_compileoption_get(int N);\nint sqlite3_busy_handler(sqlite3* db, int (*)(void*, int), void* context);\n\n// Error handling\nint sqlite3_extended_result_codes(sqlite3* db, int onoff);\nint sqlite3_extended_errcode(sqlite3* db);\nsqlite3_char* sqlite3_errmsg(sqlite3* db);\nsqlite3_char* sqlite3_errstr(int code);\nint sqlite3_error_offset(sqlite3* db);\nvoid sqlite3_free(void* ptr);\n\n// Versions\nsqlite3_char* sqlite3_libversion();\nsqlite3_char* sqlite3_sourceid();\nint sqlite3_libversion_number();\n\n// Database\nint64_t sqlite3_last_insert_rowid(sqlite3* db);\nint sqlite3_changes(sqlite3* db);\nint sqlite3_exec(sqlite3* db, sqlite3_char* sql, void* callback, void* argToCb,\n                 sqlite3_char** errorOut);\nvoid* sqlite3_update_hook(sqlite3*,\n                          void (*)(void*, int, sqlite3_char const*,\n                                   sqlite3_char const*, int64_t),\n                          void*);\nvoid* sqlite3_commit_hook(sqlite3*, int (*)(void*), void*);\nvoid* sqlite3_rollback_hook(sqlite3*, void (*)(void*), void*);\nint sqlite3_get_autocommit(sqlite3* db);\n\n// Statements\nint sqlite3_prepare_v2(sqlite3* db, const sqlite3_char* zSql, int nByte,\n                       sqlite3_stmt** ppStmt, const sqlite3_char** pzTail);\nint sqlite3_prepare_v3(sqlite3* db, const sqlite3_char* zSql, int nByte,\n                       unsigned int prepFlags, sqlite3_stmt** ppStmt,\n                       const sqlite3_char** pzTail);\nint sqlite3_finalize(sqlite3_stmt* pStmt);\nint sqlite3_step(sqlite3_stmt* pStmt);\nint sqlite3_reset(sqlite3_stmt* pStmt);\nint sqlite3_stmt_isexplain(sqlite3_stmt* pStmt);\nint sqlite3_stmt_readonly(sqlite3_stmt* pStmt);\n\nint sqlite3_column_count(sqlite3_stmt* pStmt);\nint sqlite3_bind_parameter_count(sqlite3_stmt* pStmt);\nint sqlite3_bind_parameter_index(sqlite3_stmt*, sqlite3_char* zName);\nsqlite3_char* sqlite3_column_name(sqlite3_stmt* pStmt, int N);\nsqlite3_char* sqlite3_column_table_name(sqlite3_stmt* pStmt, int N);\n\nint sqlite3_bind_blob64(sqlite3_stmt* pStmt, int index, void* data,\n                        uint64_t length, void (*destructor)(void*));\nint sqlite3_bind_double(sqlite3_stmt* pStmt, int index, double data);\nint sqlite3_bind_int64(sqlite3_stmt* pStmt, int index, int64_t data);\nint sqlite3_bind_null(sqlite3_stmt* pStmt, int index);\nint sqlite3_bind_text(sqlite3_stmt* pStmt, int index, sqlite3_char* data,\n                      int length, void (*destructor)(void*));\n\nvoid* sqlite3_column_blob(sqlite3_stmt* pStmt, int iCol);\ndouble sqlite3_column_double(sqlite3_stmt* pStmt, int iCol);\nint64_t sqlite3_column_int64(sqlite3_stmt* pStmt, int iCol);\nsqlite3_char* sqlite3_column_text(sqlite3_stmt* pStmt, int iCol);\nint sqlite3_column_bytes(sqlite3_stmt* pStmt, int iCol);\nint sqlite3_column_type(sqlite3_stmt* pStmt, int iCol);\n\n// Values\n\ntypedef struct sqlite3_value sqlite3_value;\n\nvoid* sqlite3_value_blob(sqlite3_value* value);\ndouble sqlite3_value_double(sqlite3_value* value);\nint sqlite3_value_type(sqlite3_value* value);\nint64_t sqlite3_value_int64(sqlite3_value* value);\nsqlite3_char* sqlite3_value_text(sqlite3_value* value);\nint sqlite3_value_bytes(sqlite3_value* value);\nunsigned int sqlite3_value_subtype(sqlite3_value* value);\n\n// Functions\n\ntypedef struct sqlite3_context sqlite3_context;\n\nint sqlite3_create_function_v2(\n    sqlite3* db, sqlite3_char* zFunctionName, int nArg, int eTextRep,\n    void* pApp, void (*xFunc)(sqlite3_context*, int, sqlite3_value**),\n    void (*xStep)(sqlite3_context*, int, sqlite3_value**),\n    void (*xFinal)(sqlite3_context*), void (*xDestroy)(void*));\nint sqlite3_create_window_function(\n    sqlite3* db, sqlite3_char* zFunctionName, int nArg, int eTextRep,\n    void* pApp, void (*xStep)(sqlite3_context*, int, sqlite3_value**),\n    void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*),\n\n    void (*xInverse)(sqlite3_context*, int, sqlite3_value**),\n    void (*xDestroy)(void*));\n\nvoid* sqlite3_aggregate_context(sqlite3_context* ctx, int nBytes);\n\nvoid* sqlite3_user_data(sqlite3_context* ctx);\nvoid sqlite3_result_blob64(sqlite3_context* ctx, void* data, uint64_t length,\n                           void* destructor);\nvoid sqlite3_result_double(sqlite3_context* ctx, double result);\nvoid sqlite3_result_error(sqlite3_context* ctx, sqlite3_char* msg, int length);\nvoid sqlite3_result_int64(sqlite3_context* ctx, int64_t result);\nvoid sqlite3_result_null(sqlite3_context* ctx);\nvoid sqlite3_result_text(sqlite3_context* ctx, sqlite3_char* data, int length,\n                         void* destructor);\nvoid sqlite3_result_subtype(sqlite3_context* ctx, unsigned int subtype);\n\n// Collations\nint sqlite3_create_collation_v2(sqlite3*, sqlite3_char* zName, int eTextRep,\n                                void* pArg,\n                                int (*xCompare)(void*, int, const void*, int,\n                                                const void*),\n                                void (*xDestroy)(void*));\n\n// Backup\nsqlite3_backup* sqlite3_backup_init(sqlite3* pDestDb, sqlite3_char* zDestDb,\n                                    sqlite3* pSrcDb, sqlite3_char* zSrcDb);\nint sqlite3_backup_step(sqlite3_backup* p, int nPage);\nint sqlite3_backup_finish(sqlite3_backup* p);\nint sqlite3_backup_remaining(sqlite3_backup* p);\nint sqlite3_backup_pagecount(sqlite3_backup* p);\n\n// Extensions\nint sqlite3_auto_extension(void* xEntryPoint);\n\n// Database configuration\nint sqlite3_db_config(sqlite3* db, int op, ...);\n\n// VFS\ntypedef struct sqlite3_file sqlite3_file;\n\nstruct sqlite3_io_methods {\n  int iVersion;\n  int (*xClose)(sqlite3_file*);\n  int (*xRead)(sqlite3_file*, void*, int iAmt, int64_t iOfst);\n  int (*xWrite)(sqlite3_file*, const void*, int iAmt, int64_t iOfst);\n  int (*xTruncate)(sqlite3_file*, int64_t size);\n  int (*xSync)(sqlite3_file*, int flags);\n  int (*xFileSize)(sqlite3_file*, int64_t* pSize);\n  int (*xLock)(sqlite3_file*, int);\n  int (*xUnlock)(sqlite3_file*, int);\n  int (*xCheckReservedLock)(sqlite3_file*, int* pResOut);\n  int (*xFileControl)(sqlite3_file*, int op, void* pArg);\n  int (*xSectorSize)(sqlite3_file*);\n  int (*xDeviceCharacteristics)(sqlite3_file*);\n  /* Methods above are valid for version 1 */\n  int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void**);\n  int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);\n  void (*xShmBarrier)(sqlite3_file*);\n  int (*xShmUnmap)(sqlite3_file*, int deleteFlag);\n  /* Methods above are valid for version 2 */\n  int (*xFetch)(sqlite3_file*, int64_t iOfst, int iAmt, void** pp);\n  int (*xUnfetch)(sqlite3_file*, int64_t iOfst, void* p);\n  /* Methods above are valid for version 3 */\n  /* Additional methods may be added in future releases */\n};\n\nstruct sqlite3_file {\n  const struct sqlite3_io_methods* pMethods; /* Methods for an open file */\n};\n\ntypedef struct sqlite3_vfs sqlite3_vfs;\ntypedef void (*sqlite3_syscall_ptr)(void);\ntypedef const char* sqlite3_filename;\n\nstruct sqlite3_vfs {\n  int iVersion;       /* Structure version number (currently 3) */\n  int szOsFile;       /* Size of subclassed sqlite3_file */\n  int mxPathname;     /* Maximum file pathname length */\n  sqlite3_vfs* pNext; /* Next registered VFS */\n  const char* zName;  /* Name of this virtual file system */\n  void* pAppData;     /* Pointer to application-specific data */\n  int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*, int flags,\n               int* pOutFlags);\n  int (*xDelete)(sqlite3_vfs*, const char* zName, int syncDir);\n  int (*xAccess)(sqlite3_vfs*, const char* zName, int flags, int* pResOut);\n  int (*xFullPathname)(sqlite3_vfs*, const char* zName, int nOut, char* zOut);\n  void* (*xDlOpen)(sqlite3_vfs*, const char* zFilename);\n  void (*xDlError)(sqlite3_vfs*, int nByte, char* zErrMsg);\n  void (*(*xDlSym)(sqlite3_vfs*, void*, const char* zSymbol))(void);\n  void (*xDlClose)(sqlite3_vfs*, void*);\n  int (*xRandomness)(sqlite3_vfs*, int nByte, char* zOut);\n  int (*xSleep)(sqlite3_vfs*, int microseconds);\n  int (*xCurrentTime)(sqlite3_vfs*, double*);\n  int (*xGetLastError)(sqlite3_vfs*, int, char*);\n  /*\n  ** The methods above are in version 1 of the sqlite_vfs object\n  ** definition.  Those that follow are added in version 2 or later\n  */\n  int (*xCurrentTimeInt64)(sqlite3_vfs*, int64_t*);\n  /*\n  ** The methods above are in versions 1 and 2 of the sqlite_vfs object.\n  ** Those below are for version 3 and greater.\n  */\n  int (*xSetSystemCall)(sqlite3_vfs*, const char* zName, sqlite3_syscall_ptr);\n  sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char* zName);\n  const char* (*xNextSystemCall)(sqlite3_vfs*, const char* zName);\n  /*\n  ** The methods above are in versions 1 through 3 of the sqlite_vfs object.\n  ** New fields may be appended in future versions.  The iVersion\n  ** value will increment whenever this happens.\n  */\n};\nint sqlite3_vfs_register(sqlite3_vfs*, int makeDflt);\nint sqlite3_vfs_unregister(sqlite3_vfs*);\n\n// Session\n\nint sqlite3session_create(\n    sqlite3* db,                /* Database handle */\n    const sqlite3_char* zDb,    /* Name of db (e.g. \"main\") */\n    sqlite3_session** ppSession /* OUT: New session object */\n);\nvoid sqlite3session_delete(sqlite3_session* pSession);\nint sqlite3session_enable(sqlite3_session* pSession, int bEnable);\nint sqlite3session_indirect(sqlite3_session* pSession, int bIndirect);\n\nint sqlite3changeset_start(\n    sqlite3_changeset_iter** pp, /* OUT: New changeset iterator handle */\n    int nChangeset,              /* Size of changeset blob in bytes */\n    void* pChangeset             /* Pointer to blob containing changeset */\n);\nint sqlite3changeset_finalize(sqlite3_changeset_iter* pIter);\nint sqlite3changeset_next(sqlite3_changeset_iter* pIter);\nint sqlite3changeset_op(\n    sqlite3_changeset_iter* pIter, /* Iterator object */\n    const sqlite3_char** pzTab,    /* OUT: Pointer to table name */\n    int* pnCol,                    /* OUT: Number of columns in table */\n    int* pOp,                      /* OUT: SQLITE_INSERT, DELETE or UPDATE */\n    int* pbIndirect                /* OUT: True for an 'indirect' change */\n);\nint sqlite3changeset_old(\n    sqlite3_changeset_iter* pIter, /* Changeset iterator */\n    int iVal,                      /* Column number */\n    sqlite3_value** ppValue        /* OUT: Old value (or NULL pointer) */\n);\nint sqlite3changeset_new(\n    sqlite3_changeset_iter* pIter, /* Changeset iterator */\n    int iVal,                      /* Column number */\n    sqlite3_value** ppValue        /* OUT: Old value (or NULL pointer) */\n);\nint sqlite3changeset_apply(\n    sqlite3* db,               /* Apply change to \"main\" db of this handle */\n    int nChangeset,            /* Size of changeset in bytes */\n    void* pChangeset,          /* Changeset blob */\n    int (*xFilter)(void* pCtx, /* Copy of sixth arg to _apply() */\n                   const char* zTab /* Table name */\n                   ),\n    int (*xConflict)(\n        void* pCtx,               /* Copy of sixth arg to _apply() */\n        int eConflict,            /* DATA, MISSING, CONFLICT, CONSTRAINT */\n        sqlite3_changeset_iter* p /* Handle describing change and conflict */\n        ),\n    void* pCtx /* First argument passed to xConflict */\n);\n\nint sqlite3changeset_invert(int nIn, const void* pIn, /* Input changeset */\n                            int* pnOut, void** ppOut /* OUT: Inverse of input */\n);\nint sqlite3session_patchset(\n    sqlite3_session* pSession, /* Session object */\n    int* pnPatchset,           /* OUT: Size of buffer at *ppPatchset */\n    void** ppPatchset          /* OUT: Buffer containing patchset */\n);\nint sqlite3session_changeset(\n    sqlite3_session* pSession, /* Session object */\n    int* pnChangeset,          /* OUT: Size of buffer at *ppChangeset */\n    void** ppChangeset         /* OUT: Buffer containing changeset */\n);\nint sqlite3session_isempty(sqlite3_session* pSession);\nint sqlite3session_attach(sqlite3_session* pSession, /* Session object */\n                          const sqlite3_char* zTab   /* Table name */\n);\nint sqlite3session_diff(sqlite3_session* pSession, const sqlite3_char* zFromDb,\n                        const sqlite3_char* zTbl, sqlite3_char** pzErrMsg);\n"
  },
  {
    "path": "sqlite3/assets/sqlite3_dart_wasm.h",
    "content": "#include \"sqlite3.h\"\n\n// Additional bindings we need for WASM interop.\n// These are implemented in sqlite3_wasm_build, this header is only used for\n// ffigen.\ntypedef struct {\n} externref;\n\nvoid* dart_sqlite3_malloc(int size);\nvoid dart_sqlite3_free(void* ptr);\n\nint dart_sqlite3_bind_blob(sqlite3_stmt* stmt, int index, const void* buf,\n                           int len);\n\nint dart_sqlite3_bind_text(sqlite3_stmt* stmt, int index, const char* buf,\n                           int len);\n\nsqlite3_vfs* dart_sqlite3_register_vfs(const char* name, externref* vfs,\n                                       int makeDefault);\nint dart_sqlite3_unregister_vfs(sqlite3_vfs* vfs);\n\nint dart_sqlite3_create_function_v2(sqlite3* db, const char* zFunctionName,\n                                    int nArg, int eTextRep, int isAggregate,\n                                    externref* handlers);\n\nint dart_sqlite3_create_window_function(sqlite3* db, const char* zFunctionName,\n                                        int nArg, int eTextRep,\n                                        externref* handlers);\n\nvoid dart_sqlite3_updates(sqlite3* db, externref* callback);\n\nvoid dart_sqlite3_commits(sqlite3* db, externref* callback);\n\nvoid dart_sqlite3_rollbacks(sqlite3* db, externref* callback);\n\nint dart_sqlite3_create_collation(sqlite3* db, const char* zName, int eTextRep,\n                                  externref* function);\n\nint dart_sqlite3_db_config_int(sqlite3* db, int op, int arg);\n\nint dart_sqlite3changeset_apply(sqlite3* db, int nChangeset, void* pChangeset,\n                                externref* callbacks, int filter);\nint dart_sqlite3_busy_handler(sqlite3* db, externref* callback);\n"
  },
  {
    "path": "sqlite3/build.yaml",
    "content": "targets:\n  # This setup exists so that the main entrypoint (web/main.dart) gets compiled\n  # with dartdevc for debug builds while the worker is compiled with dart2js\n  # (since workers don't support the JS moduled emitted by dartdevc).\n  # In release builds (`--release` on the CLI), both entrypoints are compiled\n  # with dart2js.\n  #\n  # If you're ok with compiling everything with dart2js, just use\n  # `compiler: dartj2s` on the options of the default target and ignore the two\n  # additional targets here.\n  dart2js_archives:\n    auto_apply_builders: false\n    dependencies: [\":$default\", \":worker\"]\n    builders:\n      build_web_compilers:dart2js_archive_extractor:\n        enabled: true\n  worker:\n    auto_apply_builders: false\n    dependencies: [\":$default\"]\n    builders:\n      build_web_compilers:entrypoint:\n        enabled: true\n        generate_for:\n          - example/web/worker.dart\n        options:\n          compiler: dart2js\n      build_web_compilers:dart2js_archive_extractor:\n        enabled: false\n\n  $default:\n    sources:\n      include:\n        - lib/**\n        - example/web/**\n    builders:\n      build_web_compilers:entrypoint:\n        generate_for:\n          include:\n            - \"example/web/**\"\n          # This one is compiled in the other target\n          exclude:\n            - \"example/web/worker.dart\"\n      # We have a designated target for this step.\n      build_web_compilers:dart2js_archive_extractor:\n        enabled: false\n"
  },
  {
    "path": "sqlite3/dart_test.yaml",
    "content": "tags:\n  ffi:\n    test_on: dart-vm\n  wasm:\n    test_on: browser\n  ci_only:\n    skip: \"This test requires special setup and only runs in the GitHub CI action\"\n\nplatforms: [vm]\n\noverride_platforms:\n  firefox:\n    settings:\n      arguments: \"-headless\"\n  chrome:\n    settings:\n      executable: google-chrome-stable\n      arguments: \"--enable-features=SharedArrayBuffer\"\n  edge:\n    settings:\n      arguments: \"--enable-features=SharedArrayBuffer\"\n\npresets:\n  full:\n    platforms: [vm, chrome, firefox]\n    compilers: [dart2js, dart2wasm]\n    on_os:\n      windows:\n        platforms: [vm, chrome, firefox, edge]\n  web:\n    platforms: [chrome, firefox]\n    on_os:\n      windows:\n        platforms: [chrome, firefox, edge]\n  wasm-only:\n    add_presets: [web]\n    compilers: [dart2wasm]\n  web-full:\n    add_presets: [web]\n    compilers: [dart2js, dart2wasm]\n  ci:\n    tags:\n      ci_only:\n        skip: false\n"
  },
  {
    "path": "sqlite3/dartdoc_options.yaml",
    "content": "dartdoc:\n  categories:\n    \"common\":\n      markdown: doc/common.md\n      displayName: Cross-platform definitions\n    \"native\":\n      markdown: doc/native.md\n      displayName: Native only\n    \"wasm\":\n      markdown: doc/wasm.md\n      displayName: Web only\n    \"hook\":\n      markdown: doc/hook.md\n      displayName: Build hook options\n"
  },
  {
    "path": "sqlite3/doc/common.md",
    "content": "Definitions and common interfaces that are implemented by both the native\nand the web-specific bindings to SQLite.\n\nRestricting your usage of the sqlite3 package to `package:sqlite3/common.dart`\nmeans that your code can run on all platforms.\nHowever, this doesn't give you access to the actual implementations that are part\nof the native and web implementations.\nYou can write most of your database code with the common definitions and then use\nconditional imports to make an implementation available. For this, create three files:\n\n1. `database_stub.dart`.\n2. `database_native.dart`.\n3. `datbaase_web.dart`.\n\nThe content of these files depends on your needs, but could look like this:\n\n```dart\n// database_stub.dart\nimport 'package:sqlite3/common.dart';\n\nFuture<CommonDatabase> openDatabase() async {\n  throw UnsupportedError('Unknown platform');\n}\n```\n\n```dart\n// database_native.dart\nimport 'package:sqlite3/sqlite3.dart';\n\nFuture<CommonDatabase> openDatabase() async {\n  final path = await pickDatabasePath(); // e.g. with package:path_provider\n  return sqlite3.open(path);\n}\n```\n\n```dart\n// database_web.dart\nimport 'package:sqlite3/wasm.dart';\n\nFuture<CommonDatabase> openDatabase() async {\n  final sqlite = await WasmSqlite3.loadFromUrl(Uri.parse('sqlite3.wasm'));\n  final fs = await IndexedDbFileSystem.open(dbName: 'app.db');\n  sqlite.registerVirtualFileSystem(fs, makeDefault: true);\n  return sqlite.open('/app.db');\n}\n```\n\nWith those files, you can use a conditional imports to support both web and native platforms:\n\n```dart\nimport 'database_stub.dart'\n    if (dart.library.io) 'database_native.dart'\n    if (dart.library.js_interop) 'database_web.dart';\n```\n"
  },
  {
    "path": "sqlite3/doc/hook.md",
    "content": "Most operating systems make copies of SQLite as a native library available to applications.\nHowever, these libraries are inconsistent in their compile-time options (resulting in different\nSQLite features being available on different platforms) and are often outdated.\n\nTo avoid this inconsistency, `package:sqlite3/` bundles a copy of SQLite with your application\nby default, and it will prefer to use that copy over the one from the operating system.\nTo do that, it uses a new Dart and Flutter feature called [hooks](https://dart.dev/tools/hooks).\nMore information on hooks is available under that link, this page describes options relevant to\n`package:sqlite3`.\n\n## Default binaries\n\nEach [GitHub release](https://github.com/simolus3/sqlite3.dart/releases) of the SQLite package\ncontains pre-compiled SQLite versions as shared libraries for all platforms supported by Dart.\nThese binaries are compiled directly from upstream sources in GitHub actions, and the version of\n`package:sqlite3` published to pub.dev contains sha256 references that are compared against\ndownloaded files.\n\nThese binaries use the following compile-time options:\n\n```\nSQLITE_ENABLE_DBSTAT_VTAB\nSQLITE_ENABLE_FTS5\nSQLITE_ENABLE_RTREE\nSQLITE_ENABLE_MATH_FUNCTIONS\nSQLITE_DQS=0\nSQLITE_DEFAULT_MEMSTATUS=0\nSQLITE_TEMP_STORE=2\nSQLITE_MAX_EXPR_DEPTH=0\nSQLITE_STRICT_SUBTYPE=1\nSQLITE_OMIT_AUTHORIZATION\nSQLITE_OMIT_DECLTYPE\nSQLITE_OMIT_DEPRECATED\nSQLITE_OMIT_PROGRESS_CALLBACK\nSQLITE_OMIT_SHARED_CACHE\nSQLITE_OMIT_TCL_VARIABLE\nSQLITE_OMIT_TRACE\nSQLITE_USE_ALLOCA\nSQLITE_ENABLE_SESSION\nSQLITE_ENABLE_PREUPDATE_HOOK\nSQLITE_UNTESTABLE\nSQLITE_HAVE_ISNAN\nSQLITE_HAVE_LOCALTIME_R\nSQLITE_HAVE_LOCALTIME_S\nSQLITE_HAVE_MALLOC_USABLE_SIZE\nSQLITE_HAVE_STRCHRNUL\n```\n\nFor each platform, two sets of binaries are available:\n\n- [Upstream SQLite](https://sqlite.org/download.html).\n- The [SQLite3MultipleCiphers build](https://github.com/utelle/SQLite3MultipleCiphers/releases)\n  providing encryption support.\n\nSQLite is used by default, but SQLite3MultipleCiphers can be selected through user defines, e.g.\nby adding this to `pubspec.yaml`:\n\n```yaml\nhooks:\n  user_defines:\n    sqlite3:\n      source: sqlite3mc # for SQLite3MultipleCiphers, default is sqlite3\n```\n\n## System-provided SQLite\n\nDepending on how you distribute your app, you may want to use the SQLite version shipped with\nthe operating system.\n\nTo do so, use the following user defines:\n\n```yaml\nhooks:\n  user_defines:\n    sqlite3:\n      source: system # or \"process\", or \"excutable\"\n```\n\nThese options behave as follows:\n\n1. \"system\" instructs the Dart embedder to lookup SQLite from the operating system, e.g. with a\n   `dlopen(\"libsqlite3.so\")` on Linux.\n   When using `source: system`, you can also add a `name` key to customize the name of the library.\n   For instance, `name: sqlcipher` would load `libsqlcipher.dylib` on macOS.\n2. \"process\" looks for SQLite symbols in the current [process](https://api.dart.dev/dart-ffi/DynamicLibrary/DynamicLibrary.process.html), which can be useful when your executable already depends on\n  SQLite (instead of explicitly requesting it with `dlopen`).\n3. \"executable\" looks for SQLite symbols in the current [executable](https://api.dart.dev/dart-ffi/DynamicLibrary/DynamicLibrary.executable.html), which is useful when linking SQLite statically.\n\n### With custom library names\n\nWhen using `source: system`, you can also add a `name` key to customize the name of the name of the\nlibrary.\nFor instance, `name: sqlcipher` would load `libsqlcipher.dylib` on macOS, `libsqlcipher.so` on Linux\nand `sqlcipher.dll` on Windows.\nTo further customize the name for specific operating systems, you can use `name_$os` keys, where `$os`\nis the [target operating system](https://pub.dev/documentation/code_assets/latest/code_assets/OS-class.html)\npassed to hooks:\n\n```yaml\nhooks:\n  user_defines:\n    sqlite3:\n      source: system\n      # Use winsqlite3.dll on Windows, libsqlite3.{so,dylib} on Linux and macOS\n      name_windows: winsqlite3\n      name: sqlite3\n```\n\n## Custom SQLite builds\n\nIf you want to customize the SQLite build to use with `package:sqlite3`, you can\nalso use user defines for that.\n\nFirst, download the `sqlite3.c` file you want to use into your workspace. Then,\nadd this section to your pubspec:\n\n```yaml\nhooks:\n  user_defines:\n    sqlite3:\n      source: source\n      path: path/to/sqlite3.c # relative to your workspace root\n      defines: # optional\n        default_options: false # optional, to disable default compile-time options used by package:sqlite3\n        defines:\n          - SQLITE_THREADSAFE=1\n          - SQLITE_LIKE_DOESNT_MATCH_BLOBS\n```\n\n### Alternatives\n\nUsing the `source` mode to compile SQLite from sources in build hook can't\ncover all customization needs you may have. When building SQLCipher for\ninstance, you may want to pass custom linker options to the build process.\n\nThere is no good way to support arbitrary customization in build hooks today.\nHowever, `package:sqlite3` will work with all SQLite builds that are ABI-compatible\nwith standard SQLite (it also runs checks at runtime before using methods that\nare not commonly enabled on all builds).\nIf you control the build process of your application, you can use an external\nbuild system (like SwiftPM or CMake) to statically link SQLite into your application.\nThen, use `source: executable` to make `package:sqlite3` use that copy instead\nof building its own.\n"
  },
  {
    "path": "sqlite3/doc/native.md",
    "content": "Libraries related to accessing SQLite functions via `dart:ffi` on native platforms.\n"
  },
  {
    "path": "sqlite3/doc/releasing.md",
    "content": "## Releasing `package:sqlite3`.\n\nBecause each release contains native SQLite binaries whose hashes are referenced in Dart,\nadding a new release requires some setup.\n\n1. Run the full actions test pipeline for all changes to include.\n2. From that run, download the `asset_hashes.dart` file and copy it to\n   `sqlite3/lib/src/hook/asset_hashes.dart`.\n3. In that file, set `releaseTag` to `sqlite3-<$newVersion>`.\n4. In `sqlite3/pubspec.yaml`, set `version` to `$newVersion`.\n5. Commit and create a git tag `sqlite3-<$newVersion>`.\n6. Push that tag and approve the pub.dev publishing workflow.\n"
  },
  {
    "path": "sqlite3/doc/wasm.md",
    "content": "APIs for using SQLite in web contexts, accessing SQLite through a WebAssembly module."
  },
  {
    "path": "sqlite3/example/custom_extension/README.md",
    "content": "This shows how a custom SQLite extension can be linked with native assets.\n\nThe extension (https://github.com/asg017/sqlite-vec) is built with a code asset that will download\nthe extension as a prebuilt file from its GitHub releases.\n\nSQLite extensions are shared libraries that have a function called `sqlite3_$extensionName_init`.\nWith the hook linking the extension, you can bind to that function with Dart:\n\n```dart\n@Native<Int Function(Pointer<Void>, Pointer<Void>, Pointer<Void>)>()\nexternal int sqlite3_vec_init(\n  Pointer<Void> db,\n  Pointer<Void> pzErrMsg,\n  Pointer<Void> pApi,\n);\n\n```\n\nThis will then allow linking the extension:\n\n```dart\nextension LoadVectorExtension on Sqlite3 {\n  void loadSqliteVectorExtension() {\n    ensureExtensionLoaded(\n      SqliteExtension(\n        Native.addressOf<\n          NativeFunction<\n            Int Function(Pointer<Void>, Pointer<Void>, Pointer<Void>)\n          >\n        >(sqlite3_vec_init).cast(),\n      ),\n    );\n  }\n}\n```\n\nTo try this example, run `dart run example/main.dart`.\n"
  },
  {
    "path": "sqlite3/example/custom_extension/example/main.dart",
    "content": "import 'package:custom_extension/sqlite_vec.dart';\nimport 'package:sqlite3/sqlite3.dart';\n\nvoid main() {\n  sqlite3.loadSqliteVectorExtension();\n\n  final db = sqlite3.openInMemory();\n  db.execute('''\ncreate virtual table vec_examples using vec0(\n  sample_embedding float[8]\n);\n\ninsert into vec_examples(rowid, sample_embedding)\n  values\n    (1, '[-0.200, 0.250, 0.341, -0.211, 0.645, 0.935, -0.316, -0.924]'),\n    (2, '[0.443, -0.501, 0.355, -0.771, 0.707, -0.708, -0.185, 0.362]'),\n    (3, '[0.716, -0.927, 0.134, 0.052, -0.669, 0.793, -0.634, -0.162]'),\n    (4, '[-0.710, 0.330, 0.656, 0.041, -0.990, 0.726, 0.385, -0.958]');\n''');\n\n  print(\n    db.select('''\nselect\n  rowid,\n  distance\nfrom vec_examples\nwhere sample_embedding match '[0.890, 0.544, 0.825, 0.961, 0.358, 0.0196, 0.521, 0.175]'\norder by distance\nlimit 2;\n'''),\n  );\n}\n"
  },
  {
    "path": "sqlite3/example/custom_extension/hook/build.dart",
    "content": "import 'dart:io';\n\nimport 'package:code_assets/code_assets.dart';\nimport 'package:hooks/hooks.dart';\nimport 'package:http/http.dart';\nimport 'package:tar/tar.dart';\n\nvoid main(List<String> args) {\n  build(args, (input, output) async {\n    final targetOS = input.config.code.targetOS;\n    final arch = input.config.code.targetArchitecture;\n\n    final (osName, fileName) = switch (targetOS) {\n      OS.linux => ('linux', 'vec0.so'),\n      OS.macOS => ('macos', 'vec0.dylib'),\n      OS.windows => ('windows', 'vec0.dll'),\n      _ => throw UnsupportedError('Unsupported target os $targetOS'),\n    };\n    final archName = switch (arch) {\n      Architecture.x64 => 'x86_64',\n      Architecture.arm64 => 'aarch64',\n      _ => throw UnsupportedError('Unsupported target architecture $arch'),\n    };\n\n    final client = Client();\n    final uri = Uri.parse(\n      'https://github.com/asg017/sqlite-vec/releases/download/v$version/sqlite-vec-$version-loadable-$osName-$archName.tar.gz',\n    );\n    final response = await client.send(\n      Request('GET', uri)..followRedirects = true,\n    );\n    if (response.statusCode != 200) {\n      throw StateError(\n        'Unexpected status code ${response.statusCode} for $uri',\n      );\n    }\n\n    final reader = TarReader(response.stream.transform(gzip.decoder));\n    var foundFile = false;\n    while (await reader.moveNext()) {\n      final current = reader.current;\n      if (current.name == fileName) {\n        final targetFilePath = input.outputDirectory.resolve(fileName);\n        final targetFile = File(targetFilePath.toFilePath());\n        await current.contents.pipe(targetFile.openWrite());\n\n        output.assets.code.add(\n          CodeAsset(\n            package: 'custom_extension',\n            name: 'sqlite_vec.dart',\n            file: targetFilePath,\n            linkMode: DynamicLoadingBundled(),\n          ),\n        );\n\n        foundFile = true;\n        break;\n      }\n    }\n\n    if (!foundFile) {\n      throw 'Could not find $fileName in $uri';\n    }\n\n    await reader.cancel();\n    client.close();\n  });\n}\n\nconst version = '0.1.6';\n"
  },
  {
    "path": "sqlite3/example/custom_extension/lib/sqlite_vec.dart",
    "content": "// ignore_for_file: non_constant_identifier_names\n\nimport 'dart:ffi';\n\nimport 'package:sqlite3/sqlite3.dart';\n\n@Native<Int Function(Pointer<Void>, Pointer<Void>, Pointer<Void>)>()\nexternal int sqlite3_vec_init(\n  Pointer<Void> db,\n  Pointer<Void> pzErrMsg,\n  Pointer<Void> pApi,\n);\n\nextension LoadVectorExtension on Sqlite3 {\n  void loadSqliteVectorExtension() {\n    ensureExtensionLoaded(\n      SqliteExtension(\n        Native.addressOf<\n          NativeFunction<\n            Int Function(Pointer<Void>, Pointer<Void>, Pointer<Void>)\n          >\n        >(sqlite3_vec_init).cast(),\n      ),\n    );\n  }\n}\n"
  },
  {
    "path": "sqlite3/example/custom_extension/pubspec.yaml",
    "content": "name: custom_extension\npublish_to: none\nresolution: workspace\n\nenvironment:\n  sdk: '>=3.7.0 <4.0.0'\n\ndependencies:\n  sqlite3:\n\n  code_assets: ^1.0.0\n  hooks: ^1.0.0\n  http: ^1.5.0\n  tar: ^2.0.0\n\ndev_dependencies:\n  test: ^1.26.0\n"
  },
  {
    "path": "sqlite3/example/custom_extension/test/extension_test.dart",
    "content": "import 'package:custom_extension/sqlite_vec.dart';\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:test/test.dart';\n\nvoid main() {\n  setUpAll(() {\n    sqlite3.loadSqliteVectorExtension();\n  });\n\n  test('can use vec0', () {\n    final db = sqlite3.openInMemory();\n    addTearDown(db.close);\n\n    db.execute(\n      'create virtual table vec_examples using vec0(sample_embedding float[8])',\n    );\n  });\n}\n"
  },
  {
    "path": "sqlite3/example/custom_wasm_build/.cargo/config.toml",
    "content": "[build]\nrustflags = [\"-C\", \"linker-plugin-lto\"]\n"
  },
  {
    "path": "sqlite3/example/custom_wasm_build/.gitignore",
    "content": "target/\nCargo.lock\n"
  },
  {
    "path": "sqlite3/example/custom_wasm_build/Cargo.toml",
    "content": "[package]\nname = \"custom_wasm_build\"\nversion = \"0.1.0\"\nedition = \"2021\"\n\n[lib]\ncrate-type = [\"staticlib\"]\n\n[dependencies]\n\n[build-dependencies]\ncc = \"1.0.46\"\ncmake = \"0.1.50\"\n\n[profile.release]\nopt-level = \"z\"\nlto=true\n"
  },
  {
    "path": "sqlite3/example/custom_wasm_build/README.md",
    "content": "## custom wasm modules\n\nThis example demonstrates how to build a custom `sqlite3.wasm` module than can be\nused with `package:sqlite3`.\nUsing custom wasm modules is useful to include additional extensions in sqlite3, or to\nuse different compile-time options.\n\nThis example uses existing C source files also used by the default configuration:\n\n- `sqlite3.c` for the actual SQLite library.\n- [`helpers.c`](https://github.com/simolus3/sqlite3.dart/blob/main/sqlite3/assets/wasm/helpers.c) from this repository, which defines a VFS wrapper for virtual filesystem implementations provided from Dart.\n- Our `os_web.c` file is _not_ included. It contains the implementation for\n  `sqlite3_os_init` and `sqlite3_os_end`, which are implemented in this custom\n  extension instead. `sqlite3_os_init` is a suitable hook to load your sqlite3\n  extensions.\n\nIn this example, the extension is a simple Rust library printing a hello message\nto the web console when the module is loaded.\n\n## Setup\n\nWe're currently using the libc from [WASI](https://wasi.dev/) to compile sqlite3,\nso the easiest approach is to compile your custom extensions with that as well:\n\n```\nrustup target add wasm32-wasi\n```\n\nAdditionally, you need to download WASI compiler builtins and the associated libc\nas described in the [build instructions](https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3#compiling).\n\n## Building\n\nThe `build.rs` file from this example is responsible for compiling sqlite3 to\nWebAssembly object files. We're not using a static library because that seems to\nbreak the `--export-dynamic` option used in the final linking step to expose the\nrelevant functions.\n\nTo download and compile sqlite3 as well as the patched `sqlite3_os_init` function\nfor this example, run\n\n```\nWASI_SYSROOT=/path/to/wasi/ CC=/path/to/clang cargo build --target wasm32-unknown-unknown\n```\n\nOr, to compile a release build optimized for size:\n\n```\nWASI_SYSROOT=/path/to/wasi/ CC=/path/to/clang cargo build --target wasm32-unknown-unknown --release\n```\n\nCargo compiles sqlite3 to WASM object files, the Rust part is compiled into a static\nlibrary.\nA Dart script (`link.dart`) can be used to link them together into a `sqlite3.wasm`\nfile loadable by the `sqlite3` package:\n\n```\nCC=/path/to/clang dart run link.dart target/wasm32-unknown-unknown/debug\nCC=/path/to/clang dart run link.dart target/wasm32-unknown-unknown/release\n```\n\nAs an additional transformation step, running `wasm-opt -O4` on the resulting\nWASM file may optimize it further.\nSimilarly, running `dart run tool/wasm_dce.dart <input.wasm> <output.wasm>` in\nthe `sqlite3` source directory will remove functions not directly or indirectly\nused by the Dart package, reduzing bundle size.\n"
  },
  {
    "path": "sqlite3/example/custom_wasm_build/build.rs",
    "content": "use std::{env, path::PathBuf};\n\nuse cmake::Config;\n\nfn main() {\n    let sysroot =\n        env::var(\"WASI_SYSROOT\").unwrap_or_else(|_| \"/usr/share/wasi-sysroot\".to_string());\n\n    let cmake_dir = Config::new(\"../../../sqlite3_wasm_build/src/\")\n        .define(\"wasi_sysroot\", &sysroot)\n        .define(\"CMAKE_C_COMPILER_WORKS\", \"1\")\n        .build_target(\"sqlite3_opt_lib\")\n        .build_target(\"help\") // We only need the sources\n        .build();\n    let sqlite3_src = cmake_dir.join(\"build/_deps/sqlite3-src/\");\n\n    let mut c_build = cc::Build::new();\n    let objects = c_build\n        .target(\"wasm32-unknown-wasi\")\n        .cargo_warnings(false)\n        .std(\"c23\")\n        .flag(\"--sysroot\")\n        .flag(&sysroot)\n        .file(sqlite3_src.join(\"sqlite3.c\"))\n        .file(\"../../../sqlite3_wasm_build/src/helpers.c\")\n        .flag(\"-flto=thin\")\n        .include(&sqlite3_src)\n        .include(\"../../../sqlite3_wasm_build/src/\")\n        .define(\"SQLITE_ENABLE_SESSION\", None)\n        .define(\"SQLITE_ENABLE_PREUPDATE_HOOK\", None)\n        .define(\"_HAVE_SQLITE_CONFIG_H\", None)\n        .define(\"SQLITE_API\", \"__attribute__((visibility(\\\"default\\\")))\")\n        // Ideally we should be able to compile this into a static library and use that one, but\n        // for some reasons that drops all exported symbols. So we're compiling to objects and\n        // we only compile Rust code to a static library. Then we use the clang driver to link\n        // these objects and the static Rust library in one go.\n        .compile_intermediates();\n\n    let output_dir = get_output_path();\n    for object in objects {\n        // The file name is something like <hash>-sqlite3.o\n        let file_name = object.file_name().unwrap().to_str().unwrap().to_owned();\n        let (_, file_name) = file_name.split_once(\"-\").unwrap();\n\n        std::fs::copy(object, output_dir.join(file_name)).unwrap();\n    }\n}\n\nfn get_output_path() -> PathBuf {\n    let mut out = PathBuf::from(env::var(\"OUT_DIR\").unwrap());\n\n    loop {\n        match out.file_name() {\n            Some(name) if name == \"build\" => {\n                break;\n            }\n            _ => out = out.parent().unwrap().to_path_buf(),\n        }\n    }\n\n    out.parent().unwrap().to_path_buf()\n}\n"
  },
  {
    "path": "sqlite3/example/custom_wasm_build/link.dart",
    "content": "import 'dart:io';\n\nvoid main(List<String> args) {\n  if (args.length != 1) {\n    print(\"Usage: dart link.dart target/wasm32-wasi/<buildtype>\");\n  }\n\n  final directory = Directory(args[0]);\n  final entries = <String>[];\n\n  for (final entry in directory.listSync()) {\n    if (entry.path.endsWith('.o') || entry.path.endsWith('.a')) {\n      entries.add(entry.path);\n    }\n  }\n\n  final clang = Platform.environment['CC'] ?? 'clang';\n  final sysroot =\n      Platform.environment['WASI_SYSROOT'] ?? '/usr/share/wasi-sysroot';\n\n  final process = Process.runSync(clang, [\n    '--target=wasm32-unknown-wasi',\n    '--sysroot=$sysroot',\n    '-flto',\n    ...entries,\n    '-o',\n    'sqlite3.wasm',\n    '-nostartfiles',\n    '-Wl,--no-entry',\n    '-Wl,--export-dynamic',\n    '-Wl,--import-memory',\n    '-v',\n  ]);\n\n  if (process.exitCode != 0) {\n    print(\n      'Could not link: ${process.exitCode}, ${process.stderr}, ${process.stdout}',\n    );\n  }\n}\n"
  },
  {
    "path": "sqlite3/example/custom_wasm_build/src/lib.rs",
    "content": "use std::ffi::c_int;\n\n#[no_mangle]\npub extern \"C\" fn sqlite3_os_init() -> c_int {\n    // This would be a good place to set up extensions.\n    unsafe {\n        // package:sqlite3 provides access to Dart's print function via dart.error_log\n        wasm::dartLogError(\"Hello from a custom Rust build!\".as_ptr().cast());\n    }\n\n    return 0;\n}\n\n#[no_mangle]\npub extern \"C\" fn sqlite3_os_end() -> c_int {\n    return 0;\n}\n\nmod wasm {\n    use std::ffi::c_char;\n\n    #[link(wasm_import_module = \"dart\")]\n    extern \"C\" {\n        #[link_name = \"error_log\"]\n        pub fn dartLogError(msg: *const c_char);\n    }\n}\n"
  },
  {
    "path": "sqlite3/example/jsonb.dart",
    "content": "import 'package:sqlite3/sqlite3.dart';\n\nvoid main() {\n  final database = sqlite3.openInMemory()\n    ..execute('CREATE TABLE entries (entry BLOB NOT NULL) STRICT;')\n    // You can insert JSONB-formatted values directly\n    ..execute('INSERT INTO entries (entry) VALUES (?)', [\n      jsonb.encode({'hello': 'dart'}),\n    ]);\n  // And use them with JSON operators in SQLite without a further conversion:\n  print(database.select('SELECT entry ->> ? AS r FROM entries;', [r'$.hello']));\n}\n"
  },
  {
    "path": "sqlite3/example/main.dart",
    "content": "import 'dart:io';\n\nimport 'package:sqlite3/sqlite3.dart';\n\nvoid main() {\n  print('Using sqlite3 ${sqlite3.version}');\n\n  // Create a new in-memory database. To use a database backed by a file, you\n  // can replace this with sqlite3.open(yourFilePath).\n  final db = sqlite3.openInMemory();\n\n  // Create a table and insert some data\n  db.execute('''\n    CREATE TABLE artists (\n      id INTEGER NOT NULL PRIMARY KEY,\n      name TEXT NOT NULL\n    );\n  ''');\n\n  // Prepare a statement to run it multiple times:\n  final stmt = db.prepare('INSERT INTO artists (name) VALUES (?)');\n  stmt\n    ..execute(['The Beatles'])\n    ..execute(['Led Zeppelin'])\n    ..execute(['The Who'])\n    ..execute(['Nirvana']);\n\n  // Dispose a statement when you don't need it anymore to clean up resources.\n  stmt.close();\n\n  // You can run select statements with PreparedStatement.select, or directly\n  // on the database:\n  final ResultSet resultSet = db.select(\n    'SELECT * FROM artists WHERE name LIKE ?',\n    ['The %'],\n  );\n\n  // You can iterate on the result set in multiple ways to retrieve Row objects\n  // one by one.\n  for (final Row row in resultSet) {\n    print('Artist[id: ${row['id']}, name: ${row['name']}]');\n  }\n\n  // Register a custom function we can invoke from sql:\n  db.createFunction(\n    functionName: 'dart_version',\n    argumentCount: const AllowedArgumentCount(0),\n    function: (args) => Platform.version,\n  );\n  print(db.select('SELECT dart_version()'));\n\n  // Don't forget to dispose the database to avoid memory leaks (optional on\n  // native platforms).\n  db.close();\n}\n"
  },
  {
    "path": "sqlite3/example/web/README.md",
    "content": "## sqlite3 web example\n\nThis folder contains a very simple example demonstrating how to load a sqlite3 database in the\nweb.\n\nTo run this example, first obtain a `sqlite3.debug.wasm` file from the [releases](https://github.com/simolus3/sqlite3.dart/releases)\nof this package and put it in this `web/` folder.\nIn a real app, you'll want to use the `sqlite3.wasm` file from the releases, but the debug variant\nprints more log messages which are relevant for the example.\n\nIn the `sqlite3/` folder (`../..`), run `dart run build_runner serve example:8080`.\nThen, you can visit the example at http://localhost:8080/web/.\n\n------\n\nFor larger applications using sqlite3, you may want to try out a database framework such as\n[drift](https://drift.simonbinder.eu/web/), which takes care of the complex setup steps for you.\nIt automatically determines features supported by the current browser to choose a suitable filesystem\nimplementation.\n"
  },
  {
    "path": "sqlite3/example/web/index.html",
    "content": "<!DOCTYPE html>\n\n<html>\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"scaffolded-by\" content=\"https://github.com/dart-lang/sdk\">\n    <title>sqlite on the web</title>\n    <script defer src=\"main.dart.js\"></script>\n</head>\n\n<body>\n\n<h1>sqlite3 web demo</h1>\n\n<main>\nThis page can be used to launch a sqlite3 database on the web in two different configurations:\n\n<ul>\n  <li>With an IndexedDb-based storage implementation (doesn't require web workers): <button id=\"start-idb\">Start demo!</button></li>\n  <li>With an Origin-Private FileSystem (OPFS)-based storage implementation. Note that this requires two workers and a special header\n      that is not available with <code>build_runner serve</code>, but it will work when launching this website with <code>dart run tool/example_server.dart</code> <button id=\"start-opfs\">Start demo!</button>\n  </li>\n  <li>With an in-memory test (using <a href=\"https://utelle.github.io/SQLite3MultipleCiphers/\">SQLite3 Multiple Ciphers</a> for encryption): <button id=\"start-encryption\">Start encryption!</button></li>\n</ul>\n\nAfter launching the example, you can check the console and the code in <code>main.dart</code> (or <code>worker.dart</code> for the OPFS example)\nfor details.\n</main>\n\n\n</body>\n</html>\n"
  },
  {
    "path": "sqlite3/example/web/main.dart",
    "content": "import 'dart:js_interop';\n\nimport 'package:web/web.dart';\n\nimport 'package:sqlite3/wasm.dart';\n\nFuture<void> main() async {\n  final startIndexedDb = document.getElementById('start-idb')!;\n  final startOpfs = document.getElementById('start-opfs')!;\n  final startEncryption = document.getElementById('start-encryption')!;\n\n  startIndexedDb.onClick.listen((_) async {\n    startIndexedDb.remove();\n    final sqlite3 = await WasmSqlite3.loadFromUrl(\n      Uri.parse('sqlite3.debug.wasm'),\n    );\n\n    print(sqlite3.version);\n\n    sqlite3.registerVirtualFileSystem(\n      await IndexedDbFileSystem.open(dbName: 'sqlite3-example'),\n      makeDefault: true,\n    );\n\n    sqlite3.open('/database')\n      ..execute('pragma user_version = 1')\n      ..execute('CREATE TABLE foo (bar INTEGER NOT NULL);')\n      ..execute('INSERT INTO foo (bar) VALUES (?)', [3])\n      ..close();\n\n    final db = sqlite3.open('/database');\n    print(db.select('SELECT * FROM foo'));\n  });\n\n  startOpfs.onClick.listen((_) async {\n    startOpfs.remove();\n\n    final worker = Worker('worker.dart.js'.toJS);\n    worker.postMessage('start'.toJS);\n  });\n\n  startEncryption.onClick.listen((_) async {\n    startEncryption.remove();\n    final sqlite3 = await WasmSqlite3.loadFromUrl(Uri.parse('sqlite3mc.wasm'));\n\n    sqlite3.registerVirtualFileSystem(InMemoryFileSystem(name: 'testing'));\n\n    sqlite3.open('/database', vfs: 'multipleciphers-testing')\n      ..execute(\"pragma key = 'test';\")\n      ..execute('pragma user_version = 1')\n      ..execute('CREATE TABLE foo (bar INTEGER NOT NULL);')\n      ..execute('INSERT INTO foo (bar) VALUES (?)', [3])\n      ..close();\n\n    final db = sqlite3.open('/database', vfs: 'multipleciphers-testing');\n    try {\n      db.select('SELECT * FROM foo');\n    } on SqliteException {\n      print('database call failed (expected due to missing key)');\n    }\n    db.execute(\"pragma key = 'test';\");\n    print(db.select('SELECT * FROM foo'));\n  });\n}\n"
  },
  {
    "path": "sqlite3/example/web/worker.dart",
    "content": "import 'dart:js_interop';\n\nimport 'package:sqlite3/wasm.dart';\nimport 'package:web/web.dart' as web;\n\n@JS()\nexternal bool get crossOriginIsolated;\n\nvoid main() {\n  print('worker main');\n  final self = (globalContext as web.DedicatedWorkerGlobalScope);\n\n  if (!WasmVfs.supportsAtomicsAndSharedMemory) {\n    throw UnsupportedError(\n      'Missing support for Atomics or SharedArrayBuffer! Isolated: $crossOriginIsolated',\n    );\n  }\n\n  Future<void> handleEvent(web.MessageEvent event) async {\n    final data = event.data;\n\n    if (data.equals('start'.toJS).toDart) {\n      final options = WasmVfs.createOptions();\n      final worker = web.Worker(''.toJS); // Clone this worker\n      worker.postMessage(options);\n\n      // Now, wait for the worker to report that it has been initialized.\n      await web.EventStreamProviders.messageEvent.forTarget(worker).first;\n\n      final sqlite3 = await WasmSqlite3.loadFromUrl(\n        Uri.parse('sqlite3.debug.wasm'),\n      );\n      sqlite3.registerVirtualFileSystem(\n        await SimpleOpfsFileSystem.loadFromStorage('worker-test'),\n        makeDefault: true,\n      );\n\n      sqlite3.open('/database')\n        ..execute('pragma user_version = 1')\n        ..execute('CREATE TABLE foo (bar INTEGER NOT NULL);')\n        ..execute('INSERT INTO foo (bar) VALUES (?)', [3])\n        ..close();\n\n      final db = sqlite3.open('/database');\n      print(db.select('SELECT * FROM foo'));\n    } else {\n      final message = data as WorkerOptions;\n\n      final worker = await VfsWorker.create(message);\n\n      self.postMessage(true.toJS);\n      await worker.start();\n    }\n  }\n\n  self.onmessage = (web.MessageEvent event) {\n    handleEvent(event);\n  }.toJS;\n}\n"
  },
  {
    "path": "sqlite3/hook/build.dart",
    "content": "import 'dart:io';\n\nimport 'package:code_assets/code_assets.dart';\nimport 'package:hooks/hooks.dart';\nimport 'package:native_toolchain_c/native_toolchain_c.dart';\nimport 'package:path/path.dart' as p;\n\nimport 'package:sqlite3/src/hook/description.dart';\nimport 'package:sqlite3/src/hook/used_symbols.dart';\n\nvoid main(List<String> args) async {\n  await build(args, (input, output) async {\n    if (!input.config.buildCodeAssets) {\n      return;\n    }\n\n    final sqlite = SqliteBinary.forBuild(input);\n    switch (sqlite) {\n      case PrecompiledBinary():\n        final library = sqlite.resolveLibrary(input.config.code);\n        library.checkSupported();\n\n        final downloaded = await sqlite.downloadIntoOutputDirectoryShared(\n          input,\n          output,\n          library,\n        );\n\n        output.assets.code.add(\n          CodeAsset(\n            package: package,\n            name: name,\n            linkMode: DynamicLoadingBundled(),\n            file: downloaded.uri,\n          ),\n        );\n      case CompileSqlite(:final sourceFile, :final defines):\n        // With Flutter on Linux (which already dynamically links SQLite through\n        // its libgtk dependency), we run into issues where loading our SQLite\n        // build causes internal symbols to be resolved against the already\n        // loaded library from the system.\n        // This is terrible and not what we ever want. A proper solution may be\n        // to use namespaces or RTLD_DEEPBIND, but hooks don't support that yet.\n        // An alternative that seems to work is to pass -Bsymbolic-functions to\n        // the linker.\n        // For the full discussion, see https://github.com/dart-lang/native/issues/2724\n\n        String? linkerScript;\n        if (input.config.code.targetOS == OS.linux) {\n          linkerScript = input.outputDirectory.resolve('sqlite.map').path;\n\n          await File(linkerScript).writeAsString('''\n{\n  global:\n${usedSqliteSymbols.map((symbol) => '    $symbol;').join('\\n')}\n  local:\n    *;\n};\n''');\n        }\n\n        final library = CBuilder.library(\n          name: 'sqlite3',\n          packageName: 'sqlite3',\n          assetName: name,\n          sources: [sourceFile],\n          includes: [p.dirname(sourceFile)],\n          defines: defines,\n          flags: [\n            if (input.config.code.targetOS == OS.linux) ...[\n              // This avoids loading issues on Linux, see comment above.\n              '-Wl,-Bsymbolic',\n              // And since we already have a designated list of symbols to\n              // export, we might as well strip the rest.\n              // TODO: Port this to other targets too.\n              '-Wl,--version-script=$linkerScript',\n              '-ffunction-sections',\n              '-fdata-sections',\n              '-Wl,--gc-sections',\n            ],\n            if (input.config.code.targetOS case OS.iOS || OS.macOS) ...[\n              '-headerpad_max_install_names',\n              // clang would use the temporary directory passed by\n              // native_toolchain_c otherwise. So this makes improves\n              // reproducibility.\n              '-install_name',\n              '@rpath/libsqlite3.dylib',\n            ],\n          ],\n          libraries: [\n            if (input.config.code.targetOS == OS.android)\n              // We need to link the math library on Android.\n              'm',\n          ],\n        );\n\n        await library.run(input: input, output: output);\n      case ExternalSqliteBinary():\n        output.assets.code.add(\n          CodeAsset(\n            package: package,\n            name: name,\n            linkMode: sqlite.resolveLinkMode(input),\n          ),\n        );\n    }\n  });\n}\n\nconst package = 'sqlite3';\nconst name = 'src/ffi/libsqlite3.g.dart';\n"
  },
  {
    "path": "sqlite3/lib/common.dart",
    "content": "/// Exports common interfaces that are implemented by both the `dart:ffi` and\n/// the `dart:js` WASM version of this library.\n///\n/// {@category common}\n/// {@canonicalFor database.CommonDatabase}\n/// {@canonicalFor statement.CommonPreparedStatement}\nlibrary;\n\nexport 'src/constants.dart';\nexport 'src/database.dart';\nexport 'src/session.dart';\nexport 'src/exception.dart';\nexport 'src/functions.dart';\nexport 'src/in_memory_vfs.dart' show InMemoryFileSystem;\nexport 'src/jsonb.dart';\nexport 'src/result_set.dart';\nexport 'src/sqlite3.dart';\nexport 'src/statement.dart'\n    show CommonPreparedStatement, StatementParameters, CustomStatementParameter;\nexport 'src/vfs.dart';\n"
  },
  {
    "path": "sqlite3/lib/sqlite3.dart",
    "content": "/// Dart bindings to `sqlite3`.\n///\n/// {@category native}\n/// {@category hook}\nlibrary;\n\n// Hide common base classes that have more specific ffi-APIs.\nexport 'common.dart' hide CommonPreparedStatement, CommonDatabase;\n\nexport 'src/ffi/api.dart';\n"
  },
  {
    "path": "sqlite3/lib/src/constants.dart",
    "content": "// ignore_for_file: constant_identifier_names\n\n/// Common result codes, https://www.sqlite.org/rescode.html\n/// Result Codes\n///\n/// Many SQLite functions return an integer result code from the set shown\n/// here in order to indicates success or failure.\n///\n/// New error codes may be added in future versions of SQLite.\n///\n/// See also: SQLITE_IOERR_READ | extended result codes,\n/// sqlite3_vtab_on_conflictstatic const int ) SQLITE_ROLLBACK | result codes.\n/// {@category common}\nfinal class SqlError {\n  /// Successful result\n  static const int SQLITE_OK = 0;\n\n  /// Generic error\n  static const int SQLITE_ERROR = 1;\n\n  /// Internal logic error in SQLite\n  static const int SQLITE_INTERNAL = 2;\n\n  /// Access permission denied\n  static const int SQLITE_PERM = 3;\n\n  /// Callback routine requested an abort\n  static const int SQLITE_ABORT = 4;\n\n  /// The database file is locked\n  static const int SQLITE_BUSY = 5;\n\n  /// A table in the database is locked\n  static const int SQLITE_LOCKED = 6;\n\n  /// A mallocstatic const int ) failed\n  static const int SQLITE_NOMEM = 7;\n\n  /// Attempt to write a readonly database\n  static const int SQLITE_READONLY = 8;\n\n  /// Operation terminated by sqlite3_interruptstatic const int )\n  static const int SQLITE_INTERRUPT = 9;\n\n  /// Some kind of disk I/O error occurred\n  static const int SQLITE_IOERR = 10;\n\n  /// The database disk image is malformed\n  static const int SQLITE_CORRUPT = 11;\n\n  /// Unknown opcode in sqlite3_file_controlstatic const int )\n  static const int SQLITE_NOTFOUND = 12;\n\n  /// Insertion failed because database is full\n  static const int SQLITE_FULL = 13;\n\n  /// Unable to open the database file\n  static const int SQLITE_CANTOPEN = 14;\n\n  /// Database lock protocol error\n  static const int SQLITE_PROTOCOL = 15;\n\n  /// Internal use only\n  static const int SQLITE_EMPTY = 16;\n\n  /// The database schema changed\n  static const int SQLITE_SCHEMA = 17;\n\n  /// String or BLOB exceeds size limit\n  static const int SQLITE_TOOBIG = 18;\n\n  /// Abort due to constraint violation\n  static const int SQLITE_CONSTRAINT = 19;\n\n  /// Data type mismatch\n  static const int SQLITE_MISMATCH = 20;\n\n  /// Library used incorrectly\n  static const int SQLITE_MISUSE = 21;\n\n  /// Uses OS features not supported on host\n  static const int SQLITE_NOLFS = 22;\n\n  /// Authorization denied\n  static const int SQLITE_AUTH = 23;\n\n  /// Not used\n  static const int SQLITE_FORMAT = 24;\n\n  /// 2nd parameter to sqlite3_bind out of range\n  static const int SQLITE_RANGE = 25;\n\n  /// File opened that is not a database file\n  static const int SQLITE_NOTADB = 26;\n\n  /// Notifications from sqlite3_logstatic const int )\n  static const int SQLITE_NOTICE = 27;\n\n  /// Warnings from sqlite3_logstatic const int )\n  static const int SQLITE_WARNING = 28;\n\n  /// sqlite3_stepstatic const int ) has another row ready\n  static const int SQLITE_ROW = 100;\n\n  /// sqlite3_stepstatic const int ) has finished executing\n  static const int SQLITE_DONE = 101;\n}\n\n/// Extended Result Codes, https://www.sqlite.org/rescode.html\n///\n/// Result codes are signed 32-bit integers. The least significant 8 bits of the result code define a broad category and are called the \"primary result code\". More significant bits provide more detailed information about the error and are called the \"extended result code\"\n///\n/// Note that the primary result code is always a part of the extended result code. Given a full 32-bit extended result code, the application can always find the corresponding primary result code merely by extracting the least significant 8 bits of the extended result code.\n///\n/// All extended result codes are also error codes. Hence the terms \"extended result code\" and \"extended error code\" are interchangeable.\n/// {@category common}\nfinal class SqlExtendedError {\n  /// The sqlite3_load_extension() interface loads an extension into a single database connection.\n  ///\n  /// The default behavior is for that extension to be automatically unloaded when the database connection closes. However, if the extension entry point returns SQLITE_OK_LOAD_PERMANENTLY instead of SQLITE_OK, then the extension remains loaded into the process address space after the database connection closes. In other words, the xDlClose methods of the sqlite3_vfs object is not called for the extension when the database connection closes.\n  ///\n  /// The SQLITE_OK_LOAD_PERMANENTLY return code is useful to loadable extensions that register new VFSes, for example.\n  static const int SQLITE_OK_LOAD_PERMANENTLY = 256;\n\n  /// The SQLITE_ERROR_MISSING_COLLSEQ result code means that an SQL statement could not be prepared because a collating sequence named in that SQL statement could not be located.\n  ///\n  /// Sometimes when this error code is encountered, the sqlite3_prepare_v2static const int ) routine will convert the error into SQLITE_ERROR_RETRY and try again to prepare the SQL statement using a different query plan that does not require the use of the unknown collating sequence.\n  static const int SQLITE_ERROR_MISSING_COLLSEQ = 257;\n\n  /// The SQLITE_BUSY_RECOVERY error code is an extended error code for SQLITE_BUSY that indicates that an operation could not continue because another process is busy recovering a WAL mode database file following a crash. The SQLITE_BUSY_RECOVERY error code only occurs on WAL mode databases.\n  static const int SQLITE_BUSY_RECOVERY = 261;\n\n  /// The SQLITE_LOCKED_SHAREDCACHE result code indicates that access to an SQLite data record is blocked by another database connection that is using the same record in shared cache mode.\n  ///\n  /// When two or more database connections share the same cache and one of the connections is in the middle of modifying a record in that cache, then other connections are blocked from accessing that data while the modifications are on-going in order to prevent the readers from seeing a corrupt or partially completed change.\n  static const int SQLITE_LOCKED_SHAREDCACHE = 262;\n\n  /// The SQLITE_READONLY_RECOVERY error code is an extended error code for SQLITE_READONLY. The SQLITE_READONLY_RECOVERY error code indicates that a WAL mode database cannot be opened because the database file needs to be recovered and recovery requires write access but only read access is available.\n  static const int SQLITE_READONLY_RECOVERY = 264;\n\n  /// The SQLITE_IOERR_READ error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to read from a file on disk. This error might result from a hardware malfunction or because a filesystem came unmounted while the file was open.\n  static const int SQLITE_IOERR_READ = 266;\n\n  /// The SQLITE_CORRUPT_VTAB error code is an extended error code for SQLITE_CORRUPT used by virtual tables. A virtual table might return SQLITE_CORRUPT_VTAB to indicate that content in the virtual table is corrupt.\n  static const int SQLITE_CORRUPT_VTAB = 267;\n\n  /// The SQLITE_CANTOPEN_NOTEMPDIR error code is no longer used.\n  static const int SQLITE_CANTOPEN_NOTEMPDIR = 270;\n\n  /// The SQLITE_CONSTRAINT_CHECK error code is an extended error code for SQLITE_CONSTRAINT indicating that a CHECK constraint failed.\n  static const int SQLITE_CONSTRAINT_CHECK = 275;\n\n  /// The SQLITE_NOTICE_RECOVER_WAL result code is passed to the callback of sqlite3_logstatic const int ) when a WAL mode database file is recovered.\n  static const int SQLITE_NOTICE_RECOVER_WAL = 283;\n\n  /// The SQLITE_WARNING_AUTOINDEX result code is passed to the callback of sqlite3_logstatic const int ) whenever automatic indexing is used. This can serve as a warning to application designers that the database might benefit from additional indexes.\n  static const int SQLITE_WARNING_AUTOINDEX = 284;\n\n  /// The SQLITE_ERROR_RETRY is used internally to provoke sqlite3_prepare_v2static const int ) static const int or one of its sibling routines for creating prepared statements) to try again to prepare a statement that failed with an error on the previous attempt.\n  static const int SQLITE_ERROR_RETRY = 513;\n\n  /// The SQLITE_ABORT_ROLLBACK error code is an extended error code for SQLITE_ABORT indicating that an SQL statement aborted because the transaction that was active when the SQL statement first started was rolled back. Pending write operations always fail with this error when a rollback occurs. A ROLLBACK will cause a pending read operation to fail only if the schema was changed within the transaction being rolled back.\n  static const int SQLITE_ABORT_ROLLBACK = 516;\n\n  /// The SQLITE_BUSY_SNAPSHOT error code is an extended error code for SQLITE_BUSY that occurs on WAL mode databases when a database connection tries to promote a read transaction into a write transaction but finds that another database connection has already written to the database and thus invalidated prior reads.\n  ///\n  ///\n  /// The following scenario illustrates how an SQLITE_BUSY_SNAPSHOT error might arise:\n  ///\n  /// Process A starts a read transaction on the database and does one or more SELECT statement. Process A keeps the transaction open.\n  ///\n  /// Process B updates the database, changing values previous read by process A.\n  ///\n  /// Process A now tries to write to the database. But process A's view of the database content is now obsolete because process B has modified the database file after process A read from it. Hence process A gets an SQLITE_BUSY_SNAPSHOT error.\n  static const int SQLITE_BUSY_SNAPSHOT = 517;\n\n  /// The SQLITE_LOCKED_VTAB result code is not used by the SQLite core, but it is available for use by extensions. Virtual table implementations can return this result code to indicate that they cannot complete the current operation because of locks held by other threads or processes.\n\n  /// The R-Tree extension returns this result code when an attempt is made to update the R-Tree while another prepared statement is actively reading the R-Tree.\n  ///\n  /// The update cannot proceed because any change to an R-Tree might involve reshuffling and rebalancing of nodes, which would disrupt read cursors, causing some rows to be repeated and other rows to be omitted.\n  static const int SQLITE_LOCKED_VTAB = 518;\n\n  /// The SQLITE_READONLY_CANTLOCK error code is an extended error code for SQLITE_READONLY. The SQLITE_READONLY_CANTLOCK error code indicates that SQLite is unable to obtain a read lock on a WAL mode database because the shared-memory file associated with that database is read-only.\n  static const int SQLITE_READONLY_CANTLOCK = 520;\n\n  /// The SQLITE_IOERR_SHORT_READ error code is an extended error code for SQLITE_IOERR indicating that a read attempt in the VFS layer was unable to obtain as many bytes as was requested. This might be due to a truncated file.\n  static const int SQLITE_IOERR_SHORT_READ = 522;\n\n  /// The SQLITE_CORRUPT_SEQUENCE result code means that the schema of the sqlite_sequence table is corrupt. The sqlite_sequence table is used to help implement the AUTOINCREMENT feature. The sqlite_sequence table should have the following format:\n  ///\n  /// CREATE TABLE sqlite_sequencestatic const int name,seq);\n  ///\n  /// If SQLite discovers that the sqlite_sequence table has any other format, it returns the SQLITE_CORRUPT_SEQUENCE error.\n  static const int SQLITE_CORRUPT_SEQUENCE = 523;\n\n  /// The SQLITE_CANTOPEN_ISDIR error code is an extended error code for SQLITE_CANTOPEN indicating that a file open operation failed because the file is really a directory.\n  static const int SQLITE_CANTOPEN_ISDIR = 526;\n\n  /// The SQLITE_CONSTRAINT_COMMITHOOK error code is an extended error code for SQLITE_CONSTRAINT indicating that a commit hook callback returned non-zero that thus caused the SQL statement to be rolled back.\n  static const int SQLITE_CONSTRAINT_COMMITHOOK = 531;\n\n  /// The SQLITE_NOTICE_RECOVER_ROLLBACK result code is passed to the callback of sqlite3_logstatic const int ) when a hot journal is rolled back.\n  static const int SQLITE_NOTICE_RECOVER_ROLLBACK = 539;\n\n  /// The SQLITE_ERROR_SNAPSHOT result code might be returned when attempting to start a read transaction on an historical version of the database by using the sqlite3_snapshot_openstatic const int ) interface.\n  ///\n  ///  If the historical snapshot is no longer available, then the read transaction will fail with the SQLITE_ERROR_SNAPSHOT. This error code is only possible if SQLite is compiled with -DSQLITE_ENABLE_SNAPSHOT.\n  static const int SQLITE_ERROR_SNAPSHOT = 769;\n\n  /// The SQLITE_BUSY_TIMEOUT error code indicates that a blocking Posix advisory file lock request in the VFS layer failed due to a timeout. Blocking Posix advisory locks are only available as a proprietary SQLite extension and even then are only supported if SQLite is compiled with the SQLITE_EANBLE_SETLK_TIMEOUT compile-time option.\n  static const int SQLITE_BUSY_TIMEOUT = 773;\n\n  /// The SQLITE_READONLY_ROLLBACK error code is an extended error code for SQLITE_READONLY. The SQLITE_READONLY_ROLLBACK error code indicates that a database cannot be opened because it has a hot journal that needs to be rolled back but cannot because the database is readonly.\n  static const int SQLITE_READONLY_ROLLBACK = 776;\n\n  /// The SQLITE_IOERR_WRITE error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to write into a file on disk.\n  ///\n  /// This error might result from a hardware malfunction or because a filesystem came unmounted while the file was open. This error should not occur if the filesystem is full as there is a separate error code static const int SQLITE_FULL) for that purpose.\n  static const int SQLITE_IOERR_WRITE = 778;\n\n  /// The SQLITE_CORRUPT_INDEX result code means that SQLite detected an entry is or was missing from an index. This is a special case of the SQLITE_CORRUPT error code that suggests that the problem might be resolved by running the REINDEX command, assuming no other problems exist elsewhere in the database file.\n  static const int SQLITE_CORRUPT_INDEX = 779;\n\n  /// The SQLITE_CANTOPEN_FULLPATH error code is an extended error code for SQLITE_CANTOPEN indicating that a file open operation failed because the operating system was unable to convert the filename into a full pathname.\n  static const int SQLITE_CANTOPEN_FULLPATH = 782;\n\n  /// The SQLITE_CONSTRAINT_FOREIGNKEY error code is an extended error code for SQLITE_CONSTRAINT indicating that a foreign key constraint failed.\n  static const int SQLITE_CONSTRAINT_FOREIGNKEY = 787;\n\n  /// The SQLITE_READONLY_DBMOVED error code is an extended error code for SQLITE_READONLY.\n  ///\n  /// The SQLITE_READONLY_DBMOVED error code indicates that a database cannot be modified because the database file has been moved since it was opened, and so any attempt to modify the database might result in database corruption if the processes crashes because the rollback journal would not be correctly named.\n  static const int SQLITE_READONLY_DBMOVED = 1032;\n\n  /// The SQLITE_IOERR_FSYNC error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to flush previously written content out of OS and/or disk-control buffers and into persistent storage.\n  ///\n  ///  In other words, this code indicates a problem with the fsyncstatic const int ) system call in unix or the FlushFileBuffersstatic const int ) system call in windows.\n  static const int SQLITE_IOERR_FSYNC = 1034;\n\n  /// The SQLITE_CANTOPEN_CONVPATH error code is an extended error code for SQLITE_CANTOPEN used only by Cygwin VFS and indicating that the cygwin_conv_pathstatic const int ) system call failed while trying to open a file. See also: SQLITE_IOERR_CONVPATH\n  static const int SQLITE_CANTOPEN_CONVPATH = 1038;\n\n  /// The SQLITE_CONSTRAINT_FUNCTION error code is not currently used by the SQLite core. However, this error code is available for use by extension functions.\n  static const int SQLITE_CONSTRAINT_FUNCTION = 1043;\n\n  /// The SQLITE_READONLY_CANTINIT result code originates in the xShmMap method of a VFS to indicate that the shared memory region used by WAL mode exists buts its content is unreliable and unusable by the current process since the current process does not have write permission on the shared memory region.\n  ///\n  /// static const int The shared memory region for WAL mode is normally a file with a \"-wal\" suffix that is mmapped into the process space. If the current process does not have write permission on that file, then it cannot write into shared memory.)\n  ///\n  /// Higher level logic within SQLite will normally intercept the error code and create a temporary in-memory shared memory region so that the current process can at least read the content of the database. This result code should not reach the application interface layer.\n  static const int SQLITE_READONLY_CANTINIT = 1288;\n\n  /// The SQLITE_IOERR_DIR_FSYNC error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to invoke fsyncstatic const int ) on a directory.\n  ///\n  ///  The unix VFS attempts to fsyncstatic const int ) directories after creating or deleting certain files to ensure that those files will still appear in the filesystem following a power loss or system crash.\n  ///\n  /// This error code indicates a problem attempting to perform that fsyncstatic const int ).\n  static const int SQLITE_IOERR_DIR_FSYNC = 1290;\n\n  /// The SQLITE_CANTOPEN_DIRTYWAL result code is not used at this time.\n  static const int SQLITE_CANTOPEN_DIRTYWAL = 1294;\n\n  /// The SQLITE_CONSTRAINT_NOTNULL error code is an extended error code for SQLITE_CONSTRAINT indicating that a NOT NULL constraint failed.\n  static const int SQLITE_CONSTRAINT_NOTNULL = 1299;\n\n  /// The SQLITE_READONLY_DIRECTORY result code indicates that the database is read-only because process does not have permission to create a journal file in the same directory as the database and the creation of a journal file is a prerequisite for writing.\n  static const int SQLITE_READONLY_DIRECTORY = 1544;\n\n  /// The SQLITE_IOERR_TRUNCATE error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to truncate a file to a smaller size.\n  static const int SQLITE_IOERR_TRUNCATE = 1546;\n\n  /// The SQLITE_CANTOPEN_SYMLINK result code is returned by the sqlite3_openstatic const int ) interface and its siblings when the SQLITE_OPEN_NOFOLLOW flag is used and the database file is a symbolic link.\n  static const int SQLITE_CANTOPEN_SYMLINK = 1550;\n\n  /// The SQLITE_CONSTRAINT_PRIMARYKEY error code is an extended error code for SQLITE_CONSTRAINT indicating that a PRIMARY KEY constraint failed.\n  static const int SQLITE_CONSTRAINT_PRIMARYKEY = 1555;\n\n  /// The SQLITE_IOERR_FSTAT error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to invoke fstatstatic const int ) static const int or the equivalent) on a file in order to determine information such as the file size or access permissions.\n  static const int SQLITE_IOERR_FSTAT = 1802;\n\n  /// The SQLITE_CONSTRAINT_TRIGGER error code is an extended error code for SQLITE_CONSTRAINT indicating that a RAISE function within a trigger fired, causing the SQL statement to abort.\n  static const int SQLITE_CONSTRAINT_TRIGGER = 1811;\n\n  /// The SQLITE_IOERR_UNLOCK error code is an extended error code for SQLITE_IOERR indicating an I/O error within xUnlock method on the sqlite3_io_methods object.\n  static const int SQLITE_IOERR_UNLOCK = 2058;\n\n  /// The SQLITE_CONSTRAINT_UNIQUE error code is an extended error code for SQLITE_CONSTRAINT indicating that a UNIQUE constraint failed.\n  static const int SQLITE_CONSTRAINT_UNIQUE = 2067;\n\n  /// The SQLITE_IOERR_UNLOCK error code is an extended error code for SQLITE_IOERR indicating an I/O error within xLock method on the sqlite3_io_methods object while trying to obtain a read lock.\n  static const int SQLITE_IOERR_RDLOCK = 2314;\n\n  /// The SQLITE_CONSTRAINT_VTAB error code is not currently used by the SQLite core. However, this error code is available for use by application-defined virtual tables.\n  static const int SQLITE_CONSTRAINT_VTAB = 2323;\n\n  /// The SQLITE_IOERR_UNLOCK error code is an extended error code for SQLITE_IOERR indicating an I/O error within xDelete method on the sqlite3_vfs object.\n  static const int SQLITE_IOERR_DELETE = 2570;\n\n  /// The SQLITE_CONSTRAINT_ROWID error code is an extended error code for SQLITE_CONSTRAINT indicating that a rowid is not unique.\n  static const int SQLITE_CONSTRAINT_ROWID = 2579;\n\n  /// The SQLITE_IOERR_BLOCKED error code is no longer used.\n  static const int SQLITE_IOERR_BLOCKED = 2826;\n\n  /// The SQLITE_CONSTRAINT_PINNED error code is an extended error code for SQLITE_CONSTRAINT indicating that an UPDATE trigger attempted do delete the row that was being updated in the middle of the update.\n  static const int SQLITE_CONSTRAINT_PINNED = 2835;\n\n  /// The SQLITE_IOERR_NOMEM error code is sometimes returned by the VFS layer to indicate that an operation could not be completed due to the inability to allocate sufficient memory. This error code is normally converted into SQLITE_NOMEM by the higher layers of SQLite before being returned to the application.\n  static const int SQLITE_IOERR_NOMEM = 3082;\n\n  /// The SQLITE_IOERR_ACCESS error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xAccess method on the sqlite3_vfs object.\n  static const int SQLITE_IOERR_ACCESS = 3338;\n\n  /// The SQLITE_IOERR_CHECKRESERVEDLOCK error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xCheckReservedLock method on the sqlite3_io_methods object.\n  static const int SQLITE_IOERR_CHECKRESERVEDLOCK = 3594;\n\n  /// The SQLITE_IOERR_LOCK error code is an extended error code for SQLITE_IOERR indicating an I/O error in the advisory file locking logic. Usually an SQLITE_IOERR_LOCK error indicates a problem obtaining a PENDING lock. However it can also indicate miscellaneous locking errors on some of the specialized VFSes used on Macs.\n  static const int SQLITE_IOERR_LOCK = 3850;\n\n  /// The SQLITE_IOERR_ACCESS error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xClose method on the sqlite3_io_methods object.\n  static const int SQLITE_IOERR_CLOSE = 4106;\n\n  /// The SQLITE_IOERR_DIR_CLOSE error code is no longer used.\n  static const int SQLITE_IOERR_DIR_CLOSE = 4362;\n\n  /// The SQLITE_IOERR_SHMOPEN error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xShmMap method on the sqlite3_io_methods object while trying to open a new shared memory segment.\n  static const int SQLITE_IOERR_SHMOPEN = 4618;\n\n  /// The SQLITE_IOERR_SHMSIZE error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xShmMap method on the sqlite3_io_methods object while trying to enlarge a \"shm\" file as part of WAL mode transaction processing. This error may indicate that the underlying filesystem volume is out of space.\n  static const int SQLITE_IOERR_SHMSIZE = 4874;\n\n  /// The SQLITE_IOERR_SHMLOCK error code is no longer used.\n  static const int SQLITE_IOERR_SHMLOCK = 5310;\n\n  /// The SQLITE_IOERR_SHMMAP error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xShmMap method on the sqlite3_io_methods object while trying to map a shared memory segment into the process address space.\n  static const int SQLITE_IOERR_SHMMAP = 5386;\n\n  /// The SQLITE_IOERR_SEEK error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xRead or xWrite methods on the sqlite3_io_methods object while trying to seek a file descriptor to the beginning point of the file where the read or write is to occur.\n  static const int SQLITE_IOERR_SEEK = 5642;\n\n  /// The SQLITE_IOERR_DELETE_NOENT error code is an extended error code for SQLITE_IOERR indicating that the xDelete method on the sqlite3_vfs object failed because the file being deleted does not exist.\n  static const int SQLITE_IOERR_DELETE_NOENT = 5898;\n\n  /// The SQLITE_IOERR_MMAP error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xFetch or xUnfetch methods on the sqlite3_io_methods object while trying to map or unmap part of the database file into the process address space.\n  static const int SQLITE_IOERR_MMAP = 6154;\n\n  /// The SQLITE_IOERR_GETTEMPPATH error code is an extended error code for SQLITE_IOERR indicating that the VFS is unable to determine a suitable directory in which to place temporary files.\n  static const int SQLITE_IOERR_GETTEMPPATH = 6410;\n\n  /// The SQLITE_IOERR_CONVPATH error code is an extended error code for SQLITE_IOERR used only by Cygwin VFS and indicating that the cygwin_conv_pathstatic const int ) system call failed. See also: SQLITE_CANTOPEN_CONVPATH\n  static const int SQLITE_IOERR_CONVPATH = 6666;\n\n  /// The SQLITE_IOERR_VNODE error code is a code reserved for use by extensions. It is not used by the SQLite core.\n  static const int SQLITE_IOERR_VNODE = 6922;\n\n  /// The SQLITE_IOERR_AUTH error code is a code reserved for use by extensions. It is not used by the SQLite core.\n  static const int SQLITE_IOERR_AUTH = 7178;\n\n  /// The SQLITE_IOERR_BEGIN_ATOMIC error code indicates that the underlying operating system reported and error on the SQLITE_FCNTL_BEGIN_ATOMIC_WRITE file-control. This only comes up when SQLITE_ENABLE_ATOMIC_WRITE is enabled and the database is hosted on a filesystem that supports atomic writes.\n  static const int SQLITE_IOERR_BEGIN_ATOMIC = 7434;\n\n  /// The SQLITE_IOERR_COMMIT_ATOMIC error code indicates that the underlying operating system reported and error on the SQLITE_FCNTL_COMMIT_ATOMIC_WRITE file-control. This only comes up when SQLITE_ENABLE_ATOMIC_WRITE is enabled and the database is hosted on a filesystem that supports atomic writes.\n  static const int SQLITE_IOERR_COMMIT_ATOMIC = 7690;\n\n  /// The SQLITE_IOERR_ROLLBACK_ATOMIC error code indicates that the underlying operating system reported and error on the SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE file-control. This only comes up when SQLITE_ENABLE_ATOMIC_WRITE is enabled and the database is hosted on a filesystem that supports atomic writes.\n  static const int SQLITE_IOERR_ROLLBACK_ATOMIC = 7946;\n\n  /// The SQLITE_IOERR_DATA error code is an extended error code for SQLITE_IOERR used only by checksum VFS shim to indicate that the checksum on a page of the database file is incorrect.\n  static const int SQLITE_IOERR_DATA = 8202;\n}\n\n/// Flags for file open operations, https://www.sqlite.org/c3ref/c_open_autoproxy.html\n/// Flags For File Open Operations\n///\n/// These bit values are intended for use in the\n/// 3rd parameter to the [sqlite3_open_v2static const int )] interface and\n/// in the 4th parameter to the `xopen` method.\n/// {@category common}\nfinal class SqlFlag {\n  /// Ok for sqlite3_open_v2static const int )\n  static const int SQLITE_OPEN_READONLY = 0x00000001;\n\n  /// Ok for sqlite3_open_v2static const int )\n  static const int SQLITE_OPEN_READWRITE = 0x00000002;\n\n  /// Ok for sqlite3_open_v2static const int )\n  static const int SQLITE_OPEN_CREATE = 0x00000004;\n\n  /// VFS only\n  static const int SQLITE_OPEN_DELETEONCLOSE = 0x00000008;\n\n  /// VFS only\n  static const int SQLITE_OPEN_EXCLUSIVE = 0x00000010;\n\n  /// VFS only\n  static const int SQLITE_OPEN_AUTOPROXY = 0x00000020;\n\n  /// Ok for sqlite3_open_v2static const int )\n  static const int SQLITE_OPEN_URI = 0x00000040;\n\n  /// Ok for sqlite3_open_v2static const int )\n  static const int SQLITE_OPEN_MEMORY = 0x00000080;\n\n  /// VFS only\n  static const int SQLITE_OPEN_MAIN_DB = 0x00000100;\n\n  /// VFS only\n  static const int SQLITE_OPEN_TEMP_DB = 0x00000200;\n\n  /// VFS only\n  static const int SQLITE_OPEN_TRANSIENT_DB = 0x00000400;\n\n  /// VFS only\n  static const int SQLITE_OPEN_MAIN_JOURNAL = 0x00000800;\n\n  /// VFS only\n  static const int SQLITE_OPEN_TEMP_JOURNAL = 0x00001000;\n\n  /// VFS only\n  static const int SQLITE_OPEN_SUBJOURNAL = 0x00002000;\n\n  /// VFS only\n  static const int SQLITE_OPEN_MASTER_JOURNAL = 0x00004000;\n\n  /// Ok for sqlite3_open_v2static const int )\n  static const int SQLITE_OPEN_NOMUTEX = 0x00008000;\n\n  /// Ok for sqlite3_open_v2static const int )\n  static const int SQLITE_OPEN_FULLMUTEX = 0x00010000;\n\n  /// Ok for sqlite3_open_v2static const int )\n  static const int SQLITE_OPEN_SHAREDCACHE = 0x00020000;\n\n  /// Ok for sqlite3_open_v2static const int )\n  static const int SQLITE_OPEN_PRIVATECACHE = 0x00040000;\n\n  /// VFS only\n  static const int SQLITE_OPEN_WAL = 0x00080000;\n}\n\n/// Prepare flags, https://www.sqlite.org/c3ref/c_prepare_normalize.html\n///\n/// {@category common}\nfinal class SqlPrepareFlag {\n  ///The SQLITE_PREPARE_PERSISTENT flag is a hint to the query planner that the prepared statement will be retained for a long time and probably reused many times.\n  /// Without this flag, sqlite3_prepare_v3static const int ) and sqlite3_prepare16_v3static const int ) assume that the prepared statement will be used just once or at most a few times and then destroyed using sqlite3_finalizestatic const int ) relatively soon.\n  ///  The current implementation acts on this hint by avoiding the use of lookaside memory so as not to deplete the limited store of lookaside memory.\n  ///Future versions of SQLite may act on this hint differently.\n  static const int SQLITE_PREPARE_PERSISTENT = 0x01;\n\n  ///The SQLITE_PREPARE_NORMALIZE flag is a no-op. This flag used to be required for any prepared statement that wanted to use the sqlite3_normalized_sqlstatic const int ) interface.\n  /// However, the sqlite3_normalized_sqlstatic const int ) interface is now available to all prepared statements, regardless of whether or not they use this flag.\n  static const int SQLITE_PREPARE_NORMALIZE = 0x02;\n\n  ///the SQL compiler to return an error static const int error code SQLITE_ERROR) if the statement uses any virtual tables\n  static const int SQLITE_PREPARE_NO_VTAB = 0x04;\n}\n\n/// Datatypes, https://sqlite.org/c3ref/c_blob.html\n///\n/// {@category common}\nfinal class SqlType {\n  static const int SQLITE_INTEGER = 1;\n  static const int SQLITE_FLOAT = 2;\n  static const int SQLITE_TEXT = 3;\n  static const int SQLITE_BLOB = 4;\n  static const int SQLITE_NULL = 5;\n}\n\n/// Text Encodings, https://www.sqlite.org/c3ref/c_any.html\n/// These constant define integer codes that represent the various text encodings supported by SQLite.\n///\n/// {@category common}\nfinal class SqlTextEncoding {\n  ///IMP: R-37514-35566\n  static const int SQLITE_UTF8 = 1;\n\n  ///IMP: R-03371-37637\n  static const int SQLITE_UTF16LE = 2;\n\n  ///IMP: R-51971-34154\n  static const int SQLITE_UTF16BE = 3;\n\n  ///Use native byte order\n  static const int SQLITE_UTF16 = 4;\n\n  ///Deprecated\n  static const int SQLITE_ANY = 5;\n\n  ///qlite3_create_collation only\n  static const int SQLITE_UTF16_ALIGNED = 8;\n}\n\n/// File lock levels, https://www.sqlite.org/c3ref/c_lock_exclusive.html\n///\n/// {@category common}\nfinal class SqlFileLockingLevels {\n  static const SQLITE_LOCK_NONE = 0;\n  static const SQLITE_LOCK_SHARED = 1;\n  static const SQLITE_LOCK_RESERVED = 2;\n  static const SQLITE_LOCK_PENDING = 3;\n  static const SQLITE_LOCK_EXCLUSIVE = 4;\n}\n\n/// Special destructors, https://www.sqlite.org/c3ref/c_static.html\n///\n/// {@category common}\nfinal class SqlSpecialDestructor {\n  /// it means that the content pointer is constant and will never change, It does not need to be destroyed\n  static const SQLITE_STATIC = 0;\n\n  ///The SQLITE_TRANSIENT value means that the content will likely change in the near future\n  /// and that SQLite should make its own private copy of the content before returning.\n  static const SQLITE_TRANSIENT = -1;\n}\n\n/// Function flags, https://www.sqlite.org/c3ref/c_deterministic.html\n///\n/// {@category common}\nfinal class SqlFunctionFlag {\n  /// The SQLITE_DETERMINISTIC flag means that the new function always gives the same output when the input parameters are the same\n  static const SQLITE_DETERMINISTIC = 0x000000800;\n\n  ///he SQLITE_DIRECTONLY flags is a security feature which is recommended for all application-defined SQL functions,\n  /// and especially for functions that have side-effects or that could potentially leak sensitive information.\n  static const SQLITE_DIRECTONLY = 0x000080000;\n\n  ///The SQLITE_SUBTYPE flag indicates to SQLite that a function may call sqlite3_value_subtypestatic const int ) to inspect the sub-types of its arguments.\n  static const SQLITE_SUBTYPE = 0x000100000;\n\n  /// The SQLITE_RESULT_SUBTYPE flag indicates to SQLite that a function might call sqlite3_result_subtype to cause a sub-type to be associated with its result.\n  static const SQLITE_RESULT_SUBTYPE = 0x001000000;\n\n  ///The SQLITE_INNOCUOUS flag means that the function is unlikely to cause problems even if misused.\n  static const SQLITE_INNOCUOUS = 0x000200000;\n}\n\nfinal class SqlDeviceCharacteristics {\n  static const SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN = 0x00000800;\n}\n\nconst SQLITE_DELETE = 9;\nconst SQLITE_INSERT = 18;\nconst SQLITE_UPDATE = 23;\n\nfinal bigIntMinValue64 = BigInt.parse('-9223372036854775808');\nfinal bigIntMaxValue64 = BigInt.parse('9223372036854775807');\n\n// Connection config options https://www.sqlite.org/c3ref/c_dbconfig_defensive.html\nconst SQLITE_DBCONFIG_DQS_DML = 1013;\nconst SQLITE_DBCONFIG_DQS_DDL = 1014;\n"
  },
  {
    "path": "sqlite3/lib/src/database.dart",
    "content": "import 'functions.dart';\nimport 'result_set.dart';\nimport 'statement.dart';\nimport 'constants.dart';\n\n/// An opened sqlite3 database.\n///\n/// {@category common}\nabstract class CommonDatabase {\n  /// Configuration for the database connection.\n  ///\n  /// __Note__: On the web, the [DatabaseConfig] class only works when using a\n  /// version of `sqlite3.wasm` shipped with version 2.1.0 of the `sqlite3`\n  /// Dart package. In previous WASM builds, all setters on the config will\n  /// throw an exception.\n  DatabaseConfig get config;\n\n  /// The application defined version of this database.\n  abstract int userVersion;\n\n  /// The row id of the most recent successful insert statement on this database\n  /// connection.\n  ///\n  /// This does not consider `WITHOUT ROWID` tables and won't reliably detect\n  /// inserts made by triggers. For details, see the [sqlite3 docs](https://sqlite.org/c3ref/last_insert_rowid.html).\n  int get lastInsertRowId;\n\n  /// The amount of rows inserted, updated or deleted by the last `INSERT`,\n  /// `UPDATE` or `DELETE` statement, respectively.\n  ///\n  /// For more details, see the [sqlite3 docs](https://sqlite.org/c3ref/changes.html).\n  int get updatedRows;\n\n  /// The amount of rows affected by the last `INSERT`, `UPDATE` or `DELETE`\n  /// statement.\n  @Deprecated('Use updatedRows instead')\n  int getUpdatedRows();\n\n  /// An async stream of data changes happening on this database.\n  ///\n  /// Listening to this stream will register an \"update hook\" on the native\n  /// database. Each update that sqlite3 reports through that hook will then\n  /// be added to the stream.\n  ///\n  /// Note that the stream reports updates _asynchronously_, e.g. one event\n  /// loop iteration after sqlite reports them.\n  /// Also, be aware that not every update to the database will be reported.\n  /// In particular, updates to internal system tables like `sqlite_sequence`\n  /// are not reported. Further, updates to `WITHOUT ROWID` tables or truncating\n  /// deletes (without a `WHERE` clause) will not report updates either.\n  ///\n  /// See also:\n  ///  - [Data Change Notification Callbacks](https://www.sqlite.org/c3ref/update_hook.html)\n  ///  - [updatesSync], a synchronous stream.\n  Stream<SqliteUpdate> get updates;\n\n  /// A _synchronous_ stream of data changes happening on this database.\n  ///\n  /// This stream behaves similarly to [updates], except that listeners are\n  /// invoked synchronously (before the update completes).\n  ///\n  /// The purpose of this stream is to avoid a large internal buffer when a\n  /// transaction updates a large amount of rows - instead, the updates can be\n  /// handled one-by-one with this.\n  ///\n  /// It is crucial that listeners on this stream don't modify the database.\n  Stream<SqliteUpdate> get updatesSync;\n\n  /// The [VoidPredicate] that is used to filter out transactions before commiting.\n  ///\n  /// This is run before every commit, i.e. before the end of an explicit\n  /// transaction and before the end of an implicit transactions created by\n  /// an insert / update / delete operation.\n  ///\n  /// If the filter returns `false`, the commit is converted into a rollback.\n  ///\n  /// The function should not do anything that modifies the database connection,\n  /// e.g. run SQL statements, prepare statements or step.\n  ///\n  /// See also:\n  ///   - [Commit Hooks](https://www.sqlite.org/c3ref/commit_hook.html)\n  VoidPredicate? get commitFilter;\n  set commitFilter(VoidPredicate? commitFilter);\n\n  /// An async stream that fires after each commit.\n  ///\n  /// Listening to this stream will register a \"commit hook\" on the native\n  /// database. Each commit that sqlite3 reports through that hook will then\n  /// be added to the stream.\n  ///\n  /// Note that the stream reports updates _asynchronously_, e.g. one event\n  /// loop iteration after sqlite reports them.\n  ///\n  /// Also note this works in conjunction with `commitFilter`. If the filter\n  /// function is not null and returns `false`, the commit will not occur and\n  /// this stream will not fire.\n  ///\n  /// See also:\n  ///   - [Commit Hooks](https://www.sqlite.org/c3ref/commit_hook.html)\n  Stream<void> get commits;\n\n  /// An async stream that fires after each rollback.\n  ///\n  /// Listening to this stream will register a \"rollback hook\" on the native\n  /// database. Each rollback that sqlite3 reports through that hook will then\n  /// be added to the stream.\n  ///\n  /// Note that the stream reports updates _asynchronously_, e.g. one event\n  /// loop iteration after sqlite reports them.\n  ///\n  /// See also:\n  ///   - [Commit Hooks](https://www.sqlite.org/c3ref/commit_hook.html)\n  Stream<void> get rollbacks;\n\n  /// Executes the [sql] statement(s) with the provided [parameters], ignoring\n  /// any rows returned by the statement(s).\n  ///\n  /// For the types supported in [parameters], see [StatementParameters].\n  /// To view rows returned by a statement, run it with [select]. Statements\n  /// that aren't `SELECT`s in SQL but still return rows (such as updates with\n  /// a `RETURNING` clause) can still be safely executed with [select].\n  ///\n  /// When no [parameters] are passed to [execute], [sql] is allowed to contain\n  /// multiple SQL statements (separated by a semicolon). Those statements will\n  /// be executed in order, but [execute] will not start a transaction for them\n  /// automatically. If any statement fails, that exception will be thrown and\n  /// subsequent statements will not be executed.\n  void execute(String sql, [List<Object?> parameters = const []]);\n\n  /// Prepares the [sql] statement and runs it with the provided [parameters],\n  /// returning all rows returned by the statement.\n  ///\n  /// For the types supported in [parameters], see [StatementParameters].\n  /// The statement doesn't have to be an SQL `SELECT` statement. Any statement\n  /// that returns rows (e.g. writes with a `RETURNING` clause) can be executed\n  /// with [select].\n  ///\n  /// This method fully runs the statement, buffers all rows and then returns\n  /// them at once in a [ResultSet]. This package also supports stepping through\n  /// a result set row-by-row. To do that, first prepare the statement with\n  /// [prepare] and then call [CommonPreparedStatement.iterateWith].\n  ResultSet select(String sql, [List<Object?> parameters = const []]);\n\n  /// Compiles the [sql] statement to execute it later.\n  ///\n  /// The [persistent] flag can be used as a hint to the query planner that the\n  /// statement will be retained for a long time and probably reused many times.\n  /// Without this flag, sqlite assumes that the prepared statement will be used\n  /// just once or at most a few times before [CommonPreparedStatement.close]\n  /// is called.\n  /// If [vtab] is disabled (it defaults to `true`) and the statement references\n  /// a virtual table, [prepare] throws an exception.\n  /// For more information on the optional parameters, see\n  /// [the sqlite documentation](https://www.sqlite.org/c3ref/c_prepare_normalize.html)\n  /// If [checkNoTail] is enabled (it defaults to `false`) and the [sql] string\n  /// contains trailing data, an exception will be thrown and the statement will\n  /// not be executed.\n  CommonPreparedStatement prepare(\n    String sql, {\n    bool persistent = false,\n    bool vtab = true,\n    bool checkNoTail = false,\n  });\n\n  /// Compiles multiple statements from [sql] to be executed later.\n  ///\n  /// Unlike [prepare], which can only compile a single statement,\n  /// [prepareMultiple] will return multiple statements if the source [sql]\n  /// string contains more than one statement.\n  /// For example, calling [prepareMultiple] with `SELECT 1; SELECT 2;` will\n  /// return `2` prepared statements.\n  ///\n  /// For the [persistent] and [vtab] parameters, see [prepare].\n  List<CommonPreparedStatement> prepareMultiple(\n    String sql, {\n    bool persistent = false,\n    bool vtab = true,\n  });\n\n  /// Creates a collation that can be used from sql queries sent against\n  /// this database.\n  ///\n  /// The [name] defines the (case insensitive) name of the collating in\n  /// sql. The utf8 encoding of [name] must not exceed a length of 255\n  /// bytes.\n  ///\n  /// The [function] can be any Dart closure, it's not restricted to top-level\n  /// functions supported by `Pointer.fromFunction`. For more details on how\n  /// the sql function behaves, see the documentation on [CollatingFunction].\n  /// As it is a compare function, the [function] must return an integer value, and\n  /// receives two string parameters (**A** & **B**). [function] will return 0\n  /// if **A** and **B**\n  /// are considered equals. A negative value is returned if **A** is less than **B**,\n  /// but a positive if **A** is greater than **B**.\n  ///\n  ///\n  ///\n  /// For more information, see https://www.sqlite.org/c3ref/create_collation.html.\n  void createCollation({\n    required String name,\n    required CollatingFunction function,\n  });\n\n  /// Creates a scalar function that can be called from sql queries sent against\n  /// this database.\n  ///\n  /// The [functionName] defines the (case insensitive) name of the function in\n  /// sql. The utf8 encoding of [functionName] must not exceed a length of 255\n  /// bytes.\n  ///\n  /// {@template sqlite3_function_flags}\n  /// The [argumentCount] parameter can be used to declare how many arguments a\n  /// function supports. If you need a function that can use multiple argument\n  /// counts, you can call [createFunction] multiple times.\n  /// The [deterministic] flag (defaults to `false`) can be set to indicate that\n  /// the function always gives the same output when the input parameters are\n  /// the same. This is a requirement for functions that are used in generated\n  /// columns or partial indexes. It also allows the query planner for optimize\n  /// by factoring invocations out of inner loops.\n  /// The [directOnly] flag (defaults to `true`) is a security measure. When\n  /// enabled, the function may only be invoked form top-level SQL, and cannot\n  /// be used in VIEWs or TRIGGERs nor in schema structures (such as CHECK,\n  /// DEFAULT, etc.). When [directOnly] is set to `false`, the function might\n  /// be invoked when opening a malicious database file. sqlite3 recommends\n  /// this flag for all application-defined functions, especially if they have\n  /// side-effects or if they could potentially leak sensitive information.\n  ///\n  /// The [subtype] flag (defaults to `false`) indicates that the function can\n  /// receive subtypes in arguments (meaning that [SqliteArguments.subtypeOf]\n  /// can be used) and that the function can return values with subtypes (by\n  /// returning an [SubtypedValue]).\n  /// {@endtemplate}\n  ///\n  /// The [function] can be any Dart closure, it's not restricted to top-level\n  /// functions supported by `Pointer.fromFunction`. For more details on how\n  /// the sql function behaves, see the documentation on [ScalarFunction].\n  ///\n  /// To register aggregate or window functions, see [createAggregateFunction].\n  ///\n  /// For more information, see https://www.sqlite.org/appfunc.html.\n  void createFunction({\n    required String functionName,\n    required ScalarFunction function,\n    AllowedArgumentCount argumentCount = const AllowedArgumentCount.any(),\n    bool deterministic = false,\n    bool directOnly = true,\n    bool subtype = false,\n  });\n\n  /// Creates an application-defined aggregate function that can be used from\n  /// sql queries sent against this database.\n  ///\n  /// {@macro sqlite3_function_flags}\n  ///\n  /// For more details on how to write aggregate functions (including an\n  /// example), see the documentation of [AggregateFunction].\n  ///\n  /// If the given [function] implements the [WindowFunction] interface, a\n  /// window function is registered internally. Window functions support being\n  /// used in `OVER` expressions in sqlite3. For more information on writing\n  /// window functions in Dart, see the [WindowFunction] class. For details\n  /// on user-defined window functions in general, see sqlite3's documentation:\n  /// https://www.sqlite.org/windowfunctions.html#udfwinfunc\n  void createAggregateFunction<V>({\n    required String functionName,\n    required AggregateFunction<V> function,\n    AllowedArgumentCount argumentCount = const AllowedArgumentCount.any(),\n    bool deterministic = false,\n    bool directOnly = true,\n    bool subtype = false,\n  });\n\n  /// Installs a function to invoke whenever an attempt is made to access a\n  /// database table when another thread or process has the table locked.\n  ///\n  /// The argument passed to the [handler] is the amount of times it has\n  /// previously been invoked for the same locking event.\n  /// The handler should return `true` if SQLite should make another attempt to\n  /// access the database, or `false` if SQLite should stop making attempts and\n  /// return `SQLITE_BUSY`.\n  ///\n  /// Note that using the `busy_timeout` pragma will overwrite this handler.\n  ///\n  /// See also: https://www.sqlite.org/c3ref/busy_handler.html\n  set busyHandler(bool Function(int count)? handler);\n\n  /// Checks whether the connection is in autocommit mode. The connection is in\n  /// autocommit by default, except when inside a transaction.\n  ///\n  /// For details, see https://www.sqlite.org/c3ref/get_autocommit.html\n  bool get autocommit;\n\n  /// Closes this database and releases associated resources.\n  @Deprecated('Call close() instead')\n  void dispose();\n\n  /// Closes this database and releases associated resources.\n  ///\n  /// On native platforms, a native finalizer will also close the connection\n  /// automatically. On the web, finalizers are less reliable. For this reason,\n  /// closing databases explicitly is still recommended.\n  void close();\n}\n\n/// The kind of an [SqliteUpdate] received through a [CommonDatabase.updates]\n/// stream.\n///\n/// {@category common}\nenum SqliteUpdateKind {\n  // Note: Changing the order of these fields is a breaking change, as they're\n  // used in the sqlite3_web protocol.\n\n  /// Notification for a new row being inserted into the database.\n  insert(SQLITE_INSERT),\n\n  /// Notification for a row being updated.\n  update(SQLITE_UPDATE),\n\n  /// Notification for a row being deleted.\n  delete(SQLITE_DELETE);\n\n  /// The raw code to identify this update kind.\n  final int code;\n\n  const SqliteUpdateKind(this.code);\n\n  /// Attempts to extract a [SqliteUpdateKind] from the raw [flags].\n  static SqliteUpdateKind? fromCode(int code) {\n    return switch (code) {\n      SQLITE_INSERT => insert,\n      SQLITE_UPDATE => update,\n      SQLITE_DELETE => delete,\n      _ => null,\n    };\n  }\n}\n\n/// A data change notification from sqlite.\n///\n/// {@category common}\nfinal class SqliteUpdate {\n  /// The kind of write being reported.\n  final SqliteUpdateKind kind;\n\n  /// The table on which the update has happened.\n  final String tableName;\n\n  /// The id of the inserted, modified or deleted row.\n  final int rowId;\n\n  SqliteUpdate(this.kind, this.tableName, this.rowId);\n\n  @override\n  int get hashCode => Object.hash(kind, tableName, rowId);\n\n  @override\n  bool operator ==(Object other) {\n    return other is SqliteUpdate &&\n        other.kind == kind &&\n        other.tableName == tableName &&\n        other.rowId == rowId;\n  }\n\n  @override\n  String toString() {\n    return 'SqliteUpdate: $kind on $tableName, rowid = $rowId';\n  }\n}\n\n/// Make configuration changes to the database connection.\n///\n/// More information: https://www.sqlite.org/c3ref/db_config.html\n/// Available options are documented in https://www.sqlite.org/c3ref/c_dbconfig_defensive.html\n///\n/// {@category common}\nabstract base class DatabaseConfig {\n  /// Update configuration that accepts an int value.\n  /// Would throw when the internal C call returns a non-zero value.\n  void setIntConfig(int key, int configValue);\n\n  /// Enable or disable SQLite support for double quotes as string literals.\n  ///\n  /// More information: https://www.sqlite.org/compile.html#dqs\n  set doubleQuotedStringLiterals(bool value) {\n    final dqsValue = value ? 1 : 0;\n    setIntConfig(SQLITE_DBCONFIG_DQS_DML, dqsValue);\n    setIntConfig(SQLITE_DBCONFIG_DQS_DDL, dqsValue);\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/exception.dart",
    "content": "import 'dart:typed_data';\n\n/// Thrown by sqlite methods.\n///\n/// This is the only exception thrown by `package:sqlite3`. Additionally, errors\n/// might be thrown on api misuse.\n///\n/// {@category common}\nfinal class SqliteException implements Exception {\n  /// An error message indicating what went wrong.\n  final String message;\n\n  /// An optional explanation providing more detail on what went wrong.\n  final String? explanation;\n\n  /// SQLite extended result code.\n  ///\n  /// As defined in https://sqlite.org/rescode.html, it represents an error\n  /// code, providing some idea of the cause of the failure.\n  final int extendedResultCode;\n\n  /// SQLite primary result code.\n  ///\n  /// As defined in https://sqlite.org/rescode.html, it represents an error\n  /// code, providing some idea of the cause of the failure.\n  int get resultCode => extendedResultCode & 0xFF;\n\n  /// If this error is related to a syntex error in SQL, contains the byte\n  /// offset of the token associated with the error.\n  final int? offset;\n\n  /// An informal description of what the `sqlite3` package was attempting to do\n  /// when the exception occured, e.g. \"preparing a statement\",\n  /// \"opening the database\".\n  final String? operation;\n\n  /// The SQL statement triggering this exception.\n  ///\n  /// This may be null when no prior statement is known.\n  final String? causingStatement;\n\n  /// If this exception has a [causingStatement], this list contains the\n  /// parameters used to run that statement.\n  final List<Object?>? parametersToStatement;\n\n  SqliteException({\n    required this.extendedResultCode,\n    required this.message,\n    this.explanation,\n    this.causingStatement,\n    this.parametersToStatement,\n    this.operation,\n    this.offset,\n  });\n\n  @override\n  String toString() {\n    final buffer = StringBuffer('SqliteException(')\n      ..write(extendedResultCode)\n      ..write('): ')\n      ..write(operation == null ? '' : 'while $operation, ')\n      ..write(message);\n\n    if (explanation != null) {\n      buffer\n        ..write(', ')\n        ..write(explanation);\n    }\n\n    if (causingStatement != null) {\n      buffer\n        ..writeln()\n        ..write('  Causing statement')\n        ..write(offset != null ? ' (at position $offset): ' : ': ')\n        ..write(causingStatement);\n\n      if (parametersToStatement != null) {\n        final params = parametersToStatement!\n            .map((e) {\n              if (e is Uint8List) {\n                return 'blob (${e.length} bytes)';\n              } else {\n                return e.toString();\n              }\n            })\n            .join(', ');\n        buffer.write(', parameters: $params');\n      }\n    }\n\n    return buffer.toString();\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/ffi/api.dart",
    "content": "import 'dart:ffi';\n\nimport '../database.dart';\nimport '../sqlite3.dart';\nimport '../statement.dart';\nimport 'libsqlite3.g.dart' as libsqlite3;\nimport 'implementation.dart';\n\n/// Provides access to `sqlite3` functions, such as opening new databases.\n///\n/// {@category native}\nconst Sqlite3 sqlite3 = FfiSqlite3();\n\n/// Provides access to `sqlite3` functions, such as opening new databases.\n///\n/// {@category native}\nabstract interface class Sqlite3 implements CommonSqlite3 {\n  @override\n  Database open(\n    String filename, {\n    String? vfs,\n    OpenMode mode = OpenMode.readWriteCreate,\n    bool uri = false,\n    bool? mutex,\n  });\n\n  /// Creates a [Database] from an opened sqlite3 database connection.\n  ///\n  /// The [database] must be a pointer towards an open sqlite3 database\n  /// connection [handle](https://www.sqlite.org/c3ref/sqlite3.html).\n  ///\n  /// When [borrowed] is set (it defaults to `false`), the returned [Database]\n  /// connection acts as a view of the underlying `sqlite3*` pointer. The\n  /// library will not attach a native finalizer calling `sqlite3_close_v2`, and\n  /// calling [Database.close] in it will only prevent further interactions from\n  /// Dart.\n  Database fromPointer(Pointer<void> database, {bool borrowed = false});\n\n  @override\n  Database openInMemory({String? vfs});\n\n  /// Opens a new in-memory database and copies another database into it\n  /// https://www.sqlite.org/c3ref/backup_finish.html\n  Database copyIntoMemory(Database restoreFrom);\n\n  /// Loads an extensions through the `sqlite3_auto_extension` mechanism.\n  ///\n  /// For a more in-depth discussion, including links to an example, see the\n  /// documentation for [SqliteExtension].\n  void ensureExtensionLoaded(SqliteExtension extension);\n\n  /// Whether the option, specified by its name, was defined at compile-time.\n  ///\n  /// The `SQLITE_` prefix may be omitted from the option [name].\n  ///\n  /// See also: https://sqlite.org/c3ref/compileoption_get.html\n  bool usedCompileOption(String name);\n\n  /// An iterable over the list of options that were defined at compile time.\n  ///\n  /// See also: https://sqlite.org/c3ref/compileoption_get.html\n  Iterable<String> get compileOptions;\n\n  /// A function pointer to `sqlite3_close_v2`.\n  ///\n  /// This typically shouldn't be used directly since this library attaches\n  /// native finalizers to databases by default, but can be used for custom\n  /// connection management if necessary.\n  ///\n  /// See also: https://sqlite.org/c3ref/close.html\n  @Deprecated(\"Import 'package:sqlite3/unstable/ffi_bindings.dart' instead\")\n  static Pointer<NativeFunction<Int Function(Pointer<Void>)>>\n  get sqliteCloseV2 => libsqlite3.addresses.sqlite3_close_v2.cast();\n}\n\n/// Information used to load an extension through `sqlite3_auto_extension`,\n/// exposed by [Sqlite3.ensureExtensionLoaded].\n///\n/// Note that this feature is __not__ a direct wrapper around sqlite3's dynamic\n/// extension loading mechanism. In sqlite3 builds created through\n/// `sqlite3_flutter_libs`, dynamic extensions are omitted from sqlite3 due to\n/// security concerns.\n///\n/// However, if you want to manually load extensions, you can do that with a\n/// [SqliteExtension] where the entrypoint is already known. This puts the\n/// responsibility of dynamically loading code onto you.\n///\n/// For an example of how to write and load extensions, see\n///  - this C file: https://github.com/simolus3/sqlite3.dart/blob/main/sqlite3/test/ffi/test_extension.c\n///  - this Dart test loading it: https://github.com/simolus3/sqlite3.dart/blob/a9a379494c6b8d58a3c31cf04fe16e83b49130f1/sqlite3/test/ffi/sqlite3_test.dart#L35\n///  - Or, alternatively, this Flutter example: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3/example/custom_extension\n///\n/// {@category native}\nabstract interface class SqliteExtension {\n  /// A sqlite extension having the given [extensionEntrypoint] as a function\n  /// pointer.\n  ///\n  /// For the exact signature of [extensionEntrypoint], see\n  /// [sqlite3_auto_extension](https://www.sqlite.org/c3ref/auto_extension.html).\n  factory SqliteExtension(Pointer<Void> extensionEntrypoint) {\n    return SqliteExtensionImpl(() => extensionEntrypoint);\n  }\n\n  /// A sqlite extension from another library with a given symbol as an\n  /// entrypoint.\n  factory SqliteExtension.inLibrary(DynamicLibrary library, String symbol) {\n    return SqliteExtensionImpl(() => library.lookup(symbol));\n  }\n}\n\n/// An opened sqlite3 database with `dart:ffi`.\n///\n/// See [CommonDatabase] for the methods that are available on both the FFI and\n/// the WebAssembly implementation.\n///\n/// {@category native}\nabstract class Database extends CommonDatabase {\n  /// The native database connection handle from sqlite.\n  ///\n  /// This returns a pointer towards the opaque sqlite3 structure as defined\n  /// [here](https://www.sqlite.org/c3ref/sqlite3.html).\n  ///\n  /// Note that the connection is still owned by this Dart object, and will be\n  /// closed once it becomes unreachable. In other words, the returned handle is\n  /// a logical reference to this object.\n  /// To transfer ownership of the connection out of this object, use [leak]\n  /// instead.\n  Pointer<void> get handle;\n\n  /// Like [handle], this returns the native `sqlite3*` pointer wrapped by this\n  /// instance.\n  ///\n  /// Additionally, this also detaches native finalizers that would close the\n  /// connection once this object becomes unreachable.\n  ///\n  /// This is an advanced and low-level API that can be used to transfer\n  /// ownership of connections originally opened in Dart to native code.\n  Pointer<void> leak();\n\n  // override for more specific subtype\n  @override\n  PreparedStatement prepare(\n    String sql, {\n    bool persistent = false,\n    bool vtab = true,\n    bool checkNoTail = false,\n  });\n\n  @override\n  List<PreparedStatement> prepareMultiple(\n    String sql, {\n    bool persistent = false,\n    bool vtab = true,\n  });\n\n  /// Creates a Dart [PreparedStatement] instance from the underlying\n  /// `sqlite3_stmt` pointer.\n  ///\n  /// When [borrowed] is set (it defaults to `false`), the returned [Database]\n  /// connection acts as a view of the underlying `sqlite3_stmt*` pointer. The\n  /// library will not attach a native finalizer calling `sqlite3_finalize`, and\n  /// calling [PreparedStatement.close] in it will only prevent further\n  /// interactions from Dart.\n  PreparedStatement statementFromPointer({\n    required Pointer<void> statement,\n    required String sql,\n    bool borrowed = false,\n  });\n\n  /// Create a backup of the current database (this) into another database\n  /// ([toDatabase]) on memory or disk.\n  ///\n  /// The returned stream returns a rough estimate on the progress of the\n  /// backup, as a fraction between `0` and `1`. No progress is reported if\n  /// either this or [toDatabase] is an in-memory database.\n  ///\n  /// To simply await the backup operation as a future, call [Stream.drain] on\n  /// the returned stream.\n  ///\n  /// [nPage] is the number of pages backed-up in each backup step.\n  /// A larger value increase speed of backup, but will cause other connections to wait\n  /// longer to aquire locks on the source and destination databases.  A value of -1\n  /// can be used to backup the entire database in a single step.\n  /// See https://www.sqlite.org/c3ref/backup_finish.html#sqlite3backupstep for details.\n  ///\n  /// See https://www.sqlite.org/c3ref/backup_finish.html\n  Stream<double> backup(Database toDatabase, {int nPage = 5});\n}\n\n/// A prepared statement.\n///\n/// {@category native}\nabstract class PreparedStatement implements CommonPreparedStatement {\n  /// The underlying `sqlite3_stmt` pointer.\n  ///\n  /// Obtains the raw [statement](https://www.sqlite.org/c3ref/stmt.html) from\n  /// the sqlite3 C-api that this [PreparedStatement] wraps.\n  ///\n  /// Note that the statement is still owned by this Dart object, and will be\n  /// finalized once it becomes unreachable. In other words, the returned handle\n  /// is a logical reference to this object.\n  /// To transfer ownership of the statement out of this object, use [leak]\n  /// instead.\n  Pointer<void> get handle;\n\n  /// Like [handle], this returns the native `sqlite3_stmt*` pointer wrapped by\n  /// this instance.\n  ///\n  /// Additionally, this also detaches native finalizers that would close the\n  /// statement once this object becomes unreachable.\n  ///\n  /// This is an advanced and low-level API that can be used to transfer\n  /// ownership of statements originally opened in Dart to native code.\n  Pointer<void> leak();\n}\n"
  },
  {
    "path": "sqlite3/lib/src/ffi/bindings.dart",
    "content": "// ignore_for_file: non_constant_identifier_names\n\nimport 'dart:collection';\nimport 'dart:convert';\nimport 'dart:ffi';\nimport 'dart:typed_data';\n\nimport 'package:ffi/ffi.dart' as ffi;\n\nimport '../constants.dart';\nimport '../exception.dart';\nimport '../functions.dart';\nimport '../implementation/bindings.dart';\nimport '../implementation/exception.dart';\nimport '../vfs.dart';\nimport 'libsqlite3.g.dart';\nimport 'libsqlite3.g.dart' as libsqlite3;\nimport 'memory.dart';\n\n/// The only instance of [FfiBindings].\n///\n/// Since bindings are using native assets, these bindings don't hold any state\n/// (unlike the WASM bindings, which require a `WebAssembly.Module` reference).\nconst ffiBindings = FfiBindings._();\n\n// sqlite3_prepare_v3 was added in 3.20.0\nconst int _firstVersionForV3 = 3020000;\n\n// sqlite3_error_offset was added in 3.38.0\nconst int _firstVersionForErrorOffset = 3038000;\n\nfinal supportsPrepareV3 = sqlite3_libversion_number() >= _firstVersionForV3;\nfinal supportsErrorOffset =\n    sqlite3_libversion_number() >= _firstVersionForErrorOffset;\n\nfinal databaseFinalizer = NativeFinalizer(addresses.sqlite3_close_v2.cast());\nfinal statementFinalizer = NativeFinalizer(addresses.sqlite3_finalize.cast());\n\nfinal sessionDeleteFinalizer = NativeFinalizer(\n  addresses.sqlite3session_delete.cast(),\n);\nfinal changesetFinalizeFinalizer = NativeFinalizer(\n  addresses.sqlite3changeset_finalize.cast(),\n);\nfinal hasColumnMetadata =\n    ffiBindings.sqlite3_compileoption_used('ENABLE_COLUMN_METADATA') != 0;\n\nfinal _vfsPointers = Expando<_RegisteredVfs>();\n\nPointer<sqlite3_char> _globalTempDirectory = nullPtr();\n\nfinal class FfiBindings implements RawSqliteBindings {\n  const FfiBindings._();\n\n  @override\n  RawSqliteSession sqlite3session_create(RawSqliteDatabase db, String name) {\n    final dbImpl = db as FfiDatabase;\n    final namePtr = Utf8Utils.allocateZeroTerminated(name);\n    final sessionPtr = allocate<Pointer<sqlite3_session>>();\n    final result = libsqlite3.sqlite3session_create(\n      dbImpl.db,\n      namePtr,\n      sessionPtr,\n    );\n    namePtr.free();\n    final sessionValue = sessionPtr.value;\n    sessionPtr.free();\n\n    if (result != 0) {\n      throw createExceptionOutsideOfDatabase(this, result);\n    }\n\n    return FfiSession(sessionValue);\n  }\n\n  @override\n  int sqlite3changeset_apply(\n    RawSqliteDatabase database,\n    Uint8List changeset,\n    int Function(String tableName)? filter,\n    int Function(int eConflict, RawChangesetIterator iter) conflict,\n  ) {\n    final dbImpl = database as FfiDatabase;\n    final changesetPtr = allocateBytes(changeset);\n    final ctxPtr = dbImpl.db.cast<Void>();\n\n    final NativeCallable<Int Function(Pointer<Void>, Pointer<Char>)>?\n    filterImpl = filter == null\n        ? null\n        : (NativeCallable.isolateLocal((Pointer<Void> ctx, Pointer<Char> zTab) {\n            final tbl = zTab.cast<sqlite3_char>().readString();\n            return filter(tbl);\n          }, exceptionalReturn: 1)..keepIsolateAlive = true);\n\n    final NativeCallable<\n      Int Function(Pointer<Void>, Int, Pointer<sqlite3_changeset_iter>)\n    >\n    conflictImpl = (NativeCallable.isolateLocal((\n      Pointer<Void> ctx,\n      int eConflict,\n      Pointer<sqlite3_changeset_iter> p,\n    ) {\n      final iter = FfiChangesetIterator(p, ownsIterator: false);\n      return conflict(eConflict, iter);\n    }, exceptionalReturn: 1)..keepIsolateAlive = true);\n\n    final result = libsqlite3.sqlite3changeset_apply(\n      dbImpl.db,\n      changeset.length,\n      changesetPtr.cast(),\n      filterImpl?.nativeFunction ?? nullPtr(),\n      conflictImpl.nativeFunction,\n      ctxPtr,\n    );\n    changesetPtr.free();\n    filterImpl?.close();\n    conflictImpl.close();\n\n    return result;\n  }\n\n  @override\n  RawChangesetIterator sqlite3changeset_start(Uint8List changeset) {\n    final (asPtr, region) = allocateBytesWithFinalizer(changeset);\n    final iteratorOut = allocate<Pointer<sqlite3_changeset_iter>>();\n\n    final result = libsqlite3.sqlite3changeset_start(\n      iteratorOut,\n      changeset.length,\n      asPtr.cast(),\n    );\n    final iterator = iteratorOut.value;\n    iteratorOut.free();\n\n    if (result != SqlError.SQLITE_OK) {\n      asPtr.free();\n      throw createExceptionOutsideOfDatabase(this, result);\n    }\n\n    return FfiChangesetIterator(\n      iterator,\n      ownsIterator: true,\n      ownedChangesetBytes: region,\n    );\n  }\n\n  @override\n  Uint8List sqlite3changeset_invert(Uint8List changeset) {\n    final sessionPtr = allocateBytes(changeset).cast<Void>();\n    final outSize = allocate<Int>();\n    final outChangeset = allocate<Pointer<Void>>();\n\n    try {\n      final result = libsqlite3.sqlite3changeset_invert(\n        changeset.length,\n        sessionPtr,\n        outSize,\n        outChangeset,\n      );\n\n      if (result != SqlError.SQLITE_OK) {\n        throw createExceptionOutsideOfDatabase(this, result);\n      }\n\n      final size = outSize.value;\n      final inverted = outChangeset.value.cast<Uint8>().asTypedList(\n        size,\n        finalizer: libsqlite3.addresses.sqlite3_free.cast(),\n      );\n      return inverted;\n    } finally {\n      sessionPtr.free();\n      outSize.free();\n      outChangeset.free();\n    }\n  }\n\n  @override\n  String? get sqlite3_temp_directory {\n    return libsqlite3.sqlite3_temp_directory.readNullableString();\n  }\n\n  @override\n  set sqlite3_temp_directory(String? value) {\n    final newPtr = value != null\n        ? Utf8Utils.allocateZeroTerminated(value)\n        : nullPtr<sqlite3_char>();\n\n    if (!_globalTempDirectory.isNullPointer && _globalTempDirectory != newPtr) {\n      // The previous value was set in Dart too, free that now to avoid leaking\n      // memory. There's still a possibility for leaks if sqlite3_temp_directory\n      // is called in different isolates, but we can't safely avoid that.\n      allocate.free(_globalTempDirectory);\n    }\n\n    _globalTempDirectory = newPtr;\n    libsqlite3.sqlite3_temp_directory = newPtr;\n  }\n\n  @override\n  int sqlite3_initialize() {\n    return libsqlite3.sqlite3_initialize();\n  }\n\n  @override\n  String sqlite3_errstr(int extendedErrorCode) {\n    return libsqlite3.sqlite3_errstr(extendedErrorCode).readString();\n  }\n\n  @override\n  String sqlite3_libversion() {\n    return libsqlite3.sqlite3_libversion().readString();\n  }\n\n  @override\n  int sqlite3_libversion_number() {\n    return libsqlite3.sqlite3_libversion_number();\n  }\n\n  @override\n  SqliteResult<RawSqliteDatabase> sqlite3_open_v2(\n    String name,\n    int flags,\n    String? zVfs,\n  ) {\n    final namePtr = Utf8Utils.allocateZeroTerminated(name);\n    final outDb = allocate<Pointer<sqlite3>>();\n    final vfsPtr = zVfs == null\n        ? nullPtr<sqlite3_char>()\n        : Utf8Utils.allocateZeroTerminated(zVfs);\n\n    final resultCode = libsqlite3.sqlite3_open_v2(\n      namePtr,\n      outDb,\n      flags,\n      vfsPtr,\n    );\n    final result = (\n      resultCode: resultCode,\n      result: outDb.value.isNullPointer\n          ? null\n          : FfiDatabase(outDb.value, borrowed: false),\n    );\n\n    namePtr.free();\n    outDb.free();\n    if (zVfs != null) vfsPtr.free();\n\n    return result;\n  }\n\n  @override\n  String sqlite3_sourceid() {\n    return libsqlite3.sqlite3_sourceid().readString();\n  }\n\n  @override\n  void registerVirtualFileSystem(VirtualFileSystem vfs, int makeDefault) {\n    final ptr = _RegisteredVfs.allocate(vfs);\n    final result = libsqlite3.sqlite3_vfs_register(ptr._vfsPtr, makeDefault);\n    if (result != SqlError.SQLITE_OK) {\n      ptr.deallocate();\n      throw SqliteException(\n        extendedResultCode: result,\n        message: 'Could not register VFS',\n      );\n    }\n\n    _vfsPointers[vfs] = ptr;\n  }\n\n  @override\n  void unregisterVirtualFileSystem(VirtualFileSystem vfs) {\n    final ptr = _vfsPointers[vfs];\n    if (ptr == null) {\n      throw StateError('vfs has not been registered');\n    }\n\n    final result = libsqlite3.sqlite3_vfs_unregister(ptr._vfsPtr);\n    if (result != SqlError.SQLITE_OK) {\n      throw SqliteException(\n        extendedResultCode: result,\n        message: 'Could not unregister VFS',\n      );\n    }\n\n    ptr.deallocate();\n  }\n\n  String? sqlite3_compileoption_get(int n) {\n    final ptr = libsqlite3.sqlite3_compileoption_get(n);\n    return ptr.readNullableString();\n  }\n\n  int sqlite3_compileoption_used(String optName) {\n    final namePtr = Utf8Utils.allocateZeroTerminated(optName);\n    final result = libsqlite3.sqlite3_compileoption_used(namePtr);\n    namePtr.free();\n\n    return result;\n  }\n}\n\nfinal class _RegisteredVfs {\n  static final Map<int, VirtualFileSystemFile> _files = {};\n  static final Map<int, VirtualFileSystem> _vfs = {};\n\n  static int _vfsCounter = 0;\n  static int _fileCounter = 0;\n\n  final Pointer<sqlite3_vfs> _vfsPtr;\n  final Pointer<Char> _name;\n\n  _RegisteredVfs(this._vfsPtr, this._name);\n\n  factory _RegisteredVfs.allocate(VirtualFileSystem dartVfs) {\n    final name = Utf8Utils.allocateZeroTerminated(dartVfs.name).cast<Char>();\n    final id = _vfsCounter++;\n\n    final vfs = ffi.calloc<sqlite3_vfs>();\n    vfs.ref\n      ..iVersion =\n          2 // We don't support syscalls yet\n      ..szOsFile = sizeOf<_DartFile>()\n      ..mxPathname = 1024\n      ..zName = name\n      ..pAppData = Pointer.fromAddress(id)\n      ..xOpen = Pointer.fromFunction(_xOpen, SqlError.SQLITE_ERROR)\n      ..xDelete = Pointer.fromFunction(_xDelete, SqlError.SQLITE_ERROR)\n      ..xAccess = Pointer.fromFunction(_xAccess, SqlError.SQLITE_ERROR)\n      ..xFullPathname = Pointer.fromFunction(\n        _xFullPathname,\n        SqlError.SQLITE_ERROR,\n      )\n      ..xDlOpen = nullPtr()\n      ..xDlError = nullPtr()\n      ..xDlSym = nullPtr()\n      ..xDlClose = nullPtr()\n      ..xRandomness = Pointer.fromFunction(_xRandomness, SqlError.SQLITE_ERROR)\n      ..xSleep = Pointer.fromFunction(_xSleep, SqlError.SQLITE_ERROR)\n      ..xCurrentTime = nullPtr()\n      ..xGetLastError = nullPtr()\n      ..xCurrentTimeInt64 = Pointer.fromFunction(\n        _xCurrentTime64,\n        SqlError.SQLITE_ERROR,\n      );\n\n    _vfs[id] = dartVfs;\n    return _RegisteredVfs(vfs, name);\n  }\n\n  void deallocate() {\n    _vfs.remove(_vfsPtr.ref.pAppData.address);\n    ffi.calloc.free(_vfsPtr);\n    _name.free();\n  }\n\n  static int _runVfs(\n    Pointer<sqlite3_vfs> vfs,\n    void Function(VirtualFileSystem) body,\n  ) {\n    final dartVfs = _vfs[vfs.ref.pAppData.address]!;\n    try {\n      body(dartVfs);\n      return SqlError.SQLITE_OK;\n    } on VfsException catch (e) {\n      return e.returnCode;\n    } on Object {\n      return SqlError.SQLITE_ERROR;\n    }\n  }\n\n  static int _xOpen(\n    Pointer<sqlite3_vfs> vfsPtr,\n    Pointer<Char> zName,\n    Pointer<sqlite3_file> file,\n    int flags,\n    Pointer<Int> pOutFlags,\n  ) {\n    return _runVfs(vfsPtr, (vfs) {\n      final fileName = Sqlite3Filename(\n        zName.isNullPointer ? null : zName.cast<sqlite3_char>().readString(),\n      );\n      final dartFilePtr = file.cast<_DartFile>();\n\n      final (file: dartFile, :outFlags) = vfs.xOpen(fileName, flags);\n      final fileId = _fileCounter++;\n      _files[fileId] = dartFile;\n\n      final ioMethods = ffi.calloc<sqlite3_io_methods>();\n      ioMethods.ref\n        ..iVersion = 1\n        ..xClose = Pointer.fromFunction(_xClose, SqlError.SQLITE_ERROR)\n        ..xRead = Pointer.fromFunction(_xRead, SqlError.SQLITE_ERROR)\n        ..xWrite = Pointer.fromFunction(_xWrite, SqlError.SQLITE_ERROR)\n        ..xTruncate = Pointer.fromFunction(_xTruncate, SqlError.SQLITE_ERROR)\n        ..xSync = Pointer.fromFunction(_xSync, SqlError.SQLITE_ERROR)\n        ..xFileSize = Pointer.fromFunction(_xFileSize, SqlError.SQLITE_ERROR)\n        ..xLock = Pointer.fromFunction(_xLock, SqlError.SQLITE_ERROR)\n        ..xUnlock = Pointer.fromFunction(_xUnlock, SqlError.SQLITE_ERROR)\n        ..xCheckReservedLock = Pointer.fromFunction(\n          _xCheckReservedLock,\n          SqlError.SQLITE_ERROR,\n        )\n        ..xFileControl = Pointer.fromFunction(\n          _xFileControl,\n          SqlError.SQLITE_NOTFOUND,\n        )\n        ..xSectorSize = Pointer.fromFunction(_xSectorSize, 4096)\n        ..xDeviceCharacteristics = Pointer.fromFunction(\n          _xDeviveCharacteristics,\n          0,\n        );\n\n      if (!pOutFlags.isNullPointer) {\n        pOutFlags.value = outFlags;\n      }\n\n      dartFilePtr.ref\n        ..pMethods = ioMethods\n        ..dartFileId = fileId;\n    });\n  }\n\n  static int _xDelete(\n    Pointer<sqlite3_vfs> vfsPtr,\n    Pointer<Char> zName,\n    int syncDir,\n  ) {\n    return _runVfs(\n      vfsPtr,\n      (vfs) => vfs.xDelete(zName.cast<sqlite3_char>().readString(), syncDir),\n    );\n  }\n\n  static int _xAccess(\n    Pointer<sqlite3_vfs> vfsPtr,\n    Pointer<Char> zName,\n    int flags,\n    Pointer<Int> pResOut,\n  ) {\n    return _runVfs(vfsPtr, (vfs) {\n      if (!pResOut.isNullPointer) {\n        pResOut.value = vfs.xAccess(\n          zName.cast<sqlite3_char>().readString(),\n          flags,\n        );\n      }\n    });\n  }\n\n  static int _xFullPathname(\n    Pointer<sqlite3_vfs> vfsPtr,\n    Pointer<Char> zName,\n    int nOut,\n    Pointer<Char> zOut,\n  ) {\n    return _runVfs(vfsPtr, (vfs) {\n      final bytes = utf8.encode(\n        vfs.xFullPathName(zName.cast<sqlite3_char>().readString()),\n      );\n      if (bytes.length >= nOut) {\n        throw VfsException(SqlError.SQLITE_TOOBIG);\n      }\n\n      final target = zOut.cast<Uint8>().asTypedList(nOut);\n      target.setAll(0, bytes);\n      target[bytes.length] = 0;\n    });\n  }\n\n  static int _xRandomness(\n    Pointer<sqlite3_vfs> vfsPtr,\n    int nByte,\n    Pointer<Char> zOut,\n  ) {\n    return _runVfs(vfsPtr, (vfs) {\n      vfs.xRandomness(zOut.cast<Uint8>().asTypedList(nByte));\n    });\n  }\n\n  static int _xSleep(Pointer<sqlite3_vfs> vfsPtr, int microseconds) {\n    return _runVfs(\n      vfsPtr,\n      (vfs) => vfs.xSleep(Duration(microseconds: microseconds)),\n    );\n  }\n\n  static int _xCurrentTime64(Pointer<sqlite3_vfs> vfsPtr, Pointer<Int64> out) {\n    return _runVfs(vfsPtr, (vfs) {\n      if (!out.isNullPointer) {\n        // https://github.com/sqlite/sqlite/blob/8ee75f7c3ac1456b8d941781857be27bfddb57d6/src/os_unix.c#L6757\n        const unixEpoch = 24405875 * 8640000;\n\n        out.value = unixEpoch + vfs.xCurrentTime().millisecondsSinceEpoch;\n      }\n    });\n  }\n\n  static int _runFile(\n    Pointer<sqlite3_file> file,\n    void Function(VirtualFileSystemFile) body,\n  ) {\n    final id = file.cast<_DartFile>().ref.dartFileId;\n    final dartFile = _files[id]!;\n    try {\n      body(dartFile);\n      return SqlError.SQLITE_OK;\n    } on VfsException catch (e) {\n      return e.returnCode;\n    } on Object {\n      return SqlError.SQLITE_ERROR;\n    }\n  }\n\n  static int _xClose(Pointer<sqlite3_file> ptr) {\n    return _runFile(ptr, (file) {\n      file.xClose();\n\n      final dartFile = ptr.cast<_DartFile>().ref;\n      _files.remove(dartFile.dartFileId);\n      ffi.calloc.free(dartFile.pMethods);\n    });\n  }\n\n  static int _xRead(\n    Pointer<sqlite3_file> ptr,\n    Pointer<Void> target,\n    int amount,\n    int offset,\n  ) {\n    return _runFile(ptr, (file) {\n      final buffer = target.cast<Uint8>().asTypedList(amount);\n      file.xRead(buffer, offset);\n    });\n  }\n\n  static int _xWrite(\n    Pointer<sqlite3_file> ptr,\n    Pointer<Void> target,\n    int amount,\n    int offset,\n  ) {\n    return _runFile(ptr, (file) {\n      final buffer = target.cast<Uint8>().asTypedList(amount);\n      file.xWrite(buffer, offset);\n    });\n  }\n\n  static int _xTruncate(Pointer<sqlite3_file> ptr, int size) {\n    return _runFile(ptr, (file) => file.xTruncate(size));\n  }\n\n  static int _xSync(Pointer<sqlite3_file> ptr, int flags) {\n    return _runFile(ptr, (file) => file.xSync(flags));\n  }\n\n  static int _xFileSize(Pointer<sqlite3_file> ptr, Pointer<Int64> pSize) {\n    return _runFile(ptr, (file) {\n      if (!pSize.isNullPointer) {\n        pSize.value = file.xFileSize();\n      }\n    });\n  }\n\n  static int _xLock(Pointer<sqlite3_file> ptr, int flags) {\n    return _runFile(ptr, (file) => file.xLock(flags));\n  }\n\n  static int _xUnlock(Pointer<sqlite3_file> ptr, int flags) {\n    return _runFile(ptr, (file) => file.xUnlock(flags));\n  }\n\n  static int _xCheckReservedLock(\n    Pointer<sqlite3_file> ptr,\n    Pointer<Int> pResOut,\n  ) {\n    return _runFile(ptr, (file) {\n      if (!pResOut.isNullPointer) {\n        pResOut.value = file.xCheckReservedLock();\n      }\n    });\n  }\n\n  static int _xFileControl(\n    Pointer<sqlite3_file> ptr,\n    int op,\n    Pointer<Void> pArg,\n  ) {\n    // We don't currently support filecontrol operations in the VFS.\n    return SqlError.SQLITE_NOTFOUND;\n  }\n\n  static int _xSectorSize(Pointer<sqlite3_file> ptr) {\n    // We don't currently support custom sector sizes.\n    return 4096;\n  }\n\n  static int _xDeviveCharacteristics(Pointer<sqlite3_file> ptr) {\n    return _runFile(ptr, (file) => file.xDeviceCharacteristics);\n  }\n}\n\nfinal class _DartFile extends Struct {\n  // extends sqlite3_file:\n  external Pointer<sqlite3_io_methods> pMethods;\n  // additional definitions\n  @Int64()\n  external int dartFileId;\n}\n\nfinal class FfiSession implements RawSqliteSession, Finalizable {\n  final Pointer<sqlite3_session> session;\n  final Object detachToken = Object();\n\n  FfiSession(this.session) {\n    sessionDeleteFinalizer.attach(this, session.cast(), detach: detachToken);\n  }\n\n  @override\n  int sqlite3session_attach([String? name]) {\n    final namePtr = name == null\n        ? nullPtr<sqlite3_char>()\n        : Utf8Utils.allocateZeroTerminated(name);\n    final result = libsqlite3.sqlite3session_attach(session, namePtr);\n    if (name != null) {\n      namePtr.free();\n    }\n    return result;\n  }\n\n  Uint8List _handleChangesetResult(int result, int size, Pointer<Void> buffer) {\n    if (result != SqlError.SQLITE_OK) {\n      throw createExceptionOutsideOfDatabase(ffiBindings, result);\n    }\n\n    return buffer.cast<Uint8>().asTypedList(\n      size,\n      finalizer: libsqlite3.addresses.sqlite3_free,\n    );\n  }\n\n  @override\n  Uint8List sqlite3session_changeset() {\n    final outSize = allocate<Int>();\n    final outChangeset = allocate<Pointer<Void>>();\n    final result = libsqlite3.sqlite3session_changeset(\n      session,\n      outSize,\n      outChangeset,\n    );\n\n    final size = outSize.value;\n    final changeset = outChangeset.value;\n    outSize.free();\n    outChangeset.free();\n\n    return _handleChangesetResult(result, size, changeset);\n  }\n\n  @override\n  Uint8List sqlite3session_patchset() {\n    final outSize = allocate<Int>();\n    final outPatchset = allocate<Pointer<Void>>();\n    final result = libsqlite3.sqlite3session_patchset(\n      session,\n      outSize,\n      outPatchset,\n    );\n\n    final size = outSize.value;\n    final patchset = outPatchset.value;\n    outSize.free();\n    outPatchset.free();\n\n    return _handleChangesetResult(result, size, patchset);\n  }\n\n  @override\n  void sqlite3session_delete() {\n    sessionDeleteFinalizer.detach(detachToken);\n    libsqlite3.sqlite3session_delete(session);\n  }\n\n  @override\n  int sqlite3session_diff(String fromDb, String table) {\n    final fromDbPtr = Utf8Utils.allocateZeroTerminated(fromDb);\n    final tablePtr = Utf8Utils.allocateZeroTerminated(table);\n    final result = libsqlite3.sqlite3session_diff(\n      session,\n      fromDbPtr,\n      tablePtr,\n      nullPtr(),\n    );\n    fromDbPtr.free();\n    tablePtr.free();\n    return result;\n  }\n\n  @override\n  int sqlite3session_enable(int enable) {\n    return libsqlite3.sqlite3session_enable(session, enable);\n  }\n\n  @override\n  int sqlite3session_indirect(int indirect) {\n    return libsqlite3.sqlite3session_indirect(session, indirect);\n  }\n\n  @override\n  int sqlite3session_isempty() {\n    return libsqlite3.sqlite3session_isempty(session);\n  }\n}\n\nfinal class FfiChangesetIterator implements RawChangesetIterator, Finalizable {\n  final Pointer<sqlite3_changeset_iter> iterator;\n  final Object detachToken = Object();\n\n  /// An optional [Uint8List] backing the changeset we're iterating on with a\n  /// native finalizer attached to it.\n  ///\n  /// This ensures that, as the iterator is GCed, so is the changeset.\n  final Uint8List? ownedChangesetBytes;\n\n  FfiChangesetIterator(\n    this.iterator, {\n    bool ownsIterator = true,\n    this.ownedChangesetBytes,\n  }) {\n    if (ownsIterator) {\n      changesetFinalizeFinalizer.attach(\n        this,\n        iterator.cast(),\n        detach: detachToken,\n      );\n    }\n  }\n\n  @override\n  int sqlite3changeset_finalize() {\n    changesetFinalizeFinalizer.detach(detachToken);\n    final result = libsqlite3.sqlite3changeset_finalize(iterator);\n    return result;\n  }\n\n  @override\n  SqliteResult<RawSqliteValue?> sqlite3changeset_new(int columnNumber) {\n    final outValue = allocate<Pointer<sqlite3_value>>();\n    final result = libsqlite3.sqlite3changeset_new(\n      iterator,\n      columnNumber,\n      outValue,\n    );\n    final value = outValue.value;\n    outValue.free();\n\n    return (\n      resultCode: result,\n      result: value.isNullPointer ? null : FfiValue(value),\n    );\n  }\n\n  @override\n  int sqlite3changeset_next() {\n    return libsqlite3.sqlite3changeset_next(iterator);\n  }\n\n  @override\n  SqliteResult<RawSqliteValue?> sqlite3changeset_old(int columnNumber) {\n    final outValue = allocate<Pointer<sqlite3_value>>();\n    final result = libsqlite3.sqlite3changeset_old(\n      iterator,\n      columnNumber,\n      outValue,\n    );\n    final value = outValue.value;\n    outValue.free();\n\n    return (\n      resultCode: result,\n      result: value.isNullPointer ? null : FfiValue(value),\n    );\n  }\n\n  @override\n  RawChangeSetOp sqlite3changeset_op() {\n    final tablePtr = allocate<Pointer<sqlite3_char>>();\n    final columnCountPtr = allocate<Int>();\n    final typePtr = allocate<Int>();\n    final indirectPtr = allocate<Int>();\n\n    final result = libsqlite3.sqlite3changeset_op(\n      iterator,\n      tablePtr,\n      columnCountPtr,\n      typePtr,\n      indirectPtr,\n    );\n\n    final tableValue = tablePtr.value;\n    final columnCountValue = columnCountPtr.value;\n    final typeValue = typePtr.value;\n    final indirectValue = indirectPtr.value;\n    tablePtr.free();\n    columnCountPtr.free();\n    typePtr.free();\n    indirectPtr.free();\n\n    if (result != SqlError.SQLITE_OK) {\n      throw createExceptionOutsideOfDatabase(ffiBindings, result);\n    }\n\n    final table = tableValue.readString();\n    return RawChangeSetOp(\n      tableName: table,\n      columnCount: columnCountValue,\n      operation: typeValue,\n      indirect: indirectValue,\n    );\n  }\n}\n\n/// For user-defined functions, SQLite hooks, or virtual file systems, we\n/// register function pointers as [NativeCallable]s.\n///\n/// To avoid leaking resources, we should [NativeCallable.close] those once\n/// they're no longer used. SQLite provides the `xDestroy` callback for this.\n/// For a long time, this package used an additional callable for `xDestroy`\n/// that closed the original callables and itself.\n///\n/// After migrating to native finalizers however, this approach stopped working.\n/// Because native finalizers can run as the Dart isolate is shutting down, we\n/// can't invoke Dart code anymore. There is no good way to close callables from\n/// C (https://dartbug.com/61887), so we can't use `xDestroy` callbacks from\n/// SQLite.\n///\n/// Instead, we:\n///\n///  - Manually close callables when the database is closed in Dart.\n///  - Use (regular, non-native) finalizers to asynchronously close callbacks\n///    for databases that haven't been closed manually.\nfinal class _FunctionFinalizers {\n  final List<NativeCallable> _callables = [];\n\n  void closeAll() {\n    for (final callable in _callables) {\n      callable.close();\n    }\n  }\n\n  static final Finalizer<_FunctionFinalizers> finalizer = Finalizer(\n    (f) => f.closeAll(),\n  );\n}\n\nfinal class FfiDatabase implements RawSqliteDatabase, Finalizable {\n  final Pointer<sqlite3> db;\n\n  final _FunctionFinalizers _functions = _FunctionFinalizers();\n  final Object _detachToken = Object();\n\n  NativeCallable<_UpdateHook>? _installedUpdateHook;\n  NativeCallable<_CommitHook>? _installedCommitHook;\n  NativeCallable<_RollbackHook>? _installedRollbackHook;\n\n  FfiDatabase(this.db, {required bool borrowed}) {\n    if (!borrowed) {\n      // This object owns the `sqlite3` connection, so close it once the object\n      // is GCed.\n      databaseFinalizer.attach(this, db.cast(), detach: _detachToken);\n      _FunctionFinalizers.finalizer.attach(\n        this,\n        _functions,\n        detach: _detachToken,\n      );\n    }\n  }\n\n  @override\n  int sqlite3_close_v2() {\n    final rc = libsqlite3.sqlite3_close_v2(db);\n\n    _functions.closeAll();\n    _FunctionFinalizers.finalizer.detach(_detachToken);\n\n    detachFinalizer();\n    return rc;\n  }\n\n  void detachFinalizer() {\n    databaseFinalizer.detach(_detachToken);\n  }\n\n  @override\n  String sqlite3_errmsg() {\n    return libsqlite3.sqlite3_errmsg(db).readString();\n  }\n\n  @override\n  int sqlite3_extended_errcode() {\n    return libsqlite3.sqlite3_extended_errcode(db);\n  }\n\n  @override\n  int sqlite3_error_offset() {\n    if (supportsErrorOffset) {\n      return libsqlite3.sqlite3_error_offset(db);\n    } else {\n      return -1;\n    }\n  }\n\n  @override\n  void sqlite3_extended_result_codes(int onoff) {\n    libsqlite3.sqlite3_extended_result_codes(db, onoff);\n  }\n\n  @override\n  int sqlite3_changes() => libsqlite3.sqlite3_changes(db);\n\n  @override\n  int sqlite3_exec(String sql) {\n    final sqlPtr = Utf8Utils.allocateZeroTerminated(sql);\n\n    final result = libsqlite3.sqlite3_exec(\n      db,\n      sqlPtr,\n      nullPtr(),\n      nullPtr(),\n      nullPtr(),\n    );\n    sqlPtr.free();\n    return result;\n  }\n\n  @override\n  int sqlite3_last_insert_rowid() {\n    return libsqlite3.sqlite3_last_insert_rowid(db);\n  }\n\n  @override\n  int sqlite3_create_collation_v2({\n    required Uint8List collationName,\n    required int eTextRep,\n    required RawCollation collation,\n  }) {\n    final name = allocateBytes(collationName, additionalLength: 1);\n    final compare = collation.toNative(_functions);\n\n    final result = libsqlite3.sqlite3_create_collation_v2(\n      db,\n      name.cast(),\n      eTextRep,\n      nullPtr(),\n      compare.nativeFunction,\n      nullPtr(),\n    );\n    name.free();\n\n    return result;\n  }\n\n  @override\n  int sqlite3_create_window_function({\n    required Uint8List functionName,\n    required int nArg,\n    required int eTextRep,\n    required RawXStep xStep,\n    required RawXFinal xFinal,\n    required RawXFinal xValue,\n    required RawXStep xInverse,\n  }) {\n    final functionNamePtr = allocateBytes(functionName, additionalLength: 1);\n\n    final step = xStep.toNative(_functions);\n    final $final = xFinal.toNative(clean: true, finalizers: _functions);\n    final value = xValue.toNative(clean: false, finalizers: _functions);\n    final inverse = xInverse.toNative(_functions);\n\n    final result = libsqlite3.sqlite3_create_window_function(\n      db,\n      functionNamePtr.cast(),\n      nArg,\n      eTextRep,\n      nullPtr(),\n      step.nativeFunction,\n      $final.nativeFunction,\n      value.nativeFunction,\n      inverse.nativeFunction,\n      nullPtr(),\n    );\n    functionNamePtr.free();\n    return result;\n  }\n\n  @override\n  int sqlite3_create_function_v2({\n    required Uint8List functionName,\n    required int nArg,\n    required int eTextRep,\n    RawXFunc? xFunc,\n    RawXStep? xStep,\n    RawXFinal? xFinal,\n  }) {\n    final functionNamePtr = allocateBytes(functionName, additionalLength: 1);\n\n    final func = xFunc?.toNative(_functions);\n    final step = xStep?.toNative(_functions);\n    final $final = xFinal?.toNative(clean: true, finalizers: _functions);\n\n    final result = libsqlite3.sqlite3_create_function_v2(\n      db,\n      functionNamePtr.cast(),\n      nArg,\n      eTextRep,\n      nullPtr(),\n      func?.nativeFunction ?? nullPtr(),\n      step?.nativeFunction ?? nullPtr(),\n      $final?.nativeFunction ?? nullPtr(),\n      nullPtr(),\n    );\n    functionNamePtr.free();\n    return result;\n  }\n\n  @override\n  void sqlite3_update_hook(RawUpdateHook? hook) {\n    final previous = _installedUpdateHook;\n\n    if (hook == null) {\n      _installedUpdateHook = null;\n      libsqlite3.sqlite3_update_hook(db, nullPtr(), nullPtr());\n    } else {\n      final native = _installedUpdateHook = hook.toNative(_functions);\n      libsqlite3.sqlite3_update_hook(db, native.nativeFunction, nullPtr());\n    }\n\n    previous?.close();\n  }\n\n  @override\n  void sqlite3_commit_hook(RawCommitHook? hook) {\n    final previous = _installedCommitHook;\n\n    if (hook == null) {\n      _installedCommitHook = null;\n      libsqlite3.sqlite3_commit_hook(db, nullPtr(), nullPtr());\n    } else {\n      final native = _installedCommitHook = hook.toNative(_functions);\n      libsqlite3.sqlite3_commit_hook(db, native.nativeFunction, nullPtr());\n    }\n\n    previous?.close();\n  }\n\n  @override\n  void sqlite3_rollback_hook(RawRollbackHook? hook) {\n    final previous = _installedRollbackHook;\n\n    if (hook == null) {\n      libsqlite3.sqlite3_rollback_hook(db, nullPtr(), nullPtr());\n    } else {\n      final native = _installedRollbackHook = hook.toNative(_functions);\n      libsqlite3.sqlite3_rollback_hook(db, native.nativeFunction, nullPtr());\n    }\n\n    previous?.close();\n  }\n\n  @override\n  int sqlite3_db_config(int op, int value) {\n    final result = libsqlite3.sqlite3_db_config(db, op, value, nullPtr());\n    return result;\n  }\n\n  @override\n  int sqlite3_get_autocommit() {\n    return libsqlite3.sqlite3_get_autocommit(db);\n  }\n\n  @override\n  int sqlite3_busy_handler(int Function(int)? callback) {\n    if (callback == null) {\n      return libsqlite3.sqlite3_busy_handler(db, nullPtr(), nullPtr());\n    } else {\n      final callable =\n          NativeCallable<Int Function(Pointer<Void>, Int)>.isolateLocal((\n              Pointer<void> _,\n              int amount,\n            ) {\n              return callback(amount);\n            }, exceptionalReturn: 0)\n            ..keepIsolateAlive = false\n            ..closeIn(_functions);\n\n      return libsqlite3.sqlite3_busy_handler(\n        db,\n        callable.nativeFunction,\n        nullPtr(),\n      );\n    }\n  }\n\n  @override\n  RawStatementCompiler newCompiler(List<int> utf8EncodedSql) {\n    return FfiStatementCompiler(this, allocateBytes(utf8EncodedSql));\n  }\n}\n\nfinal class FfiStatementCompiler implements RawStatementCompiler {\n  final FfiDatabase database;\n  final Pointer<Uint8> sql;\n  final Pointer<Pointer<sqlite3_stmt>> stmtOut = allocate();\n  final Pointer<Pointer<sqlite3_char>> pzTail = allocate();\n\n  FfiStatementCompiler(this.database, this.sql);\n\n  @override\n  void close() {\n    sql.free();\n    stmtOut.free();\n    pzTail.free();\n  }\n\n  @override\n  int get endOffset => pzTail.value.address - sql.address;\n\n  @override\n  SqliteResult<RawSqliteStatement> sqlite3_prepare(\n    int byteOffset,\n    int length,\n    int prepFlag,\n  ) {\n    final int result;\n\n    if (supportsPrepareV3) {\n      result = libsqlite3.sqlite3_prepare_v3(\n        database.db,\n        (sql + byteOffset).cast(),\n        length,\n        prepFlag,\n        stmtOut,\n        pzTail,\n      );\n    } else {\n      assert(\n        prepFlag == 0,\n        'Used custom preparation flags, but the loaded sqlite library does '\n        'not support prepare_v3',\n      );\n\n      result = libsqlite3.sqlite3_prepare_v2(\n        database.db,\n        (sql + byteOffset).cast(),\n        length,\n        stmtOut,\n        pzTail,\n      );\n    }\n\n    final stmt = stmtOut.value;\n    final libraryStatement = stmt.isNullPointer\n        ? null\n        : FfiStatement(stmt, borrowed: false);\n\n    return (resultCode: result, result: libraryStatement);\n  }\n}\n\nfinal class FfiStatement implements RawSqliteStatement, Finalizable {\n  final Pointer<sqlite3_stmt> stmt;\n  final Object _detachToken = Object();\n\n  FfiStatement(this.stmt, {required bool borrowed}) {\n    if (!borrowed) {\n      // This object owns the `sqlite_stmt` pointer, so make sure to dispose it\n      // when the object is GCed.\n      statementFinalizer.attach(this, stmt.cast(), detach: _detachToken);\n    }\n  }\n\n  void detachFinalizer() {\n    statementFinalizer.detach(_detachToken);\n  }\n\n  @override\n  int sqlite3_bind_blob64(int index, List<int> value) {\n    final ptr = allocateBytes(value);\n\n    return libsqlite3.sqlite3_bind_blob64(\n      stmt,\n      index,\n      ptr.cast(),\n      value.length,\n      allocate.nativeFree,\n    );\n  }\n\n  @override\n  int sqlite3_bind_double(int index, double value) {\n    return libsqlite3.sqlite3_bind_double(stmt, index, value);\n  }\n\n  @override\n  int sqlite3_bind_int64(int index, int value) {\n    return libsqlite3.sqlite3_bind_int64(stmt, index, value);\n  }\n\n  @override\n  int sqlite3_bind_int64BigInt(int index, BigInt value) {\n    return libsqlite3.sqlite3_bind_int64(stmt, index, value.toInt());\n  }\n\n  @override\n  int sqlite3_bind_null(int index) {\n    return libsqlite3.sqlite3_bind_null(stmt, index);\n  }\n\n  @override\n  int sqlite3_bind_parameter_count() {\n    return libsqlite3.sqlite3_bind_parameter_count(stmt);\n  }\n\n  @override\n  int sqlite3_stmt_isexplain() {\n    return libsqlite3.sqlite3_stmt_isexplain(stmt);\n  }\n\n  @override\n  int sqlite3_stmt_readonly() {\n    return libsqlite3.sqlite3_stmt_readonly(stmt);\n  }\n\n  @override\n  int sqlite3_bind_parameter_index(String name) {\n    final ptr = Utf8Utils.allocateZeroTerminated(name);\n    try {\n      return libsqlite3.sqlite3_bind_parameter_index(stmt, ptr);\n    } finally {\n      ptr.free();\n    }\n  }\n\n  @override\n  int sqlite3_bind_text(int index, String value) {\n    final bytes = utf8.encode(value);\n    final ptr = allocateBytes(bytes);\n\n    return libsqlite3.sqlite3_bind_text(\n      stmt,\n      index,\n      ptr.cast(),\n      bytes.length,\n      allocate.nativeFree,\n    );\n  }\n\n  @override\n  Uint8List sqlite3_column_bytes(int index) {\n    final length = libsqlite3.sqlite3_column_bytes(stmt, index);\n    if (length == 0) {\n      // sqlite3_column_blob returns a null pointer for non-null blobs with\n      // a length of 0. Note that we can distinguish this from a proper null\n      // by checking the type (which isn't SQLITE_NULL)\n      return Uint8List(0);\n    }\n    return libsqlite3.sqlite3_column_blob(stmt, index).copyRange(length);\n  }\n\n  @override\n  int sqlite3_column_count() {\n    return libsqlite3.sqlite3_column_count(stmt);\n  }\n\n  @override\n  double sqlite3_column_double(int index) {\n    return libsqlite3.sqlite3_column_double(stmt, index);\n  }\n\n  @override\n  int sqlite3_column_int64(int index) {\n    return libsqlite3.sqlite3_column_int64(stmt, index);\n  }\n\n  @override\n  BigInt sqlite3_column_int64OrBigInt(int index) {\n    return BigInt.from(libsqlite3.sqlite3_column_int64(stmt, index));\n  }\n\n  @override\n  String sqlite3_column_name(int index) {\n    return libsqlite3.sqlite3_column_name(stmt, index).readString();\n  }\n\n  @override\n  String? sqlite3_column_table_name(int index) {\n    return libsqlite3\n        .sqlite3_column_table_name(stmt, index)\n        .readNullableString();\n  }\n\n  @override\n  String sqlite3_column_text(int index) {\n    final length = libsqlite3.sqlite3_column_bytes(stmt, index);\n    return libsqlite3.sqlite3_column_text(stmt, index).readString(length);\n  }\n\n  @override\n  int sqlite3_column_type(int index) {\n    return libsqlite3.sqlite3_column_type(stmt, index);\n  }\n\n  @override\n  void sqlite3_finalize() {\n    libsqlite3.sqlite3_finalize(stmt);\n    detachFinalizer();\n  }\n\n  @override\n  void sqlite3_reset() {\n    libsqlite3.sqlite3_reset(stmt);\n  }\n\n  @override\n  int sqlite3_step() {\n    return libsqlite3.sqlite3_step(stmt);\n  }\n\n  @override\n  bool get supportsReadingTableNameForColumn => hasColumnMetadata;\n}\n\nfinal class FfiValue implements RawSqliteValue {\n  final Pointer<sqlite3_value> value;\n\n  FfiValue(this.value) : assert(!value.isNullPointer);\n\n  @override\n  Uint8List sqlite3_value_blob() {\n    final byteLength = libsqlite3.sqlite3_value_bytes(value);\n    return libsqlite3.sqlite3_value_blob(value).copyRange(byteLength);\n  }\n\n  @override\n  double sqlite3_value_double() {\n    return libsqlite3.sqlite3_value_double(value);\n  }\n\n  @override\n  int sqlite3_value_int64() {\n    return libsqlite3.sqlite3_value_int64(value);\n  }\n\n  @override\n  String sqlite3_value_text() {\n    final byteLength = libsqlite3.sqlite3_value_bytes(value);\n    return utf8.decode(\n      libsqlite3.sqlite3_value_text(value).copyRange(byteLength),\n    );\n  }\n\n  @override\n  int sqlite3_value_type() {\n    return libsqlite3.sqlite3_value_type(value);\n  }\n\n  @override\n  int sqlite3_value_subtype() {\n    return libsqlite3.sqlite3_value_subtype(value);\n  }\n}\n\nfinal class FfiContext implements RawSqliteContext {\n  static int _aggregateContextId = 1;\n  static final Map<int, AggregateContext<Object?>> _contexts = {};\n\n  final Pointer<sqlite3_context> context;\n\n  FfiContext(this.context);\n\n  Pointer<Int64> get _rawAggregateContext {\n    final agCtxPtr = libsqlite3\n        .sqlite3_aggregate_context(context, sizeOf<Int64>())\n        .cast<Int64>();\n\n    if (agCtxPtr.isNullPointer) {\n      // We can't run without our 8 bytes! This indicates an out-of-memory error\n      throw StateError(\n        'Internal error while allocating sqlite3 aggregate context (OOM?)',\n      );\n    }\n\n    return agCtxPtr;\n  }\n\n  @override\n  AggregateContext<Object?>? get dartAggregateContext {\n    final agCtxPtr = _rawAggregateContext;\n    final value = agCtxPtr.value;\n\n    // Ok, we have a pointer (that sqlite3 zeroes out for us). Our state counter\n    // starts at one, so if it's still zero we don't have a Dart context yet.\n    if (value == 0) {\n      return null;\n    } else {\n      return _contexts[value];\n    }\n  }\n\n  @override\n  set dartAggregateContext(AggregateContext<Object?>? value) {\n    final ptr = _rawAggregateContext;\n\n    final id = _aggregateContextId++;\n    _contexts[id] = ArgumentError.checkNotNull(value);\n    ptr.value = id;\n  }\n\n  @override\n  void sqlite3_result_blob64(List<int> blob) {\n    final ptr = allocateBytes(blob);\n\n    libsqlite3.sqlite3_result_blob64(\n      context,\n      ptr.cast(),\n      blob.length,\n      Pointer.fromAddress(SqlSpecialDestructor.SQLITE_TRANSIENT),\n    );\n    ptr.free();\n  }\n\n  @override\n  void sqlite3_result_double(double value) {\n    libsqlite3.sqlite3_result_double(context, value);\n  }\n\n  @override\n  void sqlite3_result_error(String message) {\n    final ptr = allocateBytes(utf8.encode(message));\n\n    libsqlite3.sqlite3_result_error(context, ptr.cast(), message.length);\n    ptr.free();\n  }\n\n  @override\n  void sqlite3_result_int64(int value) {\n    libsqlite3.sqlite3_result_int64(context, value);\n  }\n\n  @override\n  void sqlite3_result_int64BigInt(BigInt value) {\n    libsqlite3.sqlite3_result_int64(context, value.toInt());\n  }\n\n  @override\n  void sqlite3_result_null() {\n    libsqlite3.sqlite3_result_null(context);\n  }\n\n  @override\n  void sqlite3_result_text(String text) {\n    final bytes = utf8.encode(text);\n    final ptr = allocateBytes(bytes);\n\n    libsqlite3.sqlite3_result_text(\n      context,\n      ptr.cast(),\n      bytes.length,\n      Pointer.fromAddress(SqlSpecialDestructor.SQLITE_TRANSIENT),\n    );\n    ptr.free();\n  }\n\n  @override\n  void sqlite3_result_subtype(int value) {\n    libsqlite3.sqlite3_result_subtype(context, value);\n  }\n\n  void freeContext() {\n    final ctxId = _rawAggregateContext.value;\n    _contexts.remove(ctxId);\n  }\n}\n\nclass _ValueList extends ListBase<FfiValue> {\n  @override\n  int length;\n  final Pointer<Pointer<sqlite3_value>> args;\n\n  _ValueList(this.length, this.args);\n\n  @override\n  FfiValue operator [](int index) {\n    return FfiValue(args[index]);\n  }\n\n  @override\n  void operator []=(int index, FfiValue value) {}\n}\n\ntypedef _XFunc =\n    Void Function(\n      Pointer<sqlite3_context>,\n      Int,\n      Pointer<Pointer<sqlite3_value>>,\n    );\ntypedef _XFinal = Void Function(Pointer<sqlite3_context>);\ntypedef _XCompare =\n    Int Function(Pointer<Void>, Int, Pointer<Void>, Int, Pointer<Void>);\ntypedef _UpdateHook =\n    Void Function(\n      Pointer<Void>,\n      Int,\n      Pointer<sqlite3_char>,\n      Pointer<sqlite3_char>,\n      Int64,\n    );\ntypedef _CommitHook = Int Function(Pointer<Void>);\ntypedef _RollbackHook = Void Function(Pointer<Void>);\n\nextension on NativeCallable {\n  void closeIn(_FunctionFinalizers finalizers) {\n    finalizers._callables.add(this);\n  }\n}\n\nextension on RawXFunc {\n  NativeCallable<_XFunc> toNative(_FunctionFinalizers finalizers) {\n    return NativeCallable.isolateLocal((\n        Pointer<sqlite3_context> ctx,\n        int nArgs,\n        Pointer<Pointer<sqlite3_value>> args,\n      ) {\n        this(FfiContext(ctx), _ValueList(nArgs, args));\n      })\n      ..closeIn(finalizers)\n      ..keepIsolateAlive = false;\n  }\n}\n\nextension on RawXFinal {\n  NativeCallable<_XFinal> toNative({\n    required bool clean,\n    required _FunctionFinalizers finalizers,\n  }) {\n    return NativeCallable.isolateLocal((Pointer<sqlite3_context> ctx) {\n        final context = FfiContext(ctx);\n        this(context);\n        if (clean) context.freeContext();\n      })\n      ..closeIn(finalizers)\n      ..keepIsolateAlive = false;\n  }\n}\n\nextension on RawCollation {\n  NativeCallable<_XCompare> toNative(_FunctionFinalizers finalizers) {\n    return NativeCallable.isolateLocal((\n        Pointer<Void> _,\n        int lengthA,\n        Pointer<Void> a,\n        int lengthB,\n        Pointer<Void> b,\n      ) {\n        final dartA = a.cast<sqlite3_char>().readNullableString(lengthA);\n        final dartB = b.cast<sqlite3_char>().readNullableString(lengthB);\n\n        return this(dartA, dartB);\n      }, exceptionalReturn: 0)\n      ..closeIn(finalizers)\n      ..keepIsolateAlive = false;\n  }\n}\n\nextension on RawUpdateHook {\n  NativeCallable<_UpdateHook> toNative(_FunctionFinalizers finalizers) {\n    return NativeCallable.isolateLocal((\n        Pointer<Void> _,\n        int kind,\n        Pointer<sqlite3_char> db,\n        Pointer<sqlite3_char> table,\n        int rowid,\n      ) {\n        final tableName = table.readString();\n        this(kind, tableName, rowid);\n      })\n      ..closeIn(finalizers)\n      ..keepIsolateAlive = false;\n  }\n}\n\nextension on RawCommitHook {\n  NativeCallable<_CommitHook> toNative(_FunctionFinalizers finalizers) {\n    return NativeCallable.isolateLocal((Pointer<Void> _) {\n        return this();\n      }, exceptionalReturn: 1)\n      ..closeIn(finalizers)\n      ..keepIsolateAlive = false;\n  }\n}\n\nextension on RawRollbackHook {\n  NativeCallable<_RollbackHook> toNative(_FunctionFinalizers finalizers) {\n    return NativeCallable.isolateLocal((Pointer<Void> _) {\n        this();\n      })\n      ..closeIn(finalizers)\n      ..keepIsolateAlive = false;\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/ffi/implementation.dart",
    "content": "import 'dart:ffi';\n\nimport 'package:meta/meta.dart';\n\nimport '../constants.dart';\nimport '../exception.dart';\nimport '../implementation/bindings.dart';\nimport '../implementation/database.dart';\nimport '../implementation/exception.dart';\nimport '../implementation/sqlite3.dart';\nimport '../implementation/statement.dart';\nimport '../sqlite3.dart';\nimport 'api.dart';\nimport 'bindings.dart';\nimport 'libsqlite3.g.dart' as libsqlite3;\nimport 'memory.dart';\n\nfinal class FfiSqlite3 extends Sqlite3Implementation implements Sqlite3 {\n  const FfiSqlite3() : super(ffiBindings);\n\n  @override\n  Database open(\n    String filename, {\n    String? vfs,\n    OpenMode mode = OpenMode.readWriteCreate,\n    bool uri = false,\n    bool? mutex,\n  }) {\n    return super.open(filename, vfs: vfs, mode: mode, uri: uri, mutex: mutex)\n        as Database;\n  }\n\n  @override\n  FfiDatabaseImplementation openInMemory({String? vfs}) {\n    return super.openInMemory(vfs: vfs) as FfiDatabaseImplementation;\n  }\n\n  @override\n  Database wrapDatabase(RawSqliteDatabase rawDb, {bool isBorrowed = false}) {\n    return FfiDatabaseImplementation(\n      rawDb as FfiDatabase,\n      isBorrowed: isBorrowed,\n    );\n  }\n\n  @override\n  Database copyIntoMemory(Database restoreFrom) {\n    return openInMemory()..restore(restoreFrom);\n  }\n\n  @override\n  void ensureExtensionLoaded(SqliteExtension extension) {\n    initialize();\n\n    final entrypoint = (extension as SqliteExtensionImpl)._resolveEntrypoint;\n    final functionPtr = entrypoint();\n\n    final result = libsqlite3.sqlite3_auto_extension(functionPtr);\n    if (result != SqlError.SQLITE_OK) {\n      throw SqliteException(\n        extendedResultCode: result,\n        message: 'Could not load extension',\n      );\n    }\n  }\n\n  @override\n  Database fromPointer(Pointer<void> database, {bool borrowed = false}) {\n    return wrapDatabase(\n      FfiDatabase(database.cast(), borrowed: borrowed),\n      isBorrowed: borrowed,\n    );\n  }\n\n  @override\n  bool usedCompileOption(String name) {\n    return ffiBindings.sqlite3_compileoption_used(name) != 0;\n  }\n\n  @override\n  Iterable<String> get compileOptions sync* {\n    var i = 0;\n    while (true) {\n      final option = ffiBindings.sqlite3_compileoption_get(i);\n      if (option == null) {\n        return;\n      }\n\n      yield option;\n    }\n  }\n}\n\nclass SqliteExtensionImpl implements SqliteExtension {\n  /// The internal function resolving the function pointer to pass to\n  /// `sqlite3_auto_extension`.\n  final Pointer<Void> Function() _resolveEntrypoint;\n\n  SqliteExtensionImpl(this._resolveEntrypoint);\n}\n\nfinal class FfiDatabaseImplementation extends DatabaseImplementation\n    implements Database {\n  final FfiDatabase ffiDatabase;\n\n  FfiDatabaseImplementation(this.ffiDatabase, {required super.isBorrowed})\n    : super(ffiBindings, ffiDatabase);\n\n  @override\n  FfiStatementImplementation wrapStatement(\n    String sql,\n    RawSqliteStatement stmt, {\n    bool borrowed = false,\n  }) {\n    return FfiStatementImplementation(\n      sql,\n      this,\n      stmt as FfiStatement,\n      isBorrowed: borrowed,\n    );\n  }\n\n  @override\n  PreparedStatement statementFromPointer({\n    required Pointer<void> statement,\n    required String sql,\n    bool borrowed = false,\n  }) {\n    final raw = FfiStatement(statement.cast(), borrowed: borrowed);\n    return wrapStatement(sql, raw, borrowed: borrowed);\n  }\n\n  @override\n  Stream<double> backup(Database toDatabase, {int nPage = 5}) {\n    if (isInMemory) {\n      _loadOrSaveInMemoryDatabase(toDatabase, true);\n      return const Stream.empty();\n    } else {\n      return _backupDatabase(toDatabase, nPage);\n    }\n  }\n\n  @override\n  Pointer<void> get handle => ffiDatabase.db;\n\n  @override\n  Pointer<void> leak() {\n    ffiDatabase.detachFinalizer();\n    isBorrowed = true;\n\n    return handle;\n  }\n\n  @override\n  PreparedStatement prepare(\n    String sql, {\n    bool persistent = false,\n    bool vtab = true,\n    bool checkNoTail = false,\n  }) {\n    return super.prepare(\n          sql,\n          persistent: persistent,\n          vtab: vtab,\n          checkNoTail: checkNoTail,\n        )\n        as PreparedStatement;\n  }\n\n  @override\n  List<PreparedStatement> prepareMultiple(\n    String sql, {\n    bool persistent = false,\n    bool vtab = true,\n  }) {\n    return super\n        .prepareMultiple(sql, persistent: persistent, vtab: vtab)\n        .cast<PreparedStatement>();\n  }\n\n  /// check if this is a in-memory database\n  @visibleForTesting\n  bool get isInMemory {\n    final zDbName = Utf8Utils.allocateZeroTerminated('main');\n    final pFileName = libsqlite3.sqlite3_db_filename(ffiDatabase.db, zDbName);\n\n    zDbName.free();\n\n    return pFileName.isNullPointer || pFileName.readString().isEmpty;\n  }\n\n  /// Ported from https://www.sqlite.org/backup.html Example 1\n  void _loadOrSaveInMemoryDatabase(Database other, bool isSave) {\n    final fromDatabase = isSave ? this : other;\n    final toDatabase = isSave ? other : this;\n\n    final zDestDb = Utf8Utils.allocateZeroTerminated('main');\n    final zSrcDb = Utf8Utils.allocateZeroTerminated('main');\n\n    final pBackup = libsqlite3.sqlite3_backup_init(\n      toDatabase.handle.cast(),\n      zDestDb,\n      fromDatabase.handle.cast(),\n      zSrcDb,\n    );\n\n    if (!pBackup.isNullPointer) {\n      libsqlite3.sqlite3_backup_step(pBackup, -1);\n      libsqlite3.sqlite3_backup_finish(pBackup);\n    }\n\n    final extendedErrorCode = libsqlite3.sqlite3_extended_errcode(\n      toDatabase.handle.cast(),\n    );\n    final errorCode = extendedErrorCode & 0xFF;\n\n    zDestDb.free();\n    zSrcDb.free();\n\n    if (errorCode != SqlError.SQLITE_OK) {\n      if (errorCode != SqlError.SQLITE_OK) {\n        throw createExceptionFromExtendedCode(\n          bindings,\n          database,\n          errorCode,\n          extendedErrorCode,\n        );\n      }\n    }\n  }\n\n  /// Ported from https://www.sqlite.org/backup.html Example 2\n  Stream<double> _backupDatabase(Database toDatabase, int nPage) async* {\n    final zDestDb = Utf8Utils.allocateZeroTerminated('main');\n    final zSrcDb = Utf8Utils.allocateZeroTerminated('main');\n\n    final pBackup = libsqlite3.sqlite3_backup_init(\n      toDatabase.handle.cast(),\n      zDestDb,\n      ffiDatabase.db,\n      zSrcDb,\n    );\n\n    int returnCode;\n    if (!pBackup.isNullPointer) {\n      do {\n        returnCode = libsqlite3.sqlite3_backup_step(pBackup, nPage);\n\n        final remaining = libsqlite3.sqlite3_backup_remaining(pBackup);\n        final count = libsqlite3.sqlite3_backup_pagecount(pBackup);\n\n        yield (count - remaining) / count;\n\n        if (returnCode == SqlError.SQLITE_OK ||\n            returnCode == SqlError.SQLITE_BUSY ||\n            returnCode == SqlError.SQLITE_LOCKED) {\n          //Give other threads the chance to work with the database\n          await Future<void>.delayed(const Duration(milliseconds: 250));\n        }\n      } while (returnCode == SqlError.SQLITE_OK ||\n          returnCode == SqlError.SQLITE_BUSY ||\n          returnCode == SqlError.SQLITE_LOCKED);\n\n      libsqlite3.sqlite3_backup_finish(pBackup);\n    }\n\n    final extendedErrorCode = libsqlite3.sqlite3_extended_errcode(\n      toDatabase.handle.cast(),\n    );\n    final errorCode = extendedErrorCode & 0xFF;\n\n    zDestDb.free();\n    zSrcDb.free();\n\n    if (errorCode != SqlError.SQLITE_OK) {\n      throw createExceptionFromExtendedCode(\n        bindings,\n        database,\n        errorCode,\n        extendedErrorCode,\n      );\n    }\n  }\n\n  @internal\n  void restore(Database fromDatabase) {\n    if (!isInMemory) {\n      throw ArgumentError(\n        'Restoring is only available for in-memory databases',\n      );\n    }\n\n    _loadOrSaveInMemoryDatabase(fromDatabase, false);\n  }\n}\n\nfinal class FfiStatementImplementation extends StatementImplementation\n    implements PreparedStatement {\n  final FfiStatement ffiStatement;\n\n  FfiStatementImplementation(\n    String sql,\n    FfiDatabaseImplementation db,\n    this.ffiStatement, {\n    super.isBorrowed,\n  }) : super(sql, db, ffiStatement);\n\n  @override\n  Pointer<void> get handle => ffiStatement.stmt;\n\n  @override\n  Pointer<void> leak() {\n    ffiStatement.detachFinalizer();\n    isBorrowed = true;\n    return handle;\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/ffi/libsqlite3.g.dart",
    "content": "// ignore_for_file: type=lint\n// AUTO GENERATED FILE, DO NOT EDIT.\n//\n// Generated by `package:ffigen`.\n// ignore_for_file: unused_import\n@ffi.DefaultAsset('package:sqlite3/src/ffi/libsqlite3.g.dart')\nlibrary;\n\nimport 'dart:ffi' as ffi;\nimport '' as self;\n\n@ffi.Native<ffi.Pointer<sqlite3_char>>()\nexternal ffi.Pointer<sqlite3_char> sqlite3_temp_directory;\n\n@ffi.Native<ffi.Int Function()>()\nexternal int sqlite3_initialize();\n\n@ffi.Native<ffi.Void Function(ffi.Pointer<ffi.Void>)>()\nexternal void sqlite3_free(ffi.Pointer<ffi.Void> arg0);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3_char>,\n    ffi.Pointer<ffi.Pointer<sqlite3>>,\n    ffi.Int,\n    ffi.Pointer<sqlite3_char>,\n  )\n>()\nexternal int sqlite3_open_v2(\n  ffi.Pointer<sqlite3_char> filename,\n  ffi.Pointer<ffi.Pointer<sqlite3>> ppDb,\n  int flags,\n  ffi.Pointer<sqlite3_char> zVfs,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3>)>()\nexternal int sqlite3_close_v2(ffi.Pointer<sqlite3> db);\n\n@ffi.Native<\n  ffi.Pointer<sqlite3_char> Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<sqlite3_char>,\n  )\n>()\nexternal ffi.Pointer<sqlite3_char> sqlite3_db_filename(\n  ffi.Pointer<sqlite3> db,\n  ffi.Pointer<sqlite3_char> zDbName,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_char>)>()\nexternal int sqlite3_compileoption_used(ffi.Pointer<sqlite3_char> zOptName);\n\n@ffi.Native<ffi.Pointer<sqlite3_char> Function(ffi.Int)>()\nexternal ffi.Pointer<sqlite3_char> sqlite3_compileoption_get(int N);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<\n      ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>, ffi.Int)>\n    >,\n    ffi.Pointer<ffi.Void>,\n  )\n>()\nexternal int sqlite3_busy_handler(\n  ffi.Pointer<sqlite3> db,\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>, ffi.Int)>\n  >\n  arg1,\n  ffi.Pointer<ffi.Void> context,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3>, ffi.Int)>()\nexternal int sqlite3_extended_result_codes(ffi.Pointer<sqlite3> db, int onoff);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3>)>()\nexternal int sqlite3_extended_errcode(ffi.Pointer<sqlite3> db);\n\n@ffi.Native<ffi.Pointer<sqlite3_char> Function(ffi.Pointer<sqlite3>)>()\nexternal ffi.Pointer<sqlite3_char> sqlite3_errmsg(ffi.Pointer<sqlite3> db);\n\n@ffi.Native<ffi.Pointer<sqlite3_char> Function(ffi.Int)>()\nexternal ffi.Pointer<sqlite3_char> sqlite3_errstr(int code);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3>)>()\nexternal int sqlite3_error_offset(ffi.Pointer<sqlite3> db);\n\n@ffi.Native<ffi.Pointer<sqlite3_char> Function()>()\nexternal ffi.Pointer<sqlite3_char> sqlite3_libversion();\n\n@ffi.Native<ffi.Pointer<sqlite3_char> Function()>()\nexternal ffi.Pointer<sqlite3_char> sqlite3_sourceid();\n\n@ffi.Native<ffi.Int Function()>()\nexternal int sqlite3_libversion_number();\n\n@ffi.Native<ffi.Int64 Function(ffi.Pointer<sqlite3>)>()\nexternal int sqlite3_last_insert_rowid(ffi.Pointer<sqlite3> db);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3>)>()\nexternal int sqlite3_changes(ffi.Pointer<sqlite3> db);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Pointer<ffi.Void>,\n    ffi.Pointer<ffi.Void>,\n    ffi.Pointer<ffi.Pointer<sqlite3_char>>,\n  )\n>()\nexternal int sqlite3_exec(\n  ffi.Pointer<sqlite3> db,\n  ffi.Pointer<sqlite3_char> sql,\n  ffi.Pointer<ffi.Void> callback,\n  ffi.Pointer<ffi.Void> argToCb,\n  ffi.Pointer<ffi.Pointer<sqlite3_char>> errorOut,\n);\n\n@ffi.Native<\n  ffi.Pointer<ffi.Void> Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<\n      ffi.NativeFunction<\n        ffi.Void Function(\n          ffi.Pointer<ffi.Void>,\n          ffi.Int,\n          ffi.Pointer<sqlite3_char>,\n          ffi.Pointer<sqlite3_char>,\n          ffi.Int64,\n        )\n      >\n    >,\n    ffi.Pointer<ffi.Void>,\n  )\n>()\nexternal ffi.Pointer<ffi.Void> sqlite3_update_hook(\n  ffi.Pointer<sqlite3> arg0,\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(\n        ffi.Pointer<ffi.Void>,\n        ffi.Int,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Int64,\n      )\n    >\n  >\n  arg1,\n  ffi.Pointer<ffi.Void> arg2,\n);\n\n@ffi.Native<\n  ffi.Pointer<ffi.Void> Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>)>>,\n    ffi.Pointer<ffi.Void>,\n  )\n>()\nexternal ffi.Pointer<ffi.Void> sqlite3_commit_hook(\n  ffi.Pointer<sqlite3> arg0,\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>)>> arg1,\n  ffi.Pointer<ffi.Void> arg2,\n);\n\n@ffi.Native<\n  ffi.Pointer<ffi.Void> Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>,\n    ffi.Pointer<ffi.Void>,\n  )\n>()\nexternal ffi.Pointer<ffi.Void> sqlite3_rollback_hook(\n  ffi.Pointer<sqlite3> arg0,\n  ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>\n  arg1,\n  ffi.Pointer<ffi.Void> arg2,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3>)>()\nexternal int sqlite3_get_autocommit(ffi.Pointer<sqlite3> db);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Int,\n    ffi.Pointer<ffi.Pointer<sqlite3_stmt>>,\n    ffi.Pointer<ffi.Pointer<sqlite3_char>>,\n  )\n>()\nexternal int sqlite3_prepare_v2(\n  ffi.Pointer<sqlite3> db,\n  ffi.Pointer<sqlite3_char> zSql,\n  int nByte,\n  ffi.Pointer<ffi.Pointer<sqlite3_stmt>> ppStmt,\n  ffi.Pointer<ffi.Pointer<sqlite3_char>> pzTail,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Int,\n    ffi.UnsignedInt,\n    ffi.Pointer<ffi.Pointer<sqlite3_stmt>>,\n    ffi.Pointer<ffi.Pointer<sqlite3_char>>,\n  )\n>()\nexternal int sqlite3_prepare_v3(\n  ffi.Pointer<sqlite3> db,\n  ffi.Pointer<sqlite3_char> zSql,\n  int nByte,\n  int prepFlags,\n  ffi.Pointer<ffi.Pointer<sqlite3_stmt>> ppStmt,\n  ffi.Pointer<ffi.Pointer<sqlite3_char>> pzTail,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>()\nexternal int sqlite3_finalize(ffi.Pointer<sqlite3_stmt> pStmt);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>()\nexternal int sqlite3_step(ffi.Pointer<sqlite3_stmt> pStmt);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>()\nexternal int sqlite3_reset(ffi.Pointer<sqlite3_stmt> pStmt);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>()\nexternal int sqlite3_stmt_isexplain(ffi.Pointer<sqlite3_stmt> pStmt);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>()\nexternal int sqlite3_stmt_readonly(ffi.Pointer<sqlite3_stmt> pStmt);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>()\nexternal int sqlite3_column_count(ffi.Pointer<sqlite3_stmt> pStmt);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>()\nexternal int sqlite3_bind_parameter_count(ffi.Pointer<sqlite3_stmt> pStmt);\n\n@ffi.Native<\n  ffi.Int Function(ffi.Pointer<sqlite3_stmt>, ffi.Pointer<sqlite3_char>)\n>()\nexternal int sqlite3_bind_parameter_index(\n  ffi.Pointer<sqlite3_stmt> arg0,\n  ffi.Pointer<sqlite3_char> zName,\n);\n\n@ffi.Native<\n  ffi.Pointer<sqlite3_char> Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)\n>()\nexternal ffi.Pointer<sqlite3_char> sqlite3_column_name(\n  ffi.Pointer<sqlite3_stmt> pStmt,\n  int N,\n);\n\n@ffi.Native<\n  ffi.Pointer<sqlite3_char> Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)\n>()\nexternal ffi.Pointer<sqlite3_char> sqlite3_column_table_name(\n  ffi.Pointer<sqlite3_stmt> pStmt,\n  int N,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3_stmt>,\n    ffi.Int,\n    ffi.Pointer<ffi.Void>,\n    ffi.Uint64,\n    ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>,\n  )\n>()\nexternal int sqlite3_bind_blob64(\n  ffi.Pointer<sqlite3_stmt> pStmt,\n  int index,\n  ffi.Pointer<ffi.Void> data,\n  int length,\n  ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>\n  destructor,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_stmt>, ffi.Int, ffi.Double)>()\nexternal int sqlite3_bind_double(\n  ffi.Pointer<sqlite3_stmt> pStmt,\n  int index,\n  double data,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_stmt>, ffi.Int, ffi.Int64)>()\nexternal int sqlite3_bind_int64(\n  ffi.Pointer<sqlite3_stmt> pStmt,\n  int index,\n  int data,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)>()\nexternal int sqlite3_bind_null(ffi.Pointer<sqlite3_stmt> pStmt, int index);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3_stmt>,\n    ffi.Int,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Int,\n    ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>,\n  )\n>()\nexternal int sqlite3_bind_text(\n  ffi.Pointer<sqlite3_stmt> pStmt,\n  int index,\n  ffi.Pointer<sqlite3_char> data,\n  int length,\n  ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>\n  destructor,\n);\n\n@ffi.Native<\n  ffi.Pointer<ffi.Void> Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)\n>()\nexternal ffi.Pointer<ffi.Void> sqlite3_column_blob(\n  ffi.Pointer<sqlite3_stmt> pStmt,\n  int iCol,\n);\n\n@ffi.Native<ffi.Double Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)>()\nexternal double sqlite3_column_double(\n  ffi.Pointer<sqlite3_stmt> pStmt,\n  int iCol,\n);\n\n@ffi.Native<ffi.Int64 Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)>()\nexternal int sqlite3_column_int64(ffi.Pointer<sqlite3_stmt> pStmt, int iCol);\n\n@ffi.Native<\n  ffi.Pointer<sqlite3_char> Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)\n>()\nexternal ffi.Pointer<sqlite3_char> sqlite3_column_text(\n  ffi.Pointer<sqlite3_stmt> pStmt,\n  int iCol,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)>()\nexternal int sqlite3_column_bytes(ffi.Pointer<sqlite3_stmt> pStmt, int iCol);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)>()\nexternal int sqlite3_column_type(ffi.Pointer<sqlite3_stmt> pStmt, int iCol);\n\n@ffi.Native<ffi.Pointer<ffi.Void> Function(ffi.Pointer<sqlite3_value>)>()\nexternal ffi.Pointer<ffi.Void> sqlite3_value_blob(\n  ffi.Pointer<sqlite3_value> value,\n);\n\n@ffi.Native<ffi.Double Function(ffi.Pointer<sqlite3_value>)>()\nexternal double sqlite3_value_double(ffi.Pointer<sqlite3_value> value);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_value>)>()\nexternal int sqlite3_value_type(ffi.Pointer<sqlite3_value> value);\n\n@ffi.Native<ffi.Int64 Function(ffi.Pointer<sqlite3_value>)>()\nexternal int sqlite3_value_int64(ffi.Pointer<sqlite3_value> value);\n\n@ffi.Native<ffi.Pointer<sqlite3_char> Function(ffi.Pointer<sqlite3_value>)>()\nexternal ffi.Pointer<sqlite3_char> sqlite3_value_text(\n  ffi.Pointer<sqlite3_value> value,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_value>)>()\nexternal int sqlite3_value_bytes(ffi.Pointer<sqlite3_value> value);\n\n@ffi.Native<ffi.UnsignedInt Function(ffi.Pointer<sqlite3_value>)>()\nexternal int sqlite3_value_subtype(ffi.Pointer<sqlite3_value> value);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Int,\n    ffi.Int,\n    ffi.Pointer<ffi.Void>,\n    ffi.Pointer<\n      ffi.NativeFunction<\n        ffi.Void Function(\n          ffi.Pointer<sqlite3_context>,\n          ffi.Int,\n          ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n        )\n      >\n    >,\n    ffi.Pointer<\n      ffi.NativeFunction<\n        ffi.Void Function(\n          ffi.Pointer<sqlite3_context>,\n          ffi.Int,\n          ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n        )\n      >\n    >,\n    ffi.Pointer<\n      ffi.NativeFunction<ffi.Void Function(ffi.Pointer<sqlite3_context>)>\n    >,\n    ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>,\n  )\n>()\nexternal int sqlite3_create_function_v2(\n  ffi.Pointer<sqlite3> db,\n  ffi.Pointer<sqlite3_char> zFunctionName,\n  int nArg,\n  int eTextRep,\n  ffi.Pointer<ffi.Void> pApp,\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(\n        ffi.Pointer<sqlite3_context>,\n        ffi.Int,\n        ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n      )\n    >\n  >\n  xFunc,\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(\n        ffi.Pointer<sqlite3_context>,\n        ffi.Int,\n        ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n      )\n    >\n  >\n  xStep,\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Void Function(ffi.Pointer<sqlite3_context>)>\n  >\n  xFinal,\n  ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>\n  xDestroy,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Int,\n    ffi.Int,\n    ffi.Pointer<ffi.Void>,\n    ffi.Pointer<\n      ffi.NativeFunction<\n        ffi.Void Function(\n          ffi.Pointer<sqlite3_context>,\n          ffi.Int,\n          ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n        )\n      >\n    >,\n    ffi.Pointer<\n      ffi.NativeFunction<ffi.Void Function(ffi.Pointer<sqlite3_context>)>\n    >,\n    ffi.Pointer<\n      ffi.NativeFunction<ffi.Void Function(ffi.Pointer<sqlite3_context>)>\n    >,\n    ffi.Pointer<\n      ffi.NativeFunction<\n        ffi.Void Function(\n          ffi.Pointer<sqlite3_context>,\n          ffi.Int,\n          ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n        )\n      >\n    >,\n    ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>,\n  )\n>()\nexternal int sqlite3_create_window_function(\n  ffi.Pointer<sqlite3> db,\n  ffi.Pointer<sqlite3_char> zFunctionName,\n  int nArg,\n  int eTextRep,\n  ffi.Pointer<ffi.Void> pApp,\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(\n        ffi.Pointer<sqlite3_context>,\n        ffi.Int,\n        ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n      )\n    >\n  >\n  xStep,\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Void Function(ffi.Pointer<sqlite3_context>)>\n  >\n  xFinal,\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Void Function(ffi.Pointer<sqlite3_context>)>\n  >\n  xValue,\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(\n        ffi.Pointer<sqlite3_context>,\n        ffi.Int,\n        ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n      )\n    >\n  >\n  xInverse,\n  ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>\n  xDestroy,\n);\n\n@ffi.Native<\n  ffi.Pointer<ffi.Void> Function(ffi.Pointer<sqlite3_context>, ffi.Int)\n>()\nexternal ffi.Pointer<ffi.Void> sqlite3_aggregate_context(\n  ffi.Pointer<sqlite3_context> ctx,\n  int nBytes,\n);\n\n@ffi.Native<ffi.Pointer<ffi.Void> Function(ffi.Pointer<sqlite3_context>)>()\nexternal ffi.Pointer<ffi.Void> sqlite3_user_data(\n  ffi.Pointer<sqlite3_context> ctx,\n);\n\n@ffi.Native<\n  ffi.Void Function(\n    ffi.Pointer<sqlite3_context>,\n    ffi.Pointer<ffi.Void>,\n    ffi.Uint64,\n    ffi.Pointer<ffi.Void>,\n  )\n>()\nexternal void sqlite3_result_blob64(\n  ffi.Pointer<sqlite3_context> ctx,\n  ffi.Pointer<ffi.Void> data,\n  int length,\n  ffi.Pointer<ffi.Void> destructor,\n);\n\n@ffi.Native<ffi.Void Function(ffi.Pointer<sqlite3_context>, ffi.Double)>()\nexternal void sqlite3_result_double(\n  ffi.Pointer<sqlite3_context> ctx,\n  double result,\n);\n\n@ffi.Native<\n  ffi.Void Function(\n    ffi.Pointer<sqlite3_context>,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Int,\n  )\n>()\nexternal void sqlite3_result_error(\n  ffi.Pointer<sqlite3_context> ctx,\n  ffi.Pointer<sqlite3_char> msg,\n  int length,\n);\n\n@ffi.Native<ffi.Void Function(ffi.Pointer<sqlite3_context>, ffi.Int64)>()\nexternal void sqlite3_result_int64(\n  ffi.Pointer<sqlite3_context> ctx,\n  int result,\n);\n\n@ffi.Native<ffi.Void Function(ffi.Pointer<sqlite3_context>)>()\nexternal void sqlite3_result_null(ffi.Pointer<sqlite3_context> ctx);\n\n@ffi.Native<\n  ffi.Void Function(\n    ffi.Pointer<sqlite3_context>,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Int,\n    ffi.Pointer<ffi.Void>,\n  )\n>()\nexternal void sqlite3_result_text(\n  ffi.Pointer<sqlite3_context> ctx,\n  ffi.Pointer<sqlite3_char> data,\n  int length,\n  ffi.Pointer<ffi.Void> destructor,\n);\n\n@ffi.Native<ffi.Void Function(ffi.Pointer<sqlite3_context>, ffi.UnsignedInt)>()\nexternal void sqlite3_result_subtype(\n  ffi.Pointer<sqlite3_context> ctx,\n  int subtype,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Int,\n    ffi.Pointer<ffi.Void>,\n    ffi.Pointer<\n      ffi.NativeFunction<\n        ffi.Int Function(\n          ffi.Pointer<ffi.Void>,\n          ffi.Int,\n          ffi.Pointer<ffi.Void>,\n          ffi.Int,\n          ffi.Pointer<ffi.Void>,\n        )\n      >\n    >,\n    ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>,\n  )\n>()\nexternal int sqlite3_create_collation_v2(\n  ffi.Pointer<sqlite3> arg0,\n  ffi.Pointer<sqlite3_char> zName,\n  int eTextRep,\n  ffi.Pointer<ffi.Void> pArg,\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<ffi.Void>,\n        ffi.Int,\n        ffi.Pointer<ffi.Void>,\n        ffi.Int,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  xCompare,\n  ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>\n  xDestroy,\n);\n\n@ffi.Native<\n  ffi.Pointer<sqlite3_backup> Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<sqlite3_char>,\n  )\n>()\nexternal ffi.Pointer<sqlite3_backup> sqlite3_backup_init(\n  ffi.Pointer<sqlite3> pDestDb,\n  ffi.Pointer<sqlite3_char> zDestDb,\n  ffi.Pointer<sqlite3> pSrcDb,\n  ffi.Pointer<sqlite3_char> zSrcDb,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_backup>, ffi.Int)>()\nexternal int sqlite3_backup_step(ffi.Pointer<sqlite3_backup> p, int nPage);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_backup>)>()\nexternal int sqlite3_backup_finish(ffi.Pointer<sqlite3_backup> p);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_backup>)>()\nexternal int sqlite3_backup_remaining(ffi.Pointer<sqlite3_backup> p);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_backup>)>()\nexternal int sqlite3_backup_pagecount(ffi.Pointer<sqlite3_backup> p);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<ffi.Void>)>()\nexternal int sqlite3_auto_extension(ffi.Pointer<ffi.Void> xEntryPoint);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Int,\n    ffi.VarArgs<(ffi.Int, ffi.Pointer<ffi.Int>)>,\n  )\n>()\nexternal int sqlite3_db_config(\n  ffi.Pointer<sqlite3> db,\n  int op,\n  int va,\n  ffi.Pointer<ffi.Int> va$1,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_vfs>, ffi.Int)>()\nexternal int sqlite3_vfs_register(ffi.Pointer<sqlite3_vfs> arg0, int makeDflt);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_vfs>)>()\nexternal int sqlite3_vfs_unregister(ffi.Pointer<sqlite3_vfs> arg0);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Pointer<ffi.Pointer<sqlite3_session>>,\n  )\n>()\nexternal int sqlite3session_create(\n  ffi.Pointer<sqlite3> db,\n  ffi.Pointer<sqlite3_char> zDb,\n  ffi.Pointer<ffi.Pointer<sqlite3_session>> ppSession,\n);\n\n@ffi.Native<ffi.Void Function(ffi.Pointer<sqlite3_session>)>()\nexternal void sqlite3session_delete(ffi.Pointer<sqlite3_session> pSession);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_session>, ffi.Int)>()\nexternal int sqlite3session_enable(\n  ffi.Pointer<sqlite3_session> pSession,\n  int bEnable,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_session>, ffi.Int)>()\nexternal int sqlite3session_indirect(\n  ffi.Pointer<sqlite3_session> pSession,\n  int bIndirect,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<ffi.Pointer<sqlite3_changeset_iter>>,\n    ffi.Int,\n    ffi.Pointer<ffi.Void>,\n  )\n>()\nexternal int sqlite3changeset_start(\n  ffi.Pointer<ffi.Pointer<sqlite3_changeset_iter>> pp,\n  int nChangeset,\n  ffi.Pointer<ffi.Void> pChangeset,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_changeset_iter>)>()\nexternal int sqlite3changeset_finalize(\n  ffi.Pointer<sqlite3_changeset_iter> pIter,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_changeset_iter>)>()\nexternal int sqlite3changeset_next(ffi.Pointer<sqlite3_changeset_iter> pIter);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3_changeset_iter>,\n    ffi.Pointer<ffi.Pointer<sqlite3_char>>,\n    ffi.Pointer<ffi.Int>,\n    ffi.Pointer<ffi.Int>,\n    ffi.Pointer<ffi.Int>,\n  )\n>()\nexternal int sqlite3changeset_op(\n  ffi.Pointer<sqlite3_changeset_iter> pIter,\n  ffi.Pointer<ffi.Pointer<sqlite3_char>> pzTab,\n  ffi.Pointer<ffi.Int> pnCol,\n  ffi.Pointer<ffi.Int> pOp,\n  ffi.Pointer<ffi.Int> pbIndirect,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3_changeset_iter>,\n    ffi.Int,\n    ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n  )\n>()\nexternal int sqlite3changeset_old(\n  ffi.Pointer<sqlite3_changeset_iter> pIter,\n  int iVal,\n  ffi.Pointer<ffi.Pointer<sqlite3_value>> ppValue,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3_changeset_iter>,\n    ffi.Int,\n    ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n  )\n>()\nexternal int sqlite3changeset_new(\n  ffi.Pointer<sqlite3_changeset_iter> pIter,\n  int iVal,\n  ffi.Pointer<ffi.Pointer<sqlite3_value>> ppValue,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3>,\n    ffi.Int,\n    ffi.Pointer<ffi.Void>,\n    ffi.Pointer<\n      ffi.NativeFunction<\n        ffi.Int Function(ffi.Pointer<ffi.Void> pCtx, ffi.Pointer<ffi.Char> zTab)\n      >\n    >,\n    ffi.Pointer<\n      ffi.NativeFunction<\n        ffi.Int Function(\n          ffi.Pointer<ffi.Void> pCtx,\n          ffi.Int eConflict,\n          ffi.Pointer<sqlite3_changeset_iter> p,\n        )\n      >\n    >,\n    ffi.Pointer<ffi.Void>,\n  )\n>()\nexternal int sqlite3changeset_apply(\n  ffi.Pointer<sqlite3> db,\n  int nChangeset,\n  ffi.Pointer<ffi.Void> pChangeset,\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<ffi.Void> pCtx, ffi.Pointer<ffi.Char> zTab)\n    >\n  >\n  xFilter,\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<ffi.Void> pCtx,\n        ffi.Int eConflict,\n        ffi.Pointer<sqlite3_changeset_iter> p,\n      )\n    >\n  >\n  xConflict,\n  ffi.Pointer<ffi.Void> pCtx,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Int,\n    ffi.Pointer<ffi.Void>,\n    ffi.Pointer<ffi.Int>,\n    ffi.Pointer<ffi.Pointer<ffi.Void>>,\n  )\n>()\nexternal int sqlite3changeset_invert(\n  int nIn,\n  ffi.Pointer<ffi.Void> pIn,\n  ffi.Pointer<ffi.Int> pnOut,\n  ffi.Pointer<ffi.Pointer<ffi.Void>> ppOut,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3_session>,\n    ffi.Pointer<ffi.Int>,\n    ffi.Pointer<ffi.Pointer<ffi.Void>>,\n  )\n>()\nexternal int sqlite3session_patchset(\n  ffi.Pointer<sqlite3_session> pSession,\n  ffi.Pointer<ffi.Int> pnPatchset,\n  ffi.Pointer<ffi.Pointer<ffi.Void>> ppPatchset,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3_session>,\n    ffi.Pointer<ffi.Int>,\n    ffi.Pointer<ffi.Pointer<ffi.Void>>,\n  )\n>()\nexternal int sqlite3session_changeset(\n  ffi.Pointer<sqlite3_session> pSession,\n  ffi.Pointer<ffi.Int> pnChangeset,\n  ffi.Pointer<ffi.Pointer<ffi.Void>> ppChangeset,\n);\n\n@ffi.Native<ffi.Int Function(ffi.Pointer<sqlite3_session>)>()\nexternal int sqlite3session_isempty(ffi.Pointer<sqlite3_session> pSession);\n\n@ffi.Native<\n  ffi.Int Function(ffi.Pointer<sqlite3_session>, ffi.Pointer<sqlite3_char>)\n>()\nexternal int sqlite3session_attach(\n  ffi.Pointer<sqlite3_session> pSession,\n  ffi.Pointer<sqlite3_char> zTab,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<sqlite3_session>,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Pointer<sqlite3_char>,\n    ffi.Pointer<ffi.Pointer<sqlite3_char>>,\n  )\n>()\nexternal int sqlite3session_diff(\n  ffi.Pointer<sqlite3_session> pSession,\n  ffi.Pointer<sqlite3_char> zFromDb,\n  ffi.Pointer<sqlite3_char> zTbl,\n  ffi.Pointer<ffi.Pointer<sqlite3_char>> pzErrMsg,\n);\n\nconst addresses = _SymbolAddresses();\n\nclass _SymbolAddresses {\n  const _SymbolAddresses();\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function()>> get sqlite3_initialize =>\n      ffi.Native.addressOf(self.sqlite3_initialize);\n  ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>>\n  get sqlite3_free => ffi.Native.addressOf(self.sqlite3_free);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_char>,\n        ffi.Pointer<ffi.Pointer<sqlite3>>,\n        ffi.Int,\n        ffi.Pointer<sqlite3_char>,\n      )\n    >\n  >\n  get sqlite3_open_v2 => ffi.Native.addressOf(self.sqlite3_open_v2);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3>)>>\n  get sqlite3_close_v2 => ffi.Native.addressOf(self.sqlite3_close_v2);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<sqlite3_char> Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<sqlite3_char>,\n      )\n    >\n  >\n  get sqlite3_db_filename => ffi.Native.addressOf(self.sqlite3_db_filename);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_char>)>>\n  get sqlite3_compileoption_used =>\n      ffi.Native.addressOf(self.sqlite3_compileoption_used);\n  ffi.Pointer<ffi.NativeFunction<ffi.Pointer<sqlite3_char> Function(ffi.Int)>>\n  get sqlite3_compileoption_get =>\n      ffi.Native.addressOf(self.sqlite3_compileoption_get);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<\n          ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>, ffi.Int)>\n        >,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  get sqlite3_busy_handler => ffi.Native.addressOf(self.sqlite3_busy_handler);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3>, ffi.Int)>\n  >\n  get sqlite3_extended_result_codes =>\n      ffi.Native.addressOf(self.sqlite3_extended_result_codes);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3>)>>\n  get sqlite3_extended_errcode =>\n      ffi.Native.addressOf(self.sqlite3_extended_errcode);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Pointer<sqlite3_char> Function(ffi.Pointer<sqlite3>)>\n  >\n  get sqlite3_errmsg => ffi.Native.addressOf(self.sqlite3_errmsg);\n  ffi.Pointer<ffi.NativeFunction<ffi.Pointer<sqlite3_char> Function(ffi.Int)>>\n  get sqlite3_errstr => ffi.Native.addressOf(self.sqlite3_errstr);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3>)>>\n  get sqlite3_error_offset => ffi.Native.addressOf(self.sqlite3_error_offset);\n  ffi.Pointer<ffi.NativeFunction<ffi.Pointer<sqlite3_char> Function()>>\n  get sqlite3_libversion => ffi.Native.addressOf(self.sqlite3_libversion);\n  ffi.Pointer<ffi.NativeFunction<ffi.Pointer<sqlite3_char> Function()>>\n  get sqlite3_sourceid => ffi.Native.addressOf(self.sqlite3_sourceid);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function()>>\n  get sqlite3_libversion_number =>\n      ffi.Native.addressOf(self.sqlite3_libversion_number);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int64 Function(ffi.Pointer<sqlite3>)>>\n  get sqlite3_last_insert_rowid =>\n      ffi.Native.addressOf(self.sqlite3_last_insert_rowid);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3>)>>\n  get sqlite3_changes => ffi.Native.addressOf(self.sqlite3_changes);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<ffi.Pointer<sqlite3_char>>,\n      )\n    >\n  >\n  get sqlite3_exec => ffi.Native.addressOf(self.sqlite3_exec);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<ffi.Void> Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<\n          ffi.NativeFunction<\n            ffi.Void Function(\n              ffi.Pointer<ffi.Void>,\n              ffi.Int,\n              ffi.Pointer<sqlite3_char>,\n              ffi.Pointer<sqlite3_char>,\n              ffi.Int64,\n            )\n          >\n        >,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  get sqlite3_update_hook => ffi.Native.addressOf(self.sqlite3_update_hook);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<ffi.Void> Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<\n          ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>)>\n        >,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  get sqlite3_commit_hook => ffi.Native.addressOf(self.sqlite3_commit_hook);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<ffi.Void> Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<\n          ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>\n        >,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  get sqlite3_rollback_hook => ffi.Native.addressOf(self.sqlite3_rollback_hook);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3>)>>\n  get sqlite3_get_autocommit =>\n      ffi.Native.addressOf(self.sqlite3_get_autocommit);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Int,\n        ffi.Pointer<ffi.Pointer<sqlite3_stmt>>,\n        ffi.Pointer<ffi.Pointer<sqlite3_char>>,\n      )\n    >\n  >\n  get sqlite3_prepare_v2 => ffi.Native.addressOf(self.sqlite3_prepare_v2);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Int,\n        ffi.UnsignedInt,\n        ffi.Pointer<ffi.Pointer<sqlite3_stmt>>,\n        ffi.Pointer<ffi.Pointer<sqlite3_char>>,\n      )\n    >\n  >\n  get sqlite3_prepare_v3 => ffi.Native.addressOf(self.sqlite3_prepare_v3);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>>\n  get sqlite3_finalize => ffi.Native.addressOf(self.sqlite3_finalize);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>>\n  get sqlite3_step => ffi.Native.addressOf(self.sqlite3_step);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>>\n  get sqlite3_reset => ffi.Native.addressOf(self.sqlite3_reset);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>>\n  get sqlite3_stmt_isexplain =>\n      ffi.Native.addressOf(self.sqlite3_stmt_isexplain);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>>\n  get sqlite3_stmt_readonly => ffi.Native.addressOf(self.sqlite3_stmt_readonly);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>>\n  get sqlite3_column_count => ffi.Native.addressOf(self.sqlite3_column_count);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_stmt>)>>\n  get sqlite3_bind_parameter_count =>\n      ffi.Native.addressOf(self.sqlite3_bind_parameter_count);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<sqlite3_stmt>, ffi.Pointer<sqlite3_char>)\n    >\n  >\n  get sqlite3_bind_parameter_index =>\n      ffi.Native.addressOf(self.sqlite3_bind_parameter_index);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<sqlite3_char> Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)\n    >\n  >\n  get sqlite3_column_name => ffi.Native.addressOf(self.sqlite3_column_name);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<sqlite3_char> Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)\n    >\n  >\n  get sqlite3_column_table_name =>\n      ffi.Native.addressOf(self.sqlite3_column_table_name);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_stmt>,\n        ffi.Int,\n        ffi.Pointer<ffi.Void>,\n        ffi.Uint64,\n        ffi.Pointer<\n          ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>\n        >,\n      )\n    >\n  >\n  get sqlite3_bind_blob64 => ffi.Native.addressOf(self.sqlite3_bind_blob64);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<sqlite3_stmt>, ffi.Int, ffi.Double)\n    >\n  >\n  get sqlite3_bind_double => ffi.Native.addressOf(self.sqlite3_bind_double);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<sqlite3_stmt>, ffi.Int, ffi.Int64)\n    >\n  >\n  get sqlite3_bind_int64 => ffi.Native.addressOf(self.sqlite3_bind_int64);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)>\n  >\n  get sqlite3_bind_null => ffi.Native.addressOf(self.sqlite3_bind_null);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_stmt>,\n        ffi.Int,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Int,\n        ffi.Pointer<\n          ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>\n        >,\n      )\n    >\n  >\n  get sqlite3_bind_text => ffi.Native.addressOf(self.sqlite3_bind_text);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<ffi.Void> Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)\n    >\n  >\n  get sqlite3_column_blob => ffi.Native.addressOf(self.sqlite3_column_blob);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Double Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)>\n  >\n  get sqlite3_column_double => ffi.Native.addressOf(self.sqlite3_column_double);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int64 Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)>\n  >\n  get sqlite3_column_int64 => ffi.Native.addressOf(self.sqlite3_column_int64);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<sqlite3_char> Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)\n    >\n  >\n  get sqlite3_column_text => ffi.Native.addressOf(self.sqlite3_column_text);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)>\n  >\n  get sqlite3_column_bytes => ffi.Native.addressOf(self.sqlite3_column_bytes);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_stmt>, ffi.Int)>\n  >\n  get sqlite3_column_type => ffi.Native.addressOf(self.sqlite3_column_type);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<ffi.Void> Function(ffi.Pointer<sqlite3_value>)\n    >\n  >\n  get sqlite3_value_blob => ffi.Native.addressOf(self.sqlite3_value_blob);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Double Function(ffi.Pointer<sqlite3_value>)>\n  >\n  get sqlite3_value_double => ffi.Native.addressOf(self.sqlite3_value_double);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_value>)>>\n  get sqlite3_value_type => ffi.Native.addressOf(self.sqlite3_value_type);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int64 Function(ffi.Pointer<sqlite3_value>)>\n  >\n  get sqlite3_value_int64 => ffi.Native.addressOf(self.sqlite3_value_int64);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<sqlite3_char> Function(ffi.Pointer<sqlite3_value>)\n    >\n  >\n  get sqlite3_value_text => ffi.Native.addressOf(self.sqlite3_value_text);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_value>)>>\n  get sqlite3_value_bytes => ffi.Native.addressOf(self.sqlite3_value_bytes);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.UnsignedInt Function(ffi.Pointer<sqlite3_value>)>\n  >\n  get sqlite3_value_subtype => ffi.Native.addressOf(self.sqlite3_value_subtype);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Int,\n        ffi.Int,\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<\n          ffi.NativeFunction<\n            ffi.Void Function(\n              ffi.Pointer<sqlite3_context>,\n              ffi.Int,\n              ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n            )\n          >\n        >,\n        ffi.Pointer<\n          ffi.NativeFunction<\n            ffi.Void Function(\n              ffi.Pointer<sqlite3_context>,\n              ffi.Int,\n              ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n            )\n          >\n        >,\n        ffi.Pointer<\n          ffi.NativeFunction<ffi.Void Function(ffi.Pointer<sqlite3_context>)>\n        >,\n        ffi.Pointer<\n          ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>\n        >,\n      )\n    >\n  >\n  get sqlite3_create_function_v2 =>\n      ffi.Native.addressOf(self.sqlite3_create_function_v2);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Int,\n        ffi.Int,\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<\n          ffi.NativeFunction<\n            ffi.Void Function(\n              ffi.Pointer<sqlite3_context>,\n              ffi.Int,\n              ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n            )\n          >\n        >,\n        ffi.Pointer<\n          ffi.NativeFunction<ffi.Void Function(ffi.Pointer<sqlite3_context>)>\n        >,\n        ffi.Pointer<\n          ffi.NativeFunction<ffi.Void Function(ffi.Pointer<sqlite3_context>)>\n        >,\n        ffi.Pointer<\n          ffi.NativeFunction<\n            ffi.Void Function(\n              ffi.Pointer<sqlite3_context>,\n              ffi.Int,\n              ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n            )\n          >\n        >,\n        ffi.Pointer<\n          ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>\n        >,\n      )\n    >\n  >\n  get sqlite3_create_window_function =>\n      ffi.Native.addressOf(self.sqlite3_create_window_function);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<ffi.Void> Function(ffi.Pointer<sqlite3_context>, ffi.Int)\n    >\n  >\n  get sqlite3_aggregate_context =>\n      ffi.Native.addressOf(self.sqlite3_aggregate_context);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<ffi.Void> Function(ffi.Pointer<sqlite3_context>)\n    >\n  >\n  get sqlite3_user_data => ffi.Native.addressOf(self.sqlite3_user_data);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(\n        ffi.Pointer<sqlite3_context>,\n        ffi.Pointer<ffi.Void>,\n        ffi.Uint64,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  get sqlite3_result_blob64 => ffi.Native.addressOf(self.sqlite3_result_blob64);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(ffi.Pointer<sqlite3_context>, ffi.Double)\n    >\n  >\n  get sqlite3_result_double => ffi.Native.addressOf(self.sqlite3_result_double);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(\n        ffi.Pointer<sqlite3_context>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Int,\n      )\n    >\n  >\n  get sqlite3_result_error => ffi.Native.addressOf(self.sqlite3_result_error);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(ffi.Pointer<sqlite3_context>, ffi.Int64)\n    >\n  >\n  get sqlite3_result_int64 => ffi.Native.addressOf(self.sqlite3_result_int64);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Void Function(ffi.Pointer<sqlite3_context>)>\n  >\n  get sqlite3_result_null => ffi.Native.addressOf(self.sqlite3_result_null);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(\n        ffi.Pointer<sqlite3_context>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Int,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  get sqlite3_result_text => ffi.Native.addressOf(self.sqlite3_result_text);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(ffi.Pointer<sqlite3_context>, ffi.UnsignedInt)\n    >\n  >\n  get sqlite3_result_subtype =>\n      ffi.Native.addressOf(self.sqlite3_result_subtype);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Int,\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<\n          ffi.NativeFunction<\n            ffi.Int Function(\n              ffi.Pointer<ffi.Void>,\n              ffi.Int,\n              ffi.Pointer<ffi.Void>,\n              ffi.Int,\n              ffi.Pointer<ffi.Void>,\n            )\n          >\n        >,\n        ffi.Pointer<\n          ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void>)>\n        >,\n      )\n    >\n  >\n  get sqlite3_create_collation_v2 =>\n      ffi.Native.addressOf(self.sqlite3_create_collation_v2);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<sqlite3_backup> Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<sqlite3_char>,\n      )\n    >\n  >\n  get sqlite3_backup_init => ffi.Native.addressOf(self.sqlite3_backup_init);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_backup>, ffi.Int)>\n  >\n  get sqlite3_backup_step => ffi.Native.addressOf(self.sqlite3_backup_step);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_backup>)>>\n  get sqlite3_backup_finish => ffi.Native.addressOf(self.sqlite3_backup_finish);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_backup>)>>\n  get sqlite3_backup_remaining =>\n      ffi.Native.addressOf(self.sqlite3_backup_remaining);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_backup>)>>\n  get sqlite3_backup_pagecount =>\n      ffi.Native.addressOf(self.sqlite3_backup_pagecount);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>)>>\n  get sqlite3_auto_extension =>\n      ffi.Native.addressOf(self.sqlite3_auto_extension);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Int,\n        ffi.VarArgs<(ffi.Int, ffi.Pointer<ffi.Int>)>,\n      )\n    >\n  >\n  get sqlite3_db_config => ffi.Native.addressOf(self.sqlite3_db_config);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_vfs>, ffi.Int)>\n  >\n  get sqlite3_vfs_register => ffi.Native.addressOf(self.sqlite3_vfs_register);\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_vfs>)>>\n  get sqlite3_vfs_unregister =>\n      ffi.Native.addressOf(self.sqlite3_vfs_unregister);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Pointer<ffi.Pointer<sqlite3_session>>,\n      )\n    >\n  >\n  get sqlite3session_create => ffi.Native.addressOf(self.sqlite3session_create);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Void Function(ffi.Pointer<sqlite3_session>)>\n  >\n  get sqlite3session_delete => ffi.Native.addressOf(self.sqlite3session_delete);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_session>, ffi.Int)>\n  >\n  get sqlite3session_enable => ffi.Native.addressOf(self.sqlite3session_enable);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_session>, ffi.Int)>\n  >\n  get sqlite3session_indirect =>\n      ffi.Native.addressOf(self.sqlite3session_indirect);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<ffi.Pointer<sqlite3_changeset_iter>>,\n        ffi.Int,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  get sqlite3changeset_start =>\n      ffi.Native.addressOf(self.sqlite3changeset_start);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_changeset_iter>)>\n  >\n  get sqlite3changeset_finalize =>\n      ffi.Native.addressOf(self.sqlite3changeset_finalize);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_changeset_iter>)>\n  >\n  get sqlite3changeset_next => ffi.Native.addressOf(self.sqlite3changeset_next);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_changeset_iter>,\n        ffi.Pointer<ffi.Pointer<sqlite3_char>>,\n        ffi.Pointer<ffi.Int>,\n        ffi.Pointer<ffi.Int>,\n        ffi.Pointer<ffi.Int>,\n      )\n    >\n  >\n  get sqlite3changeset_op => ffi.Native.addressOf(self.sqlite3changeset_op);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_changeset_iter>,\n        ffi.Int,\n        ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n      )\n    >\n  >\n  get sqlite3changeset_old => ffi.Native.addressOf(self.sqlite3changeset_old);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_changeset_iter>,\n        ffi.Int,\n        ffi.Pointer<ffi.Pointer<sqlite3_value>>,\n      )\n    >\n  >\n  get sqlite3changeset_new => ffi.Native.addressOf(self.sqlite3changeset_new);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3>,\n        ffi.Int,\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<\n          ffi.NativeFunction<\n            ffi.Int Function(\n              ffi.Pointer<ffi.Void> pCtx,\n              ffi.Pointer<ffi.Char> zTab,\n            )\n          >\n        >,\n        ffi.Pointer<\n          ffi.NativeFunction<\n            ffi.Int Function(\n              ffi.Pointer<ffi.Void> pCtx,\n              ffi.Int eConflict,\n              ffi.Pointer<sqlite3_changeset_iter> p,\n            )\n          >\n        >,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  get sqlite3changeset_apply =>\n      ffi.Native.addressOf(self.sqlite3changeset_apply);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Int,\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<ffi.Int>,\n        ffi.Pointer<ffi.Pointer<ffi.Void>>,\n      )\n    >\n  >\n  get sqlite3changeset_invert =>\n      ffi.Native.addressOf(self.sqlite3changeset_invert);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_session>,\n        ffi.Pointer<ffi.Int>,\n        ffi.Pointer<ffi.Pointer<ffi.Void>>,\n      )\n    >\n  >\n  get sqlite3session_patchset =>\n      ffi.Native.addressOf(self.sqlite3session_patchset);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_session>,\n        ffi.Pointer<ffi.Int>,\n        ffi.Pointer<ffi.Pointer<ffi.Void>>,\n      )\n    >\n  >\n  get sqlite3session_changeset =>\n      ffi.Native.addressOf(self.sqlite3session_changeset);\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_session>)>\n  >\n  get sqlite3session_isempty =>\n      ffi.Native.addressOf(self.sqlite3session_isempty);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<sqlite3_session>, ffi.Pointer<sqlite3_char>)\n    >\n  >\n  get sqlite3session_attach => ffi.Native.addressOf(self.sqlite3session_attach);\n  ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_session>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Pointer<sqlite3_char>,\n        ffi.Pointer<ffi.Pointer<sqlite3_char>>,\n      )\n    >\n  >\n  get sqlite3session_diff => ffi.Native.addressOf(self.sqlite3session_diff);\n}\n\nfinal class sqlite3_char extends ffi.Opaque {}\n\nfinal class sqlite3 extends ffi.Opaque {}\n\nfinal class sqlite3_stmt extends ffi.Opaque {}\n\nfinal class sqlite3_backup extends ffi.Opaque {}\n\nfinal class sqlite3_api_routines extends ffi.Opaque {}\n\nfinal class sqlite3_session extends ffi.Opaque {}\n\nfinal class sqlite3_changeset_iter extends ffi.Opaque {}\n\nfinal class sqlite3_value extends ffi.Opaque {}\n\nfinal class sqlite3_context extends ffi.Opaque {}\n\nfinal class sqlite3_io_methods extends ffi.Struct {\n  @ffi.Int()\n  external int iVersion;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_file>)>\n  >\n  xClose;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_file>,\n        ffi.Pointer<ffi.Void>,\n        ffi.Int,\n        ffi.Int64,\n      )\n    >\n  >\n  xRead;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_file>,\n        ffi.Pointer<ffi.Void>,\n        ffi.Int,\n        ffi.Int64,\n      )\n    >\n  >\n  xWrite;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_file>, ffi.Int64)>\n  >\n  xTruncate;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_file>, ffi.Int)>\n  >\n  xSync;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<sqlite3_file>, ffi.Pointer<ffi.Int64>)\n    >\n  >\n  xFileSize;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_file>, ffi.Int)>\n  >\n  xLock;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_file>, ffi.Int)>\n  >\n  xUnlock;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<sqlite3_file>, ffi.Pointer<ffi.Int>)\n    >\n  >\n  xCheckReservedLock;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_file>,\n        ffi.Int,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  xFileControl;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_file>)>\n  >\n  xSectorSize;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_file>)>\n  >\n  xDeviceCharacteristics;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_file>,\n        ffi.Int,\n        ffi.Int,\n        ffi.Int,\n        ffi.Pointer<ffi.Pointer<ffi.Void>>,\n      )\n    >\n  >\n  xShmMap;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<sqlite3_file>, ffi.Int, ffi.Int, ffi.Int)\n    >\n  >\n  xShmLock;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Void Function(ffi.Pointer<sqlite3_file>)>\n  >\n  xShmBarrier;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_file>, ffi.Int)>\n  >\n  xShmUnmap;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_file>,\n        ffi.Int64,\n        ffi.Int,\n        ffi.Pointer<ffi.Pointer<ffi.Void>>,\n      )\n    >\n  >\n  xFetch;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_file>,\n        ffi.Int64,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  xUnfetch;\n}\n\nfinal class sqlite3_file extends ffi.Struct {\n  external ffi.Pointer<sqlite3_io_methods> pMethods;\n}\n\nfinal class sqlite3_vfs extends ffi.Struct {\n  @ffi.Int()\n  external int iVersion;\n\n  @ffi.Int()\n  external int szOsFile;\n\n  @ffi.Int()\n  external int mxPathname;\n\n  external ffi.Pointer<sqlite3_vfs> pNext;\n\n  external ffi.Pointer<ffi.Char> zName;\n\n  external ffi.Pointer<ffi.Void> pAppData;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_vfs>,\n        ffi.Pointer<ffi.Char>,\n        ffi.Pointer<sqlite3_file>,\n        ffi.Int,\n        ffi.Pointer<ffi.Int>,\n      )\n    >\n  >\n  xOpen;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<sqlite3_vfs>, ffi.Pointer<ffi.Char>, ffi.Int)\n    >\n  >\n  xDelete;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_vfs>,\n        ffi.Pointer<ffi.Char>,\n        ffi.Int,\n        ffi.Pointer<ffi.Int>,\n      )\n    >\n  >\n  xAccess;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_vfs>,\n        ffi.Pointer<ffi.Char>,\n        ffi.Int,\n        ffi.Pointer<ffi.Char>,\n      )\n    >\n  >\n  xFullPathname;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<ffi.Void> Function(\n        ffi.Pointer<sqlite3_vfs>,\n        ffi.Pointer<ffi.Char>,\n      )\n    >\n  >\n  xDlOpen;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(\n        ffi.Pointer<sqlite3_vfs>,\n        ffi.Int,\n        ffi.Pointer<ffi.Char>,\n      )\n    >\n  >\n  xDlError;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<ffi.NativeFunction<ffi.Void Function()>> Function(\n        ffi.Pointer<sqlite3_vfs>,\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<ffi.Char>,\n      )\n    >\n  >\n  xDlSym;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(ffi.Pointer<sqlite3_vfs>, ffi.Pointer<ffi.Void>)\n    >\n  >\n  xDlClose;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<sqlite3_vfs>, ffi.Int, ffi.Pointer<ffi.Char>)\n    >\n  >\n  xRandomness;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<sqlite3_vfs>, ffi.Int)>\n  >\n  xSleep;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<sqlite3_vfs>, ffi.Pointer<ffi.Double>)\n    >\n  >\n  xCurrentTime;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<sqlite3_vfs>, ffi.Int, ffi.Pointer<ffi.Char>)\n    >\n  >\n  xGetLastError;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(ffi.Pointer<sqlite3_vfs>, ffi.Pointer<ffi.Int64>)\n    >\n  >\n  xCurrentTimeInt64;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Int Function(\n        ffi.Pointer<sqlite3_vfs>,\n        ffi.Pointer<ffi.Char>,\n        ffi.Pointer<ffi.NativeFunction<ffi.Void Function()>>,\n      )\n    >\n  >\n  xSetSystemCall;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<ffi.NativeFunction<ffi.Void Function()>> Function(\n        ffi.Pointer<sqlite3_vfs>,\n        ffi.Pointer<ffi.Char>,\n      )\n    >\n  >\n  xGetSystemCall;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Pointer<ffi.Char> Function(\n        ffi.Pointer<sqlite3_vfs>,\n        ffi.Pointer<ffi.Char>,\n      )\n    >\n  >\n  xNextSystemCall;\n}\n"
  },
  {
    "path": "sqlite3/lib/src/ffi/memory.dart",
    "content": "import 'dart:convert';\nimport 'dart:ffi';\nimport 'dart:typed_data';\n\nimport 'package:ffi/ffi.dart' as ffi;\n\nimport 'libsqlite3.g.dart';\n\nconst allocate = ffi.malloc;\n\nfinal freeFinalizer = NativeFinalizer(allocate.nativeFree);\n\n/// Loads a null-pointer with a specified type.\n///\n/// The [nullptr] getter from `dart:ffi` can be slow due to being a\n/// `Pointer<Null>` on which the VM has to perform runtime type checks. See also\n/// https://github.com/dart-lang/sdk/issues/39488\n@pragma('vm:prefer-inline')\nPointer<T> nullPtr<T extends NativeType>() => nullptr.cast<T>();\n\nextension FreePointerExtension on Pointer {\n  void free() => allocate.free(this);\n}\n\nPointer<Uint8> allocateBytes(List<int> bytes, {int additionalLength = 0}) {\n  final ptr = allocate<Uint8>(bytes.length + additionalLength);\n\n  ptr.asTypedList(bytes.length + additionalLength)\n    ..setAll(0, bytes)\n    ..fillRange(bytes.length, bytes.length + additionalLength, 0);\n\n  return ptr;\n}\n\n/// Allocates bytes, returning `uint8_t*` pointer an a [Uint8List] backed by\n/// that memory region.\n///\n/// When the returned [Uint8List] is no longer referenced in Dart, the memory\n/// region will be freed.\n(Pointer<Uint8>, Uint8List) allocateBytesWithFinalizer(List<int> bytes) {\n  final ptr = allocateBytes(bytes);\n  return (ptr, ptr.asTypedList(bytes.length, finalizer: allocate.nativeFree));\n}\n\nextension Utf8Utils on Pointer<sqlite3_char> {\n  int get _length {\n    final asBytes = cast<Uint8>();\n    var length = 0;\n\n    for (; asBytes[length] != 0; length++) {}\n    return length;\n  }\n\n  String? readNullableString([int? length]) {\n    return isNullPointer ? null : readString(length);\n  }\n\n  String readString([int? length]) {\n    final resolvedLength = length ??= _length;\n    final dartList = cast<Uint8>().asTypedList(resolvedLength);\n\n    return utf8.decode(dartList);\n  }\n\n  static Pointer<sqlite3_char> allocateZeroTerminated(String string) {\n    return allocateBytes(utf8.encode(string), additionalLength: 1).cast();\n  }\n}\n\nextension PointerUtils on Pointer<NativeType> {\n  bool get isNullPointer => address == 0;\n\n  Uint8List copyRange(int length) {\n    final list = Uint8List(length);\n    list.setAll(0, cast<Uint8>().asTypedList(length));\n    return list;\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/functions.dart",
    "content": "/// @docImport 'dart:typed_data';\nlibrary;\n\nimport 'package:meta/meta.dart';\n\n/// A filter function without any arguments.\ntypedef VoidPredicate = bool Function();\n\n/// A collating function provided to a sql collation.\n///\n/// The function must return a `int`.\n///\n/// If invoking the function throws a Dart exception, the sql function will\n/// result with an error result as well.\ntypedef CollatingFunction = int Function(String? textA, String? textB);\n\n/// A scalar function exposed to sql.\n///\n/// {@template sqlite3_function_behavior}\n/// The function must either return a `bool`, `num`, `String`, `List<int>`,\n/// `BigInt` or `null`. It may also return a [SubtypedValue] thereof, see that\n/// class for more details\n///\n/// If invoking the function throws a Dart exception, the sql function will\n/// result with an error result as well.\n/// {@endtemplate}\ntypedef ScalarFunction = Object? Function(SqliteArguments arguments);\n\n/// Interface for application-defined aggregate functions.\n///\n/// A subclass of [AggregateFunction] should hold no state across invocations.\n/// All its state needed during a computation should be stored in an instance of\n/// [V].\n///\n/// As an example, take a look at the following Dart implementation of the\n/// `count()` aggregate. Recall that there are two versions of `count()`. With\n/// zero arguments, `count()` returns the number of rows. With one argument,\n/// `count()` returns the number of times that the argument was non-null.\n///\n/// ```dart\n/// class MyCount implements AggregateFunction<int> {\n///  @override\n///  AggregateContext<int> createContext() => AggregateContext(0);\n///\n///  @override\n///  void step(List<Object> arguments, AggregateContext<int> context) {\n///    if (arguments.isEmpty || arguments.first != null) {\n///      context.value++;\n///    }\n///  }\n///\n///  @override\n///  Object finalize(AggregateContext<int> context) {\n///    return context.value;\n///  }\n///}\n/// ```\n///\n/// {@category common}\n@immutable\nabstract class AggregateFunction<V> {\n  /// Creates an initial context holding the initial value before [step] is\n  /// called.\n  ///\n  /// If [step] is never called before the query concludes, the initial context\n  /// is also used for [finalize].\n  AggregateContext<V> createContext();\n\n  /// Adds a new row to the aggregate.\n  ///\n  /// The [context] should be modified to reflect the new row calling this\n  /// function with [arguments].\n  void step(SqliteArguments arguments, AggregateContext<V> context);\n\n  /// Computes the final value from a populated [context].\n  ///\n  /// This is the last call made with the given [context], so this function may\n  /// also choose to clean up resources associated with the aggregate context.\n  ///\n  /// {@macro sqlite3_function_behavior}\n  Object? finalize(AggregateContext<V> context);\n}\n\n/// A window function for sqlite3.\n///\n/// In addition to [AggregateFunction]s, which run over an entire query, window\n/// functions can run over a subset of rows as defined in an `OVER` clause.\n///\n/// This example defines a window function taking a single argument, which must\n/// be an int. The result of the window function is the sum of all arguments\n/// in the current window.\n///\n/// ```dart\n/// class _SumInt implements WindowFunction<int> {\n///  @override\n///  AggregateContext<int> createContext() => AggregateContext(0);\n///\n///  @override\n///  Object? finalize(AggregateContext<int> context) {\n///    // There's nothing to finalize, if our [createContext] had side-effects\n///    // we'd have to undo them here.\n///    return value(context);\n///  }\n///\n///  int _argument(List<Object?> arguments) {\n///    return arguments.single! as int;\n///  }\n///\n///  @override\n///  void inverse(List<Object?> arguments, AggregateContext<int> context) {\n///    context.value -= _argument(arguments);\n///  }\n///\n///  @override\n///  void step(List<Object?> arguments, AggregateContext<int> context) {\n///    context.value += _argument(arguments);\n///  }\n///\n///  @override\n///  Object? value(AggregateContext<int> context) => context.value;\n///}\n/// ```\n///\n/// {@category common}\n\n@immutable\nabstract class WindowFunction<V> implements AggregateFunction<V> {\n  /// Obtain the current aggregate in the window.\n  ///\n  /// This is similar to [finalize], but shouldn't be used to clean up resources\n  /// as subsequent calls may happen with the same [context].\n  Object? value(AggregateContext<V> context);\n\n  /// Removes the row of [arguments] from this window.\n  void inverse(SqliteArguments arguments, AggregateContext<V> context);\n}\n\n/// Application-defined context used to compute results in aggregate functions.\n///\n/// {@category common}\nfinal class AggregateContext<V> {\n  /// The current value of this context.\n  V value;\n\n  /// Creates a context with an initial [value].\n  AggregateContext(this.value);\n}\n\n/// Describes how many arguments an application-defined sql function can take.\n///\n/// {@category common}\nfinal class AllowedArgumentCount {\n  final int allowedArgs;\n\n  const AllowedArgumentCount(this.allowedArgs);\n  const AllowedArgumentCount.any() : allowedArgs = -1;\n}\n\n/// Arguments passed to a user-defined SQLite function.\n///\n/// Arguments are represented as a regular [List] of Dart [Object]s of the\n/// following types: [int], [double], [String], [Null], [Uint8List].\n///\n/// In addition, the [subtypeOf] method can be used to obtain the\n/// [subtype](https://sqlite.org/c3ref/value_subtype.html) of data passed to the\n/// function. To use [subtypeOf], the `subtype: true` parameter should be set\n/// when registering the function.\n/// {@category common}\nabstract interface class SqliteArguments implements List<Object?> {\n  /// Returns the [subtype](https://sqlite.org/c3ref/value_subtype.html) of an\n  /// argument passed to the function.\n  int subtypeOf(int argumentIndex);\n}\n\n/// A value that will be passed to SQLite as a return value with an additional\n/// subtype (encoded as a byte value) attached to it.\n///\n/// For functions that may return this value, the `subtype: true` parameter\n/// should be set when registering the function.\n///\n/// For more information, see [Setting The Subtype Of An SQL Function](https://sqlite.org/c3ref/result_subtype.html).\n/// {@category common}\nextension type SubtypedValue._((Object?, int) _info) {\n  factory SubtypedValue(Object? value, int subtype) {\n    return SubtypedValue._((value, subtype));\n  }\n\n  /// The underlying value to return.\n  Object? get originalValue => _info.$1;\n\n  /// The configured subtype of the value.\n  int get subtype => _info.$2;\n}\n"
  },
  {
    "path": "sqlite3/lib/src/hook/asset_hashes.dart",
    "content": "// This file contains hashes of SQLite binaries downloaded by the default hook.\n// For tests, it is replaced with actual assets. For releases, a pre-release\n// check asserts it's up-to-date.\n//\n// Generated by tool/write_asset_hashes.dart\n\n// dart format off\n// ignore: unnecessary_nullable_for_final_variable_declarations\nconst String? releaseTag = 'sqlite3-3.3.1';\n\nconst Map<String, String> assetNameToSha256Hash = {\n  'libsqlite3.arm.android.so': '72d43c7c7119947ce2a7525bd63c4795b3cea250c09dba98c4fb9e52c7dbec82',\n  'libsqlite3.arm.linux.so': '1d8b40878c73b8204333fa40c2d175c439a9e7a95e0644f7a14ed926cd748061',\n  'libsqlite3.arm64.android.so': 'cf2378ec6fa20479184d6c44b03c332343d2e0f5c648591f5302dca27ed41a94',\n  'libsqlite3.arm64.ios.dylib': '81d4c606fecdd06cac958c7ed4420ea274d94bcbf13704f84271920be6b8313d',\n  'libsqlite3.arm64.ios_sim.dylib': '3b3ad68054d03bbd2ae3b12c1dc316e94bf8d30ec6712d3d9e17884894be9185',\n  'libsqlite3.arm64.linux.so': '0541443d38cd79160f6262e6a59892657d640459fef8acdd1f4f29a4ed0d2612',\n  'libsqlite3.arm64.macos.dylib': '44ae2c22adb504b50b9019535d5c7d901eed93cb380b526e710ecb64f529a742',\n  'libsqlite3.ia32.android.so': 'eb28aed906d4b28ab81cac7742b37652e68b599bb95547cf3fcac456939b2606',\n  'libsqlite3.ia32.linux.so': 'abfef4eee37a1a7f93c4234cfdb530872b489ebd6eb535b8a3fae9ce0f28805a',\n  'libsqlite3.riscv64.linux.so': 'f478d471f6b466631cc91a9320f94f3bba9209e419f7ab344fd1ca7547df6839',\n  'libsqlite3.x64.android.so': '2f235dff75b348ee62e5ae01177ea77ce1b1c9ebae7cb1a499319e7c82ec1358',\n  'libsqlite3.x64.ios_sim.dylib': '6c15b38f4014cf581d0665c81860f2f1f81e7895878057ca93305b7112bf2b11',\n  'libsqlite3.x64.linux.so': '148c51687ac3be3487873845690ddbf3d8ee099a5521a193c856008907fb7361',\n  'libsqlite3.x64.macos.dylib': '0d62e4fe358da23494823804ed66e0dbed43d6f9a5ab71618fad713e4e6d1a38',\n  'libsqlite3mc.arm.android.so': '7acdde3afc25684b7d14dc3b2af7bb56ccc78032413480b0036af3431c23f45c',\n  'libsqlite3mc.arm.linux.so': 'cd960fa458519334c7d90ea7ffbe2e652f9e2960d707abd0c9e05b890f999eca',\n  'libsqlite3mc.arm64.android.so': '858536d508bb0b60f8b06f6f6c1d4465c52431a043ad723f655ea0859e57965c',\n  'libsqlite3mc.arm64.ios.dylib': '1a45e2fdfdd14eaf4e7f04f35ae4cec153c042b6cfef74a3e56001dd3d2dc589',\n  'libsqlite3mc.arm64.ios_sim.dylib': 'b49353f173969715cd7dbadb311b22c5cba1d7701fdfd1e4721dadf4c792cc15',\n  'libsqlite3mc.arm64.linux.so': '2bb3a48cc6baa6697f4a1e8989799ae852e05fc779d7cec0443f01f76a0787c4',\n  'libsqlite3mc.arm64.macos.dylib': '1fb217fa065b1653b32257eb78e15bc92e5c29ba6ff983ea1b91b2b03e3d35ce',\n  'libsqlite3mc.ia32.android.so': '23e0625f5df62059432c916c123af2e52547a28b1ef8a7b2ddd76db2d8c5e128',\n  'libsqlite3mc.riscv64.linux.so': '93a8b841b07b411846dce367e6a9e2e6e56dad438579926f04b4e65e4e581b40',\n  'libsqlite3mc.x64.android.so': 'a64a3bf30b951915fe196dad47733b8d94351b9711c845858e1079fa35906fef',\n  'libsqlite3mc.x64.ios_sim.dylib': '1bc73ad3882ed5a179528dacdb9c4ec562780b500a5ea4d00cef460646ce6a9a',\n  'libsqlite3mc.x64.linux.so': '9139316c6bffee12ea095c5353fa2a10362aa3698cf04cf12ffcf982e248dc1a',\n  'libsqlite3mc.x64.macos.dylib': '21cd27136d567037eb039228c78c66e904bb20d953f630e2ad5e373ad9f69912',\n  'sqlite3.arm64.windows.dll': 'eb4a75e3370afdf42046b8d87e3e1b0e6a6b9162f7706af58543457cdf4614ae',\n  'sqlite3.debug.wasm': '20893f1746963efcd1e2ef03f5183b2b919f7454cc3419622818f9bea9c09fc8',\n  'sqlite3.ia32.windows.dll': '63e90b2642a59cd4a10c6e47aa19cf3e304a30567f81548c01a5a3ad55ad6797',\n  'sqlite3.wasm': '3c616bf0d51380daaed7871b3110a634a17c703c22d82cba7a2a73216769e680',\n  'sqlite3.x64.windows.dll': '15b1e7bee3fede1c90eab94c7eb9bb36ae29c33aa2d61bdc0de546326ae6c089',\n  'sqlite3mc.arm64.windows.dll': 'cf492f9f796b9e361497150c5bb681f897f1befab4abd1cbd4031a0c02d70515',\n  'sqlite3mc.ia32.windows.dll': '4ed49dea8e787229d093e02fd0770c5ad7a6ad39f3fa1c48e9924893d6d831f8',\n  'sqlite3mc.wasm': '79e8fa22aeec7f3ea18de0c54159418e7d23957dd583ba89500704c427329805',\n  'sqlite3mc.x64.windows.dll': '310882a529f811d34d8b1e29e23f9a6147f6cb0e56bbc5586f2ce3acb00f76ab',\n};\n"
  },
  {
    "path": "sqlite3/lib/src/hook/assets.dart",
    "content": "import 'package:code_assets/code_assets.dart';\n\nimport 'asset_hashes.dart';\n\nenum LibraryType {\n  /// SQLite build, with sources taken from https://sqlite.org/download.html.\n  sqlite3,\n\n  /// SQLite multiple ciphers build, with sources taken from\n  /// https://github.com/utelle/SQLite3MultipleCiphers.\n  sqlite3mc;\n\n  String get basename => switch (this) {\n    LibraryType.sqlite3 => 'sqlite3',\n    LibraryType.sqlite3mc => 'sqlite3mc',\n  };\n\n  String filename(CodeConfig config) {\n    final basename = this.basename;\n    return switch (config.targetOS) {\n      OS.windows => '$basename.dll',\n      OS.iOS || OS.macOS => 'lib$basename.dylib',\n      OS.android || OS.linux || _ => 'lib$basename.so',\n    };\n  }\n}\n\nenum TargetOperatingSystem {\n  windows(OS.windows),\n  macos(OS.macOS),\n  linux(OS.linux),\n  ios(OS.iOS),\n  iosSimulator(OS.iOS, customName: 'ios_sim'),\n  android(OS.android),\n  unknown(OS.linux, customName: 'unknown');\n\n  final OS hookOS;\n  final String? _nameOverride;\n\n  const TargetOperatingSystem(this.hookOS, {String? customName})\n    : _nameOverride = customName;\n\n  String get name => _nameOverride ?? hookOS.name;\n\n  static TargetOperatingSystem forConfig(CodeConfig config) {\n    return switch (config.targetOS) {\n      OS.windows => windows,\n      OS.macOS => macos,\n      OS.linux => linux,\n      OS.iOS when config.iOS.targetSdk == IOSSdk.iPhoneOS => ios,\n      OS.iOS when config.iOS.targetSdk == IOSSdk.iPhoneSimulator =>\n        iosSimulator,\n      OS.android => android,\n      _ => unknown,\n    };\n  }\n}\n\nfinal class PrebuiltSqliteLibrary {\n  /// The operating system this library has been compiled for.\n  final TargetOperatingSystem os;\n\n  /// The target architecture this library has been compiled for.\n  final Architecture architecture;\n\n  /// The built library (sqlite3 or sqlite3mc).\n  final LibraryType type;\n\n  PrebuiltSqliteLibrary({\n    required this.os,\n    required this.architecture,\n    required this.type,\n  });\n\n  bool get isSupported {\n    final architectures = _supportedAbis[os];\n    if (architectures == null || !architectures.contains(architecture)) {\n      return false;\n    }\n\n    // Compiling sqlite3mc fails for i686 linux builds, so report that as not\n    // supported.\n    final unsupportedCiphersBuild =\n        os == TargetOperatingSystem.linux &&\n        architecture == Architecture.ia32 &&\n        type == LibraryType.sqlite3mc;\n    return !unsupportedCiphersBuild;\n  }\n\n  /// The name of this prebuilt library in GitHub releases.\n  String get sourceFilename {\n    if (!isSupported) {\n      throw StateError('Unsupported binary does not have a filename');\n    }\n\n    return os.hookOS.dylibFileName(\n      '${type.basename}.${architecture.name}.${os.name}',\n    );\n  }\n\n  /// The directory under [HookInput.outputDirectoryShared] used to download\n  /// this library.\n  ///\n  /// There's a test asserting that this is unique for all valid values.\n  String get dirname => 'download-${hashCode.toRadixString(16)}';\n\n  @override\n  int get hashCode => Object.hash(\n    os,\n    // Note: Architecture does not have a stable hash code, so we hash its\n    // name instead.\n    architecture.name,\n    type,\n    // This is a constant, but if affects the dirname we want for hook\n    // invocations.\n    releaseTag,\n  );\n\n  @override\n  bool operator ==(Object other) {\n    return other is PrebuiltSqliteLibrary &&\n        other.os == os &&\n        other.architecture == architecture &&\n        other.type == type;\n  }\n\n  void checkSupported() {\n    if (!isSupported) {\n      throw UnsupportedError(\n        'There is no pre-compiled sqlite3 library for this target. '\n        'Please file an issue on https://github.com/simolus3/sqlite3.dart or '\n        'use a custom build.',\n      );\n    }\n  }\n\n  /// Finds the library instace for the target requested in [CodeConfig].\n  static PrebuiltSqliteLibrary resolve(CodeConfig config, LibraryType type) {\n    return PrebuiltSqliteLibrary(\n      os: TargetOperatingSystem.forConfig(config),\n      architecture: config.targetArchitecture,\n      type: type,\n    );\n  }\n\n  /// All prebuilt sqlite3 libraries attached to GH releases.\n  static Iterable<PrebuiltSqliteLibrary> get all sync* {\n    for (final MapEntry(key: os, value: abis) in _supportedAbis.entries) {\n      for (final abi in abis) {\n        for (final product in LibraryType.values) {\n          final built = PrebuiltSqliteLibrary(\n            os: os,\n            architecture: abi,\n            type: product,\n          );\n          if (built.isSupported) {\n            yield built;\n          }\n        }\n      }\n    }\n  }\n\n  static const _supportedAbis = {\n    TargetOperatingSystem.linux: [\n      Architecture.ia32,\n      Architecture.x64,\n      Architecture.riscv64,\n      Architecture.arm,\n      Architecture.arm64,\n    ],\n    TargetOperatingSystem.windows: [\n      Architecture.ia32,\n      Architecture.x64,\n      Architecture.arm64,\n    ],\n    TargetOperatingSystem.macos: [Architecture.x64, Architecture.arm64],\n    TargetOperatingSystem.ios: [Architecture.arm64],\n    TargetOperatingSystem.iosSimulator: [Architecture.x64, Architecture.arm64],\n    TargetOperatingSystem.android: [\n      Architecture.ia32,\n      Architecture.x64,\n      Architecture.riscv64,\n      Architecture.arm,\n      Architecture.arm64,\n    ],\n  };\n}\n"
  },
  {
    "path": "sqlite3/lib/src/hook/description.dart",
    "content": "import 'dart:convert';\nimport 'dart:io';\nimport 'dart:typed_data';\n\nimport 'package:code_assets/code_assets.dart';\nimport 'package:crypto/crypto.dart';\nimport 'package:hooks/hooks.dart';\nimport 'package:path/path.dart' as p;\n\nimport 'assets.dart';\nimport 'asset_hashes.dart';\nimport 'utils.dart';\n\n/// Possible sources to obtain a `libsqlite3.so` (or the equivalent for other\n/// platforms).\nsealed class SqliteBinary {\n  static SqliteBinary forBuild(BuildInput input) {\n    final userDefines = input.userDefines;\n    switch (userDefines['source']) {\n      case null:\n      case 'sqlite3':\n        return PrecompiledFromGithubAssets(LibraryType.sqlite3);\n      case 'sqlite3mc':\n        return PrecompiledFromGithubAssets(LibraryType.sqlite3mc);\n      case 'test-sqlite3':\n        return PrecompiledForTesting(LibraryType.sqlite3);\n      case 'test-sqlite3mc':\n        return PrecompiledForTesting(LibraryType.sqlite3mc);\n      case 'system':\n        final osSpecificNameKey = 'name_${input.config.code.targetOS.name}';\n\n        return LookupSystem(\n          ((userDefines[osSpecificNameKey] ?? userDefines['name'] ?? 'sqlite3')\n              as String),\n        );\n      case 'process':\n        return SimpleBinary.fromProcess;\n      case 'executable':\n        return SimpleBinary.fromExecutable;\n      case 'source':\n        return CompileSqlite(\n          sourceFile: userDefines.path('path')!.toFilePath(),\n          defines: CompilerDefines.parse(\n            userDefines,\n            input.config.code.targetOS,\n          ),\n        );\n      default:\n        throw ArgumentError.value(\n          userDefines['source'],\n          'source',\n          'Unknown source. Must be sqlite3, sqlite3mc, system, process or '\n              'executable',\n        );\n    }\n  }\n}\n\n/// A [SqliteBinary] not built or downloaded by the hook.\nsealed class ExternalSqliteBinary implements SqliteBinary {\n  LinkMode resolveLinkMode(BuildInput input);\n}\n\n/// Load a `sqlite3` library via `dlopen('libsqlite3.so')` or another platform-\n/// specific name,\nfinal class LookupSystem implements ExternalSqliteBinary {\n  /// The base name, used to construct an OS-specific library name.\n  final String name;\n\n  const LookupSystem(this.name);\n\n  @override\n  LinkMode resolveLinkMode(BuildInput input) {\n    final targetOS = input.config.code.targetOS;\n\n    return DynamicLoadingSystem(\n      Uri.parse(targetOS.libraryFileName(name, DynamicLoadingBundled())),\n    );\n  }\n}\n\n/// Options for resolving a sqlite binary that don't require nested options.\nenum SimpleBinary implements ExternalSqliteBinary {\n  /// Lookup a `sqlite3` library that has already been loaded into the process.\n  fromProcess,\n\n  /// Lookup `sqlite3` symbols in the current executable.\n  fromExecutable;\n\n  @override\n  LinkMode resolveLinkMode(BuildInput input) {\n    switch (this) {\n      case SimpleBinary.fromProcess:\n        return LookupInProcess();\n      case SimpleBinary.fromExecutable:\n        return LookupInExecutable();\n    }\n  }\n}\n\nsealed class PrecompiledBinary implements SqliteBinary {\n  final LibraryType type;\n\n  const PrecompiledBinary._(this.type);\n\n  PrebuiltSqliteLibrary resolveLibrary(CodeConfig config) {\n    return PrebuiltSqliteLibrary.resolve(config, type);\n  }\n\n  Stream<Uint8List> _fetchFromSource(\n    BuildInput input,\n    BuildOutputBuilder output,\n    String filename,\n  );\n\n  Stream<Uint8List> fetch(\n    BuildInput input,\n    BuildOutputBuilder output,\n    PrebuiltSqliteLibrary library,\n  ) {\n    return Stream.multi((listener) {\n      final (filename, hash) = _filenameAndHash(library);\n      final source = _fetchFromSource(input, output, filename);\n\n      final digestSink = OnceSink<Digest>();\n      final hasher = sha256.startChunkedConversion(digestSink);\n\n      source.listen(\n        (data) {\n          listener.addSync(data);\n          hasher.add(data);\n        },\n        onError: listener.addErrorSync,\n        onDone: () {\n          hasher.close();\n          final digest = digestSink.value!;\n\n          if (digest.toString() != hash) {\n            listener.addError(\n              StateError(\n                'Hash of downloaded file $filename is $digest, expected $hash.',\n              ),\n            );\n          }\n\n          listener.close();\n        },\n      );\n    });\n  }\n\n  (String, String) _filenameAndHash(PrebuiltSqliteLibrary library) {\n    final filename = library.sourceFilename;\n    final expectedHash = assetNameToSha256Hash[filename];\n    if (expectedHash == null) {\n      throw UnsupportedError(\n        'No known file hash for $filename. '\n        'Please file an issue on https://github.com/simolus3/sqlite3.dart with '\n        'the version of the sqlite3 package in use.',\n      );\n    }\n\n    return (filename, expectedHash);\n  }\n\n  /// Downloads this file into [BuildInput.outputDirectoryShared].\n  Future<File> downloadIntoOutputDirectoryShared(\n    BuildInput input,\n    BuildOutputBuilder output,\n    PrebuiltSqliteLibrary library,\n  ) async {\n    // Use a subdirectory of shared outputs to allow caching.\n    final dir = Directory(\n      input.outputDirectoryShared.resolve(library.dirname).toFilePath(),\n    );\n    if (!dir.existsSync()) {\n      dir.createSync();\n    }\n\n    // Note: There are name conflicts here, e.g. an Android build will typically\n    // generate a number of libsqlite3.so file names. This is not an issue\n    // because the parent directory is unique per ABI.\n    // We need the file name to be the same because of constraints on Apple\n    // platforms, see https://github.com/flutter/website/pull/13047.\n    final fileName = input.config.code.targetOS.libraryFileName(\n      library.type.basename,\n      DynamicLoadingBundled(),\n    );\n\n    final downloadedFile = File(p.join(dir.path, fileName));\n    if (downloadedFile.existsSync()) {\n      // Hook is re-run with an existing cache. Does the file match what we\n      // expect?\n      final (_, expectedHash) = _filenameAndHash(library);\n      final actualHash = await downloadedFile\n          .openRead()\n          .transform(sha256)\n          .first;\n\n      if (actualHash.toString() == expectedHash) {\n        // We can reuse the file!\n        return downloadedFile;\n      }\n    }\n\n    final tmp = File('${downloadedFile.path}.tmp');\n    await fetch(input, output, library).cast<List<int>>().pipe(tmp.openWrite());\n    tmp.renameSync(downloadedFile.path);\n    return downloadedFile;\n  }\n}\n\n/// Download pre-compiled binaries from the GH release for the `sqlite3`\n/// package.\nfinal class PrecompiledFromGithubAssets extends PrecompiledBinary {\n  const PrecompiledFromGithubAssets(super.type) : super._();\n\n  @override\n  Stream<Uint8List> _fetchFromSource(\n    BuildInput input,\n    BuildOutputBuilder output,\n    String filename,\n  ) async* {\n    final client = HttpClient()\n      // From Dart 3.11, proxy-related environment variables are passed to\n      // hooks. We respect them to ensure we can download these binaries in\n      // environments where that's required\n      // https://github.com/simolus3/sqlite3.dart/issues/335\n      ..findProxy = HttpClient.findProxyFromEnvironment;\n    final uri = Uri.https(\n      'github.com',\n      'simolus3/sqlite3.dart/releases/download/${releaseTag!}/$filename',\n    );\n\n    HttpClientResponse response;\n    try {\n      final request = await client.getUrl(uri);\n      response = await request.close();\n    } catch (e, s) {\n      // Improve error message by providing some context about why we download\n      // SQLite.\n      Error.throwWithStackTrace(CouldNotDownloadException(uri, e), s);\n    }\n\n    await for (final chunk in response) {\n      if (chunk is Uint8List) {\n        yield chunk;\n      } else {\n        yield Uint8List.fromList(chunk);\n      }\n    }\n\n    client.close();\n  }\n}\n\n/// A variant of [PrecompiledFromGithubAssets] that doesn't require a github\n/// release.\n///\n/// This is only used to test the package: We download the assets we would\n/// upload for a release build into a folder, and then have the hook look them\n/// up there.\nfinal class PrecompiledForTesting extends PrecompiledBinary {\n  const PrecompiledForTesting(super.type) : super._();\n\n  @override\n  Stream<Uint8List> _fetchFromSource(\n    BuildInput input,\n    BuildOutputBuilder output,\n    String filename,\n  ) {\n    final uri = input.userDefines.path('directory')!.resolve(filename);\n    output.dependencies.add(uri);\n\n    return File(uri.toFilePath()).openRead().map(\n      (event) => switch (event) {\n        final Uint8List bytes => bytes,\n        _ => Uint8List.fromList(event),\n      },\n    );\n  }\n}\n\nfinal class CompileSqlite implements SqliteBinary {\n  /// Path to the `sqlite3.c` source file to compile.\n  final String sourceFile;\n\n  /// User-defines for the SQLite compilation.\n  final CompilerDefines defines;\n\n  CompileSqlite({required this.sourceFile, required this.defines});\n}\n\n/// If we're compiling SQLite from source, a way to obtain these sources.\nsealed class SqliteSources {}\n\n/// Obtain a copy of SQLite by downloading the amalgamation.\nfinal class DownloadAmalgamation implements SqliteSources {\n  /// The URL to download SQLite from.\n  final String uri;\n\n  /// The name of the single C file to compile from the downloaded archive.\n  final String filename;\n\n  const DownloadAmalgamation({\n    this.uri = 'https://sqlite.org/2025/sqlite-amalgamation-3500200.zip',\n    this.filename = 'sqlite3.c',\n  });\n\n  // ignore: unused_element\n  factory DownloadAmalgamation._parse(Object definition) {\n    if (definition is String) {\n      return DownloadAmalgamation(uri: definition);\n    } else if (definition is Map) {\n      return DownloadAmalgamation(\n        uri: definition['uri'] as String,\n        filename: (definition['filename'] as String?) ?? 'sqlite3.c',\n      );\n    } else {\n      throw ArgumentError.value(\n        definition,\n        'definition',\n        'Unknown amalgamation description',\n      );\n    }\n  }\n}\n\n/// Definition options to use when compiling SQLite.\nextension type const CompilerDefines(Map<String, String?> flags)\n    implements Map<String, String?> {\n  CompilerDefines overrideWith(CompilerDefines other) {\n    return CompilerDefines({...flags, ...other.flags});\n  }\n\n  static CompilerDefines parse(HookInputUserDefines defines, OS targetOS) {\n    final obj = defines['defines'];\n\n    // Include default options when not explicitly disabled.\n    final includeDefaults = switch (obj) {\n      {'default_options': false} => false,\n      _ => true,\n    };\n\n    // Allow adding additional options under defines key or as a top-level\n    // array.\n    final additionalDefines = switch (obj) {\n      {'defines': final options} => _parseOption(options),\n      final List<Object?> list => _parseOption(list),\n      _ => null,\n    };\n\n    final start = includeDefaults\n        ? CompilerDefines.defaults(targetOS == OS.windows)\n        : const CompilerDefines({});\n\n    return switch (additionalDefines) {\n      final added? => start.overrideWith(added),\n      null => start,\n    };\n  }\n\n  static CompilerDefines _parseOption(Object? option) {\n    if (option is List) {\n      return _parseLines(option.cast());\n    } else if (option is Map) {\n      return CompilerDefines(option.cast());\n    } else {\n      throw ArgumentError.value(\n        option,\n        'option',\n        'Could not extract defines, should be an array or map of options',\n      );\n    }\n  }\n\n  static CompilerDefines _parseLines(Iterable<String> lines) {\n    final entries = <String, String?>{};\n    for (final line in lines) {\n      if (line.contains('=')) {\n        final [key, value] = line.trim().split('=');\n        entries[key] = value;\n      } else {\n        entries[line.trim()] = null;\n      }\n    }\n\n    return CompilerDefines(entries);\n  }\n\n  static CompilerDefines defaults(bool windows) {\n    final defines = _parseLines(const LineSplitter().convert(_defaultDefines));\n    if (windows) {\n      defines['SQLITE_API'] = '__declspec(dllexport)';\n    }\n    return defines;\n  }\n}\n\nfinal class CouldNotDownloadException {\n  final Uri uri;\n  final Object inner;\n\n  CouldNotDownloadException(this.uri, this.inner);\n\n  @override\n  String toString() {\n    final message = StringBuffer(\n      'By default, this package downloads a pre-compiled SQLite library.',\n    );\n\n    void line(String line) => message\n      ..writeln()\n      ..write(line);\n\n    line('This failed (attepted to download $uri).');\n\n    if (inner is HandshakeException) {\n      line(\n        'This looks like a certificate issue. If you need to use proxies, note '\n        'that HTTP_PROXY and related environment variables are respected.',\n      );\n\n      if (Platform.isWindows) {\n        line(\n          'Windows loads trusted certificates dynamically, which can cause '\n          'issues in Dart (dartbug.com/52266).',\n        );\n        line(\n          'Try running this command in PowerShell, and re-build your app '\n          'afterwards: Invoke-WebRequest $uri',\n        );\n      }\n    }\n\n    line(\n      'For alternatives to downloading SQLite, see '\n      'https://pub.dev/documentation/sqlite3/latest/topics/hook-topic.html',\n    );\n    line('Original cause: $inner');\n\n    return message.toString();\n  }\n}\n\n// Keep in sync with tool/compile_sqlite.dart\nconst _defaultDefines = '''\n  SQLITE_ENABLE_DBSTAT_VTAB\n  SQLITE_ENABLE_FTS5\n  SQLITE_ENABLE_RTREE\n  SQLITE_ENABLE_MATH_FUNCTIONS\n  SQLITE_DQS=0\n  SQLITE_DEFAULT_MEMSTATUS=0\n  SQLITE_TEMP_STORE=2\n  SQLITE_MAX_EXPR_DEPTH=0\n  SQLITE_STRICT_SUBTYPE=1\n  SQLITE_OMIT_AUTHORIZATION\n  SQLITE_OMIT_DECLTYPE\n  SQLITE_OMIT_DEPRECATED\n  SQLITE_OMIT_PROGRESS_CALLBACK\n  SQLITE_OMIT_SHARED_CACHE\n  SQLITE_OMIT_TCL_VARIABLE\n  SQLITE_OMIT_TRACE\n  SQLITE_USE_ALLOCA\n  SQLITE_ENABLE_SESSION\n  SQLITE_ENABLE_PREUPDATE_HOOK\n  SQLITE_UNTESTABLE\n  SQLITE_HAVE_ISNAN\n  SQLITE_HAVE_LOCALTIME_R\n  SQLITE_HAVE_LOCALTIME_S\n  SQLITE_HAVE_MALLOC_USABLE_SIZE\n  SQLITE_HAVE_STRCHRNUL\n''';\n"
  },
  {
    "path": "sqlite3/lib/src/hook/used_symbols.dart",
    "content": "// Generated by tool/generate_bindings.dart\n// Used to generate a linker script hiding functions we don't need.\n\n// dart format off\nconst usedSqliteSymbols = {\n  'sqlite3_temp_directory',\n  'sqlite3_initialize',\n  'sqlite3_free',\n  'sqlite3_open_v2',\n  'sqlite3_close_v2',\n  'sqlite3_db_filename',\n  'sqlite3_compileoption_used',\n  'sqlite3_compileoption_get',\n  'sqlite3_busy_handler',\n  'sqlite3_extended_result_codes',\n  'sqlite3_extended_errcode',\n  'sqlite3_errmsg',\n  'sqlite3_errstr',\n  'sqlite3_error_offset',\n  'sqlite3_libversion',\n  'sqlite3_sourceid',\n  'sqlite3_libversion_number',\n  'sqlite3_last_insert_rowid',\n  'sqlite3_changes',\n  'sqlite3_exec',\n  'sqlite3_update_hook',\n  'sqlite3_commit_hook',\n  'sqlite3_rollback_hook',\n  'sqlite3_get_autocommit',\n  'sqlite3_prepare_v2',\n  'sqlite3_prepare_v3',\n  'sqlite3_finalize',\n  'sqlite3_step',\n  'sqlite3_reset',\n  'sqlite3_stmt_isexplain',\n  'sqlite3_stmt_readonly',\n  'sqlite3_column_count',\n  'sqlite3_bind_parameter_count',\n  'sqlite3_bind_parameter_index',\n  'sqlite3_column_name',\n  'sqlite3_column_table_name',\n  'sqlite3_bind_blob64',\n  'sqlite3_bind_double',\n  'sqlite3_bind_int64',\n  'sqlite3_bind_null',\n  'sqlite3_bind_text',\n  'sqlite3_column_blob',\n  'sqlite3_column_double',\n  'sqlite3_column_int64',\n  'sqlite3_column_text',\n  'sqlite3_column_bytes',\n  'sqlite3_column_type',\n  'sqlite3_value_blob',\n  'sqlite3_value_double',\n  'sqlite3_value_type',\n  'sqlite3_value_int64',\n  'sqlite3_value_text',\n  'sqlite3_value_bytes',\n  'sqlite3_value_subtype',\n  'sqlite3_create_function_v2',\n  'sqlite3_create_window_function',\n  'sqlite3_aggregate_context',\n  'sqlite3_user_data',\n  'sqlite3_result_blob64',\n  'sqlite3_result_double',\n  'sqlite3_result_error',\n  'sqlite3_result_int64',\n  'sqlite3_result_null',\n  'sqlite3_result_text',\n  'sqlite3_result_subtype',\n  'sqlite3_create_collation_v2',\n  'sqlite3_backup_init',\n  'sqlite3_backup_step',\n  'sqlite3_backup_finish',\n  'sqlite3_backup_remaining',\n  'sqlite3_backup_pagecount',\n  'sqlite3_auto_extension',\n  'sqlite3_db_config',\n  'sqlite3_vfs_register',\n  'sqlite3_vfs_unregister',\n  'sqlite3session_create',\n  'sqlite3session_delete',\n  'sqlite3session_enable',\n  'sqlite3session_indirect',\n  'sqlite3changeset_start',\n  'sqlite3changeset_finalize',\n  'sqlite3changeset_next',\n  'sqlite3changeset_op',\n  'sqlite3changeset_old',\n  'sqlite3changeset_new',\n  'sqlite3changeset_apply',\n  'sqlite3changeset_invert',\n  'sqlite3session_patchset',\n  'sqlite3session_changeset',\n  'sqlite3session_isempty',\n  'sqlite3session_attach',\n  'sqlite3session_diff',\n};\n"
  },
  {
    "path": "sqlite3/lib/src/hook/utils.dart",
    "content": "/// A sink that allows [add] being called exactly once, and then reports the\n/// value of the added event.\nfinal class OnceSink<T extends Object> implements Sink<T> {\n  T? value;\n\n  @override\n  void add(T data) {\n    if (value != null) {\n      throw StateError('add called more than once');\n    }\n\n    value = data;\n  }\n\n  @override\n  void close() {\n    if (value == null) {\n      throw StateError('Must call add before closing.');\n    }\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/implementation/bindings.dart",
    "content": "@internal\nlibrary;\n\n// ignore_for_file: non_constant_identifier_names\n\nimport 'dart:typed_data';\n\nimport 'package:meta/meta.dart';\n\nimport '../functions.dart';\nimport '../vfs.dart';\n\n/// A `sqlite3_changeset_iter` instance.\n///\n/// For iterators created through `sqlite3changeset_start`, implementations\n/// should use finalizers to automatically call `sqlite3changeset_finalize`\n/// even when [sqlite3changeset_finalize] is not called explicitly.\nabstract interface class RawChangesetIterator {\n  // int sqlite3changeset_finalize(sqlite3_changeset_iter *pIter);\n  int sqlite3changeset_finalize();\n\n  // int sqlite3changeset_new(\n  //   sqlite3_changeset_iter *pIter,  /* Changeset iterator */\n  //   int iVal,                       /* Column number */\n  //   sqlite3_value **ppValue         /* OUT: New value (or NULL pointer) */\n  // );\n  SqliteResult<RawSqliteValue?> sqlite3changeset_new(int columnNumber);\n\n  // int sqlite3changeset_next(sqlite3_changeset_iter *pIter);\n  int sqlite3changeset_next();\n\n  // int sqlite3changeset_old(\n  //   sqlite3_changeset_iter *pIter,  /* Changeset iterator */\n  //   int iVal,                       /* Column number */\n  //   sqlite3_value **ppValue         /* OUT: Old value (or NULL pointer) */\n  // );\n  SqliteResult<RawSqliteValue?> sqlite3changeset_old(int columnNumber);\n\n  // int sqlite3changeset_op(\n  //   sqlite3_changeset_iter *pIter,  /* Iterator object */\n  //   const char **pzTab,             /* OUT: Pointer to table name */\n  //   int *pnCol,                     /* OUT: Number of columns in table */\n  //   int *pOp,                       /* OUT: SQLITE_INSERT, DELETE or UPDATE */\n  //   int *pbIndirect                 /* OUT: True for an 'indirect' change */\n  // );\n  RawChangeSetOp sqlite3changeset_op();\n}\n\nfinal class RawChangeSetOp {\n  final String tableName;\n  final int columnCount;\n  final int operation;\n  final int indirect;\n\n  RawChangeSetOp({\n    required this.tableName,\n    required this.columnCount,\n    required this.operation,\n    required this.indirect,\n  });\n}\n\n/// Defines a lightweight abstraction layer around sqlite3 that can be accessed\n/// without platform-specific APIs (`dart:ffi` or `dart:js`).\n///\n/// The implementation for the user-visible API exposed by this package will\n/// wrap these raw bindings to provide the more convenient to use Dart API.\n/// By only requiring platform-specific code for the lowest layer, we can\n/// advance the overal API with less maintenance overhead, as changes don't\n/// need to be implemented for both the FFI and the WASM backend.\n///\n/// Methods defined here mirror the corresponding sqlite3 functions where\n/// applicable. These functions don't do much more than transforming types\n/// (e.g. a `String` to `sqlite3_char *`).\n/// Other methods and special considerations are documented separately.\n///\n/// All of the classes and methods defined here are internal and can be changed\n/// as needed.\nabstract interface class RawSqliteBindings {\n  // int sqlite3session_create(\n  //   sqlite3 *db,                    /* Database handle */\n  //   const char *zDb,                /* Name of db (e.g. \"main\") */\n  //   sqlite3_session **ppSession     /* OUT: New session object */\n  // );\n  RawSqliteSession sqlite3session_create(RawSqliteDatabase db, String name);\n\n  // int sqlite3changeset_apply(\n  //   sqlite3 *db,                    /* Apply change to \"main\" db of this handle */\n  //   int nChangeset,                 /* Size of changeset in bytes */\n  //   void *pChangeset,               /* Changeset blob */\n  //   int(*xFilter)(\n  //     void *pCtx,                   /* Copy of sixth arg to _apply() */\n  //     const char *zTab              /* Table name */\n  //   ),\n  //   int(*xConflict)(\n  //     void *pCtx,                   /* Copy of sixth arg to _apply() */\n  //     int eConflict,                /* DATA, MISSING, CONFLICT, CONSTRAINT */\n  //     sqlite3_changeset_iter *p     /* Handle describing change and conflict */\n  //   ),\n  //   void *pCtx                      /* First argument passed to xConflict */\n  // );\n  int sqlite3changeset_apply(\n    RawSqliteDatabase database,\n    Uint8List changeset,\n    int Function(String tableName)? filter,\n    int Function(int eConflict, RawChangesetIterator iter) conflict,\n  );\n\n  // int sqlite3changeset_start(\n  //   sqlite3_changeset_iter **pp,    /* OUT: New changeset iterator handle */\n  //   int nChangeset,                 /* Size of changeset blob in bytes */\n  //   void *pChangeset                /* Pointer to blob containing changeset */\n  // );\n  RawChangesetIterator sqlite3changeset_start(Uint8List changeset);\n\n  Uint8List sqlite3changeset_invert(Uint8List changeset);\n\n  String sqlite3_libversion();\n  String sqlite3_sourceid();\n  int sqlite3_libversion_number();\n\n  String? sqlite3_temp_directory;\n\n  SqliteResult<RawSqliteDatabase> sqlite3_open_v2(\n    String name,\n    int flags,\n    String? zVfs,\n  );\n\n  String sqlite3_errstr(int extendedErrorCode);\n\n  void registerVirtualFileSystem(VirtualFileSystem vfs, int makeDefault);\n  void unregisterVirtualFileSystem(VirtualFileSystem vfs);\n\n  int sqlite3_initialize();\n}\n\n/// A `sqlite3_session` instance.\n///\n/// Implementations should use finalizers to automatically calls\n/// `sqlite3session_delete` even when [sqlite3session_delete] is not called\n/// explcitly.\nabstract interface class RawSqliteSession {\n  // int sqlite3session_attach(\n  //   sqlite3_session *pSession,      /* Session object */\n  //   const char *zTab                /* Table name */\n  // );\n  int sqlite3session_attach([String? name]);\n\n  // int sqlite3session_changeset(\n  //   sqlite3_session *pSession,      /* Session object */\n  //   int *pnChangeset,               /* OUT: Size of buffer at *ppChangeset */\n  //   void **ppChangeset              /* OUT: Buffer containing changeset */\n  // );\n  Uint8List sqlite3session_changeset();\n  Uint8List sqlite3session_patchset();\n\n  // void sqlite3session_delete(sqlite3_session *pSession);\n  void sqlite3session_delete();\n\n  // int sqlite3session_diff(\n  //   sqlite3_session *pSession,\n  //   const char *zFromDb,\n  //   const char *zTbl,\n  //   char **pzErrMsg\n  // );\n  int sqlite3session_diff(String fromDb, String table);\n\n  // int sqlite3session_enable(sqlite3_session *pSession, int bEnable);\n  int sqlite3session_enable(int enable);\n\n  // int sqlite3session_indirect(sqlite3_session *pSession, int bIndirect);\n  int sqlite3session_indirect(int indirect);\n\n  int sqlite3session_isempty();\n}\n\n/// Combines a sqlite result code and the result object.\ntypedef SqliteResult<T> = ({T? result, int resultCode});\n\ntypedef RawXFunc = void Function(RawSqliteContext, List<RawSqliteValue>);\ntypedef RawXStep = void Function(RawSqliteContext, List<RawSqliteValue>);\ntypedef RawXFinal = void Function(RawSqliteContext);\ntypedef RawUpdateHook = void Function(int kind, String tableName, int rowId);\ntypedef RawCommitHook = int Function();\ntypedef RawRollbackHook = void Function();\ntypedef RawCollation = int Function(String? a, String? b);\n\n/// A `sqlite3` instance.\n///\n/// Instances should use finalizers to automatically close the database, even\n/// when [sqlite3_close_v2] is not called explicitly.\nabstract interface class RawSqliteDatabase {\n  int sqlite3_changes();\n  int sqlite3_last_insert_rowid();\n\n  int sqlite3_exec(String sql);\n\n  int sqlite3_extended_errcode();\n  int sqlite3_error_offset();\n\n  void sqlite3_extended_result_codes(int onoff);\n  int sqlite3_close_v2();\n  String sqlite3_errmsg();\n\n  void sqlite3_update_hook(RawUpdateHook? hook);\n\n  void sqlite3_commit_hook(RawCommitHook? hook);\n\n  void sqlite3_rollback_hook(RawRollbackHook? hook);\n\n  /// Returns a compiler able to create prepared statements from the utf8-\n  /// encoded SQL string passed as its argument.\n  RawStatementCompiler newCompiler(List<int> utf8EncodedSql);\n\n  int sqlite3_create_collation_v2({\n    required Uint8List collationName,\n    required int eTextRep,\n    required RawCollation collation,\n  });\n\n  int sqlite3_create_function_v2({\n    required Uint8List functionName,\n    required int nArg,\n    required int eTextRep,\n    RawXFunc? xFunc,\n    RawXStep? xStep,\n    RawXFinal? xFinal,\n  });\n\n  int sqlite3_create_window_function({\n    required Uint8List functionName,\n    required int nArg,\n    required int eTextRep,\n    required RawXStep xStep,\n    required RawXFinal xFinal,\n    required RawXFinal xValue,\n    required RawXStep xInverse,\n  });\n\n  int sqlite3_busy_handler(int Function(int)? callback);\n\n  int sqlite3_db_config(int op, int value);\n  int sqlite3_get_autocommit();\n}\n\n/// A stateful wrapper around multiple `sqlite3_prepare` invocations.\nabstract interface class RawStatementCompiler {\n  /// The current byte-offset in the SQL statement passed to\n  /// [RawSqliteDatabase.newCompiler].\n  ///\n  /// After calling [sqlite3_prepare], this value should advance to the end of\n  /// that statement.\n  ///\n  /// The behavior of invoking this getter before the first\n  /// [sqlite3_prepare] is undefined.\n  int get endOffset;\n\n  /// Compile a statement from the substring at [byteOffset] with a maximum\n  /// length of [length].\n  SqliteResult<RawSqliteStatement> sqlite3_prepare(\n    int byteOffset,\n    int length,\n    int prepFlag,\n  );\n\n  /// Releases resources used by this compiler interface.\n  void close();\n}\n\n/// A `sqlite3_stmt` instance.\n///\n/// Instances should use finalizers to automatically call `sqlite3_finalize` on\n/// the statement, even when [sqlite3_finalize] is not called explicitly.\nabstract interface class RawSqliteStatement {\n  void sqlite3_reset();\n  int sqlite3_step();\n  void sqlite3_finalize();\n\n  int sqlite3_bind_parameter_index(String name);\n\n  int sqlite3_bind_null(int index);\n  int sqlite3_bind_int64(int index, int value);\n  int sqlite3_bind_int64BigInt(int index, BigInt value);\n  int sqlite3_bind_double(int index, double value);\n  int sqlite3_bind_text(int index, String value);\n  int sqlite3_bind_blob64(int index, List<int> value);\n\n  int sqlite3_column_count();\n  String sqlite3_column_name(int index);\n  bool get supportsReadingTableNameForColumn;\n  String? sqlite3_column_table_name(int index);\n\n  int sqlite3_column_type(int index);\n  int sqlite3_column_int64(int index);\n\n  /// (Only used on the web): Like [sqlite3_column_int64], but wrapping the\n  /// result in a [BigInt] if it's too large to be represented in a JavaScript\n  /// [int] implementation.\n  Object sqlite3_column_int64OrBigInt(int index);\n  double sqlite3_column_double(int index);\n  String sqlite3_column_text(int index);\n  Uint8List sqlite3_column_bytes(int index);\n\n  int sqlite3_bind_parameter_count();\n  int sqlite3_stmt_readonly();\n  int sqlite3_stmt_isexplain();\n}\n\nabstract interface class RawSqliteContext {\n  AggregateContext<Object?>? dartAggregateContext;\n\n  void sqlite3_result_null();\n  void sqlite3_result_int64(int value);\n  void sqlite3_result_int64BigInt(BigInt value);\n  void sqlite3_result_double(double value);\n  void sqlite3_result_text(String text);\n  void sqlite3_result_blob64(List<int> blob);\n  void sqlite3_result_error(String message);\n  void sqlite3_result_subtype(int value);\n}\n\nabstract interface class RawSqliteValue {\n  int sqlite3_value_type();\n  int sqlite3_value_int64();\n  double sqlite3_value_double();\n  String sqlite3_value_text();\n  Uint8List sqlite3_value_blob();\n  int sqlite3_value_subtype();\n}\n"
  },
  {
    "path": "sqlite3/lib/src/implementation/database.dart",
    "content": "import 'dart:async';\nimport 'dart:collection';\nimport 'dart:convert';\nimport 'dart:typed_data';\n\nimport 'package:meta/meta.dart';\n\nimport '../constants.dart';\nimport '../database.dart';\nimport '../exception.dart';\nimport '../functions.dart';\nimport '../result_set.dart';\nimport '../statement.dart';\nimport 'bindings.dart';\nimport 'exception.dart';\nimport 'statement.dart';\nimport 'utils.dart';\n\nbase class DatabaseImplementation implements CommonDatabase {\n  final RawSqliteBindings bindings;\n  // Note: Implementations of this have platform-specific finalizers on them.\n  final RawSqliteDatabase database;\n\n  /// Whether the raw [database] represents a borrowed SQLite connection not\n  /// owned by this Dart object.\n  ///\n  /// This mainly means that [close] will not call `sqlite3_close_v2`\n  /// internally.\n  bool isBorrowed;\n\n  _StreamHandlers<SqliteUpdate, void Function()>? _updates;\n  _StreamHandlers<void, void Function()>? _rollbacks;\n  _StreamHandlers<void, VoidPredicate>? _commits;\n\n  @internal\n  var isClosed = false;\n\n  @override\n  DatabaseConfig get config => DatabaseConfigImplementation(this);\n\n  @override\n  int get userVersion {\n    final stmt = prepare('PRAGMA user_version;');\n    try {\n      final result = stmt.select();\n\n      final version = result.first.columnAt(0) as int;\n      return version;\n    } finally {\n      stmt.close();\n    }\n  }\n\n  @override\n  set userVersion(int value) {\n    execute('PRAGMA user_version = $value;');\n  }\n\n  DatabaseImplementation(\n    this.bindings,\n    this.database, {\n    required this.isBorrowed,\n  });\n\n  @visibleForOverriding\n  StatementImplementation wrapStatement(String sql, RawSqliteStatement stmt) {\n    return StatementImplementation(sql, this, stmt);\n  }\n\n  void _ensureOpen() {\n    if (isClosed) {\n      throw StateError('This database has already been closed');\n    }\n  }\n\n  _StreamHandlers<SqliteUpdate, void Function()> _updatesHandler() {\n    return _updates ??= _StreamHandlers(\n      database: this,\n      register: () {\n        database.sqlite3_update_hook((kind, tableName, rowId) {\n          final updateKind = SqliteUpdateKind.fromCode(kind);\n          if (updateKind == null) {\n            return;\n          }\n\n          final update = SqliteUpdate(updateKind, tableName, rowId);\n          _updates!.deliverAsyncEvent(update);\n        });\n      },\n      unregister: () => database.sqlite3_update_hook(null),\n    );\n  }\n\n  _StreamHandlers<void, void Function()> _rollbackHandler() {\n    return _rollbacks ??= _StreamHandlers(\n      database: this,\n      register: () => database.sqlite3_rollback_hook(() {\n        _rollbacks!.deliverAsyncEvent(null);\n      }),\n      unregister: () => database.sqlite3_rollback_hook(null),\n    );\n  }\n\n  _StreamHandlers<void, VoidPredicate> _commitHandler() {\n    return _commits ??= _StreamHandlers(\n      database: this,\n      register: () => database.sqlite3_commit_hook(() {\n        var complete = true;\n        if (_commits!.syncCallback case final callback?) {\n          complete = callback();\n        }\n\n        if (complete) {\n          _commits!.deliverAsyncEvent(null);\n          // There's no reason to deliver a rollback event if the synchronous\n          // handler determined that the transaction should be reverted, sqlite3\n          // will emit a rollbacke event for us.\n        }\n\n        return complete ? 0 : 1;\n      }),\n      unregister: () => database.sqlite3_commit_hook(null),\n    );\n  }\n\n  Uint8List _validateAndEncodeFunctionName(String functionName) {\n    final functionNameBytes = utf8.encode(functionName);\n\n    if (functionNameBytes.length > 255) {\n      throw ArgumentError.value(\n        functionName,\n        'functionName',\n        'Must not exceed 255 bytes when utf-8 encoded',\n      );\n    }\n\n    return Uint8List.fromList(functionNameBytes);\n  }\n\n  @override\n  void createAggregateFunction<V>({\n    required String functionName,\n    required AggregateFunction<V> function,\n    AllowedArgumentCount argumentCount = const AllowedArgumentCount.any(),\n    bool deterministic = false,\n    bool directOnly = true,\n    bool subtype = false,\n  }) {\n    final name = _validateAndEncodeFunctionName(functionName);\n    final textRep = eTextRep(deterministic, directOnly, subtype);\n    int result;\n\n    AggregateContext<V> readOrCreateContext(RawSqliteContext raw) {\n      var dartContext = raw.dartAggregateContext as AggregateContext<V>?;\n      return dartContext ??= raw.dartAggregateContext = function\n          .createContext();\n    }\n\n    void step(RawSqliteContext context, List<RawSqliteValue> args) {\n      final dartContext = readOrCreateContext(context);\n      context.runWithArgsAndSetResult(\n        (args) => function.step(args, dartContext),\n        args,\n      );\n    }\n\n    void finalize(RawSqliteContext context) {\n      context.runAndSetResult(() {\n        final existingContext =\n            context.dartAggregateContext as AggregateContext<V>?;\n\n        return function.finalize(existingContext ?? function.createContext());\n      });\n    }\n\n    if (function is WindowFunction<V>) {\n      result = database.sqlite3_create_window_function(\n        functionName: name,\n        nArg: argumentCount.allowedArgs,\n        eTextRep: textRep,\n        xStep: step,\n        xFinal: finalize,\n        xValue: (context) {\n          context.runAndSetResult(() {\n            return function.value(readOrCreateContext(context));\n          });\n        },\n        xInverse: (context, args) {\n          final dartContext = readOrCreateContext(context);\n          context.runWithArgsAndSetResult(\n            (args) => function.inverse(args, dartContext),\n            args,\n          );\n        },\n      );\n    } else {\n      result = database.sqlite3_create_function_v2(\n        functionName: name,\n        nArg: argumentCount.allowedArgs,\n        eTextRep: textRep,\n        xStep: step,\n        xFinal: finalize,\n      );\n    }\n\n    if (result != SqlError.SQLITE_OK) {\n      throwException(this, result);\n    }\n  }\n\n  @override\n  void createFunction({\n    required String functionName,\n    required ScalarFunction function,\n    AllowedArgumentCount argumentCount = const AllowedArgumentCount.any(),\n    bool deterministic = false,\n    bool directOnly = true,\n    bool subtype = false,\n  }) {\n    final returnCode = database.sqlite3_create_function_v2(\n      functionName: _validateAndEncodeFunctionName(functionName),\n      nArg: argumentCount.allowedArgs,\n      eTextRep: eTextRep(deterministic, directOnly, subtype),\n      xFunc: (context, args) {\n        context.runWithArgsAndSetResult(function, args);\n      },\n    );\n\n    if (returnCode != SqlError.SQLITE_OK) {\n      throwException(this, returnCode);\n    }\n  }\n\n  @override\n  void createCollation({\n    required String name,\n    required CollatingFunction function,\n  }) {\n    final result = database.sqlite3_create_collation_v2(\n      collationName: _validateAndEncodeFunctionName(name),\n      eTextRep: eTextRep(false, false, false),\n      collation: function,\n    );\n\n    if (result != SqlError.SQLITE_OK) {\n      throwException(this, result);\n    }\n  }\n\n  @override\n  void dispose() {\n    return close();\n  }\n\n  @override\n  void close() {\n    if (isClosed) return;\n\n    isClosed = true;\n\n    _updates?.close();\n    _commits?.close();\n    _rollbacks?.close();\n\n    if (isBorrowed) {\n      // Keep the connection open for the actual owner of it to use.\n      return;\n    }\n\n    database.sqlite3_update_hook(null);\n    database.sqlite3_commit_hook(null);\n    database.sqlite3_rollback_hook(null);\n\n    final code = database.sqlite3_close_v2();\n    SqliteException? exception;\n    if (code != SqlError.SQLITE_OK) {\n      exception = createExceptionRaw(\n        bindings,\n        database,\n        code,\n        operation: 'closing database',\n      );\n    }\n\n    if (exception != null) {\n      throw exception;\n    }\n  }\n\n  @override\n  void execute(String sql, [List<Object?> parameters = const []]) {\n    if (parameters.isEmpty) {\n      // No parameters? Use sqlite3_exec since that can run multiple statements\n      // at once.\n      _ensureOpen();\n\n      final result = database.sqlite3_exec(sql);\n      if (result != SqlError.SQLITE_OK) {\n        throwException(\n          this,\n          result,\n          operation: 'executing',\n          previousStatement: sql,\n          statementArgs: parameters,\n        );\n      }\n    } else {\n      final stmt = prepare(sql, checkNoTail: true);\n      try {\n        stmt.execute(parameters);\n      } finally {\n        stmt.close();\n      }\n    }\n  }\n\n  @override\n  int get updatedRows => database.sqlite3_changes();\n\n  @override\n  int getUpdatedRows() => updatedRows;\n\n  @override\n  int get lastInsertRowId => database.sqlite3_last_insert_rowid();\n\n  @override\n  bool get autocommit {\n    return database.sqlite3_get_autocommit() != 0;\n  }\n\n  @override\n  set busyHandler(bool Function(int count)? handler) {\n    final result = database.sqlite3_busy_handler(switch (handler) {\n      null => null,\n      final handler => (count) => handler(count) ? 1 : 0,\n    });\n    if (result != SqlError.SQLITE_OK) {\n      throwException(this, result, operation: 'set busy handler');\n    }\n  }\n\n  List<StatementImplementation> _prepareInternal(\n    String sql, {\n    bool persistent = false,\n    bool vtab = true,\n    int? maxStatements,\n    bool checkNoTail = false,\n  }) {\n    _ensureOpen();\n\n    final bytes = utf8.encode(sql);\n    final compiler = database.newCompiler(bytes);\n\n    var prepFlags = 0;\n    if (persistent) {\n      prepFlags |= SqlPrepareFlag.SQLITE_PREPARE_PERSISTENT;\n    }\n    if (!vtab) {\n      prepFlags |= SqlPrepareFlag.SQLITE_PREPARE_NO_VTAB;\n    }\n\n    final createdStatements = <StatementImplementation>[];\n    var offset = 0;\n\n    void freeIntermediateResults() {\n      compiler.close();\n\n      for (final stmt in createdStatements) {\n        stmt.dispose();\n      }\n    }\n\n    while (offset < bytes.length) {\n      final result = compiler.sqlite3_prepare(\n        offset,\n        bytes.length - offset,\n        prepFlags,\n      );\n\n      if (result.resultCode != SqlError.SQLITE_OK) {\n        freeIntermediateResults();\n        throwException(\n          this,\n          result.resultCode,\n          operation: 'preparing statement',\n          previousStatement: sql,\n        );\n      }\n\n      final endOffset = compiler.endOffset;\n\n      // prepare can return a null pointer with SQLITE_OK if only whitespace\n      // or comments were parsed. That's fine, just skip over it then.\n      final stmt = result.result;\n      if (stmt != null) {\n        final stmtSql = utf8.decoder.convert(bytes, offset, endOffset);\n\n        createdStatements.add(wrapStatement(stmtSql, stmt));\n      }\n\n      offset = endOffset;\n\n      if (createdStatements.length == maxStatements) {\n        break;\n      }\n    }\n\n    if (checkNoTail) {\n      // Issue another prepare call at the current offset to account for\n      // potential whitespace.\n      while (offset < bytes.length) {\n        final result = compiler.sqlite3_prepare(\n          offset,\n          bytes.length - offset,\n          prepFlags,\n        );\n        offset = compiler.endOffset;\n\n        final stmt = result.result;\n\n        if (stmt != null) {\n          // Had an unexpected trailing statement -> throw!\n          createdStatements.add(wrapStatement('', stmt));\n          freeIntermediateResults();\n          throw ArgumentError.value(\n            sql,\n            'sql',\n            'Had an unexpected trailing statement.',\n          );\n        } else if (result.resultCode != SqlError.SQLITE_OK) {\n          // Invalid content that's not just a whitespace or a comment.\n          freeIntermediateResults();\n          throw ArgumentError.value(\n            sql,\n            'sql',\n            'Has trailing data after the first sql statement:',\n          );\n        }\n      }\n    }\n\n    compiler.close();\n    return createdStatements;\n  }\n\n  @override\n  CommonPreparedStatement prepare(\n    String sql, {\n    bool persistent = false,\n    bool vtab = true,\n    bool checkNoTail = false,\n  }) {\n    final stmts = _prepareInternal(\n      sql,\n      persistent: persistent,\n      vtab: vtab,\n      maxStatements: 1,\n      checkNoTail: checkNoTail,\n    );\n\n    if (stmts.isEmpty) {\n      // Can happen without a syntax error if we're only given whitespace or\n      // comments.\n      throw ArgumentError.value(sql, 'sql', 'Must contain an SQL statement.');\n    }\n\n    return stmts.first;\n  }\n\n  @override\n  List<CommonPreparedStatement> prepareMultiple(\n    String sql, {\n    bool persistent = false,\n    bool vtab = true,\n  }) {\n    return _prepareInternal(sql, persistent: persistent, vtab: vtab);\n  }\n\n  @override\n  ResultSet select(String sql, [List<Object?> parameters = const []]) {\n    final stmt = prepare(sql, checkNoTail: true);\n    try {\n      return stmt.select(parameters);\n    } finally {\n      stmt.close();\n    }\n  }\n\n  @override\n  Stream<SqliteUpdate> get updates => _updatesHandler().stream;\n\n  @override\n  Stream<SqliteUpdate> get updatesSync => _updatesHandler().syncStream;\n\n  @override\n  Stream<void> get rollbacks => _rollbackHandler().stream;\n\n  @override\n  Stream<void> get commits => _commitHandler().stream;\n\n  @override\n  VoidPredicate? get commitFilter => _commitHandler().syncCallback;\n\n  @override\n  set commitFilter(VoidPredicate? commitFilter) {\n    _commitHandler().syncCallback = commitFilter;\n  }\n}\n\nextension on RawSqliteContext {\n  void runWithArgsAndSetResult(\n    Object? Function(SqliteArguments) function,\n    List<RawSqliteValue> args,\n  ) {\n    final dartArgs = ValueList(args);\n    try {\n      setResult(function(dartArgs));\n    } on Object catch (e) {\n      sqlite3_result_error(Error.safeToString(e));\n    } finally {\n      dartArgs.isValid = false;\n    }\n  }\n\n  void runAndSetResult(Object? Function() function) {\n    try {\n      setResult(function());\n    } on Object catch (e) {\n      sqlite3_result_error(Error.safeToString(e));\n    }\n  }\n\n  void setResult(Object? result) => switch (result) {\n    null => sqlite3_result_null(),\n    int() => sqlite3_result_int64(result),\n    BigInt() => sqlite3_result_int64BigInt(result.checkRange),\n    double() => sqlite3_result_double(result),\n    bool() => sqlite3_result_int64(result ? 1 : 0),\n    String() => sqlite3_result_text(result),\n    List<int>() => sqlite3_result_blob64(result),\n    SubtypedValue() => setSubtypedResult(result),\n    _ => throw ArgumentError.value(result, 'result', 'Unsupported type'),\n  };\n\n  void setSubtypedResult(SubtypedValue result) {\n    setResult(result.originalValue);\n    sqlite3_result_subtype(result.subtype);\n  }\n}\n\n/// An unmodifiable Dart list backed by native sqlite3 values.\nclass ValueList extends ListBase<Object?> implements SqliteArguments {\n  final List<RawSqliteValue> rawValues;\n  final List<Object?> _cachedCopies;\n\n  bool isValid = true;\n\n  ValueList(this.rawValues)\n    : _cachedCopies = List.filled(rawValues.length, null);\n\n  @override\n  int get length => rawValues.length;\n\n  @override\n  set length(int newLength) {\n    throw UnsupportedError('Changing the length of sql arguments in Dart');\n  }\n\n  @override\n  Object? operator [](int index) {\n    assert(\n      isValid,\n      'Invalid arguments. This commonly happens when an application-defined '\n      'sql function leaks its arguments after it finishes running. '\n      'Please use List.of(arguments) in the function to create a copy of '\n      'the argument instead.',\n    );\n    RangeError.checkValidIndex(index, this, 'index', length);\n\n    return _cachedCopies[index] ??= rawValues[index].read();\n  }\n\n  @override\n  void operator []=(int index, Object? value) {\n    throw ArgumentError('The argument list is unmodifiable');\n  }\n\n  @override\n  int subtypeOf(int argumentIndex) {\n    final value =\n        rawValues[RangeError.checkValidIndex(\n          argumentIndex,\n          this,\n          'argumentIndex',\n          length,\n        )];\n    return value.sqlite3_value_subtype();\n  }\n}\n\nfinal class DatabaseConfigImplementation extends DatabaseConfig {\n  final DatabaseImplementation database;\n\n  DatabaseConfigImplementation(this.database);\n\n  @override\n  void setIntConfig(int key, int configValue) {\n    final resultDML = database.database.sqlite3_db_config(key, configValue);\n    if (resultDML != SqlError.SQLITE_OK) {\n      throwException(database, resultDML);\n    }\n  }\n}\n\n/// A shared implementation for the [CommonDatabase.updates],\n/// [CommonDatabase.commits] and [CommonDatabase.rollbacks] streams used by\n/// [DatabaseImplementation].\n///\n/// [T] is the event type of the stream. These streams wrap SQLite callbacks\n/// which are not supposed to make their own database calls. Thus, all streams\n/// have an asynchronous delay from when the C callback is called.\n/// The commits stream also supports a synchronous callback that can turn\n/// commits into rollbacks. This is represented by [_syncCallback].\nfinal class _StreamHandlers<T, SyncCallback> {\n  final DatabaseImplementation _database;\n  final List<({MultiStreamController<T> controller, bool sync})>\n  _asyncListeners = [];\n  SyncCallback? _syncCallback;\n\n  /// Registers a native callback on the database.\n  final void Function() _register;\n\n  /// Unregisters the native callback on the database.\n  final void Function() _unregister;\n\n  Stream<T>? _stream;\n  Stream<T>? _syncStream;\n\n  Stream<T> get stream => _stream ??= _generateStream(false);\n  Stream<T> get syncStream => _syncStream ??= _generateStream(true);\n\n  _StreamHandlers({\n    required DatabaseImplementation database,\n    required void Function() register,\n    required void Function() unregister,\n  }) : _database = database,\n       _register = register,\n       _unregister = unregister;\n\n  Stream<T> _generateStream(bool dispatchSynchronously) {\n    return Stream.multi((newListener) {\n      if (_database.isClosed) {\n        newListener.close();\n        return;\n      }\n\n      void addListener() {\n        _addAsyncListener(newListener, dispatchSynchronously);\n      }\n\n      void removeListener() {\n        _removeAsyncListener(newListener, dispatchSynchronously);\n      }\n\n      newListener\n        ..onPause = removeListener\n        ..onCancel = removeListener\n        ..onResume = addListener;\n      // Since this is a onListen callback, add listener now\n      addListener();\n    }, isBroadcast: true);\n  }\n\n  bool get hasListener => _asyncListeners.isNotEmpty || _syncCallback != null;\n\n  SyncCallback? get syncCallback => _syncCallback;\n\n  set syncCallback(SyncCallback? value) {\n    if (value != _syncCallback) {\n      final hadListenerBefore = hasListener;\n      _syncCallback = value;\n      final hasListenerNow = hasListener;\n\n      if (!hadListenerBefore && hasListenerNow) {\n        _register();\n      } else if (hadListenerBefore && !hasListenerNow) {\n        _unregister();\n      }\n    }\n  }\n\n  void _addAsyncListener(MultiStreamController<T> listener, bool sync) {\n    final isFirstListener = !hasListener;\n    _asyncListeners.add((controller: listener, sync: sync));\n\n    if (isFirstListener) {\n      _register();\n    }\n  }\n\n  void _removeAsyncListener(MultiStreamController<T> listener, bool sync) {\n    _asyncListeners.remove((controller: listener, sync: sync));\n\n    if (!hasListener && !_database.isClosed) {\n      _unregister();\n    }\n  }\n\n  void deliverAsyncEvent(T event) {\n    for (final listener in _asyncListeners) {\n      if (listener.sync) {\n        listener.controller.addSync(event);\n      } else {\n        listener.controller.add(event);\n      }\n    }\n  }\n\n  void close() {\n    for (final listener in _asyncListeners) {\n      listener.controller.close();\n    }\n    _syncCallback = null;\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/implementation/exception.dart",
    "content": "import '../exception.dart';\nimport 'bindings.dart';\nimport 'database.dart';\n\nSqliteException createExceptionOutsideOfDatabase(\n  RawSqliteBindings bindings,\n  int resultCode, {\n  String? operation,\n}) {\n  final errStr = bindings.sqlite3_errstr(resultCode);\n\n  return SqliteException(\n    extendedResultCode: resultCode,\n    message: errStr,\n    operation: operation,\n  );\n}\n\nSqliteException createExceptionRaw(\n  RawSqliteBindings bindings,\n  RawSqliteDatabase db,\n  int returnCode, {\n  String? operation,\n  String? previousStatement,\n  List<Object?>? statementArgs,\n}) {\n  // Getting hold of more explanatory error code as SQLITE_IOERR error group has\n  // an extensive list of extended error codes\n  final extendedCode = db.sqlite3_extended_errcode();\n  final offset = switch (db.sqlite3_error_offset()) {\n    < 0 => null,\n    final offset => offset,\n  };\n\n  return createExceptionFromExtendedCode(\n    bindings,\n    db,\n    returnCode,\n    extendedCode,\n    operation: operation,\n    previousStatement: previousStatement,\n    statementArgs: statementArgs,\n    offset: offset,\n  );\n}\n\nSqliteException createExceptionFromExtendedCode(\n  RawSqliteBindings bindings,\n  RawSqliteDatabase db,\n  int returnCode,\n  int extendedErrorCode, {\n  String? operation,\n  String? previousStatement,\n  List<Object?>? statementArgs,\n  int? offset,\n}) {\n  // We don't need to free the pointer returned by sqlite3_errmsg: \"Memory to\n  // hold the error message string is managed internally. The application does\n  // not need to worry about freeing the result.\"\n  // https://www.sqlite.org/c3ref/errcode.html\n  final dbMessage = db.sqlite3_errmsg();\n  final errStr = bindings.sqlite3_errstr(extendedErrorCode);\n  final explanation = '$errStr (code $extendedErrorCode)';\n\n  return SqliteException(\n    extendedResultCode: returnCode,\n    message: dbMessage,\n    explanation: explanation,\n    causingStatement: previousStatement,\n    parametersToStatement: statementArgs,\n    operation: operation,\n    offset: offset,\n  );\n}\n\nSqliteException createException(\n  DatabaseImplementation db,\n  int returnCode, {\n  String? operation,\n  String? previousStatement,\n  List<Object?>? statementArgs,\n}) {\n  return createExceptionRaw(\n    db.bindings,\n    db.database,\n    returnCode,\n    operation: operation,\n    previousStatement: previousStatement,\n    statementArgs: statementArgs,\n  );\n}\n\nNever throwException(\n  DatabaseImplementation db,\n  int returnCode, {\n  String? operation,\n  String? previousStatement,\n  List<Object?>? statementArgs,\n  int? offset,\n}) {\n  throw createException(\n    db,\n    returnCode,\n    operation: operation,\n    previousStatement: previousStatement,\n    statementArgs: statementArgs,\n  );\n}\n"
  },
  {
    "path": "sqlite3/lib/src/implementation/session.dart",
    "content": "import 'dart:typed_data';\n\nimport '../constants.dart';\nimport '../database.dart';\nimport '../session.dart';\nimport 'bindings.dart';\nimport 'database.dart';\nimport 'exception.dart';\nimport 'utils.dart';\n\nfinal class SessionImplementation implements Session {\n  final RawSqliteBindings bindings;\n  // Note: Implementations of this have platform-specific finalizers on them.\n  final RawSqliteSession session;\n\n  bool _deleted = false;\n\n  SessionImplementation(this.bindings, this.session);\n\n  static SessionImplementation createSession(\n    DatabaseImplementation db,\n    String name,\n  ) {\n    final bindings = db.bindings;\n    final result = bindings.sqlite3session_create(db.database, name);\n    return SessionImplementation(bindings, result);\n  }\n\n  void _checkNotDeleted() {\n    if (_deleted) {\n      throw StateError('This session has already been deleted');\n    }\n  }\n\n  @override\n  Changeset changeset() {\n    _checkNotDeleted();\n    final bytes = session.sqlite3session_changeset();\n    return ChangesetImplementation(bytes, bindings);\n  }\n\n  @override\n  Patchset patchset() {\n    _checkNotDeleted();\n    final bytes = session.sqlite3session_patchset();\n    return PatchsetImplementation(bytes, bindings);\n  }\n\n  @override\n  void delete() {\n    if (!_deleted) {\n      _deleted = true;\n      session.sqlite3session_delete();\n    }\n  }\n\n  @override\n  void diff(String fromDb, String table) {\n    final result = session.sqlite3session_diff(fromDb, table);\n    if (result != SqlError.SQLITE_OK) {\n      throw createExceptionOutsideOfDatabase(bindings, result);\n    }\n  }\n\n  @override\n  bool get enabled {\n    _checkNotDeleted();\n    return session.sqlite3session_enable(-1) == 1;\n  }\n\n  @override\n  set enabled(bool enabled) {\n    _checkNotDeleted();\n    final result = session.sqlite3session_enable(enabled ? 1 : 0);\n    if (result != SqlError.SQLITE_OK) {\n      throw createExceptionOutsideOfDatabase(bindings, result);\n    }\n  }\n\n  @override\n  bool get isIndirect {\n    _checkNotDeleted();\n    return session.sqlite3session_indirect(-1) == 1;\n  }\n\n  @override\n  set isIndirect(bool isIndirect) {\n    _checkNotDeleted();\n    final result = session.sqlite3session_enable(isIndirect ? 1 : 0);\n    if (result != SqlError.SQLITE_OK) {\n      throw createExceptionOutsideOfDatabase(bindings, result);\n    }\n  }\n\n  @override\n  bool get isEmpty {\n    _checkNotDeleted();\n    return session.sqlite3session_isempty() != 0;\n  }\n\n  @override\n  bool get isNotEmpty => !isEmpty;\n\n  @override\n  void attach([String? table]) {\n    _checkNotDeleted();\n    final result = session.sqlite3session_attach(table);\n    if (result != SqlError.SQLITE_OK) {\n      throw createExceptionOutsideOfDatabase(bindings, result);\n    }\n  }\n}\n\nfinal class PatchsetImplementation\n    with Iterable<ChangesetOperation>\n    implements Patchset {\n  @override\n  final Uint8List bytes;\n  final RawSqliteBindings bindings;\n\n  PatchsetImplementation(this.bytes, this.bindings);\n\n  @override\n  void applyTo(\n    CommonDatabase database, [\n    ApplyChangesetOptions options = const ApplyChangesetOptions(),\n  ]) {\n    final db = database as DatabaseImplementation;\n\n    final filter = switch (options.filter) {\n      null => null,\n      final filter => (String table) {\n        return filter(table) ? 1 : 0;\n      },\n    };\n\n    final conflict = switch (options.onConflict) {\n      null => (int _, RawChangesetIterator _) {\n        return ApplyChangesetConflict.abort.flag;\n      },\n      final conflict => (int conflictKind, RawChangesetIterator it) {\n        return conflict.flag;\n      },\n    };\n\n    db.bindings.sqlite3changeset_apply(db.database, bytes, filter, conflict);\n  }\n\n  @override\n  ChangesetIterator get iterator {\n    final raw = bindings.sqlite3changeset_start(bytes);\n    return ChangesetIteratorImplementation(bindings, raw);\n  }\n}\n\nfinal class ChangesetImplementation extends PatchsetImplementation\n    implements Changeset {\n  ChangesetImplementation(super.bytes, super.bindings);\n\n  @override\n  Changeset operator -() {\n    final result = bindings.sqlite3changeset_invert(bytes);\n    return ChangesetImplementation(result, bindings);\n  }\n}\n\nfinal class ChangesetIteratorImplementation implements ChangesetIterator {\n  final RawSqliteBindings bindings;\n  final RawChangesetIterator raw;\n\n  bool _isFinalized = false;\n\n  @override\n  late ChangesetOperation current;\n\n  ChangesetIteratorImplementation(this.bindings, this.raw);\n\n  @override\n  bool moveNext() {\n    if (_isFinalized) {\n      return false;\n    }\n\n    final result = raw.sqlite3changeset_next();\n    if (result == SqlError.SQLITE_ROW) {\n      final op = raw.sqlite3changeset_op();\n      final kind = SqliteUpdateKind.fromCode(op.operation)!;\n\n      final oldColumns = kind != SqliteUpdateKind.insert\n          ? List.generate(op.columnCount, (i) {\n              final rawValue = raw.sqlite3changeset_old(i);\n              return _readChangesetValue(rawValue);\n            })\n          : null;\n      final newColumns = kind != SqliteUpdateKind.delete\n          ? List.generate(op.columnCount, (i) {\n              final rawValue = raw.sqlite3changeset_new(i);\n              return _readChangesetValue(rawValue);\n            })\n          : null;\n      current = ChangesetOperation(\n        table: op.tableName,\n        columnCount: op.columnCount,\n        operation: kind,\n        oldValues: oldColumns,\n        newValues: newColumns,\n      );\n\n      return true;\n    }\n\n    finalize();\n    return false;\n  }\n\n  Object? _readChangesetValue(SqliteResult<RawSqliteValue?> result) {\n    return switch (result.resultCode) {\n      0 => result.result?.read(),\n      _ => throw createExceptionOutsideOfDatabase(bindings, result.resultCode),\n    };\n  }\n\n  @override\n  void finalize() {\n    if (_isFinalized) {\n      return;\n    }\n\n    _isFinalized = true;\n    final result = raw.sqlite3changeset_finalize();\n    if (result != SqlError.SQLITE_OK) {\n      throw createExceptionOutsideOfDatabase(bindings, result);\n    }\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/implementation/sqlite3.dart",
    "content": "import 'package:meta/meta.dart';\n\nimport '../constants.dart';\nimport '../database.dart';\nimport '../exception.dart';\nimport '../sqlite3.dart';\nimport '../vfs.dart';\nimport 'bindings.dart';\nimport 'database.dart';\nimport 'exception.dart';\n\nbase class Sqlite3Implementation implements CommonSqlite3 {\n  final RawSqliteBindings bindings;\n\n  const Sqlite3Implementation(this.bindings);\n\n  @visibleForOverriding\n  CommonDatabase wrapDatabase(\n    RawSqliteDatabase rawDb, {\n    bool isBorrowed = false,\n  }) {\n    return DatabaseImplementation(bindings, rawDb, isBorrowed: isBorrowed);\n  }\n\n  @override\n  String? get tempDirectory => bindings.sqlite3_temp_directory;\n\n  @override\n  set tempDirectory(String? value) => bindings.sqlite3_temp_directory = value;\n\n  void initialize() {\n    final rc = bindings.sqlite3_initialize();\n    if (rc != 0) {\n      throw SqliteException(\n        extendedResultCode: rc,\n        message: 'Error returned by sqlite3_initialize',\n      );\n    }\n  }\n\n  @override\n  CommonDatabase open(\n    String filename, {\n    String? vfs,\n    OpenMode mode = OpenMode.readWriteCreate,\n    bool uri = false,\n    bool? mutex,\n  }) {\n    initialize();\n\n    int flags;\n    switch (mode) {\n      case OpenMode.readOnly:\n        flags = SqlFlag.SQLITE_OPEN_READONLY;\n        break;\n      case OpenMode.readWrite:\n        flags = SqlFlag.SQLITE_OPEN_READWRITE;\n        break;\n      case OpenMode.readWriteCreate:\n        flags = SqlFlag.SQLITE_OPEN_READWRITE | SqlFlag.SQLITE_OPEN_CREATE;\n        break;\n    }\n\n    if (uri) {\n      flags |= SqlFlag.SQLITE_OPEN_URI;\n    }\n\n    if (mutex != null) {\n      flags |= mutex\n          ? SqlFlag.SQLITE_OPEN_FULLMUTEX\n          : SqlFlag.SQLITE_OPEN_NOMUTEX;\n    }\n\n    final result = bindings.sqlite3_open_v2(filename, flags, vfs);\n    if (result.resultCode != SqlError.SQLITE_OK) {\n      // It's possible for us to have a database even if opening it failed. Only\n      // if allocating memory for the connection failed would we not have a\n      // database.\n      if (result.result case final database?) {\n        final exception = createExceptionRaw(\n          bindings,\n          database,\n          result.resultCode,\n          operation: 'opening the database',\n        );\n        // Close the database after creating the exception, which needs to read\n        // the extended error from the database.\n        database.sqlite3_close_v2();\n        throw exception;\n      } else {\n        throw createExceptionOutsideOfDatabase(bindings, result.resultCode);\n      }\n    }\n\n    return wrapDatabase(result.result!..sqlite3_extended_result_codes(1));\n  }\n\n  @override\n  CommonDatabase openInMemory({String? vfs}) {\n    return open(':memory:', vfs: vfs);\n  }\n\n  @override\n  void registerVirtualFileSystem(\n    VirtualFileSystem vfs, {\n    bool makeDefault = false,\n  }) {\n    initialize();\n\n    bindings.registerVirtualFileSystem(vfs, makeDefault ? 1 : 0);\n  }\n\n  @override\n  void unregisterVirtualFileSystem(VirtualFileSystem vfs) {\n    bindings.unregisterVirtualFileSystem(vfs);\n  }\n\n  @override\n  Version get version {\n    return Version(\n      bindings.sqlite3_libversion(),\n      bindings.sqlite3_sourceid(),\n      bindings.sqlite3_libversion_number(),\n    );\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/implementation/statement.dart",
    "content": "import '../constants.dart';\nimport '../result_set.dart';\nimport '../statement.dart';\nimport 'bindings.dart';\nimport 'database.dart';\nimport 'exception.dart';\nimport 'utils.dart';\n\nbase class StatementImplementation extends CommonPreparedStatement {\n  // Note: Implementations of this have platform-specific finalizers on them.\n  final RawSqliteStatement statement;\n  final DatabaseImplementation database;\n  bool isBorrowed;\n\n  @override\n  final String sql;\n  List<Object?>? _latestArguments;\n  bool _inResetState = true;\n  bool _closed = false;\n\n  _ActiveCursorIterator? _currentCursor;\n\n  StatementImplementation(\n    this.sql,\n    this.database,\n    this.statement, {\n    this.isBorrowed = false,\n  });\n\n  List<String> get _columnNames {\n    final columnCount = statement.sqlite3_column_count();\n\n    return [\n      for (var i = 0; i < columnCount; i++) statement.sqlite3_column_name(i),\n    ];\n  }\n\n  List<String?>? get _tableNames {\n    if (!statement.supportsReadingTableNameForColumn) {\n      return null;\n    }\n\n    final columnCount = statement.sqlite3_column_count();\n    return List.generate(columnCount, statement.sqlite3_column_table_name);\n  }\n\n  void _ensureNotFinalized() {\n    if (_closed || database.isClosed) {\n      throw StateError('Tried to operate on a released prepared statement');\n    }\n  }\n\n  void _ensureMatchingParameters(List<Object?>? parameters) {\n    final length = parameters?.length ?? 0;\n    final count = parameterCount;\n\n    if (length != count) {\n      throw ArgumentError.value(\n        parameters,\n        'parameters',\n        'Expected $count parameters, got $length',\n      );\n    }\n  }\n\n  int _step() => statement.sqlite3_step();\n\n  void _execute() {\n    int result;\n\n    _inResetState = false;\n    // Users should be able to execute statements returning rows, so we should\n    // call _step() to skip past rows.\n    do {\n      result = _step();\n    } while (result == SqlError.SQLITE_ROW);\n\n    if (result != SqlError.SQLITE_OK && result != SqlError.SQLITE_DONE) {\n      throwException(\n        database,\n        result,\n        operation: 'executing statement',\n        previousStatement: sql,\n        statementArgs: _latestArguments,\n      );\n    }\n  }\n\n  ResultSet _selectResults() {\n    final rows = <List<Object?>>[];\n    _inResetState = false;\n\n    int columnCount = -1;\n\n    int resultCode;\n    while ((resultCode = _step()) == SqlError.SQLITE_ROW) {\n      // sqlite3_column_count() must be called after _step() because step() can\n      // re-compile the statement after schema changes, potentially leading to\n      // a different amount of columns.\n      if (columnCount == -1) {\n        columnCount = statement.sqlite3_column_count();\n      }\n\n      assert(columnCount >= 0);\n      rows.add(<Object?>[for (var i = 0; i < columnCount; i++) _readValue(i)]);\n    }\n\n    if (resultCode != SqlError.SQLITE_OK &&\n        resultCode != SqlError.SQLITE_DONE) {\n      throwException(\n        database,\n        resultCode,\n        operation: 'selecting from statement',\n        previousStatement: sql,\n        statementArgs: _latestArguments,\n      );\n    }\n\n    final names = _columnNames;\n    final tableNames = _tableNames;\n\n    return ResultSet(names, tableNames, rows);\n  }\n\n  Object? _readValue(int index) {\n    final type = statement.sqlite3_column_type(index);\n    switch (type) {\n      case SqlType.SQLITE_INTEGER:\n        const hasNativeInts = !identical(0.0, 0);\n\n        if (hasNativeInts) {\n          return statement.sqlite3_column_int64(index);\n        } else {\n          // Wrap in BigInt if needed\n          return statement.sqlite3_column_int64OrBigInt(index);\n        }\n\n      case SqlType.SQLITE_FLOAT:\n        return statement.sqlite3_column_double(index);\n      case SqlType.SQLITE_TEXT:\n        return statement.sqlite3_column_text(index);\n      case SqlType.SQLITE_BLOB:\n        return statement.sqlite3_column_bytes(index);\n      case SqlType.SQLITE_NULL:\n      default:\n        return null;\n    }\n  }\n\n  void _bindIndexedParams(List<Object?>? params) {\n    _ensureMatchingParameters(params);\n    if (params == null || params.isEmpty) return;\n\n    // variables in sqlite are 1-indexed\n    for (var i = 1; i <= params.length; i++) {\n      final Object? param = params[i - 1];\n\n      _bindParam(param, i);\n    }\n\n    _latestArguments = params;\n  }\n\n  void _bindMapParams(Map<String, Object?> params) {\n    final expectedLength = parameterCount;\n    final paramsAsList = List<Object?>.filled(expectedLength, null);\n\n    if (params.isEmpty) {\n      if (expectedLength != 0) {\n        throw ArgumentError.value(\n          params,\n          'params',\n          'Expected $expectedLength parameters, but none were set.',\n        );\n      }\n      return;\n    }\n\n    for (final key in params.keys) {\n      final Object? param = params[key];\n      final i = statement.sqlite3_bind_parameter_index(key);\n\n      // SQL parameters are 1-indexed, so 0 indicates that no parameter with\n      // that name was found.\n      if (i == 0) {\n        throw ArgumentError.value(\n          params,\n          'params',\n          'This statement contains no parameter named `$key`',\n        );\n      }\n      _bindParam(param, i);\n      paramsAsList[i - 1] = param;\n    }\n\n    // If we reached this point. All parameters from [params] were bound. Check\n    // if the statement contains no additional parameters.\n    if (expectedLength != params.length) {\n      throw ArgumentError.value(\n        params,\n        'params',\n        'Expected $expectedLength parameters',\n      );\n    }\n\n    _latestArguments = paramsAsList;\n  }\n\n  void _bindParam(Object? param, int i) {\n    final rc = switch (param) {\n      null => statement.sqlite3_bind_null(i),\n      int() => statement.sqlite3_bind_int64(i, param),\n      BigInt() => statement.sqlite3_bind_int64BigInt(i, param.checkRange),\n      bool() => statement.sqlite3_bind_int64(i, param ? 1 : 0),\n      double() => statement.sqlite3_bind_double(i, param),\n      String() => statement.sqlite3_bind_text(i, param),\n      List<int>() => statement.sqlite3_bind_blob64(i, param),\n      _ => _bindCustomParam(param, i),\n    };\n\n    if (rc != SqlError.SQLITE_OK) {\n      throwException(\n        database,\n        rc,\n        operation: 'binding parameter',\n        previousStatement: sql,\n        statementArgs: _latestArguments,\n      );\n    }\n  }\n\n  int _bindCustomParam(Object param, int i) {\n    if (param is CustomStatementParameter) {\n      param.applyTo(this, i);\n      return 0;\n    }\n\n    throw ArgumentError.value(\n      param,\n      'params[$i]',\n      'Allowed parameters must either be null or bool, int, num, String or '\n          'List<int>.',\n    );\n  }\n\n  void _bindParams(StatementParameters parameters) {\n    switch (parameters) {\n      case IndexedParameters():\n        _bindIndexedParams(parameters.parameters);\n      case NamedParameters():\n        _bindMapParams(parameters.parameters);\n      case CustomParameters():\n        parameters.bind(this);\n    }\n  }\n\n  @override\n  void reset() {\n    if (!_inResetState) {\n      statement.sqlite3_reset();\n      _inResetState = true;\n    }\n\n    _currentCursor = null;\n  }\n\n  @override\n  void dispose() {\n    close();\n  }\n\n  @override\n  void close() {\n    if (!_closed) {\n      _closed = true;\n      reset();\n\n      if (!isBorrowed) statement.sqlite3_finalize();\n    }\n  }\n\n  @override\n  ResultSet selectWith(StatementParameters parameters) {\n    _ensureNotFinalized();\n\n    reset();\n    _bindParams(parameters);\n\n    return _selectResults();\n  }\n\n  @override\n  void executeWith(StatementParameters parameters) {\n    _ensureNotFinalized();\n\n    reset();\n    _bindParams(parameters);\n    _execute();\n  }\n\n  @override\n  IteratingCursor iterateWith(StatementParameters parameters) {\n    _ensureNotFinalized();\n\n    reset();\n    _bindParams(parameters);\n\n    return _currentCursor = _ActiveCursorIterator(this);\n  }\n\n  @override\n  int get parameterCount => statement.sqlite3_bind_parameter_count();\n\n  @override\n  bool get isReadOnly => statement.sqlite3_stmt_readonly() != 0;\n\n  @override\n  bool get isExplain => statement.sqlite3_stmt_isexplain() != 0;\n\n  @override\n  ResultSet selectMap(Map<String, Object?> parameters) {\n    _ensureNotFinalized();\n\n    reset();\n    _bindMapParams(parameters);\n\n    return _selectResults();\n  }\n}\n\nclass _ActiveCursorIterator extends IteratingCursor {\n  final StatementImplementation statement;\n  int columnCount = -1;\n\n  @override\n  late Row current;\n\n  /// We can only reliably know the columns of a statement after step() has been\n  /// called once.\n  ///\n  /// However, that also consumes a row which must happen in [moveNext]. This\n  /// interface unfortunately exposes the column names directly - the information\n  /// is potentially incorrect at the beginning but correct at the first row.\n  /// This design issue is documented on [IteratingCursor].\n  bool _hasReliableColumnNames = false;\n\n  _ActiveCursorIterator(this.statement)\n    : super(statement._columnNames, statement._tableNames) {\n    statement._inResetState = false;\n  }\n\n  @override\n  bool moveNext() {\n    if (statement._closed || statement._currentCursor != this) {\n      return false;\n    }\n\n    final result = statement._step();\n\n    if (result == SqlError.SQLITE_ROW) {\n      if (!_hasReliableColumnNames) {\n        columnCount = statement.statement.sqlite3_column_count();\n        columnNames = statement._columnNames;\n        _hasReliableColumnNames = true;\n      }\n\n      assert(columnCount >= 0);\n      final rowData = <Object?>[\n        for (var i = 0; i < columnCount; i++) statement._readValue(i),\n      ];\n\n      current = Row(this, rowData);\n      return true;\n    }\n\n    // We're at the end of the result set or encountered an exception here.\n    if (result != SqlError.SQLITE_BUSY) {\n      // Statements failing with SQLITE_BUSY can be retried in some instances,\n      // so we don't want to detach the cursor.\n      statement._currentCursor = null;\n    }\n\n    if (result != SqlError.SQLITE_OK && result != SqlError.SQLITE_DONE) {\n      throwException(\n        statement.database,\n        result,\n        operation: 'iterating through statement',\n        previousStatement: statement.sql,\n        statementArgs: statement._latestArguments,\n      );\n    }\n\n    return false;\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/implementation/utils.dart",
    "content": "import '../constants.dart';\nimport 'bindings.dart';\n\nextension BigIntRangeCheck on BigInt {\n  BigInt get checkRange {\n    if (this < bigIntMinValue64 || this > bigIntMaxValue64) {\n      throw Exception('BigInt value exceeds the range of 64 bits');\n    }\n    return this;\n  }\n}\n\nint eTextRep(bool deterministic, bool directOnly, bool subtype) {\n  var flags = SqlTextEncoding.SQLITE_UTF8;\n  if (deterministic) {\n    flags |= SqlFunctionFlag.SQLITE_DETERMINISTIC;\n  }\n  if (directOnly) {\n    flags |= SqlFunctionFlag.SQLITE_DIRECTONLY;\n  }\n  if (subtype) {\n    flags |=\n        SqlFunctionFlag.SQLITE_SUBTYPE | SqlFunctionFlag.SQLITE_RESULT_SUBTYPE;\n  }\n\n  return flags;\n}\n\nextension ReadDartValue on RawSqliteValue {\n  Object? read() {\n    return switch (sqlite3_value_type()) {\n      SqlType.SQLITE_INTEGER => sqlite3_value_int64(),\n      SqlType.SQLITE_FLOAT => sqlite3_value_double(),\n      SqlType.SQLITE_TEXT => sqlite3_value_text(),\n      SqlType.SQLITE_BLOB => sqlite3_value_blob(),\n      SqlType.SQLITE_BLOB || _ => null,\n    };\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/in_memory_vfs.dart",
    "content": "import 'dart:math';\nimport 'dart:typed_data';\n\nimport 'package:path/path.dart' as p;\nimport 'package:typed_data/typed_buffers.dart';\n\nimport 'constants.dart';\nimport 'vfs.dart';\nimport 'utils.dart';\n\n/// A virtual file system implementation that stores all files in memory.\n///\n/// This file system is commonly used on the web as a buffer in front of\n/// asynchronous storage APIs like IndexedDb. It can also serve as an example on\n/// how to write custom file systems to be used with sqlite3.\n///\n/// {@category common}\nfinal class InMemoryFileSystem extends BaseVirtualFileSystem {\n  final Map<String, Uint8Buffer?> fileData = {};\n\n  InMemoryFileSystem({super.name = 'dart-memory', super.random});\n\n  @override\n  int xAccess(String path, int flags) {\n    return fileData.containsKey(path) ? 1 : 0;\n  }\n\n  @override\n  void xDelete(String path, int syncDir) {\n    fileData.remove(path);\n  }\n\n  @override\n  String xFullPathName(String path) {\n    return p.url.normalize('/$path');\n  }\n\n  @override\n  XOpenResult xOpen(Sqlite3Filename path, int flags) {\n    final pathStr = path.path ?? random.randomFileName(prefix: '/');\n    if (!fileData.containsKey(pathStr)) {\n      final create = flags & SqlFlag.SQLITE_OPEN_CREATE;\n\n      if (create != 0) {\n        fileData[pathStr] = Uint8Buffer();\n      } else {\n        throw VfsException(SqlError.SQLITE_CANTOPEN);\n      }\n    }\n\n    return (\n      outFlags: 0,\n      file: _InMemoryFile(\n        this,\n        pathStr,\n        flags & SqlFlag.SQLITE_OPEN_DELETEONCLOSE != 0,\n      ),\n    );\n  }\n\n  @override\n  void xSleep(Duration duration) {}\n}\n\nclass _InMemoryFile extends BaseVfsFile {\n  final InMemoryFileSystem vfs;\n  final String path;\n  final bool deleteOnClose;\n\n  var _lockMode = SqlFileLockingLevels.SQLITE_LOCK_NONE;\n\n  _InMemoryFile(this.vfs, this.path, this.deleteOnClose);\n\n  @override\n  int readInto(Uint8List buffer, int offset) {\n    final file = vfs.fileData[path];\n    if (file == null || file.length <= offset) return 0;\n\n    final available = min(buffer.length, file.length - offset);\n    final list = file.buffer.asUint8List(0, file.length);\n    buffer.setRange(0, available, list, offset);\n    return available;\n  }\n\n  @override\n  int xCheckReservedLock() {\n    return _lockMode >= SqlFileLockingLevels.SQLITE_LOCK_RESERVED ? 1 : 0;\n  }\n\n  @override\n  void xClose() {\n    if (deleteOnClose) {\n      vfs.xDelete(path, 0);\n    }\n  }\n\n  @override\n  int xFileSize() {\n    return vfs.fileData[path]!.length;\n  }\n\n  @override\n  void xLock(int mode) {\n    _lockMode = mode;\n  }\n\n  @override\n  void xSync(int flags) {}\n\n  @override\n  void xTruncate(int size) {\n    final file = vfs.fileData[path];\n\n    if (file == null) {\n      vfs.fileData[path] = Uint8Buffer();\n      vfs.fileData[path]!.length = size;\n    } else {\n      file.length = size;\n    }\n  }\n\n  @override\n  void xUnlock(int mode) {\n    _lockMode = mode;\n  }\n\n  @override\n  void xWrite(Uint8List buffer, int fileOffset) {\n    var file = vfs.fileData[path];\n\n    if (file == null) {\n      file = Uint8Buffer();\n      vfs.fileData[path] = file;\n    }\n\n    var endIndex = fileOffset + buffer.length;\n    if (endIndex > file.length) {\n      file.length = endIndex;\n    }\n    file.setRange(fileOffset, endIndex, buffer);\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/jsonb.dart",
    "content": "import 'dart:convert';\nimport 'dart:typed_data';\n\nimport 'package:typed_data/typed_buffers.dart';\n\n/// A [Codec] capable of converting Dart objects from and to the [JSONB] format\n/// used by sqlite3.\n///\n/// The codec is useful when columns stored as blobs in SQLite are to be\n/// interpreted as JSONB values, as one conversion step between Dart and SQLite\n/// (usually implemented by mapping to a JSON string in Dart and then calling\n/// the `jsonb` SQL function, or calling `json` the other way around) becomes\n/// superfluous.\n///\n/// This codec's [Codec.encoder] supports the same objects as Dart's [json]\n/// encoder with the addition of non-finite [double] values that can't be\n/// represented in regular JSON. When passing a custom object into\n/// [Codec.encode], it will attempt to call a `toJson()` method. The encoder\n/// also throws the same [JsonCyclicError] and [JsonUnsupportedObjectError]\n/// classes thrown by the native JSON encoder.\n///\n/// Example:\n///\n/// ```dart\n/// import 'package:sqlite3/sqlite3.dart';\n///\n/// void main() {\n///   final database = sqlite3.openInMemory()\n///     ..execute('CREATE TABLE entries (entry BLOB NOT NULL) STRICT;')\n///     // You can insert JSONB-formatted values directly\n///     ..execute('INSERT INTO entries (entry) VALUES (?)', [\n///       jsonb.encode({'hello': 'dart'})\n///     ]);\n///   // And use them with JSON operators in SQLite without a further conversion:\n///   print(database.select('SELECT entry ->> ? AS r FROM entries;', [r'$.hello']));\n/// }\n/// ```\n///\n/// [JSONB]: https://sqlite.org/jsonb.html\n/// {@category common}\nconst Codec<Object?, Uint8List> jsonb = _JsonbCodec();\n\nfinal class _JsonbCodec extends Codec<Object?, Uint8List> {\n  const _JsonbCodec();\n\n  @override\n  Converter<Uint8List, Object?> get decoder => const _JsonbDecoder();\n\n  @override\n  Converter<Object?, Uint8List> get encoder => const _JsonbEncoder();\n}\n\nenum _ElementType {\n  _null,\n  _true,\n  _false,\n  _int,\n  _int5,\n  _float,\n  _float5,\n  _text,\n  _textJ,\n  _text5,\n  _textraw,\n  _array,\n  _object,\n  _reserved13,\n  _reserved14,\n  _reserved15,\n}\n\nfinal class _JsonbDecoder extends Converter<Uint8List, Object?> {\n  const _JsonbDecoder();\n\n  @override\n  Object? convert(Uint8List input) {\n    final state = _JsonbDecodingState(input);\n    final value = state.read();\n    if (state.remainingLength > 0) {\n      state._malformedJson();\n    }\n\n    return value;\n  }\n}\n\nfinal class _JsonbDecodingState {\n  final Uint8List input;\n  int offset = 0;\n  final List<int> endOffsetStack;\n\n  _JsonbDecodingState(this.input) : endOffsetStack = [input.length];\n\n  int get remainingLength => endOffsetStack.last - offset;\n\n  Never _malformedJson() {\n    throw ArgumentError('Malformed JSONB');\n  }\n\n  int nextByte() => input[offset++];\n\n  void pushLengthRestriction(int length) {\n    endOffsetStack.add(offset + length);\n  }\n\n  void popLengthRestriction() => endOffsetStack.removeLast();\n\n  void checkRemainingLength(int requiredBytes) {\n    if (remainingLength < requiredBytes) {\n      _malformedJson();\n    }\n  }\n\n  (_ElementType, int) readHeader() {\n    assert(remainingLength >= 1);\n    final firstByte = nextByte();\n    final type = _ElementType.values[firstByte & 0xF];\n    final lengthIndicator = firstByte >> 4;\n\n    var length = 0;\n    if (lengthIndicator <= 11) {\n      length = lengthIndicator;\n    } else {\n      final additionalBytes = 1 << (lengthIndicator - 12);\n      checkRemainingLength(additionalBytes);\n\n      for (var i = 0; i < additionalBytes; i++) {\n        length <<= 8;\n        length |= nextByte();\n      }\n    }\n\n    return (type, length);\n  }\n\n  List<Object?> readArray(int payloadLength) {\n    pushLengthRestriction(payloadLength);\n    final result = [];\n    while (remainingLength > 0) {\n      result.add(read());\n    }\n\n    popLengthRestriction();\n    return result;\n  }\n\n  Map<String, Object?> readObject(int payloadLength) {\n    pushLengthRestriction(payloadLength);\n    final result = <String, Object?>{};\n    while (remainingLength > 0) {\n      final name = read();\n      if (name is! String) {\n        _malformedJson();\n      }\n\n      final value = read();\n      result[name] = value;\n    }\n\n    popLengthRestriction();\n    return result;\n  }\n\n  Object? read() {\n    checkRemainingLength(1);\n    final (type, payloadLength) = readHeader();\n    checkRemainingLength(payloadLength);\n    final payloadStartOffset = offset;\n    final endIndex = offset + payloadLength;\n\n    Uint8List payloadBytes() {\n      return input.buffer.asUint8List(\n        input.offsetInBytes + payloadStartOffset,\n        payloadLength,\n      );\n    }\n\n    String payloadString() {\n      return utf8.decode(payloadBytes());\n    }\n\n    final value = switch (type) {\n      _ElementType._null => null,\n      _ElementType._true => true,\n      _ElementType._false => false,\n      _ElementType._int || _ElementType._int5 => int.parse(payloadString()),\n      _ElementType._float ||\n      _ElementType._float5 => double.parse(payloadString()),\n      _ElementType._text || _ElementType._textraw => payloadString(),\n      _ElementType._textJ ||\n      _ElementType._text5 => json.decode('\"${payloadString()}\"'),\n      _ElementType._array => readArray(payloadLength),\n      _ElementType._object => readObject(payloadLength),\n      _ => _malformedJson(),\n    };\n\n    assert(offset <= endIndex);\n    offset = endIndex;\n    return value;\n  }\n}\n\nfinal class _JsonbEncoder extends Converter<Object?, Uint8List> {\n  const _JsonbEncoder();\n\n  @override\n  Uint8List convert(Object? input) {\n    final operation = _JsonbEncodingOperation()..write(input);\n    return operation._buffer.buffer.asUint8List(\n      operation._buffer.offsetInBytes,\n      operation._buffer.length,\n    );\n  }\n}\n\nfinal class _JsonbEncodingOperation {\n  final Uint8Buffer _buffer = Uint8Buffer();\n\n  /// List of objects currently being traversed. Used to detect cycles.\n  final List<Object?> _seen = [];\n\n  void writeHeader(int payloadSize, _ElementType type) {\n    var firstByte = type.index;\n    if (payloadSize <= 11) {\n      _buffer.add((payloadSize << 4) | firstByte);\n    } else {\n      // We can encode the length as a 1, 2, 4 or 8 byte integer. Prefer the\n      // shortest.\n      switch (payloadSize.bitLength) {\n        case <= 8:\n          const prefix = 12 << 4;\n          _buffer\n            ..add(prefix | firstByte)\n            ..add(payloadSize);\n        case <= 16:\n          const prefix = 13 << 4;\n          _buffer\n            ..add(prefix | firstByte)\n            ..add(payloadSize >> 8)\n            ..add(payloadSize);\n        case <= 32:\n          const prefix = 14 << 4;\n          _buffer\n            ..add(prefix | firstByte)\n            ..add(payloadSize >> 24)\n            ..add(payloadSize >> 16)\n            ..add(payloadSize >> 8)\n            ..add(payloadSize);\n        default:\n          const prefix = 15 << 4;\n          _buffer\n            ..add(prefix | firstByte)\n            ..add(payloadSize >> 56)\n            ..add(payloadSize >> 48)\n            ..add(payloadSize >> 40)\n            ..add(payloadSize >> 32)\n            ..add(payloadSize >> 24)\n            ..add(payloadSize >> 16)\n            ..add(payloadSize >> 8)\n            ..add(payloadSize);\n      }\n    }\n  }\n\n  int prepareUnknownLength(_ElementType type) {\n    const prefix = 15 << 4;\n    _buffer.add(prefix | type.index);\n    final index = _buffer.length;\n    _buffer.addAll(_eightZeroes);\n    return index;\n  }\n\n  void fillPreviouslyUnknownLength(int index) {\n    final length = _buffer.length - index - 8;\n    for (var i = 0; i < 8; i++) {\n      _buffer[index + i] = length >> (8 * (7 - i));\n    }\n  }\n\n  /// Check that [object] is not already being traversed, or add it to the end\n  /// of the seen list otherwise.\n  void checkCycle(Object? object) {\n    for (final entry in _seen) {\n      if (identical(object, entry)) {\n        throw JsonCyclicError(object);\n      }\n    }\n\n    _seen.add(object);\n  }\n\n  /// Removes [object] from the end of the [_seen] list.\n  void removeSeen(Object? object) {\n    assert(_seen.isNotEmpty);\n    assert(identical(_seen.last, object));\n    _seen.removeLast();\n  }\n\n  void writeNull() {\n    writeHeader(0, _ElementType._null);\n  }\n\n  void writeBool(bool value) {\n    writeHeader(0, value ? _ElementType._true : _ElementType._false);\n  }\n\n  void writeInt(int value) {\n    final encoded = utf8.encode(value.toString());\n    writeHeader(encoded.length, _ElementType._int);\n    _buffer.addAll(encoded);\n  }\n\n  void writeDouble(double value) {\n    if (value.isNaN) {\n      // Recent SQLite versions don't accept NaN anymore, and this is consistent\n      // with the json codec from the SDK.\n      throw JsonUnsupportedObjectError(value);\n    }\n\n    final encoded = utf8.encode(value.toString());\n    // RFC 8259 does not support infinity or NaN.\n    writeHeader(\n      encoded.length,\n      value.isFinite ? _ElementType._float : _ElementType._float5,\n    );\n    _buffer.addAll(encoded);\n  }\n\n  void writeString(String value) {\n    final encoded = utf8.encode(value);\n    writeHeader(encoded.length, _ElementType._textraw);\n    _buffer.addAll(encoded);\n  }\n\n  void writeArray(Iterable<Object?> values) {\n    if (values.isEmpty) {\n      return writeHeader(0, _ElementType._array);\n    }\n\n    final index = prepareUnknownLength(_ElementType._array);\n    values.forEach(write);\n    fillPreviouslyUnknownLength(index);\n  }\n\n  bool writeMap(Map<Object?, Object?> values) {\n    if (values.isEmpty) {\n      writeHeader(0, _ElementType._object);\n      return true;\n    }\n\n    final keyValueList = List<Object?>.filled(values.length * 2, null);\n    var i = 0;\n    var invalidKey = false;\n    for (final MapEntry(:key, :value) in values.entries) {\n      if (key is! String) {\n        invalidKey = true;\n        break;\n      }\n      keyValueList[i++] = key;\n      keyValueList[i++] = value;\n    }\n    if (invalidKey) return false;\n\n    final index = prepareUnknownLength(_ElementType._object);\n    for (final value in keyValueList) {\n      write(value);\n    }\n    fillPreviouslyUnknownLength(index);\n    return true;\n  }\n\n  void write(Object? value) {\n    // Try writing values that don't need to be converted into a JSON-compatible\n    // format.\n    if (writeJsonValue(value)) {\n      return;\n    }\n\n    checkCycle(value);\n    try {\n      final lowered = _encodeObject(value);\n      if (!writeJsonValue(lowered)) {\n        throw JsonUnsupportedObjectError(lowered);\n      }\n      removeSeen(value);\n    } catch (e) {\n      throw JsonUnsupportedObjectError(value, cause: e);\n    }\n  }\n\n  bool writeJsonValue(Object? value) {\n    switch (value) {\n      case null:\n        writeNull();\n        return true;\n      case bool b:\n        writeBool(b);\n        return true;\n      case int i:\n        writeInt(i);\n        return true;\n      case double d:\n        writeDouble(d);\n        return true;\n      case String s:\n        writeString(s);\n        return true;\n      case List<Object?> i:\n        checkCycle(i);\n        writeArray(i);\n        removeSeen(i);\n        return true;\n      case Map<Object?, Object?> o:\n        checkCycle(o);\n        final success = writeMap(o);\n        removeSeen(o);\n        return success;\n      default:\n        return false;\n    }\n  }\n\n  static final _eightZeroes = Uint8List(8);\n\n  static Object? _encodeObject(dynamic object) => object.toJson();\n}\n"
  },
  {
    "path": "sqlite3/lib/src/result_set.dart",
    "content": "import 'dart:collection';\n\nimport 'package:collection/collection.dart';\nimport 'package:meta/meta.dart';\n\n/// Base class for result sets.\n///\n/// Result sets are either completely materialized ([ResultSet] with all rows\n/// being directly available), or executed row-by-row ([IteratingCursor]).\n///\n/// {@category common}\nsealed class Cursor {\n  List<String> _columnNames;\n\n  /// The column names of this query, as returned by `sqlite3`.\n  List<String> get columnNames => _columnNames;\n\n  @protected\n  set columnNames(List<String> names) {\n    _columnNames = names;\n    _calculateIndexes();\n  }\n\n  /// The table names of this query, as returned by `sqlite3`.\n  ///\n  /// A table name is null when the column is not directly associated\n  /// with a table, such as a computed column.\n  /// The list is null if the sqlite library was not compiled with the SQLITE_ENABLE_COLUMN_METADATA\n  /// C-preprocessor symbol.\n  /// More information in https://www.sqlite.org/c3ref/column_database_name.html.\n  final List<String?>? tableNames;\n\n  // a result set can have multiple columns with the same name, but that's rare\n  // and users usually use a name as index. So we cache that for O(1) lookups\n  Map<String, int> _calculatedIndexes = const {};\n\n  Cursor(this._columnNames, this.tableNames) {\n    _calculateIndexes();\n  }\n\n  void _calculateIndexes() {\n    _calculatedIndexes = {\n      for (var column in _columnNames) column: _columnNames.lastIndexOf(column),\n    };\n  }\n}\n\n/// A [Cursor] that can only be read once, obtaining rows from the database \"on\n/// the fly\" as [moveNext] is called.\n///\n/// This class provides [columnNames] and [tableNames]. Since sqlite3 statements\n/// are dynamically re-compiled by sqlite3 in response to schema changes, column\n/// names might change in the first call to [moveNext]. So, these getters are\n/// only reliable after [moveNext] was called once (regardless of its return\n/// value).\n///\n/// {@category common}\nabstract class IteratingCursor extends Cursor implements Iterator<Row> {\n  IteratingCursor(super._columnNames, super.tableNames);\n}\n\n/// Stores the full result of a select statement.\n///\n/// {@category common}\nfinal class ResultSet extends Cursor\n    with\n        ListMixin<Row>,\n        NonGrowableListMixin<Row> // ignore: prefer_mixin\n    implements Iterable<Row> {\n  /// The raw row data.\n  final List<List<Object?>> rows;\n\n  ResultSet(super._columnNames, super.tableNames, this.rows);\n\n  @override\n  Iterator<Row> get iterator => _ResultIterator(this);\n\n  @override\n  Row operator [](int index) => Row(this, rows[index]);\n\n  @override\n  void operator []=(int index, Row value) {\n    throw UnsupportedError(\"Can't change rows from a result set\");\n  }\n\n  @override\n  int get length => rows.length;\n}\n\n/// A single row in the result of a select statement.\n///\n/// This class implements the [Map] interface, which can be used to look up the\n/// value of a column by its name.\n/// The [columnAt] method may be used to obtain the value of a column by its\n/// index.\n///\n/// {@category common}\nfinal class Row\n    with\n        // ignore: prefer_mixin\n        UnmodifiableMapMixin<String, dynamic>,\n        MapMixin<String, dynamic>\n    implements Map<String, dynamic> {\n  final Cursor _result;\n  final List<Object?> _data;\n\n  Row(this._result, List<Object?> data) : _data = List.unmodifiable(data);\n\n  /// Returns the value stored in the [i]-th column in this row (zero-indexed).\n  dynamic columnAt(int i) {\n    return _data[i];\n  }\n\n  @override\n  dynamic operator [](Object? key) {\n    if (key is! String) {\n      if (key is int) {\n        return _data[key];\n      }\n      return null;\n    }\n\n    final index = _result._calculatedIndexes[key];\n    if (index == null) return null;\n\n    return columnAt(index);\n  }\n\n  @override\n  List<String> get keys => _result.columnNames;\n\n  @override\n  List<Object?> get values => _data;\n\n  /// Returns a two-level map that on the first level contains the resolved\n  /// non-aliased table name, and on the second level the column name (or its alias).\n  ///\n  /// A table name (first level map key) is null when the column is not directly associated\n  /// with a table, such as a computed column.\n  /// The map is null if the sqlite3 library was not compiled with the SQLITE_ENABLE_COLUMN_METADATA\n  /// C-preprocessor symbol.\n  /// More information in https://www.sqlite.org/c3ref/column_database_name.html.\n  Map<String?, Map<String, dynamic>>? toTableColumnMap() {\n    if (_result.tableNames == null) {\n      return null;\n    }\n    final Map<String?, Map<String, dynamic>> map = {};\n    for (int i = 0; i < _data.length; i++) {\n      final tableName = _result.tableNames![i];\n      final columnName = _result.columnNames[i];\n      final value = _data[i];\n\n      final columnsMap = map.putIfAbsent(tableName, () => <String, dynamic>{});\n      columnsMap[columnName] = value;\n    }\n    return map;\n  }\n}\n\nfinal class _ResultIterator implements Iterator<Row> {\n  final ResultSet result;\n  int index = -1;\n\n  _ResultIterator(this.result);\n\n  @override\n  Row get current => Row(result, result.rows[index]);\n\n  @override\n  bool moveNext() {\n    index++;\n    return index < result.rows.length;\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/session.dart",
    "content": "import 'dart:typed_data';\n\nimport 'database.dart';\nimport 'implementation/database.dart';\nimport 'implementation/session.dart';\nimport 'implementation/sqlite3.dart';\nimport 'sqlite3.dart';\n\n/// A Session tracks database changes made by a Conn.\n//\n/// It is used to build changesets.\n///\n/// Equivalent to the sqlite3_session* C object.\n///\n/// {@category common}\nabstract interface class Session {\n  /// Creates a new session on the given [CommonDatabase] and the optional\n  /// [name] of the schema to track.\n  ///\n  /// __Important__: While `package:sqlite3` uses native finalizers on both the\n  /// database and the session object to ensure they're cleared automatically\n  /// once they're no longer used in Dart, the order in which the objects are\n  /// cleared matters. It is important that the session is closed is before the\n  /// database, closing it afterwards may crash.\n  ///\n  /// This ordering can't be guaranteed with native finalizers alone. For this\n  /// reason, returned [Session]s should be [Session.delete]d explicitly as soon\n  /// as they're no longer needed.\n  factory Session(CommonDatabase database, {String name = 'main'}) {\n    final asImpl = database as DatabaseImplementation;\n    return SessionImplementation.createSession(asImpl, name);\n  }\n\n  /// Changeset generates a changeset from a session.\n  ///\n  /// https://www.sqlite.org/session/sqlite3session_changeset.html\n  Changeset changeset();\n\n  /// Patchset generates a patchset from a session.\n  ///\n  /// https://www.sqlite.org/session/sqlite3session_patchset.html\n  Patchset patchset();\n\n  /// Delete deletes a Session object.\n  ///\n  /// https://www.sqlite.org/session/sqlite3session_delete.html\n  void delete();\n\n  /// https://www.sqlite.org/session/sqlite3session_attach.html\n  void attach([String? table]);\n\n  /// Diff appends the difference between two tables (srcDB and the session DB) to the session.\n  /// The two tables must have the same name and schema.\n  /// https://www.sqlite.org/session/sqlite3session_diff.html\n  void diff(String fromDb, String table);\n\n  /// IsEnabled queries if the session is currently enabled.\n  /// https://www.sqlite.org/session/sqlite3session_enable.html\n  abstract bool enabled;\n\n  /// https://sqlite.org/session/sqlite3session_indirect.html\n  abstract bool isIndirect;\n\n  /// https://sqlite.org/session/sqlite3session_isempty.html\n  bool get isEmpty;\n\n  bool get isNotEmpty;\n}\n\n/// A patchset obtained from a byte sequence or an active [Session].\n///\n/// Unlike [Changeset]s, patchsets don't store values for deletions (apart from\n/// the primary key) and don't keep original values for `UPDATE` records.\n///\n/// {@category common}\nabstract interface class Patchset implements Iterable<ChangesetOperation> {\n  /// The binary representation of this patchset or changeset.\n  Uint8List get bytes;\n\n  @override\n  ChangesetIterator get iterator;\n\n  /// Creates a patch set from the underlying serialized byte representation.\n  factory Patchset.fromBytes(Uint8List bytes, CommonSqlite3 bindings) {\n    return PatchsetImplementation(\n      bytes,\n      (bindings as Sqlite3Implementation).bindings,\n    );\n  }\n\n  /// Applies this changeset or patchset to the [database].\n  void applyTo(\n    CommonDatabase database, [\n    ApplyChangesetOptions options = const ApplyChangesetOptions(),\n  ]);\n}\n\n/// A changeset, representing changes made while a [Session] is active.\n///\n/// {@category common}\nabstract interface class Changeset implements Patchset {\n  /// Creates a changeset from the underlying serialized byte representation.\n  factory Changeset.fromBytes(Uint8List bytes, CommonSqlite3 bindings) {\n    return ChangesetImplementation(\n      bytes,\n      (bindings as Sqlite3Implementation).bindings,\n    );\n  }\n\n  /// Inverts this changeset.\n  Changeset operator -();\n}\n\n/// A recorded operation on a changeset.\n///\n/// {@category common}\nfinal class ChangesetOperation {\n  /// Name of the table affected by the operation.\n  final String table;\n\n  /// The amount of columns in the table, which equals the [List.length] of\n  /// [oldValues] and [newValues].\n  final int columnCount;\n\n  /// The type of update made.\n  final SqliteUpdateKind operation;\n\n  /// If [operation] is not [SqliteUpdateKind.insert], a list of values in the\n  /// row before the operation.\n  final List<Object?>? oldValues;\n\n  /// If [operation] is not [SqliteUpdateKind.delete], a list of values in the\n  /// row after the operation.\n  final List<Object?>? newValues;\n\n  ChangesetOperation({\n    required this.table,\n    required this.columnCount,\n    required this.operation,\n    required this.oldValues,\n    required this.newValues,\n  });\n\n  @override\n  String toString() {\n    return 'ChangesetOperation: $operation on $table. old: $oldValues, new: $newValues';\n  }\n}\n\n/// An [Iterator] through a [Changeset] or [Patchset].\nabstract interface class ChangesetIterator\n    implements Iterator<ChangesetOperation> {\n  /// Aborts this iterator and frees internal resources.\n  ///\n  /// This is also called automatically when [moveNext] returns false, but needs\n  /// to be called manually if the iterator is not completed.\n  void finalize();\n}\n\nclass ApplyChangesetOptions {\n  /// An optional filter to only apply changes on some tables.\n  ///\n  /// When set, only operators on tables for which this function returns true\n  /// are applied.\n  final bool Function(String tableName)? filter;\n\n  /// Determines how conflicts are handled. **Default**: `SQLITE_CHANGESET_ABORT`.\n  final ApplyChangesetConflict? onConflict;\n\n  const ApplyChangesetOptions({this.filter, this.onConflict});\n}\n\n// #define SQLITE_CHANGESET_OMIT       0\n// #define SQLITE_CHANGESET_REPLACE    1\n// #define SQLITE_CHANGESET_ABORT      2\nenum ApplyChangesetConflict {\n  /// Abort the changeset application.\n  abort(2),\n\n  /// Replace the conflicting row.\n  replace(1),\n\n  /// Omit the current change.\n  omit(0);\n\n  final int flag;\n  const ApplyChangesetConflict(this.flag);\n\n  static ApplyChangesetConflict parse(int flag) {\n    return ApplyChangesetConflict.values.firstWhere((e) => e.flag == flag);\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/sqlite3.dart",
    "content": "import 'database.dart';\nimport 'vfs.dart';\n\n/// Provides access to `sqlite3` functions, such as opening new databases.\n///\n/// {@category common}\nabstract interface class CommonSqlite3 {\n  /// The version of the sqlite3 library used.\n  Version get version;\n\n  /// Opens a database file.\n  ///\n  /// The [vfs] option can be used to set the appropriate virtual file system\n  /// implementation. When null, the default file system will be used.\n  ///\n  /// If [uri] is enabled (defaults to `false`), the [filename] will be\n  /// interpreted as an uri as according to https://www.sqlite.org/uri.html.\n  ///\n  /// If the [mutex] parameter is set to true, the `SQLITE_OPEN_FULLMUTEX` flag\n  /// will be set. If it's set to false, `SQLITE_OPEN_NOMUTEX` will be enabled.\n  /// By default, neither parameter will be set.\n  CommonDatabase open(\n    String filename, {\n    String? vfs,\n    OpenMode mode = OpenMode.readWriteCreate,\n    bool uri = false,\n    bool? mutex,\n  });\n\n  /// Opens an in-memory database.\n  ///\n  /// The [vfs] option can be used to set the appropriate virtual file system\n  /// implementation. When null, the default file system will be used.\n  CommonDatabase openInMemory({String? vfs});\n\n  /// Accesses the `sqlite3_temp_directory` variable.\n  ///\n  /// Note that this operation might not be safe if a database connection is\n  /// being used at the same time in different isolates.\n  ///\n  /// See also: https://www.sqlite.org/c3ref/temp_directory.html\n  String? tempDirectory;\n\n  /// Registers a custom virtual file system used by this sqlite3 instance to\n  /// emulate I/O functionality that is not supported through WASM directly.\n  ///\n  /// Implementing a suitable [VirtualFileSystem] is a complex task. Users of\n  /// this package on the web should consider using a package that calls this\n  /// method for them (like `drift` or `sqflite_common_ffi_web`).\n  /// For more information on how to implement this, see the readme of the\n  /// `sqlite3` package for details.\n  void registerVirtualFileSystem(\n    VirtualFileSystem vfs, {\n    bool makeDefault = false,\n  });\n\n  /// Unregisters a virtual file system implementation that has been registered\n  /// with [registerVirtualFileSystem].\n  ///\n  /// sqlite3 is not clear about what happens when this method is called with\n  /// the file system being in used. Thus, this method should be used with care.\n  void unregisterVirtualFileSystem(VirtualFileSystem vfs);\n}\n\n/// Version information about the sqlite3 library in use.\nfinal class Version {\n  /// A textual description of this sqlite version, such as '3.32.2'.\n  final String libVersion;\n\n  /// Detailed information about the source code of this sqlite build, which\n  /// contains the Date of the latest change and a commit hash.\n  final String sourceId;\n\n  /// A numerical representation of [libVersion], such as `3032002`.\n  final int versionNumber;\n\n  /// Construct a version from the individual components.\n  Version(this.libVersion, this.sourceId, this.versionNumber);\n\n  @override\n  String toString() {\n    return 'Version(libVersion: $libVersion, sourceId: $sourceId, '\n        'number: $versionNumber)';\n  }\n}\n\n/// Controls how databases should be opened by sqlite\nenum OpenMode {\n  /// The database is opened in read-only mode. If the database does not already\n  /// exist, an error is returned.\n  readOnly,\n\n  /// The database is opened for reading and writing if possible, or reading\n  /// only if the file is write protected by the operating system. In either\n  /// case the database must already exist, otherwise an error is returned.\n  readWrite,\n\n  /// The database is opened for reading and writing, and is created if it does\n  /// not already exist\n  readWriteCreate,\n}\n"
  },
  {
    "path": "sqlite3/lib/src/statement.dart",
    "content": "import 'package:meta/meta.dart';\n\nimport 'exception.dart';\nimport 'result_set.dart';\n\n/// A prepared statement.\n///\n/// {@category common}\nabstract class CommonPreparedStatement {\n  /// The SQL statement backing this prepared statement.\n  String get sql;\n\n  /// Returns the amount of parameters in this prepared statement.\n  int get parameterCount;\n\n  /// Returns whether this statement makes no direct changes to the contents of\n  /// the database file.\n  ///\n  /// See also: https://www.sqlite.org/c3ref/stmt_readonly.html\n  bool get isReadOnly;\n\n  /// Whether this statement is either an `EXPLAIN` or an `EXPLAIN QUERY PLAN`\n  /// statement.\n  ///\n  /// This uses `sqlite3_stmt_isexplain`, which is documented here:\n  /// https://www.sqlite.org/c3ref/stmt_isexplain.html\n  bool get isExplain;\n\n  /// {@template pkg_sqlite3_stmt_execute}\n  /// Executes this statement, ignoring result rows if there are any.\n  ///\n  /// If the [parameters] list does not match the amount of parameters in the\n  /// original SQL statement ([parameterCount]), an [ArgumentError] will be\n  /// thrown.\n  /// See [StatementParameters] for a list of types supported by this library.\n  /// If sqlite3 reports an error while running this statement, a\n  /// [SqliteException] will be thrown.\n  ///\n  /// To run a statement and also obtaining returned rows, use [selectWith] or\n  /// [iterateWith]. It is safe to call these methods on statements that aren't\n  /// `SELECT` statements (such as writes with a `RETURNING` clause) too.\n  /// {@endtemplate}\n  void executeWith(StatementParameters parameters);\n\n  /// {@template pkg_sqlite3_stmt_select}\n  /// Selects all rows into a [ResultSet].\n  ///\n  /// If the [parameters] list does not match the amount of parameters in the\n  /// original SQL statement ([parameterCount]), an [ArgumentError] will be\n  /// thrown.\n  /// See [StatementParameters] for a list of types supported by this library.\n  /// If sqlite3 reports an error while running this statement, a\n  /// [SqliteException] will be thrown.\n  ///\n  /// This statement doesn't have to be a `SELECT` statement for [selectWith] to\n  /// be useful - writes with `RETURNING` clauses also return rows which can\n  /// be fetched via [selectWith].\n  /// {@endtemplate}\n  ResultSet selectWith(StatementParameters parameters);\n\n  /// {@template pkg_sqlite3_stmt_iterate}\n  /// Starts selecting rows by running this prepared statement with the given\n  /// [parameters].\n  ///\n  /// If the [parameters] list does not match the amount of parameters in the\n  /// original SQL statement ([parameterCount]), an [ArgumentError] will be\n  /// thrown.\n  /// See [StatementParameters] for a list of types supported by this library.\n  ///\n  /// If sqlite3 reports an error while running this statement, it will be\n  /// thrown by a call to [Iterator.moveNext].\n  ///\n  /// The iterator returned here will become invalid with the next call to a\n  /// method that runs this statement ([execute], [executeWith], [select],\n  /// [selectWith], [selectCursor], [iterateWith]).\n  /// {@endtemplate}\n  IteratingCursor iterateWith(StatementParameters parameters);\n\n  /// {@macro pkg_sqlite3_stmt_execute}\n  void execute([List<Object?> parameters = const <Object>[]]) {\n    return executeWith(StatementParameters(parameters));\n  }\n\n  /// {@macro pkg_sqlite3_stmt_execute}\n  ///\n  /// Unlike [execute], which binds parameters by their index, [executeMap]\n  /// binds parameters by their name.\n  /// For instance, a SQL query `SELECT :foo, @bar;` has two named parameters\n  /// (`:foo` and `@bar`) that can occur as keys in [parameters].\n  @Deprecated('Use executeWith(StatementParameters.named) instead')\n  void executeMap(Map<String, Object?> parameters) {\n    return executeWith(StatementParameters.named(parameters));\n  }\n\n  /// {@macro pkg_sqlite3_stmt_select}\n  ResultSet select([List<Object?> parameters = const <Object>[]]) {\n    return selectWith(StatementParameters(parameters));\n  }\n\n  /// {@macro pkg_sqlite3_stmt_select}\n  ///\n  /// Similar to [executeMap], parameters are bound by their name instead of\n  /// their index.\n  @Deprecated('Use selectWith(StatementParameters.named) instead')\n  ResultSet selectMap(Map<String, Object?> parameters) {\n    return selectWith(StatementParameters.named(parameters));\n  }\n\n  /// {@macro pkg_sqlite3_stmt_iterate}\n  IteratingCursor selectCursor([List<Object?> parameters = const <Object>[]]) {\n    return iterateWith(StatementParameters(parameters));\n  }\n\n  /// Resets this statement to be excuted again.\n  ///\n  /// You typically don't need to call [reset] manually as it is called for you\n  /// internally when [select] or [execute] called multiple times.\n  /// However, [reset] removes all active cursors on this statement, which can\n  /// be useful if a statement is re-used across longer periods of time.\n  ///\n  /// See also:\n  ///  - [sqlite3_reset]: https://www.sqlite.org/c3ref/reset.html\n  void reset();\n\n  /// Disposes this statement and releases associated memory.\n  @Deprecated('Use close() instead')\n  void dispose();\n\n  /// Closes this prepared statement.\n  ///\n  /// On native platforms, a native finalizer will also close statements\n  /// automatically. On the web, finalizers are less reliable. For this reason,\n  /// closing statements explicitly is still recommended.\n  ///\n  /// See also:\n  ///  - `sqlite3_finalize`: https://www.sqlite.org/c3ref/finalize.html\n  void close();\n}\n\n/// A set of values that can be used to bind [parameters] in a SQL query.\n///\n/// Parameters are placeholder values in SQL that can safely be bound to values\n/// later without a risk of SQL injection attacks.\n/// Depending on the syntax used to declare a parameter, it may make sense to\n/// pass parameters by their index or by name. The different constructors of\n/// this class can be used to control how parameters are passed.\n///\n/// This package supports binding [int], [BigInt], [String], [double], `List<int>`\n/// and `null` values by default. For custom values, such as those using the\n/// [pointer-binding](https://www.sqlite.org/bindptr.html) interface provided by\n/// `sqlite3`, [CustomStatementParameter] can be implemented and passed as a\n/// parameter as well.\n///\n/// {@category common}\n///\n/// [parameters]: https://www.sqlite.org/lang_expr.html#varparam\nsealed class StatementParameters {\n  /// Convenience factory to use when no parameters should be passed.\n  const factory StatementParameters.empty() = IndexedParameters.empty;\n\n  /// Passes parameters by their variable number.\n  const factory StatementParameters(List<Object?> parameters) =\n      IndexedParameters;\n\n  /// Passes variables by their name.\n  ///\n  /// For instance, the statement `SELECT * FROM users WHERE id = :id` could be\n  /// bound with `StatementParameters.named({':a': 42})`.\n  const factory StatementParameters.named(Map<String, Object?> parameters) =\n      NamedParameters;\n\n  /// Passes variables by invoking a callback responsible for using a native\n  /// statement handle to bind parameters.\n  ///\n  /// Other constructors validate parameters, making them harder to misuse. In\n  /// special cases where that doesn't work, this constructor can be used to\n  /// indicate that you are fully responsible for binding parameters and don't\n  /// need any validation checks.\n  const factory StatementParameters.bindCustom(\n    void Function(CommonPreparedStatement stmt) bind,\n  ) = CustomParameters;\n}\n\n@internal\nclass IndexedParameters implements StatementParameters {\n  final List<Object?> parameters;\n\n  const IndexedParameters(this.parameters);\n\n  const IndexedParameters.empty() : parameters = const [];\n}\n\n@internal\nclass NamedParameters implements StatementParameters {\n  final Map<String, Object?> parameters;\n\n  const NamedParameters(this.parameters);\n}\n\n@internal\nclass CustomParameters implements StatementParameters {\n  final void Function(CommonPreparedStatement) bind;\n\n  const CustomParameters(this.bind);\n}\n\n/// A parameter passed to prepared statements that decides how it gets mapped to\n/// SQL in [applyTo].\n///\n/// Implementing and using this class is rarely useful, as this package supports\n/// standard types supported by `sqlite3` directly.\n/// For advanced APIs, such as the [pointer-passing](https://www.sqlite.org/bindptr.html)\n/// interface that can't directly be represented in a high-level Dart interface,\n/// this class can be used to manually bind a value.\n///\n/// {@category common}\nabstract interface class CustomStatementParameter {\n  /// Applies this custom parameter to the [statement] at the variable index\n  /// [index].\n  ///\n  /// On native platforms, an implementation can safely cast the `statement` to\n  /// a `PreparedStatement` (from `package:sqlite3/sqlite3.dart`) and use the\n  /// `PreparedStatement.handle` to call `sqlite3_bind_*` manually.\n  void applyTo(CommonPreparedStatement statement, int index);\n}\n"
  },
  {
    "path": "sqlite3/lib/src/utils.dart",
    "content": "import 'dart:math';\n\nextension GenerateFilename on Random {\n  String randomFileName({required String prefix, int length = 16}) {\n    const chars =\n        'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ012346789';\n\n    final buffer = StringBuffer(prefix);\n    for (var i = 0; i < length; i++) {\n      buffer.writeCharCode(chars.codeUnitAt(nextInt(chars.length)));\n    }\n\n    return buffer.toString();\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/vfs.dart",
    "content": "import 'dart:math';\nimport 'dart:typed_data';\n\nimport 'constants.dart';\n\n/// An exception thrown by [VirtualFileSystem] implementations written in Dart\n/// to signal that an operation could not be completed.\n///\n/// {@category common}\nfinal class VfsException implements Exception {\n  /// The error code to return to sqlite3.\n  final int returnCode;\n\n  const VfsException(this.returnCode) : assert(returnCode != 0);\n\n  @override\n  String toString() {\n    return 'VfsException($returnCode)';\n  }\n}\n\n/// A filename passed to [VirtualFileSystem.xOpen].\n///\n/// {@category common}\nbase class Sqlite3Filename {\n  final String? path;\n\n  Sqlite3Filename(this.path);\n}\n\n/// A [virtual filesystem][vfs] used by sqlite3 to access the current I/O\n/// environment.\n///\n/// Instead of having an integer return code, file system implementations should\n/// throw a [VfsException] to signal invalid operations.\n/// For details on the individual methods, consult the `sqlite3.h` header file\n/// and its documentation.\n///\n/// For a file system implementation that implements a few methods already,\n/// consider extending [BaseVirtualFileSystem].\n///\n/// [vfs]: https://www.sqlite.org/c3ref/vfs.html\n///\n/// {@category common}\nabstract base class VirtualFileSystem {\n  /// The name of this virtual file system.\n  ///\n  /// This can be passed as an URI parameter when opening databases to select\n  /// it.\n  final String name;\n\n  VirtualFileSystem(this.name);\n\n  /// Opens a file, returning supported flags and a file instance.\n  XOpenResult xOpen(Sqlite3Filename path, int flags);\n\n  /// Delete a file.\n  void xDelete(String path, int syncDir);\n\n  /// Check whether a file can be accessed.\n  int xAccess(String path, int flags);\n\n  /// Resolves a [path] name supplied by the user into a path that can be used\n  /// by the other methods of this VFS.\n  String xFullPathName(String path);\n\n  /// Fill the [target] with random bytes.\n  ///\n  /// __Safety warning__: Target may be a direct view over native memory that\n  /// must not be used after this function returns.\n  void xRandomness(Uint8List target);\n\n  /// Sleeps for the passed [duration].\n  void xSleep(Duration duration);\n\n  /// Returns the current time.\n  DateTime xCurrentTime();\n}\n\n/// The result of [VirtualFileSystem.xOpen].\ntypedef XOpenResult = ({int outFlags, VirtualFileSystemFile file});\n\n/// A file implemented by a VFS author and returned by [VirtualFileSystem.xOpen].\n///\n/// To avoid common pitfalls, consider extending [BaseVfsFile] instead.\n///\n/// {@category common}\nabstract interface class VirtualFileSystemFile {\n  /// Close this file.\n  void xClose();\n\n  /// Fill the [target] with bytes read from [fileOffset].\n  ///\n  /// If the file is not large enough to fullfill the read, a [VfsException]\n  /// with an error code of [SqlExtendedError.SQLITE_IOERR_SHORT_READ] must be\n  /// thrown. Additional, the rest of [target] must be filled with zeroes.\n  ///\n  /// __Safety warning__: Target may be a direct view over native memory that\n  /// must not be used after this function returns.\n  void xRead(Uint8List target, int fileOffset);\n\n  /// Writes the [buffer] into this file at [fileOffset], overwriting existing\n  /// content or appending to it.\n  ///\n  /// If, for some reason, only a part of the buffer could be written, a\n  /// [VfsException] must be thrown.\n  ///\n  /// __Safety warning__: Target may be a direct view over native memory that\n  /// must not be used after this function returns.\n  void xWrite(Uint8List buffer, int fileOffset);\n\n  /// Truncates this file to a size of [size].\n  void xTruncate(int size);\n\n  /// Synchronizes, or flushes, the contents of this file to the file system.\n  void xSync(int flags);\n\n  /// Returns the size of this file.\n  int xFileSize();\n\n  /// Moves the lock state of this file to a more exclusive lock state.\n  void xLock(int mode);\n\n  /// Moves the lock state of this file to a less exclusive lock state.\n  void xUnlock(int mode);\n\n  /// Returns the lock state held by any process on this file.\n  int xCheckReservedLock();\n\n  ///\n  int get xDeviceCharacteristics;\n}\n\n/// A [VirtualFileSystem] implementation that uses a [Random] instance for\n/// [xRandomness] and [DateTime.now] for [xCurrentTime].\n///\n/// {@category common}\nabstract base class BaseVirtualFileSystem extends VirtualFileSystem {\n  final Random random;\n\n  BaseVirtualFileSystem({Random? random, required String name})\n    : random = random ?? _fallbackRandom,\n      super(name);\n\n  @override\n  void xRandomness(Uint8List target) {\n    generateRandomness(target, random);\n  }\n\n  @override\n  DateTime xCurrentTime() => DateTime.now();\n\n  /// Fills [target] with random bytes.\n  ///\n  /// An optional [random] source can be provided, otherwise a default instance\n  /// of [Random.secure] will be used.\n  static void generateRandomness(Uint8List target, [Random? random]) {\n    random ??= _fallbackRandom;\n\n    for (var i = 0; i < target.length; i++) {\n      target[i] = random.nextInt(1 << 8);\n    }\n  }\n\n  static final Random _fallbackRandom = Random.secure();\n}\n\n/// A [VirtualFileSystemFile] base class that implements [xRead] to zero-fill\n/// the buffer in case of short reads.\n///\n/// {@category common}\nabstract class BaseVfsFile implements VirtualFileSystemFile {\n  /// Reads from the file at [offset] into the [buffer] and returns the amount\n  /// of bytes read.\n  ///\n  /// __Safety warning__: [buffer] may be a direct view over native memory that\n  /// must not be used after this function returns.\n  int readInto(Uint8List buffer, int offset);\n\n  @override\n  int get xDeviceCharacteristics => 0;\n\n  @override\n  void xRead(Uint8List target, int fileOffset) {\n    final bytesRead = readInto(target, fileOffset);\n\n    if (bytesRead < target.length) {\n      // Remaining buffer must be filled with zeroes.\n      target.fillRange(bytesRead, target.length, 0);\n\n      // And we need to return a short read error\n      throw const VfsException(SqlExtendedError.SQLITE_IOERR_SHORT_READ);\n    }\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/bindings.dart",
    "content": "import 'dart:collection';\nimport 'dart:convert';\nimport 'dart:js_interop';\nimport 'dart:typed_data';\n\nimport 'package:sqlite3/src/vfs.dart';\n\nimport '../constants.dart';\nimport '../functions.dart';\nimport '../implementation/bindings.dart';\nimport '../implementation/exception.dart';\nimport 'injected_values.dart';\nimport 'wasm_interop.dart' as wasm;\nimport 'sqlite3_wasm.g.dart';\nimport 'wasm_interop.dart';\n\n// ignore_for_file: non_constant_identifier_names\n\nfinal class WasmSqliteBindings implements RawSqliteBindings {\n  final wasm.WasmBindings bindings;\n\n  WasmSqliteBindings(this.bindings);\n\n  @override\n  String? get sqlite3_temp_directory {\n    final charPtr = bindings.sqlite3_temp_directory;\n    if (charPtr == 0) {\n      return null;\n    } else {\n      return bindings.memory.readString(charPtr);\n    }\n  }\n\n  @override\n  set sqlite3_temp_directory(String? value) {\n    if (value == null) {\n      bindings.sqlite3_temp_directory = 0;\n    } else {\n      bindings.sqlite3_temp_directory = bindings.allocateZeroTerminated(value);\n    }\n  }\n\n  @override\n  String sqlite3_errstr(int extendedErrorCode) {\n    return bindings.memory.readString(\n      bindings.sqlite3_errstr(extendedErrorCode),\n    );\n  }\n\n  @override\n  String sqlite3_libversion() {\n    return bindings.memory.readString(bindings.sqlite3_libversion());\n  }\n\n  @override\n  int sqlite3_libversion_number() {\n    return bindings.sqlite3_libversion_number();\n  }\n\n  @override\n  SqliteResult<RawSqliteDatabase> sqlite3_open_v2(\n    String name,\n    int flags,\n    String? zVfs,\n  ) {\n    final namePtr = bindings.allocateZeroTerminated(name);\n    final outDb = bindings.malloc(wasm.WasmBindings.pointerSize);\n    final vfsPtr = zVfs == null ? 0 : bindings.allocateZeroTerminated(zVfs);\n\n    final result = bindings.sqlite3_open_v2(namePtr, outDb, flags, vfsPtr);\n    final dbPtr = bindings.memory.int32ValueOfPointer(outDb);\n\n    // Free pointers we allocateed\n    bindings\n      ..free(namePtr)\n      ..free(vfsPtr);\n    if (zVfs != null) bindings.free(vfsPtr);\n\n    return (resultCode: result, result: WasmDatabase(bindings, dbPtr));\n  }\n\n  @override\n  String sqlite3_sourceid() {\n    return bindings.memory.readString(bindings.sqlite3_sourceid());\n  }\n\n  @override\n  int sqlite3_initialize() {\n    return bindings.sqlite3_initialize();\n  }\n\n  @override\n  void registerVirtualFileSystem(VirtualFileSystem vfs, int makeDefault) {\n    final name = bindings.allocateZeroTerminated(vfs.name);\n\n    final ptr = bindings.sqlite3.dart_sqlite3_register_vfs(\n      name,\n      vfs.toExternalReference,\n      makeDefault,\n    );\n    if (ptr == 0) {\n      throw StateError('could not register vfs');\n    }\n    _sqliteVfsPointer[vfs] = ptr;\n  }\n\n  @override\n  void unregisterVirtualFileSystem(VirtualFileSystem vfs) {\n    final ptr = _sqliteVfsPointer[vfs];\n    if (ptr == null) {\n      throw StateError('vfs has not been registered');\n    }\n\n    bindings.sqlite3_vfs_unregister(ptr);\n  }\n\n  @override\n  RawSqliteSession sqlite3session_create(RawSqliteDatabase db, String name) {\n    final zDb = bindings.allocateZeroTerminated(name);\n    final sessionPtr = bindings.malloc(WasmBindings.pointerSize);\n\n    final result = bindings.sqlite3session_create(\n      (db as WasmDatabase).db,\n      zDb,\n      sessionPtr,\n    );\n\n    final session = bindings.memory.int32ValueOfPointer(sessionPtr);\n    bindings\n      ..free(zDb)\n      ..free(sessionPtr);\n\n    if (result != 0) {\n      throw createExceptionOutsideOfDatabase(this, result);\n    }\n\n    return WasmSession(this, session);\n  }\n\n  @override\n  int sqlite3changeset_apply(\n    RawSqliteDatabase database,\n    Uint8List changeset,\n    int Function(String tableName)? filter,\n    int Function(int eConflict, RawChangesetIterator iter) conflict,\n  ) {\n    final callbacks = SessionApplyCallbacks(\n      switch (filter) {\n        null => null,\n        final filter => (Pointer tableName) {\n          final table = bindings.memory.readString(tableName);\n          return filter(table);\n        },\n      },\n      (int eConflict, Pointer iterator) {\n        final impl = WasmChangesetIterator(this, iterator, owned: false);\n        return conflict(eConflict, impl);\n      },\n    );\n\n    final changesetPtr = bindings.allocateBytes(changeset);\n\n    final result = bindings.sqlite3.dart_sqlite3changeset_apply(\n      (database as WasmDatabase).db,\n      changeset.length,\n      changesetPtr,\n      callbacks.toExternalReference,\n      filter != null ? 1 : 0,\n    );\n    bindings.free(changesetPtr);\n    return result;\n  }\n\n  @override\n  Uint8List sqlite3changeset_invert(Uint8List changeset) {\n    final originalPtr = bindings.allocateBytes(changeset);\n    final lengthPtr = bindings.malloc(WasmBindings.pointerSize);\n    final outPtr = bindings.malloc(WasmBindings.pointerSize);\n    final result = bindings.sqlite3changeset_invert(\n      changeset.length,\n      originalPtr,\n      lengthPtr,\n      outPtr,\n    );\n\n    final length = bindings.memory.int32ValueOfPointer(lengthPtr);\n    final inverted = bindings.memory.int32ValueOfPointer(outPtr);\n\n    bindings\n      ..free(originalPtr)\n      ..free(lengthPtr)\n      ..free(outPtr);\n\n    if (result != 0) {\n      throw createExceptionOutsideOfDatabase(this, result);\n    }\n\n    final out = bindings.memory.copyRange(inverted, length);\n    bindings.sqlite3_free(inverted);\n    return out;\n  }\n\n  @override\n  RawChangesetIterator sqlite3changeset_start(Uint8List changeset) {\n    final changesetPtr = bindings.allocateBytes(changeset);\n    final outPtr = bindings.malloc(WasmBindings.pointerSize);\n    final result = bindings.sqlite3changeset_start(\n      outPtr,\n      changeset.length,\n      changesetPtr,\n    );\n\n    final iterator = bindings.memory.int32ValueOfPointer(outPtr);\n    bindings.free(outPtr);\n\n    if (result != 0) {\n      throw createExceptionOutsideOfDatabase(this, result);\n    }\n    return WasmChangesetIterator(this, iterator, dataPointer: changesetPtr);\n  }\n\n  static final _sqliteVfsPointer = Expando<int>();\n}\n\nfinal class WasmDatabase implements RawSqliteDatabase {\n  final wasm.WasmBindings bindings;\n  final Pointer db;\n  final Object detach = Object();\n\n  WasmDatabase(this.bindings, this.db) {\n    bindings.databaseFinalizer?.attach(this, db, detach: detach);\n  }\n\n  @override\n  int sqlite3_close_v2() {\n    bindings.databaseFinalizer?.detach(detach);\n    return bindings.sqlite3_close_v2(db);\n  }\n\n  @override\n  String sqlite3_errmsg() {\n    return bindings.memory.readString(bindings.sqlite3_errmsg(db));\n  }\n\n  @override\n  int sqlite3_extended_errcode() {\n    return bindings.sqlite3_extended_errcode(db);\n  }\n\n  @override\n  int sqlite3_error_offset() {\n    return bindings.sqlite3_error_offset(db);\n  }\n\n  @override\n  void sqlite3_extended_result_codes(int onoff) {\n    bindings.sqlite3_extended_result_codes(db, onoff);\n  }\n\n  @override\n  RawStatementCompiler newCompiler(List<int> utf8EncodedSql) {\n    final ptr = bindings.allocateBytes(utf8EncodedSql);\n\n    return WasmStatementCompiler(this, ptr);\n  }\n\n  @override\n  int sqlite3_changes() => bindings.sqlite3_changes(db);\n\n  @override\n  int sqlite3_create_collation_v2({\n    required Uint8List collationName,\n    required int eTextRep,\n    required RawCollation collation,\n  }) {\n    final ptr = bindings.allocateBytes(collationName, additionalLength: 1);\n    final result = bindings.sqlite3.dart_sqlite3_create_collation(\n      db,\n      ptr,\n      eTextRep,\n      RegisteredFunctionSet(collation: collation).toExternalReference,\n    );\n\n    bindings.free(ptr);\n    return result;\n  }\n\n  @override\n  int sqlite3_create_function_v2({\n    required Uint8List functionName,\n    required int nArg,\n    required int eTextRep,\n    RawXFunc? xFunc,\n    RawXStep? xStep,\n    RawXFinal? xFinal,\n  }) {\n    final ptr = bindings.allocateBytes(functionName, additionalLength: 1);\n\n    var isAggregate = false;\n    RegisteredFunctionSet set;\n    if (xFunc != null) {\n      set = RegisteredFunctionSet(xFunc: xFunc);\n    } else {\n      isAggregate = true;\n      set = RegisteredFunctionSet(xStep: xStep, xFinal: xFinal);\n    }\n\n    final result = bindings.sqlite3.dart_sqlite3_create_function_v2(\n      db,\n      ptr,\n      nArg,\n      eTextRep,\n      isAggregate ? 1 : 0,\n      set.toExternalReference,\n    );\n\n    bindings.free(ptr);\n    return result;\n  }\n\n  @override\n  int sqlite3_create_window_function({\n    required Uint8List functionName,\n    required int nArg,\n    required int eTextRep,\n    required RawXStep xStep,\n    required RawXFinal xFinal,\n    required RawXFinal xValue,\n    required RawXStep xInverse,\n  }) {\n    final ptr = bindings.allocateBytes(functionName, additionalLength: 1);\n    final result = bindings.create_window_function(\n      db,\n      ptr,\n      nArg,\n      eTextRep,\n      RegisteredFunctionSet(\n        xStep: xStep,\n        xFinal: xFinal,\n        xValue: xValue,\n        xInverse: xInverse,\n      ),\n    );\n\n    bindings.free(ptr);\n    return result;\n  }\n\n  @override\n  int sqlite3_exec(String sql) {\n    final stmt = bindings.allocateZeroTerminated(sql);\n    final result = bindings.sqlite3_exec(db, stmt, 0, 0, 0);\n    bindings.free(stmt);\n    return result;\n  }\n\n  @override\n  int sqlite3_last_insert_rowid() {\n    return bindings.sqlite3_last_insert_rowid(db);\n  }\n\n  @override\n  void sqlite3_update_hook(RawUpdateHook? hook) {\n    bindings.dart_sqlite3_updates(db, hook);\n  }\n\n  @override\n  void sqlite3_commit_hook(RawCommitHook? hook) {\n    bindings.dart_sqlite3_commits(db, hook);\n  }\n\n  @override\n  void sqlite3_rollback_hook(RawRollbackHook? hook) {\n    bindings.dart_sqlite3_rollbacks(db, hook);\n  }\n\n  @override\n  int sqlite3_get_autocommit() {\n    return bindings.sqlite3_get_autocommit(db);\n  }\n\n  @override\n  int sqlite3_db_config(int op, int value) {\n    return bindings.sqlite3_db_config(db, op, value);\n  }\n\n  @override\n  int sqlite3_busy_handler(int Function(int p1)? callback) {\n    return bindings.sqlite3.dart_sqlite3_busy_handler(\n      db,\n      callback?.toExternalReference,\n    );\n  }\n}\n\nfinal class WasmStatementCompiler implements RawStatementCompiler {\n  final WasmDatabase database;\n  final Pointer sql;\n  final Pointer stmtOut;\n  final Pointer pzTail;\n\n  WasmStatementCompiler(this.database, this.sql)\n    : stmtOut = database.bindings.malloc(WasmBindings.pointerSize),\n      pzTail = database.bindings.malloc(WasmBindings.pointerSize);\n\n  @override\n  void close() {\n    database.bindings\n      ..free(sql)\n      ..free(stmtOut)\n      ..free(pzTail);\n  }\n\n  @override\n  int get endOffset {\n    final bindings = database.bindings;\n    return bindings.memory.int32ValueOfPointer(pzTail) - sql;\n  }\n\n  @override\n  SqliteResult<RawSqliteStatement> sqlite3_prepare(\n    int byteOffset,\n    int length,\n    int prepFlag,\n  ) {\n    final result = database.bindings.sqlite3_prepare_v3(\n      database.db,\n      sql + byteOffset,\n      length,\n      prepFlag,\n      stmtOut,\n      pzTail,\n    );\n\n    final stmt = database.bindings.memory.int32ValueOfPointer(stmtOut);\n    final libraryStatement = stmt == 0 ? null : WasmStatement(database, stmt);\n\n    return (resultCode: result, result: libraryStatement);\n  }\n}\n\nfinal class WasmStatement implements RawSqliteStatement {\n  final WasmDatabase database;\n  final Pointer stmt;\n  final WasmBindings bindings;\n  final Object detach = Object();\n\n  WasmStatement(this.database, this.stmt) : bindings = database.bindings {\n    bindings.statementFinalizer?.attach(this, stmt, detach: detach);\n  }\n\n  @override\n  int sqlite3_bind_blob64(int index, List<int> value) {\n    final ptr = bindings.allocateBytes(value);\n\n    return bindings.sqlite3_bind_blob_finalizerFree(\n      stmt,\n      index,\n      ptr,\n      value.length,\n    );\n  }\n\n  @override\n  int sqlite3_bind_double(int index, double value) {\n    return bindings.sqlite3_bind_double(stmt, index, value);\n  }\n\n  @override\n  int sqlite3_bind_int64(int index, int value) {\n    return bindings.sqlite3_bind_int(stmt, index, value);\n  }\n\n  @override\n  int sqlite3_bind_int64BigInt(int index, BigInt value) {\n    return bindings.sqlite3_bind_int64(stmt, index, value);\n  }\n\n  @override\n  int sqlite3_bind_null(int index) {\n    return bindings.sqlite3_bind_null(stmt, index);\n  }\n\n  @override\n  int sqlite3_bind_parameter_count() {\n    return bindings.sqlite3_bind_parameter_count(stmt);\n  }\n\n  @override\n  int sqlite3_stmt_isexplain() {\n    return bindings.sqlite3_stmt_isexplain(stmt);\n  }\n\n  @override\n  int sqlite3_stmt_readonly() {\n    return bindings.sqlite3_stmt_readonly(stmt);\n  }\n\n  @override\n  int sqlite3_bind_parameter_index(String name) {\n    final namePtr = bindings.allocateZeroTerminated(name);\n\n    final result = bindings.sqlite3_bind_parameter_index(stmt, namePtr);\n    bindings.free(namePtr);\n\n    return result;\n  }\n\n  @override\n  int sqlite3_bind_text(int index, String value) {\n    final encoded = utf8.encode(value);\n    final ptr = bindings.allocateBytes(encoded);\n\n    return bindings.sqlite3_bind_text_finalizerFree(\n      stmt,\n      index,\n      ptr,\n      encoded.length,\n    );\n  }\n\n  @override\n  Uint8List sqlite3_column_bytes(int index) {\n    final length = bindings.sqlite3_column_bytes(stmt, index);\n    final ptr = bindings.sqlite3_column_blob(stmt, index);\n\n    return bindings.memory.copyRange(ptr, length);\n  }\n\n  @override\n  int sqlite3_column_count() {\n    return bindings.sqlite3_column_count(stmt);\n  }\n\n  @override\n  double sqlite3_column_double(int index) {\n    return bindings.sqlite3_column_double(stmt, index);\n  }\n\n  @override\n  int sqlite3_column_int64(int index) {\n    final jsBigInt = bindings.sqlite3_column_int64(stmt, index);\n    return jsBigInt.asDartInt;\n  }\n\n  @override\n  Object sqlite3_column_int64OrBigInt(int index) {\n    final jsBigInt = bindings.sqlite3_column_int64(stmt, index);\n    return jsBigInt.toDart();\n  }\n\n  @override\n  String sqlite3_column_name(int index) {\n    final namePtr = bindings.sqlite3_column_name(stmt, index);\n    return bindings.memory.readString(namePtr);\n  }\n\n  @override\n  String? sqlite3_column_table_name(int index) {\n    return null;\n  }\n\n  @override\n  String sqlite3_column_text(int index) {\n    final ptr = bindings.sqlite3_column_text(stmt, index);\n    return bindings.memory.readString(ptr);\n  }\n\n  @override\n  int sqlite3_column_type(int index) {\n    return bindings.sqlite3_column_type(stmt, index);\n  }\n\n  @override\n  void sqlite3_finalize() {\n    bindings.sqlite3_finalize(stmt);\n    bindings.statementFinalizer?.detach(detach);\n  }\n\n  @override\n  void sqlite3_reset() {\n    bindings.sqlite3_reset(stmt);\n  }\n\n  @override\n  int sqlite3_step() {\n    return bindings.sqlite3_step(stmt);\n  }\n\n  @override\n  bool get supportsReadingTableNameForColumn => false;\n}\n\nfinal class WasmContext implements RawSqliteContext {\n  final WasmBindings bindings;\n  final Pointer context;\n  final DartBridgeCallbacks callbacks;\n\n  WasmContext(this.bindings, this.context, this.callbacks);\n\n  Pointer get _rawAggregateContext {\n    final agCtxPtr = bindings.sqlite3_aggregate_context(context, 4);\n\n    if (agCtxPtr == 0) {\n      // We can't run without our 4 bytes! This indicates an out-of-memory error\n      throw StateError(\n        'Internal error while allocating sqlite3 aggregate context (OOM?)',\n      );\n    }\n\n    return agCtxPtr;\n  }\n\n  @override\n  AggregateContext<Object?>? get dartAggregateContext {\n    final agCtxPtr = _rawAggregateContext;\n    final value = bindings.memory.int32ValueOfPointer(agCtxPtr);\n\n    // Ok, we have a pointer (that sqlite3 zeroes out for us). Our state counter\n    // starts at one, so if it's still zero we don't have a Dart context yet.\n    if (value == 0) {\n      return null;\n    } else {\n      return callbacks.aggregateContexts[value];\n    }\n  }\n\n  @override\n  set dartAggregateContext(AggregateContext<Object?>? value) {\n    final ptr = _rawAggregateContext;\n    final id = callbacks.aggregateContextId++;\n    callbacks.aggregateContexts[id] = ArgumentError.checkNotNull(value);\n\n    bindings.memory.setInt32Value(ptr, id);\n  }\n\n  @override\n  void sqlite3_result_blob64(List<int> blob) {\n    final ptr = bindings.allocateBytes(blob);\n\n    bindings.sqlite3_result_blob64(\n      context,\n      ptr,\n      blob.length,\n      SqlSpecialDestructor.SQLITE_TRANSIENT,\n    );\n    bindings.free(ptr);\n  }\n\n  @override\n  void sqlite3_result_double(double value) {\n    return bindings.sqlite3_result_double(context, value);\n  }\n\n  @override\n  void sqlite3_result_error(String message) {\n    final encoded = utf8.encode(message);\n    final ptr = bindings.allocateBytes(encoded);\n\n    bindings.sqlite3_result_error(context, ptr, encoded.length);\n    bindings.free(ptr);\n  }\n\n  @override\n  void sqlite3_result_int64(int value) {\n    bindings.sqlite3_result_int64(context, BigInt.from(value));\n  }\n\n  @override\n  void sqlite3_result_int64BigInt(BigInt value) {\n    bindings.sqlite3_result_int64(context, value);\n  }\n\n  @override\n  void sqlite3_result_null() {\n    return bindings.sqlite3_result_null(context);\n  }\n\n  @override\n  void sqlite3_result_text(String text) {\n    final encoded = utf8.encode(text);\n    final ptr = bindings.allocateBytes(encoded);\n\n    bindings.sqlite3_result_text(\n      context,\n      ptr,\n      encoded.length,\n      SqlSpecialDestructor.SQLITE_TRANSIENT,\n    );\n    bindings.free(ptr);\n  }\n\n  @override\n  void sqlite3_result_subtype(int value) {\n    bindings.sqlite3_result_subtype(context, value);\n  }\n}\n\nfinal class WasmValue implements RawSqliteValue {\n  final WasmBindings bindings;\n  final Pointer value;\n\n  WasmValue(this.bindings, this.value);\n\n  @override\n  Uint8List sqlite3_value_blob() {\n    final length = bindings.sqlite3_value_bytes(value);\n    return bindings.memory.copyRange(\n      bindings.sqlite3_value_blob(value),\n      length,\n    );\n  }\n\n  @override\n  double sqlite3_value_double() {\n    return bindings.sqlite3_value_double(value);\n  }\n\n  @override\n  int sqlite3_value_int64() {\n    return bindings.sqlite3_value_int64(value).asDartInt;\n  }\n\n  @override\n  String sqlite3_value_text() {\n    final length = bindings.sqlite3_value_bytes(value);\n    return bindings.memory.readString(\n      bindings.sqlite3_value_text(value),\n      length,\n    );\n  }\n\n  @override\n  int sqlite3_value_type() {\n    return bindings.sqlite3_value_type(value);\n  }\n\n  @override\n  int sqlite3_value_subtype() {\n    return bindings.sqlite3_value_subtype(value);\n  }\n}\n\nclass WasmValueList extends ListBase<WasmValue> {\n  final WasmBindings bindings;\n  @override\n  final int length;\n  final Pointer value;\n\n  WasmValueList(this.bindings, this.length, this.value);\n\n  @override\n  set length(int value) {\n    throw UnsupportedError('Setting length in WasmValueList');\n  }\n\n  @override\n  WasmValue operator [](int index) {\n    final valuePtr = bindings.memory.int32ValueOfPointer(\n      value + index * WasmBindings.pointerSize,\n    );\n    return WasmValue(bindings, valuePtr);\n  }\n\n  @override\n  void operator []=(int index, WasmValue value) {\n    throw UnsupportedError('Setting element in WasmValueList');\n  }\n}\n\nfinal class WasmSession implements RawSqliteSession {\n  final WasmSqliteBindings bindings;\n  final int pointer; // the sqlite3_session ptr\n  final Object detach = Object();\n\n  final WasmBindings _bindings;\n\n  WasmSession(this.bindings, this.pointer) : _bindings = bindings.bindings {\n    _bindings.sessionFinalizer?.attach(this, pointer, detach: detach);\n  }\n\n  @override\n  int sqlite3session_attach([String? name]) {\n    final zTab = name == null ? 0 : _bindings.malloc(WasmBindings.pointerSize);\n    final resultCode = _bindings.sqlite3session_attach(pointer, zTab);\n    if (name != null) {\n      _bindings.free(zTab);\n    }\n\n    return resultCode;\n  }\n\n  Uint8List _extractBytes(int Function(Pointer, Pointer, Pointer) raw) {\n    final sizePtr = _bindings.malloc(WasmBindings.pointerSize);\n    final patchsetPtr = _bindings.malloc(WasmBindings.pointerSize);\n\n    final rc = raw(pointer, sizePtr, patchsetPtr);\n    if (rc != 0) {\n      throw createExceptionOutsideOfDatabase(bindings, rc);\n    }\n\n    final length = _bindings.memory.int32ValueOfPointer(sizePtr);\n    final patchset = _bindings.memory.int32ValueOfPointer(patchsetPtr);\n    _bindings\n      ..free(sizePtr)\n      ..free(patchsetPtr);\n\n    final bytes = _bindings.memory.copyRange(patchset, length);\n    _bindings.sqlite3_free(patchset);\n\n    return bytes;\n  }\n\n  @override\n  Uint8List sqlite3session_changeset() {\n    return _extractBytes(_bindings.sqlite3session_changeset);\n  }\n\n  @override\n  Uint8List sqlite3session_patchset() {\n    return _extractBytes(_bindings.sqlite3session_patchset);\n  }\n\n  @override\n  void sqlite3session_delete() {\n    _bindings.sessionFinalizer?.detach(detach);\n    _bindings.sqlite3session_delete(pointer);\n  }\n\n  @override\n  int sqlite3session_diff(String fromDb, String table) {\n    final dbPtr = _bindings.allocateZeroTerminated(fromDb);\n    final tableptr = _bindings.allocateZeroTerminated(table);\n    final code = _bindings.sqlite3session_diff(pointer, dbPtr, tableptr, 0);\n    _bindings\n      ..free(dbPtr)\n      ..free(tableptr);\n\n    return code;\n  }\n\n  @override\n  int sqlite3session_enable(int enable) {\n    return _bindings.sqlite3session_enable(pointer, enable);\n  }\n\n  @override\n  int sqlite3session_indirect(int indirect) {\n    return _bindings.sqlite3session_indirect(pointer, indirect);\n  }\n\n  @override\n  int sqlite3session_isempty() => _bindings.sqlite3session_isempty(pointer);\n}\n\nfinal class WasmChangesetIterator implements RawChangesetIterator {\n  final WasmSqliteBindings bindings;\n\n  /// If this iterator was created from an uint8list allocated when creating it,\n  /// the pointer towards that.\n  final int? dataPointer;\n  final int pointer; // the sqlite3_changeset_iter ptr\n  final Object detach = Object();\n\n  final WasmBindings _bindings;\n\n  WasmChangesetIterator(\n    this.bindings,\n    this.pointer, {\n    this.dataPointer,\n    bool owned = true,\n  }) : _bindings = bindings.bindings {\n    if (owned) {\n      bindings.bindings.changesetFinalizer?.attach(\n        this,\n        pointer,\n        detach: detach,\n      );\n    }\n  }\n\n  @override\n  int sqlite3changeset_finalize() {\n    final rc = _bindings.sqlite3changeset_finalize(pointer);\n    bindings.bindings.changesetFinalizer?.detach(detach);\n    if (dataPointer case final data?) {\n      _bindings.free(data);\n    }\n\n    return rc;\n  }\n\n  @override\n  int sqlite3changeset_next() => _bindings.sqlite3changeset_next(pointer);\n\n  SqliteResult<RawSqliteValue?> _extractValue(\n    int Function(Pointer, int, Pointer) extract,\n    int index,\n  ) {\n    final outValue = _bindings.malloc(WasmBindings.pointerSize);\n    final resultCode = extract(pointer, index, outValue);\n    final value = _bindings.memory.int32ValueOfPointer(outValue);\n    _bindings.free(outValue);\n\n    return (\n      resultCode: resultCode,\n      result: value != 0 ? WasmValue(_bindings, value) : null,\n    );\n  }\n\n  @override\n  SqliteResult<RawSqliteValue?> sqlite3changeset_old(int columnNumber) {\n    return _extractValue(_bindings.sqlite3changeset_old, columnNumber);\n  }\n\n  @override\n  SqliteResult<RawSqliteValue?> sqlite3changeset_new(int columnNumber) {\n    return _extractValue(_bindings.sqlite3changeset_new, columnNumber);\n  }\n\n  @override\n  RawChangeSetOp sqlite3changeset_op() {\n    final outTable = _bindings.malloc(WasmBindings.pointerSize);\n    final outColCount = _bindings.malloc(WasmBindings.pointerSize);\n    final outOp = _bindings.malloc(WasmBindings.pointerSize);\n    final outIndirect = _bindings.malloc(WasmBindings.pointerSize);\n\n    final value = _bindings.sqlite3changeset_op(\n      pointer,\n      outTable,\n      outColCount,\n      outOp,\n      outIndirect,\n    );\n\n    final colCount = _bindings.memory.int32ValueOfPointer(outColCount);\n    final op = _bindings.memory.int32ValueOfPointer(outOp);\n    final indirect = _bindings.memory.int32ValueOfPointer(outIndirect);\n    final rawTable = _bindings.memory.int32ValueOfPointer(outTable);\n    final table = value == 0 ? _bindings.memory.readString(rawTable) : '';\n\n    _bindings\n      ..free(outTable)\n      ..free(outColCount)\n      ..free(outOp)\n      ..free(outIndirect);\n\n    if (value != 0) {\n      throw createExceptionOutsideOfDatabase(bindings, value);\n    }\n\n    return RawChangeSetOp(\n      tableName: table,\n      columnCount: colCount,\n      operation: op,\n      indirect: indirect,\n    );\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/injected_values.dart",
    "content": "// Dart functions that are injected into the SQLite WebAssembly module. For\n// details, see sqlite3_wasm_build/bridge.h\n\nimport 'dart:convert';\nimport 'dart:js_interop';\n\nimport 'package:web/web.dart';\n\nimport '../constants.dart';\nimport '../functions.dart';\nimport '../implementation/bindings.dart';\nimport '../vfs.dart';\nimport 'bindings.dart';\nimport 'js_interop.dart';\nimport 'sqlite3_wasm.g.dart';\nimport 'wasm_interop.dart';\n\nfinal class DartBridgeCallbacks {\n  // We only have access to bindings and memory after instantiating the module.\n  late final WasmBindings bindings;\n  late final Memory memory;\n\n  int aggregateContextId = 1;\n  final Map<int, AggregateContext<Object?>> aggregateContexts = {};\n\n  @JSExport('error_log')\n  void logError(Pointer message) {\n    print('[sqlite3] ${memory.readString(message)}');\n  }\n\n  @JSExport()\n  void localtime(JsBigInt timestamp, int resultPtr) {\n    // struct tm {\n    // \tint tm_sec;\n    // \tint tm_min;\n    // \tint tm_hour;\n    // \tint tm_mday;\n    // \tint tm_mon;\n    // \tint tm_year; // With 0 representing 1900\n    // \tint tm_wday;\n    // \tint tm_yday;\n    // \tint tm_isdst;\n    // \tlong __tm_gmtoff;\n    // \tconst char *__tm_zone; // Set by native helper\n    // };\n    final time = timestamp.asDartInt * 1000;\n    final dateTime = DateTime.fromMillisecondsSinceEpoch(time);\n\n    final tmValues = memory.buffer.toDart.asUint32List(resultPtr, 8);\n    tmValues[0] = dateTime.second;\n    tmValues[1] = dateTime.minute;\n    tmValues[2] = dateTime.hour;\n    tmValues[3] = dateTime.day;\n    tmValues[4] = dateTime.month - 1;\n    tmValues[5] = dateTime.year - 1900;\n    // In Dart, the range is Monday=1 to Sunday=7. We want Sunday = 0 and\n    // Saturday = 6.\n    tmValues[6] = dateTime.weekday % 7;\n    // yday not used by sqlite3, what could possibly go wrong by us not\n    // setting that field (at least we have tests for this).\n    // the other fields don't matter though, localtime_r is not supposed\n    // to set them.\n  }\n\n  @JSExport()\n  ExternalDartReference<VirtualFileSystemFile>? xOpen(\n    ExternalDartReference<VirtualFileSystem> vfs,\n    Pointer zName,\n    Pointer rcPtr,\n    int flags,\n    Pointer pOutFlags,\n  ) {\n    final path = Sqlite3Filename(memory.readNullableString(zName));\n\n    try {\n      final result = vfs.toDartObject.xOpen(path, flags);\n      if (pOutFlags != 0) {\n        memory.setInt32Value(pOutFlags, result.outFlags);\n      }\n\n      memory.setInt32Value(rcPtr, 0);\n      return result.file.toExternalReference;\n    } on VfsException catch (e) {\n      memory.setInt32Value(rcPtr, e.returnCode);\n    } on Object {\n      memory.setInt32Value(rcPtr, SqlError.SQLITE_ERROR);\n    }\n\n    return null;\n  }\n\n  @JSExport()\n  int xDelete(\n    ExternalDartReference<VirtualFileSystem> vfs,\n    Pointer zName,\n    int syncDir,\n  ) {\n    final path = memory.readString(zName);\n    return _runVfs(() => vfs.toDartObject.xDelete(path, syncDir));\n  }\n\n  @JSExport()\n  int xAccess(\n    ExternalDartReference<VirtualFileSystem> vfs,\n    Pointer zName,\n    int flags,\n    Pointer pResOut,\n  ) {\n    final path = memory.readString(zName);\n\n    return _runVfs(() {\n      final res = vfs.toDartObject.xAccess(path, flags);\n      memory.setInt32Value(pResOut, res);\n    });\n  }\n\n  @JSExport()\n  int xFullPathname(\n    ExternalDartReference<VirtualFileSystem> vfs,\n    Pointer zName,\n    int nOut,\n    Pointer zOut,\n  ) {\n    final path = memory.readString(zName);\n\n    return _runVfs(() {\n      final fullPath = vfs.toDartObject.xFullPathName(path);\n      final encoded = utf8.encode(fullPath);\n\n      if (encoded.length > nOut) {\n        throw VfsException(SqlError.SQLITE_CANTOPEN);\n      }\n\n      memory.asBytes\n        ..setAll(zOut, encoded)\n        ..[zOut + encoded.length] = 0;\n    });\n  }\n\n  @JSExport()\n  int xRandomness(\n    ExternalDartReference<VirtualFileSystem>? vfs,\n    int nByte,\n    Pointer zOut,\n  ) {\n    return _runVfs(() {\n      final target = memory.buffer.toDart.asUint8List(zOut, nByte);\n\n      if (vfs != null) {\n        vfs.toDartObject.xRandomness(target);\n      } else {\n        // Fall back to a default random source. We're using this to\n        // implement `getentropy` in C which is used by sqlite3mc.\n        return BaseVirtualFileSystem.generateRandomness(target);\n      }\n    });\n  }\n\n  @JSExport()\n  int xSleep(ExternalDartReference<VirtualFileSystem> vfs, int micros) {\n    return _runVfs(() {\n      vfs.toDartObject.xSleep(Duration(microseconds: micros));\n    });\n  }\n\n  @JSExport()\n  int xCurrentTimeInt64(\n    ExternalDartReference<VirtualFileSystem> vfs,\n    Pointer target,\n  ) {\n    final time = vfs.toDartObject.xCurrentTime();\n\n    // dartvfs_currentTimeInt64 will turn this into the right value, it's\n    // annoying to do in JS due to the lack of proper ints.\n    memory.setInt64Value(target, JsBigInt.fromInt(time.millisecondsSinceEpoch));\n    return 0;\n  }\n\n  @JSExport()\n  int xClose(ExternalDartReference<VirtualFileSystemFile> file) {\n    return _runVfs(() => file.toDartObject.xClose());\n  }\n\n  @JSExport()\n  int xRead(\n    ExternalDartReference<VirtualFileSystemFile> file,\n    Pointer target,\n    int amount,\n    JSBigInt offset,\n  ) {\n    return _runVfs(() {\n      file.toDartObject.xRead(\n        memory.buffer.toDart.asUint8List(target, amount),\n        JsBigInt(offset).asDartInt,\n      );\n    });\n  }\n\n  @JSExport()\n  int xWrite(\n    ExternalDartReference<VirtualFileSystemFile> file,\n    Pointer source,\n    int amount,\n    JSBigInt offset,\n  ) {\n    return _runVfs(() {\n      file.toDartObject.xWrite(\n        memory.buffer.toDart.asUint8List(source, amount),\n        JsBigInt(offset).asDartInt,\n      );\n    });\n  }\n\n  @JSExport()\n  int xTruncate(\n    ExternalDartReference<VirtualFileSystemFile> file,\n    JSBigInt size,\n  ) {\n    return _runVfs(() => file.toDartObject.xTruncate(JsBigInt(size).asDartInt));\n  }\n\n  @JSExport()\n  int xSync(ExternalDartReference<VirtualFileSystemFile> file, int flags) {\n    return _runVfs(() => file.toDartObject.xSync(flags));\n  }\n\n  @JSExport()\n  int xFileSize(\n    ExternalDartReference<VirtualFileSystemFile> file,\n    Pointer sizePtr,\n  ) {\n    return _runVfs(() {\n      final size = file.toDartObject.xFileSize();\n      memory.setInt32Value(sizePtr, size);\n    });\n  }\n\n  @JSExport()\n  int xLock(ExternalDartReference<VirtualFileSystemFile> file, int flags) {\n    return _runVfs(() => file.toDartObject.xLock(flags));\n  }\n\n  @JSExport()\n  int xUnlock(ExternalDartReference<VirtualFileSystemFile> file, int flags) {\n    return _runVfs(() => file.toDartObject.xUnlock(flags));\n  }\n\n  @JSExport()\n  int xCheckReservedLock(\n    ExternalDartReference<VirtualFileSystemFile> file,\n    Pointer pResOut,\n  ) {\n    return _runVfs(() {\n      final status = file.toDartObject.xCheckReservedLock();\n      memory.setInt32Value(pResOut, status);\n    });\n  }\n\n  @JSExport()\n  int xDeviceCharacteristics(\n    ExternalDartReference<VirtualFileSystemFile> file,\n  ) {\n    return file.toDartObject.xDeviceCharacteristics;\n  }\n\n  @JSExport('dispatch_()v')\n  void dispatchVoid(ExternalDartReference<void Function()> fn) {\n    fn.toDartObject();\n  }\n\n  @JSExport('dispatch_()i')\n  int dispatchInt(ExternalDartReference<int Function()> fn) {\n    return fn.toDartObject();\n  }\n\n  @JSExport('dispatch_update')\n  void dispatchUpdateHook(\n    ExternalDartReference<RawUpdateHook> fn,\n    int kind,\n    Pointer _,\n    Pointer table,\n    JSBigInt rowId,\n  ) {\n    final tableName = memory.readString(table);\n    fn.toDartObject(kind, tableName, JsBigInt(rowId).asDartInt);\n  }\n\n  @JSExport('dispatch_xFunc')\n  void dispatchXFunc(\n    ExternalDartReference<RegisteredFunctionSet> functions,\n    Pointer ctx,\n    int nArgs,\n    Pointer value,\n  ) {\n    functions.toDartObject.xFunc!(\n      WasmContext(bindings, ctx, this),\n      WasmValueList(bindings, nArgs, value),\n    );\n  }\n\n  @JSExport('dispatch_xStep')\n  void dispatchXStep(\n    ExternalDartReference<RegisteredFunctionSet> functions,\n    Pointer ctx,\n    int nArgs,\n    Pointer value,\n  ) {\n    functions.toDartObject.xStep!(\n      WasmContext(bindings, ctx, this),\n      WasmValueList(bindings, nArgs, value),\n    );\n  }\n\n  @JSExport('dispatch_xInverse')\n  void dispatchXInverse(\n    ExternalDartReference<RegisteredFunctionSet> functions,\n    Pointer ctx,\n    int nArgs,\n    Pointer value,\n  ) {\n    functions.toDartObject.xInverse!(\n      WasmContext(bindings, ctx, this),\n      WasmValueList(bindings, nArgs, value),\n    );\n  }\n\n  @JSExport('dispatch_xValue')\n  void dispatchXValue(\n    ExternalDartReference<RegisteredFunctionSet> functions,\n    Pointer ctx,\n  ) {\n    functions.toDartObject.xValue!(WasmContext(bindings, ctx, this));\n  }\n\n  @JSExport('dispatch_xFinal')\n  void dispatchXFinal(\n    ExternalDartReference<RegisteredFunctionSet> functions,\n    Pointer ctx,\n  ) {\n    functions.toDartObject.xFinal!(WasmContext(bindings, ctx, this));\n  }\n\n  @JSExport('dispatch_compare')\n  int dispatchXCompare(\n    ExternalDartReference<RegisteredFunctionSet> functions,\n    int lengthA,\n    Pointer a,\n    int lengthB,\n    int b,\n  ) {\n    final aStr = memory.readNullableString(a, lengthA);\n    final bStr = memory.readNullableString(b, lengthB);\n\n    return functions.toDartObject.collation!(aStr, bStr);\n  }\n\n  @JSExport('dispatch_busy')\n  int dispatchBusyHandler(\n    ExternalDartReference<int Function(int)> function,\n    int amount,\n  ) {\n    return function.toDartObject(amount);\n  }\n\n  @JSExport('changeset_apply_filter')\n  int dispatchApplyFilter(\n    ExternalDartReference<SessionApplyCallbacks> callbacks,\n    Pointer zTab,\n  ) {\n    return callbacks.toDartObject.filter!(zTab);\n  }\n\n  @JSExport('changeset_apply_conflict')\n  int dispatchApplyConflict(\n    ExternalDartReference<SessionApplyCallbacks> callbacks,\n    int eConflict,\n    Pointer iterator,\n  ) {\n    return callbacks.toDartObject.conflict!(eConflict, iterator);\n  }\n}\n\nint _runVfs(void Function() body) {\n  try {\n    body();\n    return SqlError.SQLITE_OK;\n  } on VfsException catch (e) {\n    return e.returnCode;\n  } on Object {\n    return SqlError.SQLITE_ERROR;\n  }\n}\n\nfinal class RegisteredFunctionSet {\n  final RawXFunc? xFunc;\n  final RawXStep? xStep;\n  final RawXFinal? xFinal;\n\n  final RawXFinal? xValue;\n  final RawXStep? xInverse;\n\n  final RawCollation? collation;\n\n  RegisteredFunctionSet({\n    this.xFunc,\n    this.xStep,\n    this.xFinal,\n    this.xValue,\n    this.xInverse,\n    this.collation,\n  });\n}\n\ntypedef RawFilter = int Function(Pointer tableName);\n\ntypedef RawConflict = int Function(int eConflict, Pointer iterator);\n\nfinal class SessionApplyCallbacks {\n  final RawFilter? filter;\n  final RawConflict? conflict;\n\n  SessionApplyCallbacks(this.filter, this.conflict);\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/js_interop/atomics.dart",
    "content": "import 'dart:typed_data';\nimport 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\n\n@JS('Int32Array')\nexternal JSFunction _int32Array;\n\n@JS('Uint8Array')\nexternal JSFunction _uint8Array;\n\n@JS('DataView')\nexternal JSFunction _dataView;\n\n@JS()\nextension type SharedArrayBuffer._(JSObject _) implements JSObject {\n  external factory SharedArrayBuffer(int length);\n\n  external int get byteLength;\n\n  Int32List asInt32List() {\n    return _int32Array.callAsConstructor<JSInt32Array>(this).toDart;\n  }\n\n  ByteData asByteData(int offset, int length) {\n    return _dataView\n        .callAsConstructor<JSDataView>(this, offset.toJS, length.toJS)\n        .toDart;\n  }\n\n  Uint8List asUint8List() {\n    return _uint8Array.callAsConstructor<JSUint8Array>(this).toDart;\n  }\n\n  Uint8List asUint8ListSlice(int offset, int length) {\n    return _uint8Array\n        .callAsConstructor<JSUint8Array>(this, offset.toJS, length.toJS)\n        .toDart;\n  }\n}\n\n@JS('Atomics')\nextension type _Atomics._(JSObject _) implements JSObject {\n  @JS('wait')\n  external static JSString wait(JSInt32Array typedArray, int index, int value);\n\n  @JS('wait')\n  external static JSString waitWithTimeout(\n    JSInt32Array typedArray,\n    int index,\n    int value,\n    int timeOutInMillis,\n  );\n\n  @JS()\n  external static void notify(JSInt32Array typedArray, int index, [num count]);\n\n  @JS()\n  external static int store(JSInt32Array typedArray, int index, int value);\n\n  @JS()\n  external static int load(JSInt32Array typedArray, int index);\n}\n\nclass Atomics {\n  static const ok = 'ok';\n  static const notEqual = 'not-equal';\n  static const timedOut = 'timed-out';\n\n  static bool get supported {\n    return globalContext.has('Atomics');\n  }\n\n  static String wait(Int32List typedArray, int index, int value) {\n    return _Atomics.wait(typedArray.toJS, index, value).toDart;\n  }\n\n  static String waitWithTimeout(\n    Int32List typedArray,\n    int index,\n    int value,\n    int timeOutInMillis,\n  ) {\n    return _Atomics.waitWithTimeout(\n      typedArray.toJS,\n      index,\n      value,\n      timeOutInMillis,\n    ).toDart;\n  }\n\n  static void notify(\n    Int32List typedArray,\n    int index, [\n    num count = double.infinity,\n  ]) {\n    _Atomics.notify(typedArray.toJS, index, count);\n  }\n\n  static int store(Int32List typedArray, int index, int value) {\n    return _Atomics.store(typedArray.toJS, index, value);\n  }\n\n  static int load(Int32List typedArray, int index) {\n    return _Atomics.load(typedArray.toJS, index);\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/js_interop/core.dart",
    "content": "import 'dart:async';\nimport 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\n\n@JS('BigInt')\nexternal JSBigInt _bigInt(JSAny? s);\n\n@JS('Number')\nexternal JSNumber _number(JSAny? obj);\n\nextension type WrappedJSAny._(JSAny _) implements JSAny {\n  external static JSArray<JSAny?> keys(JSObject o);\n\n  @JS('toString')\n  external JSString _toString();\n}\n\n@JS('Object')\nextension type WrappedJSObject._(JSObject _) implements JSObject {\n  external static JSArray<JSAny?> keys(JSObject o);\n}\n\nextension type JsBigInt(JSBigInt _jsBigInt) implements JSBigInt {\n  factory JsBigInt.parse(String s) => JsBigInt(_bigInt(s.toJS));\n  factory JsBigInt.fromInt(int i) => JsBigInt(_bigInt(i.toJS));\n  factory JsBigInt.fromBigInt(BigInt i) => JsBigInt.parse(i.toString());\n\n  int get asDartInt => _number(_jsBigInt).toDartInt;\n\n  BigInt get asDartBigInt => BigInt.parse(jsToString());\n\n  JSBigInt get jsObject => _jsBigInt;\n\n  bool get isSafeInteger {\n    const maxSafeInteger = 9007199254740992;\n    const minSafeInteger = -maxSafeInteger;\n\n    return minSafeInteger.toJS.lessThanOrEqualTo(_jsBigInt).toDart &&\n        _jsBigInt.lessThanOrEqualTo(maxSafeInteger.toJS).toDart;\n  }\n\n  Object toDart() {\n    return isSafeInteger ? asDartInt : asDartBigInt;\n  }\n\n  String jsToString() {\n    return (_jsBigInt as WrappedJSAny)._toString().toDart;\n  }\n}\n\nextension type IteratorResult<T extends JSAny?>(JSObject _)\n    implements JSObject {\n  external JSBoolean? get done;\n  external T? get value;\n}\n\nextension type AsyncIterator<T extends JSAny?>(JSObject _) implements JSObject {\n  external JSPromise<IteratorResult<T>> next();\n}\n\n@JS('Symbol.asyncIterator')\nexternal JSSymbol get _asyncIterator;\n\n/// Exposes the async iterable interface as a Dart stream.\n///\n/// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#the_async_iterator_and_async_iterable_protocols\nclass AsyncJavaScriptIteratable<T extends JSAny?> extends Stream<T> {\n  final JSObject _jsObject;\n\n  AsyncJavaScriptIteratable(this._jsObject) {\n    if (!_jsObject.hasProperty(_asyncIterator).toDart) {\n      throw ArgumentError(\n        'Target object does not implement the async iterable '\n        'interface',\n      );\n    }\n  }\n\n  @override\n  StreamSubscription<T> listen(\n    void Function(T event)? onData, {\n    Function? onError,\n    void Function()? onDone,\n    bool? cancelOnError,\n  }) {\n    final iterator = _jsObject.callMethod<AsyncIterator<T>>(_asyncIterator);\n    final controller = StreamController<T>(sync: true);\n    JSPromise<IteratorResult<T>>? currentlyPendingPromise;\n\n    void fetchNext() {\n      assert(currentlyPendingPromise == null);\n      final promise = currentlyPendingPromise = iterator.next();\n\n      promise.toDart.then((result) {\n        final done = result.done?.toDart ?? false;\n        final value = result.value;\n\n        if (done) {\n          controller.close();\n\n          currentlyPendingPromise = null;\n        } else {\n          controller.add(value as T);\n\n          currentlyPendingPromise = null;\n          if (!controller.isPaused) {\n            fetchNext();\n          }\n        }\n      }, onError: controller.addError);\n    }\n\n    void fetchNextIfNecessary() {\n      if (currentlyPendingPromise == null && !controller.isPaused) {\n        fetchNext();\n      }\n    }\n\n    controller\n      ..onListen = fetchNext\n      ..onResume = fetchNextIfNecessary;\n\n    return controller.stream.listen(\n      onData,\n      onError: onError,\n      onDone: onDone,\n      cancelOnError: cancelOnError,\n    );\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/js_interop/fetch.dart",
    "content": "@JS()\nlibrary;\n\nimport 'dart:js_interop';\n\nimport 'package:web/web.dart' show URL, Response, RequestInit;\n\n@JS()\nexternal JSPromise<Response> fetch(URL resource, [RequestInit? options]);\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/js_interop/file_system_access.dart",
    "content": "/// Very regrettably, `package:drift` imports this exact file and because it\n/// used to define FileSystem Access API bindings before we've migrated these to\n/// `package:web`.\n///\n/// To avoid breaking drift, we're exporting the subset of APIs used by drift\n/// to keep that working. This file is not used anywhere in this package and\n/// will be removed in the next major release.\n@Deprecated('Do not import this at all')\nlibrary;\n\nimport 'dart:js_interop';\n\nimport 'package:web/web.dart' as web;\nimport 'core.dart';\nimport 'new_file_system_access.dart' as fixed;\n\ntypedef FileSystemDirectoryHandle = LegacyDirectoryHandle;\ntypedef FileSystemFileHandle = LegacyFileHandle;\ntypedef FileSystemSyncAccessHandle = LegacySyncFileHandle;\n\nLegacyStorageManager? get storageManager {\n  final raw = fixed.storageManager;\n  return raw != null ? LegacyStorageManager(raw) : null;\n}\n\nextension type LegacyStorageManager(web.StorageManager inner) {\n  Future<FileSystemDirectoryHandle> get directory async =>\n      FileSystemDirectoryHandle(await inner.directory);\n}\n\nextension type LegacyHandle(web.FileSystemHandle inner) {\n  bool get isDirectory => inner.isDirectory;\n\n  String get name => inner.name;\n}\n\nextension type LegacyDirectoryHandle(web.FileSystemDirectoryHandle inner) {\n  Future<LegacyFileHandle> openFile(String name, {bool create = false}) async {\n    return LegacyFileHandle(await inner.openFile(name, create: create));\n  }\n\n  Future<void> removeEntry(String name, {bool recursive = false}) async {\n    await fixed.FileSystemDirectoryHandleApi(\n      inner,\n    ).remove(name, recursive: recursive);\n  }\n\n  Future<LegacyDirectoryHandle> getDirectory(String name) async {\n    return LegacyDirectoryHandle(await inner.getDirectory(name));\n  }\n\n  Stream<LegacyHandle> list() {\n    return AsyncJavaScriptIteratable<JSArray>(\n      inner,\n    ).map((data) => LegacyHandle(data.toDart[1] as web.FileSystemHandle));\n  }\n}\n\nextension type LegacyFileHandle(web.FileSystemFileHandle inner) {\n  Future<LegacySyncFileHandle> createSyncAccessHandle() async {\n    final raw = await inner.createSyncAccessHandle().toDart;\n    return LegacySyncFileHandle(raw);\n  }\n}\n\nextension type LegacySyncFileHandle(web.FileSystemSyncAccessHandle inner) {\n  void close() {\n    inner.close();\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/js_interop/indexed_db.dart",
    "content": "import 'dart:async';\nimport 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\n\nimport 'package:web/web.dart'\n    show\n        IDBFactory,\n        IDBDatabaseInfo,\n        IDBRequest,\n        IDBCursor,\n        EventStreamProviders;\n\nextension RequestExt on IDBRequest {\n  /// A [StreamIterator] to asynchronously iterate over a [Cursor].\n  ///\n  /// Dart provides a streaming view over cursors, but the confusing pause\n  /// behavior of `await for` loops and IndexedDB's behavior of closing\n  /// transactions that are not immediately used after an event leads to code\n  /// that is hard to reason about.\n  ///\n  /// An explicit pull-based model makes it easy to iterate over values in a\n  /// cursor while also being clearer about asynchronous suspensions one might\n  /// want to avoid.\n  StreamIterator<T> cursorIterator<T extends IDBCursor>() {\n    return _CursorReader(this);\n  }\n}\n\nclass _CursorReader<T extends IDBCursor> implements StreamIterator<T> {\n  T? _cursor;\n  StreamSubscription<void>? _onSuccess, _onError;\n\n  final IDBRequest _cursorRequest;\n\n  _CursorReader(this._cursorRequest);\n\n  @override\n  Future<void> cancel() async {\n    unawaited(_onSuccess?.cancel());\n    unawaited(_onError?.cancel());\n\n    _onSuccess = null;\n    _onError = null;\n  }\n\n  @override\n  T get current => _cursor ?? (throw StateError('Await moveNext() first'));\n\n  @override\n  Future<bool> moveNext() {\n    assert(_onSuccess == null && _onError == null, 'moveNext() called twice');\n    _cursor?.continue_();\n\n    final completer = Completer<bool>.sync();\n    _onSuccess = EventStreamProviders.successEvent\n        .forTarget(_cursorRequest)\n        .listen((event) {\n          cancel();\n\n          _cursor = _cursorRequest.result as T?;\n          completer.complete(_cursor != null);\n        });\n\n    _onError = EventStreamProviders.errorEvent.forTarget(_cursorRequest).listen(\n      (event) {\n        cancel();\n        completer.completeError(_cursorRequest.error ?? event);\n      },\n    );\n\n    return completer.future;\n  }\n}\n\n@JS()\nexternal IDBFactory? get indexedDB;\n\nextension IdbFactoryExt on IDBFactory {\n  Future<List<IDBDatabaseInfo>?> listDatabases() async {\n    if (!has('databases')) {\n      return null;\n    }\n\n    return (await databases().toDart).toDart;\n  }\n}\n\nextension CompleteIdbRequest on IDBRequest {\n  Future<T> complete<T extends JSAny?>() {\n    final completer = Completer<T>.sync();\n\n    EventStreamProviders.successEvent.forTarget(this).listen((event) {\n      completer.complete(result as T);\n    });\n    EventStreamProviders.errorEvent.forTarget(this).listen((event) {\n      completer.completeError(error ?? event);\n    });\n\n    return completer.future;\n  }\n}\n\nextension CompleteOpenIdbRequest on IDBRequest {\n  Future<T> completeOrBlocked<T extends JSAny?>() {\n    final completer = Completer<T>.sync();\n\n    EventStreamProviders.successEvent.forTarget(this).listen((event) {\n      completer.complete(result as T);\n    });\n    EventStreamProviders.errorEvent.forTarget(this).listen((event) {\n      completer.completeError(error ?? event);\n    });\n    EventStreamProviders.blockedEvent.forTarget(this).listen((event) {\n      completer.completeError(error ?? event);\n    });\n\n    return completer.future;\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/js_interop/new_file_system_access.dart",
    "content": "import 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\nimport 'dart:typed_data';\n\nimport 'package:web/web.dart';\n\nimport 'core.dart';\n\n@JS('navigator')\nexternal Navigator get _navigator;\n\nStorageManager? get storageManager {\n  final navigator = _navigator;\n\n  if (navigator.has('storage')) {\n    return navigator.storage;\n  }\n\n  return null;\n}\n\nextension StorageManagerApi on StorageManager {\n  Future<FileSystemDirectoryHandle> get directory => getDirectory().toDart;\n}\n\nextension FileSystemSyncAccessHandleApi on FileSystemSyncAccessHandle {\n  int readDart(Uint8List buffer, [FileSystemReadWriteOptions? options]) {\n    if (options == null) {\n      return read(buffer.toJS);\n    } else {\n      return read(buffer.toJS, options);\n    }\n  }\n\n  int writeDart(Uint8List buffer, [FileSystemReadWriteOptions? options]) {\n    if (options == null) {\n      return write(buffer.toJS);\n    } else {\n      return write(buffer.toJS, options);\n    }\n  }\n}\n\nextension FileSystemHandleApi on FileSystemHandle {\n  bool get isFile => kind == 'file';\n\n  bool get isDirectory => kind == 'directory';\n}\n\nextension FileSystemDirectoryHandleApi on FileSystemDirectoryHandle {\n  Future<FileSystemFileHandle> openFile(String name, {bool create = false}) {\n    return getFileHandle(name, FileSystemGetFileOptions(create: create)).toDart;\n  }\n\n  Future<FileSystemDirectoryHandle> getDirectory(\n    String name, {\n    bool create = false,\n  }) {\n    return getDirectoryHandle(\n      name,\n      FileSystemGetDirectoryOptions(create: create),\n    ).toDart;\n  }\n\n  Future<void> remove(String name, {bool recursive = false}) {\n    return removeEntry(\n      name,\n      FileSystemRemoveOptions(recursive: recursive),\n    ).toDart;\n  }\n\n  Stream<FileSystemHandle> list() {\n    return AsyncJavaScriptIteratable<JSArray>(\n      this,\n    ).map((data) => data.toDart[1] as FileSystemHandle);\n  }\n\n  Stream<FileSystemHandle> getFilesRecursively() async* {\n    await for (final entry in list()) {\n      if (entry.isFile) {\n        yield entry;\n      } else if (entry.isDirectory) {\n        yield* (entry as FileSystemDirectoryHandle).getFilesRecursively();\n      }\n    }\n  }\n}\n\n// https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md\nextension ProposedLockingSchemeApi on FileSystemFileHandle {\n  external JSPromise<FileSystemSyncAccessHandle> createSyncAccessHandle(\n    FileSystemCreateSyncAccessHandleOptions options,\n  );\n}\n\n// https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md#modes-of-creating-a-filesystemsyncaccesshandle\n@anonymous\nextension type FileSystemCreateSyncAccessHandleOptions._(JSObject _)\n    implements JSObject {\n  external factory FileSystemCreateSyncAccessHandleOptions({JSString? mode});\n\n  static FileSystemCreateSyncAccessHandleOptions unsafeReadWrite() {\n    return FileSystemCreateSyncAccessHandleOptions(\n      mode: 'readwrite-unsafe'.toJS,\n    );\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/js_interop/typed_data.dart",
    "content": "import 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\nimport 'dart:typed_data';\n\nimport 'core.dart';\n\nextension NativeUint8List on Uint8List {\n  /// A native version of [setRange] that takes another typed array directly.\n  /// This avoids the type checks part of [setRange] in compiled JavaScript\n  /// code.\n  void set(Uint8List from, int offset) {\n    toJS.callMethod('set'.toJS, from.toJS, offset.toJS);\n  }\n}\n\nextension NativeDataView on ByteData {\n  void setBigInt64(int offset, JsBigInt value, bool littleEndian) {\n    toJS.callMethod(\n      'setBigInt64'.toJS,\n      offset.toJS,\n      value.jsObject,\n      littleEndian.toJS,\n    );\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/js_interop.dart",
    "content": "import 'dart:js_interop';\nimport 'dart:typed_data';\n\nimport 'package:web/web.dart' show Blob;\n\n// This internal library exports wrappers around newer Web APIs for which no\n// up-to-date bindings exist in the Dart SDK.\n\nexport 'js_interop/atomics.dart';\nexport 'js_interop/core.dart';\nexport 'js_interop/fetch.dart';\nexport 'js_interop/new_file_system_access.dart';\nexport 'js_interop/indexed_db.dart';\nexport 'js_interop/typed_data.dart';\n\nextension ReadBlob on Blob {\n  Future<ByteBuffer> byteBuffer() async {\n    final buffer = await arrayBuffer().toDart;\n    return buffer.toDart;\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/loader.dart",
    "content": "import 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\n\nimport 'package:meta/meta.dart';\n\nimport 'injected_values.dart';\n\nimport 'package:web/web.dart' as web;\n\n/// Utility to load `sqlite3.wasm` files.\n///\n/// This class can be extended to inject additional host functions into loaded\n/// modules.\n///\n/// {@category wasm}\n@experimental\nbase class WasmModuleLoader {\n  final _dartFunctions = DartBridgeCallbacks();\n\n  /// Creates a JavaScript object providing definitions used as imported\n  /// functions by the WebAssembly module.\n  ///\n  /// The default build uses the `dart` namespace to import definitions provided\n  /// by the `sqlite3` package. Custom builds might need additional functions,\n  /// which can be provided by overriding this method to install additional\n  /// namespaces.\n  JSObject createImportObject() {\n    return JSObject()..['dart'] = createJSInteropWrapper(_dartFunctions);\n  }\n\n  /// Instantiates a module by calling `WebAssembly.instantiateStreaming`\n  /// with the response and [createImportObject].\n  Future<web.WebAssemblyInstantiatedSource> instantiateModule(\n    web.Response response,\n  ) {\n    return web.WebAssembly.instantiateStreaming(\n      response as JSPromise<web.Response>,\n      createImportObject(),\n    ).toDart;\n  }\n\n  /// Load and instantiate a WebAssembly module from a fetch response by\n  /// providing host imports.\n  ///\n  /// Returns a `WebAssembly.Instance` JavaScript object.\n  Future<web.Instance> loadModule(web.Response response) async {\n    final module = await instantiateModule(response);\n\n    // If the module has an `_initialize` export, it needs to be called to run\n    // C constructors and set up memory.\n    final exports = module.instance.exports;\n    if (exports.has('_initialize')) {\n      (exports['_initialize'] as JSFunction).callAsFunction();\n    }\n\n    return module.instance;\n  }\n}\n\n// Hidden in public interface\n@internal\nextension InternalWasmLoader on WasmModuleLoader {\n  DartBridgeCallbacks get dartFunctions => _dartFunctions;\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/sqlite3.dart",
    "content": "import 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\nimport 'dart:typed_data';\n\nimport 'package:web/web.dart' as web;\n\nimport '../implementation/sqlite3.dart';\nimport 'bindings.dart';\nimport 'js_interop.dart';\nimport 'loader.dart';\nimport 'wasm_interop.dart';\n\n/// A WebAssembly version of the [CommmonSqlite3] interface.\n///\n/// This implementation supports the same API as the native version based on\n/// `dart:ffi`, but runs in the web.\n///\n/// {@category wasm}\nfinal class WasmSqlite3 extends Sqlite3Implementation {\n  /// Loads a web version of the sqlite3 libraries.\n  ///\n  /// [source] must be a byte buffer of a `sqlite.wasm` file prepared for this\n  /// package. This file can be obtained at the [releases][pgk release] for this\n  /// package.\n  ///\n  /// When the [source] is obtained through a HTTP request, consider directly\n  /// using [loadFromUrl] as that method is more efficient.\n  ///\n  /// [pgk release]: https://github.com/simolus3/sqlite3.dart/releases\n  static Future<WasmSqlite3> load(\n    Uint8List source, {\n    WasmModuleLoader? loader,\n  }) {\n    final headers = JSObject()..['content-type'] = 'application/wasm'.toJS;\n\n    final fakeResponse = web.Response(\n      source.toJS,\n      web.ResponseInit(headers: headers),\n    );\n\n    return _load(fakeResponse, loader);\n  }\n\n  /// Loads a web version of the sqlite3 libraries.\n  ///\n  /// The native wasm library for sqlite3 is loaded from the [uri] with the\n  /// desired [headers] through a `fetch` request.\n  ///\n  /// [pgk release]: https://github.com/simolus3/sqlite3.dart/releases\n  static Future<WasmSqlite3> loadFromUrl(\n    Uri uri, {\n    Map<String, String>? headers,\n    WasmModuleLoader? loader,\n  }) async {\n    web.RequestInit? options;\n\n    if (headers != null) {\n      final headersJs = JSObject();\n      headers.forEach((key, value) {\n        headersJs[key] = value.toJS;\n      });\n\n      options = web.RequestInit(headers: headersJs);\n    }\n\n    final jsUri = uri.isAbsolute\n        ? web.URL(uri.toString())\n        : web.URL(uri.toString(), Uri.base.toString());\n    final response = await fetch(jsUri, options).toDart;\n    return _load(response, loader);\n  }\n\n  static Future<WasmSqlite3> _load(\n    web.Response fetchResponse,\n    WasmModuleLoader? loader,\n  ) async {\n    loader ??= WasmModuleLoader();\n    final module = await loader.loadModule(fetchResponse);\n    final bindings = WasmBindings(module, loader.dartFunctions);\n\n    return WasmSqlite3._(bindings);\n  }\n\n  WasmSqlite3._(WasmBindings bindings) : super(WasmSqliteBindings(bindings));\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/sqlite3_wasm.g.dart",
    "content": "import 'dart:js_interop';\n\nimport 'package:web/web.dart' show Global;\n\n// ignore_for_file: non_constant_identifier_names\ntypedef Pointer = int;\n\n/// Typed wrappers around the symbols exported by SQLite.\n///\n/// Generated by `tool/generate_bindings.dart`.\nextension type SqliteExports(JSObject raw) implements JSObject {\n  external Global get sqlite3_temp_directory;\n  external int sqlite3_initialize();\n  external void sqlite3_free(Pointer /*<void *>*/ arg0);\n  external int sqlite3_open_v2(\n    Pointer /*<struct sqlite3_char *>*/ filename,\n    Pointer /*<struct sqlite3 * *>*/ ppDb,\n    int flags,\n    Pointer /*<struct sqlite3_char *>*/ zVfs,\n  );\n  external int sqlite3_close_v2(Pointer /*<struct sqlite3 *>*/ db);\n  external int sqlite3_extended_result_codes(\n    Pointer /*<struct sqlite3 *>*/ db,\n    int onoff,\n  );\n  external int sqlite3_extended_errcode(Pointer /*<struct sqlite3 *>*/ db);\n  external Pointer /*<struct sqlite3_char *>*/ sqlite3_errmsg(\n    Pointer /*<struct sqlite3 *>*/ db,\n  );\n  external Pointer /*<struct sqlite3_char *>*/ sqlite3_errstr(int code);\n  external int sqlite3_error_offset(Pointer /*<struct sqlite3 *>*/ db);\n  external Pointer /*<struct sqlite3_char *>*/ sqlite3_libversion();\n  external Pointer /*<struct sqlite3_char *>*/ sqlite3_sourceid();\n  external int sqlite3_libversion_number();\n  external JSBigInt sqlite3_last_insert_rowid(\n    Pointer /*<struct sqlite3 *>*/ db,\n  );\n  external int sqlite3_changes(Pointer /*<struct sqlite3 *>*/ db);\n  external int sqlite3_exec(\n    Pointer /*<struct sqlite3 *>*/ db,\n    Pointer /*<struct sqlite3_char *>*/ sql,\n    Pointer /*<void *>*/ callback,\n    Pointer /*<void *>*/ argToCb,\n    Pointer /*<struct sqlite3_char * *>*/ errorOut,\n  );\n  external int sqlite3_get_autocommit(Pointer /*<struct sqlite3 *>*/ db);\n  external int sqlite3_prepare_v2(\n    Pointer /*<struct sqlite3 *>*/ db,\n    Pointer /*<struct sqlite3_char *>*/ zSql,\n    int nByte,\n    Pointer /*<struct sqlite3_stmt * *>*/ ppStmt,\n    Pointer /*<struct sqlite3_char * *>*/ pzTail,\n  );\n  external int sqlite3_prepare_v3(\n    Pointer /*<struct sqlite3 *>*/ db,\n    Pointer /*<struct sqlite3_char *>*/ zSql,\n    int nByte,\n    int prepFlags,\n    Pointer /*<struct sqlite3_stmt * *>*/ ppStmt,\n    Pointer /*<struct sqlite3_char * *>*/ pzTail,\n  );\n  external int sqlite3_finalize(Pointer /*<struct sqlite3_stmt *>*/ pStmt);\n  external int sqlite3_step(Pointer /*<struct sqlite3_stmt *>*/ pStmt);\n  external int sqlite3_reset(Pointer /*<struct sqlite3_stmt *>*/ pStmt);\n  external int sqlite3_stmt_isexplain(\n    Pointer /*<struct sqlite3_stmt *>*/ pStmt,\n  );\n  external int sqlite3_stmt_readonly(Pointer /*<struct sqlite3_stmt *>*/ pStmt);\n  external int sqlite3_column_count(Pointer /*<struct sqlite3_stmt *>*/ pStmt);\n  external int sqlite3_bind_parameter_count(\n    Pointer /*<struct sqlite3_stmt *>*/ pStmt,\n  );\n  external int sqlite3_bind_parameter_index(\n    Pointer /*<struct sqlite3_stmt *>*/ arg0,\n    Pointer /*<struct sqlite3_char *>*/ zName,\n  );\n  external Pointer /*<struct sqlite3_char *>*/ sqlite3_column_name(\n    Pointer /*<struct sqlite3_stmt *>*/ pStmt,\n    int N,\n  );\n  external int sqlite3_bind_double(\n    Pointer /*<struct sqlite3_stmt *>*/ pStmt,\n    int index,\n    double data,\n  );\n  external int sqlite3_bind_int64(\n    Pointer /*<struct sqlite3_stmt *>*/ pStmt,\n    int index,\n    JSBigInt data,\n  );\n  external int sqlite3_bind_null(\n    Pointer /*<struct sqlite3_stmt *>*/ pStmt,\n    int index,\n  );\n  external Pointer /*<void *>*/ sqlite3_column_blob(\n    Pointer /*<struct sqlite3_stmt *>*/ pStmt,\n    int iCol,\n  );\n  external double sqlite3_column_double(\n    Pointer /*<struct sqlite3_stmt *>*/ pStmt,\n    int iCol,\n  );\n  external JSBigInt sqlite3_column_int64(\n    Pointer /*<struct sqlite3_stmt *>*/ pStmt,\n    int iCol,\n  );\n  external Pointer /*<struct sqlite3_char *>*/ sqlite3_column_text(\n    Pointer /*<struct sqlite3_stmt *>*/ pStmt,\n    int iCol,\n  );\n  external int sqlite3_column_bytes(\n    Pointer /*<struct sqlite3_stmt *>*/ pStmt,\n    int iCol,\n  );\n  external int sqlite3_column_type(\n    Pointer /*<struct sqlite3_stmt *>*/ pStmt,\n    int iCol,\n  );\n  external Pointer /*<void *>*/ sqlite3_value_blob(\n    Pointer /*<struct sqlite3_value *>*/ value,\n  );\n  external double sqlite3_value_double(\n    Pointer /*<struct sqlite3_value *>*/ value,\n  );\n  external int sqlite3_value_type(Pointer /*<struct sqlite3_value *>*/ value);\n  external JSBigInt sqlite3_value_int64(\n    Pointer /*<struct sqlite3_value *>*/ value,\n  );\n  external Pointer /*<struct sqlite3_char *>*/ sqlite3_value_text(\n    Pointer /*<struct sqlite3_value *>*/ value,\n  );\n  external int sqlite3_value_bytes(Pointer /*<struct sqlite3_value *>*/ value);\n  external int sqlite3_value_subtype(\n    Pointer /*<struct sqlite3_value *>*/ value,\n  );\n  external Pointer /*<void *>*/ sqlite3_aggregate_context(\n    Pointer /*<struct sqlite3_context *>*/ ctx,\n    int nBytes,\n  );\n  external Pointer /*<void *>*/ sqlite3_user_data(\n    Pointer /*<struct sqlite3_context *>*/ ctx,\n  );\n  external void sqlite3_result_blob64(\n    Pointer /*<struct sqlite3_context *>*/ ctx,\n    Pointer /*<void *>*/ data,\n    JSBigInt length,\n    Pointer /*<void *>*/ destructor,\n  );\n  external void sqlite3_result_double(\n    Pointer /*<struct sqlite3_context *>*/ ctx,\n    double result,\n  );\n  external void sqlite3_result_error(\n    Pointer /*<struct sqlite3_context *>*/ ctx,\n    Pointer /*<struct sqlite3_char *>*/ msg,\n    int length,\n  );\n  external void sqlite3_result_int64(\n    Pointer /*<struct sqlite3_context *>*/ ctx,\n    JSBigInt result,\n  );\n  external void sqlite3_result_null(Pointer /*<struct sqlite3_context *>*/ ctx);\n  external void sqlite3_result_text(\n    Pointer /*<struct sqlite3_context *>*/ ctx,\n    Pointer /*<struct sqlite3_char *>*/ data,\n    int length,\n    Pointer /*<void *>*/ destructor,\n  );\n  external void sqlite3_result_subtype(\n    Pointer /*<struct sqlite3_context *>*/ ctx,\n    int subtype,\n  );\n  external int sqlite3_db_config(Pointer /*<struct sqlite3 *>*/ db, int op);\n  external int sqlite3session_create(\n    Pointer /*<struct sqlite3 *>*/ db,\n    Pointer /*<struct sqlite3_char *>*/ zDb,\n    Pointer /*<struct sqlite3_session * *>*/ ppSession,\n  );\n  external void sqlite3session_delete(\n    Pointer /*<struct sqlite3_session *>*/ pSession,\n  );\n  external int sqlite3session_enable(\n    Pointer /*<struct sqlite3_session *>*/ pSession,\n    int bEnable,\n  );\n  external int sqlite3session_indirect(\n    Pointer /*<struct sqlite3_session *>*/ pSession,\n    int bIndirect,\n  );\n  external int sqlite3changeset_start(\n    Pointer /*<struct sqlite3_changeset_iter * *>*/ pp,\n    int nChangeset,\n    Pointer /*<void *>*/ pChangeset,\n  );\n  external int sqlite3changeset_finalize(\n    Pointer /*<struct sqlite3_changeset_iter *>*/ pIter,\n  );\n  external int sqlite3changeset_next(\n    Pointer /*<struct sqlite3_changeset_iter *>*/ pIter,\n  );\n  external int sqlite3changeset_op(\n    Pointer /*<struct sqlite3_changeset_iter *>*/ pIter,\n    Pointer /*<struct sqlite3_char * *>*/ pzTab,\n    Pointer /*<int *>*/ pnCol,\n    Pointer /*<int *>*/ pOp,\n    Pointer /*<int *>*/ pbIndirect,\n  );\n  external int sqlite3changeset_old(\n    Pointer /*<struct sqlite3_changeset_iter *>*/ pIter,\n    int iVal,\n    Pointer /*<struct sqlite3_value * *>*/ ppValue,\n  );\n  external int sqlite3changeset_new(\n    Pointer /*<struct sqlite3_changeset_iter *>*/ pIter,\n    int iVal,\n    Pointer /*<struct sqlite3_value * *>*/ ppValue,\n  );\n  external int sqlite3changeset_invert(\n    int nIn,\n    Pointer /*<void *>*/ pIn,\n    Pointer /*<int *>*/ pnOut,\n    Pointer /*<void * *>*/ ppOut,\n  );\n  external int sqlite3session_patchset(\n    Pointer /*<struct sqlite3_session *>*/ pSession,\n    Pointer /*<int *>*/ pnPatchset,\n    Pointer /*<void * *>*/ ppPatchset,\n  );\n  external int sqlite3session_changeset(\n    Pointer /*<struct sqlite3_session *>*/ pSession,\n    Pointer /*<int *>*/ pnChangeset,\n    Pointer /*<void * *>*/ ppChangeset,\n  );\n  external int sqlite3session_isempty(\n    Pointer /*<struct sqlite3_session *>*/ pSession,\n  );\n  external int sqlite3session_attach(\n    Pointer /*<struct sqlite3_session *>*/ pSession,\n    Pointer /*<struct sqlite3_char *>*/ zTab,\n  );\n  external int sqlite3session_diff(\n    Pointer /*<struct sqlite3_session *>*/ pSession,\n    Pointer /*<struct sqlite3_char *>*/ zFromDb,\n    Pointer /*<struct sqlite3_char *>*/ zTbl,\n    Pointer /*<struct sqlite3_char * *>*/ pzErrMsg,\n  );\n  external Pointer /*<void *>*/ dart_sqlite3_malloc(int size);\n  external void dart_sqlite3_free(Pointer /*<void *>*/ ptr);\n  external int dart_sqlite3_bind_blob(\n    Pointer /*<struct sqlite3_stmt *>*/ stmt,\n    int index,\n    Pointer /*<void *>*/ buf,\n    int len,\n  );\n  external int dart_sqlite3_bind_text(\n    Pointer /*<struct sqlite3_stmt *>*/ stmt,\n    int index,\n    Pointer /*<char *>*/ buf,\n    int len,\n  );\n  external Pointer /*<struct sqlite3_vfs *>*/ dart_sqlite3_register_vfs(\n    Pointer /*<char *>*/ name,\n    ExternalDartReference<Object>? vfs,\n    int makeDefault,\n  );\n  external int dart_sqlite3_unregister_vfs(\n    Pointer /*<struct sqlite3_vfs *>*/ vfs,\n  );\n  external int dart_sqlite3_create_function_v2(\n    Pointer /*<struct sqlite3 *>*/ db,\n    Pointer /*<char *>*/ zFunctionName,\n    int nArg,\n    int eTextRep,\n    int isAggregate,\n    ExternalDartReference<Object>? handlers,\n  );\n  external int dart_sqlite3_create_window_function(\n    Pointer /*<struct sqlite3 *>*/ db,\n    Pointer /*<char *>*/ zFunctionName,\n    int nArg,\n    int eTextRep,\n    ExternalDartReference<Object>? handlers,\n  );\n  external void dart_sqlite3_updates(\n    Pointer /*<struct sqlite3 *>*/ db,\n    ExternalDartReference<Object>? callback,\n  );\n  external void dart_sqlite3_commits(\n    Pointer /*<struct sqlite3 *>*/ db,\n    ExternalDartReference<Object>? callback,\n  );\n  external void dart_sqlite3_rollbacks(\n    Pointer /*<struct sqlite3 *>*/ db,\n    ExternalDartReference<Object>? callback,\n  );\n  external int dart_sqlite3_create_collation(\n    Pointer /*<struct sqlite3 *>*/ db,\n    Pointer /*<char *>*/ zName,\n    int eTextRep,\n    ExternalDartReference<Object>? function,\n  );\n  external int dart_sqlite3_db_config_int(\n    Pointer /*<struct sqlite3 *>*/ db,\n    int op,\n    int arg,\n  );\n  external int dart_sqlite3changeset_apply(\n    Pointer /*<struct sqlite3 *>*/ db,\n    int nChangeset,\n    Pointer /*<void *>*/ pChangeset,\n    ExternalDartReference<Object>? callbacks,\n    int filter,\n  );\n  external int dart_sqlite3_busy_handler(\n    Pointer /*<struct sqlite3 *>*/ db,\n    ExternalDartReference<Object>? callback,\n  );\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/vfs/async_opfs/client.dart",
    "content": "import 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\nimport 'dart:math';\nimport 'dart:typed_data';\n\nimport 'package:path/path.dart' as p;\n\nimport '../../../constants.dart';\nimport '../../../vfs.dart';\nimport '../../js_interop.dart';\nimport '../../../utils.dart';\nimport 'sync_channel.dart';\nimport 'worker.dart';\n\n/// A VFS implementation based on the file system access API without shared\n/// workers.\n///\n/// The file system access API provides synchronous access to opened files.\n/// These need to be opened first however, and that process is asynchronous.\n/// SQLite, being a C library, expects synchronous access to the file system.\n/// [WasmVfs] is a workaround for this problem that relies on a pair of workers\n/// that together make asynchronous APIs synchronous.\n///\n/// 1. One worker is responsible for hosting the database. This worker installs\n///    a [WasmVfs] on the registered SQLite instance.\n///    The worker uses [WasmVfs.createOptions] to obtain an options object\n///    containing shared array buffers for efficient communication.\n/// 2. Another worker is hosting the file system. This is asynchronous, but by\n///    using `Atomics` APIs and the shared array buffers, the database worker\n///    can access the file system synchronously.\n///\n/// The second worker is implemented by [VfsWorker]. Note that [WasmVfs] is only\n/// available in browsing contexts where shared array buffers and atomics are\n/// available.\n/// For an automatic feature detection and logic to pick a suitable\n/// implementation based on browser features, consider using a package like\n/// `sqlite3_web` (or `sqlite_async` for cross-platform support).\n///\n/// {@category wasm}\nfinal class WasmVfs extends BaseVirtualFileSystem {\n  final RequestResponseSynchronizer synchronizer;\n  final MessageSerializer serializer;\n\n  final String chroot;\n  final p.Context pathContext;\n\n  WasmVfs({\n    super.random,\n    required WorkerOptions workerOptions,\n    this.chroot = '/',\n    String vfsName = 'dart-sqlite3-vfs',\n  }) : synchronizer = RequestResponseSynchronizer(\n         workerOptions.synchronizationBuffer,\n       ),\n       serializer = MessageSerializer(workerOptions.communicationBuffer),\n       pathContext = p.Context(style: p.Style.url, current: chroot),\n       super(name: vfsName);\n\n  Res _runInWorker<Req extends Message, Res extends Message>(\n    WorkerOperation<Req, Res> operation,\n    Req requestData,\n  ) {\n    serializer.write(requestData);\n\n    final rc = synchronizer.requestAndWaitForResponse(operation.index);\n    if (rc != 0) {\n      throw VfsException(rc);\n    }\n\n    return operation.readResponse(serializer);\n  }\n\n  @override\n  int xAccess(String path, int flags) {\n    final res = _runInWorker(\n      WorkerOperation.xAccess,\n      NameAndInt32Flags(path, flags, 0, 0),\n    );\n    return res.flag0;\n  }\n\n  @override\n  void xDelete(String path, int syncDir) {\n    _runInWorker(\n      WorkerOperation.xDelete,\n      NameAndInt32Flags(path, syncDir, 0, 0),\n    );\n  }\n\n  @override\n  String xFullPathName(String path) {\n    final resolved = pathContext.absolute(path);\n    if (!p.isWithin(chroot, resolved)) {\n      throw const VfsException(SqlError.SQLITE_CANTOPEN);\n    }\n\n    return resolved;\n  }\n\n  @override\n  XOpenResult xOpen(Sqlite3Filename path, int flags) {\n    final filePath = path.path ?? random.randomFileName(prefix: chroot);\n    final result = _runInWorker(\n      WorkerOperation.xOpen,\n      NameAndInt32Flags(filePath, flags, 0, 0),\n    );\n\n    final outFlags = result.flag0;\n    final fd = result.flag1;\n    return (outFlags: outFlags, file: WasmFile(this, fd));\n  }\n\n  @override\n  void xSleep(Duration duration) {\n    _runInWorker(WorkerOperation.xSleep, Flags(duration.inMilliseconds, 0, 0));\n  }\n\n  void close() {\n    _runInWorker(WorkerOperation.stopServer, const EmptyMessage());\n  }\n\n  static bool get supportsAtomicsAndSharedMemory {\n    return Atomics.supported && globalContext.has('SharedArrayBuffer');\n  }\n\n  /// Creates [WorkerOptions] that can be sent to an [VfsWorker] instance which\n  /// is responsible for hosting the file system on the other end.\n  static WorkerOptions createOptions({String root = 'pkg_sqlite3_db/'}) {\n    return WorkerOptions(\n      synchronizationBuffer: RequestResponseSynchronizer.createBuffer(),\n      communicationBuffer: SharedArrayBuffer(MessageSerializer.totalSize),\n      root: root,\n    );\n  }\n}\n\nclass WasmFile extends BaseVfsFile {\n  final WasmVfs vfs;\n  final int fd;\n\n  int lockStatus = SqlFileLockingLevels.SQLITE_LOCK_NONE;\n\n  WasmFile(this.vfs, this.fd);\n\n  @override\n  int get xDeviceCharacteristics {\n    return SqlDeviceCharacteristics.SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN;\n  }\n\n  @override\n  int readInto(Uint8List buffer, int offset) {\n    var remainingBytes = buffer.length;\n    var totalBytesRead = 0;\n\n    while (remainingBytes > 0) {\n      // There's a limit on the length of byte data we can transmit with one\n      // worker call. A single read call is unlikely to exceed this, but we run\n      // this in a loop to be safe.\n      final bytesToRead = min(MessageSerializer.dataSize, remainingBytes);\n      remainingBytes -= bytesToRead;\n\n      final result = vfs._runInWorker(\n        WorkerOperation.xRead,\n        Flags(fd, offset + totalBytesRead, bytesToRead),\n      );\n      final bytesRead = result.flag0;\n\n      // Copy read bytes into result buffer.\n      buffer.set(vfs.serializer.viewByteRange(0, bytesRead), totalBytesRead);\n\n      totalBytesRead += bytesRead;\n      if (bytesRead < bytesToRead) {\n        // short read! No point in reading further as the end of the file has\n        // been reached.\n        break;\n      }\n    }\n\n    return totalBytesRead;\n  }\n\n  @override\n  int xCheckReservedLock() {\n    // Copying the approach from sqlite3's implementation here: We can't check\n    // whether another tab has a lock on this file without racing. So, we just\n    // reprot whether _we_ have a lock...\n    return lockStatus != SqlFileLockingLevels.SQLITE_LOCK_NONE ? 1 : 0;\n  }\n\n  @override\n  void xClose() {\n    vfs._runInWorker(WorkerOperation.xClose, Flags(fd, 0, 0));\n  }\n\n  @override\n  int xFileSize() {\n    final response = vfs._runInWorker(\n      WorkerOperation.xFileSize,\n      Flags(fd, 0, 0),\n    );\n    return response.flag0;\n  }\n\n  @override\n  void xLock(int mode) {\n    // In our implementation, all locks are exclusive. So we only need to lock\n    // if this file is not currently locked.\n    if (lockStatus == SqlFileLockingLevels.SQLITE_LOCK_NONE) {\n      vfs._runInWorker(WorkerOperation.xLock, Flags(fd, mode, 0));\n    }\n\n    lockStatus = mode;\n  }\n\n  @override\n  void xSync(int flags) {\n    vfs._runInWorker(WorkerOperation.xSync, Flags(fd, 0, 0));\n  }\n\n  @override\n  void xTruncate(int size) {\n    vfs._runInWorker(WorkerOperation.xTruncate, Flags(fd, size, 0));\n  }\n\n  @override\n  void xUnlock(int mode) {\n    // As we only have exlusive locks in OPFS, this only needs to do something\n    // when sqlite3 requests to clear the lock entirely.\n    if (lockStatus != SqlFileLockingLevels.SQLITE_LOCK_NONE &&\n        mode == SqlFileLockingLevels.SQLITE_LOCK_NONE) {\n      vfs._runInWorker(WorkerOperation.xUnlock, Flags(fd, mode, 0));\n    }\n  }\n\n  @override\n  void xWrite(Uint8List buffer, int fileOffset) {\n    var remainingBytes = buffer.length;\n    var totalBytesWritten = 0;\n\n    while (remainingBytes > 0) {\n      // Again, we may have to split this into multiple write calls if the\n      // buffer would otherwise overflow.\n      final bytesToWrite = min(MessageSerializer.dataSize, remainingBytes);\n\n      final subBuffer =\n          (bytesToWrite == remainingBytes && totalBytesWritten == 0)\n          ? buffer\n          : buffer.buffer.asUint8List(\n              buffer.offsetInBytes + totalBytesWritten,\n              bytesToWrite,\n            );\n      vfs.serializer.byteView.set(subBuffer, 0);\n\n      vfs._runInWorker(\n        WorkerOperation.xWrite,\n        Flags(fd, fileOffset + totalBytesWritten, bytesToWrite),\n      );\n\n      totalBytesWritten += bytesToWrite;\n      remainingBytes -= bytesToWrite;\n    }\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/vfs/async_opfs/sync_channel.dart",
    "content": "import 'dart:convert';\nimport 'dart:typed_data';\n\nimport '../../js_interop.dart';\n\nconst protocolVersion = 1;\nconst asyncIdleWaitTimeMs = 150;\nconst asyncIdleWaitTime = Duration(milliseconds: asyncIdleWaitTimeMs);\n\n/// Implements a synchronous mechanism to wait for requests and responses.\nclass RequestResponseSynchronizer {\n  static const _requestIndex = 0;\n  static const _responseIndex = 1;\n\n  // 2 32-bit slots for the int32 array\n  static const _byteLength = 2 * 4;\n\n  /// The shared array buffer used with atomics for synchronization.\n  ///\n  /// It must have a length of [byteLength].\n  final SharedArrayBuffer buffer;\n\n  /// A int32 view over [buffer], required for atomics to work.\n  final Int32List int32View;\n\n  RequestResponseSynchronizer._(this.buffer) : int32View = buffer.asInt32List();\n\n  factory RequestResponseSynchronizer([SharedArrayBuffer? buffer]) {\n    if (buffer != null && buffer.byteLength != _byteLength) {\n      throw ArgumentError('Must be $_byteLength in length');\n    }\n\n    return RequestResponseSynchronizer._(\n      buffer ?? SharedArrayBuffer(_byteLength),\n    );\n  }\n\n  /// Creates a shared buffer and fills it with the initial state suitable for\n  /// a request synchronization channel.\n  static SharedArrayBuffer createBuffer() {\n    final buffer = SharedArrayBuffer(_byteLength);\n    final view = buffer.asInt32List();\n\n    // The server will wait for the request index to not be -1 to wait for a\n    // request. The initial value when allocating shared buffers is 0, which is\n    // also a valid opcode.\n    Atomics.store(view, _requestIndex, -1);\n\n    return buffer;\n  }\n\n  /// Send a request with the given [opcode], wait for the remote worker to\n  /// process it and returns the response code.\n  int requestAndWaitForResponse(int opcode) {\n    assert(opcode >= 0);\n    Atomics.store(int32View, _responseIndex, -1);\n    Atomics.store(int32View, _requestIndex, opcode);\n    Atomics.notify(int32View, _requestIndex);\n\n    // Async worker will take over here...\n\n    Atomics.wait(int32View, _responseIndex, -1);\n    return Atomics.load(int32View, _responseIndex);\n  }\n\n  String waitForRequest() {\n    return Atomics.waitWithTimeout(\n      int32View,\n      _requestIndex,\n      -1,\n      asyncIdleWaitTimeMs,\n    );\n  }\n\n  int takeOpcode() {\n    final opcode = Atomics.load(int32View, _requestIndex);\n    Atomics.store(int32View, _requestIndex, -1);\n    return opcode;\n  }\n\n  void respond(int rc) {\n    assert(rc != -1);\n    Atomics.store(int32View, _responseIndex, rc);\n    Atomics.notify(int32View, _responseIndex);\n  }\n}\n\nclass MessageSerializer {\n  static const dataSize = 64 * 1024;\n  static const metaOffset = dataSize;\n  static const metaSize = 2048;\n  static const totalSize = metaOffset + metaSize;\n\n  final SharedArrayBuffer buffer;\n  final ByteData dataView;\n  final Uint8List byteView;\n\n  MessageSerializer(this.buffer)\n    : dataView = buffer.asByteData(metaOffset, metaSize),\n      byteView = buffer.asUint8List();\n\n  void write(Message message) {\n    if (message is EmptyMessage) {\n      // Nothing to do\n    } else if (message is Flags) {\n      dataView.setInt32(0, message.flag0);\n      dataView.setInt32(4, message.flag1);\n      dataView.setInt32(8, message.flag2);\n\n      if (message is NameAndInt32Flags) {\n        _writeString(12, message.name);\n      }\n    } else {\n      throw UnsupportedError('Message $message');\n    }\n  }\n\n  Uint8List viewByteRange(int offset, int length) {\n    return buffer.asUint8ListSlice(offset, length);\n  }\n\n  String _readString(int offset) {\n    final length = dataView.getInt32(offset);\n    return utf8.decode(buffer.asUint8ListSlice(offset + 4, length));\n  }\n\n  void _writeString(int offset, String data) {\n    final encoded = utf8.encode(data);\n    dataView.setInt32(offset, encoded.length);\n    byteView.setAll(offset + 4, encoded);\n  }\n\n  static EmptyMessage readEmpty(MessageSerializer unused) {\n    return const EmptyMessage();\n  }\n\n  static Flags readFlags(MessageSerializer msg) {\n    return Flags(\n      msg.dataView.getInt32(0),\n      msg.dataView.getInt32(4),\n      msg.dataView.getInt32(8),\n    );\n  }\n\n  static NameAndInt32Flags readNameAndFlags(MessageSerializer msg) {\n    return NameAndInt32Flags(\n      msg._readString(12),\n      msg.dataView.getInt32(0),\n      msg.dataView.getInt32(4),\n      msg.dataView.getInt32(8),\n    );\n  }\n}\n\nenum WorkerOperation<Req extends Message, Res extends Message> {\n  xAccess<NameAndInt32Flags, Flags>(\n    MessageSerializer.readNameAndFlags,\n    MessageSerializer.readFlags,\n  ),\n  xDelete<NameAndInt32Flags, EmptyMessage>(\n    MessageSerializer.readNameAndFlags,\n    MessageSerializer.readEmpty,\n  ),\n  xOpen<NameAndInt32Flags, Flags>(\n    MessageSerializer.readNameAndFlags,\n    MessageSerializer.readFlags,\n  ),\n  xRead<Flags, Flags>(MessageSerializer.readFlags, MessageSerializer.readFlags),\n  xWrite<Flags, EmptyMessage>(\n    MessageSerializer.readFlags,\n    MessageSerializer.readEmpty,\n  ),\n  xSleep<Flags, EmptyMessage>(\n    MessageSerializer.readFlags,\n    MessageSerializer.readEmpty,\n  ),\n  xClose<Flags, EmptyMessage>(\n    MessageSerializer.readFlags,\n    MessageSerializer.readEmpty,\n  ),\n  xFileSize<Flags, Flags>(\n    MessageSerializer.readFlags,\n    MessageSerializer.readFlags,\n  ),\n  xSync<Flags, EmptyMessage>(\n    MessageSerializer.readFlags,\n    MessageSerializer.readEmpty,\n  ),\n  xTruncate<Flags, EmptyMessage>(\n    MessageSerializer.readFlags,\n    MessageSerializer.readEmpty,\n  ),\n  xLock<Flags, EmptyMessage>(\n    MessageSerializer.readFlags,\n    MessageSerializer.readEmpty,\n  ),\n  xUnlock<Flags, EmptyMessage>(\n    MessageSerializer.readFlags,\n    MessageSerializer.readEmpty,\n  ),\n  stopServer<EmptyMessage, EmptyMessage>(\n    MessageSerializer.readEmpty,\n    MessageSerializer.readEmpty,\n  );\n\n  final Req Function(MessageSerializer) readRequest;\n  final Res Function(MessageSerializer) readResponse;\n\n  const WorkerOperation(this.readRequest, this.readResponse);\n}\n\nabstract class Message {\n  const Message();\n}\n\nclass EmptyMessage extends Message {\n  const EmptyMessage();\n}\n\nclass Flags extends Message {\n  final int flag0;\n  final int flag1;\n  final int flag2;\n\n  Flags(this.flag0, this.flag1, this.flag2);\n}\n\nclass NameAndInt32Flags extends Flags {\n  final String name;\n\n  NameAndInt32Flags(this.name, super.flag0, super.flag1, super.flag2);\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/vfs/async_opfs/worker.dart",
    "content": "// https://github.com/dart-lang/sdk/issues/54801\n@JS()\nlibrary;\n\nimport 'dart:js_interop';\n\nimport 'package:path/path.dart' as p show url;\nimport 'package:web/web.dart'\n    show\n        FileSystemDirectoryHandle,\n        FileSystemFileHandle,\n        FileSystemSyncAccessHandle,\n        FileSystemReadWriteOptions;\n\nimport '../../../constants.dart';\nimport '../../../vfs.dart';\nimport '../../js_interop.dart';\nimport 'sync_channel.dart';\n\nconst _workerDebugLog = bool.fromEnvironment(\n  'sqlite3.wasm.worker.debug',\n  defaultValue: false,\n);\n\nvoid _log(String message) {\n  if (_workerDebugLog) print(message);\n}\n\n/// Options created by an [WasmVfs]. These include the shared array buffers used\n/// to make asynchronous web APIs synchronous for SQLite.\n///\n/// {@category wasm}\n@JS()\n@anonymous\nextension type WorkerOptions._raw(JSObject _) implements JSObject {\n  external int get clientVersion;\n  external String get root;\n  external SharedArrayBuffer get synchronizationBuffer;\n  external SharedArrayBuffer get communicationBuffer;\n\n  external factory WorkerOptions._({\n    required int clientVersion,\n    required String root,\n    required SharedArrayBuffer synchronizationBuffer,\n    required SharedArrayBuffer communicationBuffer,\n  });\n\n  factory WorkerOptions({\n    int clientVersion = protocolVersion,\n    required String root,\n    required SharedArrayBuffer synchronizationBuffer,\n    required SharedArrayBuffer communicationBuffer,\n  }) {\n    return WorkerOptions._(\n      clientVersion: clientVersion,\n      root: root,\n      synchronizationBuffer: synchronizationBuffer,\n      communicationBuffer: communicationBuffer,\n    );\n  }\n}\n\nclass _ResolvedPath {\n  final String fullPath;\n\n  final FileSystemDirectoryHandle directory;\n  final String filename;\n\n  _ResolvedPath(this.fullPath, this.directory, this.filename);\n\n  Future<FileSystemFileHandle> openFile({bool create = false}) {\n    return directory.openFile(filename, create: create);\n  }\n}\n\n/// Contains code used to implement web workers that are prodiving synchronous\n/// access to asynchronous web APIs (like OPFS).\n///\n/// Users of this library are supposed to construct [WorkerOptions] in their\n/// database worker and send them to another worker responsible for hosting the\n/// file system.\n/// That worker uses [VfsWorker.create] to make the file system accessible.\n/// For more details and an overview of this implementation, see [WasmVfs].\n///\n/// {@category wasm}\nclass VfsWorker {\n  final RequestResponseSynchronizer synchronizer;\n  final MessageSerializer messages;\n\n  final FileSystemDirectoryHandle root;\n\n  var _fdCounter = 0;\n  var _stopped = false;\n\n  final Map<int, _OpenedFileHandle> _openFiles = {};\n  final Set<_OpenedFileHandle> _implicitlyHeldLocks = {};\n\n  VfsWorker._(WorkerOptions options, this.root)\n    : synchronizer = RequestResponseSynchronizer(options.synchronizationBuffer),\n      messages = MessageSerializer(options.communicationBuffer);\n\n  static Future<VfsWorker> create(WorkerOptions options) async {\n    var root = await storageManager!.directory;\n    final split = p.url.split(options.root);\n\n    for (final directory in split) {\n      root = await root.getDirectory(directory, create: true);\n    }\n\n    return VfsWorker._(options, root);\n  }\n\n  Future<_ResolvedPath> _resolvePath(\n    String absolutePath, {\n    bool createDirectories = false,\n  }) async {\n    final fullPath = p.url.relative(absolutePath, from: '/');\n    final [...directories, file] = p.url.split(fullPath);\n\n    var dirHandle = root;\n    for (final entry in directories) {\n      dirHandle = await dirHandle.getDirectory(\n        entry,\n        create: createDirectories,\n      );\n    }\n\n    return _ResolvedPath(fullPath, dirHandle, file);\n  }\n\n  Future<Flags> _xAccess(NameAndInt32Flags flags) async {\n    try {\n      final resolved = await _resolvePath(flags.name);\n\n      // If we can open the file, it exists. For OPFS, that means that it's both\n      // readable and writable.\n      await resolved.openFile();\n      return Flags(1, 0, 0);\n    } catch (e) {\n      return Flags(0, 0, 0);\n    }\n  }\n\n  Future<void> _xDelete(NameAndInt32Flags options) async {\n    final resolved = await _resolvePath(options.name);\n    try {\n      await resolved.directory.remove(resolved.filename);\n    } catch (e) {\n      _log('Could not delete entry: $e');\n      throw const VfsException(SqlExtendedError.SQLITE_IOERR_DELETE);\n    }\n  }\n\n  Future<Flags> _xOpen(NameAndInt32Flags req) async {\n    final flags = req.flag0;\n    final create = (flags & SqlFlag.SQLITE_OPEN_CREATE) != 0;\n\n    _ResolvedPath resolved;\n\n    try {\n      resolved = await _resolvePath(req.name, createDirectories: create);\n    } catch (e) {\n      // Error traversing the path\n      throw VfsException(SqlError.SQLITE_NOTFOUND);\n    }\n\n    final fileHandle = await resolved.openFile(create: create);\n    final readonly = !create && (flags & SqlFlag.SQLITE_OPEN_READONLY) != 0;\n    final opened = _OpenedFileHandle(\n      fd: _fdCounter++,\n      directory: resolved.directory,\n      fullPath: resolved.fullPath,\n      filename: resolved.filename,\n      file: fileHandle,\n      deleteOnClose: (flags & SqlFlag.SQLITE_OPEN_DELETEONCLOSE) != 0,\n      readonly: readonly,\n    );\n    _openFiles[opened.fd] = opened;\n\n    var outFlags = 0;\n    if (readonly) {\n      outFlags |= SqlFlag.SQLITE_OPEN_READONLY;\n    }\n\n    // flag0 are the outFlags passed to sqlite, flag1 is the descriptor\n    return Flags(outFlags, opened.fd, 0);\n  }\n\n  Future<Flags> _xRead(Flags req) async {\n    final file = _openFiles[req.flag0]!;\n    final offset = req.flag1;\n    final bufferLength = req.flag2;\n    assert(bufferLength <= MessageSerializer.dataSize);\n\n    final syncHandle = await _openForSynchronousAccess(file);\n    final bytesRead = syncHandle.readDart(\n      messages.viewByteRange(0, bufferLength),\n      FileSystemReadWriteOptions(at: offset),\n    );\n\n    return Flags(bytesRead, 0, 0);\n  }\n\n  Future<EmptyMessage> _xWrite(Flags req) async {\n    final file = _openFiles[req.flag0]!;\n    final offset = req.flag1;\n    final bufferLength = req.flag2;\n    assert(bufferLength <= MessageSerializer.dataSize);\n\n    final syncHandle = await _openForSynchronousAccess(file);\n    final bytesWritten = syncHandle.writeDart(\n      messages.viewByteRange(0, bufferLength),\n      FileSystemReadWriteOptions(at: offset),\n    );\n\n    if (bytesWritten != bufferLength) {\n      throw const VfsException(SqlExtendedError.SQLITE_IOERR_WRITE);\n    }\n\n    return const EmptyMessage();\n  }\n\n  Future<void> _xClose(Flags req) async {\n    final file = _openFiles.remove(req.flag0);\n    _implicitlyHeldLocks.remove(file);\n\n    if (file == null) {\n      throw const VfsException(SqlError.SQLITE_NOTFOUND);\n    }\n\n    _closeSyncHandle(file);\n    if (file.deleteOnClose) {\n      await file.directory.remove(file.filename);\n    }\n  }\n\n  Future<Flags> _xFileSize(Flags req) async {\n    final file = _openFiles[req.flag0]!;\n    try {\n      final syncHandle = await _openForSynchronousAccess(file);\n      final size = syncHandle.getSize();\n\n      return Flags(size, 0, 0);\n    } finally {\n      _releaseImplicitLock(file);\n    }\n  }\n\n  Future<EmptyMessage> _xTruncate(Flags req) async {\n    final file = _openFiles[req.flag0]!;\n    file.checkMayWrite();\n\n    try {\n      final syncHandle = await _openForSynchronousAccess(file);\n      syncHandle.truncate(req.flag1);\n    } finally {\n      _releaseImplicitLock(file);\n    }\n\n    return const EmptyMessage();\n  }\n\n  Future<EmptyMessage> _xSync(Flags req) async {\n    final file = _openFiles[req.flag0]!;\n\n    // Closing a sync handle will also flush it, so we only need to call flush\n    // explicitly if the file is currently opened.\n    final syncHandle = file.syncHandle;\n    if (!file.readonly && syncHandle != null) {\n      syncHandle.flush();\n    }\n\n    return const EmptyMessage();\n  }\n\n  Future<EmptyMessage> _xLock(Flags req) async {\n    final file = _openFiles[req.flag0]!;\n\n    if (file.syncHandle == null) {\n      try {\n        await _openForSynchronousAccess(file);\n        file.explicitlyLocked = true;\n      } on Object {\n        throw const VfsException(SqlExtendedError.SQLITE_IOERR_LOCK);\n      }\n    } else {\n      // We already have an (implicit) lock on this file, so we just need to\n      // make it explicit.\n      file.explicitlyLocked = true;\n    }\n\n    return const EmptyMessage();\n  }\n\n  Future<EmptyMessage> _xUnlock(Flags req) async {\n    final file = _openFiles[req.flag0]!;\n    final mode = req.flag1;\n\n    final existingHandle = file.syncHandle;\n    if (existingHandle != null &&\n        mode == SqlFileLockingLevels.SQLITE_LOCK_NONE) {\n      _closeSyncHandle(file);\n    }\n\n    return const EmptyMessage();\n  }\n\n  Future<void> start() async {\n    while (!_stopped) {\n      final waitResult = synchronizer.waitForRequest();\n      if (waitResult == Atomics.timedOut) {\n        // No requests for some time, transition to idle\n        _releaseImplicitLocks();\n        continue;\n      }\n\n      int rc;\n      WorkerOperation? opcode;\n      Object? request;\n\n      try {\n        opcode = WorkerOperation.values[synchronizer.takeOpcode()];\n        request = opcode.readRequest(messages);\n\n        Message response;\n\n        switch (opcode) {\n          case WorkerOperation.xSleep:\n            _releaseImplicitLocks();\n            await Future<void>.delayed(\n              Duration(milliseconds: (request as Flags).flag0),\n            );\n            response = const EmptyMessage();\n            break;\n          case WorkerOperation.xAccess:\n            response = await _xAccess(request as NameAndInt32Flags);\n            break;\n          case WorkerOperation.xDelete:\n            await _xDelete(request as NameAndInt32Flags);\n            response = const EmptyMessage();\n            break;\n          case WorkerOperation.xOpen:\n            response = await _xOpen(request as NameAndInt32Flags);\n            break;\n          case WorkerOperation.xRead:\n            response = await _xRead(request as Flags);\n            break;\n          case WorkerOperation.xWrite:\n            response = await _xWrite(request as Flags);\n            break;\n          case WorkerOperation.xClose:\n            await _xClose(request as Flags);\n            response = const EmptyMessage();\n            break;\n          case WorkerOperation.xFileSize:\n            response = await _xFileSize(request as Flags);\n            break;\n          case WorkerOperation.xTruncate:\n            response = await _xTruncate(request as Flags);\n            break;\n          case WorkerOperation.xSync:\n            response = await _xSync(request as Flags);\n            break;\n          case WorkerOperation.xLock:\n            response = await _xLock(request as Flags);\n            break;\n          case WorkerOperation.xUnlock:\n            response = await _xUnlock(request as Flags);\n            break;\n          case WorkerOperation.stopServer:\n            response = const EmptyMessage();\n            _stopped = true;\n            _releaseImplicitLocks();\n            break;\n        }\n\n        messages.write(response);\n        rc = 0;\n      } on VfsException catch (e) {\n        _log('Caught $e while handling $opcode($request)');\n        rc = e.returnCode;\n      } catch (e) {\n        _log('Caught $e while handling $opcode($request)');\n        rc = 1;\n      }\n\n      synchronizer.respond(rc);\n    }\n  }\n\n  void _releaseImplicitLocks() {\n    _implicitlyHeldLocks.toList().forEach(_releaseImplicitLock);\n  }\n\n  void _releaseImplicitLock(_OpenedFileHandle handle) {\n    if (_implicitlyHeldLocks.remove(handle)) {\n      _closeSyncHandleNoThrow(handle);\n    }\n  }\n\n  Future<FileSystemSyncAccessHandle> _openForSynchronousAccess(\n    _OpenedFileHandle file,\n  ) async {\n    final existing = file.syncHandle;\n    if (existing != null) {\n      return existing;\n    }\n\n    var attempt = 1;\n    const maxAttempts = 6;\n\n    while (true) {\n      try {\n        final handle = file.syncHandle = await file.file\n            .createSyncAccessHandle()\n            .toDart;\n\n        // We've locked the file simply because we've created an (exclusive)\n        // synchronous access handle. If there was no explicit lock on this\n        // file (through xLock), let's remember that we've locked the file. For\n        // most operations (e.g. subsequent reads and writes), we keep a lock\n        // across requests.\n        if (!file.explicitlyLocked) {\n          _implicitlyHeldLocks.add(file);\n          _log('Acquired implicit lock for ${file.fullPath}');\n        }\n        return handle;\n      } catch (e) {\n        if (attempt == maxAttempts) {\n          throw const VfsException(SqlError.SQLITE_IOERR);\n        }\n\n        _log('Could not obtain sync handle (attempt $attempt / $maxAttempts)');\n        attempt++;\n      }\n    }\n  }\n\n  void _closeSyncHandleNoThrow(_OpenedFileHandle handle) {\n    try {\n      _closeSyncHandle(handle);\n    } catch (e) {\n      _log('Ignoring error during close');\n    }\n  }\n\n  void _closeSyncHandle(_OpenedFileHandle handle) {\n    final syncHandle = handle.syncHandle;\n    if (syncHandle != null) {\n      _log('Closing sync handle for ${handle.fullPath}');\n      handle.syncHandle = null;\n      _implicitlyHeldLocks.remove(handle);\n      handle.explicitlyLocked = false;\n      syncHandle.close();\n    }\n  }\n}\n\nclass _OpenedFileHandle {\n  final int fd;\n  final bool readonly;\n  final bool deleteOnClose;\n\n  final String fullPath;\n  final FileSystemDirectoryHandle directory;\n  final String filename;\n  final FileSystemFileHandle file;\n\n  bool explicitlyLocked = false;\n  FileSystemSyncAccessHandle? syncHandle;\n\n  _OpenedFileHandle({\n    required this.fd,\n    required this.readonly,\n    required this.deleteOnClose,\n    required this.fullPath,\n    required this.directory,\n    required this.filename,\n    required this.file,\n  });\n\n  void checkMayWrite() {\n    if (readonly) {\n      throw const VfsException(SqlError.SQLITE_READONLY);\n    }\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/vfs/indexed_db.dart",
    "content": "@JS()\nlibrary;\n\nimport 'dart:async';\nimport 'dart:collection';\nimport 'dart:js_interop';\nimport 'dart:math';\nimport 'dart:typed_data';\n\nimport 'package:meta/meta.dart';\nimport 'package:typed_data/typed_buffers.dart';\nimport 'package:web/web.dart' as web;\n\nimport '../../constants.dart';\nimport '../../vfs.dart';\nimport '../js_interop.dart';\nimport '../../in_memory_vfs.dart';\nimport '../../utils.dart';\n\n/// An (asynchronous) file system implementation backed by IndexedDB.\n///\n/// For a synchronous variant of this that implements [FileSystem], use\n/// [IndexedDbFileSystem]. It uses an in-memory cache to synchronously wrap this\n/// file system (at the loss of durability guarantees).\n@internal\nclass AsynchronousIndexedDbFileSystem {\n  // Format of the files store: `{name: <path>, length: <size>}`. See also\n  // [_FileEntry], which is the actual object that we're storing in the\n  // database.\n  static const _filesStore = 'files';\n  static const _fileName = 'name';\n  static const _fileNameIndex = 'fileName';\n\n  // Format of blocks store: Key is a (file id, offset) pair, value is a blob.\n  // Each blob is 4096 bytes large. If we have a file that isn't a multiple of\n  // this length, we set the \"length\" attribute on the file instead of storing\n  // shorter blobs. This simplifies the implementation.\n  static const _blocksStore = 'blocks';\n\n  static const _stores = [_filesStore, _blocksStore];\n  static final _storesJs = [_filesStore.toJS, _blocksStore.toJS].toJS;\n\n  static const _blockSize = 4096;\n  static const _maxFileSize = 9007199254740992;\n\n  web.IDBDatabase? _database;\n  final String _dbName;\n\n  AsynchronousIndexedDbFileSystem(this._dbName);\n\n  bool get _isClosed => _database == null;\n\n  web.IDBKeyRange _rangeOverFile(\n    int fileId, {\n    int startOffset = 0,\n    int endOffsetInclusive = _maxFileSize,\n  }) {\n    // The key of blocks is an array, [fileId, offset]. So if we want to iterate\n    // through a fixed file, we use `[fileId, 0]` as a lower and `[fileId, max]`\n    // as a higher bound.\n    return web.IDBKeyRange.bound(\n      [fileId.toJS, startOffset.toJS].toJS,\n      [fileId.toJS, endOffsetInclusive.toJS].toJS,\n    );\n  }\n\n  Future<void> open() async {\n    // We need to wrap the open call in a completer. Otherwise the `open()`\n    // future never completes if we're blocked.\n    final completer = Completer<web.IDBDatabase>.sync();\n    final openRequest = indexedDB!.open(_dbName, 1);\n    openRequest.onupgradeneeded = (web.IDBVersionChangeEvent change) {\n      final database = openRequest.result as web.IDBDatabase;\n      if (change.oldVersion == 0) {\n        final files = database.createObjectStore(\n          _filesStore,\n          web.IDBObjectStoreParameters(autoIncrement: true),\n        );\n        files.createIndex(\n          _fileNameIndex,\n          _fileName.toJS,\n          web.IDBIndexParameters(unique: true),\n        );\n\n        database.createObjectStore(_blocksStore);\n      }\n    }.toJS;\n\n    final openFuture = openRequest.completeOrBlocked<web.IDBDatabase>();\n    completer.complete(openFuture);\n    _database = await completer.future;\n  }\n\n  void close() {\n    _database?.close();\n  }\n\n  Future<void> clear() {\n    final transaction = _database!.transaction(_storesJs, 'readwrite');\n\n    return Future.wait<void>([\n      for (final name in _stores)\n        transaction.objectStore(name).clear().complete(),\n    ]);\n  }\n\n  /// Loads all file paths and their ids.\n  Future<Map<String, int>> listFiles() async {\n    final transaction = _database!.transaction(_filesStore.toJS, 'readonly');\n    final result = <String, int>{};\n\n    final iterator = transaction\n        .objectStore(_filesStore)\n        .index(_fileNameIndex)\n        .openKeyCursor()\n        .cursorIterator();\n\n    while (await iterator.moveNext()) {\n      final row = iterator.current;\n\n      result[(row.key! as JSString).toDart] =\n          (row.primaryKey! as JSNumber).toDartInt;\n    }\n    return result;\n  }\n\n  Future<int?> fileIdForPath(String path) async {\n    final transaction = _database!.transaction(_filesStore.toJS, 'readonly');\n    final index = transaction.objectStore(_filesStore).index(_fileNameIndex);\n\n    return (await index.getKey(path.toJS).complete<JSNumber>()).toDartInt;\n  }\n\n  Future<int> createFile(String path) async {\n    final transaction = _database!.transaction(_filesStore.toJS, 'readwrite');\n    final store = transaction.objectStore(_filesStore);\n\n    final res = await store\n        .put(_FileEntry(name: path, length: 0))\n        .complete<JSNumber>();\n    return res.toDartInt;\n  }\n\n  Future<_FileEntry> _readFile(web.IDBTransaction transaction, int fileId) {\n    final files = transaction.objectStore(_filesStore);\n    return files.get(fileId.toJS).complete<_FileEntry?>().then((value) {\n      if (value == null) {\n        throw ArgumentError.value(\n          fileId,\n          'fileId',\n          'File not found in database',\n        );\n      } else {\n        return value;\n      }\n    });\n  }\n\n  Future<Uint8List> readFully(int fileId) async {\n    final transaction = _database!.transaction(_storesJs, 'readonly');\n    final blocks = transaction.objectStore(_blocksStore);\n\n    final file = await _readFile(transaction, fileId);\n    final result = Uint8List(file.length);\n\n    final readOperations = <Future<void>>[];\n\n    final reader = blocks\n        .openCursor(_rangeOverFile(fileId))\n        .cursorIterator<web.IDBCursorWithValue>();\n    while (await reader.moveNext()) {\n      final row = reader.current;\n      final key = (row.key as JSArray).toDart;\n      final rowOffset = (key[1] as JSNumber).toDartInt;\n      final length = min(_blockSize, file.length - rowOffset);\n\n      // We can't have an async suspension in here because that would close the\n      // transaction. Launch the reader now and wait for all reads later.\n      readOperations.add(\n        Future.sync(() async {\n          ByteBuffer data;\n          if (row.value.instanceOfString('Blob')) {\n            data = await (row.value as web.Blob).byteBuffer();\n          } else {\n            data = (row.value as JSArrayBuffer).toDart;\n          }\n          result.setAll(rowOffset, data.asUint8List(0, length));\n        }),\n      );\n    }\n    await Future.wait(readOperations);\n\n    return result;\n  }\n\n  Future<int> read(int fileId, int offset, Uint8List target) async {\n    final transaction = _database!.transaction(_storesJs, 'readonly');\n    final blocks = transaction.objectStore(_blocksStore);\n\n    final file = await _readFile(transaction, fileId);\n\n    final previousBlockStart = (offset ~/ _blockSize) * _blockSize;\n    final range = _rangeOverFile(fileId, startOffset: previousBlockStart);\n    var bytesRead = 0;\n\n    final readOperations = <Future<void>>[];\n\n    final iterator = blocks\n        .openCursor(range)\n        .cursorIterator<web.IDBCursorWithValue>();\n    while (await iterator.moveNext()) {\n      final row = iterator.current;\n\n      final key = (row.key as JSArray).toDart;\n      final rowOffset = (key[1] as JSNumber).toDartInt;\n      final value = row.value;\n      final isBlob = value.instanceOfString('Blob');\n      final valueSize = isBlob\n          ? (value as web.Blob).size\n          : (value as _JSArrayBuffer).byteLength;\n\n      final dataLength = min(valueSize, file.length - rowOffset);\n\n      if (rowOffset < offset) {\n        // This block starts before the section that we're interested in, so cut\n        // off the initial bytes.\n        final startInRow = offset - rowOffset;\n        final lengthToCopy = min(dataLength, target.length);\n        bytesRead += lengthToCopy;\n\n        // Do the reading async because we loose the transaction on the first\n        // suspension.\n        readOperations.add(\n          Future.sync(() async {\n            final data = isBlob\n                ? await (value as web.Blob).byteBuffer()\n                : (value as _JSArrayBuffer).toDart;\n\n            target.setRange(\n              0,\n              lengthToCopy,\n              data.asUint8List(startInRow, lengthToCopy),\n            );\n          }),\n        );\n\n        if (lengthToCopy >= target.length) {\n          break;\n        }\n      } else {\n        final startInTarget = rowOffset - offset;\n        final lengthToCopy = min(dataLength, target.length - startInTarget);\n        if (lengthToCopy < 0) {\n          // This row starts past the end of the section we're interested in.\n          break;\n        }\n\n        bytesRead += lengthToCopy;\n        readOperations.add(\n          Future.sync(() async {\n            final data = isBlob\n                ? await (value as web.Blob).byteBuffer()\n                : (value as _JSArrayBuffer).toDart;\n\n            target.setAll(startInTarget, data.asUint8List(0, lengthToCopy));\n          }),\n        );\n\n        if (lengthToCopy >= target.length - startInTarget) {\n          break;\n        }\n      }\n    }\n\n    await Future.wait(readOperations);\n    return bytesRead;\n  }\n\n  Future<void> _write(int fileId, _FileWriteRequest writes) async {\n    final transaction = _database!.transaction(_storesJs, 'readwrite');\n    final blocks = transaction.objectStore(_blocksStore);\n    final file = await _readFile(transaction, fileId);\n\n    Future<void> writeBlock(int blockStart, Uint8List block) async {\n      assert(block.length == _blockSize, 'Invalid block size');\n\n      // Check if we're overriding (parts of) an existing block\n      final cursor = await blocks\n          .openCursor(web.IDBKeyRange.only([fileId.toJS, blockStart.toJS].toJS))\n          .complete<web.IDBCursorWithValue?>();\n\n      final value = block.buffer.toJS;\n\n      if (cursor == null) {\n        // There isn't, let's write a new block\n        await blocks\n            .put(value, [fileId.toJS, blockStart.toJS].toJS)\n            .complete<JSAny?>();\n      } else {\n        await cursor.update(value).complete<JSAny?>();\n      }\n    }\n\n    final changedOffsets = writes.replacedBlocks.keys.toList()..sort();\n    await Future.wait(\n      changedOffsets.map(\n        (offset) => writeBlock(offset, writes.replacedBlocks[offset]!),\n      ),\n    );\n\n    if (writes.newFileLength != file.length) {\n      final files = transaction.objectStore(_filesStore);\n      final fileCursor = files.openCursor(fileId.toJS).cursorIterator();\n      await fileCursor.moveNext();\n      // Update the file length as recorded in the database\n      await fileCursor.current\n          .update(_FileEntry(name: file.name, length: writes.newFileLength))\n          .complete();\n    }\n  }\n\n  Future<void> truncate(int fileId, int length) async {\n    final transaction = _database!.transaction(_storesJs, 'readwrite');\n    final files = transaction.objectStore(_filesStore);\n    final blocks = transaction.objectStore(_blocksStore);\n\n    // First, let's find the size of the file\n    final file = await _readFile(transaction, fileId);\n    final fileLength = file.length;\n\n    if (fileLength > length) {\n      final lastBlock = (length ~/ _blockSize) * _blockSize;\n\n      // Delete all higher blocks\n      await blocks\n          .delete(_rangeOverFile(fileId, startOffset: lastBlock + 1))\n          .complete();\n    } else if (fileLength < length) {}\n\n    // Update the file length as recorded in the database\n    final fileCursor = files.openCursor(fileId.toJS).cursorIterator();\n    await fileCursor.moveNext();\n\n    await fileCursor.current\n        .update(_FileEntry(name: file.name, length: length))\n        .complete();\n  }\n\n  Future<void> deleteFile(int id) async {\n    final transaction = _database!.transaction(\n      [_filesStore.toJS, _blocksStore.toJS].toJS,\n      'readwrite',\n    );\n\n    final blocksRange = _rangeOverFile(\n      id,\n      startOffset: 0,\n      endOffsetInclusive: _maxFileSize,\n    );\n    await Future.wait<void>([\n      transaction.objectStore(_blocksStore).delete(blocksRange).complete(),\n      transaction.objectStore(_filesStore).delete(id.toJS).complete(),\n    ]);\n  }\n}\n\n/// An object that we store in IndexedDB to keep track of files.\n///\n/// Using a `@JS` is easier than dealing with JavaScript objects exported as\n/// maps.\n@JS()\nextension type _FileEntry._(JSObject _) implements JSObject {\n  external String get name;\n  external int get length;\n\n  external factory _FileEntry({required String name, required int length});\n}\n\nclass _FileWriteRequest {\n  static const _blockLength = AsynchronousIndexedDbFileSystem._blockSize;\n\n  final Uint8List originalContent;\n  final Map<int, Uint8List> replacedBlocks = {};\n  int newFileLength;\n\n  _FileWriteRequest(this.originalContent)\n    : newFileLength = originalContent.length;\n\n  void _updateBlock(int blockOffset, int offsetInBlock, Uint8List data) {\n    final block = replacedBlocks.putIfAbsent(blockOffset, () {\n      final block = Uint8List(_blockLength);\n\n      if (originalContent.length > blockOffset) {\n        block.setAll(\n          0,\n          originalContent.buffer.asUint8List(\n            originalContent.offsetInBytes + blockOffset,\n            min(_blockLength, originalContent.length - blockOffset),\n          ),\n        );\n      }\n\n      return block;\n    });\n\n    block.setAll(offsetInBlock, data);\n  }\n\n  void addWrite(int offset, Uint8List data) {\n    var offsetInData = 0;\n    while (offsetInData < data.length) {\n      final offsetInFile = offset + offsetInData;\n      final blockStart = offsetInFile ~/ _blockLength * _blockLength;\n\n      int offsetInBlock, bytesToWrite;\n\n      if (offsetInFile % _blockLength != 0) {\n        // Write to block boundary\n        offsetInBlock = offsetInFile % _blockLength;\n        bytesToWrite = min(\n          _blockLength - offsetInBlock,\n          data.length - offsetInData,\n        );\n      } else {\n        // Write full block if possible\n        bytesToWrite = min(_blockLength, data.length - offsetInData);\n        offsetInBlock = 0;\n      }\n\n      final chunk = data.buffer.asUint8List(\n        data.offsetInBytes + offsetInData,\n        bytesToWrite,\n      );\n      offsetInData += bytesToWrite;\n\n      _updateBlock(blockStart, offsetInBlock, chunk);\n    }\n\n    newFileLength = max(newFileLength, offset + data.length);\n  }\n}\n\nclass _OffsetAndBuffer {\n  final int offset;\n  final Uint8List buffer;\n\n  _OffsetAndBuffer(this.offset, this.buffer);\n}\n\n/// A file system storing files divided into blocks in an IndexedDB database.\n///\n/// As sqlite3's file system is synchronous and IndexedDB isn't, no guarantees\n/// on durability can be made. Instead, file changes are written at some point\n/// after the database is changed. However you can wait for changes manually\n/// with [flush]\n///\n/// In the future, we may want to store individual blocks instead.\n///\n/// {@category wasm}\n\nfinal class IndexedDbFileSystem extends BaseVirtualFileSystem {\n  final AsynchronousIndexedDbFileSystem _asynchronous;\n\n  var _isClosing = false;\n  _IndexedDbWorkItem? _currentWorkItem;\n\n  // A cache so that synchronous changes are visible right away\n  final InMemoryFileSystem _memory;\n  final LinkedList<_IndexedDbWorkItem> _pendingWork = LinkedList();\n\n  final Set<String> _inMemoryOnlyFiles = {};\n  final Map<String, int> _knownFileIds = {};\n\n  IndexedDbFileSystem._(\n    String dbName, {\n    String vfsName = 'indexeddb',\n    super.random,\n  }) : _asynchronous = AsynchronousIndexedDbFileSystem(dbName),\n       _memory = InMemoryFileSystem(random: random),\n       super(name: vfsName);\n\n  /// Loads an IndexedDB file system identified by the [dbName].\n  ///\n  /// Each file system with a different name will store an independent file\n  /// system.\n  static Future<IndexedDbFileSystem> open({\n    required String dbName,\n    String vfsName = 'indexeddb',\n    Random? random,\n  }) async {\n    final fs = IndexedDbFileSystem._(dbName, vfsName: vfsName, random: random);\n    await fs._asynchronous.open();\n    await fs._readFiles();\n    return fs;\n  }\n\n  /// Returns all IndexedDB database names accessible from the current context.\n  ///\n  /// This may return `null` if `IDBFactory.databases()` is not supported by the\n  /// current browser.\n  static Future<List<String>?> databases() async {\n    return (await indexedDB!.databases().toDart).toDart\n        .map((e) => e.name)\n        .toList();\n  }\n\n  /// Deletes an IndexedDB database.\n  static Future<void> deleteDatabase([\n    String dbName = 'sqlite3_databases',\n  ]) async {\n    // A bug in Dart SDK can cause deadlock here. Timeout added as workaround\n    // https://github.com/dart-lang/sdk/issues/48854\n    await indexedDB!\n        .deleteDatabase(dbName)\n        .completeOrBlocked()\n        .timeout(\n          const Duration(milliseconds: 1000),\n          onTimeout: () => throw VfsException(1),\n        );\n  }\n\n  /// Whether this file system is closing or closed.\n  ///\n  /// To await a full close operation, call and await [close].\n  bool get isClosed => _isClosing || _asynchronous._isClosed;\n\n  Future<void> _submitWork(_IndexedDbWorkItem work) {\n    _checkClosed();\n\n    // See if this unit of work can be combined with scheduled work units.\n    if (work.insertInto(_pendingWork)) {\n      _startWorkingIfNeeded();\n      return work.completer.future;\n    } else {\n      // This item determined that it doesn't need to do any work at its place\n      // in the queue, so just skip it.\n      return Future.value();\n    }\n  }\n\n  Future<void> _submitWorkFunction(\n    FutureOr<void> Function() work,\n    String description,\n  ) {\n    return _submitWork(_FunctionWorkItem(work, description));\n  }\n\n  void _startWorkingIfNeeded() {\n    if (_currentWorkItem == null && _pendingWork.isNotEmpty) {\n      final item = _currentWorkItem = _pendingWork.first;\n      _pendingWork.remove(item);\n\n      final workUnit = Future(item.run).whenComplete(() {\n        _currentWorkItem = null;\n\n        // In case there's another item in the waiting list\n        _startWorkingIfNeeded();\n      });\n      item.completer.complete(workUnit);\n    }\n  }\n\n  Future<void> close() async {\n    if (!_isClosing) {\n      final result = _submitWorkFunction(_asynchronous.close, 'close');\n      _isClosing = true;\n      return result;\n    } else if (_pendingWork.isNotEmpty) {\n      // Already closing, await all pending operations then.\n      final op = _pendingWork.last;\n      return op.completer.future;\n    }\n  }\n\n  void _checkClosed() {\n    if (isClosed) {\n      throw VfsException(SqlError.SQLITE_IOERR);\n    }\n  }\n\n  Future<int> _fileId(String path) async {\n    if (_knownFileIds.containsKey(path)) {\n      return _knownFileIds[path]!;\n    } else {\n      return _knownFileIds[path] = (await _asynchronous.fileIdForPath(path))!;\n    }\n  }\n\n  Future<void> _readFiles() async {\n    final rawFiles = await _asynchronous.listFiles();\n    _knownFileIds.addAll(rawFiles);\n\n    for (final entry in rawFiles.entries) {\n      final name = entry.key;\n      final fileId = entry.value;\n\n      final buffer = Uint8Buffer();\n      final data = await _asynchronous.readFully(fileId);\n      buffer.length = data.length;\n      buffer.setRange(0, data.length, data);\n\n      _memory.fileData[name] = buffer;\n    }\n  }\n\n  /// Waits for all pending operations to finish, then completes the future.\n  ///\n  /// Each call to [flush] will await pending operations made _before_ the call.\n  /// Operations started after this [flush] call will not be awaited by the\n  /// returned future.\n  Future<void> flush() {\n    return _submitWorkFunction(() {}, 'flush');\n  }\n\n  @override\n  int xAccess(String path, int flags) => _memory.xAccess(path, flags);\n\n  @override\n  void xDelete(String path, int syncDir) {\n    _memory.xDelete(path, syncDir);\n\n    if (!_inMemoryOnlyFiles.remove(path)) {\n      _submitWork(_DeleteFileWorkItem(this, path));\n    }\n  }\n\n  @override\n  String xFullPathName(String path) => _memory.xFullPathName(path);\n\n  @override\n  XOpenResult xOpen(Sqlite3Filename path, int flags) {\n    final pathStr = path.path ?? random.randomFileName(prefix: '/');\n    final existedBefore = _memory.xAccess(pathStr, 0) != 0;\n\n    final inMemoryFile = _memory.xOpen(Sqlite3Filename(pathStr), flags);\n    final deleteOnClose = (flags & SqlFlag.SQLITE_OPEN_DELETEONCLOSE) != 0;\n\n    if (!existedBefore) {\n      if (deleteOnClose) {\n        // No point in persisting this file, it doesn't exist and won't exist\n        // after we're done.\n        _inMemoryOnlyFiles.add(pathStr);\n      } else {\n        _submitWork(_CreateFileWorkItem(this, pathStr));\n      }\n    }\n\n    return (\n      outFlags: 0,\n      file: _IndexedDbFile(this, inMemoryFile.file, pathStr),\n    );\n  }\n\n  @override\n  void xSleep(Duration duration) {\n    // noop\n  }\n}\n\nclass _IndexedDbFile implements VirtualFileSystemFile {\n  final IndexedDbFileSystem vfs;\n  final VirtualFileSystemFile memoryFile;\n  final String path;\n\n  _IndexedDbFile(this.vfs, this.memoryFile, this.path);\n\n  @override\n  void xRead(Uint8List target, int fileOffset) {\n    memoryFile.xRead(target, fileOffset);\n  }\n\n  @override\n  int get xDeviceCharacteristics => 0;\n\n  @override\n  int xCheckReservedLock() => memoryFile.xCheckReservedLock();\n\n  @override\n  void xClose() {}\n\n  @override\n  int xFileSize() => memoryFile.xFileSize();\n\n  @override\n  void xLock(int mode) => memoryFile.xLock(mode);\n\n  @override\n  void xSync(int flags) {\n    // We can't wait for a sync either way, so this just has to be a noop\n  }\n\n  @override\n  void xTruncate(int size) {\n    vfs._checkClosed();\n    memoryFile.xTruncate(size);\n\n    if (!vfs._inMemoryOnlyFiles.contains(path)) {\n      vfs._submitWorkFunction(\n        () async => vfs._asynchronous.truncate(await vfs._fileId(path), size),\n        'truncate $path',\n      );\n    }\n  }\n\n  @override\n  void xUnlock(int mode) => memoryFile.xUnlock(mode);\n\n  @override\n  void xWrite(Uint8List buffer, int fileOffset) {\n    vfs._checkClosed();\n\n    if (vfs._inMemoryOnlyFiles.contains(path)) {\n      // There's nothing to persist, so we just forward the write to the in-\n      // memory buffer.\n      memoryFile.xWrite(buffer, fileOffset);\n      return;\n    }\n\n    final previousContent = vfs._memory.fileData[path] ?? Uint8Buffer();\n    final previousList = previousContent.buffer.asUint8List(\n      0,\n      previousContent.length,\n    );\n    memoryFile.xWrite(buffer, fileOffset);\n\n    // We need to copy the buffer for the write because it will become invalid\n    // after this synchronous method returns.\n    final copy = Uint8List(buffer.length)..setAll(0, buffer);\n\n    vfs._submitWork(\n      _WriteFileWorkItem(vfs, path, previousList)\n        ..writes.add(_OffsetAndBuffer(fileOffset, copy)),\n    );\n  }\n}\n\nsealed class _IndexedDbWorkItem extends LinkedListEntry<_IndexedDbWorkItem> {\n  final Completer<void> completer = Completer.sync();\n\n  /// Insert this item into the [pending] list, returning whether the item was\n  /// actually added.\n  ///\n  /// Some items may want to look at the current state of the work queue for\n  /// optimization purposes. For instance:\n  ///\n  ///  - if two writes to the same file are scheduled, they can be merged into\n  ///    a single transaction for efficiency.\n  ///  - if a file creation or writes are followed by inserting a delete request\n  ///    to the same file, previous items can be deleted from the queue.\n  bool insertInto(LinkedList<_IndexedDbWorkItem> pending) {\n    pending.add(this);\n    return true;\n  }\n\n  FutureOr<void> run();\n}\n\nfinal class _FunctionWorkItem extends _IndexedDbWorkItem {\n  final FutureOr<void> Function() work;\n  final String description;\n\n  _FunctionWorkItem(this.work, this.description);\n\n  @override\n  FutureOr<void> run() => work();\n}\n\nfinal class _DeleteFileWorkItem extends _IndexedDbWorkItem {\n  final IndexedDbFileSystem fileSystem;\n  final String path;\n\n  _DeleteFileWorkItem(this.fileSystem, this.path);\n\n  @override\n  bool insertInto(LinkedList<_IndexedDbWorkItem> pending) {\n    if (pending.isNotEmpty) {\n      // Check queue from back to front and see if this delete can be merged\n      // into an existing operation or if it cancels out a creation operation\n      // that is pending.\n      _IndexedDbWorkItem? current = pending.last;\n\n      while (current != null) {\n        if (current is _DeleteFileWorkItem) {\n          // If there already is a pending \"delete\" request available, we don't\n          // have to run a new one.\n          if (current.path == path) {\n            // File is already getting deleted, no need to do that again.\n            return false;\n          } else {\n            // Unrelated delete request, look further\n            current = current.previous;\n          }\n        } else if (current is _WriteFileWorkItem) {\n          final previous = current.previous;\n          if (current.path == path) {\n            // There's a pending write to a file that we're deleting now, that\n            // can be unscheduled now.\n            current.unlink();\n          }\n\n          current = previous;\n        } else if (current is _CreateFileWorkItem) {\n          if (current.path == path) {\n            // The creation of this file is pending. Since we're now enqueuing\n            // its deletion, those two just cancel each other out.\n            current.unlink();\n            return false;\n          }\n\n          current = current.previous;\n        } else {\n          // Can't simplify further, we don't know what this general item is\n          // doing.\n          break;\n        }\n      }\n    }\n\n    pending.add(this);\n    return true;\n  }\n\n  @override\n  Future<void> run() async {\n    final id = await fileSystem._fileId(path);\n    fileSystem._knownFileIds.remove(path);\n    await fileSystem._asynchronous.deleteFile(id);\n  }\n}\n\nfinal class _CreateFileWorkItem extends _IndexedDbWorkItem {\n  final IndexedDbFileSystem fileSystem;\n  final String path;\n\n  _CreateFileWorkItem(this.fileSystem, this.path);\n\n  @override\n  Future<void> run() async {\n    final id = await fileSystem._asynchronous.createFile(path);\n    fileSystem._knownFileIds[path] = id;\n  }\n}\n\nfinal class _WriteFileWorkItem extends _IndexedDbWorkItem {\n  final IndexedDbFileSystem fileSystem;\n  final String path;\n\n  final Uint8List originalContent;\n  final List<_OffsetAndBuffer> writes = [];\n\n  _WriteFileWorkItem(this.fileSystem, this.path, this.originalContent);\n\n  @override\n  bool insertInto(LinkedList<_IndexedDbWorkItem> pending) {\n    var current = pending.isEmpty ? null : pending.last;\n\n    while (current != null) {\n      if (current is _WriteFileWorkItem) {\n        if (current.path == path) {\n          // Merge the two pending writes into one transaction.\n          current.writes.addAll(writes);\n          return false;\n        } else {\n          current = current.previous;\n        }\n      } else if (current is _CreateFileWorkItem) {\n        if (current.path == path) {\n          // Don't look further than the item that created this file, who knows\n          // what happened before that.\n          break;\n        }\n\n        current = current.previous;\n      } else {\n        break;\n      }\n    }\n\n    pending.add(this);\n    return true;\n  }\n\n  @override\n  Future<void> run() async {\n    final request = _FileWriteRequest(originalContent);\n\n    for (final write in writes) {\n      request.addWrite(write.offset, write.buffer);\n    }\n\n    await fileSystem._asynchronous._write(\n      await fileSystem._fileId(path),\n      request,\n    );\n  }\n}\n\n@JS('ArrayBuffer')\nextension type _JSArrayBuffer(JSArrayBuffer _) implements JSArrayBuffer {\n  external int get byteLength;\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/vfs/simple_opfs.dart",
    "content": "import 'dart:js_interop';\nimport 'dart:typed_data';\n\nimport 'package:meta/meta.dart';\nimport 'package:path/path.dart' as p;\nimport 'package:web/web.dart'\n    show\n        FileSystemDirectoryHandle,\n        FileSystemSyncAccessHandle,\n        FileSystemReadWriteOptions,\n        FileSystemRemoveOptions,\n        DOMException;\n\nimport '../../constants.dart';\nimport '../../vfs.dart';\nimport '../js_interop.dart';\nimport '../../in_memory_vfs.dart';\n\n@internal\nenum FileType {\n  database('/database'),\n  journal('/database-journal');\n\n  final String filePath;\n\n  const FileType(this.filePath);\n\n  static final byName = {for (final entry in values) entry.filePath: entry};\n}\n\n/// A [VirtualFileSystem] for the `sqlite3` wasm library based on the [file system access API].\n///\n/// By design, this file system can only store two files: `/database` and\n/// `/database-journal`. Thus, when this file system is used, the only sqlite3\n/// database that will be persisted properly is the one at `/database`.\n///\n/// The limitation of only being able to store two files comes from the fact\n/// that we can't synchronously _open_ files in with the file system access API,\n/// only reads and writes are synchronous.\n/// By having a known amount of files to store, we can open both files (done in\n/// [SimpleOpfsFileSystem.inDirectory] or [SimpleOpfsFileSystem.loadFromStorage]),\n/// which is asynchronous too. The actual file system work, which needs to be\n/// synchronous for sqlite3 to function, does not need any further wrapper.\n///\n/// Please note that [SimpleOpfsFileSystem]s are only available in dedicated web workers,\n/// not in the JavaScript context for a tab or a shared web worker.\n///\n/// [file system access API]: https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API\n///\n/// {@category wasm}\nfinal class SimpleOpfsFileSystem extends BaseVirtualFileSystem {\n  // The storage idea here is to open sync file handles at the beginning, so\n  // that no new async open needs to happen when these callbacks are invoked by\n  // sqlite3.\n  // We open a sync file for each stored file ([FileType]), plus a meta file\n  // file handle that describes whether files exist or not. Handles for stored\n  // files just store the raw data directly. The meta file is a 2-byte file\n  // storing whether the database or the journal file exists. By storing this\n  // information in a secondary file, we avoid the problem of having to query\n  // the FileSystem Access API to check whether a file exists, which can only be\n  // done asynchronously.\n\n  final FileSystemSyncAccessHandle _metaHandle;\n  final Uint8List _existsList = Uint8List(FileType.values.length);\n\n  final Map<FileType, FileSystemSyncAccessHandle> _files;\n  final InMemoryFileSystem _memory = InMemoryFileSystem();\n\n  SimpleOpfsFileSystem._(\n    this._metaHandle,\n    this._files, {\n    String vfsName = 'simple-opfs',\n  }) : super(name: vfsName);\n\n  static Future<(FileSystemDirectoryHandle?, FileSystemDirectoryHandle)>\n  _resolveDir(String path, {bool create = true}) async {\n    final storage = storageManager;\n    if (storage == null) {\n      throw VfsException(SqlError.SQLITE_ERROR);\n    }\n\n    FileSystemDirectoryHandle? parent;\n    var opfsDirectory = await storage.directory;\n\n    for (final segment in p.split(path)) {\n      parent = opfsDirectory;\n      opfsDirectory = await opfsDirectory.getDirectory(segment, create: create);\n    }\n\n    return (parent, opfsDirectory);\n  }\n\n  /// Loads an [SimpleOpfsFileSystem] in the desired [path] under the root directory\n  /// for OPFS as given by `navigator.storage.getDirectory()` in JavaScript.\n  ///\n  /// Throws a [VfsException] if OPFS is not available - please note that\n  /// this file system implementation requires a recent browser and only works\n  /// in dedicated web workers.\n  ///\n  /// When [readWriteUnsafe] is passed, the synchronous file handles are opened\n  /// using the [proposed lock mode](https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md).\n  /// This mode is currently not supported across browsers, but can be used on\n  /// Chrome for faster database access across tabs.\n  static Future<SimpleOpfsFileSystem> loadFromStorage(\n    String path, {\n    String vfsName = 'simple-opfs',\n    bool readWriteUnsafe = false,\n  }) async {\n    final storage = storageManager;\n    if (storage == null) {\n      throw VfsException(SqlError.SQLITE_ERROR);\n    }\n\n    final (_, directory) = await _resolveDir(path);\n    return inDirectory(\n      directory,\n      vfsName: vfsName,\n      readWriteUnsafe: readWriteUnsafe,\n    );\n  }\n\n  /// Deletes the file system directory handle that would store sqlite3\n  /// databases when using [loadFromStorage] with the same path.\n  static Future<void> deleteFromStorage(String path) async {\n    final FileSystemDirectoryHandle? parent;\n    final FileSystemDirectoryHandle handle;\n\n    try {\n      (parent, handle) = await _resolveDir(path, create: false);\n    } on DOMException catch (e) {\n      if (e.name == 'NotFoundError' || e.name == 'TypeMismatchError') {\n        // Directory doesn't exist, ignore.\n        return;\n      } else {\n        rethrow;\n      }\n    }\n\n    if (parent != null) {\n      await parent\n          .removeEntry(handle.name, FileSystemRemoveOptions(recursive: true))\n          .toDart;\n    }\n  }\n\n  /// Loads an [SimpleOpfsFileSystem] in the desired [root] directory, which must be\n  /// a Dart wrapper around a [FileSystemDirectoryHandle].\n  ///\n  /// When [readWriteUnsafe] is passed, the synchronous file handles are opened\n  /// using the [proposed lock mode](https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md).\n  /// This mode is currently not supported across browsers, but can be used on\n  /// Chrome for faster database access across tabs.\n  ///\n  /// [FileSystemDirectoryHandle]: https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryHandle\n  static Future<SimpleOpfsFileSystem> inDirectory(\n    FileSystemDirectoryHandle root, {\n    String vfsName = 'simple-opfs',\n    bool readWriteUnsafe = false,\n  }) async {\n    Future<FileSystemSyncAccessHandle> open(String name) async {\n      final handle = await root.openFile(name, create: true);\n\n      final syncHandlePromise = readWriteUnsafe\n          ? ProposedLockingSchemeApi(handle).createSyncAccessHandle(\n              FileSystemCreateSyncAccessHandleOptions.unsafeReadWrite(),\n            )\n          : handle.createSyncAccessHandle();\n\n      return await syncHandlePromise.toDart;\n    }\n\n    final meta = await open('meta');\n    meta.truncate(2);\n    final files = {\n      for (final type in FileType.values) type: await open(type.name),\n    };\n\n    return SimpleOpfsFileSystem._(meta, files, vfsName: vfsName);\n  }\n\n  void _markExists(FileType type, bool exists) {\n    _existsList[type.index] = exists ? 1 : 0;\n    _metaHandle.writeDart(_existsList, FileSystemReadWriteOptions(at: 0));\n  }\n\n  FileType? _recognizeType(String path) {\n    return FileType.byName[path];\n  }\n\n  @override\n  int xAccess(String path, int flags) {\n    final type = _recognizeType(path);\n    if (type == null) {\n      return _memory.xAccess(path, flags);\n    } else {\n      _metaHandle.readDart(_existsList, FileSystemReadWriteOptions(at: 0));\n      return _existsList[type.index];\n    }\n  }\n\n  @override\n  void xDelete(String path, int syncDir) {\n    final type = _recognizeType(path);\n    if (type == null) {\n      return _memory.xDelete(path, syncDir);\n    } else {\n      _markExists(type, false);\n    }\n  }\n\n  @override\n  String xFullPathName(String path) {\n    return p.url.normalize('/$path');\n  }\n\n  @override\n  XOpenResult xOpen(Sqlite3Filename path, int flags) {\n    final pathStr = path.path;\n    if (pathStr == null) return _memory.xOpen(path, flags);\n\n    final recognized = _recognizeType(pathStr);\n    if (recognized == null) return _memory.xOpen(path, flags);\n\n    final create = (flags & SqlFlag.SQLITE_OPEN_CREATE) != 0;\n    final deleteOnClose = (flags & SqlFlag.SQLITE_OPEN_DELETEONCLOSE) != 0;\n\n    _metaHandle.readDart(_existsList, FileSystemReadWriteOptions(at: 0));\n    final existsAlready = _existsList[recognized.index] != 0;\n\n    final syncHandle = _files[recognized]!;\n\n    if (!existsAlready) {\n      if (create) {\n        syncHandle.truncate(0);\n        _markExists(recognized, true);\n      } else {\n        throw const VfsException(SqlError.SQLITE_CANTOPEN);\n      }\n    }\n\n    return (\n      outFlags: 0,\n      file: _SimpleOpfsFile(this, recognized, syncHandle, deleteOnClose),\n    );\n  }\n\n  @override\n  void xSleep(Duration duration) {}\n\n  /// Closes the synchronous access handles kept open while this file system is\n  /// active.\n  void close() {\n    _metaHandle.close();\n    for (final file in _files.values) {\n      file.close();\n    }\n  }\n}\n\nclass _SimpleOpfsFile extends BaseVfsFile {\n  final SimpleOpfsFileSystem vfs;\n  final FileType type;\n  final FileSystemSyncAccessHandle syncHandle;\n  final bool deleteOnClose;\n\n  var _lockMode = SqlFileLockingLevels.SQLITE_LOCK_NONE;\n\n  _SimpleOpfsFile(this.vfs, this.type, this.syncHandle, this.deleteOnClose);\n\n  @override\n  int readInto(Uint8List buffer, int offset) {\n    return syncHandle.readDart(buffer, FileSystemReadWriteOptions(at: offset));\n  }\n\n  @override\n  int xCheckReservedLock() {\n    return _lockMode >= SqlFileLockingLevels.SQLITE_LOCK_RESERVED ? 1 : 0;\n  }\n\n  @override\n  void xClose() {\n    syncHandle.flush();\n\n    if (deleteOnClose) {\n      vfs._markExists(type, false);\n    }\n  }\n\n  @override\n  int xFileSize() {\n    return syncHandle.getSize();\n  }\n\n  @override\n  void xLock(int mode) {\n    _lockMode = mode;\n  }\n\n  @override\n  void xSync(int flags) {\n    syncHandle.flush();\n  }\n\n  @override\n  void xTruncate(int size) {\n    syncHandle.truncate(size);\n  }\n\n  @override\n  void xUnlock(int mode) {\n    _lockMode = mode;\n  }\n\n  @override\n  void xWrite(Uint8List buffer, int fileOffset) {\n    final bytesWritten = syncHandle.writeDart(\n      buffer,\n      FileSystemReadWriteOptions(at: fileOffset),\n    );\n\n    if (bytesWritten < buffer.length) {\n      throw const VfsException(SqlExtendedError.SQLITE_IOERR_WRITE);\n    }\n  }\n}\n"
  },
  {
    "path": "sqlite3/lib/src/wasm/wasm_interop.dart",
    "content": "import 'dart:convert';\nimport 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\nimport 'dart:typed_data';\n\nimport 'package:web/web.dart';\n\nimport '../implementation/bindings.dart';\nimport 'injected_values.dart';\nimport 'js_interop.dart';\n\nimport 'sqlite3_wasm.g.dart';\n\n// ignore_for_file: non_constant_identifier_names\n\nclass WasmBindings {\n  // We're compiling to 32bit wasm\n  static const pointerSize = 4;\n\n  final Instance instance;\n  final Memory memory;\n\n  final DartBridgeCallbacks callbacks;\n  final SqliteExports sqlite3;\n\n  // Finalizers are deliberately referenced from this instance only - if the\n  // entire instance and module is GCed, we don't need to manually invoke\n  // finalizers anymore.\n  Finalizer<Pointer>? changesetFinalizer,\n      sessionFinalizer,\n      databaseFinalizer,\n      statementFinalizer;\n\n  WasmBindings(this.instance, this.callbacks)\n    : memory = callbacks.memory = _exportedMemory(instance),\n      sqlite3 = SqliteExports(instance.exports) {\n    callbacks.bindings = this;\n\n    changesetFinalizer = Finalizer((p) => sqlite3.sqlite3changeset_finalize(p));\n    sessionFinalizer = Finalizer((p) => sqlite3.sqlite3session_delete(p));\n    databaseFinalizer = Finalizer((p) => sqlite3.sqlite3_close_v2(p));\n    statementFinalizer = Finalizer((p) => sqlite3.sqlite3_finalize(p));\n  }\n\n  Pointer allocateBytes(List<int> bytes, {int additionalLength = 0}) {\n    final ptr = malloc(bytes.length + additionalLength);\n    memory.asBytes\n      ..setRange(ptr, ptr + bytes.length, bytes)\n      ..fillRange(ptr + bytes.length, ptr + bytes.length + additionalLength, 0);\n\n    return ptr;\n  }\n\n  Pointer allocateZeroTerminated(String string) {\n    return allocateBytes(utf8.encode(string), additionalLength: 1);\n  }\n\n  Pointer malloc(int size) {\n    return sqlite3.dart_sqlite3_malloc(size);\n  }\n\n  void free(Pointer pointer) {\n    sqlite3.dart_sqlite3_free(pointer);\n  }\n\n  void sqlite3_free(Pointer ptr) => sqlite3.sqlite3_free(ptr);\n\n  int sqlite3_initialize() => sqlite3.sqlite3_initialize();\n\n  int create_window_function(\n    Pointer db,\n    Pointer functionName,\n    int nArg,\n    int eTextRep,\n    RegisteredFunctionSet set,\n  ) {\n    return sqlite3.dart_sqlite3_create_window_function(\n      db,\n      functionName,\n      nArg,\n      eTextRep,\n      set.toExternalReference,\n    );\n  }\n\n  int sqlite3_vfs_unregister(Pointer vfs) {\n    return sqlite3.dart_sqlite3_unregister_vfs(vfs);\n  }\n\n  int sqlite3_libversion() => sqlite3.sqlite3_libversion();\n\n  Pointer sqlite3_sourceid() => sqlite3.sqlite3_sourceid();\n\n  int sqlite3_libversion_number() => sqlite3.sqlite3_libversion_number();\n\n  int sqlite3_open_v2(Pointer filename, Pointer ppDb, int flags, Pointer zVfs) {\n    return sqlite3.sqlite3_open_v2(filename, ppDb, flags, zVfs);\n  }\n\n  int sqlite3_close_v2(Pointer db) => sqlite3.sqlite3_close_v2(db);\n\n  int sqlite3_extended_errcode(Pointer db) =>\n      sqlite3.sqlite3_extended_errcode(db);\n\n  Pointer sqlite3_errmsg(Pointer db) => sqlite3.sqlite3_errmsg(db);\n\n  Pointer sqlite3_errstr(int resultCode) => sqlite3.sqlite3_errstr(resultCode);\n\n  int sqlite3_error_offset(Pointer db) {\n    return sqlite3.sqlite3_error_offset(db);\n  }\n\n  int sqlite3_extended_result_codes(Pointer db, int onoff) {\n    return sqlite3.sqlite3_extended_result_codes(db, onoff);\n  }\n\n  /// Pass a non-negative [id] to enable update tracking on the db, a negative\n  /// one to stop it.\n  void dart_sqlite3_updates(Pointer db, RawUpdateHook? hook) {\n    return sqlite3.dart_sqlite3_updates(db, hook?.toExternalReference);\n  }\n\n  void dart_sqlite3_commits(Pointer db, RawCommitHook? hook) {\n    return sqlite3.dart_sqlite3_commits(db, hook?.toExternalReference);\n  }\n\n  void dart_sqlite3_rollbacks(Pointer db, RawRollbackHook? rollback) {\n    return sqlite3.dart_sqlite3_rollbacks(db, rollback?.toExternalReference);\n  }\n\n  int sqlite3_exec(\n    Pointer db,\n    Pointer sql,\n    Pointer callback,\n    Pointer callbackArg,\n    Pointer errorOut,\n  ) {\n    return sqlite3.sqlite3_exec(db, sql, callback, callbackArg, errorOut);\n  }\n\n  int sqlite3_prepare_v3(\n    Pointer db,\n    Pointer sql,\n    int length,\n    int prepFlags,\n    Pointer ppStmt,\n    Pointer pzTail,\n  ) {\n    return sqlite3.sqlite3_prepare_v3(\n      db,\n      sql,\n      length,\n      prepFlags,\n      ppStmt,\n      pzTail,\n    );\n  }\n\n  int sqlite3_bind_parameter_count(Pointer stmt) {\n    return sqlite3.sqlite3_bind_parameter_count(stmt);\n  }\n\n  int sqlite3_bind_null(Pointer stmt, int index) {\n    return sqlite3.sqlite3_bind_null(stmt, index);\n  }\n\n  int sqlite3_bind_int64(Pointer stmt, int index, BigInt value) {\n    return sqlite3.sqlite3_bind_int64(\n      stmt,\n      index,\n      JsBigInt.fromBigInt(value).jsObject,\n    );\n  }\n\n  int sqlite3_bind_int(Pointer stmt, int index, int value) {\n    return sqlite3.sqlite3_bind_int64(\n      stmt,\n      index,\n      JsBigInt.fromInt(value).jsObject,\n    );\n  }\n\n  int sqlite3_bind_double(Pointer stmt, int index, double value) {\n    return sqlite3.sqlite3_bind_double(stmt, index, value);\n  }\n\n  /// Calls `sqlite3_bind_text` with `free` as the destructor argument.\n  int sqlite3_bind_text_finalizerFree(\n    Pointer stmt,\n    int index,\n    Pointer text,\n    int length,\n  ) {\n    return sqlite3.dart_sqlite3_bind_text(stmt, index, text, length);\n  }\n\n  /// Calls `sqlite3_bind_blob` with `free` as the destructor argument.\n  int sqlite3_bind_blob_finalizerFree(\n    Pointer stmt,\n    int index,\n    Pointer test,\n    int length,\n  ) {\n    return sqlite3.dart_sqlite3_bind_blob(stmt, index, test, length);\n  }\n\n  int sqlite3_bind_parameter_index(Pointer statement, Pointer key) {\n    return sqlite3.sqlite3_bind_parameter_index(statement, key);\n  }\n\n  int sqlite3_column_count(Pointer stmt) {\n    return sqlite3.sqlite3_column_count(stmt);\n  }\n\n  Pointer sqlite3_column_name(Pointer stmt, int index) {\n    return sqlite3.sqlite3_column_name(stmt, index);\n  }\n\n  int sqlite3_column_type(Pointer stmt, int index) {\n    return sqlite3.sqlite3_column_type(stmt, index);\n  }\n\n  JsBigInt sqlite3_column_int64(Pointer stmt, int index) {\n    return JsBigInt(sqlite3.sqlite3_column_int64(stmt, index));\n  }\n\n  double sqlite3_column_double(Pointer stmt, int index) {\n    return sqlite3.sqlite3_column_double(stmt, index);\n  }\n\n  int sqlite3_column_bytes(Pointer stmt, int index) {\n    return sqlite3.sqlite3_column_bytes(stmt, index);\n  }\n\n  Pointer sqlite3_column_text(Pointer stmt, int index) {\n    return sqlite3.sqlite3_column_text(stmt, index);\n  }\n\n  Pointer sqlite3_column_blob(Pointer stmt, int index) {\n    return sqlite3.sqlite3_column_blob(stmt, index);\n  }\n\n  int sqlite3_value_type(Pointer value) {\n    return sqlite3.sqlite3_value_type(value);\n  }\n\n  int sqlite3_value_subtype(Pointer value) {\n    return sqlite3.sqlite3_value_subtype(value);\n  }\n\n  JsBigInt sqlite3_value_int64(Pointer value) {\n    return JsBigInt(sqlite3.sqlite3_value_int64(value));\n  }\n\n  double sqlite3_value_double(Pointer value) {\n    return sqlite3.sqlite3_value_double(value);\n  }\n\n  int sqlite3_value_bytes(Pointer value) {\n    return sqlite3.sqlite3_value_bytes(value);\n  }\n\n  Pointer sqlite3_value_text(Pointer value) {\n    return sqlite3.sqlite3_value_text(value);\n  }\n\n  Pointer sqlite3_value_blob(Pointer value) {\n    return sqlite3.sqlite3_value_blob(value);\n  }\n\n  void sqlite3_result_null(Pointer context) {\n    sqlite3.sqlite3_result_null(context);\n  }\n\n  void sqlite3_result_int64(Pointer context, BigInt value) {\n    sqlite3.sqlite3_result_int64(context, JsBigInt.fromBigInt(value).jsObject);\n  }\n\n  void sqlite3_result_double(Pointer context, double value) {\n    sqlite3.sqlite3_result_double(context, value);\n  }\n\n  void sqlite3_result_text(\n    Pointer context,\n    Pointer text,\n    int length,\n    Pointer a,\n  ) {\n    sqlite3.sqlite3_result_text(context, text, length, a);\n  }\n\n  void sqlite3_result_blob64(\n    Pointer context,\n    Pointer blob,\n    int length,\n    Pointer a,\n  ) {\n    sqlite3.sqlite3_result_blob64(context, blob, JsBigInt.fromInt(length), a);\n  }\n\n  void sqlite3_result_error(Pointer context, Pointer text, int length) {\n    sqlite3.sqlite3_result_error(context, text, length);\n  }\n\n  void sqlite3_result_subtype(Pointer context, int subtype) {\n    sqlite3.sqlite3_result_subtype(context, subtype);\n  }\n\n  int sqlite3_user_data(Pointer context) {\n    return sqlite3.sqlite3_user_data(context);\n  }\n\n  Pointer sqlite3_aggregate_context(Pointer context, int nBytes) {\n    return sqlite3.sqlite3_aggregate_context(context, nBytes);\n  }\n\n  int sqlite3_step(Pointer stmt) => sqlite3.sqlite3_step(stmt);\n\n  int sqlite3_reset(Pointer stmt) => sqlite3.sqlite3_reset(stmt);\n\n  int sqlite3_finalize(Pointer stmt) => sqlite3.sqlite3_finalize(stmt);\n\n  int sqlite3_changes(Pointer db) => sqlite3.sqlite3_changes(db);\n\n  int sqlite3_stmt_isexplain(Pointer stmt) =>\n      sqlite3.sqlite3_stmt_isexplain(stmt);\n\n  int sqlite3_stmt_readonly(Pointer stmt) =>\n      sqlite3.sqlite3_stmt_readonly(stmt);\n\n  int sqlite3_last_insert_rowid(Pointer db) =>\n      JsBigInt(sqlite3.sqlite3_last_insert_rowid(db)).asDartInt;\n\n  int sqlite3_get_autocommit(Pointer db) => sqlite3.sqlite3_get_autocommit(db);\n\n  int sqlite3_db_config(Pointer db, int op, int value) {\n    return sqlite3.dart_sqlite3_db_config_int(db, op, value);\n  }\n\n  int sqlite3session_create(Pointer db, Pointer zDb, Pointer sessionOut) {\n    return sqlite3.sqlite3session_create(db, zDb, sessionOut);\n  }\n\n  void sqlite3session_delete(Pointer session) {\n    sqlite3.sqlite3session_delete(session);\n  }\n\n  int sqlite3session_enable(Pointer session, int enable) {\n    return sqlite3.sqlite3session_enable(session, enable);\n  }\n\n  int sqlite3session_indirect(Pointer session, int enable) {\n    return sqlite3.sqlite3session_indirect(session, enable);\n  }\n\n  int sqlite3session_isempty(Pointer session) {\n    return sqlite3.sqlite3session_isempty(session);\n  }\n\n  int sqlite3session_attach(Pointer session, Pointer zTab) {\n    return sqlite3.sqlite3session_attach(session, zTab);\n  }\n\n  int sqlite3session_diff(\n    Pointer session,\n    Pointer zFromDb,\n    Pointer zTbl,\n    Pointer pzErrMsg,\n  ) {\n    return sqlite3.sqlite3session_diff(session, zFromDb, zTbl, pzErrMsg);\n  }\n\n  int sqlite3session_patchset(\n    Pointer session,\n    Pointer pnPatchset,\n    Pointer ppPatchset,\n  ) {\n    return sqlite3.sqlite3session_patchset(session, pnPatchset, ppPatchset);\n  }\n\n  int sqlite3session_changeset(\n    Pointer session,\n    Pointer pnPatchset,\n    Pointer ppPatchset,\n  ) {\n    return sqlite3.sqlite3session_changeset(session, pnPatchset, ppPatchset);\n  }\n\n  int sqlite3changeset_invert(\n    int nIn,\n    Pointer pIn,\n    Pointer pnOut,\n    Pointer ppOut,\n  ) {\n    return sqlite3.sqlite3changeset_invert(nIn, pIn, pnOut, ppOut);\n  }\n\n  int sqlite3changeset_start(Pointer outPtr, int size, Pointer changeset) {\n    return sqlite3.sqlite3changeset_start(outPtr, size, changeset);\n  }\n\n  int sqlite3changeset_finalize(Pointer iterator) {\n    return sqlite3.sqlite3changeset_finalize(iterator);\n  }\n\n  int sqlite3changeset_next(Pointer iterator) {\n    return sqlite3.sqlite3changeset_next(iterator);\n  }\n\n  int sqlite3changeset_op(\n    Pointer iterator,\n    Pointer outTable,\n    Pointer outColCount,\n    Pointer outOp,\n    Pointer outIndirect,\n  ) {\n    return sqlite3.sqlite3changeset_op(\n      iterator,\n      outTable,\n      outColCount,\n      outOp,\n      outIndirect,\n    );\n  }\n\n  int sqlite3changeset_old(Pointer iterator, int iVal, Pointer outValue) {\n    return sqlite3.sqlite3changeset_old(iterator, iVal, outValue);\n  }\n\n  int sqlite3changeset_new(Pointer iterator, int iVal, Pointer outValue) {\n    return sqlite3.sqlite3changeset_new(iterator, iVal, outValue);\n  }\n\n  Pointer get sqlite3_temp_directory {\n    return (sqlite3.sqlite3_temp_directory.value as JSNumber).toDartInt;\n  }\n\n  set sqlite3_temp_directory(Pointer value) {\n    sqlite3.sqlite3_temp_directory.value = value.toJS;\n  }\n}\n\nextension WrappedMemory on Memory {\n  ByteBuffer get dartBuffer => buffer.toDart;\n\n  Uint8List get asBytes => buffer.toDart.asUint8List();\n\n  int strlen(int address) {\n    assert(address != 0, 'Null pointer dereference');\n\n    final bytes = dartBuffer.asUint8List(address);\n\n    var length = 0;\n    while (bytes[length] != 0) {\n      length++;\n    }\n\n    return length;\n  }\n\n  int int32ValueOfPointer(Pointer pointer) {\n    assert(pointer != 0, 'Null pointer dereference');\n    return dartBuffer.asInt32List()[pointer >> 2];\n  }\n\n  void setInt32Value(Pointer pointer, int value) {\n    assert(pointer != 0, 'Null pointer dereference');\n    dartBuffer.asInt32List()[pointer >> 2] = value;\n  }\n\n  void setInt64Value(Pointer pointer, JsBigInt value) {\n    assert(pointer != 0, 'Null pointer dereference');\n    dartBuffer.asByteData().setBigInt64(pointer, value, true);\n  }\n\n  String readString(int address, [int? length]) {\n    assert(address != 0, 'Null pointer dereference');\n    return utf8.decode(\n      dartBuffer.asUint8List(address, length ?? strlen(address)),\n    );\n  }\n\n  String? readNullableString(int address, [int? length]) {\n    if (address == 0) return null;\n\n    return utf8.decode(\n      dartBuffer.asUint8List(address, length ?? strlen(address)),\n    );\n  }\n\n  Uint8List copyRange(Pointer pointer, int length) {\n    final list = Uint8List(length);\n    list.setAll(0, dartBuffer.asUint8List(pointer, length));\n    return list;\n  }\n}\n\nMemory _exportedMemory(Instance instance) {\n  return instance.exports['memory'] as Memory;\n}\n"
  },
  {
    "path": "sqlite3/lib/unstable/ffi_bindings.dart",
    "content": "/// Direct and raw access to `ffigen` generated bindings to `libsqlite3`.\n///\n/// This is inherently unstable, this library is not covered by semver releases\n/// for the `sqlite3` Dart package.\n///\n/// @nodoc\nlibrary;\n\nexport '../src/ffi/libsqlite3.g.dart';\n"
  },
  {
    "path": "sqlite3/lib/wasm.dart",
    "content": "/// Experimental access to `sqlite3` on the web.\n///\n/// Using this library requires additional setup, see the readme of the\n/// `sqlite3` package for details.\n///\n/// Also, please note that this library is not production-ready at the moment\n/// and should be used with caution.\n/// In particular, the implementation of the virtual file system used to store\n/// persistent databases may change in a way that requires migration work in the\n/// future.\n///\n/// {@category wasm}\nlibrary;\n\nexport 'common.dart';\n\nexport 'src/wasm/vfs/simple_opfs.dart' show SimpleOpfsFileSystem;\nexport 'src/wasm/vfs/indexed_db.dart' show IndexedDbFileSystem;\nexport 'src/wasm/vfs/async_opfs/client.dart' show WasmVfs;\nexport 'src/wasm/vfs/async_opfs/worker.dart' show WorkerOptions, VfsWorker;\nexport 'src/wasm/loader.dart' show WasmModuleLoader;\nexport 'src/wasm/sqlite3.dart';\n"
  },
  {
    "path": "sqlite3/pubspec.yaml",
    "content": "name: sqlite3\ndescription: Provides lightweight yet convenient bindings to SQLite by using dart:ffi\nversion: 3.3.2-wip\nhomepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3\nissue_tracker: https://github.com/simolus3/sqlite3.dart/issues\nresolution: workspace\n\nenvironment:\n  # We want >=3.10, but Flutter 3.38 somehow ships with a beta Dart SDK that rejects >=3.10 deps.\n  sdk: '>=3.9.999 <4.0.0'\n\n# This package supports all platforms listed below.\nplatforms:\n  android:\n  ios:\n  linux:\n  macos:\n  web:\n  windows:\n\ntopics:\n  - sql\n  - database\n  - ffi\n  - sqlite\n\ndependencies:\n  collection: ^1.15.0\n  ffi: '^2.1.0'\n  meta: ^1.3.0\n  path: ^1.8.0\n  web: ^1.1.0\n  typed_data: ^1.3.2\n  hooks: ^1.0.0\n  code_assets: ^1.0.0\n  native_toolchain_c: '>=0.17.5 <0.19.0'\n  crypto: ^3.0.6\n\ndev_dependencies:\n  analyzer: ^12.0.0\n  build_daemon: ^4.0.0\n  build_runner: ^2.1.7\n  build_web_compilers: ^4.0.3\n  dart_style: ^3.0.1\n  ffigen: ^20.1.0\n  http: ^1.2.1\n  lints: ^6.0.0\n  shelf: ^1.4.0\n  shelf_proxy: ^1.0.2\n  shelf_static: ^1.1.0\n  stream_channel: ^2.1.0\n  test: ^1.31.0\n  test_descriptor: ^2.0.0\n  pub_semver: ^2.1.5\n  convert: ^3.1.2\n  package_config: ^2.2.0\n  logging: ^1.3.0\n"
  },
  {
    "path": "sqlite3/test/common/database.dart",
    "content": "import 'dart:async';\nimport 'dart:convert';\nimport 'dart:typed_data';\n\nimport 'package:sqlite3/common.dart';\nimport 'package:test/test.dart';\n\nimport 'utils.dart';\n\nvoid testDatabase(\n  FutureOr<CommonSqlite3> Function() loadSqlite, {\n  bool hasColumnMetadata = false,\n  bool hasSharedCache = false,\n}) {\n  late CommonSqlite3 sqlite3;\n  late CommonDatabase database;\n\n  setUpAll(() async => sqlite3 = await loadSqlite());\n  setUp(() => database = sqlite3.openInMemory());\n  tearDown(() => database.close());\n\n  test('user version', () {\n    expect(database.userVersion, 0);\n    database.userVersion = 1;\n    expect(database.userVersion, 1);\n  });\n\n  test(\"database can't be used after close\", () {\n    database.close();\n\n    expect(() => database.execute('SELECT 1;'), throwsStateError);\n  });\n\n  test('closing multiple times works', () {\n    database.close();\n    database.close(); // shouldn't throw or crash\n  });\n\n  test('updated rows', () {\n    database\n      ..execute('CREATE TABLE foo (bar INT);')\n      ..execute('INSERT INTO foo VALUES (3), (4);');\n\n    expect(database.updatedRows, 2);\n    // ignore: deprecated_member_use_from_same_package\n    expect(database.getUpdatedRows(), 2);\n  });\n\n  test('last insert id', () {\n    database.execute('CREATE TABLE tbl(a INTEGER PRIMARY KEY AUTOINCREMENT)');\n\n    for (var i = 0; i < 5; i++) {\n      database.execute('INSERT INTO tbl DEFAULT VALUES');\n      expect(database.lastInsertRowId, i + 1);\n    }\n  });\n\n  group('execute', () {\n    test('can run multiple statements at once', () {\n      database.execute('CREATE TABLE foo (a); CREATE TABLE bar (b);');\n\n      final result = database\n          .select('SELECT name FROM sqlite_master')\n          .map((row) => row['name'] as String);\n      expect(result, containsAll(<String>['foo', 'bar']));\n    });\n\n    test('can use parameters', () {\n      database.execute('CREATE TABLE foo (a);');\n      database.execute('INSERT INTO foo VALUES (?)', [123]);\n\n      final result = database.select('SELECT * FROM foo');\n      expect(result, hasLength(1));\n      expect(result.single['a'], 123);\n    });\n\n    test('does not allow multiple statements with parameters', () {\n      database.execute('CREATE TABLE foo (a);');\n\n      expect(\n        () => database.execute(\n          'INSERT INTO foo VALUES (?); INSERT INTO foo VALUES (?);',\n          [123],\n        ),\n        throwsArgumentError,\n      );\n    });\n\n    test(\n      'inner join with toTableColumnMap and computed column',\n      () {\n        database.execute('''\n      CREATE TABLE foo (\n        a INT\n      );\n      CREATE TABLE bar (\n        b TEXT,\n        a_ref INT,\n        FOREIGN KEY (a_ref) REFERENCES foo (a)\n      );\n      ''');\n        database.execute('INSERT INTO foo(a) VALUES (1), (2), (3);');\n        database.execute(\n          \"INSERT INTO bar(b, a_ref) VALUES ('1', NULL), ('2', 2), ('3', 3);\",\n        );\n\n        final result = database.select(\n          'SELECT *, foo.a > 2 is_greater_than_2 FROM foo'\n          ' INNER JOIN bar bar_alias ON bar_alias.a_ref = foo.a;',\n        );\n\n        expect(result, [\n          {'a': 2, 'b': '2', 'a_ref': 2, 'is_greater_than_2': 0},\n          {'a': 3, 'b': '3', 'a_ref': 3, 'is_greater_than_2': 1},\n        ]);\n\n        expect(result.map((row) => row.toTableColumnMap()), [\n          {\n            null: {'is_greater_than_2': 0},\n            'foo': {'a': 2},\n            'bar': {'b': '2', 'a_ref': 2},\n          },\n          {\n            null: {'is_greater_than_2': 1},\n            'foo': {'a': 3},\n            'bar': {'b': '3', 'a_ref': 3},\n          },\n        ]);\n      },\n      skip: hasColumnMetadata\n          ? null\n          : 'sqlite3 was compiled without column metadata',\n    );\n  });\n\n  group('throws', () {\n    test('when executing an invalid statement', () {\n      database.execute('CREATE TABLE foo (bar INTEGER CHECK (bar > 10));');\n\n      expect(\n        () => database.execute('INSERT INTO foo VALUES (3);'),\n        throwsA(\n          const TypeMatcher<SqliteException>().having(\n            (e) => e.message,\n            'message',\n            contains('CHECK constraint failed'),\n          ),\n        ),\n      );\n    });\n\n    test('when preparing an invalid statement', () {\n      expect(\n        () => database.prepare('INSERT INTO foo VALUES (3);'),\n        throwsA(\n          const TypeMatcher<SqliteException>()\n              .having((e) => e.operation, 'operation', 'preparing statement')\n              .having((e) => e.message, 'message', contains('no such table')),\n        ),\n      );\n    });\n\n    test('when selecting multiple statements', () {\n      expect(() => database.select('SELECT 1; SELECT 2;'), throwsArgumentError);\n      expect(\n        () => database.select('SELECT 1; invalid text'),\n        throwsArgumentError,\n      );\n\n      database.select('SELECT 1         ');\n      database.select('SELECT 1;        ');\n      database.select('SELECT 1; /* SELECT 2; SELECT 3; */');\n    });\n\n    group('with statement and args', () {\n      setUp(() {\n        database.createFunction(\n          functionName: 'throw_if_3',\n          argumentCount: const AllowedArgumentCount(1),\n          function: (args) {\n            if (args[0] == 3) {\n              throw Exception('intended exception');\n            }\n            return null;\n          },\n        );\n      });\n\n      Matcher sqlite3Exception(\n        dynamic operation,\n        dynamic causingStatement,\n        dynamic parameters,\n        dynamic toString,\n      ) {\n        return isA<SqliteException>()\n            .having((e) => e.operation, 'operation', operation)\n            .having(\n              (e) => e.causingStatement,\n              'causingStatement',\n              causingStatement,\n            )\n            .having(\n              (e) => e.parametersToStatement,\n              'parametersToStatement',\n              parameters,\n            )\n            .having((e) => e.toString(), 'toString()', toString);\n      }\n\n      test('for execute', () {\n        expect(\n          () => database.execute('SELECT throw_if_3(?)', [3]),\n          throwsA(\n            sqlite3Exception(\n              'executing statement',\n              'SELECT throw_if_3(?)',\n              [3],\n              contains(\n                'Causing statement: SELECT throw_if_3(?), parameters: 3',\n              ),\n            ),\n          ),\n        );\n      });\n\n      test('for reading prepared statements', () {\n        final stmt = database.prepare('SELECT throw_if_3(?)');\n\n        expect(\n          () => stmt.select([3]),\n          throwsA(\n            sqlite3Exception(\n              'selecting from statement',\n              'SELECT throw_if_3(?)',\n              [3],\n              contains(\n                'Causing statement: SELECT throw_if_3(?), parameters: 3',\n              ),\n            ),\n          ),\n        );\n      });\n\n      test('for writing prepared statements', () {\n        database.execute('CREATE TABLE foo (bar INTEGER);');\n\n        final stmt = database.prepare('INSERT INTO foo VALUES (throw_if_3(?))');\n        expect(\n          () => stmt.execute([3]),\n          throwsA(\n            sqlite3Exception(\n              'executing statement',\n              'INSERT INTO foo VALUES (throw_if_3(?))',\n              [3],\n              contains(\n                'Causing statement: INSERT INTO foo VALUES (throw_if_3(?)), parameters: 3',\n              ),\n            ),\n          ),\n        );\n      });\n\n      test('for prepared statements with map', () {\n        final stmt = database.prepare('SELECT :a, throw_if_3(:b)');\n        final expectation = throwsA(\n          sqlite3Exception(\n            'selecting from statement',\n            'SELECT :a, throw_if_3(:b)',\n            [1, 3],\n            contains(\n              'Causing statement: SELECT :a, throw_if_3(:b), parameters: 1, 3',\n            ),\n          ),\n        );\n\n        expect(\n          // ignore: deprecated_member_use_from_same_package\n          () => stmt.selectMap({':a': 1, ':b': 3}),\n          expectation,\n        );\n\n        expect(\n          () => stmt.selectWith(StatementParameters.named({':a': 1, ':b': 3})),\n          expectation,\n        );\n      });\n\n      test('for prepared statements with cursor', () {\n        const sql = 'SELECT throw_if_3(column1) FROM (VALUES (?), (?))';\n        final stmt = database.prepare(sql);\n        final cursor = stmt.selectCursor([1, 3]);\n\n        expect(cursor.moveNext(), isTrue);\n        expect(\n          () => cursor.moveNext(),\n          throwsA(\n            sqlite3Exception(\n              'iterating through statement',\n              sql,\n              [1, 3],\n              contains('Causing statement: $sql, parameters: 1, 3'),\n            ),\n          ),\n        );\n      });\n    });\n  });\n\n  test('violating constraint throws exception with extended error code', () {\n    database.execute('CREATE TABLE tbl(a INTEGER NOT NULL)');\n\n    final statement = database.prepare('INSERT INTO tbl DEFAULT VALUES');\n\n    expect(\n      statement.execute,\n      throwsA(\n        isA<SqliteException>().having(\n          (e) => e.explanation,\n          'explanation',\n          endsWith(' (code 1299)'),\n        ),\n      ),\n    );\n  });\n\n  test(\n    'open shared in-memory instances',\n    () {\n      final db1 = sqlite3.open('file:test?mode=memory&cache=shared', uri: true);\n      final db2 = sqlite3.open('file:test?mode=memory&cache=shared', uri: true);\n      addTearDown(() {\n        db1.close();\n        db2.close();\n      });\n\n      db1\n        ..execute('CREATE TABLE tbl (a INTEGER NOT NULL);')\n        ..execute('INSERT INTO tbl VALUES (1), (2), (3);');\n\n      final result = db2.select('SELECT * FROM tbl');\n      expect(result, hasLength(3));\n    },\n    skip: hasSharedCache ? null : 'Test requires shared cache',\n  );\n\n  test('locked exceptions', () {\n    final db1 = sqlite3.open('file:busy?mode=memory&cache=shared', uri: true);\n    final db2 = sqlite3.open('file:busy?mode=memory&cache=shared', uri: true);\n    addTearDown(() {\n      db1.close();\n      db2.close();\n    });\n\n    db1.execute('BEGIN EXCLUSIVE TRANSACTION');\n    expect(\n      () => db2.execute('BEGIN EXCLUSIVE TRANSACTION'),\n      throwsSqlError(SqlError.SQLITE_LOCKED, 262),\n    );\n  }, skip: hasSharedCache ? null : 'Test requires shared cache');\n\n  test('result sets are lists', () {\n    final result = database.select('SELECT 1, 2 UNION ALL SELECT 3, 4;');\n    expect(result, isA<List<Row>>());\n\n    expect(result[0], {'1': 1, '2': 2});\n    expect(result[1], {'1': 3, '2': 4});\n\n    // ignore: collection_methods_unrelated_type\n    expect(result[0][0], 1);\n    expect(result[0]['1'], 1);\n    // ignore: collection_methods_unrelated_type\n    expect(result[0][1], 2);\n    expect(result[0]['2'], 2);\n  });\n\n  group('user-defined functions', () {\n    test('can read arguments of user defined functions', () {\n      late List<Object?> readArguments;\n\n      database.createFunction(\n        functionName: 'test_fun',\n        argumentCount: const AllowedArgumentCount(6),\n        function: (args) {\n          // copy since the args become invalid as soon as this function\n          // finishes.\n          readArguments = List.of(args);\n          return null;\n        },\n      );\n\n      database.execute(\n        r'''SELECT test_fun(1, 2.5, 'hello world', X'ff00ff', X'', NULL)''',\n      );\n\n      expect(readArguments, <dynamic>[\n        1,\n        2.5,\n        'hello world',\n        Uint8List.fromList([255, 0, 255]),\n        Uint8List(0),\n        null,\n      ]);\n    });\n\n    test('throws when using a long function name', () {\n      expect(\n        () => database.createFunction(\n          functionName: 'foo' * 100,\n          function: (args) => null,\n        ),\n        throwsArgumentError,\n      );\n    });\n\n    group('scalar return', () {\n      test('null', () {\n        database.createFunction(\n          functionName: 'test_null',\n          function: (args) => null,\n          argumentCount: const AllowedArgumentCount(0),\n        );\n        final stmt = database.prepare('SELECT test_null() AS result');\n\n        expect(stmt.select(), [\n          {'result': null},\n        ]);\n      });\n\n      test('integers', () {\n        database.createFunction(\n          functionName: 'test_int',\n          function: (args) => 420,\n          argumentCount: const AllowedArgumentCount(0),\n        );\n        final stmt = database.prepare('SELECT test_int() AS result');\n\n        expect(stmt.select(), [\n          {'result': 420},\n        ]);\n      });\n\n      test('big int', () {\n        database.createFunction(\n          functionName: 'test_int',\n          function: (args) => BigInt.from(12),\n          argumentCount: const AllowedArgumentCount(0),\n        );\n        final stmt = database.prepare('SELECT test_int() AS result');\n\n        expect(stmt.select(), [\n          {'result': 12},\n        ]);\n      });\n\n      test('doubles', () {\n        database.createFunction(\n          functionName: 'test_double',\n          function: (args) => 133.7,\n          argumentCount: const AllowedArgumentCount(0),\n        );\n        final stmt = database.prepare('SELECT test_double() AS result');\n\n        expect(stmt.select(), [\n          {'result': 133.7},\n        ]);\n      });\n\n      test('bytes', () {\n        database.createFunction(\n          functionName: 'test_blob',\n          function: (args) => [1, 2, 3],\n          argumentCount: const AllowedArgumentCount(0),\n        );\n        final stmt = database.prepare('SELECT test_blob() AS result');\n\n        expect(stmt.select(), [\n          {\n            'result': [1, 2, 3],\n          },\n        ]);\n      });\n\n      test('text', () {\n        database.createFunction(\n          functionName: 'test_text',\n          function: (args) => 'hello from Dart',\n          argumentCount: const AllowedArgumentCount(0),\n        );\n        final stmt = database.prepare('SELECT test_text() AS result');\n\n        expect(stmt.select(), [\n          {'result': 'hello from Dart'},\n        ]);\n      });\n\n      test('can return subtypes', () {\n        const int $J = 0x4A;\n        database.createFunction(\n          functionName: 'dart_json_function',\n          function: (_) => SubtypedValue(json.encode({'hello': 'dart'}), $J),\n          subtype: true,\n        );\n\n        final stmt = database.prepare(\n          \"SELECT json_object('foo', dart_json_function()) AS result\",\n        );\n\n        expect(stmt.select(), [\n          {\n            // Importantly, the returned JSON object should be embedded\n            // directly (instead of being a string) because we're including\n            // the JSON subtype.\n            'result': json.encode({\n              'foo': {'hello': 'dart'},\n            }),\n          },\n        ]);\n      });\n\n      test('can read subtypes', () {\n        database.createFunction(\n          functionName: 'dart_get_subtype',\n          function: (args) {\n            return switch (args.subtypeOf(0)) {\n              0 => null,\n              final other => String.fromCharCode(other),\n            };\n          },\n          argumentCount: const AllowedArgumentCount(1),\n          subtype: true,\n        );\n\n        final [row] = database.select(\n          'SELECT dart_get_subtype(json_object()) AS r',\n        );\n        expect(row, {'r': 'J'});\n      });\n    });\n\n    test('aggregate functions', () {\n      database\n        ..execute('CREATE TABLE test (a INT, b TEXT);')\n        ..execute(\n          'INSERT INTO test VALUES '\n          \"(1, 'hello world'), \"\n          \"(2, 'foo'), \"\n          \"(1, 'another'), \"\n          \"(2, 'bar');\",\n        );\n\n      database.createAggregateFunction(\n        functionName: 'sum_lengths',\n        function: const _SummedStringLength(),\n        argumentCount: const AllowedArgumentCount(1),\n      );\n\n      expect(\n        database.select(\n          'SELECT a, sum_lengths(b) AS l FROM test GROUP BY a '\n          'ORDER BY 2;',\n        ),\n        [\n          {'a': 2, 'l': 6 /* foo + bar */},\n          {'a': 1, 'l': 18 /* hello world + another */},\n        ],\n      );\n    });\n\n    test('window functions', () {\n      // Dart port of https://www.sqlite.org/windowfunctions.html#udfwinfunc\n      database\n        ..execute('CREATE TABLE t3 (x, y);')\n        ..execute(\n          'INSERT INTO t3 VALUES '\n          \"('a', 4), \"\n          \"('b', 5), \"\n          \"('c', 3), \"\n          \"('d', 8), \"\n          \"('e', 1)\",\n        );\n\n      database.createAggregateFunction(\n        functionName: 'sumint',\n        function: _SumInt(),\n        argumentCount: const AllowedArgumentCount(1),\n      );\n\n      expect(\n        database.select(\n          'SELECT x, sumint(y) OVER ('\n          '  ORDER BY x ROWS BETWEEN 1 PRECEDING AND 1 FOLLOWING'\n          ') AS sum_y FROM t3 ORDER BY x',\n        ),\n        [\n          {'x': 'a', 'sum_y': 9},\n          {'x': 'b', 'sum_y': 12},\n          {'x': 'c', 'sum_y': 16},\n          {'x': 'd', 'sum_y': 12},\n          {'x': 'e', 'sum_y': 9},\n        ],\n      );\n    });\n  });\n\n  test('createCollation', () {\n    database\n      ..execute('CREATE TABLE foo2 (bar)')\n      ..execute(\n        \"INSERT INTO foo2 VALUES ('AaAaaaAA'), ('BBBbBb'),('cCCCcc    '), ('  dD   ')\",\n      )\n      ..createCollation(\n        name: \"RTRIMNOCASE\",\n        function: (String? a, String? b) {\n          final compareA = a?.toLowerCase().trimRight();\n          final compareB = b?.toLowerCase().trimRight();\n\n          if (compareA == null && compareB == null) {\n            return 0;\n          } else if (compareA == null) {\n            // a < b\n            return -1;\n          } else if (compareB == null) {\n            // a > b\n            return 1;\n          } else {\n            return compareA.compareTo(compareB);\n          }\n        },\n      );\n\n    expect(\n      database.select(\n        \"SELECT * FROM foo2 WHERE bar = 'aaaaAaAa   ' COLLATE RTRIMNOCASE\",\n      ),\n      [\n        {'bar': 'AaAaaaAA'},\n      ],\n    );\n\n    expect(\n      database.select(\n        \"SELECT * FROM foo2 WHERE bar = 'bbbbbb' COLLATE RTRIMNOCASE\",\n      ),\n      [\n        {'bar': 'BBBbBb'},\n      ],\n    );\n\n    expect(\n      database.select(\n        \"SELECT * FROM foo2 WHERE bar = 'cCcccC' COLLATE RTRIMNOCASE\",\n      ),\n      [\n        {'bar': 'cCCCcc    '},\n      ],\n    );\n\n    expect(\n      database.select(\n        \"SELECT * FROM foo2 WHERE bar = 'dd' COLLATE RTRIMNOCASE\",\n      ),\n      isEmpty,\n    );\n  });\n\n  test('prepare does not throw for multiple statements by default', () {\n    final stmt = database.prepare('SELECT 1; SELECT 2');\n    expect(stmt.sql, 'SELECT 1;');\n  });\n\n  test('prepare throws with checkNoTail', () {\n    expect(\n      () => database.prepare('SELECT 1; SELECT 2', checkNoTail: true),\n      throwsArgumentError,\n    );\n  });\n\n  group('prepareMultiple', () {\n    test('can prepare multiple statements', () {\n      final statements = database.prepareMultiple('SELECT 1; SELECT 2;');\n      expect(statements, [_statement('SELECT 1;'), _statement(' SELECT 2;')]);\n    });\n\n    test('fails for trailing syntax error', () {\n      expect(\n        () => database.prepareMultiple('SELECT 1; error here '),\n        throwsA(isA<SqliteException>()),\n      );\n    });\n\n    test('fails for syntax error in the middle', () {\n      expect(\n        () => database.prepareMultiple('SELECT 1; error here; SELECT 2;'),\n        throwsA(isA<SqliteException>()),\n      );\n    });\n\n    group('edge-cases', () {\n      test('empty string', () {\n        expect(() => database.prepare(''), throwsArgumentError);\n        expect(database.prepareMultiple(''), isEmpty);\n      });\n\n      test('whitespace only', () {\n        expect(() => database.prepare('  '), throwsArgumentError);\n        expect(() => database.prepare('/* oh hi */'), throwsArgumentError);\n\n        expect(database.prepareMultiple('  '), isEmpty);\n        expect(database.prepareMultiple('/* oh hi */'), isEmpty);\n      });\n\n      test('leading whitespace', () {\n        final stmt = database.prepare(\n          '  /*wait for it*/ SELECT 1;',\n          checkNoTail: true,\n        );\n        expect(stmt.sql, '  /*wait for it*/ SELECT 1;');\n      });\n\n      test('trailing comment', () {\n        final stmt = database.prepare(\n          'SELECT 1; /* done! */',\n          checkNoTail: true,\n        );\n        expect(stmt.sql, 'SELECT 1;');\n      });\n\n      test('whitespace between statements', () {\n        final stmts = database.prepareMultiple('SELECT 1; /* and */ SELECT 2;');\n        expect(stmts, hasLength(2));\n\n        expect(stmts[0].sql, 'SELECT 1;');\n        expect(stmts[1].sql, ' /* and */ SELECT 2;');\n      });\n\n      test('BigInt bounds', () {\n        database.execute('CREATE TABLE foo (a INTEGER);');\n\n        database.execute('INSERT INTO foo VALUES (?)', [\n          BigInt.parse('-9223372036854775808'),\n        ]);\n        database.execute('INSERT INTO foo VALUES (?)', [\n          BigInt.parse('9223372036854775807'),\n        ]);\n\n        final result = database.select('SELECT * FROM foo');\n        expect(result, hasLength(2));\n        expect(result.rows[0][0].toString(), '-9223372036854775808');\n        expect(result.rows[1][0].toString(), '9223372036854775807');\n\n        expect(\n          () => database.execute('INSERT INTO foo VALUES (?)', [\n            BigInt.parse('-9223372036854775809'),\n          ]),\n          throwsA(\n            const TypeMatcher<Exception>().having(\n              (e) => e.toString(),\n              'message',\n              contains('BigInt value exceeds the range of 64 bits'),\n            ),\n          ),\n        );\n\n        expect(\n          () => database.execute('INSERT INTO foo VALUES (?)', [\n            BigInt.parse('9223372036854775808'),\n          ]),\n          throwsA(\n            const TypeMatcher<Exception>().having(\n              (e) => e.toString(),\n              'message',\n              contains('BigInt value exceeds the range of 64 bits'),\n            ),\n          ),\n        );\n      });\n    });\n  });\n\n  group('update stream', () {\n    setUp(() {\n      database.execute('CREATE TABLE tbl (a TEXT, b INT);');\n    });\n\n    test('emits event after insert', () {\n      expect(\n        database.updates,\n        emits(_update(SqliteUpdate(SqliteUpdateKind.insert, 'tbl', 1))),\n      );\n\n      database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n    });\n\n    test('emits event after update', () {\n      database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n\n      expect(\n        database.updates,\n        emits(_update(SqliteUpdate(SqliteUpdateKind.update, 'tbl', 1))),\n      );\n\n      database.execute(\"UPDATE tbl SET b = b + 1;\");\n    });\n\n    test('emits event after delete', () {\n      database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n\n      expect(\n        database.updates,\n        emits(_update(SqliteUpdate(SqliteUpdateKind.delete, 'tbl', 1))),\n      );\n\n      database.execute(\"DELETE FROM tbl WHERE b = 1;\");\n    });\n\n    test('removes callback when no listener exists', () async {\n      database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n\n      final subscription = database.updates.listen(\n        expectAsync1((data) {}, count: 0),\n      );\n\n      // Pause the subscription, cause an update and resume. As no listener\n      // exists, no event should have been received and buffered.\n      subscription.pause();\n      database.execute(\"DELETE FROM tbl WHERE b = 1;\");\n      subscription.resume();\n      await pumpEventQueue();\n\n      await subscription.cancel();\n    });\n\n    test('closes when disposing the database', () {\n      expect(database.updates.listen(null).asFuture(null), completes);\n      database.close();\n    });\n\n    test('can listen synchronously', () async {\n      var notifications = 0;\n      var asyncNotifications = 0;\n\n      database.updatesSync.listen((_) => notifications++);\n      database.updates.listen((_) => asyncNotifications++);\n\n      database.execute('INSERT INTO tbl DEFAULT VALUES');\n      expect(notifications, 1);\n      expect(asyncNotifications, 0);\n      await pumpEventQueue();\n      expect(asyncNotifications, 1);\n    });\n  });\n\n  group('rollback stream', () {\n    setUp(() {\n      database.execute('CREATE TABLE tbl (a TEXT, b INT);');\n    });\n\n    test('emits on rollback', () {\n      expect(database.rollbacks, emits(anything));\n\n      database.execute('BEGIN TRANSACTION;');\n      database.execute(\"ROLLBACK;\");\n    });\n\n    test('emits on rollback after insert', () {\n      expect(database.rollbacks, emits(anything));\n\n      database.execute('BEGIN TRANSACTION;');\n      database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n      database.execute(\"ROLLBACK;\");\n    });\n\n    test('emits on rollback after erroneous SQL', () {\n      expect(database.rollbacks, emits(anything));\n\n      database.execute('BEGIN TRANSACTION;');\n      try {\n        database.execute('Erroneous SQL');\n      } catch (_) {\n        // ignore\n      }\n      database.execute(\"ROLLBACK;\");\n    });\n\n    test('emits on rollback due to commit filter', () {\n      expect(database.rollbacks, emits(anything));\n      database.commitFilter = expectAsync0(() => false);\n\n      database.execute('begin');\n      database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n      expect(() => database.execute('commit'), throwsSqlError(19, 531));\n    });\n  });\n\n  group('commit filter', () {\n    setUp(() {\n      database.execute('CREATE TABLE tbl (a TEXT, b INT);');\n    });\n\n    test('explicit commits with always fails filter raises exception', () {\n      database.commitFilter = () => false;\n      expect(\n        () {\n          database.execute('BEGIN TRANSACTION;');\n          database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n          database.execute(\"COMMIT;\");\n        },\n        throwsA(\n          predicate<SqliteException>(\n            (e) =>\n                e.operation == 'executing' &&\n                e.message.startsWith('constraint failed'),\n          ),\n        ),\n      );\n    });\n\n    test('implicit commits with always fails filter raises exception', () {\n      database.commitFilter = () => false;\n      expect(\n        () => database.execute(\"INSERT INTO tbl VALUES ('', 1);\"),\n        throwsA(\n          predicate<SqliteException>(\n            (e) =>\n                e.operation == 'executing' &&\n                e.message.startsWith('constraint failed'),\n          ),\n        ),\n      );\n    });\n\n    test('side effects run on explicit commit', () {\n      var sideEffects = 0;\n      database.commitFilter = () {\n        ++sideEffects;\n        return true;\n      };\n\n      database.execute('BEGIN TRANSACTION;');\n      database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n      database.execute(\"COMMIT;\");\n      // ensure the transaction committed correctly\n      expect(\n        database.select('SELECT COUNT(*) AS c FROM tbl;').first['c'],\n        equals(1),\n      );\n      // ensure side-effects ran\n      expect(sideEffects, equals(1));\n    });\n\n    test('side effects run on implicit commit', () {\n      var sideEffects = 0;\n      database.commitFilter = () {\n        ++sideEffects;\n        return true;\n      };\n\n      database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n      // ensure the transaction committed correctly\n      expect(\n        database.select('SELECT COUNT(*) AS c FROM tbl;').first['c'],\n        equals(1),\n      );\n      // ensure side-effects ran\n      expect(sideEffects, equals(1));\n    });\n  });\n\n  group('commit stream', () {\n    setUp(() {\n      database.commitFilter = null;\n      database.execute('CREATE TABLE tbl (a TEXT, b INT);');\n    });\n\n    test('emits on implicit commit', () {\n      expect(database.commits, emits(anything));\n      database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n    });\n\n    test('emits on explicit commit', () {\n      expect(database.commits, emits(anything));\n\n      database.execute('BEGIN TRANSACTION;');\n      database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n      database.execute(\"COMMIT;\");\n    });\n\n    test('is async', () async {\n      var commits = 0;\n      database.commits.listen((_) => commits++);\n\n      database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n      expect(commits, 0);\n      await pumpEventQueue();\n      expect(commits, 1);\n    });\n\n    test('does not emit on implicit commit with commitFilter false', () async {\n      expect(database.commits, neverEmits(anything));\n      database.commitFilter = () => false;\n      try {\n        database.execute(\"INSERT INTO tbl VALUES ('', 1);\");\n      } on SqliteException {\n        // ignore\n      }\n\n      // Disposing the database here so that the stream closes and neverEmits\n      // completes.\n      database.close();\n    });\n  });\n\n  group('unicode handling', () {\n    test('accents in statements', () {\n      final table = 'télé'; // with accent\n      final column = 'mycolumn';\n\n      database\n        ..execute('''\n    CREATE TABLE $table (\n      $column INTEGER\n    )''')\n        ..execute('INSERT INTO $table($column) VALUES(1)');\n\n      final statement = database.prepare('SELECT * FROM $table;');\n      final cursor = statement.selectCursor();\n      expect(cursor.moveNext(), isTrue);\n\n      database.close();\n    });\n\n    test('return value of function', () {\n      database.createFunction(functionName: 'test', function: (args) => 'télé');\n\n      expect(database.select('SELECT test() AS r'), [\n        {'r': 'télé'},\n      ]);\n    });\n\n    test('parameter', () {\n      expect(database.select('SELECT ? AS r', ['télé']), [\n        {'r': 'télé'},\n      ]);\n    });\n  });\n\n  group('double quotes as literals', () {\n    const query = 'SELECT \"foo\" AS double, \\'bar\\' AS single';\n\n    test('enable', () {\n      database.config.doubleQuotedStringLiterals = true;\n\n      expect(database.select(query), [\n        {'double': 'foo', 'single': 'bar'},\n      ]);\n    });\n\n    test('disable', () {\n      database.config.doubleQuotedStringLiterals = false;\n\n      expect(\n        () => database.select(query),\n        throwsSqlError(SqlError.SQLITE_ERROR, 1),\n      );\n    });\n  });\n\n  test('autocommit', () {\n    expect(database.autocommit, equals(true));\n    database.execute('BEGIN');\n    expect(database.autocommit, equals(false));\n    database.execute('ROLLBACK');\n    expect(database.autocommit, equals(true));\n  });\n}\n\n/// Aggregate function that counts the length of all string parameters it\n/// receives.\nclass _SummedStringLength implements AggregateFunction<int> {\n  const _SummedStringLength();\n\n  @override\n  AggregateContext<int> createContext() {\n    return AggregateContext(0);\n  }\n\n  @override\n  void step(List<Object?> arguments, AggregateContext<int> context) {\n    if (arguments.length != 1) return;\n\n    final arg = arguments.single;\n    if (arg is String) {\n      context.value += arg.length;\n    }\n  }\n\n  @override\n  Object finalize(AggregateContext<int> context) => context.value;\n}\n\nclass _SumInt implements WindowFunction<int> {\n  @override\n  AggregateContext<int> createContext() => AggregateContext(0);\n\n  @override\n  Object? finalize(AggregateContext<int> context) {\n    // There's nothing to finalize\n    return value(context);\n  }\n\n  int _argument(List<Object?> arguments) {\n    return arguments.single! as int;\n  }\n\n  @override\n  void inverse(List<Object?> arguments, AggregateContext<int> context) {\n    context.value -= _argument(arguments);\n  }\n\n  @override\n  void step(List<Object?> arguments, AggregateContext<int> context) {\n    context.value += _argument(arguments);\n  }\n\n  @override\n  Object? value(AggregateContext<int> context) => context.value;\n}\n\nMatcher _statement(String sql) {\n  return isA<CommonPreparedStatement>().having((e) => e.sql, 'sql', sql);\n}\n\nMatcher _update(SqliteUpdate update) {\n  return isA<SqliteUpdate>()\n      .having((e) => e.kind, 'kind', update.kind)\n      .having((e) => e.tableName, 'tableName', update.tableName)\n      .having((e) => e.rowId, 'rowId', update.rowId);\n}\n"
  },
  {
    "path": "sqlite3/test/common/prepared_statement.dart",
    "content": "import 'dart:async';\nimport 'dart:typed_data';\n\nimport 'package:sqlite3/common.dart';\nimport 'package:sqlite3/src/implementation/statement.dart';\nimport 'package:test/test.dart';\n\nimport 'utils.dart';\n\nvoid testPreparedStatements(\n  FutureOr<CommonSqlite3> Function() loadSqlite, {\n  bool supportsReturning = true,\n}) {\n  late CommonSqlite3 sqlite3;\n\n  setUpAll(() async => sqlite3 = await loadSqlite());\n\n  test('report used SQL', () {\n    final db = sqlite3.openInMemory()\n      ..execute('CREATE TABLE foo (a INTEGER);')\n      ..execute('CREATE TABLE télé (a INTEGER);');\n    addTearDown(db.close);\n\n    final stmts = db.prepareMultiple('SELECT * FROM foo;SELECT * FROM télé;');\n\n    expect(stmts[0].sql, 'SELECT * FROM foo;');\n    expect(stmts[1].sql, 'SELECT * FROM télé;');\n  });\n\n  test('prepared statements can be used multiple times', () {\n    final opened = sqlite3.openInMemory();\n    opened.execute('CREATE TABLE tbl (a TEXT);');\n\n    final stmt = opened.prepare('INSERT INTO tbl(a) VALUES(?)');\n    stmt.execute(<String>['a']);\n    stmt.execute(<String>['b']);\n    stmt.close();\n\n    final select = opened.prepare('SELECT * FROM tbl ORDER BY a');\n    final result = select.select();\n\n    expect(result, hasLength(2));\n    expect(result.map((row) => row['a'] as String), ['a', 'b']);\n\n    select.close();\n\n    opened.close();\n  });\n\n  test('prepared statements without parameters can be used multiple times', () {\n    final opened = sqlite3.openInMemory();\n    addTearDown(opened.close);\n    opened\n      ..execute('CREATE TABLE tbl (a TEXT);')\n      ..execute('INSERT INTO tbl DEFAULT VALUES;');\n\n    final stmt = opened.prepare('SELECT * FROM tbl');\n    expect(stmt.select(), hasLength(1));\n    expect(stmt.select(), hasLength(1));\n  });\n\n  test('prepared statements cannot be used after close', () {\n    final opened = sqlite3.openInMemory();\n\n    final stmt = opened.prepare('SELECT ?');\n    stmt.close();\n\n    expect(stmt.select, throwsStateError);\n    opened.close();\n  });\n\n  test('prepared statements cannot be used after db is closed', () {\n    final opened = sqlite3.openInMemory();\n    final stmt = opened.prepare('SELECT 1');\n    opened.close();\n\n    expect(stmt.select, throwsStateError);\n  });\n\n  test('parameterCount', () {\n    final opened = sqlite3.openInMemory();\n    addTearDown(opened.close);\n\n    expect(opened.prepare('SELECT 1').parameterCount, 0);\n    expect(opened.prepare('SELECT 1, ?2 AS r').parameterCount, 2);\n  });\n\n  test('isReadOnly', () {\n    final opened = sqlite3.openInMemory()\n      ..execute('CREATE TABLE tbl (a TEXT);');\n    addTearDown(opened.close);\n\n    expect(opened.prepare('SELECT 1').isReadOnly, isTrue);\n    expect(opened.prepare('UPDATE tbl SET a = a || ?').isReadOnly, isFalse);\n  });\n\n  test('isExplain', () {\n    final opened = sqlite3.openInMemory()\n      ..execute('CREATE TABLE tbl (a TEXT);');\n    addTearDown(opened.close);\n\n    expect(opened.prepare('SELECT 1').isExplain, isFalse);\n    expect(opened.prepare('EXPLAIN SELECT 1').isExplain, isTrue);\n  });\n\n  Uint8List? insertBlob(Uint8List? value) {\n    final opened = sqlite3.openInMemory();\n    opened.execute('CREATE TABLE tbl (x BLOB);');\n\n    final insert = opened.prepare('INSERT INTO tbl VALUES (?)');\n    insert.execute(<dynamic>[value]);\n    insert.close();\n\n    final select = opened.prepare('SELECT * FROM tbl');\n    final result = select.select().single;\n\n    opened.close();\n    return result['x'] as Uint8List?;\n  }\n\n  test('can bind empty blob in prepared statements', () {\n    expect(insertBlob(Uint8List(0)), isEmpty);\n  });\n\n  test('can bind null blob in prepared statements', () {\n    expect(insertBlob(null), isNull);\n  });\n\n  test('can bind and read non-empty blob', () {\n    const bytes = [1, 2, 3];\n    expect(insertBlob(Uint8List.fromList(bytes)), bytes);\n  });\n\n  test('throws when sql statement has an error', () {\n    final db = sqlite3.openInMemory();\n    db.execute('CREATE TABLE foo (id INTEGER CHECK (id > 10));');\n\n    final stmt = db.prepare('INSERT INTO foo VALUES (9)');\n\n    expect(\n      stmt.execute,\n      throwsA(\n        isA<SqliteException>().having(\n          (e) => e.message,\n          'message',\n          contains('constraint failed'),\n        ),\n      ),\n    );\n\n    db.close();\n  });\n\n  test('throws an exception when iterating over result rows', () {\n    final db = sqlite3.openInMemory()\n      ..createFunction(\n        functionName: 'raise_if_two',\n        function: (args) {\n          if (args.first == 2) {\n            // ignore: only_throw_errors\n            throw 'parameter was two';\n          } else {\n            return null;\n          }\n        },\n      );\n\n    db.execute(\n      'CREATE TABLE tbl (a INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT)',\n    );\n    // insert with a = 1..3\n    for (var i = 0; i < 3; i++) {\n      db.execute('INSERT INTO tbl DEFAULT VALUES');\n    }\n\n    final statement = db.prepare('SELECT raise_if_two(a) FROM tbl ORDER BY a');\n\n    expect(\n      statement.select,\n      throwsA(\n        isA<SqliteException>().having(\n          (e) => e.message,\n          'message',\n          contains('was two'),\n        ),\n      ),\n    );\n  });\n\n  test('can bind booleans', () {\n    final db = sqlite3.openInMemory();\n    final stmt = db.prepare('SELECT ?');\n    final result = stmt.select([false]).single;\n\n    expect(result.values.single, isZero);\n    db.close();\n  });\n\n  test('can bind named parameters', () {\n    final db = sqlite3.openInMemory();\n    final stmt = db.prepare('SELECT ?1, :a, @b');\n    final result = stmt\n        .selectWith(\n          StatementParameters.named({\n            '?1': 'first',\n            ':a': 'second',\n            '@b': 'third',\n          }),\n        )\n        .single;\n\n    expect(result.values, ['first', 'second', 'third']);\n  });\n\n  test('can bind custom values', () {\n    final db = sqlite3.openInMemory();\n    addTearDown(db.close);\n\n    final stmt = db.prepare('SELECT :a AS a, :b AS b');\n    final result = stmt.selectWith(\n      StatementParameters.named({\n        ':a': 'normal parameter',\n        ':b': _CustomValue(),\n      }),\n    );\n\n    expect(result, [\n      {'a': 'normal parameter', 'b': 42},\n    ]);\n  });\n\n  group('checks that the amount of parameters are correct', () {\n    late CommonDatabase db;\n\n    setUp(() => db = sqlite3.openInMemory());\n    tearDown(() => db.close());\n\n    test('when no parameters are set', () {\n      final stmt = db.prepare('SELECT ?');\n      expect(stmt.select, throwsArgumentError);\n    });\n\n    test('when the wrong amount of parameters are set', () {\n      final stmt = db.prepare('SELECT ?, ?');\n      expect(() => stmt.select(<int>[1]), throwsArgumentError);\n    });\n\n    test('when not all names are covered', () {\n      final stmt = db.prepare('SELECT :a, @b');\n      expect(\n        () => stmt.executeWith(StatementParameters.named({':a': 'a'})),\n        throwsArgumentError,\n      );\n    });\n\n    test('when an invalid name is passed', () {\n      final stmt = db.prepare('SELECT :a, @b');\n      expect(\n        () => stmt.executeWith(\n          StatementParameters.named({':a': 'a', '@b': 'b', ':c': 'c'}),\n        ),\n        throwsArgumentError,\n      );\n    });\n\n    test('when named parameters are empty', () {\n      final stmt = db.prepare('SELECT :a, @b');\n      expect(\n        () => stmt.executeWith(const StatementParameters.named({})),\n        throwsArgumentError,\n      );\n    });\n  });\n\n  test('select statements return expected value', () {\n    final opened = sqlite3.openInMemory();\n\n    final prepared = opened.prepare('SELECT ?');\n\n    final result1 = prepared.select(<int>[1]);\n    expect(result1.columnNames, ['?']);\n    expect(result1.single.columnAt(0), 1);\n\n    final result2 = prepared.select(<int>[2]);\n    expect(result2.columnNames, ['?']);\n    expect(result2.single.columnAt(0), 2);\n\n    final result3 = prepared.select(<String>['']);\n    expect(result3.columnNames, ['?']);\n    expect(result3.single.columnAt(0), '');\n\n    opened.close();\n  });\n\n  test('does not validate custom parameters', () {\n    final opened = sqlite3.openInMemory();\n    addTearDown(opened.close);\n\n    final stmt = opened.prepare('SELECT ? AS r');\n    expect(stmt.selectWith(StatementParameters.bindCustom((stmt) {})), [\n      {'r': null},\n    ]);\n  });\n\n  test('handles recompilations', () {\n    final opened = sqlite3.openInMemory()\n      ..execute('create table t (c1)')\n      ..execute('insert into t values (1)');\n    addTearDown(opened.close);\n\n    final stmt = opened.prepare('select * from t');\n    expect(stmt.select(), [\n      {'c1': 1},\n    ]);\n\n    opened.execute('alter table t add column c2 default 2');\n\n    expect(stmt.select(), [\n      {'c1': 1, 'c2': 2},\n    ]);\n  });\n\n  test(\n    'reset',\n    () {\n      final opened = sqlite3.openInMemory()\n        ..execute('create table t (c1)')\n        ..execute('begin;');\n\n      final stmt = opened.prepare('insert into t values (1), (2) returning c1');\n      final cursor = stmt.selectCursor();\n      expect(cursor.moveNext(), isTrue);\n\n      // This fails due to the pending write of the active statement\n      expect(() => opened.execute('commit'), throwsSqlError(5, 5));\n\n      stmt.reset();\n      expect(cursor.moveNext(), isFalse);\n\n      opened.execute('commit');\n      opened.close();\n    },\n    skip: supportsReturning\n        ? null\n        : 'RETURNING not supported by current sqlite3 version',\n  );\n\n  group('cursors', () {\n    late CommonDatabase database;\n\n    setUp(() => database = sqlite3.openInMemory());\n\n    tearDown(() => database.close());\n\n    test('report correct values', () {\n      final stmt = database.prepare('VALUES (1), (2), (3);');\n\n      expect(_TestIterable(stmt.selectCursor()).toList(), [\n        {'column1': 1},\n        {'column1': 2},\n        {'column1': 3},\n      ]);\n    });\n\n    test('bind variables', () {\n      final stmt = database.prepare('VALUES (?), (?), (?);');\n\n      expect(_TestIterable(stmt.selectCursor([2, 3, 5])).toList(), [\n        {'column1': 2},\n        {'column1': 3},\n        {'column1': 5},\n      ]);\n    });\n\n    test('throw exceptions', () {\n      database\n        ..execute('CREATE TABLE foo (a);')\n        ..execute('INSERT INTO foo VALUES (1), (2), (3);')\n        ..createFunction(\n          functionName: 'throw_if',\n          function: (args) {\n            if (args[0] == args[1]) throw Exception('boom!');\n\n            return args[0];\n          },\n          argumentCount: const AllowedArgumentCount(2),\n        );\n\n      final stmt = database.prepare(\n        'WITH seq(a) AS (VALUES (1), (2), (3)) SELECT throw_if(a, 3) AS r FROM seq;',\n      );\n      final cursor = stmt.selectCursor();\n\n      expect(cursor.columnNames, ['r']);\n\n      expect(cursor.moveNext(), isTrue);\n      expect(cursor.current, {'r': 1});\n\n      expect(cursor.moveNext(), isTrue);\n      expect(cursor.current, {'r': 2});\n\n      expect(cursor.moveNext, throwsA(isA<SqliteException>()));\n      expect(cursor.moveNext(), isFalse);\n    });\n\n    test('handle recompilations while not running', () {\n      final opened = sqlite3.openInMemory()\n        ..execute('create table t (c1)')\n        ..execute('insert into t values (1)');\n      addTearDown(opened.close);\n\n      final stmt = opened.prepare('select * from t');\n      var cursor = stmt.selectCursor();\n\n      expect(cursor.moveNext(), isTrue);\n      expect(cursor.current, {'c1': 1});\n      expect(cursor.moveNext(), isFalse);\n\n      opened.execute('alter table t add column c2 default 2');\n      cursor = stmt.selectCursor();\n      expect(cursor.columnNames, ['c1']);\n\n      expect(cursor.moveNext(), isTrue);\n      expect(cursor.columnNames, ['c1', 'c2']);\n      expect(cursor.current, {'c1': 1, 'c2': 2});\n      expect(cursor.moveNext(), isFalse);\n    });\n\n    test('handles recompilations while running', () {\n      final opened = sqlite3.openInMemory()\n        ..execute('create table t (c1)')\n        ..execute('insert into t values (1)')\n        ..execute('insert into t values (2)');\n      addTearDown(opened.close);\n\n      final stmt = opened.prepare('select * from t');\n      final cursor = stmt.selectCursor();\n\n      expect(cursor.moveNext(), isTrue);\n      expect(cursor.current, {'c1': 1});\n\n      opened.execute('alter table t add column c2 default 2');\n\n      // alter statements while the cursor is iterating don't seem to be causing\n      // a recompile\n      expect(cursor.moveNext(), isTrue);\n      expect(cursor.current, {'c1': 2});\n    });\n\n    group('are closed', () {\n      test('by closing the prepared statement', () {\n        final stmt = database.prepare('VALUES (1), (2), (3);');\n        final cursor = stmt.selectCursor();\n        expect(cursor.moveNext(), isTrue);\n\n        stmt.close();\n        expect(cursor.moveNext(), isFalse);\n      });\n\n      test('by resetting the prepared statement', () {\n        final stmt = database.prepare('VALUES (1), (2), (3);');\n        final cursor = stmt.selectCursor();\n        expect(cursor.moveNext(), isTrue);\n\n        stmt.reset();\n        expect(cursor.moveNext(), isFalse);\n        stmt.close();\n      });\n\n      test('by invoking select', () {\n        final stmt = database.prepare('VALUES (1), (2), (3);');\n        final cursor = stmt.selectCursor();\n        expect(cursor.moveNext(), isTrue);\n\n        stmt.select();\n        expect(cursor.moveNext(), isFalse);\n      });\n\n      test('by invoking execute', () {\n        final stmt = database.prepare('VALUES (1), (2), (3);');\n        final cursor = stmt.selectCursor();\n        expect(cursor.moveNext(), isTrue);\n\n        stmt.execute();\n        expect(cursor.moveNext(), isFalse);\n      });\n\n      test('by invoking selectCursor', () {\n        final stmt = database.prepare('VALUES (1), (2), (3);');\n        final cursor = stmt.selectCursor();\n        expect(cursor.moveNext(), isTrue);\n\n        stmt.selectCursor();\n        expect(cursor.moveNext(), isFalse);\n      });\n    });\n  });\n\n  group(\n    'returning',\n    () {\n      late CommonDatabase database;\n      late CommonPreparedStatement statement;\n\n      setUp(() {\n        database = sqlite3.openInMemory()\n          ..execute('CREATE TABLE tbl (foo TEXT);');\n        statement = database.prepare(\n          'INSERT INTO tbl DEFAULT VALUES RETURNING *',\n        );\n      });\n\n      tearDown(() {\n        statement.close();\n        database.close();\n      });\n\n      test('can be used with execute', () {\n        statement.execute();\n      });\n\n      test('can get returned rows', () {\n        final result = statement.select();\n        expect(result, hasLength(1));\n\n        final row = result.single;\n        expect(row, {'foo': null});\n      });\n    },\n    skip: supportsReturning\n        ? null\n        : 'RETURNING not supported by current sqlite3 version',\n  );\n\n  group('errors', () {\n    late CommonDatabase db;\n\n    setUp(() => db = sqlite3.openInMemory());\n    tearDown(() => db.close());\n\n    test('for syntax', () {\n      final throwsSyntaxError = throwsSqlError(1, 1);\n\n      expect(() => db.execute('DUMMY'), throwsSyntaxError);\n      expect(() => db.prepare('DUMMY'), throwsSyntaxError);\n    });\n\n    test('for missing table', () {\n      expect(\n        () => db.execute('SELECT * FROM missing_table'),\n        throwsSqlError(1, 1),\n      );\n    });\n\n    test('for violated primary key constraint', () {\n      db\n        ..execute('CREATE TABLE Test (name TEXT PRIMARY KEY)')\n        ..execute(\"INSERT INTO Test(name) VALUES('test1')\");\n\n      expect(\n        () => db.execute(\"INSERT INTO Test(name) VALUES('test1')\"),\n        // SQLITE_CONSTRAINT_PRIMARYKEY (1555)\n        throwsSqlError(19, 1555),\n      );\n\n      expect(\n        () => db.prepare('INSERT INTO Test(name) VALUES(?)').execute(['test1']),\n        // SQLITE_CONSTRAINT_PRIMARYKEY (1555)\n        throwsSqlError(19, 1555),\n      );\n    });\n\n    test('for violated unique constraint', () {\n      db\n        ..execute('CREATE TABLE Test (id INT PRIMARY KEY, name TEXT UNIQUE)')\n        ..execute(\"INSERT INTO Test(name) VALUES('test')\");\n\n      expect(\n        () => db.execute(\"INSERT INTO Test(name) VALUES('test')\"),\n        // SQLITE_CONSTRAINT_UNIQUE (2067)\n        throwsSqlError(19, 2067),\n      );\n\n      expect(\n        () => db.prepare('INSERT INTO Test(name) VALUES(?)').execute(['test']),\n        // SQLITE_CONSTRAINT_UNIQUE (2067)\n        throwsSqlError(19, 2067),\n      );\n    });\n\n    test('recovers from SQLITE_BUSY', () {\n      final vfs = _ErrorInjectingVfs(\n        InMemoryFileSystem(),\n        name: 'test-recover-sqlite-busy',\n      );\n      sqlite3.registerVirtualFileSystem(vfs);\n      addTearDown(() => sqlite3.unregisterVirtualFileSystem(vfs));\n\n      var db = sqlite3.open('/db', vfs: vfs.name);\n      addTearDown(() => db.close());\n\n      db\n        ..execute('CREATE TABLE foo (bar TEXT) STRICT')\n        ..execute('INSERT INTO foo (bar) VALUES (?)', ['testing'])\n        ..close();\n\n      db = db = sqlite3.open('/db', vfs: vfs.name);\n      final stmt = db.prepare('SELECT * FROM foo');\n      final cursor = stmt.selectCursor();\n      vfs.maybeError = () => throw VfsException(SqlError.SQLITE_BUSY);\n\n      expect(\n        () => cursor.moveNext(),\n        throwsSqlError(SqlError.SQLITE_BUSY, SqlError.SQLITE_BUSY),\n      );\n      vfs.maybeError = null;\n      expect(cursor.moveNext(), isTrue);\n      expect(cursor.current, {'bar': 'testing'});\n\n      stmt.close();\n    });\n  });\n}\n\nclass _TestIterable<T> extends Iterable<T> {\n  @override\n  final Iterator<T> iterator;\n\n  _TestIterable(this.iterator);\n}\n\nclass _CustomValue implements CustomStatementParameter {\n  @override\n  void applyTo(CommonPreparedStatement statement, int index) {\n    final stmt = statement as StatementImplementation;\n    stmt.statement.sqlite3_bind_int64(index, 42);\n  }\n}\n\nfinal class _ErrorInjectingVfs extends BaseVirtualFileSystem {\n  final VirtualFileSystem _base;\n  void Function()? maybeError;\n\n  _ErrorInjectingVfs(this._base, {required super.name});\n\n  void _op() {\n    maybeError?.call();\n  }\n\n  @override\n  int xAccess(String path, int flags) {\n    _op();\n    return _base.xAccess(path, flags);\n  }\n\n  @override\n  void xDelete(String path, int syncDir) {\n    _op();\n    return _base.xDelete(path, syncDir);\n  }\n\n  @override\n  String xFullPathName(String path) {\n    _op();\n    return _base.xFullPathName(path);\n  }\n\n  @override\n  XOpenResult xOpen(Sqlite3Filename path, int flags) {\n    _op();\n    final inner = _base.xOpen(path, flags);\n    return (\n      outFlags: inner.outFlags,\n      file: _ErrorInjectingFile(this, inner.file),\n    );\n  }\n\n  @override\n  void xSleep(Duration duration) {\n    return _base.xSleep(duration);\n  }\n}\n\nfinal class _ErrorInjectingFile implements VirtualFileSystemFile {\n  final _ErrorInjectingVfs _vfs;\n  final VirtualFileSystemFile _base;\n\n  _ErrorInjectingFile(this._vfs, this._base);\n\n  @override\n  void xRead(Uint8List target, int fileOffset) {\n    _vfs._op();\n    return _base.xRead(target, fileOffset);\n  }\n\n  @override\n  int xCheckReservedLock() {\n    _vfs._op();\n    return _base.xCheckReservedLock();\n  }\n\n  @override\n  int get xDeviceCharacteristics => _base.xDeviceCharacteristics;\n\n  @override\n  void xClose() {\n    _vfs._op();\n    _base.xClose();\n  }\n\n  @override\n  int xFileSize() {\n    _vfs._op();\n    return _base.xFileSize();\n  }\n\n  @override\n  void xLock(int mode) {\n    _vfs._op();\n    _base.xLock(mode);\n  }\n\n  @override\n  void xSync(int flags) {\n    _vfs._op();\n    _base.xSync(flags);\n  }\n\n  @override\n  void xTruncate(int size) {\n    _vfs._op();\n    _base.xTruncate(size);\n  }\n\n  @override\n  void xUnlock(int mode) {\n    _vfs._op();\n    _base.xUnlock(mode);\n  }\n\n  @override\n  void xWrite(Uint8List buffer, int fileOffset) {\n    _vfs._op();\n    _base.xWrite(buffer, fileOffset);\n  }\n}\n"
  },
  {
    "path": "sqlite3/test/common/session.dart",
    "content": "import 'dart:async';\nimport 'dart:typed_data';\n\nimport 'package:convert/convert.dart';\nimport 'package:sqlite3/common.dart';\nimport 'package:test/test.dart';\n\nvoid testSession(FutureOr<CommonSqlite3> Function() loadSqlite) {\n  late CommonSqlite3 sqlite3;\n  late CommonDatabase database;\n\n  setUpAll(() async => sqlite3 = await loadSqlite());\n  setUp(() {\n    database = sqlite3.openInMemory();\n\n    database\n      ..execute('CREATE TABLE entries (id INTEGER PRIMARY KEY, content TEXT);')\n      ..execute(\n        'CREATE TABLE other (id INTEGER PRIMARY KEY, content INTEGER);',\n      );\n  });\n  tearDown(() => database.close());\n\n  Session createSession() {\n    final session = Session(database);\n    // Ensure we close the session before disposing the database. SQLite\n    // mentions that session objects should be closed before the database, and\n    // that closing them afterwards is UB.\n    addTearDown(session.delete);\n    return session;\n  }\n\n  test('enabled by default', () {\n    final session = createSession();\n    expect(session.enabled, isTrue);\n  });\n\n  test('isEmpty', () {\n    final session = createSession();\n    expect(session.isEmpty, isTrue);\n    expect(session.isNotEmpty, isFalse);\n\n    // Change without attaching session\n    database.execute('INSERT INTO entries DEFAULT VALUES;');\n    expect(session.isEmpty, isTrue);\n\n    session.attach();\n    database.execute('INSERT INTO entries (content) VALUES (?);', [\n      'my first entry',\n    ]);\n\n    expect(session.isEmpty, isFalse);\n    expect(session.isNotEmpty, isTrue);\n  });\n\n  test('attaching to some tables only', () {\n    final session = createSession();\n    expect(session.isEmpty, isTrue);\n    session.attach('entries');\n    database.execute('INSERT INTO other (content) VALUES (?);', [\n      'ignored table',\n    ]);\n\n    expect(session.isEmpty, isTrue);\n  });\n\n  test('iterator', () {\n    final session = createSession()..attach();\n    database\n      ..execute('INSERT INTO entries (content) VALUES (?);', ['a'])\n      ..execute('UPDATE entries SET content = ?', ['b']);\n\n    final changeset = session.changeset();\n    expect(\n      hex.encode(changeset.bytes),\n      '54020100656e7472696573001200010000000000000001030162',\n    );\n    expect(changeset, [\n      isOp(\n        operation: SqliteUpdateKind.insert,\n        oldValues: isNull,\n        newValues: [1, 'b'],\n      ),\n    ]);\n  });\n\n  test('bytes', () {\n    final changeset = Changeset.fromBytes(\n      hex.decode('54020100656e7472696573001200010000000000000001030162')\n          as Uint8List,\n      sqlite3,\n    );\n\n    expect(\n      hex.encode((-changeset).bytes),\n      '54020100656e7472696573000900010000000000000001030162',\n    );\n  });\n\n  test('changeset invert', () {\n    final session = createSession()..attach();\n    database.execute('INSERT INTO entries (content) VALUES (?);', ['a']);\n\n    final changeset = session.changeset();\n    final inverted = -changeset;\n    expect(inverted, [\n      isOp(\n        operation: SqliteUpdateKind.delete,\n        oldValues: [1, 'a'],\n        newValues: null,\n      ),\n    ]);\n\n    expect(database.select('SELECT * FROM entries'), isNotEmpty);\n    inverted.applyTo(database);\n    expect(database.select('SELECT * FROM entries'), isEmpty);\n\n    // Full changeset should be empty after applying a and -a\n    expect(session.changeset(), isEmpty);\n  });\n\n  test('apply changeset', () {\n    final session = createSession()..attach();\n    database.execute('INSERT INTO entries (content) VALUES (?);', ['a']);\n    final changeset = session.changeset();\n    session.delete();\n    expect(changeset, hasLength(1));\n\n    database.execute('DELETE FROM entries');\n    changeset.applyTo(database);\n\n    expect(database.select('SELECT * FROM entries'), [\n      {'id': 1, 'content': 'a'},\n    ]);\n  });\n\n  test('apply patchset', () {\n    final session = createSession()..attach();\n    database.execute('INSERT INTO entries (content) VALUES (?);', ['a']);\n    final patchset = session.patchset();\n    session.delete();\n\n    database.execute('DELETE FROM entries');\n    patchset.applyTo(database);\n\n    expect(database.select('SELECT * FROM entries'), [\n      {'id': 1, 'content': 'a'},\n    ]);\n  });\n\n  test('diff', () {\n    var session = createSession();\n    database.execute('INSERT INTO entries (content) VALUES (?);', ['a']);\n\n    database\n      ..execute(\"ATTACH ':memory:' AS another;\")\n      ..execute(\n        'CREATE TABLE another.entries (id INTEGER PRIMARY KEY, content TEXT);',\n      )\n      ..execute('INSERT INTO another.entries (content) VALUES (?);', ['b']);\n\n    session = createSession()..diff('another', 'entries');\n    final changeset = session.changeset();\n    expect(changeset.toList(), [\n      isOp(\n        operation: SqliteUpdateKind.update,\n        oldValues: [1, 'b'],\n        newValues: [null, 'a'],\n      ),\n    ]);\n  }, onPlatform: {'vm': Skip('diff seems to be unreliable in CI')});\n}\n\nTypeMatcher<ChangesetOperation> isOp({\n  Object? table = 'entries',\n  Object? columnCount = 2,\n  required Object? operation,\n  required Object? oldValues,\n  required Object? newValues,\n}) {\n  return isA<ChangesetOperation>()\n      .having((e) => e.table, 'table', table)\n      .having((e) => e.columnCount, 'colummCount', columnCount)\n      .having((e) => e.operation, 'operation', operation)\n      .having((e) => e.oldValues, 'oldValues', oldValues)\n      .having((e) => e.newValues, 'newValues', newValues);\n}\n"
  },
  {
    "path": "sqlite3/test/common/utils.dart",
    "content": "import 'package:sqlite3/common.dart';\nimport 'package:test/test.dart';\n\nMatcher throwsSqlError(int resultCode, int extendedResultCode) {\n  return throwsA(\n    isA<SqliteException>()\n        .having(\n          (e) => e.extendedResultCode,\n          'extendedResultCode',\n          extendedResultCode,\n        )\n        .having((e) => e.resultCode, 'resultCode', resultCode),\n  );\n}\n"
  },
  {
    "path": "sqlite3/test/common/vfs.dart",
    "content": "import 'dart:async';\nimport 'dart:typed_data';\n\nimport 'package:sqlite3/common.dart';\nimport 'package:test/test.dart';\n\nimport 'utils.dart';\n\nvoid testVfs(FutureOr<CommonSqlite3> Function() loadSqlite) {\n  late CommonSqlite3 sqlite3;\n\n  setUpAll(() async => sqlite3 = await loadSqlite());\n\n  test('smoke check', () {\n    final vfs = InMemoryFileSystem(name: 'dart');\n    sqlite3.registerVirtualFileSystem(vfs);\n    addTearDown(() => sqlite3.unregisterVirtualFileSystem(vfs));\n\n    expect(vfs.xAccess('/database', 0), isZero);\n    var database = sqlite3.open('/database', vfs: 'dart');\n    database.execute('CREATE TABLE foo (bar TEXT);');\n    database.execute('INSERT INTO foo (bar) VALUES (?)', ['first row']);\n    expect(vfs.xAccess('/database', 0), isPositive);\n\n    database.close();\n    database = sqlite3.open('/database', vfs: 'dart');\n    expect(database.select('SELECT * FROM foo'), hasLength(1));\n    database.close();\n  });\n\n  test(\"can't use vfs after unregistering it\", () {\n    final vfs = InMemoryFileSystem(name: 'dart');\n    sqlite3.registerVirtualFileSystem(vfs);\n\n    sqlite3.open('/database', vfs: 'dart').close();\n    sqlite3.unregisterVirtualFileSystem(vfs);\n\n    expect(() => sqlite3.open('/database', vfs: 'dart'), throwsSqlError(1, 1));\n  });\n\n  test('reports current time', () {\n    final memory = InMemoryFileSystem();\n    final vfs = TestVfs('dart')\n      ..xOpenDelegate = memory.xOpen\n      ..xCurrentTimeDelegate = () => DateTime.utc(2024, 11, 19);\n    sqlite3.registerVirtualFileSystem(vfs);\n    addTearDown(() => sqlite3.unregisterVirtualFileSystem(vfs));\n\n    final database = sqlite3.openInMemory(vfs: 'dart');\n    addTearDown(database.close);\n\n    expect(database.select('SELECT CURRENT_TIMESTAMP AS r'), [\n      {'r': '2024-11-19 00:00:00'},\n    ]);\n  });\n\n  test('can use temporary files', () {\n    final memory = InMemoryFileSystem(name: 'dart-tmp');\n    sqlite3.registerVirtualFileSystem(memory);\n    addTearDown(() => sqlite3.unregisterVirtualFileSystem(memory));\n\n    final db = sqlite3.open('/db', vfs: 'dart-tmp');\n    addTearDown(db.close);\n\n    db.execute('CREATE TEMP TABLE foo (bar TEXT);');\n    final insert = db.prepare('INSERT INTO foo (bar) VALUES (?);');\n    final data = 'new row' * 100;\n    for (var i = 0; i < 10000; i++) {\n      insert.execute([data]);\n    }\n    insert.close();\n  });\n}\n\nfinal class TestVfs extends VirtualFileSystem {\n  TestVfs(super.name);\n\n  int Function(String, int) xAccessDelegate = (_, _) => 0;\n  DateTime Function() xCurrentTimeDelegate = DateTime.now;\n  void Function(String, int)? xDeleteDelegate;\n  String Function(String) xFullPathNameDelegate = (_) =>\n      throw UnimplementedError();\n  XOpenResult Function(Sqlite3Filename path, int flags) xOpenDelegate =\n      (path, flags) => throw UnimplementedError();\n  void Function(Uint8List)? xRandomnessDelegate;\n  void Function(Duration)? xSleepDelegate;\n\n  @override\n  int xAccess(String path, int flags) {\n    return xAccessDelegate(path, flags);\n  }\n\n  @override\n  DateTime xCurrentTime() {\n    return xCurrentTimeDelegate();\n  }\n\n  @override\n  void xDelete(String path, int syncDir) {\n    return xDeleteDelegate?.call(path, syncDir);\n  }\n\n  @override\n  String xFullPathName(String path) {\n    return xFullPathNameDelegate(path);\n  }\n\n  @override\n  XOpenResult xOpen(Sqlite3Filename path, int flags) {\n    return xOpenDelegate(path, flags);\n  }\n\n  @override\n  void xRandomness(Uint8List target) {\n    return xRandomnessDelegate?.call(target);\n  }\n\n  @override\n  void xSleep(Duration duration) {\n    xSleepDelegate?.call(duration);\n  }\n}\n"
  },
  {
    "path": "sqlite3/test/ffi/common_database_test.dart",
    "content": "@Tags(['ffi'])\nlibrary;\n\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:test/scaffolding.dart';\n\nimport '../common/database.dart';\nimport '../common/session.dart';\n\nvoid main() {\n  final hasColumnMeta = sqlite3.usedCompileOption('ENABLE_COLUMN_METADATA');\n  final hasSession = sqlite3.usedCompileOption('ENABLE_SESSION');\n  final hasSharedCache = !sqlite3.usedCompileOption('OMIT_SHARED_CACHE');\n\n  testDatabase(\n    () => sqlite3,\n    hasColumnMetadata: hasColumnMeta,\n    hasSharedCache: hasSharedCache,\n  );\n\n  group('session', () {\n    testSession(() => sqlite3);\n  }, skip: hasSession ? false : 'Missing session extension');\n}\n"
  },
  {
    "path": "sqlite3/test/ffi/database_test.dart",
    "content": "@Tags(['ffi'])\nlibrary;\n\nimport 'dart:io';\n\nimport 'package:path/path.dart';\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:sqlite3/src/ffi/implementation.dart';\nimport 'package:test/test.dart';\nimport 'package:test_descriptor/test_descriptor.dart' as d;\n\nimport '../common/utils.dart';\n\n/// Additional tests to `common_database_test.dart` that aren't supported on\n/// the web.\nvoid main() {\n  late Database database;\n\n  setUp(() => database = sqlite3.openInMemory());\n  tearDown(() => database.close());\n\n  test('can bind and retrieve 64 bit ints', () {\n    const value = 1 << 63;\n\n    final stmt = database.prepare('SELECT ?');\n    final result = stmt.select(<int>[value]);\n    expect(result, [\n      {'?': value},\n    ]);\n  });\n\n  test('open read-only', () async {\n    final path = d.path('read_only.db');\n\n    // Opening a non-existent database should fail\n    expect(\n      () => sqlite3.open(path, mode: OpenMode.readOnly),\n      throwsSqlError(SqlError.SQLITE_CANTOPEN, SqlError.SQLITE_CANTOPEN),\n    );\n\n    // Open in read-write mode to create the database\n    var db = sqlite3.open(path);\n    // Change the user version to test read-write access\n    db.userVersion = 1;\n    db.close();\n\n    // Open in read-only\n    db = sqlite3.open(path, mode: OpenMode.readOnly);\n\n    // Change the user version to test read-only mode\n    expect(\n      () => db.userVersion = 2,\n      throwsSqlError(SqlError.SQLITE_READONLY, SqlError.SQLITE_READONLY),\n    );\n\n    // Check that it has not changed\n    expect(db.userVersion, 1);\n\n    db.close();\n  });\n\n  test('throws meaningful exception for open failure', () {\n    final path = d.path('nested/does/not/exist.db');\n\n    expect(\n      () => sqlite3.open(path),\n      throwsSqlError(SqlError.SQLITE_CANTOPEN, SqlError.SQLITE_CANTOPEN),\n    );\n  });\n\n  test('busy handler', () {\n    final path = d.path('test.db');\n    final a = sqlite3.open(path);\n    final b = sqlite3.open(path);\n    addTearDown(() {\n      a.close();\n      b.close();\n    });\n\n    a.execute('BEGIN EXCLUSIVE');\n    final busyHandlerInvocations = <int>[];\n    b.busyHandler = (int amount) {\n      busyHandlerInvocations.add(amount);\n      return amount < 3;\n    };\n\n    expect(() => b.execute('BEGIN EXCLUSIVE'), throwsSqlError(5, 5));\n    expect(busyHandlerInvocations, [0, 1, 2, 3]);\n  });\n\n  group('borrowed connections', () {\n    test('fromPointer', () {\n      final originalConnection = sqlite3.openInMemory();\n      originalConnection.execute('CREATE TABLE foo (bar);');\n      final ptr = originalConnection.handle;\n\n      final borrowed = sqlite3.fromPointer(ptr, borrowed: true);\n      expect(borrowed.select('SELECT * FROM foo'), isEmpty);\n      borrowed.close();\n      expect(() => borrowed.select('SELECT 1'), throwsStateError);\n\n      // Closing a borrowed connection should keep the actual connection active.\n      expect(originalConnection.select('SELECT * FROM foo'), isEmpty);\n      originalConnection.close();\n    });\n\n    test('leak', () {\n      final originalConnection = sqlite3.openInMemory();\n      originalConnection.execute('CREATE TABLE foo (bar);');\n      final ptr = originalConnection.leak();\n\n      // originalConnection no longer owns the underlying connection at this\n      // point.\n      originalConnection.close();\n      expect(() => originalConnection.execute('SELECT 1'), throwsStateError);\n\n      // But the connection is still open!\n      final sameConnection = sqlite3.fromPointer(ptr);\n      expect(sameConnection.select('SELECT * FROM foo'), isEmpty);\n      sameConnection.close();\n    });\n  });\n\n  group('borrowed statements', () {\n    test('fromPointer', () {\n      final db = sqlite3.openInMemory();\n      db.execute('CREATE TABLE foo (bar);');\n\n      final originalStatement = db.prepare('SELECT * FROM foo');\n      final ptr = originalStatement.handle;\n\n      final borrowed = db.statementFromPointer(\n        statement: ptr,\n        sql: 'unused',\n        borrowed: true,\n      );\n      expect(borrowed.select(), isEmpty);\n      borrowed.close();\n      expect(() => borrowed.select(), throwsStateError);\n\n      // Closing a borrowed statement should keep the actual statement active.\n      expect(originalStatement.select(), isEmpty);\n      originalStatement.close();\n    });\n\n    test('leak', () {\n      final db = sqlite3.openInMemory();\n      db.execute('CREATE TABLE foo (bar);');\n\n      final originalStatement = db.prepare('SELECT * FROM foo');\n      final ptr = originalStatement.leak();\n\n      // originalStatement no longer owns the underlying sqlite3_stmt at this\n      // point.\n      originalStatement.close();\n      expect(() => originalStatement.select(), throwsStateError);\n\n      // But the statement is still open!\n      final sameStatement = db.statementFromPointer(\n        statement: ptr,\n        sql: 'unused',\n      );\n      expect(sameStatement.select(), isEmpty);\n      sameStatement.close();\n      db.close();\n    });\n  });\n\n  group('backup', () {\n    late String path;\n\n    setUp(() {\n      path = d.path('test.db');\n    });\n\n    test('detects if is in-memory database', () {\n      final db1 = sqlite3.open(path) as FfiDatabaseImplementation;\n      final db2 = sqlite3.openInMemory() as FfiDatabaseImplementation;\n\n      expect(db1.isInMemory, isFalse);\n      expect(db2.isInMemory, isTrue);\n\n      db1.dispose();\n      db2.dispose();\n    });\n\n    test('copy in-memory', () {\n      final db1 = sqlite3.openInMemory();\n      db1.execute('CREATE TABLE a(b INTEGER);');\n      db1.execute('INSERT INTO a VALUES (1);');\n\n      //Should not be included in copy\n      final db2 = sqlite3.copyIntoMemory(db1);\n\n      db1.execute('INSERT INTO a VALUES (2);');\n\n      expect(db2.select('SELECT * FROM a'), hasLength(1));\n      expect(db1.select('SELECT * FROM a'), hasLength(2));\n\n      db1.close();\n      db2.close();\n    });\n\n    test('restore from disk into memory', () {\n      final db1 = sqlite3.open(path);\n      db1.execute('CREATE TABLE a(b INTEGER);');\n      db1.execute('INSERT INTO a VALUES (1);');\n\n      final db2 = sqlite3.copyIntoMemory(db1);\n\n      //Should not be included in copy\n      db1.execute('INSERT INTO a VALUES (2);');\n\n      expect(db2.select('SELECT * FROM a'), hasLength(1));\n      expect(db1.select('SELECT * FROM a'), hasLength(2));\n\n      db1.close();\n      db2.close();\n    });\n\n    group('backup memory to disk', () {\n      var inputs = [-1, 1, 5, 1024];\n\n      for (var nPage in inputs) {\n        test('nPage = $nPage', () async {\n          final db1 = sqlite3.openInMemory();\n          db1.execute('CREATE TABLE a(b INTEGER);');\n          db1.execute('INSERT INTO a VALUES (1);');\n\n          final db2 = sqlite3.open(path);\n\n          final progressStream = db1.backup(db2, nPage: nPage);\n          await expectLater(progressStream, emitsDone);\n\n          //Should not be included in backup\n          db1.execute('INSERT INTO a VALUES (2);');\n\n          db1.close();\n          db2.close();\n\n          final db3 = sqlite3.open(path);\n\n          expect(db3.select('SELECT * FROM a'), hasLength(1));\n\n          db3.close();\n        });\n      }\n    });\n\n    group('backup disk to disk', () {\n      var inputs = [-1, 1, 5, 1024];\n      for (var nPage in inputs) {\n        test('nPage = $nPage', () async {\n          final pathFrom = d.path('test_from.db');\n          Directory(dirname(pathFrom)).createSync(recursive: true);\n\n          if (File(pathFrom).existsSync()) {\n            File(pathFrom).deleteSync();\n          }\n\n          final db1 = sqlite3.open(pathFrom);\n\n          db1.execute('CREATE TABLE a(b INTEGER);');\n          db1.execute('INSERT INTO a VALUES (1);');\n\n          final db2 = sqlite3.open(path);\n\n          final progressStream = db1.backup(db2, nPage: nPage);\n          await expectLater(\n            progressStream,\n            emitsInOrder(<Matcher>[emitsThrough(1), emitsDone]),\n          );\n\n          //Should not be included in backup\n          db1.execute('INSERT INTO a VALUES (2);');\n\n          db1.close();\n          db2.close();\n\n          final db3 = sqlite3.open(path);\n\n          expect(db3.select('SELECT * FROM a'), hasLength(1));\n\n          db3.close();\n\n          if (File(pathFrom).existsSync()) {\n            File(pathFrom).deleteSync();\n          }\n        });\n      }\n    });\n  });\n}\n"
  },
  {
    "path": "sqlite3/test/ffi/errors_test.dart",
    "content": "@Tags(['ffi'])\nlibrary;\n\nimport 'dart:io';\n\nimport 'package:path/path.dart';\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:test/test.dart';\nimport 'package:test_descriptor/test_descriptor.dart' as d;\n\nvoid main() {\n  final version = sqlite3.version;\n  final hasErrorOffset = version.versionNumber > 3038000;\n\n  test('open read-only exception', () async {\n    final path = d.path('read_only_exception.db');\n\n    // Opening a non-existent database should fail\n    try {\n      sqlite3.open(path, mode: OpenMode.readOnly);\n      fail('should fail');\n    } on SqliteException catch (e) {\n      expect(e.extendedResultCode, 14);\n      expect(e.toString(), startsWith('SqliteException(14): '));\n    }\n  });\n\n  test('statement exception', () async {\n    final db = sqlite3.openInMemory();\n\n    // Basic syntax error\n    try {\n      db.execute('DUMMY');\n      fail('should fail');\n    } on SqliteException catch (e) {\n      expect(e.extendedResultCode, 1);\n      expect(e.resultCode, 1);\n      expect(e.toString(), startsWith('SqliteException(1): '));\n    }\n\n    // No table\n    try {\n      db.execute('SELECT * FROM missing_table');\n      fail('should fail');\n    } on SqliteException catch (e) {\n      expect(e.extendedResultCode, 1);\n      expect(e.resultCode, 1);\n    }\n\n    // Constraint primary key\n    db.execute('CREATE TABLE Test (name TEXT PRIMARY KEY)');\n    db.execute(\"INSERT INTO Test(name) VALUES('test1')\");\n    try {\n      db.execute(\"INSERT INTO Test(name) VALUES('test1')\");\n      fail('should fail');\n    } on SqliteException catch (e) {\n      // SQLITE_CONSTRAINT_PRIMARYKEY (1555)\n      expect(e.extendedResultCode, 1555);\n      expect(e.resultCode, 19);\n      expect(e.toString(), startsWith('SqliteException(1555): '));\n    }\n\n    // Constraint using prepared statement\n    db.execute('CREATE TABLE Test2 (id PRIMARY KEY, name TEXT UNIQUE)');\n    final prepared = db.prepare('INSERT INTO Test2(name) VALUES(?)');\n    prepared.execute(['test2']);\n    try {\n      prepared.execute(['test2']);\n      fail('should fail');\n    } on SqliteException catch (e) {\n      // SQLITE_CONSTRAINT_UNIQUE (2067)\n      expect(e.extendedResultCode, 2067);\n      expect(e.resultCode, 19);\n    }\n    db.close();\n  });\n\n  test('busy exception', () async {\n    final path = d.path('busy.db');\n\n    final db1 = sqlite3.open(path);\n    final db2 = sqlite3.open(path);\n    db1.execute('BEGIN EXCLUSIVE TRANSACTION');\n    try {\n      db2.execute('BEGIN EXCLUSIVE TRANSACTION');\n      fail('should fail');\n    } on SqliteException catch (e) {\n      expect(e.extendedResultCode, 5);\n      expect(e.resultCode, 5);\n    }\n    db1.close();\n    db2.close();\n  });\n\n  test('invalid format', () async {\n    final path = d.path('invalid_format.db');\n    // Make sure the path exists\n    await Directory(dirname(path)).create(recursive: true);\n    await File(path).writeAsString('not a database file');\n\n    final db = sqlite3.open(path);\n    try {\n      db.userVersion = 1;\n      fail('should fail');\n    } on SqliteException catch (e) {\n      expect(e.extendedResultCode, 26);\n      expect(e.resultCode, 26);\n    }\n    db.close();\n  });\n\n  group('reports the causing SQL statement', () {\n    late Database db;\n\n    setUp(() => db = sqlite3.openInMemory());\n    tearDown(() => db.close());\n\n    test('in execute()', () {\n      expect(\n        () => db.execute('this is no valid sql'),\n        throwsA(\n          isA<SqliteException>().having(\n            (e) => e.causingStatement,\n            'causingStatement',\n            'this is no valid sql',\n          ),\n        ),\n      );\n    });\n\n    test('for prepared statements (syntax)', () {\n      expect(\n        () => db.prepare('this is no valid sql'),\n        throwsA(\n          isA<SqliteException>().having(\n            (e) => e.causingStatement,\n            'causingStatement',\n            'this is no valid sql',\n          ),\n        ),\n      );\n    });\n\n    test('for prepared statements (selecting)', () {\n      db.createFunction(\n        functionName: 'fail',\n        function: (args) => throw Exception('not allowed'),\n      );\n\n      expect(\n        () => db.prepare('SELECT fail()').select(),\n        throwsA(\n          isA<SqliteException>().having(\n            (e) => e.causingStatement,\n            'causingStatement',\n            'SELECT fail()',\n          ),\n        ),\n      );\n    });\n\n    test('reports previous statement in toString()', () {\n      expect(\n        SqliteException(\n          extendedResultCode: 1,\n          message: 'message',\n          explanation: 'explanation',\n          causingStatement: 'SELECT foo;',\n        ).toString(),\n        '''\nSqliteException(1): message, explanation\n  Causing statement: SELECT foo;''',\n      );\n\n      expect(\n        SqliteException(\n          extendedResultCode: 1,\n          message: 'message',\n          explanation: null,\n          causingStatement: 'SELECT foo;',\n        ).toString(),\n        '''\nSqliteException(1): message\n  Causing statement: SELECT foo;''',\n      );\n    });\n\n    test(\n      'reports position',\n      () {\n        final db = sqlite3.openInMemory();\n        addTearDown(db.close);\n\n        expect(\n          () => db.select('SELECT totally invalid syntax;'),\n          throwsA(\n            isA<SqliteException>()\n                .having(\n                  (e) => e.causingStatement,\n                  'causingStatement',\n                  'SELECT totally invalid syntax;',\n                )\n                .having((e) => e.offset, 'offset', 23)\n                .having(\n                  (e) => e.toString(),\n                  'toString()',\n                  contains('Causing statement (at position 23): SELECT'),\n                ),\n          ),\n        );\n      },\n      skip: hasErrorOffset ? null : 'Missing sqlite3_error_offset',\n    );\n  });\n}\n"
  },
  {
    "path": "sqlite3/test/ffi/ffi_test.dart",
    "content": "@Tags(['ffi'])\nlibrary;\n\nimport 'dart:ffi';\n\nimport 'package:sqlite3/src/ffi/memory.dart';\nimport 'package:test/test.dart';\n\nvoid main() {\n  test('isNullPointer', () {\n    expect(Pointer.fromAddress(1).isNullPointer, isFalse);\n    expect(Pointer.fromAddress(0).isNullPointer, isTrue);\n  });\n}\n"
  },
  {
    "path": "sqlite3/test/ffi/prepared_statement_test.dart",
    "content": "@Tags(['ffi'])\nlibrary;\n\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:test/test.dart';\n\nimport '../common/prepared_statement.dart';\n\nvoid main() {\n  final version = sqlite3.version;\n  final hasReturning = version.versionNumber > 3035000;\n\n  testPreparedStatements(() => sqlite3, supportsReturning: hasReturning);\n}\n"
  },
  {
    "path": "sqlite3/test/ffi/sqlite3_test.dart",
    "content": "@Tags(['ffi'])\nlibrary;\n\nimport 'dart:ffi';\nimport 'dart:io';\n\nimport 'package:path/path.dart' as p;\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:test/test.dart';\nimport 'package:test_descriptor/test_descriptor.dart' as d;\n\nvoid main() {\n  test('get version', () {\n    final version = sqlite3.version;\n    expect(version, isNotNull);\n  });\n\n  test('sqlite3_temp_directory', () {\n    final dir = Directory(d.path('sqlite3/tmp'));\n    dir.createSync(recursive: true);\n    final old = sqlite3.tempDirectory;\n\n    try {\n      sqlite3.tempDirectory = dir.absolute.path;\n\n      final db = sqlite3.open(d.path('tmp.db'));\n      db\n        ..execute('PRAGMA temp_store = FILE;')\n        ..execute('CREATE TEMP TABLE my_tbl (foo, bar);')\n        ..userVersion = 3\n        ..close();\n    } finally {\n      sqlite3.tempDirectory = old;\n    }\n  });\n\n  test(\n    'can load extensions',\n    () async {\n      final sourcePath = p.join(d.sandbox, 'test_extension.c');\n      final String dynamicLibraryPath;\n      final ProcessResult result;\n\n      await File(sourcePath).writeAsString('''\n#include <sqlite3ext.h>\nSQLITE_EXTENSION_INIT1\n\nstatic void my_function(sqlite3_context* context, int argc,\n                        sqlite3_value** argv) {\n  sqlite3_result_text(context, \"my custom extension\", -1, SQLITE_STATIC);\n}\n\n#ifdef _WIN32\n__declspec(dllexport)\n#endif\nint sqlite3_myextension_init(sqlite3* db, char** pzErrMsg,\n                             const sqlite3_api_routines* pApi) {\n  int rc = SQLITE_OK;\n  SQLITE_EXTENSION_INIT2(pApi);\n\n  rc = sqlite3_create_function(\n      db, \"my_function\", 0,\n      SQLITE_UTF8 | SQLITE_INNOCUOUS | SQLITE_DETERMINISTIC, 0, my_function, 0,\n      0);\n\n  return rc;\n}\n''');\n\n      // https://www.sqlite.org/loadext.html#compiling_a_loadable_extension\n      if (Platform.isLinux) {\n        dynamicLibraryPath = p.join(d.sandbox, 'libmy_extension.so');\n\n        result = await Process.run('gcc', [\n          '-fpic',\n          '-shared',\n          sourcePath,\n          '-o',\n          dynamicLibraryPath,\n        ]);\n      } else if (Platform.isWindows) {\n        dynamicLibraryPath = p.join(d.sandbox, 'my_extension.dll');\n\n        result = await Process.run('cl', [\n          sourcePath,\n          '/link',\n          '/DLL',\n          '/OUT:$dynamicLibraryPath',\n        ]);\n      } else if (Platform.isMacOS) {\n        dynamicLibraryPath = p.join(d.sandbox, 'my_extension.dylib');\n\n        result = await Process.run('gcc', [\n          '-fpic',\n          '-dynamiclib',\n          sourcePath,\n          '-o',\n          dynamicLibraryPath,\n        ]);\n      } else {\n        fail('Test should not run on this platform');\n      }\n\n      if (result.exitCode != 0) {\n        fail(\n          'Could not compile shared library for extension: \\n'\n          '${result.stderr}\\n${result.stdout}',\n        );\n      }\n\n      final library = DynamicLibrary.open(dynamicLibraryPath);\n      sqlite3.ensureExtensionLoaded(\n        SqliteExtension.inLibrary(library, 'sqlite3_myextension_init'),\n      );\n\n      final db = sqlite3.openInMemory();\n      addTearDown(db.close);\n      expect(db.select('SELECT my_function() AS r'), [\n        {'r': 'my custom extension'},\n      ]);\n    },\n    tags: 'ci_only',\n    onPlatform: const <String, Skip>{\n      // todo: Ideally we should also test this on macOS, but the extension\n      // doesn't seem to compile with the default includes on this system.\n      // Windows also doesn't seem to work, but I think my poor GitHub actions\n      // setup is to blame for that\n      '!linux': Skip('Unsupported platform'),\n    },\n  );\n}\n"
  },
  {
    "path": "sqlite3/test/ffi/vfs_test.dart",
    "content": "@Tags(['ffi'])\nlibrary;\n\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:test/test.dart';\n\nimport '../common/vfs.dart';\n\nvoid main() {\n  testVfs(() => sqlite3);\n}\n"
  },
  {
    "path": "sqlite3/test/hook/assets_test.dart",
    "content": "@TestOn('vm')\nlibrary;\n\nimport 'package:sqlite3/src/hook/assets.dart';\nimport 'package:test/test.dart';\n\nvoid main() {\n  test('prebuilt libraries have no conflicting hash code', () {\n    // We join the hash code against the outputDirectoryShared of hooks, so\n    // there should be no collisions.\n    final hashes = <String>{};\n    for (final target in PrebuiltSqliteLibrary.all) {\n      expect(hashes.add(target.dirname), isTrue);\n    }\n  });\n}\n"
  },
  {
    "path": "sqlite3/test/hook/description_test.dart",
    "content": "@TestOn('vm')\nlibrary;\n\nimport 'package:code_assets/code_assets.dart';\nimport 'package:hooks/hooks.dart';\nimport 'package:test/test.dart';\nimport 'package:test_descriptor/test_descriptor.dart' as d;\n\nimport '../../hook/build.dart' as hook;\n\nvoid main() {\n  test('system with custom name', () async {\n    await testBuildHook(\n      userDefines: PackageUserDefines(\n        workspacePubspec: PackageUserDefinesSource(\n          defines: {'source': 'system', 'name': 'sqlcipher'},\n          basePath: Uri.file(d.sandbox),\n        ),\n      ),\n      mainMethod: hook.main,\n      check: (input, output) {\n        expect(output.assets.code, [\n          isA<CodeAsset>().having(\n            (e) => e.linkMode,\n            'linkMode',\n            DynamicLoadingSystem(Uri.parse('sqlcipher.dll')),\n          ),\n        ]);\n      },\n      extensions: [\n        CodeAssetExtension(\n          targetArchitecture: Architecture.arm64,\n          targetOS: OS.windows,\n          linkModePreference: LinkModePreference.dynamic,\n        ),\n      ],\n    );\n  });\n}\n"
  },
  {
    "path": "sqlite3/test/jsonb_test.dart",
    "content": "@Tags(['ffi'])\nlibrary;\n\nimport 'dart:convert';\nimport 'dart:typed_data';\n\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:test/test.dart';\n\nvoid main() {\n  final supportsJsonb = sqlite3.version.versionNumber >= 3045000;\n\n  group('encode', () {\n    void expectEncoded(Object? object, String expectedHex) {\n      final encoded = jsonb.encode(object);\n      final hex = encoded\n          .map((e) => e.toRadixString(16).padLeft(2, '0'))\n          .join();\n      expect(hex, expectedHex);\n    }\n\n    test('null', () {\n      expectEncoded(null, '00');\n    });\n\n    test('booleans', () {\n      expectEncoded(true, '01');\n      expectEncoded(false, '02');\n    });\n\n    test('integers', () {\n      expectEncoded(0, '1330');\n      expectEncoded(-1, '232d31');\n    });\n\n    test('doubles', () {\n      expectEncoded(0.0, '35302e30');\n      expectEncoded(-0.0, '452d302e30');\n    });\n\n    test('array', () {\n      expectEncoded([], '0b');\n      expectEncoded([true], 'fb000000000000000101');\n    });\n\n    test('object', () {\n      expectEncoded({}, '0c');\n      expectEncoded({'a': true}, 'fc00000000000000031a6101');\n    });\n\n    test('does not encode circular elements', () {\n      final selfContainingList = [];\n      selfContainingList.add(selfContainingList);\n      final selfContainingMap = {};\n      selfContainingMap['.'] = selfContainingMap;\n\n      expect(\n        () => jsonb.encode(selfContainingList),\n        throwsA(isA<JsonCyclicError>()),\n      );\n      expect(\n        () => jsonb.encode(selfContainingMap),\n        throwsA(isA<JsonCyclicError>()),\n      );\n    });\n\n    test('does not encode invalid elements', () {\n      expect(\n        () => jsonb.encode(jsonb),\n        throwsA(isA<JsonUnsupportedObjectError>()),\n      );\n    });\n\n    test('can call toJson', () {\n      expectEncoded(_CustomJsonRepresentation(), '01');\n    });\n  });\n\n  group('decode', () {\n    Object? decode(String hex) {\n      expect(hex.length.isEven, true);\n      final bytes = Uint8List(hex.length ~/ 2);\n      for (var i = 0; i < bytes.length; i++) {\n        bytes[i] = int.parse(hex.substring(i * 2, (i * 2) + 2), radix: 16);\n      }\n      return jsonb.decode(bytes);\n    }\n\n    void expectDecoded(String hex, Object? decoded) {\n      expect(decode(hex), decoded);\n    }\n\n    test('null', () {\n      expectDecoded('00', null);\n    });\n\n    test('true', () {\n      expectDecoded('01', true);\n    });\n\n    test('false', () {\n      expectDecoded('02', false);\n    });\n\n    test('integers', () {\n      expectDecoded('1330', 0);\n      expectDecoded('232d31', -1);\n    });\n\n    test('doubles', () {\n      expectDecoded('35302e30', 0.0);\n      expectDecoded('452d302e30', -0.0);\n    });\n\n    test('array', () {\n      expectDecoded('0b', []);\n      expectDecoded('1b01', [true]);\n    });\n\n    test('object', () {\n      expectDecoded('0c', {});\n      expectDecoded('3c1a6101', {'a': true});\n    });\n\n    test('supports long primitives', () {\n      // \"Future versions of SQLite might extend the JSONB format with elements\n      // that have a zero element type but a non-zero size. In that way, legacy\n      // versions of SQLite will interpret the element as a NULL for backwards\n      // compatibility while newer versions will interpret the element in some\n      // other way. \"\n      expectDecoded('30000000', null);\n    });\n\n    test('fails for invalid element types', () {\n      expect(() => decode('0d'), throwsA(_isMalformedJsonException));\n      expect(() => decode('0e'), throwsA(_isMalformedJsonException));\n      expect(() => decode('0f'), throwsA(_isMalformedJsonException));\n    });\n\n    test('fails for trailing data', () {\n      expect(() => decode('10'), throwsA(_isMalformedJsonException));\n    });\n  });\n\n  group('round trips', () {\n    late Database database;\n    late PreparedStatement jsonb2json, json2jsonb;\n\n    setUpAll(() {\n      database = sqlite3.openInMemory();\n      if (supportsJsonb) {\n        jsonb2json = database.prepare('SELECT json(?);');\n        json2jsonb = database.prepare('SELECT jsonb(?);');\n      }\n    });\n\n    tearDownAll(() => database.close());\n\n    void check(Object? value, {String? expectDecodesAs}) {\n      final valueMatcher = switch (value) {\n        double(isNaN: true) => isNaN,\n        _ => equals(value),\n      };\n\n      // Check our encoder -> our decoder roundtrip\n      expect(jsonb.decode(jsonb.encode(value)), valueMatcher);\n\n      if (supportsJsonb) {\n        // Check our encoder -> sqlite3 decoder rountrip\n        final sqliteDecoded =\n            jsonb2json.select([jsonb.encode(value)]).single.values.single\n                as String;\n        if (expectDecodesAs != null) {\n          expect(sqliteDecoded, expectDecodesAs);\n        } else {\n          expect(json.decode(sqliteDecoded), valueMatcher);\n        }\n\n        // Check sqlite3 encoder -> our decoder roundtrip\n        final sqliteEncoded =\n            json2jsonb.select([jsonb.encode(value)]).single.values.single\n                as Uint8List;\n        expect(jsonb.decode(sqliteEncoded), valueMatcher);\n      }\n    }\n\n    test('primitives', () {\n      check(null);\n      check(true);\n      check(false);\n      check(0);\n      check(-1);\n      check(0.0);\n      check(double.infinity, expectDecodesAs: 'Infinity');\n      check(double.negativeInfinity, expectDecodesAs: '-Infinity');\n      check('hello world');\n      check('hello \" world');\n      check('hello \\n world');\n    });\n\n    test('arrays', () {\n      check([]);\n      check([1, 2, 3]);\n      check([0, 1.1, 'hello', false, null, 'world']);\n    });\n\n    test('objects', () {\n      check({});\n      check({'foo': 'bar'});\n      check({'a': null, 'b': true, 'c': 0, 'd': 0.1, 'e': 'hi'});\n    });\n\n    test('throws on nan', () {\n      expect(\n        () => jsonb.encode(double.nan),\n        throwsA(isA<JsonUnsupportedObjectError>()),\n      );\n    });\n\n    test(\n      'did use sqlite3 decoder',\n      () {},\n      skip: supportsJsonb\n          ? null\n          : 'Roundtrip tests with SQLite were skipped because the available '\n                'SQLite version does not support JSONB.',\n    );\n  });\n}\n\nfinal class _CustomJsonRepresentation {\n  Object? toJson() => true;\n}\n\nfinal _isMalformedJsonException = isA<ArgumentError>().having(\n  (e) => e.message,\n  'message',\n  'Malformed JSONB',\n);\n"
  },
  {
    "path": "sqlite3/test/source_code_test.dart",
    "content": "@TestOn('vm')\nlibrary;\n\nimport 'dart:io';\n\nimport 'package:analyzer/dart/ast/ast.dart';\nimport 'package:analyzer/dart/analysis/utilities.dart';\nimport 'package:path/path.dart' as p;\nimport 'package:test/test.dart';\n\nvoid main() {\n  test('does not import legacy JS interop files', () {\n    final failures = <(String, String)>[];\n\n    void check(FileSystemEntity e) {\n      switch (e) {\n        case File():\n          if (p.extension(e.path) != '.dart') return;\n\n          final text = e.readAsStringSync();\n          CompilationUnit parsed;\n          try {\n            parsed = parseString(content: text).unit;\n          } catch (ex) {\n            print('Could not parse ${e.path}');\n            rethrow;\n          }\n\n          for (final directive in parsed.directives) {\n            if (directive is ImportDirective) {\n              final uri = directive.uri.stringValue!;\n              if (uri.contains('package:js') ||\n                  uri == 'dart:js' ||\n                  uri == 'dart:js_util' ||\n                  uri == 'dart:html' ||\n                  uri == 'dart:indexeddb') {\n                failures.add((e.path, directive.toString()));\n              }\n            }\n          }\n\n        case Directory():\n          for (final entry in e.listSync()) {\n            check(entry);\n          }\n      }\n    }\n\n    final root = Directory('lib/');\n    check(root);\n\n    expect(\n      failures,\n      isEmpty,\n      reason: 'This package should not import legacy JS code.',\n    );\n  });\n}\n"
  },
  {
    "path": "sqlite3/test/wasm/asset_server.dart",
    "content": "import 'dart:io';\n\nimport 'package:shelf/shelf.dart';\nimport 'package:shelf/shelf_io.dart' as io;\nimport 'package:shelf_static/shelf_static.dart';\nimport 'package:stream_channel/stream_channel.dart';\n\nconst _corsHeaders = {'Access-Control-Allow-Origin': '*'};\n\nMiddleware cors() {\n  Response? handleOptionsRequest(Request request) {\n    if (request.method == 'OPTIONS') {\n      return Response.ok(null, headers: _corsHeaders);\n    } else {\n      // Returning null will run the regular request handler\n      return null;\n    }\n  }\n\n  Response addCorsHeaders(Response response) {\n    return response.change(headers: _corsHeaders);\n  }\n\n  return createMiddleware(\n    requestHandler: handleOptionsRequest,\n    responseHandler: addCorsHeaders,\n  );\n}\n\nFuture<void> hybridMain(StreamChannel<Object?> channel) async {\n  final server = await HttpServer.bind('localhost', 0);\n\n  final handler = const Pipeline()\n      .addMiddleware(cors())\n      .addHandler(createStaticHandler('.'));\n  io.serveRequests(server, handler);\n\n  channel.sink.add(server.port);\n  await channel.stream\n      .listen(null)\n      .asFuture<void>()\n      .then<void>((_) => server.close());\n}\n"
  },
  {
    "path": "sqlite3/test/wasm/common_database_test.dart",
    "content": "@Tags(['wasm'])\nlibrary;\n\nimport 'package:test/test.dart';\n\nimport '../common/database.dart';\nimport '../common/session.dart';\nimport 'utils.dart';\n\nvoid main() {\n  testDatabase(loadSqlite3);\n  group('session', () {\n    testSession(loadSqlite3);\n  });\n}\n"
  },
  {
    "path": "sqlite3/test/wasm/encryption_test.dart",
    "content": "@Tags(['wasm'])\nlibrary;\n\nimport 'dart:typed_data';\n\nimport 'package:sqlite3/wasm.dart';\nimport 'package:test/test.dart';\nimport 'package:typed_data/typed_data.dart';\n\nimport 'utils.dart';\n\nvoid main() {\n  test('can open databases with sqlite3mc', () async {\n    final sqlite3 = await loadSqlite3WithoutVfs(encryption: true);\n    sqlite3.registerVirtualFileSystem(InMemoryFileSystem(name: 'dart-mem'));\n\n    sqlite3.open('/test', vfs: 'multipleciphers-dart-mem')\n      ..execute('pragma key = \"key\"')\n      ..execute('CREATE TABLE foo (bar TEXT) STRICT;')\n      ..execute('INSERT INTO foo VALUES (?)', ['test'])\n      ..close();\n\n    final database = sqlite3.open('/test', vfs: 'multipleciphers-dart-mem');\n    expect(\n      () => database.select('SELECT * FROM foo'),\n      throwsA(\n        isA<SqliteException>().having(\n          (e) => e.message,\n          'message',\n          contains('not a database'),\n        ),\n      ),\n    );\n\n    database.execute('pragma key = \"key\"');\n    expect(database.select('SELECT * FROM foo'), isNotEmpty);\n  });\n\n  test('can encrypt and decrypt databases', () async {\n    final regular = await loadSqlite3WithoutVfs(encryption: false);\n    final ciphers = await loadSqlite3WithoutVfs(encryption: true);\n\n    final memory = InMemoryFileSystem();\n    regular.registerVirtualFileSystem(memory);\n\n    {\n      final db = regular.open('/app.db', vfs: memory.name);\n      db.execute('create table foo (bar text);');\n      db.close();\n    }\n\n    // Replace with encrypted copy.\n    memory.fileData['/app.db'] = Uint8Buffer()\n      ..addAll(\n        _encryptDatabase(\n          ciphers,\n          memory.fileData['/app.db']!.buffer.asUint8List(),\n          'encryption key',\n        ),\n      );\n\n    // Which should now be impossible to open\n    {\n      final db = regular.open('/app.db', vfs: memory.name);\n      expect(\n        () => db.select('SELECT * FROM sqlite_schema'),\n        throwsA(isA<SqliteException>()),\n      );\n\n      db.close();\n    }\n\n    // Replace with decrypted database\n    memory.fileData['/app.db'] = Uint8Buffer()\n      ..addAll(\n        _decryptDatabase(\n          ciphers,\n          memory.fileData['/app.db']!.buffer.asUint8List(),\n          'encryption key',\n        ),\n      );\n\n    // Which we should be able to open again\n    {\n      final db = regular.open('/app.db', vfs: memory.name);\n      expect(db.select('SELECT * FROM sqlite_schema'), hasLength(1));\n\n      db.close();\n    }\n  });\n}\n\nUint8List _encryptDatabase(\n  WasmSqlite3 bindings,\n  Uint8List decrypted,\n  String key,\n) {\n  final vfs = InMemoryFileSystem(name: 'encrypt');\n  vfs.fileData['/app.db'] = Uint8Buffer()..addAll(decrypted);\n  bindings.registerVirtualFileSystem(vfs);\n\n  final db = bindings.open('/app.db', vfs: 'multipleciphers-${vfs.name}');\n  db.execute(\"pragma rekey ='${key.replaceAll(\"'\", \"''\")}'\");\n  db.close();\n  bindings.unregisterVirtualFileSystem(vfs);\n\n  final data = vfs.fileData['/app.db']!;\n  return data.buffer.asUint8List(data.offsetInBytes, data.lengthInBytes);\n}\n\nUint8List _decryptDatabase(\n  WasmSqlite3 bindings,\n  Uint8List decrypted,\n  String key,\n) {\n  final vfs = InMemoryFileSystem(name: 'decrypt');\n  vfs.fileData['/app.db'] = Uint8Buffer()..addAll(decrypted);\n  bindings.registerVirtualFileSystem(vfs);\n\n  final db = bindings.open('/app.db', vfs: 'multipleciphers-${vfs.name}');\n  db.execute(\"pragma key ='${key.replaceAll(\"'\", \"''\")}'\");\n  db.execute(\"pragma rekey = ''\");\n  db.close();\n  bindings.unregisterVirtualFileSystem(vfs);\n\n  final data = vfs.fileData['/app.db']!;\n  return data.buffer.asUint8List(data.offsetInBytes, data.lengthInBytes);\n}\n"
  },
  {
    "path": "sqlite3/test/wasm/file_system_test.dart",
    "content": "@Tags(['wasm'])\nlibrary;\n\nimport 'dart:async';\nimport 'dart:math';\nimport 'dart:typed_data';\n\nimport 'package:sqlite3/wasm.dart';\nimport 'package:test/test.dart';\n\nimport '../common/vfs.dart';\nimport 'utils.dart';\n\nconst _fsRoot = '/test';\n\nFuture<void> main() async {\n  // dart2wasm does not currently support Random.secure(), so we have to use\n  // this as a fallback.\n  final random = Random();\n\n  group('common test', () {\n    testVfs(loadSqlite3WithoutVfs);\n  });\n\n  group('in memory', () {\n    _testWith(() => InMemoryFileSystem(random: random));\n  });\n\n  group('indexed db', () {\n    _testWith(\n      () => IndexedDbFileSystem.open(dbName: _randomName(), random: random),\n    );\n\n    test(\n      'example with frequent writes',\n      () async {\n        final fileSystem = await IndexedDbFileSystem.open(\n          dbName: 'test',\n          random: random,\n        );\n        final sqlite3 = await loadSqlite3(fileSystem);\n        final database = sqlite3.open('test');\n        expect(database.userVersion, 0);\n        database.userVersion = 1;\n        expect(database.userVersion, 1);\n\n        database.execute(\n          'CREATE TABLE IF NOT EXISTS users ( '\n          'id INTEGER NOT NULL, '\n          'name TEXT NOT NULL, '\n          'email TEXT NOT NULL UNIQUE, '\n          'user_id INTEGER NOT NULL, '\n          'PRIMARY KEY (id));',\n        );\n\n        final prepared = database.prepare(\n          'INSERT INTO users '\n          '(id, name, email, user_id) VALUES (?, ?, ?, ?)',\n        );\n\n        for (var i = 0; i < 200; i++) {\n          prepared.execute([\n            BigInt.from(i),\n            'name',\n            'email${BigInt.from(i)}',\n            BigInt.from(i),\n          ]);\n        }\n\n        expect(database.select('SELECT * FROM users'), hasLength(200));\n\n        database.close();\n\n        // file-system should save reasonably quickly\n        await fileSystem.close().timeout(const Duration(seconds: 1));\n\n        final fileSystem2 = await IndexedDbFileSystem.open(\n          dbName: 'test',\n          random: random,\n        );\n        final sqlite32 = await loadSqlite3(fileSystem2);\n        final database2 = sqlite32.open('test');\n        expect(database2.userVersion, 1);\n        expect(database2.select('SELECT * FROM users'), hasLength(200));\n      },\n      onPlatform: {'wasm': Skip('Broken on dart2wasm')},\n    );\n  });\n}\n\nfinal _random = Random(DateTime.now().millisecond);\nString _randomName() => _random.nextInt(0x7fffffff).toString();\n\nFuture<void> _disposeFileSystem(VirtualFileSystem fs, [String? name]) async {\n  if (fs is IndexedDbFileSystem) {\n    await fs.close();\n    if (name != null) await IndexedDbFileSystem.deleteDatabase(name);\n  }\n}\n\nFuture<void> _testWith(FutureOr<VirtualFileSystem> Function() open) async {\n  late VirtualFileSystem fs;\n\n  setUp(() async {\n    fs = await open();\n  });\n\n  tearDown(() => _disposeFileSystem(fs));\n\n  test('can create files', () {\n    expect(fs.exists('$_fsRoot/foo.txt'), isFalse);\n    fs.createFile('$_fsRoot/foo.txt');\n    expect(fs.exists('$_fsRoot/foo.txt'), isTrue);\n    fs.xDelete('$_fsRoot/foo.txt', 0);\n    expect(fs.exists('$_fsRoot/foo.txt'), isFalse);\n  });\n\n  test('can create and delete multiple files', () {\n    final paths = <String>[];\n\n    for (var i = 1; i <= 10; i++) {\n      final path = '$_fsRoot/foo$i.txt';\n      paths.add(path);\n\n      fs.createFile(path);\n      expect(fs.exists(path), isTrue);\n    }\n\n    for (final path in paths) {\n      fs.xDelete(path, 0);\n      expect(fs.exists(path), isFalse);\n    }\n  });\n\n  test('reads and writes', () {\n    expect(fs.exists('$_fsRoot/foo.txt'), isFalse);\n\n    final file = fs\n        .xOpen(Sqlite3Filename('$_fsRoot/foo.txt'), SqlFlag.SQLITE_OPEN_CREATE)\n        .file;\n\n    fs.createFile('$_fsRoot/foo.txt');\n    addTearDown(() {\n      file.xClose();\n      fs.xDelete('$_fsRoot/foo.txt', 0);\n    });\n\n    expect(file.xFileSize(), isZero);\n\n    file.xTruncate(1024);\n    expect(file.xFileSize(), 1024);\n\n    file.xTruncate(600);\n    expect(file.xFileSize(), 600);\n\n    file.xTruncate(0);\n    expect(file.xFileSize(), 0);\n\n    file.xWrite(Uint8List.fromList([1, 2, 3]), 0);\n    expect(file.xFileSize(), 3);\n\n    final target = Uint8List(3);\n    file.xRead(target, 0);\n    expect(target, [1, 2, 3]);\n  });\n}\n\nextension on VirtualFileSystem {\n  bool exists(String file) => xAccess(file, 0) != 0;\n\n  void createFile(String path) {\n    final open = xOpen(Sqlite3Filename(path), SqlFlag.SQLITE_OPEN_CREATE);\n    open.file.xClose();\n  }\n}\n"
  },
  {
    "path": "sqlite3/test/wasm/prepared_statement_test.dart",
    "content": "@Tags(['wasm'])\nlibrary;\n\nimport 'package:test/scaffolding.dart';\n\nimport '../common/prepared_statement.dart';\nimport 'utils.dart';\n\nvoid main() {\n  testPreparedStatements(loadSqlite3);\n}\n"
  },
  {
    "path": "sqlite3/test/wasm/sqlite3_test.dart",
    "content": "@Tags(['wasm'])\nlibrary;\n\nimport 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\n\nimport 'package:http/http.dart' as http;\nimport 'package:sqlite3/wasm.dart';\nimport 'package:test/test.dart';\nimport 'package:web/web.dart' as web;\n\nimport 'utils.dart';\n\nvoid main() {\n  for (final throughFetch in [false, true]) {\n    group(throughFetch ? 'with fetch' : 'manually', () {\n      late WasmSqlite3 sqlite3;\n\n      setUpAll(() async {\n        if (throughFetch) {\n          sqlite3 = await loadSqlite3();\n        } else {\n          final channel = spawnHybridUri('/test/wasm/asset_server.dart');\n          final port = (await channel.stream.first as double).toInt();\n\n          final sqliteWasm = Uri.parse(\n            'http://localhost:$port/example/web/sqlite3.wasm',\n          );\n\n          final response = await http.get(sqliteWasm);\n          if (response.statusCode != 200) {\n            throw StateError(\n              'Could not load module (${response.statusCode} ${response.body})',\n            );\n          }\n\n          sqlite3 = await WasmSqlite3.load(response.bodyBytes);\n          sqlite3.registerVirtualFileSystem(\n            InMemoryFileSystem(),\n            makeDefault: true,\n          );\n        }\n      });\n\n      test('get version', () {\n        final version = sqlite3.version;\n        expect(\n          version,\n          isA<Version>().having(\n            (e) => e.libVersion,\n            'libVersion',\n            startsWith('3.53'),\n          ),\n        );\n      });\n\n      test('can use current date', () {\n        final db = sqlite3.openInMemory();\n        addTearDown(db.close);\n\n        final results = db.select(\n          \"SELECT strftime('%s', CURRENT_TIMESTAMP) AS r\",\n        );\n        final row = results.single['r'] as String;\n\n        expect(\n          int.parse(row),\n          closeTo(DateTime.now().millisecondsSinceEpoch ~/ 1000, 5),\n        );\n      });\n\n      test('can use localtime', () {\n        final db = sqlite3.openInMemory();\n        addTearDown(db.close);\n\n        final testValues = [\n          (DateTime(1970, 1, 1), 1),\n          (DateTime(2025, 1, 1), 1),\n          (DateTime(2025, 2, 11, 13, 14, 15), 42),\n        ];\n\n        final stmt = db.prepare('''\n          SELECT\n            CAST(strftime('%Y', column1, 'unixepoch', 'localtime') AS INTEGER) AS year,\n            CAST(strftime('%m', column1, 'unixepoch', 'localtime') AS INTEGER) AS month,\n            CAST(strftime('%d', column1, 'unixepoch', 'localtime') AS INTEGER) AS day,\n            CAST(strftime('%H', column1, 'unixepoch', 'localtime') AS INTEGER) AS hour,\n            CAST(strftime('%M', column1, 'unixepoch', 'localtime') AS INTEGER) AS minute,\n            CAST(strftime('%S', column1, 'unixepoch', 'localtime') AS INTEGER) AS second,\n            CAST(strftime('%j', column1, 'unixepoch', 'localtime') AS INTEGER) AS day_of_year,\n            CAST(strftime('%u', column1, 'unixepoch', 'localtime') AS INTEGER) AS day_of_week\n          FROM (VALUES(?));\n        ''');\n\n        for (final (value, dayOfYear) in testValues) {\n          final [row] = stmt.select([value.millisecondsSinceEpoch ~/ 1000]);\n          expect(row, {\n            'year': value.year,\n            'month': value.month,\n            'day': value.day,\n            'hour': value.hour,\n            'minute': value.minute,\n            'second': value.second,\n            'day_of_year': dayOfYear,\n            'day_of_week': value.weekday,\n          });\n        }\n      });\n\n      test('can report error location', () {\n        final db = sqlite3.openInMemory();\n        addTearDown(db.close);\n\n        expect(\n          () => db.select('SELECT totally invalid syntax;'),\n          throwsA(\n            isA<SqliteException>()\n                .having(\n                  (e) => e.causingStatement,\n                  'causingStatement',\n                  'SELECT totally invalid syntax;',\n                )\n                .having((e) => e.offset, 'offset', 23)\n                .having(\n                  (e) => e.toString(),\n                  'toString()',\n                  contains('Causing statement (at position 23): SELECT'),\n                ),\n          ),\n        );\n      });\n    });\n  }\n\n  group('can be used in workers', () {\n    late String workerUri;\n    late String wasmUri;\n\n    setUpAll(() async {\n      final channel = spawnHybridUri('/test/wasm/worker_server.dart');\n      final port = (await channel.stream.first as double).toInt();\n\n      final uri = 'http://localhost:$port/worker.dart.js';\n      wasmUri = 'http://localhost:$port/sqlite3.wasm';\n      final blob = web.Blob(\n        ['importScripts(\"$uri\");'.toJS].toJS,\n        web.BlobPropertyBag(type: 'application/javascript'),\n      );\n\n      workerUri = web.URL.createObjectURL(blob);\n    });\n\n    // See worker.dart for the supported backends\n    for (final backend in ['memory', 'opfs-simple', 'opfs', 'indexeddb']) {\n      final requiresSab = backend == 'opfs';\n      final missingSab = requiresSab && globalContext.has('SharedArrayBuffer');\n\n      test(\n        backend,\n        () async {\n          final worker = web.Worker(workerUri.toJS);\n\n          web.EventStreamProviders.errorEvent.forTarget(worker).listen((error) {\n            if (error.instanceOfString('ErrorEvent')) {\n              final event = error as web.ErrorEvent;\n              fail('Error ${event.message} - ${event.error}');\n            } else {\n              fail(error.toString());\n            }\n          });\n\n          // Inform the worker about the test we want to run\n          worker.postMessage([backend.toJS, wasmUri.toJS].toJS);\n\n          final response =\n              (await web.EventStreamProviders.messageEvent\n                          .forTarget(worker)\n                          .first)\n                      .data\n                  as JSArray;\n          final status = response.toDart[0] as JSBoolean;\n\n          if (!status.toDart) {\n            throw 'Exception in worker: $response';\n          }\n        },\n        skip: missingSab\n            ? 'This test requires SharedArrayBuffers that cannot be enabled '\n                  'on this platform with a simple `dart test` setup.'\n            : null,\n        onPlatform: {\n          if (backend == 'opfs')\n            'chrome || edge': Skip('todo: Always times out in GitHub actions'),\n          if (backend == 'opfs')\n            'firefox': Skip('todo: Currently broken in firefox'),\n        },\n      );\n    }\n  });\n}\n"
  },
  {
    "path": "sqlite3/test/wasm/utils.dart",
    "content": "import 'package:sqlite3/wasm.dart';\nimport 'package:test/scaffolding.dart';\n\nFuture<WasmSqlite3> loadSqlite3WithoutVfs({bool encryption = false}) async {\n  final channel = spawnHybridUri('/test/wasm/asset_server.dart');\n  final port = (await channel.stream.first as double).toInt();\n\n  final filename = encryption ? 'sqlite3mc.wasm' : 'sqlite3.wasm';\n  final sqliteWasm = Uri.parse('http://localhost:$port/example/web/$filename');\n\n  return await WasmSqlite3.loadFromUrl(sqliteWasm);\n}\n\nFuture<WasmSqlite3> loadSqlite3([VirtualFileSystem? defaultVfs]) async {\n  final sqlite3 = await loadSqlite3WithoutVfs();\n  sqlite3.registerVirtualFileSystem(\n    defaultVfs ?? InMemoryFileSystem(),\n    makeDefault: true,\n  );\n  return sqlite3;\n}\n"
  },
  {
    "path": "sqlite3/test/wasm/worker.dart",
    "content": "import 'dart:async';\n\nimport 'dart:js_interop';\n\nimport 'package:sqlite3/wasm.dart';\nimport 'package:web/web.dart' as web;\n\n@JS('Array')\nextension type _Array._(JSArray _) implements JSArray {\n  external static bool isArray(JSAny? e);\n}\n\nvoid main() {\n  final scope = (globalContext as web.DedicatedWorkerGlobalScope);\n\n  runZonedGuarded(\n    () {\n      scope.onmessage = Zone.current.bindUnaryCallback((\n        web.MessageEvent event,\n      ) {\n        final rawData = event.data;\n        if (_Array.isArray(rawData)) {\n          final backend = ((rawData as JSArray).toDart[0] as JSString).toDart;\n          final wasmUri = Uri.parse((rawData.toDart[1] as JSString).toDart);\n\n          _startTest(backend, wasmUri);\n        } else {\n          _startOpfsServer(rawData as WorkerOptions);\n        }\n      }).toJS;\n    },\n    (error, stack) {\n      // Inform the calling test in sqlite3_test.dart about the error\n      scope.postMessage(\n        [false.toJS, error.toString().toJS, stack.toString().toJS].toJS,\n      );\n    },\n  );\n}\n\nFuture<void> _startTest(String fsImplementation, Uri wasmUri) async {\n  final scope = (globalContext as web.DedicatedWorkerGlobalScope);\n  Future<void> test;\n\n  switch (fsImplementation) {\n    case 'memory':\n      final fs = InMemoryFileSystem();\n\n      test = _runTest(open: () => fs, close: (fs) async {}, wasmUri: wasmUri);\n      break;\n    case 'indexeddb':\n      test = _runTest(\n        open: () => IndexedDbFileSystem.open(dbName: 'worker-test'),\n        close: (fs) => fs.close(),\n        wasmUri: wasmUri,\n      );\n      break;\n    case 'opfs-simple':\n      test = _runTest(\n        open: () => SimpleOpfsFileSystem.loadFromStorage('worker-test'),\n        close: (fs) async {\n          fs.close();\n        },\n        wasmUri: wasmUri,\n      );\n      break;\n    case 'opfs':\n      test = _runTest(\n        open: () async {\n          // Start another worker with this entrypoint to launch the OPFS\n          // server needed for synchronous access.\n          final options = WasmVfs.createOptions();\n\n          final worker = web.Worker(scope.location.href.toJS);\n          worker.postMessage(options);\n\n          // Wait for the worker to acknowledge it being ready\n          await web.EventStreamProviders.messageEvent.forTarget(worker).first;\n\n          return WasmVfs(workerOptions: options);\n        },\n        close: (vfs) async {\n          vfs.close();\n        },\n        wasmUri: wasmUri,\n      );\n      break;\n    default:\n      scope.postMessage([false.toJS].toJS);\n      return;\n  }\n\n  await test;\n  scope.postMessage([true.toJS].toJS);\n}\n\nFuture<void> _startOpfsServer(WorkerOptions options) async {\n  final worker = await VfsWorker.create(options);\n\n  // Inform the worker running the test that we're on it\n  (globalContext as web.DedicatedWorkerGlobalScope).postMessage(\n    [true.toJS].toJS,\n  );\n  await worker.start();\n}\n\nvoid _expect(bool condition, String reason) {\n  if (!condition) {\n    throw reason;\n  }\n}\n\nFuture<void> _runTest<T extends VirtualFileSystem>({\n  required FutureOr<T> Function() open,\n  required Future<void> Function(T fs) close,\n  required Uri wasmUri,\n}) async {\n  final fileSystem = await open();\n\n  final sqlite3 = await WasmSqlite3.loadFromUrl(wasmUri);\n  sqlite3.registerVirtualFileSystem(fileSystem, makeDefault: true);\n\n  final database = sqlite3.open('database');\n  _expect(database.userVersion == 0, 'Database version should be 0');\n  database.userVersion = 1;\n  _expect(database.userVersion == 1, 'Should be 1 after setting it');\n\n  database.execute(\n    'CREATE TABLE IF NOT EXISTS users ( '\n    'id INTEGER NOT NULL, '\n    'name TEXT NOT NULL, '\n    'email TEXT NOT NULL UNIQUE, '\n    'user_id INTEGER NOT NULL, '\n    'PRIMARY KEY (id));',\n  );\n\n  final prepared = database.prepare(\n    'INSERT INTO users '\n    '(id, name, email, user_id) VALUES (?, ?, ?, ?)',\n  );\n\n  for (var i = 0; i < 200; i++) {\n    prepared.execute([\n      BigInt.from(i),\n      'name',\n      'email${BigInt.from(i)}',\n      BigInt.from(i),\n    ]);\n  }\n\n  _expect(\n    database.select('SELECT * FROM users').length == 200,\n    'Should find 200 rows',\n  );\n\n  database.close();\n\n  // file-system should save reasonably quickly\n  await close(fileSystem).timeout(const Duration(seconds: 1));\n\n  final fileSystem2 = await open();\n  final sqlite32 = await WasmSqlite3.loadFromUrl(wasmUri);\n  sqlite32.registerVirtualFileSystem(fileSystem2, makeDefault: true);\n  final database2 = sqlite32.open('database');\n\n  _expect(database2.userVersion == 1, 'Should be 1 after reload');\n  _expect(\n    database2.select('SELECT * FROM users').length == 200,\n    'Should find 200 rows',\n  );\n  database2.close();\n}\n"
  },
  {
    "path": "sqlite3/test/wasm/worker_server.dart",
    "content": "import 'dart:io';\n\nimport 'package:path/path.dart' as p;\nimport 'package:shelf/shelf.dart';\nimport 'package:shelf/shelf_io.dart' as io;\nimport 'package:shelf_static/shelf_static.dart';\nimport 'package:stream_channel/stream_channel.dart';\nimport 'package:test/test.dart';\n\nimport 'asset_server.dart';\n\nFuture<void> hybridMain(StreamChannel<Object?> channel) async {\n  final directory = Directory.systemTemp\n      .createTempSync('sqlite_dart_web')\n      .resolveSymbolicLinksSync();\n\n  // Copy sqlite3.wasm file expected by the worker\n  await File(\n    'example/web/sqlite3.wasm',\n  ).copy(p.join(directory, 'sqlite3.wasm'));\n\n  // And compile worker code\n  final process = await Process.run(Platform.executable, [\n    'compile',\n    'js',\n    '-o',\n    p.join(directory, 'worker.dart.js'),\n    '-O0',\n    'test/wasm/worker.dart',\n  ]);\n\n  if (process.exitCode != 0) {\n    fail('Could not compile worker');\n  }\n\n  final server = await HttpServer.bind('localhost', 0);\n\n  final handler = const Pipeline()\n      .addMiddleware(cors())\n      .addHandler(createStaticHandler(directory));\n  io.serveRequests(server, handler);\n\n  channel.sink.add(server.port);\n  await channel.stream.listen(null).asFuture<void>().then<void>((_) async {\n    await server.close();\n    await Directory(directory).delete();\n  });\n}\n"
  },
  {
    "path": "sqlite3/tool/check_compile_time_option.dart",
    "content": "import 'dart:ffi';\nimport 'dart:io';\n\nimport 'package:sqlite3/sqlite3.dart';\n\n/// Checks whether the loaded sqlite3 library includes a specific compile-time\n/// option.\n///\n/// This is used to validate automated tests for this package around sqlite3\n/// libraries compiled with different options (we want to make sure the options\n/// are actually set).\n///\n/// Usage: `dart run tool/check_compile_time_option.dart options...`\nvoid main(List<String> args) {\n  final expectedOptions = args.toSet();\n  sqlite3.compileOptions.forEach(expectedOptions.remove);\n\n  if (expectedOptions.isNotEmpty) {\n    print('Following compile-time options where not set: $expectedOptions');\n    exit(1);\n  }\n}\n\ntypedef GetNative = Pointer<Uint8> Function(Int32 n);\ntypedef GetDart = Pointer<Uint8> Function(int n);\n"
  },
  {
    "path": "sqlite3/tool/example_server.dart",
    "content": "import 'dart:io';\n\nimport 'package:build_daemon/client.dart';\nimport 'package:build_daemon/constants.dart';\nimport 'package:build_daemon/data/build_target.dart';\nimport 'package:path/path.dart' as p;\nimport 'package:shelf/shelf.dart';\nimport 'package:shelf/shelf_io.dart';\nimport 'package:shelf_proxy/shelf_proxy.dart';\n\nFuture<void> main() async {\n  final script = Platform.script.toFilePath(windows: Platform.isWindows);\n  final packageDir = p.dirname(p.dirname(script));\n\n  final buildRunner = await BuildDaemonClient.connect(packageDir, [\n    Platform.executable, // dart\n    'run',\n    'build_runner',\n    'daemon',\n  ], logHandler: (log) => print(log.message));\n\n  buildRunner\n    ..registerBuildTarget(DefaultBuildTarget((b) => b.target = 'example'))\n    ..startBuild();\n\n  final assetServerPortFile = File(\n    p.join(daemonWorkspace(packageDir), '.asset_server_port'),\n  );\n  final assetServerPort = int.parse(await assetServerPortFile.readAsString());\n\n  final proxy = proxyHandler('http://localhost:$assetServerPort/example/');\n\n  await serve(\n    (request) async {\n      final pathSegments = request.url.pathSegments;\n\n      if (pathSegments.isEmpty) {\n        return Response(\n          302,\n          headers: {'Location': 'http://localhost:8080/web/'},\n        );\n      }\n\n      final response = await proxy(request);\n\n      return response.change(\n        headers: {\n          // Needed for shared array buffers to work\n          'Cross-Origin-Opener-Policy': 'same-origin',\n          'Cross-Origin-Embedder-Policy': 'require-corp',\n        },\n      );\n    },\n    'localhost',\n    8080,\n  );\n  print('Listening on http://localhost:8080');\n}\n"
  },
  {
    "path": "sqlite3/tool/format_native.sh",
    "content": "#!/bin/sh\nclang-format --style=google -i assets/sqlite3.h assets/sqlite3_dart_wasm.h test/**/*.c\n"
  },
  {
    "path": "sqlite3/tool/generate_bindings.dart",
    "content": "import 'dart:io';\n\nimport 'package:dart_style/dart_style.dart';\nimport 'package:ffigen/ffigen.dart';\nimport 'package:ffigen/src/config_provider/config_types.dart';\nimport 'package:ffigen/src/config_provider/spec_utils.dart';\nimport 'package:ffigen/src/code_generator.dart';\nimport 'package:ffigen/src/context.dart';\nimport 'package:ffigen/src/header_parser.dart' as ffigen;\nimport 'package:logging/logging.dart';\n\nimport '../../sqlite3_wasm_build/tool/wasm_symbols.dart';\n\nvoid main() {\n  Logger.root.onRecord.listen(print);\n\n  _ffigen();\n  writeUsedSymbols();\n  writeWasmDefinitions();\n}\n\nFfiGenerator createGenerator(\n  bool Function(Declaration) filter, {\n  List<String> headers = const ['assets/sqlite3.h'],\n}) {\n  return FfiGenerator(\n    output: Output(\n      dartFile: Uri.parse('lib/src/ffi/libsqlite3.g.dart'),\n      preamble: '// ignore_for_file: type=lint',\n      style: NativeExternalBindings(\n        assetId: 'package:sqlite3/src/ffi/libsqlite3.g.dart',\n      ),\n    ),\n    headers: Headers(\n      entryPoints: [for (final header in headers) Uri.parse(header)],\n    ),\n    structs: Structs(include: filter),\n    functions: Functions(\n      include: filter,\n      includeSymbolAddress: Declarations.includeAll,\n      varArgs: makeVarArgFunctionsMapping({\n        'sqlite3_db_config': [\n          RawVarArgFunction('', ['int', 'int*']),\n        ],\n      }, const {}),\n    ),\n    globals: Globals(include: _includeSqlite3Only),\n  );\n}\n\nvoid _ffigen() {\n  createGenerator(_includeSqlite3Only).generate();\n}\n\nbool _includeSqlite3Only(Declaration declaration) =>\n    declaration.isSqlite3Symbol;\n\nextension on Declaration {\n  bool get isSqlite3Symbol => originalName.startsWith('sqlite3');\n}\n\nvoid writeWasmDefinitions() {\n  bool filter(Declaration d) {\n    return stableFunctions.contains(d.originalName) ||\n        unstable.contains(d.originalName);\n  }\n\n  final generator = createGenerator(\n    filter,\n    headers: ['assets/sqlite3_dart_wasm.h', 'assets/sqlite3.h'],\n  );\n\n  final library = ffigen.parse(Context(Logger.root, generator));\n  final buffer = StringBuffer('''\nimport 'dart:js_interop';\n\nimport 'package:web/web.dart' show Global;\n\n// ignore_for_file: non_constant_identifier_names\ntypedef Pointer = int;\n\n/// Typed wrappers around the symbols exported by SQLite.\n///\n/// Generated by `tool/generate_bindings.dart`.\nextension type SqliteExports(JSObject raw) implements JSObject {\n''');\n\n  void writeType(Type type) {\n    const bigIntInJs = ['Int64', 'Uint64', 'Long'];\n\n    switch (type) {\n      case PointerType():\n        if (type.child.getNativeType() == 'externref ') {\n          buffer.write('ExternalDartReference<Object>?');\n        } else {\n          buffer.write('Pointer /*<${type.getNativeType().trim()}>*/');\n        }\n\n        return;\n      case NativeType():\n        if (bigIntInJs.contains(type.toString())) {\n          buffer.write('JSBigInt');\n          return;\n        }\n      case ImportedType():\n        if (bigIntInJs.contains(type.cType)) {\n          buffer.write('JSBigInt');\n          return;\n        }\n    }\n\n    buffer.write(type.getDartType(library.context));\n  }\n\n  for (final binding in library.bindings) {\n    final mayBeAbsent = !stableFunctions.contains(binding.originalName);\n\n    switch (binding) {\n      case Func():\n        buffer.write('external ');\n        if (mayBeAbsent) {\n          buffer.writeln('JSFunction? get ${binding.originalName};');\n        } else {\n          final type = binding.functionType;\n          writeType(type.returnType);\n          buffer.write(' ${binding.originalName}(');\n\n          for (final (i, arg) in type.parameters.indexed) {\n            if (i != 0) {\n              buffer.write(', ');\n            }\n\n            writeType(arg.type);\n            buffer.write(' ${arg.name}');\n          }\n\n          buffer.writeln(');');\n        }\n\n      case Global():\n        var jsType = 'Global';\n        if (mayBeAbsent) {\n          jsType += '?';\n        }\n\n        buffer\n          ..write('external $jsType get ')\n          ..write(binding.originalName)\n          ..writeln(';');\n    }\n  }\n\n  buffer.writeln('}');\n\n  final formatter = DartFormatter(languageVersion: Version(3, 10, 0));\n  File(\n    'lib/src/wasm/sqlite3_wasm.g.dart',\n  ).writeAsStringSync(formatter.format(buffer.toString()));\n}\n\nvoid writeUsedSymbols() {\n  final buffer = StringBuffer('''\n// Generated by tool/generate_bindings.dart\n// Used to generate a linker script hiding functions we don't need.\n\n// dart format off\nconst usedSqliteSymbols = {\n''');\n  final library = ffigen.parse(\n    Context(Logger.root, createGenerator(_includeSqlite3Only)),\n  );\n\n  for (final binding in library.bindings) {\n    if (binding is Global || binding is Func) {\n      buffer.writeln(\"  '${binding.originalName}',\");\n    }\n  }\n\n  buffer.writeln('};');\n  File('lib/src/hook/used_symbols.dart').writeAsString(buffer.toString());\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/.cargo/config.toml",
    "content": "[target.x86_64-unknown-linux-gnu]\nlinker = \"x86_64-linux-gnu-gcc\"\n\n[target.i686-unknown-linux-gnu]\nlinker = \"i686-linux-gnu-gcc\"\n\n[target.aarch64-unknown-linux-gnu]\nlinker = \"aarch64-linux-gnu-gcc\"\n\n[target.armv7-unknown-linux-gnueabihf]\nlinker = \"arm-linux-gnueabihf-gcc\"\n\n[target.riscv64gc-unknown-linux-gnu]\nlinker = \"riscv64-linux-gnu-gcc\"\n"
  },
  {
    "path": "sqlite3_connection_pool/.gitignore",
    "content": "target\n"
  },
  {
    "path": "sqlite3_connection_pool/CHANGELOG.md",
    "content": "## 0.2.4\n\n- Fix `SqliteConnectionPool.updatedTables` emitting updates before a transaction has completed.\n\n## 0.2.3\n\n- Close read connections before write connection to clean up `-wal` and `-shm` files.\n- Add `select` and `execute` helpers to `PoolConnection`.\n- Add `PoolConnection.unsafePointer` and `PoolConnection.unsafeFromPointer`.\n\n## 0.2.2\n\n- Rollback transactions potentially left from killed isolates previously using a connection.\n\n## 0.2.1\n\n- Export the `PoolConnection` class.\n- Fix errors in `openAsync` being unhandled.\n\n## 0.2.0+1\n\n- Add `SqliteConnectionPool.openAsync` to open pools asynchronously.\n- Add `SqliteConnectionPool.updatedTables` to listen for table updates.\n- Add `PoolConnections.preparedStatementCacheSize`. When set to a positive value, `execute` and `select` will cache used prepared statements.\n\n## 0.1.1\n\n- Migrate to automated publishing.\n\n## 0.1.0\n\n- Initial version.\n"
  },
  {
    "path": "sqlite3_connection_pool/Cargo.toml",
    "content": "[package]\nname = \"sqlite3_connection_pool\"\nversion = \"0.1.0\"\nedition = \"2024\"\n\n[lib]\ncrate-type = [\"cdylib\"]\n\n[dependencies]\nlru = { version = \"0.16.3\", default-features = false }\n\n[profile.release]\nopt-level = \"s\"\nlto = true\ncodegen-units = 1\npanic = \"abort\"\nstrip = true\n"
  },
  {
    "path": "sqlite3_connection_pool/LICENSE",
    "content": "MIT License\n\nCopyright (c) 2026 Simon Binder\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "sqlite3_connection_pool/README.md",
    "content": "# sqlite3_connection_pool\n\nA high-performance connection pool for SQLite on native platforms.\n\n## Background\n\nSQLite is a synchronous database engine, and this is reflected by `package:sqlite3` having\nsynchronous methods as well.\nTo avoid doing IO on your UI isolate, one typically wraps the `sqlite3` package in a system\nthat transparently runs queries on a background isolate (drift, sqlite_async and sqflite_common_ffi\nall do this).\n\nHaving an isolate act as a \"server\" for SQLite queries works, but doesn't come without issues:\n\n1. The communication scheme between isolates is complex to write.\n2. To avoid \"database is locked\" errors, database access _must_ be coordinated through that isolate.\n   For use-cases like background tasks, getting two isolates in the same process to talk to each\n   other can be complicated.\n3. Copying results over isolates can be expensive for large result sets.\n\nThis package explores a different approach that doesn't have those limitations.\nInstead of managing a connection pool in Dart, it is maintained by a small Rust library.\nThe library keeps a global map of active connection pools, so pools can be used even across\nFlutter engines or background tasks.\n\nWhile the pool is asynchronous, it hands out `Database` instances from the `sqlite3` package that\ncan be used synchronously. If you're using databases on existing background isolates where synchronous\naccess is okay, this is _much_ cheaper.\n\nDatabases can also be used asynchronously. To implement that, the library spawns a short-lived isolate\nfor each call that runs the query. In modern Dart versions, spawning isolates is very cheap.\nAdditionally, because each isolate only runs one query, we can \"move\" result sets across isolates\ninstead of having to copy!\n\n## Overview\n\nTo open a connection pool, call `SqliteConnectionPool.open`. That method takes a name, which should\ntypically be the path of the database, and a callback to initialize connections:\n\n```dart\nfinal pool = SqliteConnectionPool.open(\n  name: '/path/to/database.db',\n  openConnections: () {\n    // Open one write and multiple read connections.\n    return PoolConnections(\n      openDatabase(true),\n      [for (var i = 0; i < 4; i++) openDatabase(false)]\n    );\n  },\n);\n\nDatabase openDatabase(bool writer) {\n  final db = sqlite3.open('/path/to/database.db');\n  db.execute('pragma journal_mode = wal;');\n  if (!writer) {\n    db.execute('pragma query_only = true');\n  }\n}\n```\n\nNote that opening pools is synchronized: If two isolates race to create the same pool, `openConnections`\nwill only be called on one of them.\n\nAfter you have access to a pool, you can:\n\n- Run statements on the write connection: `await pool.execute('CREATE TABLE foo (bar TEXT);')`.\n- Run queries on a read connection: `await pool.readQuery('SELECT * FROM foo')`.\n- Obtain a read or write connection for multiple queries with `await pool.reader()` or `await pool.writer()`.\n Connections obtained this way must be returned into the pool with `returnLease()`.\n- Inspect all connections at once with `await pool.exclusiveAccess()`.\n\nYou can explicitly close pools with `close()`, the underlying connections will be closed once all pools\nwith the shared name have been closed.\n"
  },
  {
    "path": "sqlite3_connection_pool/analysis_options.yaml",
    "content": "include: package:lints/recommended.yaml\n\nanalyzer:\n  language:\n    strict-casts: true\n    strict-raw-types: true\n"
  },
  {
    "path": "sqlite3_connection_pool/example/main.dart",
    "content": "import 'package:sqlite3/sqlite3.dart';\nimport 'package:sqlite3_connection_pool/sqlite3_connection_pool.dart';\n\nvoid main() async {\n  Database openDatabase() {\n    return sqlite3.openInMemory();\n  }\n\n  final pool = SqliteConnectionPool.open(\n    name: 'test.db',\n    openConnections: () => PoolConnections(openDatabase(), [\n      for (var i = 0; i < 5; i++) openDatabase(),\n    ]),\n  );\n\n  {\n    final exclusive = await pool.exclusiveAccess();\n    await exclusive.writer.execute('CREATE TEMPORARY TABLE conn(id);');\n    await exclusive.writer.execute('INSERT INTO conn VALUES (?)', ['writer']);\n\n    for (final (i, reader) in exclusive.readers.indexed) {\n      await reader.execute('CREATE TEMPORARY TABLE conn(id);');\n      await reader.execute('INSERT INTO conn VALUES (?)', ['reader-$i']);\n    }\n    exclusive.close();\n  }\n\n  pool.close();\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/hook/build.dart",
    "content": "import 'dart:io';\n\nimport 'package:code_assets/code_assets.dart';\nimport 'package:hooks/hooks.dart';\n\nFuture<void> main(List<String> args) {\n  return build(args, (input, output) async {\n    if (!input.config.buildCodeAssets) {\n      return;\n    }\n\n    final sourceRoot = input.packageRoot;\n    final config = input.config.code;\n    final outputName = config.targetOS.dylibFileName('sqlite3_connection_pool');\n\n    // For versions of this package that are published to pub.dev, assets for\n    // all supported ABIs are copied to lib/src/precompiled. Use those if\n    // available.\n    final precompiled = sourceRoot.resolve('lib/src/precompiled/');\n    if (Directory.fromUri(precompiled).existsSync()) {\n      final outputPath = input.outputDirectory.resolve(outputName);\n\n      String assetName;\n      if (config.targetOS == OS.iOS &&\n          config.iOS.targetSdk == IOSSdk.iPhoneOS) {\n        assetName = 'libsqlite3_connection_pool.ios_aarch64.dylib';\n      } else if (_prebuiltAssets[(config.targetOS, config.targetArchitecture)]\n          case final asset?) {\n        assetName = config.targetOS.dylibFileName(\n          'sqlite3_connection_pool.$asset',\n        );\n      } else {\n        throw ArgumentError(\n          'Unsupported target ABI: ${config.targetArchitecture} on '\n          '${config.targetOS}. Please file an issue on '\n          'https://github.com/simolus3/sqlite3.dart/ !',\n        );\n      }\n\n      File.fromUri(\n        precompiled.resolve(assetName),\n      ).copySync(outputPath.toFilePath());\n\n      output.assets.code.add(\n        CodeAsset(\n          package: 'sqlite3_connection_pool',\n          name: 'sqlite3_connection_pool.dart',\n          linkMode: DynamicLoadingBundled(),\n          file: outputPath,\n        ),\n      );\n    } else {\n      // We can't use precompiled assets, use cargo to compile for the current\n      // platform.\n      if (config.targetOS != OS.current ||\n          config.targetArchitecture != Architecture.current) {\n        throw UnsupportedError(\n          'Since lib/src/precompiled is missing, this hook only supports '\n          'the host ABI.',\n        );\n      }\n\n      final build = await Process.start('cargo', [\n        'build',\n      ], mode: ProcessStartMode.inheritStdio);\n      if (await build.exitCode case final code when code != 0) {\n        throw StateError('Rust build failed: exit code $code');\n      }\n\n      final library = sourceRoot.resolve('target/debug/$outputName');\n\n      final depsFile = File.fromUri(\n        library.resolve(\n          Platform.isWindows\n              ? 'sqlite3_connection_pool.d'\n              : 'libsqlite3_connection_pool.d',\n        ),\n      );\n\n      final depsContent = depsFile.readAsStringSync();\n      // Format: \"target: dep1 dep2 ...\"\n      final [_, depsList] = depsContent.split(': ');\n      // Paths with spaces are escaped as \"\\ \" in the Makefile format.\n      final deps = depsList.split(RegExp(r'(?<!\\\\) '));\n      for (final dep in deps) {\n        final trimmed = dep.trim().replaceAll(r'\\ ', ' ');\n        if (trimmed.isNotEmpty) {\n          output.dependencies.add(Uri.file(trimmed));\n        }\n      }\n      // Also invalidate build when Cargo.lock changes.\n      output.dependencies.add(Uri.file('Cargo.lock'));\n\n      output.assets.code.add(\n        CodeAsset(\n          package: 'sqlite3_connection_pool',\n          name: 'sqlite3_connection_pool.dart',\n          linkMode: DynamicLoadingBundled(),\n          file: library,\n        ),\n      );\n    }\n  });\n}\n\nconst _prebuiltAssets = {\n  (OS.windows, Architecture.x64): 'win_x64',\n  (OS.windows, Architecture.arm64): 'win_aarch64',\n\n  (OS.macOS, Architecture.x64): 'macos_x64',\n  (OS.macOS, Architecture.arm64): 'macos_aarch64',\n\n  // Note: The non-simulator build is special-cased as a lookup.\n  (OS.iOS, Architecture.x64): 'ios_sim_x64',\n  (OS.iOS, Architecture.arm64): 'ios_sim_aarch64',\n\n  (OS.linux, Architecture.x64): 'linux_x64',\n  (OS.linux, Architecture.riscv64): 'linux_riscv',\n  (OS.linux, Architecture.arm): 'linux_arm7',\n  (OS.linux, Architecture.arm64): 'linux_aarch64',\n\n  (OS.android, Architecture.arm64): 'android_v8a',\n  (OS.android, Architecture.x64): 'android_x86_64',\n  (OS.android, Architecture.arm): 'android_v7a',\n};\n"
  },
  {
    "path": "sqlite3_connection_pool/lib/sqlite3_connection_pool.dart",
    "content": "export 'src/abort_exception.dart';\nexport 'src/connection.dart' show PoolConnection;\nexport 'src/raw.dart' show PoolConnections;\nexport 'src/pool.dart';\n"
  },
  {
    "path": "sqlite3_connection_pool/lib/src/abort_exception.dart",
    "content": "/// An exception signalling that a request on a pool has been aborted.\n@pragma('vm:deeply-immutable')\nfinal class PoolAbortException implements Exception {\n  const PoolAbortException();\n\n  @override\n  String toString() {\n    return 'PoolAbortException: A request on a pool was aborted because the '\n        'passed abort future completed';\n  }\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/lib/src/connection.dart",
    "content": "/// @docImport 'pool.dart';\nlibrary;\n\nimport 'dart:ffi';\n\nimport 'package:sqlite3/sqlite3.dart';\n\nimport 'raw.dart';\n\n/// A connection that is part of a connection pool.\n///\n/// This provides access to the underlying [Database] and the prepared statement\n/// cache for the connection.\n///\n/// Pool connections are owned by the pool. All instances of this class\n/// represent _temporary references_ to a pool connection. Further, while pool\n/// connections can be sent across isolates, they must never be used\n/// concurrently. This makes [PoolConnection] an unsafe class to use directly,\n/// users should use prefer to use the [AsyncConnection] wrapper instead.\nfinal class PoolConnection {\n  /// The leased database connection.\n  final Database database;\n\n  final PoolConnectionRef _ref;\n\n  PoolConnection._(this._ref)\n    : database = sqlite3.fromPointer(_ref.rawDatabase, borrowed: true);\n\n  /// Wraps a pointer obtained through [unsafePointer].\n  ///\n  /// To use this safely, see the notes on [unsafePointer].\n  factory PoolConnection.unsafeFromPointer(Pointer<void> connection) {\n    return PoolConnection._(PoolConnectionRef(connection.cast()));\n  }\n\n  /// The underlying pointer representing this pool connection.\n  ///\n  /// The address of this pointer can safely be sent across isolates, but:\n  ///\n  ///  1. The connection must never be used concurrently.\n  ///  2. The pointer is only valid until this connection is closed.\n  Pointer<void> get unsafePointer {\n    return _ref.connection.cast();\n  }\n\n  /// Run a query on this connection, using the prepared statement cache if it\n  /// has been enabled.\n  ResultSet select(String sql, [List<Object?> parameters = const []]) {\n    final cached = lookupCachedStatement(sql);\n\n    final ResultSet resultSet;\n    if (cached != null) {\n      resultSet = cached.select(parameters);\n      cached.reset();\n    } else {\n      final stmt = database.prepare(sql, checkNoTail: true);\n      resultSet = stmt.select(parameters);\n      stmt.reset();\n      if (!storeCachedStatement(sql, stmt)) {\n        stmt.close();\n      }\n    }\n\n    return resultSet;\n  }\n\n  /// Executes the given [sql] statement with the [parameters].\n  ///\n  /// If parameters are empty, [sql] is allowed to contain more than one\n  /// statement. Otherwise, this relies on prepared statements which might be\n  /// cached depending on how the pool is configured.\n  void execute(String sql, [List<Object?> parameters = const []]) {\n    if (lookupCachedStatement(sql) case final cached?) {\n      cached\n        ..execute(parameters)\n        ..reset();\n    } else if (parameters.isNotEmpty) {\n      final stmt = database.prepare(sql, checkNoTail: true);\n      stmt\n        ..execute(parameters)\n        ..reset();\n      if (!storeCachedStatement(sql, stmt)) {\n        stmt.close();\n      }\n    } else {\n      // The sql text is allowed to contain multiple statements, so we can't\n      // cache them.\n      database.execute(sql);\n    }\n  }\n\n  PreparedStatement? lookupCachedStatement(String sql) {\n    final ptr = _ref.lookupCachedStatement(sql);\n    if (ptr.address == 0) return null;\n\n    return database.statementFromPointer(\n      statement: ptr,\n      sql: sql,\n      borrowed: true,\n    );\n  }\n\n  /// A call to this method invalidates all prior [lookupCachedStatement] return\n  /// values, as the underlying statement could have been evicted from this\n  /// call.\n  bool storeCachedStatement(String sql, PreparedStatement stmt) {\n    final didInsert = _ref.putCachedStatement(sql, stmt.handle.cast());\n    if (didInsert) {\n      // Detach Dart finalizer to move ownership into the pool.\n      stmt.leak();\n      return true;\n    }\n\n    return false;\n  }\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/lib/src/ffi.g.dart",
    "content": "// ignore_for_file: type=lint\n// AUTO GENERATED FILE, DO NOT EDIT.\n//\n// Generated by `package:ffigen`.\n// ignore_for_file: unused_import\n@ffi.DefaultAsset(\n  'package:sqlite3_connection_pool/sqlite3_connection_pool.dart',\n)\nlibrary;\n\nimport 'dart:ffi' as ffi;\nimport '' as self;\n\n@ffi.Native<\n  ffi.Pointer<ConnectionPool> Function(\n    ffi.Pointer<ffi.Uint8>,\n    ffi.UintPtr,\n    ffi.Pointer<ffi.NativeFunction<ffi.Pointer<InitializedPool> Function()>>,\n  )\n>()\nexternal ffi.Pointer<ConnectionPool> pkg_sqlite3_connection_pool_open(\n  ffi.Pointer<ffi.Uint8> name,\n  int name_len,\n  ffi.Pointer<ffi.NativeFunction<ffi.Pointer<InitializedPool> Function()>>\n  initialize,\n);\n\n@ffi.Native<ffi.Void Function(ffi.Pointer<ConnectionPool>)>()\nexternal void pkg_sqlite3_connection_pool_close(\n  ffi.Pointer<ConnectionPool> pool,\n);\n\n@ffi.Native<\n  ffi.Pointer<PoolRequest> Function(\n    ffi.Pointer<ConnectionPool>,\n    ffi.Int64,\n    ffi.Int64,\n  )\n>(isLeaf: true)\nexternal ffi.Pointer<PoolRequest> pkg_sqlite3_connection_pool_obtain_read(\n  ffi.Pointer<ConnectionPool> pool,\n  int tag,\n  int port,\n);\n\n@ffi.Native<\n  ffi.Pointer<PoolRequest> Function(\n    ffi.Pointer<ConnectionPool>,\n    ffi.Int64,\n    ffi.Int64,\n  )\n>(isLeaf: true)\nexternal ffi.Pointer<PoolRequest> pkg_sqlite3_connection_pool_obtain_write(\n  ffi.Pointer<ConnectionPool> pool,\n  int tag,\n  int port,\n);\n\n@ffi.Native<\n  ffi.Pointer<PoolRequest> Function(\n    ffi.Pointer<ConnectionPool>,\n    ffi.Int64,\n    ffi.Int64,\n  )\n>(isLeaf: true)\nexternal ffi.Pointer<PoolRequest> pkg_sqlite3_connection_pool_obtain_exclusive(\n  ffi.Pointer<ConnectionPool> pool,\n  int tag,\n  int port,\n);\n\n@ffi.Native<ffi.UintPtr Function(ffi.Pointer<ConnectionPool>)>()\nexternal int pkg_sqlite3_connection_pool_query_read_connection_count(\n  ffi.Pointer<ConnectionPool> pool,\n);\n\n@ffi.Native<\n  ffi.Void Function(\n    ffi.Pointer<ConnectionPool>,\n    ffi.Pointer<ffi.Pointer<PoolConnection>>,\n    ffi.Pointer<ffi.Pointer<PoolConnection>>,\n    ffi.UintPtr,\n  )\n>()\nexternal void pkg_sqlite3_connection_pool_query_connections(\n  ffi.Pointer<ConnectionPool> pool,\n  ffi.Pointer<ffi.Pointer<PoolConnection>> writer,\n  ffi.Pointer<ffi.Pointer<PoolConnection>> readers,\n  int reader_count,\n);\n\n@ffi.Native<ffi.Void Function(ffi.Pointer<PoolRequest>)>()\nexternal void pkg_sqlite3_connection_pool_request_close(\n  ffi.Pointer<PoolRequest> request,\n);\n\n@ffi.Native<\n  ffi.Void Function(ffi.Pointer<ConnectionPool>, ffi.Int, ffi.Int64)\n>()\nexternal void pkg_sqlite3_connection_pool_update_listener(\n  ffi.Pointer<ConnectionPool> pool,\n  int add,\n  int listener,\n);\n\n@ffi.Native<ffi.Void Function(ffi.Pointer<PoolRequest>)>()\nexternal void pkg_sqlite3_connection_pool_notify_updates(\n  ffi.Pointer<PoolRequest> request,\n);\n\n@ffi.Native<\n  ffi.Pointer<ffi.Void> Function(\n    ffi.Pointer<PoolConnection>,\n    ffi.Pointer<ffi.Uint8>,\n    ffi.UintPtr,\n  )\n>(isLeaf: true)\nexternal ffi.Pointer<ffi.Void> pkg_sqlite3_connection_pool_stmt_cache_get(\n  ffi.Pointer<PoolConnection> connection,\n  ffi.Pointer<ffi.Uint8> sql,\n  int sql_len,\n);\n\n@ffi.Native<\n  ffi.Int Function(\n    ffi.Pointer<PoolConnection>,\n    ffi.Pointer<ffi.Uint8>,\n    ffi.UintPtr,\n    ffi.Pointer<ffi.Void>,\n    ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>)>>,\n  )\n>(isLeaf: true)\nexternal int pkg_sqlite3_connection_pool_stmt_cache_put(\n  ffi.Pointer<PoolConnection> connection,\n  ffi.Pointer<ffi.Uint8> sql,\n  int sql_len,\n  ffi.Pointer<ffi.Void> stmt,\n  ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>)>>\n  sqlite3_finalize,\n);\n\nconst addresses = _SymbolAddresses();\n\nclass _SymbolAddresses {\n  const _SymbolAddresses();\n  ffi.Pointer<\n    ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ConnectionPool>)>\n  >\n  get pkg_sqlite3_connection_pool_close =>\n      ffi.Native.addressOf(self.pkg_sqlite3_connection_pool_close);\n  ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<PoolRequest>)>>\n  get pkg_sqlite3_connection_pool_request_close =>\n      ffi.Native.addressOf(self.pkg_sqlite3_connection_pool_request_close);\n}\n\nfinal class ConnectionPool extends ffi.Opaque {}\n\nfinal class PoolRequest extends ffi.Opaque {}\n\nfinal class PoolConnection extends ffi.Struct {\n  external ffi.Pointer<ffi.Void> raw;\n}\n\nfinal class ExternalFunctions extends ffi.Struct {\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  sqlite3_update_hook;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  sqlite3_commit_hook;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<\n      ffi.Void Function(\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<ffi.Void>,\n        ffi.Pointer<ffi.Void>,\n      )\n    >\n  >\n  sqlite3_rollback_hook;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>)>\n  >\n  sqlite3_get_autocommit;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>)>\n  >\n  sqlite3_finalize;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>)>\n  >\n  sqlite3_close_v2;\n\n  external ffi.Pointer<\n    ffi.NativeFunction<ffi.Int Function(ffi.Int64, ffi.Pointer<ffi.Void>)>\n  >\n  dart_post_c_object;\n}\n\nfinal class InitializedPool extends ffi.Struct {\n  external ExternalFunctions functions;\n\n  external ffi.Pointer<ffi.Void> write;\n\n  external ffi.Pointer<ffi.Pointer<ffi.Void>> reads;\n\n  @ffi.UintPtr()\n  external int read_count;\n\n  @ffi.UintPtr()\n  external int prepared_statement_cache_size;\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/lib/src/mutex.dart",
    "content": "import 'dart:async';\nimport 'dart:collection';\n\nimport 'package:meta/meta.dart';\n\nimport 'abort_exception.dart';\n\n/// An asynchronous mutex that allows aborting requests.\n@internal\nfinal class Mutex {\n  bool _inCriticalSection = false;\n  final Queue<void Function()> _waiting = Queue();\n\n  Future<T> withCriticalSection<T>(\n    FutureOr<T> Function() action, {\n    Future<void>? abort,\n  }) async {\n    var holdsMutex = false;\n\n    void markCompleted() {\n      if (!holdsMutex) {\n        return;\n      }\n\n      if (_waiting.isNotEmpty) {\n        _waiting.removeFirst()();\n      } else {\n        _inCriticalSection = false;\n      }\n    }\n\n    if (!_inCriticalSection) {\n      assert(_waiting.isEmpty);\n      _inCriticalSection = true;\n      holdsMutex = true;\n      return Future.sync(action).whenComplete(markCompleted);\n    } else {\n      assert(_inCriticalSection);\n      final completer = Completer<T>.sync();\n\n      void complete() {\n        holdsMutex = true;\n        completer.complete(Future.sync(action));\n      }\n\n      abort?.whenComplete(() {\n        if (!completer.isCompleted) {\n          final didRemove = _waiting.remove(complete);\n\n          // The only way for waiters to get removed is for [complete] to get\n          // called, so we wouldn't enter this branch.\n          assert(didRemove);\n          completer.completeError(const PoolAbortException());\n        }\n      });\n\n      _waiting.addLast(complete);\n      return completer.future.whenComplete(markCompleted);\n    }\n  }\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/lib/src/pool.dart",
    "content": "/// @docImport 'abort_exception.dart';\nlibrary;\n\nimport 'dart:async';\nimport 'dart:ffi';\nimport 'dart:isolate';\n\nimport 'package:sqlite3/sqlite3.dart';\n\nimport 'connection.dart';\nimport 'mutex.dart';\nimport 'raw.dart';\n\n/// The result of calling [ConnectionLease.execute]. This provides access to the\n/// `autocommit` state (indicating whether the database is in a transaction) as\n/// well as the changes and last insert rowid.\ntypedef ExecuteResult = ({bool autoCommit, int changes, int lastInsertRowId});\n\n/// A pool giving out SQLite connections asynchronously.\n///\n/// Pools are identified by name and managed by native code, which means that\n/// even two isolates without a communication channel can safely share pools.\n///\n/// To open a pool, use [SqliteConnectionPool.open]. Pools are closed with\n/// [SqliteConnectionPool.close] (or by just not referencing them any longer),\n/// but the underlying connections are only closed once all pool instances\n/// across isolates are closed.\n///\n/// You can query pools directly, [readQuery] runs a read-only select statement\n/// and [execute] runs writes (including writes with a `RETURNING` statement).\n///\n/// Additionally, [reader] and [writer] return a [ConnectionLease] which allows\n/// running multiple statements on the same connection (useful e.g. for\n/// transactions). Obtained leases must be returned to the pool with\n/// [ConnectionLease.returnLease].\n///\n/// Finally, [exclusiveAccess] gives you exclusive access to the pool. This is\n/// useful in some cases where a schema update needs to be applied to read\n/// connections explicitly.\nfinal class SqliteConnectionPool {\n  /// The name identifying this pool.\n  ///\n  /// In a Dart process (across all isolates), there will at most be one pool\n  /// with a given name at the same time. Multiple instances with the same name\n  /// will always share the same underlying pool.\n  final String name;\n  final RawSqliteConnectionPool _raw;\n  final StreamController<List<String>> _updatedTables =\n      StreamController.broadcast();\n  RawReceivePort? _receiveTableUpdates;\n\n  bool _isClosed = false;\n\n  SqliteConnectionPool._(this.name, this._raw) {\n    _updatedTables.onListen = () {\n      assert(_receiveTableUpdates == null);\n      final port = _receiveTableUpdates = RawReceivePort(\n        (List<dynamic> msg) => _updatedTables.add(msg.cast()),\n        'Receive table updates',\n      );\n      _raw.addUpdateListener(port.sendPort);\n    };\n    _updatedTables.onCancel = () {\n      if (_receiveTableUpdates case final port?) {\n        port.close();\n        _raw.removeUpdateListener(port.sendPort);\n        _receiveTableUpdates = null;\n      }\n    };\n  }\n\n  void _checkNotClosed() {\n    if (_isClosed) {\n      throw StateError('This connection pool is closed');\n    }\n  }\n\n  void _installAbortSignal(RawPoolRequest request, Future<void>? abortSignal) {\n    if (abortSignal != null) {\n      abortSignal.whenComplete(() {\n        if (!request.isCompleted) {\n          request.close();\n        }\n      });\n    }\n  }\n\n  /// A broadcast stream of tables affected by write transactions on this\n  /// database.\n  ///\n  /// For each completed transaction that updated at least one table, this will\n  /// emit a [List] of affected tables. The stream emits updates asynchronously,\n  /// _after_ the source table has been changed.\n  ///\n  /// This stream will also emit items if the update is made by an independent\n  /// isolate or another Dart/Flutter engine in the same process.\n  ///\n  /// By default, updates are only collected when a [writer] or\n  /// [exclusiveAccess] is returned. Emitting in a SQLite commit hook directly\n  /// causes race conditions, as the commit might still be ongoing by the time\n  /// we emit events here.\n  /// For long-running writes that using multiple transactions,\n  /// [ConnectionLease.notifyUpdates] can be used to emit updates before a\n  /// writer is returned.\n  Stream<List<String>> get updatedTables => _updatedTables.stream;\n\n  /// Obtains a connection suitable for reads from the connection pool.\n  ///\n  /// The returned [ConnectionLease] must be returned to the pool via\n  /// [ConnectionLease.returnLease] so that it can be given to another writer\n  /// later. It has native finalizers attached to it, so the connection would\n  /// eventually be returned even if the owning isolate crashes or forgets to\n  /// call [ConnectionLease.returnLease]. Explicitly returning the lease is\n  /// strongly recommended though.\n  ///\n  /// If an [abortSignal] is given and the future completes before the write\n  /// connection became available, the future may complete with an\n  /// [PoolAbortException] instead.\n  Future<ConnectionLease> reader({Future<void>? abortSignal}) async {\n    _checkNotClosed();\n    final (request, future) = _raw.requestRead();\n    _installAbortSignal(request, abortSignal);\n\n    final connectionPointer = await future;\n    final lease = ConnectionLease._(\n      PoolConnection.unsafeFromPointer(connectionPointer.connection),\n      request,\n      false,\n    );\n    await lease._rollbackPendingTransaction();\n    return lease;\n  }\n\n  /// Obtains a connection suitable for writes from the connection pool.\n  ///\n  /// There is only one write connection for the entire pool, so different\n  /// isolates or Flutter engines calling this method will not be able to issue\n  /// writes concurrently, preventing \"database is locked\" errors.\n  ///\n  /// The returned [ConnectionLease] must be returned to the pool via\n  /// [ConnectionLease.returnLease] so that it can be given to another writer\n  /// later. It has native finalizers attached to it, so the connection would\n  /// eventually be returned even if the owning isolate crashes or forgets to\n  /// call [ConnectionLease.returnLease]. Explicitly returning the lease is\n  /// strongly recommended though.\n  ///\n  /// If an [abortSignal] is given and the future completes before the write\n  /// connection became available, the future may complete with an\n  /// [PoolAbortException] instead.\n  Future<ConnectionLease> writer({Future<void>? abortSignal}) async {\n    _checkNotClosed();\n    final (request, future) = _raw.requestWrite();\n    _installAbortSignal(request, abortSignal);\n\n    final connectionPointer = await future;\n    final lease = ConnectionLease._(\n      PoolConnection.unsafeFromPointer(connectionPointer.connection),\n      request,\n      true,\n    );\n    await lease._rollbackPendingTransaction();\n    return lease;\n  }\n\n  /// Requests exclusive access to this pool.\n  ///\n  /// Having exclusive access allows access to all read connections and the\n  /// write connection at the same time.\n  ///\n  /// To unblock after waiters after you're done with exclusive access, call\n  /// [ExclusivePoolAccess.close].\n  ///\n  /// If an [abortSignal] is given and the future completes before the write\n  /// connection became available, the future may complete with an\n  /// [PoolAbortException] instead.\n  Future<ExclusivePoolAccess> exclusiveAccess({\n    Future<void>? abortSignal,\n  }) async {\n    _checkNotClosed();\n    final (request, future) = _raw.requestExclusive();\n    _installAbortSignal(request, abortSignal);\n    await future;\n\n    final (:writer, :readers) = _raw.queryConnections();\n    final exclusive = ExclusivePoolAccess._(request, writer, readers);\n    await exclusive._rollbackPendingTransactions();\n    return exclusive;\n  }\n\n  /// Executes the [sql] statement on the write connection.\n  Future<ExecuteResult> execute(\n    String sql, {\n    List<Object?> parameters = const [],\n  }) async {\n    final connection = await writer();\n    try {\n      return await connection.execute(sql, parameters);\n    } finally {\n      connection.returnLease();\n    }\n  }\n\n  /// Runs a query on a reading connection from the pool.\n  Future<ResultSet> readQuery(\n    String sql, {\n    List<Object?> parameters = const [],\n  }) async {\n    final connection = await reader();\n    try {\n      final (rs, _) = await connection.select(sql, parameters);\n      return rs;\n    } finally {\n      connection.returnLease();\n    }\n  }\n\n  /// Closes this connection pool.\n  ///\n  /// This will prevent subsequent [reader] and [writer] requests, but existing\n  /// in-flight requests will continue be valid until they're aborted or until\n  /// [ConnectionLease.returnLease] is called.\n  ///\n  /// Once all pool instances (across isolates) are closed, the underlying\n  /// SQLite connections will be closed as well.\n  void close() {\n    if (!_isClosed) {\n      _raw.close();\n      _receiveTableUpdates?.close();\n      _receiveTableUpdates = null;\n      _updatedTables.close();\n      _isClosed = true;\n    }\n  }\n\n  /// Opens a connection pool, initializing it with connections if this is the\n  /// first instance of that pool.\n  ///\n  /// The [name] uniquely identifies the pool in this process. If two isolates\n  /// call [open] with the same name, they'll get access to the same physical\n  /// pool.\n  ///\n  /// [openConnections] should return a [PoolConnections] instance with a writer\n  /// and a list of read connections. The exact configuration of those\n  /// connections is up to the user, but connections should be configured to use\n  /// `WAL` mode and there should be at least one read connection:\n  ///\n  ///```dart\n  /// final pool = SqliteConnectionPool.open(\n  ///   name: '/path/to/database.db',\n  ///   openConnections: () {\n  ///     // Open one write and multiple read connections.\n  ///     return PoolConnections(\n  ///       openDatabase(true),\n  ///       [for (var i = 0; i < 4; i++) openDatabase(false)]\n  ///     );\n  ///   },\n  /// );\n  ///\n  /// Database openDatabase(bool writer) {\n  ///   final db = sqlite3.open('/path/to/database.db');\n  ///   db.execute('pragma journal_mode = wal;');\n  ///   if (!writer) {\n  ///     db.execute('pragma query_only = true');\n  ///   }\n  /// }\n  /// ```\n  static SqliteConnectionPool open({\n    required String name,\n    required PoolConnections Function() openConnections,\n  }) {\n    return SqliteConnectionPool._(\n      name,\n      RawSqliteConnectionPool.open(name, openConnections),\n    );\n  }\n\n  /// Like [open], but calls [openConnections] on a fresh isolate to avoid\n  /// blocking the current one in case the setup requires an IO operation.\n  static Future<SqliteConnectionPool> openAsync({\n    required String name,\n    required PoolConnections Function() openConnections,\n  }) async {\n    final receiveOpenNotification = ReceivePort();\n    final firstMessage = receiveOpenNotification.first;\n    await Isolate.spawn(_openAsyncEntrypoint, (\n      name,\n      openConnections,\n      receiveOpenNotification.sendPort,\n    ));\n\n    final message = await firstMessage;\n    // This is either a send port, to which we send a message to close the\n    // isolate after we've opened the pool on this side, or an (error, trace)\n    // pair on exceptions.\n    if (message is! SendPort) {\n      final (error, trace) = message as (Object, StackTrace);\n      Error.throwWithStackTrace(error, trace);\n    }\n\n    final closeIsolate = message;\n    final pool = open(\n      name: name,\n      openConnections: () {\n        throw AssertionError(\n          'The pool is open in the other isolate, so it should not be '\n          're-opened here.',\n        );\n      },\n    );\n    closeIsolate.send(null);\n    return pool;\n  }\n\n  static void _openAsyncEntrypoint(\n    (String, PoolConnections Function(), SendPort) options,\n  ) async {\n    final (name, open, port) = options;\n    SqliteConnectionPool pool;\n    try {\n      pool = SqliteConnectionPool.open(name: name, openConnections: open);\n    } catch (e, s) {\n      Isolate.exit(port, (e, s));\n    }\n\n    // Now that we've opened the pool, inform the other isolate. It can open the\n    // same pool and that's guaranteed not to open it.\n    final close = ReceivePort();\n    port.send(close.sendPort);\n    await close.first;\n\n    pool.close();\n    close.close();\n  }\n}\n\n/// A database connection with utilities to safely use it asynchronously.\n///\n/// This provides asynchronous access to the underlying database. The database\n/// can be used directly (through [unsafeAccess]). Typically however, one would\n/// use the [select] and [execute] methods to automatically run statements and\n/// queries in short-lived background isolates.\nbase class AsyncConnection {\n  final PoolConnection _connection;\n\n  // Because the database is used across multiple isolates (the current one and\n  // the short-lived ones used for computations), we need to guard access to the\n  // database with a mutex.\n  final Mutex _mutex = Mutex();\n  var _closed = false;\n\n  AsyncConnection._(this._connection);\n\n  /// If the connection is in a transaction, rolls that transaction back.\n  ///\n  /// If we receive a connection that hasn't been returned in an idle state\n  /// (for instance because the isolate originally using it didn't shut down\n  /// cleanly), we want to rollback pending transactions.\n  ///\n  /// This is meant to be called after a connection has been obtained from the\n  /// pool.\n  Future<void> _rollbackPendingTransaction() async {\n    if (!_connection.database.autocommit) {\n      await unsafeAccessOnIsolate((db) => db.database.execute('ROLLBACK'));\n    }\n  }\n\n  /// Gets unprotected acccess to the [Database] without a mutex.\n  ///\n  /// Calling this method is unsafe if another call on this [ConnectionLease] is\n  /// operating concurrently.\n  PoolConnection get unsafeRawConnection => _connection;\n\n  /// Calls [computation] as a critical section with the underlying database.\n  ///\n  /// This method is very easy to misuse, and should be used carefully. In\n  /// particular, all of the following can trigger undefined behavior:\n  ///\n  ///  1. Calling [Database.close].\n  ///  2. Calling any method on [Database] after [computation] (or, if it's\n  ///     asynchronous, its future) completes.\n  Future<T> unsafeAccess<T>(\n    FutureOr<T> Function(PoolConnection) computation,\n  ) async {\n    if (_closed) {\n      throw StateError('LeasedDatabase used after callback returned');\n    }\n\n    return _mutex.withCriticalSection(() => computation(_connection));\n  }\n\n  /// On a short-lived isolate, calls [computation] as a critical section with\n  /// the underlying database.\n  ///\n  /// See [unsafeAccess] for potential issues to be aware of when calling this\n  /// method.\n  Future<T> unsafeAccessOnIsolate<T>(\n    FutureOr<T> Function(PoolConnection) computation,\n  ) {\n    return unsafeAccess((conn) {\n      final address = conn.unsafePointer.address;\n      return Isolate.run(() {\n        final conn = PoolConnection.unsafeFromPointer(\n          Pointer.fromAddress(address),\n        );\n        return computation(conn);\n      });\n    });\n  }\n\n  /// Returns the [Database.autocommit] status for the wrapped database.\n  Future<bool> get autocommit {\n    // the autocommit call is too cheap to justify a background isolate.\n    return unsafeAccess((conn) => conn.database.autocommit);\n  }\n\n  /// Runs [sql] with [parameters] and returns results (both the [ResultSet] and\n  /// a record of affected rows).\n  Future<(ResultSet, ExecuteResult)> select(\n    String sql, [\n    List<Object?> parameters = const [],\n  ]) {\n    return unsafeAccessOnIsolate((conn) {\n      final resultSet = conn.select(sql, parameters);\n      return (resultSet, _execResult(conn.database));\n    });\n  }\n\n  /// Executes [sql] with [parameters] and returns affected rows.\n  Future<ExecuteResult> execute(\n    String sql, [\n    List<Object?> parameters = const [],\n  ]) {\n    return unsafeAccessOnIsolate((conn) {\n      conn.execute(sql, parameters);\n\n      return _execResult(conn.database);\n    });\n  }\n\n  void _close() {\n    _closed = true;\n    // This doesn't call sqlite3_close_v2 because the connection has been opened\n    // with borrowed: true. It just prevents using the connection object any\n    // further.\n    _connection.database.close();\n  }\n\n  static ExecuteResult _execResult(Database db) {\n    return (\n      autoCommit: db.autocommit,\n      changes: db.updatedRows,\n      lastInsertRowId: db.lastInsertRowId,\n    );\n  }\n}\n\n/// A SQLite database connection that has been leased from a connection pool and\n/// must be returned to it with [returnLease].\n///\n/// If this object is no longer referenced, or if the isolate with exclusive\n/// access is closed for any reason, the lease is also automatically returned.\n\nfinal class ConnectionLease extends AsyncConnection {\n  // The native request from which the database has been obtained. Closing this\n  // will return the connection to the pool.\n  final RawPoolRequest _request;\n  final bool _isWriter;\n\n  ConnectionLease._(super._connection, this._request, this._isWriter)\n    : super._();\n\n  /// Returns this leased connection back to the pool.\n  ///\n  /// This connection may not be used after calling this method.\n  void returnLease() {\n    _close();\n    _request.close();\n  }\n\n  /// Manual signal to add tables to [SqliteConnectionPool.updatedTables].\n  ///\n  /// By default, local writes made while a connection was leased from the pool\n  /// propagate to [SqliteConnectionPool.updatedTables] when the write\n  /// connection is returned. This is a sensible default for most cases, but\n  /// long-running writers issuing multiple transactions might want to notify\n  /// updates after each transaction without returning the write lease.\n  ///\n  /// This method emits pending updates when:\n  ///\n  ///   1. This is a write transaction.\n  ///   2. It is not in a transaction ([autocommit] is true).\n  ///   3. There are pending writes from an earlier completed transaction that\n  ///      haven't made it to [SqliteConnectionPool.updatedTables] yet.\n  Future<void> notifyUpdates() {\n    return unsafeAccess((_) {\n      if (_isWriter && !_closed) {\n        _request.notifyUpdates();\n      }\n    });\n  }\n}\n\n/// Provides access to all connections of a database pool.\n///\n/// After obtaining this instance, it must eventually be [close]d to allow other\n/// readers and writers to progress.\n///\n/// If this object is no longer referenced, or if the isolate with exclusive\n/// access is closed for any reason, the handle is also automatically returned.\nfinal class ExclusivePoolAccess {\n  /// The single write connection of the connection pool.\n  final AsyncConnection writer;\n\n  /// All read connections in the pool.\n  final List<AsyncConnection> readers;\n  final RawPoolRequest _request;\n\n  ExclusivePoolAccess._(\n    this._request,\n    PoolConnectionRef writer,\n    List<PoolConnectionRef> readers,\n  ) : writer = AsyncConnection._(\n        PoolConnection.unsafeFromPointer(writer.connection),\n      ),\n      readers = [\n        for (final reader in readers)\n          AsyncConnection._(\n            PoolConnection.unsafeFromPointer(reader.connection),\n          ),\n      ];\n\n  Future<void> _rollbackPendingTransactions() async {\n    await Future.wait([\n      writer._rollbackPendingTransaction(),\n      for (final reader in readers) reader._rollbackPendingTransaction(),\n    ]);\n  }\n\n  /// Returns this exclusive access instance, allowing other readers and writers\n  /// to use the pool.\n  void close() {\n    if (writer._closed) {\n      return;\n    }\n\n    writer._close();\n    for (final reader in readers) {\n      reader._close();\n    }\n\n    _request.close();\n  }\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/lib/src/raw.dart",
    "content": "import 'dart:async';\nimport 'dart:convert';\nimport 'dart:ffi';\nimport 'dart:isolate';\n\nimport 'package:ffi/ffi.dart';\nimport 'package:meta/meta.dart';\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:sqlite3/unstable/ffi_bindings.dart' as libsqlite3;\n\nimport 'abort_exception.dart';\nimport 'ffi.g.dart';\n\nfinal _poolFinalizer = NativeFinalizer(\n  addresses.pkg_sqlite3_connection_pool_close.cast(),\n);\n\nfinal _requestFinalizer = NativeFinalizer(\n  addresses.pkg_sqlite3_connection_pool_request_close.cast(),\n);\n\n@internal\nfinal class RawSqliteConnectionPool implements Finalizable {\n  var _requestCounter = 0;\n  final Map<int, Completer<_PoolLease>> _outstandingRequests = {};\n\n  final Pointer<ConnectionPool> _pool;\n  final RawReceivePort _receivePort = RawReceivePort();\n  final Object _detachToken = Object();\n\n  int get _nativePort => _receivePort.sendPort.nativePort;\n\n  RawSqliteConnectionPool._(this._pool) {\n    _poolFinalizer.attach(this, _pool.cast(), detach: _detachToken);\n\n    _receivePort.handler = (List<Object?> message) {\n      final tag = message[0] as int;\n      final isExclusive = message[1] as bool;\n      final completer = _outstandingRequests.remove(tag);\n      if (completer == null) {\n        return;\n      }\n\n      _PoolLease parsed;\n      if (isExclusive) {\n        parsed = const _ExclusiveLease();\n      } else {\n        final poolConnection = Pointer<PoolConnection>.fromAddress(\n          message[2] as int,\n        );\n        parsed = _SingleConnectionLease(PoolConnectionRef(poolConnection));\n      }\n\n      completer.complete(parsed);\n    };\n  }\n\n  (int, Completer<_PoolLease>) _createRequest() {\n    final id = _requestCounter++;\n    return (id, _outstandingRequests[id] = Completer());\n  }\n\n  (RawPoolRequest, Future<PoolConnectionRef>) requestRead() {\n    final (tag, completer) = _createRequest();\n    final request = RawPoolRequest._(\n      tag,\n      this,\n      pkg_sqlite3_connection_pool_obtain_read(_pool, tag, _nativePort),\n    );\n\n    return (\n      request,\n      completer.future.then((f) => (f as _SingleConnectionLease)._connection),\n    );\n  }\n\n  (RawPoolRequest, Future<PoolConnectionRef>) requestWrite() {\n    final (tag, completer) = _createRequest();\n    final request = RawPoolRequest._(\n      tag,\n      this,\n      pkg_sqlite3_connection_pool_obtain_write(_pool, tag, _nativePort),\n    );\n\n    return (\n      request,\n      completer.future.then((f) => (f as _SingleConnectionLease)._connection),\n    );\n  }\n\n  (RawPoolRequest, Future<void>) requestExclusive() {\n    final (tag, completer) = _createRequest();\n    final request = RawPoolRequest._(\n      tag,\n      this,\n      pkg_sqlite3_connection_pool_obtain_exclusive(_pool, tag, _nativePort),\n    );\n\n    return (request, completer.future);\n  }\n\n  /// May only be called if the caller has an active exclusive request on this\n  /// pool.\n  ({PoolConnectionRef writer, List<PoolConnectionRef> readers})\n  queryConnections() {\n    final amountOfReaders =\n        pkg_sqlite3_connection_pool_query_read_connection_count(_pool);\n    return using((alloc) {\n      final writeConnectionPointer = alloc<Pointer<PoolConnection>>();\n      final readConnectionPointers = alloc<Pointer<PoolConnection>>(\n        amountOfReaders,\n      );\n\n      pkg_sqlite3_connection_pool_query_connections(\n        _pool,\n        writeConnectionPointer,\n        readConnectionPointers,\n        amountOfReaders,\n      );\n\n      final readers = List.generate(\n        amountOfReaders,\n        (i) => PoolConnectionRef(readConnectionPointers[i]),\n      );\n\n      return (\n        writer: PoolConnectionRef(writeConnectionPointer.value),\n        readers: readers,\n      );\n    });\n  }\n\n  void addUpdateListener(SendPort port) {\n    pkg_sqlite3_connection_pool_update_listener(_pool, 1, port.nativePort);\n  }\n\n  void removeUpdateListener(SendPort port) {\n    pkg_sqlite3_connection_pool_update_listener(_pool, 0, port.nativePort);\n  }\n\n  void close() {\n    _poolFinalizer.detach(_detachToken);\n    pkg_sqlite3_connection_pool_close(_pool);\n    _receivePort.close();\n  }\n\n  static RawSqliteConnectionPool open(\n    String name,\n    PoolConnections Function() open,\n  ) {\n    (Object, StackTrace)? openException;\n\n    final pool = using((alloc) {\n      final encoded = utf8.encode(name);\n      final namePtr = alloc<Uint8>(encoded.length);\n      namePtr.asTypedList(encoded.length).setAll(0, encoded);\n\n      final initializeCallable =\n          NativeCallable<Pointer<InitializedPool> Function()>.isolateLocal(() {\n            final initOptionsPtr = alloc<InitializedPool>();\n            final initOptions = initOptionsPtr.ref;\n            initOptions.functions\n              ..sqlite3_update_hook = libsqlite3.addresses.sqlite3_update_hook\n                  .cast()\n              ..sqlite3_rollback_hook = libsqlite3\n                  .addresses\n                  .sqlite3_rollback_hook\n                  .cast()\n              ..sqlite3_commit_hook = libsqlite3.addresses.sqlite3_commit_hook\n                  .cast()\n              ..sqlite3_get_autocommit = libsqlite3\n                  .addresses\n                  .sqlite3_get_autocommit\n                  .cast()\n              ..sqlite3_finalize = libsqlite3.addresses.sqlite3_finalize.cast()\n              ..sqlite3_close_v2 = libsqlite3.addresses.sqlite3_close_v2.cast()\n              ..dart_post_c_object = NativeApi.postCObject.cast();\n\n            try {\n              final PoolConnections(\n                :readers,\n                :writer,\n                :preparedStatementCacheSize,\n              ) = open();\n\n              initOptions.write = writer.leak().cast();\n              initOptions.read_count = readers.length;\n              initOptions.reads = alloc(readers.length);\n              initOptions.prepared_statement_cache_size =\n                  preparedStatementCacheSize;\n\n              for (final (i, reader) in readers.indexed) {\n                (initOptions.reads + i).value = reader.leak().cast();\n              }\n            } catch (e, s) {\n              openException = (e, s);\n              return nullptr;\n            }\n\n            return initOptionsPtr;\n          });\n\n      final connection = pkg_sqlite3_connection_pool_open(\n        namePtr,\n        encoded.length,\n        initializeCallable.nativeFunction,\n      );\n      initializeCallable.close();\n      return connection;\n    });\n\n    if (pool.address == 0) {\n      if (openException case final exception?) {\n        // Couldn't open because the callback threw an exception, rethrow that.\n        Error.throwWithStackTrace(exception.$1, exception.$2);\n      }\n\n      // Unreachable, opening a pool can only fail due to the callback throwing.\n      throw AssertionError();\n    }\n\n    return RawSqliteConnectionPool._(pool);\n  }\n}\n\n/// A write and a collection of read connections to put into a connection pool.\nfinal class PoolConnections {\n  final Database writer;\n  final List<Database> readers;\n\n  /// If set to a positive value, creates a cache of prepared statements for\n  /// each connection.\n  ///\n  /// The cache is a LRU map with the indicated size.\n  final int preparedStatementCacheSize;\n\n  PoolConnections(\n    this.writer,\n    this.readers, {\n    this.preparedStatementCacheSize = 0,\n  }) : assert(preparedStatementCacheSize >= 0);\n}\n\nextension type PoolConnectionRef(\n  /// The pool connection, used to manage cached prepared statements.\n  Pointer<PoolConnection>\n  connection\n) {\n  /// The `sqlite3*` connection pointer.\n  Pointer<Void> get rawDatabase => connection.ref.raw;\n\n  Pointer<Void> lookupCachedStatement(String sql) {\n    final encoded = utf8.encode(sql);\n    return pkg_sqlite3_connection_pool_stmt_cache_get(\n      connection,\n      encoded.address,\n      encoded.length,\n    );\n  }\n\n  bool putCachedStatement(String sql, Pointer<Void> statement) {\n    final encoded = utf8.encode(sql);\n    return pkg_sqlite3_connection_pool_stmt_cache_put(\n          connection,\n          encoded.address,\n          encoded.length,\n          statement,\n          libsqlite3.addresses.sqlite3_finalize.cast(),\n        ) !=\n        0;\n  }\n}\n\n@internal\nfinal class RawPoolRequest implements Finalizable {\n  final int _dartTag;\n  final RawSqliteConnectionPool _pool;\n\n  final Pointer<PoolRequest> _handle;\n  final Object _detachToken = Object();\n\n  RawPoolRequest._(this._dartTag, this._pool, this._handle) {\n    _requestFinalizer.attach(this, _handle.cast(), detach: _detachToken);\n  }\n\n  bool get isCompleted => !_pool._outstandingRequests.containsKey(_dartTag);\n\n  void close() {\n    _requestFinalizer.detach(_detachToken);\n    pkg_sqlite3_connection_pool_request_close(_handle);\n\n    _pool._outstandingRequests\n        .remove(_dartTag)\n        ?.completeError(PoolAbortException());\n  }\n\n  void notifyUpdates() {\n    pkg_sqlite3_connection_pool_notify_updates(_handle);\n  }\n}\n\nsealed class _PoolLease {\n  const _PoolLease();\n}\n\nfinal class _SingleConnectionLease extends _PoolLease {\n  /// The SQLite connection being leased.\n  final PoolConnectionRef _connection;\n\n  _SingleConnectionLease(this._connection);\n}\n\nfinal class _ExclusiveLease extends _PoolLease {\n  const _ExclusiveLease();\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/pubspec.yaml",
    "content": "name: sqlite3_connection_pool\ndescription: High-performance async connection pool for SQLite on native platforms.\nversion: 0.2.4\nhomepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_connection_pool\nissue_tracker: https://github.com/simolus3/sqlite3.dart/issues\nresolution: workspace\n\nenvironment:\n  sdk: ^3.10.0\n\ntopics:\n  - sql\n  - database\n  - ffi\n  - sqlite\n\ndependencies:\n  code_assets: ^1.0.0\n  ffi: ^2.2.0\n  hooks: ^1.0.0\n  meta: ^1.17.0\n  sqlite3: ^3.2.0\n\ndev_dependencies:\n  async: ^2.13.0\n  lints: ^6.1.0\n  ffigen: ^20.1.1\n  logging: ^1.3.0\n  test: ^1.29.0\n  test_descriptor: ^2.0.2\n  path: ^1.9.1\n"
  },
  {
    "path": "sqlite3_connection_pool/src/client.rs",
    "content": "use crate::dart::DartPort;\nuse crate::pool::ConnectionPool;\n\npub struct PoolClient {\n    pub pool: ConnectionPool,\n    update_listeners: Vec<DartPort>,\n}\n\nimpl PoolClient {\n    pub fn new(pool: ConnectionPool) -> Self {\n        Self {\n            pool,\n            update_listeners: Default::default(),\n        }\n    }\n\n    pub fn register_update_listener(&mut self, update_listener: DartPort) {\n        self.update_listeners.push(update_listener);\n        let mut pool = self.pool.lock().unwrap();\n        pool.register_update_listener(update_listener);\n    }\n\n    pub fn remove_update_listener(&mut self, update_listener: DartPort) {\n        self.update_listeners\n            .retain(|listener| listener != &update_listener);\n        let mut pool = self.pool.lock().unwrap();\n        pool.remove_update_listeners(&[update_listener]);\n    }\n}\n\nimpl Drop for PoolClient {\n    fn drop(&mut self) {\n        if !self.update_listeners.is_empty() {\n            let mut pool = self.pool.lock().unwrap();\n            pool.remove_update_listeners(&self.update_listeners);\n        }\n    }\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/src/connection.rs",
    "content": "use crate::pool::ExternalFunctions;\nuse lru::LruCache;\nuse std::ffi::{c_int, c_void};\nuse std::num::NonZeroUsize;\nuse std::ptr::NonNull;\n\n#[derive(Copy, Clone)]\n#[repr(transparent)]\npub struct Connection(pub *const c_void);\n\nunsafe impl Send for Connection {}\nunsafe impl Sync for Connection {}\n\n#[derive(Copy, Clone, PartialEq, Eq)]\n#[repr(transparent)]\npub struct PreparedStatement(pub NonNull<c_void>);\n\nunsafe impl Send for PreparedStatement {}\nunsafe impl Sync for PreparedStatement {}\n\npub struct StatementCache {\n    cache: LruCache<String, PreparedStatement>,\n}\n\nimpl StatementCache {\n    pub fn new(size: usize) -> Option<Self> {\n        Some(Self {\n            cache: LruCache::new(NonZeroUsize::new(size)?),\n        })\n    }\n\n    pub fn lookup(&mut self, sql: &str) -> Option<NonNull<c_void>> {\n        self.cache.get(sql).map(|p| p.0)\n    }\n\n    pub fn put(\n        &mut self,\n        sql: String,\n        stmt: PreparedStatement,\n        finalize: extern \"C\" fn(PreparedStatement) -> c_int,\n    ) {\n        if let Some((_, old)) = self.cache.push(sql, stmt) {\n            if old != stmt {\n                // We had to remove an older statement from the cache to make room for the new one.\n                // Properly finalize that statement now.\n                finalize(old);\n            }\n        }\n    }\n\n    pub fn close_statements(&mut self, functions: &ExternalFunctions) {\n        for (_, stmt) in self.cache.iter() {\n            (functions.sqlite3_finalize)(*stmt);\n        }\n\n        self.cache.clear()\n    }\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/src/dart.rs",
    "content": "use std::ffi::{c_int, c_void};\n\n/// A wrapper around a native `SendPort`.\n#[derive(Clone, Copy, PartialEq, Eq)]\n#[repr(transparent)]\npub struct DartPort(i64);\n\n// https://github.com/dart-lang/sdk/blob/0a88f4ef734c464150b253708bb2699be3598c65/runtime/include/dart_native_api.h#L43-L100\n\n#[repr(C)]\npub struct RawDartCObject {\n    pub type_: c_int,\n    pub value: RawDartCObjectValue,\n}\n\nimpl RawDartCObject {\n    pub const TYPE_BOOL: c_int = 1;\n    pub const TYPE_INT64: c_int = 3;\n    pub const TYPE_STRING: c_int = 5;\n    pub const TYPE_ARRAY: c_int = 6;\n}\n\nimpl From<bool> for RawDartCObject {\n    fn from(value: bool) -> Self {\n        Self {\n            type_: Self::TYPE_BOOL,\n            value: RawDartCObjectValue { as_bool: value },\n        }\n    }\n}\n\nimpl From<i64> for RawDartCObject {\n    fn from(value: i64) -> Self {\n        Self {\n            type_: Self::TYPE_INT64,\n            value: RawDartCObjectValue { as_int64: value },\n        }\n    }\n}\n\n#[repr(C)]\npub union RawDartCObjectValue {\n    pub as_bool: bool,\n    pub as_int32: i32,\n    pub as_int64: i64,\n    pub as_double: f64,\n    pub as_string: *const ::core::ffi::c_char,\n    pub as_send_port: RawDartCObjectSendPort,\n    pub as_capability: RawDartCObjectCapability,\n    pub as_array: RawDartCObjectArray,\n    pub as_typed_data: RawDartCObjectTypedData,\n    pub as_external_typed_data: RawDartCObjectExternalTypedData,\n    pub as_native_pointer: RawDartCObjectNativePointer,\n}\n\n#[repr(C)]\n#[derive(Clone, Copy)] // to allow use in union\npub struct RawDartCObjectSendPort {\n    pub id: DartPort,\n    pub origin_id: DartPort,\n}\n\n#[repr(C)]\n#[derive(Clone, Copy)] // to allow use in union\npub struct RawDartCObjectCapability {\n    pub id: i64,\n}\n\n#[repr(C)]\n#[derive(Clone, Copy)] // to allow use in union\npub struct RawDartCObjectArray {\n    pub length: isize,\n    pub values: *mut *mut RawDartCObject,\n}\n\n#[repr(C)]\n#[derive(Clone, Copy)] // to allow use in union\npub struct RawDartCObjectTypedData {\n    pub type_: c_int,\n    pub length: isize,\n    pub values: *const u8,\n}\n\n#[repr(C)]\n#[derive(Clone, Copy)] // to allow use in union\npub struct RawDartCObjectExternalTypedData {\n    pub type_: c_int,\n    pub length: isize,\n    pub data: *mut u8,\n    pub peer: *mut c_void,\n    pub callback: *mut c_void,\n}\n\n#[repr(C)]\n#[derive(Clone, Copy)] // to allow use in union\npub struct RawDartCObjectNativePointer {\n    pub ptr: isize,\n    pub size: isize,\n    pub callback: *mut c_void,\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/src/headers.h",
    "content": "#include <stdint.h>\n\ntypedef struct ConnectionPool ConnectionPool;\ntypedef struct PoolRequest PoolRequest;\n\ntypedef const void *Connection;\n\nstruct PoolConnection {\n  Connection raw;\n};\n\ntypedef struct ExternalFunctions {\n  void (*sqlite3_update_hook)(Connection, void*, void*);\n  void (*sqlite3_commit_hook)(Connection, void*, void*);\n  void (*sqlite3_rollback_hook)(Connection, void*, void*);\n  int (*sqlite3_get_autocommit)(Connection);\n  int (*sqlite3_finalize)(void*);\n  int (*sqlite3_close_v2)(Connection);\n  int (*dart_post_c_object)(int64_t, const void* message);\n} SqliteFunctions;\n\ntypedef struct InitializedPool {\n  struct ExternalFunctions functions;\n  Connection write;\n  const Connection *reads;\n  uintptr_t read_count;\n  uintptr_t prepared_statement_cache_size;\n} InitializedPool;\n\ntypedef struct InitializedPool *(*PoolInitializer)(void);\n\ntypedef int64_t DartPort;\n\nConnectionPool *pkg_sqlite3_connection_pool_open(const uint8_t *name,\n                                                   uintptr_t name_len,\n                                                   PoolInitializer initialize);\n\nvoid pkg_sqlite3_connection_pool_close(const ConnectionPool *pool);\n\nPoolRequest* pkg_sqlite3_connection_pool_obtain_read(const ConnectionPool *pool, int64_t tag, DartPort port);\n\nPoolRequest* pkg_sqlite3_connection_pool_obtain_write(const ConnectionPool *pool, int64_t tag, DartPort port);\n\nPoolRequest* pkg_sqlite3_connection_pool_obtain_exclusive(const ConnectionPool *pool,\n                                                  int64_t tag,\n                                                  DartPort port);\n\nuintptr_t pkg_sqlite3_connection_pool_query_read_connection_count(const ConnectionPool *pool);\nvoid pkg_sqlite3_connection_pool_query_connections(const ConnectionPool *pool, struct PoolConnection **writer, struct PoolConnection **readers, uintptr_t reader_count);\n\nvoid pkg_sqlite3_connection_pool_request_close(PoolRequest *request);\n\nvoid pkg_sqlite3_connection_pool_update_listener(const ConnectionPool *pool, int add, DartPort listener);\n\nvoid pkg_sqlite3_connection_pool_notify_updates(const PoolRequest *request);\nvoid* pkg_sqlite3_connection_pool_stmt_cache_get(const struct PoolConnection* connection, const uint8_t* sql, uintptr_t sql_len);\nint pkg_sqlite3_connection_pool_stmt_cache_put(const struct PoolConnection* connection, const uint8_t* sql, uintptr_t sql_len, void* stmt, int (*sqlite3_finalize)(void*));\n"
  },
  {
    "path": "sqlite3_connection_pool/src/lib.rs",
    "content": "use crate::client::PoolClient;\nuse crate::connection::PreparedStatement;\nuse crate::dart::DartPort;\nuse crate::pool::{ConnectionPool, PendingMessage, PoolConnection, PoolRequestHandle, PoolState};\nuse crate::registry::{PoolInitializer, PoolRegistry};\nuse std::ffi::{c_int, c_void};\nuse std::ptr::NonNull;\nuse std::sync::{Arc, Mutex};\nuse std::{ptr, slice};\n\nmod client;\nmod connection;\nmod dart;\nmod pool;\nmod registry;\nmod update_hook;\n\n#[unsafe(no_mangle)]\nextern \"C\" fn pkg_sqlite3_connection_pool_open(\n    name: *const u8,\n    name_len: usize,\n    initialize: PoolInitializer,\n) -> Option<NonNull<PoolClient>> {\n    let name = unsafe { str::from_utf8_unchecked(slice::from_raw_parts(name, name_len)) };\n\n    PoolRegistry::lookup(name, initialize).map(|pool| {\n        let client = PoolClient::new(pool);\n\n        unsafe { NonNull::new_unchecked(Box::into_raw(Box::new(client))) }\n    })\n}\n\n#[unsafe(no_mangle)]\nextern \"C\" fn pkg_sqlite3_connection_pool_close(pool: *mut PoolClient) {\n    let pool = unsafe { Box::from_raw(pool) };\n    drop(pool)\n}\n\nfn clone_arc(pool: &Mutex<PoolState>) -> ConnectionPool {\n    let ptr = ptr::from_ref(pool);\n\n    unsafe { Arc::increment_strong_count(ptr) };\n    unsafe { Arc::from_raw(ptr) }\n}\n\n#[unsafe(no_mangle)]\nextern \"C\" fn pkg_sqlite3_connection_pool_obtain_read(\n    client: &PoolClient,\n    tag: i64,\n    port: DartPort,\n) -> *mut PoolRequestHandle {\n    let pool = &client.pool;\n    let mut state = pool.lock().unwrap();\n    let pool = clone_arc(pool);\n\n    Box::into_raw(Box::new(\n        state.request_read(pool, PendingMessage { tag, port }),\n    ))\n}\n\n#[unsafe(no_mangle)]\nextern \"C\" fn pkg_sqlite3_connection_pool_obtain_write(\n    client: &PoolClient,\n    tag: i64,\n    port: DartPort,\n) -> *mut PoolRequestHandle {\n    let pool = &client.pool;\n    let mut state = pool.lock().unwrap();\n    let pool = clone_arc(pool);\n\n    Box::into_raw(Box::new(\n        state.request_write(pool, PendingMessage { tag, port }),\n    ))\n}\n\n#[unsafe(no_mangle)]\nextern \"C\" fn pkg_sqlite3_connection_pool_obtain_exclusive(\n    client: &PoolClient,\n    tag: i64,\n    port: DartPort,\n) -> *mut PoolRequestHandle {\n    let pool = &client.pool;\n    let mut state = pool.lock().unwrap();\n    let pool = clone_arc(pool);\n\n    Box::into_raw(Box::new(\n        state.request_exclusive(pool, PendingMessage { tag, port }),\n    ))\n}\n\n#[unsafe(no_mangle)]\nextern \"C\" fn pkg_sqlite3_connection_pool_request_close(request: *mut PoolRequestHandle) {\n    drop(unsafe { Box::from_raw(request) });\n}\n\n#[unsafe(no_mangle)]\nextern \"C\" fn pkg_sqlite3_connection_pool_query_read_connection_count(\n    client: &PoolClient,\n) -> usize {\n    let state = client.pool.lock().unwrap();\n    let (_, readers) = state.view_connections();\n    readers.len()\n}\n\n#[unsafe(no_mangle)]\nextern \"C\" fn pkg_sqlite3_connection_pool_query_connections(\n    client: &PoolClient,\n    writer: &mut *const PoolConnection,\n    readers: *mut *const PoolConnection,\n    reader_count: usize,\n) {\n    let state = client.pool.lock().unwrap();\n    let (pool_writer, pool_readers) = state.view_connections();\n\n    *writer = pool_writer;\n    for (i, conn) in pool_readers.iter().enumerate() {\n        if i >= reader_count {\n            break;\n        }\n\n        unsafe { readers.add(i).write(conn) };\n    }\n}\n\n#[unsafe(no_mangle)]\nextern \"C\" fn pkg_sqlite3_connection_pool_update_listener(\n    client: &mut PoolClient,\n    add: bool,\n    listener: DartPort,\n) {\n    if add {\n        client.register_update_listener(listener)\n    } else {\n        client.remove_update_listener(listener)\n    }\n}\n\n#[unsafe(no_mangle)]\nextern \"C\" fn pkg_sqlite3_connection_pool_notify_updates(request: &PoolRequestHandle) {\n    let pool = request.pool.lock().unwrap();\n    unsafe {\n        // Safety: Dart must only call this when owning a write connection.\n        pool.send_update_notifications()\n    };\n}\n\n#[unsafe(no_mangle)]\nextern \"C\" fn pkg_sqlite3_connection_pool_stmt_cache_get(\n    connection: &mut PoolConnection,\n    sql: *const u8,\n    sql_len: usize,\n) -> Option<NonNull<c_void>> {\n    let sql = unsafe { str::from_utf8_unchecked(slice::from_raw_parts(sql, sql_len)) };\n    connection\n        .cached_statements\n        .as_mut()\n        .and_then(|cache| cache.lookup(sql))\n}\n\n#[unsafe(no_mangle)]\nextern \"C\" fn pkg_sqlite3_connection_pool_stmt_cache_put(\n    connection: &mut PoolConnection,\n    sql: *const u8,\n    sql_len: usize,\n    stmt: NonNull<c_void>,\n    finalize: extern \"C\" fn(PreparedStatement) -> c_int,\n) -> c_int {\n    let sql = unsafe { str::from_utf8_unchecked(slice::from_raw_parts(sql, sql_len)) };\n    if let Some(cache) = connection.cached_statements.as_mut() {\n        cache.put(sql.to_owned(), PreparedStatement(stmt), finalize);\n        1\n    } else {\n        0\n    }\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/src/pool.rs",
    "content": "use crate::connection::{Connection, PreparedStatement, StatementCache};\nuse crate::dart::{DartPort, RawDartCObject, RawDartCObjectArray, RawDartCObjectValue};\nuse crate::update_hook::CollectedTableUpdates;\nuse std::cell::UnsafeCell;\nuse std::collections::VecDeque;\nuse std::ffi::{c_char, c_int, c_void};\nuse std::marker::PhantomData;\nuse std::ptr::NonNull;\nuse std::sync::{Arc, Mutex};\n\n/// A connection pool can be locked, in which case some Dart actor has exclusive access to all\n/// connections. When a new pool is initialized, it is also in this state.\npub type ConnectionPool = Arc<Mutex<PoolState>>;\n\npub struct PoolState {\n    reads: ReadState,\n    writes: WriteState,\n\n    /// Function pointers provided from Dart when initializing the pool.\n    ///\n    /// We assume those to be static within a process, so we don't need to track them on a\n    /// per-client basis.\n    pub functions: ExternalFunctions,\n    /// Safety: The context having a write connection lease is assumed to have a mutable reference\n    /// to the updates collector.\n    ///\n    /// This allows not locking in update hooks (since the SQLite connection is never used\n    /// concurrently).\n    table_updates: UnsafeCell<CollectedTableUpdates>,\n    update_listeners: Vec<DartPort>,\n}\n\n#[repr(C)]\npub struct PoolConnection {\n    /// The raw `sqlite3*` connection pointer.\n    pub raw: Connection,\n    /// If statement caches are enabled, an LRU cache storing prepared statements by their SQL text.\n    pub cached_statements: Option<StatementCache>,\n}\n\nstruct ReadState {\n    connections: Vec<PoolConnection>,\n    idle_connections: VecDeque<usize>,\n    waiters: LinkedList<Self>,\n}\n\nstruct WriteState {\n    connection: PoolConnection,\n    acquired: bool,\n    waiters: LinkedList<Self>,\n}\n\nstruct LinkedList<E: ExtractEntry> {\n    first: Option<NonNull<WaitNode>>,\n    last: Option<NonNull<WaitNode>>,\n    _e: PhantomData<E>,\n}\n\nunsafe impl<E: ExtractEntry> Send for LinkedList<E> {}\nunsafe impl<E: ExtractEntry> Sync for LinkedList<E> {}\n\n/// A node waiting for access to the connection pool.\n///\n/// A single node can be part of both the read and the write queue of a pool.\nstruct WaitNode {\n    /// If this node is part of the read queue, pointers to the next and previous entry.\n    read_entry: Option<QueueEntry>,\n    /// If this node is part of the write queue, pointers to the next and previous entry.\n    write_entry: Option<QueueEntry>,\n\n    /// The message to send to the Dart client once the connection is obtained.\n    port: PendingMessage,\n    waiter: Waiter,\n}\n\npub struct PendingMessage {\n    pub tag: i64,\n    pub port: DartPort,\n}\n\nstruct QueueEntry {\n    prev: Option<NonNull<WaitNode>>,\n    next: Option<NonNull<WaitNode>>,\n}\n\n// These are only mutated when we have a mutex on the pool, so we can pretend they're send and sync.\nunsafe impl Send for QueueEntry {}\nunsafe impl Sync for QueueEntry {}\n\nenum Waiter {\n    Reader(ReadPoolRequest),\n    Writer(WritePoolRequest),\n    Exclusive(ExclusivePoolRequest),\n}\n\n#[derive(Default)]\nstruct ReadPoolRequest {\n    assigned_connection: Option<usize>,\n}\n\n#[derive(Default)]\nstruct WritePoolRequest {\n    has_writer: bool,\n}\n\n#[derive(Default)]\nstruct ExclusivePoolRequest {\n    has_writer: bool,\n    obtained_read_connections: usize,\n}\n\nimpl PoolState {\n    pub fn new(\n        functions: ExternalFunctions,\n        writer: Connection,\n        reads: &[Connection],\n        cache_size: usize,\n    ) -> Self {\n        let wrap_connection = |conn: Connection| -> PoolConnection {\n            PoolConnection {\n                raw: conn,\n                cached_statements: StatementCache::new(cache_size),\n            }\n        };\n\n        Self {\n            reads: ReadState {\n                idle_connections: (0usize..reads.len()).collect(),\n                connections: reads.iter().copied().map(wrap_connection).collect(),\n                waiters: Default::default(),\n            },\n            writes: WriteState {\n                connection: wrap_connection(writer),\n                acquired: false,\n                waiters: Default::default(),\n            },\n            functions,\n            table_updates: Default::default(),\n            update_listeners: Default::default(),\n        }\n    }\n\n    unsafe fn drop_waiter(&mut self, waiter: NonNull<WaitNode>) {\n        let mut waiter = unsafe { Box::from_raw(waiter.as_ptr()) };\n        let as_mut = waiter.as_mut();\n\n        // Remove waiter from queue\n        if as_mut.read_entry.is_some() {\n            self.reads.waiters.unlink(as_mut);\n        }\n        if as_mut.write_entry.is_some() {\n            self.writes.waiters.unlink(as_mut);\n        }\n\n        // Return resources owned by waiter\n        match waiter.waiter {\n            Waiter::Reader(ref reader) => {\n                if let Some(ref connection) = reader.assigned_connection {\n                    self.return_read_connection(*connection);\n                }\n            }\n            Waiter::Writer(ref writer) => {\n                if writer.has_writer {\n                    self.return_write_connection();\n                }\n            }\n            Waiter::Exclusive(ref exclusive) => {\n                if exclusive.has_writer {\n                    self.return_write_connection()\n                }\n                for i in 0..self.reads.connections.len() {\n                    self.return_read_connection(i)\n                }\n            }\n        }\n    }\n\n    fn return_read_connection(&mut self, conn: usize) {\n        self.reads.idle_connections.push_back(conn);\n\n        if let Some(mut waiting) = self.reads.waiters.first {\n            let waiter = unsafe { waiting.as_mut() };\n            let did_complete = self.try_complete(waiter);\n            if did_complete {\n                self.reads.waiters.unlink(waiter);\n            }\n        }\n    }\n\n    /// ## Safety\n    ///\n    /// The caller must currently own a lease to the write connection of the pool.\n    pub unsafe fn send_update_notifications(&self) {\n        if (self.functions.sqlite3_get_autocommit)(self.writes.connection.raw) != 0 {\n            // No longer in a transaction, notify clients for completed writes.\n            let updates = unsafe {\n                // Safety: Because we have an exclusive reference to the write connection, we also\n                // have an exclusive reference to table updates.\n                self.table_updates.get().as_mut().unwrap_unchecked()\n            };\n            updates.send_notification(self.update_listeners.as_slice(), &self.functions);\n        }\n    }\n\n    fn return_write_connection(&mut self) {\n        unsafe {\n            // Safety: We have an exclusive reference to the write connection.\n            self.send_update_notifications()\n        };\n\n        self.writes.acquired = false;\n\n        // See if we can complete the next writer.\n        if let Some(mut waiting) = self.writes.waiters.first {\n            let waiter = unsafe { waiting.as_mut() };\n            let did_complete = self.try_complete(waiter);\n            if did_complete {\n                self.writes.waiters.unlink(waiter);\n            }\n        }\n    }\n\n    pub fn request_read(&mut self, pool: ConnectionPool, msg: PendingMessage) -> PoolRequestHandle {\n        self.register_waiter(pool, msg, Waiter::Reader(Default::default()), true, false)\n    }\n\n    pub fn request_write(\n        &mut self,\n        pool: ConnectionPool,\n        msg: PendingMessage,\n    ) -> PoolRequestHandle {\n        self.register_waiter(pool, msg, Waiter::Writer(Default::default()), false, true)\n    }\n\n    pub fn request_exclusive(\n        &mut self,\n        pool: ConnectionPool,\n        msg: PendingMessage,\n    ) -> PoolRequestHandle {\n        self.register_waiter(pool, msg, Waiter::Exclusive(Default::default()), true, true)\n    }\n\n    /// Returns the write and all read connections of this pool.\n    pub fn view_connections(&self) -> (&PoolConnection, &[PoolConnection]) {\n        let writer = &self.writes.connection;\n        let readers = self.reads.connections.as_slice();\n\n        (writer, readers)\n    }\n\n    fn register_waiter(\n        &mut self,\n        pool: ConnectionPool,\n        msg: PendingMessage,\n        waiter: Waiter,\n        reads: bool,\n        writes: bool,\n    ) -> PoolRequestHandle {\n        let request = Box::new(WaitNode {\n            read_entry: None,\n            write_entry: None,\n            port: msg,\n            waiter,\n        });\n        let request = Box::leak(request);\n        let request_completed = self.try_complete(request);\n        let request = NonNull::from(request);\n\n        if !request_completed {\n            // We couldn't complete the request immediately, add it to relevant queues.\n            if reads {\n                self.reads.waiters.push(request);\n            }\n\n            if writes {\n                self.writes.waiters.push(request);\n            }\n        }\n\n        PoolRequestHandle {\n            pool,\n            node: request,\n        }\n    }\n\n    /// Attempts to assign a connection to the given waiter, if one is available.\n    ///\n    /// Returns whether the node is completed and no longer waiting (in which case this function\n    /// would have notified the Dart port). The node can be removed from its queues in that case.\n    fn try_complete(&mut self, waiter: &mut WaitNode) -> bool {\n        match &mut waiter.waiter {\n            Waiter::Reader(reads) => {\n                assert!(reads.assigned_connection.is_none());\n\n                if let Some(conn_idx) = self.reads.idle_connections.pop_front() {\n                    reads.assigned_connection = Some(conn_idx);\n                    waiter.port.send_did_obtain_connection(\n                        &self.reads.connections[conn_idx],\n                        &self.functions,\n                    );\n                    return true;\n                }\n\n                false\n            }\n            Waiter::Writer(writes) => {\n                assert!(!writes.has_writer);\n\n                if self.try_assign_write(&mut writes.has_writer) {\n                    waiter\n                        .port\n                        .send_did_obtain_connection(&self.writes.connection, &self.functions);\n                    return true;\n                }\n\n                false\n            }\n            Waiter::Exclusive(exclusive) => {\n                if !self.try_assign_write(&mut exclusive.has_writer) {\n                    return false;\n                }\n\n                while exclusive.obtained_read_connections < self.reads.connections.len() {\n                    let Some(_) = self.reads.idle_connections.pop_front() else {\n                        return false;\n                    };\n                    exclusive.obtained_read_connections += 1;\n                }\n\n                waiter.port.send_did_obtain_exclusive(&self.functions);\n                true\n            }\n        }\n    }\n\n    fn try_assign_write(&mut self, has_write: &mut bool) -> bool {\n        if *has_write {\n            true\n        } else if !self.writes.acquired {\n            self.writes.acquired = true;\n            *has_write = true;\n            true\n        } else {\n            false\n        }\n    }\n\n    fn drop_connection(conn: &mut PoolConnection, functions: &ExternalFunctions) {\n        if let Some(cache) = &mut conn.cached_statements {\n            cache.close_statements(&functions);\n        }\n\n        (functions.sqlite3_close_v2)(conn.raw);\n    }\n\n    pub fn register_update_listener(&mut self, update_listener: DartPort) {\n        self.update_listeners.push(update_listener);\n    }\n\n    pub fn remove_update_listeners(&mut self, removed_listeners: &[DartPort]) {\n        self.update_listeners\n            .retain(|l| !removed_listeners.contains(l));\n    }\n\n    pub fn register_hooks_on_writer(arc: &ConnectionPool) {\n        let pool = arc.lock().unwrap();\n        let updates_ptr = pool.table_updates.get();\n        let writer = &pool.writes.connection;\n        CollectedTableUpdates::attach_to(updates_ptr, &pool.functions, writer.raw);\n    }\n}\n\nimpl Drop for PoolState {\n    fn drop(&mut self) {\n        // Pool request handles have a reference to the pool and should be dropped first. Still,\n        // let's assert we're not about to close a connection that might still be in use.\n        assert!(\n            !self.writes.acquired,\n            \"Tried to drop with leased write connection\"\n        );\n        assert_eq!(\n            self.reads.idle_connections.len(),\n            self.reads.connections.len(),\n            \"Tried to drop with leased read connection\"\n        );\n\n        for read in &mut self.reads.connections {\n            Self::drop_connection(read, &self.functions);\n        }\n        Self::drop_connection(&mut self.writes.connection, &self.functions);\n    }\n}\n\nimpl PendingMessage {\n    /// Sends a `[tag, true]` message to this port.\n    fn send_did_obtain_exclusive(&self, api: &ExternalFunctions) {\n        let list_values: &mut [*mut RawDartCObject] = &mut [\n            &mut RawDartCObject::from(self.tag),\n            &mut RawDartCObject::from(true),\n        ];\n        let mut array = RawDartCObject {\n            type_: RawDartCObject::TYPE_ARRAY,\n            value: RawDartCObjectValue {\n                as_array: RawDartCObjectArray {\n                    length: list_values.len() as isize,\n                    values: list_values.as_mut_ptr(),\n                },\n            },\n        };\n\n        (api.dart_post_c_object)(self.port, &mut array);\n    }\n\n    /// Sends a `[tag, false, connection_ptr]` message to this port.\n    fn send_did_obtain_connection(&self, connection: &PoolConnection, api: &ExternalFunctions) {\n        let list_values: &mut [*mut RawDartCObject] = &mut [\n            &mut RawDartCObject::from(self.tag),\n            &mut RawDartCObject::from(false),\n            &mut RawDartCObject::from(connection as *const PoolConnection as i64),\n        ];\n        let mut array = RawDartCObject {\n            type_: RawDartCObject::TYPE_ARRAY,\n            value: RawDartCObjectValue {\n                as_array: RawDartCObjectArray {\n                    length: list_values.len() as isize,\n                    values: list_values.as_mut_ptr(),\n                },\n            },\n        };\n\n        (api.dart_post_c_object)(self.port, &mut array);\n    }\n}\n\n// Trait to extract read_entry or write_entry from a WaitNode struct\ntrait ExtractEntry {\n    fn extract_entry(node: &mut WaitNode) -> &mut Option<QueueEntry>;\n}\n\nimpl ExtractEntry for ReadState {\n    fn extract_entry(node: &mut WaitNode) -> &mut Option<QueueEntry> {\n        &mut node.read_entry\n    }\n}\n\nimpl ExtractEntry for WriteState {\n    fn extract_entry(node: &mut WaitNode) -> &mut Option<QueueEntry> {\n        &mut node.write_entry\n    }\n}\n\nimpl<E: ExtractEntry> Default for LinkedList<E> {\n    fn default() -> Self {\n        Self {\n            first: None,\n            last: None,\n            _e: PhantomData,\n        }\n    }\n}\n\nimpl<E: ExtractEntry> LinkedList<E> {\n    fn push(&mut self, mut node: NonNull<WaitNode>) {\n        let prev = match self.last {\n            None => {\n                self.first = Some(node);\n                None\n            }\n            Some(mut last) => {\n                E::extract_entry(unsafe { last.as_mut() })\n                    .as_mut()\n                    .unwrap()\n                    .next = Some(node);\n                Some(last)\n            }\n        };\n\n        let slot_on_node = E::extract_entry(unsafe { node.as_mut() });\n        debug_assert!(slot_on_node.is_none()); // We're about to insert it...\n        *slot_on_node = Some(QueueEntry { prev, next: None });\n        self.last = Some(node);\n    }\n\n    fn unlink(&mut self, node: &mut WaitNode) {\n        let slot = E::extract_entry(node);\n        let Some(slot) = slot.take() else {\n            panic!(\"Tried to unlink nonexistent queue entry\")\n        };\n\n        match slot.prev {\n            Some(mut prev) => {\n                let prev = unsafe { prev.as_mut() };\n                E::extract_entry(prev).as_mut().unwrap().next = slot.next;\n            }\n            // This was the first node\n            None => {\n                debug_assert!(slot.prev.is_none());\n                self.first = slot.next\n            }\n        };\n\n        match slot.next {\n            Some(mut next) => {\n                let next = unsafe { next.as_mut() };\n                E::extract_entry(next).as_mut().unwrap().prev = slot.prev;\n            }\n            // This was the last node\n            None => {\n                debug_assert!(slot.next.is_none());\n                self.last = slot.prev\n            }\n        }\n    }\n}\n\npub struct PoolRequestHandle {\n    pub pool: ConnectionPool,\n    node: NonNull<WaitNode>,\n}\n\nimpl Drop for PoolRequestHandle {\n    fn drop(&mut self) {\n        let mut pool = self.pool.lock().unwrap();\n        unsafe { pool.drop_waiter(self.node) };\n    }\n}\n\n/// References to `sqlite3` and `Dart_DL` functions we want to use.\n///\n/// The Dart client will provide these function pointers because we want to link SQLite through\n/// hooks instead of adding it as a link-dependency of this crate.\n#[derive(Copy, Clone)]\n#[repr(C)]\npub struct ExternalFunctions {\n    pub sqlite3_update_hook: extern \"C\" fn(\n        Connection,\n        Option<extern \"C\" fn(NonNull<c_void>, c_int, *const c_char, *const c_char, i64)>,\n        *mut c_void,\n    ) -> *mut c_void,\n    pub sqlite3_commit_hook: extern \"C\" fn(\n        Connection,\n        Option<extern \"C\" fn(NonNull<c_void>) -> c_int>,\n        *mut c_void,\n    ) -> *mut c_void,\n    pub sqlite3_rollback_hook: extern \"C\" fn(\n        Connection,\n        Option<extern \"C\" fn(NonNull<c_void>)>,\n        *mut c_void,\n    ) -> *mut c_void,\n    pub sqlite3_get_autocommit: extern \"C\" fn(Connection) -> c_int,\n    pub sqlite3_finalize: extern \"C\" fn(PreparedStatement) -> c_int,\n    pub sqlite3_close_v2: extern \"C\" fn(Connection) -> c_int,\n    pub dart_post_c_object: extern \"C\" fn(port: DartPort, message: &mut RawDartCObject) -> bool,\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/src/registry.rs",
    "content": "use crate::connection::Connection;\nuse crate::pool::{ConnectionPool, ExternalFunctions, PoolState};\nuse std::collections::HashMap;\nuse std::ptr::NonNull;\nuse std::slice;\nuse std::sync::{Arc, LazyLock, Mutex, Weak};\n\nstatic REGISTRY: LazyLock<PoolRegistry> = LazyLock::new(|| PoolRegistry::default());\n\n#[derive(Default)]\npub struct PoolRegistry {\n    pools: Mutex<HashMap<String, Weak<Mutex<PoolState>>>>,\n}\n\n#[repr(C)]\npub struct InitializedPool {\n    functions: ExternalFunctions,\n    write: Connection,\n    reads: *const Connection,\n    read_count: usize,\n    prepared_statement_cache_size: usize,\n}\n\npub type PoolInitializer = extern \"C\" fn() -> Option<NonNull<InitializedPool>>;\n\nimpl PoolRegistry {\n    fn lookup_internal(&self, name: &str, initialize: PoolInitializer) -> Option<ConnectionPool> {\n        let mut pools = self.pools.lock().unwrap();\n        if let Some(pool) = pools.get(name) {\n            if let Some(pool) = Weak::upgrade(pool) {\n                return Some(pool);\n            }\n        };\n\n        // The pool doesn't exist, obtain connections from Dart callback.\n        let Some(initialized) = initialize() else {\n            // Initialization failed, don't insert a pool.\n            return None;\n        };\n        let initialized = unsafe {\n            // The returned pointer is valid until this function returns.\n            initialized.as_ref()\n        };\n\n        let state = PoolState::new(\n            initialized.functions,\n            initialized.write,\n            unsafe { slice::from_raw_parts(initialized.reads, initialized.read_count) },\n            initialized.prepared_statement_cache_size,\n        );\n\n        let pool = ConnectionPool::new(Mutex::new(state));\n        PoolState::register_hooks_on_writer(&pool);\n\n        pools.insert(name.to_string(), Arc::downgrade(&pool));\n        Some(pool)\n    }\n\n    pub fn lookup(name: &str, initialize: PoolInitializer) -> Option<ConnectionPool> {\n        REGISTRY.lookup_internal(name, initialize)\n    }\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/src/update_hook.rs",
    "content": "use crate::connection::Connection;\nuse crate::dart::{DartPort, RawDartCObject, RawDartCObjectArray, RawDartCObjectValue};\nuse crate::pool::ExternalFunctions;\nuse std::collections::HashSet;\nuse std::ffi::{c_char, c_int, c_void, CStr, CString};\nuse std::mem;\nuse std::ptr::NonNull;\n\n#[derive(Default)]\npub struct CollectedTableUpdates {\n    /// Tables that have been updated in the current transaction (that hasn't been committed yet).\n    uncommitted_updates: HashSet<CString>,\n    /// Tables that have been updated and committed but for which Dart clients have not been\n    /// notified yet.\n    ///\n    /// We can't notify Dart clients directly in a commit hook because the notification then runs\n    /// concurrently to the rest of the commit. So we might issue reads before the transaction is\n    /// fully committed, causing stale data to get returned.\n    outstanding_notification: HashSet<CString>,\n}\n\nimpl CollectedTableUpdates {\n    pub fn attach_to(\n        ptr: *mut CollectedTableUpdates,\n        functions: &ExternalFunctions,\n        connection: Connection,\n    ) {\n        extern \"C\" fn update_hook(\n            context: NonNull<c_void>,\n            _write_kind: c_int,\n            _database: *const c_char,\n            table: *const c_char,\n            _rowid: i64,\n        ) {\n            let table = unsafe { CStr::from_ptr(table) };\n            let context = unsafe { context.cast::<CollectedTableUpdates>().as_mut() };\n            context.handle_update(table)\n        }\n\n        extern \"C\" fn rollback_hook(context: NonNull<c_void>) {\n            let context = unsafe { context.cast::<CollectedTableUpdates>().as_mut() };\n            context.handle_rollback()\n        }\n\n        extern \"C\" fn commit_hook(context: NonNull<c_void>) -> c_int {\n            let context = unsafe { context.cast::<CollectedTableUpdates>().as_mut() };\n            context.handle_commit();\n            // Returning zero makes the COMMIT operation continue normally.\n            0\n        }\n\n        (functions.sqlite3_update_hook)(connection, Some(update_hook), ptr.cast());\n        (functions.sqlite3_commit_hook)(connection, Some(commit_hook), ptr.cast());\n        (functions.sqlite3_rollback_hook)(connection, Some(rollback_hook), ptr.cast());\n    }\n\n    fn handle_update(&mut self, table: &CStr) {\n        if !self.outstanding_notification.contains(table)\n            && !self.uncommitted_updates.contains(table)\n        {\n            self.uncommitted_updates.insert(table.to_owned());\n        }\n    }\n\n    fn handle_commit(&mut self) {\n        for update in mem::take(&mut self.uncommitted_updates) {\n            self.outstanding_notification.insert(update);\n        }\n    }\n\n    fn handle_rollback(&mut self) {\n        self.uncommitted_updates.clear()\n    }\n\n    pub fn send_notification(&mut self, listeners: &[DartPort], functions: &ExternalFunctions) {\n        let updates = mem::take(&mut self.outstanding_notification);\n        if updates.is_empty() {\n            return;\n        }\n\n        if listeners.is_empty() {\n            return;\n        }\n\n        let mut dart_strings: Vec<RawDartCObject> = Vec::with_capacity(updates.len());\n        for update in &updates {\n            dart_strings.push(RawDartCObject {\n                type_: RawDartCObject::TYPE_STRING,\n                value: RawDartCObjectValue {\n                    as_string: update.as_c_str().as_ptr(),\n                },\n            });\n        }\n        let mut dart_string_references: Vec<*mut RawDartCObject> = dart_strings\n            .iter()\n            .map(|d| d as *const _ as *mut _)\n            .collect();\n\n        // Create Dart list of strings.\n        let mut dart_msg = RawDartCObject {\n            type_: RawDartCObject::TYPE_ARRAY,\n            value: RawDartCObjectValue {\n                as_array: RawDartCObjectArray {\n                    length: dart_string_references.len() as isize,\n                    values: dart_string_references.as_mut_ptr(),\n                },\n            },\n        };\n\n        // Send to registered update ports.\n        for listener in listeners {\n            (functions.dart_post_c_object)(*listener, &mut dart_msg);\n        }\n    }\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/test/pool_test.dart",
    "content": "import 'dart:async';\nimport 'dart:isolate';\n\nimport 'package:async/async.dart';\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:sqlite3_connection_pool/sqlite3_connection_pool.dart';\nimport 'package:path/path.dart' as p;\nimport 'package:test/test.dart';\nimport 'package:test_descriptor/test_descriptor.dart';\n\nvoid main() {\n  SqliteConnectionPool testPool({\n    int readConnections = 5,\n    int preparedStatementCacheSize = 0,\n  }) {\n    final pool = createPool(\n      directory: sandbox,\n      readConnections: readConnections,\n      preparedStatementCacheSize: preparedStatementCacheSize,\n    );\n    addTearDown(pool.close);\n    return pool;\n  }\n\n  test('opening pools is synchronized', () async {\n    const numIsolates = 10_000;\n    final receiveControl = ReceivePort();\n    var countOpened = 0;\n    final allOpened = Completer();\n    final closePorts = <SendPort>[];\n\n    receiveControl.listen((message) {\n      final (didOpen, receiveClose) = message as (bool, SendPort);\n      if (didOpen) {\n        countOpened++;\n      }\n\n      closePorts.add(receiveClose);\n      if (closePorts.length == numIsolates) {\n        allOpened.complete();\n      }\n    });\n\n    // Spawn 10k isolates attempting to open the same pool.\n    for (var i = 0; i < numIsolates; i++) {\n      final notify = receiveControl.sendPort;\n      _startIsolateForOpenTest(notify);\n    }\n\n    await allOpened.future;\n    expect(countOpened, 1);\n    for (final port in closePorts) {\n      port.send(null);\n    }\n    receiveControl.close();\n  });\n\n  test('can open pool asynchronously', () async {\n    final path = p.join(sandbox, 'test.db');\n    final pool = await SqliteConnectionPool.openAsync(\n      name: path,\n      openConnections: poolConnectionOpener(path, 5, 0),\n    );\n    addTearDown(pool.close);\n\n    await pool.execute('CREATE TABLE foo (bar TEXT) STRICT;');\n    expect(await pool.readQuery('SELECT * FROM foo'), isEmpty);\n  });\n\n  test('can catch exceptions from async opening', () async {\n    final path = p.join(sandbox, 'test.db');\n    expectLater(\n      SqliteConnectionPool.openAsync(\n        name: path,\n        openConnections: () => throw 'exception',\n      ),\n      throwsA('exception'),\n    );\n  });\n\n  test('simple queries', () async {\n    final pool = testPool();\n    await pool.execute('CREATE TABLE foo (bar TEXT) STRICT;');\n    expect(await pool.readQuery('SELECT * FROM foo'), isEmpty);\n\n    await pool.execute('INSERT INTO foo DEFAULT VALUES;');\n    expect(await pool.readQuery('SELECT * FROM foo'), hasLength(1));\n  });\n\n  test('does not allow concurrent writers', () async {\n    final pool = testPool();\n\n    final futures = <Future<void>>[];\n    var writers = 0;\n    for (var i = 0; i < 10_000; i++) {\n      futures.add(\n        Future(() async {\n          final writer = await pool.writer();\n          expect(writers += 1, 1);\n          await pumpEventQueue(times: 5);\n          expect(writers -= 1, 0);\n          writer.returnLease();\n        }),\n      );\n    }\n\n    await Future.wait(futures);\n  });\n\n  test('allows concurrent readers', () async {\n    final pool = testPool();\n    {\n      final exclusive = await pool.exclusiveAccess();\n      await exclusive.writer.execute('CREATE TEMPORARY TABLE conn(id);');\n      await exclusive.writer.execute('INSERT INTO conn VALUES (?)', ['writer']);\n\n      for (final (i, reader) in exclusive.readers.indexed) {\n        await reader.execute('CREATE TEMPORARY TABLE conn(id);');\n        await reader.execute('INSERT INTO conn VALUES (?)', ['reader-$i']);\n      }\n      exclusive.close();\n    }\n\n    final futures = <Future<void>>[];\n\n    final connectionDistribution = <String, int>{};\n    for (var i = 0; i < 10_000; i++) {\n      futures.add(\n        Future(() async {\n          final results = await pool.readQuery('SELECT id FROM conn');\n          final id = results.single.columnAt(0) as String;\n          connectionDistribution[id] = (connectionDistribution[id] ?? 0) + 1;\n        }),\n      );\n    }\n\n    await Future.wait(futures);\n    expect(connectionDistribution['writer'], isNull);\n\n    // Connections should be distributed somewhat evenly.\n    expect(connectionDistribution.values.fold(0, (a, b) => a + b), 10_000);\n    for (final amount in connectionDistribution.values) {\n      expect(amount, lessThan(4000));\n    }\n  });\n\n  test('cannot use after closing', () async {\n    final pool = testPool();\n    pool.close();\n\n    expect(() => pool.writer(), throwsStateError);\n    expect(() => pool.reader(), throwsStateError);\n  });\n\n  test('autocommit', () async {\n    final pool = testPool();\n    final db = await pool.writer();\n    expect(await db.autocommit, isTrue);\n    await db.execute('CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY);');\n\n    await db.execute('BEGIN');\n    expect(await db.autocommit, isFalse);\n    expect(\n      (await db.execute('INSERT INTO foo DEFAULT VALUES;')).autoCommit,\n      isFalse,\n    );\n    await expectLater(\n      () => db.execute('INSERT OR ROLLBACK INTO foo VALUES (1);'),\n      throwsA(isA<SqliteException>()),\n    );\n\n    expect(await db.autocommit, isTrue);\n\n    db.returnLease();\n  });\n\n  group('updates stream', () {\n    test('emits updates', () async {\n      final pool = testPool();\n      final updates = StreamQueue(pool.updatedTables);\n\n      await pool.execute('CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY)');\n      await pool.execute('INSERT INTO foo DEFAULT VALUES;');\n      await expectLater(updates, emits(['foo']));\n    });\n\n    test('emits updates for isolate write', () async {\n      final pool = testPool();\n      final updates = StreamQueue(pool.updatedTables);\n      await pool.execute('CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY)');\n      final name = pool.name;\n\n      await Isolate.run(() async {\n        final pool = SqliteConnectionPool.open(\n          name: name,\n          openConnections: () => throw StateError('should already be open'),\n        );\n        await pool.execute('INSERT INTO foo DEFAULT VALUES;');\n      });\n\n      await expectLater(updates, emits(['foo']));\n    });\n\n    test('does not emit update after rollback', () async {\n      final pool = testPool();\n      final updates = StreamQueue(pool.updatedTables);\n      await pool.execute('CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY)');\n      await pool.execute('CREATE TABLE bar (id INTEGER NOT NULL PRIMARY KEY)');\n\n      await pool.execute('BEGIN; INSERT INTO foo DEFAULT VALUES; ROLLBACK;');\n      await pool.execute('INSERT INTO bar DEFAULT VALUES;');\n\n      await expectLater(updates, emits(['bar']));\n    });\n\n    test('waits for returned connection before emitting', () async {\n      final pool = testPool();\n      await pool.execute('CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY)');\n      var hadEvent = false;\n      final event = pool.updatedTables.first.whenComplete(\n        () => hadEvent = true,\n      );\n\n      final writer = await pool.writer();\n      await writer.execute('INSERT INTO foo DEFAULT VALUES');\n      expect(hadEvent, isFalse);\n      await pumpEventQueue();\n      expect(hadEvent, isFalse);\n\n      writer.returnLease();\n      await event;\n      expect(hadEvent, isTrue);\n    });\n\n    test('can manually emit during write', () async {\n      final pool = testPool();\n      await pool.execute('CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY)');\n\n      final events = StreamQueue(pool.updatedTables);\n\n      final writer = await pool.writer();\n      final firstEvent = events.next;\n      await writer.execute('INSERT INTO foo DEFAULT VALUES');\n      await writer.notifyUpdates();\n      await firstEvent;\n\n      final nextEvent = events.next;\n      await writer.execute('INSERT INTO foo DEFAULT VALUES');\n      writer.returnLease();\n      await nextEvent;\n    });\n  });\n\n  test('prepared statement cache', () async {\n    final pool = testPool(preparedStatementCacheSize: 16);\n    final writer = await pool.writer();\n\n    for (var i = 0; i < 16; i++) {\n      await writer.select('SELECT $i');\n    }\n\n    await writer.unsafeAccess((connection) {\n      for (var i = 0; i < 16; i++) {\n        final statement = connection.lookupCachedStatement('SELECT $i');\n        expect(statement, isNotNull, reason: 'Should lookup $i');\n        expect(statement!.select(), [\n          {'$i': i},\n        ]);\n      }\n    });\n\n    // Prepare more statements replacing existing ones.\n    for (var i = 0; i < 16; i++) {\n      await writer.select('SELECT $i AS another');\n    }\n\n    await writer.unsafeAccess((connection) {\n      for (var i = 0; i < 16; i++) {\n        expect(connection.lookupCachedStatement('SELECT $i'), isNull);\n      }\n    });\n\n    writer.returnLease();\n  });\n\n  group('aborting request', () {\n    test('writer abort', () async {\n      final pool = testPool();\n      final firstWriteDone = Completer();\n\n      pool.writer().then((writer) async {\n        await firstWriteDone.future;\n        writer.returnLease();\n      });\n\n      final shouldThrow = pool.writer(abortSignal: Future.value());\n      var secondLockGranted = false;\n      pool.writer().then((writer) {\n        secondLockGranted = true;\n        writer.returnLease();\n      });\n\n      await expectLater(shouldThrow, throwsA(isA<PoolAbortException>()));\n\n      await pumpEventQueue();\n      expect(secondLockGranted, false);\n\n      firstWriteDone.complete();\n      await pumpEventQueue();\n      expect(secondLockGranted, true);\n    });\n\n    test('reader abort', () async {\n      final pool = testPool(readConnections: 1);\n\n      final firstReadDone = Completer();\n      pool.reader().then((reader) async {\n        await firstReadDone.future;\n        reader.returnLease();\n      });\n\n      final shouldThrow = pool.reader(abortSignal: Future.value());\n      var secondReadGranted = false;\n      pool.reader().then((reader) {\n        secondReadGranted = true;\n        reader.returnLease();\n      });\n\n      await expectLater(shouldThrow, throwsA(isA<PoolAbortException>()));\n\n      // Aborting the request should not grant the subsequent waiter the mutex.\n      await pumpEventQueue();\n      expect(secondReadGranted, false);\n\n      firstReadDone.complete();\n      await pumpEventQueue();\n      expect(secondReadGranted, true);\n    });\n  });\n\n  group('rolls back transactions', () {\n    Future<void> leaveInTransaction(\n      SqliteConnectionPool pool, {\n      required bool write,\n    }) async {\n      final port = ReceivePort();\n      final name = pool.name;\n      Isolate.spawn((SendPort port) async {\n        final pool = SqliteConnectionPool.open(\n          name: name,\n          openConnections: () => throw 'already open',\n        );\n        final connection = await (write ? pool.writer() : pool.reader());\n        connection.unsafeAccess((conn) {\n          conn.database.execute('BEGIN');\n          if (write) {\n            conn.database.execute('INSERT INTO users VALUES (?)', ['exit']);\n          }\n        });\n\n        // the connection is in a transaction at this point. Let's say we don't\n        // have a chance to commit.\n        Isolate.exit(port, 'done');\n      }, port.sendPort);\n\n      await port.first;\n    }\n\n    test('write connection', () async {\n      final pool = testPool();\n      await pool.execute('CREATE TABLE users (name TEXT);');\n\n      await leaveInTransaction(pool, write: true);\n\n      // Even though the connection was left in a transaction, it should be\n      // rolled back once we receive it.\n      final conn = await pool.writer();\n      expect(conn.unsafeRawConnection.database.autocommit, isTrue);\n      expect((await conn.select('SELECT * FROM users')).$1, isEmpty);\n      conn.returnLease();\n    });\n\n    test('read connection', () async {\n      final pool = testPool(readConnections: 1);\n      await leaveInTransaction(pool, write: false);\n\n      final conn = await pool.reader();\n      expect(conn.unsafeRawConnection.database.autocommit, isTrue);\n      conn.returnLease();\n    });\n\n    test('exclusive access', () async {\n      final pool = testPool(readConnections: 1);\n      await leaveInTransaction(pool, write: true);\n      await leaveInTransaction(pool, write: false);\n\n      final exclusive = await pool.exclusiveAccess();\n      expect(exclusive.writer.unsafeRawConnection.database.autocommit, isTrue);\n      for (final reader in exclusive.readers) {\n        expect(reader.unsafeRawConnection.database.autocommit, isTrue);\n      }\n      exclusive.close();\n    });\n  });\n\n  group('cannot use database after returning lease', () {\n    test('read', () async {\n      final pool = testPool();\n      final reader = await pool.reader();\n      reader.returnLease();\n\n      expect(reader.select('SELECT 1'), throwsStateError);\n      expect(\n        () => reader.unsafeRawConnection.database.select('SELECT 1'),\n        throwsStateError,\n      );\n    });\n\n    test('write', () async {\n      final pool = testPool();\n      final writer = await pool.writer();\n      writer.returnLease();\n\n      await pumpEventQueue(times: 1);\n      expect(writer.select('SELECT 1'), throwsStateError);\n      expect(\n        () => writer.unsafeRawConnection.database.select('SELECT 1'),\n        throwsStateError,\n      );\n    });\n\n    test('exclusive', () async {\n      final pool = testPool();\n      final exclusive = await pool.exclusiveAccess();\n      exclusive.close();\n\n      expect(exclusive.writer.select('SELECT 1'), throwsStateError);\n      for (final reader in exclusive.readers) {\n        expect(reader.select('SELECT 1'), throwsStateError);\n      }\n    });\n  });\n}\n\nSqliteConnectionPool createPool({\n  required String directory,\n  int readConnections = 5,\n  int preparedStatementCacheSize = 0,\n}) {\n  return SqliteConnectionPool.open(\n    name: directory,\n    openConnections: poolConnectionOpener(\n      p.join(directory, 'test.db'),\n      readConnections,\n      preparedStatementCacheSize,\n    ),\n  );\n}\n\nPoolConnections Function() poolConnectionOpener(\n  String path,\n  int readConnections,\n  int preparedStatementCacheSize,\n) {\n  Database openDatabase() {\n    return sqlite3.open(path)..execute('pragma journal_mode = wal;');\n  }\n\n  return () => PoolConnections(openDatabase(), [\n    for (var i = 0; i < readConnections; i++) openDatabase(),\n  ], preparedStatementCacheSize: preparedStatementCacheSize);\n}\n\nvoid _startIsolateForOpenTest(SendPort notify) {\n  Isolate.run(() async {\n    var didOpenConnections = false;\n    final receiveCloseInstruction = ReceivePort();\n\n    final pool = SqliteConnectionPool.open(\n      name: 'pool',\n      openConnections: () {\n        didOpenConnections = true;\n        return PoolConnections(sqlite3.openInMemory(), []);\n      },\n    );\n\n    notify.send((didOpenConnections, receiveCloseInstruction.sendPort));\n\n    await receiveCloseInstruction.first;\n    pool.close();\n  });\n}\n"
  },
  {
    "path": "sqlite3_connection_pool/tool/build_apple.sh",
    "content": "#!/bin/sh\nset -e\n\nfunction compile() {\n    local triple=$1\n    RUSTFLAGS=\"-Zlocation-detail=none -Zfmt-debug=none -Zunstable-options -Cpanic=immediate-abort\" cargo +nightly build \\\n        --release \\\n        -Z build-std=std,panic_abort \\\n        -Z build-std-features= \\\n        --target $triple\n}\n\ncompile aarch64-apple-darwin\ncompile x86_64-apple-darwin\n\ncompile aarch64-apple-ios\ncompile aarch64-apple-ios-sim\ncompile x86_64-apple-ios\n"
  },
  {
    "path": "sqlite3_connection_pool/tool/build_linux.sh",
    "content": "#!/bin/bash\nset -e\n\nfunction compile() {\n    local triple=$1\n    RUSTFLAGS=\"-Zlocation-detail=none -Zfmt-debug=none -Zunstable-options -Cpanic=immediate-abort\" cargo +nightly build \\\n        --release \\\n        -Z build-std=std,panic_abort \\\n        -Z build-std-features= \\\n        --target $triple\n}\n\ncompile x86_64-unknown-linux-gnu\ncompile aarch64-unknown-linux-gnu\ncompile armv7-unknown-linux-gnueabihf\ncompile riscv64gc-unknown-linux-gnu\n"
  },
  {
    "path": "sqlite3_connection_pool/tool/build_linux_sanitizer.sh",
    "content": "#!/bin/bash\nset -e\n\nfunction compile() {\n    local sanitizer=$1\n\n    RUSTDOCFLAGS=\"-Zsanitizer=$sanitizer\" RUSTFLAGS=\"-Zsanitizer=$sanitizer -Zlocation-detail=none -Zfmt-debug=none -Zunstable-options -Cpanic=immediate-abort\" cargo +nightly build \\\n        --release \\\n        -Z build-std=std,panic_abort \\\n        -Z build-std-features= \\\n        --target x86_64-unknown-linux-gnu\n\n    cp target/x86_64-unknown-linux-gnu/release/libsqlite3_connection_pool.so ../sqlite-sanitized/libsqlite3_connection_pool.$sanitizer.san.so\n}\n\ncompile address\ncompile memory\ncompile thread\n"
  },
  {
    "path": "sqlite3_connection_pool/tool/generate_bindings.dart",
    "content": "import 'package:ffigen/ffigen.dart';\nimport 'package:logging/logging.dart';\n\nvoid main() {\n  Logger.root.onRecord.listen(print);\n\n  final generator = FfiGenerator(\n    output: Output(\n      dartFile: Uri.parse('lib/src/ffi.g.dart'),\n      preamble: '// ignore_for_file: type=lint',\n      style: NativeExternalBindings(\n        assetId: 'package:sqlite3_connection_pool/sqlite3_connection_pool.dart',\n      ),\n    ),\n    headers: Headers(entryPoints: [Uri.parse('src/headers.h')]),\n    functions: Functions(\n      include: (d) => d.originalName.startsWith('pkg_sqlite3_connection_pool'),\n      // The obtain functions post completions to a port and don't obtain any\n      // locks, so we can mark them as isLeaf.\n      isLeaf: (d) =>\n          d.originalName.contains('obtain') ||\n          d.originalName.contains('stmt_cache'),\n      // Close functions are used for native finalizers\n      includeSymbolAddress: (d) => d.originalName.contains('close'),\n    ),\n    structs: Structs(\n      include: Declarations.includeSet(const {\n        'InitializedPool',\n        'PoolConnection',\n      }),\n    ),\n  );\n  generator.generate();\n}\n"
  },
  {
    "path": "sqlite3_test/.gitignore",
    "content": "# https://dart.dev/guides/libraries/private-files\n# Created by `dart pub`\n.dart_tool/\n\n# Avoid committing pubspec.lock for library packages; see\n# https://dart.dev/guides/libraries/private-files#pubspeclock.\npubspec.lock\n"
  },
  {
    "path": "sqlite3_test/CHANGELOG.md",
    "content": "## 0.2.0\n\n- Use version 3.x of `package:sqlite3`.\n\n## 0.1.1\n\n- Fix writes on Windows.\n\n## 0.1.0\n\n- Initial version.\n"
  },
  {
    "path": "sqlite3_test/LICENSE",
    "content": "MIT License\n\nCopyright (c) 2024 Simon Binder\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "sqlite3_test/README.md",
    "content": "This package provides utilities for accessing SQLite databases in Dart tests.\n\n## Features\n\nGiven that SQLite has no external dependencies and runs in the process of your\napp, it can easily be used in unit tests (avoiding the hassle of writing mocks\nfor your database and repositories).\n\nHowever, being a C library, SQLite is unaware of other Dart utilities typically\nused in tests (like a fake time with `package:clock` or a custom file system\nbased on `package:file`).\nWhen your database queries depend on `CURRENT_TIMESTAMP`, this makes it hard\nto reliably test them as `clock.now()` and `CURRENT_TIMESTAMP` would report\ndifferent values.\n\nAs a solution, this small package makes SQLite easier to integrate into your\ntests by providing a [VFS](https://sqlite.org/vfs.html) that will:\n\n1. Make `CURRENT_TIME`, `CURRENT_DATE` and `CURRENT_TIMESTAMP` reflect the time\n   returned by `package:clock`.\n2. For IO operations, allow providing a `FileSystem` from `package:file`. This\n   includes custom implementations and the default one respecting\n   `IOOverrides`.\n\n## Usage\n\nThis package is intended to be used in tests, so begin by adding a dev\ndependency on it:\n\n```\n$ dart pub add --dev sqlite3_test\n```\n\nYou can then use it in tests by creating an instance of `TestSqliteFileSystem`\nfor your databases:\n\n```dart\nimport 'package:fake_async/fake_async.dart';\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:sqlite3_test/sqlite3_test.dart';\nimport 'package:file/local.dart';\nimport 'package:test/test.dart';\n\nvoid main() {\n  late TestSqliteFileSystem vfs;\n\n  setUpAll(() {\n    vfs = TestSqliteFileSystem(fs: const LocalFileSystem());\n    sqlite3.registerVirtualFileSystem(vfs);\n  });\n  tearDownAll(() => sqlite3.unregisterVirtualFileSystem(vfs));\n\n  test('my test depending on database time', () {\n    final database = sqlite3.openInMemory(vfs: vfs.name);\n    addTearDown(database.dispose);\n\n    // The VFS uses package:clock to get the current time, which can be\n    // overridden for tests:\n    final moonLanding = DateTime.utc(1969, 7, 20, 20, 18, 04);\n    FakeAsync(initialTime: moonLanding).run((_) {\n      final row = database.select('SELECT unixepoch(current_timestamp)').first;\n\n      expect(row.columnAt(0), -14182916);\n    });\n  });\n}\n```\n\n## Limitations\n\nThe layer of indirection through Dart will likely make your databases slower.\nFor this reason, this package is intended to be used in tests (as the overhead\nis not a problem there).\n\nAlso, note that `TestSqliteFileSystem` cannot be used with WAL databases as the\nfile system does not implement memory-mapped IO.\n"
  },
  {
    "path": "sqlite3_test/analysis_options.yaml",
    "content": "include: package:lints/recommended.yaml\n"
  },
  {
    "path": "sqlite3_test/example/sqlite3_test_example.dart",
    "content": "import 'package:fake_async/fake_async.dart';\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:sqlite3_test/sqlite3_test.dart';\nimport 'package:file/local.dart';\nimport 'package:test/test.dart';\n\nvoid main() {\n  late TestSqliteFileSystem vfs;\n\n  setUpAll(() {\n    vfs = TestSqliteFileSystem(fs: const LocalFileSystem());\n    sqlite3.registerVirtualFileSystem(vfs);\n  });\n  tearDownAll(() => sqlite3.unregisterVirtualFileSystem(vfs));\n\n  test('my test depending on database time', () {\n    final database = sqlite3.openInMemory(vfs: vfs.name);\n    addTearDown(database.close);\n\n    // The VFS uses package:clock to get the current time, which can be\n    // overridden for tests:\n    final moonLanding = DateTime.utc(1969, 7, 20, 20, 18, 04);\n    FakeAsync(initialTime: moonLanding).run((_) {\n      final row = database.select('SELECT unixepoch(current_timestamp)').first;\n\n      expect(row.columnAt(0), -14182916);\n    });\n  });\n}\n"
  },
  {
    "path": "sqlite3_test/lib/sqlite3_test.dart",
    "content": "/// Provides a virtual filesystem implementation for SQLite based on the `file`\n/// and `clock` packages.\n///\n/// This makes it easier to use SQLite in tests, as SQL constructs like\n/// `CURRENT_TIMESTAMP` will reflect the fake time of `package:clock`, allowing\n/// SQL logic relying on time to be tested reliably. Additionally, using\n/// `dart:clock` allows testing the IO behavior of SQLite databases if\n/// necessary.\nlibrary;\n\nimport 'dart:typed_data';\n\nimport 'package:clock/clock.dart';\nimport 'package:file/file.dart';\nimport 'package:sqlite3/common.dart';\n\nfinal class TestSqliteFileSystem extends BaseVirtualFileSystem {\n  static int _counter = 0;\n\n  final FileSystem _fs;\n  Directory? _createdTmp;\n  int _tmpFileCounter = 0;\n\n  TestSqliteFileSystem({required FileSystem fs, String? name})\n    : _fs = fs,\n      super(name: name ?? 'dart-test-vfs-${_counter++}');\n\n  Directory get _tempDirectory {\n    return _createdTmp ??= _fs.systemTempDirectory.createTempSync(\n      'dart-sqlite3-test',\n    );\n  }\n\n  @override\n  int xAccess(String path, int flags) {\n    switch (flags) {\n      case 0:\n        // Exists\n        return _fs.typeSync(path) == FileSystemEntityType.file ? 1 : 0;\n      default:\n        // Check readable and writable\n        try {\n          final file = _fs.file(path);\n          file.openSync(mode: FileMode.write).closeSync();\n          return 1;\n        } on IOException {\n          return 0;\n        }\n    }\n  }\n\n  @override\n  DateTime xCurrentTime() {\n    return clock.now();\n  }\n\n  @override\n  void xDelete(String path, int syncDir) {\n    _fs.file(path).deleteSync();\n  }\n\n  @override\n  String xFullPathName(String path) {\n    return _fs.path.absolute(path);\n  }\n\n  @override\n  XOpenResult xOpen(Sqlite3Filename path, int flags) {\n    final fsPath =\n        path.path ??\n        _tempDirectory.childFile((_tmpFileCounter++).toString()).absolute.path;\n    final type = _fs.typeSync(fsPath);\n\n    if (type != FileSystemEntityType.notFound &&\n        type != FileSystemEntityType.file) {\n      throw VfsException(ErrorCodes.EINVAL);\n    }\n\n    if (flags & SqlFlag.SQLITE_OPEN_EXCLUSIVE != 0 &&\n        type != FileSystemEntityType.notFound) {\n      throw VfsException(ErrorCodes.EEXIST);\n    }\n    if (flags & SqlFlag.SQLITE_OPEN_CREATE != 0 &&\n        type == FileSystemEntityType.notFound) {\n      _fs.file(fsPath).createSync();\n    }\n\n    final deleteOnClose = flags & SqlFlag.SQLITE_OPEN_DELETEONCLOSE != 0;\n    final readonly = flags & SqlFlag.SQLITE_OPEN_READONLY != 0;\n    final vsFile = _fs.file(fsPath);\n    final file = vsFile.openSync(\n      mode: readonly ? FileMode.read : FileMode.write,\n    );\n\n    return (\n      file: _TestFile(vsFile, file, deleteOnClose),\n      outFlags: readonly ? SqlFlag.SQLITE_OPEN_READONLY : 0,\n    );\n  }\n\n  @override\n  void xSleep(Duration duration) {}\n}\n\nfinal class _TestFile implements VirtualFileSystemFile {\n  final File _path;\n  final RandomAccessFile _file;\n  final bool _deleteOnClose;\n  int _lockLevel = SqlFileLockingLevels.SQLITE_LOCK_NONE;\n\n  _TestFile(this._path, this._file, this._deleteOnClose);\n\n  @override\n  void xClose() {\n    _file.closeSync();\n    if (_deleteOnClose) {\n      _path.deleteSync();\n    }\n  }\n\n  @override\n  int get xDeviceCharacteristics => 0;\n\n  @override\n  int xFileSize() => _file.lengthSync();\n\n  @override\n  void xRead(Uint8List target, int fileOffset) {\n    _file.setPositionSync(fileOffset);\n    final bytesRead = _file.readIntoSync(target);\n    if (bytesRead < target.length) {\n      target.fillRange(bytesRead, target.length, 0);\n      throw VfsException(SqlExtendedError.SQLITE_IOERR_SHORT_READ);\n    }\n  }\n\n  @override\n  void xSync(int flags) {\n    _file.flushSync();\n  }\n\n  @override\n  void xTruncate(int size) {\n    _file.truncateSync(size);\n  }\n\n  @override\n  void xWrite(Uint8List buffer, int fileOffset) {\n    _file\n      ..setPositionSync(fileOffset)\n      ..writeFromSync(buffer);\n  }\n\n  @override\n  int xCheckReservedLock() {\n    // RandomAccessFile doesn't appear to expose information on whether another\n    // process is holding locks.\n    return _lockLevel > SqlFileLockingLevels.SQLITE_LOCK_NONE ? 1 : 0;\n  }\n\n  @override\n  void xLock(int mode) {\n    if (_lockLevel >= mode) {\n      return;\n    }\n\n    if (_lockLevel != SqlFileLockingLevels.SQLITE_LOCK_NONE) {\n      // We want to upgrade our lock, which we do by releasing it and then\n      // re-obtaining it.\n      _file.unlockSync();\n      _lockLevel = SqlFileLockingLevels.SQLITE_LOCK_NONE;\n    }\n\n    final exclusive = mode > SqlFileLockingLevels.SQLITE_LOCK_SHARED;\n    _file.lockSync(\n      exclusive ? FileLock.blockingExclusive : FileLock.blockingShared,\n    );\n    _lockLevel = mode;\n  }\n\n  @override\n  void xUnlock(int mode) {\n    if (_lockLevel < mode) {\n      return;\n    }\n\n    _file.unlockSync();\n    _lockLevel = SqlFileLockingLevels.SQLITE_LOCK_NONE;\n    if (mode != SqlFileLockingLevels.SQLITE_LOCK_NONE) {\n      return xLock(mode);\n    }\n  }\n}\n"
  },
  {
    "path": "sqlite3_test/pubspec.yaml",
    "content": "name: sqlite3_test\ndescription: Integration of fake clocks and other test utilities for SQLite databases.\nversion: 0.2.0\nhomepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_test\nrepository: https://github.com/simolus3/sqlite3.dart\nresolution: workspace\ntopics:\n  - database\n  - sqlite\n\nenvironment:\n  # We want >=3.10, but Flutter 3.38 somehow ships with a beta Dart SDK that rejects >=3.10 deps.\n  sdk: '>=3.9.999 <4.0.0'\n\ndependencies:\n  clock: ^1.1.2\n  file: ^7.0.1\n  sqlite3: ^3.0.0\n\ndev_dependencies:\n  fake_async: ^1.3.2\n  lints: ^6.0.0\n  test: ^1.24.0\n  test_descriptor: ^2.0.1\n"
  },
  {
    "path": "sqlite3_test/test/sqlite3_test_test.dart",
    "content": "import 'dart:convert';\nimport 'dart:io';\n\nimport 'package:fake_async/fake_async.dart';\nimport 'package:sqlite3/sqlite3.dart';\nimport 'package:sqlite3_test/sqlite3_test.dart';\nimport 'package:test/test.dart';\nimport 'package:test_descriptor/test_descriptor.dart' as d;\nimport 'package:file/local.dart';\n\nvoid main() {\n  late TestSqliteFileSystem vfs;\n\n  setUp(() {\n    vfs = TestSqliteFileSystem(fs: const LocalFileSystem());\n    sqlite3.registerVirtualFileSystem(vfs, makeDefault: false);\n  });\n  tearDown(() => sqlite3.unregisterVirtualFileSystem(vfs));\n\n  Database withDatabase(Database db) {\n    addTearDown(db.close);\n    return db;\n  }\n\n  Database inMemory() => withDatabase(sqlite3.openInMemory(vfs: vfs.name));\n  Database onDisk(String path) =>\n      withDatabase(sqlite3.open(path, vfs: vfs.name));\n\n  test('reports fake time', () {\n    final moonLanding = DateTime.utc(1969, 7, 20, 20, 18, 04);\n\n    FakeAsync(initialTime: moonLanding).run((async) {\n      final db = inMemory();\n\n      expect(db.select('SELECT current_time AS r'), [\n        {'r': '20:18:04'},\n      ]);\n      expect(db.select('SELECT current_date AS r'), [\n        {'r': '1969-07-20'},\n      ]);\n      expect(db.select('SELECT current_timestamp AS r'), [\n        {'r': '1969-07-20 20:18:04'},\n      ]);\n    });\n  });\n\n  test('use fake cwd from io overrides', () async {\n    await d.dir('foo').create();\n    final cwd = Directory(d.path('foo'));\n\n    IOOverrides.runZoned(() {\n      final db = onDisk('test.db');\n      db.execute('CREATE TABLE foo (bar);');\n    }, getCurrentDirectory: () => cwd);\n\n    await d.dir('foo', [\n      d.FileDescriptor.binaryMatcher(\n        'test.db',\n        predicate((bytes) {\n          final firstBytes = (bytes as List<int>).sublist(0, 15);\n          return utf8.decode(firstBytes) == 'SQLite format 3';\n        }, 'starts with sqlite header'),\n      ),\n    ]).validate();\n  });\n}\n"
  },
  {
    "path": "sqlite3_wasm_build/README.md",
    "content": "### Compiling\n\nNote: Compiling sqlite3 to WebAssembly is not necessary for users of this package,\njust grab the `.wasm` from the latest release on GitHub.\n\nThis section describes how to compile the WebAssembly modules from source. This\nuses a LLVM-based toolchain with components of the WASI SDK for C runtime components.\n\n#### Setup\n\n##### Linux\n\nOn Linux, you need a LLVM based toolchain capable of compiling to WebAssembly.\nOn Arch Linux, the `wasi-compiler-rt` and `wasi-libc` packages are enough for this.\nOn other distros, you may have to download the sysroot and compiler builtins from their\nrespective package managers or directly from the WASI SDK releases.\n\nWith wasi in `/usr/share/wasi-sysroot` and the default clang compiler having the\nrequired builtins, you can setup the build with:\n\n```\ncmake -S src -B .dart_tool/sqlite3_build\n```\n\n##### macOS\n\nOn macOS, install a WebAssembly-capable C compiler. If you're using Homebrew,\nyou can use\n\n```\nbrew install cmake llvm binaryen wasi-libc wasi-runtimes\n```\n\nThen, set up the build with\n\n```\ncmake -Dwasi_sysroot=/opt/homebrew/share/wasi-sysroot -Dclang=/opt/homebrew/opt/llvm/bin/clang -S src -B .dart_tool/sqlite3_build\n```\n\n#### Building\n\nIn this directory, run:\n\n```\ncmake --build .dart_tool/sqlite3_build/ -t output -j\n```\n\nThe `output` target copies `sqlite3.wasm` and `sqlite3.debug.wasm` to `out/`.\n\n(Of course, you can also run the build in any other directory than `.dart_tool/sqite3_build` if you want to).\n\n### Customizing the WASM module\n\nThe build scripts in this repository, which are also used for the default distribution of `sqlite3.wasm`\nattached to releases, are designed to mirror the options used by `sqlite3_flutter_libs`.\nIf you want to use different options, or include custom extensions in the WASM module, you can customize\nthe build setup.\n\nTo use regular sqlite3 sources with different compile-time options, alter `assets/wasm/sqlite_cfg.h` and\nre-run the build as described in [compiling](#compiling).\nIncluding additional extensions written in C is possible by adapting the `CMakeLists.txt` in\n`assets/wasm`.\n\nA simple example demonstrating how to include Rust-based extensions is included in `example/custom_wasm_build`.\nThe readme in that directory explains the build process in detail, but you still need the WASI/Clang toolchains\ndescribed in the [setup section](#linux).\n"
  },
  {
    "path": "sqlite3_wasm_build/pubspec.yaml",
    "content": "name: sqlite3_wasm_build\ndescription: Buildscripts for sqlite3.wasm\n\nenvironment:\n  sdk: '>=3.10.0-0 <4.0.0'\n\ntopics:\n  - sql\n  - database\n  - ffi\n  - sqlite\n\ndev_dependencies:\n"
  },
  {
    "path": "sqlite3_wasm_build/src/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.24)\n\nset(PROJECT_NAME \"sqlite3_web\")\nproject(${PROJECT_NAME} LANGUAGES C)\n\nset(triple wasm32-unknown-wasi)\nset(wasi_sysroot \"/usr/share/wasi-sysroot\" CACHE PATH \"Path to wasi sysroot\")\nset(clang \"clang\" CACHE FILEPATH \"Path to wasm-capable clang executable\")\n\ninclude(FetchContent)\n\nFetchContent_Declare(\n    sqlite3\n    # NOTE: When changing this, also update `test/wasm/sqlite3_test.dart`\n    URL https://sqlite.org/2026/sqlite-autoconf-3530000.tar.gz\n    DOWNLOAD_EXTRACT_TIMESTAMP NEW\n)\n\nFetchContent_Declare(\n    sqlite3mc\n    URL https://github.com/utelle/SQLite3MultipleCiphers/releases/download/v2.3.3/sqlite3mc-2.3.3-sqlite-3.53.0-amalgamation.zip\n    DOWNLOAD_EXTRACT_TIMESTAMP NEW\n)\n\nFetchContent_MakeAvailable(sqlite3)\nFetchContent_MakeAvailable(sqlite3mc)\n\n# Generate symbols we need to export from the sqlite3.wasm build\nadd_custom_command(\n    OUTPUT required_symbols.txt\n    WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../\n    COMMAND dart run ${CMAKE_CURRENT_SOURCE_DIR}/../tool/wasm_symbols.dart ${CMAKE_CURRENT_BINARY_DIR}/required_symbols.txt\n    DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/../tool/wasm_symbols.dart\n    VERBATIM\n)\nadd_custom_target(required_symbols DEPENDS required_symbols.txt)\n\nmacro(base_sqlite3_target name debug crypto)\n  set(clang_output ${name}.clang.wasm)\n  set(output ${clang_output})\n\n  set(sources\n    ${CMAKE_CURRENT_SOURCE_DIR}/os_web.c\n    ${CMAKE_CURRENT_SOURCE_DIR}/helpers.c\n    ${CMAKE_CURRENT_SOURCE_DIR}/external_objects.c\n  )\n  set(flags -Wall -Wextra -Wno-unused-parameter -Wno-unused-function)\n\n  if(${crypto})\n    list(APPEND sources \"${sqlite3mc_SOURCE_DIR}/sqlite3mc_amalgamation.c\")\n    list(APPEND sources \"${CMAKE_CURRENT_SOURCE_DIR}/getentropy.c\")\n    # We only want to support the chacha20 cipher, some of the others are tricky to\n    # compile to webassembly.\n    list(APPEND flags\n      \"-DHAVE_CIPHER_AES_128_CBC=0\"\n      \"-DHAVE_CIPHER_AES_256_CBC=0\"\n      \"-DHAVE_CIPHER_SQLCIPHER=0\"\n      \"-DHAVE_CIPHER_RC4=0\"\n      \"-DHAVE_CIPHER_ASCON128=0\"\n      \"-DHAVE_CIPHER_AEGIS=0\"\n      \"-DHAVE_CIPHER_CHACHA20=1\"\n    )\n  else()\n    list(APPEND sources \"${sqlite3_SOURCE_DIR}/sqlite3.c\")\n  endif()\n\n  if(${debug})\n    list(APPEND flags \"-g\" \"-DDEBUG\")\n  else()\n    list(APPEND flags \"-Oz\" \"-DNDEBUG\" \"-flto\")\n  endif()\n\n  add_custom_command(\n    OUTPUT ${clang_output}\n    COMMAND ${clang} --target=${triple} -std=c23\n      ${flags}\n      -o ${clang_output}\n      -I ${PROJECT_SOURCE_DIR} -I ${sqlite3_SOURCE_DIR}\n      -DSQLITE_ENABLE_SESSION\n      -DSQLITE_ENABLE_PREUPDATE_HOOK\n      -D_HAVE_SQLITE_CONFIG_H\n      -D__WASM__\n      -mcpu=generic\n      -mexec-model=reactor\n      -fno-stack-protector -fno-stack-clash-protection\n      --sysroot ${wasi_sysroot}\n      ${sources}\n      @${CMAKE_CURRENT_BINARY_DIR}/required_symbols.txt\n    DEPENDS ${sources} required_symbols\n    VERBATIM\n  )\n\n  if(NOT ${debug})\n    set(init_output ${name}.init.wasm)\n    set(output ${name}.wasm)\n\n    add_custom_command(\n      OUTPUT ${init_output}\n      COMMAND wasm-ctor-eval -c _initialize ${clang_output} -o ${init_output}\n      VERBATIM\n      DEPENDS ${clang_output}\n    )\n    add_custom_command(\n        OUTPUT ${output}\n        COMMAND wasm-opt --strip --strip-producers -c -O4 ${init_output} -o ${output}\n        VERBATIM\n        DEPENDS ${init_output}\n    )\n  endif()\n\n  add_custom_target(${name} DEPENDS ${output})\nendmacro()\n\nbase_sqlite3_target(sqlite3_debug true false)\nbase_sqlite3_target(sqlite3_opt false false)\nbase_sqlite3_target(sqlite3mc false true)\n\nadd_custom_target(output)\nadd_custom_command(TARGET output COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR}/sqlite3_opt.wasm ${PROJECT_SOURCE_DIR}/../out/sqlite3.wasm)\nadd_custom_command(TARGET output COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR}/sqlite3_debug.clang.wasm ${PROJECT_SOURCE_DIR}/../out/sqlite3.debug.wasm)\nadd_custom_command(TARGET output COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR}/sqlite3mc.wasm ${PROJECT_SOURCE_DIR}/../out/sqlite3mc.wasm)\nadd_dependencies(output sqlite3_debug sqlite3_opt sqlite3mc)\nadd_dependencies(output sqlite3_debug)\n"
  },
  {
    "path": "sqlite3_wasm_build/src/bridge.h",
    "content": "#include <stdint.h>\n#include <stdlib.h>\n#include <time.h>\n\n#include \"sqlite3.h\"\n\n#define import_dart(name) \\\n  __attribute__((import_module(\"dart\"), import_name(name)))\n\n// Defines functions implemented in Dart. These functions are imported into\n// the wasm module.\n\n// Static\nimport_dart(\"error_log\") extern void dartLogError(const char* msg);\nimport_dart(\"localtime\") extern int dartLocalTime(int64_t time,\n                                                  struct tm* result);\n\n// Methods on VirtualFileSystem\nimport_dart(\"xOpen\") extern __externref_t\n    xOpen(__externref_t vfs, sqlite3_filename zName, int* rcPtr, int flags,\n          int* pOutFlags);\nimport_dart(\"xDelete\") extern int xDelete(__externref_t vfs, const char* zName,\n                                          int syncDir);\nimport_dart(\"xAccess\") extern int xAccess(__externref_t vfs, const char* zName,\n                                          int flags, int* pResOut);\nimport_dart(\"xFullPathname\") extern int xFullPathname(__externref_t vfs,\n                                                      const char* zName,\n                                                      int nOut, char* zOut);\nimport_dart(\"xRandomness\") extern int xRandomness(__externref_t vfs, int nByte,\n                                                  char* zOut);\nimport_dart(\"xSleep\") extern int xSleep(__externref_t vfs, int microseconds);\nimport_dart(\"xCurrentTimeInt64\") extern int xCurrentTimeInt64(__externref_t vfs,\n                                                              int64_t* target);\n\n// Methods on VirtualFileSystemFile\nimport_dart(\"xClose\") extern int xClose(__externref_t file);\nimport_dart(\"xRead\") extern int xRead(__externref_t, void*, int iAmt,\n                                      sqlite3_int64 iOfst);\nimport_dart(\"xWrite\") extern int xWrite(__externref_t, const void*, int iAmt,\n                                        sqlite3_int64 iOfst);\nimport_dart(\"xTruncate\") extern int xTruncate(__externref_t,\n                                              sqlite3_int64 size);\nimport_dart(\"xSync\") extern int xSync(__externref_t, int flags);\nimport_dart(\"xFileSize\") extern int xFileSize(__externref_t, int* pSize);\nimport_dart(\"xLock\") extern int xLock(__externref_t, int);\nimport_dart(\"xUnlock\") extern int xUnlock(__externref_t, int);\nimport_dart(\"xCheckReservedLock\") extern int xCheckReservedLock(__externref_t,\n                                                                int* pResOut);\nimport_dart(\"xDeviceCharacteristics\") extern int xDeviceCharacteristics(\n    __externref_t);\n\n// Handles injected as externrefs, are DartExternalReference<Function> in Dart.\nimport_dart(\"dispatch_()v\") extern void dartDispatchReturnVoid(\n    __externref_t handle);\nimport_dart(\"dispatch_()i\") extern int dartDispatchReturnInt(\n    __externref_t handle);\nimport_dart(\"dispatch_update\") extern void dartDispatchUpdateHook(\n    __externref_t handle, int kind, const char* schema, const char* table,\n    sqlite3_int64 rowid);\n\n// Handles injected as externrefs, are\n// DartExternalReference<RegisteredFunctionSet> in Dart.\nimport_dart(\"dispatch_xFunc\") extern void dispatchXFunc(__externref_t handle,\n                                                        sqlite3_context* ctx,\n                                                        int nArgs,\n                                                        sqlite3_value** value);\nimport_dart(\"dispatch_xStep\") extern void dispatchXStep(__externref_t handle,\n                                                        sqlite3_context* ctx,\n                                                        int nArgs,\n                                                        sqlite3_value** value);\nimport_dart(\"dispatch_xInverse\") extern void dispatchXInverse(\n    __externref_t handle, sqlite3_context* ctx, int nArgs,\n    sqlite3_value** value);\nimport_dart(\"dispatch_xFinal\") extern void dispatchXFinal(__externref_t handle,\n                                                          sqlite3_context* ctx);\nimport_dart(\"dispatch_xValue\") extern void dispatchXValue(__externref_t handle,\n                                                          sqlite3_context* ctx);\nimport_dart(\"dispatch_compare\") extern int dispatchXCompare(\n    __externref_t handle, int lengthA, const void* a, int lengthB,\n    const void* b);\nimport_dart(\"dispatch_busy\") extern int dispatchBusyHandler(\n    __externref_t handle, int amount);\n\n// Methods on SessionApplyCallbacks\nimport_dart(\"changeset_apply_filter\") extern int dispatchApplyFilter(\n    __externref_t callbacks, const char* zTab);\nimport_dart(\"changeset_apply_conflict\") extern int dispatchApplyConflict(\n    __externref_t callbacks, int eConflict, sqlite3_changeset_iter* p);\n"
  },
  {
    "path": "sqlite3_wasm_build/src/external_objects.c",
    "content": "#include \"external_objects.h\"\n\n#include <stdint.h>\n#include <stdlib.h>\n\n// A table of ExternalDartReference objects. When we want to call methods on\n// them, we pass them as a first argument to a static entrypoint function\n// injected when instantiating the module.\nstatic __externref_t host_objects[0];\n\n// Note: Inlining these functions seems to cause linker errors (something about\n// clang attempting to take the address of host_objects).\nvoid host_table_set(size_t index, __externref_t value) {\n  __builtin_wasm_table_set(host_objects, (int)index, value);\n}\n\nstatic __externref_t host_table_get(size_t index) {\n  return __builtin_wasm_table_get(host_objects, (int)index);\n}\n\nstatic size_t host_table_grow(size_t delta) {\n  return (size_t)__builtin_wasm_table_grow(\n      host_objects, __builtin_wasm_ref_null_extern(), delta);\n}\n\nstatic size_t host_table_size() {\n  return (size_t)__builtin_wasm_table_size(host_objects);\n}\n\n// A simple slab allocator to find free indices in the host objects table.\ntypedef struct {\n  // Index of the next available slot in the slab, or set to capacity if full.\n  size_t first_free_slot;\n#if DEBUG\n  // Always equal to host_table_size(), only used to assert that invariant in\n  // debug builds.\n  size_t capacity;\n#endif\n  // A capacity-length array storing indexing information.\n  //\n  // If host_object[i] is unoccupied, freelist[i] contains the next value for\n  // first_free_slot after allocating in that slot. This effectively forms a\n  // linked stack of free slots.\n  //\n  // If host_object[i] is occuped, the value of freelist[i] is unspecified.\n  size_t* freelist;\n} slab;\n\nstatic slab host_objects_slab = {.first_free_slot = 0,\n#if DEBUG\n                                 .capacity = 0,\n#endif\n                                 .freelist = nullptr};\n\nvoid* host_object_insert(__externref_t ref) {\n#if DEBUG\n  if (__builtin_wasm_ref_is_null_extern(ref)) {\n    __builtin_trap();\n  }\n#endif\n\n  auto slot = host_objects_slab.first_free_slot;\n  auto old_capacity = host_table_size();\n#if DEBUG\n  if (old_capacity != host_objects_slab.capacity) {\n    __builtin_trap();\n  }\n#endif\n\n  if (slot == old_capacity) {  // Table full?\n    auto target_size = old_capacity * 2;\n    if (target_size == 0) {\n      // It's 0 initially, grow it to a reasonable initial size we're unlikely\n      // to exceed.\n      target_size = 16;\n    }\n\n    auto grow_result = host_table_grow(target_size - old_capacity);\n    if (grow_result != old_capacity) {\n      __builtin_trap();\n    }\n\n    size_t* freelist =\n        realloc(host_objects_slab.freelist, target_size * sizeof(size_t));\n    if (!freelist) {\n      __builtin_trap();\n    }\n    for (size_t i = old_capacity; i < target_size; i++) {\n      freelist[i] = i + 1;\n    }\n    // Note: first_free_slot = old_capacity, freelist[old_capacity] =\n    // old_capacity + 1 and so on.\n    host_objects_slab.freelist = freelist;\n    host_objects_slab.first_free_slot = slot + 1;\n#if DEBUG\n    host_objects_slab.capacity = target_size;\n#endif\n  } else {\n    // Pop freelist.\n    host_objects_slab.first_free_slot = host_objects_slab.freelist[slot];\n  }\n\n#if DEBUG\n  // Assert that target slot is also vacant in table.\n  if (!__builtin_wasm_ref_is_null_extern(host_table_get(slot))) {\n    __builtin_trap();\n  }\n#endif\n\n  // Persist reference into table.\n  host_table_set(slot, ref);\n  return (void*)slot;\n}\n\n__externref_t host_object_get(void* ptr) {\n  size_t index = (size_t)ptr;\n  return host_table_get(index);\n}\n\nvoid host_object_free(void* ptr) {\n  size_t index = (size_t)ptr;\n\n#if DEBUG\n  if (__builtin_wasm_ref_is_null_extern(host_table_get(index))) {\n    __builtin_trap();\n  }\n#endif\n\n  // Remove external reference from table.\n  host_table_set(index, __builtin_wasm_ref_null_extern());\n\n  // Push index to front of freelist.\n  host_objects_slab.freelist[index] = host_objects_slab.first_free_slot;\n  host_objects_slab.first_free_slot = index;\n}\n"
  },
  {
    "path": "sqlite3_wasm_build/src/external_objects.h",
    "content": "#pragma once\n\n/// Insert an external reference into a global table, returning a pointer\n/// identifying the slot.\nvoid* host_object_insert(__externref_t ref);\n\n/// From a slot returned by `host_object_insert`, obtain the external reference.\n__externref_t host_object_get(void* ptr);\n\n/// Free a slot returned by `host_object_insert`.\nvoid host_object_free(void* ptr);\n"
  },
  {
    "path": "sqlite3_wasm_build/src/getentropy.c",
    "content": "#include <stdlib.h>\n\n#include \"bridge.h\"\n\n// sqlite3mc calls getentropy on initialization. That call pulls a bunch of WASI\n// imports in when using the default WASI libc, which we're trying to avoid\n// here. Instead, we use a local implementation backed by `Random.secure()` in\n// Dart.\nint getentropy(void* buf, size_t n) {\n  return xRandomness(__builtin_wasm_ref_null_extern(), (int)n, (char*)buf);\n}\n"
  },
  {
    "path": "sqlite3_wasm_build/src/helpers.c",
    "content": "#include <string.h>\n\n#include \"bridge.h\"\n#include \"external_objects.h\"\n#include \"sqlite3.h\"\n\n#define DART_FILE(file) (host_object_get(((dart_vfs_file*)(file))->dart_object))\n\n#ifdef SQLITE_ENABLE_VFSTRACE\n// When this is enabled, assume that `vfstrace_register` exists\n// See https://www.sqlite.org/src/doc/trunk/src/test_vfstrace.c\n\nextern int vfstrace_register(\n    const char* zTraceName,           // Name of the newly constructed VFS\n    const char* zOldVfsName,          // Name of the underlying VFS\n    int (*xOut)(const char*, void*),  // Output routine.  ex: fputs\n    void* pOutArg,                    // 2nd argument to xOut.  ex: stderr\n    int makeDefault                   // Make the new VFS the default\n);\n#endif\n\ntypedef struct {\n  struct sqlite3_io_methods* pMethods;\n  void* dart_object;\n} dart_vfs_file;\n\n// Interfaces we want to access in Dart\nSQLITE_API void* dart_sqlite3_malloc(size_t size) { return malloc(size); }\n\nSQLITE_API void dart_sqlite3_free(void* ptr) { return free(ptr); }\n\nSQLITE_API int dart_sqlite3_bind_blob(sqlite3_stmt* stmt, int index,\n                                      const void* buf, int len) {\n  return sqlite3_bind_blob64(stmt, index, buf, len, free);\n}\n\nSQLITE_API int dart_sqlite3_bind_text(sqlite3_stmt* stmt, int index,\n                                      const char* buf, int len) {\n  return sqlite3_bind_text(stmt, index, buf, len, free);\n}\n\nstatic int dartvfs_trace_log1(const char* msg, void* unused) {\n  dartLogError(msg);\n  return SQLITE_OK;\n}\n\nint dartvfs_close(sqlite3_file* file) {\n  auto rc = xClose(DART_FILE(file));\n  if (rc == 0) {\n    host_object_free(((dart_vfs_file*)file)->dart_object);\n  }\n  return rc;\n}\n\nint dartvfs_read(sqlite3_file* file, void* buf, int iAmt, sqlite3_int64 iOfst) {\n  return xRead(DART_FILE(file), buf, iAmt, iOfst);\n}\n\nint dartvfs_write(sqlite3_file* file, const void* buf, int iAmt,\n                  sqlite3_int64 iOfst) {\n  return xWrite(DART_FILE(file), buf, iAmt, iOfst);\n}\n\nint dartvfs_truncate(sqlite3_file* file, sqlite3_int64 size) {\n  return xTruncate(DART_FILE(file), size);\n}\n\nint dartvfs_sync(sqlite3_file* file, int flags) {\n  return xSync(DART_FILE(file), flags);\n}\n\nint dartvfs_fileSize(sqlite3_file* file, sqlite3_int64* pSize) {\n  int size32;\n  int rc = xFileSize(DART_FILE(file), &size32);\n  *pSize = (sqlite3_int64)size32;\n  return rc;\n}\n\nint dartvfs_lock(sqlite3_file* file, int i) {\n  return xLock(DART_FILE(file), i);\n}\n\nint dartvfs_unlock(sqlite3_file* file, int i) {\n  return xUnlock(DART_FILE(file), i);\n}\n\nint dartvfs_checkReservedLock(sqlite3_file* file, int* pResOut) {\n  return xCheckReservedLock(DART_FILE(file), pResOut);\n}\n\nint dartvfs_fileControl(sqlite3_file* file, int op, void* pArg) {\n  // \"VFS implementations should return SQLITE_NOTFOUND for file control opcodes\n  // that they do not recognize\". Well, we don't recognize any.\n  return SQLITE_NOTFOUND;\n}\n\nint dartvfs_deviceCharacteristics(sqlite3_file* file) {\n  return xDeviceCharacteristics(DART_FILE(file));\n}\n\nint dartvfs_sectorSize(sqlite3_file* file) {\n  // This is also the value of SQLITE_DEFAULT_SECTOR_SIZE, which would be picked\n  // if this function didn't exist. We need this method because vfstrace does\n  // not support null callbacks.\n  return 4096;\n}\n\nstatic int dartvfs_open(sqlite3_vfs* vfs, sqlite3_filename zName,\n                        sqlite3_file* file, int flags, int* pOutFlags) {\n  dart_vfs_file* dartFile = (dart_vfs_file*)file;\n  memset(dartFile, 0, sizeof(dart_vfs_file));\n\n  static sqlite3_io_methods methods = {\n      .iVersion = 1,\n      .xClose = &dartvfs_close,\n      .xRead = &dartvfs_read,\n      .xWrite = &dartvfs_write,\n      .xTruncate = &dartvfs_truncate,\n      .xSync = &dartvfs_sync,\n      .xFileSize = &dartvfs_fileSize,\n      .xLock = &dartvfs_lock,\n      .xUnlock = &dartvfs_unlock,\n      .xCheckReservedLock = &dartvfs_checkReservedLock,\n      .xFileControl = &dartvfs_fileControl,\n      .xDeviceCharacteristics = &dartvfs_deviceCharacteristics,\n#ifdef SQLITE_ENABLE_VFSTRACE\n      .xSectorSize = &dartvfs_sectorSize\n#else\n      .xSectorSize = NULL\n#endif\n  };\n\n  // The xOpen call will also set the dart_fd field.\n  int rc;\n  auto dart_file_object =\n      xOpen(host_object_get(vfs->pAppData), zName, &rc, flags, pOutFlags);\n\n  if (__builtin_wasm_ref_is_null_extern(dart_file_object)) {\n    dartFile->pMethods = nullptr;\n  } else {\n    // sqlite3 will call xClose() even if this open call returns an error if\n    // methods are set. So, we only provide the methods if a file has actually\n    // been opened.\n    dartFile->pMethods = &methods;\n    dartFile->dart_object = host_object_insert(dart_file_object);\n  }\n\n  return rc;\n}\n\nstatic int dartvfs_delete(sqlite3_vfs* vfs, const char* zName, int syncDir) {\n  return xDelete(host_object_get(vfs->pAppData), zName, syncDir);\n}\n\nstatic int dartvfs_access(sqlite3_vfs* vfs, const char* zName, int flags,\n                          int* pResOut) {\n  return xAccess(host_object_get(vfs->pAppData), zName, flags, pResOut);\n}\n\nstatic int dartvfs_fullPathname(sqlite3_vfs* vfs, const char* zName, int nOut,\n                                char* zOut) {\n  return xFullPathname(host_object_get(vfs->pAppData), zName, nOut, zOut);\n}\n\nstatic int dartvfs_randomness(sqlite3_vfs* vfs, int nByte, char* zOut) {\n  return xRandomness(host_object_get(vfs->pAppData), nByte, zOut);\n}\n\nstatic int dartvfs_sleep(sqlite3_vfs* vfs, int microseconds) {\n  return xSleep(host_object_get(vfs->pAppData), microseconds);\n}\n\nstatic int dartvfs_currentTimeInt64(sqlite3_vfs* vfs, sqlite3_int64* timeOut) {\n  int64_t milliseconds;\n  int rc = xCurrentTimeInt64(host_object_get(vfs->pAppData), &milliseconds);\n  if (rc) {\n    return rc;\n  }\n\n  // https://github.com/sqlite/sqlite/blob/8ee75f7c3ac1456b8d941781857be27bfddb57d6/src/os_unix.c#L6757\n  static const int64_t unixEpoch = 24405875 * (int64_t)8640000;\n  *timeOut = unixEpoch + milliseconds;\n  return SQLITE_OK;\n}\n\nSQLITE_API sqlite3_vfs* dart_sqlite3_register_vfs(const char* name,\n                                                  __externref_t dart_vfs,\n                                                  int makeDefault) {\n  sqlite3_vfs* vfs = calloc(1, sizeof(sqlite3_vfs));\n  vfs->iVersion = 2;\n  vfs->szOsFile = sizeof(dart_vfs_file);\n  vfs->mxPathname = 1024;\n  vfs->zName = name;\n  vfs->pAppData = host_object_insert(dart_vfs);\n  vfs->xOpen = &dartvfs_open;\n  vfs->xDelete = &dartvfs_delete;\n  vfs->xAccess = &dartvfs_access;\n  vfs->xFullPathname = &dartvfs_fullPathname;\n  vfs->xRandomness = &dartvfs_randomness;\n  vfs->xSleep = &dartvfs_sleep;\n  vfs->xCurrentTimeInt64 = &dartvfs_currentTimeInt64;\n\n#ifdef SQLITE_ENABLE_VFSTRACE\n  sqlite3_vfs_register(vfs, 0);\n\n  static const char* prefix = \"trace_\";\n  static const int prefixLength = 6;\n  char* traceName = malloc(strlen(name) + prefixLength);\n  strcpy(traceName, prefix);\n  strcpy(&traceName[prefixLength], name);\n\n  vfstrace_register(traceName, name, &dartvfs_trace_log1, NULL, makeDefault);\n#else\n  // Just register the VFS as is.\n  int rc = sqlite3_vfs_register(vfs, makeDefault);\n  if (rc) {\n    host_object_free(vfs->pAppData);\n    free(vfs);\n    return NULL;\n  }\n#endif\n  return vfs;\n}\n\nint dart_sqlite3_unregister_vfs(sqlite3_vfs* vfs) {\n  auto rc = sqlite3_vfs_unregister(vfs);\n  if (!rc) {\n    host_object_free(vfs->pAppData);\n    free(vfs->zName);\n    free(vfs);\n  }\n  return rc;\n}\n\nstatic void dartXFunc(sqlite3_context* context, int nArg,\n                      sqlite3_value** args) {\n  auto handle = host_object_get(sqlite3_user_data(context));\n  return dispatchXFunc(handle, context, nArg, args);\n}\n\nstatic void dartXStep(sqlite3_context* context, int nArg,\n                      sqlite3_value** args) {\n  auto handle = host_object_get(sqlite3_user_data(context));\n  return dispatchXStep(handle, context, nArg, args);\n}\n\nstatic void dartXInverse(sqlite3_context* context, int nArg,\n                         sqlite3_value** args) {\n  auto handle = host_object_get(sqlite3_user_data(context));\n  return dispatchXInverse(handle, context, nArg, args);\n}\n\nstatic void dartXFinal(sqlite3_context* context) {\n  auto handle = host_object_get(sqlite3_user_data(context));\n  return dispatchXFinal(handle, context);\n}\n\nstatic void dartXValue(sqlite3_context* context) {\n  auto handle = host_object_get(sqlite3_user_data(context));\n  return dispatchXValue(handle, context);\n}\n\nSQLITE_API int dart_sqlite3_create_function_v2(sqlite3* db,\n                                               const char* zFunctionName,\n                                               int nArg, int eTextRep,\n                                               int isAggregate,\n                                               __externref_t handlers) {\n  auto id = host_object_insert(handlers);\n  return sqlite3_create_function_v2(\n      db, zFunctionName, nArg, eTextRep, id, isAggregate ? nullptr : &dartXFunc,\n      isAggregate ? &dartXStep : nullptr, isAggregate ? &dartXFinal : nullptr,\n      &host_object_free);\n}\n\nSQLITE_API int dart_sqlite3_create_window_function(sqlite3* db,\n                                                   const char* zFunctionName,\n                                                   int nArg, int eTextRep,\n                                                   __externref_t handlers) {\n  auto id = host_object_insert(handlers);\n  return sqlite3_create_window_function(db, zFunctionName, nArg, eTextRep, id,\n                                        &dartXStep, &dartXFinal, &dartXValue,\n                                        &dartXInverse, &host_object_free);\n}\n\nstatic void dartXUpdate(void* context, int kind, const char* schema,\n                        const char* table, sqlite3_int64 rowid) {\n  // TODO (not supported in clang): Cast to extern => anyref => function =>\n  // call_ref\n  dartDispatchUpdateHook(host_object_get(context), kind, schema, table, rowid);\n}\n\nSQLITE_API void dart_sqlite3_updates(sqlite3* db, __externref_t function) {\n  void* previous;\n  if (__builtin_wasm_ref_is_null_extern(function)) {\n    previous = sqlite3_update_hook(db, nullptr, nullptr);\n  } else {\n    previous =\n        sqlite3_update_hook(db, &dartXUpdate, host_object_insert(function));\n  }\n\n  if (previous) {\n    host_object_free(previous);\n  }\n}\n\nstatic int dartXCommit(void* context) {\n  // TODO (not supported in clang): Cast to extern => anyref => function =>\n  // call_ref\n  return dartDispatchReturnInt(host_object_get(context));\n}\n\nSQLITE_API void dart_sqlite3_commits(sqlite3* db, __externref_t function) {\n  void* previous;\n  if (__builtin_wasm_ref_is_null_extern(function)) {\n    previous = sqlite3_commit_hook(db, nullptr, nullptr);\n  } else {\n    previous =\n        sqlite3_commit_hook(db, &dartXCommit, host_object_insert(function));\n  }\n\n  if (previous) {\n    host_object_free(previous);\n  }\n}\n\nstatic void dartXRollback(void* context) {\n  // TODO (not supported in clang): Cast to extern => anyref => function =>\n  // call_ref\n  return dartDispatchReturnVoid(host_object_get(context));\n}\n\nSQLITE_API void dart_sqlite3_rollbacks(sqlite3* db, __externref_t function) {\n  void* previous;\n  if (__builtin_wasm_ref_is_null_extern(function)) {\n    previous = sqlite3_rollback_hook(db, nullptr, nullptr);\n  } else {\n    previous =\n        sqlite3_rollback_hook(db, &dartXRollback, host_object_insert(function));\n  }\n\n  if (previous) {\n    host_object_free(previous);\n  }\n}\n\nstatic int dartXCompare(void* context, int lengthA, const void* a, int lengthB,\n                        const void* b) {\n  return dispatchXCompare(host_object_get(context), lengthA, a, lengthB, b);\n}\n\nSQLITE_API int dart_sqlite3_create_collation(sqlite3* db, const char* zName,\n                                             int eTextRep,\n                                             __externref_t function) {\n  auto context = host_object_insert(function);\n  return sqlite3_create_collation_v2(db, zName, eTextRep, context,\n                                     &dartXCompare, &host_object_free);\n}\n\nSQLITE_API int dart_sqlite3_db_config_int(sqlite3* db, int op, int arg) {\n  return sqlite3_db_config(db, op, arg);\n}\n\nstatic int dartChangesetXFilter(void* pCtx, const char* zTab) {\n  return dispatchApplyFilter(host_object_get(pCtx), zTab);\n}\n\nstatic int dartChangesetXConflict(void* pCtx, int eConflict,\n                                  sqlite3_changeset_iter* p) {\n  return dispatchApplyConflict(host_object_get(pCtx), eConflict, p);\n}\n\nSQLITE_API int dart_sqlite3changeset_apply(sqlite3* db, int nChangeset,\n                                           void* pChangeset,\n                                           __externref_t callbacks,\n                                           bool filter) {\n  auto context = host_object_insert(callbacks);\n  auto rc = sqlite3changeset_apply(db, nChangeset, pChangeset,\n                                   filter ? &dartChangesetXFilter : 0,\n                                   &dartChangesetXConflict, context);\n  host_object_free(context);\n  return rc;\n}\n\nstatic int dartBusyHandler(void* context, int amount) {\n  return dispatchBusyHandler(host_object_get(context), amount);\n}\n\nSQLITE_API int dart_sqlite3_busy_handler(sqlite3* db, __externref_t callback) {\n  if (__builtin_wasm_ref_is_null_extern(callback)) {\n    return sqlite3_busy_handler(db, nullptr, nullptr);\n  }\n  return sqlite3_busy_handler(db, &dartBusyHandler,\n                              host_object_insert(callback));\n}\n"
  },
  {
    "path": "sqlite3_wasm_build/src/os_web.c",
    "content": "#include <limits.h>\n#include <stdlib.h>\n#include <string.h>\n#include <time.h>\n\n#include \"bridge.h\"\n#include \"sqlite3.h\"\n\nint sqlite3_os_init(void) { return SQLITE_OK; }\n\nint sqlite3_os_end(void) { return SQLITE_OK; }\n\nstruct tm* localtime_r(const time_t* restrict timep,\n                       struct tm* restrict result) {\n  // This is not implemented by the WASI libc, but we can easily implement it\n  // with a Dart hook.\n  static_assert(sizeof(time_t) == sizeof(int64_t));\n  if (dartLocalTime(*timep, result)) {\n    return 0;\n  } else {\n    return result;\n  }\n}"
  },
  {
    "path": "sqlite3_wasm_build/src/sqlite_cfg.h",
    "content": "#define WASI_EMULATED_MMAN 1\n\n// Don't include the default VFS implementations, we write our own\n#define SQLITE_OS_OTHER 1\n\n// Don't include locking code and WAL which require multiple threads to access\n// the same WASM module, something we can't do\n#define SQLITE_THREADSAFE 0\n#define SQLITE_OMIT_WAL 1\n\n// Our implementation of temporary files is also entirely in-memory,\n// so there really is no point in using temp files.\n#define SQLITE_TEMP_STORE 3\n\n// Recommended options\n#define SQLITE_DQS 0\n#define SQLITE_DEFAULT_MEMSTATUS 0\n#define SQLITE_DEFAULT_WAL_SYNCHRONOUS 1\n#define SQLITE_LIKE_DOESNT_MATCH_BLOBS 1\n#define SQLITE_STRICT_SUBTYPE 1\n#define SQLITE_MAX_EXPR_DEPTH 0\n#define SQLITE_OMIT_DECLTYPE 1\n#define SQLITE_USE_ALLOCA 1\n#define SQLITE_BYTEORDER 1234\n\n// This apparently improves performance:\n// https://github.com/sqlite/sqlite/blob/b8d689b6668437e220fa329300e0541ff64e4ef6/ext/wasm/api/sqlite3-wasm.c#L57-L77\n#define SQLITE_DEFAULT_CACHE_SIZE -16384\n#define SQLITE_DEFAULT_PAGE_SIZE 8192\n\n// We have them, so we may as well let sqlite3 use them?\n#define HAVE_ISNAN 1\n#define HAVE_LOCALTIME_R 1\n#define HAVE_MALLOC_USABLE_SIZE 1\n#define HAVE_STRCHRNUL 1\n\n#define SQLITE_ENABLE_DBSTAT_VTAB 1\n#define SQLITE_ENABLE_FTS5 1\n#define SQLITE_ENABLE_MATH_FUNCTIONS 1\n#define SQLITE_ENABLE_RTREE 1\n#define SQLITE_ENABLE_SESSION 1\n#define SQLITE_ENABLE_PREUPDATE_HOOK 1\n\n// Disable things we don't need\n#define SQLITE_OMIT_DEPRECATED\n#define SQLITE_OMIT_PROGRESS_CALLBACK\n#define SQLITE_OMIT_AUTHORIZATION\n#define SQLITE_UNTESTABLE\n#define SQLITE_OMIT_COMPILEOPTION_DIAGS\n#define SQLITE_OMIT_LOAD_EXTENSION\n#define SQLITE_OMIT_TCL_VARIABLE\n#define SQLITE_OMIT_UTF16\n#define SQLITE_OMIT_DESERIALIZE\n#define SQLITE_DISABLE_DIRSYNC\n"
  },
  {
    "path": "sqlite3_wasm_build/tool/wasm_symbols.dart",
    "content": "import 'dart:io';\n\n/// Writes flags for clang that will `-Wl,--export` all symbols used by the\n/// `sqlite3` Dart package on the web.\nvoid main(List<String> args) {\n  final symbols = [...stableFunctions, ...unstable];\n\n  final output = File(args[0]);\n  output.writeAsStringSync(symbols.map((e) => '-Wl,--export=$e').join(' '));\n}\n\n// Functions we can assume to be exported from `sqlite3.wasm` unconditionally.\n// We regularly add bindings to additional SQLite functions that would not be\n// exported from older `sqlite3.wasm` bundles which we still support. We have\n// to generate those as optional functions.\nconst stableFunctions = {\n  'dart_sqlite3_malloc',\n  'dart_sqlite3_free',\n  'dart_sqlite3_bind_blob',\n  'dart_sqlite3_bind_text',\n  'dart_sqlite3_register_vfs',\n  'dart_sqlite3_unregister_vfs',\n  'dart_sqlite3_create_function_v2',\n  'dart_sqlite3_busy_handler',\n  'sqlite3_temp_directory',\n  'sqlite3_open_v2',\n  'sqlite3_close_v2',\n  'sqlite3_column_name',\n  'sqlite3_extended_result_codes',\n  'sqlite3_extended_errcode',\n  'sqlite3_errmsg',\n  'sqlite3_errstr',\n  'sqlite3_free',\n  'sqlite3_libversion',\n  'sqlite3_sourceid',\n  'sqlite3_libversion_number',\n  'sqlite3_last_insert_rowid',\n  'sqlite3_changes',\n  'sqlite3_exec',\n  'sqlite3_get_autocommit',\n  'sqlite3_prepare_v2',\n  'sqlite3_prepare_v3',\n  'sqlite3_finalize',\n  'sqlite3_step',\n  'sqlite3_reset',\n  'sqlite3_stmt_isexplain',\n  'sqlite3_stmt_readonly',\n  'sqlite3_column_count',\n  'sqlite3_bind_parameter_count',\n  'sqlite3_bind_parameter_index',\n  'sqlite3_bind_double',\n  'sqlite3_bind_int64',\n  'sqlite3_bind_null',\n  'sqlite3_column_blob',\n  'sqlite3_column_double',\n  'sqlite3_column_int64',\n  'sqlite3_column_text',\n  'sqlite3_column_bytes',\n  'sqlite3_column_type',\n  'sqlite3_value_blob',\n  'sqlite3_value_double',\n  'sqlite3_value_type',\n  'sqlite3_value_int64',\n  'sqlite3_value_text',\n  'sqlite3_value_bytes',\n  'sqlite3_aggregate_context',\n  'sqlite3_user_data',\n  'sqlite3_result_blob64',\n  'sqlite3_result_double',\n  'sqlite3_result_error',\n  'sqlite3_result_int64',\n  'sqlite3_result_null',\n  'sqlite3_result_text',\n  'sqlite3_db_config',\n  'sqlite3_initialize',\n  'dart_sqlite3_updates',\n  'dart_sqlite3_commits',\n  'dart_sqlite3_rollbacks',\n  'dart_sqlite3_db_config_int',\n  'sqlite3_error_offset',\n  'sqlite3_result_subtype',\n  'sqlite3_value_subtype',\n  'dart_sqlite3_create_window_function',\n  'dart_sqlite3_create_collation',\n  'sqlite3session_create',\n  'sqlite3session_delete',\n  'sqlite3session_enable',\n  'sqlite3session_indirect',\n  'sqlite3session_isempty',\n  'sqlite3session_attach',\n  'sqlite3session_diff',\n  'sqlite3session_patchset',\n  'sqlite3session_changeset',\n  'sqlite3changeset_invert',\n  'sqlite3changeset_start',\n  'sqlite3changeset_finalize',\n  'sqlite3changeset_next',\n  'sqlite3changeset_op',\n  'sqlite3changeset_old',\n  'sqlite3changeset_new',\n  'dart_sqlite3changeset_apply',\n};\n\n/// Newer functions that aren't available in older WASM bundles.\nconst unstable = <String>{};\n"
  },
  {
    "path": "sqlite3_web/.gitignore",
    "content": "# https://dart.dev/guides/libraries/private-files\n# Created by `dart pub`\n.dart_tool/\n\n# Avoid committing pubspec.lock for library packages; see\n# https://dart.dev/guides/libraries/private-files#pubspeclock.\npubspec.lock\n"
  },
  {
    "path": "sqlite3_web/CHANGELOG.md",
    "content": "## 0.7.0\n\n- __Breaking__: Introduce `CustomClientRequest` and `CustomClientDatabaseRequest` classes representing\n  client requests. They expose an abort signal for requests and a way to interact with database locks.\n- Add `LockToken? token` and `Future<void>? abortTrigger` parameters to `Database.customRequest`.\n\n## 0.6.0\n\n- Replace `worker` URI parameter with `WorkerConnector` interface. Use\n  `WorkerConnector.defaultWorkers` to keep passing an URI.\n- Refactor worker messages to use JS-interop objects directly instead of\n  serializing Dart objects. This makes the package slightly more efficient.\n\n## 0.5.0\n\n- Use version 3 of `package:sqlite3`.\n\n## 0.4.1\n\n- Support older versions of `package:meta`.\n\n## 0.4.0\n\n- Remove `userVersion` and `setUserVersion`. Users should run the pragma statements manually.\n- Add `requestLock`, which can be used to make multiple database calls in a locked context.\n- Allow aborting requests.\n- Add support for a new Web FS (OPFS) access mode based on `readwrite-unsafe`.\n\n## 0.3.2\n\n- Allow workers to send requests to clients. Previously, only the other\n  direction was implemented.\n\n## 0.3.1\n\n- Fix hooks not being delivered to all databases.\n\n## 0.3.0\n\n- Allow passing data to worker when opening databases.\n- Support `dart2wasm`.\n- Serialize `SqliteException`s in workers.\n- Serialize parameters and rows instead of using `jsify()` / `dartify()`.\n\n## 0.2.2\n\n- Recover from worker errors at startup.\n\n## 0.2.1\n\n- Add `WebSqlite.deleteDatabase` to delete databases.\n- Support opening databases without workers.\n\n## 0.2.0\n\n- Make `FileSystem` implementation functional, add `FileSystem.flush()`.\n\n## 0.1.3\n\n- Support latest version of `package:web`.\n\n## 0.1.2-wip\n\n- Fix preferred databases not being sorted correctly.\n\n## 0.1.1-wip\n\n- Fix remote error after closing databases.\n\n## 0.1.0-wip\n\n- Initial WIP version.\n"
  },
  {
    "path": "sqlite3_web/LICENSE",
    "content": "MIT License\n\nCopyright (c) 2024 Simon Binder\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "sqlite3_web/README.md",
    "content": "Support for building libraries enabling access to `sqlite3` on the web.\n\n## What does this do?\n\n`package:sqlite3` provides all the foundations necessary to access sqlite3 on\nthe web.\nAs the APIs exposed by that package are direct wrappers around the `sqlite3` C\nlibrary compiled to WebAssembly, some limitations remain.\nIn particular, the most reliable way to access databases on the web involves\nworkers, which are required to use the filesystem access API.\n\nWhen workers are involved however, the database is no longer running in the\nJavaScript context for your app. To access the database in these setups, you\ninstead have to use asynchronous communication channels between the worker and\nyour app. The synchronous API provided by the `sqlite3` package is unsuitable\nfor this.\nFurther, different browsers support different persistence APIs and you need to\ncheck what's available beforehand to use the best storage engine available.\n\nAnd that is what this package can do for you:\n\n1. It provides an API enabling you to write database workers in Dart.\n2. It can then use these workers for an asynchronous interface to sqlite3\n   databases.\n3. It automatically detects available storage implementations, and can pick the\n   best one available.\n\n## Getting started\n\nNote: While this package can be used by end applications, it is meant as a\nbuilding block for database packages like `sqlite_async` or `drift`. Using\nthese packages helps avoid some setup work.\n\nWorkers are responsible for opening databases and exposing them through message\nchannels. This package takes care of these channels, but you are still\nresponsible for opening databases in your workers. To do so, extend the\n`DatabaseController` class, e.g. [like this](https://github.com/simolus3/sqlite3.dart/blob/main/sqlite3_web/example/controller.dart).\n\nWith a controller ready, you can define an entrypoint for a web worker like this:\n\n```dart\nimport 'package:sqlite3_web/sqlite3_web.dart';\n\nimport 'controller.dart';\n\nvoid main() {\n  WebSqlite.workerEntrypoint(controller: ExampleController());\n}\n```\n\nThis worker is ready to be compiled with `dart compile js` (consider using `-O4`).\n\nAdditionally, you need a `sqlite3.wasm` file containing native sqlite3 code to load.\nYou can\n\n- grab a prebuilt version [from our releases](https://github.com/simolus3/sqlite3.dart/releases),\n- [compile it yourself](https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3#compiling), or\n- [compile a custom build](https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3/example/custom_wasm_build) with your own sqlite3 extensions or functions linked directly into the module.\n\nWith those ready, this package can be used to provide async access to databases\nthat are transparently hosted in the worker:\n\n```dart\nFuture<void> connectToDatabase() async {\n  final sqlite = await WebSqlite.open(\n    workers: WorkerConnector.defaultWorkers(Uri.parse('worker.dart.js')),\n    wasmModule: Uri.parse('sqlite3.wasm'),\n  );\n\n  final features = await sqlite.runFeatureDetection();\n  print('got features: $features');\n\n  final connection = await sqlite.connectToRecommended('my_database');\n  print(await connection.database.select('select sqlite_version()'));\n}\n```\n\n## Lock and transaction management\n\nThis package provides the `select` and `execute` method returning:\n\n1. The `autocommit` state of the database after running the statement.\n2. The last insert rowid value.\n3. For `select`, results.\n\nBecause each database typically only uses a single connection (likely hosted in a shared worker),\nimplementing transactions requires multiple statements to run without interference from others.\n\nThe `requestLock` API is a helpful building block for this. In its callback, no other tab will\nhave access to the database:\n\n```dart\nawait db.requestLock((lock) async {\n  await db.execute('BEGIN', token: lock);\n  await db.execute(\n    '... other statements',\n    token: lock,\n    checkInTransaction: true,\n  );\n  await db.execute('COMMIT', token: lock, checkInTransaction: true);\n});\n```\n\nInside a lock context, the `LockToken` must be passed to `select` and `execute`.\nAdditionally, the `checkInTransaction` flag can be used to verify that the database\nis not in autocommit mode before running a statement.\n\n## Custom requests\n\nIn some cases, it may be useful to re-use the worker communication scheme\ncreated by `package:sqlite3_web` for functionality implemented in your library.\nFor instance, you could use shared workers to let different tabs connect to a\nsingle instance of a database.\nIn that case, some synchronization primitives to coordinate which tab gets to\nopen transactions can be implemented in the worker by overriding\n`handleCustomRequest` in `WorkerDatabase`. You can encode requests and\nresponses as arbitrary values exchanged as `JSAny?`.\nOn the client side, requests can be issued with `Database.customRequest`.\n\n## Testing this package\n\nThis package uses both regular `dart test` tests and integration tests.\nAll tests need a compatible `sqlite3.wasm` file in `web/`.\n\nIntegration tests also require `geckodriver` and `chromedriver` to be installed.\n"
  },
  {
    "path": "sqlite3_web/analysis_options.yaml",
    "content": "# This file configures the static analysis results for your project (errors,\n# warnings, and lints).\n#\n# This enables the 'recommended' set of lints from `package:lints`.\n# This set helps identify many issues that may lead to problems when running\n# or consuming Dart code, and enforces writing Dart using a single, idiomatic\n# style and format.\n#\n# If you want a smaller set of lints you can change this to specify\n# 'package:lints/core.yaml'. These are just the most critical lints\n# (the recommended set includes the core lints).\n# The core lints are also what is used by pub.dev for scoring packages.\n\ninclude: package:lints/recommended.yaml\n\n# Uncomment the following section to specify additional rules.\n\n# linter:\n#   rules:\n#     - camel_case_types\n\n# analyzer:\n#   exclude:\n#     - path/to/excluded/files/**\n\n# For more information about the core and recommended set of lints, see\n# https://dart.dev/go/core-lints\n\n# For additional information about configuring this file, see\n# https://dart.dev/guides/language/analysis-options\n"
  },
  {
    "path": "sqlite3_web/benchmark/benchmark.dart",
    "content": "import 'dart:js_interop';\n\nimport 'package:async/async.dart';\nimport 'package:http/http.dart';\nimport 'package:jaspr_riverpod/jaspr_riverpod.dart';\nimport 'package:jaspr_riverpod/legacy.dart';\nimport 'package:sqlite3_web/sqlite3_web.dart';\nimport 'package:sqlite3_web/src/locks.dart';\nimport 'package:web/web.dart' hide Client;\n\nimport 'message.dart';\n\nfinal class BenchmarkConfiguration {\n  final DatabaseImplementation implementation;\n\n  const BenchmarkConfiguration({required this.implementation});\n\n  Future<void> delete(WebSqlite client) async {\n    final storage = implementation.storage;\n    if (storage != StorageMode.inMemory) {\n      await client.deleteDatabase(name: databaseName, storage: storage);\n    }\n  }\n\n  Future<Database> connect(WebSqlite client) async {\n    return await client.connect(databaseName, implementation);\n  }\n\n  static const defaultConfig = BenchmarkConfiguration(\n    implementation: DatabaseImplementation.inMemoryLocal,\n  );\n\n  static const databaseName = 'benchmark';\n}\n\nsealed class BenchmarkTarget {\n  final BenchmarkConfiguration configuration;\n\n  BenchmarkTarget(this.configuration);\n\n  BenchmarkTarget changeConfig(BenchmarkConfiguration config);\n}\n\n/// Benchmarks for a single tab, running predefined SQL scripts on a fresh\n/// database.\nfinal class SingleTabBenchmarkTarget extends BenchmarkTarget {\n  SingleTabBenchmarkTarget(super.configuration);\n\n  @override\n  SingleTabBenchmarkTarget changeConfig(BenchmarkConfiguration config) {\n    return SingleTabBenchmarkTarget(config);\n  }\n\n  /// Names of benchmark scripts in `benchmark/sql/`.\n  static const names = [\n    'Test 1: 1000 INSERTs',\n    'Test 2: 25000 INSERTs in a transaction',\n    'Test 3: 25000 INSERTs into an indexed table',\n    'Test 4: 100 SELECTs without an index',\n    'Test 5: 100 SELECTs on a string comparison',\n    'Test 6: Creating an index',\n    'Test 7: 5000 SELECTs with an index',\n    'Test 8: 1000 UPDATEs without an index',\n    'Test 9: 25000 UPDATEs with an index',\n    'Test 10: 25000 text UPDATEs with an index',\n    'Test 11: INSERTs from a SELECT',\n    'Test 12: DELETE without an index',\n    'Test 13: DELETE with an index',\n    'Test 14: A big INSERT after a big DELETE',\n    'Test 15: A big DELETE followed by many small INSERTs',\n    'Test 16: DROP TABLE',\n  ];\n}\n\n/// Multi-tab / contention benchmarks are not yet supported.\n///\n/// The idea is to eventually aggregate results from individual tabs through the\n/// shared worker.\nfinal class MultiTabBenchmarkTarget extends BenchmarkTarget {\n  MultiTabBenchmarkTarget(super.configuration);\n\n  @override\n  MultiTabBenchmarkTarget changeConfig(BenchmarkConfiguration config) {\n    return MultiTabBenchmarkTarget(config);\n  }\n}\n\nfinal class BenchmarkResult {\n  final int? tab;\n  final String name;\n\n  /// Null if the benchmark is currently running.\n  final Duration? runtime;\n\n  BenchmarkResult(this.tab, this.name, this.runtime);\n\n  String get description {\n    final buffer = StringBuffer();\n    if (tab case final tab?) {\n      buffer.write('Tab $tab ');\n    }\n\n    buffer\n      ..write(name)\n      ..write(': ');\n    if (runtime case final completedRuntime?) {\n      buffer.write('${completedRuntime.inMilliseconds}ms');\n    } else {\n      buffer.write('running...');\n    }\n\n    return buffer.toString();\n  }\n}\n\nfinal class BenchmarkState extends Notifier<Result<List<BenchmarkResult>>> {\n  final _client = Client();\n\n  @override\n  Result<List<BenchmarkResult>> build() {\n    return Result.value([]);\n  }\n\n  Future<void> runSingleTabBenchmarks(\n    SingleTabBenchmarkTarget target,\n    WebSqlite sqlite,\n  ) async {\n    try {\n      await _runSingleTabBenchmarks(target, sqlite);\n    } catch (e, s) {\n      state = Result.error(e, s);\n    }\n  }\n\n  Future<void> _runSingleTabBenchmarks(\n    SingleTabBenchmarkTarget target,\n    WebSqlite sqlite,\n  ) async {\n    final results = <BenchmarkResult>[];\n    void publish() {\n      state = Result.value(results.toList());\n    }\n\n    await target.configuration.delete(sqlite);\n\n    publish();\n    for (final (i, name) in SingleTabBenchmarkTarget.names.indexed) {\n      results.add(BenchmarkResult(null, name, null));\n      publish();\n\n      final (sql, db) = await (\n        _fetchBenchmarkSql(i),\n        target.configuration.connect(sqlite),\n      ).wait;\n\n      results.removeLast();\n\n      final stopwatch = Stopwatch()..start();\n      await db.execute(sql);\n      stopwatch.stop();\n\n      results.add(BenchmarkResult(null, name, stopwatch.elapsed));\n      publish();\n    }\n  }\n\n  Future<String> _fetchBenchmarkSql(int index) async {\n    // Files are named starting with benchmark1.slq\n    final response = await _client.get(\n      Uri.parse('sql/benchmark${index + 1}.sql'),\n    );\n\n    if (response.statusCode != 200) {\n      throw StateError('Unexpected response: ${response.body}');\n    }\n\n    return response.body;\n  }\n\n  static final provider = NotifierProvider(BenchmarkState.new);\n}\n\nfinal class ClientState {\n  final int tabId;\n  final int numTabs;\n\n  ClientState(this.tabId, this.numTabs);\n\n  int get tabIdPlusOne => tabId + 1;\n}\n\nfinal class ClientStateNotifier extends Notifier<ClientState?> {\n  final SharedWorker worker = SharedWorker('worker.dart.js'.toJS);\n\n  ClientStateNotifier();\n\n  @override\n  ClientState? build() {\n    final lockName =\n        'tab-close-notification-${DateTime.now().millisecondsSinceEpoch}';\n    WebLocks.instance!.request(lockName).then((held) {\n      if (!ref.mounted) {\n        return held.release();\n      }\n\n      worker.port.postMessage(\n        WorkerMessage(\n          type: ToWorkerMessageType.connectTab.name,\n          payload: ConnectTab(lockName: lockName),\n        ),\n      );\n      ref.onDispose(held.release);\n    });\n\n    worker.port.start();\n    final subscription = EventStreamProviders.messageEvent\n        .forTarget(worker.port)\n        .listen((event) {\n          final message = event.data as WorkerMessage;\n          switch (ToClientMessageType.values.byName(message.type)) {\n            case ToClientMessageType.tabId:\n              final payload = message.payload as ReceiveTabId;\n              state = ClientState(\n                payload.index.toDartInt,\n                payload.numTabs.toDartInt,\n              );\n          }\n        });\n    ref.onDispose(subscription.cancel);\n\n    return null;\n  }\n\n  static final provider = NotifierProvider(ClientStateNotifier.new);\n}\n\nfinal sqlite3 = Provider((ref) {\n  return WebSqlite.open(\n    workers: _EncapsulatedWorkerConnector(),\n    wasmModule: Uri.parse('sqlite3.wasm'),\n  );\n});\n\nfinal featureDetectionResult = FutureProvider((ref) async {\n  final impl = ref.watch(sqlite3);\n  return await impl.runFeatureDetection();\n});\n\nfinal selectedTarget = StateProvider<BenchmarkTarget>((ref) {\n  return SingleTabBenchmarkTarget(BenchmarkConfiguration.defaultConfig);\n});\n\nfinal class _EncapsulatedWorkerConnector implements WorkerConnector {\n  final WorkerConnector _inner = WorkerConnector.defaultWorkers(\n    Uri.parse('worker.dart.js'),\n  );\n\n  @override\n  WorkerHandle? spawnDedicatedWorker() => _inner.spawnDedicatedWorker();\n\n  @override\n  WorkerHandle? spawnSharedWorker() {\n    return switch (_inner.spawnSharedWorker()) {\n      null => null,\n      final worker => _EncapsulatedWorker(worker),\n    };\n  }\n}\n\n/// Wraps messages sent to workers in a [WorkerMessage] structure, allowing the\n/// shared worker to be used for multiple purposes by indicating that messages\n/// we're sending are from the `sqlite3_web` package.\nfinal class _EncapsulatedWorker implements WorkerHandle {\n  final WorkerHandle _inner;\n  _EncapsulatedWorker(this._inner);\n\n  @override\n  EventTarget get targetForErrorEvents => _inner.targetForErrorEvents;\n\n  @override\n  void postMessage(JSAny? msg, JSObject transfer) {\n    _inner.postMessage(\n      WorkerMessage(type: ToWorkerMessageType.sqlite.name, payload: msg),\n      transfer,\n    );\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/benchmark/index.html",
    "content": "<!DOCTYPE html>\n\n<html>\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"scaffolded-by\" content=\"https://github.com/dart-lang/sdk\">\n    <title>sqlite3_web benchmarks</title>\n    <script defer src=\"main.dart2js.js\"></script>\n</head>\n\n<body>\n\n<h1><code>sqlite3_web</code> benchmarks</h1>\n\n<div id=\"app\"></div>\n</body>\n</html>\n"
  },
  {
    "path": "sqlite3_web/benchmark/main.dart",
    "content": "import 'package:async/async.dart';\nimport 'package:jaspr/client.dart';\nimport 'package:jaspr/dom.dart';\nimport 'package:jaspr_riverpod/jaspr_riverpod.dart';\nimport 'package:sqlite3_web/sqlite3_web.dart';\n\nimport 'benchmark.dart';\n\n/// To run benchmarks: `webdev serve benchmark:8080 --release`, also copy a\n/// `sqlite3.wasm` into this directory.\nvoid main() {\n  runApp(const ProviderScope(child: BenchmarkApp()), attachTo: '#app');\n}\n\nfinal class BenchmarkApp extends StatelessComponent {\n  const BenchmarkApp();\n\n  @override\n  Component build(BuildContext context) {\n    final detectedFeatures = context.watch(featureDetectionResult);\n    final clientState = context.watch(ClientStateNotifier.provider);\n\n    switch (detectedFeatures) {\n      case AsyncLoading<FeatureDetectionResult>():\n        return Component.text('Initializing...');\n      case AsyncData<FeatureDetectionResult>(:final value):\n        return Component.fragment([\n          Component.text(\n            'Tab is ready (${clientState?.tabIdPlusOne} / ${clientState?.numTabs} tabs). Select benchmark to run',\n          ),\n          _BenchmarkSelector(value),\n          const _BenchmarkResults(),\n        ]);\n\n      case AsyncError<FeatureDetectionResult>(:final error):\n        return Component.text('Error initializing: $error');\n    }\n  }\n}\n\nfinal class _BenchmarkSelector extends StatelessComponent {\n  final FeatureDetectionResult _features;\n\n  _BenchmarkSelector(this._features);\n\n  @override\n  Component build(BuildContext context) {\n    final currentSelection = context.watch(selectedTarget);\n\n    return div([\n      select(\n        value: switch (currentSelection) {\n          SingleTabBenchmarkTarget() => 'single',\n          MultiTabBenchmarkTarget() => 'multi',\n        },\n        onChange: (value) {\n          context.read(selectedTarget.notifier).state = switch (value) {\n            ['multi'] => MultiTabBenchmarkTarget(\n              BenchmarkConfiguration.defaultConfig,\n            ),\n            _ => SingleTabBenchmarkTarget(BenchmarkConfiguration.defaultConfig),\n          };\n        },\n        [\n          const option(value: 'single', [Component.text('Single-tab')]),\n          const option(value: 'multi', [Component.text('Multi tab')]),\n        ],\n      ),\n      select(\n        value: currentSelection.configuration.implementation.name,\n        onChange: (value) {\n          final implementation = DatabaseImplementation.values.byName(value[0]);\n\n          context.read(selectedTarget.notifier).state = currentSelection\n              .changeConfig(\n                BenchmarkConfiguration(implementation: implementation),\n              );\n        },\n        [\n          for (final available in _features.availableImplementations)\n            option(value: available.name, [Component.text(available.name)]),\n        ],\n      ),\n      button(\n        onClick: () {\n          final loadedSqlite = context.read(sqlite3);\n          final target = context.read(selectedTarget);\n\n          switch (target) {\n            case SingleTabBenchmarkTarget():\n              context\n                  .read(BenchmarkState.provider.notifier)\n                  .runSingleTabBenchmarks(target, loadedSqlite);\n            case MultiTabBenchmarkTarget():\n              // TODO: Handle this case.\n              throw UnimplementedError();\n          }\n        },\n        disabled: false,\n        [Component.text('Run!')],\n      ),\n    ]);\n  }\n}\n\nfinal class _BenchmarkResults extends StatelessComponent {\n  const _BenchmarkResults();\n\n  @override\n  Component build(BuildContext context) {\n    final results = context.watch(BenchmarkState.provider);\n\n    return div([\n      const h2([Component.text('Results')]),\n      if (results case ValueResult(value: final results))\n        ol([\n          for (final result in results)\n            li(key: ValueKey(result), [Component.text(result.description)]),\n        ]),\n\n      if (results.asError case final error?)\n        pre([\n          code([\n            Component.text(error.error.toString()),\n            const br(),\n            Component.text(error.stackTrace.toString()),\n          ]),\n        ]),\n    ]);\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/benchmark/message.dart",
    "content": "import 'dart:js_interop';\n\nenum ToWorkerMessageType { sqlite, connectTab }\n\nenum ToClientMessageType { tabId }\n\nextension type WorkerMessage._(JSObject _) implements JSObject {\n  external factory WorkerMessage({\n    required String type,\n    required JSAny? payload,\n  });\n\n  external String get type;\n  external JSAny? get payload;\n}\n\nextension type ConnectTab._(JSObject _) implements JSObject {\n  /// A lock obtained by the connecting tab.\n  ///\n  /// The shared worker will attempt to also obtain this lock, and can know that\n  /// the tab has closed once that succeeds.\n  external String get lockName;\n\n  external factory ConnectTab({required String lockName});\n}\n\nextension type ReceiveTabId._(JSObject _) implements JSObject {\n  external factory ReceiveTabId({\n    required JSNumber index,\n    required JSNumber numTabs,\n  });\n\n  external JSNumber get index;\n  external JSNumber get numTabs;\n}\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark1.sql",
    "content": "CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100));\nINSERT INTO t1 VALUES(1, 19147, 'nineteen thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(2, 26008, 'twenty-six thousand eight');\nINSERT INTO t1 VALUES(3, 46582, 'forty-six thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(4, 75112, 'seventy-five thousand one hundred twelve');\nINSERT INTO t1 VALUES(5, 29909, 'twenty-nine thousand nine hundred nine');\nINSERT INTO t1 VALUES(6, 95173, 'ninety-five thousand one hundred seventy-three');\nINSERT INTO t1 VALUES(7, 96498, 'ninety-six thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(8, 33553, 'thirty-three thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(9, 11186, 'eleven thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(10, 87632, 'eighty-seven thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(11, 15880, 'fifteen thousand eight hundred eighty');\nINSERT INTO t1 VALUES(12, 85555, 'eighty-five thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(13, 66962, 'sixty-six thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(14, 50452, 'fifty thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(15, 92717, 'ninety-two thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(16, 34743, 'thirty-four thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(17, 75522, 'seventy-five thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(18, 28475, 'twenty-eight thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(19, 42370, 'forty-two thousand three hundred seventy');\nINSERT INTO t1 VALUES(20, 75259, 'seventy-five thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(21, 90441, 'ninety thousand four hundred forty-one');\nINSERT INTO t1 VALUES(22, 6887, 'six thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(23, 31672, 'thirty-one thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(24, 67080, 'sixty-seven thousand eighty');\nINSERT INTO t1 VALUES(25, 2575, 'two thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(26, 34784, 'thirty-four thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(27, 32771, 'thirty-two thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(28, 87218, 'eighty-seven thousand two hundred eighteen');\nINSERT INTO t1 VALUES(29, 52078, 'fifty-two thousand seventy-eight');\nINSERT INTO t1 VALUES(30, 26042, 'twenty-six thousand forty-two');\nINSERT INTO t1 VALUES(31, 13, 'thirteen');\nINSERT INTO t1 VALUES(32, 32938, 'thirty-two thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(33, 36469, 'thirty-six thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(34, 28290, 'twenty-eight thousand two hundred ninety');\nINSERT INTO t1 VALUES(35, 93808, 'ninety-three thousand eight hundred eight');\nINSERT INTO t1 VALUES(36, 93132, 'ninety-three thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(37, 56252, 'fifty-six thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(38, 37551, 'thirty-seven thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(39, 9901, 'nine thousand nine hundred one');\nINSERT INTO t1 VALUES(40, 70023, 'seventy thousand twenty-three');\nINSERT INTO t1 VALUES(41, 78360, 'seventy-eight thousand three hundred sixty');\nINSERT INTO t1 VALUES(42, 76658, 'seventy-six thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(43, 46473, 'forty-six thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(44, 66561, 'sixty-six thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(45, 62839, 'sixty-two thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(46, 11988, 'eleven thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(47, 18601, 'eighteen thousand six hundred one');\nINSERT INTO t1 VALUES(48, 3045, 'three thousand forty-five');\nINSERT INTO t1 VALUES(49, 94656, 'ninety-four thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(50, 51287, 'fifty-one thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(51, 85700, 'eighty-five thousand seven hundred');\nINSERT INTO t1 VALUES(52, 8465, 'eight thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(53, 86627, 'eighty-six thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(54, 61737, 'sixty-one thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(55, 50686, 'fifty thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(56, 99182, 'ninety-nine thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(57, 47667, 'forty-seven thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(58, 8213, 'eight thousand two hundred thirteen');\nINSERT INTO t1 VALUES(59, 78015, 'seventy-eight thousand fifteen');\nINSERT INTO t1 VALUES(60, 41396, 'forty-one thousand three hundred ninety-six');\nINSERT INTO t1 VALUES(61, 74844, 'seventy-four thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(62, 42282, 'forty-two thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(63, 58654, 'fifty-eight thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(64, 31467, 'thirty-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(65, 78022, 'seventy-eight thousand twenty-two');\nINSERT INTO t1 VALUES(66, 78945, 'seventy-eight thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(67, 60603, 'sixty thousand six hundred three');\nINSERT INTO t1 VALUES(68, 6570, 'six thousand five hundred seventy');\nINSERT INTO t1 VALUES(69, 6111, 'six thousand one hundred eleven');\nINSERT INTO t1 VALUES(70, 45086, 'forty-five thousand eighty-six');\nINSERT INTO t1 VALUES(71, 89033, 'eighty-nine thousand thirty-three');\nINSERT INTO t1 VALUES(72, 96617, 'ninety-six thousand six hundred seventeen');\nINSERT INTO t1 VALUES(73, 95091, 'ninety-five thousand ninety-one');\nINSERT INTO t1 VALUES(74, 94429, 'ninety-four thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(75, 36609, 'thirty-six thousand six hundred nine');\nINSERT INTO t1 VALUES(76, 30748, 'thirty thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(77, 15734, 'fifteen thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(78, 73965, 'seventy-three thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(79, 77263, 'seventy-seven thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(80, 74133, 'seventy-four thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(81, 4297, 'four thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(82, 8664, 'eight thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(83, 78801, 'seventy-eight thousand eight hundred one');\nINSERT INTO t1 VALUES(84, 40814, 'forty thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(85, 74176, 'seventy-four thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(86, 29083, 'twenty-nine thousand eighty-three');\nINSERT INTO t1 VALUES(87, 30060, 'thirty thousand sixty');\nINSERT INTO t1 VALUES(88, 37917, 'thirty-seven thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(89, 32421, 'thirty-two thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(90, 61068, 'sixty-one thousand sixty-eight');\nINSERT INTO t1 VALUES(91, 4852, 'four thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(92, 26679, 'twenty-six thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(93, 19074, 'nineteen thousand seventy-four');\nINSERT INTO t1 VALUES(94, 14278, 'fourteen thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(95, 58212, 'fifty-eight thousand two hundred twelve');\nINSERT INTO t1 VALUES(96, 57525, 'fifty-seven thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(97, 22334, 'twenty-two thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(98, 536, 'five hundred thirty-six');\nINSERT INTO t1 VALUES(99, 4807, 'four thousand eight hundred seven');\nINSERT INTO t1 VALUES(100, 70316, 'seventy thousand three hundred sixteen');\nINSERT INTO t1 VALUES(101, 99873, 'ninety-nine thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(102, 47917, 'forty-seven thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(103, 14048, 'fourteen thousand forty-eight');\nINSERT INTO t1 VALUES(104, 79492, 'seventy-nine thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(105, 77781, 'seventy-seven thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(106, 22024, 'twenty-two thousand twenty-four');\nINSERT INTO t1 VALUES(107, 48173, 'forty-eight thousand one hundred seventy-three');\nINSERT INTO t1 VALUES(108, 20117, 'twenty thousand one hundred seventeen');\nINSERT INTO t1 VALUES(109, 19000, 'nineteen thousand');\nINSERT INTO t1 VALUES(110, 38210, 'thirty-eight thousand two hundred ten');\nINSERT INTO t1 VALUES(111, 74415, 'seventy-four thousand four hundred fifteen');\nINSERT INTO t1 VALUES(112, 92727, 'ninety-two thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(113, 47610, 'forty-seven thousand six hundred ten');\nINSERT INTO t1 VALUES(114, 33304, 'thirty-three thousand three hundred four');\nINSERT INTO t1 VALUES(115, 50236, 'fifty thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(116, 45425, 'forty-five thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(117, 50591, 'fifty thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(118, 75266, 'seventy-five thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(119, 66445, 'sixty-six thousand four hundred forty-five');\nINSERT INTO t1 VALUES(120, 61104, 'sixty-one thousand one hundred four');\nINSERT INTO t1 VALUES(121, 50019, 'fifty thousand nineteen');\nINSERT INTO t1 VALUES(122, 51784, 'fifty-one thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(123, 25726, 'twenty-five thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(124, 93590, 'ninety-three thousand five hundred ninety');\nINSERT INTO t1 VALUES(125, 54736, 'fifty-four thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(126, 76531, 'seventy-six thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(127, 15808, 'fifteen thousand eight hundred eight');\nINSERT INTO t1 VALUES(128, 85511, 'eighty-five thousand five hundred eleven');\nINSERT INTO t1 VALUES(129, 14677, 'fourteen thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(130, 34447, 'thirty-four thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(131, 77381, 'seventy-seven thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(132, 1894, 'one thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(133, 17809, 'seventeen thousand eight hundred nine');\nINSERT INTO t1 VALUES(134, 85345, 'eighty-five thousand three hundred forty-five');\nINSERT INTO t1 VALUES(135, 44239, 'forty-four thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(136, 86042, 'eighty-six thousand forty-two');\nINSERT INTO t1 VALUES(137, 3118, 'three thousand one hundred eighteen');\nINSERT INTO t1 VALUES(138, 96075, 'ninety-six thousand seventy-five');\nINSERT INTO t1 VALUES(139, 29595, 'twenty-nine thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(140, 80538, 'eighty thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(141, 42560, 'forty-two thousand five hundred sixty');\nINSERT INTO t1 VALUES(142, 39540, 'thirty-nine thousand five hundred forty');\nINSERT INTO t1 VALUES(143, 67182, 'sixty-seven thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(144, 95398, 'ninety-five thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(145, 23257, 'twenty-three thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(146, 30008, 'thirty thousand eight');\nINSERT INTO t1 VALUES(147, 34224, 'thirty-four thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(148, 89043, 'eighty-nine thousand forty-three');\nINSERT INTO t1 VALUES(149, 29133, 'twenty-nine thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(150, 3487, 'three thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(151, 70789, 'seventy thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(152, 74058, 'seventy-four thousand fifty-eight');\nINSERT INTO t1 VALUES(153, 70685, 'seventy thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(154, 73614, 'seventy-three thousand six hundred fourteen');\nINSERT INTO t1 VALUES(155, 75238, 'seventy-five thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(156, 55897, 'fifty-five thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(157, 65660, 'sixty-five thousand six hundred sixty');\nINSERT INTO t1 VALUES(158, 27054, 'twenty-seven thousand fifty-four');\nINSERT INTO t1 VALUES(159, 17055, 'seventeen thousand fifty-five');\nINSERT INTO t1 VALUES(160, 84839, 'eighty-four thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(161, 14288, 'fourteen thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(162, 62959, 'sixty-two thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(163, 30731, 'thirty thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(164, 27592, 'twenty-seven thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(165, 66036, 'sixty-six thousand thirty-six');\nINSERT INTO t1 VALUES(166, 75408, 'seventy-five thousand four hundred eight');\nINSERT INTO t1 VALUES(167, 79619, 'seventy-nine thousand six hundred nineteen');\nINSERT INTO t1 VALUES(168, 98635, 'ninety-eight thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(169, 62495, 'sixty-two thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(170, 18248, 'eighteen thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(171, 78919, 'seventy-eight thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(172, 33725, 'thirty-three thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(173, 74583, 'seventy-four thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(174, 64756, 'sixty-four thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(175, 33725, 'thirty-three thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(176, 3595, 'three thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(177, 11341, 'eleven thousand three hundred forty-one');\nINSERT INTO t1 VALUES(178, 75031, 'seventy-five thousand thirty-one');\nINSERT INTO t1 VALUES(179, 9003, 'nine thousand three');\nINSERT INTO t1 VALUES(180, 18248, 'eighteen thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(181, 83579, 'eighty-three thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(182, 27815, 'twenty-seven thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(183, 70544, 'seventy thousand five hundred forty-four');\nINSERT INTO t1 VALUES(184, 52108, 'fifty-two thousand one hundred eight');\nINSERT INTO t1 VALUES(185, 3136, 'three thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(186, 25759, 'twenty-five thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(187, 85160, 'eighty-five thousand one hundred sixty');\nINSERT INTO t1 VALUES(188, 25823, 'twenty-five thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(189, 56519, 'fifty-six thousand five hundred nineteen');\nINSERT INTO t1 VALUES(190, 31350, 'thirty-one thousand three hundred fifty');\nINSERT INTO t1 VALUES(191, 43623, 'forty-three thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(192, 96084, 'ninety-six thousand eighty-four');\nINSERT INTO t1 VALUES(193, 93824, 'ninety-three thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(194, 49987, 'forty-nine thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(195, 66071, 'sixty-six thousand seventy-one');\nINSERT INTO t1 VALUES(196, 49509, 'forty-nine thousand five hundred nine');\nINSERT INTO t1 VALUES(197, 45551, 'forty-five thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(198, 20309, 'twenty thousand three hundred nine');\nINSERT INTO t1 VALUES(199, 5671, 'five thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(200, 78809, 'seventy-eight thousand eight hundred nine');\nINSERT INTO t1 VALUES(201, 93680, 'ninety-three thousand six hundred eighty');\nINSERT INTO t1 VALUES(202, 8073, 'eight thousand seventy-three');\nINSERT INTO t1 VALUES(203, 5304, 'five thousand three hundred four');\nINSERT INTO t1 VALUES(204, 79456, 'seventy-nine thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(205, 75452, 'seventy-five thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(206, 14111, 'fourteen thousand one hundred eleven');\nINSERT INTO t1 VALUES(207, 22754, 'twenty-two thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(208, 45501, 'forty-five thousand five hundred one');\nINSERT INTO t1 VALUES(209, 5406, 'five thousand four hundred six');\nINSERT INTO t1 VALUES(210, 98550, 'ninety-eight thousand five hundred fifty');\nINSERT INTO t1 VALUES(211, 26850, 'twenty-six thousand eight hundred fifty');\nINSERT INTO t1 VALUES(212, 14885, 'fourteen thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(213, 11498, 'eleven thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(214, 1761, 'one thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(215, 43387, 'forty-three thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(216, 71881, 'seventy-one thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(217, 85573, 'eighty-five thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(218, 5594, 'five thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(219, 67124, 'sixty-seven thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(220, 78654, 'seventy-eight thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(221, 74294, 'seventy-four thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(222, 69335, 'sixty-nine thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(223, 90733, 'ninety thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(224, 69794, 'sixty-nine thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(225, 1223, 'one thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(226, 36643, 'thirty-six thousand six hundred forty-three');\nINSERT INTO t1 VALUES(227, 35185, 'thirty-five thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(228, 4715, 'four thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(229, 96718, 'ninety-six thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(230, 37054, 'thirty-seven thousand fifty-four');\nINSERT INTO t1 VALUES(231, 46589, 'forty-six thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(232, 20775, 'twenty thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(233, 11050, 'eleven thousand fifty');\nINSERT INTO t1 VALUES(234, 41387, 'forty-one thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(235, 15187, 'fifteen thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(236, 4416, 'four thousand four hundred sixteen');\nINSERT INTO t1 VALUES(237, 66769, 'sixty-six thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(238, 91803, 'ninety-one thousand eight hundred three');\nINSERT INTO t1 VALUES(239, 21308, 'twenty-one thousand three hundred eight');\nINSERT INTO t1 VALUES(240, 41803, 'forty-one thousand eight hundred three');\nINSERT INTO t1 VALUES(241, 85279, 'eighty-five thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(242, 45849, 'forty-five thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(243, 86486, 'eighty-six thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(244, 58082, 'fifty-eight thousand eighty-two');\nINSERT INTO t1 VALUES(245, 83184, 'eighty-three thousand one hundred eighty-four');\nINSERT INTO t1 VALUES(246, 40745, 'forty thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(247, 74393, 'seventy-four thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(248, 51061, 'fifty-one thousand sixty-one');\nINSERT INTO t1 VALUES(249, 67710, 'sixty-seven thousand seven hundred ten');\nINSERT INTO t1 VALUES(250, 93047, 'ninety-three thousand forty-seven');\nINSERT INTO t1 VALUES(251, 59027, 'fifty-nine thousand twenty-seven');\nINSERT INTO t1 VALUES(252, 51204, 'fifty-one thousand two hundred four');\nINSERT INTO t1 VALUES(253, 6662, 'six thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(254, 86955, 'eighty-six thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(255, 46821, 'forty-six thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(256, 48135, 'forty-eight thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(257, 35098, 'thirty-five thousand ninety-eight');\nINSERT INTO t1 VALUES(258, 83517, 'eighty-three thousand five hundred seventeen');\nINSERT INTO t1 VALUES(259, 74030, 'seventy-four thousand thirty');\nINSERT INTO t1 VALUES(260, 74477, 'seventy-four thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(261, 11630, 'eleven thousand six hundred thirty');\nINSERT INTO t1 VALUES(262, 35794, 'thirty-five thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(263, 21497, 'twenty-one thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(264, 19570, 'nineteen thousand five hundred seventy');\nINSERT INTO t1 VALUES(265, 5455, 'five thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(266, 72500, 'seventy-two thousand five hundred');\nINSERT INTO t1 VALUES(267, 93036, 'ninety-three thousand thirty-six');\nINSERT INTO t1 VALUES(268, 65524, 'sixty-five thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(269, 61390, 'sixty-one thousand three hundred ninety');\nINSERT INTO t1 VALUES(270, 19573, 'nineteen thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(271, 63868, 'sixty-three thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(272, 52301, 'fifty-two thousand three hundred one');\nINSERT INTO t1 VALUES(273, 84950, 'eighty-four thousand nine hundred fifty');\nINSERT INTO t1 VALUES(274, 99106, 'ninety-nine thousand one hundred six');\nINSERT INTO t1 VALUES(275, 66492, 'sixty-six thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(276, 12327, 'twelve thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(277, 77453, 'seventy-seven thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(278, 41180, 'forty-one thousand one hundred eighty');\nINSERT INTO t1 VALUES(279, 76455, 'seventy-six thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(280, 71541, 'seventy-one thousand five hundred forty-one');\nINSERT INTO t1 VALUES(281, 6968, 'six thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(282, 93941, 'ninety-three thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(283, 85076, 'eighty-five thousand seventy-six');\nINSERT INTO t1 VALUES(284, 65894, 'sixty-five thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(285, 98059, 'ninety-eight thousand fifty-nine');\nINSERT INTO t1 VALUES(286, 92367, 'ninety-two thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(287, 64838, 'sixty-four thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(288, 87708, 'eighty-seven thousand seven hundred eight');\nINSERT INTO t1 VALUES(289, 21778, 'twenty-one thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(290, 34994, 'thirty-four thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(291, 58838, 'fifty-eight thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(292, 77301, 'seventy-seven thousand three hundred one');\nINSERT INTO t1 VALUES(293, 58704, 'fifty-eight thousand seven hundred four');\nINSERT INTO t1 VALUES(294, 67690, 'sixty-seven thousand six hundred ninety');\nINSERT INTO t1 VALUES(295, 36058, 'thirty-six thousand fifty-eight');\nINSERT INTO t1 VALUES(296, 68672, 'sixty-eight thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(297, 94874, 'ninety-four thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(298, 84131, 'eighty-four thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(299, 54916, 'fifty-four thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(300, 57153, 'fifty-seven thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(301, 64123, 'sixty-four thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(302, 54653, 'fifty-four thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(303, 33431, 'thirty-three thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(304, 62626, 'sixty-two thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(305, 4844, 'four thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(306, 79303, 'seventy-nine thousand three hundred three');\nINSERT INTO t1 VALUES(307, 7086, 'seven thousand eighty-six');\nINSERT INTO t1 VALUES(308, 57117, 'fifty-seven thousand one hundred seventeen');\nINSERT INTO t1 VALUES(309, 31781, 'thirty-one thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(310, 29491, 'twenty-nine thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(311, 94880, 'ninety-four thousand eight hundred eighty');\nINSERT INTO t1 VALUES(312, 58269, 'fifty-eight thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(313, 15574, 'fifteen thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(314, 49226, 'forty-nine thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(315, 12233, 'twelve thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(316, 49770, 'forty-nine thousand seven hundred seventy');\nINSERT INTO t1 VALUES(317, 61010, 'sixty-one thousand ten');\nINSERT INTO t1 VALUES(318, 10081, 'ten thousand eighty-one');\nINSERT INTO t1 VALUES(319, 97107, 'ninety-seven thousand one hundred seven');\nINSERT INTO t1 VALUES(320, 10745, 'ten thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(321, 27225, 'twenty-seven thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(322, 64158, 'sixty-four thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(323, 76659, 'seventy-six thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(324, 72364, 'seventy-two thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(325, 72712, 'seventy-two thousand seven hundred twelve');\nINSERT INTO t1 VALUES(326, 33014, 'thirty-three thousand fourteen');\nINSERT INTO t1 VALUES(327, 90216, 'ninety thousand two hundred sixteen');\nINSERT INTO t1 VALUES(328, 81305, 'eighty-one thousand three hundred five');\nINSERT INTO t1 VALUES(329, 25638, 'twenty-five thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(330, 25191, 'twenty-five thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(331, 54511, 'fifty-four thousand five hundred eleven');\nINSERT INTO t1 VALUES(332, 48126, 'forty-eight thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(333, 82179, 'eighty-two thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(334, 30050, 'thirty thousand fifty');\nINSERT INTO t1 VALUES(335, 51531, 'fifty-one thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(336, 58294, 'fifty-eight thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(337, 8820, 'eight thousand eight hundred twenty');\nINSERT INTO t1 VALUES(338, 14563, 'fourteen thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(339, 43247, 'forty-three thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(340, 54240, 'fifty-four thousand two hundred forty');\nINSERT INTO t1 VALUES(341, 95630, 'ninety-five thousand six hundred thirty');\nINSERT INTO t1 VALUES(342, 30926, 'thirty thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(343, 32664, 'thirty-two thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(344, 64590, 'sixty-four thousand five hundred ninety');\nINSERT INTO t1 VALUES(345, 71119, 'seventy-one thousand one hundred nineteen');\nINSERT INTO t1 VALUES(346, 62216, 'sixty-two thousand two hundred sixteen');\nINSERT INTO t1 VALUES(347, 80999, 'eighty thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(348, 88326, 'eighty-eight thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(349, 43585, 'forty-three thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(350, 62542, 'sixty-two thousand five hundred forty-two');\nINSERT INTO t1 VALUES(351, 30380, 'thirty thousand three hundred eighty');\nINSERT INTO t1 VALUES(352, 27824, 'twenty-seven thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(353, 86530, 'eighty-six thousand five hundred thirty');\nINSERT INTO t1 VALUES(354, 21045, 'twenty-one thousand forty-five');\nINSERT INTO t1 VALUES(355, 24707, 'twenty-four thousand seven hundred seven');\nINSERT INTO t1 VALUES(356, 45949, 'forty-five thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(357, 84512, 'eighty-four thousand five hundred twelve');\nINSERT INTO t1 VALUES(358, 39579, 'thirty-nine thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(359, 72448, 'seventy-two thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(360, 19510, 'nineteen thousand five hundred ten');\nINSERT INTO t1 VALUES(361, 26117, 'twenty-six thousand one hundred seventeen');\nINSERT INTO t1 VALUES(362, 42334, 'forty-two thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(363, 50760, 'fifty thousand seven hundred sixty');\nINSERT INTO t1 VALUES(364, 95698, 'ninety-five thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(365, 10473, 'ten thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(366, 53827, 'fifty-three thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(367, 62653, 'sixty-two thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(368, 35692, 'thirty-five thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(369, 38100, 'thirty-eight thousand one hundred');\nINSERT INTO t1 VALUES(370, 55564, 'fifty-five thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(371, 75269, 'seventy-five thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(372, 62985, 'sixty-two thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(373, 47780, 'forty-seven thousand seven hundred eighty');\nINSERT INTO t1 VALUES(374, 12747, 'twelve thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(375, 62003, 'sixty-two thousand three');\nINSERT INTO t1 VALUES(376, 11458, 'eleven thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(377, 79919, 'seventy-nine thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(378, 17221, 'seventeen thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(379, 58368, 'fifty-eight thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(380, 26722, 'twenty-six thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(381, 93591, 'ninety-three thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(382, 1793, 'one thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(383, 51839, 'fifty-one thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(384, 31833, 'thirty-one thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(385, 29003, 'twenty-nine thousand three');\nINSERT INTO t1 VALUES(386, 14779, 'fourteen thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(387, 67741, 'sixty-seven thousand seven hundred forty-one');\nINSERT INTO t1 VALUES(388, 39051, 'thirty-nine thousand fifty-one');\nINSERT INTO t1 VALUES(389, 77292, 'seventy-seven thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(390, 5168, 'five thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(391, 32168, 'thirty-two thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(392, 88724, 'eighty-eight thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(393, 298, 'two hundred ninety-eight');\nINSERT INTO t1 VALUES(394, 78128, 'seventy-eight thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(395, 85877, 'eighty-five thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(396, 32384, 'thirty-two thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(397, 25524, 'twenty-five thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(398, 47018, 'forty-seven thousand eighteen');\nINSERT INTO t1 VALUES(399, 22974, 'twenty-two thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(400, 20767, 'twenty thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(401, 89516, 'eighty-nine thousand five hundred sixteen');\nINSERT INTO t1 VALUES(402, 99437, 'ninety-nine thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(403, 5201, 'five thousand two hundred one');\nINSERT INTO t1 VALUES(404, 59848, 'fifty-nine thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(405, 66234, 'sixty-six thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(406, 37713, 'thirty-seven thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(407, 27038, 'twenty-seven thousand thirty-eight');\nINSERT INTO t1 VALUES(408, 54681, 'fifty-four thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(409, 72462, 'seventy-two thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(410, 6852, 'six thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(411, 60641, 'sixty thousand six hundred forty-one');\nINSERT INTO t1 VALUES(412, 29158, 'twenty-nine thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(413, 18673, 'eighteen thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(414, 54871, 'fifty-four thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(415, 6149, 'six thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(416, 66181, 'sixty-six thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(417, 56189, 'fifty-six thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(418, 20015, 'twenty thousand fifteen');\nINSERT INTO t1 VALUES(419, 46327, 'forty-six thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(420, 92802, 'ninety-two thousand eight hundred two');\nINSERT INTO t1 VALUES(421, 29952, 'twenty-nine thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(422, 5709, 'five thousand seven hundred nine');\nINSERT INTO t1 VALUES(423, 78299, 'seventy-eight thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(424, 44201, 'forty-four thousand two hundred one');\nINSERT INTO t1 VALUES(425, 11898, 'eleven thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(426, 539, 'five hundred thirty-nine');\nINSERT INTO t1 VALUES(427, 24406, 'twenty-four thousand four hundred six');\nINSERT INTO t1 VALUES(428, 98362, 'ninety-eight thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(429, 60805, 'sixty thousand eight hundred five');\nINSERT INTO t1 VALUES(430, 19074, 'nineteen thousand seventy-four');\nINSERT INTO t1 VALUES(431, 41901, 'forty-one thousand nine hundred one');\nINSERT INTO t1 VALUES(432, 45737, 'forty-five thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(433, 53634, 'fifty-three thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(434, 39974, 'thirty-nine thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(435, 10132, 'ten thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(436, 21908, 'twenty-one thousand nine hundred eight');\nINSERT INTO t1 VALUES(437, 21144, 'twenty-one thousand one hundred forty-four');\nINSERT INTO t1 VALUES(438, 44661, 'forty-four thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(439, 1538, 'one thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(440, 54521, 'fifty-four thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(441, 94236, 'ninety-four thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(442, 55719, 'fifty-five thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(443, 69736, 'sixty-nine thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(444, 53487, 'fifty-three thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(445, 8984, 'eight thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(446, 3898, 'three thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(447, 13364, 'thirteen thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(448, 35674, 'thirty-five thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(449, 96851, 'ninety-six thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(450, 31439, 'thirty-one thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(451, 50192, 'fifty thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(452, 42155, 'forty-two thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(453, 80153, 'eighty thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(454, 10788, 'ten thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(455, 69811, 'sixty-nine thousand eight hundred eleven');\nINSERT INTO t1 VALUES(456, 238, 'two hundred thirty-eight');\nINSERT INTO t1 VALUES(457, 28236, 'twenty-eight thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(458, 69835, 'sixty-nine thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(459, 18661, 'eighteen thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(460, 50942, 'fifty thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(461, 41616, 'forty-one thousand six hundred sixteen');\nINSERT INTO t1 VALUES(462, 61068, 'sixty-one thousand sixty-eight');\nINSERT INTO t1 VALUES(463, 76319, 'seventy-six thousand three hundred nineteen');\nINSERT INTO t1 VALUES(464, 48862, 'forty-eight thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(465, 67521, 'sixty-seven thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(466, 5614, 'five thousand six hundred fourteen');\nINSERT INTO t1 VALUES(467, 63796, 'sixty-three thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(468, 93004, 'ninety-three thousand four');\nINSERT INTO t1 VALUES(469, 80923, 'eighty thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(470, 22392, 'twenty-two thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(471, 67687, 'sixty-seven thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(472, 26857, 'twenty-six thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(473, 34028, 'thirty-four thousand twenty-eight');\nINSERT INTO t1 VALUES(474, 11549, 'eleven thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(475, 38142, 'thirty-eight thousand one hundred forty-two');\nINSERT INTO t1 VALUES(476, 31711, 'thirty-one thousand seven hundred eleven');\nINSERT INTO t1 VALUES(477, 33471, 'thirty-three thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(478, 87117, 'eighty-seven thousand one hundred seventeen');\nINSERT INTO t1 VALUES(479, 32173, 'thirty-two thousand one hundred seventy-three');\nINSERT INTO t1 VALUES(480, 95354, 'ninety-five thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(481, 90955, 'ninety thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(482, 39317, 'thirty-nine thousand three hundred seventeen');\nINSERT INTO t1 VALUES(483, 80460, 'eighty thousand four hundred sixty');\nINSERT INTO t1 VALUES(484, 95340, 'ninety-five thousand three hundred forty');\nINSERT INTO t1 VALUES(485, 82632, 'eighty-two thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(486, 48608, 'forty-eight thousand six hundred eight');\nINSERT INTO t1 VALUES(487, 98488, 'ninety-eight thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(488, 5150, 'five thousand one hundred fifty');\nINSERT INTO t1 VALUES(489, 27485, 'twenty-seven thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(490, 7164, 'seven thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(491, 47631, 'forty-seven thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(492, 65426, 'sixty-five thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(493, 75771, 'seventy-five thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(494, 6764, 'six thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(495, 33671, 'thirty-three thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(496, 82362, 'eighty-two thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(497, 20050, 'twenty thousand fifty');\nINSERT INTO t1 VALUES(498, 56872, 'fifty-six thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(499, 50444, 'fifty thousand four hundred forty-four');\nINSERT INTO t1 VALUES(500, 58990, 'fifty-eight thousand nine hundred ninety');\nINSERT INTO t1 VALUES(501, 33015, 'thirty-three thousand fifteen');\nINSERT INTO t1 VALUES(502, 22947, 'twenty-two thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(503, 51076, 'fifty-one thousand seventy-six');\nINSERT INTO t1 VALUES(504, 54076, 'fifty-four thousand seventy-six');\nINSERT INTO t1 VALUES(505, 9164, 'nine thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(506, 49803, 'forty-nine thousand eight hundred three');\nINSERT INTO t1 VALUES(507, 30930, 'thirty thousand nine hundred thirty');\nINSERT INTO t1 VALUES(508, 72773, 'seventy-two thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(509, 86955, 'eighty-six thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(510, 63099, 'sixty-three thousand ninety-nine');\nINSERT INTO t1 VALUES(511, 36835, 'thirty-six thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(512, 99608, 'ninety-nine thousand six hundred eight');\nINSERT INTO t1 VALUES(513, 20087, 'twenty thousand eighty-seven');\nINSERT INTO t1 VALUES(514, 59902, 'fifty-nine thousand nine hundred two');\nINSERT INTO t1 VALUES(515, 70901, 'seventy thousand nine hundred one');\nINSERT INTO t1 VALUES(516, 71899, 'seventy-one thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(517, 22897, 'twenty-two thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(518, 6672, 'six thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(519, 9660, 'nine thousand six hundred sixty');\nINSERT INTO t1 VALUES(520, 78736, 'seventy-eight thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(521, 85202, 'eighty-five thousand two hundred two');\nINSERT INTO t1 VALUES(522, 11277, 'eleven thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(523, 83494, 'eighty-three thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(524, 19099, 'nineteen thousand ninety-nine');\nINSERT INTO t1 VALUES(525, 87334, 'eighty-seven thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(526, 54397, 'fifty-four thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(527, 61503, 'sixty-one thousand five hundred three');\nINSERT INTO t1 VALUES(528, 56635, 'fifty-six thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(529, 50206, 'fifty thousand two hundred six');\nINSERT INTO t1 VALUES(530, 30947, 'thirty thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(531, 56690, 'fifty-six thousand six hundred ninety');\nINSERT INTO t1 VALUES(532, 21428, 'twenty-one thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(533, 49866, 'forty-nine thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(534, 96174, 'ninety-six thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(535, 67447, 'sixty-seven thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(536, 68896, 'sixty-eight thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(537, 78687, 'seventy-eight thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(538, 53144, 'fifty-three thousand one hundred forty-four');\nINSERT INTO t1 VALUES(539, 70681, 'seventy thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(540, 69947, 'sixty-nine thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(541, 43066, 'forty-three thousand sixty-six');\nINSERT INTO t1 VALUES(542, 61640, 'sixty-one thousand six hundred forty');\nINSERT INTO t1 VALUES(543, 65972, 'sixty-five thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(544, 79904, 'seventy-nine thousand nine hundred four');\nINSERT INTO t1 VALUES(545, 53530, 'fifty-three thousand five hundred thirty');\nINSERT INTO t1 VALUES(546, 67898, 'sixty-seven thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(547, 74946, 'seventy-four thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(548, 31320, 'thirty-one thousand three hundred twenty');\nINSERT INTO t1 VALUES(549, 19443, 'nineteen thousand four hundred forty-three');\nINSERT INTO t1 VALUES(550, 74559, 'seventy-four thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(551, 29338, 'twenty-nine thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(552, 31827, 'thirty-one thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(553, 85634, 'eighty-five thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(554, 71742, 'seventy-one thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(555, 10773, 'ten thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(556, 56958, 'fifty-six thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(557, 11158, 'eleven thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(558, 24219, 'twenty-four thousand two hundred nineteen');\nINSERT INTO t1 VALUES(559, 64293, 'sixty-four thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(560, 29597, 'twenty-nine thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(561, 44206, 'forty-four thousand two hundred six');\nINSERT INTO t1 VALUES(562, 41355, 'forty-one thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(563, 9326, 'nine thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(564, 55285, 'fifty-five thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(565, 13074, 'thirteen thousand seventy-four');\nINSERT INTO t1 VALUES(566, 14914, 'fourteen thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(567, 39352, 'thirty-nine thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(568, 85270, 'eighty-five thousand two hundred seventy');\nINSERT INTO t1 VALUES(569, 49568, 'forty-nine thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(570, 12341, 'twelve thousand three hundred forty-one');\nINSERT INTO t1 VALUES(571, 79612, 'seventy-nine thousand six hundred twelve');\nINSERT INTO t1 VALUES(572, 60587, 'sixty thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(573, 21080, 'twenty-one thousand eighty');\nINSERT INTO t1 VALUES(574, 1918, 'one thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(575, 11453, 'eleven thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(576, 14499, 'fourteen thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(577, 34377, 'thirty-four thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(578, 24256, 'twenty-four thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(579, 19779, 'nineteen thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(580, 95966, 'ninety-five thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(581, 73931, 'seventy-three thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(582, 20049, 'twenty thousand forty-nine');\nINSERT INTO t1 VALUES(583, 98672, 'ninety-eight thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(584, 15686, 'fifteen thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(585, 14102, 'fourteen thousand one hundred two');\nINSERT INTO t1 VALUES(586, 19086, 'nineteen thousand eighty-six');\nINSERT INTO t1 VALUES(587, 84666, 'eighty-four thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(588, 43294, 'forty-three thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(589, 18934, 'eighteen thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(590, 32540, 'thirty-two thousand five hundred forty');\nINSERT INTO t1 VALUES(591, 77719, 'seventy-seven thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(592, 71077, 'seventy-one thousand seventy-seven');\nINSERT INTO t1 VALUES(593, 41207, 'forty-one thousand two hundred seven');\nINSERT INTO t1 VALUES(594, 70728, 'seventy thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(595, 23442, 'twenty-three thousand four hundred forty-two');\nINSERT INTO t1 VALUES(596, 24449, 'twenty-four thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(597, 37949, 'thirty-seven thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(598, 23420, 'twenty-three thousand four hundred twenty');\nINSERT INTO t1 VALUES(599, 374, 'three hundred seventy-four');\nINSERT INTO t1 VALUES(600, 34061, 'thirty-four thousand sixty-one');\nINSERT INTO t1 VALUES(601, 17320, 'seventeen thousand three hundred twenty');\nINSERT INTO t1 VALUES(602, 15866, 'fifteen thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(603, 36879, 'thirty-six thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(604, 63304, 'sixty-three thousand three hundred four');\nINSERT INTO t1 VALUES(605, 30961, 'thirty thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(606, 41945, 'forty-one thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(607, 42550, 'forty-two thousand five hundred fifty');\nINSERT INTO t1 VALUES(608, 21902, 'twenty-one thousand nine hundred two');\nINSERT INTO t1 VALUES(609, 53848, 'fifty-three thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(610, 74728, 'seventy-four thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(611, 65032, 'sixty-five thousand thirty-two');\nINSERT INTO t1 VALUES(612, 85955, 'eighty-five thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(613, 94410, 'ninety-four thousand four hundred ten');\nINSERT INTO t1 VALUES(614, 98397, 'ninety-eight thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(615, 47190, 'forty-seven thousand one hundred ninety');\nINSERT INTO t1 VALUES(616, 17588, 'seventeen thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(617, 31575, 'thirty-one thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(618, 78749, 'seventy-eight thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(619, 40495, 'forty thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(620, 38920, 'thirty-eight thousand nine hundred twenty');\nINSERT INTO t1 VALUES(621, 72952, 'seventy-two thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(622, 49107, 'forty-nine thousand one hundred seven');\nINSERT INTO t1 VALUES(623, 88304, 'eighty-eight thousand three hundred four');\nINSERT INTO t1 VALUES(624, 61467, 'sixty-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(625, 53876, 'fifty-three thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(626, 52585, 'fifty-two thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(627, 52521, 'fifty-two thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(628, 91069, 'ninety-one thousand sixty-nine');\nINSERT INTO t1 VALUES(629, 75990, 'seventy-five thousand nine hundred ninety');\nINSERT INTO t1 VALUES(630, 37578, 'thirty-seven thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(631, 55375, 'fifty-five thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(632, 18123, 'eighteen thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(633, 49793, 'forty-nine thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(634, 48660, 'forty-eight thousand six hundred sixty');\nINSERT INTO t1 VALUES(635, 95750, 'ninety-five thousand seven hundred fifty');\nINSERT INTO t1 VALUES(636, 88482, 'eighty-eight thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(637, 52293, 'fifty-two thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(638, 48752, 'forty-eight thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(639, 40166, 'forty thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(640, 77581, 'seventy-seven thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(641, 10821, 'ten thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(642, 29263, 'twenty-nine thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(643, 83388, 'eighty-three thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(644, 29250, 'twenty-nine thousand two hundred fifty');\nINSERT INTO t1 VALUES(645, 62922, 'sixty-two thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(646, 61310, 'sixty-one thousand three hundred ten');\nINSERT INTO t1 VALUES(647, 4415, 'four thousand four hundred fifteen');\nINSERT INTO t1 VALUES(648, 45268, 'forty-five thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(649, 65389, 'sixty-five thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(650, 45523, 'forty-five thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(651, 15806, 'fifteen thousand eight hundred six');\nINSERT INTO t1 VALUES(652, 98377, 'ninety-eight thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(653, 55698, 'fifty-five thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(654, 1478, 'one thousand four hundred seventy-eight');\nINSERT INTO t1 VALUES(655, 30335, 'thirty thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(656, 79411, 'seventy-nine thousand four hundred eleven');\nINSERT INTO t1 VALUES(657, 25522, 'twenty-five thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(658, 62224, 'sixty-two thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(659, 85132, 'eighty-five thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(660, 40466, 'forty thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(661, 50611, 'fifty thousand six hundred eleven');\nINSERT INTO t1 VALUES(662, 20690, 'twenty thousand six hundred ninety');\nINSERT INTO t1 VALUES(663, 20473, 'twenty thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(664, 11232, 'eleven thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(665, 74572, 'seventy-four thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(666, 96457, 'ninety-six thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(667, 19592, 'nineteen thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(668, 73698, 'seventy-three thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(669, 46020, 'forty-six thousand twenty');\nINSERT INTO t1 VALUES(670, 21920, 'twenty-one thousand nine hundred twenty');\nINSERT INTO t1 VALUES(671, 82017, 'eighty-two thousand seventeen');\nINSERT INTO t1 VALUES(672, 11049, 'eleven thousand forty-nine');\nINSERT INTO t1 VALUES(673, 11331, 'eleven thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(674, 69853, 'sixty-nine thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(675, 72860, 'seventy-two thousand eight hundred sixty');\nINSERT INTO t1 VALUES(676, 92902, 'ninety-two thousand nine hundred two');\nINSERT INTO t1 VALUES(677, 76012, 'seventy-six thousand twelve');\nINSERT INTO t1 VALUES(678, 24146, 'twenty-four thousand one hundred forty-six');\nINSERT INTO t1 VALUES(679, 65043, 'sixty-five thousand forty-three');\nINSERT INTO t1 VALUES(680, 33189, 'thirty-three thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(681, 26540, 'twenty-six thousand five hundred forty');\nINSERT INTO t1 VALUES(682, 11391, 'eleven thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(683, 7557, 'seven thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(684, 96548, 'ninety-six thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(685, 28249, 'twenty-eight thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(686, 4, 'four');\nINSERT INTO t1 VALUES(687, 93866, 'ninety-three thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(688, 85913, 'eighty-five thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(689, 27019, 'twenty-seven thousand nineteen');\nINSERT INTO t1 VALUES(690, 73409, 'seventy-three thousand four hundred nine');\nINSERT INTO t1 VALUES(691, 94731, 'ninety-four thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(692, 97305, 'ninety-seven thousand three hundred five');\nINSERT INTO t1 VALUES(693, 91379, 'ninety-one thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(694, 36839, 'thirty-six thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(695, 43929, 'forty-three thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(696, 35693, 'thirty-five thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(697, 95751, 'ninety-five thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(698, 87282, 'eighty-seven thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(699, 27253, 'twenty-seven thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(700, 42140, 'forty-two thousand one hundred forty');\nINSERT INTO t1 VALUES(701, 49889, 'forty-nine thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(702, 66987, 'sixty-six thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(703, 91389, 'ninety-one thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(704, 72974, 'seventy-two thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(705, 902, 'nine hundred two');\nINSERT INTO t1 VALUES(706, 91221, 'ninety-one thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(707, 56384, 'fifty-six thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(708, 18704, 'eighteen thousand seven hundred four');\nINSERT INTO t1 VALUES(709, 78404, 'seventy-eight thousand four hundred four');\nINSERT INTO t1 VALUES(710, 10294, 'ten thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(711, 63621, 'sixty-three thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(712, 16992, 'sixteen thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(713, 97472, 'ninety-seven thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(714, 28965, 'twenty-eight thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(715, 8316, 'eight thousand three hundred sixteen');\nINSERT INTO t1 VALUES(716, 97964, 'ninety-seven thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(717, 12696, 'twelve thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(718, 4515, 'four thousand five hundred fifteen');\nINSERT INTO t1 VALUES(719, 62470, 'sixty-two thousand four hundred seventy');\nINSERT INTO t1 VALUES(720, 36663, 'thirty-six thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(721, 90498, 'ninety thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(722, 6487, 'six thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(723, 52641, 'fifty-two thousand six hundred forty-one');\nINSERT INTO t1 VALUES(724, 39672, 'thirty-nine thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(725, 24632, 'twenty-four thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(726, 23330, 'twenty-three thousand three hundred thirty');\nINSERT INTO t1 VALUES(727, 76465, 'seventy-six thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(728, 20847, 'twenty thousand eight hundred forty-seven');\nINSERT INTO t1 VALUES(729, 50465, 'fifty thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(730, 39837, 'thirty-nine thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(731, 83352, 'eighty-three thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(732, 50598, 'fifty thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(733, 50053, 'fifty thousand fifty-three');\nINSERT INTO t1 VALUES(734, 94348, 'ninety-four thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(735, 96286, 'ninety-six thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(736, 4012, 'four thousand twelve');\nINSERT INTO t1 VALUES(737, 75209, 'seventy-five thousand two hundred nine');\nINSERT INTO t1 VALUES(738, 74851, 'seventy-four thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(739, 1740, 'one thousand seven hundred forty');\nINSERT INTO t1 VALUES(740, 67502, 'sixty-seven thousand five hundred two');\nINSERT INTO t1 VALUES(741, 75490, 'seventy-five thousand four hundred ninety');\nINSERT INTO t1 VALUES(742, 85302, 'eighty-five thousand three hundred two');\nINSERT INTO t1 VALUES(743, 57899, 'fifty-seven thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(744, 12706, 'twelve thousand seven hundred six');\nINSERT INTO t1 VALUES(745, 19713, 'nineteen thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(746, 61208, 'sixty-one thousand two hundred eight');\nINSERT INTO t1 VALUES(747, 88189, 'eighty-eight thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(748, 61646, 'sixty-one thousand six hundred forty-six');\nINSERT INTO t1 VALUES(749, 42774, 'forty-two thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(750, 31477, 'thirty-one thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(751, 97340, 'ninety-seven thousand three hundred forty');\nINSERT INTO t1 VALUES(752, 14108, 'fourteen thousand one hundred eight');\nINSERT INTO t1 VALUES(753, 74097, 'seventy-four thousand ninety-seven');\nINSERT INTO t1 VALUES(754, 83823, 'eighty-three thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(755, 36077, 'thirty-six thousand seventy-seven');\nINSERT INTO t1 VALUES(756, 86419, 'eighty-six thousand four hundred nineteen');\nINSERT INTO t1 VALUES(757, 72428, 'seventy-two thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(758, 27947, 'twenty-seven thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(759, 36039, 'thirty-six thousand thirty-nine');\nINSERT INTO t1 VALUES(760, 37107, 'thirty-seven thousand one hundred seven');\nINSERT INTO t1 VALUES(761, 56070, 'fifty-six thousand seventy');\nINSERT INTO t1 VALUES(762, 91807, 'ninety-one thousand eight hundred seven');\nINSERT INTO t1 VALUES(763, 16255, 'sixteen thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(764, 58625, 'fifty-eight thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(765, 70216, 'seventy thousand two hundred sixteen');\nINSERT INTO t1 VALUES(766, 66700, 'sixty-six thousand seven hundred');\nINSERT INTO t1 VALUES(767, 83359, 'eighty-three thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(768, 53833, 'fifty-three thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(769, 56167, 'fifty-six thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(770, 18770, 'eighteen thousand seven hundred seventy');\nINSERT INTO t1 VALUES(771, 21077, 'twenty-one thousand seventy-seven');\nINSERT INTO t1 VALUES(772, 91380, 'ninety-one thousand three hundred eighty');\nINSERT INTO t1 VALUES(773, 64063, 'sixty-four thousand sixty-three');\nINSERT INTO t1 VALUES(774, 19494, 'nineteen thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(775, 98753, 'ninety-eight thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(776, 20066, 'twenty thousand sixty-six');\nINSERT INTO t1 VALUES(777, 37911, 'thirty-seven thousand nine hundred eleven');\nINSERT INTO t1 VALUES(778, 20388, 'twenty thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(779, 56293, 'fifty-six thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(780, 14002, 'fourteen thousand two');\nINSERT INTO t1 VALUES(781, 54877, 'fifty-four thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(782, 15206, 'fifteen thousand two hundred six');\nINSERT INTO t1 VALUES(783, 49004, 'forty-nine thousand four');\nINSERT INTO t1 VALUES(784, 11380, 'eleven thousand three hundred eighty');\nINSERT INTO t1 VALUES(785, 36092, 'thirty-six thousand ninety-two');\nINSERT INTO t1 VALUES(786, 11214, 'eleven thousand two hundred fourteen');\nINSERT INTO t1 VALUES(787, 42797, 'forty-two thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(788, 67437, 'sixty-seven thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(789, 69758, 'sixty-nine thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(790, 39380, 'thirty-nine thousand three hundred eighty');\nINSERT INTO t1 VALUES(791, 98258, 'ninety-eight thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(792, 91089, 'ninety-one thousand eighty-nine');\nINSERT INTO t1 VALUES(793, 26792, 'twenty-six thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(794, 50150, 'fifty thousand one hundred fifty');\nINSERT INTO t1 VALUES(795, 33970, 'thirty-three thousand nine hundred seventy');\nINSERT INTO t1 VALUES(796, 8966, 'eight thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(797, 72381, 'seventy-two thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(798, 54370, 'fifty-four thousand three hundred seventy');\nINSERT INTO t1 VALUES(799, 25873, 'twenty-five thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(800, 34960, 'thirty-four thousand nine hundred sixty');\nINSERT INTO t1 VALUES(801, 30057, 'thirty thousand fifty-seven');\nINSERT INTO t1 VALUES(802, 8378, 'eight thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(803, 63387, 'sixty-three thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(804, 83890, 'eighty-three thousand eight hundred ninety');\nINSERT INTO t1 VALUES(805, 48723, 'forty-eight thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(806, 21491, 'twenty-one thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(807, 20470, 'twenty thousand four hundred seventy');\nINSERT INTO t1 VALUES(808, 65561, 'sixty-five thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(809, 38706, 'thirty-eight thousand seven hundred six');\nINSERT INTO t1 VALUES(810, 18333, 'eighteen thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(811, 35631, 'thirty-five thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(812, 84578, 'eighty-four thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(813, 88735, 'eighty-eight thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(814, 92359, 'ninety-two thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(815, 63086, 'sixty-three thousand eighty-six');\nINSERT INTO t1 VALUES(816, 47841, 'forty-seven thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(817, 86086, 'eighty-six thousand eighty-six');\nINSERT INTO t1 VALUES(818, 62646, 'sixty-two thousand six hundred forty-six');\nINSERT INTO t1 VALUES(819, 55244, 'fifty-five thousand two hundred forty-four');\nINSERT INTO t1 VALUES(820, 76085, 'seventy-six thousand eighty-five');\nINSERT INTO t1 VALUES(821, 75668, 'seventy-five thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(822, 62414, 'sixty-two thousand four hundred fourteen');\nINSERT INTO t1 VALUES(823, 38682, 'thirty-eight thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(824, 13046, 'thirteen thousand forty-six');\nINSERT INTO t1 VALUES(825, 58590, 'fifty-eight thousand five hundred ninety');\nINSERT INTO t1 VALUES(826, 51105, 'fifty-one thousand one hundred five');\nINSERT INTO t1 VALUES(827, 94588, 'ninety-four thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(828, 85111, 'eighty-five thousand one hundred eleven');\nINSERT INTO t1 VALUES(829, 55835, 'fifty-five thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(830, 58345, 'fifty-eight thousand three hundred forty-five');\nINSERT INTO t1 VALUES(831, 84864, 'eighty-four thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(832, 80927, 'eighty thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(833, 17844, 'seventeen thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(834, 74478, 'seventy-four thousand four hundred seventy-eight');\nINSERT INTO t1 VALUES(835, 11835, 'eleven thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(836, 35914, 'thirty-five thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(837, 99275, 'ninety-nine thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(838, 52793, 'fifty-two thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(839, 58035, 'fifty-eight thousand thirty-five');\nINSERT INTO t1 VALUES(840, 2207, 'two thousand two hundred seven');\nINSERT INTO t1 VALUES(841, 14523, 'fourteen thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(842, 34155, 'thirty-four thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(843, 29322, 'twenty-nine thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(844, 46687, 'forty-six thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(845, 33492, 'thirty-three thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(846, 84814, 'eighty-four thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(847, 44434, 'forty-four thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(848, 13852, 'thirteen thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(849, 72546, 'seventy-two thousand five hundred forty-six');\nINSERT INTO t1 VALUES(850, 40984, 'forty thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(851, 93784, 'ninety-three thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(852, 34250, 'thirty-four thousand two hundred fifty');\nINSERT INTO t1 VALUES(853, 72147, 'seventy-two thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(854, 74225, 'seventy-four thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(855, 31017, 'thirty-one thousand seventeen');\nINSERT INTO t1 VALUES(856, 26569, 'twenty-six thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(857, 5857, 'five thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(858, 32947, 'thirty-two thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(859, 83134, 'eighty-three thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(860, 42816, 'forty-two thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(861, 71423, 'seventy-one thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(862, 52047, 'fifty-two thousand forty-seven');\nINSERT INTO t1 VALUES(863, 64998, 'sixty-four thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(864, 69171, 'sixty-nine thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(865, 84031, 'eighty-four thousand thirty-one');\nINSERT INTO t1 VALUES(866, 75532, 'seventy-five thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(867, 94964, 'ninety-four thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(868, 5660, 'five thousand six hundred sixty');\nINSERT INTO t1 VALUES(869, 55840, 'fifty-five thousand eight hundred forty');\nINSERT INTO t1 VALUES(870, 89953, 'eighty-nine thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(871, 13202, 'thirteen thousand two hundred two');\nINSERT INTO t1 VALUES(872, 2630, 'two thousand six hundred thirty');\nINSERT INTO t1 VALUES(873, 63261, 'sixty-three thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(874, 2886, 'two thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(875, 64187, 'sixty-four thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(876, 63376, 'sixty-three thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(877, 63783, 'sixty-three thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(878, 25102, 'twenty-five thousand one hundred two');\nINSERT INTO t1 VALUES(879, 63740, 'sixty-three thousand seven hundred forty');\nINSERT INTO t1 VALUES(880, 51842, 'fifty-one thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(881, 99799, 'ninety-nine thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(882, 56301, 'fifty-six thousand three hundred one');\nINSERT INTO t1 VALUES(883, 89118, 'eighty-nine thousand one hundred eighteen');\nINSERT INTO t1 VALUES(884, 2127, 'two thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(885, 95244, 'ninety-five thousand two hundred forty-four');\nINSERT INTO t1 VALUES(886, 90631, 'ninety thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(887, 36802, 'thirty-six thousand eight hundred two');\nINSERT INTO t1 VALUES(888, 27481, 'twenty-seven thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(889, 58760, 'fifty-eight thousand seven hundred sixty');\nINSERT INTO t1 VALUES(890, 72033, 'seventy-two thousand thirty-three');\nINSERT INTO t1 VALUES(891, 28999, 'twenty-eight thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(892, 41077, 'forty-one thousand seventy-seven');\nINSERT INTO t1 VALUES(893, 14607, 'fourteen thousand six hundred seven');\nINSERT INTO t1 VALUES(894, 82153, 'eighty-two thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(895, 18611, 'eighteen thousand six hundred eleven');\nINSERT INTO t1 VALUES(896, 6609, 'six thousand six hundred nine');\nINSERT INTO t1 VALUES(897, 77853, 'seventy-seven thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(898, 26063, 'twenty-six thousand sixty-three');\nINSERT INTO t1 VALUES(899, 86043, 'eighty-six thousand forty-three');\nINSERT INTO t1 VALUES(900, 74825, 'seventy-four thousand eight hundred twenty-five');\nINSERT INTO t1 VALUES(901, 42686, 'forty-two thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(902, 24753, 'twenty-four thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(903, 77131, 'seventy-seven thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(904, 96987, 'ninety-six thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(905, 44504, 'forty-four thousand five hundred four');\nINSERT INTO t1 VALUES(906, 45053, 'forty-five thousand fifty-three');\nINSERT INTO t1 VALUES(907, 87269, 'eighty-seven thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(908, 24991, 'twenty-four thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(909, 62528, 'sixty-two thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(910, 74023, 'seventy-four thousand twenty-three');\nINSERT INTO t1 VALUES(911, 47325, 'forty-seven thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(912, 7764, 'seven thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(913, 25982, 'twenty-five thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(914, 4560, 'four thousand five hundred sixty');\nINSERT INTO t1 VALUES(915, 78481, 'seventy-eight thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(916, 22421, 'twenty-two thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(917, 81391, 'eighty-one thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(918, 37103, 'thirty-seven thousand one hundred three');\nINSERT INTO t1 VALUES(919, 6594, 'six thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(920, 6273, 'six thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(921, 35096, 'thirty-five thousand ninety-six');\nINSERT INTO t1 VALUES(922, 70951, 'seventy thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(923, 52908, 'fifty-two thousand nine hundred eight');\nINSERT INTO t1 VALUES(924, 75934, 'seventy-five thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(925, 79146, 'seventy-nine thousand one hundred forty-six');\nINSERT INTO t1 VALUES(926, 68445, 'sixty-eight thousand four hundred forty-five');\nINSERT INTO t1 VALUES(927, 30177, 'thirty thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(928, 81045, 'eighty-one thousand forty-five');\nINSERT INTO t1 VALUES(929, 81681, 'eighty-one thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(930, 55140, 'fifty-five thousand one hundred forty');\nINSERT INTO t1 VALUES(931, 32735, 'thirty-two thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(932, 36710, 'thirty-six thousand seven hundred ten');\nINSERT INTO t1 VALUES(933, 87743, 'eighty-seven thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(934, 69665, 'sixty-nine thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(935, 57940, 'fifty-seven thousand nine hundred forty');\nINSERT INTO t1 VALUES(936, 20254, 'twenty thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(937, 67563, 'sixty-seven thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(938, 55515, 'fifty-five thousand five hundred fifteen');\nINSERT INTO t1 VALUES(939, 31646, 'thirty-one thousand six hundred forty-six');\nINSERT INTO t1 VALUES(940, 28729, 'twenty-eight thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(941, 95022, 'ninety-five thousand twenty-two');\nINSERT INTO t1 VALUES(942, 65016, 'sixty-five thousand sixteen');\nINSERT INTO t1 VALUES(943, 53322, 'fifty-three thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(944, 80022, 'eighty thousand twenty-two');\nINSERT INTO t1 VALUES(945, 84214, 'eighty-four thousand two hundred fourteen');\nINSERT INTO t1 VALUES(946, 41101, 'forty-one thousand one hundred one');\nINSERT INTO t1 VALUES(947, 45773, 'forty-five thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(948, 77511, 'seventy-seven thousand five hundred eleven');\nINSERT INTO t1 VALUES(949, 87665, 'eighty-seven thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(950, 7337, 'seven thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(951, 7387, 'seven thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(952, 37648, 'thirty-seven thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(953, 78093, 'seventy-eight thousand ninety-three');\nINSERT INTO t1 VALUES(954, 17055, 'seventeen thousand fifty-five');\nINSERT INTO t1 VALUES(955, 75829, 'seventy-five thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(956, 36840, 'thirty-six thousand eight hundred forty');\nINSERT INTO t1 VALUES(957, 56519, 'fifty-six thousand five hundred nineteen');\nINSERT INTO t1 VALUES(958, 41940, 'forty-one thousand nine hundred forty');\nINSERT INTO t1 VALUES(959, 61832, 'sixty-one thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(960, 51010, 'fifty-one thousand ten');\nINSERT INTO t1 VALUES(961, 93497, 'ninety-three thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(962, 76007, 'seventy-six thousand seven');\nINSERT INTO t1 VALUES(963, 48149, 'forty-eight thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(964, 14722, 'fourteen thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(965, 8909, 'eight thousand nine hundred nine');\nINSERT INTO t1 VALUES(966, 2643, 'two thousand six hundred forty-three');\nINSERT INTO t1 VALUES(967, 94315, 'ninety-four thousand three hundred fifteen');\nINSERT INTO t1 VALUES(968, 69977, 'sixty-nine thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(969, 11808, 'eleven thousand eight hundred eight');\nINSERT INTO t1 VALUES(970, 68357, 'sixty-eight thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(971, 85250, 'eighty-five thousand two hundred fifty');\nINSERT INTO t1 VALUES(972, 58340, 'fifty-eight thousand three hundred forty');\nINSERT INTO t1 VALUES(973, 68845, 'sixty-eight thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(974, 94591, 'ninety-four thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(975, 46474, 'forty-six thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(976, 92292, 'ninety-two thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(977, 28243, 'twenty-eight thousand two hundred forty-three');\nINSERT INTO t1 VALUES(978, 56049, 'fifty-six thousand forty-nine');\nINSERT INTO t1 VALUES(979, 43203, 'forty-three thousand two hundred three');\nINSERT INTO t1 VALUES(980, 2892, 'two thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(981, 3349, 'three thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(982, 31139, 'thirty-one thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(983, 19311, 'nineteen thousand three hundred eleven');\nINSERT INTO t1 VALUES(984, 47939, 'forty-seven thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(985, 76128, 'seventy-six thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(986, 43219, 'forty-three thousand two hundred nineteen');\nINSERT INTO t1 VALUES(987, 32916, 'thirty-two thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(988, 6167, 'six thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(989, 53700, 'fifty-three thousand seven hundred');\nINSERT INTO t1 VALUES(990, 12394, 'twelve thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(991, 38055, 'thirty-eight thousand fifty-five');\nINSERT INTO t1 VALUES(992, 20264, 'twenty thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(993, 62637, 'sixty-two thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(994, 42503, 'forty-two thousand five hundred three');\nINSERT INTO t1 VALUES(995, 11145, 'eleven thousand one hundred forty-five');\nINSERT INTO t1 VALUES(996, 11489, 'eleven thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(997, 22604, 'twenty-two thousand six hundred four');\nINSERT INTO t1 VALUES(998, 14827, 'fourteen thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(999, 52539, 'fifty-two thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(1000, 64413, 'sixty-four thousand four hundred thirteen');\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark10.sql",
    "content": "BEGIN;\nUPDATE t2 SET c='ninety-two thousand six hundred ten' WHERE a=1;\nUPDATE t2 SET c='sixty-four thousand ninety-one' WHERE a=2;\nUPDATE t2 SET c='seventy-one thousand four hundred fifty-four' WHERE a=3;\nUPDATE t2 SET c='two thousand two hundred nineteen' WHERE a=4;\nUPDATE t2 SET c='twelve thousand two hundred fifty-two' WHERE a=5;\nUPDATE t2 SET c='six thousand four hundred eighteen' WHERE a=6;\nUPDATE t2 SET c='sixty-one thousand four hundred sixty-seven' WHERE a=7;\nUPDATE t2 SET c='ninety thousand nine hundred thirty-two' WHERE a=8;\nUPDATE t2 SET c='forty-three thousand five hundred eighty' WHERE a=9;\nUPDATE t2 SET c='forty thousand nine hundred seven' WHERE a=10;\nUPDATE t2 SET c='twenty-one thousand seven hundred fifty-one' WHERE a=11;\nUPDATE t2 SET c='fifty-nine thousand one hundred sixty-four' WHERE a=12;\nUPDATE t2 SET c='three thousand one hundred twenty-two' WHERE a=13;\nUPDATE t2 SET c='twenty thousand six hundred fifty-six' WHERE a=14;\nUPDATE t2 SET c='eighty-seven thousand one hundred thirty-one' WHERE a=15;\nUPDATE t2 SET c='thirty-nine thousand four hundred ninety-seven' WHERE a=16;\nUPDATE t2 SET c='fifty-eight thousand twenty-five' WHERE a=17;\nUPDATE t2 SET c='thirty-eight thousand nine hundred ninety' WHERE a=18;\nUPDATE t2 SET c='eighty-one thousand nine hundred forty-two' WHERE a=19;\nUPDATE t2 SET c='twenty thousand seven hundred forty-nine' WHERE a=20;\nUPDATE t2 SET c='twenty-four thousand four hundred fourteen' WHERE a=21;\nUPDATE t2 SET c='four thousand four hundred four' WHERE a=22;\nUPDATE t2 SET c='ninety-eight thousand six hundred forty-one' WHERE a=23;\nUPDATE t2 SET c='fifteen thousand two hundred forty-three' WHERE a=24;\nUPDATE t2 SET c='fifty-nine thousand two hundred ten' WHERE a=25;\nUPDATE t2 SET c='ninety-seven thousand one hundred fifty' WHERE a=26;\nUPDATE t2 SET c='thirty-three thousand five hundred forty-nine' WHERE a=27;\nUPDATE t2 SET c='forty-one thousand five hundred forty-four' WHERE a=28;\nUPDATE t2 SET c='twenty-five thousand forty-seven' WHERE a=29;\nUPDATE t2 SET c='thirteen thousand six hundred nineteen' WHERE a=30;\nUPDATE t2 SET c='seventy-five thousand nine hundred twenty-one' WHERE a=31;\nUPDATE t2 SET c='forty-nine thousand two hundred sixty-nine' WHERE a=32;\nUPDATE t2 SET c='one thousand three hundred ten' WHERE a=33;\nUPDATE t2 SET c='forty-three thousand nine hundred twenty-six' WHERE a=34;\nUPDATE t2 SET c='eighty thousand eight hundred fifty-six' WHERE a=35;\nUPDATE t2 SET c='forty-nine thousand eight hundred fifty-three' WHERE a=36;\nUPDATE t2 SET c='fifty-nine thousand two hundred thirty-three' WHERE a=37;\nUPDATE t2 SET c='eighty thousand three hundred fifteen' WHERE a=38;\nUPDATE t2 SET c='sixty-six thousand seven hundred eighty' WHERE a=39;\nUPDATE t2 SET c='forty-seven thousand five hundred six' WHERE a=40;\nUPDATE t2 SET c='eighty-nine thousand seven hundred sixty' WHERE a=41;\nUPDATE t2 SET c='twenty-seven thousand nine hundred eighty' WHERE a=42;\nUPDATE t2 SET c='ninety-seven thousand one hundred forty-nine' WHERE a=43;\nUPDATE t2 SET c='forty-three thousand three hundred thirty-one' WHERE a=44;\nUPDATE t2 SET c='sixteen thousand nine hundred fifty-four' WHERE a=45;\nUPDATE t2 SET c='twenty-five thousand nine hundred ten' WHERE a=46;\nUPDATE t2 SET c='seventeen thousand three hundred thirty-eight' WHERE a=47;\nUPDATE t2 SET c='eighteen thousand five hundred fifty-one' WHERE a=48;\nUPDATE t2 SET c='sixty-six thousand three hundred twenty' WHERE a=49;\nUPDATE t2 SET c='thirty thousand six hundred seventy-eight' WHERE a=50;\nUPDATE t2 SET c='seventy-four thousand five hundred sixty-one' WHERE a=51;\nUPDATE t2 SET c='twenty-two thousand four hundred ninety-nine' WHERE a=52;\nUPDATE t2 SET c='sixty-seven thousand three hundred twenty-six' WHERE a=53;\nUPDATE t2 SET c='thirty-five thousand three hundred forty-four' WHERE a=54;\nUPDATE t2 SET c='eighty-five thousand sixty-three' WHERE a=55;\nUPDATE t2 SET c='thirty-five thousand one hundred forty' WHERE a=56;\nUPDATE t2 SET c='forty-eight thousand two hundred seventy-three' WHERE a=57;\nUPDATE t2 SET c='seventy-two thousand three hundred eighteen' WHERE a=58;\nUPDATE t2 SET c='eighty-three thousand eight hundred ninety-eight' WHERE a=59;\nUPDATE t2 SET c='fourteen thousand nine hundred twenty-seven' WHERE a=60;\nUPDATE t2 SET c='twenty-six thousand three hundred eighty' WHERE a=61;\nUPDATE t2 SET c='twenty thousand eight hundred thirty-seven' WHERE a=62;\nUPDATE t2 SET c='three thousand one hundred ninety-two' WHERE a=63;\nUPDATE t2 SET c='forty-eight thousand seven hundred ninety-four' WHERE a=64;\nUPDATE t2 SET c='sixty thousand eight hundred eighteen' WHERE a=65;\nUPDATE t2 SET c='ninety-one thousand five hundred fifty-six' WHERE a=66;\nUPDATE t2 SET c='eleven thousand four hundred twenty' WHERE a=67;\nUPDATE t2 SET c='nine thousand two hundred sixty-five' WHERE a=68;\nUPDATE t2 SET c='sixty thousand four hundred eighty-nine' WHERE a=69;\nUPDATE t2 SET c='ninety-three thousand nine hundred eighty-six' WHERE a=70;\nUPDATE t2 SET c='seventy-seven thousand two hundred sixty-four' WHERE a=71;\nUPDATE t2 SET c='forty-two thousand' WHERE a=72;\nUPDATE t2 SET c='sixty-seven thousand eight hundred forty-six' WHERE a=73;\nUPDATE t2 SET c='sixteen thousand seven hundred thirty-seven' WHERE a=74;\nUPDATE t2 SET c='thirty-three thousand sixty' WHERE a=75;\nUPDATE t2 SET c='seventy thousand nine hundred twenty-five' WHERE a=76;\nUPDATE t2 SET c='forty-three thousand four hundred fifty-five' WHERE a=77;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty-nine' WHERE a=78;\nUPDATE t2 SET c='four thousand nine hundred sixty-five' WHERE a=79;\nUPDATE t2 SET c='twenty-one thousand one hundred two' WHERE a=80;\nUPDATE t2 SET c='eighty-one thousand seven hundred twenty-six' WHERE a=81;\nUPDATE t2 SET c='eighty-seven thousand nine hundred forty-four' WHERE a=82;\nUPDATE t2 SET c='eighty-one thousand six hundred thirty-four' WHERE a=83;\nUPDATE t2 SET c='eighty-seven thousand forty-eight' WHERE a=84;\nUPDATE t2 SET c='forty-three thousand four hundred ninety-five' WHERE a=85;\nUPDATE t2 SET c='seven thousand five hundred sixty-three' WHERE a=86;\nUPDATE t2 SET c='thirty-six thousand two hundred fifty-three' WHERE a=87;\nUPDATE t2 SET c='twenty-seven thousand six hundred thirty-two' WHERE a=88;\nUPDATE t2 SET c='thirty-one thousand eight hundred thirty-five' WHERE a=89;\nUPDATE t2 SET c='thirty-five thousand six hundred thirty-six' WHERE a=90;\nUPDATE t2 SET c='fifty-three thousand five hundred seventy-five' WHERE a=91;\nUPDATE t2 SET c='eighty-nine thousand seven hundred ninety-nine' WHERE a=92;\nUPDATE t2 SET c='thirty-one thousand eight hundred eighty-five' WHERE a=93;\nUPDATE t2 SET c='seventy-five thousand three hundred twenty-nine' WHERE a=94;\nUPDATE t2 SET c='ninety-eight thousand five hundred eighty' WHERE a=95;\nUPDATE t2 SET c='ninety-six thousand three hundred two' WHERE a=96;\nUPDATE t2 SET c='three thousand two hundred seventy-one' WHERE a=97;\nUPDATE t2 SET c='seventy-six thousand six hundred fifty-five' WHERE a=98;\nUPDATE t2 SET c='nine thousand three hundred sixty-six' WHERE a=99;\nUPDATE t2 SET c='forty thousand eight hundred thirty' WHERE a=100;\nUPDATE t2 SET c='two hundred forty-one' WHERE a=101;\nUPDATE t2 SET c='fifty-five thousand six hundred fifty-three' WHERE a=102;\nUPDATE t2 SET c='ninety-four thousand six hundred ten' WHERE a=103;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty-nine' WHERE a=104;\nUPDATE t2 SET c='forty-six thousand four hundred two' WHERE a=105;\nUPDATE t2 SET c='eighty-five thousand two hundred eighty-six' WHERE a=106;\nUPDATE t2 SET c='eighty-two thousand six hundred twenty-nine' WHERE a=107;\nUPDATE t2 SET c='fifty-three thousand five hundred two' WHERE a=108;\nUPDATE t2 SET c='eighteen thousand three hundred eighty-three' WHERE a=109;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty-eight' WHERE a=110;\nUPDATE t2 SET c='fifty-two thousand five hundred eighty-five' WHERE a=111;\nUPDATE t2 SET c='six thousand three hundred sixty' WHERE a=112;\nUPDATE t2 SET c='forty-seven thousand six hundred fifty' WHERE a=113;\nUPDATE t2 SET c='ten thousand four hundred sixty-four' WHERE a=114;\nUPDATE t2 SET c='seventy thousand nine hundred fifty-four' WHERE a=115;\nUPDATE t2 SET c='sixty-six thousand one hundred fifty-two' WHERE a=116;\nUPDATE t2 SET c='forty-eight thousand seven hundred sixty-four' WHERE a=117;\nUPDATE t2 SET c='thirty-four thousand seven hundred thirty-eight' WHERE a=118;\nUPDATE t2 SET c='sixty-six thousand nine hundred seventy-nine' WHERE a=119;\nUPDATE t2 SET c='seventy-eight thousand one hundred four' WHERE a=120;\nUPDATE t2 SET c='forty thousand nine hundred thirty-three' WHERE a=121;\nUPDATE t2 SET c='eighty-five thousand three hundred sixty-nine' WHERE a=122;\nUPDATE t2 SET c='sixty-nine thousand eight hundred fifty-six' WHERE a=123;\nUPDATE t2 SET c='fifty-five thousand four hundred twenty-one' WHERE a=124;\nUPDATE t2 SET c='twenty-one thousand four hundred forty-eight' WHERE a=125;\nUPDATE t2 SET c='seventy-two thousand two hundred ninety-one' WHERE a=126;\nUPDATE t2 SET c='four thousand three hundred eighty-six' WHERE a=127;\nUPDATE t2 SET c='sixteen thousand two hundred twenty-nine' WHERE a=128;\nUPDATE t2 SET c='fifty-five thousand nine hundred ninety-six' WHERE a=129;\nUPDATE t2 SET c='twenty-five thousand three hundred eighty-seven' WHERE a=130;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-four' WHERE a=131;\nUPDATE t2 SET c='fifteen thousand seven hundred eighty-two' WHERE a=132;\nUPDATE t2 SET c='sixty-six thousand eight hundred ninety-three' WHERE a=133;\nUPDATE t2 SET c='twelve thousand seven hundred twenty-nine' WHERE a=134;\nUPDATE t2 SET c='nine thousand eight hundred seventy-five' WHERE a=135;\nUPDATE t2 SET c='fifty-two thousand fifty-three' WHERE a=136;\nUPDATE t2 SET c='thirty-nine thousand three hundred ninety-nine' WHERE a=137;\nUPDATE t2 SET c='forty-four thousand twenty-three' WHERE a=138;\nUPDATE t2 SET c='seventy-four thousand eight hundred seventy-three' WHERE a=139;\nUPDATE t2 SET c='twelve thousand eighty-one' WHERE a=140;\nUPDATE t2 SET c='ninety-three thousand twenty-seven' WHERE a=141;\nUPDATE t2 SET c='sixty-two thousand three hundred seventy-two' WHERE a=142;\nUPDATE t2 SET c='fourteen thousand seven hundred sixty-nine' WHERE a=143;\nUPDATE t2 SET c='fifty-eight thousand six hundred sixty-one' WHERE a=144;\nUPDATE t2 SET c='ninety-two thousand three hundred forty' WHERE a=145;\nUPDATE t2 SET c='eighty-one thousand three hundred seventy-nine' WHERE a=146;\nUPDATE t2 SET c='ninety-four thousand one hundred fifteen' WHERE a=147;\nUPDATE t2 SET c='twenty thousand four hundred ninety-nine' WHERE a=148;\nUPDATE t2 SET c='sixty-seven thousand eight hundred twelve' WHERE a=149;\nUPDATE t2 SET c='twenty thousand eight hundred fifty-one' WHERE a=150;\nUPDATE t2 SET c='sixty-one thousand eight' WHERE a=151;\nUPDATE t2 SET c='twenty-five thousand three hundred seventy-eight' WHERE a=152;\nUPDATE t2 SET c='forty thousand seven hundred sixty-seven' WHERE a=153;\nUPDATE t2 SET c='sixty-six thousand one hundred forty-seven' WHERE a=154;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-six' WHERE a=155;\nUPDATE t2 SET c='seventy-four thousand four hundred twenty-four' WHERE a=156;\nUPDATE t2 SET c='eight thousand five hundred thirty-two' WHERE a=157;\nUPDATE t2 SET c='ninety-three thousand five hundred nine' WHERE a=158;\nUPDATE t2 SET c='ninety-five thousand four hundred twelve' WHERE a=159;\nUPDATE t2 SET c='forty-five thousand five hundred sixty-two' WHERE a=160;\nUPDATE t2 SET c='sixty-seven thousand two hundred sixty-eight' WHERE a=161;\nUPDATE t2 SET c='sixty-four thousand sixty-two' WHERE a=162;\nUPDATE t2 SET c='eighty-eight thousand four hundred ninety-four' WHERE a=163;\nUPDATE t2 SET c='five thousand one hundred forty-seven' WHERE a=164;\nUPDATE t2 SET c='seventy-five thousand five hundred forty-one' WHERE a=165;\nUPDATE t2 SET c='sixteen thousand two hundred thirty-eight' WHERE a=166;\nUPDATE t2 SET c='twenty-one thousand six hundred eighty-six' WHERE a=167;\nUPDATE t2 SET c='two thousand four hundred ninety-five' WHERE a=168;\nUPDATE t2 SET c='eighteen thousand four hundred two' WHERE a=169;\nUPDATE t2 SET c='twenty-three thousand three hundred twenty-nine' WHERE a=170;\nUPDATE t2 SET c='eleven thousand four hundred eighty-four' WHERE a=171;\nUPDATE t2 SET c='sixty-one thousand one hundred fifty' WHERE a=172;\nUPDATE t2 SET c='forty-two thousand nine hundred twenty-seven' WHERE a=173;\nUPDATE t2 SET c='seventy thousand six hundred seventy-two' WHERE a=174;\nUPDATE t2 SET c='seven thousand one hundred seventy-seven' WHERE a=175;\nUPDATE t2 SET c='twenty-nine thousand seven hundred three' WHERE a=176;\nUPDATE t2 SET c='thirty-seven thousand six hundred one' WHERE a=177;\nUPDATE t2 SET c='seventy-five thousand seven hundred seventy-seven' WHERE a=178;\nUPDATE t2 SET c='sixty-five thousand one hundred seventy-two' WHERE a=179;\nUPDATE t2 SET c='ninety-nine thousand four hundred eighty-seven' WHERE a=180;\nUPDATE t2 SET c='eighty-seven thousand nine hundred eighty-nine' WHERE a=181;\nUPDATE t2 SET c='sixty-seven thousand one hundred forty-one' WHERE a=182;\nUPDATE t2 SET c='eighty-five thousand nine hundred eighty-four' WHERE a=183;\nUPDATE t2 SET c='sixty-two thousand seven hundred seventy' WHERE a=184;\nUPDATE t2 SET c='three thousand nine hundred forty-seven' WHERE a=185;\nUPDATE t2 SET c='ninety-six thousand one hundred thirty-one' WHERE a=186;\nUPDATE t2 SET c='thirty-two thousand eight hundred ninety-seven' WHERE a=187;\nUPDATE t2 SET c='nine thousand seven hundred one' WHERE a=188;\nUPDATE t2 SET c='six thousand four hundred ninety-five' WHERE a=189;\nUPDATE t2 SET c='fifty-two thousand two hundred thirteen' WHERE a=190;\nUPDATE t2 SET c='seventy-three thousand nine hundred ninety-three' WHERE a=191;\nUPDATE t2 SET c='thirty-eight thousand six hundred fifty-three' WHERE a=192;\nUPDATE t2 SET c='forty-seven thousand seven hundred eighty-seven' WHERE a=193;\nUPDATE t2 SET c='twenty-five thousand eight hundred seventy-two' WHERE a=194;\nUPDATE t2 SET c='seventy-five thousand three hundred ninety-four' WHERE a=195;\nUPDATE t2 SET c='eleven thousand seven hundred sixty' WHERE a=196;\nUPDATE t2 SET c='fifty-two thousand three hundred twelve' WHERE a=197;\nUPDATE t2 SET c='seven thousand seven hundred fifteen' WHERE a=198;\nUPDATE t2 SET c='ten thousand three hundred fifteen' WHERE a=199;\nUPDATE t2 SET c='twenty-six thousand four hundred forty-seven' WHERE a=200;\nUPDATE t2 SET c='eighty-seven thousand three hundred thirty-five' WHERE a=201;\nUPDATE t2 SET c='forty-one thousand eight hundred nine' WHERE a=202;\nUPDATE t2 SET c='twenty-three thousand one hundred thirty-five' WHERE a=203;\nUPDATE t2 SET c='fifty-five thousand three hundred ninety-six' WHERE a=204;\nUPDATE t2 SET c='eighty-five thousand one hundred seventeen' WHERE a=205;\nUPDATE t2 SET c='six thousand six hundred seventy-six' WHERE a=206;\nUPDATE t2 SET c='twenty-one thousand four hundred sixty-three' WHERE a=207;\nUPDATE t2 SET c='forty-eight thousand one hundred twenty-two' WHERE a=208;\nUPDATE t2 SET c='eighty-five thousand five hundred twenty-nine' WHERE a=209;\nUPDATE t2 SET c='seventy-two thousand six hundred thirty-six' WHERE a=210;\nUPDATE t2 SET c='forty-six thousand sixty-six' WHERE a=211;\nUPDATE t2 SET c='forty-five thousand one hundred ninety-eight' WHERE a=212;\nUPDATE t2 SET c='four thousand seven hundred fifty-three' WHERE a=213;\nUPDATE t2 SET c='sixty thousand one hundred one' WHERE a=214;\nUPDATE t2 SET c='six thousand nine hundred fifty-two' WHERE a=215;\nUPDATE t2 SET c='thirty-four thousand seven hundred twenty-six' WHERE a=216;\nUPDATE t2 SET c='twenty-eight thousand nine hundred four' WHERE a=217;\nUPDATE t2 SET c='six thousand one hundred sixty-seven' WHERE a=218;\nUPDATE t2 SET c='fifty-seven thousand four hundred ninety-six' WHERE a=219;\nUPDATE t2 SET c='fifty thousand eighty-four' WHERE a=220;\nUPDATE t2 SET c='eighty-four thousand nine hundred thirty-six' WHERE a=221;\nUPDATE t2 SET c='eighty-six thousand eight hundred sixteen' WHERE a=222;\nUPDATE t2 SET c='seventy thousand three hundred thirty-eight' WHERE a=223;\nUPDATE t2 SET c='ninety-nine thousand three hundred fifty-three' WHERE a=224;\nUPDATE t2 SET c='seventy thousand ninety-three' WHERE a=225;\nUPDATE t2 SET c='twenty-four thousand eight hundred sixty-two' WHERE a=226;\nUPDATE t2 SET c='fifty thousand five hundred eighty-four' WHERE a=227;\nUPDATE t2 SET c='thirty-five thousand five hundred sixty-six' WHERE a=228;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-five' WHERE a=229;\nUPDATE t2 SET c='seventy-three thousand three hundred two' WHERE a=230;\nUPDATE t2 SET c='thirteen thousand four' WHERE a=231;\nUPDATE t2 SET c='thirty thousand nine hundred eight' WHERE a=232;\nUPDATE t2 SET c='ten thousand six hundred fifty-two' WHERE a=233;\nUPDATE t2 SET c='thirty-seven thousand forty-three' WHERE a=234;\nUPDATE t2 SET c='seventy thousand five hundred eighty-two' WHERE a=235;\nUPDATE t2 SET c='five thousand three hundred seventy-four' WHERE a=236;\nUPDATE t2 SET c='thirty-eight thousand eight hundred forty-five' WHERE a=237;\nUPDATE t2 SET c='eighty-nine thousand eight hundred seventy-eight' WHERE a=238;\nUPDATE t2 SET c='forty-four thousand one hundred sixty-four' WHERE a=239;\nUPDATE t2 SET c='forty-nine thousand one hundred twenty-six' WHERE a=240;\nUPDATE t2 SET c='eighty-one thousand one hundred three' WHERE a=241;\nUPDATE t2 SET c='eighteen thousand three hundred nine' WHERE a=242;\nUPDATE t2 SET c='four thousand one hundred' WHERE a=243;\nUPDATE t2 SET c='twenty-eight thousand eight hundred twenty-six' WHERE a=244;\nUPDATE t2 SET c='twenty-eight thousand seventy-seven' WHERE a=245;\nUPDATE t2 SET c='thirty-three thousand ninety-five' WHERE a=246;\nUPDATE t2 SET c='seventy-eight thousand six hundred thirty-five' WHERE a=247;\nUPDATE t2 SET c='fifty-eight thousand four hundred thirty-four' WHERE a=248;\nUPDATE t2 SET c='nine thousand one hundred sixty-two' WHERE a=249;\nUPDATE t2 SET c='fifty-seven thousand seven hundred fifty-six' WHERE a=250;\nUPDATE t2 SET c='thirty-four thousand nine' WHERE a=251;\nUPDATE t2 SET c='sixty-one thousand four hundred fifty-four' WHERE a=252;\nUPDATE t2 SET c='thirty-six thousand seven hundred sixty-five' WHERE a=253;\nUPDATE t2 SET c='seventy-one thousand three hundred ninety-three' WHERE a=254;\nUPDATE t2 SET c='forty-nine thousand sixty-nine' WHERE a=255;\nUPDATE t2 SET c='forty-two thousand one hundred forty-six' WHERE a=256;\nUPDATE t2 SET c='thirty-nine thousand three hundred thirty-six' WHERE a=257;\nUPDATE t2 SET c='five thousand three hundred twenty-one' WHERE a=258;\nUPDATE t2 SET c='fifteen thousand seventy-four' WHERE a=259;\nUPDATE t2 SET c='twenty-eight thousand five hundred ten' WHERE a=260;\nUPDATE t2 SET c='ninety-four thousand seven hundred eighty-five' WHERE a=261;\nUPDATE t2 SET c='eighty-one thousand two hundred sixteen' WHERE a=262;\nUPDATE t2 SET c='sixty-three thousand four hundred thirty-four' WHERE a=263;\nUPDATE t2 SET c='twenty-four thousand nine hundred twenty-eight' WHERE a=264;\nUPDATE t2 SET c='eleven thousand one hundred seventy-eight' WHERE a=265;\nUPDATE t2 SET c='seventy-nine thousand one hundred eighteen' WHERE a=266;\nUPDATE t2 SET c='ninety-two thousand one hundred ninety-six' WHERE a=267;\nUPDATE t2 SET c='seven thousand four hundred ninety-two' WHERE a=268;\nUPDATE t2 SET c='eighty-one thousand three hundred three' WHERE a=269;\nUPDATE t2 SET c='eighty-six thousand nine hundred thirteen' WHERE a=270;\nUPDATE t2 SET c='sixty-nine thousand sixty-one' WHERE a=271;\nUPDATE t2 SET c='fifty-four thousand six hundred twenty' WHERE a=272;\nUPDATE t2 SET c='six thousand two hundred thirty-six' WHERE a=273;\nUPDATE t2 SET c='fifty-six thousand six hundred forty-four' WHERE a=274;\nUPDATE t2 SET c='thirty thousand six hundred eight' WHERE a=275;\nUPDATE t2 SET c='fifty-two thousand seven hundred twenty-eight' WHERE a=276;\nUPDATE t2 SET c='fourteen thousand five hundred seventy-two' WHERE a=277;\nUPDATE t2 SET c='ninety thousand two hundred seventy-four' WHERE a=278;\nUPDATE t2 SET c='seventy-seven thousand one hundred ninety-four' WHERE a=279;\nUPDATE t2 SET c='nine thousand one hundred thirty-two' WHERE a=280;\nUPDATE t2 SET c='thirty-two thousand nine hundred four' WHERE a=281;\nUPDATE t2 SET c='fourteen thousand seven hundred twenty-nine' WHERE a=282;\nUPDATE t2 SET c='fifty-seven thousand sixty-eight' WHERE a=283;\nUPDATE t2 SET c='forty-seven thousand two hundred nine' WHERE a=284;\nUPDATE t2 SET c='sixty-four thousand eight hundred fifty-eight' WHERE a=285;\nUPDATE t2 SET c='eighty-two thousand six hundred sixty-two' WHERE a=286;\nUPDATE t2 SET c='sixty-three thousand eight hundred eighty-four' WHERE a=287;\nUPDATE t2 SET c='twelve thousand seven hundred forty-seven' WHERE a=288;\nUPDATE t2 SET c='eighty-nine thousand nine hundred forty-nine' WHERE a=289;\nUPDATE t2 SET c='forty-nine thousand five hundred sixty-six' WHERE a=290;\nUPDATE t2 SET c='seventy-nine thousand four hundred sixty-five' WHERE a=291;\nUPDATE t2 SET c='thirty-three thousand six hundred ninety-seven' WHERE a=292;\nUPDATE t2 SET c='fifty-nine thousand one hundred forty-two' WHERE a=293;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-three' WHERE a=294;\nUPDATE t2 SET c='sixty thousand six hundred four' WHERE a=295;\nUPDATE t2 SET c='sixty-five thousand six hundred ninety-nine' WHERE a=296;\nUPDATE t2 SET c='fifty-five thousand four hundred forty-two' WHERE a=297;\nUPDATE t2 SET c='ten thousand nine hundred twenty-four' WHERE a=298;\nUPDATE t2 SET c='eighty-eight thousand forty-two' WHERE a=299;\nUPDATE t2 SET c='ten thousand nine hundred thirty-seven' WHERE a=300;\nUPDATE t2 SET c='twelve thousand nine hundred seventy-nine' WHERE a=301;\nUPDATE t2 SET c='forty-six thousand nine hundred eighty' WHERE a=302;\nUPDATE t2 SET c='twenty-eight thousand five hundred fifty-eight' WHERE a=303;\nUPDATE t2 SET c='ninety-four thousand fourteen' WHERE a=304;\nUPDATE t2 SET c='eight thousand four hundred forty' WHERE a=305;\nUPDATE t2 SET c='thirteen thousand five hundred thirty-five' WHERE a=306;\nUPDATE t2 SET c='seventy-five thousand three hundred sixty-nine' WHERE a=307;\nUPDATE t2 SET c='sixty-eight thousand four hundred twenty-eight' WHERE a=308;\nUPDATE t2 SET c='seventy thousand seven hundred eighty-eight' WHERE a=309;\nUPDATE t2 SET c='eleven thousand three hundred fifty' WHERE a=310;\nUPDATE t2 SET c='forty-eight thousand one hundred five' WHERE a=311;\nUPDATE t2 SET c='forty-eight thousand three hundred sixty-eight' WHERE a=312;\nUPDATE t2 SET c='forty-seven thousand eight hundred twenty' WHERE a=313;\nUPDATE t2 SET c='seventy-three thousand eight hundred forty-three' WHERE a=314;\nUPDATE t2 SET c='seventy-four thousand three hundred thirty-two' WHERE a=315;\nUPDATE t2 SET c='thirty-two thousand two hundred seventeen' WHERE a=316;\nUPDATE t2 SET c='thirty-five thousand nine hundred fifty-six' WHERE a=317;\nUPDATE t2 SET c='fifty-two thousand four hundred twenty' WHERE a=318;\nUPDATE t2 SET c='eighty-eight thousand one hundred sixty-nine' WHERE a=319;\nUPDATE t2 SET c='eighty-five thousand seven hundred ten' WHERE a=320;\nUPDATE t2 SET c='six thousand fifty-one' WHERE a=321;\nUPDATE t2 SET c='fifty-five thousand one hundred sixty-five' WHERE a=322;\nUPDATE t2 SET c='seventy-nine thousand five hundred fifty-six' WHERE a=323;\nUPDATE t2 SET c='four thousand one hundred forty-nine' WHERE a=324;\nUPDATE t2 SET c='eighty-six thousand seven hundred ninety-five' WHERE a=325;\nUPDATE t2 SET c='thirty thousand two hundred forty-four' WHERE a=326;\nUPDATE t2 SET c='eighty-one thousand seven hundred ninety-six' WHERE a=327;\nUPDATE t2 SET c='fifty-seven thousand six hundred fifteen' WHERE a=328;\nUPDATE t2 SET c='ninety-four thousand sixty-one' WHERE a=329;\nUPDATE t2 SET c='sixty-two thousand six hundred forty-nine' WHERE a=330;\nUPDATE t2 SET c='sixty-three thousand two hundred ten' WHERE a=331;\nUPDATE t2 SET c='eight thousand thirty-nine' WHERE a=332;\nUPDATE t2 SET c='seventeen thousand six hundred forty' WHERE a=333;\nUPDATE t2 SET c='forty-seven thousand nine hundred eighty-six' WHERE a=334;\nUPDATE t2 SET c='forty-four thousand five hundred ninety-four' WHERE a=335;\nUPDATE t2 SET c='sixty-one thousand eight hundred ninety-seven' WHERE a=336;\nUPDATE t2 SET c='forty-five thousand seventy-six' WHERE a=337;\nUPDATE t2 SET c='ten thousand five hundred sixty-six' WHERE a=338;\nUPDATE t2 SET c='thirty-two thousand three hundred forty-seven' WHERE a=339;\nUPDATE t2 SET c='seventy-six thousand one hundred seventy' WHERE a=340;\nUPDATE t2 SET c='seventy-four thousand six hundred fifty-seven' WHERE a=341;\nUPDATE t2 SET c='one thousand four hundred thirty-six' WHERE a=342;\nUPDATE t2 SET c='twelve thousand four hundred twenty-five' WHERE a=343;\nUPDATE t2 SET c='sixty-two thousand three hundred seventy-nine' WHERE a=344;\nUPDATE t2 SET c='seventy-one thousand three hundred sixty-three' WHERE a=345;\nUPDATE t2 SET c='thirty-four thousand six hundred seventy-two' WHERE a=346;\nUPDATE t2 SET c='two thousand three hundred eighty-eight' WHERE a=347;\nUPDATE t2 SET c='eighty-seven thousand four hundred sixty-nine' WHERE a=348;\nUPDATE t2 SET c='sixty-eight thousand eight hundred seventy-four' WHERE a=349;\nUPDATE t2 SET c='forty-six thousand nine hundred ninety-one' WHERE a=350;\nUPDATE t2 SET c='fifty-seven thousand seven hundred sixty-six' WHERE a=351;\nUPDATE t2 SET c='twenty-seven thousand six hundred twenty-two' WHERE a=352;\nUPDATE t2 SET c='seventy-seven thousand five hundred fifty-one' WHERE a=353;\nUPDATE t2 SET c='forty-two thousand five hundred sixty-one' WHERE a=354;\nUPDATE t2 SET c='twenty-seven thousand five hundred twenty-five' WHERE a=355;\nUPDATE t2 SET c='fifty thousand thirty-three' WHERE a=356;\nUPDATE t2 SET c='fifteen thousand six hundred ninety-one' WHERE a=357;\nUPDATE t2 SET c='ninety-nine thousand nine hundred thirteen' WHERE a=358;\nUPDATE t2 SET c='seventeen thousand nine hundred seventy-five' WHERE a=359;\nUPDATE t2 SET c='thirty-nine thousand three hundred seventy' WHERE a=360;\nUPDATE t2 SET c='eighty thousand five hundred two' WHERE a=361;\nUPDATE t2 SET c='thirty-seven thousand one hundred nineteen' WHERE a=362;\nUPDATE t2 SET c='one thousand five hundred sixty-seven' WHERE a=363;\nUPDATE t2 SET c='seventy-five thousand two hundred twenty-four' WHERE a=364;\nUPDATE t2 SET c='eighty-four thousand one hundred twenty-nine' WHERE a=365;\nUPDATE t2 SET c='sixty-three thousand eight hundred fifty-four' WHERE a=366;\nUPDATE t2 SET c='twenty-six thousand seven hundred thirty-three' WHERE a=367;\nUPDATE t2 SET c='ninety-five thousand two hundred sixty' WHERE a=368;\nUPDATE t2 SET c='ninety-two thousand one hundred ninety-five' WHERE a=369;\nUPDATE t2 SET c='five thousand eighty-eight' WHERE a=370;\nUPDATE t2 SET c='ninety thousand seventy' WHERE a=371;\nUPDATE t2 SET c='seventy-nine thousand eighty-four' WHERE a=372;\nUPDATE t2 SET c='forty-one thousand two hundred ten' WHERE a=373;\nUPDATE t2 SET c='ninety-one thousand eight hundred fifteen' WHERE a=374;\nUPDATE t2 SET c='seventy-seven thousand three hundred thirty-four' WHERE a=375;\nUPDATE t2 SET c='ninety-one thousand ninety-nine' WHERE a=376;\nUPDATE t2 SET c='ninety-five thousand nine hundred seventy-six' WHERE a=377;\nUPDATE t2 SET c='thirty-six thousand four hundred sixty-nine' WHERE a=378;\nUPDATE t2 SET c='sixty-three thousand seven hundred fifteen' WHERE a=379;\nUPDATE t2 SET c='seventeen thousand thirty-six' WHERE a=380;\nUPDATE t2 SET c='forty-six thousand six hundred ninety-five' WHERE a=381;\nUPDATE t2 SET c='thirty-eight thousand five hundred forty-eight' WHERE a=382;\nUPDATE t2 SET c='sixty-four thousand two hundred forty-one' WHERE a=383;\nUPDATE t2 SET c='three thousand three hundred thirty-three' WHERE a=384;\nUPDATE t2 SET c='sixty-nine thousand five hundred nineteen' WHERE a=385;\nUPDATE t2 SET c='two thousand one hundred ninety-five' WHERE a=386;\nUPDATE t2 SET c='ninety-eight thousand four hundred forty-four' WHERE a=387;\nUPDATE t2 SET c='eighty-nine thousand five hundred sixty-six' WHERE a=388;\nUPDATE t2 SET c='fifty-one thousand four hundred six' WHERE a=389;\nUPDATE t2 SET c='thirty-eight thousand eight hundred eighty' WHERE a=390;\nUPDATE t2 SET c='ninety-five thousand nine hundred sixty-one' WHERE a=391;\nUPDATE t2 SET c='seven thousand six hundred sixty-eight' WHERE a=392;\nUPDATE t2 SET c='forty-seven thousand fifty-four' WHERE a=393;\nUPDATE t2 SET c='seventy-seven thousand eighty-three' WHERE a=394;\nUPDATE t2 SET c='eighty-three thousand one hundred thirty-five' WHERE a=395;\nUPDATE t2 SET c='sixty thousand six hundred fourteen' WHERE a=396;\nUPDATE t2 SET c='eleven thousand one hundred seventy' WHERE a=397;\nUPDATE t2 SET c='eighty thousand one hundred fifty' WHERE a=398;\nUPDATE t2 SET c='forty-nine thousand eight hundred twenty-eight' WHERE a=399;\nUPDATE t2 SET c='twenty-eight thousand five hundred ninety-seven' WHERE a=400;\nUPDATE t2 SET c='fifty-five thousand two hundred ninety-eight' WHERE a=401;\nUPDATE t2 SET c='eighteen thousand three hundred' WHERE a=402;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty-five' WHERE a=403;\nUPDATE t2 SET c='forty-nine thousand three hundred nineteen' WHERE a=404;\nUPDATE t2 SET c='eighteen thousand one hundred four' WHERE a=405;\nUPDATE t2 SET c='fifty-seven thousand nine hundred seventy-seven' WHERE a=406;\nUPDATE t2 SET c='fifty thousand seven hundred eleven' WHERE a=407;\nUPDATE t2 SET c='six thousand sixty-five' WHERE a=408;\nUPDATE t2 SET c='ninety-four thousand seven hundred eighty-two' WHERE a=409;\nUPDATE t2 SET c='sixty-eight thousand one hundred forty-four' WHERE a=410;\nUPDATE t2 SET c='eighty-two thousand nine hundred forty-two' WHERE a=411;\nUPDATE t2 SET c='five thousand eight hundred seventy-three' WHERE a=412;\nUPDATE t2 SET c='fifty-three thousand two hundred sixty-four' WHERE a=413;\nUPDATE t2 SET c='twelve thousand five hundred eighty-seven' WHERE a=414;\nUPDATE t2 SET c='eighty-one thousand two hundred fifty-eight' WHERE a=415;\nUPDATE t2 SET c='three thousand five hundred ninety-two' WHERE a=416;\nUPDATE t2 SET c='thirty-one thousand three hundred ninety-three' WHERE a=417;\nUPDATE t2 SET c='thirty-five thousand seven hundred forty-two' WHERE a=418;\nUPDATE t2 SET c='sixty thousand two hundred eighteen' WHERE a=419;\nUPDATE t2 SET c='seventy-seven thousand seven hundred eighty-eight' WHERE a=420;\nUPDATE t2 SET c='sixty-one thousand one hundred eight' WHERE a=421;\nUPDATE t2 SET c='forty-two thousand seven hundred forty-two' WHERE a=422;\nUPDATE t2 SET c='ninety-five thousand eight hundred three' WHERE a=423;\nUPDATE t2 SET c='thirty-eight thousand six hundred seventy-seven' WHERE a=424;\nUPDATE t2 SET c='ninety thousand eight hundred twenty-five' WHERE a=425;\nUPDATE t2 SET c='forty-three thousand forty-eight' WHERE a=426;\nUPDATE t2 SET c='eighty-four thousand seven hundred fifty-four' WHERE a=427;\nUPDATE t2 SET c='ninety-one thousand nine hundred four' WHERE a=428;\nUPDATE t2 SET c='fifty-two thousand seven hundred twenty-nine' WHERE a=429;\nUPDATE t2 SET c='ninety thousand four hundred seventy-two' WHERE a=430;\nUPDATE t2 SET c='sixty thousand one hundred seventy-seven' WHERE a=431;\nUPDATE t2 SET c='seventy-two thousand eight hundred three' WHERE a=432;\nUPDATE t2 SET c='seventy thousand four hundred seventeen' WHERE a=433;\nUPDATE t2 SET c='eighty-five thousand two hundred seven' WHERE a=434;\nUPDATE t2 SET c='sixty thousand six hundred thirty-three' WHERE a=435;\nUPDATE t2 SET c='seventy-three thousand six hundred fifty-five' WHERE a=436;\nUPDATE t2 SET c='twelve thousand four hundred fifty-five' WHERE a=437;\nUPDATE t2 SET c='sixty-seven thousand two hundred eighty-two' WHERE a=438;\nUPDATE t2 SET c='thirty-two thousand eight hundred seventy-four' WHERE a=439;\nUPDATE t2 SET c='sixteen thousand ninety-four' WHERE a=440;\nUPDATE t2 SET c='fifty-six thousand nine hundred eighty-eight' WHERE a=441;\nUPDATE t2 SET c='sixty-nine thousand twenty-five' WHERE a=442;\nUPDATE t2 SET c='fifty-two thousand three hundred eighteen' WHERE a=443;\nUPDATE t2 SET c='fifty-six thousand six hundred eighty-two' WHERE a=444;\nUPDATE t2 SET c='nine thousand six hundred thirty-two' WHERE a=445;\nUPDATE t2 SET c='seventy thousand eight hundred eighty-nine' WHERE a=446;\nUPDATE t2 SET c='sixty-five thousand nine hundred sixty' WHERE a=447;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty' WHERE a=448;\nUPDATE t2 SET c='seventy-four thousand nine hundred forty' WHERE a=449;\nUPDATE t2 SET c='eighty-eight thousand two hundred forty-five' WHERE a=450;\nUPDATE t2 SET c='eighty-two thousand three hundred ninety-two' WHERE a=451;\nUPDATE t2 SET c='sixty-eight thousand seventy-seven' WHERE a=452;\nUPDATE t2 SET c='sixty-six thousand two hundred twenty' WHERE a=453;\nUPDATE t2 SET c='eleven thousand two hundred eight' WHERE a=454;\nUPDATE t2 SET c='ninety-eight thousand five hundred fifty-two' WHERE a=455;\nUPDATE t2 SET c='seventy-five thousand seven hundred thirty-three' WHERE a=456;\nUPDATE t2 SET c='thirty-seven thousand seven' WHERE a=457;\nUPDATE t2 SET c='one thousand five hundred sixty-two' WHERE a=458;\nUPDATE t2 SET c='twenty-five thousand two hundred sixty-one' WHERE a=459;\nUPDATE t2 SET c='twenty thousand seven hundred eighty-two' WHERE a=460;\nUPDATE t2 SET c='seven thousand six hundred eighty-six' WHERE a=461;\nUPDATE t2 SET c='forty-two thousand five hundred thirty-seven' WHERE a=462;\nUPDATE t2 SET c='sixty-seven thousand eight hundred thirty-four' WHERE a=463;\nUPDATE t2 SET c='thirty' WHERE a=464;\nUPDATE t2 SET c='seventy-five thousand six hundred fifty-three' WHERE a=465;\nUPDATE t2 SET c='eighty-five thousand one hundred fifty-two' WHERE a=466;\nUPDATE t2 SET c='ten thousand three hundred fifty-two' WHERE a=467;\nUPDATE t2 SET c='eighty-five thousand eight hundred forty-three' WHERE a=468;\nUPDATE t2 SET c='thirty-three thousand three hundred seven' WHERE a=469;\nUPDATE t2 SET c='one thousand three hundred thirty-nine' WHERE a=470;\nUPDATE t2 SET c='sixty-three thousand eight hundred seventy-nine' WHERE a=471;\nUPDATE t2 SET c='nineteen thousand six hundred fifty-one' WHERE a=472;\nUPDATE t2 SET c='seventy-nine thousand six hundred ninety-five' WHERE a=473;\nUPDATE t2 SET c='sixty-one thousand two hundred fourteen' WHERE a=474;\nUPDATE t2 SET c='twenty-three thousand two hundred twenty-two' WHERE a=475;\nUPDATE t2 SET c='seventeen thousand four hundred eighty-two' WHERE a=476;\nUPDATE t2 SET c='twenty-six thousand five hundred fifty-four' WHERE a=477;\nUPDATE t2 SET c='eighty-nine thousand six hundred eighty-six' WHERE a=478;\nUPDATE t2 SET c='sixty-nine thousand nine hundred two' WHERE a=479;\nUPDATE t2 SET c='twelve thousand three hundred eighty-four' WHERE a=480;\nUPDATE t2 SET c='thirty-two thousand five hundred seventy-one' WHERE a=481;\nUPDATE t2 SET c='sixty-five thousand four hundred eleven' WHERE a=482;\nUPDATE t2 SET c='sixty-four thousand two hundred five' WHERE a=483;\nUPDATE t2 SET c='fifty-nine thousand seven hundred fourteen' WHERE a=484;\nUPDATE t2 SET c='seventy-six thousand seven hundred nineteen' WHERE a=485;\nUPDATE t2 SET c='seventy-six thousand five hundred thirteen' WHERE a=486;\nUPDATE t2 SET c='fifty-nine thousand eight hundred five' WHERE a=487;\nUPDATE t2 SET c='seventy thousand nine hundred thirty-eight' WHERE a=488;\nUPDATE t2 SET c='two thousand seven hundred ninety-one' WHERE a=489;\nUPDATE t2 SET c='three thousand four hundred fifty-two' WHERE a=490;\nUPDATE t2 SET c='sixty-eight thousand five hundred thirty-eight' WHERE a=491;\nUPDATE t2 SET c='seven thousand seven hundred eighty-five' WHERE a=492;\nUPDATE t2 SET c='thirty-three thousand five hundred thirty-four' WHERE a=493;\nUPDATE t2 SET c='twenty thousand three hundred twenty-five' WHERE a=494;\nUPDATE t2 SET c='seventy thousand two hundred fifteen' WHERE a=495;\nUPDATE t2 SET c='ninety-five thousand three hundred fifteen' WHERE a=496;\nUPDATE t2 SET c='twenty-six thousand four hundred thirteen' WHERE a=497;\nUPDATE t2 SET c='thirty-four thousand two hundred seventy-two' WHERE a=498;\nUPDATE t2 SET c='ninety-two thousand eight hundred fifteen' WHERE a=499;\nUPDATE t2 SET c='sixty-six thousand seven hundred eighty-one' WHERE a=500;\nUPDATE t2 SET c='eighty-three thousand three hundred eighty-three' WHERE a=501;\nUPDATE t2 SET c='eighty-nine thousand sixty-eight' WHERE a=502;\nUPDATE t2 SET c='eighty-eight thousand three hundred eighty-five' WHERE a=503;\nUPDATE t2 SET c='seventy-five thousand three hundred sixty-four' WHERE a=504;\nUPDATE t2 SET c='five thousand eight hundred seventy' WHERE a=505;\nUPDATE t2 SET c='eighty-one thousand five hundred ninety-four' WHERE a=506;\nUPDATE t2 SET c='twenty-nine thousand one hundred eighty-five' WHERE a=507;\nUPDATE t2 SET c='ninety-seven thousand one hundred seventeen' WHERE a=508;\nUPDATE t2 SET c='sixty-six thousand three hundred forty-two' WHERE a=509;\nUPDATE t2 SET c='forty-six thousand four hundred twenty' WHERE a=510;\nUPDATE t2 SET c='thirty-nine thousand eight hundred thirty-six' WHERE a=511;\nUPDATE t2 SET c='fifty-three thousand seven hundred twenty-eight' WHERE a=512;\nUPDATE t2 SET c='five thousand six hundred forty-one' WHERE a=513;\nUPDATE t2 SET c='forty-seven thousand two hundred twenty-four' WHERE a=514;\nUPDATE t2 SET c='twenty-one thousand eight hundred seventy-four' WHERE a=515;\nUPDATE t2 SET c='sixty-two thousand one hundred forty-eight' WHERE a=516;\nUPDATE t2 SET c='thirty-four thousand nine hundred eighteen' WHERE a=517;\nUPDATE t2 SET c='twenty-one thousand six hundred fifty-one' WHERE a=518;\nUPDATE t2 SET c='eighty-five thousand five hundred seventy-three' WHERE a=519;\nUPDATE t2 SET c='ninety-four thousand seven hundred sixty-two' WHERE a=520;\nUPDATE t2 SET c='twenty-one thousand two hundred seventy-eight' WHERE a=521;\nUPDATE t2 SET c='eighty-five thousand eight hundred ninety-two' WHERE a=522;\nUPDATE t2 SET c='twenty-seven thousand six hundred seventy-seven' WHERE a=523;\nUPDATE t2 SET c='forty-one thousand seven hundred six' WHERE a=524;\nUPDATE t2 SET c='forty-two thousand nine hundred thirty-two' WHERE a=525;\nUPDATE t2 SET c='six thousand one hundred thirty-one' WHERE a=526;\nUPDATE t2 SET c='thirty-two thousand ninety-three' WHERE a=527;\nUPDATE t2 SET c='seventy-two thousand sixty-nine' WHERE a=528;\nUPDATE t2 SET c='sixty-five thousand five hundred seventy-three' WHERE a=529;\nUPDATE t2 SET c='ten thousand three hundred fifty-five' WHERE a=530;\nUPDATE t2 SET c='eighty-four thousand five hundred eighty' WHERE a=531;\nUPDATE t2 SET c='sixty-four thousand forty' WHERE a=532;\nUPDATE t2 SET c='thirty-four thousand four hundred nineteen' WHERE a=533;\nUPDATE t2 SET c='eighty-three thousand two hundred ninety-two' WHERE a=534;\nUPDATE t2 SET c='fifty-six thousand six hundred thirty-nine' WHERE a=535;\nUPDATE t2 SET c='sixty-nine thousand eight hundred sixty-one' WHERE a=536;\nUPDATE t2 SET c='six thousand five hundred eighty-nine' WHERE a=537;\nUPDATE t2 SET c='twenty-three thousand five hundred eighty-seven' WHERE a=538;\nUPDATE t2 SET c='sixty-two thousand eight hundred thirty-four' WHERE a=539;\nUPDATE t2 SET c='thirteen thousand seven hundred forty-three' WHERE a=540;\nUPDATE t2 SET c='fifty thousand two hundred eighty-four' WHERE a=541;\nUPDATE t2 SET c='seventy-three thousand five hundred five' WHERE a=542;\nUPDATE t2 SET c='forty-five thousand seven hundred forty' WHERE a=543;\nUPDATE t2 SET c='forty thousand two hundred ninety-one' WHERE a=544;\nUPDATE t2 SET c='fifty-five thousand three hundred fifteen' WHERE a=545;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-six' WHERE a=546;\nUPDATE t2 SET c='eighteen thousand two hundred six' WHERE a=547;\nUPDATE t2 SET c='nine thousand six hundred twenty-one' WHERE a=548;\nUPDATE t2 SET c='thirteen thousand five hundred seventy-four' WHERE a=549;\nUPDATE t2 SET c='fifteen thousand four hundred eighty-eight' WHERE a=550;\nUPDATE t2 SET c='twenty-three thousand six hundred fifty-two' WHERE a=551;\nUPDATE t2 SET c='five thousand one hundred seventy-eight' WHERE a=552;\nUPDATE t2 SET c='forty thousand one hundred thirty-five' WHERE a=553;\nUPDATE t2 SET c='eighty-five thousand two hundred seventy-nine' WHERE a=554;\nUPDATE t2 SET c='forty-eight thousand forty-four' WHERE a=555;\nUPDATE t2 SET c='eighty-five thousand one hundred sixteen' WHERE a=556;\nUPDATE t2 SET c='one thousand five hundred thirty-four' WHERE a=557;\nUPDATE t2 SET c='sixty-five thousand three hundred seventeen' WHERE a=558;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-one' WHERE a=559;\nUPDATE t2 SET c='thirty-three thousand nine hundred eighty-four' WHERE a=560;\nUPDATE t2 SET c='thirty-six thousand three hundred four' WHERE a=561;\nUPDATE t2 SET c='sixty-four thousand three hundred forty-five' WHERE a=562;\nUPDATE t2 SET c='twenty-seven thousand eight hundred forty-eight' WHERE a=563;\nUPDATE t2 SET c='forty-nine thousand seven hundred ninety-seven' WHERE a=564;\nUPDATE t2 SET c='fifty-five thousand six hundred fifty-five' WHERE a=565;\nUPDATE t2 SET c='sixty-four thousand five hundred two' WHERE a=566;\nUPDATE t2 SET c='twenty-eight thousand seven hundred eighty-nine' WHERE a=567;\nUPDATE t2 SET c='eighty-five thousand four hundred forty-six' WHERE a=568;\nUPDATE t2 SET c='eighty-nine thousand eight hundred forty-three' WHERE a=569;\nUPDATE t2 SET c='eighty thousand one hundred eighty-seven' WHERE a=570;\nUPDATE t2 SET c='eighty-four thousand five hundred thirty-eight' WHERE a=571;\nUPDATE t2 SET c='fifty-eight thousand eight hundred seventy-one' WHERE a=572;\nUPDATE t2 SET c='seventy-eight thousand one hundred seventy' WHERE a=573;\nUPDATE t2 SET c='seventy-one thousand one hundred fifty' WHERE a=574;\nUPDATE t2 SET c='eight thousand four hundred seventy-four' WHERE a=575;\nUPDATE t2 SET c='eighty-two thousand seven hundred seventy-nine' WHERE a=576;\nUPDATE t2 SET c='nine thousand one hundred ninety-seven' WHERE a=577;\nUPDATE t2 SET c='eighty-six thousand six hundred seventy-five' WHERE a=578;\nUPDATE t2 SET c='thirty-five thousand nine hundred eighty-three' WHERE a=579;\nUPDATE t2 SET c='fifteen thousand seven hundred seventy-two' WHERE a=580;\nUPDATE t2 SET c='seventy-five thousand three hundred twenty-six' WHERE a=581;\nUPDATE t2 SET c='eighty-four thousand two hundred eighty-one' WHERE a=582;\nUPDATE t2 SET c='thirty thousand one hundred five' WHERE a=583;\nUPDATE t2 SET c='thirty-six thousand seven hundred thirteen' WHERE a=584;\nUPDATE t2 SET c='sixty-seven thousand three hundred twenty-one' WHERE a=585;\nUPDATE t2 SET c='forty-three thousand seven hundred seventy-nine' WHERE a=586;\nUPDATE t2 SET c='sixty-nine thousand seven hundred twenty-five' WHERE a=587;\nUPDATE t2 SET c='four thousand one hundred forty' WHERE a=588;\nUPDATE t2 SET c='ninety thousand two hundred fifty' WHERE a=589;\nUPDATE t2 SET c='thirty-eight thousand four hundred ninety-three' WHERE a=590;\nUPDATE t2 SET c='seventy-six thousand three hundred seventy-seven' WHERE a=591;\nUPDATE t2 SET c='ninety-eight thousand nine hundred ninety-nine' WHERE a=592;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-nine' WHERE a=593;\nUPDATE t2 SET c='fifty-one thousand two hundred one' WHERE a=594;\nUPDATE t2 SET c='sixty-five thousand five hundred ninety-two' WHERE a=595;\nUPDATE t2 SET c='thirty-nine thousand four hundred forty' WHERE a=596;\nUPDATE t2 SET c='fifty-five thousand six hundred seventy-nine' WHERE a=597;\nUPDATE t2 SET c='seventy-three thousand one hundred ninety-seven' WHERE a=598;\nUPDATE t2 SET c='sixty-seven thousand two hundred nineteen' WHERE a=599;\nUPDATE t2 SET c='eighty-four thousand four hundred ninety-three' WHERE a=600;\nUPDATE t2 SET c='fifty-four thousand eight hundred twenty-three' WHERE a=601;\nUPDATE t2 SET c='nine thousand seven hundred five' WHERE a=602;\nUPDATE t2 SET c='fifty-eight thousand three hundred forty-one' WHERE a=603;\nUPDATE t2 SET c='thirty-eight thousand one hundred sixteen' WHERE a=604;\nUPDATE t2 SET c='twenty-nine thousand four hundred twenty-one' WHERE a=605;\nUPDATE t2 SET c='sixteen thousand three hundred twenty-five' WHERE a=606;\nUPDATE t2 SET c='seventy-four thousand ninety' WHERE a=607;\nUPDATE t2 SET c='eleven thousand nine hundred thirty-four' WHERE a=608;\nUPDATE t2 SET c='sixty-five thousand seven hundred ten' WHERE a=609;\nUPDATE t2 SET c='thirty-four thousand six hundred forty-three' WHERE a=610;\nUPDATE t2 SET c='thirteen thousand three hundred five' WHERE a=611;\nUPDATE t2 SET c='eleven thousand eight hundred three' WHERE a=612;\nUPDATE t2 SET c='seventy-seven thousand three hundred sixty-two' WHERE a=613;\nUPDATE t2 SET c='thirty-four thousand seven hundred five' WHERE a=614;\nUPDATE t2 SET c='forty-seven thousand two hundred seventy-eight' WHERE a=615;\nUPDATE t2 SET c='five thousand seven hundred fifty-one' WHERE a=616;\nUPDATE t2 SET c='ninety-three thousand six hundred ninety-nine' WHERE a=617;\nUPDATE t2 SET c='eleven thousand six hundred seven' WHERE a=618;\nUPDATE t2 SET c='four hundred ninety' WHERE a=619;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-one' WHERE a=620;\nUPDATE t2 SET c='twenty-seven thousand six hundred seventy-eight' WHERE a=621;\nUPDATE t2 SET c='seventy-five thousand five hundred twenty-seven' WHERE a=622;\nUPDATE t2 SET c='thirty-one thousand eight hundred ninety-nine' WHERE a=623;\nUPDATE t2 SET c='seventy-six thousand eighty-five' WHERE a=624;\nUPDATE t2 SET c='ninety-four thousand eight hundred sixty-four' WHERE a=625;\nUPDATE t2 SET c='eighty-eight thousand two hundred twenty-six' WHERE a=626;\nUPDATE t2 SET c='one thousand nine hundred thirty-five' WHERE a=627;\nUPDATE t2 SET c='sixteen thousand one hundred ninety-six' WHERE a=628;\nUPDATE t2 SET c='thirty-four thousand one hundred eighty' WHERE a=629;\nUPDATE t2 SET c='seven thousand one hundred forty' WHERE a=630;\nUPDATE t2 SET c='sixty-five thousand five hundred ninety-seven' WHERE a=631;\nUPDATE t2 SET c='eighty-one thousand one hundred eight' WHERE a=632;\nUPDATE t2 SET c='four thousand three hundred five' WHERE a=633;\nUPDATE t2 SET c='forty-one thousand three hundred seventy-nine' WHERE a=634;\nUPDATE t2 SET c='eighty-one thousand five hundred thirty-two' WHERE a=635;\nUPDATE t2 SET c='fifty thousand three hundred twelve' WHERE a=636;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty' WHERE a=637;\nUPDATE t2 SET c='eleven thousand nine hundred eleven' WHERE a=638;\nUPDATE t2 SET c='three thousand sixty-eight' WHERE a=639;\nUPDATE t2 SET c='eight thousand nine hundred seventy-six' WHERE a=640;\nUPDATE t2 SET c='forty-five thousand four hundred forty-eight' WHERE a=641;\nUPDATE t2 SET c='fifty-six thousand one hundred eight' WHERE a=642;\nUPDATE t2 SET c='sixty-one thousand eight hundred fifteen' WHERE a=643;\nUPDATE t2 SET c='forty thousand three hundred ninety-two' WHERE a=644;\nUPDATE t2 SET c='twenty-eight thousand three hundred eighty-eight' WHERE a=645;\nUPDATE t2 SET c='fifty-two thousand three hundred thirty' WHERE a=646;\nUPDATE t2 SET c='forty thousand eight hundred twenty-two' WHERE a=647;\nUPDATE t2 SET c='nine thousand four hundred forty-one' WHERE a=648;\nUPDATE t2 SET c='forty-one thousand five hundred three' WHERE a=649;\nUPDATE t2 SET c='nineteen thousand six hundred ninety-four' WHERE a=650;\nUPDATE t2 SET c='eighty-six thousand eight hundred sixty-seven' WHERE a=651;\nUPDATE t2 SET c='sixty-six thousand eight hundred five' WHERE a=652;\nUPDATE t2 SET c='thirty-five thousand two hundred eighty-five' WHERE a=653;\nUPDATE t2 SET c='seven thousand six hundred sixty-three' WHERE a=654;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty-two' WHERE a=655;\nUPDATE t2 SET c='forty-five thousand four hundred six' WHERE a=656;\nUPDATE t2 SET c='eighty-four thousand six hundred' WHERE a=657;\nUPDATE t2 SET c='ninety-eight thousand eight hundred thirteen' WHERE a=658;\nUPDATE t2 SET c='ninety-three thousand nine hundred thirty-nine' WHERE a=659;\nUPDATE t2 SET c='eighty-seven thousand nine hundred' WHERE a=660;\nUPDATE t2 SET c='seventy-three thousand twenty-nine' WHERE a=661;\nUPDATE t2 SET c='thirty-one thousand six hundred thirty-five' WHERE a=662;\nUPDATE t2 SET c='fifty-six thousand three hundred ninety-eight' WHERE a=663;\nUPDATE t2 SET c='sixty-two thousand seventy-one' WHERE a=664;\nUPDATE t2 SET c='fifteen thousand eight hundred eighty-five' WHERE a=665;\nUPDATE t2 SET c='forty-seven thousand five hundred twenty' WHERE a=666;\nUPDATE t2 SET c='seventy-two thousand three hundred eighty-six' WHERE a=667;\nUPDATE t2 SET c='fifty-one thousand two hundred fifty-seven' WHERE a=668;\nUPDATE t2 SET c='twelve thousand three hundred twenty-two' WHERE a=669;\nUPDATE t2 SET c='forty-three thousand three hundred eighty-three' WHERE a=670;\nUPDATE t2 SET c='forty-one thousand nine hundred ninety-one' WHERE a=671;\nUPDATE t2 SET c='sixty-three thousand eight hundred sixty-six' WHERE a=672;\nUPDATE t2 SET c='ninety-four thousand six hundred fifty-six' WHERE a=673;\nUPDATE t2 SET c='twenty thousand two hundred sixty-eight' WHERE a=674;\nUPDATE t2 SET c='forty-nine thousand one hundred forty-five' WHERE a=675;\nUPDATE t2 SET c='forty-nine thousand five hundred eighty-two' WHERE a=676;\nUPDATE t2 SET c='seventy-seven thousand seven hundred eighty-five' WHERE a=677;\nUPDATE t2 SET c='one thousand three hundred thirty-two' WHERE a=678;\nUPDATE t2 SET c='one thousand one hundred forty-six' WHERE a=679;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-six' WHERE a=680;\nUPDATE t2 SET c='thirty-one thousand five hundred sixty' WHERE a=681;\nUPDATE t2 SET c='twenty-one thousand seven hundred seventy-five' WHERE a=682;\nUPDATE t2 SET c='forty-one thousand nine hundred sixty' WHERE a=683;\nUPDATE t2 SET c='sixty thousand seven hundred fifty' WHERE a=684;\nUPDATE t2 SET c='twenty-nine thousand three hundred ninety-eight' WHERE a=685;\nUPDATE t2 SET c='sixteen thousand one hundred fifty-eight' WHERE a=686;\nUPDATE t2 SET c='thirty thousand seven hundred ninety-three' WHERE a=687;\nUPDATE t2 SET c='sixty-four thousand four hundred six' WHERE a=688;\nUPDATE t2 SET c='forty-seven thousand four hundred thirty' WHERE a=689;\nUPDATE t2 SET c='thirty-eight thousand four hundred twenty' WHERE a=690;\nUPDATE t2 SET c='seven thousand three hundred eighty-three' WHERE a=691;\nUPDATE t2 SET c='sixty-nine thousand four hundred eighty-five' WHERE a=692;\nUPDATE t2 SET c='thirty-five thousand one hundred thirty-eight' WHERE a=693;\nUPDATE t2 SET c='seventy-seven thousand five' WHERE a=694;\nUPDATE t2 SET c='thirty-nine thousand six hundred sixty-seven' WHERE a=695;\nUPDATE t2 SET c='eighteen thousand seventy-nine' WHERE a=696;\nUPDATE t2 SET c='six thousand five hundred thirty' WHERE a=697;\nUPDATE t2 SET c='sixty-four thousand nine hundred eighty' WHERE a=698;\nUPDATE t2 SET c='thirty-eight thousand twelve' WHERE a=699;\nUPDATE t2 SET c='eighty-nine thousand seven hundred ninety-six' WHERE a=700;\nUPDATE t2 SET c='sixty-nine thousand three hundred thirty-two' WHERE a=701;\nUPDATE t2 SET c='sixty-six thousand forty-three' WHERE a=702;\nUPDATE t2 SET c='twenty-seven thousand eight hundred sixty' WHERE a=703;\nUPDATE t2 SET c='seventy-five thousand four hundred twelve' WHERE a=704;\nUPDATE t2 SET c='seventy-six thousand one hundred' WHERE a=705;\nUPDATE t2 SET c='forty-three thousand eight hundred nine' WHERE a=706;\nUPDATE t2 SET c='eighty thousand nine hundred forty-seven' WHERE a=707;\nUPDATE t2 SET c='twenty-one thousand five hundred ninety-five' WHERE a=708;\nUPDATE t2 SET c='sixty-eight thousand fifty' WHERE a=709;\nUPDATE t2 SET c='three thousand four hundred eight' WHERE a=710;\nUPDATE t2 SET c='eighty-nine thousand three hundred eighty' WHERE a=711;\nUPDATE t2 SET c='three thousand eight hundred four' WHERE a=712;\nUPDATE t2 SET c='one thousand one hundred twenty' WHERE a=713;\nUPDATE t2 SET c='thirty-two thousand seven hundred nine' WHERE a=714;\nUPDATE t2 SET c='four thousand nine hundred sixty-nine' WHERE a=715;\nUPDATE t2 SET c='ninety-three thousand four hundred ninety-six' WHERE a=716;\nUPDATE t2 SET c='fifty-one thousand five hundred twenty-four' WHERE a=717;\nUPDATE t2 SET c='four thousand nine hundred sixty-seven' WHERE a=718;\nUPDATE t2 SET c='twenty thousand three hundred twelve' WHERE a=719;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ninety' WHERE a=720;\nUPDATE t2 SET c='eighty-four thousand four hundred eighty-three' WHERE a=721;\nUPDATE t2 SET c='eighty-nine thousand seventy' WHERE a=722;\nUPDATE t2 SET c='forty-four thousand nine hundred seventy-seven' WHERE a=723;\nUPDATE t2 SET c='thirty-one thousand six hundred seventy-five' WHERE a=724;\nUPDATE t2 SET c='twenty thousand seven hundred forty-five' WHERE a=725;\nUPDATE t2 SET c='sixty-two thousand one hundred forty-four' WHERE a=726;\nUPDATE t2 SET c='thirty-eight thousand four hundred seventy-nine' WHERE a=727;\nUPDATE t2 SET c='eighty-four thousand five hundred seventy-three' WHERE a=728;\nUPDATE t2 SET c='eighty-six thousand four hundred forty-nine' WHERE a=729;\nUPDATE t2 SET c='sixty-four thousand three hundred two' WHERE a=730;\nUPDATE t2 SET c='seventy thousand three hundred fourteen' WHERE a=731;\nUPDATE t2 SET c='seventy-four thousand four hundred nine' WHERE a=732;\nUPDATE t2 SET c='nine thousand six hundred four' WHERE a=733;\nUPDATE t2 SET c='eighty-two thousand five hundred sixty' WHERE a=734;\nUPDATE t2 SET c='twenty-nine thousand eight hundred fifty-two' WHERE a=735;\nUPDATE t2 SET c='fifty-six thousand four hundred fourteen' WHERE a=736;\nUPDATE t2 SET c='forty-four thousand one hundred thirty-three' WHERE a=737;\nUPDATE t2 SET c='forty-two thousand nine hundred fourteen' WHERE a=738;\nUPDATE t2 SET c='sixty-one thousand three hundred twenty-eight' WHERE a=739;\nUPDATE t2 SET c='eighteen thousand three hundred ninety-four' WHERE a=740;\nUPDATE t2 SET c='forty thousand four hundred seventy-eight' WHERE a=741;\nUPDATE t2 SET c='three hundred seventy-one' WHERE a=742;\nUPDATE t2 SET c='thirty-nine thousand seven hundred forty-five' WHERE a=743;\nUPDATE t2 SET c='fifty-seven thousand seven hundred ninety-three' WHERE a=744;\nUPDATE t2 SET c='forty-four thousand eight hundred eighteen' WHERE a=745;\nUPDATE t2 SET c='eighty-five thousand twenty-eight' WHERE a=746;\nUPDATE t2 SET c='twelve thousand nine hundred twenty-four' WHERE a=747;\nUPDATE t2 SET c='eighty-five thousand one hundred ninety-two' WHERE a=748;\nUPDATE t2 SET c='ninety thousand fifty-three' WHERE a=749;\nUPDATE t2 SET c='twenty-seven thousand seven hundred seventy-nine' WHERE a=750;\nUPDATE t2 SET c='seventy-seven thousand four hundred eleven' WHERE a=751;\nUPDATE t2 SET c='sixty-one thousand five hundred twenty-seven' WHERE a=752;\nUPDATE t2 SET c='sixteen thousand one hundred nine' WHERE a=753;\nUPDATE t2 SET c='twenty-six thousand one hundred fifty-eight' WHERE a=754;\nUPDATE t2 SET c='forty-two thousand four hundred twenty-one' WHERE a=755;\nUPDATE t2 SET c='thirty-eight thousand five hundred sixty-one' WHERE a=756;\nUPDATE t2 SET c='thirty thousand three hundred ninety' WHERE a=757;\nUPDATE t2 SET c='seventy-five thousand two hundred seventy-three' WHERE a=758;\nUPDATE t2 SET c='eight thousand forty-nine' WHERE a=759;\nUPDATE t2 SET c='seventy-one thousand seven hundred ten' WHERE a=760;\nUPDATE t2 SET c='sixty-nine thousand four hundred seventy-one' WHERE a=761;\nUPDATE t2 SET c='three thousand three hundred twenty' WHERE a=762;\nUPDATE t2 SET c='ninety-nine thousand six' WHERE a=763;\nUPDATE t2 SET c='ninety-seven thousand four hundred' WHERE a=764;\nUPDATE t2 SET c='twenty thousand one hundred sixty-three' WHERE a=765;\nUPDATE t2 SET c='six thousand seven hundred eighty-two' WHERE a=766;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-five' WHERE a=767;\nUPDATE t2 SET c='nine thousand three hundred one' WHERE a=768;\nUPDATE t2 SET c='thirty-six thousand nine hundred ninety-nine' WHERE a=769;\nUPDATE t2 SET c='fifty-four thousand three hundred ninety-two' WHERE a=770;\nUPDATE t2 SET c='ninety-five thousand eight hundred forty-one' WHERE a=771;\nUPDATE t2 SET c='fifty-nine thousand six hundred sixty-six' WHERE a=772;\nUPDATE t2 SET c='eighty-one thousand two hundred forty-three' WHERE a=773;\nUPDATE t2 SET c='thirty-six thousand eight hundred twelve' WHERE a=774;\nUPDATE t2 SET c='thirteen thousand five hundred ninety-eight' WHERE a=775;\nUPDATE t2 SET c='one thousand ninety-nine' WHERE a=776;\nUPDATE t2 SET c='eighty-seven thousand one hundred ninety-four' WHERE a=777;\nUPDATE t2 SET c='forty-three thousand six hundred ten' WHERE a=778;\nUPDATE t2 SET c='fifty-six thousand eight hundred six' WHERE a=779;\nUPDATE t2 SET c='seventy-three thousand six hundred sixty-five' WHERE a=780;\nUPDATE t2 SET c='seventy-eight thousand nine hundred fifty-seven' WHERE a=781;\nUPDATE t2 SET c='ninety-five thousand seven hundred seventy-two' WHERE a=782;\nUPDATE t2 SET c='sixty-two thousand forty-seven' WHERE a=783;\nUPDATE t2 SET c='eighty-seven thousand ninety-four' WHERE a=784;\nUPDATE t2 SET c='seventy-eight thousand seven hundred fifty-three' WHERE a=785;\nUPDATE t2 SET c='twenty thousand seven hundred eighty-nine' WHERE a=786;\nUPDATE t2 SET c='fourteen thousand eight hundred sixty-six' WHERE a=787;\nUPDATE t2 SET c='eighty-six thousand seven hundred thirteen' WHERE a=788;\nUPDATE t2 SET c='fifty-one thousand six hundred thirteen' WHERE a=789;\nUPDATE t2 SET c='fifty-two thousand six hundred thirty-four' WHERE a=790;\nUPDATE t2 SET c='sixty-four thousand ninety-five' WHERE a=791;\nUPDATE t2 SET c='thirty-eight thousand nine hundred forty' WHERE a=792;\nUPDATE t2 SET c='ten thousand sixty-four' WHERE a=793;\nUPDATE t2 SET c='twenty-eight thousand seven hundred sixteen' WHERE a=794;\nUPDATE t2 SET c='forty-nine thousand seven hundred sixty-three' WHERE a=795;\nUPDATE t2 SET c='eighty thousand seventy-four' WHERE a=796;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-five' WHERE a=797;\nUPDATE t2 SET c='seventy-three thousand two hundred sixty-eight' WHERE a=798;\nUPDATE t2 SET c='forty-three thousand two hundred seventy-seven' WHERE a=799;\nUPDATE t2 SET c='four thousand one hundred forty-four' WHERE a=800;\nUPDATE t2 SET c='eighty-nine thousand nine hundred thirty-four' WHERE a=801;\nUPDATE t2 SET c='seventy-four thousand nine hundred ninety-one' WHERE a=802;\nUPDATE t2 SET c='forty-five thousand three hundred thirty-eight' WHERE a=803;\nUPDATE t2 SET c='ninety-one thousand one hundred sixty' WHERE a=804;\nUPDATE t2 SET c='sixty-eight thousand four hundred ninety' WHERE a=805;\nUPDATE t2 SET c='ninety-six thousand four hundred twenty-nine' WHERE a=806;\nUPDATE t2 SET c='ninety-six thousand two hundred sixty-one' WHERE a=807;\nUPDATE t2 SET c='twelve thousand one hundred sixty-six' WHERE a=808;\nUPDATE t2 SET c='forty-nine thousand two hundred eleven' WHERE a=809;\nUPDATE t2 SET c='twenty-two thousand six hundred twelve' WHERE a=810;\nUPDATE t2 SET c='fifty-three thousand five hundred sixty-nine' WHERE a=811;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eighty-four' WHERE a=812;\nUPDATE t2 SET c='nine thousand ninety-seven' WHERE a=813;\nUPDATE t2 SET c='eighteen thousand seven hundred thirteen' WHERE a=814;\nUPDATE t2 SET c='fifteen thousand three hundred sixty-five' WHERE a=815;\nUPDATE t2 SET c='fifty-nine thousand five hundred sixty-eight' WHERE a=816;\nUPDATE t2 SET c='eighty-eight thousand three hundred five' WHERE a=817;\nUPDATE t2 SET c='twenty-five thousand three hundred thirty' WHERE a=818;\nUPDATE t2 SET c='forty-nine thousand six hundred seventy' WHERE a=819;\nUPDATE t2 SET c='sixty-five thousand six hundred seventy' WHERE a=820;\nUPDATE t2 SET c='forty-one thousand one hundred twenty-six' WHERE a=821;\nUPDATE t2 SET c='twenty-one thousand one hundred forty-five' WHERE a=822;\nUPDATE t2 SET c='sixty-one thousand six hundred sixty-six' WHERE a=823;\nUPDATE t2 SET c='twenty-seven thousand three hundred four' WHERE a=824;\nUPDATE t2 SET c='sixty-one thousand seven hundred fifty-six' WHERE a=825;\nUPDATE t2 SET c='seven thousand three hundred eighty' WHERE a=826;\nUPDATE t2 SET c='eighty-four thousand nine hundred twenty-eight' WHERE a=827;\nUPDATE t2 SET c='seventy-five thousand twenty' WHERE a=828;\nUPDATE t2 SET c='nineteen thousand two hundred twenty-eight' WHERE a=829;\nUPDATE t2 SET c='ninety-eight thousand seven hundred thirteen' WHERE a=830;\nUPDATE t2 SET c='ninety-six thousand four hundred eighty-four' WHERE a=831;\nUPDATE t2 SET c='seventy-one thousand one hundred forty-four' WHERE a=832;\nUPDATE t2 SET c='sixty-five thousand nine hundred seventy-three' WHERE a=833;\nUPDATE t2 SET c='ninety-five thousand three hundred forty-eight' WHERE a=834;\nUPDATE t2 SET c='fifty-seven thousand four hundred ninety-four' WHERE a=835;\nUPDATE t2 SET c='forty-one thousand twenty-nine' WHERE a=836;\nUPDATE t2 SET c='eighty-two thousand five hundred thirteen' WHERE a=837;\nUPDATE t2 SET c='forty-six thousand one hundred seventy-seven' WHERE a=838;\nUPDATE t2 SET c='ten thousand five hundred thirty-eight' WHERE a=839;\nUPDATE t2 SET c='fifty-seven thousand four hundred eighty-four' WHERE a=840;\nUPDATE t2 SET c='fifty-three thousand one hundred ninety-one' WHERE a=841;\nUPDATE t2 SET c='twenty-four thousand seven hundred six' WHERE a=842;\nUPDATE t2 SET c='nine thousand nine hundred seventy-nine' WHERE a=843;\nUPDATE t2 SET c='fifty thousand seven hundred ninety-five' WHERE a=844;\nUPDATE t2 SET c='seven thousand six hundred twenty-two' WHERE a=845;\nUPDATE t2 SET c='sixty-six thousand one hundred eighty' WHERE a=846;\nUPDATE t2 SET c='five hundred forty-eight' WHERE a=847;\nUPDATE t2 SET c='forty-two thousand five hundred forty-six' WHERE a=848;\nUPDATE t2 SET c='ninety-seven thousand five hundred ninety-one' WHERE a=849;\nUPDATE t2 SET c='thirty-nine thousand eight hundred forty-four' WHERE a=850;\nUPDATE t2 SET c='ninety-seven thousand six hundred seven' WHERE a=851;\nUPDATE t2 SET c='twenty-nine thousand two hundred five' WHERE a=852;\nUPDATE t2 SET c='seventeen thousand nine hundred thirty-three' WHERE a=853;\nUPDATE t2 SET c='forty-nine thousand eight hundred seventy-two' WHERE a=854;\nUPDATE t2 SET c='ninety-seven thousand three hundred ninety-three' WHERE a=855;\nUPDATE t2 SET c='forty-eight thousand eight hundred sixty-one' WHERE a=856;\nUPDATE t2 SET c='ninety-seven thousand one hundred eighty-eight' WHERE a=857;\nUPDATE t2 SET c='sixty-seven thousand sixty-six' WHERE a=858;\nUPDATE t2 SET c='nine thousand five hundred forty-seven' WHERE a=859;\nUPDATE t2 SET c='thirty-eight thousand four hundred ninety-eight' WHERE a=860;\nUPDATE t2 SET c='sixty-six thousand twenty-one' WHERE a=861;\nUPDATE t2 SET c='twenty-seven thousand seven hundred sixty-four' WHERE a=862;\nUPDATE t2 SET c='forty thousand nine hundred fifty-five' WHERE a=863;\nUPDATE t2 SET c='thirty-eight thousand forty-four' WHERE a=864;\nUPDATE t2 SET c='twenty-nine thousand three hundred thirty-one' WHERE a=865;\nUPDATE t2 SET c='fifty-six thousand four hundred sixty-seven' WHERE a=866;\nUPDATE t2 SET c='fifty-one thousand eighty-three' WHERE a=867;\nUPDATE t2 SET c='seventy-nine thousand seven hundred sixty-five' WHERE a=868;\nUPDATE t2 SET c='thirty-six thousand fifteen' WHERE a=869;\nUPDATE t2 SET c='thirty-eight thousand one hundred sixty-seven' WHERE a=870;\nUPDATE t2 SET c='forty-six thousand one hundred forty-nine' WHERE a=871;\nUPDATE t2 SET c='twenty-three thousand seventy-two' WHERE a=872;\nUPDATE t2 SET c='thirty-one thousand one hundred ninety-two' WHERE a=873;\nUPDATE t2 SET c='sixty thousand twelve' WHERE a=874;\nUPDATE t2 SET c='eighteen thousand six hundred twenty-five' WHERE a=875;\nUPDATE t2 SET c='seven thousand fifty-six' WHERE a=876;\nUPDATE t2 SET c='ninety-four thousand six hundred forty' WHERE a=877;\nUPDATE t2 SET c='ninety-three thousand seven hundred fifteen' WHERE a=878;\nUPDATE t2 SET c='eighty-four thousand three hundred sixty-nine' WHERE a=879;\nUPDATE t2 SET c='thirty-one thousand five hundred sixty-four' WHERE a=880;\nUPDATE t2 SET c='seventy-one thousand two hundred three' WHERE a=881;\nUPDATE t2 SET c='forty-one thousand four hundred fifty-nine' WHERE a=882;\nUPDATE t2 SET c='seventy-five thousand six hundred seventy' WHERE a=883;\nUPDATE t2 SET c='seventy-eight thousand forty-four' WHERE a=884;\nUPDATE t2 SET c='eighty-one thousand four hundred thirty-nine' WHERE a=885;\nUPDATE t2 SET c='twelve thousand nine hundred forty-five' WHERE a=886;\nUPDATE t2 SET c='forty-five thousand six hundred twenty-six' WHERE a=887;\nUPDATE t2 SET c='twenty-one thousand five hundred seventy' WHERE a=888;\nUPDATE t2 SET c='forty-four thousand two hundred three' WHERE a=889;\nUPDATE t2 SET c='seventy-nine thousand six hundred fifty-six' WHERE a=890;\nUPDATE t2 SET c='sixty-one thousand one hundred eighty-two' WHERE a=891;\nUPDATE t2 SET c='thirty-nine thousand seven hundred three' WHERE a=892;\nUPDATE t2 SET c='thirteen thousand four hundred fifty-one' WHERE a=893;\nUPDATE t2 SET c='fifty-six thousand nine hundred ninety-four' WHERE a=894;\nUPDATE t2 SET c='twenty-three thousand four hundred forty-seven' WHERE a=895;\nUPDATE t2 SET c='eighty-nine thousand five hundred sixty' WHERE a=896;\nUPDATE t2 SET c='thirteen thousand seventy' WHERE a=897;\nUPDATE t2 SET c='fifteen thousand six hundred sixteen' WHERE a=898;\nUPDATE t2 SET c='seventy-one thousand three hundred thirty-three' WHERE a=899;\nUPDATE t2 SET c='forty-nine thousand two hundred fourteen' WHERE a=900;\nUPDATE t2 SET c='sixteen thousand eight hundred fifty-four' WHERE a=901;\nUPDATE t2 SET c='thirty-eight thousand one hundred eighty' WHERE a=902;\nUPDATE t2 SET c='seventy-four thousand eight hundred sixty-four' WHERE a=903;\nUPDATE t2 SET c='eighty-two thousand six hundred thirty-seven' WHERE a=904;\nUPDATE t2 SET c='seventy-two thousand three hundred twenty-three' WHERE a=905;\nUPDATE t2 SET c='twenty-one thousand seven hundred ninety-two' WHERE a=906;\nUPDATE t2 SET c='fifty-five thousand two hundred eighty-four' WHERE a=907;\nUPDATE t2 SET c='forty-two thousand two hundred fifty-six' WHERE a=908;\nUPDATE t2 SET c='ninety-five thousand one hundred eighty-eight' WHERE a=909;\nUPDATE t2 SET c='thirty-six thousand two hundred eighty-six' WHERE a=910;\nUPDATE t2 SET c='fifty-seven thousand eighteen' WHERE a=911;\nUPDATE t2 SET c='three thousand thirty-six' WHERE a=912;\nUPDATE t2 SET c='eighty-seven thousand nine hundred seventy-six' WHERE a=913;\nUPDATE t2 SET c='forty-seven thousand one hundred forty-six' WHERE a=914;\nUPDATE t2 SET c='seventeen thousand twenty' WHERE a=915;\nUPDATE t2 SET c='eighty-eight thousand nine hundred eleven' WHERE a=916;\nUPDATE t2 SET c='eighty-nine thousand nine hundred fifteen' WHERE a=917;\nUPDATE t2 SET c='sixty-three thousand one hundred three' WHERE a=918;\nUPDATE t2 SET c='forty-three thousand one hundred sixty-nine' WHERE a=919;\nUPDATE t2 SET c='forty-one thousand nine hundred one' WHERE a=920;\nUPDATE t2 SET c='twenty-nine thousand six hundred eighty-two' WHERE a=921;\nUPDATE t2 SET c='thirty-three thousand one hundred eighty-eight' WHERE a=922;\nUPDATE t2 SET c='nine thousand six hundred sixteen' WHERE a=923;\nUPDATE t2 SET c='thirty-three thousand two hundred forty-seven' WHERE a=924;\nUPDATE t2 SET c='sixty-one thousand three hundred seventy-nine' WHERE a=925;\nUPDATE t2 SET c='twenty-nine thousand one hundred twenty-three' WHERE a=926;\nUPDATE t2 SET c='fifty-five thousand three hundred twenty-two' WHERE a=927;\nUPDATE t2 SET c='eighty-six thousand three hundred six' WHERE a=928;\nUPDATE t2 SET c='nine thousand seven hundred thirty-one' WHERE a=929;\nUPDATE t2 SET c='ninety-nine thousand four hundred fourteen' WHERE a=930;\nUPDATE t2 SET c='forty thousand six hundred twenty-one' WHERE a=931;\nUPDATE t2 SET c='ninety-four thousand six hundred nine' WHERE a=932;\nUPDATE t2 SET c='thirty-one thousand six hundred twenty-eight' WHERE a=933;\nUPDATE t2 SET c='four thousand three hundred fifty-six' WHERE a=934;\nUPDATE t2 SET c='fifty-five thousand twenty-eight' WHERE a=935;\nUPDATE t2 SET c='seven hundred fifty-four' WHERE a=936;\nUPDATE t2 SET c='eighty-one thousand two hundred three' WHERE a=937;\nUPDATE t2 SET c='seventeen thousand seven hundred eighty-three' WHERE a=938;\nUPDATE t2 SET c='fifty-four thousand three hundred seventy-nine' WHERE a=939;\nUPDATE t2 SET c='eighty-three thousand six hundred twelve' WHERE a=940;\nUPDATE t2 SET c='twenty-five thousand one hundred thirty-eight' WHERE a=941;\nUPDATE t2 SET c='fifteen thousand eight hundred nine' WHERE a=942;\nUPDATE t2 SET c='seventy-five thousand one hundred fifty' WHERE a=943;\nUPDATE t2 SET c='ninety-nine thousand six hundred thirteen' WHERE a=944;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifteen' WHERE a=945;\nUPDATE t2 SET c='thirty-eight thousand two hundred twenty-six' WHERE a=946;\nUPDATE t2 SET c='forty thousand eight hundred seventy-five' WHERE a=947;\nUPDATE t2 SET c='forty thousand one hundred thirty-six' WHERE a=948;\nUPDATE t2 SET c='sixty-nine thousand seven hundred seven' WHERE a=949;\nUPDATE t2 SET c='fifty-three thousand four' WHERE a=950;\nUPDATE t2 SET c='thirty-six thousand six hundred sixty-seven' WHERE a=951;\nUPDATE t2 SET c='sixty-seven thousand one hundred four' WHERE a=952;\nUPDATE t2 SET c='sixty-four thousand nine hundred ninety-nine' WHERE a=953;\nUPDATE t2 SET c='fifty-three thousand eight hundred eighty' WHERE a=954;\nUPDATE t2 SET c='sixty-six thousand eleven' WHERE a=955;\nUPDATE t2 SET c='forty-four thousand twenty-three' WHERE a=956;\nUPDATE t2 SET c='two thousand two hundred twenty-nine' WHERE a=957;\nUPDATE t2 SET c='sixty-five thousand one hundred seventy-four' WHERE a=958;\nUPDATE t2 SET c='eleven thousand four hundred ninety-four' WHERE a=959;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-five' WHERE a=960;\nUPDATE t2 SET c='twelve thousand two hundred thirteen' WHERE a=961;\nUPDATE t2 SET c='fifty-two thousand one hundred sixty-five' WHERE a=962;\nUPDATE t2 SET c='ten thousand three hundred twenty-one' WHERE a=963;\nUPDATE t2 SET c='seventy-four thousand five hundred seventeen' WHERE a=964;\nUPDATE t2 SET c='fifteen thousand seven hundred fifty-nine' WHERE a=965;\nUPDATE t2 SET c='fifty-seven thousand eighty-six' WHERE a=966;\nUPDATE t2 SET c='seventy-nine thousand seven hundred seventy-eight' WHERE a=967;\nUPDATE t2 SET c='ninety-one thousand two hundred thirty-three' WHERE a=968;\nUPDATE t2 SET c='sixty-seven thousand two hundred forty-two' WHERE a=969;\nUPDATE t2 SET c='fifty-seven thousand one hundred thirty-five' WHERE a=970;\nUPDATE t2 SET c='ninety-seven thousand eight hundred twenty-six' WHERE a=971;\nUPDATE t2 SET c='fifty-one thousand six hundred seventeen' WHERE a=972;\nUPDATE t2 SET c='twenty-one thousand nine hundred fifty-eight' WHERE a=973;\nUPDATE t2 SET c='ninety-four thousand three hundred ninety-five' WHERE a=974;\nUPDATE t2 SET c='thirty-eight thousand nine hundred seventy-one' WHERE a=975;\nUPDATE t2 SET c='twenty-nine thousand eight hundred eighty-four' WHERE a=976;\nUPDATE t2 SET c='twenty-four thousand eight hundred thirty-three' WHERE a=977;\nUPDATE t2 SET c='thirty-six thousand seven hundred' WHERE a=978;\nUPDATE t2 SET c='thirty-eight thousand three hundred twenty-eight' WHERE a=979;\nUPDATE t2 SET c='thirty-three thousand five hundred fifty-two' WHERE a=980;\nUPDATE t2 SET c='fifty-four thousand seven hundred ninety-three' WHERE a=981;\nUPDATE t2 SET c='twenty-five thousand two hundred sixty-six' WHERE a=982;\nUPDATE t2 SET c='eighty-seven thousand seven hundred fifty-three' WHERE a=983;\nUPDATE t2 SET c='three thousand eight hundred sixty-six' WHERE a=984;\nUPDATE t2 SET c='ninety-six thousand eighty-three' WHERE a=985;\nUPDATE t2 SET c='sixty-six thousand sixty-two' WHERE a=986;\nUPDATE t2 SET c='eleven thousand eight hundred twenty' WHERE a=987;\nUPDATE t2 SET c='sixty-one thousand five hundred ninety' WHERE a=988;\nUPDATE t2 SET c='seventy-six thousand six hundred twenty-four' WHERE a=989;\nUPDATE t2 SET c='eighty-five thousand three hundred forty-seven' WHERE a=990;\nUPDATE t2 SET c='eighty-five thousand seven hundred sixty-seven' WHERE a=991;\nUPDATE t2 SET c='four thousand four hundred ninety-nine' WHERE a=992;\nUPDATE t2 SET c='seventy-one thousand one hundred eighteen' WHERE a=993;\nUPDATE t2 SET c='ninety-five thousand five hundred thirty-one' WHERE a=994;\nUPDATE t2 SET c='ninety-six thousand five hundred eighty' WHERE a=995;\nUPDATE t2 SET c='seventy-four thousand two hundred forty-three' WHERE a=996;\nUPDATE t2 SET c='eighty-seven thousand seven hundred eighty-four' WHERE a=997;\nUPDATE t2 SET c='twelve thousand four hundred eighty-nine' WHERE a=998;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventy-four' WHERE a=999;\nUPDATE t2 SET c='eighty thousand nine hundred ninety-eight' WHERE a=1000;\nUPDATE t2 SET c='twenty-five thousand five hundred seventy-one' WHERE a=1001;\nUPDATE t2 SET c='five thousand one hundred eighty-eight' WHERE a=1002;\nUPDATE t2 SET c='thirty-four thousand six hundred twenty-nine' WHERE a=1003;\nUPDATE t2 SET c='seventy-one thousand seven hundred eighty' WHERE a=1004;\nUPDATE t2 SET c='sixty thousand four hundred seventy-eight' WHERE a=1005;\nUPDATE t2 SET c='seventy thousand four hundred eighty-six' WHERE a=1006;\nUPDATE t2 SET c='sixty-two thousand nine hundred sixteen' WHERE a=1007;\nUPDATE t2 SET c='fifty-six thousand fifty-five' WHERE a=1008;\nUPDATE t2 SET c='fifteen thousand four hundred eighty-six' WHERE a=1009;\nUPDATE t2 SET c='two thousand nine hundred forty-seven' WHERE a=1010;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty-six' WHERE a=1011;\nUPDATE t2 SET c='eighty thousand four hundred eighty-three' WHERE a=1012;\nUPDATE t2 SET c='fourteen thousand six hundred forty-nine' WHERE a=1013;\nUPDATE t2 SET c='thirty-nine thousand seven hundred five' WHERE a=1014;\nUPDATE t2 SET c='ninety-eight thousand one hundred twenty' WHERE a=1015;\nUPDATE t2 SET c='forty thousand three hundred twenty-four' WHERE a=1016;\nUPDATE t2 SET c='nine thousand eight hundred ninety-one' WHERE a=1017;\nUPDATE t2 SET c='ten thousand two hundred seventy-two' WHERE a=1018;\nUPDATE t2 SET c='twenty-five thousand four hundred seventy-one' WHERE a=1019;\nUPDATE t2 SET c='nine thousand nine hundred eighty-three' WHERE a=1020;\nUPDATE t2 SET c='seventy-nine thousand three hundred twenty-six' WHERE a=1021;\nUPDATE t2 SET c='nine thousand three hundred eighty-three' WHERE a=1022;\nUPDATE t2 SET c='thirty-eight thousand five hundred four' WHERE a=1023;\nUPDATE t2 SET c='nine thousand seven hundred sixty-one' WHERE a=1024;\nUPDATE t2 SET c='ninety thousand seven hundred ninety-five' WHERE a=1025;\nUPDATE t2 SET c='sixty-eight thousand nine hundred eighty-seven' WHERE a=1026;\nUPDATE t2 SET c='seven thousand five hundred sixty-eight' WHERE a=1027;\nUPDATE t2 SET c='ninety-six thousand two hundred twenty' WHERE a=1028;\nUPDATE t2 SET c='one thousand nine hundred twenty' WHERE a=1029;\nUPDATE t2 SET c='eighty-seven thousand one hundred eighty-two' WHERE a=1030;\nUPDATE t2 SET c='eleven thousand four hundred ninety-one' WHERE a=1031;\nUPDATE t2 SET c='thirty-seven thousand three hundred twenty' WHERE a=1032;\nUPDATE t2 SET c='sixty-three thousand eight hundred seventy-nine' WHERE a=1033;\nUPDATE t2 SET c='eleven thousand five hundred eighty-seven' WHERE a=1034;\nUPDATE t2 SET c='thirty thousand four hundred ninety-one' WHERE a=1035;\nUPDATE t2 SET c='eighty thousand thirty' WHERE a=1036;\nUPDATE t2 SET c='sixty-nine thousand eight hundred eighty-three' WHERE a=1037;\nUPDATE t2 SET c='fifty-seven thousand eighteen' WHERE a=1038;\nUPDATE t2 SET c='six thousand eight hundred forty-eight' WHERE a=1039;\nUPDATE t2 SET c='forty-two thousand five hundred seventy-eight' WHERE a=1040;\nUPDATE t2 SET c='eighty-four thousand ninety-four' WHERE a=1041;\nUPDATE t2 SET c='twenty-seven thousand six hundred fifty' WHERE a=1042;\nUPDATE t2 SET c='thirty-one thousand eight hundred ninety-eight' WHERE a=1043;\nUPDATE t2 SET c='fifty-eight thousand two hundred twenty' WHERE a=1044;\nUPDATE t2 SET c='eighteen thousand twenty' WHERE a=1045;\nUPDATE t2 SET c='thirty-one thousand three hundred seventy' WHERE a=1046;\nUPDATE t2 SET c='twenty-five thousand nine hundred forty-nine' WHERE a=1047;\nUPDATE t2 SET c='fifteen thousand six hundred eleven' WHERE a=1048;\nUPDATE t2 SET c='twelve thousand seventeen' WHERE a=1049;\nUPDATE t2 SET c='ten thousand five hundred ninety' WHERE a=1050;\nUPDATE t2 SET c='twenty-six thousand six hundred fifteen' WHERE a=1051;\nUPDATE t2 SET c='seventy-seven thousand sixty-six' WHERE a=1052;\nUPDATE t2 SET c='twenty-four thousand six hundred five' WHERE a=1053;\nUPDATE t2 SET c='fifty-one thousand four hundred twenty-three' WHERE a=1054;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty-two' WHERE a=1055;\nUPDATE t2 SET c='forty-three thousand five hundred twenty-four' WHERE a=1056;\nUPDATE t2 SET c='thirty-eight thousand two hundred sixty' WHERE a=1057;\nUPDATE t2 SET c='eighty-six thousand five hundred seventy-seven' WHERE a=1058;\nUPDATE t2 SET c='seven thousand nine hundred thirty-five' WHERE a=1059;\nUPDATE t2 SET c='eighty-eight thousand three hundred sixty' WHERE a=1060;\nUPDATE t2 SET c='sixty-seven thousand nine hundred seventy-seven' WHERE a=1061;\nUPDATE t2 SET c='thirty thousand five hundred eighty-two' WHERE a=1062;\nUPDATE t2 SET c='fifty-eight thousand six hundred sixty-four' WHERE a=1063;\nUPDATE t2 SET c='two thousand five hundred twenty-nine' WHERE a=1064;\nUPDATE t2 SET c='ninety-eight thousand eight hundred seventy-three' WHERE a=1065;\nUPDATE t2 SET c='sixty-six thousand four hundred fifty' WHERE a=1066;\nUPDATE t2 SET c='seventy thousand two hundred ninety-five' WHERE a=1067;\nUPDATE t2 SET c='twenty-one thousand four hundred sixty-three' WHERE a=1068;\nUPDATE t2 SET c='eighty-three thousand seventy-four' WHERE a=1069;\nUPDATE t2 SET c='sixty-three thousand eight hundred twenty-six' WHERE a=1070;\nUPDATE t2 SET c='ninety-six thousand fifteen' WHERE a=1071;\nUPDATE t2 SET c='thirty-nine thousand four hundred nineteen' WHERE a=1072;\nUPDATE t2 SET c='seventy-two thousand five hundred twenty-four' WHERE a=1073;\nUPDATE t2 SET c='seventy-nine thousand nine hundred forty-three' WHERE a=1074;\nUPDATE t2 SET c='ninety-six thousand five hundred thirty' WHERE a=1075;\nUPDATE t2 SET c='twenty-four thousand thirty-four' WHERE a=1076;\nUPDATE t2 SET c='twenty-two thousand seven hundred fifty-seven' WHERE a=1077;\nUPDATE t2 SET c='seventy-four thousand six hundred seventy' WHERE a=1078;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty-three' WHERE a=1079;\nUPDATE t2 SET c='sixty-three thousand six hundred fourteen' WHERE a=1080;\nUPDATE t2 SET c='fifty-three thousand four hundred forty-two' WHERE a=1081;\nUPDATE t2 SET c='thirty-one thousand thirty-seven' WHERE a=1082;\nUPDATE t2 SET c='sixty-one thousand three hundred seventy' WHERE a=1083;\nUPDATE t2 SET c='fifty-seven thousand eight hundred fourteen' WHERE a=1084;\nUPDATE t2 SET c='sixty-nine thousand one hundred forty' WHERE a=1085;\nUPDATE t2 SET c='forty-one thousand one hundred thirty-six' WHERE a=1086;\nUPDATE t2 SET c='fourteen thousand ninety-four' WHERE a=1087;\nUPDATE t2 SET c='seventy-two thousand four hundred fifty' WHERE a=1088;\nUPDATE t2 SET c='twenty-one thousand three hundred thirty-seven' WHERE a=1089;\nUPDATE t2 SET c='sixty-three thousand seven hundred eighty-five' WHERE a=1090;\nUPDATE t2 SET c='fifteen thousand seventy-nine' WHERE a=1091;\nUPDATE t2 SET c='seventy-nine thousand one hundred sixty' WHERE a=1092;\nUPDATE t2 SET c='seventy-seven thousand two hundred seventy-seven' WHERE a=1093;\nUPDATE t2 SET c='thirteen thousand nine hundred six' WHERE a=1094;\nUPDATE t2 SET c='seventy-two thousand three hundred eighty-six' WHERE a=1095;\nUPDATE t2 SET c='ninety-three thousand eight hundred eighty-eight' WHERE a=1096;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty-eight' WHERE a=1097;\nUPDATE t2 SET c='twenty thousand nine hundred eighty-nine' WHERE a=1098;\nUPDATE t2 SET c='fourteen thousand three hundred forty-three' WHERE a=1099;\nUPDATE t2 SET c='one thousand three hundred forty-seven' WHERE a=1100;\nUPDATE t2 SET c='fifty-eight thousand one hundred forty-one' WHERE a=1101;\nUPDATE t2 SET c='three thousand one hundred seventeen' WHERE a=1102;\nUPDATE t2 SET c='nineteen thousand two hundred forty-nine' WHERE a=1103;\nUPDATE t2 SET c='twenty-eight thousand one hundred sixty-five' WHERE a=1104;\nUPDATE t2 SET c='thirty-seven thousand one hundred sixty-one' WHERE a=1105;\nUPDATE t2 SET c='sixty-five thousand nine hundred seventy' WHERE a=1106;\nUPDATE t2 SET c='sixty-two thousand eighty-five' WHERE a=1107;\nUPDATE t2 SET c='sixty-eight thousand one hundred nineteen' WHERE a=1108;\nUPDATE t2 SET c='twenty-seven thousand six hundred twenty-one' WHERE a=1109;\nUPDATE t2 SET c='five thousand six hundred forty-seven' WHERE a=1110;\nUPDATE t2 SET c='eighty thousand five hundred sixty-eight' WHERE a=1111;\nUPDATE t2 SET c='seventy-nine thousand four hundred thirty-six' WHERE a=1112;\nUPDATE t2 SET c='eighty thousand four hundred fourteen' WHERE a=1113;\nUPDATE t2 SET c='forty-seven thousand five hundred sixty-one' WHERE a=1114;\nUPDATE t2 SET c='thirteen thousand nine hundred fifty' WHERE a=1115;\nUPDATE t2 SET c='sixty-three thousand six hundred ninety-six' WHERE a=1116;\nUPDATE t2 SET c='seventy thousand nine hundred seventy-three' WHERE a=1117;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty-seven' WHERE a=1118;\nUPDATE t2 SET c='ninety thousand five hundred eighty' WHERE a=1119;\nUPDATE t2 SET c='forty-five thousand seven hundred thirteen' WHERE a=1120;\nUPDATE t2 SET c='forty-one thousand six hundred ninety-five' WHERE a=1121;\nUPDATE t2 SET c='sixty-six thousand four hundred fifty-eight' WHERE a=1122;\nUPDATE t2 SET c='sixty-one thousand nine hundred fifty-seven' WHERE a=1123;\nUPDATE t2 SET c='five thousand two hundred ninety-two' WHERE a=1124;\nUPDATE t2 SET c='fifty-seven thousand four hundred twenty-five' WHERE a=1125;\nUPDATE t2 SET c='sixty-six thousand two hundred sixteen' WHERE a=1126;\nUPDATE t2 SET c='twelve thousand four' WHERE a=1127;\nUPDATE t2 SET c='thirty-nine thousand eight hundred twenty' WHERE a=1128;\nUPDATE t2 SET c='sixty-five thousand two hundred two' WHERE a=1129;\nUPDATE t2 SET c='eighty-six thousand five hundred forty' WHERE a=1130;\nUPDATE t2 SET c='five thousand six hundred twenty' WHERE a=1131;\nUPDATE t2 SET c='ninety-eight thousand five hundred forty-three' WHERE a=1132;\nUPDATE t2 SET c='twelve thousand eighty-four' WHERE a=1133;\nUPDATE t2 SET c='forty-two thousand five hundred twenty-three' WHERE a=1134;\nUPDATE t2 SET c='sixty-one thousand forty-nine' WHERE a=1135;\nUPDATE t2 SET c='fifty-four thousand two hundred thirty-three' WHERE a=1136;\nUPDATE t2 SET c='seventy-three thousand one hundred eighty-five' WHERE a=1137;\nUPDATE t2 SET c='fifty-four thousand nine hundred sixty' WHERE a=1138;\nUPDATE t2 SET c='seventeen thousand thirty-three' WHERE a=1139;\nUPDATE t2 SET c='fifty-two thousand four hundred twenty-six' WHERE a=1140;\nUPDATE t2 SET c='sixty-one thousand one hundred sixty-seven' WHERE a=1141;\nUPDATE t2 SET c='ninety thousand six hundred thirty' WHERE a=1142;\nUPDATE t2 SET c='fifteen thousand seventy-three' WHERE a=1143;\nUPDATE t2 SET c='ninety-five thousand seven hundred thirteen' WHERE a=1144;\nUPDATE t2 SET c='seventy-two thousand three hundred forty-seven' WHERE a=1145;\nUPDATE t2 SET c='ninety-seven thousand two hundred thirty-seven' WHERE a=1146;\nUPDATE t2 SET c='seventy-one thousand one hundred eleven' WHERE a=1147;\nUPDATE t2 SET c='fifty-nine thousand nine hundred sixty-three' WHERE a=1148;\nUPDATE t2 SET c='eleven thousand six hundred thirty-nine' WHERE a=1149;\nUPDATE t2 SET c='fifty-seven thousand five hundred eleven' WHERE a=1150;\nUPDATE t2 SET c='forty-seven thousand seven hundred eighty-five' WHERE a=1151;\nUPDATE t2 SET c='twelve thousand six hundred eighty-nine' WHERE a=1152;\nUPDATE t2 SET c='sixty-six thousand nine hundred seventy-one' WHERE a=1153;\nUPDATE t2 SET c='fourteen thousand three hundred eighty-four' WHERE a=1154;\nUPDATE t2 SET c='forty-two thousand eight hundred thirty-six' WHERE a=1155;\nUPDATE t2 SET c='eighty-seven thousand two hundred forty-three' WHERE a=1156;\nUPDATE t2 SET c='nine thousand twenty-nine' WHERE a=1157;\nUPDATE t2 SET c='twenty-nine thousand seven hundred four' WHERE a=1158;\nUPDATE t2 SET c='ninety-four thousand nine hundred ninety-six' WHERE a=1159;\nUPDATE t2 SET c='eighty thousand seven hundred six' WHERE a=1160;\nUPDATE t2 SET c='forty-six thousand two hundred eighty-nine' WHERE a=1161;\nUPDATE t2 SET c='three thousand ninety-two' WHERE a=1162;\nUPDATE t2 SET c='thirty-nine thousand two hundred seventy' WHERE a=1163;\nUPDATE t2 SET c='thirty-eight thousand two hundred ten' WHERE a=1164;\nUPDATE t2 SET c='ninety-two thousand nine hundred two' WHERE a=1165;\nUPDATE t2 SET c='fifteen thousand eight hundred thirty-nine' WHERE a=1166;\nUPDATE t2 SET c='thirty-three thousand one hundred seventy-seven' WHERE a=1167;\nUPDATE t2 SET c='ninety-one thousand three hundred twenty-five' WHERE a=1168;\nUPDATE t2 SET c='ninety-four thousand two hundred twenty-one' WHERE a=1169;\nUPDATE t2 SET c='sixty-one thousand four hundred forty-one' WHERE a=1170;\nUPDATE t2 SET c='forty-one thousand ten' WHERE a=1171;\nUPDATE t2 SET c='fifty thousand one hundred sixty-three' WHERE a=1172;\nUPDATE t2 SET c='eighty-three thousand three hundred sixteen' WHERE a=1173;\nUPDATE t2 SET c='ninety-seven thousand three hundred eighty-nine' WHERE a=1174;\nUPDATE t2 SET c='forty-one thousand five hundred forty-five' WHERE a=1175;\nUPDATE t2 SET c='two thousand sixty-two' WHERE a=1176;\nUPDATE t2 SET c='forty-one thousand three hundred eighty-six' WHERE a=1177;\nUPDATE t2 SET c='thirty-three thousand five hundred fifty-eight' WHERE a=1178;\nUPDATE t2 SET c='forty-five thousand three hundred fifty-six' WHERE a=1179;\nUPDATE t2 SET c='ninety-two thousand three hundred ninety-six' WHERE a=1180;\nUPDATE t2 SET c='eighty-four thousand one hundred eight' WHERE a=1181;\nUPDATE t2 SET c='seventy-four thousand five hundred sixty' WHERE a=1182;\nUPDATE t2 SET c='forty-nine thousand eight hundred sixty-seven' WHERE a=1183;\nUPDATE t2 SET c='seventy-four thousand nine hundred fifty-nine' WHERE a=1184;\nUPDATE t2 SET c='seventy thousand five hundred thirty-one' WHERE a=1185;\nUPDATE t2 SET c='fifty-eight thousand two hundred thirteen' WHERE a=1186;\nUPDATE t2 SET c='thirty-five thousand nine hundred eighty-seven' WHERE a=1187;\nUPDATE t2 SET c='fifty-four thousand four hundred twenty' WHERE a=1188;\nUPDATE t2 SET c='twenty-nine thousand one hundred ninety-five' WHERE a=1189;\nUPDATE t2 SET c='eight thousand eight hundred twenty-five' WHERE a=1190;\nUPDATE t2 SET c='fifty-three thousand six hundred eighty-nine' WHERE a=1191;\nUPDATE t2 SET c='one thousand seven hundred seventy-two' WHERE a=1192;\nUPDATE t2 SET c='ninety thousand nine hundred ninety-seven' WHERE a=1193;\nUPDATE t2 SET c='three thousand six hundred forty-two' WHERE a=1194;\nUPDATE t2 SET c='thirty-two thousand nine hundred seventy-five' WHERE a=1195;\nUPDATE t2 SET c='eighty-six thousand thirty-nine' WHERE a=1196;\nUPDATE t2 SET c='ninety-nine thousand eighty-seven' WHERE a=1197;\nUPDATE t2 SET c='thirty-four thousand five hundred twenty-five' WHERE a=1198;\nUPDATE t2 SET c='eighty-six thousand three hundred ninety' WHERE a=1199;\nUPDATE t2 SET c='eighty-four thousand seven hundred twenty-eight' WHERE a=1200;\nUPDATE t2 SET c='eighty-five thousand four hundred thirty-eight' WHERE a=1201;\nUPDATE t2 SET c='eighty-eight thousand one hundred eighty-three' WHERE a=1202;\nUPDATE t2 SET c='eighty-nine thousand nine hundred seventy-five' WHERE a=1203;\nUPDATE t2 SET c='forty-eight thousand nine hundred forty-one' WHERE a=1204;\nUPDATE t2 SET c='twenty-four thousand seven hundred thirty-nine' WHERE a=1205;\nUPDATE t2 SET c='thirty-two thousand seven hundred ninety-seven' WHERE a=1206;\nUPDATE t2 SET c='forty-nine thousand six hundred ninety-two' WHERE a=1207;\nUPDATE t2 SET c='eighty-seven thousand one hundred one' WHERE a=1208;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-one' WHERE a=1209;\nUPDATE t2 SET c='fourteen thousand fifty-seven' WHERE a=1210;\nUPDATE t2 SET c='sixty-seven thousand six hundred thirty-one' WHERE a=1211;\nUPDATE t2 SET c='seventy-seven thousand eight hundred twenty-nine' WHERE a=1212;\nUPDATE t2 SET c='sixty-nine thousand two hundred eighty-three' WHERE a=1213;\nUPDATE t2 SET c='seventy-four thousand four hundred twenty-five' WHERE a=1214;\nUPDATE t2 SET c='forty-two thousand nine hundred sixty-nine' WHERE a=1215;\nUPDATE t2 SET c='eighty-seven thousand four hundred twenty-six' WHERE a=1216;\nUPDATE t2 SET c='sixty-three thousand one hundred twenty-eight' WHERE a=1217;\nUPDATE t2 SET c='three thousand eight hundred eleven' WHERE a=1218;\nUPDATE t2 SET c='eighty-one thousand nine hundred twenty-eight' WHERE a=1219;\nUPDATE t2 SET c='twenty-five thousand two hundred eighty' WHERE a=1220;\nUPDATE t2 SET c='eighty-two thousand sixty' WHERE a=1221;\nUPDATE t2 SET c='fifteen thousand two hundred eighteen' WHERE a=1222;\nUPDATE t2 SET c='three thousand five hundred four' WHERE a=1223;\nUPDATE t2 SET c='sixty thousand four hundred eighteen' WHERE a=1224;\nUPDATE t2 SET c='eighty-eight thousand nine hundred thirty-seven' WHERE a=1225;\nUPDATE t2 SET c='thirty-seven thousand nine hundred nine' WHERE a=1226;\nUPDATE t2 SET c='seventy thousand six hundred seventy-five' WHERE a=1227;\nUPDATE t2 SET c='fifty-three thousand six hundred ninety-two' WHERE a=1228;\nUPDATE t2 SET c='eight thousand one hundred thirty-nine' WHERE a=1229;\nUPDATE t2 SET c='two hundred forty-two' WHERE a=1230;\nUPDATE t2 SET c='forty thousand five hundred forty-seven' WHERE a=1231;\nUPDATE t2 SET c='fifty-two thousand nine hundred nineteen' WHERE a=1232;\nUPDATE t2 SET c='thirty-eight thousand seven hundred sixty-two' WHERE a=1233;\nUPDATE t2 SET c='sixty-six thousand eight hundred forty-two' WHERE a=1234;\nUPDATE t2 SET c='seventy-six thousand two hundred seventy' WHERE a=1235;\nUPDATE t2 SET c='two thousand six hundred ten' WHERE a=1236;\nUPDATE t2 SET c='twenty-eight thousand seven hundred nineteen' WHERE a=1237;\nUPDATE t2 SET c='thirty-nine thousand seven hundred ninety-five' WHERE a=1238;\nUPDATE t2 SET c='thirty-two thousand two hundred nineteen' WHERE a=1239;\nUPDATE t2 SET c='forty-five thousand four hundred seventy-three' WHERE a=1240;\nUPDATE t2 SET c='seventy-one thousand eight hundred twenty-five' WHERE a=1241;\nUPDATE t2 SET c='eleven thousand six hundred ninety-three' WHERE a=1242;\nUPDATE t2 SET c='five thousand eight hundred eighty-eight' WHERE a=1243;\nUPDATE t2 SET c='one thousand one hundred fourteen' WHERE a=1244;\nUPDATE t2 SET c='sixty-three thousand one hundred fifty-seven' WHERE a=1245;\nUPDATE t2 SET c='fifty-eight thousand one hundred eighteen' WHERE a=1246;\nUPDATE t2 SET c='twenty-six thousand one hundred sixteen' WHERE a=1247;\nUPDATE t2 SET c='forty-four thousand nine hundred eight' WHERE a=1248;\nUPDATE t2 SET c='forty-nine thousand three hundred eighteen' WHERE a=1249;\nUPDATE t2 SET c='ninety-six thousand eight hundred fifty' WHERE a=1250;\nUPDATE t2 SET c='ninety-six thousand one hundred forty-two' WHERE a=1251;\nUPDATE t2 SET c='one thousand six hundred six' WHERE a=1252;\nUPDATE t2 SET c='twenty-six thousand six hundred eighty-six' WHERE a=1253;\nUPDATE t2 SET c='ninety-six thousand nine hundred sixty-three' WHERE a=1254;\nUPDATE t2 SET c='fifty thousand six hundred fifty-three' WHERE a=1255;\nUPDATE t2 SET c='two thousand nine hundred sixty-six' WHERE a=1256;\nUPDATE t2 SET c='seventy-three thousand four hundred ninety-eight' WHERE a=1257;\nUPDATE t2 SET c='eighty-four thousand six hundred eighty-two' WHERE a=1258;\nUPDATE t2 SET c='eight thousand eighty-one' WHERE a=1259;\nUPDATE t2 SET c='thirty-eight thousand six hundred ten' WHERE a=1260;\nUPDATE t2 SET c='seventy-three thousand nine hundred sixty' WHERE a=1261;\nUPDATE t2 SET c='thirty-nine thousand six hundred thirteen' WHERE a=1262;\nUPDATE t2 SET c='eighty-two thousand eight hundred sixty-three' WHERE a=1263;\nUPDATE t2 SET c='twenty-seven thousand four hundred sixteen' WHERE a=1264;\nUPDATE t2 SET c='forty thousand nine hundred sixty-eight' WHERE a=1265;\nUPDATE t2 SET c='ninety-three thousand three hundred fifty-one' WHERE a=1266;\nUPDATE t2 SET c='fifty thousand four hundred twenty-six' WHERE a=1267;\nUPDATE t2 SET c='seventy-two thousand eight hundred eighteen' WHERE a=1268;\nUPDATE t2 SET c='forty thousand eight hundred thirty-four' WHERE a=1269;\nUPDATE t2 SET c='thirty-one thousand nine hundred forty' WHERE a=1270;\nUPDATE t2 SET c='twenty-two thousand five hundred twenty-one' WHERE a=1271;\nUPDATE t2 SET c='fifty thousand seven hundred thirty-four' WHERE a=1272;\nUPDATE t2 SET c='sixty-eight thousand three hundred forty-seven' WHERE a=1273;\nUPDATE t2 SET c='fifty-one thousand two hundred eighteen' WHERE a=1274;\nUPDATE t2 SET c='forty-three thousand fifty-six' WHERE a=1275;\nUPDATE t2 SET c='fifty-four thousand three hundred three' WHERE a=1276;\nUPDATE t2 SET c='seventy-three thousand four hundred six' WHERE a=1277;\nUPDATE t2 SET c='seven thousand five hundred forty-four' WHERE a=1278;\nUPDATE t2 SET c='sixty-two thousand three hundred sixty-six' WHERE a=1279;\nUPDATE t2 SET c='thirty-six thousand two hundred eight' WHERE a=1280;\nUPDATE t2 SET c='eighty-three thousand four hundred sixty-six' WHERE a=1281;\nUPDATE t2 SET c='twelve thousand eight hundred sixty-three' WHERE a=1282;\nUPDATE t2 SET c='fourteen thousand thirty-one' WHERE a=1283;\nUPDATE t2 SET c='fifty-four thousand nine hundred twelve' WHERE a=1284;\nUPDATE t2 SET c='fifty-four thousand seven hundred twenty-seven' WHERE a=1285;\nUPDATE t2 SET c='fifty-six thousand four hundred nineteen' WHERE a=1286;\nUPDATE t2 SET c='two thousand four hundred eighty-nine' WHERE a=1287;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eight' WHERE a=1288;\nUPDATE t2 SET c='forty-five thousand two hundred seventy-four' WHERE a=1289;\nUPDATE t2 SET c='fifty-one thousand one hundred sixty-six' WHERE a=1290;\nUPDATE t2 SET c='sixty thousand nine hundred ninety-six' WHERE a=1291;\nUPDATE t2 SET c='thirty-four thousand four hundred sixty-one' WHERE a=1292;\nUPDATE t2 SET c='eighty-three thousand eight hundred fifty-eight' WHERE a=1293;\nUPDATE t2 SET c='fifty-seven thousand nine hundred fourteen' WHERE a=1294;\nUPDATE t2 SET c='forty-two thousand nine hundred thirty-two' WHERE a=1295;\nUPDATE t2 SET c='sixty-five thousand five hundred forty-two' WHERE a=1296;\nUPDATE t2 SET c='five thousand three hundred twenty-seven' WHERE a=1297;\nUPDATE t2 SET c='eighty-seven thousand three hundred eighty-eight' WHERE a=1298;\nUPDATE t2 SET c='ninety-three thousand seven hundred eighty-nine' WHERE a=1299;\nUPDATE t2 SET c='ninety-three thousand eight hundred sixty-nine' WHERE a=1300;\nUPDATE t2 SET c='ninety-seven thousand five hundred eighty-nine' WHERE a=1301;\nUPDATE t2 SET c='eighty thousand three hundred forty-four' WHERE a=1302;\nUPDATE t2 SET c='forty-three thousand five hundred nine' WHERE a=1303;\nUPDATE t2 SET c='seventeen thousand three hundred seventy-four' WHERE a=1304;\nUPDATE t2 SET c='sixty-eight thousand three hundred seven' WHERE a=1305;\nUPDATE t2 SET c='eighty-one thousand six' WHERE a=1306;\nUPDATE t2 SET c='ninety-four thousand one hundred twenty-seven' WHERE a=1307;\nUPDATE t2 SET c='ninety-two thousand nine hundred nineteen' WHERE a=1308;\nUPDATE t2 SET c='ninety-two thousand two hundred eighty' WHERE a=1309;\nUPDATE t2 SET c='forty-six thousand nine hundred ninety-three' WHERE a=1310;\nUPDATE t2 SET c='ninety-nine thousand eight hundred five' WHERE a=1311;\nUPDATE t2 SET c='forty-one thousand six hundred fifty-seven' WHERE a=1312;\nUPDATE t2 SET c='eighty-two thousand seven hundred fifty-four' WHERE a=1313;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventeen' WHERE a=1314;\nUPDATE t2 SET c='eighty-six thousand four hundred eighty-two' WHERE a=1315;\nUPDATE t2 SET c='twenty-five thousand one hundred fifty-three' WHERE a=1316;\nUPDATE t2 SET c='seventy-seven thousand one hundred fifty-two' WHERE a=1317;\nUPDATE t2 SET c='seventy-eight thousand seven hundred nine' WHERE a=1318;\nUPDATE t2 SET c='fifty-five thousand forty-six' WHERE a=1319;\nUPDATE t2 SET c='ninety-four thousand three hundred sixty-four' WHERE a=1320;\nUPDATE t2 SET c='fifty-eight thousand fifty' WHERE a=1321;\nUPDATE t2 SET c='four thousand six hundred forty-five' WHERE a=1322;\nUPDATE t2 SET c='eight thousand eighty-three' WHERE a=1323;\nUPDATE t2 SET c='seventy-four thousand two hundred fifty-three' WHERE a=1324;\nUPDATE t2 SET c='sixty-six thousand fifty-six' WHERE a=1325;\nUPDATE t2 SET c='twenty-two thousand seven hundred ninety-eight' WHERE a=1326;\nUPDATE t2 SET c='thirty-five thousand four hundred seventy-five' WHERE a=1327;\nUPDATE t2 SET c='seventy-three thousand two hundred ninety-four' WHERE a=1328;\nUPDATE t2 SET c='seventy-five thousand four hundred thirty-six' WHERE a=1329;\nUPDATE t2 SET c='forty thousand one hundred sixty-eight' WHERE a=1330;\nUPDATE t2 SET c='ninety-four thousand four hundred twenty-five' WHERE a=1331;\nUPDATE t2 SET c='thirty-four thousand eight hundred eight' WHERE a=1332;\nUPDATE t2 SET c='sixty-one thousand nine hundred fifty-one' WHERE a=1333;\nUPDATE t2 SET c='sixty-seven thousand three hundred eighty-eight' WHERE a=1334;\nUPDATE t2 SET c='ninety-one thousand two hundred eighty-six' WHERE a=1335;\nUPDATE t2 SET c='fifty thousand two hundred forty-three' WHERE a=1336;\nUPDATE t2 SET c='thirty-eight thousand six hundred seventy-seven' WHERE a=1337;\nUPDATE t2 SET c='thirty-three thousand nine hundred sixty' WHERE a=1338;\nUPDATE t2 SET c='seventy-eight thousand five hundred seventy-seven' WHERE a=1339;\nUPDATE t2 SET c='sixty-three thousand five hundred twenty-one' WHERE a=1340;\nUPDATE t2 SET c='ninety-five thousand eight hundred nine' WHERE a=1341;\nUPDATE t2 SET c='forty-five thousand six hundred fifty-four' WHERE a=1342;\nUPDATE t2 SET c='twenty-seven thousand one hundred six' WHERE a=1343;\nUPDATE t2 SET c='eight thousand seven hundred five' WHERE a=1344;\nUPDATE t2 SET c='twenty-five thousand one hundred fifty-six' WHERE a=1345;\nUPDATE t2 SET c='forty-two thousand eight hundred fifty-two' WHERE a=1346;\nUPDATE t2 SET c='fifteen thousand one hundred sixteen' WHERE a=1347;\nUPDATE t2 SET c='sixty-eight thousand nine hundred sixty-five' WHERE a=1348;\nUPDATE t2 SET c='forty-five thousand five hundred fourteen' WHERE a=1349;\nUPDATE t2 SET c='eighty-one thousand seven hundred eighty-seven' WHERE a=1350;\nUPDATE t2 SET c='twenty-seven thousand four hundred forty' WHERE a=1351;\nUPDATE t2 SET c='eighty-four thousand five hundred seven' WHERE a=1352;\nUPDATE t2 SET c='sixty-two thousand six hundred eleven' WHERE a=1353;\nUPDATE t2 SET c='sixty-three thousand two hundred seventy-three' WHERE a=1354;\nUPDATE t2 SET c='forty-three thousand one hundred eighteen' WHERE a=1355;\nUPDATE t2 SET c='forty-nine thousand three hundred fifty' WHERE a=1356;\nUPDATE t2 SET c='ten thousand seventy-three' WHERE a=1357;\nUPDATE t2 SET c='fifty-six thousand four hundred ninety-three' WHERE a=1358;\nUPDATE t2 SET c='three thousand six hundred sixty-six' WHERE a=1359;\nUPDATE t2 SET c='fifty thousand four hundred seventy-four' WHERE a=1360;\nUPDATE t2 SET c='ninety-one thousand eight hundred twelve' WHERE a=1361;\nUPDATE t2 SET c='eight thousand seven hundred twenty-six' WHERE a=1362;\nUPDATE t2 SET c='two thousand seven hundred seventy' WHERE a=1363;\nUPDATE t2 SET c='ninety-eight thousand fifty-three' WHERE a=1364;\nUPDATE t2 SET c='seventy-seven thousand eight hundred twenty-four' WHERE a=1365;\nUPDATE t2 SET c='seventy-two thousand five hundred forty-nine' WHERE a=1366;\nUPDATE t2 SET c='four hundred eighty-nine' WHERE a=1367;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-eight' WHERE a=1368;\nUPDATE t2 SET c='sixty thousand five hundred eighty-eight' WHERE a=1369;\nUPDATE t2 SET c='twenty-seven thousand eight hundred ninety-nine' WHERE a=1370;\nUPDATE t2 SET c='thirty-two thousand ninety-six' WHERE a=1371;\nUPDATE t2 SET c='sixty-four thousand six hundred thirty' WHERE a=1372;\nUPDATE t2 SET c='fifty-three thousand one hundred ninety-one' WHERE a=1373;\nUPDATE t2 SET c='fifty-six thousand three hundred fifty-three' WHERE a=1374;\nUPDATE t2 SET c='seventeen thousand seven hundred thirty-one' WHERE a=1375;\nUPDATE t2 SET c='twenty-nine thousand two hundred fifty-two' WHERE a=1376;\nUPDATE t2 SET c='five thousand one hundred eighty-nine' WHERE a=1377;\nUPDATE t2 SET c='five thousand eight hundred sixty-three' WHERE a=1378;\nUPDATE t2 SET c='two thousand seventy-seven' WHERE a=1379;\nUPDATE t2 SET c='forty-six thousand seven hundred seven' WHERE a=1380;\nUPDATE t2 SET c='eight thousand one hundred sixty-two' WHERE a=1381;\nUPDATE t2 SET c='forty-five thousand eight hundred fifty' WHERE a=1382;\nUPDATE t2 SET c='eighty-two thousand eight hundred forty-three' WHERE a=1383;\nUPDATE t2 SET c='ninety-three thousand three hundred twenty-four' WHERE a=1384;\nUPDATE t2 SET c='seventy-eight thousand seven hundred thirty-two' WHERE a=1385;\nUPDATE t2 SET c='twelve thousand six hundred thirty-three' WHERE a=1386;\nUPDATE t2 SET c='eighty-one thousand seven hundred fifty-three' WHERE a=1387;\nUPDATE t2 SET c='ninety-two thousand four hundred eleven' WHERE a=1388;\nUPDATE t2 SET c='seventy-three thousand seven hundred eighty-one' WHERE a=1389;\nUPDATE t2 SET c='forty-five thousand three hundred fifty-eight' WHERE a=1390;\nUPDATE t2 SET c='fifty-one thousand four hundred thirty-seven' WHERE a=1391;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eighty-one' WHERE a=1392;\nUPDATE t2 SET c='seventy thousand two hundred seventy-two' WHERE a=1393;\nUPDATE t2 SET c='forty thousand nine hundred fifty-four' WHERE a=1394;\nUPDATE t2 SET c='eighty-two thousand six hundred twenty-seven' WHERE a=1395;\nUPDATE t2 SET c='eighty-four thousand nine hundred twelve' WHERE a=1396;\nUPDATE t2 SET c='thirty-nine thousand six hundred sixty-nine' WHERE a=1397;\nUPDATE t2 SET c='ninety-eight thousand three hundred forty-five' WHERE a=1398;\nUPDATE t2 SET c='sixty-one thousand one hundred ninety-six' WHERE a=1399;\nUPDATE t2 SET c='seventy-seven thousand five hundred ninety-six' WHERE a=1400;\nUPDATE t2 SET c='two thousand ninety-nine' WHERE a=1401;\nUPDATE t2 SET c='eighty-two thousand six hundred fifteen' WHERE a=1402;\nUPDATE t2 SET c='fifty-one thousand six hundred thirty-five' WHERE a=1403;\nUPDATE t2 SET c='forty-one thousand sixty-seven' WHERE a=1404;\nUPDATE t2 SET c='thirty thousand six hundred seventy-two' WHERE a=1405;\nUPDATE t2 SET c='ninety-six thousand seven hundred fifty-two' WHERE a=1406;\nUPDATE t2 SET c='eighty-five thousand three hundred forty-six' WHERE a=1407;\nUPDATE t2 SET c='twenty-nine thousand two hundred thirty-one' WHERE a=1408;\nUPDATE t2 SET c='sixty-six thousand four hundred thirteen' WHERE a=1409;\nUPDATE t2 SET c='forty thousand four hundred ninety-five' WHERE a=1410;\nUPDATE t2 SET c='eighty-three thousand four hundred twenty' WHERE a=1411;\nUPDATE t2 SET c='ninety-one thousand six hundred one' WHERE a=1412;\nUPDATE t2 SET c='eighteen thousand eight hundred seventy-three' WHERE a=1413;\nUPDATE t2 SET c='ninety-three thousand six hundred thirteen' WHERE a=1414;\nUPDATE t2 SET c='seventeen thousand four hundred eighty-one' WHERE a=1415;\nUPDATE t2 SET c='eighty-nine thousand four hundred seventy-two' WHERE a=1416;\nUPDATE t2 SET c='thirty-four thousand two hundred fifty-three' WHERE a=1417;\nUPDATE t2 SET c='six thousand two hundred sixty-five' WHERE a=1418;\nUPDATE t2 SET c='four thousand eight hundred ten' WHERE a=1419;\nUPDATE t2 SET c='forty-four thousand eight hundred sixty-eight' WHERE a=1420;\nUPDATE t2 SET c='three hundred thirteen' WHERE a=1421;\nUPDATE t2 SET c='twenty-three thousand seven hundred fifteen' WHERE a=1422;\nUPDATE t2 SET c='forty-nine thousand two hundred seventy' WHERE a=1423;\nUPDATE t2 SET c='four thousand eight hundred forty-three' WHERE a=1424;\nUPDATE t2 SET c='ninety-five thousand nine hundred seventy-three' WHERE a=1425;\nUPDATE t2 SET c='fifty-one thousand four hundred sixty-eight' WHERE a=1426;\nUPDATE t2 SET c='nine thousand ninety-eight' WHERE a=1427;\nUPDATE t2 SET c='eighty-seven thousand two hundred twenty-six' WHERE a=1428;\nUPDATE t2 SET c='eighty-one thousand nine hundred sixty-one' WHERE a=1429;\nUPDATE t2 SET c='thirty-six thousand six hundred twenty-three' WHERE a=1430;\nUPDATE t2 SET c='fifty-four thousand seven hundred fifty-five' WHERE a=1431;\nUPDATE t2 SET c='sixty-nine thousand one hundred fourteen' WHERE a=1432;\nUPDATE t2 SET c='twenty-two thousand nine hundred ninety-seven' WHERE a=1433;\nUPDATE t2 SET c='fifty-five thousand three hundred thirteen' WHERE a=1434;\nUPDATE t2 SET c='eighteen thousand one hundred three' WHERE a=1435;\nUPDATE t2 SET c='fifty-seven thousand four hundred fifty-two' WHERE a=1436;\nUPDATE t2 SET c='sixty-three thousand one hundred thirty-four' WHERE a=1437;\nUPDATE t2 SET c='ninety-two thousand two hundred thirty-six' WHERE a=1438;\nUPDATE t2 SET c='thirty thousand ninety-three' WHERE a=1439;\nUPDATE t2 SET c='thirteen thousand one hundred thirty' WHERE a=1440;\nUPDATE t2 SET c='forty-seven thousand nine hundred forty-three' WHERE a=1441;\nUPDATE t2 SET c='forty-eight thousand one hundred sixty' WHERE a=1442;\nUPDATE t2 SET c='thirty-eight thousand seventeen' WHERE a=1443;\nUPDATE t2 SET c='eighteen thousand one hundred seventeen' WHERE a=1444;\nUPDATE t2 SET c='forty-three thousand four hundred ninety' WHERE a=1445;\nUPDATE t2 SET c='thirty-four thousand seven hundred ten' WHERE a=1446;\nUPDATE t2 SET c='sixty-eight thousand six hundred eighty-seven' WHERE a=1447;\nUPDATE t2 SET c='eighty thousand seven hundred ninety-eight' WHERE a=1448;\nUPDATE t2 SET c='ninety thousand forty-eight' WHERE a=1449;\nUPDATE t2 SET c='twenty-three thousand five hundred forty-three' WHERE a=1450;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventy' WHERE a=1451;\nUPDATE t2 SET c='seventy-five thousand one hundred twenty-three' WHERE a=1452;\nUPDATE t2 SET c='sixty-nine thousand sixty-one' WHERE a=1453;\nUPDATE t2 SET c='fifty-eight thousand two hundred eighty-three' WHERE a=1454;\nUPDATE t2 SET c='thirty-one thousand four hundred six' WHERE a=1455;\nUPDATE t2 SET c='fifty-two thousand nine hundred seventy' WHERE a=1456;\nUPDATE t2 SET c='sixty-nine thousand five hundred fifty-two' WHERE a=1457;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-nine' WHERE a=1458;\nUPDATE t2 SET c='seventy-two thousand six hundred fifty-four' WHERE a=1459;\nUPDATE t2 SET c='forty-eight thousand three hundred sixty' WHERE a=1460;\nUPDATE t2 SET c='eighty-eight thousand four hundred eighty-three' WHERE a=1461;\nUPDATE t2 SET c='one thousand three hundred thirty-two' WHERE a=1462;\nUPDATE t2 SET c='eighty-seven thousand four hundred thirteen' WHERE a=1463;\nUPDATE t2 SET c='five thousand four hundred seventy-four' WHERE a=1464;\nUPDATE t2 SET c='twenty-one thousand seven hundred fifty' WHERE a=1465;\nUPDATE t2 SET c='twenty-two thousand four hundred fifty-one' WHERE a=1466;\nUPDATE t2 SET c='twenty-eight thousand two hundred one' WHERE a=1467;\nUPDATE t2 SET c='sixty-two thousand four hundred twenty-five' WHERE a=1468;\nUPDATE t2 SET c='thirty-seven thousand six hundred thirty-one' WHERE a=1469;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seventy-three' WHERE a=1470;\nUPDATE t2 SET c='seventy-two thousand eight hundred ninety-one' WHERE a=1471;\nUPDATE t2 SET c='eighty-five thousand six hundred thirty-five' WHERE a=1472;\nUPDATE t2 SET c='ninety-five thousand seven hundred seventy-four' WHERE a=1473;\nUPDATE t2 SET c='fifteen thousand eight hundred forty-one' WHERE a=1474;\nUPDATE t2 SET c='ninety-six thousand nine hundred thirteen' WHERE a=1475;\nUPDATE t2 SET c='fourteen thousand one hundred twenty-nine' WHERE a=1476;\nUPDATE t2 SET c='ninety-eight thousand two hundred forty-six' WHERE a=1477;\nUPDATE t2 SET c='ninety-nine thousand seven hundred sixty-seven' WHERE a=1478;\nUPDATE t2 SET c='three thousand seven hundred eighty-seven' WHERE a=1479;\nUPDATE t2 SET c='fifty-nine thousand two hundred sixteen' WHERE a=1480;\nUPDATE t2 SET c='eighteen thousand two hundred seventy-three' WHERE a=1481;\nUPDATE t2 SET c='eighty-six thousand three hundred thirty-eight' WHERE a=1482;\nUPDATE t2 SET c='ninety thousand three hundred twenty-four' WHERE a=1483;\nUPDATE t2 SET c='sixty-three thousand six hundred eighty-four' WHERE a=1484;\nUPDATE t2 SET c='sixteen thousand three hundred fifty-one' WHERE a=1485;\nUPDATE t2 SET c='seventy-two thousand three hundred fifteen' WHERE a=1486;\nUPDATE t2 SET c='fifty-five thousand seven' WHERE a=1487;\nUPDATE t2 SET c='twenty-seven thousand two hundred seventy-seven' WHERE a=1488;\nUPDATE t2 SET c='seventy-six thousand fourteen' WHERE a=1489;\nUPDATE t2 SET c='sixty-two thousand one hundred four' WHERE a=1490;\nUPDATE t2 SET c='twenty-four thousand sixty-four' WHERE a=1491;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty-nine' WHERE a=1492;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixteen' WHERE a=1493;\nUPDATE t2 SET c='forty-three thousand five hundred sixty-two' WHERE a=1494;\nUPDATE t2 SET c='fifty-six thousand ninety-two' WHERE a=1495;\nUPDATE t2 SET c='forty thousand three hundred ten' WHERE a=1496;\nUPDATE t2 SET c='eleven thousand one hundred eighty-seven' WHERE a=1497;\nUPDATE t2 SET c='three hundred sixty-two' WHERE a=1498;\nUPDATE t2 SET c='ninety-five thousand ninety-seven' WHERE a=1499;\nUPDATE t2 SET c='eight thousand six hundred fifty-two' WHERE a=1500;\nUPDATE t2 SET c='twenty-three thousand four hundred ninety-six' WHERE a=1501;\nUPDATE t2 SET c='twenty-one thousand eight hundred thirty-seven' WHERE a=1502;\nUPDATE t2 SET c='seventy-four thousand four hundred ninety-four' WHERE a=1503;\nUPDATE t2 SET c='nineteen thousand six hundred thirty-six' WHERE a=1504;\nUPDATE t2 SET c='twenty-three thousand' WHERE a=1505;\nUPDATE t2 SET c='fourteen thousand eight hundred four' WHERE a=1506;\nUPDATE t2 SET c='forty thousand sixty-nine' WHERE a=1507;\nUPDATE t2 SET c='ninety-four thousand nine hundred sixteen' WHERE a=1508;\nUPDATE t2 SET c='eight thousand nine hundred twenty-eight' WHERE a=1509;\nUPDATE t2 SET c='eight thousand three hundred one' WHERE a=1510;\nUPDATE t2 SET c='eighty thousand eight hundred eighty-one' WHERE a=1511;\nUPDATE t2 SET c='forty-one thousand one hundred fifty-six' WHERE a=1512;\nUPDATE t2 SET c='fifteen thousand four hundred twenty' WHERE a=1513;\nUPDATE t2 SET c='ninety-two thousand four hundred eighty-one' WHERE a=1514;\nUPDATE t2 SET c='eight thousand sixty-one' WHERE a=1515;\nUPDATE t2 SET c='eighty-three thousand eight hundred thirty-four' WHERE a=1516;\nUPDATE t2 SET c='sixty-one thousand' WHERE a=1517;\nUPDATE t2 SET c='ninety-one thousand nine hundred eighty-two' WHERE a=1518;\nUPDATE t2 SET c='seventy-one thousand three hundred thirty-four' WHERE a=1519;\nUPDATE t2 SET c='fifty-six thousand thirty-four' WHERE a=1520;\nUPDATE t2 SET c='sixty-six thousand five hundred twenty-one' WHERE a=1521;\nUPDATE t2 SET c='fifty-seven thousand two hundred sixty-five' WHERE a=1522;\nUPDATE t2 SET c='twenty-two thousand seven hundred eighty' WHERE a=1523;\nUPDATE t2 SET c='nine thousand eight hundred ninety-seven' WHERE a=1524;\nUPDATE t2 SET c='sixty-five thousand one hundred twenty-five' WHERE a=1525;\nUPDATE t2 SET c='thirty-nine thousand five hundred eighty-eight' WHERE a=1526;\nUPDATE t2 SET c='thirty thousand five hundred fifty-two' WHERE a=1527;\nUPDATE t2 SET c='twenty-one thousand six hundred forty-one' WHERE a=1528;\nUPDATE t2 SET c='ninety-four thousand one hundred seventy-six' WHERE a=1529;\nUPDATE t2 SET c='seventy-seven thousand four hundred six' WHERE a=1530;\nUPDATE t2 SET c='eighty thousand nine hundred twenty-two' WHERE a=1531;\nUPDATE t2 SET c='ninety-two thousand five hundred fifty-three' WHERE a=1532;\nUPDATE t2 SET c='nine thousand four hundred fifty' WHERE a=1533;\nUPDATE t2 SET c='seventy-one thousand six hundred ninety-one' WHERE a=1534;\nUPDATE t2 SET c='thirty-five thousand seven hundred five' WHERE a=1535;\nUPDATE t2 SET c='twenty-five thousand six hundred sixty-six' WHERE a=1536;\nUPDATE t2 SET c='twenty-one thousand six hundred ninety-nine' WHERE a=1537;\nUPDATE t2 SET c='nine thousand nine hundred fifty-five' WHERE a=1538;\nUPDATE t2 SET c='fifty-five thousand eight hundred eighteen' WHERE a=1539;\nUPDATE t2 SET c='fifty-six thousand four hundred eighty-three' WHERE a=1540;\nUPDATE t2 SET c='forty-three thousand five hundred ninety-two' WHERE a=1541;\nUPDATE t2 SET c='fifty-four thousand nine hundred forty-eight' WHERE a=1542;\nUPDATE t2 SET c='fifty-six thousand six hundred sixty-eight' WHERE a=1543;\nUPDATE t2 SET c='forty-three thousand five hundred seventy-six' WHERE a=1544;\nUPDATE t2 SET c='fifty-two thousand seven hundred thirty-eight' WHERE a=1545;\nUPDATE t2 SET c='forty-nine thousand six hundred eight' WHERE a=1546;\nUPDATE t2 SET c='twenty thousand two hundred ninety-two' WHERE a=1547;\nUPDATE t2 SET c='thirty-eight thousand six hundred five' WHERE a=1548;\nUPDATE t2 SET c='nineteen thousand four hundred three' WHERE a=1549;\nUPDATE t2 SET c='forty-one thousand eight hundred ten' WHERE a=1550;\nUPDATE t2 SET c='eighty-nine thousand five hundred twenty-six' WHERE a=1551;\nUPDATE t2 SET c='forty-nine thousand two hundred seventy-one' WHERE a=1552;\nUPDATE t2 SET c='sixty thousand two' WHERE a=1553;\nUPDATE t2 SET c='eighty-five thousand seven hundred seventy-five' WHERE a=1554;\nUPDATE t2 SET c='ninety thousand six hundred seventy-five' WHERE a=1555;\nUPDATE t2 SET c='seventeen thousand five hundred fifty-three' WHERE a=1556;\nUPDATE t2 SET c='eighty-six thousand six hundred sixty-seven' WHERE a=1557;\nUPDATE t2 SET c='thirty-eight thousand seven hundred seventy-one' WHERE a=1558;\nUPDATE t2 SET c='seventy-six thousand two hundred fifty-nine' WHERE a=1559;\nUPDATE t2 SET c='eighty-two thousand seven hundred forty' WHERE a=1560;\nUPDATE t2 SET c='seventy-one thousand four hundred seventy-nine' WHERE a=1561;\nUPDATE t2 SET c='seventy thousand five hundred seventy-eight' WHERE a=1562;\nUPDATE t2 SET c='sixty-nine thousand six hundred four' WHERE a=1563;\nUPDATE t2 SET c='fifteen thousand six hundred forty-eight' WHERE a=1564;\nUPDATE t2 SET c='seventy-five thousand three hundred forty-seven' WHERE a=1565;\nUPDATE t2 SET c='forty-nine thousand two hundred thirty-two' WHERE a=1566;\nUPDATE t2 SET c='thirty thousand eight hundred sixty-eight' WHERE a=1567;\nUPDATE t2 SET c='thirty-six thousand six hundred eighty-six' WHERE a=1568;\nUPDATE t2 SET c='seventy-six thousand two hundred twelve' WHERE a=1569;\nUPDATE t2 SET c='seventy-six thousand eight hundred seventy' WHERE a=1570;\nUPDATE t2 SET c='eleven thousand eight hundred fifty-nine' WHERE a=1571;\nUPDATE t2 SET c='forty-four thousand four hundred eighty-seven' WHERE a=1572;\nUPDATE t2 SET c='thirty-seven thousand seven hundred twenty' WHERE a=1573;\nUPDATE t2 SET c='thirty-seven thousand seven hundred eighty-three' WHERE a=1574;\nUPDATE t2 SET c='thirteen thousand nine hundred thirty' WHERE a=1575;\nUPDATE t2 SET c='sixteen thousand thirteen' WHERE a=1576;\nUPDATE t2 SET c='thirty-five thousand eight hundred thirty-four' WHERE a=1577;\nUPDATE t2 SET c='thirty-two thousand six hundred forty-two' WHERE a=1578;\nUPDATE t2 SET c='twelve thousand six hundred twenty' WHERE a=1579;\nUPDATE t2 SET c='thirty-nine thousand seven hundred fourteen' WHERE a=1580;\nUPDATE t2 SET c='eighty-two thousand one hundred eleven' WHERE a=1581;\nUPDATE t2 SET c='forty-one thousand seventy-six' WHERE a=1582;\nUPDATE t2 SET c='eighty-four thousand five hundred fifty-nine' WHERE a=1583;\nUPDATE t2 SET c='ninety-two thousand five hundred twenty-five' WHERE a=1584;\nUPDATE t2 SET c='nine thousand seven hundred ninety' WHERE a=1585;\nUPDATE t2 SET c='fifty-one thousand ninety-four' WHERE a=1586;\nUPDATE t2 SET c='eighty-six thousand one hundred fifty-four' WHERE a=1587;\nUPDATE t2 SET c='sixty-three thousand one hundred five' WHERE a=1588;\nUPDATE t2 SET c='twenty-eight thousand one hundred seventy-three' WHERE a=1589;\nUPDATE t2 SET c='thirty thousand seven hundred seventy-six' WHERE a=1590;\nUPDATE t2 SET c='sixty-four thousand six hundred twenty-nine' WHERE a=1591;\nUPDATE t2 SET c='forty-nine thousand three hundred ninety-four' WHERE a=1592;\nUPDATE t2 SET c='three thousand five hundred thirty-three' WHERE a=1593;\nUPDATE t2 SET c='eleven thousand' WHERE a=1594;\nUPDATE t2 SET c='fifty thousand seven hundred twenty-eight' WHERE a=1595;\nUPDATE t2 SET c='fifty-one thousand one hundred twenty-nine' WHERE a=1596;\nUPDATE t2 SET c='forty thousand five hundred eighty-four' WHERE a=1597;\nUPDATE t2 SET c='fifty-nine thousand three hundred thirteen' WHERE a=1598;\nUPDATE t2 SET c='thirty-four thousand three hundred ten' WHERE a=1599;\nUPDATE t2 SET c='seventy-four thousand six hundred seventy-three' WHERE a=1600;\nUPDATE t2 SET c='fifty-seven thousand seven hundred twenty-nine' WHERE a=1601;\nUPDATE t2 SET c='twenty thousand five' WHERE a=1602;\nUPDATE t2 SET c='eighty-one thousand nine hundred thirty-five' WHERE a=1603;\nUPDATE t2 SET c='thirty-seven thousand seventy' WHERE a=1604;\nUPDATE t2 SET c='eighteen thousand five hundred twenty' WHERE a=1605;\nUPDATE t2 SET c='fifty-eight thousand seven hundred forty-three' WHERE a=1606;\nUPDATE t2 SET c='twenty-nine thousand eight hundred twenty-nine' WHERE a=1607;\nUPDATE t2 SET c='eighty thousand eight hundred seventy-nine' WHERE a=1608;\nUPDATE t2 SET c='forty-one thousand four hundred ninety-seven' WHERE a=1609;\nUPDATE t2 SET c='ninety-eight thousand one hundred sixty-nine' WHERE a=1610;\nUPDATE t2 SET c='ninety-three thousand three hundred eight' WHERE a=1611;\nUPDATE t2 SET c='eighty-nine thousand six hundred ninety-nine' WHERE a=1612;\nUPDATE t2 SET c='fifty thousand three hundred ninety-four' WHERE a=1613;\nUPDATE t2 SET c='fifty-seven thousand six hundred twelve' WHERE a=1614;\nUPDATE t2 SET c='three thousand five hundred sixty-nine' WHERE a=1615;\nUPDATE t2 SET c='twenty thousand six hundred sixty-eight' WHERE a=1616;\nUPDATE t2 SET c='ninety-three thousand eleven' WHERE a=1617;\nUPDATE t2 SET c='twenty-six thousand six hundred six' WHERE a=1618;\nUPDATE t2 SET c='fifty-three thousand nine hundred eight' WHERE a=1619;\nUPDATE t2 SET c='forty-seven thousand six hundred thirty-three' WHERE a=1620;\nUPDATE t2 SET c='forty thousand four hundred seventy-three' WHERE a=1621;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventy-two' WHERE a=1622;\nUPDATE t2 SET c='twenty-three thousand three hundred four' WHERE a=1623;\nUPDATE t2 SET c='thirty-eight thousand two hundred forty-four' WHERE a=1624;\nUPDATE t2 SET c='thirty-eight thousand five hundred eighty-eight' WHERE a=1625;\nUPDATE t2 SET c='seventy-one thousand seven hundred three' WHERE a=1626;\nUPDATE t2 SET c='seventy-three thousand twenty-six' WHERE a=1627;\nUPDATE t2 SET c='twenty-one thousand three hundred fifty-eight' WHERE a=1628;\nUPDATE t2 SET c='forty-seven thousand one hundred eight' WHERE a=1629;\nUPDATE t2 SET c='ninety-three thousand two hundred thirty-four' WHERE a=1630;\nUPDATE t2 SET c='eighty-two thousand seven hundred twenty' WHERE a=1631;\nUPDATE t2 SET c='twelve thousand seventy-four' WHERE a=1632;\nUPDATE t2 SET c='seventy-one thousand four hundred ninety-nine' WHERE a=1633;\nUPDATE t2 SET c='fifteen thousand two hundred sixty-two' WHERE a=1634;\nUPDATE t2 SET c='thirty-three thousand eighteen' WHERE a=1635;\nUPDATE t2 SET c='fifty-one thousand fifty-nine' WHERE a=1636;\nUPDATE t2 SET c='eighty-nine thousand four hundred four' WHERE a=1637;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty-nine' WHERE a=1638;\nUPDATE t2 SET c='forty-five thousand six hundred nine' WHERE a=1639;\nUPDATE t2 SET c='ninety-three thousand fifty-six' WHERE a=1640;\nUPDATE t2 SET c='eighty-nine thousand one hundred seventy-eight' WHERE a=1641;\nUPDATE t2 SET c='eighty-nine thousand nine hundred sixty-two' WHERE a=1642;\nUPDATE t2 SET c='ninety-six thousand seventy-four' WHERE a=1643;\nUPDATE t2 SET c='eighty-seven thousand one hundred ninety-four' WHERE a=1644;\nUPDATE t2 SET c='ninety-six thousand three hundred fifty-nine' WHERE a=1645;\nUPDATE t2 SET c='ninety-six thousand five hundred five' WHERE a=1646;\nUPDATE t2 SET c='ninety-six thousand thirty-four' WHERE a=1647;\nUPDATE t2 SET c='seventy-nine thousand four hundred thirty-eight' WHERE a=1648;\nUPDATE t2 SET c='seventeen thousand one' WHERE a=1649;\nUPDATE t2 SET c='fifteen thousand six hundred eight' WHERE a=1650;\nUPDATE t2 SET c='forty-nine thousand four hundred one' WHERE a=1651;\nUPDATE t2 SET c='fifty-six thousand five hundred fifty-six' WHERE a=1652;\nUPDATE t2 SET c='twenty-four thousand seven hundred eleven' WHERE a=1653;\nUPDATE t2 SET c='eighty-seven thousand two hundred eighty-four' WHERE a=1654;\nUPDATE t2 SET c='ten thousand four hundred eighty-five' WHERE a=1655;\nUPDATE t2 SET c='eleven thousand two hundred fifty-three' WHERE a=1656;\nUPDATE t2 SET c='one thousand nine hundred twenty-three' WHERE a=1657;\nUPDATE t2 SET c='seventy-eight thousand five hundred eighty-five' WHERE a=1658;\nUPDATE t2 SET c='sixty-eight thousand five hundred thirty-five' WHERE a=1659;\nUPDATE t2 SET c='ninety-eight thousand five hundred fifty' WHERE a=1660;\nUPDATE t2 SET c='twenty-six thousand four hundred nineteen' WHERE a=1661;\nUPDATE t2 SET c='five thousand two hundred sixty-two' WHERE a=1662;\nUPDATE t2 SET c='eleven thousand six hundred sixty-seven' WHERE a=1663;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty-three' WHERE a=1664;\nUPDATE t2 SET c='sixty-two thousand nine hundred eighteen' WHERE a=1665;\nUPDATE t2 SET c='eighty-three thousand forty-two' WHERE a=1666;\nUPDATE t2 SET c='seventy-eight thousand three hundred forty-two' WHERE a=1667;\nUPDATE t2 SET c='fifty-six thousand six hundred twelve' WHERE a=1668;\nUPDATE t2 SET c='forty-four thousand seven hundred ninety-nine' WHERE a=1669;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ninety-seven' WHERE a=1670;\nUPDATE t2 SET c='seventy-one thousand nine hundred forty-three' WHERE a=1671;\nUPDATE t2 SET c='eighty-one thousand seven hundred twenty-two' WHERE a=1672;\nUPDATE t2 SET c='eighty-three thousand four hundred seventy-two' WHERE a=1673;\nUPDATE t2 SET c='forty-nine thousand forty-seven' WHERE a=1674;\nUPDATE t2 SET c='ninety-three thousand two hundred fifty' WHERE a=1675;\nUPDATE t2 SET c='four thousand six hundred sixteen' WHERE a=1676;\nUPDATE t2 SET c='eighty-three thousand six hundred eighty-one' WHERE a=1677;\nUPDATE t2 SET c='fifteen thousand two hundred fifty-three' WHERE a=1678;\nUPDATE t2 SET c='sixteen thousand seven hundred seventy-four' WHERE a=1679;\nUPDATE t2 SET c='seventy-nine thousand two hundred fifty' WHERE a=1680;\nUPDATE t2 SET c='sixty thousand three hundred thirty' WHERE a=1681;\nUPDATE t2 SET c='ninety-one thousand three hundred eight' WHERE a=1682;\nUPDATE t2 SET c='twenty-four thousand seven hundred ninety-nine' WHERE a=1683;\nUPDATE t2 SET c='forty-eight thousand seven hundred forty' WHERE a=1684;\nUPDATE t2 SET c='twenty thousand six hundred eighteen' WHERE a=1685;\nUPDATE t2 SET c='twenty-two thousand two hundred ninety' WHERE a=1686;\nUPDATE t2 SET c='seventy-three thousand six hundred eight' WHERE a=1687;\nUPDATE t2 SET c='seventeen thousand nine hundred twenty-seven' WHERE a=1688;\nUPDATE t2 SET c='sixty-seven thousand four hundred sixty-three' WHERE a=1689;\nUPDATE t2 SET c='eighty-nine thousand two hundred ninety-one' WHERE a=1690;\nUPDATE t2 SET c='twenty-one thousand two hundred seventy-seven' WHERE a=1691;\nUPDATE t2 SET c='eighty-one thousand ninety-seven' WHERE a=1692;\nUPDATE t2 SET c='fifty-one thousand six hundred fifty-four' WHERE a=1693;\nUPDATE t2 SET c='eighty-two thousand one hundred ninety-seven' WHERE a=1694;\nUPDATE t2 SET c='sixteen thousand ninety-one' WHERE a=1695;\nUPDATE t2 SET c='sixty-two thousand five hundred thirty-five' WHERE a=1696;\nUPDATE t2 SET c='eighty-four thousand one hundred thirty-nine' WHERE a=1697;\nUPDATE t2 SET c='twenty-one thousand two hundred forty-five' WHERE a=1698;\nUPDATE t2 SET c='ninety-three thousand one hundred fifty-one' WHERE a=1699;\nUPDATE t2 SET c='twenty-five thousand three hundred twenty-eight' WHERE a=1700;\nUPDATE t2 SET c='one thousand six hundred seventeen' WHERE a=1701;\nUPDATE t2 SET c='twenty-five thousand eight hundred nine' WHERE a=1702;\nUPDATE t2 SET c='ninety-four thousand six hundred twenty-five' WHERE a=1703;\nUPDATE t2 SET c='eighty-eight thousand one hundred thirty-seven' WHERE a=1704;\nUPDATE t2 SET c='sixty-two thousand six hundred forty' WHERE a=1705;\nUPDATE t2 SET c='eighteen thousand seven hundred fifteen' WHERE a=1706;\nUPDATE t2 SET c='forty-three thousand five hundred thirteen' WHERE a=1707;\nUPDATE t2 SET c='eighty-one thousand two hundred four' WHERE a=1708;\nUPDATE t2 SET c='ten thousand three hundred thirty-nine' WHERE a=1709;\nUPDATE t2 SET c='thirteen thousand six hundred ninety-six' WHERE a=1710;\nUPDATE t2 SET c='ninety-nine thousand seven hundred fifty-six' WHERE a=1711;\nUPDATE t2 SET c='forty-seven thousand seven hundred seventy' WHERE a=1712;\nUPDATE t2 SET c='fifty-one thousand four hundred ten' WHERE a=1713;\nUPDATE t2 SET c='eighty-six thousand four hundred thirty-one' WHERE a=1714;\nUPDATE t2 SET c='eighteen thousand four hundred sixteen' WHERE a=1715;\nUPDATE t2 SET c='fifty-three thousand nine hundred fifty-eight' WHERE a=1716;\nUPDATE t2 SET c='sixty-two thousand sixty-six' WHERE a=1717;\nUPDATE t2 SET c='sixty-one thousand six hundred nine' WHERE a=1718;\nUPDATE t2 SET c='seventy-five thousand nine hundred forty-two' WHERE a=1719;\nUPDATE t2 SET c='fifty-two thousand six hundred seventy-seven' WHERE a=1720;\nUPDATE t2 SET c='sixty-one thousand nine hundred fifty-eight' WHERE a=1721;\nUPDATE t2 SET c='twenty-eight thousand fifteen' WHERE a=1722;\nUPDATE t2 SET c='twenty-eight thousand six hundred fifty-seven' WHERE a=1723;\nUPDATE t2 SET c='twenty-nine thousand nine hundred sixty-nine' WHERE a=1724;\nUPDATE t2 SET c='fifty-four thousand eight hundred thirty-seven' WHERE a=1725;\nUPDATE t2 SET c='seventy-three thousand one hundred eight' WHERE a=1726;\nUPDATE t2 SET c='forty-seven thousand nine hundred eighty-five' WHERE a=1727;\nUPDATE t2 SET c='nine thousand twenty-eight' WHERE a=1728;\nUPDATE t2 SET c='fifty-two thousand five hundred ninety-nine' WHERE a=1729;\nUPDATE t2 SET c='seventy-three thousand one hundred fifteen' WHERE a=1730;\nUPDATE t2 SET c='nineteen thousand two hundred eleven' WHERE a=1731;\nUPDATE t2 SET c='eighty-three thousand nine' WHERE a=1732;\nUPDATE t2 SET c='eight thousand two hundred thirty-seven' WHERE a=1733;\nUPDATE t2 SET c='ninety-three thousand seven hundred twenty-five' WHERE a=1734;\nUPDATE t2 SET c='twenty-four thousand two hundred thirty-one' WHERE a=1735;\nUPDATE t2 SET c='ninety-six thousand four hundred twenty' WHERE a=1736;\nUPDATE t2 SET c='sixty-eight thousand one hundred seven' WHERE a=1737;\nUPDATE t2 SET c='ninety-one thousand seven hundred thirty-three' WHERE a=1738;\nUPDATE t2 SET c='forty-eight thousand nine hundred seventy-seven' WHERE a=1739;\nUPDATE t2 SET c='five thousand seven hundred eighty-five' WHERE a=1740;\nUPDATE t2 SET c='fifty-five thousand seven hundred six' WHERE a=1741;\nUPDATE t2 SET c='fifty-eight thousand four hundred eighty' WHERE a=1742;\nUPDATE t2 SET c='fifty-six thousand four hundred ninety-two' WHERE a=1743;\nUPDATE t2 SET c='seventy-two thousand eight hundred fifty' WHERE a=1744;\nUPDATE t2 SET c='eighty-one thousand eight hundred forty-eight' WHERE a=1745;\nUPDATE t2 SET c='twenty-three thousand eighty-three' WHERE a=1746;\nUPDATE t2 SET c='eighty-seven thousand six hundred seventy-eight' WHERE a=1747;\nUPDATE t2 SET c='sixty-one thousand five hundred twelve' WHERE a=1748;\nUPDATE t2 SET c='fifty-one thousand nine hundred twenty' WHERE a=1749;\nUPDATE t2 SET c='three thousand eight hundred fifteen' WHERE a=1750;\nUPDATE t2 SET c='twenty-three thousand six hundred forty-eight' WHERE a=1751;\nUPDATE t2 SET c='fifty-three thousand eighty-eight' WHERE a=1752;\nUPDATE t2 SET c='fifty-six thousand nine hundred thirty' WHERE a=1753;\nUPDATE t2 SET c='eighty-nine thousand nine hundred twenty-seven' WHERE a=1754;\nUPDATE t2 SET c='six thousand two hundred twenty' WHERE a=1755;\nUPDATE t2 SET c='three thousand one hundred sixty-six' WHERE a=1756;\nUPDATE t2 SET c='thirty-one thousand two hundred thirty-four' WHERE a=1757;\nUPDATE t2 SET c='seventy-one' WHERE a=1758;\nUPDATE t2 SET c='twenty-nine thousand two hundred ninety-two' WHERE a=1759;\nUPDATE t2 SET c='twenty-three thousand one hundred fifty' WHERE a=1760;\nUPDATE t2 SET c='ninety-five thousand eight hundred seventy-nine' WHERE a=1761;\nUPDATE t2 SET c='twenty-six thousand six hundred thirteen' WHERE a=1762;\nUPDATE t2 SET c='seventy-six thousand six hundred three' WHERE a=1763;\nUPDATE t2 SET c='ten thousand four hundred eighty-three' WHERE a=1764;\nUPDATE t2 SET c='fifty-one thousand two hundred thirty-seven' WHERE a=1765;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventeen' WHERE a=1766;\nUPDATE t2 SET c='ninety-three thousand five hundred eleven' WHERE a=1767;\nUPDATE t2 SET c='twelve thousand three hundred forty-one' WHERE a=1768;\nUPDATE t2 SET c='thirty-eight thousand four' WHERE a=1769;\nUPDATE t2 SET c='seventy-seven thousand two hundred nine' WHERE a=1770;\nUPDATE t2 SET c='seventy-nine thousand seven hundred forty-six' WHERE a=1771;\nUPDATE t2 SET c='forty-nine thousand three hundred thirty-seven' WHERE a=1772;\nUPDATE t2 SET c='fifty thousand forty-two' WHERE a=1773;\nUPDATE t2 SET c='eighty-three thousand one hundred forty-five' WHERE a=1774;\nUPDATE t2 SET c='eighteen thousand seven hundred sixty-four' WHERE a=1775;\nUPDATE t2 SET c='fifty-three thousand eighty-one' WHERE a=1776;\nUPDATE t2 SET c='ninety-six thousand four hundred forty' WHERE a=1777;\nUPDATE t2 SET c='forty-one thousand nine hundred one' WHERE a=1778;\nUPDATE t2 SET c='nineteen thousand one hundred seventeen' WHERE a=1779;\nUPDATE t2 SET c='sixteen thousand seven hundred fifty-four' WHERE a=1780;\nUPDATE t2 SET c='sixty-eight thousand four hundred ten' WHERE a=1781;\nUPDATE t2 SET c='six thousand forty-three' WHERE a=1782;\nUPDATE t2 SET c='ninety-seven thousand eight hundred sixty-six' WHERE a=1783;\nUPDATE t2 SET c='fifty thousand thirty-eight' WHERE a=1784;\nUPDATE t2 SET c='twenty-three thousand six hundred thirty-five' WHERE a=1785;\nUPDATE t2 SET c='three thousand four hundred one' WHERE a=1786;\nUPDATE t2 SET c='thirty-eight thousand eight hundred seventy-six' WHERE a=1787;\nUPDATE t2 SET c='thirteen thousand four hundred forty-nine' WHERE a=1788;\nUPDATE t2 SET c='thirty-seven thousand five hundred ninety-four' WHERE a=1789;\nUPDATE t2 SET c='seventy-three thousand five hundred ninety-four' WHERE a=1790;\nUPDATE t2 SET c='sixty-one thousand nine hundred seventy' WHERE a=1791;\nUPDATE t2 SET c='seventy-three thousand five hundred one' WHERE a=1792;\nUPDATE t2 SET c='forty-four thousand nine hundred twenty-four' WHERE a=1793;\nUPDATE t2 SET c='thirty-five thousand three hundred twelve' WHERE a=1794;\nUPDATE t2 SET c='twenty-three thousand nine hundred two' WHERE a=1795;\nUPDATE t2 SET c='five thousand four hundred ninety-four' WHERE a=1796;\nUPDATE t2 SET c='thirty-six thousand four hundred twenty-nine' WHERE a=1797;\nUPDATE t2 SET c='seven thousand eight hundred three' WHERE a=1798;\nUPDATE t2 SET c='sixty-nine thousand one hundred twenty-eight' WHERE a=1799;\nUPDATE t2 SET c='forty-four thousand one hundred twenty-eight' WHERE a=1800;\nUPDATE t2 SET c='ninety-three thousand thirty-nine' WHERE a=1801;\nUPDATE t2 SET c='eighty-nine thousand seven hundred sixty-nine' WHERE a=1802;\nUPDATE t2 SET c='two thousand seventy-four' WHERE a=1803;\nUPDATE t2 SET c='eighty-seven thousand six hundred seventy' WHERE a=1804;\nUPDATE t2 SET c='fifty-four thousand seven hundred forty-seven' WHERE a=1805;\nUPDATE t2 SET c='seven thousand five hundred forty' WHERE a=1806;\nUPDATE t2 SET c='thirty-seven thousand nine hundred one' WHERE a=1807;\nUPDATE t2 SET c='ninety-six thousand eight hundred sixty-eight' WHERE a=1808;\nUPDATE t2 SET c='sixty-five thousand seven hundred seventy-three' WHERE a=1809;\nUPDATE t2 SET c='forty-two thousand two hundred forty-seven' WHERE a=1810;\nUPDATE t2 SET c='thirty-nine thousand eight hundred twenty-seven' WHERE a=1811;\nUPDATE t2 SET c='forty-six thousand three hundred three' WHERE a=1812;\nUPDATE t2 SET c='twelve thousand three hundred ninety-two' WHERE a=1813;\nUPDATE t2 SET c='eighty-six thousand two hundred fifteen' WHERE a=1814;\nUPDATE t2 SET c='nine thousand six hundred sixty-four' WHERE a=1815;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirteen' WHERE a=1816;\nUPDATE t2 SET c='eighty-five thousand three hundred twelve' WHERE a=1817;\nUPDATE t2 SET c='thirty-two thousand seven hundred thirty-two' WHERE a=1818;\nUPDATE t2 SET c='thirty-eight thousand five hundred seventy-seven' WHERE a=1819;\nUPDATE t2 SET c='forty-six thousand six hundred thirteen' WHERE a=1820;\nUPDATE t2 SET c='forty-nine thousand six hundred eighty-eight' WHERE a=1821;\nUPDATE t2 SET c='twelve thousand four hundred four' WHERE a=1822;\nUPDATE t2 SET c='twenty thousand three hundred ninety-five' WHERE a=1823;\nUPDATE t2 SET c='thirty thousand one hundred one' WHERE a=1824;\nUPDATE t2 SET c='eighty thousand nine hundred thirty-three' WHERE a=1825;\nUPDATE t2 SET c='fifty-two thousand four hundred forty-five' WHERE a=1826;\nUPDATE t2 SET c='seventeen thousand four hundred seventy-nine' WHERE a=1827;\nUPDATE t2 SET c='thirty-six thousand six hundred sixteen' WHERE a=1828;\nUPDATE t2 SET c='twenty thousand nine hundred thirty-eight' WHERE a=1829;\nUPDATE t2 SET c='fifty-three thousand four hundred fifty-eight' WHERE a=1830;\nUPDATE t2 SET c='forty-three thousand seven hundred sixty-five' WHERE a=1831;\nUPDATE t2 SET c='sixty-three thousand eight hundred sixty-nine' WHERE a=1832;\nUPDATE t2 SET c='thirty-three thousand eight hundred forty-six' WHERE a=1833;\nUPDATE t2 SET c='eighty-three thousand five hundred twelve' WHERE a=1834;\nUPDATE t2 SET c='seventeen thousand four hundred four' WHERE a=1835;\nUPDATE t2 SET c='eight thousand seven hundred eleven' WHERE a=1836;\nUPDATE t2 SET c='seventy-nine thousand thirty-two' WHERE a=1837;\nUPDATE t2 SET c='thirteen thousand eight hundred four' WHERE a=1838;\nUPDATE t2 SET c='sixty-eight thousand one hundred one' WHERE a=1839;\nUPDATE t2 SET c='eight thousand six hundred seventy-five' WHERE a=1840;\nUPDATE t2 SET c='forty-five thousand six hundred six' WHERE a=1841;\nUPDATE t2 SET c='ninety-five thousand eight hundred ninety-three' WHERE a=1842;\nUPDATE t2 SET c='fourteen thousand four hundred forty-eight' WHERE a=1843;\nUPDATE t2 SET c='seventy-seven thousand nine' WHERE a=1844;\nUPDATE t2 SET c='seventy-eight thousand sixty' WHERE a=1845;\nUPDATE t2 SET c='seventy thousand five hundred thirteen' WHERE a=1846;\nUPDATE t2 SET c='fifty-seven thousand eight hundred sixty-seven' WHERE a=1847;\nUPDATE t2 SET c='twenty-seven thousand nine hundred eighty' WHERE a=1848;\nUPDATE t2 SET c='thirty-seven thousand six hundred fifty-six' WHERE a=1849;\nUPDATE t2 SET c='forty-one thousand sixty-seven' WHERE a=1850;\nUPDATE t2 SET c='twelve thousand nine hundred fifty-nine' WHERE a=1851;\nUPDATE t2 SET c='nine thousand eight hundred twenty-nine' WHERE a=1852;\nUPDATE t2 SET c='sixty thousand five hundred sixty-five' WHERE a=1853;\nUPDATE t2 SET c='ninety-seven thousand five hundred ninety-six' WHERE a=1854;\nUPDATE t2 SET c='ninety-one thousand four hundred thirty-three' WHERE a=1855;\nUPDATE t2 SET c='sixty-two thousand one hundred eight' WHERE a=1856;\nUPDATE t2 SET c='fifty-two thousand two hundred seventy-one' WHERE a=1857;\nUPDATE t2 SET c='seventy-four thousand nine hundred eighty-one' WHERE a=1858;\nUPDATE t2 SET c='sixty-nine thousand two hundred eighty-eight' WHERE a=1859;\nUPDATE t2 SET c='sixty-two thousand five hundred eighteen' WHERE a=1860;\nUPDATE t2 SET c='thirty-nine thousand six hundred thirty-nine' WHERE a=1861;\nUPDATE t2 SET c='eleven thousand two hundred six' WHERE a=1862;\nUPDATE t2 SET c='twenty-four thousand ninety-three' WHERE a=1863;\nUPDATE t2 SET c='thirty-eight thousand six hundred fifty-one' WHERE a=1864;\nUPDATE t2 SET c='ninety-three thousand four hundred twenty-two' WHERE a=1865;\nUPDATE t2 SET c='forty-four thousand five hundred sixty-nine' WHERE a=1866;\nUPDATE t2 SET c='seventy-seven thousand nine hundred sixty-five' WHERE a=1867;\nUPDATE t2 SET c='ninety thousand one hundred seventeen' WHERE a=1868;\nUPDATE t2 SET c='forty-six thousand six hundred eighty-two' WHERE a=1869;\nUPDATE t2 SET c='ninety-six thousand eight hundred thirty-three' WHERE a=1870;\nUPDATE t2 SET c='seventy-four thousand nine hundred thirty-three' WHERE a=1871;\nUPDATE t2 SET c='eighty-eight thousand five hundred sixty-nine' WHERE a=1872;\nUPDATE t2 SET c='twenty-three thousand two hundred fifty' WHERE a=1873;\nUPDATE t2 SET c='four thousand three hundred ninety-six' WHERE a=1874;\nUPDATE t2 SET c='sixty-six thousand six hundred seventeen' WHERE a=1875;\nUPDATE t2 SET c='thirty-nine thousand fifty-seven' WHERE a=1876;\nUPDATE t2 SET c='sixty-five thousand five hundred forty-two' WHERE a=1877;\nUPDATE t2 SET c='eighty-eight thousand eight hundred seventy-six' WHERE a=1878;\nUPDATE t2 SET c='fifty-three thousand nine hundred seventy-five' WHERE a=1879;\nUPDATE t2 SET c='sixty-eight thousand fifty-five' WHERE a=1880;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-six' WHERE a=1881;\nUPDATE t2 SET c='twenty thousand four hundred fifty-two' WHERE a=1882;\nUPDATE t2 SET c='fifty thousand four hundred thirteen' WHERE a=1883;\nUPDATE t2 SET c='forty-three thousand four hundred thirty' WHERE a=1884;\nUPDATE t2 SET c='ninety-six thousand seven hundred fifty-two' WHERE a=1885;\nUPDATE t2 SET c='ninety-three thousand seven hundred fifty-two' WHERE a=1886;\nUPDATE t2 SET c='fifty-two thousand three hundred ninety-three' WHERE a=1887;\nUPDATE t2 SET c='four thousand three hundred eighty-four' WHERE a=1888;\nUPDATE t2 SET c='thirty-six thousand seven hundred thirteen' WHERE a=1889;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty-two' WHERE a=1890;\nUPDATE t2 SET c='thirty-nine thousand two hundred twenty-nine' WHERE a=1891;\nUPDATE t2 SET c='sixteen thousand nine hundred forty-two' WHERE a=1892;\nUPDATE t2 SET c='nineteen thousand eight hundred seventy-three' WHERE a=1893;\nUPDATE t2 SET c='two thousand eight hundred ten' WHERE a=1894;\nUPDATE t2 SET c='eighty-four thousand eight hundred eighty-four' WHERE a=1895;\nUPDATE t2 SET c='sixty-six thousand five hundred seventy-four' WHERE a=1896;\nUPDATE t2 SET c='sixty-seven thousand five hundred twenty-two' WHERE a=1897;\nUPDATE t2 SET c='thirty-one thousand six hundred twenty-six' WHERE a=1898;\nUPDATE t2 SET c='eighty-four thousand eight hundred eighty-nine' WHERE a=1899;\nUPDATE t2 SET c='eighty-five thousand thirty-three' WHERE a=1900;\nUPDATE t2 SET c='seven thousand four hundred thirty-eight' WHERE a=1901;\nUPDATE t2 SET c='twenty-nine thousand ninety-six' WHERE a=1902;\nUPDATE t2 SET c='twenty-three thousand four hundred two' WHERE a=1903;\nUPDATE t2 SET c='two thousand six hundred sixty-six' WHERE a=1904;\nUPDATE t2 SET c='six thousand five hundred forty-five' WHERE a=1905;\nUPDATE t2 SET c='twenty-five thousand three hundred eighty-four' WHERE a=1906;\nUPDATE t2 SET c='eighty-five thousand three hundred nine' WHERE a=1907;\nUPDATE t2 SET c='forty-three thousand eight hundred sixty-nine' WHERE a=1908;\nUPDATE t2 SET c='one thousand three hundred forty-seven' WHERE a=1909;\nUPDATE t2 SET c='fifty-three thousand three hundred sixty-nine' WHERE a=1910;\nUPDATE t2 SET c='thirty-four thousand nine hundred eighty-seven' WHERE a=1911;\nUPDATE t2 SET c='ninety-six thousand one hundred three' WHERE a=1912;\nUPDATE t2 SET c='seventy-two thousand eight hundred sixty-six' WHERE a=1913;\nUPDATE t2 SET c='thirty-five thousand six hundred forty-nine' WHERE a=1914;\nUPDATE t2 SET c='nineteen thousand one hundred eighty-nine' WHERE a=1915;\nUPDATE t2 SET c='forty-eight thousand ninety-five' WHERE a=1916;\nUPDATE t2 SET c='ninety-four thousand eight hundred eleven' WHERE a=1917;\nUPDATE t2 SET c='forty-nine thousand forty-eight' WHERE a=1918;\nUPDATE t2 SET c='forty-eight thousand nine hundred twenty-eight' WHERE a=1919;\nUPDATE t2 SET c='sixty-one thousand three hundred seventy-eight' WHERE a=1920;\nUPDATE t2 SET c='thirty-two thousand eight hundred sixty-nine' WHERE a=1921;\nUPDATE t2 SET c='ten thousand one hundred thirty-six' WHERE a=1922;\nUPDATE t2 SET c='twenty-five thousand six hundred forty-four' WHERE a=1923;\nUPDATE t2 SET c='forty-one thousand nine hundred sixty-eight' WHERE a=1924;\nUPDATE t2 SET c='seventy-five thousand nine hundred fifty-eight' WHERE a=1925;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty-four' WHERE a=1926;\nUPDATE t2 SET c='fifty-five thousand nine hundred sixty-one' WHERE a=1927;\nUPDATE t2 SET c='seventy-six thousand nine hundred fourteen' WHERE a=1928;\nUPDATE t2 SET c='five thousand four hundred sixty-seven' WHERE a=1929;\nUPDATE t2 SET c='four thousand one hundred fifty-nine' WHERE a=1930;\nUPDATE t2 SET c='thirteen thousand seven hundred sixty-nine' WHERE a=1931;\nUPDATE t2 SET c='forty-three thousand eight hundred ninety-nine' WHERE a=1932;\nUPDATE t2 SET c='sixty-seven thousand eight hundred forty-two' WHERE a=1933;\nUPDATE t2 SET c='forty-eight thousand five hundred eighty-five' WHERE a=1934;\nUPDATE t2 SET c='eighty thousand two hundred ninety-six' WHERE a=1935;\nUPDATE t2 SET c='twenty-seven thousand four hundred sixteen' WHERE a=1936;\nUPDATE t2 SET c='ninety-six thousand one hundred thirty-seven' WHERE a=1937;\nUPDATE t2 SET c='fifty-three thousand three hundred thirteen' WHERE a=1938;\nUPDATE t2 SET c='twenty-five thousand eight hundred fifty-seven' WHERE a=1939;\nUPDATE t2 SET c='sixty-five thousand seven hundred sixty-five' WHERE a=1940;\nUPDATE t2 SET c='nineteen thousand seven hundred fifteen' WHERE a=1941;\nUPDATE t2 SET c='five hundred one' WHERE a=1942;\nUPDATE t2 SET c='sixty-two thousand three hundred fifteen' WHERE a=1943;\nUPDATE t2 SET c='twenty-two thousand four hundred twelve' WHERE a=1944;\nUPDATE t2 SET c='eighty-one thousand four hundred fifty-one' WHERE a=1945;\nUPDATE t2 SET c='fifty-four thousand three hundred seventy-four' WHERE a=1946;\nUPDATE t2 SET c='seventy thousand five hundred seventy-four' WHERE a=1947;\nUPDATE t2 SET c='sixty-seven thousand two hundred two' WHERE a=1948;\nUPDATE t2 SET c='ninety-eight thousand eight hundred sixty-six' WHERE a=1949;\nUPDATE t2 SET c='seventy-five thousand three hundred twenty' WHERE a=1950;\nUPDATE t2 SET c='sixty-four thousand three hundred fifty-two' WHERE a=1951;\nUPDATE t2 SET c='two thousand eight hundred forty-two' WHERE a=1952;\nUPDATE t2 SET c='ninety-nine thousand one hundred seventy-three' WHERE a=1953;\nUPDATE t2 SET c='fifty-six thousand eight hundred sixty-six' WHERE a=1954;\nUPDATE t2 SET c='seventy-four thousand five hundred six' WHERE a=1955;\nUPDATE t2 SET c='twenty-seven thousand nine hundred thirty-seven' WHERE a=1956;\nUPDATE t2 SET c='fifty-seven thousand forty' WHERE a=1957;\nUPDATE t2 SET c='twenty-nine thousand eight' WHERE a=1958;\nUPDATE t2 SET c='two thousand two hundred fifty-six' WHERE a=1959;\nUPDATE t2 SET c='twenty-nine thousand four hundred fifty-seven' WHERE a=1960;\nUPDATE t2 SET c='forty-nine thousand eight hundred thirty-three' WHERE a=1961;\nUPDATE t2 SET c='forty-four thousand six hundred thirty-five' WHERE a=1962;\nUPDATE t2 SET c='eight thousand four hundred seventy-one' WHERE a=1963;\nUPDATE t2 SET c='eighty-five thousand two hundred' WHERE a=1964;\nUPDATE t2 SET c='eighty-nine thousand nine hundred ninety-four' WHERE a=1965;\nUPDATE t2 SET c='three thousand nine hundred ninety-six' WHERE a=1966;\nUPDATE t2 SET c='eighty-one thousand ninety' WHERE a=1967;\nUPDATE t2 SET c='ten thousand four hundred thirty-four' WHERE a=1968;\nUPDATE t2 SET c='eighty-one thousand two hundred fifty-two' WHERE a=1969;\nUPDATE t2 SET c='sixty thousand two hundred thirty-one' WHERE a=1970;\nUPDATE t2 SET c='nine thousand three hundred thirty-seven' WHERE a=1971;\nUPDATE t2 SET c='sixty-one thousand three hundred' WHERE a=1972;\nUPDATE t2 SET c='seventy-eight thousand ninety-six' WHERE a=1973;\nUPDATE t2 SET c='eighty-three thousand eight hundred sixty-one' WHERE a=1974;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty-three' WHERE a=1975;\nUPDATE t2 SET c='eighty-seven thousand two hundred thirteen' WHERE a=1976;\nUPDATE t2 SET c='eight thousand five hundred four' WHERE a=1977;\nUPDATE t2 SET c='ninety-four thousand four' WHERE a=1978;\nUPDATE t2 SET c='eighty-eight thousand seven hundred eighty' WHERE a=1979;\nUPDATE t2 SET c='seventy-two thousand five hundred thirty-five' WHERE a=1980;\nUPDATE t2 SET c='fifty thousand thirteen' WHERE a=1981;\nUPDATE t2 SET c='fifty-seven thousand six hundred eighty-one' WHERE a=1982;\nUPDATE t2 SET c='eighty-five thousand fifty-two' WHERE a=1983;\nUPDATE t2 SET c='fifty-nine thousand five hundred sixty-two' WHERE a=1984;\nUPDATE t2 SET c='fourteen thousand nine hundred seventy-two' WHERE a=1985;\nUPDATE t2 SET c='eighty-six thousand eight hundred seventy-two' WHERE a=1986;\nUPDATE t2 SET c='thirty thousand six hundred twenty-one' WHERE a=1987;\nUPDATE t2 SET c='thirty-six thousand eight hundred seventy-seven' WHERE a=1988;\nUPDATE t2 SET c='ninety-six thousand ninety-nine' WHERE a=1989;\nUPDATE t2 SET c='four thousand three hundred eight' WHERE a=1990;\nUPDATE t2 SET c='ninety-four thousand eight hundred seventy' WHERE a=1991;\nUPDATE t2 SET c='ten thousand nine hundred ninety-eight' WHERE a=1992;\nUPDATE t2 SET c='fifteen thousand three hundred fifteen' WHERE a=1993;\nUPDATE t2 SET c='fifty-eight thousand seven hundred nineteen' WHERE a=1994;\nUPDATE t2 SET c='thirty-four thousand two hundred twenty-five' WHERE a=1995;\nUPDATE t2 SET c='eighty-four thousand one hundred twenty-seven' WHERE a=1996;\nUPDATE t2 SET c='seventy-seven thousand two hundred eighty-five' WHERE a=1997;\nUPDATE t2 SET c='twenty-eight thousand two hundred eighty-six' WHERE a=1998;\nUPDATE t2 SET c='sixty-six thousand eight hundred forty-six' WHERE a=1999;\nUPDATE t2 SET c='sixty-seven thousand two hundred eighty-one' WHERE a=2000;\nUPDATE t2 SET c='twenty thousand eight hundred sixty-seven' WHERE a=2001;\nUPDATE t2 SET c='forty-two thousand one' WHERE a=2002;\nUPDATE t2 SET c='fifty-four thousand five hundred eighty-six' WHERE a=2003;\nUPDATE t2 SET c='seventy-seven thousand five hundred twenty-six' WHERE a=2004;\nUPDATE t2 SET c='thirty-nine thousand four hundred sixty-eight' WHERE a=2005;\nUPDATE t2 SET c='forty-eight thousand forty-nine' WHERE a=2006;\nUPDATE t2 SET c='eighty-seven thousand four hundred forty-three' WHERE a=2007;\nUPDATE t2 SET c='seventy-one thousand eight hundred' WHERE a=2008;\nUPDATE t2 SET c='fifty thousand five hundred fifty-three' WHERE a=2009;\nUPDATE t2 SET c='forty-three thousand' WHERE a=2010;\nUPDATE t2 SET c='seven thousand six hundred twenty-eight' WHERE a=2011;\nUPDATE t2 SET c='nine thousand eight hundred fifty-seven' WHERE a=2012;\nUPDATE t2 SET c='fifty-six thousand two hundred forty-three' WHERE a=2013;\nUPDATE t2 SET c='seventy-eight thousand six hundred ten' WHERE a=2014;\nUPDATE t2 SET c='eighty thousand one hundred forty-three' WHERE a=2015;\nUPDATE t2 SET c='seventy-six thousand nine hundred fifty-six' WHERE a=2016;\nUPDATE t2 SET c='fifteen thousand seven hundred forty-two' WHERE a=2017;\nUPDATE t2 SET c='sixty-four thousand eight hundred forty-seven' WHERE a=2018;\nUPDATE t2 SET c='ninety-five thousand four hundred forty-nine' WHERE a=2019;\nUPDATE t2 SET c='three thousand three hundred fifty-four' WHERE a=2020;\nUPDATE t2 SET c='sixteen thousand seven hundred sixty-eight' WHERE a=2021;\nUPDATE t2 SET c='sixty-eight thousand eight hundred ninety-two' WHERE a=2022;\nUPDATE t2 SET c='seventy thousand two hundred twenty-three' WHERE a=2023;\nUPDATE t2 SET c='twenty-one thousand three hundred seventy-three' WHERE a=2024;\nUPDATE t2 SET c='one thousand four hundred twenty-two' WHERE a=2025;\nUPDATE t2 SET c='fifty-eight thousand three hundred ten' WHERE a=2026;\nUPDATE t2 SET c='forty-six thousand five hundred sixty-eight' WHERE a=2027;\nUPDATE t2 SET c='thirty thousand eight hundred fifty-three' WHERE a=2028;\nUPDATE t2 SET c='seventy-two thousand two hundred ninety-one' WHERE a=2029;\nUPDATE t2 SET c='twenty-two thousand six hundred forty-nine' WHERE a=2030;\nUPDATE t2 SET c='five thousand four hundred seventy-nine' WHERE a=2031;\nUPDATE t2 SET c='seventy-five thousand one hundred twenty' WHERE a=2032;\nUPDATE t2 SET c='ten thousand five hundred sixty' WHERE a=2033;\nUPDATE t2 SET c='five hundred fifty-one' WHERE a=2034;\nUPDATE t2 SET c='fifteen thousand eight hundred four' WHERE a=2035;\nUPDATE t2 SET c='thirty thousand four hundred fourteen' WHERE a=2036;\nUPDATE t2 SET c='thirty-six thousand six hundred fifty' WHERE a=2037;\nUPDATE t2 SET c='forty-seven thousand two hundred ninety' WHERE a=2038;\nUPDATE t2 SET c='seventy thousand one hundred seventy-five' WHERE a=2039;\nUPDATE t2 SET c='twenty-two thousand four hundred twenty-five' WHERE a=2040;\nUPDATE t2 SET c='eighty-four thousand four hundred four' WHERE a=2041;\nUPDATE t2 SET c='forty-nine thousand four hundred nineteen' WHERE a=2042;\nUPDATE t2 SET c='thirty-two thousand six hundred seventy-nine' WHERE a=2043;\nUPDATE t2 SET c='fourteen thousand seven hundred ten' WHERE a=2044;\nUPDATE t2 SET c='sixty thousand nine hundred eighty-eight' WHERE a=2045;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirty-five' WHERE a=2046;\nUPDATE t2 SET c='twelve thousand two hundred seventy-one' WHERE a=2047;\nUPDATE t2 SET c='sixty-two thousand two hundred eighty-nine' WHERE a=2048;\nUPDATE t2 SET c='forty thousand one hundred fifty-two' WHERE a=2049;\nUPDATE t2 SET c='seventy thousand two hundred thirty-eight' WHERE a=2050;\nUPDATE t2 SET c='sixty-two thousand nine hundred thirty-five' WHERE a=2051;\nUPDATE t2 SET c='four thousand one hundred ninety-one' WHERE a=2052;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-eight' WHERE a=2053;\nUPDATE t2 SET c='eighteen thousand seven hundred two' WHERE a=2054;\nUPDATE t2 SET c='eighty-eight thousand eighteen' WHERE a=2055;\nUPDATE t2 SET c='twenty-seven thousand eighty-one' WHERE a=2056;\nUPDATE t2 SET c='sixty-nine thousand nine hundred five' WHERE a=2057;\nUPDATE t2 SET c='sixteen thousand six hundred forty-seven' WHERE a=2058;\nUPDATE t2 SET c='eighty thousand five hundred fifty-one' WHERE a=2059;\nUPDATE t2 SET c='thirty-seven thousand two hundred twenty' WHERE a=2060;\nUPDATE t2 SET c='twenty-two thousand six hundred four' WHERE a=2061;\nUPDATE t2 SET c='twelve thousand fourteen' WHERE a=2062;\nUPDATE t2 SET c='ninety-two thousand seven hundred fifty-eight' WHERE a=2063;\nUPDATE t2 SET c='fifty-one thousand four hundred six' WHERE a=2064;\nUPDATE t2 SET c='thirty-three thousand sixty-seven' WHERE a=2065;\nUPDATE t2 SET c='eighty-three thousand six hundred thirty' WHERE a=2066;\nUPDATE t2 SET c='fifteen thousand eight hundred forty-one' WHERE a=2067;\nUPDATE t2 SET c='sixty-six thousand eight hundred sixty-seven' WHERE a=2068;\nUPDATE t2 SET c='forty-six thousand six hundred sixty-two' WHERE a=2069;\nUPDATE t2 SET c='seventy-four thousand ninety-four' WHERE a=2070;\nUPDATE t2 SET c='sixty-nine thousand six hundred seventy-two' WHERE a=2071;\nUPDATE t2 SET c='fifty-two thousand four hundred fifty-six' WHERE a=2072;\nUPDATE t2 SET c='ninety-eight thousand six hundred fifty-nine' WHERE a=2073;\nUPDATE t2 SET c='fifty-seven thousand six hundred thirty-one' WHERE a=2074;\nUPDATE t2 SET c='ninety-one thousand nine hundred forty-three' WHERE a=2075;\nUPDATE t2 SET c='thirty-two thousand five hundred seventy-seven' WHERE a=2076;\nUPDATE t2 SET c='twenty-one thousand seven hundred ten' WHERE a=2077;\nUPDATE t2 SET c='thirteen thousand five hundred two' WHERE a=2078;\nUPDATE t2 SET c='twenty-six thousand one hundred sixty-one' WHERE a=2079;\nUPDATE t2 SET c='eighty-eight thousand seven hundred twenty-five' WHERE a=2080;\nUPDATE t2 SET c='twenty thousand one hundred sixty-four' WHERE a=2081;\nUPDATE t2 SET c='eighteen thousand four hundred fifty' WHERE a=2082;\nUPDATE t2 SET c='twenty-four thousand seven hundred eighty-two' WHERE a=2083;\nUPDATE t2 SET c='forty-seven thousand nine hundred forty-nine' WHERE a=2084;\nUPDATE t2 SET c='forty-five thousand three hundred eighty-four' WHERE a=2085;\nUPDATE t2 SET c='seventy thousand four hundred fifty-two' WHERE a=2086;\nUPDATE t2 SET c='ninety-eight thousand five hundred forty-seven' WHERE a=2087;\nUPDATE t2 SET c='eighty-nine thousand five hundred eighty-four' WHERE a=2088;\nUPDATE t2 SET c='twenty-two thousand four hundred ninety-one' WHERE a=2089;\nUPDATE t2 SET c='sixty-two thousand five hundred forty-four' WHERE a=2090;\nUPDATE t2 SET c='twenty-one thousand seven hundred twenty-eight' WHERE a=2091;\nUPDATE t2 SET c='eighty thousand nine hundred eighty-seven' WHERE a=2092;\nUPDATE t2 SET c='eighty-two thousand eight hundred thirty' WHERE a=2093;\nUPDATE t2 SET c='eighty-five thousand eight hundred forty-two' WHERE a=2094;\nUPDATE t2 SET c='thirty-one thousand six hundred seventy-six' WHERE a=2095;\nUPDATE t2 SET c='eighty-four thousand two hundred ninety-seven' WHERE a=2096;\nUPDATE t2 SET c='fifteen thousand seven hundred forty-eight' WHERE a=2097;\nUPDATE t2 SET c='eighty-six thousand nine hundred twenty' WHERE a=2098;\nUPDATE t2 SET c='thirty-six thousand two hundred seventy-one' WHERE a=2099;\nUPDATE t2 SET c='seventeen thousand seventy-five' WHERE a=2100;\nUPDATE t2 SET c='forty-four thousand four hundred one' WHERE a=2101;\nUPDATE t2 SET c='thirty-six thousand seven hundred ninety-nine' WHERE a=2102;\nUPDATE t2 SET c='four thousand nine hundred ninety' WHERE a=2103;\nUPDATE t2 SET c='fifty-five thousand nine hundred forty-seven' WHERE a=2104;\nUPDATE t2 SET c='one thousand eight hundred fifty-five' WHERE a=2105;\nUPDATE t2 SET c='seventy thousand eight hundred forty-three' WHERE a=2106;\nUPDATE t2 SET c='seventy-seven thousand five hundred twenty-five' WHERE a=2107;\nUPDATE t2 SET c='fifty-six thousand nine hundred eighty-one' WHERE a=2108;\nUPDATE t2 SET c='one thousand one hundred eighty-one' WHERE a=2109;\nUPDATE t2 SET c='forty-two thousand seven hundred eleven' WHERE a=2110;\nUPDATE t2 SET c='eighty-five thousand one hundred fifty' WHERE a=2111;\nUPDATE t2 SET c='twenty-four thousand eight hundred twenty-one' WHERE a=2112;\nUPDATE t2 SET c='eighty-three thousand four hundred sixty-two' WHERE a=2113;\nUPDATE t2 SET c='thirty-five thousand eight hundred three' WHERE a=2114;\nUPDATE t2 SET c='seventeen thousand three hundred sixty-four' WHERE a=2115;\nUPDATE t2 SET c='thirty thousand two hundred twenty-three' WHERE a=2116;\nUPDATE t2 SET c='thirty-three thousand six hundred ninety-three' WHERE a=2117;\nUPDATE t2 SET c='fifty thousand five hundred eighty-seven' WHERE a=2118;\nUPDATE t2 SET c='forty-three thousand seven hundred fifty-seven' WHERE a=2119;\nUPDATE t2 SET c='fifty-eight thousand nine hundred eighty-five' WHERE a=2120;\nUPDATE t2 SET c='fifty-four thousand five hundred twenty-seven' WHERE a=2121;\nUPDATE t2 SET c='twenty-three thousand one hundred forty-three' WHERE a=2122;\nUPDATE t2 SET c='forty-eight thousand one hundred forty-one' WHERE a=2123;\nUPDATE t2 SET c='twenty thousand fifty-three' WHERE a=2124;\nUPDATE t2 SET c='fifty-one thousand five hundred sixty-eight' WHERE a=2125;\nUPDATE t2 SET c='eighteen thousand two hundred forty-six' WHERE a=2126;\nUPDATE t2 SET c='eighty-four thousand eight hundred ninety' WHERE a=2127;\nUPDATE t2 SET c='forty-one thousand six hundred thirteen' WHERE a=2128;\nUPDATE t2 SET c='sixty-two thousand three hundred twenty-nine' WHERE a=2129;\nUPDATE t2 SET c='eighteen thousand eight hundred seventy-five' WHERE a=2130;\nUPDATE t2 SET c='sixty-nine thousand nine hundred seventy-one' WHERE a=2131;\nUPDATE t2 SET c='six thousand one hundred fifty-three' WHERE a=2132;\nUPDATE t2 SET c='fifty-eight thousand four hundred fifty-one' WHERE a=2133;\nUPDATE t2 SET c='sixty-two thousand ninety-three' WHERE a=2134;\nUPDATE t2 SET c='eighty-five thousand four hundred six' WHERE a=2135;\nUPDATE t2 SET c='twenty-seven thousand four hundred fifty' WHERE a=2136;\nUPDATE t2 SET c='forty-four thousand eight hundred forty-five' WHERE a=2137;\nUPDATE t2 SET c='forty-nine thousand one hundred nine' WHERE a=2138;\nUPDATE t2 SET c='ninety-two thousand five hundred eighty-three' WHERE a=2139;\nUPDATE t2 SET c='eighty-one thousand one hundred fifteen' WHERE a=2140;\nUPDATE t2 SET c='sixty-one thousand nine hundred twenty-five' WHERE a=2141;\nUPDATE t2 SET c='forty-eight thousand seven hundred ninety-six' WHERE a=2142;\nUPDATE t2 SET c='ninety-six thousand four hundred twenty-six' WHERE a=2143;\nUPDATE t2 SET c='seventy-nine thousand nine hundred fifty-three' WHERE a=2144;\nUPDATE t2 SET c='six thousand six hundred thirty-nine' WHERE a=2145;\nUPDATE t2 SET c='ten thousand five hundred eighty-one' WHERE a=2146;\nUPDATE t2 SET c='sixty-two thousand eight hundred thirty-eight' WHERE a=2147;\nUPDATE t2 SET c='thirteen thousand eighty-two' WHERE a=2148;\nUPDATE t2 SET c='forty-eight thousand two hundred seventy' WHERE a=2149;\nUPDATE t2 SET c='fifty thousand eight hundred thirty-nine' WHERE a=2150;\nUPDATE t2 SET c='thirty-four thousand five hundred fifty-seven' WHERE a=2151;\nUPDATE t2 SET c='ninety thousand seven hundred fifty' WHERE a=2152;\nUPDATE t2 SET c='eighty-two thousand one hundred thirty-eight' WHERE a=2153;\nUPDATE t2 SET c='fifty-three thousand seven hundred thirty-seven' WHERE a=2154;\nUPDATE t2 SET c='fifty-one thousand three hundred ninety-four' WHERE a=2155;\nUPDATE t2 SET c='forty-nine thousand fifty-seven' WHERE a=2156;\nUPDATE t2 SET c='ninety-four thousand seven hundred eighty-nine' WHERE a=2157;\nUPDATE t2 SET c='seventeen thousand six hundred thirty-two' WHERE a=2158;\nUPDATE t2 SET c='sixty-four thousand four hundred twenty-one' WHERE a=2159;\nUPDATE t2 SET c='eighty-seven thousand one hundred fifty-eight' WHERE a=2160;\nUPDATE t2 SET c='twenty-four thousand four hundred ninety' WHERE a=2161;\nUPDATE t2 SET c='ninety-seven thousand five hundred eighteen' WHERE a=2162;\nUPDATE t2 SET c='seventy-nine thousand eight hundred sixty-nine' WHERE a=2163;\nUPDATE t2 SET c='eighty-one thousand eight hundred thirty-four' WHERE a=2164;\nUPDATE t2 SET c='ninety-eight thousand one hundred ninety-six' WHERE a=2165;\nUPDATE t2 SET c='sixty-five thousand two hundred thirty-seven' WHERE a=2166;\nUPDATE t2 SET c='fifty-eight thousand five hundred ninety' WHERE a=2167;\nUPDATE t2 SET c='eighty thousand four hundred ten' WHERE a=2168;\nUPDATE t2 SET c='seventy-three thousand eight hundred nine' WHERE a=2169;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty-six' WHERE a=2170;\nUPDATE t2 SET c='eighteen thousand five hundred two' WHERE a=2171;\nUPDATE t2 SET c='eighteen thousand two hundred sixty-three' WHERE a=2172;\nUPDATE t2 SET c='forty thousand seven hundred sixty-three' WHERE a=2173;\nUPDATE t2 SET c='eighty-one thousand one hundred ninety-five' WHERE a=2174;\nUPDATE t2 SET c='twenty-five thousand two hundred twenty-seven' WHERE a=2175;\nUPDATE t2 SET c='thirty-six thousand one hundred sixty-seven' WHERE a=2176;\nUPDATE t2 SET c='ninety-one thousand five hundred fifteen' WHERE a=2177;\nUPDATE t2 SET c='seventy-eight thousand five hundred forty-three' WHERE a=2178;\nUPDATE t2 SET c='thirty-eight thousand nine hundred sixty-one' WHERE a=2179;\nUPDATE t2 SET c='seventy-four thousand two hundred seventy-seven' WHERE a=2180;\nUPDATE t2 SET c='eighty-five thousand six hundred eighty-six' WHERE a=2181;\nUPDATE t2 SET c='thirty-eight thousand eight hundred thirty-six' WHERE a=2182;\nUPDATE t2 SET c='seventeen thousand two hundred sixty-one' WHERE a=2183;\nUPDATE t2 SET c='forty-two thousand five hundred seventy-eight' WHERE a=2184;\nUPDATE t2 SET c='seventy-one thousand one hundred one' WHERE a=2185;\nUPDATE t2 SET c='ninety thousand three hundred sixty-four' WHERE a=2186;\nUPDATE t2 SET c='seventy-eight thousand three hundred eleven' WHERE a=2187;\nUPDATE t2 SET c='one thousand one hundred twenty-six' WHERE a=2188;\nUPDATE t2 SET c='fifty-four thousand two hundred sixty-eight' WHERE a=2189;\nUPDATE t2 SET c='forty-four thousand two hundred ninety-two' WHERE a=2190;\nUPDATE t2 SET c='seventy-five thousand seven hundred twenty-nine' WHERE a=2191;\nUPDATE t2 SET c='sixty-two thousand four hundred nine' WHERE a=2192;\nUPDATE t2 SET c='forty-four thousand forty-four' WHERE a=2193;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy-nine' WHERE a=2194;\nUPDATE t2 SET c='seventy-one thousand four hundred twelve' WHERE a=2195;\nUPDATE t2 SET c='forty-one thousand five hundred sixty-nine' WHERE a=2196;\nUPDATE t2 SET c='sixty-four thousand five hundred sixty-four' WHERE a=2197;\nUPDATE t2 SET c='ninety-three thousand one hundred ten' WHERE a=2198;\nUPDATE t2 SET c='twenty-four thousand three hundred seven' WHERE a=2199;\nUPDATE t2 SET c='ninety-one thousand nine hundred forty-two' WHERE a=2200;\nUPDATE t2 SET c='ten thousand nine hundred thirty-five' WHERE a=2201;\nUPDATE t2 SET c='sixty-four thousand one' WHERE a=2202;\nUPDATE t2 SET c='eighteen thousand two hundred sixty-eight' WHERE a=2203;\nUPDATE t2 SET c='fifty-one thousand four hundred three' WHERE a=2204;\nUPDATE t2 SET c='twenty-six thousand eight hundred sixty-one' WHERE a=2205;\nUPDATE t2 SET c='ninety-seven thousand eight hundred' WHERE a=2206;\nUPDATE t2 SET c='fifty-six thousand three hundred fifty-six' WHERE a=2207;\nUPDATE t2 SET c='ninety-nine thousand seven hundred ninety-eight' WHERE a=2208;\nUPDATE t2 SET c='twenty-five thousand four hundred forty-one' WHERE a=2209;\nUPDATE t2 SET c='thirty thousand eight hundred forty-three' WHERE a=2210;\nUPDATE t2 SET c='sixty-seven thousand nine hundred forty' WHERE a=2211;\nUPDATE t2 SET c='eleven thousand eight hundred forty-nine' WHERE a=2212;\nUPDATE t2 SET c='forty-two thousand four hundred forty-eight' WHERE a=2213;\nUPDATE t2 SET c='fifty-four thousand nine hundred forty-one' WHERE a=2214;\nUPDATE t2 SET c='eighty-nine thousand two hundred twenty-one' WHERE a=2215;\nUPDATE t2 SET c='six hundred fifty-three' WHERE a=2216;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-eight' WHERE a=2217;\nUPDATE t2 SET c='forty-five thousand six hundred fifty-two' WHERE a=2218;\nUPDATE t2 SET c='forty-six thousand one hundred eighty-six' WHERE a=2219;\nUPDATE t2 SET c='thirty-nine thousand three hundred thirty' WHERE a=2220;\nUPDATE t2 SET c='eighty-three thousand two hundred twelve' WHERE a=2221;\nUPDATE t2 SET c='thirty thousand forty' WHERE a=2222;\nUPDATE t2 SET c='thirty-seven thousand two hundred ninety-seven' WHERE a=2223;\nUPDATE t2 SET c='eighty-three thousand three hundred forty-six' WHERE a=2224;\nUPDATE t2 SET c='eighty-four thousand one hundred twenty' WHERE a=2225;\nUPDATE t2 SET c='seven thousand eight hundred fifteen' WHERE a=2226;\nUPDATE t2 SET c='thirty-three thousand three hundred eighty-nine' WHERE a=2227;\nUPDATE t2 SET c='thirty-eight thousand five hundred seventy-three' WHERE a=2228;\nUPDATE t2 SET c='eight thousand eight hundred four' WHERE a=2229;\nUPDATE t2 SET c='nineteen thousand one hundred seventy-two' WHERE a=2230;\nUPDATE t2 SET c='fifty-nine thousand two hundred three' WHERE a=2231;\nUPDATE t2 SET c='ninety-four thousand six hundred seventy-three' WHERE a=2232;\nUPDATE t2 SET c='three thousand nine hundred ninety-six' WHERE a=2233;\nUPDATE t2 SET c='ninety-eight thousand seven hundred eighty-five' WHERE a=2234;\nUPDATE t2 SET c='one thousand five hundred fifty-five' WHERE a=2235;\nUPDATE t2 SET c='seventy thousand two hundred twelve' WHERE a=2236;\nUPDATE t2 SET c='fifty-four thousand seven hundred thirty-one' WHERE a=2237;\nUPDATE t2 SET c='twenty-two thousand two hundred forty-five' WHERE a=2238;\nUPDATE t2 SET c='ninety-seven thousand two hundred ninety-six' WHERE a=2239;\nUPDATE t2 SET c='eighty thousand fifty-two' WHERE a=2240;\nUPDATE t2 SET c='ninety-four thousand one hundred forty-three' WHERE a=2241;\nUPDATE t2 SET c='forty-four thousand five hundred forty-four' WHERE a=2242;\nUPDATE t2 SET c='fifty-four thousand two hundred eighty-two' WHERE a=2243;\nUPDATE t2 SET c='thirty thousand three hundred fifty-eight' WHERE a=2244;\nUPDATE t2 SET c='ninety-four thousand one hundred fifty-nine' WHERE a=2245;\nUPDATE t2 SET c='eighty-three thousand four hundred eighty-one' WHERE a=2246;\nUPDATE t2 SET c='thirty-five thousand seven hundred twenty-four' WHERE a=2247;\nUPDATE t2 SET c='sixty-seven thousand five hundred eighty-nine' WHERE a=2248;\nUPDATE t2 SET c='sixty-two thousand five hundred sixty-three' WHERE a=2249;\nUPDATE t2 SET c='four thousand three hundred fifty-nine' WHERE a=2250;\nUPDATE t2 SET c='eighty-four thousand eight hundred fifty-five' WHERE a=2251;\nUPDATE t2 SET c='seventy-two thousand three hundred thirty-eight' WHERE a=2252;\nUPDATE t2 SET c='twenty-seven thousand seven hundred ninety' WHERE a=2253;\nUPDATE t2 SET c='sixty-one thousand three hundred seven' WHERE a=2254;\nUPDATE t2 SET c='ninety-three thousand seven hundred eleven' WHERE a=2255;\nUPDATE t2 SET c='thirty-nine thousand seven hundred thirty-seven' WHERE a=2256;\nUPDATE t2 SET c='fifty-six thousand two hundred seventy-three' WHERE a=2257;\nUPDATE t2 SET c='forty-six thousand four hundred fifty-nine' WHERE a=2258;\nUPDATE t2 SET c='eighty-six thousand four hundred thirty-four' WHERE a=2259;\nUPDATE t2 SET c='nineteen thousand sixty-two' WHERE a=2260;\nUPDATE t2 SET c='seventy-five thousand eight hundred fifty-nine' WHERE a=2261;\nUPDATE t2 SET c='forty-eight thousand six hundred ninety-two' WHERE a=2262;\nUPDATE t2 SET c='sixty-six thousand six hundred eight' WHERE a=2263;\nUPDATE t2 SET c='eighty-nine thousand two hundred sixteen' WHERE a=2264;\nUPDATE t2 SET c='fifty thousand two hundred thirty-six' WHERE a=2265;\nUPDATE t2 SET c='twenty-four thousand one hundred forty-three' WHERE a=2266;\nUPDATE t2 SET c='fifty-eight thousand one hundred sixty-two' WHERE a=2267;\nUPDATE t2 SET c='thirty-two thousand seven hundred sixty-five' WHERE a=2268;\nUPDATE t2 SET c='fifty-seven thousand four hundred sixty-five' WHERE a=2269;\nUPDATE t2 SET c='fifty-two thousand eighteen' WHERE a=2270;\nUPDATE t2 SET c='three hundred eighty-one' WHERE a=2271;\nUPDATE t2 SET c='ninety-three thousand seven hundred thirty-four' WHERE a=2272;\nUPDATE t2 SET c='sixty-three thousand eight hundred seventy-five' WHERE a=2273;\nUPDATE t2 SET c='seventy-five thousand two hundred sixteen' WHERE a=2274;\nUPDATE t2 SET c='ninety-four thousand twelve' WHERE a=2275;\nUPDATE t2 SET c='thirty-four thousand seven hundred five' WHERE a=2276;\nUPDATE t2 SET c='seventy-two thousand one hundred sixty-six' WHERE a=2277;\nUPDATE t2 SET c='thirteen thousand eight hundred eighty-nine' WHERE a=2278;\nUPDATE t2 SET c='seventy-seven thousand eight hundred seventy-three' WHERE a=2279;\nUPDATE t2 SET c='thirty thousand six hundred ninety-seven' WHERE a=2280;\nUPDATE t2 SET c='thirty-seven thousand sixty-two' WHERE a=2281;\nUPDATE t2 SET c='sixty-four thousand one hundred forty-eight' WHERE a=2282;\nUPDATE t2 SET c='twenty-seven thousand one hundred thirty-six' WHERE a=2283;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-eight' WHERE a=2284;\nUPDATE t2 SET c='fifty-two thousand three hundred three' WHERE a=2285;\nUPDATE t2 SET c='forty-three thousand five hundred fourteen' WHERE a=2286;\nUPDATE t2 SET c='eighty-two thousand nine hundred ten' WHERE a=2287;\nUPDATE t2 SET c='fifteen thousand two hundred eighty-three' WHERE a=2288;\nUPDATE t2 SET c='ninety-eight thousand eight hundred fourteen' WHERE a=2289;\nUPDATE t2 SET c='ninety-four thousand seven hundred thirty-six' WHERE a=2290;\nUPDATE t2 SET c='thirty-three thousand one hundred ninety-one' WHERE a=2291;\nUPDATE t2 SET c='thirty-six thousand three hundred seventy-eight' WHERE a=2292;\nUPDATE t2 SET c='sixty-two thousand one hundred sixteen' WHERE a=2293;\nUPDATE t2 SET c='ninety-two thousand five hundred eleven' WHERE a=2294;\nUPDATE t2 SET c='ninety-four thousand forty-seven' WHERE a=2295;\nUPDATE t2 SET c='seventy-six thousand four hundred three' WHERE a=2296;\nUPDATE t2 SET c='sixty-nine thousand one hundred forty-one' WHERE a=2297;\nUPDATE t2 SET c='forty-two thousand eight hundred fifty-seven' WHERE a=2298;\nUPDATE t2 SET c='seventy-five thousand five hundred three' WHERE a=2299;\nUPDATE t2 SET c='eighty-two thousand eight hundred sixty' WHERE a=2300;\nUPDATE t2 SET c='ninety-five thousand eight hundred thirteen' WHERE a=2301;\nUPDATE t2 SET c='seven thousand seven hundred twenty-four' WHERE a=2302;\nUPDATE t2 SET c='five thousand two hundred eighty-eight' WHERE a=2303;\nUPDATE t2 SET c='forty-three thousand four hundred ninety-five' WHERE a=2304;\nUPDATE t2 SET c='seventy-six thousand three hundred twenty-five' WHERE a=2305;\nUPDATE t2 SET c='nine thousand fourteen' WHERE a=2306;\nUPDATE t2 SET c='thirty-one thousand nine hundred thirty-eight' WHERE a=2307;\nUPDATE t2 SET c='twenty-nine thousand five hundred six' WHERE a=2308;\nUPDATE t2 SET c='sixty-four thousand four hundred five' WHERE a=2309;\nUPDATE t2 SET c='seventy-seven thousand sixteen' WHERE a=2310;\nUPDATE t2 SET c='eighty-eight thousand five hundred thirty-nine' WHERE a=2311;\nUPDATE t2 SET c='forty-seven thousand one hundred thirteen' WHERE a=2312;\nUPDATE t2 SET c='forty-six thousand four hundred forty-three' WHERE a=2313;\nUPDATE t2 SET c='eighty-nine thousand six hundred fifty-eight' WHERE a=2314;\nUPDATE t2 SET c='ninety-six thousand four hundred ten' WHERE a=2315;\nUPDATE t2 SET c='eighty-nine thousand nine hundred thirty-five' WHERE a=2316;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventy-four' WHERE a=2317;\nUPDATE t2 SET c='twenty-eight thousand four hundred twenty-nine' WHERE a=2318;\nUPDATE t2 SET c='forty-one thousand eight hundred fifty-nine' WHERE a=2319;\nUPDATE t2 SET c='fifty-three thousand thirteen' WHERE a=2320;\nUPDATE t2 SET c='ninety-eight thousand one hundred twelve' WHERE a=2321;\nUPDATE t2 SET c='nineteen' WHERE a=2322;\nUPDATE t2 SET c='twenty-two thousand two hundred thirty-four' WHERE a=2323;\nUPDATE t2 SET c='seventy-one thousand one hundred four' WHERE a=2324;\nUPDATE t2 SET c='eighty-seven thousand eight hundred forty-three' WHERE a=2325;\nUPDATE t2 SET c='seventy-four thousand fifty-three' WHERE a=2326;\nUPDATE t2 SET c='twenty-nine thousand two hundred forty-four' WHERE a=2327;\nUPDATE t2 SET c='sixty-five thousand fourteen' WHERE a=2328;\nUPDATE t2 SET c='two thousand seven hundred eighty' WHERE a=2329;\nUPDATE t2 SET c='twenty-two thousand twenty' WHERE a=2330;\nUPDATE t2 SET c='ninety-six thousand three hundred fifty' WHERE a=2331;\nUPDATE t2 SET c='seventy-six thousand six hundred fifty-nine' WHERE a=2332;\nUPDATE t2 SET c='seventeen thousand eight hundred seventy-nine' WHERE a=2333;\nUPDATE t2 SET c='ninety-five thousand twenty-two' WHERE a=2334;\nUPDATE t2 SET c='three thousand six hundred sixty-two' WHERE a=2335;\nUPDATE t2 SET c='fifteen thousand one hundred forty-four' WHERE a=2336;\nUPDATE t2 SET c='twenty-five thousand nine hundred nine' WHERE a=2337;\nUPDATE t2 SET c='six thousand eight hundred ninety-seven' WHERE a=2338;\nUPDATE t2 SET c='twenty-two thousand five hundred sixty' WHERE a=2339;\nUPDATE t2 SET c='seventeen thousand five hundred fourteen' WHERE a=2340;\nUPDATE t2 SET c='forty-eight thousand two hundred eighty' WHERE a=2341;\nUPDATE t2 SET c='eighteen thousand three hundred seventy-three' WHERE a=2342;\nUPDATE t2 SET c='forty-three thousand one hundred twenty' WHERE a=2343;\nUPDATE t2 SET c='fifty thousand six hundred forty-one' WHERE a=2344;\nUPDATE t2 SET c='seventeen thousand seven hundred thirty-five' WHERE a=2345;\nUPDATE t2 SET c='five thousand seven hundred fourteen' WHERE a=2346;\nUPDATE t2 SET c='fifty-six thousand seventy' WHERE a=2347;\nUPDATE t2 SET c='seventy-eight thousand two hundred ninety-two' WHERE a=2348;\nUPDATE t2 SET c='thirty-two thousand seven hundred eighty-five' WHERE a=2349;\nUPDATE t2 SET c='twenty-one thousand three hundred sixty-four' WHERE a=2350;\nUPDATE t2 SET c='twenty-four thousand nine hundred fifty-five' WHERE a=2351;\nUPDATE t2 SET c='eighty thousand nine hundred sixteen' WHERE a=2352;\nUPDATE t2 SET c='nine thousand five hundred ninety-five' WHERE a=2353;\nUPDATE t2 SET c='sixty-eight thousand three hundred thirty-six' WHERE a=2354;\nUPDATE t2 SET c='eighty-six thousand nine hundred fifty-one' WHERE a=2355;\nUPDATE t2 SET c='forty-eight thousand two hundred twenty' WHERE a=2356;\nUPDATE t2 SET c='seventy-nine thousand five hundred thirty-eight' WHERE a=2357;\nUPDATE t2 SET c='twelve thousand nine hundred eighty-six' WHERE a=2358;\nUPDATE t2 SET c='four thousand three hundred sixty-nine' WHERE a=2359;\nUPDATE t2 SET c='eighty-six thousand thirty-four' WHERE a=2360;\nUPDATE t2 SET c='fifty-six thousand nine hundred ten' WHERE a=2361;\nUPDATE t2 SET c='twenty-five thousand two hundred fifty-seven' WHERE a=2362;\nUPDATE t2 SET c='fifty-one thousand three hundred eighty-nine' WHERE a=2363;\nUPDATE t2 SET c='ninety thousand eight hundred forty-five' WHERE a=2364;\nUPDATE t2 SET c='ninety-nine thousand six' WHERE a=2365;\nUPDATE t2 SET c='eighty-eight thousand seven hundred twenty-nine' WHERE a=2366;\nUPDATE t2 SET c='seventy-eight thousand nine hundred fifty-four' WHERE a=2367;\nUPDATE t2 SET c='seventy-five thousand eight hundred sixty-eight' WHERE a=2368;\nUPDATE t2 SET c='six thousand eight hundred eight' WHERE a=2369;\nUPDATE t2 SET c='seventy-eight thousand three hundred thirty-one' WHERE a=2370;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventeen' WHERE a=2371;\nUPDATE t2 SET c='ninety-seven thousand five hundred fifty' WHERE a=2372;\nUPDATE t2 SET c='sixty-four thousand three hundred twenty' WHERE a=2373;\nUPDATE t2 SET c='thirty thousand three hundred four' WHERE a=2374;\nUPDATE t2 SET c='forty-one thousand five hundred thirteen' WHERE a=2375;\nUPDATE t2 SET c='fifty-three thousand five hundred forty-five' WHERE a=2376;\nUPDATE t2 SET c='thirty-five thousand one hundred fifteen' WHERE a=2377;\nUPDATE t2 SET c='sixty-four thousand eight hundred one' WHERE a=2378;\nUPDATE t2 SET c='seventy-four thousand six hundred seventy-eight' WHERE a=2379;\nUPDATE t2 SET c='ninety-two thousand forty-two' WHERE a=2380;\nUPDATE t2 SET c='sixteen thousand seven hundred sixty-eight' WHERE a=2381;\nUPDATE t2 SET c='ninety-three thousand one hundred sixty-three' WHERE a=2382;\nUPDATE t2 SET c='eighty-eight thousand four hundred sixty-one' WHERE a=2383;\nUPDATE t2 SET c='sixty-one thousand seven hundred twenty-three' WHERE a=2384;\nUPDATE t2 SET c='sixty-five thousand six hundred six' WHERE a=2385;\nUPDATE t2 SET c='sixty-nine thousand four hundred sixteen' WHERE a=2386;\nUPDATE t2 SET c='eighty-three thousand nine hundred seventy-six' WHERE a=2387;\nUPDATE t2 SET c='seventeen thousand two hundred fifty' WHERE a=2388;\nUPDATE t2 SET c='thirty-five thousand one' WHERE a=2389;\nUPDATE t2 SET c='twenty-seven thousand seven hundred seventy-five' WHERE a=2390;\nUPDATE t2 SET c='seven hundred ninety-one' WHERE a=2391;\nUPDATE t2 SET c='four thousand four hundred forty-eight' WHERE a=2392;\nUPDATE t2 SET c='twenty-four thousand eight hundred forty-one' WHERE a=2393;\nUPDATE t2 SET c='fifty-six thousand five hundred seventy-three' WHERE a=2394;\nUPDATE t2 SET c='sixty-four thousand one hundred eighty-six' WHERE a=2395;\nUPDATE t2 SET c='ninety-six thousand one hundred forty-eight' WHERE a=2396;\nUPDATE t2 SET c='fifty-three thousand nine hundred thirty-three' WHERE a=2397;\nUPDATE t2 SET c='thirty-one thousand four hundred eighty' WHERE a=2398;\nUPDATE t2 SET c='seventy-six thousand nine hundred forty-eight' WHERE a=2399;\nUPDATE t2 SET c='one thousand five hundred fifty-eight' WHERE a=2400;\nUPDATE t2 SET c='forty-four thousand three hundred seventy-two' WHERE a=2401;\nUPDATE t2 SET c='twenty-two thousand two hundred seventy-nine' WHERE a=2402;\nUPDATE t2 SET c='ten thousand five hundred thirteen' WHERE a=2403;\nUPDATE t2 SET c='seventeen thousand nine hundred thirty' WHERE a=2404;\nUPDATE t2 SET c='four thousand nine hundred thirty-five' WHERE a=2405;\nUPDATE t2 SET c='seventy thousand nine hundred forty-two' WHERE a=2406;\nUPDATE t2 SET c='thirty-seven thousand four hundred sixty-six' WHERE a=2407;\nUPDATE t2 SET c='eighty-nine thousand six hundred forty-one' WHERE a=2408;\nUPDATE t2 SET c='sixty-nine thousand one hundred fifty-seven' WHERE a=2409;\nUPDATE t2 SET c='six thousand two hundred thirty-six' WHERE a=2410;\nUPDATE t2 SET c='seventy-one thousand eight hundred forty-eight' WHERE a=2411;\nUPDATE t2 SET c='fifty-nine thousand seventy-four' WHERE a=2412;\nUPDATE t2 SET c='twelve thousand nine hundred forty-three' WHERE a=2413;\nUPDATE t2 SET c='eighty-four thousand one hundred forty-five' WHERE a=2414;\nUPDATE t2 SET c='eighty-three thousand five hundred forty-seven' WHERE a=2415;\nUPDATE t2 SET c='fifty-five thousand one hundred' WHERE a=2416;\nUPDATE t2 SET c='twenty-five thousand one hundred thirty-eight' WHERE a=2417;\nUPDATE t2 SET c='ninety-four thousand six hundred twenty-one' WHERE a=2418;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty' WHERE a=2419;\nUPDATE t2 SET c='sixty-five thousand fifty-eight' WHERE a=2420;\nUPDATE t2 SET c='sixty-three thousand eight hundred forty-two' WHERE a=2421;\nUPDATE t2 SET c='twelve thousand seven hundred four' WHERE a=2422;\nUPDATE t2 SET c='forty-two thousand forty-five' WHERE a=2423;\nUPDATE t2 SET c='sixteen thousand four hundred eighty-four' WHERE a=2424;\nUPDATE t2 SET c='ninety-seven thousand three hundred ninety-two' WHERE a=2425;\nUPDATE t2 SET c='twenty-three thousand seventy-one' WHERE a=2426;\nUPDATE t2 SET c='two thousand eight hundred sixty-eight' WHERE a=2427;\nUPDATE t2 SET c='five thousand four hundred sixty-three' WHERE a=2428;\nUPDATE t2 SET c='thirteen thousand three hundred ninety-five' WHERE a=2429;\nUPDATE t2 SET c='seventeen thousand three hundred fifty-nine' WHERE a=2430;\nUPDATE t2 SET c='seventy-nine thousand sixty-three' WHERE a=2431;\nUPDATE t2 SET c='ninety thousand eight hundred fifty-one' WHERE a=2432;\nUPDATE t2 SET c='seventy-five thousand nine hundred eighty-five' WHERE a=2433;\nUPDATE t2 SET c='thirty thousand nine hundred thirty-seven' WHERE a=2434;\nUPDATE t2 SET c='seventy-three thousand eight hundred forty-one' WHERE a=2435;\nUPDATE t2 SET c='eighty-three thousand three hundred thirty-three' WHERE a=2436;\nUPDATE t2 SET c='thirty-three thousand nine hundred sixty-two' WHERE a=2437;\nUPDATE t2 SET c='ninety-eight thousand five hundred one' WHERE a=2438;\nUPDATE t2 SET c='forty-seven thousand ninety-seven' WHERE a=2439;\nUPDATE t2 SET c='twelve thousand eight hundred seventy-four' WHERE a=2440;\nUPDATE t2 SET c='forty-seven thousand six hundred thirty' WHERE a=2441;\nUPDATE t2 SET c='eighty thousand four hundred one' WHERE a=2442;\nUPDATE t2 SET c='thirty-nine thousand nine hundred ninety-two' WHERE a=2443;\nUPDATE t2 SET c='three thousand three hundred eight' WHERE a=2444;\nUPDATE t2 SET c='thirty-seven thousand eight hundred thirty-nine' WHERE a=2445;\nUPDATE t2 SET c='twenty-two thousand three hundred twenty-nine' WHERE a=2446;\nUPDATE t2 SET c='forty thousand eight hundred forty-seven' WHERE a=2447;\nUPDATE t2 SET c='twenty-four thousand two hundred eleven' WHERE a=2448;\nUPDATE t2 SET c='thirty-one thousand one hundred forty-four' WHERE a=2449;\nUPDATE t2 SET c='fifty-five thousand four hundred eighty-three' WHERE a=2450;\nUPDATE t2 SET c='sixty-seven thousand one hundred forty' WHERE a=2451;\nUPDATE t2 SET c='thirty-nine thousand seven hundred seventy' WHERE a=2452;\nUPDATE t2 SET c='thirty-seven thousand seven hundred ninety-one' WHERE a=2453;\nUPDATE t2 SET c='seventy-eight thousand three hundred ninety-seven' WHERE a=2454;\nUPDATE t2 SET c='six thousand eight hundred thirty-five' WHERE a=2455;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-one' WHERE a=2456;\nUPDATE t2 SET c='thirty-eight thousand one hundred thirty-two' WHERE a=2457;\nUPDATE t2 SET c='thirty-two thousand nine hundred eighty-three' WHERE a=2458;\nUPDATE t2 SET c='eighty-five thousand eight hundred sixty-eight' WHERE a=2459;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty-five' WHERE a=2460;\nUPDATE t2 SET c='ninety-one thousand two hundred twenty' WHERE a=2461;\nUPDATE t2 SET c='sixty-one thousand six hundred ninety-seven' WHERE a=2462;\nUPDATE t2 SET c='ninety-three thousand seven hundred fifty-five' WHERE a=2463;\nUPDATE t2 SET c='ninety-one thousand seven hundred thirty-four' WHERE a=2464;\nUPDATE t2 SET c='seventy thousand six hundred nineteen' WHERE a=2465;\nUPDATE t2 SET c='eighty-nine thousand one hundred eighty-nine' WHERE a=2466;\nUPDATE t2 SET c='thirty-eight thousand seven hundred fifty-two' WHERE a=2467;\nUPDATE t2 SET c='eighty thousand forty-eight' WHERE a=2468;\nUPDATE t2 SET c='seventeen thousand four hundred eighty-one' WHERE a=2469;\nUPDATE t2 SET c='six thousand two hundred sixty-five' WHERE a=2470;\nUPDATE t2 SET c='forty-one thousand six hundred five' WHERE a=2471;\nUPDATE t2 SET c='fifty-six thousand nine hundred twenty-three' WHERE a=2472;\nUPDATE t2 SET c='seventy-two thousand seven hundred eighty-six' WHERE a=2473;\nUPDATE t2 SET c='ninety-three thousand five hundred forty-eight' WHERE a=2474;\nUPDATE t2 SET c='five thousand five hundred sixty-four' WHERE a=2475;\nUPDATE t2 SET c='forty thousand seven hundred seventy-one' WHERE a=2476;\nUPDATE t2 SET c='sixty-eight thousand nine hundred ninety-eight' WHERE a=2477;\nUPDATE t2 SET c='eighty-seven thousand nine hundred seventeen' WHERE a=2478;\nUPDATE t2 SET c='seventy-seven thousand one hundred twenty-seven' WHERE a=2479;\nUPDATE t2 SET c='eighty-eight thousand sixty-four' WHERE a=2480;\nUPDATE t2 SET c='twenty-one thousand three hundred forty-three' WHERE a=2481;\nUPDATE t2 SET c='sixty-two thousand four hundred twenty-five' WHERE a=2482;\nUPDATE t2 SET c='seventy-two thousand nine hundred' WHERE a=2483;\nUPDATE t2 SET c='seventeen thousand two hundred ninety-two' WHERE a=2484;\nUPDATE t2 SET c='seventy-three thousand three hundred five' WHERE a=2485;\nUPDATE t2 SET c='thirty-five thousand four hundred forty-four' WHERE a=2486;\nUPDATE t2 SET c='seventy-seven thousand one hundred thirty-three' WHERE a=2487;\nUPDATE t2 SET c='ninety-seven thousand four hundred thirty-five' WHERE a=2488;\nUPDATE t2 SET c='forty-five thousand eight hundred ninety-nine' WHERE a=2489;\nUPDATE t2 SET c='fifty-six thousand nine hundred eight' WHERE a=2490;\nUPDATE t2 SET c='sixty-two thousand one hundred forty-nine' WHERE a=2491;\nUPDATE t2 SET c='nine thousand five hundred twelve' WHERE a=2492;\nUPDATE t2 SET c='sixty-eight thousand twenty-four' WHERE a=2493;\nUPDATE t2 SET c='thirty-five thousand five hundred thirty-three' WHERE a=2494;\nUPDATE t2 SET c='six thousand ninety-four' WHERE a=2495;\nUPDATE t2 SET c='seventy-five thousand seven hundred seventy-two' WHERE a=2496;\nUPDATE t2 SET c='eighty-three thousand one hundred ninety-two' WHERE a=2497;\nUPDATE t2 SET c='eighty-eight thousand nine hundred eighteen' WHERE a=2498;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-six' WHERE a=2499;\nUPDATE t2 SET c='ninety-six thousand two hundred sixty-four' WHERE a=2500;\nUPDATE t2 SET c='thirty-one thousand six' WHERE a=2501;\nUPDATE t2 SET c='sixty-six thousand one hundred seventy-seven' WHERE a=2502;\nUPDATE t2 SET c='twenty-six thousand six hundred seventeen' WHERE a=2503;\nUPDATE t2 SET c='forty thousand two hundred seventy-nine' WHERE a=2504;\nUPDATE t2 SET c='twenty-two thousand one hundred eighty-four' WHERE a=2505;\nUPDATE t2 SET c='sixty-one thousand two hundred sixty-three' WHERE a=2506;\nUPDATE t2 SET c='twelve thousand seven hundred one' WHERE a=2507;\nUPDATE t2 SET c='eighty-eight thousand two hundred seventy-five' WHERE a=2508;\nUPDATE t2 SET c='four thousand four hundred fifty' WHERE a=2509;\nUPDATE t2 SET c='eighty-six thousand six hundred eighty-three' WHERE a=2510;\nUPDATE t2 SET c='twenty-eight thousand nine hundred forty-two' WHERE a=2511;\nUPDATE t2 SET c='sixty-four thousand eight hundred ninety-nine' WHERE a=2512;\nUPDATE t2 SET c='fifty-seven thousand nine hundred two' WHERE a=2513;\nUPDATE t2 SET c='sixty-one thousand eight hundred seven' WHERE a=2514;\nUPDATE t2 SET c='eighty thousand one hundred twelve' WHERE a=2515;\nUPDATE t2 SET c='nine thousand one hundred twenty' WHERE a=2516;\nUPDATE t2 SET c='seventy-six thousand five hundred sixteen' WHERE a=2517;\nUPDATE t2 SET c='forty-two thousand seven hundred fifty-two' WHERE a=2518;\nUPDATE t2 SET c='thirty-six thousand eight hundred forty-one' WHERE a=2519;\nUPDATE t2 SET c='five thousand eight hundred thirty-four' WHERE a=2520;\nUPDATE t2 SET c='nine thousand seventy-seven' WHERE a=2521;\nUPDATE t2 SET c='forty-nine thousand eight hundred seventy-eight' WHERE a=2522;\nUPDATE t2 SET c='sixty-six thousand eight hundred forty-seven' WHERE a=2523;\nUPDATE t2 SET c='twenty-three thousand one hundred twenty-five' WHERE a=2524;\nUPDATE t2 SET c='seventy-four thousand fifty-nine' WHERE a=2525;\nUPDATE t2 SET c='three thousand one hundred twenty-five' WHERE a=2526;\nUPDATE t2 SET c='twenty-eight thousand three hundred forty-six' WHERE a=2527;\nUPDATE t2 SET c='seven thousand five hundred sixty-seven' WHERE a=2528;\nUPDATE t2 SET c='sixty-seven thousand seven hundred thirty-one' WHERE a=2529;\nUPDATE t2 SET c='seventy-nine thousand five hundred sixty-four' WHERE a=2530;\nUPDATE t2 SET c='fifty-eight thousand four hundred fourteen' WHERE a=2531;\nUPDATE t2 SET c='four thousand two hundred four' WHERE a=2532;\nUPDATE t2 SET c='fourteen thousand seven hundred ninety-four' WHERE a=2533;\nUPDATE t2 SET c='sixty-two thousand nine hundred ten' WHERE a=2534;\nUPDATE t2 SET c='forty-five thousand one hundred forty-two' WHERE a=2535;\nUPDATE t2 SET c='eight thousand eighty-one' WHERE a=2536;\nUPDATE t2 SET c='nine thousand five hundred seventy-nine' WHERE a=2537;\nUPDATE t2 SET c='sixty thousand four hundred twenty-three' WHERE a=2538;\nUPDATE t2 SET c='twenty-nine thousand seven hundred sixty-seven' WHERE a=2539;\nUPDATE t2 SET c='ten thousand seven hundred fifteen' WHERE a=2540;\nUPDATE t2 SET c='sixty-one thousand nine hundred five' WHERE a=2541;\nUPDATE t2 SET c='thirteen thousand five hundred ninety-three' WHERE a=2542;\nUPDATE t2 SET c='fifteen thousand five hundred seven' WHERE a=2543;\nUPDATE t2 SET c='thirty-three thousand five hundred sixty' WHERE a=2544;\nUPDATE t2 SET c='thirty-nine thousand five hundred sixteen' WHERE a=2545;\nUPDATE t2 SET c='ninety-five thousand three hundred twenty-eight' WHERE a=2546;\nUPDATE t2 SET c='ninety-one thousand three hundred nine' WHERE a=2547;\nUPDATE t2 SET c='nine hundred forty' WHERE a=2548;\nUPDATE t2 SET c='eighty-four thousand six hundred one' WHERE a=2549;\nUPDATE t2 SET c='sixty-two thousand seven hundred forty-one' WHERE a=2550;\nUPDATE t2 SET c='eighty-three thousand five hundred ninety-nine' WHERE a=2551;\nUPDATE t2 SET c='sixty thousand six hundred forty-seven' WHERE a=2552;\nUPDATE t2 SET c='sixty-seven thousand three hundred sixty-three' WHERE a=2553;\nUPDATE t2 SET c='eighty thousand ninety-four' WHERE a=2554;\nUPDATE t2 SET c='thirty-five thousand four hundred twenty-nine' WHERE a=2555;\nUPDATE t2 SET c='thirty thousand six hundred forty-two' WHERE a=2556;\nUPDATE t2 SET c='twenty thousand three hundred eighty-two' WHERE a=2557;\nUPDATE t2 SET c='seventy-six thousand seven hundred fifty-three' WHERE a=2558;\nUPDATE t2 SET c='one thousand two hundred sixty-nine' WHERE a=2559;\nUPDATE t2 SET c='forty-one thousand five hundred ninety-nine' WHERE a=2560;\nUPDATE t2 SET c='thirty-seven thousand one hundred ninety-nine' WHERE a=2561;\nUPDATE t2 SET c='sixty-one thousand nine hundred forty-three' WHERE a=2562;\nUPDATE t2 SET c='eighteen thousand five hundred six' WHERE a=2563;\nUPDATE t2 SET c='twenty-two thousand six hundred seventy-one' WHERE a=2564;\nUPDATE t2 SET c='ten thousand six hundred sixty-three' WHERE a=2565;\nUPDATE t2 SET c='eighty-one thousand five hundred seventy-one' WHERE a=2566;\nUPDATE t2 SET c='fourteen thousand seven hundred thirty-nine' WHERE a=2567;\nUPDATE t2 SET c='seventy-three thousand six hundred fifty-two' WHERE a=2568;\nUPDATE t2 SET c='twenty-one thousand eight hundred three' WHERE a=2569;\nUPDATE t2 SET c='thirty thousand nine hundred thirty-two' WHERE a=2570;\nUPDATE t2 SET c='fifty-eight thousand eight hundred forty-seven' WHERE a=2571;\nUPDATE t2 SET c='eighty-eight thousand thirty-two' WHERE a=2572;\nUPDATE t2 SET c='fifty-eight thousand seven hundred seventy-one' WHERE a=2573;\nUPDATE t2 SET c='forty-nine thousand three hundred twenty-two' WHERE a=2574;\nUPDATE t2 SET c='ten thousand six hundred eighty-two' WHERE a=2575;\nUPDATE t2 SET c='eighty-six thousand six hundred thirty-three' WHERE a=2576;\nUPDATE t2 SET c='seventeen thousand seven hundred ninety-nine' WHERE a=2577;\nUPDATE t2 SET c='two thousand four hundred sixty-eight' WHERE a=2578;\nUPDATE t2 SET c='eight thousand one hundred fifty-one' WHERE a=2579;\nUPDATE t2 SET c='sixty-two thousand three hundred thirty-two' WHERE a=2580;\nUPDATE t2 SET c='seventy-six thousand seven hundred fifty-nine' WHERE a=2581;\nUPDATE t2 SET c='seventy-eight thousand three hundred seventy-six' WHERE a=2582;\nUPDATE t2 SET c='thirteen thousand seven hundred thirty-four' WHERE a=2583;\nUPDATE t2 SET c='fifty-eight thousand five hundred thirty-two' WHERE a=2584;\nUPDATE t2 SET c='fifteen thousand nine hundred seven' WHERE a=2585;\nUPDATE t2 SET c='twelve thousand eight hundred five' WHERE a=2586;\nUPDATE t2 SET c='forty-two thousand nine hundred five' WHERE a=2587;\nUPDATE t2 SET c='one thousand eight hundred seventy-nine' WHERE a=2588;\nUPDATE t2 SET c='thirty thousand six hundred seventy-seven' WHERE a=2589;\nUPDATE t2 SET c='twenty-four thousand one hundred eighty-nine' WHERE a=2590;\nUPDATE t2 SET c='eighty-five thousand two hundred seventy' WHERE a=2591;\nUPDATE t2 SET c='seventy-eight thousand six hundred thirty-eight' WHERE a=2592;\nUPDATE t2 SET c='thirty-one thousand two hundred fifty' WHERE a=2593;\nUPDATE t2 SET c='sixty-eight thousand one hundred nineteen' WHERE a=2594;\nUPDATE t2 SET c='fifty-five thousand six hundred twenty-nine' WHERE a=2595;\nUPDATE t2 SET c='ninety-eight thousand one hundred sixty-nine' WHERE a=2596;\nUPDATE t2 SET c='twenty-five thousand six hundred forty-seven' WHERE a=2597;\nUPDATE t2 SET c='ninety-three thousand seven hundred ninety-three' WHERE a=2598;\nUPDATE t2 SET c='ninety-nine thousand four hundred five' WHERE a=2599;\nUPDATE t2 SET c='sixty-seven thousand six hundred nineteen' WHERE a=2600;\nUPDATE t2 SET c='forty-six thousand four hundred fifty' WHERE a=2601;\nUPDATE t2 SET c='ninety-two thousand twenty-one' WHERE a=2602;\nUPDATE t2 SET c='one thousand nine hundred ninety-seven' WHERE a=2603;\nUPDATE t2 SET c='forty-five thousand two hundred twenty-four' WHERE a=2604;\nUPDATE t2 SET c='seventy-six thousand three hundred seventeen' WHERE a=2605;\nUPDATE t2 SET c='forty-eight thousand eight hundred sixty-seven' WHERE a=2606;\nUPDATE t2 SET c='sixty thousand five hundred' WHERE a=2607;\nUPDATE t2 SET c='ninety-two thousand three hundred ninety-two' WHERE a=2608;\nUPDATE t2 SET c='fifty-seven thousand six hundred eighty-four' WHERE a=2609;\nUPDATE t2 SET c='fifty thousand eight hundred seventy-three' WHERE a=2610;\nUPDATE t2 SET c='fifty thousand three hundred twenty-one' WHERE a=2611;\nUPDATE t2 SET c='ninety-nine thousand eighty-four' WHERE a=2612;\nUPDATE t2 SET c='fifty-five thousand six hundred fifty-six' WHERE a=2613;\nUPDATE t2 SET c='thirty-one thousand eight hundred three' WHERE a=2614;\nUPDATE t2 SET c='six thousand one hundred fifty-one' WHERE a=2615;\nUPDATE t2 SET c='fourteen thousand six hundred seventy-four' WHERE a=2616;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty' WHERE a=2617;\nUPDATE t2 SET c='four thousand eight hundred forty-six' WHERE a=2618;\nUPDATE t2 SET c='twenty-three thousand three hundred seventy-four' WHERE a=2619;\nUPDATE t2 SET c='thirty-two thousand nine hundred twenty-five' WHERE a=2620;\nUPDATE t2 SET c='sixty-four thousand six hundred seventy-one' WHERE a=2621;\nUPDATE t2 SET c='eighty-five thousand seven hundred eighty-eight' WHERE a=2622;\nUPDATE t2 SET c='three thousand nine hundred seventeen' WHERE a=2623;\nUPDATE t2 SET c='forty-seven thousand three hundred sixty' WHERE a=2624;\nUPDATE t2 SET c='thirty-three thousand fifty-seven' WHERE a=2625;\nUPDATE t2 SET c='sixty-five thousand eighty-four' WHERE a=2626;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-six' WHERE a=2627;\nUPDATE t2 SET c='fifty-nine thousand four hundred ninety' WHERE a=2628;\nUPDATE t2 SET c='thirty-five thousand eight' WHERE a=2629;\nUPDATE t2 SET c='seventy-one thousand two hundred seventy-two' WHERE a=2630;\nUPDATE t2 SET c='sixty-six thousand six hundred eighty-four' WHERE a=2631;\nUPDATE t2 SET c='twenty thousand twenty-one' WHERE a=2632;\nUPDATE t2 SET c='forty-five thousand five hundred fifty-eight' WHERE a=2633;\nUPDATE t2 SET c='forty-nine thousand nine hundred sixty-two' WHERE a=2634;\nUPDATE t2 SET c='sixty-one thousand sixty-nine' WHERE a=2635;\nUPDATE t2 SET c='eighty thousand four hundred fifty-three' WHERE a=2636;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-one' WHERE a=2637;\nUPDATE t2 SET c='eighty-five thousand six hundred twenty-two' WHERE a=2638;\nUPDATE t2 SET c='sixty-five thousand three hundred two' WHERE a=2639;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixty-five' WHERE a=2640;\nUPDATE t2 SET c='seventeen thousand seven hundred ninety-three' WHERE a=2641;\nUPDATE t2 SET c='seventy-two thousand five hundred sixty-seven' WHERE a=2642;\nUPDATE t2 SET c='seventy-nine thousand twenty-six' WHERE a=2643;\nUPDATE t2 SET c='sixty-three thousand seven hundred twenty' WHERE a=2644;\nUPDATE t2 SET c='twenty thousand two hundred sixty-eight' WHERE a=2645;\nUPDATE t2 SET c='one hundred ninety-seven' WHERE a=2646;\nUPDATE t2 SET c='eleven thousand four hundred twenty-three' WHERE a=2647;\nUPDATE t2 SET c='fifty-one thousand four hundred five' WHERE a=2648;\nUPDATE t2 SET c='ninety-two thousand five hundred seven' WHERE a=2649;\nUPDATE t2 SET c='thirty thousand five hundred ninety-nine' WHERE a=2650;\nUPDATE t2 SET c='eighteen thousand thirty-one' WHERE a=2651;\nUPDATE t2 SET c='thirteen thousand nine hundred forty-nine' WHERE a=2652;\nUPDATE t2 SET c='sixty thousand six hundred forty-seven' WHERE a=2653;\nUPDATE t2 SET c='sixty-one thousand one hundred forty' WHERE a=2654;\nUPDATE t2 SET c='ninety-four thousand five hundred sixty-three' WHERE a=2655;\nUPDATE t2 SET c='eleven thousand seven hundred seventy' WHERE a=2656;\nUPDATE t2 SET c='forty-seven thousand five hundred ninety-seven' WHERE a=2657;\nUPDATE t2 SET c='ninety-six thousand five hundred eight' WHERE a=2658;\nUPDATE t2 SET c='fifteen thousand four hundred twenty-one' WHERE a=2659;\nUPDATE t2 SET c='fifty-three thousand eight hundred sixty-seven' WHERE a=2660;\nUPDATE t2 SET c='fourteen thousand seven hundred eight' WHERE a=2661;\nUPDATE t2 SET c='seventy thousand five hundred ninety-nine' WHERE a=2662;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-five' WHERE a=2663;\nUPDATE t2 SET c='twenty-nine thousand one hundred two' WHERE a=2664;\nUPDATE t2 SET c='seventy-seven thousand one hundred ninety-five' WHERE a=2665;\nUPDATE t2 SET c='forty-seven thousand four hundred fifty-three' WHERE a=2666;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixteen' WHERE a=2667;\nUPDATE t2 SET c='thirty-three thousand three hundred ten' WHERE a=2668;\nUPDATE t2 SET c='forty-seven thousand two hundred two' WHERE a=2669;\nUPDATE t2 SET c='eighty-eight thousand three hundred thirty-five' WHERE a=2670;\nUPDATE t2 SET c='eighteen thousand fifty-eight' WHERE a=2671;\nUPDATE t2 SET c='eighty-three thousand four hundred fifty-four' WHERE a=2672;\nUPDATE t2 SET c='eighty-five thousand one hundred eight' WHERE a=2673;\nUPDATE t2 SET c='nineteen thousand three hundred three' WHERE a=2674;\nUPDATE t2 SET c='fifty-eight thousand four hundred thirty-one' WHERE a=2675;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy-four' WHERE a=2676;\nUPDATE t2 SET c='sixty-eight thousand eight hundred seventy-eight' WHERE a=2677;\nUPDATE t2 SET c='sixty-seven thousand one hundred sixty-four' WHERE a=2678;\nUPDATE t2 SET c='thirty-three thousand two hundred ninety-nine' WHERE a=2679;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty-six' WHERE a=2680;\nUPDATE t2 SET c='fifty-three thousand five hundred twenty-nine' WHERE a=2681;\nUPDATE t2 SET c='thirty-nine thousand eight hundred thirty-four' WHERE a=2682;\nUPDATE t2 SET c='fifty-three thousand six hundred thirty-six' WHERE a=2683;\nUPDATE t2 SET c='forty thousand three hundred ninety' WHERE a=2684;\nUPDATE t2 SET c='forty-six thousand five hundred ninety-one' WHERE a=2685;\nUPDATE t2 SET c='twenty-five thousand two hundred ten' WHERE a=2686;\nUPDATE t2 SET c='fifty-four thousand thirty-one' WHERE a=2687;\nUPDATE t2 SET c='eighty-seven thousand four hundred two' WHERE a=2688;\nUPDATE t2 SET c='seventeen thousand three hundred sixty' WHERE a=2689;\nUPDATE t2 SET c='thirteen thousand eight hundred twenty-eight' WHERE a=2690;\nUPDATE t2 SET c='eighty-one thousand one hundred thirty' WHERE a=2691;\nUPDATE t2 SET c='sixteen thousand six hundred sixteen' WHERE a=2692;\nUPDATE t2 SET c='eighty-four thousand nine hundred fifty-three' WHERE a=2693;\nUPDATE t2 SET c='seventy-two thousand two hundred fourteen' WHERE a=2694;\nUPDATE t2 SET c='thirteen thousand three hundred twenty-two' WHERE a=2695;\nUPDATE t2 SET c='forty-seven thousand one hundred thirty-six' WHERE a=2696;\nUPDATE t2 SET c='sixteen thousand eight hundred eighty-four' WHERE a=2697;\nUPDATE t2 SET c='eighteen thousand three hundred fifty-four' WHERE a=2698;\nUPDATE t2 SET c='eleven thousand one hundred seventy' WHERE a=2699;\nUPDATE t2 SET c='twenty-nine thousand four hundred eighty-two' WHERE a=2700;\nUPDATE t2 SET c='forty-five thousand three hundred thirteen' WHERE a=2701;\nUPDATE t2 SET c='fifteen thousand five hundred seventy-four' WHERE a=2702;\nUPDATE t2 SET c='seventy-five thousand five hundred three' WHERE a=2703;\nUPDATE t2 SET c='thirty-eight thousand nine hundred fifty-seven' WHERE a=2704;\nUPDATE t2 SET c='ninety-nine thousand two hundred forty-nine' WHERE a=2705;\nUPDATE t2 SET c='sixty-four thousand nine hundred eighty-three' WHERE a=2706;\nUPDATE t2 SET c='fifty-five thousand nine hundred sixty-two' WHERE a=2707;\nUPDATE t2 SET c='fifty-two thousand two hundred sixty-one' WHERE a=2708;\nUPDATE t2 SET c='thirty-one thousand six hundred eight' WHERE a=2709;\nUPDATE t2 SET c='eighteen thousand nine hundred twenty-eight' WHERE a=2710;\nUPDATE t2 SET c='forty-three thousand sixty-eight' WHERE a=2711;\nUPDATE t2 SET c='forty thousand two hundred thirty-one' WHERE a=2712;\nUPDATE t2 SET c='twenty-seven thousand three hundred sixty-four' WHERE a=2713;\nUPDATE t2 SET c='sixty-eight thousand one hundred eighty-eight' WHERE a=2714;\nUPDATE t2 SET c='eighty-four thousand nine hundred eighty-six' WHERE a=2715;\nUPDATE t2 SET c='seventy-four thousand one hundred ninety' WHERE a=2716;\nUPDATE t2 SET c='sixty-six thousand one hundred twenty-one' WHERE a=2717;\nUPDATE t2 SET c='sixty-one thousand seven hundred eighty-five' WHERE a=2718;\nUPDATE t2 SET c='forty-six thousand one hundred sixteen' WHERE a=2719;\nUPDATE t2 SET c='five thousand six hundred seventy-two' WHERE a=2720;\nUPDATE t2 SET c='fifty-four thousand one hundred sixty-three' WHERE a=2721;\nUPDATE t2 SET c='seventy-one thousand nine hundred ninety-eight' WHERE a=2722;\nUPDATE t2 SET c='ninety-one thousand eight hundred nine' WHERE a=2723;\nUPDATE t2 SET c='seventy-nine thousand one hundred eighty-nine' WHERE a=2724;\nUPDATE t2 SET c='forty thousand four hundred ninety-nine' WHERE a=2725;\nUPDATE t2 SET c='twenty-seven thousand nine hundred ninety-six' WHERE a=2726;\nUPDATE t2 SET c='thirty-seven thousand eight hundred forty-nine' WHERE a=2727;\nUPDATE t2 SET c='forty-seven thousand seven hundred eighty' WHERE a=2728;\nUPDATE t2 SET c='seventy-six thousand six' WHERE a=2729;\nUPDATE t2 SET c='twenty thousand one hundred eight' WHERE a=2730;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-one' WHERE a=2731;\nUPDATE t2 SET c='fourteen thousand nine hundred sixty-three' WHERE a=2732;\nUPDATE t2 SET c='sixty-five thousand eight hundred forty-two' WHERE a=2733;\nUPDATE t2 SET c='ninety-six thousand eight hundred forty' WHERE a=2734;\nUPDATE t2 SET c='ninety-two thousand nine hundred seventy-eight' WHERE a=2735;\nUPDATE t2 SET c='thirty-five thousand four hundred twenty-four' WHERE a=2736;\nUPDATE t2 SET c='seventy-four thousand seven hundred fifty-one' WHERE a=2737;\nUPDATE t2 SET c='seventy-nine thousand nine hundred forty' WHERE a=2738;\nUPDATE t2 SET c='thirty-six thousand one hundred forty-nine' WHERE a=2739;\nUPDATE t2 SET c='sixty-six thousand seven hundred forty-four' WHERE a=2740;\nUPDATE t2 SET c='ninety-six thousand four hundred eight' WHERE a=2741;\nUPDATE t2 SET c='sixty-five thousand three hundred sixty-five' WHERE a=2742;\nUPDATE t2 SET c='eighty-seven thousand one hundred sixteen' WHERE a=2743;\nUPDATE t2 SET c='thirty-three thousand six hundred forty-four' WHERE a=2744;\nUPDATE t2 SET c='fifty-five thousand eight hundred sixty-six' WHERE a=2745;\nUPDATE t2 SET c='eighty-one thousand nine' WHERE a=2746;\nUPDATE t2 SET c='forty-nine thousand four hundred sixteen' WHERE a=2747;\nUPDATE t2 SET c='forty thousand one hundred forty-five' WHERE a=2748;\nUPDATE t2 SET c='twenty thousand three hundred ninety' WHERE a=2749;\nUPDATE t2 SET c='fourteen thousand two hundred sixty-three' WHERE a=2750;\nUPDATE t2 SET c='ninety-five thousand three hundred forty' WHERE a=2751;\nUPDATE t2 SET c='twenty-six thousand four hundred five' WHERE a=2752;\nUPDATE t2 SET c='sixty-two thousand eight hundred thirty-seven' WHERE a=2753;\nUPDATE t2 SET c='twenty-two thousand five hundred sixty-five' WHERE a=2754;\nUPDATE t2 SET c='seventy-three thousand fourteen' WHERE a=2755;\nUPDATE t2 SET c='thirty-four thousand six hundred seventy-nine' WHERE a=2756;\nUPDATE t2 SET c='sixty-five thousand three hundred ninety-two' WHERE a=2757;\nUPDATE t2 SET c='thirty-nine thousand seven hundred fifty-three' WHERE a=2758;\nUPDATE t2 SET c='twelve thousand eight hundred ninety-seven' WHERE a=2759;\nUPDATE t2 SET c='eight thousand eight hundred ninety-nine' WHERE a=2760;\nUPDATE t2 SET c='sixty-five thousand eight hundred forty-one' WHERE a=2761;\nUPDATE t2 SET c='fifty-three thousand nine hundred forty-six' WHERE a=2762;\nUPDATE t2 SET c='ninety-four thousand fifty-one' WHERE a=2763;\nUPDATE t2 SET c='sixty-six thousand eight hundred fifty-three' WHERE a=2764;\nUPDATE t2 SET c='eight thousand seven hundred ninety-two' WHERE a=2765;\nUPDATE t2 SET c='thirty-eight thousand eight hundred six' WHERE a=2766;\nUPDATE t2 SET c='nineteen thousand five hundred seventy-three' WHERE a=2767;\nUPDATE t2 SET c='eighty-two thousand nine hundred twenty-five' WHERE a=2768;\nUPDATE t2 SET c='eight thousand five hundred eighty-one' WHERE a=2769;\nUPDATE t2 SET c='four thousand eight hundred eight' WHERE a=2770;\nUPDATE t2 SET c='sixty-three thousand four hundred forty-nine' WHERE a=2771;\nUPDATE t2 SET c='twenty-five thousand nine hundred eighty-two' WHERE a=2772;\nUPDATE t2 SET c='thirty-eight thousand seven hundred forty-six' WHERE a=2773;\nUPDATE t2 SET c='sixty-eight thousand seven hundred one' WHERE a=2774;\nUPDATE t2 SET c='seventy-five thousand one hundred fifty-seven' WHERE a=2775;\nUPDATE t2 SET c='thirty-five thousand six hundred sixty-eight' WHERE a=2776;\nUPDATE t2 SET c='four thousand five hundred twenty-four' WHERE a=2777;\nUPDATE t2 SET c='thirty-two thousand nine hundred eighty-seven' WHERE a=2778;\nUPDATE t2 SET c='thirty-six thousand five hundred sixty-nine' WHERE a=2779;\nUPDATE t2 SET c='ninety-nine thousand four hundred forty-one' WHERE a=2780;\nUPDATE t2 SET c='eighty-eight thousand seven hundred eighty-four' WHERE a=2781;\nUPDATE t2 SET c='five thousand five hundred six' WHERE a=2782;\nUPDATE t2 SET c='forty-one thousand four hundred eighty-six' WHERE a=2783;\nUPDATE t2 SET c='eleven thousand two hundred' WHERE a=2784;\nUPDATE t2 SET c='fifty-one thousand seven hundred four' WHERE a=2785;\nUPDATE t2 SET c='seventeen thousand five hundred three' WHERE a=2786;\nUPDATE t2 SET c='forty-seven thousand three hundred seven' WHERE a=2787;\nUPDATE t2 SET c='seventy-three thousand eight hundred fifty-eight' WHERE a=2788;\nUPDATE t2 SET c='fifty thousand three hundred eighty-six' WHERE a=2789;\nUPDATE t2 SET c='twenty thousand two hundred forty-two' WHERE a=2790;\nUPDATE t2 SET c='sixty-seven thousand one hundred forty-four' WHERE a=2791;\nUPDATE t2 SET c='ninety-eight thousand one hundred seven' WHERE a=2792;\nUPDATE t2 SET c='twenty-four thousand six hundred sixty' WHERE a=2793;\nUPDATE t2 SET c='twenty-two thousand nine hundred forty-eight' WHERE a=2794;\nUPDATE t2 SET c='twenty-eight thousand six hundred ninety-one' WHERE a=2795;\nUPDATE t2 SET c='eight hundred twenty-five' WHERE a=2796;\nUPDATE t2 SET c='seventy-five thousand three hundred seventy-seven' WHERE a=2797;\nUPDATE t2 SET c='nineteen thousand seven hundred ninety-two' WHERE a=2798;\nUPDATE t2 SET c='fifty-one thousand four hundred ninety-three' WHERE a=2799;\nUPDATE t2 SET c='seventy thousand three hundred thirty-eight' WHERE a=2800;\nUPDATE t2 SET c='thirty-two thousand seven hundred seventy-eight' WHERE a=2801;\nUPDATE t2 SET c='seventy-seven thousand one hundred twenty-six' WHERE a=2802;\nUPDATE t2 SET c='sixty-six thousand five hundred forty-eight' WHERE a=2803;\nUPDATE t2 SET c='ninety-six thousand eight hundred fifty-six' WHERE a=2804;\nUPDATE t2 SET c='ninety-six thousand seven hundred forty-eight' WHERE a=2805;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighty-eight' WHERE a=2806;\nUPDATE t2 SET c='eighty thousand one hundred twenty-seven' WHERE a=2807;\nUPDATE t2 SET c='ninety-nine thousand five hundred eighty-seven' WHERE a=2808;\nUPDATE t2 SET c='eighty-five thousand nine' WHERE a=2809;\nUPDATE t2 SET c='eighty-eight thousand five hundred ninety-one' WHERE a=2810;\nUPDATE t2 SET c='thirty-five thousand two hundred two' WHERE a=2811;\nUPDATE t2 SET c='fifty-nine thousand eight hundred sixty-three' WHERE a=2812;\nUPDATE t2 SET c='fifty-one thousand three hundred forty-eight' WHERE a=2813;\nUPDATE t2 SET c='forty-six thousand nine hundred seventy-two' WHERE a=2814;\nUPDATE t2 SET c='sixty-two thousand twenty-seven' WHERE a=2815;\nUPDATE t2 SET c='four thousand four hundred twenty-six' WHERE a=2816;\nUPDATE t2 SET c='sixty-five thousand four hundred seventy-seven' WHERE a=2817;\nUPDATE t2 SET c='forty thousand four hundred sixty-six' WHERE a=2818;\nUPDATE t2 SET c='three thousand sixty-three' WHERE a=2819;\nUPDATE t2 SET c='forty-four thousand two hundred four' WHERE a=2820;\nUPDATE t2 SET c='one thousand two hundred thirty-nine' WHERE a=2821;\nUPDATE t2 SET c='three thousand eight hundred ten' WHERE a=2822;\nUPDATE t2 SET c='twelve thousand six hundred forty-six' WHERE a=2823;\nUPDATE t2 SET c='fifty-five thousand seven hundred thirty-six' WHERE a=2824;\nUPDATE t2 SET c='sixty-six thousand six hundred forty-four' WHERE a=2825;\nUPDATE t2 SET c='ninety thousand two hundred fifty-five' WHERE a=2826;\nUPDATE t2 SET c='twenty-two thousand nineteen' WHERE a=2827;\nUPDATE t2 SET c='forty-two thousand three hundred seventy-four' WHERE a=2828;\nUPDATE t2 SET c='five thousand three hundred eighty-two' WHERE a=2829;\nUPDATE t2 SET c='thirteen thousand three hundred' WHERE a=2830;\nUPDATE t2 SET c='fifty-five thousand six hundred eight' WHERE a=2831;\nUPDATE t2 SET c='sixty thousand four' WHERE a=2832;\nUPDATE t2 SET c='eighty-five thousand eight hundred thirty-seven' WHERE a=2833;\nUPDATE t2 SET c='one thousand five hundred thirty-seven' WHERE a=2834;\nUPDATE t2 SET c='eight thousand seven hundred sixty-four' WHERE a=2835;\nUPDATE t2 SET c='seventy thousand one hundred twenty-six' WHERE a=2836;\nUPDATE t2 SET c='forty thousand two hundred forty-eight' WHERE a=2837;\nUPDATE t2 SET c='ninety-nine thousand eight hundred one' WHERE a=2838;\nUPDATE t2 SET c='sixty-four thousand seventy-six' WHERE a=2839;\nUPDATE t2 SET c='seventy-one thousand seven hundred twenty-two' WHERE a=2840;\nUPDATE t2 SET c='three thousand six hundred eighty-three' WHERE a=2841;\nUPDATE t2 SET c='fifty-eight thousand one hundred sixty-six' WHERE a=2842;\nUPDATE t2 SET c='fifty-two thousand sixty-eight' WHERE a=2843;\nUPDATE t2 SET c='ninety-six thousand nine hundred eighty-three' WHERE a=2844;\nUPDATE t2 SET c='eighty-four thousand two hundred thirteen' WHERE a=2845;\nUPDATE t2 SET c='sixty-five thousand four hundred ninety-nine' WHERE a=2846;\nUPDATE t2 SET c='one thousand two hundred thirty-two' WHERE a=2847;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seventy' WHERE a=2848;\nUPDATE t2 SET c='eight thousand four hundred nineteen' WHERE a=2849;\nUPDATE t2 SET c='ninety-three thousand forty-eight' WHERE a=2850;\nUPDATE t2 SET c='thirty thousand one hundred forty-two' WHERE a=2851;\nUPDATE t2 SET c='forty-five thousand nine hundred thirty-three' WHERE a=2852;\nUPDATE t2 SET c='thirty-seven thousand six hundred seventy-seven' WHERE a=2853;\nUPDATE t2 SET c='four thousand four hundred nineteen' WHERE a=2854;\nUPDATE t2 SET c='eight thousand nine hundred forty-five' WHERE a=2855;\nUPDATE t2 SET c='seventy-five thousand forty-two' WHERE a=2856;\nUPDATE t2 SET c='one thousand seven hundred thirty-five' WHERE a=2857;\nUPDATE t2 SET c='seventy-six thousand four hundred twenty' WHERE a=2858;\nUPDATE t2 SET c='forty-nine thousand one hundred sixty' WHERE a=2859;\nUPDATE t2 SET c='twenty-five thousand nine hundred twenty-eight' WHERE a=2860;\nUPDATE t2 SET c='forty-three thousand seven hundred sixty-six' WHERE a=2861;\nUPDATE t2 SET c='forty-five thousand eight hundred five' WHERE a=2862;\nUPDATE t2 SET c='seventy-seven thousand seventy-one' WHERE a=2863;\nUPDATE t2 SET c='six thousand six hundred seventy-one' WHERE a=2864;\nUPDATE t2 SET c='thirty thousand nine hundred fifty' WHERE a=2865;\nUPDATE t2 SET c='ninety-five thousand six hundred ninety-five' WHERE a=2866;\nUPDATE t2 SET c='sixty thousand fifty-four' WHERE a=2867;\nUPDATE t2 SET c='seven thousand sixty-four' WHERE a=2868;\nUPDATE t2 SET c='nineteen thousand three hundred eighty-nine' WHERE a=2869;\nUPDATE t2 SET c='forty-five thousand four hundred twenty' WHERE a=2870;\nUPDATE t2 SET c='thirty-three thousand ninety-five' WHERE a=2871;\nUPDATE t2 SET c='fifty-six thousand seven hundred thirty-one' WHERE a=2872;\nUPDATE t2 SET c='thirty-nine thousand nine hundred fifty-seven' WHERE a=2873;\nUPDATE t2 SET c='fifty-eight thousand four hundred eighty-two' WHERE a=2874;\nUPDATE t2 SET c='ninety-six thousand one hundred sixty' WHERE a=2875;\nUPDATE t2 SET c='eighty-nine thousand one hundred fifty-one' WHERE a=2876;\nUPDATE t2 SET c='seventy-six thousand two hundred sixty-seven' WHERE a=2877;\nUPDATE t2 SET c='ninety-five thousand five hundred seventeen' WHERE a=2878;\nUPDATE t2 SET c='forty-two thousand nine hundred eighty-five' WHERE a=2879;\nUPDATE t2 SET c='thirty-three thousand eight hundred fifty-three' WHERE a=2880;\nUPDATE t2 SET c='ninety-two thousand seven hundred sixty-nine' WHERE a=2881;\nUPDATE t2 SET c='sixty-nine thousand four hundred eighteen' WHERE a=2882;\nUPDATE t2 SET c='seventy-eight thousand twenty-eight' WHERE a=2883;\nUPDATE t2 SET c='seventy-six thousand four hundred seven' WHERE a=2884;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-eight' WHERE a=2885;\nUPDATE t2 SET c='ninety-one thousand ten' WHERE a=2886;\nUPDATE t2 SET c='eighty thousand eight hundred thirty-six' WHERE a=2887;\nUPDATE t2 SET c='ninety-four thousand eight hundred ninety-five' WHERE a=2888;\nUPDATE t2 SET c='twenty-eight thousand five hundred three' WHERE a=2889;\nUPDATE t2 SET c='seventy thousand two hundred fifty-six' WHERE a=2890;\nUPDATE t2 SET c='twenty-three thousand five hundred eighty-five' WHERE a=2891;\nUPDATE t2 SET c='sixty-six thousand two hundred twenty' WHERE a=2892;\nUPDATE t2 SET c='twenty-six thousand two hundred forty-six' WHERE a=2893;\nUPDATE t2 SET c='three thousand six hundred ninety-nine' WHERE a=2894;\nUPDATE t2 SET c='fifteen thousand seven hundred thirty' WHERE a=2895;\nUPDATE t2 SET c='seventy-three thousand two hundred eighty-one' WHERE a=2896;\nUPDATE t2 SET c='thirty-two thousand twenty-three' WHERE a=2897;\nUPDATE t2 SET c='twenty-eight thousand seven hundred fifty' WHERE a=2898;\nUPDATE t2 SET c='seventy-five thousand four hundred fifty-six' WHERE a=2899;\nUPDATE t2 SET c='thirty-one thousand three hundred nineteen' WHERE a=2900;\nUPDATE t2 SET c='seventy-eight thousand five hundred five' WHERE a=2901;\nUPDATE t2 SET c='fifty thousand five hundred eighty-one' WHERE a=2902;\nUPDATE t2 SET c='eighty-nine thousand six hundred seventy-nine' WHERE a=2903;\nUPDATE t2 SET c='twenty-three thousand eight hundred thirty-two' WHERE a=2904;\nUPDATE t2 SET c='sixty-seven thousand seven hundred ninety-two' WHERE a=2905;\nUPDATE t2 SET c='twenty-three thousand one hundred eighty-two' WHERE a=2906;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-seven' WHERE a=2907;\nUPDATE t2 SET c='twenty-four thousand two hundred seventy-nine' WHERE a=2908;\nUPDATE t2 SET c='thirty thousand eight hundred seventy-six' WHERE a=2909;\nUPDATE t2 SET c='ninety-eight thousand two hundred sixty-six' WHERE a=2910;\nUPDATE t2 SET c='ninety-seven thousand seven hundred sixty-four' WHERE a=2911;\nUPDATE t2 SET c='sixty-one thousand eight hundred sixty' WHERE a=2912;\nUPDATE t2 SET c='eighteen thousand six hundred thirty-six' WHERE a=2913;\nUPDATE t2 SET c='seventy-six thousand eight hundred five' WHERE a=2914;\nUPDATE t2 SET c='forty thousand two hundred six' WHERE a=2915;\nUPDATE t2 SET c='twenty-one thousand three hundred twenty-five' WHERE a=2916;\nUPDATE t2 SET c='forty thousand nine hundred sixty-six' WHERE a=2917;\nUPDATE t2 SET c='sixty-one thousand one hundred twenty-three' WHERE a=2918;\nUPDATE t2 SET c='ninety-eight thousand seven hundred eight' WHERE a=2919;\nUPDATE t2 SET c='twenty-seven thousand nine hundred eighty-nine' WHERE a=2920;\nUPDATE t2 SET c='ninety-eight thousand nine hundred fifty-one' WHERE a=2921;\nUPDATE t2 SET c='fifty-two thousand nine hundred thirty-one' WHERE a=2922;\nUPDATE t2 SET c='eighty-three thousand five hundred forty-four' WHERE a=2923;\nUPDATE t2 SET c='thirty-eight thousand nine hundred one' WHERE a=2924;\nUPDATE t2 SET c='fifty-seven thousand four hundred eighty' WHERE a=2925;\nUPDATE t2 SET c='seventy-eight thousand two hundred twenty-four' WHERE a=2926;\nUPDATE t2 SET c='sixty-six thousand five hundred three' WHERE a=2927;\nUPDATE t2 SET c='thirty-six thousand one hundred twenty' WHERE a=2928;\nUPDATE t2 SET c='seven thousand eighty-nine' WHERE a=2929;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-four' WHERE a=2930;\nUPDATE t2 SET c='twenty-four thousand seven hundred nine' WHERE a=2931;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty-nine' WHERE a=2932;\nUPDATE t2 SET c='sixty-two thousand one hundred twenty-four' WHERE a=2933;\nUPDATE t2 SET c='eighty-seven thousand four hundred twenty-seven' WHERE a=2934;\nUPDATE t2 SET c='seventy-five thousand five hundred ninety-seven' WHERE a=2935;\nUPDATE t2 SET c='sixty-two thousand four hundred fifty-four' WHERE a=2936;\nUPDATE t2 SET c='three hundred eighty-two' WHERE a=2937;\nUPDATE t2 SET c='twenty-eight thousand two hundred forty-seven' WHERE a=2938;\nUPDATE t2 SET c='nine thousand six hundred fifty-two' WHERE a=2939;\nUPDATE t2 SET c='forty thousand seventy-four' WHERE a=2940;\nUPDATE t2 SET c='fifty-seven thousand three hundred eighty-nine' WHERE a=2941;\nUPDATE t2 SET c='twenty-one thousand nine hundred seven' WHERE a=2942;\nUPDATE t2 SET c='sixty-eight thousand twenty-five' WHERE a=2943;\nUPDATE t2 SET c='sixty-one thousand six hundred ten' WHERE a=2944;\nUPDATE t2 SET c='four thousand one hundred seventy-nine' WHERE a=2945;\nUPDATE t2 SET c='twelve thousand seven hundred seventy' WHERE a=2946;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-three' WHERE a=2947;\nUPDATE t2 SET c='one thousand two hundred ninety-six' WHERE a=2948;\nUPDATE t2 SET c='fifty thousand nine hundred two' WHERE a=2949;\nUPDATE t2 SET c='fifty-four thousand two hundred twenty' WHERE a=2950;\nUPDATE t2 SET c='seventy-eight thousand six hundred thirty-three' WHERE a=2951;\nUPDATE t2 SET c='sixty-two thousand eighty' WHERE a=2952;\nUPDATE t2 SET c='seventy-eight thousand five hundred ninety-five' WHERE a=2953;\nUPDATE t2 SET c='nineteen thousand seven hundred seventy-one' WHERE a=2954;\nUPDATE t2 SET c='fourteen thousand five hundred three' WHERE a=2955;\nUPDATE t2 SET c='forty-five thousand one hundred fifty-five' WHERE a=2956;\nUPDATE t2 SET c='ninety-four thousand one hundred fifty-one' WHERE a=2957;\nUPDATE t2 SET c='eighteen thousand seven hundred forty-two' WHERE a=2958;\nUPDATE t2 SET c='twenty-two thousand three hundred thirteen' WHERE a=2959;\nUPDATE t2 SET c='eight thousand seven hundred eighty-nine' WHERE a=2960;\nUPDATE t2 SET c='twenty-eight thousand three hundred thirty-one' WHERE a=2961;\nUPDATE t2 SET c='thirty-seven thousand five hundred sixteen' WHERE a=2962;\nUPDATE t2 SET c='eighty-one thousand eight hundred five' WHERE a=2963;\nUPDATE t2 SET c='twenty thousand forty-six' WHERE a=2964;\nUPDATE t2 SET c='thirty-eight thousand three hundred ninety-one' WHERE a=2965;\nUPDATE t2 SET c='fourteen thousand two hundred sixty-five' WHERE a=2966;\nUPDATE t2 SET c='sixty-eight thousand five hundred thirty' WHERE a=2967;\nUPDATE t2 SET c='ninety-four thousand two hundred forty-seven' WHERE a=2968;\nUPDATE t2 SET c='ninety-seven thousand nine hundred one' WHERE a=2969;\nUPDATE t2 SET c='thirty-four thousand eight hundred seventy-seven' WHERE a=2970;\nUPDATE t2 SET c='thirty-six thousand one hundred seventy-eight' WHERE a=2971;\nUPDATE t2 SET c='thirty-four thousand three hundred seventy-six' WHERE a=2972;\nUPDATE t2 SET c='thirty thousand two hundred eighty-three' WHERE a=2973;\nUPDATE t2 SET c='thirteen thousand eight hundred eighteen' WHERE a=2974;\nUPDATE t2 SET c='seventy-six thousand four hundred sixty-three' WHERE a=2975;\nUPDATE t2 SET c='seventy-six thousand five hundred thirteen' WHERE a=2976;\nUPDATE t2 SET c='eighty-three thousand nine hundred forty-seven' WHERE a=2977;\nUPDATE t2 SET c='ninety-seven thousand seven hundred fifty-one' WHERE a=2978;\nUPDATE t2 SET c='seven thousand five hundred seventeen' WHERE a=2979;\nUPDATE t2 SET c='three thousand eight hundred thirty-four' WHERE a=2980;\nUPDATE t2 SET c='forty-six thousand nine hundred forty-one' WHERE a=2981;\nUPDATE t2 SET c='sixty-three thousand eighty' WHERE a=2982;\nUPDATE t2 SET c='sixty-one thousand six hundred forty-six' WHERE a=2983;\nUPDATE t2 SET c='eighty thousand one hundred one' WHERE a=2984;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ninety' WHERE a=2985;\nUPDATE t2 SET c='two hundred seventy-five' WHERE a=2986;\nUPDATE t2 SET c='twenty-three thousand five hundred forty-four' WHERE a=2987;\nUPDATE t2 SET c='forty-nine thousand three hundred twenty-seven' WHERE a=2988;\nUPDATE t2 SET c='seventy thousand nine hundred sixty-eight' WHERE a=2989;\nUPDATE t2 SET c='eighty-nine thousand five hundred sixty' WHERE a=2990;\nUPDATE t2 SET c='sixty-seven thousand nine hundred ninety' WHERE a=2991;\nUPDATE t2 SET c='eighty-four thousand two hundred forty-two' WHERE a=2992;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-seven' WHERE a=2993;\nUPDATE t2 SET c='twenty-three thousand eleven' WHERE a=2994;\nUPDATE t2 SET c='eighty-four thousand five hundred eighty-three' WHERE a=2995;\nUPDATE t2 SET c='thirty-one thousand six hundred sixty-four' WHERE a=2996;\nUPDATE t2 SET c='four thousand two hundred' WHERE a=2997;\nUPDATE t2 SET c='seventy-six thousand three hundred forty-six' WHERE a=2998;\nUPDATE t2 SET c='thirty-two thousand five hundred ninety-eight' WHERE a=2999;\nUPDATE t2 SET c='seventy thousand two hundred sixty-two' WHERE a=3000;\nUPDATE t2 SET c='nineteen thousand eight hundred forty-eight' WHERE a=3001;\nUPDATE t2 SET c='ninety thousand five hundred forty-two' WHERE a=3002;\nUPDATE t2 SET c='fifteen thousand one hundred sixty-one' WHERE a=3003;\nUPDATE t2 SET c='fifty-seven thousand eight hundred sixty-four' WHERE a=3004;\nUPDATE t2 SET c='eighty-three thousand seven hundred ninety-four' WHERE a=3005;\nUPDATE t2 SET c='eighty-two thousand six hundred sixty-three' WHERE a=3006;\nUPDATE t2 SET c='forty-four thousand eight hundred thirty-three' WHERE a=3007;\nUPDATE t2 SET c='thirty-five thousand five hundred twenty-two' WHERE a=3008;\nUPDATE t2 SET c='eight thousand five hundred fifty-eight' WHERE a=3009;\nUPDATE t2 SET c='eleven thousand three hundred eighty-two' WHERE a=3010;\nUPDATE t2 SET c='seventy-one thousand seven hundred seventy-seven' WHERE a=3011;\nUPDATE t2 SET c='sixteen thousand eighty-six' WHERE a=3012;\nUPDATE t2 SET c='eighty-two thousand six hundred' WHERE a=3013;\nUPDATE t2 SET c='fifteen thousand four hundred fifty-three' WHERE a=3014;\nUPDATE t2 SET c='seventy-three thousand seven hundred twenty-three' WHERE a=3015;\nUPDATE t2 SET c='fifty-three thousand four hundred eighty-four' WHERE a=3016;\nUPDATE t2 SET c='eighty-two thousand one hundred nineteen' WHERE a=3017;\nUPDATE t2 SET c='twenty-five thousand four hundred twenty-one' WHERE a=3018;\nUPDATE t2 SET c='twenty-eight thousand four hundred ninety-three' WHERE a=3019;\nUPDATE t2 SET c='ninety-eight thousand five hundred ninety-five' WHERE a=3020;\nUPDATE t2 SET c='sixty-three thousand two hundred fifty-one' WHERE a=3021;\nUPDATE t2 SET c='sixty-four thousand five hundred seventy-five' WHERE a=3022;\nUPDATE t2 SET c='five thousand five hundred nineteen' WHERE a=3023;\nUPDATE t2 SET c='three thousand three hundred fifty-one' WHERE a=3024;\nUPDATE t2 SET c='thirty-eight thousand sixty-two' WHERE a=3025;\nUPDATE t2 SET c='ninety-six thousand eight hundred thirty-three' WHERE a=3026;\nUPDATE t2 SET c='eighty-four thousand eight hundred thirteen' WHERE a=3027;\nUPDATE t2 SET c='ninety-seven thousand one hundred eighty-seven' WHERE a=3028;\nUPDATE t2 SET c='twenty-three thousand two hundred ninety-nine' WHERE a=3029;\nUPDATE t2 SET c='thirty-eight thousand six hundred ninety-four' WHERE a=3030;\nUPDATE t2 SET c='seventy-nine thousand seven hundred seventy-three' WHERE a=3031;\nUPDATE t2 SET c='twenty thousand four hundred thirty-one' WHERE a=3032;\nUPDATE t2 SET c='thirty thousand eight hundred sixty' WHERE a=3033;\nUPDATE t2 SET c='fifteen thousand eight hundred twenty-seven' WHERE a=3034;\nUPDATE t2 SET c='three hundred fifty-eight' WHERE a=3035;\nUPDATE t2 SET c='thirty-six thousand six hundred twenty-eight' WHERE a=3036;\nUPDATE t2 SET c='eighty-eight thousand six hundred eighteen' WHERE a=3037;\nUPDATE t2 SET c='eighty-three thousand one hundred nineteen' WHERE a=3038;\nUPDATE t2 SET c='forty-six thousand four hundred eight' WHERE a=3039;\nUPDATE t2 SET c='forty-nine thousand seven hundred seventy-four' WHERE a=3040;\nUPDATE t2 SET c='ten thousand one hundred ninety-four' WHERE a=3041;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-five' WHERE a=3042;\nUPDATE t2 SET c='seventy-seven thousand seven hundred fifty-four' WHERE a=3043;\nUPDATE t2 SET c='ninety-seven thousand four hundred fifty-nine' WHERE a=3044;\nUPDATE t2 SET c='eighty-three thousand four hundred twenty-one' WHERE a=3045;\nUPDATE t2 SET c='seventy-seven thousand seven hundred fifty-one' WHERE a=3046;\nUPDATE t2 SET c='forty-one thousand four hundred thirty-four' WHERE a=3047;\nUPDATE t2 SET c='fifty-three thousand nine hundred fifty-one' WHERE a=3048;\nUPDATE t2 SET c='forty-nine thousand four hundred sixty' WHERE a=3049;\nUPDATE t2 SET c='six thousand four hundred' WHERE a=3050;\nUPDATE t2 SET c='thirty-nine thousand three hundred ninety-seven' WHERE a=3051;\nUPDATE t2 SET c='ninety-two thousand seven hundred fifty-one' WHERE a=3052;\nUPDATE t2 SET c='forty-eight thousand two hundred eighty-nine' WHERE a=3053;\nUPDATE t2 SET c='ninety-eight thousand four hundred seventy-three' WHERE a=3054;\nUPDATE t2 SET c='eighty-six thousand seven hundred fourteen' WHERE a=3055;\nUPDATE t2 SET c='two thousand five hundred twenty' WHERE a=3056;\nUPDATE t2 SET c='nineteen thousand seven hundred sixty-eight' WHERE a=3057;\nUPDATE t2 SET c='sixty-three thousand nine hundred thirty-three' WHERE a=3058;\nUPDATE t2 SET c='eight thousand seven hundred eighty' WHERE a=3059;\nUPDATE t2 SET c='five thousand thirty-five' WHERE a=3060;\nUPDATE t2 SET c='twenty-eight thousand two hundred eighty-six' WHERE a=3061;\nUPDATE t2 SET c='forty-three thousand two hundred twenty-four' WHERE a=3062;\nUPDATE t2 SET c='seventy-seven thousand thirty-four' WHERE a=3063;\nUPDATE t2 SET c='eighty-three thousand six hundred seventy' WHERE a=3064;\nUPDATE t2 SET c='ninety-two thousand three hundred sixty-six' WHERE a=3065;\nUPDATE t2 SET c='thirty-six thousand seven hundred thirty' WHERE a=3066;\nUPDATE t2 SET c='ninety-eight thousand thirty-three' WHERE a=3067;\nUPDATE t2 SET c='ninety-two thousand four hundred thirty' WHERE a=3068;\nUPDATE t2 SET c='seventy-six thousand one hundred four' WHERE a=3069;\nUPDATE t2 SET c='twenty-seven thousand six hundred forty-one' WHERE a=3070;\nUPDATE t2 SET c='eleven thousand nine hundred ninety-one' WHERE a=3071;\nUPDATE t2 SET c='eight thousand two hundred thirty-eight' WHERE a=3072;\nUPDATE t2 SET c='thirty-three thousand two hundred fifty-four' WHERE a=3073;\nUPDATE t2 SET c='twenty-six thousand five hundred twelve' WHERE a=3074;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventy-five' WHERE a=3075;\nUPDATE t2 SET c='forty thousand six hundred ninety' WHERE a=3076;\nUPDATE t2 SET c='twenty-nine thousand four hundred ninety-three' WHERE a=3077;\nUPDATE t2 SET c='fifty-six thousand four hundred seventy-two' WHERE a=3078;\nUPDATE t2 SET c='twenty-three thousand three hundred ninety-four' WHERE a=3079;\nUPDATE t2 SET c='sixty-eight thousand five hundred ninety-nine' WHERE a=3080;\nUPDATE t2 SET c='seventy-seven thousand one hundred eighty-eight' WHERE a=3081;\nUPDATE t2 SET c='four hundred twenty-three' WHERE a=3082;\nUPDATE t2 SET c='forty thousand eleven' WHERE a=3083;\nUPDATE t2 SET c='sixty-two thousand nine hundred twenty-eight' WHERE a=3084;\nUPDATE t2 SET c='seventy-nine thousand three hundred eighty' WHERE a=3085;\nUPDATE t2 SET c='sixty-one thousand six hundred twenty-one' WHERE a=3086;\nUPDATE t2 SET c='fifty-two thousand seven hundred twenty-one' WHERE a=3087;\nUPDATE t2 SET c='fifty-one thousand five hundred three' WHERE a=3088;\nUPDATE t2 SET c='fifteen thousand seven hundred seventy-nine' WHERE a=3089;\nUPDATE t2 SET c='eighty-eight thousand fifty-two' WHERE a=3090;\nUPDATE t2 SET c='forty-two thousand six hundred eighty-eight' WHERE a=3091;\nUPDATE t2 SET c='nineteen thousand eight hundred eight' WHERE a=3092;\nUPDATE t2 SET c='eighty-one thousand five hundred sixty-three' WHERE a=3093;\nUPDATE t2 SET c='seventy-three thousand three hundred thirty-seven' WHERE a=3094;\nUPDATE t2 SET c='five thousand three hundred sixty-eight' WHERE a=3095;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-six' WHERE a=3096;\nUPDATE t2 SET c='thirty-three thousand six hundred twenty' WHERE a=3097;\nUPDATE t2 SET c='eighty-seven thousand seven hundred eighty-nine' WHERE a=3098;\nUPDATE t2 SET c='ninety-seven thousand sixty-three' WHERE a=3099;\nUPDATE t2 SET c='ninety-six thousand two hundred sixty-five' WHERE a=3100;\nUPDATE t2 SET c='sixty-four thousand forty-seven' WHERE a=3101;\nUPDATE t2 SET c='ten thousand nine hundred eighty-three' WHERE a=3102;\nUPDATE t2 SET c='five hundred forty-four' WHERE a=3103;\nUPDATE t2 SET c='sixty thousand nine hundred forty-five' WHERE a=3104;\nUPDATE t2 SET c='seventy-four thousand two hundred fifty-nine' WHERE a=3105;\nUPDATE t2 SET c='forty-seven thousand four hundred sixty-four' WHERE a=3106;\nUPDATE t2 SET c='sixty-four thousand six hundred fifty-six' WHERE a=3107;\nUPDATE t2 SET c='eighty-seven thousand two hundred sixty-eight' WHERE a=3108;\nUPDATE t2 SET c='ninety-four thousand three hundred fifty-four' WHERE a=3109;\nUPDATE t2 SET c='forty-six thousand five hundred forty-three' WHERE a=3110;\nUPDATE t2 SET c='thirteen thousand four hundred seventy-five' WHERE a=3111;\nUPDATE t2 SET c='fifty-two thousand one hundred eighty-two' WHERE a=3112;\nUPDATE t2 SET c='seventy-one thousand five hundred ninety-nine' WHERE a=3113;\nUPDATE t2 SET c='thirty-five thousand one hundred fifty-eight' WHERE a=3114;\nUPDATE t2 SET c='fifty-two thousand one hundred fourteen' WHERE a=3115;\nUPDATE t2 SET c='eighty-four thousand eight hundred eighty' WHERE a=3116;\nUPDATE t2 SET c='fifty-one thousand two hundred ninety-five' WHERE a=3117;\nUPDATE t2 SET c='thirty-two thousand fifty' WHERE a=3118;\nUPDATE t2 SET c='forty-one thousand nine hundred forty-seven' WHERE a=3119;\nUPDATE t2 SET c='eighty thousand three hundred seven' WHERE a=3120;\nUPDATE t2 SET c='fifteen thousand eighty-nine' WHERE a=3121;\nUPDATE t2 SET c='seventeen thousand six hundred fifty-seven' WHERE a=3122;\nUPDATE t2 SET c='eight thousand three hundred sixty-seven' WHERE a=3123;\nUPDATE t2 SET c='eleven thousand ninety' WHERE a=3124;\nUPDATE t2 SET c='five thousand ninety-three' WHERE a=3125;\nUPDATE t2 SET c='sixty-three thousand six hundred fifty-seven' WHERE a=3126;\nUPDATE t2 SET c='ninety-eight thousand six hundred forty-nine' WHERE a=3127;\nUPDATE t2 SET c='fifty thousand two hundred sixty-six' WHERE a=3128;\nUPDATE t2 SET c='sixteen thousand four hundred two' WHERE a=3129;\nUPDATE t2 SET c='eleven thousand seventy-five' WHERE a=3130;\nUPDATE t2 SET c='forty-three thousand three hundred eighty' WHERE a=3131;\nUPDATE t2 SET c='eighty-four thousand five hundred thirty-four' WHERE a=3132;\nUPDATE t2 SET c='thirty thousand nine hundred sixty' WHERE a=3133;\nUPDATE t2 SET c='twenty-three thousand seven hundred two' WHERE a=3134;\nUPDATE t2 SET c='three thousand two hundred nine' WHERE a=3135;\nUPDATE t2 SET c='ten thousand two hundred eleven' WHERE a=3136;\nUPDATE t2 SET c='eighty thousand two hundred forty-three' WHERE a=3137;\nUPDATE t2 SET c='sixty-six thousand four hundred twenty' WHERE a=3138;\nUPDATE t2 SET c='seventy-six thousand eighty-seven' WHERE a=3139;\nUPDATE t2 SET c='ninety-nine thousand nine hundred sixty-five' WHERE a=3140;\nUPDATE t2 SET c='two thousand eight hundred fifteen' WHERE a=3141;\nUPDATE t2 SET c='eight thousand forty-five' WHERE a=3142;\nUPDATE t2 SET c='four thousand eight hundred sixteen' WHERE a=3143;\nUPDATE t2 SET c='seventy-five thousand eight hundred seventy-five' WHERE a=3144;\nUPDATE t2 SET c='fifty-eight thousand one hundred fifteen' WHERE a=3145;\nUPDATE t2 SET c='sixty-four thousand forty-three' WHERE a=3146;\nUPDATE t2 SET c='fifty-six thousand six hundred seventy-two' WHERE a=3147;\nUPDATE t2 SET c='fifty thousand three hundred forty-three' WHERE a=3148;\nUPDATE t2 SET c='twenty-nine thousand eighty-three' WHERE a=3149;\nUPDATE t2 SET c='seventy-eight thousand seven hundred thirty-seven' WHERE a=3150;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventy' WHERE a=3151;\nUPDATE t2 SET c='twenty-eight thousand one hundred twenty-nine' WHERE a=3152;\nUPDATE t2 SET c='eighty-nine thousand seven hundred seventy-seven' WHERE a=3153;\nUPDATE t2 SET c='seventeen thousand eight hundred forty-nine' WHERE a=3154;\nUPDATE t2 SET c='nineteen thousand nine hundred ten' WHERE a=3155;\nUPDATE t2 SET c='thirteen thousand five hundred thirty-four' WHERE a=3156;\nUPDATE t2 SET c='twelve thousand one hundred seventy-one' WHERE a=3157;\nUPDATE t2 SET c='fifty-four thousand two hundred eighteen' WHERE a=3158;\nUPDATE t2 SET c='thirty-two thousand three hundred twenty-seven' WHERE a=3159;\nUPDATE t2 SET c='fifteen thousand seven hundred twenty-nine' WHERE a=3160;\nUPDATE t2 SET c='forty-nine thousand nine hundred twenty-two' WHERE a=3161;\nUPDATE t2 SET c='nineteen thousand ninety-two' WHERE a=3162;\nUPDATE t2 SET c='seventy thousand seven hundred forty-two' WHERE a=3163;\nUPDATE t2 SET c='forty-one thousand four hundred forty-eight' WHERE a=3164;\nUPDATE t2 SET c='forty-three thousand eight hundred one' WHERE a=3165;\nUPDATE t2 SET c='ninety-six thousand one hundred one' WHERE a=3166;\nUPDATE t2 SET c='ninety-six thousand three hundred eighty-three' WHERE a=3167;\nUPDATE t2 SET c='nine thousand eight hundred sixty-six' WHERE a=3168;\nUPDATE t2 SET c='sixty-five thousand nine hundred ninety-one' WHERE a=3169;\nUPDATE t2 SET c='sixteen thousand nine hundred fourteen' WHERE a=3170;\nUPDATE t2 SET c='eighty-two thousand five hundred fifty-six' WHERE a=3171;\nUPDATE t2 SET c='ninety-six thousand seven hundred fifty' WHERE a=3172;\nUPDATE t2 SET c='eight thousand seven hundred fifty-one' WHERE a=3173;\nUPDATE t2 SET c='sixty-one thousand three hundred ninety-two' WHERE a=3174;\nUPDATE t2 SET c='thirty-five thousand seven hundred fifty-eight' WHERE a=3175;\nUPDATE t2 SET c='one thousand three hundred forty-nine' WHERE a=3176;\nUPDATE t2 SET c='twenty-nine thousand nine hundred thirty-nine' WHERE a=3177;\nUPDATE t2 SET c='eighty-eight thousand one hundred eighty-five' WHERE a=3178;\nUPDATE t2 SET c='fifty-two thousand four hundred eighty-three' WHERE a=3179;\nUPDATE t2 SET c='ninety-five thousand four hundred sixty' WHERE a=3180;\nUPDATE t2 SET c='thirteen thousand six hundred twenty-two' WHERE a=3181;\nUPDATE t2 SET c='eight thousand six' WHERE a=3182;\nUPDATE t2 SET c='one thousand eight hundred sixty-one' WHERE a=3183;\nUPDATE t2 SET c='fifty-three thousand four hundred nineteen' WHERE a=3184;\nUPDATE t2 SET c='sixty-one thousand six hundred twenty-eight' WHERE a=3185;\nUPDATE t2 SET c='fifty-two thousand four hundred forty-eight' WHERE a=3186;\nUPDATE t2 SET c='twenty-nine thousand two hundred sixty-seven' WHERE a=3187;\nUPDATE t2 SET c='ninety-three thousand four hundred forty-five' WHERE a=3188;\nUPDATE t2 SET c='fifty-two thousand twenty-four' WHERE a=3189;\nUPDATE t2 SET c='eighty-four thousand three hundred forty-six' WHERE a=3190;\nUPDATE t2 SET c='forty-two thousand six hundred sixty' WHERE a=3191;\nUPDATE t2 SET c='seventeen thousand nine hundred thirty-eight' WHERE a=3192;\nUPDATE t2 SET c='twenty-eight thousand seven hundred seventy-eight' WHERE a=3193;\nUPDATE t2 SET c='eighty-eight thousand two hundred eight' WHERE a=3194;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-four' WHERE a=3195;\nUPDATE t2 SET c='seventy-nine thousand nine hundred forty-six' WHERE a=3196;\nUPDATE t2 SET c='thirty-three thousand two hundred sixty-five' WHERE a=3197;\nUPDATE t2 SET c='seventy thousand four hundred six' WHERE a=3198;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-six' WHERE a=3199;\nUPDATE t2 SET c='forty-eight thousand two hundred eighty-four' WHERE a=3200;\nUPDATE t2 SET c='eighty-eight thousand one hundred seventy' WHERE a=3201;\nUPDATE t2 SET c='twelve thousand four hundred sixty-five' WHERE a=3202;\nUPDATE t2 SET c='eighty-six thousand six hundred fifty-nine' WHERE a=3203;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-five' WHERE a=3204;\nUPDATE t2 SET c='twenty-two thousand one hundred eight' WHERE a=3205;\nUPDATE t2 SET c='three thousand nine hundred seventy-three' WHERE a=3206;\nUPDATE t2 SET c='seventy-one thousand eight hundred twelve' WHERE a=3207;\nUPDATE t2 SET c='forty-seven thousand two hundred eighty-six' WHERE a=3208;\nUPDATE t2 SET c='eighty-four thousand seventy-eight' WHERE a=3209;\nUPDATE t2 SET c='twenty-five thousand seven hundred fifty-three' WHERE a=3210;\nUPDATE t2 SET c='twelve thousand five hundred ninety-nine' WHERE a=3211;\nUPDATE t2 SET c='twenty-five thousand one hundred fifty-six' WHERE a=3212;\nUPDATE t2 SET c='twenty-one thousand one hundred seventy-nine' WHERE a=3213;\nUPDATE t2 SET c='thirty-nine thousand one hundred fifty-two' WHERE a=3214;\nUPDATE t2 SET c='ninety-eight thousand four hundred forty-nine' WHERE a=3215;\nUPDATE t2 SET c='fifty-one thousand four hundred fifty-seven' WHERE a=3216;\nUPDATE t2 SET c='sixty-seven thousand three hundred seventy-five' WHERE a=3217;\nUPDATE t2 SET c='fifteen thousand six hundred twelve' WHERE a=3218;\nUPDATE t2 SET c='eighty-seven thousand nine hundred forty-six' WHERE a=3219;\nUPDATE t2 SET c='twenty-nine thousand seven hundred fifty-four' WHERE a=3220;\nUPDATE t2 SET c='eighty-nine thousand six hundred seventy-six' WHERE a=3221;\nUPDATE t2 SET c='forty-seven thousand seven hundred eleven' WHERE a=3222;\nUPDATE t2 SET c='forty-two thousand one hundred thirty-eight' WHERE a=3223;\nUPDATE t2 SET c='ninety thousand nine hundred thirty-two' WHERE a=3224;\nUPDATE t2 SET c='thirty-one thousand four hundred ninety-six' WHERE a=3225;\nUPDATE t2 SET c='fifty-seven thousand nine hundred fifty-five' WHERE a=3226;\nUPDATE t2 SET c='fifty-six thousand two hundred twenty-three' WHERE a=3227;\nUPDATE t2 SET c='six hundred fourteen' WHERE a=3228;\nUPDATE t2 SET c='eighty-seven thousand three hundred sixty-five' WHERE a=3229;\nUPDATE t2 SET c='sixty-four thousand eight hundred eighty-nine' WHERE a=3230;\nUPDATE t2 SET c='forty-five thousand thirteen' WHERE a=3231;\nUPDATE t2 SET c='sixty-eight thousand thirty-seven' WHERE a=3232;\nUPDATE t2 SET c='fifty-one thousand one hundred ten' WHERE a=3233;\nUPDATE t2 SET c='thirty-one thousand nine hundred forty-four' WHERE a=3234;\nUPDATE t2 SET c='seventy-six thousand nine hundred twenty-four' WHERE a=3235;\nUPDATE t2 SET c='seventy-nine thousand nine hundred fifty-eight' WHERE a=3236;\nUPDATE t2 SET c='fifteen thousand seven hundred forty-seven' WHERE a=3237;\nUPDATE t2 SET c='ninety-two thousand one hundred twenty-six' WHERE a=3238;\nUPDATE t2 SET c='sixteen thousand two hundred forty-nine' WHERE a=3239;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eighty-seven' WHERE a=3240;\nUPDATE t2 SET c='twenty thousand five hundred twenty-nine' WHERE a=3241;\nUPDATE t2 SET c='ninety-five thousand one hundred eighty-nine' WHERE a=3242;\nUPDATE t2 SET c='fifty-five thousand thirteen' WHERE a=3243;\nUPDATE t2 SET c='forty-six thousand five hundred thirty-eight' WHERE a=3244;\nUPDATE t2 SET c='fifteen thousand nine hundred two' WHERE a=3245;\nUPDATE t2 SET c='sixty-five thousand eight hundred sixty-eight' WHERE a=3246;\nUPDATE t2 SET c='thirty-one thousand seven hundred sixty-five' WHERE a=3247;\nUPDATE t2 SET c='thirteen thousand three hundred thirty-seven' WHERE a=3248;\nUPDATE t2 SET c='thirty-one thousand one hundred seventy-nine' WHERE a=3249;\nUPDATE t2 SET c='twenty-one thousand three hundred ninety-four' WHERE a=3250;\nUPDATE t2 SET c='four thousand seven hundred five' WHERE a=3251;\nUPDATE t2 SET c='fifty-seven thousand nine hundred fifty-four' WHERE a=3252;\nUPDATE t2 SET c='eighty-four thousand six hundred forty-one' WHERE a=3253;\nUPDATE t2 SET c='fifteen thousand six hundred eleven' WHERE a=3254;\nUPDATE t2 SET c='forty-one thousand six hundred seven' WHERE a=3255;\nUPDATE t2 SET c='fifteen thousand eight hundred nine' WHERE a=3256;\nUPDATE t2 SET c='three thousand fifty-one' WHERE a=3257;\nUPDATE t2 SET c='fifty-four thousand eight hundred twenty-seven' WHERE a=3258;\nUPDATE t2 SET c='eighty-nine thousand two hundred eighty-nine' WHERE a=3259;\nUPDATE t2 SET c='twenty-four thousand five hundred sixty-two' WHERE a=3260;\nUPDATE t2 SET c='seventy-two thousand three hundred nineteen' WHERE a=3261;\nUPDATE t2 SET c='ninety-seven thousand one hundred thirty-seven' WHERE a=3262;\nUPDATE t2 SET c='eighty-four thousand five hundred twenty-six' WHERE a=3263;\nUPDATE t2 SET c='sixty-nine thousand four hundred six' WHERE a=3264;\nUPDATE t2 SET c='seventy-seven thousand six hundred forty-seven' WHERE a=3265;\nUPDATE t2 SET c='fifty thousand one hundred' WHERE a=3266;\nUPDATE t2 SET c='twenty-five thousand six hundred seventy-four' WHERE a=3267;\nUPDATE t2 SET c='forty-five thousand thirty-six' WHERE a=3268;\nUPDATE t2 SET c='eighty-three thousand eight hundred seventy-eight' WHERE a=3269;\nUPDATE t2 SET c='seventy-nine thousand six hundred eight' WHERE a=3270;\nUPDATE t2 SET c='seventy-nine thousand three hundred thirty-five' WHERE a=3271;\nUPDATE t2 SET c='eighty-three thousand ten' WHERE a=3272;\nUPDATE t2 SET c='thirty-seven thousand five hundred seventy-two' WHERE a=3273;\nUPDATE t2 SET c='thirty-eight thousand six hundred sixty-four' WHERE a=3274;\nUPDATE t2 SET c='thirty-six thousand seven hundred two' WHERE a=3275;\nUPDATE t2 SET c='seventy-one thousand six hundred forty-five' WHERE a=3276;\nUPDATE t2 SET c='forty-eight thousand nine hundred sixty-one' WHERE a=3277;\nUPDATE t2 SET c='twenty-one thousand three hundred thirty-four' WHERE a=3278;\nUPDATE t2 SET c='ten thousand eight hundred twenty-four' WHERE a=3279;\nUPDATE t2 SET c='sixty-one thousand three hundred thirty-eight' WHERE a=3280;\nUPDATE t2 SET c='fifty-two thousand five hundred fifty-three' WHERE a=3281;\nUPDATE t2 SET c='nineteen thousand nine hundred thirty-three' WHERE a=3282;\nUPDATE t2 SET c='ninety-five thousand nine hundred twenty-two' WHERE a=3283;\nUPDATE t2 SET c='seventy-two thousand five hundred eighty-seven' WHERE a=3284;\nUPDATE t2 SET c='ninety-five thousand nine hundred ninety' WHERE a=3285;\nUPDATE t2 SET c='eighty-two thousand one hundred forty-three' WHERE a=3286;\nUPDATE t2 SET c='fifty-six thousand seven hundred ninety-one' WHERE a=3287;\nUPDATE t2 SET c='twenty-nine thousand seven hundred twenty-four' WHERE a=3288;\nUPDATE t2 SET c='eighty-nine thousand seventy-nine' WHERE a=3289;\nUPDATE t2 SET c='fifty-four thousand four hundred thirteen' WHERE a=3290;\nUPDATE t2 SET c='seventy-eight thousand five hundred forty-eight' WHERE a=3291;\nUPDATE t2 SET c='forty-eight thousand five hundred sixty-four' WHERE a=3292;\nUPDATE t2 SET c='fifty-one thousand eight hundred thirty-one' WHERE a=3293;\nUPDATE t2 SET c='ninety-six thousand eight hundred' WHERE a=3294;\nUPDATE t2 SET c='thirty thousand three hundred ninety-nine' WHERE a=3295;\nUPDATE t2 SET c='ninety-eight thousand nine hundred forty-six' WHERE a=3296;\nUPDATE t2 SET c='sixty-seven thousand eight hundred forty-five' WHERE a=3297;\nUPDATE t2 SET c='seventy-nine thousand eight hundred seventy-one' WHERE a=3298;\nUPDATE t2 SET c='sixty-seven thousand eight hundred thirty-four' WHERE a=3299;\nUPDATE t2 SET c='seventy-six thousand five hundred twenty-two' WHERE a=3300;\nUPDATE t2 SET c='thirty-five thousand six hundred ninety' WHERE a=3301;\nUPDATE t2 SET c='thirty-eight thousand four' WHERE a=3302;\nUPDATE t2 SET c='forty-seven thousand six hundred fifty-eight' WHERE a=3303;\nUPDATE t2 SET c='forty thousand nine hundred thirty-two' WHERE a=3304;\nUPDATE t2 SET c='ninety-two thousand nine hundred ninety-four' WHERE a=3305;\nUPDATE t2 SET c='six thousand one hundred forty-five' WHERE a=3306;\nUPDATE t2 SET c='eighty-one thousand two hundred sixty' WHERE a=3307;\nUPDATE t2 SET c='ninety thousand seven hundred fifty-six' WHERE a=3308;\nUPDATE t2 SET c='one thousand three hundred forty-four' WHERE a=3309;\nUPDATE t2 SET c='seventy-one thousand nine hundred seventy-four' WHERE a=3310;\nUPDATE t2 SET c='thirty thousand twenty-three' WHERE a=3311;\nUPDATE t2 SET c='twenty-five thousand one hundred six' WHERE a=3312;\nUPDATE t2 SET c='ten thousand nine hundred fifty-four' WHERE a=3313;\nUPDATE t2 SET c='thirty thousand six hundred ninety-one' WHERE a=3314;\nUPDATE t2 SET c='three thousand two hundred fifty-eight' WHERE a=3315;\nUPDATE t2 SET c='seventy-eight thousand nine hundred seventy-two' WHERE a=3316;\nUPDATE t2 SET c='ten thousand seven hundred twelve' WHERE a=3317;\nUPDATE t2 SET c='forty-one thousand four hundred twenty-one' WHERE a=3318;\nUPDATE t2 SET c='forty-six thousand six hundred seventy-six' WHERE a=3319;\nUPDATE t2 SET c='forty-two thousand nine hundred eleven' WHERE a=3320;\nUPDATE t2 SET c='seventy-seven thousand three hundred forty-four' WHERE a=3321;\nUPDATE t2 SET c='thirty-five thousand eight hundred ninety-seven' WHERE a=3322;\nUPDATE t2 SET c='twenty-five thousand two hundred sixty-four' WHERE a=3323;\nUPDATE t2 SET c='forty-five thousand one hundred thirty-nine' WHERE a=3324;\nUPDATE t2 SET c='fifty-eight thousand seven hundred twenty' WHERE a=3325;\nUPDATE t2 SET c='sixty-seven thousand two hundred seventy-eight' WHERE a=3326;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty-four' WHERE a=3327;\nUPDATE t2 SET c='thirty-four thousand five hundred four' WHERE a=3328;\nUPDATE t2 SET c='one thousand four hundred ninety-seven' WHERE a=3329;\nUPDATE t2 SET c='sixty-one thousand forty' WHERE a=3330;\nUPDATE t2 SET c='ten thousand two hundred sixty-five' WHERE a=3331;\nUPDATE t2 SET c='eighty-one thousand eight hundred twenty-four' WHERE a=3332;\nUPDATE t2 SET c='fifty-nine thousand nine hundred forty-six' WHERE a=3333;\nUPDATE t2 SET c='ninety-eight thousand nine hundred eighty-nine' WHERE a=3334;\nUPDATE t2 SET c='seventy-five thousand six hundred twenty-seven' WHERE a=3335;\nUPDATE t2 SET c='ninety-five thousand five hundred eighty-seven' WHERE a=3336;\nUPDATE t2 SET c='ninety-six thousand three hundred' WHERE a=3337;\nUPDATE t2 SET c='thirty-five thousand one hundred fifty-one' WHERE a=3338;\nUPDATE t2 SET c='forty-five thousand nine hundred sixty-eight' WHERE a=3339;\nUPDATE t2 SET c='fifty-two thousand five hundred forty-two' WHERE a=3340;\nUPDATE t2 SET c='forty thousand two hundred forty-eight' WHERE a=3341;\nUPDATE t2 SET c='fifty-nine thousand nine hundred seventy-five' WHERE a=3342;\nUPDATE t2 SET c='seventy-three thousand four hundred sixty-one' WHERE a=3343;\nUPDATE t2 SET c='seventy-one thousand four hundred eighty-six' WHERE a=3344;\nUPDATE t2 SET c='twenty-nine thousand two hundred sixty-four' WHERE a=3345;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eighty-four' WHERE a=3346;\nUPDATE t2 SET c='twenty-three thousand ninety-one' WHERE a=3347;\nUPDATE t2 SET c='thirty-three thousand two hundred nine' WHERE a=3348;\nUPDATE t2 SET c='seventy thousand eight hundred fifty-eight' WHERE a=3349;\nUPDATE t2 SET c='seventy-six thousand nine hundred sixteen' WHERE a=3350;\nUPDATE t2 SET c='ninety-three thousand five hundred forty-three' WHERE a=3351;\nUPDATE t2 SET c='thirty-five thousand seven hundred thirty' WHERE a=3352;\nUPDATE t2 SET c='thirty-nine thousand six hundred sixty-seven' WHERE a=3353;\nUPDATE t2 SET c='twenty-five thousand eight hundred ten' WHERE a=3354;\nUPDATE t2 SET c='forty-four thousand nine hundred two' WHERE a=3355;\nUPDATE t2 SET c='thirty-six thousand three hundred eighteen' WHERE a=3356;\nUPDATE t2 SET c='eighty thousand three hundred four' WHERE a=3357;\nUPDATE t2 SET c='eighty-four thousand one hundred seventy-two' WHERE a=3358;\nUPDATE t2 SET c='eighty-seven thousand eight hundred fifty-two' WHERE a=3359;\nUPDATE t2 SET c='ninety-nine thousand two hundred seventy-six' WHERE a=3360;\nUPDATE t2 SET c='forty-nine thousand eight hundred sixty-seven' WHERE a=3361;\nUPDATE t2 SET c='sixty-four thousand five hundred forty-one' WHERE a=3362;\nUPDATE t2 SET c='twenty-seven thousand three hundred seventy-four' WHERE a=3363;\nUPDATE t2 SET c='forty thousand nine hundred eighty-four' WHERE a=3364;\nUPDATE t2 SET c='sixty-four thousand four hundred thirty-six' WHERE a=3365;\nUPDATE t2 SET c='eighty-eight thousand five hundred fifty-four' WHERE a=3366;\nUPDATE t2 SET c='ninety-seven thousand eight hundred thirty' WHERE a=3367;\nUPDATE t2 SET c='twelve thousand six hundred sixty-eight' WHERE a=3368;\nUPDATE t2 SET c='fifty-four thousand eight hundred fifty' WHERE a=3369;\nUPDATE t2 SET c='sixty-nine thousand seven hundred eighty-nine' WHERE a=3370;\nUPDATE t2 SET c='ninety-seven thousand four hundred ninety' WHERE a=3371;\nUPDATE t2 SET c='three thousand six hundred eighty-three' WHERE a=3372;\nUPDATE t2 SET c='forty-two thousand thirty-eight' WHERE a=3373;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirty-four' WHERE a=3374;\nUPDATE t2 SET c='forty-nine thousand seven hundred seventy-five' WHERE a=3375;\nUPDATE t2 SET c='ninety-four thousand nine hundred seventy-six' WHERE a=3376;\nUPDATE t2 SET c='twenty-five thousand three hundred forty-one' WHERE a=3377;\nUPDATE t2 SET c='ninety-eight thousand five hundred twenty-two' WHERE a=3378;\nUPDATE t2 SET c='six thousand five hundred ten' WHERE a=3379;\nUPDATE t2 SET c='ninety-one thousand three hundred ninety-two' WHERE a=3380;\nUPDATE t2 SET c='fifty-five thousand three hundred fifty-four' WHERE a=3381;\nUPDATE t2 SET c='fifty thousand thirteen' WHERE a=3382;\nUPDATE t2 SET c='eighty-three thousand two hundred six' WHERE a=3383;\nUPDATE t2 SET c='forty-two thousand thirty-nine' WHERE a=3384;\nUPDATE t2 SET c='sixty-two thousand five hundred fifty-three' WHERE a=3385;\nUPDATE t2 SET c='forty-two thousand eight hundred sixty-four' WHERE a=3386;\nUPDATE t2 SET c='forty-two thousand nine hundred seventy-nine' WHERE a=3387;\nUPDATE t2 SET c='thirty-nine thousand three hundred sixty-nine' WHERE a=3388;\nUPDATE t2 SET c='thirty-six thousand five hundred forty-two' WHERE a=3389;\nUPDATE t2 SET c='twenty-seven thousand six hundred twenty-seven' WHERE a=3390;\nUPDATE t2 SET c='fifty-five thousand four hundred fifty-six' WHERE a=3391;\nUPDATE t2 SET c='twenty-six thousand eight hundred thirty-eight' WHERE a=3392;\nUPDATE t2 SET c='sixty thousand eight hundred thirty' WHERE a=3393;\nUPDATE t2 SET c='forty thousand three hundred four' WHERE a=3394;\nUPDATE t2 SET c='seventy-three thousand two hundred forty-eight' WHERE a=3395;\nUPDATE t2 SET c='ninety-two thousand two hundred eighty' WHERE a=3396;\nUPDATE t2 SET c='eighty thousand nine hundred eleven' WHERE a=3397;\nUPDATE t2 SET c='twenty-six thousand' WHERE a=3398;\nUPDATE t2 SET c='sixteen thousand seven hundred ninety-three' WHERE a=3399;\nUPDATE t2 SET c='fifty-two thousand one hundred sixty-seven' WHERE a=3400;\nUPDATE t2 SET c='twenty-seven thousand one hundred ninety-seven' WHERE a=3401;\nUPDATE t2 SET c='ninety-seven thousand nine hundred eighty-eight' WHERE a=3402;\nUPDATE t2 SET c='fifty-three thousand three hundred seventy-five' WHERE a=3403;\nUPDATE t2 SET c='eighty-one thousand five hundred seventy-five' WHERE a=3404;\nUPDATE t2 SET c='eighty-two thousand eight hundred seventy-nine' WHERE a=3405;\nUPDATE t2 SET c='ninety-two thousand three hundred twenty-five' WHERE a=3406;\nUPDATE t2 SET c='sixty-three thousand nine hundred forty-six' WHERE a=3407;\nUPDATE t2 SET c='twenty-seven thousand three hundred five' WHERE a=3408;\nUPDATE t2 SET c='fifty-four thousand three hundred eight' WHERE a=3409;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty-four' WHERE a=3410;\nUPDATE t2 SET c='sixty-nine thousand two hundred thirty-four' WHERE a=3411;\nUPDATE t2 SET c='nine thousand three hundred forty-eight' WHERE a=3412;\nUPDATE t2 SET c='seventy-four thousand seven hundred sixty-eight' WHERE a=3413;\nUPDATE t2 SET c='seventy-three thousand one hundred fifty-eight' WHERE a=3414;\nUPDATE t2 SET c='sixty-eight thousand three hundred ninety-eight' WHERE a=3415;\nUPDATE t2 SET c='seventy-four thousand four hundred sixty-seven' WHERE a=3416;\nUPDATE t2 SET c='seventy thousand four hundred thirty-one' WHERE a=3417;\nUPDATE t2 SET c='seventy-five thousand six hundred sixty-eight' WHERE a=3418;\nUPDATE t2 SET c='eighty-one thousand two hundred sixty-six' WHERE a=3419;\nUPDATE t2 SET c='fifty thousand one hundred seventeen' WHERE a=3420;\nUPDATE t2 SET c='eighty thousand four hundred thirty-five' WHERE a=3421;\nUPDATE t2 SET c='twenty-one thousand four hundred seventy-five' WHERE a=3422;\nUPDATE t2 SET c='nineteen thousand one hundred ninety-five' WHERE a=3423;\nUPDATE t2 SET c='twenty-seven thousand three hundred thirty-four' WHERE a=3424;\nUPDATE t2 SET c='fifty-eight thousand four hundred thirty-nine' WHERE a=3425;\nUPDATE t2 SET c='fifty-five thousand six hundred sixteen' WHERE a=3426;\nUPDATE t2 SET c='eighteen thousand eight hundred fifty' WHERE a=3427;\nUPDATE t2 SET c='fifty-five thousand four hundred thirty-seven' WHERE a=3428;\nUPDATE t2 SET c='eighty-eight thousand three hundred sixty-three' WHERE a=3429;\nUPDATE t2 SET c='five thousand five hundred eight' WHERE a=3430;\nUPDATE t2 SET c='three thousand seven hundred fourteen' WHERE a=3431;\nUPDATE t2 SET c='fifty-nine thousand nine hundred seventy-four' WHERE a=3432;\nUPDATE t2 SET c='seventy thousand seven hundred twenty-two' WHERE a=3433;\nUPDATE t2 SET c='eighty-seven thousand six hundred fifty-one' WHERE a=3434;\nUPDATE t2 SET c='six thousand one hundred fifty-three' WHERE a=3435;\nUPDATE t2 SET c='forty-nine thousand five hundred fifteen' WHERE a=3436;\nUPDATE t2 SET c='twenty-two thousand three hundred sixty-six' WHERE a=3437;\nUPDATE t2 SET c='sixty-five thousand four hundred thirty-six' WHERE a=3438;\nUPDATE t2 SET c='fifty-one thousand one hundred twenty-two' WHERE a=3439;\nUPDATE t2 SET c='six thousand four hundred twenty-six' WHERE a=3440;\nUPDATE t2 SET c='twenty-five thousand three hundred eight' WHERE a=3441;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifty-six' WHERE a=3442;\nUPDATE t2 SET c='eighty-seven thousand seven hundred seventy-nine' WHERE a=3443;\nUPDATE t2 SET c='seventy-six thousand ninety-four' WHERE a=3444;\nUPDATE t2 SET c='ninety-nine thousand five hundred ninety-nine' WHERE a=3445;\nUPDATE t2 SET c='thirty-one thousand five hundred seventy-eight' WHERE a=3446;\nUPDATE t2 SET c='fifty-one thousand nine hundred seventy-four' WHERE a=3447;\nUPDATE t2 SET c='sixty-four thousand one hundred twenty-two' WHERE a=3448;\nUPDATE t2 SET c='seventy-two thousand three hundred ninety-eight' WHERE a=3449;\nUPDATE t2 SET c='fifty-nine thousand two hundred one' WHERE a=3450;\nUPDATE t2 SET c='fourteen thousand one hundred sixty-one' WHERE a=3451;\nUPDATE t2 SET c='seventy-eight thousand three hundred forty-nine' WHERE a=3452;\nUPDATE t2 SET c='two hundred thirty-two' WHERE a=3453;\nUPDATE t2 SET c='fifty thousand fifty-eight' WHERE a=3454;\nUPDATE t2 SET c='three thousand four hundred sixty-six' WHERE a=3455;\nUPDATE t2 SET c='sixty-four thousand six hundred thirty-six' WHERE a=3456;\nUPDATE t2 SET c='eleven thousand eight hundred sixty-five' WHERE a=3457;\nUPDATE t2 SET c='thirty thousand four hundred eighty-one' WHERE a=3458;\nUPDATE t2 SET c='seventy-four thousand five hundred thirty-two' WHERE a=3459;\nUPDATE t2 SET c='seventy-seven thousand two hundred forty-six' WHERE a=3460;\nUPDATE t2 SET c='nineteen thousand nine hundred twenty-three' WHERE a=3461;\nUPDATE t2 SET c='seventy-three thousand two hundred eighty-four' WHERE a=3462;\nUPDATE t2 SET c='eleven thousand three hundred eighteen' WHERE a=3463;\nUPDATE t2 SET c='seventy-four thousand two hundred seventy-six' WHERE a=3464;\nUPDATE t2 SET c='eighteen thousand four hundred seventy-six' WHERE a=3465;\nUPDATE t2 SET c='seventeen thousand nine hundred sixty' WHERE a=3466;\nUPDATE t2 SET c='seventy-one thousand one hundred forty-six' WHERE a=3467;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty-three' WHERE a=3468;\nUPDATE t2 SET c='forty-three thousand nine hundred twenty-four' WHERE a=3469;\nUPDATE t2 SET c='sixty-six thousand nine hundred ninety-one' WHERE a=3470;\nUPDATE t2 SET c='sixty-two thousand six hundred eight' WHERE a=3471;\nUPDATE t2 SET c='ninety-nine thousand five hundred eighty-one' WHERE a=3472;\nUPDATE t2 SET c='fourteen thousand four hundred six' WHERE a=3473;\nUPDATE t2 SET c='six thousand three hundred twenty-seven' WHERE a=3474;\nUPDATE t2 SET c='sixty-three thousand three hundred eleven' WHERE a=3475;\nUPDATE t2 SET c='fifteen thousand seven hundred sixty-three' WHERE a=3476;\nUPDATE t2 SET c='eighty-four thousand two hundred twelve' WHERE a=3477;\nUPDATE t2 SET c='sixteen thousand five hundred ninety-four' WHERE a=3478;\nUPDATE t2 SET c='thirty thousand seven hundred eighty-three' WHERE a=3479;\nUPDATE t2 SET c='seventy-five thousand four hundred fifty-eight' WHERE a=3480;\nUPDATE t2 SET c='forty-one thousand seven hundred seventy-two' WHERE a=3481;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-two' WHERE a=3482;\nUPDATE t2 SET c='thirty-six thousand four hundred ninety-three' WHERE a=3483;\nUPDATE t2 SET c='fifty-two thousand three hundred sixty-six' WHERE a=3484;\nUPDATE t2 SET c='seventy-four thousand nine' WHERE a=3485;\nUPDATE t2 SET c='twenty-four thousand two hundred ninety-seven' WHERE a=3486;\nUPDATE t2 SET c='sixty-four thousand three hundred sixty-two' WHERE a=3487;\nUPDATE t2 SET c='forty-eight thousand four hundred three' WHERE a=3488;\nUPDATE t2 SET c='thirty thousand seventy-seven' WHERE a=3489;\nUPDATE t2 SET c='seven thousand one hundred thirty-seven' WHERE a=3490;\nUPDATE t2 SET c='twenty-three thousand five hundred seventy-four' WHERE a=3491;\nUPDATE t2 SET c='forty-two thousand twenty-six' WHERE a=3492;\nUPDATE t2 SET c='fifty-five thousand seven hundred forty-two' WHERE a=3493;\nUPDATE t2 SET c='sixty-nine thousand one hundred forty-four' WHERE a=3494;\nUPDATE t2 SET c='forty-eight thousand eight hundred six' WHERE a=3495;\nUPDATE t2 SET c='forty-six thousand seven hundred sixteen' WHERE a=3496;\nUPDATE t2 SET c='fifty-three thousand seven hundred forty' WHERE a=3497;\nUPDATE t2 SET c='ninety thousand three hundred eleven' WHERE a=3498;\nUPDATE t2 SET c='twenty-five thousand four hundred forty-seven' WHERE a=3499;\nUPDATE t2 SET c='nineteen thousand sixty-six' WHERE a=3500;\nUPDATE t2 SET c='eighty-four thousand twenty-eight' WHERE a=3501;\nUPDATE t2 SET c='one thousand six hundred thirty-eight' WHERE a=3502;\nUPDATE t2 SET c='five thousand one hundred fifteen' WHERE a=3503;\nUPDATE t2 SET c='twenty-eight thousand nine hundred four' WHERE a=3504;\nUPDATE t2 SET c='thirty-four thousand five hundred forty-two' WHERE a=3505;\nUPDATE t2 SET c='forty-eight thousand eight hundred fifty-five' WHERE a=3506;\nUPDATE t2 SET c='thirty-one thousand five hundred sixty-two' WHERE a=3507;\nUPDATE t2 SET c='ninety-one thousand two hundred twenty-eight' WHERE a=3508;\nUPDATE t2 SET c='ninety-four thousand six hundred forty-three' WHERE a=3509;\nUPDATE t2 SET c='sixty-three thousand three hundred sixty-five' WHERE a=3510;\nUPDATE t2 SET c='thirty-one thousand eight hundred fifty-four' WHERE a=3511;\nUPDATE t2 SET c='forty-five thousand two hundred eighty-four' WHERE a=3512;\nUPDATE t2 SET c='twenty-nine thousand nine hundred seventeen' WHERE a=3513;\nUPDATE t2 SET c='eight thousand nine hundred fifty-seven' WHERE a=3514;\nUPDATE t2 SET c='forty thousand twenty-seven' WHERE a=3515;\nUPDATE t2 SET c='one thousand nine hundred fifty-two' WHERE a=3516;\nUPDATE t2 SET c='fourteen thousand one hundred ninety-nine' WHERE a=3517;\nUPDATE t2 SET c='fifty-three thousand two hundred forty-four' WHERE a=3518;\nUPDATE t2 SET c='fifty-nine thousand eight hundred one' WHERE a=3519;\nUPDATE t2 SET c='twenty-four thousand two hundred sixty' WHERE a=3520;\nUPDATE t2 SET c='sixty-two thousand eight hundred' WHERE a=3521;\nUPDATE t2 SET c='sixty-three thousand five hundred fifty-two' WHERE a=3522;\nUPDATE t2 SET c='seven thousand eight hundred twenty' WHERE a=3523;\nUPDATE t2 SET c='sixty-six thousand two hundred forty-seven' WHERE a=3524;\nUPDATE t2 SET c='ninety-two thousand eight hundred forty-five' WHERE a=3525;\nUPDATE t2 SET c='seventy-six thousand two hundred ninety-two' WHERE a=3526;\nUPDATE t2 SET c='sixty-five thousand seven hundred two' WHERE a=3527;\nUPDATE t2 SET c='sixty-nine thousand four hundred ninety-five' WHERE a=3528;\nUPDATE t2 SET c='twelve thousand seven hundred seventy-seven' WHERE a=3529;\nUPDATE t2 SET c='ninety-nine thousand eight hundred eighty-eight' WHERE a=3530;\nUPDATE t2 SET c='seven thousand six hundred eighty-four' WHERE a=3531;\nUPDATE t2 SET c='fifty-eight thousand two hundred seventy-six' WHERE a=3532;\nUPDATE t2 SET c='forty thousand ten' WHERE a=3533;\nUPDATE t2 SET c='seventy-one thousand seven hundred thirty-nine' WHERE a=3534;\nUPDATE t2 SET c='six thousand eight hundred eighty-two' WHERE a=3535;\nUPDATE t2 SET c='eighty-three thousand four hundred twelve' WHERE a=3536;\nUPDATE t2 SET c='seven thousand two hundred ninety-three' WHERE a=3537;\nUPDATE t2 SET c='three thousand three hundred sixteen' WHERE a=3538;\nUPDATE t2 SET c='forty thousand two hundred thirty-eight' WHERE a=3539;\nUPDATE t2 SET c='forty-six thousand three hundred ninety-four' WHERE a=3540;\nUPDATE t2 SET c='fifty-three thousand three hundred thirty-four' WHERE a=3541;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-five' WHERE a=3542;\nUPDATE t2 SET c='ninety-eight thousand nine hundred seventy-three' WHERE a=3543;\nUPDATE t2 SET c='twenty-nine thousand three hundred twenty-eight' WHERE a=3544;\nUPDATE t2 SET c='twenty-eight thousand four hundred forty-nine' WHERE a=3545;\nUPDATE t2 SET c='twenty-five thousand sixty-nine' WHERE a=3546;\nUPDATE t2 SET c='twenty-eight thousand fifty-eight' WHERE a=3547;\nUPDATE t2 SET c='forty-two thousand six hundred twenty-five' WHERE a=3548;\nUPDATE t2 SET c='one hundred thirty-three' WHERE a=3549;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-eight' WHERE a=3550;\nUPDATE t2 SET c='eighty-one thousand nine hundred thirty-seven' WHERE a=3551;\nUPDATE t2 SET c='fifty thousand one hundred eighty-five' WHERE a=3552;\nUPDATE t2 SET c='fifty-nine thousand five hundred nineteen' WHERE a=3553;\nUPDATE t2 SET c='twenty-two thousand three hundred forty-one' WHERE a=3554;\nUPDATE t2 SET c='twenty-four thousand three hundred nineteen' WHERE a=3555;\nUPDATE t2 SET c='four thousand nine hundred ninety-three' WHERE a=3556;\nUPDATE t2 SET c='eighty-eight thousand six hundred ninety-two' WHERE a=3557;\nUPDATE t2 SET c='twelve thousand three hundred eighty-two' WHERE a=3558;\nUPDATE t2 SET c='fifty-nine thousand four hundred seventy' WHERE a=3559;\nUPDATE t2 SET c='twenty-three thousand four hundred six' WHERE a=3560;\nUPDATE t2 SET c='thirty-five thousand five hundred ninety-three' WHERE a=3561;\nUPDATE t2 SET c='eighty-one thousand one hundred thirty-four' WHERE a=3562;\nUPDATE t2 SET c='thirty-seven thousand one hundred forty-nine' WHERE a=3563;\nUPDATE t2 SET c='nineteen thousand ninety-four' WHERE a=3564;\nUPDATE t2 SET c='seventy-eight thousand four hundred ninety-eight' WHERE a=3565;\nUPDATE t2 SET c='four thousand seven hundred thirty-eight' WHERE a=3566;\nUPDATE t2 SET c='eighty-two thousand eighteen' WHERE a=3567;\nUPDATE t2 SET c='eighty thousand five hundred seven' WHERE a=3568;\nUPDATE t2 SET c='twenty-one thousand nine hundred ninety-seven' WHERE a=3569;\nUPDATE t2 SET c='seventeen thousand nine hundred fifty-eight' WHERE a=3570;\nUPDATE t2 SET c='fifteen thousand five hundred thirty-three' WHERE a=3571;\nUPDATE t2 SET c='five thousand three hundred fifty-seven' WHERE a=3572;\nUPDATE t2 SET c='forty-eight thousand five hundred ninety-eight' WHERE a=3573;\nUPDATE t2 SET c='twenty-eight thousand three hundred seventy-two' WHERE a=3574;\nUPDATE t2 SET c='thirty-eight thousand seven hundred twenty' WHERE a=3575;\nUPDATE t2 SET c='seventeen thousand nine hundred thirty' WHERE a=3576;\nUPDATE t2 SET c='ninety-two thousand five hundred ten' WHERE a=3577;\nUPDATE t2 SET c='sixteen thousand one' WHERE a=3578;\nUPDATE t2 SET c='sixty-four thousand one hundred fifty-four' WHERE a=3579;\nUPDATE t2 SET c='fifty thousand twenty-one' WHERE a=3580;\nUPDATE t2 SET c='eighty-one thousand three hundred thirty-five' WHERE a=3581;\nUPDATE t2 SET c='seventy-eight thousand eight hundred sixty-seven' WHERE a=3582;\nUPDATE t2 SET c='five thousand seven hundred fifty-five' WHERE a=3583;\nUPDATE t2 SET c='ninety-four thousand seven hundred thirty-four' WHERE a=3584;\nUPDATE t2 SET c='one thousand nine hundred four' WHERE a=3585;\nUPDATE t2 SET c='seventy-eight thousand six hundred fifty-one' WHERE a=3586;\nUPDATE t2 SET c='seventy-six thousand seven hundred twenty-six' WHERE a=3587;\nUPDATE t2 SET c='seventy-four thousand three hundred sixty-six' WHERE a=3588;\nUPDATE t2 SET c='sixty-two thousand one hundred sixty-six' WHERE a=3589;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty-six' WHERE a=3590;\nUPDATE t2 SET c='sixty-six thousand nine hundred sixty-six' WHERE a=3591;\nUPDATE t2 SET c='thirty-five thousand four hundred fifty-one' WHERE a=3592;\nUPDATE t2 SET c='thirty-nine thousand three hundred seventy-four' WHERE a=3593;\nUPDATE t2 SET c='seventy-three thousand nine hundred eighty-four' WHERE a=3594;\nUPDATE t2 SET c='seventy-eight thousand six hundred sixty-eight' WHERE a=3595;\nUPDATE t2 SET c='eighty-one thousand eight hundred eighty-three' WHERE a=3596;\nUPDATE t2 SET c='eighty-six thousand eight hundred ninety' WHERE a=3597;\nUPDATE t2 SET c='seven thousand six hundred eighty-two' WHERE a=3598;\nUPDATE t2 SET c='fifty-eight thousand six hundred sixty' WHERE a=3599;\nUPDATE t2 SET c='twenty-six thousand two hundred ninety-eight' WHERE a=3600;\nUPDATE t2 SET c='eighty-nine thousand three hundred eighty-seven' WHERE a=3601;\nUPDATE t2 SET c='two thousand five hundred fifty-seven' WHERE a=3602;\nUPDATE t2 SET c='sixteen thousand nine hundred thirty-one' WHERE a=3603;\nUPDATE t2 SET c='forty-seven thousand eight hundred seventy-five' WHERE a=3604;\nUPDATE t2 SET c='sixty-seven thousand six hundred four' WHERE a=3605;\nUPDATE t2 SET c='thirteen thousand six hundred five' WHERE a=3606;\nUPDATE t2 SET c='twenty-three thousand two hundred sixty-four' WHERE a=3607;\nUPDATE t2 SET c='thirty-one thousand one hundred forty-six' WHERE a=3608;\nUPDATE t2 SET c='five thousand eight hundred eighty' WHERE a=3609;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy-four' WHERE a=3610;\nUPDATE t2 SET c='fifteen thousand five hundred sixty-one' WHERE a=3611;\nUPDATE t2 SET c='fifty thousand eight hundred ninety-seven' WHERE a=3612;\nUPDATE t2 SET c='twenty thousand two hundred fifty' WHERE a=3613;\nUPDATE t2 SET c='sixteen thousand sixty-four' WHERE a=3614;\nUPDATE t2 SET c='seventy-one thousand five hundred fifty' WHERE a=3615;\nUPDATE t2 SET c='eighteen thousand thirty-nine' WHERE a=3616;\nUPDATE t2 SET c='twenty-six thousand four hundred fifty-six' WHERE a=3617;\nUPDATE t2 SET c='sixty-four thousand nine hundred twenty-nine' WHERE a=3618;\nUPDATE t2 SET c='sixty-two thousand two hundred eighty-five' WHERE a=3619;\nUPDATE t2 SET c='eighty-seven thousand five hundred six' WHERE a=3620;\nUPDATE t2 SET c='forty-five thousand fifty-seven' WHERE a=3621;\nUPDATE t2 SET c='seventy-seven thousand nine hundred five' WHERE a=3622;\nUPDATE t2 SET c='eighty-three thousand one hundred seventy-one' WHERE a=3623;\nUPDATE t2 SET c='four thousand seven hundred thirty' WHERE a=3624;\nUPDATE t2 SET c='sixty-one thousand six hundred forty-six' WHERE a=3625;\nUPDATE t2 SET c='sixty-six thousand forty-two' WHERE a=3626;\nUPDATE t2 SET c='twenty-eight thousand nine hundred sixty-two' WHERE a=3627;\nUPDATE t2 SET c='ninety-six thousand two hundred fifty-six' WHERE a=3628;\nUPDATE t2 SET c='fifty-four thousand four hundred three' WHERE a=3629;\nUPDATE t2 SET c='ninety-eight thousand eight hundred eighty-three' WHERE a=3630;\nUPDATE t2 SET c='sixty-seven thousand seven hundred thirty-two' WHERE a=3631;\nUPDATE t2 SET c='twenty-seven thousand thirty-one' WHERE a=3632;\nUPDATE t2 SET c='sixty-one thousand five hundred seventy-eight' WHERE a=3633;\nUPDATE t2 SET c='fifty thousand six hundred ninety-three' WHERE a=3634;\nUPDATE t2 SET c='eighteen thousand two hundred twenty-one' WHERE a=3635;\nUPDATE t2 SET c='sixty-three thousand five hundred ninety-one' WHERE a=3636;\nUPDATE t2 SET c='forty-five thousand three hundred ninety-three' WHERE a=3637;\nUPDATE t2 SET c='fifty-one thousand six hundred two' WHERE a=3638;\nUPDATE t2 SET c='eighty-one thousand seventy-five' WHERE a=3639;\nUPDATE t2 SET c='ninety-four thousand two hundred eight' WHERE a=3640;\nUPDATE t2 SET c='eighty-eight thousand five hundred sixty-eight' WHERE a=3641;\nUPDATE t2 SET c='fifty-one thousand seven hundred seven' WHERE a=3642;\nUPDATE t2 SET c='seventy-nine thousand one hundred ninety' WHERE a=3643;\nUPDATE t2 SET c='thirty-five thousand two hundred ninety-six' WHERE a=3644;\nUPDATE t2 SET c='eighty thousand five hundred fifty-nine' WHERE a=3645;\nUPDATE t2 SET c='fifty thousand five hundred seventy-three' WHERE a=3646;\nUPDATE t2 SET c='fifty-seven thousand four hundred thirty-five' WHERE a=3647;\nUPDATE t2 SET c='nine thousand six hundred ten' WHERE a=3648;\nUPDATE t2 SET c='twenty-seven thousand four hundred fifty-nine' WHERE a=3649;\nUPDATE t2 SET c='ninety-three thousand six hundred forty' WHERE a=3650;\nUPDATE t2 SET c='seventy-three thousand nine hundred sixteen' WHERE a=3651;\nUPDATE t2 SET c='seventy-four thousand four hundred seventy-eight' WHERE a=3652;\nUPDATE t2 SET c='fifty-eight thousand one hundred eighty-three' WHERE a=3653;\nUPDATE t2 SET c='twenty-five thousand nine hundred nineteen' WHERE a=3654;\nUPDATE t2 SET c='ninety-seven thousand seven hundred sixty' WHERE a=3655;\nUPDATE t2 SET c='five thousand eight hundred thirty-three' WHERE a=3656;\nUPDATE t2 SET c='ninety-seven thousand eight hundred ninety' WHERE a=3657;\nUPDATE t2 SET c='forty-three thousand one hundred sixteen' WHERE a=3658;\nUPDATE t2 SET c='thirty-one thousand four hundred three' WHERE a=3659;\nUPDATE t2 SET c='eighty-six thousand four hundred twenty-two' WHERE a=3660;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty-three' WHERE a=3661;\nUPDATE t2 SET c='nineteen thousand three hundred twenty-six' WHERE a=3662;\nUPDATE t2 SET c='seventy-seven thousand six hundred eighty-two' WHERE a=3663;\nUPDATE t2 SET c='twenty-three thousand two hundred sixty-nine' WHERE a=3664;\nUPDATE t2 SET c='ninety-seven thousand nine hundred eighty-one' WHERE a=3665;\nUPDATE t2 SET c='three thousand eight hundred thirty-four' WHERE a=3666;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-six' WHERE a=3667;\nUPDATE t2 SET c='sixty-three thousand eight hundred seventy-eight' WHERE a=3668;\nUPDATE t2 SET c='twenty-four thousand one hundred twenty-seven' WHERE a=3669;\nUPDATE t2 SET c='eighty-two thousand one hundred sixty-eight' WHERE a=3670;\nUPDATE t2 SET c='seven thousand four hundred thirty-one' WHERE a=3671;\nUPDATE t2 SET c='seventy-six thousand four hundred seventy-five' WHERE a=3672;\nUPDATE t2 SET c='fifty-nine thousand five hundred eighty' WHERE a=3673;\nUPDATE t2 SET c='ninety thousand seven hundred eighty-seven' WHERE a=3674;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy' WHERE a=3675;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-one' WHERE a=3676;\nUPDATE t2 SET c='twenty-six thousand seven hundred eight' WHERE a=3677;\nUPDATE t2 SET c='forty-one thousand nine hundred sixty-three' WHERE a=3678;\nUPDATE t2 SET c='six thousand nine hundred forty-four' WHERE a=3679;\nUPDATE t2 SET c='forty-five thousand nine hundred thirty-two' WHERE a=3680;\nUPDATE t2 SET c='one thousand six hundred sixty-one' WHERE a=3681;\nUPDATE t2 SET c='seventeen thousand four hundred twenty-four' WHERE a=3682;\nUPDATE t2 SET c='ninety-three thousand two hundred thirty-nine' WHERE a=3683;\nUPDATE t2 SET c='twenty-four thousand one hundred ninety-one' WHERE a=3684;\nUPDATE t2 SET c='seventeen thousand five hundred twenty-one' WHERE a=3685;\nUPDATE t2 SET c='fifteen thousand one hundred forty-two' WHERE a=3686;\nUPDATE t2 SET c='seven thousand three hundred thirty' WHERE a=3687;\nUPDATE t2 SET c='ninety-two thousand seven hundred ninety-seven' WHERE a=3688;\nUPDATE t2 SET c='sixty thousand two hundred thirty-nine' WHERE a=3689;\nUPDATE t2 SET c='twenty-two thousand two hundred ninety-eight' WHERE a=3690;\nUPDATE t2 SET c='seventy-five thousand eight hundred thirty-three' WHERE a=3691;\nUPDATE t2 SET c='sixty-nine thousand four hundred twenty-two' WHERE a=3692;\nUPDATE t2 SET c='eighty-seven thousand seven hundred eighty' WHERE a=3693;\nUPDATE t2 SET c='fifty-three thousand seven hundred seventy-six' WHERE a=3694;\nUPDATE t2 SET c='twenty-three thousand one hundred six' WHERE a=3695;\nUPDATE t2 SET c='thirty-six thousand four hundred forty-eight' WHERE a=3696;\nUPDATE t2 SET c='seven thousand two hundred thirty' WHERE a=3697;\nUPDATE t2 SET c='fourteen thousand eight hundred eighty-eight' WHERE a=3698;\nUPDATE t2 SET c='forty-six thousand seven hundred thirty-nine' WHERE a=3699;\nUPDATE t2 SET c='ninety-one thousand two hundred forty-one' WHERE a=3700;\nUPDATE t2 SET c='sixty-eight thousand six hundred fourteen' WHERE a=3701;\nUPDATE t2 SET c='sixty-four thousand nine' WHERE a=3702;\nUPDATE t2 SET c='forty thousand five hundred eighty-one' WHERE a=3703;\nUPDATE t2 SET c='two thousand four hundred twelve' WHERE a=3704;\nUPDATE t2 SET c='sixty-nine thousand twenty-six' WHERE a=3705;\nUPDATE t2 SET c='fifty-four thousand seven hundred fifty-one' WHERE a=3706;\nUPDATE t2 SET c='sixteen thousand three hundred twenty-nine' WHERE a=3707;\nUPDATE t2 SET c='twenty-three thousand six hundred fourteen' WHERE a=3708;\nUPDATE t2 SET c='seventy-four thousand eight hundred eighty-seven' WHERE a=3709;\nUPDATE t2 SET c='seventy-seven thousand nine hundred twenty-one' WHERE a=3710;\nUPDATE t2 SET c='eighty-three thousand six hundred seventy-three' WHERE a=3711;\nUPDATE t2 SET c='forty-six thousand two hundred twenty' WHERE a=3712;\nUPDATE t2 SET c='twenty-seven thousand two hundred forty-six' WHERE a=3713;\nUPDATE t2 SET c='eighteen thousand two hundred fifty-three' WHERE a=3714;\nUPDATE t2 SET c='thirty-one thousand three hundred forty-seven' WHERE a=3715;\nUPDATE t2 SET c='eleven thousand six hundred forty-eight' WHERE a=3716;\nUPDATE t2 SET c='ninety-nine thousand seven hundred thirty' WHERE a=3717;\nUPDATE t2 SET c='two thousand one hundred twenty-one' WHERE a=3718;\nUPDATE t2 SET c='forty-three thousand six hundred eighty-four' WHERE a=3719;\nUPDATE t2 SET c='four thousand six hundred thirty-nine' WHERE a=3720;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-seven' WHERE a=3721;\nUPDATE t2 SET c='thirty thousand nine hundred ninety-five' WHERE a=3722;\nUPDATE t2 SET c='eight thousand four hundred twelve' WHERE a=3723;\nUPDATE t2 SET c='thirty-one thousand seven hundred nineteen' WHERE a=3724;\nUPDATE t2 SET c='ninety-eight thousand seven hundred eighty-two' WHERE a=3725;\nUPDATE t2 SET c='ninety-nine thousand eight hundred seven' WHERE a=3726;\nUPDATE t2 SET c='thirty-nine thousand nine hundred seventy-three' WHERE a=3727;\nUPDATE t2 SET c='sixty-two thousand two hundred thirty-eight' WHERE a=3728;\nUPDATE t2 SET c='fifty-two thousand five hundred fifteen' WHERE a=3729;\nUPDATE t2 SET c='ninety-six thousand five hundred fifty-nine' WHERE a=3730;\nUPDATE t2 SET c='sixty-seven thousand eight hundred sixty-nine' WHERE a=3731;\nUPDATE t2 SET c='seventy-one thousand four hundred twenty-five' WHERE a=3732;\nUPDATE t2 SET c='fifty-two thousand nine hundred sixty-six' WHERE a=3733;\nUPDATE t2 SET c='forty-four thousand eight hundred twenty-five' WHERE a=3734;\nUPDATE t2 SET c='ninety-three thousand two hundred eighty-seven' WHERE a=3735;\nUPDATE t2 SET c='ninety thousand three hundred seventy' WHERE a=3736;\nUPDATE t2 SET c='seven thousand twenty-four' WHERE a=3737;\nUPDATE t2 SET c='seventy thousand two hundred eighty-eight' WHERE a=3738;\nUPDATE t2 SET c='eighty-nine thousand four hundred three' WHERE a=3739;\nUPDATE t2 SET c='eighty-two thousand nine hundred ninety-nine' WHERE a=3740;\nUPDATE t2 SET c='ninety-six thousand five hundred ninety-six' WHERE a=3741;\nUPDATE t2 SET c='sixty-eight thousand two hundred seventy-five' WHERE a=3742;\nUPDATE t2 SET c='eighty-three thousand four hundred twenty-seven' WHERE a=3743;\nUPDATE t2 SET c='seventy-two thousand two hundred ninety-six' WHERE a=3744;\nUPDATE t2 SET c='eighty-six thousand three hundred ninety-four' WHERE a=3745;\nUPDATE t2 SET c='thirty-two thousand six hundred twenty-five' WHERE a=3746;\nUPDATE t2 SET c='ninety-two thousand five hundred thirty-two' WHERE a=3747;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-four' WHERE a=3748;\nUPDATE t2 SET c='thirty-two thousand eight hundred fifty-eight' WHERE a=3749;\nUPDATE t2 SET c='sixty-nine thousand six hundred eighty-five' WHERE a=3750;\nUPDATE t2 SET c='thirty-three thousand twenty-two' WHERE a=3751;\nUPDATE t2 SET c='seventy-three thousand seventy' WHERE a=3752;\nUPDATE t2 SET c='eighty-three thousand three hundred fifty-one' WHERE a=3753;\nUPDATE t2 SET c='forty-five thousand twenty' WHERE a=3754;\nUPDATE t2 SET c='ninety-one thousand forty-three' WHERE a=3755;\nUPDATE t2 SET c='twenty-two thousand six hundred sixty-seven' WHERE a=3756;\nUPDATE t2 SET c='one thousand eight hundred sixty-one' WHERE a=3757;\nUPDATE t2 SET c='eighty-one thousand two hundred sixty-one' WHERE a=3758;\nUPDATE t2 SET c='twelve thousand one hundred fifteen' WHERE a=3759;\nUPDATE t2 SET c='eight thousand two hundred seventy-five' WHERE a=3760;\nUPDATE t2 SET c='thirty-four thousand four hundred five' WHERE a=3761;\nUPDATE t2 SET c='thirty-seven thousand two hundred two' WHERE a=3762;\nUPDATE t2 SET c='ninety-one thousand nine hundred eight' WHERE a=3763;\nUPDATE t2 SET c='thirty-nine thousand three hundred ninety-nine' WHERE a=3764;\nUPDATE t2 SET c='ninety-one thousand seven hundred fifty' WHERE a=3765;\nUPDATE t2 SET c='forty-two thousand five hundred fifty-two' WHERE a=3766;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty' WHERE a=3767;\nUPDATE t2 SET c='forty-three thousand four hundred sixty-seven' WHERE a=3768;\nUPDATE t2 SET c='eleven thousand thirty-nine' WHERE a=3769;\nUPDATE t2 SET c='fifty-four thousand six hundred fifty-five' WHERE a=3770;\nUPDATE t2 SET c='eighty-four thousand seven hundred thirty-two' WHERE a=3771;\nUPDATE t2 SET c='sixty-one thousand four hundred eighty-one' WHERE a=3772;\nUPDATE t2 SET c='six thousand three hundred sixty-four' WHERE a=3773;\nUPDATE t2 SET c='forty-three thousand eight hundred thirty-eight' WHERE a=3774;\nUPDATE t2 SET c='seventeen thousand seven hundred twenty-nine' WHERE a=3775;\nUPDATE t2 SET c='forty-one thousand seven hundred fifty-four' WHERE a=3776;\nUPDATE t2 SET c='eighty-four thousand four hundred forty-one' WHERE a=3777;\nUPDATE t2 SET c='seventy-six thousand three hundred eighty-seven' WHERE a=3778;\nUPDATE t2 SET c='eighty-four thousand one hundred sixteen' WHERE a=3779;\nUPDATE t2 SET c='seventy-two thousand one hundred twenty-five' WHERE a=3780;\nUPDATE t2 SET c='eighteen thousand two hundred twenty-nine' WHERE a=3781;\nUPDATE t2 SET c='twenty-one thousand twenty-seven' WHERE a=3782;\nUPDATE t2 SET c='twenty-five thousand two hundred sixty-eight' WHERE a=3783;\nUPDATE t2 SET c='eighty-three thousand eight hundred thirty-one' WHERE a=3784;\nUPDATE t2 SET c='two thousand two hundred thirty-five' WHERE a=3785;\nUPDATE t2 SET c='six thousand two hundred sixty-nine' WHERE a=3786;\nUPDATE t2 SET c='forty-two thousand fourteen' WHERE a=3787;\nUPDATE t2 SET c='eighty thousand one hundred twenty-eight' WHERE a=3788;\nUPDATE t2 SET c='sixty thousand ninety-one' WHERE a=3789;\nUPDATE t2 SET c='twenty-eight thousand eight hundred twenty-eight' WHERE a=3790;\nUPDATE t2 SET c='fifty-nine thousand nine hundred eighty' WHERE a=3791;\nUPDATE t2 SET c='three thousand six hundred thirty-four' WHERE a=3792;\nUPDATE t2 SET c='seventy-two thousand four hundred twenty-three' WHERE a=3793;\nUPDATE t2 SET c='forty-nine thousand one hundred thirty-five' WHERE a=3794;\nUPDATE t2 SET c='eighty thousand fifty-six' WHERE a=3795;\nUPDATE t2 SET c='eighty-nine thousand five hundred one' WHERE a=3796;\nUPDATE t2 SET c='three thousand forty-three' WHERE a=3797;\nUPDATE t2 SET c='twenty-two thousand nine hundred eleven' WHERE a=3798;\nUPDATE t2 SET c='eighty-six thousand thirty-three' WHERE a=3799;\nUPDATE t2 SET c='eighty-four thousand twenty' WHERE a=3800;\nUPDATE t2 SET c='eighty thousand one hundred seventy-five' WHERE a=3801;\nUPDATE t2 SET c='forty thousand five hundred thirty-nine' WHERE a=3802;\nUPDATE t2 SET c='forty-two thousand nine hundred fifty-six' WHERE a=3803;\nUPDATE t2 SET c='thirty thousand five hundred three' WHERE a=3804;\nUPDATE t2 SET c='thirty-nine thousand seventy-three' WHERE a=3805;\nUPDATE t2 SET c='five thousand seven hundred seventy-four' WHERE a=3806;\nUPDATE t2 SET c='forty-three thousand five hundred twenty-six' WHERE a=3807;\nUPDATE t2 SET c='sixteen thousand ninety-seven' WHERE a=3808;\nUPDATE t2 SET c='six thousand three hundred twenty-three' WHERE a=3809;\nUPDATE t2 SET c='sixty-nine thousand five hundred seventy-seven' WHERE a=3810;\nUPDATE t2 SET c='sixty-seven thousand nine hundred fifty-three' WHERE a=3811;\nUPDATE t2 SET c='forty thousand eighty-six' WHERE a=3812;\nUPDATE t2 SET c='thirty-three thousand six hundred forty-nine' WHERE a=3813;\nUPDATE t2 SET c='eighty-four thousand five hundred' WHERE a=3814;\nUPDATE t2 SET c='thirty-five thousand three hundred fifty' WHERE a=3815;\nUPDATE t2 SET c='eight thousand eighty' WHERE a=3816;\nUPDATE t2 SET c='eight hundred sixty-nine' WHERE a=3817;\nUPDATE t2 SET c='fifty-seven thousand seven hundred thirteen' WHERE a=3818;\nUPDATE t2 SET c='forty-nine thousand six hundred fifty-one' WHERE a=3819;\nUPDATE t2 SET c='twenty-seven thousand three' WHERE a=3820;\nUPDATE t2 SET c='seventy-one thousand five hundred seventy' WHERE a=3821;\nUPDATE t2 SET c='eight thousand eight hundred eighty-five' WHERE a=3822;\nUPDATE t2 SET c='fourteen thousand one hundred forty-two' WHERE a=3823;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-one' WHERE a=3824;\nUPDATE t2 SET c='fifty-five thousand five hundred sixteen' WHERE a=3825;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighteen' WHERE a=3826;\nUPDATE t2 SET c='fifty-seven thousand eighty-one' WHERE a=3827;\nUPDATE t2 SET c='forty-five thousand four hundred nineteen' WHERE a=3828;\nUPDATE t2 SET c='seventy-two thousand five hundred one' WHERE a=3829;\nUPDATE t2 SET c='thirty-nine thousand seven hundred fifty-six' WHERE a=3830;\nUPDATE t2 SET c='fifty-three thousand four hundred ninety-eight' WHERE a=3831;\nUPDATE t2 SET c='eighty-four thousand nine hundred ninety-nine' WHERE a=3832;\nUPDATE t2 SET c='eighty-three thousand one hundred thirty-one' WHERE a=3833;\nUPDATE t2 SET c='ninety-six thousand three hundred eighty-eight' WHERE a=3834;\nUPDATE t2 SET c='sixty-two thousand three hundred forty-one' WHERE a=3835;\nUPDATE t2 SET c='twenty thousand thirty-one' WHERE a=3836;\nUPDATE t2 SET c='fifty-five thousand nine hundred forty-five' WHERE a=3837;\nUPDATE t2 SET c='twenty-four thousand two hundred fourteen' WHERE a=3838;\nUPDATE t2 SET c='thirty-four thousand two hundred sixty' WHERE a=3839;\nUPDATE t2 SET c='thirty-three thousand six hundred sixty-five' WHERE a=3840;\nUPDATE t2 SET c='sixty-seven thousand eight hundred ninety-three' WHERE a=3841;\nUPDATE t2 SET c='seventy-one thousand one hundred ninety-seven' WHERE a=3842;\nUPDATE t2 SET c='thirty-one thousand eight hundred sixty-nine' WHERE a=3843;\nUPDATE t2 SET c='thirteen thousand eight hundred seventy-two' WHERE a=3844;\nUPDATE t2 SET c='forty-four thousand five hundred forty-five' WHERE a=3845;\nUPDATE t2 SET c='forty-one thousand two hundred thirty-one' WHERE a=3846;\nUPDATE t2 SET c='ninety-four thousand five hundred fifty-eight' WHERE a=3847;\nUPDATE t2 SET c='thirty-five thousand six hundred seventy-five' WHERE a=3848;\nUPDATE t2 SET c='eighty-nine thousand two hundred forty-one' WHERE a=3849;\nUPDATE t2 SET c='eighty-six thousand thirty-two' WHERE a=3850;\nUPDATE t2 SET c='seventy-six thousand three hundred sixty-four' WHERE a=3851;\nUPDATE t2 SET c='ninety thousand five hundred forty-eight' WHERE a=3852;\nUPDATE t2 SET c='nineteen thousand nine hundred fifty-nine' WHERE a=3853;\nUPDATE t2 SET c='eighty-seven thousand eight hundred forty-five' WHERE a=3854;\nUPDATE t2 SET c='sixty-one thousand five hundred fifty-three' WHERE a=3855;\nUPDATE t2 SET c='sixteen thousand three hundred fifty-two' WHERE a=3856;\nUPDATE t2 SET c='nineteen thousand ninety' WHERE a=3857;\nUPDATE t2 SET c='four hundred nineteen' WHERE a=3858;\nUPDATE t2 SET c='seventy-eight thousand nine hundred forty-five' WHERE a=3859;\nUPDATE t2 SET c='ninety-one thousand five hundred seven' WHERE a=3860;\nUPDATE t2 SET c='twenty-one thousand nine hundred' WHERE a=3861;\nUPDATE t2 SET c='twenty-six thousand eight hundred fifty-six' WHERE a=3862;\nUPDATE t2 SET c='twenty-three thousand two hundred twenty-three' WHERE a=3863;\nUPDATE t2 SET c='twenty-six thousand five hundred fifty-seven' WHERE a=3864;\nUPDATE t2 SET c='sixty-six thousand five hundred thirteen' WHERE a=3865;\nUPDATE t2 SET c='eighty-four thousand four hundred seventeen' WHERE a=3866;\nUPDATE t2 SET c='twelve thousand four hundred sixty-six' WHERE a=3867;\nUPDATE t2 SET c='ninety-three thousand seventy-one' WHERE a=3868;\nUPDATE t2 SET c='seventy-five thousand seven hundred sixty' WHERE a=3869;\nUPDATE t2 SET c='thirty-nine thousand six hundred fourteen' WHERE a=3870;\nUPDATE t2 SET c='fifty-five thousand three hundred thirty-two' WHERE a=3871;\nUPDATE t2 SET c='thirty thousand two hundred thirty-nine' WHERE a=3872;\nUPDATE t2 SET c='seventy-three thousand three hundred twenty-seven' WHERE a=3873;\nUPDATE t2 SET c='fourteen thousand three hundred seventeen' WHERE a=3874;\nUPDATE t2 SET c='thirty-six thousand ninety-two' WHERE a=3875;\nUPDATE t2 SET c='six thousand five hundred ten' WHERE a=3876;\nUPDATE t2 SET c='eighty-two thousand three hundred fifty-seven' WHERE a=3877;\nUPDATE t2 SET c='fifty-two thousand eight hundred thirty-nine' WHERE a=3878;\nUPDATE t2 SET c='forty-seven thousand nine hundred eighteen' WHERE a=3879;\nUPDATE t2 SET c='seventy thousand seven hundred ninety-seven' WHERE a=3880;\nUPDATE t2 SET c='ninety-five thousand three hundred eighty-seven' WHERE a=3881;\nUPDATE t2 SET c='thirty-eight thousand eight hundred twenty' WHERE a=3882;\nUPDATE t2 SET c='ninety-nine thousand seven hundred thirty' WHERE a=3883;\nUPDATE t2 SET c='ninety thousand four hundred thirteen' WHERE a=3884;\nUPDATE t2 SET c='forty-eight thousand nine hundred forty-two' WHERE a=3885;\nUPDATE t2 SET c='fifty-four thousand four hundred seventy' WHERE a=3886;\nUPDATE t2 SET c='fifty-three thousand seven hundred ninety-eight' WHERE a=3887;\nUPDATE t2 SET c='fifty-five thousand three hundred forty-five' WHERE a=3888;\nUPDATE t2 SET c='sixty-eight thousand eight hundred four' WHERE a=3889;\nUPDATE t2 SET c='seventy-eight thousand four hundred forty-nine' WHERE a=3890;\nUPDATE t2 SET c='fifty-one thousand nine hundred sixty' WHERE a=3891;\nUPDATE t2 SET c='seventy-five thousand nine hundred thirty' WHERE a=3892;\nUPDATE t2 SET c='ninety-three thousand two hundred eighty-four' WHERE a=3893;\nUPDATE t2 SET c='sixteen thousand four hundred thirty-nine' WHERE a=3894;\nUPDATE t2 SET c='seven thousand two hundred eighty-two' WHERE a=3895;\nUPDATE t2 SET c='forty-five thousand seventy-nine' WHERE a=3896;\nUPDATE t2 SET c='twenty-four thousand two hundred twelve' WHERE a=3897;\nUPDATE t2 SET c='thirty-seven thousand seventy-six' WHERE a=3898;\nUPDATE t2 SET c='ninety-six thousand three hundred thirty-six' WHERE a=3899;\nUPDATE t2 SET c='fifteen thousand one hundred thirty-six' WHERE a=3900;\nUPDATE t2 SET c='twenty-eight thousand fifty-six' WHERE a=3901;\nUPDATE t2 SET c='seven thousand four hundred eighty-five' WHERE a=3902;\nUPDATE t2 SET c='thirty-seven thousand eight hundred forty-four' WHERE a=3903;\nUPDATE t2 SET c='ninety-two thousand two hundred sixty-five' WHERE a=3904;\nUPDATE t2 SET c='thirteen thousand seven hundred seventeen' WHERE a=3905;\nUPDATE t2 SET c='fifty-six thousand seven hundred ninety-eight' WHERE a=3906;\nUPDATE t2 SET c='fifty thousand six hundred ninety-nine' WHERE a=3907;\nUPDATE t2 SET c='sixty-four thousand twenty' WHERE a=3908;\nUPDATE t2 SET c='sixty-seven thousand six hundred fifty-six' WHERE a=3909;\nUPDATE t2 SET c='seventy-one thousand seven hundred twenty-six' WHERE a=3910;\nUPDATE t2 SET c='twenty-nine thousand six hundred forty-one' WHERE a=3911;\nUPDATE t2 SET c='fifty-six thousand nine hundred sixty-four' WHERE a=3912;\nUPDATE t2 SET c='twenty-eight thousand nine hundred thirty-six' WHERE a=3913;\nUPDATE t2 SET c='eighty-five thousand five hundred forty-seven' WHERE a=3914;\nUPDATE t2 SET c='seventy-two thousand forty-seven' WHERE a=3915;\nUPDATE t2 SET c='thirty-two thousand eight hundred twenty' WHERE a=3916;\nUPDATE t2 SET c='forty-three thousand four hundred twenty-nine' WHERE a=3917;\nUPDATE t2 SET c='fifty thousand six hundred twenty-three' WHERE a=3918;\nUPDATE t2 SET c='fifty-seven thousand three hundred twenty-six' WHERE a=3919;\nUPDATE t2 SET c='thirty-four thousand one hundred eleven' WHERE a=3920;\nUPDATE t2 SET c='ninety-one thousand six hundred thirty-five' WHERE a=3921;\nUPDATE t2 SET c='twelve thousand five hundred thirty-nine' WHERE a=3922;\nUPDATE t2 SET c='nine thousand five hundred eight' WHERE a=3923;\nUPDATE t2 SET c='forty-four thousand two hundred ten' WHERE a=3924;\nUPDATE t2 SET c='thirty-two thousand four hundred nineteen' WHERE a=3925;\nUPDATE t2 SET c='eighty-four thousand three hundred forty-seven' WHERE a=3926;\nUPDATE t2 SET c='fifty-one thousand five hundred fourteen' WHERE a=3927;\nUPDATE t2 SET c='forty-three thousand two hundred seventy-two' WHERE a=3928;\nUPDATE t2 SET c='fifteen thousand eight hundred ninety-nine' WHERE a=3929;\nUPDATE t2 SET c='seventy-five thousand two hundred ninety-eight' WHERE a=3930;\nUPDATE t2 SET c='eighteen thousand seven hundred ninety-five' WHERE a=3931;\nUPDATE t2 SET c='nineteen thousand three hundred forty-two' WHERE a=3932;\nUPDATE t2 SET c='nine thousand eight hundred seventy-nine' WHERE a=3933;\nUPDATE t2 SET c='twenty-seven thousand three hundred sixty' WHERE a=3934;\nUPDATE t2 SET c='twenty thousand six hundred fifty-three' WHERE a=3935;\nUPDATE t2 SET c='sixty-eight thousand eight hundred nineteen' WHERE a=3936;\nUPDATE t2 SET c='ninety-six thousand nine hundred sixty-six' WHERE a=3937;\nUPDATE t2 SET c='forty-one thousand two hundred seventy-nine' WHERE a=3938;\nUPDATE t2 SET c='fifteen thousand one hundred fifty-three' WHERE a=3939;\nUPDATE t2 SET c='sixty-one thousand five hundred five' WHERE a=3940;\nUPDATE t2 SET c='eighty-five thousand seven hundred thirty-seven' WHERE a=3941;\nUPDATE t2 SET c='thirty-one thousand four hundred eighty-nine' WHERE a=3942;\nUPDATE t2 SET c='ninety-nine thousand forty-nine' WHERE a=3943;\nUPDATE t2 SET c='fifty-one thousand three hundred ninety-two' WHERE a=3944;\nUPDATE t2 SET c='eighteen thousand sixty-seven' WHERE a=3945;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-six' WHERE a=3946;\nUPDATE t2 SET c='sixteen thousand four hundred' WHERE a=3947;\nUPDATE t2 SET c='ten thousand eight hundred twelve' WHERE a=3948;\nUPDATE t2 SET c='fifty-six thousand four hundred forty-five' WHERE a=3949;\nUPDATE t2 SET c='eighty-three thousand one hundred fifty-nine' WHERE a=3950;\nUPDATE t2 SET c='twenty-four thousand one hundred thirty-nine' WHERE a=3951;\nUPDATE t2 SET c='twenty-one thousand sixteen' WHERE a=3952;\nUPDATE t2 SET c='ninety-one thousand three hundred eleven' WHERE a=3953;\nUPDATE t2 SET c='forty-seven thousand six hundred thirty-seven' WHERE a=3954;\nUPDATE t2 SET c='fifty thousand six hundred twenty-four' WHERE a=3955;\nUPDATE t2 SET c='seventeen thousand nine hundred ninety-eight' WHERE a=3956;\nUPDATE t2 SET c='two hundred ten' WHERE a=3957;\nUPDATE t2 SET c='six thousand three hundred seventy' WHERE a=3958;\nUPDATE t2 SET c='ninety thousand five hundred twenty-seven' WHERE a=3959;\nUPDATE t2 SET c='seventy-one thousand six hundred twenty-three' WHERE a=3960;\nUPDATE t2 SET c='eighty-nine thousand five hundred ninety-six' WHERE a=3961;\nUPDATE t2 SET c='eighty-one thousand six hundred seventy' WHERE a=3962;\nUPDATE t2 SET c='sixty-six thousand six hundred eighty-three' WHERE a=3963;\nUPDATE t2 SET c='sixty-two thousand seven hundred eighty-four' WHERE a=3964;\nUPDATE t2 SET c='eight thousand seven hundred thirty-six' WHERE a=3965;\nUPDATE t2 SET c='eighteen thousand five hundred forty-seven' WHERE a=3966;\nUPDATE t2 SET c='ninety-two thousand eight hundred eighty-nine' WHERE a=3967;\nUPDATE t2 SET c='eighty-nine thousand nine hundred six' WHERE a=3968;\nUPDATE t2 SET c='thirty-seven thousand forty-six' WHERE a=3969;\nUPDATE t2 SET c='seventeen thousand six hundred fifty-one' WHERE a=3970;\nUPDATE t2 SET c='ninety-five thousand seven hundred thirty-five' WHERE a=3971;\nUPDATE t2 SET c='fifty-eight thousand two hundred seven' WHERE a=3972;\nUPDATE t2 SET c='seventy-five thousand one hundred seventy-three' WHERE a=3973;\nUPDATE t2 SET c='seventy-two thousand six hundred seventy-one' WHERE a=3974;\nUPDATE t2 SET c='seventy-nine thousand one hundred eighty-three' WHERE a=3975;\nUPDATE t2 SET c='eighty-eight thousand five hundred forty-seven' WHERE a=3976;\nUPDATE t2 SET c='forty-eight thousand seven hundred thirty-nine' WHERE a=3977;\nUPDATE t2 SET c='seventy-nine thousand sixty-five' WHERE a=3978;\nUPDATE t2 SET c='fourteen thousand four hundred three' WHERE a=3979;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-two' WHERE a=3980;\nUPDATE t2 SET c='eighty-nine thousand two hundred eighty-two' WHERE a=3981;\nUPDATE t2 SET c='thirty-seven thousand nine hundred eighty-two' WHERE a=3982;\nUPDATE t2 SET c='forty-seven thousand seven hundred sixty-nine' WHERE a=3983;\nUPDATE t2 SET c='seventy-four thousand three hundred seventy' WHERE a=3984;\nUPDATE t2 SET c='ninety-nine thousand two hundred seventy-eight' WHERE a=3985;\nUPDATE t2 SET c='forty-three thousand seven hundred twenty' WHERE a=3986;\nUPDATE t2 SET c='thirty-four thousand three hundred thirty-six' WHERE a=3987;\nUPDATE t2 SET c='fifty-five thousand three hundred sixty-two' WHERE a=3988;\nUPDATE t2 SET c='twenty-six thousand three hundred eighty-five' WHERE a=3989;\nUPDATE t2 SET c='twenty-one thousand seven hundred seventy' WHERE a=3990;\nUPDATE t2 SET c='eleven thousand sixty-four' WHERE a=3991;\nUPDATE t2 SET c='fifty thousand three hundred ninety-three' WHERE a=3992;\nUPDATE t2 SET c='eighty-one thousand three hundred thirty-two' WHERE a=3993;\nUPDATE t2 SET c='thirteen thousand three hundred sixty-nine' WHERE a=3994;\nUPDATE t2 SET c='ninety-seven thousand forty-five' WHERE a=3995;\nUPDATE t2 SET c='fifty-two thousand three hundred eight' WHERE a=3996;\nUPDATE t2 SET c='twenty-seven thousand eight hundred six' WHERE a=3997;\nUPDATE t2 SET c='seventy-five thousand one hundred fifteen' WHERE a=3998;\nUPDATE t2 SET c='eighty-three thousand four hundred forty-two' WHERE a=3999;\nUPDATE t2 SET c='twenty-eight thousand six hundred twenty-seven' WHERE a=4000;\nUPDATE t2 SET c='thirty-six thousand five hundred twenty-three' WHERE a=4001;\nUPDATE t2 SET c='twenty-five thousand seventy-six' WHERE a=4002;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-three' WHERE a=4003;\nUPDATE t2 SET c='twenty-one thousand seven hundred twenty-six' WHERE a=4004;\nUPDATE t2 SET c='eighty-nine thousand eight hundred eighty-nine' WHERE a=4005;\nUPDATE t2 SET c='eighty-eight thousand six hundred eighty-eight' WHERE a=4006;\nUPDATE t2 SET c='twenty-four thousand one hundred thirty-one' WHERE a=4007;\nUPDATE t2 SET c='seventeen thousand two hundred eleven' WHERE a=4008;\nUPDATE t2 SET c='fifty-three thousand eight hundred thirty-three' WHERE a=4009;\nUPDATE t2 SET c='seventy-nine thousand seven hundred thirty-six' WHERE a=4010;\nUPDATE t2 SET c='ten thousand seven hundred forty-six' WHERE a=4011;\nUPDATE t2 SET c='nine thousand seven hundred fifty-three' WHERE a=4012;\nUPDATE t2 SET c='ninety-five thousand one hundred eighty-one' WHERE a=4013;\nUPDATE t2 SET c='twenty thousand four hundred twenty-two' WHERE a=4014;\nUPDATE t2 SET c='forty-two thousand five hundred eighty-one' WHERE a=4015;\nUPDATE t2 SET c='ninety-nine thousand six hundred forty-three' WHERE a=4016;\nUPDATE t2 SET c='twenty thousand two hundred forty-nine' WHERE a=4017;\nUPDATE t2 SET c='seventy-five thousand three hundred forty-four' WHERE a=4018;\nUPDATE t2 SET c='fifteen thousand five hundred thirty-three' WHERE a=4019;\nUPDATE t2 SET c='forty-nine thousand one hundred ninety-seven' WHERE a=4020;\nUPDATE t2 SET c='sixty-three thousand seven hundred fifty-nine' WHERE a=4021;\nUPDATE t2 SET c='ninety-four thousand three hundred nineteen' WHERE a=4022;\nUPDATE t2 SET c='eighty-six thousand four hundred sixty-seven' WHERE a=4023;\nUPDATE t2 SET c='sixty-nine thousand two hundred six' WHERE a=4024;\nUPDATE t2 SET c='fifty-seven thousand two hundred nineteen' WHERE a=4025;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-four' WHERE a=4026;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-eight' WHERE a=4027;\nUPDATE t2 SET c='seventy-five thousand ninety-five' WHERE a=4028;\nUPDATE t2 SET c='thirteen thousand four hundred fifty' WHERE a=4029;\nUPDATE t2 SET c='fifty-four thousand three hundred three' WHERE a=4030;\nUPDATE t2 SET c='eighty-one thousand seventy-nine' WHERE a=4031;\nUPDATE t2 SET c='eighty thousand one hundred six' WHERE a=4032;\nUPDATE t2 SET c='seven thousand four hundred fifty' WHERE a=4033;\nUPDATE t2 SET c='forty-three thousand one hundred fourteen' WHERE a=4034;\nUPDATE t2 SET c='fifteen thousand seven hundred eighty-eight' WHERE a=4035;\nUPDATE t2 SET c='fifty-nine thousand three hundred fifty' WHERE a=4036;\nUPDATE t2 SET c='twenty thousand one hundred one' WHERE a=4037;\nUPDATE t2 SET c='eighty-eight thousand one hundred forty-nine' WHERE a=4038;\nUPDATE t2 SET c='fifty-four thousand eight hundred forty-seven' WHERE a=4039;\nUPDATE t2 SET c='thirty-eight thousand nine hundred thirty-five' WHERE a=4040;\nUPDATE t2 SET c='twenty-eight' WHERE a=4041;\nUPDATE t2 SET c='eighteen thousand seven hundred seven' WHERE a=4042;\nUPDATE t2 SET c='thirty-one thousand two hundred forty-two' WHERE a=4043;\nUPDATE t2 SET c='five thousand three hundred ten' WHERE a=4044;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety-four' WHERE a=4045;\nUPDATE t2 SET c='forty-one thousand two hundred nine' WHERE a=4046;\nUPDATE t2 SET c='three thousand four hundred sixty-six' WHERE a=4047;\nUPDATE t2 SET c='seventy-eight thousand seven hundred nine' WHERE a=4048;\nUPDATE t2 SET c='twenty-three thousand seven hundred six' WHERE a=4049;\nUPDATE t2 SET c='ninety thousand nine hundred thirty-two' WHERE a=4050;\nUPDATE t2 SET c='twelve thousand six hundred three' WHERE a=4051;\nUPDATE t2 SET c='forty-three thousand one' WHERE a=4052;\nUPDATE t2 SET c='forty thousand two hundred ninety' WHERE a=4053;\nUPDATE t2 SET c='thirty-three thousand seven hundred eighteen' WHERE a=4054;\nUPDATE t2 SET c='twenty-nine thousand one hundred seventy-eight' WHERE a=4055;\nUPDATE t2 SET c='forty thousand nine hundred thirty-five' WHERE a=4056;\nUPDATE t2 SET c='forty-two thousand four hundred thirty-one' WHERE a=4057;\nUPDATE t2 SET c='forty-four thousand two hundred fifty' WHERE a=4058;\nUPDATE t2 SET c='seventy-three thousand three hundred sixty-two' WHERE a=4059;\nUPDATE t2 SET c='fourteen thousand two hundred thirty-one' WHERE a=4060;\nUPDATE t2 SET c='eighty-two thousand three hundred seventy-three' WHERE a=4061;\nUPDATE t2 SET c='sixty thousand nine hundred thirty-one' WHERE a=4062;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-seven' WHERE a=4063;\nUPDATE t2 SET c='forty-nine thousand three hundred ninety-four' WHERE a=4064;\nUPDATE t2 SET c='fifty thousand nine hundred three' WHERE a=4065;\nUPDATE t2 SET c='ninety thousand seven hundred thirty' WHERE a=4066;\nUPDATE t2 SET c='forty-one thousand one hundred sixty-nine' WHERE a=4067;\nUPDATE t2 SET c='twenty-four thousand ninety-six' WHERE a=4068;\nUPDATE t2 SET c='sixty-five thousand three hundred two' WHERE a=4069;\nUPDATE t2 SET c='eighty thousand six hundred fifty' WHERE a=4070;\nUPDATE t2 SET c='ninety-eight thousand eight hundred twenty-one' WHERE a=4071;\nUPDATE t2 SET c='ninety-seven thousand two hundred seventy-three' WHERE a=4072;\nUPDATE t2 SET c='forty-one thousand six hundred thirty-three' WHERE a=4073;\nUPDATE t2 SET c='ninety thousand three hundred fifty-eight' WHERE a=4074;\nUPDATE t2 SET c='forty-six thousand one hundred eighty-one' WHERE a=4075;\nUPDATE t2 SET c='sixty thousand three hundred fifty-three' WHERE a=4076;\nUPDATE t2 SET c='sixty-five thousand seven hundred twenty-six' WHERE a=4077;\nUPDATE t2 SET c='ninety-eight thousand one hundred' WHERE a=4078;\nUPDATE t2 SET c='twenty-five thousand five hundred thirty-three' WHERE a=4079;\nUPDATE t2 SET c='fifty-seven thousand eighty-four' WHERE a=4080;\nUPDATE t2 SET c='forty-one thousand two hundred seventy-seven' WHERE a=4081;\nUPDATE t2 SET c='seventy-seven thousand forty' WHERE a=4082;\nUPDATE t2 SET c='fifty-two thousand four hundred seventy' WHERE a=4083;\nUPDATE t2 SET c='eighty-eight thousand five hundred forty-six' WHERE a=4084;\nUPDATE t2 SET c='forty-two thousand five hundred seventy-three' WHERE a=4085;\nUPDATE t2 SET c='seventy-four thousand two hundred fifty-seven' WHERE a=4086;\nUPDATE t2 SET c='one thousand one hundred thirty-one' WHERE a=4087;\nUPDATE t2 SET c='sixty-one thousand five hundred fifty-five' WHERE a=4088;\nUPDATE t2 SET c='eighty-three thousand two hundred fifty-three' WHERE a=4089;\nUPDATE t2 SET c='fifty-six thousand four hundred seventy-one' WHERE a=4090;\nUPDATE t2 SET c='thirty-seven thousand six hundred forty-four' WHERE a=4091;\nUPDATE t2 SET c='eighty-three thousand five hundred seventy-three' WHERE a=4092;\nUPDATE t2 SET c='sixty-nine thousand five hundred seventy-five' WHERE a=4093;\nUPDATE t2 SET c='fifty-seven thousand nine hundred twenty-seven' WHERE a=4094;\nUPDATE t2 SET c='eighty thousand nine hundred six' WHERE a=4095;\nUPDATE t2 SET c='sixty-one thousand six hundred twenty-seven' WHERE a=4096;\nUPDATE t2 SET c='fifty-two thousand two hundred eighty-six' WHERE a=4097;\nUPDATE t2 SET c='fourteen thousand six hundred eighty-six' WHERE a=4098;\nUPDATE t2 SET c='twenty-three thousand three hundred' WHERE a=4099;\nUPDATE t2 SET c='forty-four thousand five hundred twenty-seven' WHERE a=4100;\nUPDATE t2 SET c='forty-six thousand eight hundred sixty-two' WHERE a=4101;\nUPDATE t2 SET c='sixty-six thousand nine hundred fifty-eight' WHERE a=4102;\nUPDATE t2 SET c='one thousand three hundred three' WHERE a=4103;\nUPDATE t2 SET c='fifty-three thousand seven hundred ninety-one' WHERE a=4104;\nUPDATE t2 SET c='sixty-eight thousand six hundred ninety-three' WHERE a=4105;\nUPDATE t2 SET c='three thousand eight hundred seventy-three' WHERE a=4106;\nUPDATE t2 SET c='four thousand one hundred twenty-nine' WHERE a=4107;\nUPDATE t2 SET c='eight thousand six hundred sixty-one' WHERE a=4108;\nUPDATE t2 SET c='ninety-two thousand seven hundred one' WHERE a=4109;\nUPDATE t2 SET c='sixty-seven thousand six hundred seven' WHERE a=4110;\nUPDATE t2 SET c='three thousand five hundred twenty-eight' WHERE a=4111;\nUPDATE t2 SET c='fifty-eight thousand four hundred twenty-six' WHERE a=4112;\nUPDATE t2 SET c='fourteen thousand three hundred eighty-six' WHERE a=4113;\nUPDATE t2 SET c='twenty-four thousand six hundred seventy-two' WHERE a=4114;\nUPDATE t2 SET c='thirteen thousand seven hundred forty-three' WHERE a=4115;\nUPDATE t2 SET c='seventeen thousand three hundred thirty-eight' WHERE a=4116;\nUPDATE t2 SET c='nineteen thousand two hundred sixty-eight' WHERE a=4117;\nUPDATE t2 SET c='sixty-four thousand three hundred seventy-nine' WHERE a=4118;\nUPDATE t2 SET c='eight thousand three hundred fifty' WHERE a=4119;\nUPDATE t2 SET c='seventy-five thousand one hundred sixty-eight' WHERE a=4120;\nUPDATE t2 SET c='fourteen thousand five hundred twenty-six' WHERE a=4121;\nUPDATE t2 SET c='eighty-nine thousand two hundred nineteen' WHERE a=4122;\nUPDATE t2 SET c='seventy-three thousand four hundred seven' WHERE a=4123;\nUPDATE t2 SET c='thirty-six thousand nine hundred seventy-six' WHERE a=4124;\nUPDATE t2 SET c='ninety-four thousand three hundred eighty-four' WHERE a=4125;\nUPDATE t2 SET c='forty-five thousand nine hundred ninety-three' WHERE a=4126;\nUPDATE t2 SET c='twenty-one thousand four hundred thirty-two' WHERE a=4127;\nUPDATE t2 SET c='twenty-three thousand two hundred thirty-one' WHERE a=4128;\nUPDATE t2 SET c='three hundred ninety-five' WHERE a=4129;\nUPDATE t2 SET c='forty-three thousand one hundred thirty-two' WHERE a=4130;\nUPDATE t2 SET c='three thousand two hundred ninety-eight' WHERE a=4131;\nUPDATE t2 SET c='sixty-seven thousand seventy-seven' WHERE a=4132;\nUPDATE t2 SET c='twenty-three thousand nine hundred fifty-four' WHERE a=4133;\nUPDATE t2 SET c='sixty-nine thousand three hundred seventy-five' WHERE a=4134;\nUPDATE t2 SET c='eighty-four thousand three hundred sixty-five' WHERE a=4135;\nUPDATE t2 SET c='sixty-five thousand seven hundred forty-six' WHERE a=4136;\nUPDATE t2 SET c='seventy thousand seven hundred nine' WHERE a=4137;\nUPDATE t2 SET c='fifty-five thousand seven hundred eleven' WHERE a=4138;\nUPDATE t2 SET c='fifteen thousand six hundred fifty-two' WHERE a=4139;\nUPDATE t2 SET c='six thousand two hundred thirty-three' WHERE a=4140;\nUPDATE t2 SET c='fifty-six thousand seven hundred seventy-five' WHERE a=4141;\nUPDATE t2 SET c='twenty-four thousand thirty-one' WHERE a=4142;\nUPDATE t2 SET c='twenty-four thousand three hundred ninety-eight' WHERE a=4143;\nUPDATE t2 SET c='seventy-six thousand one hundred eighty-seven' WHERE a=4144;\nUPDATE t2 SET c='sixty-two thousand six hundred fifty-six' WHERE a=4145;\nUPDATE t2 SET c='ninety-three thousand three hundred eighty-two' WHERE a=4146;\nUPDATE t2 SET c='fifty-one thousand one hundred eighty-nine' WHERE a=4147;\nUPDATE t2 SET c='forty-six thousand two hundred three' WHERE a=4148;\nUPDATE t2 SET c='forty-four thousand four hundred forty-two' WHERE a=4149;\nUPDATE t2 SET c='thirty-seven thousand three hundred fifty-seven' WHERE a=4150;\nUPDATE t2 SET c='sixty-eight thousand two hundred ninety-two' WHERE a=4151;\nUPDATE t2 SET c='forty-one thousand six hundred eighty-nine' WHERE a=4152;\nUPDATE t2 SET c='three thousand one hundred seventy-eight' WHERE a=4153;\nUPDATE t2 SET c='four thousand ninety-nine' WHERE a=4154;\nUPDATE t2 SET c='fifty-two thousand four hundred sixty-nine' WHERE a=4155;\nUPDATE t2 SET c='sixty-three thousand five hundred fifteen' WHERE a=4156;\nUPDATE t2 SET c='forty-two thousand five hundred sixty' WHERE a=4157;\nUPDATE t2 SET c='seventy-two thousand two hundred five' WHERE a=4158;\nUPDATE t2 SET c='sixty-nine thousand two hundred forty-seven' WHERE a=4159;\nUPDATE t2 SET c='fifty-three thousand four hundred sixty-four' WHERE a=4160;\nUPDATE t2 SET c='seventy-seven thousand four hundred fifty-nine' WHERE a=4161;\nUPDATE t2 SET c='seven hundred sixty-five' WHERE a=4162;\nUPDATE t2 SET c='sixty-three thousand eight hundred eighteen' WHERE a=4163;\nUPDATE t2 SET c='forty-seven thousand one hundred fifty-two' WHERE a=4164;\nUPDATE t2 SET c='twenty-four thousand three hundred eight' WHERE a=4165;\nUPDATE t2 SET c='forty-one thousand six hundred eighty-nine' WHERE a=4166;\nUPDATE t2 SET c='seventy-one thousand six hundred five' WHERE a=4167;\nUPDATE t2 SET c='forty-four thousand sixty-one' WHERE a=4168;\nUPDATE t2 SET c='twenty-four thousand six hundred thirty-eight' WHERE a=4169;\nUPDATE t2 SET c='twenty-six thousand one hundred fifty-six' WHERE a=4170;\nUPDATE t2 SET c='ninety-nine thousand eight hundred twenty-two' WHERE a=4171;\nUPDATE t2 SET c='one thousand six hundred fifty-eight' WHERE a=4172;\nUPDATE t2 SET c='eighty-three thousand three hundred forty-one' WHERE a=4173;\nUPDATE t2 SET c='sixty-two thousand six hundred forty-three' WHERE a=4174;\nUPDATE t2 SET c='fifty-one thousand four hundred seventy-one' WHERE a=4175;\nUPDATE t2 SET c='forty-three thousand three hundred twenty-four' WHERE a=4176;\nUPDATE t2 SET c='ninety-six thousand two hundred five' WHERE a=4177;\nUPDATE t2 SET c='seventy-one thousand three hundred eighty-three' WHERE a=4178;\nUPDATE t2 SET c='sixty-six thousand three hundred twenty-four' WHERE a=4179;\nUPDATE t2 SET c='eighty-two thousand three hundred thirty-eight' WHERE a=4180;\nUPDATE t2 SET c='fifty-three thousand thirty-seven' WHERE a=4181;\nUPDATE t2 SET c='fifty-nine thousand nine hundred fifty-nine' WHERE a=4182;\nUPDATE t2 SET c='ninety-seven thousand six hundred seventy-four' WHERE a=4183;\nUPDATE t2 SET c='thirty-five thousand five hundred thirty-one' WHERE a=4184;\nUPDATE t2 SET c='ninety-two thousand nine hundred forty-one' WHERE a=4185;\nUPDATE t2 SET c='ninety-six thousand five hundred seventy' WHERE a=4186;\nUPDATE t2 SET c='six thousand seven' WHERE a=4187;\nUPDATE t2 SET c='twenty-one thousand one hundred eleven' WHERE a=4188;\nUPDATE t2 SET c='thirty-nine thousand eight hundred fifty-five' WHERE a=4189;\nUPDATE t2 SET c='fifty-four thousand eight hundred seventy-one' WHERE a=4190;\nUPDATE t2 SET c='thirty-three thousand five hundred eighty-nine' WHERE a=4191;\nUPDATE t2 SET c='ninety thousand three hundred twenty-nine' WHERE a=4192;\nUPDATE t2 SET c='seventy thousand four hundred eighty' WHERE a=4193;\nUPDATE t2 SET c='fifty-two thousand six hundred six' WHERE a=4194;\nUPDATE t2 SET c='six thousand two hundred seventy-six' WHERE a=4195;\nUPDATE t2 SET c='sixty-two thousand two hundred fifty' WHERE a=4196;\nUPDATE t2 SET c='thirty-seven thousand seven hundred' WHERE a=4197;\nUPDATE t2 SET c='ten thousand nine hundred ninety-three' WHERE a=4198;\nUPDATE t2 SET c='one thousand three hundred two' WHERE a=4199;\nUPDATE t2 SET c='twenty thousand six hundred twenty' WHERE a=4200;\nUPDATE t2 SET c='nine hundred twenty-six' WHERE a=4201;\nUPDATE t2 SET c='fifty thousand one hundred forty-two' WHERE a=4202;\nUPDATE t2 SET c='thirty-one thousand nineteen' WHERE a=4203;\nUPDATE t2 SET c='forty-four thousand sixty-five' WHERE a=4204;\nUPDATE t2 SET c='seventy-seven thousand five hundred thirteen' WHERE a=4205;\nUPDATE t2 SET c='eighty-three thousand nine hundred forty' WHERE a=4206;\nUPDATE t2 SET c='six thousand eight hundred eighty-eight' WHERE a=4207;\nUPDATE t2 SET c='eighty-one thousand one hundred fifty-eight' WHERE a=4208;\nUPDATE t2 SET c='sixteen thousand five hundred thirty-three' WHERE a=4209;\nUPDATE t2 SET c='seven thousand five hundred twenty-eight' WHERE a=4210;\nUPDATE t2 SET c='seventy-three thousand three hundred five' WHERE a=4211;\nUPDATE t2 SET c='seventy-five thousand six hundred fifty-seven' WHERE a=4212;\nUPDATE t2 SET c='twenty-two thousand two hundred sixty-one' WHERE a=4213;\nUPDATE t2 SET c='sixty-one thousand two hundred thirty' WHERE a=4214;\nUPDATE t2 SET c='eighteen thousand four hundred seventy-one' WHERE a=4215;\nUPDATE t2 SET c='fifty-three thousand nine hundred sixty-six' WHERE a=4216;\nUPDATE t2 SET c='twenty-one thousand five hundred ninety-four' WHERE a=4217;\nUPDATE t2 SET c='seventy-seven thousand five hundred thirty-two' WHERE a=4218;\nUPDATE t2 SET c='thirty-eight thousand nine hundred twenty-nine' WHERE a=4219;\nUPDATE t2 SET c='eighty thousand eight hundred forty-six' WHERE a=4220;\nUPDATE t2 SET c='twenty-eight thousand two hundred sixty-seven' WHERE a=4221;\nUPDATE t2 SET c='thirty-five thousand one hundred sixty-six' WHERE a=4222;\nUPDATE t2 SET c='fifty-four thousand five hundred ninety-three' WHERE a=4223;\nUPDATE t2 SET c='ten thousand six hundred five' WHERE a=4224;\nUPDATE t2 SET c='sixty-two thousand two hundred thirty-seven' WHERE a=4225;\nUPDATE t2 SET c='forty-three thousand eight hundred twenty-one' WHERE a=4226;\nUPDATE t2 SET c='forty-five thousand eight hundred twenty-eight' WHERE a=4227;\nUPDATE t2 SET c='eighty-eight thousand eight hundred ninety-seven' WHERE a=4228;\nUPDATE t2 SET c='thirty-nine thousand seven hundred nineteen' WHERE a=4229;\nUPDATE t2 SET c='forty-two thousand eighty-seven' WHERE a=4230;\nUPDATE t2 SET c='thirty-three thousand four hundred seventy-two' WHERE a=4231;\nUPDATE t2 SET c='twenty thousand three hundred seventy-two' WHERE a=4232;\nUPDATE t2 SET c='thirty-four thousand one hundred forty-four' WHERE a=4233;\nUPDATE t2 SET c='two thousand eight hundred eleven' WHERE a=4234;\nUPDATE t2 SET c='sixty-eight thousand six hundred eighty-three' WHERE a=4235;\nUPDATE t2 SET c='twenty-three thousand seven hundred nine' WHERE a=4236;\nUPDATE t2 SET c='twelve thousand one hundred sixty-two' WHERE a=4237;\nUPDATE t2 SET c='fifty-two thousand six hundred sixty-nine' WHERE a=4238;\nUPDATE t2 SET c='fifty-five thousand three hundred eighty-seven' WHERE a=4239;\nUPDATE t2 SET c='ninety-nine thousand four hundred five' WHERE a=4240;\nUPDATE t2 SET c='thirty-eight thousand five hundred fifty-one' WHERE a=4241;\nUPDATE t2 SET c='two hundred eight' WHERE a=4242;\nUPDATE t2 SET c='ninety-eight thousand eight hundred ninety-six' WHERE a=4243;\nUPDATE t2 SET c='thirty-eight thousand eight hundred eleven' WHERE a=4244;\nUPDATE t2 SET c='fifty-four thousand two hundred eighty-six' WHERE a=4245;\nUPDATE t2 SET c='sixty-one thousand one hundred seventeen' WHERE a=4246;\nUPDATE t2 SET c='eighty-one thousand three hundred ninety-nine' WHERE a=4247;\nUPDATE t2 SET c='fifteen thousand four hundred five' WHERE a=4248;\nUPDATE t2 SET c='twenty-two thousand seven hundred six' WHERE a=4249;\nUPDATE t2 SET c='fifty-two thousand five hundred thirty-two' WHERE a=4250;\nUPDATE t2 SET c='forty-six thousand two hundred thirty-three' WHERE a=4251;\nUPDATE t2 SET c='eighty-two thousand eight hundred twenty-one' WHERE a=4252;\nUPDATE t2 SET c='seventy-five thousand nine' WHERE a=4253;\nUPDATE t2 SET c='sixty-nine thousand seven hundred forty' WHERE a=4254;\nUPDATE t2 SET c='seventy-three thousand nine hundred twenty-one' WHERE a=4255;\nUPDATE t2 SET c='thirty-eight thousand nine hundred sixty-seven' WHERE a=4256;\nUPDATE t2 SET c='thirty-two thousand three hundred eighty-seven' WHERE a=4257;\nUPDATE t2 SET c='nineteen thousand three hundred ninety-three' WHERE a=4258;\nUPDATE t2 SET c='eighty-nine thousand six hundred seventy-nine' WHERE a=4259;\nUPDATE t2 SET c='six hundred forty-five' WHERE a=4260;\nUPDATE t2 SET c='thirty-six thousand four hundred thirty-six' WHERE a=4261;\nUPDATE t2 SET c='sixty-two thousand nine hundred seventy-three' WHERE a=4262;\nUPDATE t2 SET c='sixteen thousand sixty-one' WHERE a=4263;\nUPDATE t2 SET c='sixty-five thousand five hundred ninety-seven' WHERE a=4264;\nUPDATE t2 SET c='three thousand seventy' WHERE a=4265;\nUPDATE t2 SET c='eight thousand three hundred fifty-five' WHERE a=4266;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-seven' WHERE a=4267;\nUPDATE t2 SET c='forty-one thousand five hundred eighty-eight' WHERE a=4268;\nUPDATE t2 SET c='seven thousand one hundred forty-three' WHERE a=4269;\nUPDATE t2 SET c='eighty-four thousand two' WHERE a=4270;\nUPDATE t2 SET c='fifteen thousand four hundred eighty-six' WHERE a=4271;\nUPDATE t2 SET c='eighty-two thousand four hundred seventy-six' WHERE a=4272;\nUPDATE t2 SET c='twenty-three thousand one hundred eighteen' WHERE a=4273;\nUPDATE t2 SET c='fifty-six thousand eight hundred thirty-seven' WHERE a=4274;\nUPDATE t2 SET c='thirty thousand six hundred eighty-nine' WHERE a=4275;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty-two' WHERE a=4276;\nUPDATE t2 SET c='eighty-three thousand nine hundred nineteen' WHERE a=4277;\nUPDATE t2 SET c='sixty thousand two hundred thirty-one' WHERE a=4278;\nUPDATE t2 SET c='fifty-nine thousand five hundred twenty-two' WHERE a=4279;\nUPDATE t2 SET c='forty thousand thirty-eight' WHERE a=4280;\nUPDATE t2 SET c='twenty-eight thousand one hundred twenty' WHERE a=4281;\nUPDATE t2 SET c='thirty-seven thousand five hundred twenty-seven' WHERE a=4282;\nUPDATE t2 SET c='ninety-nine thousand five hundred fifty-eight' WHERE a=4283;\nUPDATE t2 SET c='three thousand seven hundred ninety-three' WHERE a=4284;\nUPDATE t2 SET c='two thousand four hundred eighty-three' WHERE a=4285;\nUPDATE t2 SET c='sixteen thousand three hundred seventy-five' WHERE a=4286;\nUPDATE t2 SET c='sixteen thousand seven hundred eighteen' WHERE a=4287;\nUPDATE t2 SET c='fifty-seven thousand one hundred thirty-two' WHERE a=4288;\nUPDATE t2 SET c='forty-three thousand eight hundred seventy-three' WHERE a=4289;\nUPDATE t2 SET c='eleven thousand eight hundred forty-four' WHERE a=4290;\nUPDATE t2 SET c='sixty thousand two hundred sixty-eight' WHERE a=4291;\nUPDATE t2 SET c='ninety-three thousand two hundred seventy-two' WHERE a=4292;\nUPDATE t2 SET c='forty-eight thousand five hundred seventy-six' WHERE a=4293;\nUPDATE t2 SET c='seventy-six thousand five hundred ninety-one' WHERE a=4294;\nUPDATE t2 SET c='seventy-one thousand nine hundred seventy-one' WHERE a=4295;\nUPDATE t2 SET c='ninety-eight thousand two hundred forty-three' WHERE a=4296;\nUPDATE t2 SET c='eighteen thousand three hundred fifty-six' WHERE a=4297;\nUPDATE t2 SET c='forty-seven thousand nine hundred four' WHERE a=4298;\nUPDATE t2 SET c='fourteen thousand one hundred thirty' WHERE a=4299;\nUPDATE t2 SET c='seventy-three thousand six hundred twenty-two' WHERE a=4300;\nUPDATE t2 SET c='ninety-nine thousand eight hundred sixty-eight' WHERE a=4301;\nUPDATE t2 SET c='eight thousand four hundred twenty-three' WHERE a=4302;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventy-seven' WHERE a=4303;\nUPDATE t2 SET c='seventy-eight thousand eight hundred ninety-four' WHERE a=4304;\nUPDATE t2 SET c='twelve thousand three hundred five' WHERE a=4305;\nUPDATE t2 SET c='fifty thousand seven hundred eighty-four' WHERE a=4306;\nUPDATE t2 SET c='seventy thousand seventy-eight' WHERE a=4307;\nUPDATE t2 SET c='twenty-five thousand two hundred forty' WHERE a=4308;\nUPDATE t2 SET c='fifty-six thousand eight hundred seventy-four' WHERE a=4309;\nUPDATE t2 SET c='twenty-nine thousand four hundred twenty-three' WHERE a=4310;\nUPDATE t2 SET c='eighty-three thousand one hundred sixteen' WHERE a=4311;\nUPDATE t2 SET c='ninety-four thousand six hundred twenty-eight' WHERE a=4312;\nUPDATE t2 SET c='thirty-one thousand seven hundred twenty' WHERE a=4313;\nUPDATE t2 SET c='sixty-eight thousand two hundred seven' WHERE a=4314;\nUPDATE t2 SET c='fifty-eight thousand three hundred six' WHERE a=4315;\nUPDATE t2 SET c='twenty-six thousand three hundred eighty-two' WHERE a=4316;\nUPDATE t2 SET c='eighty-three thousand one hundred seventy-four' WHERE a=4317;\nUPDATE t2 SET c='fifty-four thousand twenty' WHERE a=4318;\nUPDATE t2 SET c='ninety-seven thousand five hundred eleven' WHERE a=4319;\nUPDATE t2 SET c='twelve thousand seven hundred ninety-two' WHERE a=4320;\nUPDATE t2 SET c='fifty-seven thousand nine hundred twenty-three' WHERE a=4321;\nUPDATE t2 SET c='nine thousand three hundred eighty-seven' WHERE a=4322;\nUPDATE t2 SET c='sixty thousand six hundred sixty-two' WHERE a=4323;\nUPDATE t2 SET c='twenty-three thousand three hundred thirty' WHERE a=4324;\nUPDATE t2 SET c='ninety-three thousand four hundred thirty-one' WHERE a=4325;\nUPDATE t2 SET c='twenty-three thousand seven hundred fifty-one' WHERE a=4326;\nUPDATE t2 SET c='thirty-nine thousand one hundred twenty-seven' WHERE a=4327;\nUPDATE t2 SET c='ten thousand thirty-six' WHERE a=4328;\nUPDATE t2 SET c='eighty-five thousand seven hundred eighty-two' WHERE a=4329;\nUPDATE t2 SET c='fifteen thousand nine hundred seventy' WHERE a=4330;\nUPDATE t2 SET c='two thousand twenty-one' WHERE a=4331;\nUPDATE t2 SET c='sixty-five thousand four hundred seventy-two' WHERE a=4332;\nUPDATE t2 SET c='twelve thousand five hundred fourteen' WHERE a=4333;\nUPDATE t2 SET c='seventy-two thousand ninety-three' WHERE a=4334;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixty' WHERE a=4335;\nUPDATE t2 SET c='sixty-eight thousand five hundred twenty' WHERE a=4336;\nUPDATE t2 SET c='forty thousand two hundred eighteen' WHERE a=4337;\nUPDATE t2 SET c='sixteen thousand seven hundred eighty-eight' WHERE a=4338;\nUPDATE t2 SET c='twenty-two thousand two hundred fifty' WHERE a=4339;\nUPDATE t2 SET c='eighty-seven thousand seven hundred forty-two' WHERE a=4340;\nUPDATE t2 SET c='ninety-five thousand twenty' WHERE a=4341;\nUPDATE t2 SET c='twenty-seven thousand four hundred fifty-seven' WHERE a=4342;\nUPDATE t2 SET c='sixty-nine thousand eighty-five' WHERE a=4343;\nUPDATE t2 SET c='five thousand eight hundred twenty-three' WHERE a=4344;\nUPDATE t2 SET c='ninety-six thousand three hundred twenty-one' WHERE a=4345;\nUPDATE t2 SET c='fifty-nine thousand nine hundred forty-one' WHERE a=4346;\nUPDATE t2 SET c='sixty-seven thousand five hundred seventy-three' WHERE a=4347;\nUPDATE t2 SET c='eight thousand sixty-one' WHERE a=4348;\nUPDATE t2 SET c='four thousand seventy-nine' WHERE a=4349;\nUPDATE t2 SET c='ninety-two thousand two hundred seventy-nine' WHERE a=4350;\nUPDATE t2 SET c='one thousand three hundred fifteen' WHERE a=4351;\nUPDATE t2 SET c='four hundred twenty-five' WHERE a=4352;\nUPDATE t2 SET c='eighty-one thousand five hundred seventy-one' WHERE a=4353;\nUPDATE t2 SET c='forty-three thousand four hundred fifty' WHERE a=4354;\nUPDATE t2 SET c='thirty-nine thousand one hundred forty-nine' WHERE a=4355;\nUPDATE t2 SET c='ninety-four thousand eight hundred six' WHERE a=4356;\nUPDATE t2 SET c='eighty-seven thousand two hundred sixty-seven' WHERE a=4357;\nUPDATE t2 SET c='seventy-eight thousand twenty-five' WHERE a=4358;\nUPDATE t2 SET c='ninety-three thousand one hundred twenty-six' WHERE a=4359;\nUPDATE t2 SET c='ninety-six thousand three hundred thirteen' WHERE a=4360;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty-one' WHERE a=4361;\nUPDATE t2 SET c='thirty-two thousand four hundred five' WHERE a=4362;\nUPDATE t2 SET c='seventy-two thousand fifty-nine' WHERE a=4363;\nUPDATE t2 SET c='twenty-nine thousand one hundred eleven' WHERE a=4364;\nUPDATE t2 SET c='forty-four thousand three hundred forty-four' WHERE a=4365;\nUPDATE t2 SET c='eighty-seven thousand seven hundred thirty-seven' WHERE a=4366;\nUPDATE t2 SET c='ninety-five thousand seven hundred fifty-four' WHERE a=4367;\nUPDATE t2 SET c='seventy-nine thousand four hundred ninety-one' WHERE a=4368;\nUPDATE t2 SET c='thirteen thousand six hundred thirty-two' WHERE a=4369;\nUPDATE t2 SET c='two thousand nine hundred seventy-five' WHERE a=4370;\nUPDATE t2 SET c='eighty-six thousand eight hundred twenty' WHERE a=4371;\nUPDATE t2 SET c='four thousand seven hundred eighty-two' WHERE a=4372;\nUPDATE t2 SET c='thirty-eight thousand five hundred seventy' WHERE a=4373;\nUPDATE t2 SET c='seventy-five thousand two hundred eighty-seven' WHERE a=4374;\nUPDATE t2 SET c='eighty-three thousand eight hundred eighty-five' WHERE a=4375;\nUPDATE t2 SET c='fifteen thousand seven hundred ninety-three' WHERE a=4376;\nUPDATE t2 SET c='fifteen thousand five hundred fifteen' WHERE a=4377;\nUPDATE t2 SET c='thirty-one thousand two hundred twelve' WHERE a=4378;\nUPDATE t2 SET c='twenty-six thousand seven hundred twenty-one' WHERE a=4379;\nUPDATE t2 SET c='thirty thousand nine hundred thirteen' WHERE a=4380;\nUPDATE t2 SET c='thirty-four thousand three hundred nineteen' WHERE a=4381;\nUPDATE t2 SET c='ninety-two thousand nine hundred sixteen' WHERE a=4382;\nUPDATE t2 SET c='fifty thousand eight hundred twenty-eight' WHERE a=4383;\nUPDATE t2 SET c='seventy-six thousand sixty-six' WHERE a=4384;\nUPDATE t2 SET c='seventeen thousand two hundred seventy-two' WHERE a=4385;\nUPDATE t2 SET c='one thousand eight hundred fifty-nine' WHERE a=4386;\nUPDATE t2 SET c='seventy-five thousand four hundred ten' WHERE a=4387;\nUPDATE t2 SET c='twenty-five thousand forty-one' WHERE a=4388;\nUPDATE t2 SET c='forty-five thousand seven hundred twenty-one' WHERE a=4389;\nUPDATE t2 SET c='eight thousand five hundred sixty-three' WHERE a=4390;\nUPDATE t2 SET c='fifty-four thousand two hundred seventy-three' WHERE a=4391;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety' WHERE a=4392;\nUPDATE t2 SET c='fourteen thousand four hundred sixty-two' WHERE a=4393;\nUPDATE t2 SET c='fifty-two thousand four hundred eighty-one' WHERE a=4394;\nUPDATE t2 SET c='seventy-nine thousand seven hundred eighty-four' WHERE a=4395;\nUPDATE t2 SET c='twenty-one thousand two hundred seventy' WHERE a=4396;\nUPDATE t2 SET c='ninety-three thousand six hundred fifteen' WHERE a=4397;\nUPDATE t2 SET c='fifty thousand one hundred sixty' WHERE a=4398;\nUPDATE t2 SET c='five thousand two hundred fifty-one' WHERE a=4399;\nUPDATE t2 SET c='one thousand one hundred ninety-six' WHERE a=4400;\nUPDATE t2 SET c='seventy-five thousand ninety' WHERE a=4401;\nUPDATE t2 SET c='thirty-six thousand three hundred thirty-one' WHERE a=4402;\nUPDATE t2 SET c='eighty-one thousand one hundred twenty-four' WHERE a=4403;\nUPDATE t2 SET c='twenty-eight thousand twenty-four' WHERE a=4404;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-four' WHERE a=4405;\nUPDATE t2 SET c='thirty-eight thousand eight hundred thirty-four' WHERE a=4406;\nUPDATE t2 SET c='one thousand one hundred nine' WHERE a=4407;\nUPDATE t2 SET c='five thousand two hundred thirty-nine' WHERE a=4408;\nUPDATE t2 SET c='eighty-seven thousand one hundred forty-eight' WHERE a=4409;\nUPDATE t2 SET c='thirteen thousand one hundred ninety-nine' WHERE a=4410;\nUPDATE t2 SET c='twenty-two thousand five hundred forty-seven' WHERE a=4411;\nUPDATE t2 SET c='twenty-three thousand seven hundred fifty-eight' WHERE a=4412;\nUPDATE t2 SET c='sixty-seven thousand four hundred thirty-eight' WHERE a=4413;\nUPDATE t2 SET c='thirty-nine thousand eight hundred sixty-one' WHERE a=4414;\nUPDATE t2 SET c='twenty-five thousand four hundred seventeen' WHERE a=4415;\nUPDATE t2 SET c='forty-seven thousand four hundred fifty-four' WHERE a=4416;\nUPDATE t2 SET c='six thousand three hundred eighty-nine' WHERE a=4417;\nUPDATE t2 SET c='fifteen thousand four hundred ninety-three' WHERE a=4418;\nUPDATE t2 SET c='fifty-six thousand nine hundred seventy-five' WHERE a=4419;\nUPDATE t2 SET c='seventy thousand eight hundred forty-three' WHERE a=4420;\nUPDATE t2 SET c='thirty-six thousand two hundred ninety-one' WHERE a=4421;\nUPDATE t2 SET c='eighty-eight thousand two hundred three' WHERE a=4422;\nUPDATE t2 SET c='ten thousand two hundred forty-five' WHERE a=4423;\nUPDATE t2 SET c='eighty-five thousand nine hundred forty-one' WHERE a=4424;\nUPDATE t2 SET c='fifty-seven thousand thirty-one' WHERE a=4425;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-one' WHERE a=4426;\nUPDATE t2 SET c='fifty-eight thousand eight hundred twenty-two' WHERE a=4427;\nUPDATE t2 SET c='forty thousand three hundred thirty-nine' WHERE a=4428;\nUPDATE t2 SET c='one thousand six hundred sixty-two' WHERE a=4429;\nUPDATE t2 SET c='eighty-five thousand three hundred ninety-nine' WHERE a=4430;\nUPDATE t2 SET c='sixteen thousand nine hundred thirty-nine' WHERE a=4431;\nUPDATE t2 SET c='thirty-two thousand four hundred seventy-one' WHERE a=4432;\nUPDATE t2 SET c='ninety-nine thousand three hundred thirty-six' WHERE a=4433;\nUPDATE t2 SET c='twenty-three thousand two hundred two' WHERE a=4434;\nUPDATE t2 SET c='fifty-two thousand four hundred fifty-two' WHERE a=4435;\nUPDATE t2 SET c='seventy-nine thousand seven hundred seventy-three' WHERE a=4436;\nUPDATE t2 SET c='fifty-one thousand three hundred sixty-seven' WHERE a=4437;\nUPDATE t2 SET c='five thousand six hundred eighty-four' WHERE a=4438;\nUPDATE t2 SET c='thirty-one thousand three hundred ninety-three' WHERE a=4439;\nUPDATE t2 SET c='sixty-nine thousand seven hundred twenty-five' WHERE a=4440;\nUPDATE t2 SET c='fifty-seven thousand eight hundred eleven' WHERE a=4441;\nUPDATE t2 SET c='ninety-four thousand five hundred forty' WHERE a=4442;\nUPDATE t2 SET c='twenty-one thousand seven hundred eight' WHERE a=4443;\nUPDATE t2 SET c='nineteen thousand four hundred fifty-three' WHERE a=4444;\nUPDATE t2 SET c='eighty thousand one hundred forty' WHERE a=4445;\nUPDATE t2 SET c='forty-two thousand fifteen' WHERE a=4446;\nUPDATE t2 SET c='forty thousand two hundred forty-seven' WHERE a=4447;\nUPDATE t2 SET c='three thousand four hundred sixty-three' WHERE a=4448;\nUPDATE t2 SET c='forty-three thousand five hundred' WHERE a=4449;\nUPDATE t2 SET c='thirty-five thousand nine hundred thirty-four' WHERE a=4450;\nUPDATE t2 SET c='eighty-five thousand nine hundred seventy-two' WHERE a=4451;\nUPDATE t2 SET c='eleven thousand eight hundred fifty-seven' WHERE a=4452;\nUPDATE t2 SET c='eighty-four thousand five hundred ninety-two' WHERE a=4453;\nUPDATE t2 SET c='thirty-three thousand eight hundred twenty-nine' WHERE a=4454;\nUPDATE t2 SET c='sixty-eight thousand sixty-eight' WHERE a=4455;\nUPDATE t2 SET c='seventy-one thousand nine hundred eighty-three' WHERE a=4456;\nUPDATE t2 SET c='forty-seven thousand eight hundred forty-two' WHERE a=4457;\nUPDATE t2 SET c='sixteen thousand three hundred eighty-six' WHERE a=4458;\nUPDATE t2 SET c='thirty-nine thousand five hundred forty-seven' WHERE a=4459;\nUPDATE t2 SET c='fifteen thousand four hundred eighty-eight' WHERE a=4460;\nUPDATE t2 SET c='eighty-seven thousand one hundred ninety-two' WHERE a=4461;\nUPDATE t2 SET c='twenty-six thousand eight hundred sixty-one' WHERE a=4462;\nUPDATE t2 SET c='ninety-two thousand seven hundred twelve' WHERE a=4463;\nUPDATE t2 SET c='fifty-five thousand three hundred twenty-three' WHERE a=4464;\nUPDATE t2 SET c='fifty-three thousand six hundred ten' WHERE a=4465;\nUPDATE t2 SET c='ninety-eight thousand four hundred seventy-four' WHERE a=4466;\nUPDATE t2 SET c='ninety-three thousand five hundred twenty-one' WHERE a=4467;\nUPDATE t2 SET c='thirty thousand six hundred forty-eight' WHERE a=4468;\nUPDATE t2 SET c='eighty-eight thousand thirty-two' WHERE a=4469;\nUPDATE t2 SET c='fifty-five thousand seven hundred thirty-four' WHERE a=4470;\nUPDATE t2 SET c='forty-four thousand three hundred eleven' WHERE a=4471;\nUPDATE t2 SET c='five thousand two hundred seventeen' WHERE a=4472;\nUPDATE t2 SET c='eleven thousand two hundred thirty-two' WHERE a=4473;\nUPDATE t2 SET c='eighty-nine thousand two hundred seventy-nine' WHERE a=4474;\nUPDATE t2 SET c='eighty-two thousand six hundred eight' WHERE a=4475;\nUPDATE t2 SET c='three thousand six hundred ninety-four' WHERE a=4476;\nUPDATE t2 SET c='five thousand six hundred forty-one' WHERE a=4477;\nUPDATE t2 SET c='thirty-five thousand fifty-seven' WHERE a=4478;\nUPDATE t2 SET c='seventy-five thousand four hundred seventy-eight' WHERE a=4479;\nUPDATE t2 SET c='nineteen thousand two hundred eighty' WHERE a=4480;\nUPDATE t2 SET c='six thousand six hundred fifty-nine' WHERE a=4481;\nUPDATE t2 SET c='sixty-four thousand four hundred one' WHERE a=4482;\nUPDATE t2 SET c='two thousand four hundred sixty-four' WHERE a=4483;\nUPDATE t2 SET c='thirty-one thousand eight hundred sixty-eight' WHERE a=4484;\nUPDATE t2 SET c='nineteen thousand four hundred seventy-nine' WHERE a=4485;\nUPDATE t2 SET c='four thousand seven hundred three' WHERE a=4486;\nUPDATE t2 SET c='seventy-five thousand seven hundred eight' WHERE a=4487;\nUPDATE t2 SET c='ninety-five thousand one hundred seven' WHERE a=4488;\nUPDATE t2 SET c='fifty-five thousand three hundred ninety-three' WHERE a=4489;\nUPDATE t2 SET c='seven thousand seven hundred thirty' WHERE a=4490;\nUPDATE t2 SET c='sixteen thousand seven hundred twenty-three' WHERE a=4491;\nUPDATE t2 SET c='eight hundred fifty-seven' WHERE a=4492;\nUPDATE t2 SET c='thirty-one thousand four hundred seventeen' WHERE a=4493;\nUPDATE t2 SET c='ten thousand five hundred eighty-two' WHERE a=4494;\nUPDATE t2 SET c='fifty-three thousand eight hundred seventy-seven' WHERE a=4495;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-four' WHERE a=4496;\nUPDATE t2 SET c='forty-two thousand forty-one' WHERE a=4497;\nUPDATE t2 SET c='eighty-seven thousand three hundred twenty-nine' WHERE a=4498;\nUPDATE t2 SET c='eighty-five thousand one hundred fifty-nine' WHERE a=4499;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-three' WHERE a=4500;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-four' WHERE a=4501;\nUPDATE t2 SET c='thirty thousand six hundred ninety-seven' WHERE a=4502;\nUPDATE t2 SET c='two thousand five hundred fifty-three' WHERE a=4503;\nUPDATE t2 SET c='fifty-nine thousand three hundred thirty-nine' WHERE a=4504;\nUPDATE t2 SET c='eleven thousand six hundred sixty-six' WHERE a=4505;\nUPDATE t2 SET c='seventy-nine thousand eight hundred ninety-eight' WHERE a=4506;\nUPDATE t2 SET c='thirty-two thousand eight hundred seventy-three' WHERE a=4507;\nUPDATE t2 SET c='eighty-four thousand seven hundred ninety-six' WHERE a=4508;\nUPDATE t2 SET c='nineteen thousand eight hundred seventy-one' WHERE a=4509;\nUPDATE t2 SET c='twenty-eight thousand seven hundred seventy-two' WHERE a=4510;\nUPDATE t2 SET c='thirty-seven thousand fifty-five' WHERE a=4511;\nUPDATE t2 SET c='fifty-three thousand one hundred twenty-nine' WHERE a=4512;\nUPDATE t2 SET c='twenty-two thousand eight hundred fourteen' WHERE a=4513;\nUPDATE t2 SET c='eighty thousand two hundred fifty-five' WHERE a=4514;\nUPDATE t2 SET c='eleven thousand nine hundred seventy-two' WHERE a=4515;\nUPDATE t2 SET c='fifty thousand one hundred thirty-nine' WHERE a=4516;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-eight' WHERE a=4517;\nUPDATE t2 SET c='seventy thousand two hundred eighty-four' WHERE a=4518;\nUPDATE t2 SET c='four thousand one hundred eighty-one' WHERE a=4519;\nUPDATE t2 SET c='thirty-three thousand four hundred nine' WHERE a=4520;\nUPDATE t2 SET c='sixty-six thousand eight hundred forty-one' WHERE a=4521;\nUPDATE t2 SET c='seventy-four thousand six hundred fifty-one' WHERE a=4522;\nUPDATE t2 SET c='sixty-seven thousand four hundred eleven' WHERE a=4523;\nUPDATE t2 SET c='sixty-six thousand seven hundred ninety-eight' WHERE a=4524;\nUPDATE t2 SET c='seventy-one thousand six hundred fifty-seven' WHERE a=4525;\nUPDATE t2 SET c='seventy-six thousand two hundred two' WHERE a=4526;\nUPDATE t2 SET c='seventy-nine thousand three hundred sixty' WHERE a=4527;\nUPDATE t2 SET c='twelve thousand four hundred thirty-five' WHERE a=4528;\nUPDATE t2 SET c='fifty-four thousand one hundred eighty' WHERE a=4529;\nUPDATE t2 SET c='forty thousand eight hundred seventy-five' WHERE a=4530;\nUPDATE t2 SET c='ninety-nine thousand nine hundred sixty-four' WHERE a=4531;\nUPDATE t2 SET c='sixteen thousand four hundred eighty-three' WHERE a=4532;\nUPDATE t2 SET c='fifty-five thousand four hundred eight' WHERE a=4533;\nUPDATE t2 SET c='thirty-nine thousand seventy-one' WHERE a=4534;\nUPDATE t2 SET c='fifty-nine thousand six hundred eighty-nine' WHERE a=4535;\nUPDATE t2 SET c='eighty-four thousand eight hundred twenty-three' WHERE a=4536;\nUPDATE t2 SET c='seventy-two thousand four hundred four' WHERE a=4537;\nUPDATE t2 SET c='two hundred seventy-one' WHERE a=4538;\nUPDATE t2 SET c='sixty thousand eight hundred fourteen' WHERE a=4539;\nUPDATE t2 SET c='ninety-two thousand three hundred ninety-two' WHERE a=4540;\nUPDATE t2 SET c='forty-five thousand one hundred two' WHERE a=4541;\nUPDATE t2 SET c='nine thousand seven hundred four' WHERE a=4542;\nUPDATE t2 SET c='eighty-two thousand thirty-nine' WHERE a=4543;\nUPDATE t2 SET c='forty thousand four hundred ninety-nine' WHERE a=4544;\nUPDATE t2 SET c='forty-seven thousand one hundred twenty-five' WHERE a=4545;\nUPDATE t2 SET c='forty-one thousand nine hundred two' WHERE a=4546;\nUPDATE t2 SET c='forty-one thousand two hundred seventy-five' WHERE a=4547;\nUPDATE t2 SET c='six hundred seventy-two' WHERE a=4548;\nUPDATE t2 SET c='eleven thousand four hundred fifty-four' WHERE a=4549;\nUPDATE t2 SET c='thirteen thousand fifty-eight' WHERE a=4550;\nUPDATE t2 SET c='eighty-one thousand four hundred fifty-nine' WHERE a=4551;\nUPDATE t2 SET c='forty-six thousand seven hundred four' WHERE a=4552;\nUPDATE t2 SET c='eighty-five thousand four hundred seventy-one' WHERE a=4553;\nUPDATE t2 SET c='fifty-three thousand four hundred fifty-seven' WHERE a=4554;\nUPDATE t2 SET c='thirty thousand five hundred one' WHERE a=4555;\nUPDATE t2 SET c='fifty-four thousand forty-one' WHERE a=4556;\nUPDATE t2 SET c='sixty-eight thousand five hundred sixty-nine' WHERE a=4557;\nUPDATE t2 SET c='nine thousand seventy-seven' WHERE a=4558;\nUPDATE t2 SET c='one thousand two hundred sixty-nine' WHERE a=4559;\nUPDATE t2 SET c='sixty-three thousand nine hundred forty-six' WHERE a=4560;\nUPDATE t2 SET c='sixteen thousand one hundred ninety-four' WHERE a=4561;\nUPDATE t2 SET c='thirty-one thousand two hundred seventy-one' WHERE a=4562;\nUPDATE t2 SET c='sixty thousand six hundred seventy-two' WHERE a=4563;\nUPDATE t2 SET c='twenty-two thousand two hundred thirty-six' WHERE a=4564;\nUPDATE t2 SET c='thirty-four thousand five hundred four' WHERE a=4565;\nUPDATE t2 SET c='ninety-four thousand two hundred five' WHERE a=4566;\nUPDATE t2 SET c='sixty-eight thousand eight hundred forty-four' WHERE a=4567;\nUPDATE t2 SET c='two thousand eighty-three' WHERE a=4568;\nUPDATE t2 SET c='sixty-eight thousand one hundred eleven' WHERE a=4569;\nUPDATE t2 SET c='sixty-five thousand three hundred eleven' WHERE a=4570;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-seven' WHERE a=4571;\nUPDATE t2 SET c='five thousand nine hundred ninety-nine' WHERE a=4572;\nUPDATE t2 SET c='thirty-five thousand eight hundred nineteen' WHERE a=4573;\nUPDATE t2 SET c='forty-seven thousand eight hundred ninety' WHERE a=4574;\nUPDATE t2 SET c='thirty-seven thousand three hundred seventy' WHERE a=4575;\nUPDATE t2 SET c='seven thousand one hundred fifty-four' WHERE a=4576;\nUPDATE t2 SET c='ninety-one thousand nine hundred three' WHERE a=4577;\nUPDATE t2 SET c='fifteen thousand seven hundred fifty-five' WHERE a=4578;\nUPDATE t2 SET c='seventy-four thousand seven hundred seventy-seven' WHERE a=4579;\nUPDATE t2 SET c='seventy-four thousand nine hundred thirty-nine' WHERE a=4580;\nUPDATE t2 SET c='seventy-two thousand eight hundred fifty-six' WHERE a=4581;\nUPDATE t2 SET c='seventeen thousand nine hundred seven' WHERE a=4582;\nUPDATE t2 SET c='seven thousand six hundred nine' WHERE a=4583;\nUPDATE t2 SET c='eighty-two thousand one hundred eight' WHERE a=4584;\nUPDATE t2 SET c='sixteen thousand six hundred eighty-eight' WHERE a=4585;\nUPDATE t2 SET c='fifty-seven thousand forty-nine' WHERE a=4586;\nUPDATE t2 SET c='seventy-eight thousand one hundred fifty' WHERE a=4587;\nUPDATE t2 SET c='thirty thousand three hundred fifteen' WHERE a=4588;\nUPDATE t2 SET c='twenty-eight thousand eight hundred thirty-six' WHERE a=4589;\nUPDATE t2 SET c='fourteen thousand four hundred nine' WHERE a=4590;\nUPDATE t2 SET c='fifty-three thousand six hundred thirty-six' WHERE a=4591;\nUPDATE t2 SET c='seventy-two thousand nineteen' WHERE a=4592;\nUPDATE t2 SET c='twenty-five thousand five hundred sixty-seven' WHERE a=4593;\nUPDATE t2 SET c='forty-four thousand sixty-nine' WHERE a=4594;\nUPDATE t2 SET c='seventeen thousand one hundred thirty-eight' WHERE a=4595;\nUPDATE t2 SET c='fifty-six thousand one hundred ninety-eight' WHERE a=4596;\nUPDATE t2 SET c='ninety-five thousand four hundred sixty-one' WHERE a=4597;\nUPDATE t2 SET c='fifty-nine thousand eight hundred nineteen' WHERE a=4598;\nUPDATE t2 SET c='twenty-five thousand five hundred nineteen' WHERE a=4599;\nUPDATE t2 SET c='forty-three thousand seven hundred fifty-nine' WHERE a=4600;\nUPDATE t2 SET c='six thousand eight hundred fifty-two' WHERE a=4601;\nUPDATE t2 SET c='forty-four thousand fifty-one' WHERE a=4602;\nUPDATE t2 SET c='twenty-two thousand nine hundred twenty-four' WHERE a=4603;\nUPDATE t2 SET c='fifty-two thousand ninety-six' WHERE a=4604;\nUPDATE t2 SET c='eighty thousand eight hundred ten' WHERE a=4605;\nUPDATE t2 SET c='fifteen thousand four hundred eighty-three' WHERE a=4606;\nUPDATE t2 SET c='sixty-nine thousand seven hundred sixty-nine' WHERE a=4607;\nUPDATE t2 SET c='forty-four thousand four hundred sixty-six' WHERE a=4608;\nUPDATE t2 SET c='thirty-one thousand nine hundred twenty-six' WHERE a=4609;\nUPDATE t2 SET c='four thousand three hundred twenty-three' WHERE a=4610;\nUPDATE t2 SET c='seventy-seven thousand one hundred ninety' WHERE a=4611;\nUPDATE t2 SET c='sixty-three thousand seven hundred fifty-eight' WHERE a=4612;\nUPDATE t2 SET c='eleven thousand two hundred ninety-eight' WHERE a=4613;\nUPDATE t2 SET c='thirty-eight thousand two hundred sixty-eight' WHERE a=4614;\nUPDATE t2 SET c='sixty-three' WHERE a=4615;\nUPDATE t2 SET c='fifty-six thousand eight hundred sixty-nine' WHERE a=4616;\nUPDATE t2 SET c='eighty-eight thousand four hundred twenty-five' WHERE a=4617;\nUPDATE t2 SET c='ninety thousand nine hundred ninety-five' WHERE a=4618;\nUPDATE t2 SET c='five thousand eight hundred fifty-nine' WHERE a=4619;\nUPDATE t2 SET c='seventy-three thousand nine hundred fifty-four' WHERE a=4620;\nUPDATE t2 SET c='eighty-seven thousand seven hundred four' WHERE a=4621;\nUPDATE t2 SET c='thirty thousand seven hundred seventy-three' WHERE a=4622;\nUPDATE t2 SET c='ninety thousand eight hundred thirty-eight' WHERE a=4623;\nUPDATE t2 SET c='twenty-nine thousand six hundred fifty-eight' WHERE a=4624;\nUPDATE t2 SET c='seventy-five thousand one hundred sixty-four' WHERE a=4625;\nUPDATE t2 SET c='twenty-three thousand five hundred seventy' WHERE a=4626;\nUPDATE t2 SET c='eighty-four thousand two hundred thirty-seven' WHERE a=4627;\nUPDATE t2 SET c='eighty-six thousand seven hundred twenty-three' WHERE a=4628;\nUPDATE t2 SET c='fifty-one thousand eighty-five' WHERE a=4629;\nUPDATE t2 SET c='sixty-six thousand nine hundred fifty-two' WHERE a=4630;\nUPDATE t2 SET c='eighty-seven thousand nine hundred fifty-eight' WHERE a=4631;\nUPDATE t2 SET c='two thousand seven hundred ninety-four' WHERE a=4632;\nUPDATE t2 SET c='sixty-four thousand five hundred fifty-eight' WHERE a=4633;\nUPDATE t2 SET c='forty-eight thousand nine hundred seventy-six' WHERE a=4634;\nUPDATE t2 SET c='nine thousand two hundred thirty-three' WHERE a=4635;\nUPDATE t2 SET c='five thousand two hundred forty-three' WHERE a=4636;\nUPDATE t2 SET c='fifty-two thousand four hundred forty-five' WHERE a=4637;\nUPDATE t2 SET c='forty thousand five hundred thirty-two' WHERE a=4638;\nUPDATE t2 SET c='forty-four thousand eight hundred ninety-three' WHERE a=4639;\nUPDATE t2 SET c='five thousand seven hundred seventeen' WHERE a=4640;\nUPDATE t2 SET c='ninety-three thousand six hundred fifty-three' WHERE a=4641;\nUPDATE t2 SET c='six thousand one hundred sixty' WHERE a=4642;\nUPDATE t2 SET c='six thousand two hundred eighty-seven' WHERE a=4643;\nUPDATE t2 SET c='ninety-five thousand two hundred seventy-one' WHERE a=4644;\nUPDATE t2 SET c='eighty-seven thousand five hundred twenty-one' WHERE a=4645;\nUPDATE t2 SET c='twenty-five thousand eight hundred sixty' WHERE a=4646;\nUPDATE t2 SET c='ninety thousand four hundred thirty-four' WHERE a=4647;\nUPDATE t2 SET c='three thousand five hundred forty-one' WHERE a=4648;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-five' WHERE a=4649;\nUPDATE t2 SET c='seventy-five thousand two hundred sixty-four' WHERE a=4650;\nUPDATE t2 SET c='fifty-two thousand five hundred thirty-one' WHERE a=4651;\nUPDATE t2 SET c='twenty-one thousand three hundred eighty-six' WHERE a=4652;\nUPDATE t2 SET c='one thousand eight hundred ninety-six' WHERE a=4653;\nUPDATE t2 SET c='fifty-nine thousand six hundred thirty-three' WHERE a=4654;\nUPDATE t2 SET c='eighty-three thousand three hundred fifty-three' WHERE a=4655;\nUPDATE t2 SET c='four hundred ninety-one' WHERE a=4656;\nUPDATE t2 SET c='forty-two thousand two hundred ninety-two' WHERE a=4657;\nUPDATE t2 SET c='sixty-four thousand two hundred fifty-five' WHERE a=4658;\nUPDATE t2 SET c='sixty thousand nine hundred twelve' WHERE a=4659;\nUPDATE t2 SET c='twenty-one thousand seven hundred sixteen' WHERE a=4660;\nUPDATE t2 SET c='ninety-seven thousand five hundred seventy-four' WHERE a=4661;\nUPDATE t2 SET c='six thousand eight hundred sixty-eight' WHERE a=4662;\nUPDATE t2 SET c='ten thousand six hundred eighty-eight' WHERE a=4663;\nUPDATE t2 SET c='eighty-four thousand nine hundred thirty-six' WHERE a=4664;\nUPDATE t2 SET c='fifty-one thousand fifty-four' WHERE a=4665;\nUPDATE t2 SET c='seventy thousand six hundred twenty-six' WHERE a=4666;\nUPDATE t2 SET c='seventeen thousand nine hundred eighty-seven' WHERE a=4667;\nUPDATE t2 SET c='four thousand two hundred sixty-eight' WHERE a=4668;\nUPDATE t2 SET c='fifty-seven thousand four hundred ninety-nine' WHERE a=4669;\nUPDATE t2 SET c='forty thousand nine hundred ninety-seven' WHERE a=4670;\nUPDATE t2 SET c='thirteen thousand two hundred sixty-eight' WHERE a=4671;\nUPDATE t2 SET c='thirty thousand seventy-one' WHERE a=4672;\nUPDATE t2 SET c='seventy-eight thousand one hundred forty-two' WHERE a=4673;\nUPDATE t2 SET c='ninety-six thousand eight hundred seventy-three' WHERE a=4674;\nUPDATE t2 SET c='ninety-five thousand four hundred fifty-five' WHERE a=4675;\nUPDATE t2 SET c='forty-four thousand seven hundred three' WHERE a=4676;\nUPDATE t2 SET c='eighty-nine thousand eight hundred twenty-three' WHERE a=4677;\nUPDATE t2 SET c='forty-five thousand six hundred ten' WHERE a=4678;\nUPDATE t2 SET c='sixty-six thousand fifty-one' WHERE a=4679;\nUPDATE t2 SET c='sixty-three thousand two hundred ten' WHERE a=4680;\nUPDATE t2 SET c='eighty-three thousand one hundred ninety-eight' WHERE a=4681;\nUPDATE t2 SET c='twelve thousand two hundred fifty-five' WHERE a=4682;\nUPDATE t2 SET c='thirteen thousand sixteen' WHERE a=4683;\nUPDATE t2 SET c='eight thousand two hundred sixty-six' WHERE a=4684;\nUPDATE t2 SET c='eight thousand sixty-six' WHERE a=4685;\nUPDATE t2 SET c='thirty-three thousand four hundred fifty-eight' WHERE a=4686;\nUPDATE t2 SET c='twenty-two thousand four hundred twelve' WHERE a=4687;\nUPDATE t2 SET c='eighty-seven thousand sixty-six' WHERE a=4688;\nUPDATE t2 SET c='eighty-two thousand six hundred twenty-one' WHERE a=4689;\nUPDATE t2 SET c='eleven thousand seven hundred sixty-five' WHERE a=4690;\nUPDATE t2 SET c='eighty-five thousand one hundred ninety-five' WHERE a=4691;\nUPDATE t2 SET c='fifty-four thousand one hundred eighty-five' WHERE a=4692;\nUPDATE t2 SET c='fifty-three thousand five hundred eighty-five' WHERE a=4693;\nUPDATE t2 SET c='thirty-two thousand six hundred fifty' WHERE a=4694;\nUPDATE t2 SET c='thirty-nine thousand one hundred eighty-two' WHERE a=4695;\nUPDATE t2 SET c='fifty-six thousand six hundred twenty' WHERE a=4696;\nUPDATE t2 SET c='seventy-seven thousand two hundred sixty-two' WHERE a=4697;\nUPDATE t2 SET c='eight thousand one hundred ninety-three' WHERE a=4698;\nUPDATE t2 SET c='forty-three thousand four hundred sixty' WHERE a=4699;\nUPDATE t2 SET c='forty-seven thousand six hundred seventy-six' WHERE a=4700;\nUPDATE t2 SET c='seventy-four thousand five hundred eleven' WHERE a=4701;\nUPDATE t2 SET c='seventy-three thousand eight hundred nine' WHERE a=4702;\nUPDATE t2 SET c='eight thousand eight hundred twenty-seven' WHERE a=4703;\nUPDATE t2 SET c='sixty-eight thousand one hundred thirteen' WHERE a=4704;\nUPDATE t2 SET c='twenty-six thousand one hundred sixty-five' WHERE a=4705;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-six' WHERE a=4706;\nUPDATE t2 SET c='eighty-three thousand three hundred eighteen' WHERE a=4707;\nUPDATE t2 SET c='sixty thousand eight hundred twenty-seven' WHERE a=4708;\nUPDATE t2 SET c='ninety-three thousand seven hundred eighty' WHERE a=4709;\nUPDATE t2 SET c='eight thousand three hundred thirty-one' WHERE a=4710;\nUPDATE t2 SET c='fifty-six thousand eight hundred five' WHERE a=4711;\nUPDATE t2 SET c='forty-four thousand eight hundred thirty-six' WHERE a=4712;\nUPDATE t2 SET c='seventy-two thousand twenty-five' WHERE a=4713;\nUPDATE t2 SET c='ninety-four thousand one hundred fifty-one' WHERE a=4714;\nUPDATE t2 SET c='fifty-eight thousand one hundred ninety' WHERE a=4715;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-five' WHERE a=4716;\nUPDATE t2 SET c='thirty-one thousand eight hundred fifty-two' WHERE a=4717;\nUPDATE t2 SET c='eight thousand three hundred one' WHERE a=4718;\nUPDATE t2 SET c='seventeen thousand one hundred seventy-five' WHERE a=4719;\nUPDATE t2 SET c='ninety-four thousand nine hundred eighty-nine' WHERE a=4720;\nUPDATE t2 SET c='forty-seven thousand two hundred sixteen' WHERE a=4721;\nUPDATE t2 SET c='seventy thousand seven hundred eighty-three' WHERE a=4722;\nUPDATE t2 SET c='ten thousand five hundred seventy-one' WHERE a=4723;\nUPDATE t2 SET c='forty-one thousand four hundred fifty-five' WHERE a=4724;\nUPDATE t2 SET c='twenty-one thousand six hundred ninety-seven' WHERE a=4725;\nUPDATE t2 SET c='one thousand one hundred seventy-seven' WHERE a=4726;\nUPDATE t2 SET c='forty-eight thousand two hundred seventy-seven' WHERE a=4727;\nUPDATE t2 SET c='ninety-five thousand one hundred thirty-one' WHERE a=4728;\nUPDATE t2 SET c='eighty-five thousand nine hundred eighty' WHERE a=4729;\nUPDATE t2 SET c='nineteen thousand eight hundred fourteen' WHERE a=4730;\nUPDATE t2 SET c='nine hundred nine' WHERE a=4731;\nUPDATE t2 SET c='ninety-two thousand two hundred forty-four' WHERE a=4732;\nUPDATE t2 SET c='seventy-six thousand four hundred eighteen' WHERE a=4733;\nUPDATE t2 SET c='nine thousand eight hundred eighty-five' WHERE a=4734;\nUPDATE t2 SET c='three thousand one hundred five' WHERE a=4735;\nUPDATE t2 SET c='seventy-two thousand three hundred seventy-six' WHERE a=4736;\nUPDATE t2 SET c='fifty-six thousand five hundred eighty-five' WHERE a=4737;\nUPDATE t2 SET c='fifty-seven thousand nine hundred thirty-five' WHERE a=4738;\nUPDATE t2 SET c='ninety-nine thousand nine hundred fourteen' WHERE a=4739;\nUPDATE t2 SET c='twenty-two thousand eight hundred seven' WHERE a=4740;\nUPDATE t2 SET c='thirty thousand seven hundred forty' WHERE a=4741;\nUPDATE t2 SET c='ten thousand five hundred three' WHERE a=4742;\nUPDATE t2 SET c='fifty-four thousand seven hundred forty-six' WHERE a=4743;\nUPDATE t2 SET c='fifty-nine thousand seven hundred twenty-eight' WHERE a=4744;\nUPDATE t2 SET c='nineteen thousand three hundred thirty-six' WHERE a=4745;\nUPDATE t2 SET c='ninety-nine thousand three hundred forty' WHERE a=4746;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventy-nine' WHERE a=4747;\nUPDATE t2 SET c='eighty-two thousand one hundred thirty-three' WHERE a=4748;\nUPDATE t2 SET c='eighty-eight thousand seven hundred seventy-eight' WHERE a=4749;\nUPDATE t2 SET c='fifty-one thousand eight hundred thirty-six' WHERE a=4750;\nUPDATE t2 SET c='thirty-nine thousand six hundred forty-four' WHERE a=4751;\nUPDATE t2 SET c='twenty-nine thousand six hundred sixty-four' WHERE a=4752;\nUPDATE t2 SET c='eighty-one thousand one hundred twenty-three' WHERE a=4753;\nUPDATE t2 SET c='fourteen thousand one hundred twenty-seven' WHERE a=4754;\nUPDATE t2 SET c='ninety thousand four hundred sixty-two' WHERE a=4755;\nUPDATE t2 SET c='ninety-two thousand nine hundred eighty-three' WHERE a=4756;\nUPDATE t2 SET c='seventy-two thousand one hundred forty-three' WHERE a=4757;\nUPDATE t2 SET c='seventy-one thousand three hundred twenty-three' WHERE a=4758;\nUPDATE t2 SET c='sixty-one thousand three hundred fifty-six' WHERE a=4759;\nUPDATE t2 SET c='twenty-six thousand seventy-eight' WHERE a=4760;\nUPDATE t2 SET c='eighty thousand eighty-seven' WHERE a=4761;\nUPDATE t2 SET c='twenty-seven thousand two hundred two' WHERE a=4762;\nUPDATE t2 SET c='seventy-one thousand seven hundred fifty-one' WHERE a=4763;\nUPDATE t2 SET c='five thousand one hundred thirty-five' WHERE a=4764;\nUPDATE t2 SET c='fifty-eight thousand three hundred one' WHERE a=4765;\nUPDATE t2 SET c='thirty-two thousand ninety' WHERE a=4766;\nUPDATE t2 SET c='nine hundred ninety-five' WHERE a=4767;\nUPDATE t2 SET c='thirty-two thousand two hundred forty-two' WHERE a=4768;\nUPDATE t2 SET c='eighty-nine thousand one hundred forty-one' WHERE a=4769;\nUPDATE t2 SET c='eighty-one thousand four hundred sixteen' WHERE a=4770;\nUPDATE t2 SET c='forty-five thousand one hundred fifty-six' WHERE a=4771;\nUPDATE t2 SET c='twenty-eight thousand two hundred sixty-five' WHERE a=4772;\nUPDATE t2 SET c='fifty-six thousand seven hundred eighty-five' WHERE a=4773;\nUPDATE t2 SET c='thirty-one thousand five hundred forty' WHERE a=4774;\nUPDATE t2 SET c='fifty-four thousand eight hundred twenty-six' WHERE a=4775;\nUPDATE t2 SET c='thirty-seven thousand five hundred twenty-three' WHERE a=4776;\nUPDATE t2 SET c='sixty-eight thousand one hundred thirty-three' WHERE a=4777;\nUPDATE t2 SET c='sixty-one thousand two hundred eighty-five' WHERE a=4778;\nUPDATE t2 SET c='eighty-nine thousand two hundred ten' WHERE a=4779;\nUPDATE t2 SET c='twenty-six thousand six hundred forty-four' WHERE a=4780;\nUPDATE t2 SET c='forty-nine thousand nine hundred ninety-three' WHERE a=4781;\nUPDATE t2 SET c='thirty-two thousand seven hundred fourteen' WHERE a=4782;\nUPDATE t2 SET c='eight hundred forty-six' WHERE a=4783;\nUPDATE t2 SET c='thirty-four thousand five hundred thirty-three' WHERE a=4784;\nUPDATE t2 SET c='forty thousand four hundred eighty-three' WHERE a=4785;\nUPDATE t2 SET c='fifty-eight thousand eight hundred eighty-nine' WHERE a=4786;\nUPDATE t2 SET c='forty-nine thousand seven hundred forty-seven' WHERE a=4787;\nUPDATE t2 SET c='sixty-four thousand nine hundred twenty-two' WHERE a=4788;\nUPDATE t2 SET c='sixty-six thousand eight hundred fifty-four' WHERE a=4789;\nUPDATE t2 SET c='sixty thousand eight hundred sixty-nine' WHERE a=4790;\nUPDATE t2 SET c='forty-four thousand fifty-three' WHERE a=4791;\nUPDATE t2 SET c='ninety-six thousand five hundred thirty-two' WHERE a=4792;\nUPDATE t2 SET c='sixty-three thousand eight hundred sixteen' WHERE a=4793;\nUPDATE t2 SET c='fifty-seven thousand six hundred ninety-nine' WHERE a=4794;\nUPDATE t2 SET c='sixty-one thousand two hundred fifty-three' WHERE a=4795;\nUPDATE t2 SET c='eighty-nine thousand seventy-four' WHERE a=4796;\nUPDATE t2 SET c='twenty-six thousand nine hundred thirty-seven' WHERE a=4797;\nUPDATE t2 SET c='fifty-three thousand four hundred sixty-one' WHERE a=4798;\nUPDATE t2 SET c='twenty-seven thousand eight hundred ninety-eight' WHERE a=4799;\nUPDATE t2 SET c='one thousand two hundred ninety-one' WHERE a=4800;\nUPDATE t2 SET c='ninety-seven thousand six hundred sixty-eight' WHERE a=4801;\nUPDATE t2 SET c='seventeen thousand one hundred seven' WHERE a=4802;\nUPDATE t2 SET c='seventy-nine thousand nine hundred fifty-four' WHERE a=4803;\nUPDATE t2 SET c='twelve thousand four hundred thirty-five' WHERE a=4804;\nUPDATE t2 SET c='one thousand nine hundred sixteen' WHERE a=4805;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-six' WHERE a=4806;\nUPDATE t2 SET c='sixty-one thousand one hundred ninety-three' WHERE a=4807;\nUPDATE t2 SET c='eighty-one thousand one hundred ninety-seven' WHERE a=4808;\nUPDATE t2 SET c='fifty-five thousand nine hundred five' WHERE a=4809;\nUPDATE t2 SET c='six thousand one hundred twenty-nine' WHERE a=4810;\nUPDATE t2 SET c='sixty-one thousand seven hundred eight' WHERE a=4811;\nUPDATE t2 SET c='nineteen thousand forty' WHERE a=4812;\nUPDATE t2 SET c='sixty-one thousand six hundred ninety-two' WHERE a=4813;\nUPDATE t2 SET c='eighty-nine thousand two hundred eighty' WHERE a=4814;\nUPDATE t2 SET c='nineteen thousand one hundred ninety-two' WHERE a=4815;\nUPDATE t2 SET c='twenty-one thousand nine hundred twenty-seven' WHERE a=4816;\nUPDATE t2 SET c='fifty-nine thousand two hundred eighty-five' WHERE a=4817;\nUPDATE t2 SET c='eight hundred twenty-three' WHERE a=4818;\nUPDATE t2 SET c='twenty-four thousand seventeen' WHERE a=4819;\nUPDATE t2 SET c='sixteen thousand nine hundred nine' WHERE a=4820;\nUPDATE t2 SET c='twenty-five thousand four hundred thirty-two' WHERE a=4821;\nUPDATE t2 SET c='ninety-four thousand three hundred ten' WHERE a=4822;\nUPDATE t2 SET c='eighty-nine thousand six hundred seventeen' WHERE a=4823;\nUPDATE t2 SET c='sixty-five thousand four hundred forty-two' WHERE a=4824;\nUPDATE t2 SET c='eighty-seven thousand two hundred thirty-six' WHERE a=4825;\nUPDATE t2 SET c='forty-nine thousand five hundred one' WHERE a=4826;\nUPDATE t2 SET c='eight thousand eight hundred eighty-seven' WHERE a=4827;\nUPDATE t2 SET c='twenty-three thousand one hundred sixteen' WHERE a=4828;\nUPDATE t2 SET c='thirty-seven thousand eight hundred twelve' WHERE a=4829;\nUPDATE t2 SET c='ninety-six thousand four hundred forty-four' WHERE a=4830;\nUPDATE t2 SET c='fifty-four thousand nine hundred eleven' WHERE a=4831;\nUPDATE t2 SET c='twenty-eight thousand six hundred ninety-six' WHERE a=4832;\nUPDATE t2 SET c='seventy-five thousand four hundred forty-eight' WHERE a=4833;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-seven' WHERE a=4834;\nUPDATE t2 SET c='fifty-three thousand one hundred four' WHERE a=4835;\nUPDATE t2 SET c='two hundred eighty-one' WHERE a=4836;\nUPDATE t2 SET c='seventy-one thousand seven hundred fifty' WHERE a=4837;\nUPDATE t2 SET c='fifty-eight thousand two hundred twenty-nine' WHERE a=4838;\nUPDATE t2 SET c='seventy-nine thousand three hundred seventy-six' WHERE a=4839;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-one' WHERE a=4840;\nUPDATE t2 SET c='forty thousand nine hundred four' WHERE a=4841;\nUPDATE t2 SET c='thirty-seven thousand four hundred ninety' WHERE a=4842;\nUPDATE t2 SET c='seventy-three thousand nine hundred forty-five' WHERE a=4843;\nUPDATE t2 SET c='thirty-four thousand two hundred sixty-seven' WHERE a=4844;\nUPDATE t2 SET c='eighty-three thousand one hundred six' WHERE a=4845;\nUPDATE t2 SET c='fifty-six thousand three hundred seventy-seven' WHERE a=4846;\nUPDATE t2 SET c='sixty-five thousand six hundred one' WHERE a=4847;\nUPDATE t2 SET c='thirty-five thousand three hundred sixty' WHERE a=4848;\nUPDATE t2 SET c='thirty-seven thousand four hundred eighty-three' WHERE a=4849;\nUPDATE t2 SET c='eighty-two thousand nine hundred twenty-one' WHERE a=4850;\nUPDATE t2 SET c='seventy-seven thousand two hundred seventy' WHERE a=4851;\nUPDATE t2 SET c='fifteen thousand one hundred seventy-four' WHERE a=4852;\nUPDATE t2 SET c='thirty-two thousand four hundred thirty-nine' WHERE a=4853;\nUPDATE t2 SET c='twenty-seven thousand thirty-nine' WHERE a=4854;\nUPDATE t2 SET c='eight thousand four hundred seventy-nine' WHERE a=4855;\nUPDATE t2 SET c='twenty-five thousand six hundred twenty' WHERE a=4856;\nUPDATE t2 SET c='eleven thousand seven hundred twenty-four' WHERE a=4857;\nUPDATE t2 SET c='nine thousand one hundred eighty-nine' WHERE a=4858;\nUPDATE t2 SET c='four thousand three hundred eighty-eight' WHERE a=4859;\nUPDATE t2 SET c='fifteen thousand nine hundred twenty-seven' WHERE a=4860;\nUPDATE t2 SET c='four thousand eight hundred sixty-two' WHERE a=4861;\nUPDATE t2 SET c='forty-three thousand five hundred seventy-one' WHERE a=4862;\nUPDATE t2 SET c='seventy-nine thousand two hundred nineteen' WHERE a=4863;\nUPDATE t2 SET c='sixty-six thousand one hundred seventy-nine' WHERE a=4864;\nUPDATE t2 SET c='seventeen thousand one hundred forty-two' WHERE a=4865;\nUPDATE t2 SET c='thirty thousand five hundred twenty-eight' WHERE a=4866;\nUPDATE t2 SET c='seventy-six thousand four hundred fifteen' WHERE a=4867;\nUPDATE t2 SET c='forty-four thousand three hundred fifteen' WHERE a=4868;\nUPDATE t2 SET c='eighty thousand two hundred ninety-two' WHERE a=4869;\nUPDATE t2 SET c='twenty-eight thousand three hundred sixty-two' WHERE a=4870;\nUPDATE t2 SET c='twenty-eight thousand twenty' WHERE a=4871;\nUPDATE t2 SET c='forty-five thousand thirty-seven' WHERE a=4872;\nUPDATE t2 SET c='ten thousand seven hundred seventy-five' WHERE a=4873;\nUPDATE t2 SET c='sixty-one thousand five hundred twenty-three' WHERE a=4874;\nUPDATE t2 SET c='fifteen thousand ninety-one' WHERE a=4875;\nUPDATE t2 SET c='thirty-six thousand four hundred thirty-two' WHERE a=4876;\nUPDATE t2 SET c='eighty-five thousand five hundred seventy-three' WHERE a=4877;\nUPDATE t2 SET c='seventy-two thousand one hundred ninety-two' WHERE a=4878;\nUPDATE t2 SET c='thirty-one thousand one hundred forty-nine' WHERE a=4879;\nUPDATE t2 SET c='seventy-one thousand eighty-two' WHERE a=4880;\nUPDATE t2 SET c='forty-two thousand five hundred sixty-two' WHERE a=4881;\nUPDATE t2 SET c='ninety-four thousand three hundred twenty-five' WHERE a=4882;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixteen' WHERE a=4883;\nUPDATE t2 SET c='fifty-two thousand two hundred sixty' WHERE a=4884;\nUPDATE t2 SET c='forty-two thousand eight hundred sixty-five' WHERE a=4885;\nUPDATE t2 SET c='five thousand four hundred twenty-six' WHERE a=4886;\nUPDATE t2 SET c='forty-five thousand ninety-seven' WHERE a=4887;\nUPDATE t2 SET c='seventy-six thousand seven hundred forty-three' WHERE a=4888;\nUPDATE t2 SET c='eighty-three thousand seven hundred fifty-two' WHERE a=4889;\nUPDATE t2 SET c='nineteen thousand seven hundred thirty-three' WHERE a=4890;\nUPDATE t2 SET c='fifty-one thousand five hundred five' WHERE a=4891;\nUPDATE t2 SET c='eighty-six thousand three hundred eighty-seven' WHERE a=4892;\nUPDATE t2 SET c='thirty-two thousand nine hundred thirty-four' WHERE a=4893;\nUPDATE t2 SET c='thirty-one thousand six hundred ninety-five' WHERE a=4894;\nUPDATE t2 SET c='fourteen thousand six hundred five' WHERE a=4895;\nUPDATE t2 SET c='eighty-two thousand six hundred seventy-five' WHERE a=4896;\nUPDATE t2 SET c='twelve thousand sixty' WHERE a=4897;\nUPDATE t2 SET c='thirteen thousand two hundred seventy-seven' WHERE a=4898;\nUPDATE t2 SET c='forty-four thousand seven hundred thirteen' WHERE a=4899;\nUPDATE t2 SET c='eighty-one thousand eight hundred forty-two' WHERE a=4900;\nUPDATE t2 SET c='fifteen thousand eight hundred seventy-nine' WHERE a=4901;\nUPDATE t2 SET c='forty-seven thousand six hundred nine' WHERE a=4902;\nUPDATE t2 SET c='one thousand three hundred forty-eight' WHERE a=4903;\nUPDATE t2 SET c='ninety-two thousand three hundred eighty-seven' WHERE a=4904;\nUPDATE t2 SET c='forty-nine thousand three hundred ninety' WHERE a=4905;\nUPDATE t2 SET c='thirty-nine thousand nine hundred three' WHERE a=4906;\nUPDATE t2 SET c='fifty-nine thousand four hundred fifty-four' WHERE a=4907;\nUPDATE t2 SET c='ninety-two thousand two hundred twenty' WHERE a=4908;\nUPDATE t2 SET c='fifty-six thousand nine hundred sixty-nine' WHERE a=4909;\nUPDATE t2 SET c='eighty-four thousand sixty-seven' WHERE a=4910;\nUPDATE t2 SET c='seventy-nine thousand thirty-three' WHERE a=4911;\nUPDATE t2 SET c='twenty-six thousand six hundred sixty-five' WHERE a=4912;\nUPDATE t2 SET c='ninety-two thousand nine hundred forty-nine' WHERE a=4913;\nUPDATE t2 SET c='nineteen thousand three hundred forty-two' WHERE a=4914;\nUPDATE t2 SET c='eleven thousand one hundred twenty-two' WHERE a=4915;\nUPDATE t2 SET c='thirty-eight thousand seven hundred thirty-two' WHERE a=4916;\nUPDATE t2 SET c='five thousand two hundred ninety-three' WHERE a=4917;\nUPDATE t2 SET c='thirty-five thousand six hundred seventy-one' WHERE a=4918;\nUPDATE t2 SET c='fifty-six thousand four hundred forty-three' WHERE a=4919;\nUPDATE t2 SET c='ninety-nine thousand one hundred eighty-eight' WHERE a=4920;\nUPDATE t2 SET c='sixty-two thousand six hundred ninety-two' WHERE a=4921;\nUPDATE t2 SET c='one thousand seven hundred four' WHERE a=4922;\nUPDATE t2 SET c='fourteen thousand nine hundred forty-four' WHERE a=4923;\nUPDATE t2 SET c='fifty-six thousand one hundred twenty-five' WHERE a=4924;\nUPDATE t2 SET c='thirty-five thousand six hundred sixty-seven' WHERE a=4925;\nUPDATE t2 SET c='twenty-eight thousand eight hundred eighty-seven' WHERE a=4926;\nUPDATE t2 SET c='seventy-seven thousand seven hundred twenty-eight' WHERE a=4927;\nUPDATE t2 SET c='ninety-one thousand three hundred forty-three' WHERE a=4928;\nUPDATE t2 SET c='sixty-seven thousand one hundred twenty-seven' WHERE a=4929;\nUPDATE t2 SET c='fifty-six thousand five hundred five' WHERE a=4930;\nUPDATE t2 SET c='forty-nine thousand one hundred twenty-five' WHERE a=4931;\nUPDATE t2 SET c='forty thousand eight hundred twenty-two' WHERE a=4932;\nUPDATE t2 SET c='seventy-nine thousand four hundred twenty-one' WHERE a=4933;\nUPDATE t2 SET c='seventy-six thousand nine hundred eighty-two' WHERE a=4934;\nUPDATE t2 SET c='seventy-three thousand five hundred sixty-eight' WHERE a=4935;\nUPDATE t2 SET c='fifty-one thousand' WHERE a=4936;\nUPDATE t2 SET c='sixty-one thousand two hundred nineteen' WHERE a=4937;\nUPDATE t2 SET c='seventy-one thousand forty-seven' WHERE a=4938;\nUPDATE t2 SET c='sixty-three thousand sixty' WHERE a=4939;\nUPDATE t2 SET c='twenty-eight thousand five hundred thirty-seven' WHERE a=4940;\nUPDATE t2 SET c='ninety-five thousand one hundred seventeen' WHERE a=4941;\nUPDATE t2 SET c='eight thousand seven hundred nineteen' WHERE a=4942;\nUPDATE t2 SET c='thirty thousand five hundred fifty-one' WHERE a=4943;\nUPDATE t2 SET c='ninety-two thousand four hundred seventy-seven' WHERE a=4944;\nUPDATE t2 SET c='thirty-one thousand four hundred forty-five' WHERE a=4945;\nUPDATE t2 SET c='eighty-six thousand four hundred thirty-six' WHERE a=4946;\nUPDATE t2 SET c='eighty-two thousand seven hundred forty-one' WHERE a=4947;\nUPDATE t2 SET c='sixty-one thousand six hundred ninety' WHERE a=4948;\nUPDATE t2 SET c='fifty thousand seven hundred four' WHERE a=4949;\nUPDATE t2 SET c='seventy-five thousand three hundred three' WHERE a=4950;\nUPDATE t2 SET c='twenty-four thousand eight hundred eighty-six' WHERE a=4951;\nUPDATE t2 SET c='two thousand one hundred seventy-three' WHERE a=4952;\nUPDATE t2 SET c='ninety-nine thousand three hundred thirty-eight' WHERE a=4953;\nUPDATE t2 SET c='four thousand one hundred sixty-nine' WHERE a=4954;\nUPDATE t2 SET c='seventy-three thousand six hundred ninety-nine' WHERE a=4955;\nUPDATE t2 SET c='seventy-five thousand eight hundred twenty' WHERE a=4956;\nUPDATE t2 SET c='fifty-one thousand one hundred seventy-five' WHERE a=4957;\nUPDATE t2 SET c='seventy-six thousand eleven' WHERE a=4958;\nUPDATE t2 SET c='forty thousand eight hundred ninety-seven' WHERE a=4959;\nUPDATE t2 SET c='ten thousand five hundred twenty-eight' WHERE a=4960;\nUPDATE t2 SET c='eighty-nine thousand four hundred twenty-three' WHERE a=4961;\nUPDATE t2 SET c='fifty-two thousand three hundred eight' WHERE a=4962;\nUPDATE t2 SET c='fifty-two thousand five hundred twenty-three' WHERE a=4963;\nUPDATE t2 SET c='thirty-six thousand six hundred fifty-one' WHERE a=4964;\nUPDATE t2 SET c='fifteen thousand three hundred sixteen' WHERE a=4965;\nUPDATE t2 SET c='thirty-eight thousand eight hundred twenty-four' WHERE a=4966;\nUPDATE t2 SET c='twenty-three thousand six hundred thirty-seven' WHERE a=4967;\nUPDATE t2 SET c='forty-two thousand six hundred ninety-one' WHERE a=4968;\nUPDATE t2 SET c='fifty-five thousand four hundred ninety-seven' WHERE a=4969;\nUPDATE t2 SET c='forty-two thousand six hundred five' WHERE a=4970;\nUPDATE t2 SET c='sixty-four thousand six hundred seventeen' WHERE a=4971;\nUPDATE t2 SET c='seventy-three thousand nine hundred seventy-nine' WHERE a=4972;\nUPDATE t2 SET c='seventy-three thousand nine hundred ninety' WHERE a=4973;\nUPDATE t2 SET c='eighty-five thousand nine hundred sixty-four' WHERE a=4974;\nUPDATE t2 SET c='ninety-seven thousand four hundred ninety-seven' WHERE a=4975;\nUPDATE t2 SET c='thirty-nine thousand two hundred fifty' WHERE a=4976;\nUPDATE t2 SET c='three thousand six hundred fifty-eight' WHERE a=4977;\nUPDATE t2 SET c='forty-five thousand nine hundred seventy-five' WHERE a=4978;\nUPDATE t2 SET c='fifty-three thousand four hundred sixty-six' WHERE a=4979;\nUPDATE t2 SET c='twenty thousand nine hundred seventy-five' WHERE a=4980;\nUPDATE t2 SET c='twenty-nine thousand eight hundred forty-three' WHERE a=4981;\nUPDATE t2 SET c='sixty-six thousand six hundred sixty-three' WHERE a=4982;\nUPDATE t2 SET c='ninety-eight thousand ninety' WHERE a=4983;\nUPDATE t2 SET c='fifty-eight thousand twenty-seven' WHERE a=4984;\nUPDATE t2 SET c='twenty-two thousand two hundred eighty' WHERE a=4985;\nUPDATE t2 SET c='sixty-one thousand eight hundred twenty-eight' WHERE a=4986;\nUPDATE t2 SET c='eleven thousand four hundred sixty-six' WHERE a=4987;\nUPDATE t2 SET c='four thousand one hundred fifteen' WHERE a=4988;\nUPDATE t2 SET c='eighty thousand seven hundred sixteen' WHERE a=4989;\nUPDATE t2 SET c='twenty-five thousand seven hundred seventy-five' WHERE a=4990;\nUPDATE t2 SET c='two thousand four hundred eighty-two' WHERE a=4991;\nUPDATE t2 SET c='twenty-eight thousand two hundred thirty-seven' WHERE a=4992;\nUPDATE t2 SET c='six thousand seven hundred eighty-eight' WHERE a=4993;\nUPDATE t2 SET c='fifty-nine thousand three hundred fifty' WHERE a=4994;\nUPDATE t2 SET c='ninety-seven thousand six hundred eighty-six' WHERE a=4995;\nUPDATE t2 SET c='eighty-seven thousand seven hundred thirty-nine' WHERE a=4996;\nUPDATE t2 SET c='forty-four thousand six hundred seventy-three' WHERE a=4997;\nUPDATE t2 SET c='twenty-six thousand fifty-eight' WHERE a=4998;\nUPDATE t2 SET c='thirty-six thousand eight hundred seventy' WHERE a=4999;\nUPDATE t2 SET c='sixty-one thousand five hundred fifty-three' WHERE a=5000;\nUPDATE t2 SET c='forty-eight thousand two hundred twenty-nine' WHERE a=5001;\nUPDATE t2 SET c='forty-eight thousand nine hundred twenty-nine' WHERE a=5002;\nUPDATE t2 SET c='seventy-eight thousand three hundred fifty-seven' WHERE a=5003;\nUPDATE t2 SET c='sixty-seven thousand two hundred four' WHERE a=5004;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty-three' WHERE a=5005;\nUPDATE t2 SET c='eighty-eight' WHERE a=5006;\nUPDATE t2 SET c='forty-six thousand five hundred eighty-two' WHERE a=5007;\nUPDATE t2 SET c='seventy-two thousand six hundred fifty-seven' WHERE a=5008;\nUPDATE t2 SET c='sixty-four thousand two hundred seventeen' WHERE a=5009;\nUPDATE t2 SET c='twenty-six thousand seven hundred forty-five' WHERE a=5010;\nUPDATE t2 SET c='eighty-one thousand four hundred eighty-nine' WHERE a=5011;\nUPDATE t2 SET c='fifty-nine thousand seventy-eight' WHERE a=5012;\nUPDATE t2 SET c='twenty thousand six hundred eighty-eight' WHERE a=5013;\nUPDATE t2 SET c='eighty-seven thousand five hundred eighty-nine' WHERE a=5014;\nUPDATE t2 SET c='forty-eight thousand five hundred seventy-seven' WHERE a=5015;\nUPDATE t2 SET c='seventeen thousand seven hundred nine' WHERE a=5016;\nUPDATE t2 SET c='nine thousand seven hundred thirteen' WHERE a=5017;\nUPDATE t2 SET c='ninety-nine thousand four hundred' WHERE a=5018;\nUPDATE t2 SET c='eighty-eight thousand eight hundred sixty-eight' WHERE a=5019;\nUPDATE t2 SET c='thirty-five thousand two hundred twenty-three' WHERE a=5020;\nUPDATE t2 SET c='ninety-one thousand two hundred sixty-nine' WHERE a=5021;\nUPDATE t2 SET c='thirty-three thousand four hundred thirty' WHERE a=5022;\nUPDATE t2 SET c='ninety-five thousand four hundred fifty-one' WHERE a=5023;\nUPDATE t2 SET c='ninety-seven thousand six hundred thirty-two' WHERE a=5024;\nUPDATE t2 SET c='eighty-nine thousand seven hundred eighty-two' WHERE a=5025;\nUPDATE t2 SET c='sixty-two thousand four hundred fifty-six' WHERE a=5026;\nUPDATE t2 SET c='one thousand four hundred fifty-eight' WHERE a=5027;\nUPDATE t2 SET c='seventy-one thousand six hundred eighty-two' WHERE a=5028;\nUPDATE t2 SET c='seventy-seven thousand thirty' WHERE a=5029;\nUPDATE t2 SET c='twenty thousand nine hundred seven' WHERE a=5030;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-six' WHERE a=5031;\nUPDATE t2 SET c='thirty-eight thousand six hundred three' WHERE a=5032;\nUPDATE t2 SET c='ninety-eight thousand two hundred twenty-eight' WHERE a=5033;\nUPDATE t2 SET c='fifty-three thousand one hundred seventeen' WHERE a=5034;\nUPDATE t2 SET c='eight thousand nine hundred ninety-three' WHERE a=5035;\nUPDATE t2 SET c='four hundred sixty' WHERE a=5036;\nUPDATE t2 SET c='fifty-one thousand three hundred thirty-two' WHERE a=5037;\nUPDATE t2 SET c='ninety-nine thousand two hundred nineteen' WHERE a=5038;\nUPDATE t2 SET c='twenty-seven thousand eight hundred sixty-eight' WHERE a=5039;\nUPDATE t2 SET c='sixty-seven thousand six hundred sixty-seven' WHERE a=5040;\nUPDATE t2 SET c='fourteen thousand four hundred twenty-four' WHERE a=5041;\nUPDATE t2 SET c='sixty thousand eight hundred eighty-seven' WHERE a=5042;\nUPDATE t2 SET c='twenty-three thousand four hundred ninety-eight' WHERE a=5043;\nUPDATE t2 SET c='twenty-six thousand seven' WHERE a=5044;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighteen' WHERE a=5045;\nUPDATE t2 SET c='ninety-four thousand ninety-three' WHERE a=5046;\nUPDATE t2 SET c='nine thousand three hundred' WHERE a=5047;\nUPDATE t2 SET c='twenty-four thousand sixteen' WHERE a=5048;\nUPDATE t2 SET c='sixty-one thousand nine hundred' WHERE a=5049;\nUPDATE t2 SET c='thirty-two thousand nine hundred fifteen' WHERE a=5050;\nUPDATE t2 SET c='twenty-two thousand seven hundred four' WHERE a=5051;\nUPDATE t2 SET c='thirty-three thousand two hundred fifteen' WHERE a=5052;\nUPDATE t2 SET c='thirteen thousand four hundred eighty-two' WHERE a=5053;\nUPDATE t2 SET c='five thousand fifty-nine' WHERE a=5054;\nUPDATE t2 SET c='fifty-seven thousand six hundred eighty-four' WHERE a=5055;\nUPDATE t2 SET c='eighty-four thousand seven hundred twenty' WHERE a=5056;\nUPDATE t2 SET c='thirty-two thousand seven hundred ninety-one' WHERE a=5057;\nUPDATE t2 SET c='eighty-eight thousand six hundred eighty-eight' WHERE a=5058;\nUPDATE t2 SET c='sixty-five thousand one hundred thirteen' WHERE a=5059;\nUPDATE t2 SET c='forty-seven thousand six hundred eighty-four' WHERE a=5060;\nUPDATE t2 SET c='seventy-eight thousand six hundred fifty-eight' WHERE a=5061;\nUPDATE t2 SET c='thirty-two thousand nine hundred ninety-eight' WHERE a=5062;\nUPDATE t2 SET c='forty-nine thousand five hundred four' WHERE a=5063;\nUPDATE t2 SET c='eighty thousand five hundred fifty-three' WHERE a=5064;\nUPDATE t2 SET c='fifty-seven thousand one hundred thirty-five' WHERE a=5065;\nUPDATE t2 SET c='seventy-three thousand five hundred thirty-eight' WHERE a=5066;\nUPDATE t2 SET c='forty-two thousand three hundred fifty-five' WHERE a=5067;\nUPDATE t2 SET c='forty-four thousand five hundred sixty-seven' WHERE a=5068;\nUPDATE t2 SET c='thirty-two thousand two hundred ninety-three' WHERE a=5069;\nUPDATE t2 SET c='eight thousand five hundred seventy-eight' WHERE a=5070;\nUPDATE t2 SET c='fifty-two thousand two hundred eighty-two' WHERE a=5071;\nUPDATE t2 SET c='sixteen thousand seven hundred three' WHERE a=5072;\nUPDATE t2 SET c='four hundred seventy-six' WHERE a=5073;\nUPDATE t2 SET c='seventeen thousand five hundred four' WHERE a=5074;\nUPDATE t2 SET c='nineteen thousand one hundred seventy' WHERE a=5075;\nUPDATE t2 SET c='ninety-two thousand six hundred eighteen' WHERE a=5076;\nUPDATE t2 SET c='twenty-three thousand five hundred sixty-nine' WHERE a=5077;\nUPDATE t2 SET c='eighteen thousand three hundred ninety-seven' WHERE a=5078;\nUPDATE t2 SET c='thirty-two thousand six hundred eighty-one' WHERE a=5079;\nUPDATE t2 SET c='seventy-three thousand eight hundred five' WHERE a=5080;\nUPDATE t2 SET c='thirty-six thousand seven hundred ninety-seven' WHERE a=5081;\nUPDATE t2 SET c='sixty-one thousand nine hundred eighty-five' WHERE a=5082;\nUPDATE t2 SET c='ninety-nine thousand two hundred twenty-four' WHERE a=5083;\nUPDATE t2 SET c='three thousand four hundred twenty-four' WHERE a=5084;\nUPDATE t2 SET c='eleven thousand three hundred fifty-eight' WHERE a=5085;\nUPDATE t2 SET c='sixty-nine thousand nine hundred nine' WHERE a=5086;\nUPDATE t2 SET c='three thousand four hundred ninety-two' WHERE a=5087;\nUPDATE t2 SET c='twenty-seven thousand nine hundred ninety-two' WHERE a=5088;\nUPDATE t2 SET c='ninety-five thousand eight hundred fifty-five' WHERE a=5089;\nUPDATE t2 SET c='fifty thousand two hundred six' WHERE a=5090;\nUPDATE t2 SET c='forty thousand seven hundred twenty-two' WHERE a=5091;\nUPDATE t2 SET c='ninety-nine thousand six hundred thirty' WHERE a=5092;\nUPDATE t2 SET c='seventy-nine thousand twenty-six' WHERE a=5093;\nUPDATE t2 SET c='seventy-two thousand five hundred fifty-six' WHERE a=5094;\nUPDATE t2 SET c='eighteen thousand eight hundred sixteen' WHERE a=5095;\nUPDATE t2 SET c='twenty-six thousand three hundred seventy-seven' WHERE a=5096;\nUPDATE t2 SET c='twelve thousand seven hundred ninety-one' WHERE a=5097;\nUPDATE t2 SET c='forty-eight thousand five hundred ninety-seven' WHERE a=5098;\nUPDATE t2 SET c='seventy thousand three hundred fifty-nine' WHERE a=5099;\nUPDATE t2 SET c='ten thousand nine hundred ninety-three' WHERE a=5100;\nUPDATE t2 SET c='thirty-three thousand three hundred thirty-three' WHERE a=5101;\nUPDATE t2 SET c='seventy-four thousand two hundred fifty-eight' WHERE a=5102;\nUPDATE t2 SET c='forty-three thousand sixty-seven' WHERE a=5103;\nUPDATE t2 SET c='ninety-eight thousand seven hundred seventeen' WHERE a=5104;\nUPDATE t2 SET c='ninety-eight thousand three hundred eighty-two' WHERE a=5105;\nUPDATE t2 SET c='twenty-one thousand one hundred eighty-five' WHERE a=5106;\nUPDATE t2 SET c='ninety-four thousand thirty-two' WHERE a=5107;\nUPDATE t2 SET c='nineteen thousand seven hundred fifty-seven' WHERE a=5108;\nUPDATE t2 SET c='seventeen thousand six hundred forty-six' WHERE a=5109;\nUPDATE t2 SET c='twenty-two thousand four hundred sixty-eight' WHERE a=5110;\nUPDATE t2 SET c='seventy-nine thousand three hundred fifty-eight' WHERE a=5111;\nUPDATE t2 SET c='thirty-three thousand one hundred eighty-six' WHERE a=5112;\nUPDATE t2 SET c='two thousand thirty-nine' WHERE a=5113;\nUPDATE t2 SET c='ninety-nine thousand one hundred ninety-two' WHERE a=5114;\nUPDATE t2 SET c='five thousand four hundred fifty-six' WHERE a=5115;\nUPDATE t2 SET c='thirty-six thousand seven hundred eighty' WHERE a=5116;\nUPDATE t2 SET c='thirty-five thousand five hundred' WHERE a=5117;\nUPDATE t2 SET c='fourteen thousand twenty' WHERE a=5118;\nUPDATE t2 SET c='one hundred thirty-five' WHERE a=5119;\nUPDATE t2 SET c='three thousand fifty-nine' WHERE a=5120;\nUPDATE t2 SET c='ninety-five thousand eight hundred seventy-six' WHERE a=5121;\nUPDATE t2 SET c='nineteen thousand eight hundred nineteen' WHERE a=5122;\nUPDATE t2 SET c='eighty-one thousand seven hundred forty-six' WHERE a=5123;\nUPDATE t2 SET c='eighty-seven thousand seven hundred forty-three' WHERE a=5124;\nUPDATE t2 SET c='seventy-one thousand eight hundred sixty-three' WHERE a=5125;\nUPDATE t2 SET c='forty-three thousand nine hundred eighty-three' WHERE a=5126;\nUPDATE t2 SET c='twenty-three thousand thirty-five' WHERE a=5127;\nUPDATE t2 SET c='seventy thousand nine hundred forty' WHERE a=5128;\nUPDATE t2 SET c='one thousand one hundred ninety' WHERE a=5129;\nUPDATE t2 SET c='three thousand six hundred twelve' WHERE a=5130;\nUPDATE t2 SET c='sixty-six thousand seven hundred twenty' WHERE a=5131;\nUPDATE t2 SET c='seventy-eight thousand nine hundred forty-four' WHERE a=5132;\nUPDATE t2 SET c='sixty-five thousand seven hundred twenty-one' WHERE a=5133;\nUPDATE t2 SET c='nineteen thousand nine hundred six' WHERE a=5134;\nUPDATE t2 SET c='forty-two thousand forty-seven' WHERE a=5135;\nUPDATE t2 SET c='fourteen thousand five hundred forty-eight' WHERE a=5136;\nUPDATE t2 SET c='forty-seven thousand two hundred sixty-nine' WHERE a=5137;\nUPDATE t2 SET c='thirty-four thousand three hundred eleven' WHERE a=5138;\nUPDATE t2 SET c='eight thousand one hundred nine' WHERE a=5139;\nUPDATE t2 SET c='thirty-two thousand sixty' WHERE a=5140;\nUPDATE t2 SET c='thirty-nine thousand four hundred three' WHERE a=5141;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-nine' WHERE a=5142;\nUPDATE t2 SET c='twenty thousand seven hundred ninety-three' WHERE a=5143;\nUPDATE t2 SET c='eighty-seven thousand thirty-four' WHERE a=5144;\nUPDATE t2 SET c='fifty-two thousand two hundred forty-five' WHERE a=5145;\nUPDATE t2 SET c='thirty-nine thousand nine hundred seventeen' WHERE a=5146;\nUPDATE t2 SET c='nine thousand five hundred twenty-eight' WHERE a=5147;\nUPDATE t2 SET c='fifty-four thousand nine hundred fifty-three' WHERE a=5148;\nUPDATE t2 SET c='seventy-five thousand sixty-two' WHERE a=5149;\nUPDATE t2 SET c='seventy-two thousand seven hundred seventy-five' WHERE a=5150;\nUPDATE t2 SET c='eighty-three thousand two hundred eighty-three' WHERE a=5151;\nUPDATE t2 SET c='sixty-four thousand four hundred thirty-six' WHERE a=5152;\nUPDATE t2 SET c='ten thousand six hundred six' WHERE a=5153;\nUPDATE t2 SET c='eleven thousand three hundred' WHERE a=5154;\nUPDATE t2 SET c='thirty-two thousand eight hundred eleven' WHERE a=5155;\nUPDATE t2 SET c='twenty-eight thousand two hundred twenty-three' WHERE a=5156;\nUPDATE t2 SET c='fifty-six thousand three hundred fifty-eight' WHERE a=5157;\nUPDATE t2 SET c='ninety-two thousand six hundred nineteen' WHERE a=5158;\nUPDATE t2 SET c='sixteen thousand nine hundred eighty' WHERE a=5159;\nUPDATE t2 SET c='ninety-seven thousand four hundred seventy-seven' WHERE a=5160;\nUPDATE t2 SET c='seventy-nine thousand nine hundred seventy' WHERE a=5161;\nUPDATE t2 SET c='seventy-eight thousand one hundred seventy-eight' WHERE a=5162;\nUPDATE t2 SET c='twenty-six thousand three hundred ninety-nine' WHERE a=5163;\nUPDATE t2 SET c='fifty-three thousand four hundred ninety-four' WHERE a=5164;\nUPDATE t2 SET c='ninety-eight thousand eight hundred sixty-eight' WHERE a=5165;\nUPDATE t2 SET c='seventy-nine thousand one hundred seventy' WHERE a=5166;\nUPDATE t2 SET c='seventy-nine thousand one hundred seven' WHERE a=5167;\nUPDATE t2 SET c='forty-seven thousand one hundred twenty-five' WHERE a=5168;\nUPDATE t2 SET c='fifty-two thousand five hundred eighty-nine' WHERE a=5169;\nUPDATE t2 SET c='ninety thousand eighty-eight' WHERE a=5170;\nUPDATE t2 SET c='fifty-three thousand seven hundred six' WHERE a=5171;\nUPDATE t2 SET c='five thousand seventy-three' WHERE a=5172;\nUPDATE t2 SET c='fifty-nine thousand five hundred ninety-five' WHERE a=5173;\nUPDATE t2 SET c='two thousand one hundred seventy-five' WHERE a=5174;\nUPDATE t2 SET c='thirty-five thousand five hundred ten' WHERE a=5175;\nUPDATE t2 SET c='three hundred eighty-six' WHERE a=5176;\nUPDATE t2 SET c='thirty-two thousand two hundred ninety-six' WHERE a=5177;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-four' WHERE a=5178;\nUPDATE t2 SET c='sixty-four thousand six hundred twenty-seven' WHERE a=5179;\nUPDATE t2 SET c='thirty-two thousand five hundred seventy-three' WHERE a=5180;\nUPDATE t2 SET c='twenty-four thousand eight hundred thirty-seven' WHERE a=5181;\nUPDATE t2 SET c='ninety-eight thousand ninety-four' WHERE a=5182;\nUPDATE t2 SET c='fifty-four thousand six hundred fifty-five' WHERE a=5183;\nUPDATE t2 SET c='thirty-two thousand two hundred seventy' WHERE a=5184;\nUPDATE t2 SET c='seventy-nine thousand six hundred two' WHERE a=5185;\nUPDATE t2 SET c='forty-nine thousand seven hundred seventy' WHERE a=5186;\nUPDATE t2 SET c='thirteen thousand six hundred sixty' WHERE a=5187;\nUPDATE t2 SET c='twenty-one thousand two hundred fifty-six' WHERE a=5188;\nUPDATE t2 SET c='seventy-five thousand seven hundred seventy-five' WHERE a=5189;\nUPDATE t2 SET c='twenty-six thousand five hundred eleven' WHERE a=5190;\nUPDATE t2 SET c='forty-two thousand two hundred fifty-six' WHERE a=5191;\nUPDATE t2 SET c='sixteen thousand five hundred two' WHERE a=5192;\nUPDATE t2 SET c='ninety-five thousand two hundred fifteen' WHERE a=5193;\nUPDATE t2 SET c='thirty-five thousand five hundred ninety-four' WHERE a=5194;\nUPDATE t2 SET c='thirty-six thousand eight hundred eighty-one' WHERE a=5195;\nUPDATE t2 SET c='fifty-three thousand one hundred forty-two' WHERE a=5196;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-three' WHERE a=5197;\nUPDATE t2 SET c='forty-nine thousand two hundred ninety-one' WHERE a=5198;\nUPDATE t2 SET c='one thousand eight hundred ninety-three' WHERE a=5199;\nUPDATE t2 SET c='thirty-nine thousand seven hundred seventy-seven' WHERE a=5200;\nUPDATE t2 SET c='thirty-three thousand one hundred twelve' WHERE a=5201;\nUPDATE t2 SET c='seventy-three thousand six hundred thirty-seven' WHERE a=5202;\nUPDATE t2 SET c='eighty-three thousand six hundred sixty-eight' WHERE a=5203;\nUPDATE t2 SET c='seventeen thousand eight hundred eighty-two' WHERE a=5204;\nUPDATE t2 SET c='nine thousand four hundred twenty-two' WHERE a=5205;\nUPDATE t2 SET c='eleven thousand eight hundred nine' WHERE a=5206;\nUPDATE t2 SET c='eighteen thousand six hundred seventeen' WHERE a=5207;\nUPDATE t2 SET c='thirty-five thousand seventy-one' WHERE a=5208;\nUPDATE t2 SET c='twenty-two thousand six hundred thirty-five' WHERE a=5209;\nUPDATE t2 SET c='eighty thousand four hundred ten' WHERE a=5210;\nUPDATE t2 SET c='sixty-four thousand nine hundred thirty' WHERE a=5211;\nUPDATE t2 SET c='eighty-three thousand three hundred ninety-seven' WHERE a=5212;\nUPDATE t2 SET c='twenty-five thousand four hundred twenty-six' WHERE a=5213;\nUPDATE t2 SET c='twenty-five thousand six hundred fifty-two' WHERE a=5214;\nUPDATE t2 SET c='sixty-seven thousand five hundred sixty-eight' WHERE a=5215;\nUPDATE t2 SET c='twenty-five thousand eighty-seven' WHERE a=5216;\nUPDATE t2 SET c='ninety-five thousand five hundred forty-eight' WHERE a=5217;\nUPDATE t2 SET c='forty-two thousand eight hundred ninety-one' WHERE a=5218;\nUPDATE t2 SET c='twenty-three thousand three hundred forty' WHERE a=5219;\nUPDATE t2 SET c='six thousand three hundred eighteen' WHERE a=5220;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty' WHERE a=5221;\nUPDATE t2 SET c='three hundred seventy-seven' WHERE a=5222;\nUPDATE t2 SET c='seventy-nine thousand three hundred seventy-six' WHERE a=5223;\nUPDATE t2 SET c='eighty-one thousand two hundred forty' WHERE a=5224;\nUPDATE t2 SET c='ninety-seven thousand forty' WHERE a=5225;\nUPDATE t2 SET c='eight thousand five hundred twenty-four' WHERE a=5226;\nUPDATE t2 SET c='forty-five thousand five hundred nineteen' WHERE a=5227;\nUPDATE t2 SET c='ninety-three thousand eight hundred forty-nine' WHERE a=5228;\nUPDATE t2 SET c='eighty-four thousand three hundred forty-three' WHERE a=5229;\nUPDATE t2 SET c='twenty thousand six hundred sixty' WHERE a=5230;\nUPDATE t2 SET c='twenty-six thousand nine hundred twenty-eight' WHERE a=5231;\nUPDATE t2 SET c='forty-five thousand five hundred forty-three' WHERE a=5232;\nUPDATE t2 SET c='seventy-seven thousand six hundred eighty-four' WHERE a=5233;\nUPDATE t2 SET c='thirty-six thousand nine hundred fifty-four' WHERE a=5234;\nUPDATE t2 SET c='twenty-nine thousand sixty-four' WHERE a=5235;\nUPDATE t2 SET c='ninety-five thousand one hundred thirty' WHERE a=5236;\nUPDATE t2 SET c='seventy-one thousand one hundred sixty-eight' WHERE a=5237;\nUPDATE t2 SET c='thirteen thousand one hundred fifty-three' WHERE a=5238;\nUPDATE t2 SET c='six thousand seven hundred ninety-two' WHERE a=5239;\nUPDATE t2 SET c='thirty-eight thousand six hundred ninety-five' WHERE a=5240;\nUPDATE t2 SET c='twenty-seven thousand one hundred thirty-one' WHERE a=5241;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty' WHERE a=5242;\nUPDATE t2 SET c='sixteen thousand two hundred fifty-one' WHERE a=5243;\nUPDATE t2 SET c='sixty-five thousand four hundred nineteen' WHERE a=5244;\nUPDATE t2 SET c='twenty-four thousand one hundred three' WHERE a=5245;\nUPDATE t2 SET c='fifteen thousand nine hundred fourteen' WHERE a=5246;\nUPDATE t2 SET c='twenty-four thousand six hundred sixty-eight' WHERE a=5247;\nUPDATE t2 SET c='eighty thousand two hundred seventy-seven' WHERE a=5248;\nUPDATE t2 SET c='sixty-four thousand two hundred three' WHERE a=5249;\nUPDATE t2 SET c='sixteen thousand four hundred thirteen' WHERE a=5250;\nUPDATE t2 SET c='twenty-eight thousand six hundred thirty' WHERE a=5251;\nUPDATE t2 SET c='eighty-two thousand nine hundred six' WHERE a=5252;\nUPDATE t2 SET c='forty-eight thousand six hundred eighty-nine' WHERE a=5253;\nUPDATE t2 SET c='twenty-one thousand eight hundred thirty-one' WHERE a=5254;\nUPDATE t2 SET c='seven thousand nine hundred fifty-nine' WHERE a=5255;\nUPDATE t2 SET c='eight thousand eight hundred sixty' WHERE a=5256;\nUPDATE t2 SET c='sixty-eight thousand one hundred ninety-nine' WHERE a=5257;\nUPDATE t2 SET c='thirty-six thousand six hundred ninety-six' WHERE a=5258;\nUPDATE t2 SET c='seventy-five thousand seven hundred seventy-one' WHERE a=5259;\nUPDATE t2 SET c='sixteen thousand one hundred eighty-three' WHERE a=5260;\nUPDATE t2 SET c='twenty thousand two hundred forty-seven' WHERE a=5261;\nUPDATE t2 SET c='seventy-three thousand seven hundred thirty-seven' WHERE a=5262;\nUPDATE t2 SET c='forty-seven thousand four hundred eighty-five' WHERE a=5263;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-three' WHERE a=5264;\nUPDATE t2 SET c='six thousand six hundred sixty-eight' WHERE a=5265;\nUPDATE t2 SET c='twenty-four thousand seven hundred fifty-three' WHERE a=5266;\nUPDATE t2 SET c='fifty-five thousand nine hundred thirty-five' WHERE a=5267;\nUPDATE t2 SET c='eight thousand seven hundred ninety-nine' WHERE a=5268;\nUPDATE t2 SET c='twenty-two thousand eighty-four' WHERE a=5269;\nUPDATE t2 SET c='fifty-eight thousand three hundred three' WHERE a=5270;\nUPDATE t2 SET c='sixty-six thousand seven hundred ninety-six' WHERE a=5271;\nUPDATE t2 SET c='eighty-four thousand one hundred forty-five' WHERE a=5272;\nUPDATE t2 SET c='sixty-three thousand two hundred three' WHERE a=5273;\nUPDATE t2 SET c='forty-eight thousand one hundred fifty-one' WHERE a=5274;\nUPDATE t2 SET c='eighty-five thousand seven hundred seventy-five' WHERE a=5275;\nUPDATE t2 SET c='fifty-three thousand four hundred fifty-seven' WHERE a=5276;\nUPDATE t2 SET c='ninety-two thousand four hundred fifty-eight' WHERE a=5277;\nUPDATE t2 SET c='seventy-eight thousand six' WHERE a=5278;\nUPDATE t2 SET c='seventy thousand ninety' WHERE a=5279;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-six' WHERE a=5280;\nUPDATE t2 SET c='fifty-two thousand nine hundred three' WHERE a=5281;\nUPDATE t2 SET c='six thousand fifty' WHERE a=5282;\nUPDATE t2 SET c='sixty-seven thousand four hundred thirteen' WHERE a=5283;\nUPDATE t2 SET c='twenty-one thousand six hundred forty-four' WHERE a=5284;\nUPDATE t2 SET c='fourteen thousand six hundred sixty-five' WHERE a=5285;\nUPDATE t2 SET c='ninety thousand four hundred eight' WHERE a=5286;\nUPDATE t2 SET c='four thousand six hundred eighty-eight' WHERE a=5287;\nUPDATE t2 SET c='ninety-eight thousand ten' WHERE a=5288;\nUPDATE t2 SET c='sixty-three thousand eight hundred twenty-five' WHERE a=5289;\nUPDATE t2 SET c='nine thousand one hundred fifty' WHERE a=5290;\nUPDATE t2 SET c='forty-four thousand two hundred forty-one' WHERE a=5291;\nUPDATE t2 SET c='thirty-seven thousand one hundred twenty-six' WHERE a=5292;\nUPDATE t2 SET c='forty-four thousand nine hundred forty-nine' WHERE a=5293;\nUPDATE t2 SET c='ninety-three thousand eight hundred thirteen' WHERE a=5294;\nUPDATE t2 SET c='three hundred eighty-six' WHERE a=5295;\nUPDATE t2 SET c='eleven thousand six hundred sixty-two' WHERE a=5296;\nUPDATE t2 SET c='five thousand two hundred eighty-one' WHERE a=5297;\nUPDATE t2 SET c='forty-two thousand three hundred twenty' WHERE a=5298;\nUPDATE t2 SET c='twenty-one thousand five hundred eighty-five' WHERE a=5299;\nUPDATE t2 SET c='sixty-four thousand three hundred eighty-nine' WHERE a=5300;\nUPDATE t2 SET c='twenty-eight thousand four hundred forty-six' WHERE a=5301;\nUPDATE t2 SET c='forty-six thousand seven hundred eighty-five' WHERE a=5302;\nUPDATE t2 SET c='seventy-three thousand forty-one' WHERE a=5303;\nUPDATE t2 SET c='thirteen thousand nine hundred thirty-nine' WHERE a=5304;\nUPDATE t2 SET c='forty-two thousand six hundred eleven' WHERE a=5305;\nUPDATE t2 SET c='seventy-one thousand ninety-one' WHERE a=5306;\nUPDATE t2 SET c='thirty-four thousand two hundred ninety-six' WHERE a=5307;\nUPDATE t2 SET c='seventy-six thousand four hundred sixty-seven' WHERE a=5308;\nUPDATE t2 SET c='fifty-five thousand three hundred eighty-three' WHERE a=5309;\nUPDATE t2 SET c='thirty-five thousand three hundred eighty-one' WHERE a=5310;\nUPDATE t2 SET c='seventy thousand three hundred sixty-eight' WHERE a=5311;\nUPDATE t2 SET c='seventy-eight thousand two hundred one' WHERE a=5312;\nUPDATE t2 SET c='eighty thousand eight hundred fifty' WHERE a=5313;\nUPDATE t2 SET c='fifty-one thousand seven hundred eighty' WHERE a=5314;\nUPDATE t2 SET c='forty-five thousand seven hundred eight' WHERE a=5315;\nUPDATE t2 SET c='fifty-one thousand nine hundred twenty-nine' WHERE a=5316;\nUPDATE t2 SET c='ninety-three thousand ninety-three' WHERE a=5317;\nUPDATE t2 SET c='seventy thousand one hundred eighteen' WHERE a=5318;\nUPDATE t2 SET c='forty-five thousand four hundred four' WHERE a=5319;\nUPDATE t2 SET c='thirteen thousand one hundred twenty-seven' WHERE a=5320;\nUPDATE t2 SET c='forty-nine thousand one hundred forty-five' WHERE a=5321;\nUPDATE t2 SET c='sixty-four thousand eight' WHERE a=5322;\nUPDATE t2 SET c='twenty-one thousand one hundred forty-six' WHERE a=5323;\nUPDATE t2 SET c='eighty-six thousand eight hundred seven' WHERE a=5324;\nUPDATE t2 SET c='six thousand four hundred eighty-three' WHERE a=5325;\nUPDATE t2 SET c='sixty-nine thousand three hundred sixteen' WHERE a=5326;\nUPDATE t2 SET c='fifty-one thousand eight hundred twenty-one' WHERE a=5327;\nUPDATE t2 SET c='sixteen thousand six hundred six' WHERE a=5328;\nUPDATE t2 SET c='sixty-seven thousand nine hundred ninety-four' WHERE a=5329;\nUPDATE t2 SET c='seventy-eight thousand four hundred eighty-one' WHERE a=5330;\nUPDATE t2 SET c='ninety-four thousand nine hundred seventeen' WHERE a=5331;\nUPDATE t2 SET c='nineteen thousand nine hundred two' WHERE a=5332;\nUPDATE t2 SET c='thirty-nine thousand two hundred nine' WHERE a=5333;\nUPDATE t2 SET c='eighteen thousand two hundred sixty-three' WHERE a=5334;\nUPDATE t2 SET c='eighteen thousand nine hundred fifty-five' WHERE a=5335;\nUPDATE t2 SET c='eighty-four thousand eight hundred eighty-nine' WHERE a=5336;\nUPDATE t2 SET c='sixty-nine thousand six hundred twenty-eight' WHERE a=5337;\nUPDATE t2 SET c='thirty-six thousand eight hundred fifty' WHERE a=5338;\nUPDATE t2 SET c='fifteen thousand six hundred thirty-five' WHERE a=5339;\nUPDATE t2 SET c='four thousand nine hundred forty-seven' WHERE a=5340;\nUPDATE t2 SET c='sixty-nine thousand five hundred ninety-eight' WHERE a=5341;\nUPDATE t2 SET c='twenty-seven thousand four hundred thirty' WHERE a=5342;\nUPDATE t2 SET c='nine thousand seven hundred eighty-five' WHERE a=5343;\nUPDATE t2 SET c='eighty-four thousand two hundred thirty-six' WHERE a=5344;\nUPDATE t2 SET c='ninety-seven thousand five hundred eighty-three' WHERE a=5345;\nUPDATE t2 SET c='sixty thousand nine hundred two' WHERE a=5346;\nUPDATE t2 SET c='sixty thousand four hundred forty-seven' WHERE a=5347;\nUPDATE t2 SET c='seventy-three thousand four hundred two' WHERE a=5348;\nUPDATE t2 SET c='twenty-five thousand forty-four' WHERE a=5349;\nUPDATE t2 SET c='thirty thousand forty-seven' WHERE a=5350;\nUPDATE t2 SET c='fourteen thousand four hundred fifty-four' WHERE a=5351;\nUPDATE t2 SET c='thirty-seven thousand five hundred ninety-one' WHERE a=5352;\nUPDATE t2 SET c='thirty-seven thousand eight hundred ninety-four' WHERE a=5353;\nUPDATE t2 SET c='forty-three thousand nine hundred eleven' WHERE a=5354;\nUPDATE t2 SET c='fifty-one thousand five hundred thirty-one' WHERE a=5355;\nUPDATE t2 SET c='fifty-six thousand three hundred fifty-six' WHERE a=5356;\nUPDATE t2 SET c='thirty-seven thousand nine hundred eighty-two' WHERE a=5357;\nUPDATE t2 SET c='thirty-one thousand six hundred eighty-six' WHERE a=5358;\nUPDATE t2 SET c='sixty thousand six' WHERE a=5359;\nUPDATE t2 SET c='sixty thousand nine hundred sixty-six' WHERE a=5360;\nUPDATE t2 SET c='eighty thousand six hundred twenty-two' WHERE a=5361;\nUPDATE t2 SET c='sixty-nine thousand five hundred ninety-eight' WHERE a=5362;\nUPDATE t2 SET c='sixty-five thousand three hundred eighteen' WHERE a=5363;\nUPDATE t2 SET c='forty-five thousand seven hundred sixty-five' WHERE a=5364;\nUPDATE t2 SET c='five thousand three hundred' WHERE a=5365;\nUPDATE t2 SET c='sixty-seven thousand eight hundred thirty-three' WHERE a=5366;\nUPDATE t2 SET c='three thousand eight hundred seventy' WHERE a=5367;\nUPDATE t2 SET c='eighty thousand four hundred nine' WHERE a=5368;\nUPDATE t2 SET c='ninety-four thousand four hundred thirty-nine' WHERE a=5369;\nUPDATE t2 SET c='twenty-six thousand one hundred sixty-five' WHERE a=5370;\nUPDATE t2 SET c='seventy-six thousand ninety-three' WHERE a=5371;\nUPDATE t2 SET c='sixty-two thousand two hundred forty-three' WHERE a=5372;\nUPDATE t2 SET c='twenty-two thousand one hundred eighty-five' WHERE a=5373;\nUPDATE t2 SET c='thirty thousand six hundred seventy-four' WHERE a=5374;\nUPDATE t2 SET c='three thousand nine hundred ninety-one' WHERE a=5375;\nUPDATE t2 SET c='fifty-six thousand six hundred six' WHERE a=5376;\nUPDATE t2 SET c='thirty thousand three hundred forty-two' WHERE a=5377;\nUPDATE t2 SET c='seventy-six thousand six hundred fifty-two' WHERE a=5378;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-one' WHERE a=5379;\nUPDATE t2 SET c='eight thousand nine hundred seventy-five' WHERE a=5380;\nUPDATE t2 SET c='seventy-three thousand four hundred ten' WHERE a=5381;\nUPDATE t2 SET c='six thousand three hundred six' WHERE a=5382;\nUPDATE t2 SET c='sixty thousand six hundred twenty-seven' WHERE a=5383;\nUPDATE t2 SET c='thirty-four thousand sixty-two' WHERE a=5384;\nUPDATE t2 SET c='thirty-seven thousand five hundred forty-four' WHERE a=5385;\nUPDATE t2 SET c='thirty-three thousand nineteen' WHERE a=5386;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-eight' WHERE a=5387;\nUPDATE t2 SET c='forty-four thousand nine hundred fourteen' WHERE a=5388;\nUPDATE t2 SET c='twenty-three thousand four hundred seventeen' WHERE a=5389;\nUPDATE t2 SET c='ninety-three thousand eight hundred seventy-five' WHERE a=5390;\nUPDATE t2 SET c='thirteen thousand ninety-one' WHERE a=5391;\nUPDATE t2 SET c='seventy-four thousand two hundred ninety-one' WHERE a=5392;\nUPDATE t2 SET c='forty-one thousand eleven' WHERE a=5393;\nUPDATE t2 SET c='eighty thousand five hundred twenty-three' WHERE a=5394;\nUPDATE t2 SET c='sixty-four thousand three hundred thirty' WHERE a=5395;\nUPDATE t2 SET c='sixty-one thousand four hundred thirty-five' WHERE a=5396;\nUPDATE t2 SET c='forty-six thousand six hundred ninety-three' WHERE a=5397;\nUPDATE t2 SET c='sixty-two thousand four hundred seventy-two' WHERE a=5398;\nUPDATE t2 SET c='seventy-eight thousand six hundred fifteen' WHERE a=5399;\nUPDATE t2 SET c='forty-six thousand nine hundred twenty-one' WHERE a=5400;\nUPDATE t2 SET c='thirteen thousand nine hundred two' WHERE a=5401;\nUPDATE t2 SET c='ninety-two thousand ninety-four' WHERE a=5402;\nUPDATE t2 SET c='sixty-four thousand five hundred ninety-four' WHERE a=5403;\nUPDATE t2 SET c='thirteen thousand two hundred ninety' WHERE a=5404;\nUPDATE t2 SET c='fourteen thousand one hundred sixty-two' WHERE a=5405;\nUPDATE t2 SET c='thirteen thousand two hundred sixty' WHERE a=5406;\nUPDATE t2 SET c='twenty-one thousand six hundred forty-four' WHERE a=5407;\nUPDATE t2 SET c='seventy-three thousand six hundred' WHERE a=5408;\nUPDATE t2 SET c='four hundred eighty-nine' WHERE a=5409;\nUPDATE t2 SET c='twenty-five thousand eight hundred fifty-seven' WHERE a=5410;\nUPDATE t2 SET c='sixty-seven thousand two hundred twenty-seven' WHERE a=5411;\nUPDATE t2 SET c='seventeen thousand three hundred four' WHERE a=5412;\nUPDATE t2 SET c='eighteen thousand ninety-four' WHERE a=5413;\nUPDATE t2 SET c='fifty thousand three hundred ninety-four' WHERE a=5414;\nUPDATE t2 SET c='one thousand three hundred twenty-six' WHERE a=5415;\nUPDATE t2 SET c='eighty-one thousand one hundred thirty' WHERE a=5416;\nUPDATE t2 SET c='eighty-seven thousand two hundred twenty-five' WHERE a=5417;\nUPDATE t2 SET c='eighty-nine thousand three hundred twelve' WHERE a=5418;\nUPDATE t2 SET c='thirty-eight thousand five hundred sixty-six' WHERE a=5419;\nUPDATE t2 SET c='forty-nine thousand nine hundred eighty-three' WHERE a=5420;\nUPDATE t2 SET c='sixty-nine thousand five hundred fifteen' WHERE a=5421;\nUPDATE t2 SET c='eighty-nine thousand nine hundred thirty-one' WHERE a=5422;\nUPDATE t2 SET c='twenty-two thousand four hundred seventy-six' WHERE a=5423;\nUPDATE t2 SET c='fifty-seven thousand seven hundred fifty-five' WHERE a=5424;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifteen' WHERE a=5425;\nUPDATE t2 SET c='fifty-two thousand eight hundred fifty-nine' WHERE a=5426;\nUPDATE t2 SET c='two thousand two hundred ninety-eight' WHERE a=5427;\nUPDATE t2 SET c='forty-four thousand three hundred fifty-six' WHERE a=5428;\nUPDATE t2 SET c='sixty-six thousand three hundred forty' WHERE a=5429;\nUPDATE t2 SET c='seventy-six thousand seven hundred fifty-eight' WHERE a=5430;\nUPDATE t2 SET c='ninety-eight thousand three hundred twenty-seven' WHERE a=5431;\nUPDATE t2 SET c='ninety-two thousand twenty-two' WHERE a=5432;\nUPDATE t2 SET c='eighty-seven thousand two hundred seventy' WHERE a=5433;\nUPDATE t2 SET c='fifty-four thousand three hundred fifty-one' WHERE a=5434;\nUPDATE t2 SET c='forty-eight thousand eight hundred twenty-seven' WHERE a=5435;\nUPDATE t2 SET c='forty-seven thousand nine hundred one' WHERE a=5436;\nUPDATE t2 SET c='sixty-four thousand five hundred seventeen' WHERE a=5437;\nUPDATE t2 SET c='fifteen thousand nine hundred sixteen' WHERE a=5438;\nUPDATE t2 SET c='forty-six thousand four hundred seventy-five' WHERE a=5439;\nUPDATE t2 SET c='twenty-eight thousand thirty-seven' WHERE a=5440;\nUPDATE t2 SET c='seventy-four thousand six hundred sixty-three' WHERE a=5441;\nUPDATE t2 SET c='seventy-four thousand eight hundred sixty-four' WHERE a=5442;\nUPDATE t2 SET c='eighty-nine thousand eight hundred twenty-one' WHERE a=5443;\nUPDATE t2 SET c='seventy-seven thousand one hundred thirty-two' WHERE a=5444;\nUPDATE t2 SET c='twenty-seven thousand two hundred seventeen' WHERE a=5445;\nUPDATE t2 SET c='one thousand three hundred five' WHERE a=5446;\nUPDATE t2 SET c='fourteen thousand six hundred ninety-six' WHERE a=5447;\nUPDATE t2 SET c='sixty thousand five hundred thirty-three' WHERE a=5448;\nUPDATE t2 SET c='twenty-seven thousand two hundred sixty-two' WHERE a=5449;\nUPDATE t2 SET c='thirty-one thousand nine hundred fifty-eight' WHERE a=5450;\nUPDATE t2 SET c='sixty-four thousand seven hundred thirty' WHERE a=5451;\nUPDATE t2 SET c='sixty-one thousand nine hundred seventeen' WHERE a=5452;\nUPDATE t2 SET c='forty-eight thousand one hundred sixty-eight' WHERE a=5453;\nUPDATE t2 SET c='two thousand three hundred sixty-six' WHERE a=5454;\nUPDATE t2 SET c='five thousand three hundred forty-eight' WHERE a=5455;\nUPDATE t2 SET c='twenty thousand six hundred fifty-two' WHERE a=5456;\nUPDATE t2 SET c='ninety-five thousand four hundred forty-one' WHERE a=5457;\nUPDATE t2 SET c='forty-five thousand thirty-five' WHERE a=5458;\nUPDATE t2 SET c='forty thousand one hundred eighty-eight' WHERE a=5459;\nUPDATE t2 SET c='fifty-eight thousand two hundred five' WHERE a=5460;\nUPDATE t2 SET c='twenty-one thousand two hundred fifty-two' WHERE a=5461;\nUPDATE t2 SET c='seventy-six thousand one hundred fifty-five' WHERE a=5462;\nUPDATE t2 SET c='seventy-eight thousand six hundred thirty-three' WHERE a=5463;\nUPDATE t2 SET c='twenty-seven thousand three hundred forty' WHERE a=5464;\nUPDATE t2 SET c='seventy-one thousand four hundred eighty-four' WHERE a=5465;\nUPDATE t2 SET c='fifty-four thousand one hundred four' WHERE a=5466;\nUPDATE t2 SET c='seventeen thousand seven hundred forty-six' WHERE a=5467;\nUPDATE t2 SET c='thirty-eight thousand nine hundred sixty-four' WHERE a=5468;\nUPDATE t2 SET c='seventy-five thousand three hundred twenty-eight' WHERE a=5469;\nUPDATE t2 SET c='seventy-four thousand eight hundred nine' WHERE a=5470;\nUPDATE t2 SET c='twenty-eight thousand seven hundred thirty-seven' WHERE a=5471;\nUPDATE t2 SET c='eighty-one thousand two hundred seventy-two' WHERE a=5472;\nUPDATE t2 SET c='seventy-six thousand nine hundred nine' WHERE a=5473;\nUPDATE t2 SET c='twenty-three thousand sixty-six' WHERE a=5474;\nUPDATE t2 SET c='nineteen thousand two hundred twelve' WHERE a=5475;\nUPDATE t2 SET c='twenty-five thousand five hundred fifty' WHERE a=5476;\nUPDATE t2 SET c='twenty-six thousand eight hundred sixty-one' WHERE a=5477;\nUPDATE t2 SET c='fourteen thousand nine hundred seventeen' WHERE a=5478;\nUPDATE t2 SET c='seventy-six thousand three hundred thirty-five' WHERE a=5479;\nUPDATE t2 SET c='seventy thousand four hundred fifty-six' WHERE a=5480;\nUPDATE t2 SET c='sixty-eight thousand ninety-six' WHERE a=5481;\nUPDATE t2 SET c='sixty-three thousand two hundred ninety-three' WHERE a=5482;\nUPDATE t2 SET c='seventy-four thousand forty-six' WHERE a=5483;\nUPDATE t2 SET c='ninety-five thousand six hundred seventy-five' WHERE a=5484;\nUPDATE t2 SET c='forty-four thousand eight hundred nine' WHERE a=5485;\nUPDATE t2 SET c='thirty-six thousand six hundred sixty-six' WHERE a=5486;\nUPDATE t2 SET c='eighty-one thousand four hundred three' WHERE a=5487;\nUPDATE t2 SET c='one thousand seven hundred seventy-six' WHERE a=5488;\nUPDATE t2 SET c='nineteen thousand forty-eight' WHERE a=5489;\nUPDATE t2 SET c='thirty-six thousand one hundred forty-seven' WHERE a=5490;\nUPDATE t2 SET c='eleven thousand eight hundred seven' WHERE a=5491;\nUPDATE t2 SET c='sixty-three thousand four hundred forty-six' WHERE a=5492;\nUPDATE t2 SET c='twenty-four thousand six hundred seventy-six' WHERE a=5493;\nUPDATE t2 SET c='eighty-two thousand three hundred fifty-six' WHERE a=5494;\nUPDATE t2 SET c='four hundred nineteen' WHERE a=5495;\nUPDATE t2 SET c='sixty-nine thousand six hundred thirty-four' WHERE a=5496;\nUPDATE t2 SET c='seventy-five thousand one hundred fifty' WHERE a=5497;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-six' WHERE a=5498;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-six' WHERE a=5499;\nUPDATE t2 SET c='seventy thousand seven hundred thirty-three' WHERE a=5500;\nUPDATE t2 SET c='thirty-two thousand three hundred twelve' WHERE a=5501;\nUPDATE t2 SET c='twenty-one thousand forty-nine' WHERE a=5502;\nUPDATE t2 SET c='fifty-seven thousand four hundred thirty-nine' WHERE a=5503;\nUPDATE t2 SET c='ninety-seven thousand five hundred nine' WHERE a=5504;\nUPDATE t2 SET c='fifty-seven thousand four hundred forty-eight' WHERE a=5505;\nUPDATE t2 SET c='fifty-seven thousand nine hundred thirty-five' WHERE a=5506;\nUPDATE t2 SET c='forty-four thousand eight hundred eighty-six' WHERE a=5507;\nUPDATE t2 SET c='eighty-four thousand fifty-two' WHERE a=5508;\nUPDATE t2 SET c='ten thousand five hundred thirty-eight' WHERE a=5509;\nUPDATE t2 SET c='seventy-two thousand two hundred thirty-six' WHERE a=5510;\nUPDATE t2 SET c='seventy-nine thousand two hundred eighty-five' WHERE a=5511;\nUPDATE t2 SET c='fifty thousand eight hundred eighty-two' WHERE a=5512;\nUPDATE t2 SET c='sixty-five thousand six hundred twenty-eight' WHERE a=5513;\nUPDATE t2 SET c='eighty-nine thousand four hundred twenty-two' WHERE a=5514;\nUPDATE t2 SET c='eighty-six thousand seven hundred eighty' WHERE a=5515;\nUPDATE t2 SET c='sixty-seven thousand three hundred forty' WHERE a=5516;\nUPDATE t2 SET c='thirteen thousand eight hundred thirty-three' WHERE a=5517;\nUPDATE t2 SET c='eighty-four thousand one hundred seventy-five' WHERE a=5518;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty-nine' WHERE a=5519;\nUPDATE t2 SET c='twelve thousand six hundred five' WHERE a=5520;\nUPDATE t2 SET c='forty-six thousand three hundred sixty-three' WHERE a=5521;\nUPDATE t2 SET c='seventeen thousand one hundred sixty-nine' WHERE a=5522;\nUPDATE t2 SET c='ninety-three thousand five hundred forty' WHERE a=5523;\nUPDATE t2 SET c='twenty-three thousand seven hundred' WHERE a=5524;\nUPDATE t2 SET c='eighty-four thousand five hundred fifty-seven' WHERE a=5525;\nUPDATE t2 SET c='thirty-two thousand eight hundred seventy-five' WHERE a=5526;\nUPDATE t2 SET c='ninety-four thousand nine hundred ninety-three' WHERE a=5527;\nUPDATE t2 SET c='sixty-six thousand six hundred ninety-one' WHERE a=5528;\nUPDATE t2 SET c='eighty-nine thousand nine hundred thirty-four' WHERE a=5529;\nUPDATE t2 SET c='fifty thousand three hundred sixty-four' WHERE a=5530;\nUPDATE t2 SET c='thirteen thousand nine hundred seventy-two' WHERE a=5531;\nUPDATE t2 SET c='thirty-five thousand three hundred seventy-two' WHERE a=5532;\nUPDATE t2 SET c='sixty thousand three hundred sixty-eight' WHERE a=5533;\nUPDATE t2 SET c='sixty-six thousand eight hundred sixty-eight' WHERE a=5534;\nUPDATE t2 SET c='ninety-four thousand nine hundred fifty-eight' WHERE a=5535;\nUPDATE t2 SET c='thirty-seven thousand three hundred sixty-one' WHERE a=5536;\nUPDATE t2 SET c='forty-one thousand four hundred forty-four' WHERE a=5537;\nUPDATE t2 SET c='eighteen thousand four hundred' WHERE a=5538;\nUPDATE t2 SET c='fifty-one thousand one hundred sixty-eight' WHERE a=5539;\nUPDATE t2 SET c='twenty-six thousand twenty-six' WHERE a=5540;\nUPDATE t2 SET c='eighty-one thousand seven hundred nineteen' WHERE a=5541;\nUPDATE t2 SET c='twenty-one thousand eight hundred eighty-five' WHERE a=5542;\nUPDATE t2 SET c='fifty-one thousand one hundred ninety-eight' WHERE a=5543;\nUPDATE t2 SET c='forty-eight thousand one hundred eighty-three' WHERE a=5544;\nUPDATE t2 SET c='thirty-six thousand eighty-seven' WHERE a=5545;\nUPDATE t2 SET c='thirty-two thousand four hundred twenty-eight' WHERE a=5546;\nUPDATE t2 SET c='sixty-nine thousand four hundred ninety-six' WHERE a=5547;\nUPDATE t2 SET c='eighteen thousand five hundred twelve' WHERE a=5548;\nUPDATE t2 SET c='forty thousand eight hundred twenty' WHERE a=5549;\nUPDATE t2 SET c='ninety-nine thousand two hundred seventy' WHERE a=5550;\nUPDATE t2 SET c='eighty-two thousand one hundred seventy-eight' WHERE a=5551;\nUPDATE t2 SET c='ninety-four thousand twenty-seven' WHERE a=5552;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty-five' WHERE a=5553;\nUPDATE t2 SET c='sixty-six thousand five hundred sixty-one' WHERE a=5554;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-two' WHERE a=5555;\nUPDATE t2 SET c='fifty-one thousand four hundred seventy-one' WHERE a=5556;\nUPDATE t2 SET c='fifty-seven thousand three hundred forty-six' WHERE a=5557;\nUPDATE t2 SET c='eighty-four thousand five hundred forty-five' WHERE a=5558;\nUPDATE t2 SET c='sixty-six thousand six hundred forty-six' WHERE a=5559;\nUPDATE t2 SET c='eighteen thousand six hundred forty-seven' WHERE a=5560;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-nine' WHERE a=5561;\nUPDATE t2 SET c='fifty thousand two hundred ninety-two' WHERE a=5562;\nUPDATE t2 SET c='ninety-six thousand two hundred forty' WHERE a=5563;\nUPDATE t2 SET c='sixty-two thousand forty-six' WHERE a=5564;\nUPDATE t2 SET c='two thousand six hundred forty-one' WHERE a=5565;\nUPDATE t2 SET c='two thousand one hundred three' WHERE a=5566;\nUPDATE t2 SET c='eight thousand one hundred two' WHERE a=5567;\nUPDATE t2 SET c='two thousand six hundred fifty-eight' WHERE a=5568;\nUPDATE t2 SET c='seventy-three thousand four hundred seventy-eight' WHERE a=5569;\nUPDATE t2 SET c='fifty-nine thousand five hundred' WHERE a=5570;\nUPDATE t2 SET c='ninety-four thousand eight hundred thirteen' WHERE a=5571;\nUPDATE t2 SET c='twenty-three thousand two hundred sixty-seven' WHERE a=5572;\nUPDATE t2 SET c='six thousand nine hundred sixty-nine' WHERE a=5573;\nUPDATE t2 SET c='seventy-five thousand six hundred eighty-eight' WHERE a=5574;\nUPDATE t2 SET c='thirty-nine thousand ninety' WHERE a=5575;\nUPDATE t2 SET c='eleven thousand four hundred forty-one' WHERE a=5576;\nUPDATE t2 SET c='seventy thousand two hundred forty-nine' WHERE a=5577;\nUPDATE t2 SET c='sixty-eight thousand two hundred two' WHERE a=5578;\nUPDATE t2 SET c='sixty-five thousand nine hundred twelve' WHERE a=5579;\nUPDATE t2 SET c='sixty-five thousand seven hundred twenty-one' WHERE a=5580;\nUPDATE t2 SET c='seven thousand fifty-one' WHERE a=5581;\nUPDATE t2 SET c='ninety-seven thousand nine hundred eighty-four' WHERE a=5582;\nUPDATE t2 SET c='fifty-two thousand nine hundred eighty-three' WHERE a=5583;\nUPDATE t2 SET c='thirty-two thousand five hundred ninety-four' WHERE a=5584;\nUPDATE t2 SET c='seventy thousand seven hundred forty-one' WHERE a=5585;\nUPDATE t2 SET c='eighty-nine thousand six hundred fifty-six' WHERE a=5586;\nUPDATE t2 SET c='eighty-one thousand eight hundred ninety-three' WHERE a=5587;\nUPDATE t2 SET c='sixty-four thousand one hundred thirty-three' WHERE a=5588;\nUPDATE t2 SET c='forty-five thousand six hundred seventy' WHERE a=5589;\nUPDATE t2 SET c='sixteen thousand five hundred one' WHERE a=5590;\nUPDATE t2 SET c='forty-two thousand four hundred seventy-three' WHERE a=5591;\nUPDATE t2 SET c='thirty-three thousand seven hundred sixty' WHERE a=5592;\nUPDATE t2 SET c='seventy-two thousand seven hundred sixty' WHERE a=5593;\nUPDATE t2 SET c='sixty-five thousand two hundred nineteen' WHERE a=5594;\nUPDATE t2 SET c='ninety-seven thousand nine hundred four' WHERE a=5595;\nUPDATE t2 SET c='ninety-seven thousand one hundred thirty-two' WHERE a=5596;\nUPDATE t2 SET c='twenty-eight thousand one hundred eight' WHERE a=5597;\nUPDATE t2 SET c='seventeen thousand one hundred fifty-two' WHERE a=5598;\nUPDATE t2 SET c='thirty-one thousand three hundred fifty-three' WHERE a=5599;\nUPDATE t2 SET c='nine thousand nine hundred three' WHERE a=5600;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ninety-nine' WHERE a=5601;\nUPDATE t2 SET c='twenty-four thousand seven hundred forty-four' WHERE a=5602;\nUPDATE t2 SET c='twenty-seven thousand seven hundred seventy-three' WHERE a=5603;\nUPDATE t2 SET c='fifty-one thousand two hundred sixty-seven' WHERE a=5604;\nUPDATE t2 SET c='one thousand seven hundred thirty-four' WHERE a=5605;\nUPDATE t2 SET c='nineteen thousand two' WHERE a=5606;\nUPDATE t2 SET c='sixteen thousand four hundred twenty-two' WHERE a=5607;\nUPDATE t2 SET c='twenty-three thousand eight hundred two' WHERE a=5608;\nUPDATE t2 SET c='eighty-one thousand nine hundred forty-four' WHERE a=5609;\nUPDATE t2 SET c='forty-six thousand two hundred sixty-seven' WHERE a=5610;\nUPDATE t2 SET c='thirty-eight thousand seven hundred twenty-seven' WHERE a=5611;\nUPDATE t2 SET c='seventeen thousand four hundred ninety-eight' WHERE a=5612;\nUPDATE t2 SET c='sixty-eight thousand five hundred eighty' WHERE a=5613;\nUPDATE t2 SET c='ninety-four thousand six hundred ninety-five' WHERE a=5614;\nUPDATE t2 SET c='seventy thousand four hundred eight' WHERE a=5615;\nUPDATE t2 SET c='ninety-six thousand six' WHERE a=5616;\nUPDATE t2 SET c='fifteen thousand three hundred twenty-eight' WHERE a=5617;\nUPDATE t2 SET c='twenty-three thousand three hundred forty-seven' WHERE a=5618;\nUPDATE t2 SET c='ninety thousand ninety-six' WHERE a=5619;\nUPDATE t2 SET c='ninety-seven thousand four hundred forty' WHERE a=5620;\nUPDATE t2 SET c='ninety-nine thousand five hundred eleven' WHERE a=5621;\nUPDATE t2 SET c='five thousand one hundred fifteen' WHERE a=5622;\nUPDATE t2 SET c='forty-five thousand five hundred seventy' WHERE a=5623;\nUPDATE t2 SET c='forty thousand nine hundred eighty-seven' WHERE a=5624;\nUPDATE t2 SET c='forty-six thousand five hundred seventy-seven' WHERE a=5625;\nUPDATE t2 SET c='fifteen thousand nine hundred thirty-nine' WHERE a=5626;\nUPDATE t2 SET c='two thousand nine hundred fifteen' WHERE a=5627;\nUPDATE t2 SET c='eighty-nine thousand seven hundred thirty-nine' WHERE a=5628;\nUPDATE t2 SET c='seventy-nine thousand four hundred seventy-four' WHERE a=5629;\nUPDATE t2 SET c='sixty thousand one hundred ninety-eight' WHERE a=5630;\nUPDATE t2 SET c='twenty-six thousand eight hundred fifty-three' WHERE a=5631;\nUPDATE t2 SET c='eighty-four thousand eighty-one' WHERE a=5632;\nUPDATE t2 SET c='eighty-nine thousand six hundred thirty-eight' WHERE a=5633;\nUPDATE t2 SET c='thirty thousand five hundred sixty' WHERE a=5634;\nUPDATE t2 SET c='fifty-nine thousand one hundred seventy-one' WHERE a=5635;\nUPDATE t2 SET c='eighty-eight thousand five' WHERE a=5636;\nUPDATE t2 SET c='forty-three thousand six hundred thirty-seven' WHERE a=5637;\nUPDATE t2 SET c='thirty-nine thousand four hundred ninety-two' WHERE a=5638;\nUPDATE t2 SET c='six thousand eight hundred twelve' WHERE a=5639;\nUPDATE t2 SET c='fifty-nine thousand one hundred sixty-one' WHERE a=5640;\nUPDATE t2 SET c='fifty-three thousand six hundred forty-nine' WHERE a=5641;\nUPDATE t2 SET c='eighty-seven thousand six hundred eighty-three' WHERE a=5642;\nUPDATE t2 SET c='ninety-seven thousand nine hundred forty-six' WHERE a=5643;\nUPDATE t2 SET c='ninety-three thousand nine hundred seven' WHERE a=5644;\nUPDATE t2 SET c='forty-nine thousand nine hundred twenty-nine' WHERE a=5645;\nUPDATE t2 SET c='eighty-two thousand two hundred fifty-seven' WHERE a=5646;\nUPDATE t2 SET c='thirty thousand eight hundred eighty-three' WHERE a=5647;\nUPDATE t2 SET c='twelve thousand seven hundred eighteen' WHERE a=5648;\nUPDATE t2 SET c='forty-three thousand five hundred seventy-eight' WHERE a=5649;\nUPDATE t2 SET c='sixteen thousand five hundred twenty' WHERE a=5650;\nUPDATE t2 SET c='fifteen thousand eight hundred sixty-seven' WHERE a=5651;\nUPDATE t2 SET c='eleven thousand three hundred ninety-one' WHERE a=5652;\nUPDATE t2 SET c='forty-two thousand seven hundred forty-five' WHERE a=5653;\nUPDATE t2 SET c='ninety-three thousand five hundred forty-seven' WHERE a=5654;\nUPDATE t2 SET c='twenty-five thousand one hundred seventy-eight' WHERE a=5655;\nUPDATE t2 SET c='nineteen thousand five hundred fifty-four' WHERE a=5656;\nUPDATE t2 SET c='fifty-one thousand three hundred eighty-five' WHERE a=5657;\nUPDATE t2 SET c='twenty-two thousand five hundred twenty-three' WHERE a=5658;\nUPDATE t2 SET c='six thousand four hundred seventy-one' WHERE a=5659;\nUPDATE t2 SET c='nine thousand seven hundred forty-five' WHERE a=5660;\nUPDATE t2 SET c='sixty-seven thousand ninety-nine' WHERE a=5661;\nUPDATE t2 SET c='sixty-two thousand one hundred two' WHERE a=5662;\nUPDATE t2 SET c='ninety-six thousand five hundred fifty-five' WHERE a=5663;\nUPDATE t2 SET c='thirty-seven thousand fifty-four' WHERE a=5664;\nUPDATE t2 SET c='ninety-eight thousand six hundred seven' WHERE a=5665;\nUPDATE t2 SET c='sixteen thousand five hundred forty-nine' WHERE a=5666;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-one' WHERE a=5667;\nUPDATE t2 SET c='forty-one thousand nine hundred one' WHERE a=5668;\nUPDATE t2 SET c='fifty-two thousand three hundred forty' WHERE a=5669;\nUPDATE t2 SET c='seventy-three thousand seven hundred ninety-four' WHERE a=5670;\nUPDATE t2 SET c='fifty thousand one hundred nineteen' WHERE a=5671;\nUPDATE t2 SET c='two thousand fifty' WHERE a=5672;\nUPDATE t2 SET c='seventy thousand four hundred fifty' WHERE a=5673;\nUPDATE t2 SET c='ninety-three thousand seventy-five' WHERE a=5674;\nUPDATE t2 SET c='three thousand five hundred seventy-seven' WHERE a=5675;\nUPDATE t2 SET c='thirty-eight thousand eight hundred ninety-nine' WHERE a=5676;\nUPDATE t2 SET c='sixty-six thousand one hundred seventy-five' WHERE a=5677;\nUPDATE t2 SET c='thirty-eight thousand nine hundred twenty-eight' WHERE a=5678;\nUPDATE t2 SET c='forty-five thousand ninety-six' WHERE a=5679;\nUPDATE t2 SET c='forty-four thousand nine hundred seventy-nine' WHERE a=5680;\nUPDATE t2 SET c='sixty-six thousand two hundred forty-two' WHERE a=5681;\nUPDATE t2 SET c='ninety-five thousand six hundred sixty-eight' WHERE a=5682;\nUPDATE t2 SET c='eighty-one thousand five hundred eighty' WHERE a=5683;\nUPDATE t2 SET c='six thousand eight hundred ten' WHERE a=5684;\nUPDATE t2 SET c='thirty-two thousand four hundred thirty-six' WHERE a=5685;\nUPDATE t2 SET c='eighty thousand four hundred seventy-two' WHERE a=5686;\nUPDATE t2 SET c='sixty-six thousand nine hundred eighty-three' WHERE a=5687;\nUPDATE t2 SET c='thirteen thousand eight hundred twenty-two' WHERE a=5688;\nUPDATE t2 SET c='eighty-five thousand one hundred six' WHERE a=5689;\nUPDATE t2 SET c='sixty-two thousand five hundred twenty-nine' WHERE a=5690;\nUPDATE t2 SET c='eleven thousand eighty-nine' WHERE a=5691;\nUPDATE t2 SET c='four thousand one hundred sixty-five' WHERE a=5692;\nUPDATE t2 SET c='ninety-three thousand fifteen' WHERE a=5693;\nUPDATE t2 SET c='six thousand three hundred seven' WHERE a=5694;\nUPDATE t2 SET c='fifty-seven thousand nine hundred sixty-two' WHERE a=5695;\nUPDATE t2 SET c='seventy thousand eight hundred forty-two' WHERE a=5696;\nUPDATE t2 SET c='thirty-eight thousand three hundred forty-six' WHERE a=5697;\nUPDATE t2 SET c='twenty-four thousand nine hundred twelve' WHERE a=5698;\nUPDATE t2 SET c='seventy-eight thousand four hundred twenty-three' WHERE a=5699;\nUPDATE t2 SET c='forty-four thousand ninety-one' WHERE a=5700;\nUPDATE t2 SET c='twenty-five thousand four hundred fifty-three' WHERE a=5701;\nUPDATE t2 SET c='thirty-two thousand nine hundred thirty-four' WHERE a=5702;\nUPDATE t2 SET c='one hundred eighty-five' WHERE a=5703;\nUPDATE t2 SET c='seventy-eight thousand three hundred sixty-six' WHERE a=5704;\nUPDATE t2 SET c='ninety-eight thousand six hundred five' WHERE a=5705;\nUPDATE t2 SET c='thirty-three thousand forty-nine' WHERE a=5706;\nUPDATE t2 SET c='twenty-six thousand seventy-one' WHERE a=5707;\nUPDATE t2 SET c='thirty thousand five hundred eighty-two' WHERE a=5708;\nUPDATE t2 SET c='eighty-one thousand one hundred eighty-two' WHERE a=5709;\nUPDATE t2 SET c='forty-four thousand one hundred sixty-three' WHERE a=5710;\nUPDATE t2 SET c='forty-five thousand one hundred eighty-five' WHERE a=5711;\nUPDATE t2 SET c='twenty-nine thousand six hundred eleven' WHERE a=5712;\nUPDATE t2 SET c='fourteen thousand three hundred thirty-three' WHERE a=5713;\nUPDATE t2 SET c='fifty-four thousand one hundred thirty-three' WHERE a=5714;\nUPDATE t2 SET c='thirty-five thousand nine hundred twenty-seven' WHERE a=5715;\nUPDATE t2 SET c='ninety-four thousand five hundred sixty-three' WHERE a=5716;\nUPDATE t2 SET c='fifty thousand four hundred one' WHERE a=5717;\nUPDATE t2 SET c='forty-eight thousand nine hundred thirty-one' WHERE a=5718;\nUPDATE t2 SET c='twenty-three thousand seven hundred sixty-one' WHERE a=5719;\nUPDATE t2 SET c='eighty-one thousand eight hundred thirty-six' WHERE a=5720;\nUPDATE t2 SET c='forty-one thousand seven hundred twenty-five' WHERE a=5721;\nUPDATE t2 SET c='eighty-four thousand nine hundred eleven' WHERE a=5722;\nUPDATE t2 SET c='ninety-three thousand one hundred forty-two' WHERE a=5723;\nUPDATE t2 SET c='forty-three thousand sixty-five' WHERE a=5724;\nUPDATE t2 SET c='seventy-two thousand one hundred fifteen' WHERE a=5725;\nUPDATE t2 SET c='seventy-five thousand five hundred sixty-six' WHERE a=5726;\nUPDATE t2 SET c='twenty-four thousand four hundred fifty-nine' WHERE a=5727;\nUPDATE t2 SET c='forty-three thousand thirty-two' WHERE a=5728;\nUPDATE t2 SET c='seventy-three thousand four hundred two' WHERE a=5729;\nUPDATE t2 SET c='seventy-seven thousand seventy-four' WHERE a=5730;\nUPDATE t2 SET c='nineteen thousand nine hundred ninety-four' WHERE a=5731;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighty-five' WHERE a=5732;\nUPDATE t2 SET c='seventeen thousand five hundred thirty-nine' WHERE a=5733;\nUPDATE t2 SET c='twenty-one thousand eight hundred ninety-eight' WHERE a=5734;\nUPDATE t2 SET c='eighty thousand two hundred ninety-nine' WHERE a=5735;\nUPDATE t2 SET c='eighty-six thousand three hundred eighty-seven' WHERE a=5736;\nUPDATE t2 SET c='three thousand three hundred twenty-five' WHERE a=5737;\nUPDATE t2 SET c='sixty-two thousand forty-eight' WHERE a=5738;\nUPDATE t2 SET c='twenty-one thousand seven hundred seventy-one' WHERE a=5739;\nUPDATE t2 SET c='eight thousand two hundred eight' WHERE a=5740;\nUPDATE t2 SET c='fifty-four thousand three hundred' WHERE a=5741;\nUPDATE t2 SET c='ninety-two thousand seven hundred thirty-seven' WHERE a=5742;\nUPDATE t2 SET c='eighteen thousand three hundred eighty-seven' WHERE a=5743;\nUPDATE t2 SET c='thirty-six thousand six hundred eighty-five' WHERE a=5744;\nUPDATE t2 SET c='forty-nine thousand nine hundred seventy-one' WHERE a=5745;\nUPDATE t2 SET c='five thousand nine hundred eighty-eight' WHERE a=5746;\nUPDATE t2 SET c='ninety-nine thousand eight hundred fifty-three' WHERE a=5747;\nUPDATE t2 SET c='sixty-seven thousand one hundred seventy-nine' WHERE a=5748;\nUPDATE t2 SET c='thirty-three thousand six hundred twenty-five' WHERE a=5749;\nUPDATE t2 SET c='sixty-nine thousand nine hundred ninety-eight' WHERE a=5750;\nUPDATE t2 SET c='seventy-three thousand two hundred eighty-six' WHERE a=5751;\nUPDATE t2 SET c='seventy thousand four hundred thirty-two' WHERE a=5752;\nUPDATE t2 SET c='fifty-one thousand eight hundred seventy-two' WHERE a=5753;\nUPDATE t2 SET c='ninety-three thousand five hundred eighteen' WHERE a=5754;\nUPDATE t2 SET c='ninety-one thousand one hundred fifty-two' WHERE a=5755;\nUPDATE t2 SET c='thirty-four thousand two hundred forty-two' WHERE a=5756;\nUPDATE t2 SET c='seventy-five thousand three hundred ninety-four' WHERE a=5757;\nUPDATE t2 SET c='ninety thousand two hundred four' WHERE a=5758;\nUPDATE t2 SET c='eighty thousand nine hundred fifty-three' WHERE a=5759;\nUPDATE t2 SET c='fifty-four thousand nine hundred nineteen' WHERE a=5760;\nUPDATE t2 SET c='ninety-two thousand four hundred sixty-nine' WHERE a=5761;\nUPDATE t2 SET c='ten thousand two hundred sixteen' WHERE a=5762;\nUPDATE t2 SET c='forty-four thousand one hundred thirty-five' WHERE a=5763;\nUPDATE t2 SET c='eighty-eight thousand nine hundred forty-seven' WHERE a=5764;\nUPDATE t2 SET c='fourteen thousand two hundred fifty-one' WHERE a=5765;\nUPDATE t2 SET c='eighty-eight thousand twenty-six' WHERE a=5766;\nUPDATE t2 SET c='thirty-two thousand four hundred fifty-nine' WHERE a=5767;\nUPDATE t2 SET c='ninety-four thousand five hundred forty-three' WHERE a=5768;\nUPDATE t2 SET c='sixty-nine thousand three hundred eighty' WHERE a=5769;\nUPDATE t2 SET c='twenty-three thousand three hundred eighty-eight' WHERE a=5770;\nUPDATE t2 SET c='twenty-four thousand three hundred twenty-five' WHERE a=5771;\nUPDATE t2 SET c='twenty-one thousand five hundred eighty' WHERE a=5772;\nUPDATE t2 SET c='fifty-nine thousand four hundred sixty-seven' WHERE a=5773;\nUPDATE t2 SET c='fifty-three thousand eight hundred ninety-two' WHERE a=5774;\nUPDATE t2 SET c='forty-three thousand one hundred eighty' WHERE a=5775;\nUPDATE t2 SET c='ninety-nine thousand seven hundred thirty-eight' WHERE a=5776;\nUPDATE t2 SET c='ninety-one thousand seven hundred sixteen' WHERE a=5777;\nUPDATE t2 SET c='eighteen thousand two hundred one' WHERE a=5778;\nUPDATE t2 SET c='seventy-five thousand eight hundred sixteen' WHERE a=5779;\nUPDATE t2 SET c='three thousand five hundred twenty-five' WHERE a=5780;\nUPDATE t2 SET c='thirty-nine thousand two hundred seventy-two' WHERE a=5781;\nUPDATE t2 SET c='seventy-five thousand seven hundred ninety-two' WHERE a=5782;\nUPDATE t2 SET c='sixty-one thousand five hundred forty-three' WHERE a=5783;\nUPDATE t2 SET c='twenty-one thousand one hundred three' WHERE a=5784;\nUPDATE t2 SET c='eighty-three thousand nine hundred forty-six' WHERE a=5785;\nUPDATE t2 SET c='forty-one thousand seven hundred seven' WHERE a=5786;\nUPDATE t2 SET c='fifty-two thousand eight hundred ninety-six' WHERE a=5787;\nUPDATE t2 SET c='nine thousand three hundred' WHERE a=5788;\nUPDATE t2 SET c='seventy-seven thousand eighty-three' WHERE a=5789;\nUPDATE t2 SET c='sixty-seven thousand four hundred fifty-four' WHERE a=5790;\nUPDATE t2 SET c='thirty-nine thousand nine hundred eighty-seven' WHERE a=5791;\nUPDATE t2 SET c='eighteen thousand seven hundred thirty-three' WHERE a=5792;\nUPDATE t2 SET c='eight thousand four hundred forty-nine' WHERE a=5793;\nUPDATE t2 SET c='thirty-eight thousand one hundred forty-nine' WHERE a=5794;\nUPDATE t2 SET c='fifteen thousand three hundred eighty-eight' WHERE a=5795;\nUPDATE t2 SET c='seventy-nine thousand six hundred ninety-five' WHERE a=5796;\nUPDATE t2 SET c='ninety-nine thousand six hundred ninety-two' WHERE a=5797;\nUPDATE t2 SET c='thirty-seven thousand fifty' WHERE a=5798;\nUPDATE t2 SET c='fourteen thousand eight hundred eleven' WHERE a=5799;\nUPDATE t2 SET c='ninety-five thousand three hundred sixty-six' WHERE a=5800;\nUPDATE t2 SET c='thirty-nine thousand six hundred thirty-two' WHERE a=5801;\nUPDATE t2 SET c='eighteen thousand nine hundred eighty-nine' WHERE a=5802;\nUPDATE t2 SET c='eighty-one thousand five hundred eighteen' WHERE a=5803;\nUPDATE t2 SET c='seventy-six thousand three hundred eighty-eight' WHERE a=5804;\nUPDATE t2 SET c='eighty-nine thousand two hundred forty-six' WHERE a=5805;\nUPDATE t2 SET c='thirty-two thousand twenty-three' WHERE a=5806;\nUPDATE t2 SET c='forty-one thousand nine hundred forty-three' WHERE a=5807;\nUPDATE t2 SET c='forty-eight thousand four hundred sixty-five' WHERE a=5808;\nUPDATE t2 SET c='ninety-eight thousand eight hundred fifty' WHERE a=5809;\nUPDATE t2 SET c='thirty-four thousand eight hundred twenty-five' WHERE a=5810;\nUPDATE t2 SET c='sixty-six thousand sixty' WHERE a=5811;\nUPDATE t2 SET c='sixty-five thousand eight hundred seventy-two' WHERE a=5812;\nUPDATE t2 SET c='eighty-four thousand four hundred seventy-eight' WHERE a=5813;\nUPDATE t2 SET c='twenty-nine thousand seven hundred forty-eight' WHERE a=5814;\nUPDATE t2 SET c='thirty-nine thousand nine hundred eighty-eight' WHERE a=5815;\nUPDATE t2 SET c='sixty-five thousand nine hundred sixty-three' WHERE a=5816;\nUPDATE t2 SET c='seventy thousand one hundred eighty-three' WHERE a=5817;\nUPDATE t2 SET c='twenty thousand two hundred thirty-three' WHERE a=5818;\nUPDATE t2 SET c='forty-nine thousand four hundred ninety-four' WHERE a=5819;\nUPDATE t2 SET c='seventy-five thousand five hundred seventy-four' WHERE a=5820;\nUPDATE t2 SET c='forty-six thousand seven hundred fifty-four' WHERE a=5821;\nUPDATE t2 SET c='thirty-three thousand four hundred seventy-two' WHERE a=5822;\nUPDATE t2 SET c='sixty-five thousand three hundred seventy-six' WHERE a=5823;\nUPDATE t2 SET c='eleven thousand one hundred eighty-one' WHERE a=5824;\nUPDATE t2 SET c='twenty-four thousand eight hundred ninety-one' WHERE a=5825;\nUPDATE t2 SET c='seventy-six thousand eighteen' WHERE a=5826;\nUPDATE t2 SET c='thirty-two thousand seven hundred twenty-three' WHERE a=5827;\nUPDATE t2 SET c='four thousand four hundred seventeen' WHERE a=5828;\nUPDATE t2 SET c='forty-eight thousand three hundred three' WHERE a=5829;\nUPDATE t2 SET c='sixty-two thousand two hundred forty-one' WHERE a=5830;\nUPDATE t2 SET c='thirty-four thousand six hundred forty-one' WHERE a=5831;\nUPDATE t2 SET c='nineteen thousand four hundred eighty-five' WHERE a=5832;\nUPDATE t2 SET c='fifty-five thousand three hundred sixty-six' WHERE a=5833;\nUPDATE t2 SET c='eighty-five thousand nine hundred ninety-seven' WHERE a=5834;\nUPDATE t2 SET c='ninety-six thousand seventy-five' WHERE a=5835;\nUPDATE t2 SET c='fifty thousand one hundred' WHERE a=5836;\nUPDATE t2 SET c='ninety-one thousand six hundred sixty-two' WHERE a=5837;\nUPDATE t2 SET c='seventy-one thousand four hundred nine' WHERE a=5838;\nUPDATE t2 SET c='fifty-one thousand seven hundred twelve' WHERE a=5839;\nUPDATE t2 SET c='forty-two thousand four hundred eighteen' WHERE a=5840;\nUPDATE t2 SET c='eleven thousand four hundred seventy-three' WHERE a=5841;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty-seven' WHERE a=5842;\nUPDATE t2 SET c='twenty-six thousand four hundred fifty-one' WHERE a=5843;\nUPDATE t2 SET c='eighty thousand six hundred twenty-four' WHERE a=5844;\nUPDATE t2 SET c='ninety-eight thousand six hundred thirteen' WHERE a=5845;\nUPDATE t2 SET c='eighty-five thousand seventy' WHERE a=5846;\nUPDATE t2 SET c='fifty-eight thousand five hundred sixty-six' WHERE a=5847;\nUPDATE t2 SET c='sixty-four thousand eight hundred sixteen' WHERE a=5848;\nUPDATE t2 SET c='forty-seven thousand nine hundred fifty-nine' WHERE a=5849;\nUPDATE t2 SET c='fifty-one thousand seven hundred eight' WHERE a=5850;\nUPDATE t2 SET c='seventy thousand seven hundred twenty-nine' WHERE a=5851;\nUPDATE t2 SET c='seventy-seven thousand seven hundred twenty-eight' WHERE a=5852;\nUPDATE t2 SET c='sixteen thousand one hundred twelve' WHERE a=5853;\nUPDATE t2 SET c='eighty-nine thousand four hundred twenty' WHERE a=5854;\nUPDATE t2 SET c='thirty-one thousand two hundred eight' WHERE a=5855;\nUPDATE t2 SET c='ninety-seven thousand seven hundred six' WHERE a=5856;\nUPDATE t2 SET c='ninety-four thousand eight hundred four' WHERE a=5857;\nUPDATE t2 SET c='thirteen thousand two hundred ninety' WHERE a=5858;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-four' WHERE a=5859;\nUPDATE t2 SET c='fifty-eight thousand three hundred sixty-nine' WHERE a=5860;\nUPDATE t2 SET c='sixty-eight thousand three hundred twenty-two' WHERE a=5861;\nUPDATE t2 SET c='eight thousand three hundred six' WHERE a=5862;\nUPDATE t2 SET c='sixty-six thousand forty-four' WHERE a=5863;\nUPDATE t2 SET c='seventy-five thousand nine hundred ninety-eight' WHERE a=5864;\nUPDATE t2 SET c='eighty thousand eight hundred fifty-two' WHERE a=5865;\nUPDATE t2 SET c='fifty-nine thousand six hundred thirty-seven' WHERE a=5866;\nUPDATE t2 SET c='sixty-eight thousand eight hundred seventy-nine' WHERE a=5867;\nUPDATE t2 SET c='three thousand two hundred six' WHERE a=5868;\nUPDATE t2 SET c='seventy-five thousand two hundred ninety-eight' WHERE a=5869;\nUPDATE t2 SET c='thirty-one thousand four hundred fifty-seven' WHERE a=5870;\nUPDATE t2 SET c='seventy thousand two hundred seventy-one' WHERE a=5871;\nUPDATE t2 SET c='eighty-three thousand sixty-four' WHERE a=5872;\nUPDATE t2 SET c='forty-eight thousand six hundred ten' WHERE a=5873;\nUPDATE t2 SET c='seventy-seven thousand four hundred thirty-five' WHERE a=5874;\nUPDATE t2 SET c='fifty thousand nine hundred sixty-five' WHERE a=5875;\nUPDATE t2 SET c='forty-eight thousand one hundred sixty-eight' WHERE a=5876;\nUPDATE t2 SET c='thirty-one thousand ninety-two' WHERE a=5877;\nUPDATE t2 SET c='four thousand two hundred ninety-seven' WHERE a=5878;\nUPDATE t2 SET c='forty-four thousand two hundred thirty' WHERE a=5879;\nUPDATE t2 SET c='thirty-one thousand four hundred sixty-five' WHERE a=5880;\nUPDATE t2 SET c='thirty-nine thousand forty-seven' WHERE a=5881;\nUPDATE t2 SET c='twenty thousand five hundred ninety-eight' WHERE a=5882;\nUPDATE t2 SET c='ninety-four thousand eight hundred forty-two' WHERE a=5883;\nUPDATE t2 SET c='eighty thousand one hundred seventy' WHERE a=5884;\nUPDATE t2 SET c='twenty-four thousand thirteen' WHERE a=5885;\nUPDATE t2 SET c='sixty-four thousand four hundred fifty' WHERE a=5886;\nUPDATE t2 SET c='seventy-five thousand three hundred fifty-eight' WHERE a=5887;\nUPDATE t2 SET c='forty-four thousand two hundred thirty-seven' WHERE a=5888;\nUPDATE t2 SET c='sixty-nine thousand ninety-one' WHERE a=5889;\nUPDATE t2 SET c='sixty-three thousand nine hundred fifty-three' WHERE a=5890;\nUPDATE t2 SET c='fifty thousand five hundred seventeen' WHERE a=5891;\nUPDATE t2 SET c='twelve thousand six hundred sixty-five' WHERE a=5892;\nUPDATE t2 SET c='thirty-nine thousand four hundred seventy-three' WHERE a=5893;\nUPDATE t2 SET c='eighty-five thousand seven hundred sixty-two' WHERE a=5894;\nUPDATE t2 SET c='ninety-four thousand one hundred forty-six' WHERE a=5895;\nUPDATE t2 SET c='five thousand eight hundred twenty-seven' WHERE a=5896;\nUPDATE t2 SET c='twenty thousand one hundred thirty-eight' WHERE a=5897;\nUPDATE t2 SET c='thirty-one thousand one hundred eighteen' WHERE a=5898;\nUPDATE t2 SET c='thirteen thousand one hundred' WHERE a=5899;\nUPDATE t2 SET c='sixty-three thousand two hundred seventy-six' WHERE a=5900;\nUPDATE t2 SET c='seventy-seven thousand nine hundred twenty-eight' WHERE a=5901;\nUPDATE t2 SET c='thirty-seven thousand two hundred ten' WHERE a=5902;\nUPDATE t2 SET c='ninety-three thousand five hundred eighty-six' WHERE a=5903;\nUPDATE t2 SET c='eighty-two thousand one hundred fifteen' WHERE a=5904;\nUPDATE t2 SET c='ten thousand seven hundred thirty-eight' WHERE a=5905;\nUPDATE t2 SET c='sixty thousand nine hundred eighty-five' WHERE a=5906;\nUPDATE t2 SET c='ninety-eight thousand five hundred fifty' WHERE a=5907;\nUPDATE t2 SET c='six hundred seventy-six' WHERE a=5908;\nUPDATE t2 SET c='eleven thousand eight hundred eighty-six' WHERE a=5909;\nUPDATE t2 SET c='ninety-five thousand seven hundred twenty-seven' WHERE a=5910;\nUPDATE t2 SET c='sixty thousand eight hundred sixty-two' WHERE a=5911;\nUPDATE t2 SET c='eighty-two thousand five hundred seventy-six' WHERE a=5912;\nUPDATE t2 SET c='thirteen thousand nine hundred seventy-three' WHERE a=5913;\nUPDATE t2 SET c='seventy thousand five hundred eighty-two' WHERE a=5914;\nUPDATE t2 SET c='eighty-five thousand two hundred fifty-three' WHERE a=5915;\nUPDATE t2 SET c='fifty-six thousand seven hundred thirty-four' WHERE a=5916;\nUPDATE t2 SET c='forty-two thousand five hundred ninety-five' WHERE a=5917;\nUPDATE t2 SET c='fifty-three thousand two hundred thirty-six' WHERE a=5918;\nUPDATE t2 SET c='fifty-five thousand four hundred three' WHERE a=5919;\nUPDATE t2 SET c='thirty-eight thousand six hundred fifty-eight' WHERE a=5920;\nUPDATE t2 SET c='ninety-three thousand four hundred thirty-nine' WHERE a=5921;\nUPDATE t2 SET c='fifty-four thousand eight hundred sixty-five' WHERE a=5922;\nUPDATE t2 SET c='eighty-seven thousand nine hundred thirty-one' WHERE a=5923;\nUPDATE t2 SET c='thirty-three thousand six hundred thirty-two' WHERE a=5924;\nUPDATE t2 SET c='two thousand one hundred fifty-one' WHERE a=5925;\nUPDATE t2 SET c='eighty-five thousand seventy-two' WHERE a=5926;\nUPDATE t2 SET c='forty-five thousand six hundred sixty-two' WHERE a=5927;\nUPDATE t2 SET c='ten thousand four hundred ninety' WHERE a=5928;\nUPDATE t2 SET c='ninety-nine thousand seven hundred ninety-six' WHERE a=5929;\nUPDATE t2 SET c='thirty-eight thousand two hundred eighty-seven' WHERE a=5930;\nUPDATE t2 SET c='eleven thousand four hundred forty-eight' WHERE a=5931;\nUPDATE t2 SET c='sixty-seven thousand three hundred seventy-one' WHERE a=5932;\nUPDATE t2 SET c='fifty-three thousand three hundred fifty-five' WHERE a=5933;\nUPDATE t2 SET c='forty-eight thousand six hundred eleven' WHERE a=5934;\nUPDATE t2 SET c='thirty-nine thousand two hundred thirty-four' WHERE a=5935;\nUPDATE t2 SET c='twenty-four thousand five hundred thirty-six' WHERE a=5936;\nUPDATE t2 SET c='four thousand eight hundred eighty' WHERE a=5937;\nUPDATE t2 SET c='five thousand one hundred ninety-seven' WHERE a=5938;\nUPDATE t2 SET c='sixty-eight thousand six hundred seventy' WHERE a=5939;\nUPDATE t2 SET c='thirty-nine thousand nine hundred forty-three' WHERE a=5940;\nUPDATE t2 SET c='twenty thousand one hundred sixty' WHERE a=5941;\nUPDATE t2 SET c='twenty-seven thousand three hundred forty' WHERE a=5942;\nUPDATE t2 SET c='thirty-one thousand three hundred three' WHERE a=5943;\nUPDATE t2 SET c='ninety-five thousand one hundred eighteen' WHERE a=5944;\nUPDATE t2 SET c='ten thousand seven hundred eleven' WHERE a=5945;\nUPDATE t2 SET c='five thousand nine hundred fifty' WHERE a=5946;\nUPDATE t2 SET c='nineteen thousand nine hundred forty-four' WHERE a=5947;\nUPDATE t2 SET c='ninety-six thousand eight hundred fifty-five' WHERE a=5948;\nUPDATE t2 SET c='sixty-one thousand five hundred two' WHERE a=5949;\nUPDATE t2 SET c='eighty-five thousand three hundred seventy-one' WHERE a=5950;\nUPDATE t2 SET c='forty-nine thousand three hundred eighty-six' WHERE a=5951;\nUPDATE t2 SET c='seventy-six thousand one hundred thirty-three' WHERE a=5952;\nUPDATE t2 SET c='eighty-seven thousand one hundred fifty' WHERE a=5953;\nUPDATE t2 SET c='thirty-three thousand nine hundred five' WHERE a=5954;\nUPDATE t2 SET c='sixty-four thousand thirty' WHERE a=5955;\nUPDATE t2 SET c='two thousand seven hundred thirty-two' WHERE a=5956;\nUPDATE t2 SET c='seventy-two thousand two hundred thirty-two' WHERE a=5957;\nUPDATE t2 SET c='sixty-six thousand nine hundred twenty-nine' WHERE a=5958;\nUPDATE t2 SET c='twenty-eight thousand seven hundred fifty-three' WHERE a=5959;\nUPDATE t2 SET c='seventy-six thousand two hundred thirty-eight' WHERE a=5960;\nUPDATE t2 SET c='thirty-five thousand four hundred forty-two' WHERE a=5961;\nUPDATE t2 SET c='forty-six thousand three hundred fifty-three' WHERE a=5962;\nUPDATE t2 SET c='fifty-three thousand three hundred thirty-nine' WHERE a=5963;\nUPDATE t2 SET c='eighty-one thousand seven hundred thirty-three' WHERE a=5964;\nUPDATE t2 SET c='ninety-three thousand one hundred ninety-six' WHERE a=5965;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-nine' WHERE a=5966;\nUPDATE t2 SET c='ninety-two thousand two hundred twenty-eight' WHERE a=5967;\nUPDATE t2 SET c='seventy-five thousand five hundred thirty' WHERE a=5968;\nUPDATE t2 SET c='sixty-six thousand nine hundred thirty-seven' WHERE a=5969;\nUPDATE t2 SET c='two thousand five hundred forty-one' WHERE a=5970;\nUPDATE t2 SET c='thirty-one thousand four hundred' WHERE a=5971;\nUPDATE t2 SET c='sixty-six thousand eight hundred forty-two' WHERE a=5972;\nUPDATE t2 SET c='four thousand three hundred seventy-seven' WHERE a=5973;\nUPDATE t2 SET c='sixty thousand four hundred ten' WHERE a=5974;\nUPDATE t2 SET c='three thousand eight hundred thirty-seven' WHERE a=5975;\nUPDATE t2 SET c='ninety-nine thousand nine hundred twenty-four' WHERE a=5976;\nUPDATE t2 SET c='sixty-eight thousand one hundred fifty' WHERE a=5977;\nUPDATE t2 SET c='forty-nine thousand six hundred ninety-five' WHERE a=5978;\nUPDATE t2 SET c='two thousand two hundred thirty-four' WHERE a=5979;\nUPDATE t2 SET c='eight thousand eight hundred eighty-three' WHERE a=5980;\nUPDATE t2 SET c='seventy thousand thirteen' WHERE a=5981;\nUPDATE t2 SET c='forty-seven thousand eight hundred fourteen' WHERE a=5982;\nUPDATE t2 SET c='five thousand nine hundred forty-one' WHERE a=5983;\nUPDATE t2 SET c='nine thousand six hundred thirty' WHERE a=5984;\nUPDATE t2 SET c='five thousand four hundred nineteen' WHERE a=5985;\nUPDATE t2 SET c='ninety-seven thousand eight hundred thirty-seven' WHERE a=5986;\nUPDATE t2 SET c='forty-seven thousand two hundred six' WHERE a=5987;\nUPDATE t2 SET c='thirty-three thousand three hundred sixty-five' WHERE a=5988;\nUPDATE t2 SET c='twenty-one thousand two hundred fifty-four' WHERE a=5989;\nUPDATE t2 SET c='twenty-one thousand sixty-five' WHERE a=5990;\nUPDATE t2 SET c='forty-six thousand seven hundred sixty-four' WHERE a=5991;\nUPDATE t2 SET c='seventy thousand one hundred ninety-nine' WHERE a=5992;\nUPDATE t2 SET c='sixty-one thousand one hundred fifty-two' WHERE a=5993;\nUPDATE t2 SET c='sixty-one thousand two hundred sixty-four' WHERE a=5994;\nUPDATE t2 SET c='thirty-nine thousand five hundred fifteen' WHERE a=5995;\nUPDATE t2 SET c='eighty-four thousand six hundred ninety-five' WHERE a=5996;\nUPDATE t2 SET c='ninety-six thousand four hundred seventy-three' WHERE a=5997;\nUPDATE t2 SET c='ninety-six thousand nine hundred five' WHERE a=5998;\nUPDATE t2 SET c='forty-three thousand five hundred forty-four' WHERE a=5999;\nUPDATE t2 SET c='four thousand eight hundred ninety-five' WHERE a=6000;\nUPDATE t2 SET c='seventy thousand eight hundred seventy' WHERE a=6001;\nUPDATE t2 SET c='forty-two thousand seven hundred twenty-six' WHERE a=6002;\nUPDATE t2 SET c='sixty-four thousand three hundred eighty-four' WHERE a=6003;\nUPDATE t2 SET c='thirty thousand three hundred thirty-six' WHERE a=6004;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-four' WHERE a=6005;\nUPDATE t2 SET c='six thousand seventy-seven' WHERE a=6006;\nUPDATE t2 SET c='thirty-two thousand nine hundred' WHERE a=6007;\nUPDATE t2 SET c='one thousand six hundred seventy-three' WHERE a=6008;\nUPDATE t2 SET c='forty-six thousand two hundred seven' WHERE a=6009;\nUPDATE t2 SET c='forty-six thousand nine hundred seventy-seven' WHERE a=6010;\nUPDATE t2 SET c='forty-three thousand one hundred ninety' WHERE a=6011;\nUPDATE t2 SET c='nineteen thousand five hundred twenty-seven' WHERE a=6012;\nUPDATE t2 SET c='ninety-eight thousand five hundred seventy-five' WHERE a=6013;\nUPDATE t2 SET c='seventy-one thousand nine hundred nineteen' WHERE a=6014;\nUPDATE t2 SET c='forty-four thousand eight hundred five' WHERE a=6015;\nUPDATE t2 SET c='one hundred two' WHERE a=6016;\nUPDATE t2 SET c='forty-one thousand three hundred thirty' WHERE a=6017;\nUPDATE t2 SET c='sixteen thousand forty-five' WHERE a=6018;\nUPDATE t2 SET c='seventy-one thousand seven hundred forty-three' WHERE a=6019;\nUPDATE t2 SET c='eighty-nine thousand three hundred eighty-six' WHERE a=6020;\nUPDATE t2 SET c='fifty thousand four hundred seventy-three' WHERE a=6021;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-four' WHERE a=6022;\nUPDATE t2 SET c='ninety-seven thousand two hundred fourteen' WHERE a=6023;\nUPDATE t2 SET c='ninety-four thousand one hundred forty-two' WHERE a=6024;\nUPDATE t2 SET c='sixty-four thousand one hundred thirteen' WHERE a=6025;\nUPDATE t2 SET c='eleven thousand two hundred one' WHERE a=6026;\nUPDATE t2 SET c='seventy-three thousand seven hundred ninety-one' WHERE a=6027;\nUPDATE t2 SET c='eighty-nine thousand five hundred ninety-five' WHERE a=6028;\nUPDATE t2 SET c='five hundred nine' WHERE a=6029;\nUPDATE t2 SET c='sixty-one thousand seven hundred thirty-one' WHERE a=6030;\nUPDATE t2 SET c='six thousand four hundred twenty-seven' WHERE a=6031;\nUPDATE t2 SET c='ninety-four thousand eight hundred seventy-eight' WHERE a=6032;\nUPDATE t2 SET c='ninety-seven thousand four hundred forty-four' WHERE a=6033;\nUPDATE t2 SET c='sixty-eight thousand six hundred sixty-eight' WHERE a=6034;\nUPDATE t2 SET c='twenty-six thousand three' WHERE a=6035;\nUPDATE t2 SET c='forty-four thousand seven hundred sixty' WHERE a=6036;\nUPDATE t2 SET c='seventy thousand ninety-two' WHERE a=6037;\nUPDATE t2 SET c='ninety-nine thousand seven hundred fifty-six' WHERE a=6038;\nUPDATE t2 SET c='forty-nine thousand eight hundred thirty-six' WHERE a=6039;\nUPDATE t2 SET c='seventy thousand nine hundred twenty-four' WHERE a=6040;\nUPDATE t2 SET c='forty-one thousand two' WHERE a=6041;\nUPDATE t2 SET c='eighty-one thousand six hundred forty-one' WHERE a=6042;\nUPDATE t2 SET c='thirty-two thousand four hundred one' WHERE a=6043;\nUPDATE t2 SET c='sixty-four thousand one hundred ninety-six' WHERE a=6044;\nUPDATE t2 SET c='fifteen thousand six hundred seventy-two' WHERE a=6045;\nUPDATE t2 SET c='forty-one thousand fifteen' WHERE a=6046;\nUPDATE t2 SET c='ninety-eight thousand nine hundred eighty-seven' WHERE a=6047;\nUPDATE t2 SET c='forty thousand two hundred sixty-two' WHERE a=6048;\nUPDATE t2 SET c='twenty-one thousand nine hundred one' WHERE a=6049;\nUPDATE t2 SET c='forty-nine thousand four hundred two' WHERE a=6050;\nUPDATE t2 SET c='five thousand seven hundred sixty-eight' WHERE a=6051;\nUPDATE t2 SET c='eighty-nine thousand four hundred thirty' WHERE a=6052;\nUPDATE t2 SET c='fourteen thousand nine hundred sixty-nine' WHERE a=6053;\nUPDATE t2 SET c='fifty-nine thousand five hundred sixty-four' WHERE a=6054;\nUPDATE t2 SET c='ninety-five thousand four hundred eighty-nine' WHERE a=6055;\nUPDATE t2 SET c='thirty-six thousand four hundred' WHERE a=6056;\nUPDATE t2 SET c='twenty-seven thousand six hundred five' WHERE a=6057;\nUPDATE t2 SET c='seventeen thousand' WHERE a=6058;\nUPDATE t2 SET c='thirty-five thousand four hundred eighty-three' WHERE a=6059;\nUPDATE t2 SET c='eight thousand one hundred fifty-seven' WHERE a=6060;\nUPDATE t2 SET c='seventy-three thousand eight hundred seventy' WHERE a=6061;\nUPDATE t2 SET c='seventy-eight thousand six hundred fifty-seven' WHERE a=6062;\nUPDATE t2 SET c='seventy-one thousand three hundred forty-six' WHERE a=6063;\nUPDATE t2 SET c='sixty-four thousand twenty-two' WHERE a=6064;\nUPDATE t2 SET c='eleven thousand two hundred forty-two' WHERE a=6065;\nUPDATE t2 SET c='eighty-five thousand four hundred ninety-nine' WHERE a=6066;\nUPDATE t2 SET c='twenty thousand two hundred sixty-nine' WHERE a=6067;\nUPDATE t2 SET c='seventy-four thousand four hundred seventy-five' WHERE a=6068;\nUPDATE t2 SET c='thirty-one thousand two hundred fifty-two' WHERE a=6069;\nUPDATE t2 SET c='twenty-seven thousand ninety-four' WHERE a=6070;\nUPDATE t2 SET c='five thousand twenty-six' WHERE a=6071;\nUPDATE t2 SET c='twenty-five thousand four hundred forty-two' WHERE a=6072;\nUPDATE t2 SET c='forty-seven thousand nine hundred fifty-two' WHERE a=6073;\nUPDATE t2 SET c='twenty-nine thousand eighty-nine' WHERE a=6074;\nUPDATE t2 SET c='fifty-five thousand nine hundred twenty-six' WHERE a=6075;\nUPDATE t2 SET c='twenty-six thousand seven hundred sixty-four' WHERE a=6076;\nUPDATE t2 SET c='seventeen thousand seven hundred thirty-three' WHERE a=6077;\nUPDATE t2 SET c='fifteen thousand five hundred forty' WHERE a=6078;\nUPDATE t2 SET c='twenty-two thousand one hundred forty-six' WHERE a=6079;\nUPDATE t2 SET c='seventy-three thousand five hundred ninety-two' WHERE a=6080;\nUPDATE t2 SET c='five thousand four' WHERE a=6081;\nUPDATE t2 SET c='forty-seven thousand three hundred ninety-six' WHERE a=6082;\nUPDATE t2 SET c='thirty-seven thousand seven hundred eighty-five' WHERE a=6083;\nUPDATE t2 SET c='thirteen thousand four hundred fifty-two' WHERE a=6084;\nUPDATE t2 SET c='seventy-three thousand eight hundred forty-two' WHERE a=6085;\nUPDATE t2 SET c='seventy-seven thousand five hundred ninety-nine' WHERE a=6086;\nUPDATE t2 SET c='seventy-six thousand nine hundred sixty-nine' WHERE a=6087;\nUPDATE t2 SET c='eighty-five thousand seven hundred thirty-four' WHERE a=6088;\nUPDATE t2 SET c='sixty-three thousand seven hundred sixty-nine' WHERE a=6089;\nUPDATE t2 SET c='ninety-three thousand one hundred thirty-four' WHERE a=6090;\nUPDATE t2 SET c='seventy-one thousand six hundred twenty-three' WHERE a=6091;\nUPDATE t2 SET c='sixty-five thousand eight hundred forty' WHERE a=6092;\nUPDATE t2 SET c='one thousand one hundred eighty-three' WHERE a=6093;\nUPDATE t2 SET c='sixty-one thousand nine hundred thirty-two' WHERE a=6094;\nUPDATE t2 SET c='eighty-one thousand nine hundred twenty' WHERE a=6095;\nUPDATE t2 SET c='twenty-one thousand five hundred thirty-four' WHERE a=6096;\nUPDATE t2 SET c='sixty-eight thousand twelve' WHERE a=6097;\nUPDATE t2 SET c='twenty-one thousand seven hundred twenty-three' WHERE a=6098;\nUPDATE t2 SET c='three thousand two hundred ninety-seven' WHERE a=6099;\nUPDATE t2 SET c='ninety-three thousand five hundred seventy-eight' WHERE a=6100;\nUPDATE t2 SET c='forty-nine thousand four hundred forty-nine' WHERE a=6101;\nUPDATE t2 SET c='eighty-five thousand seven hundred eighteen' WHERE a=6102;\nUPDATE t2 SET c='sixty-five thousand seven hundred ten' WHERE a=6103;\nUPDATE t2 SET c='fifty thousand four hundred thirty-five' WHERE a=6104;\nUPDATE t2 SET c='fifty-five thousand fifty-three' WHERE a=6105;\nUPDATE t2 SET c='ninety-six thousand seven hundred sixty-three' WHERE a=6106;\nUPDATE t2 SET c='seventy-six thousand one hundred eighty-six' WHERE a=6107;\nUPDATE t2 SET c='forty-one thousand seven hundred eleven' WHERE a=6108;\nUPDATE t2 SET c='seventy-four thousand eight hundred ninety-nine' WHERE a=6109;\nUPDATE t2 SET c='three thousand seven hundred seventy-eight' WHERE a=6110;\nUPDATE t2 SET c='fifty-nine thousand three hundred thirty-one' WHERE a=6111;\nUPDATE t2 SET c='six thousand eight hundred ninety-one' WHERE a=6112;\nUPDATE t2 SET c='thirty-four thousand seven hundred seventy-eight' WHERE a=6113;\nUPDATE t2 SET c='ninety-five thousand eight hundred fifteen' WHERE a=6114;\nUPDATE t2 SET c='fifty-four thousand five hundred eighty-three' WHERE a=6115;\nUPDATE t2 SET c='thirty-four thousand two hundred sixty-two' WHERE a=6116;\nUPDATE t2 SET c='sixty-eight thousand three hundred forty-nine' WHERE a=6117;\nUPDATE t2 SET c='sixty-five thousand eight hundred thirty-eight' WHERE a=6118;\nUPDATE t2 SET c='forty-eight thousand seven hundred seventeen' WHERE a=6119;\nUPDATE t2 SET c='twenty-eight thousand two hundred twenty' WHERE a=6120;\nUPDATE t2 SET c='seventy-six thousand two hundred four' WHERE a=6121;\nUPDATE t2 SET c='fifteen thousand one hundred ninety-seven' WHERE a=6122;\nUPDATE t2 SET c='seventy-three thousand seven hundred two' WHERE a=6123;\nUPDATE t2 SET c='fifty thousand two hundred twenty-two' WHERE a=6124;\nUPDATE t2 SET c='twenty-six thousand seventy-six' WHERE a=6125;\nUPDATE t2 SET c='thirty-one thousand eight hundred five' WHERE a=6126;\nUPDATE t2 SET c='eighty-two thousand eight hundred forty-seven' WHERE a=6127;\nUPDATE t2 SET c='seventy-one thousand nine hundred thirteen' WHERE a=6128;\nUPDATE t2 SET c='fifty-four thousand four hundred twenty-seven' WHERE a=6129;\nUPDATE t2 SET c='forty-one thousand eight hundred eighty-seven' WHERE a=6130;\nUPDATE t2 SET c='forty-eight thousand one hundred forty' WHERE a=6131;\nUPDATE t2 SET c='seventy-six thousand three hundred twenty-seven' WHERE a=6132;\nUPDATE t2 SET c='seventy thousand twenty-one' WHERE a=6133;\nUPDATE t2 SET c='ninety-two thousand seven hundred ninety-five' WHERE a=6134;\nUPDATE t2 SET c='forty-seven thousand six hundred fifty-three' WHERE a=6135;\nUPDATE t2 SET c='fifty-two thousand nine hundred nine' WHERE a=6136;\nUPDATE t2 SET c='sixty thousand one hundred fifty-five' WHERE a=6137;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-seven' WHERE a=6138;\nUPDATE t2 SET c='seventy-eight thousand two hundred nine' WHERE a=6139;\nUPDATE t2 SET c='eighty-five thousand eight hundred sixty-eight' WHERE a=6140;\nUPDATE t2 SET c='eighty-nine thousand two hundred forty-nine' WHERE a=6141;\nUPDATE t2 SET c='ninety-five thousand one hundred fifty-nine' WHERE a=6142;\nUPDATE t2 SET c='sixty-two thousand one hundred ninety-one' WHERE a=6143;\nUPDATE t2 SET c='twenty-one thousand four hundred ten' WHERE a=6144;\nUPDATE t2 SET c='ninety-seven thousand four hundred thirty-five' WHERE a=6145;\nUPDATE t2 SET c='forty-eight thousand four hundred fifty-eight' WHERE a=6146;\nUPDATE t2 SET c='forty-six thousand six hundred forty-four' WHERE a=6147;\nUPDATE t2 SET c='seventy-nine thousand five hundred thirty-six' WHERE a=6148;\nUPDATE t2 SET c='forty-nine thousand nine hundred thirty-four' WHERE a=6149;\nUPDATE t2 SET c='fifty thousand nine hundred' WHERE a=6150;\nUPDATE t2 SET c='ninety-five thousand nine hundred twenty-two' WHERE a=6151;\nUPDATE t2 SET c='seven thousand nine hundred forty-four' WHERE a=6152;\nUPDATE t2 SET c='sixty-nine thousand forty-four' WHERE a=6153;\nUPDATE t2 SET c='thirty-nine thousand eight hundred thirty-six' WHERE a=6154;\nUPDATE t2 SET c='fifty-one thousand forty-three' WHERE a=6155;\nUPDATE t2 SET c='sixty-three thousand two hundred seventy-two' WHERE a=6156;\nUPDATE t2 SET c='thirty thousand three hundred six' WHERE a=6157;\nUPDATE t2 SET c='eighty-six thousand four hundred sixty-five' WHERE a=6158;\nUPDATE t2 SET c='eighty-eight thousand eight hundred eighty-three' WHERE a=6159;\nUPDATE t2 SET c='thirty-eight thousand four hundred eighty-six' WHERE a=6160;\nUPDATE t2 SET c='twenty-five thousand two hundred fifty-five' WHERE a=6161;\nUPDATE t2 SET c='seventy-two thousand nine hundred' WHERE a=6162;\nUPDATE t2 SET c='ninety-five thousand two hundred eighty-two' WHERE a=6163;\nUPDATE t2 SET c='fifty-two thousand seven hundred seven' WHERE a=6164;\nUPDATE t2 SET c='three thousand seven hundred ninety-one' WHERE a=6165;\nUPDATE t2 SET c='sixty-nine thousand seven hundred twenty-seven' WHERE a=6166;\nUPDATE t2 SET c='eighty-five thousand eight hundred seventy' WHERE a=6167;\nUPDATE t2 SET c='twenty-nine thousand four hundred eighty-seven' WHERE a=6168;\nUPDATE t2 SET c='thirty-seven thousand twenty-one' WHERE a=6169;\nUPDATE t2 SET c='twenty-two thousand one hundred forty-three' WHERE a=6170;\nUPDATE t2 SET c='thirty-four thousand eight hundred seven' WHERE a=6171;\nUPDATE t2 SET c='ninety-one thousand two hundred thirty-nine' WHERE a=6172;\nUPDATE t2 SET c='twenty thousand three hundred seventy' WHERE a=6173;\nUPDATE t2 SET c='ninety-one thousand six hundred ninety-six' WHERE a=6174;\nUPDATE t2 SET c='seventy-eight thousand six hundred thirty-three' WHERE a=6175;\nUPDATE t2 SET c='eighty-nine thousand twenty-seven' WHERE a=6176;\nUPDATE t2 SET c='twenty-six thousand eight hundred forty-four' WHERE a=6177;\nUPDATE t2 SET c='ninety-six thousand nine hundred eighty-eight' WHERE a=6178;\nUPDATE t2 SET c='twenty-eight thousand three hundred seventy-three' WHERE a=6179;\nUPDATE t2 SET c='fifty-five thousand six hundred ninety' WHERE a=6180;\nUPDATE t2 SET c='eleven thousand one hundred ninety-two' WHERE a=6181;\nUPDATE t2 SET c='seventy-one thousand six hundred six' WHERE a=6182;\nUPDATE t2 SET c='sixteen thousand four hundred fifteen' WHERE a=6183;\nUPDATE t2 SET c='eighty-two thousand six hundred fifty-three' WHERE a=6184;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-four' WHERE a=6185;\nUPDATE t2 SET c='fifty-five thousand three hundred twenty-eight' WHERE a=6186;\nUPDATE t2 SET c='thirty-three thousand four hundred forty-three' WHERE a=6187;\nUPDATE t2 SET c='twenty-nine thousand three hundred fifty-eight' WHERE a=6188;\nUPDATE t2 SET c='sixty-nine thousand three hundred eighteen' WHERE a=6189;\nUPDATE t2 SET c='thirty-two thousand five hundred ninety-three' WHERE a=6190;\nUPDATE t2 SET c='seventy-eight thousand three hundred forty-seven' WHERE a=6191;\nUPDATE t2 SET c='thirty-two thousand eight hundred seventy-seven' WHERE a=6192;\nUPDATE t2 SET c='fourteen thousand three hundred ninety' WHERE a=6193;\nUPDATE t2 SET c='forty-eight thousand six hundred forty-six' WHERE a=6194;\nUPDATE t2 SET c='forty-six thousand five hundred ten' WHERE a=6195;\nUPDATE t2 SET c='eighteen thousand nine hundred seventy-nine' WHERE a=6196;\nUPDATE t2 SET c='seventy-five thousand seven hundred eighty-two' WHERE a=6197;\nUPDATE t2 SET c='forty-eight thousand one hundred seventy-six' WHERE a=6198;\nUPDATE t2 SET c='sixty-eight thousand seven hundred sixty-four' WHERE a=6199;\nUPDATE t2 SET c='ninety-seven thousand eight hundred eighteen' WHERE a=6200;\nUPDATE t2 SET c='twenty-six thousand two hundred five' WHERE a=6201;\nUPDATE t2 SET c='eighty-six thousand one hundred thirty-eight' WHERE a=6202;\nUPDATE t2 SET c='eighty-eight thousand eighty-nine' WHERE a=6203;\nUPDATE t2 SET c='seventy-four thousand six hundred ninety' WHERE a=6204;\nUPDATE t2 SET c='forty thousand eighty-five' WHERE a=6205;\nUPDATE t2 SET c='seventy-one thousand three hundred twenty-one' WHERE a=6206;\nUPDATE t2 SET c='ninety-eight thousand two hundred thirteen' WHERE a=6207;\nUPDATE t2 SET c='twenty-two thousand five' WHERE a=6208;\nUPDATE t2 SET c='seventy thousand three hundred ninety-seven' WHERE a=6209;\nUPDATE t2 SET c='nine thousand eight hundred eleven' WHERE a=6210;\nUPDATE t2 SET c='twenty-five thousand seventy-five' WHERE a=6211;\nUPDATE t2 SET c='fifty-four thousand nine hundred twenty' WHERE a=6212;\nUPDATE t2 SET c='ninety-three thousand one hundred sixty-four' WHERE a=6213;\nUPDATE t2 SET c='eleven thousand four hundred fifty-two' WHERE a=6214;\nUPDATE t2 SET c='thirty-eight thousand eight hundred sixty-nine' WHERE a=6215;\nUPDATE t2 SET c='ninety thousand seven hundred twenty-three' WHERE a=6216;\nUPDATE t2 SET c='sixty-four thousand four hundred eighty-one' WHERE a=6217;\nUPDATE t2 SET c='fifty-three thousand three hundred thirty-three' WHERE a=6218;\nUPDATE t2 SET c='forty-eight thousand sixty-six' WHERE a=6219;\nUPDATE t2 SET c='thirty-two thousand one hundred sixty-eight' WHERE a=6220;\nUPDATE t2 SET c='forty thousand seven hundred three' WHERE a=6221;\nUPDATE t2 SET c='three thousand seven hundred nine' WHERE a=6222;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-five' WHERE a=6223;\nUPDATE t2 SET c='twenty-nine thousand six hundred six' WHERE a=6224;\nUPDATE t2 SET c='twenty-nine thousand thirteen' WHERE a=6225;\nUPDATE t2 SET c='sixty-nine thousand six hundred sixty-three' WHERE a=6226;\nUPDATE t2 SET c='thirteen thousand four hundred eighty-three' WHERE a=6227;\nUPDATE t2 SET c='seventy-seven thousand nine hundred forty-two' WHERE a=6228;\nUPDATE t2 SET c='ninety-four thousand thirty-one' WHERE a=6229;\nUPDATE t2 SET c='twenty-four thousand nine hundred eleven' WHERE a=6230;\nUPDATE t2 SET c='fifty-two thousand six hundred sixty-four' WHERE a=6231;\nUPDATE t2 SET c='forty-two thousand eight hundred twenty-one' WHERE a=6232;\nUPDATE t2 SET c='seventy-seven thousand three hundred forty' WHERE a=6233;\nUPDATE t2 SET c='seventy-four thousand one hundred twelve' WHERE a=6234;\nUPDATE t2 SET c='one thousand five hundred seventy' WHERE a=6235;\nUPDATE t2 SET c='seventy-five thousand three hundred seventy-one' WHERE a=6236;\nUPDATE t2 SET c='nineteen thousand nine hundred twenty-four' WHERE a=6237;\nUPDATE t2 SET c='seventy-six thousand nine hundred' WHERE a=6238;\nUPDATE t2 SET c='ninety-nine thousand four hundred ninety-nine' WHERE a=6239;\nUPDATE t2 SET c='seventy thousand seven hundred thirty-seven' WHERE a=6240;\nUPDATE t2 SET c='eighty-eight thousand four hundred nine' WHERE a=6241;\nUPDATE t2 SET c='thirteen thousand three hundred thirty-four' WHERE a=6242;\nUPDATE t2 SET c='twenty-eight thousand four hundred six' WHERE a=6243;\nUPDATE t2 SET c='ninety-seven thousand eight hundred five' WHERE a=6244;\nUPDATE t2 SET c='twelve thousand six hundred fifty-five' WHERE a=6245;\nUPDATE t2 SET c='fourteen thousand eight hundred ninety-five' WHERE a=6246;\nUPDATE t2 SET c='eighteen thousand four hundred sixty-six' WHERE a=6247;\nUPDATE t2 SET c='eighty-nine thousand one hundred four' WHERE a=6248;\nUPDATE t2 SET c='sixty-two thousand seven hundred ninety-six' WHERE a=6249;\nUPDATE t2 SET c='forty-one thousand eight hundred fifty-eight' WHERE a=6250;\nUPDATE t2 SET c='twenty-two thousand eight hundred ninety-two' WHERE a=6251;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-one' WHERE a=6252;\nUPDATE t2 SET c='seventy-one thousand seven hundred eighteen' WHERE a=6253;\nUPDATE t2 SET c='eighty-nine thousand nine hundred seventy-two' WHERE a=6254;\nUPDATE t2 SET c='sixty-three thousand two hundred sixty-one' WHERE a=6255;\nUPDATE t2 SET c='thirty-one thousand three hundred fourteen' WHERE a=6256;\nUPDATE t2 SET c='ninety-four thousand seven hundred' WHERE a=6257;\nUPDATE t2 SET c='forty-five thousand eight hundred one' WHERE a=6258;\nUPDATE t2 SET c='sixty-one thousand twelve' WHERE a=6259;\nUPDATE t2 SET c='fifty-seven thousand seven hundred sixty-two' WHERE a=6260;\nUPDATE t2 SET c='four thousand six hundred fifty-nine' WHERE a=6261;\nUPDATE t2 SET c='fifty-six thousand seventy-six' WHERE a=6262;\nUPDATE t2 SET c='fifty-six thousand five hundred forty' WHERE a=6263;\nUPDATE t2 SET c='seventy-one thousand nine hundred forty-eight' WHERE a=6264;\nUPDATE t2 SET c='thirty thousand six hundred seventy' WHERE a=6265;\nUPDATE t2 SET c='sixteen thousand six hundred forty-three' WHERE a=6266;\nUPDATE t2 SET c='nine thousand sixty-seven' WHERE a=6267;\nUPDATE t2 SET c='twenty-eight thousand five hundred thirty-four' WHERE a=6268;\nUPDATE t2 SET c='fifty-one thousand nine hundred two' WHERE a=6269;\nUPDATE t2 SET c='twenty-nine thousand two hundred thirty-four' WHERE a=6270;\nUPDATE t2 SET c='eighteen thousand two hundred sixty' WHERE a=6271;\nUPDATE t2 SET c='thirty-eight thousand one hundred twenty-one' WHERE a=6272;\nUPDATE t2 SET c='seventy-three thousand four hundred twelve' WHERE a=6273;\nUPDATE t2 SET c='three thousand two hundred eighty-seven' WHERE a=6274;\nUPDATE t2 SET c='seven thousand six hundred forty' WHERE a=6275;\nUPDATE t2 SET c='forty-two thousand three hundred thirty-six' WHERE a=6276;\nUPDATE t2 SET c='forty-one thousand five hundred fifty-seven' WHERE a=6277;\nUPDATE t2 SET c='eighty-three thousand three hundred seventy-four' WHERE a=6278;\nUPDATE t2 SET c='ninety-five thousand five hundred nine' WHERE a=6279;\nUPDATE t2 SET c='eighty-one thousand eight hundred sixty-nine' WHERE a=6280;\nUPDATE t2 SET c='thirty-four thousand six hundred fifteen' WHERE a=6281;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty-seven' WHERE a=6282;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-six' WHERE a=6283;\nUPDATE t2 SET c='fifty-six thousand six hundred seventy-four' WHERE a=6284;\nUPDATE t2 SET c='eighty-four thousand eight hundred thirty-eight' WHERE a=6285;\nUPDATE t2 SET c='twenty-four thousand three hundred forty-nine' WHERE a=6286;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty-one' WHERE a=6287;\nUPDATE t2 SET c='twenty-five thousand four hundred fifty-two' WHERE a=6288;\nUPDATE t2 SET c='seventeen thousand nine hundred sixty-four' WHERE a=6289;\nUPDATE t2 SET c='sixty-six thousand nine hundred thirty-three' WHERE a=6290;\nUPDATE t2 SET c='seventy-four thousand seven hundred seventy-seven' WHERE a=6291;\nUPDATE t2 SET c='one thousand four hundred twenty-nine' WHERE a=6292;\nUPDATE t2 SET c='nineteen thousand six hundred eleven' WHERE a=6293;\nUPDATE t2 SET c='thirty-four thousand four hundred ten' WHERE a=6294;\nUPDATE t2 SET c='forty-three thousand four hundred fifty-seven' WHERE a=6295;\nUPDATE t2 SET c='ninety-three thousand three hundred ninety' WHERE a=6296;\nUPDATE t2 SET c='eighty-six thousand three hundred ninety-six' WHERE a=6297;\nUPDATE t2 SET c='fifty-nine thousand six hundred fifteen' WHERE a=6298;\nUPDATE t2 SET c='eighty-six thousand seven hundred fifty-six' WHERE a=6299;\nUPDATE t2 SET c='one thousand one hundred ninety-nine' WHERE a=6300;\nUPDATE t2 SET c='fifty-seven thousand eight hundred seventeen' WHERE a=6301;\nUPDATE t2 SET c='four thousand four hundred seventy' WHERE a=6302;\nUPDATE t2 SET c='forty-six thousand nine hundred forty-seven' WHERE a=6303;\nUPDATE t2 SET c='sixty-three thousand seven hundred thirty-five' WHERE a=6304;\nUPDATE t2 SET c='thirty-six thousand four hundred two' WHERE a=6305;\nUPDATE t2 SET c='twelve thousand nine hundred eighty-five' WHERE a=6306;\nUPDATE t2 SET c='forty-five thousand one hundred seventy-five' WHERE a=6307;\nUPDATE t2 SET c='fifty-one thousand five hundred fifteen' WHERE a=6308;\nUPDATE t2 SET c='seventy-eight thousand three hundred eighty-five' WHERE a=6309;\nUPDATE t2 SET c='fifty-four thousand six hundred twenty-one' WHERE a=6310;\nUPDATE t2 SET c='fifty-four thousand five hundred sixty-five' WHERE a=6311;\nUPDATE t2 SET c='twenty-six thousand nine hundred fifty-eight' WHERE a=6312;\nUPDATE t2 SET c='fifty thousand thirty-two' WHERE a=6313;\nUPDATE t2 SET c='twenty-nine thousand nine hundred fifty-eight' WHERE a=6314;\nUPDATE t2 SET c='four thousand seven hundred forty-seven' WHERE a=6315;\nUPDATE t2 SET c='seventeen thousand sixty-four' WHERE a=6316;\nUPDATE t2 SET c='sixty-one thousand two hundred eighteen' WHERE a=6317;\nUPDATE t2 SET c='three hundred thirty-seven' WHERE a=6318;\nUPDATE t2 SET c='seven thousand two hundred ninety-seven' WHERE a=6319;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty-six' WHERE a=6320;\nUPDATE t2 SET c='sixty-six thousand three hundred ninety-six' WHERE a=6321;\nUPDATE t2 SET c='thirty-nine thousand seven hundred two' WHERE a=6322;\nUPDATE t2 SET c='forty-five thousand five hundred twenty-two' WHERE a=6323;\nUPDATE t2 SET c='forty thousand five hundred seventy-two' WHERE a=6324;\nUPDATE t2 SET c='four thousand two hundred forty-five' WHERE a=6325;\nUPDATE t2 SET c='sixty-one thousand nine hundred' WHERE a=6326;\nUPDATE t2 SET c='fifty-seven thousand six hundred sixty-nine' WHERE a=6327;\nUPDATE t2 SET c='thirteen thousand five hundred eight' WHERE a=6328;\nUPDATE t2 SET c='fifty-six thousand nine hundred two' WHERE a=6329;\nUPDATE t2 SET c='twenty-one thousand three hundred seventy-five' WHERE a=6330;\nUPDATE t2 SET c='seventy-five thousand two hundred thirty-seven' WHERE a=6331;\nUPDATE t2 SET c='fifty-four thousand five hundred fifty-five' WHERE a=6332;\nUPDATE t2 SET c='thirty-six thousand three hundred twenty-four' WHERE a=6333;\nUPDATE t2 SET c='thirty-nine thousand three hundred ninety-six' WHERE a=6334;\nUPDATE t2 SET c='fifty thousand four hundred eight' WHERE a=6335;\nUPDATE t2 SET c='twenty-five thousand five hundred thirty-six' WHERE a=6336;\nUPDATE t2 SET c='twenty-five thousand one hundred twenty-eight' WHERE a=6337;\nUPDATE t2 SET c='thirty-nine thousand sixty-nine' WHERE a=6338;\nUPDATE t2 SET c='eighteen thousand nine hundred ninety-eight' WHERE a=6339;\nUPDATE t2 SET c='twenty thousand six hundred thirty' WHERE a=6340;\nUPDATE t2 SET c='ninety-nine thousand forty-seven' WHERE a=6341;\nUPDATE t2 SET c='nine thousand four hundred sixty' WHERE a=6342;\nUPDATE t2 SET c='thirty-one thousand four hundred eighteen' WHERE a=6343;\nUPDATE t2 SET c='forty-six thousand four hundred sixty-six' WHERE a=6344;\nUPDATE t2 SET c='eighty-two thousand eight hundred seven' WHERE a=6345;\nUPDATE t2 SET c='eleven thousand three hundred three' WHERE a=6346;\nUPDATE t2 SET c='ninety-eight thousand nine hundred sixty-five' WHERE a=6347;\nUPDATE t2 SET c='sixty-eight thousand seven hundred' WHERE a=6348;\nUPDATE t2 SET c='seventy-nine thousand nine hundred eighty-seven' WHERE a=6349;\nUPDATE t2 SET c='fifty-five thousand nine hundred forty-eight' WHERE a=6350;\nUPDATE t2 SET c='eighty-two thousand one hundred seventy-two' WHERE a=6351;\nUPDATE t2 SET c='fifty thousand seven' WHERE a=6352;\nUPDATE t2 SET c='seventy-two thousand two hundred thirty-eight' WHERE a=6353;\nUPDATE t2 SET c='thirty-seven thousand six hundred ninety-three' WHERE a=6354;\nUPDATE t2 SET c='fifty-seven thousand six hundred forty-nine' WHERE a=6355;\nUPDATE t2 SET c='sixty-seven thousand one hundred seventy-four' WHERE a=6356;\nUPDATE t2 SET c='three thousand one' WHERE a=6357;\nUPDATE t2 SET c='forty-six thousand two hundred eighteen' WHERE a=6358;\nUPDATE t2 SET c='sixty-one thousand five hundred thirty-one' WHERE a=6359;\nUPDATE t2 SET c='twenty-eight thousand four hundred eighty-five' WHERE a=6360;\nUPDATE t2 SET c='seven thousand five hundred thirty-one' WHERE a=6361;\nUPDATE t2 SET c='fourteen thousand six hundred ninety-five' WHERE a=6362;\nUPDATE t2 SET c='twenty-five thousand eight hundred twenty-five' WHERE a=6363;\nUPDATE t2 SET c='forty thousand seven hundred sixty' WHERE a=6364;\nUPDATE t2 SET c='eleven thousand eight hundred forty-six' WHERE a=6365;\nUPDATE t2 SET c='fifteen thousand two hundred eighty-four' WHERE a=6366;\nUPDATE t2 SET c='forty-four thousand one hundred forty-seven' WHERE a=6367;\nUPDATE t2 SET c='ninety-one thousand five hundred seventy-two' WHERE a=6368;\nUPDATE t2 SET c='thirty-eight thousand five hundred ninety-three' WHERE a=6369;\nUPDATE t2 SET c='forty-four thousand eight hundred thirty-eight' WHERE a=6370;\nUPDATE t2 SET c='six thousand nine hundred seven' WHERE a=6371;\nUPDATE t2 SET c='sixty-three thousand one hundred ninety-two' WHERE a=6372;\nUPDATE t2 SET c='sixty-two thousand four hundred five' WHERE a=6373;\nUPDATE t2 SET c='thirty-two thousand nine hundred seventy-seven' WHERE a=6374;\nUPDATE t2 SET c='eighty-nine thousand four hundred fifty-five' WHERE a=6375;\nUPDATE t2 SET c='twenty-eight thousand four hundred sixty-five' WHERE a=6376;\nUPDATE t2 SET c='seventy-six thousand two hundred twenty-one' WHERE a=6377;\nUPDATE t2 SET c='seventy-one thousand eight hundred sixty-three' WHERE a=6378;\nUPDATE t2 SET c='fifteen thousand four hundred forty-nine' WHERE a=6379;\nUPDATE t2 SET c='sixty-five thousand eight hundred sixty' WHERE a=6380;\nUPDATE t2 SET c='forty-five thousand four hundred eighty' WHERE a=6381;\nUPDATE t2 SET c='forty-five thousand three hundred seventy-four' WHERE a=6382;\nUPDATE t2 SET c='seven hundred ninety' WHERE a=6383;\nUPDATE t2 SET c='forty-nine thousand thirty-five' WHERE a=6384;\nUPDATE t2 SET c='ninety-four thousand three hundred seventy-one' WHERE a=6385;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-eight' WHERE a=6386;\nUPDATE t2 SET c='ninety-four thousand one hundred eighty-six' WHERE a=6387;\nUPDATE t2 SET c='twelve thousand seven hundred twelve' WHERE a=6388;\nUPDATE t2 SET c='seventy-one thousand eight hundred seventy-eight' WHERE a=6389;\nUPDATE t2 SET c='forty-five thousand three hundred twenty-nine' WHERE a=6390;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fifty-three' WHERE a=6391;\nUPDATE t2 SET c='thirty-nine thousand one hundred eighty-one' WHERE a=6392;\nUPDATE t2 SET c='ninety-three thousand five hundred seventy-eight' WHERE a=6393;\nUPDATE t2 SET c='seventy-seven thousand one hundred eighty-four' WHERE a=6394;\nUPDATE t2 SET c='eighteen thousand three hundred five' WHERE a=6395;\nUPDATE t2 SET c='ninety-four thousand two hundred forty-six' WHERE a=6396;\nUPDATE t2 SET c='sixty-six thousand seventeen' WHERE a=6397;\nUPDATE t2 SET c='sixty-five thousand twenty-three' WHERE a=6398;\nUPDATE t2 SET c='eighty thousand two hundred ninety-two' WHERE a=6399;\nUPDATE t2 SET c='fifty-six thousand five hundred seventy-six' WHERE a=6400;\nUPDATE t2 SET c='forty-eight thousand seventy-six' WHERE a=6401;\nUPDATE t2 SET c='fifty-eight thousand seven hundred thirty-eight' WHERE a=6402;\nUPDATE t2 SET c='fifty-seven thousand nine hundred forty-eight' WHERE a=6403;\nUPDATE t2 SET c='fourteen thousand eight hundred nine' WHERE a=6404;\nUPDATE t2 SET c='three thousand three hundred forty-seven' WHERE a=6405;\nUPDATE t2 SET c='ninety-five thousand five hundred five' WHERE a=6406;\nUPDATE t2 SET c='seventy-eight thousand six hundred three' WHERE a=6407;\nUPDATE t2 SET c='seventy-four thousand seven hundred eighty-three' WHERE a=6408;\nUPDATE t2 SET c='thirty-five thousand two hundred seventeen' WHERE a=6409;\nUPDATE t2 SET c='eighty-two thousand six hundred eight' WHERE a=6410;\nUPDATE t2 SET c='eighty-four thousand two hundred one' WHERE a=6411;\nUPDATE t2 SET c='seventeen thousand five hundred thirteen' WHERE a=6412;\nUPDATE t2 SET c='twenty-three thousand two hundred forty-eight' WHERE a=6413;\nUPDATE t2 SET c='two thousand nine hundred seventeen' WHERE a=6414;\nUPDATE t2 SET c='twenty-three thousand nine hundred eighty-nine' WHERE a=6415;\nUPDATE t2 SET c='sixty-six thousand two hundred fifty-eight' WHERE a=6416;\nUPDATE t2 SET c='twenty-nine thousand one hundred four' WHERE a=6417;\nUPDATE t2 SET c='ninety thousand four hundred eighty-five' WHERE a=6418;\nUPDATE t2 SET c='twenty-seven thousand three hundred three' WHERE a=6419;\nUPDATE t2 SET c='twenty-nine thousand four hundred forty-eight' WHERE a=6420;\nUPDATE t2 SET c='sixty-eight thousand six hundred forty-six' WHERE a=6421;\nUPDATE t2 SET c='one thousand four hundred fifty-one' WHERE a=6422;\nUPDATE t2 SET c='five thousand sixty-one' WHERE a=6423;\nUPDATE t2 SET c='fourteen thousand eight hundred nineteen' WHERE a=6424;\nUPDATE t2 SET c='ninety-six thousand forty-four' WHERE a=6425;\nUPDATE t2 SET c='fifteen thousand seven hundred forty-six' WHERE a=6426;\nUPDATE t2 SET c='sixty-four thousand eight hundred eighty-four' WHERE a=6427;\nUPDATE t2 SET c='thirty-three thousand two hundred eleven' WHERE a=6428;\nUPDATE t2 SET c='seventeen thousand seventy-six' WHERE a=6429;\nUPDATE t2 SET c='fifty-two thousand eight hundred thirty-four' WHERE a=6430;\nUPDATE t2 SET c='twenty thousand four hundred seventy-six' WHERE a=6431;\nUPDATE t2 SET c='ninety-six thousand two hundred eighteen' WHERE a=6432;\nUPDATE t2 SET c='eleven thousand four hundred eighty-eight' WHERE a=6433;\nUPDATE t2 SET c='eighty-one thousand seven hundred seventy' WHERE a=6434;\nUPDATE t2 SET c='eighty-eight thousand six hundred ninety-six' WHERE a=6435;\nUPDATE t2 SET c='seventy thousand five hundred thirteen' WHERE a=6436;\nUPDATE t2 SET c='seventy-six thousand six hundred sixty-four' WHERE a=6437;\nUPDATE t2 SET c='fifty-two thousand six hundred fifty-five' WHERE a=6438;\nUPDATE t2 SET c='fifty-five thousand eight hundred sixteen' WHERE a=6439;\nUPDATE t2 SET c='seventy-seven thousand five hundred two' WHERE a=6440;\nUPDATE t2 SET c='eighty-four thousand six hundred eighty-two' WHERE a=6441;\nUPDATE t2 SET c='fifteen thousand nine hundred eight' WHERE a=6442;\nUPDATE t2 SET c='eighty-nine thousand five hundred thirty-eight' WHERE a=6443;\nUPDATE t2 SET c='eighty-five thousand six hundred thirty-six' WHERE a=6444;\nUPDATE t2 SET c='nineteen thousand three hundred forty-one' WHERE a=6445;\nUPDATE t2 SET c='ninety-four thousand five hundred four' WHERE a=6446;\nUPDATE t2 SET c='sixty-six thousand three hundred twenty-seven' WHERE a=6447;\nUPDATE t2 SET c='seventy-one thousand three hundred ninety-one' WHERE a=6448;\nUPDATE t2 SET c='sixteen thousand five hundred fifty-two' WHERE a=6449;\nUPDATE t2 SET c='five thousand eight hundred' WHERE a=6450;\nUPDATE t2 SET c='fifty-three thousand seven hundred thirty-three' WHERE a=6451;\nUPDATE t2 SET c='sixty-two thousand nine hundred fifty-three' WHERE a=6452;\nUPDATE t2 SET c='twenty-five thousand seven hundred eighty-nine' WHERE a=6453;\nUPDATE t2 SET c='ninety thousand five hundred fifty-two' WHERE a=6454;\nUPDATE t2 SET c='fifty-two thousand four hundred sixteen' WHERE a=6455;\nUPDATE t2 SET c='seventy-six thousand eighty-two' WHERE a=6456;\nUPDATE t2 SET c='seventy-one thousand four hundred forty-three' WHERE a=6457;\nUPDATE t2 SET c='eighty-six thousand two hundred forty-two' WHERE a=6458;\nUPDATE t2 SET c='ninety-two thousand four hundred twenty-eight' WHERE a=6459;\nUPDATE t2 SET c='twenty-two thousand one hundred thirty-three' WHERE a=6460;\nUPDATE t2 SET c='fifty-three thousand nine hundred seventeen' WHERE a=6461;\nUPDATE t2 SET c='seventy-eight thousand forty-one' WHERE a=6462;\nUPDATE t2 SET c='eighty-eight thousand nine hundred thirty-seven' WHERE a=6463;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty-two' WHERE a=6464;\nUPDATE t2 SET c='one thousand one hundred forty-seven' WHERE a=6465;\nUPDATE t2 SET c='fifteen thousand six hundred seventy-nine' WHERE a=6466;\nUPDATE t2 SET c='forty-three thousand four hundred fifty-seven' WHERE a=6467;\nUPDATE t2 SET c='two thousand seventy-nine' WHERE a=6468;\nUPDATE t2 SET c='thirty-four thousand two hundred forty-two' WHERE a=6469;\nUPDATE t2 SET c='sixty-four thousand one hundred fifty-nine' WHERE a=6470;\nUPDATE t2 SET c='ninety-one thousand three hundred two' WHERE a=6471;\nUPDATE t2 SET c='sixty-three thousand two hundred fifty-three' WHERE a=6472;\nUPDATE t2 SET c='ninety-eight thousand five hundred seventy-two' WHERE a=6473;\nUPDATE t2 SET c='thirty-one thousand six hundred seventy-four' WHERE a=6474;\nUPDATE t2 SET c='forty-seven thousand three hundred twenty-seven' WHERE a=6475;\nUPDATE t2 SET c='forty-seven thousand eight hundred twenty-six' WHERE a=6476;\nUPDATE t2 SET c='seventy-five thousand three hundred eighty-two' WHERE a=6477;\nUPDATE t2 SET c='ninety-nine thousand two hundred seventy-three' WHERE a=6478;\nUPDATE t2 SET c='sixteen thousand seven hundred forty-two' WHERE a=6479;\nUPDATE t2 SET c='two thousand four hundred fifty-five' WHERE a=6480;\nUPDATE t2 SET c='forty-four thousand three hundred eighty-one' WHERE a=6481;\nUPDATE t2 SET c='twenty-five thousand four hundred thirty-one' WHERE a=6482;\nUPDATE t2 SET c='seventy-seven thousand one hundred twenty-four' WHERE a=6483;\nUPDATE t2 SET c='fifty-one thousand six hundred three' WHERE a=6484;\nUPDATE t2 SET c='ten thousand six hundred seventy-three' WHERE a=6485;\nUPDATE t2 SET c='ninety-two thousand one hundred forty-four' WHERE a=6486;\nUPDATE t2 SET c='ninety-four thousand one hundred eighty-six' WHERE a=6487;\nUPDATE t2 SET c='eighty-five thousand nine hundred sixty' WHERE a=6488;\nUPDATE t2 SET c='thirty-five thousand four hundred eleven' WHERE a=6489;\nUPDATE t2 SET c='sixty-one thousand six hundred sixty' WHERE a=6490;\nUPDATE t2 SET c='forty-six thousand three hundred forty-seven' WHERE a=6491;\nUPDATE t2 SET c='seven thousand nine hundred one' WHERE a=6492;\nUPDATE t2 SET c='twenty-nine thousand two hundred twenty-three' WHERE a=6493;\nUPDATE t2 SET c='forty thousand six hundred sixty-three' WHERE a=6494;\nUPDATE t2 SET c='ninety-two thousand six hundred thirty-seven' WHERE a=6495;\nUPDATE t2 SET c='seventy-six thousand nine hundred eighty-five' WHERE a=6496;\nUPDATE t2 SET c='ten thousand one hundred five' WHERE a=6497;\nUPDATE t2 SET c='fourteen thousand seven hundred fifty-seven' WHERE a=6498;\nUPDATE t2 SET c='forty-two thousand four hundred twenty-five' WHERE a=6499;\nUPDATE t2 SET c='five hundred thirty-four' WHERE a=6500;\nUPDATE t2 SET c='fifteen thousand nine hundred eighty-one' WHERE a=6501;\nUPDATE t2 SET c='sixty-nine thousand six hundred seventy-three' WHERE a=6502;\nUPDATE t2 SET c='seventy thousand eight hundred twenty' WHERE a=6503;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty' WHERE a=6504;\nUPDATE t2 SET c='one thousand four hundred sixty-nine' WHERE a=6505;\nUPDATE t2 SET c='one hundred twenty-eight' WHERE a=6506;\nUPDATE t2 SET c='thirty-three thousand five hundred twenty-one' WHERE a=6507;\nUPDATE t2 SET c='forty-six thousand seven hundred six' WHERE a=6508;\nUPDATE t2 SET c='twelve thousand three hundred five' WHERE a=6509;\nUPDATE t2 SET c='eighty-five thousand six hundred two' WHERE a=6510;\nUPDATE t2 SET c='forty-six thousand seven hundred ninety-five' WHERE a=6511;\nUPDATE t2 SET c='sixty-four thousand one hundred fifty-three' WHERE a=6512;\nUPDATE t2 SET c='twenty-seven thousand three hundred twenty-one' WHERE a=6513;\nUPDATE t2 SET c='forty-five thousand four hundred eleven' WHERE a=6514;\nUPDATE t2 SET c='twenty-six thousand two hundred one' WHERE a=6515;\nUPDATE t2 SET c='fourteen thousand six hundred thirty-three' WHERE a=6516;\nUPDATE t2 SET c='eighty-three thousand eight hundred eighty-nine' WHERE a=6517;\nUPDATE t2 SET c='seventy-three thousand six hundred eighty-seven' WHERE a=6518;\nUPDATE t2 SET c='eighty thousand seven hundred two' WHERE a=6519;\nUPDATE t2 SET c='ninety thousand nine hundred eighty-six' WHERE a=6520;\nUPDATE t2 SET c='eighty-three thousand eight hundred thirty-seven' WHERE a=6521;\nUPDATE t2 SET c='ninety-two thousand one hundred twenty-three' WHERE a=6522;\nUPDATE t2 SET c='ninety-three thousand two hundred sixty-five' WHERE a=6523;\nUPDATE t2 SET c='seventy thousand six hundred forty-four' WHERE a=6524;\nUPDATE t2 SET c='eighteen thousand three hundred sixteen' WHERE a=6525;\nUPDATE t2 SET c='sixty-seven thousand three hundred seventeen' WHERE a=6526;\nUPDATE t2 SET c='four thousand nine hundred eighty' WHERE a=6527;\nUPDATE t2 SET c='six thousand six hundred sixty-five' WHERE a=6528;\nUPDATE t2 SET c='five thousand two hundred seven' WHERE a=6529;\nUPDATE t2 SET c='eighty-eight thousand nine hundred ninety-two' WHERE a=6530;\nUPDATE t2 SET c='ninety-seven thousand three hundred forty-four' WHERE a=6531;\nUPDATE t2 SET c='two thousand two hundred fifty-four' WHERE a=6532;\nUPDATE t2 SET c='twenty-one thousand five hundred nine' WHERE a=6533;\nUPDATE t2 SET c='sixty-one thousand four hundred forty' WHERE a=6534;\nUPDATE t2 SET c='sixty-seven thousand nine hundred eighty-eight' WHERE a=6535;\nUPDATE t2 SET c='one thousand one hundred ninety-six' WHERE a=6536;\nUPDATE t2 SET c='nineteen thousand three hundred nineteen' WHERE a=6537;\nUPDATE t2 SET c='six thousand seven hundred ninety-seven' WHERE a=6538;\nUPDATE t2 SET c='twenty-nine thousand three hundred sixty-one' WHERE a=6539;\nUPDATE t2 SET c='sixty-one thousand nine hundred fifty-six' WHERE a=6540;\nUPDATE t2 SET c='ninety-three thousand three hundred fifty-seven' WHERE a=6541;\nUPDATE t2 SET c='fifty-six thousand nine hundred sixty-seven' WHERE a=6542;\nUPDATE t2 SET c='seventy-eight thousand four hundred twenty-one' WHERE a=6543;\nUPDATE t2 SET c='twenty-three thousand eight hundred forty-five' WHERE a=6544;\nUPDATE t2 SET c='thirty-eight thousand five hundred seventy' WHERE a=6545;\nUPDATE t2 SET c='sixty-three thousand eighty-three' WHERE a=6546;\nUPDATE t2 SET c='eight thousand three hundred fifty-seven' WHERE a=6547;\nUPDATE t2 SET c='forty-three thousand three hundred one' WHERE a=6548;\nUPDATE t2 SET c='ninety-nine thousand three hundred forty-five' WHERE a=6549;\nUPDATE t2 SET c='forty-two thousand seven hundred thirty-six' WHERE a=6550;\nUPDATE t2 SET c='fifty-two thousand three hundred ninety-nine' WHERE a=6551;\nUPDATE t2 SET c='three thousand seven hundred eighty-five' WHERE a=6552;\nUPDATE t2 SET c='forty-five thousand four hundred five' WHERE a=6553;\nUPDATE t2 SET c='thirty-five thousand forty-nine' WHERE a=6554;\nUPDATE t2 SET c='ten thousand eight hundred thirty-eight' WHERE a=6555;\nUPDATE t2 SET c='twenty-nine thousand two hundred ninety-nine' WHERE a=6556;\nUPDATE t2 SET c='sixty-four thousand two hundred twenty-nine' WHERE a=6557;\nUPDATE t2 SET c='ninety-one thousand four hundred twenty' WHERE a=6558;\nUPDATE t2 SET c='forty-five thousand one hundred twenty-two' WHERE a=6559;\nUPDATE t2 SET c='eighty thousand seven hundred twenty-six' WHERE a=6560;\nUPDATE t2 SET c='seventy-one thousand eight hundred thirty-seven' WHERE a=6561;\nUPDATE t2 SET c='seventy-four thousand four hundred eighty-seven' WHERE a=6562;\nUPDATE t2 SET c='forty-two thousand nine hundred twenty-five' WHERE a=6563;\nUPDATE t2 SET c='eighty-seven thousand two hundred eight' WHERE a=6564;\nUPDATE t2 SET c='seven thousand one hundred thirty-one' WHERE a=6565;\nUPDATE t2 SET c='thirty-one thousand three hundred thirty-one' WHERE a=6566;\nUPDATE t2 SET c='seventy-nine thousand five hundred seventy-four' WHERE a=6567;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty' WHERE a=6568;\nUPDATE t2 SET c='sixteen thousand six hundred forty-eight' WHERE a=6569;\nUPDATE t2 SET c='seventy-nine thousand nine hundred one' WHERE a=6570;\nUPDATE t2 SET c='seventy-two thousand six hundred thirty-six' WHERE a=6571;\nUPDATE t2 SET c='ninety-two thousand sixty-nine' WHERE a=6572;\nUPDATE t2 SET c='three thousand five hundred six' WHERE a=6573;\nUPDATE t2 SET c='twenty-nine thousand three hundred ninety-three' WHERE a=6574;\nUPDATE t2 SET c='three thousand eight hundred seventy-six' WHERE a=6575;\nUPDATE t2 SET c='twenty-nine thousand three hundred eleven' WHERE a=6576;\nUPDATE t2 SET c='nine thousand eight hundred thirty-two' WHERE a=6577;\nUPDATE t2 SET c='ninety-six thousand four hundred thirty-nine' WHERE a=6578;\nUPDATE t2 SET c='seventy-four thousand nine hundred ten' WHERE a=6579;\nUPDATE t2 SET c='sixty-four thousand eight hundred twelve' WHERE a=6580;\nUPDATE t2 SET c='seventy-three thousand seven hundred fifty-five' WHERE a=6581;\nUPDATE t2 SET c='thirteen thousand three hundred sixty-six' WHERE a=6582;\nUPDATE t2 SET c='fifty-one thousand one hundred sixty-six' WHERE a=6583;\nUPDATE t2 SET c='forty-four thousand four hundred seventy-five' WHERE a=6584;\nUPDATE t2 SET c='forty-nine thousand nine hundred sixty-one' WHERE a=6585;\nUPDATE t2 SET c='sixty-three thousand five hundred ninety-three' WHERE a=6586;\nUPDATE t2 SET c='thirty-four thousand six hundred twenty-one' WHERE a=6587;\nUPDATE t2 SET c='ninety-seven thousand eight hundred seventy-three' WHERE a=6588;\nUPDATE t2 SET c='eighty thousand one hundred thirty' WHERE a=6589;\nUPDATE t2 SET c='eighty-four thousand two hundred sixty-six' WHERE a=6590;\nUPDATE t2 SET c='twenty-six thousand seven hundred six' WHERE a=6591;\nUPDATE t2 SET c='seventy-three thousand nine hundred sixty-four' WHERE a=6592;\nUPDATE t2 SET c='eighty-four thousand seven hundred five' WHERE a=6593;\nUPDATE t2 SET c='ninety-eight thousand seven hundred forty-nine' WHERE a=6594;\nUPDATE t2 SET c='twelve thousand one hundred ninety-nine' WHERE a=6595;\nUPDATE t2 SET c='forty-three thousand five hundred sixty-one' WHERE a=6596;\nUPDATE t2 SET c='seventy-three thousand four hundred sixty-two' WHERE a=6597;\nUPDATE t2 SET c='sixty-two thousand five hundred fifty-five' WHERE a=6598;\nUPDATE t2 SET c='forty-one thousand five hundred fifty-three' WHERE a=6599;\nUPDATE t2 SET c='forty-three thousand seventy-eight' WHERE a=6600;\nUPDATE t2 SET c='one thousand eight hundred nineteen' WHERE a=6601;\nUPDATE t2 SET c='eleven thousand one hundred fifty-nine' WHERE a=6602;\nUPDATE t2 SET c='sixty thousand eight hundred seven' WHERE a=6603;\nUPDATE t2 SET c='forty-six thousand four hundred forty-three' WHERE a=6604;\nUPDATE t2 SET c='sixty-three thousand five hundred ninety-two' WHERE a=6605;\nUPDATE t2 SET c='eighty-one thousand nine hundred forty-eight' WHERE a=6606;\nUPDATE t2 SET c='ninety-one thousand nine hundred two' WHERE a=6607;\nUPDATE t2 SET c='fifty thousand thirty-six' WHERE a=6608;\nUPDATE t2 SET c='fifty-four thousand five hundred eighty-six' WHERE a=6609;\nUPDATE t2 SET c='seventy-nine thousand six hundred fifty-three' WHERE a=6610;\nUPDATE t2 SET c='twenty-seven thousand ninety-one' WHERE a=6611;\nUPDATE t2 SET c='ninety-one thousand six hundred fifty-five' WHERE a=6612;\nUPDATE t2 SET c='eighty-nine thousand four hundred sixty-four' WHERE a=6613;\nUPDATE t2 SET c='fifty thousand two hundred thirty-one' WHERE a=6614;\nUPDATE t2 SET c='thirteen thousand five hundred thirty-six' WHERE a=6615;\nUPDATE t2 SET c='ninety-five thousand one hundred fifty-two' WHERE a=6616;\nUPDATE t2 SET c='thirty-seven thousand six hundred twenty-two' WHERE a=6617;\nUPDATE t2 SET c='fifty-eight thousand one hundred fifteen' WHERE a=6618;\nUPDATE t2 SET c='twelve thousand five hundred forty-one' WHERE a=6619;\nUPDATE t2 SET c='seventy-five thousand ten' WHERE a=6620;\nUPDATE t2 SET c='sixty-three thousand nine hundred eighty-five' WHERE a=6621;\nUPDATE t2 SET c='sixty-one thousand one hundred ninety-four' WHERE a=6622;\nUPDATE t2 SET c='fifty-seven thousand four hundred ninety-six' WHERE a=6623;\nUPDATE t2 SET c='thirty-three thousand four hundred twenty-four' WHERE a=6624;\nUPDATE t2 SET c='eighty-seven thousand three hundred seventy-six' WHERE a=6625;\nUPDATE t2 SET c='fifty-nine thousand six hundred seventy' WHERE a=6626;\nUPDATE t2 SET c='twenty-seven thousand ninety-five' WHERE a=6627;\nUPDATE t2 SET c='eighty-eight thousand seventy-four' WHERE a=6628;\nUPDATE t2 SET c='eighty thousand four hundred fifteen' WHERE a=6629;\nUPDATE t2 SET c='five thousand nine hundred fifty-two' WHERE a=6630;\nUPDATE t2 SET c='forty-five thousand three hundred twenty-three' WHERE a=6631;\nUPDATE t2 SET c='sixty-four thousand three hundred ninety-three' WHERE a=6632;\nUPDATE t2 SET c='seventy-one thousand five hundred sixty-four' WHERE a=6633;\nUPDATE t2 SET c='eighty-one thousand four hundred eighty-five' WHERE a=6634;\nUPDATE t2 SET c='thirty-six thousand five hundred fifty-seven' WHERE a=6635;\nUPDATE t2 SET c='eleven thousand four hundred ninety-eight' WHERE a=6636;\nUPDATE t2 SET c='ninety-two thousand seven hundred forty-three' WHERE a=6637;\nUPDATE t2 SET c='ninety-eight thousand nine hundred eighty-nine' WHERE a=6638;\nUPDATE t2 SET c='sixty thousand four hundred seventy-eight' WHERE a=6639;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty' WHERE a=6640;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighteen' WHERE a=6641;\nUPDATE t2 SET c='fifty thousand seven hundred thirty-four' WHERE a=6642;\nUPDATE t2 SET c='one thousand sixty-six' WHERE a=6643;\nUPDATE t2 SET c='seventy-one thousand nine hundred forty-five' WHERE a=6644;\nUPDATE t2 SET c='ninety thousand eight hundred sixty-nine' WHERE a=6645;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-four' WHERE a=6646;\nUPDATE t2 SET c='ninety-nine thousand seven hundred fourteen' WHERE a=6647;\nUPDATE t2 SET c='sixty-nine thousand seven hundred sixty-six' WHERE a=6648;\nUPDATE t2 SET c='eighty-three thousand four hundred forty' WHERE a=6649;\nUPDATE t2 SET c='sixty-six thousand one hundred twenty-four' WHERE a=6650;\nUPDATE t2 SET c='twenty-eight thousand two hundred ninety-four' WHERE a=6651;\nUPDATE t2 SET c='thirty-eight thousand four hundred eighty-five' WHERE a=6652;\nUPDATE t2 SET c='fifteen thousand sixty-nine' WHERE a=6653;\nUPDATE t2 SET c='thirteen thousand four hundred twenty-eight' WHERE a=6654;\nUPDATE t2 SET c='ninety-three thousand one hundred ninety' WHERE a=6655;\nUPDATE t2 SET c='eighty-one thousand one hundred sixty-four' WHERE a=6656;\nUPDATE t2 SET c='fifty-three thousand nine hundred eighty-two' WHERE a=6657;\nUPDATE t2 SET c='thirty-two thousand four hundred ninety-nine' WHERE a=6658;\nUPDATE t2 SET c='twenty-one thousand seventy-two' WHERE a=6659;\nUPDATE t2 SET c='sixty-seven thousand four hundred eighty-eight' WHERE a=6660;\nUPDATE t2 SET c='sixty-six thousand one hundred fifty' WHERE a=6661;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-five' WHERE a=6662;\nUPDATE t2 SET c='sixty-seven thousand eight hundred seventeen' WHERE a=6663;\nUPDATE t2 SET c='ninety-five thousand seventy-two' WHERE a=6664;\nUPDATE t2 SET c='seventy-two thousand five hundred thirty-nine' WHERE a=6665;\nUPDATE t2 SET c='eighty-eight thousand sixty-eight' WHERE a=6666;\nUPDATE t2 SET c='sixty-seven thousand one hundred fifty-four' WHERE a=6667;\nUPDATE t2 SET c='twenty-nine thousand six hundred forty-five' WHERE a=6668;\nUPDATE t2 SET c='fifteen thousand two hundred four' WHERE a=6669;\nUPDATE t2 SET c='seventy thousand four hundred seventy-two' WHERE a=6670;\nUPDATE t2 SET c='forty thousand seven hundred eighty-seven' WHERE a=6671;\nUPDATE t2 SET c='twenty-eight thousand four hundred' WHERE a=6672;\nUPDATE t2 SET c='twenty-two thousand nine hundred ninety-seven' WHERE a=6673;\nUPDATE t2 SET c='sixty-nine thousand four hundred eight' WHERE a=6674;\nUPDATE t2 SET c='thirteen thousand five hundred four' WHERE a=6675;\nUPDATE t2 SET c='four thousand nine hundred twenty-four' WHERE a=6676;\nUPDATE t2 SET c='ninety-one thousand three hundred thirteen' WHERE a=6677;\nUPDATE t2 SET c='twenty thousand two hundred sixty-two' WHERE a=6678;\nUPDATE t2 SET c='eighteen thousand five hundred sixty-six' WHERE a=6679;\nUPDATE t2 SET c='twenty-six thousand seven hundred fifty-eight' WHERE a=6680;\nUPDATE t2 SET c='eighty thousand one hundred fifty-five' WHERE a=6681;\nUPDATE t2 SET c='seventy-eight thousand three hundred ten' WHERE a=6682;\nUPDATE t2 SET c='fourteen thousand one hundred five' WHERE a=6683;\nUPDATE t2 SET c='sixty-six thousand five hundred ten' WHERE a=6684;\nUPDATE t2 SET c='forty-seven thousand two hundred forty-seven' WHERE a=6685;\nUPDATE t2 SET c='thirty-two thousand two hundred thirty' WHERE a=6686;\nUPDATE t2 SET c='two thousand nine hundred thirty-five' WHERE a=6687;\nUPDATE t2 SET c='seventy-three thousand three hundred twenty-nine' WHERE a=6688;\nUPDATE t2 SET c='fifty-five thousand eight hundred' WHERE a=6689;\nUPDATE t2 SET c='fifty thousand seven hundred eighty-four' WHERE a=6690;\nUPDATE t2 SET c='forty-two thousand six hundred eleven' WHERE a=6691;\nUPDATE t2 SET c='twenty-seven thousand nine hundred eighty-seven' WHERE a=6692;\nUPDATE t2 SET c='forty-nine thousand ninety-three' WHERE a=6693;\nUPDATE t2 SET c='fifty-six thousand four hundred fifty-three' WHERE a=6694;\nUPDATE t2 SET c='sixty-nine thousand four hundred twenty-six' WHERE a=6695;\nUPDATE t2 SET c='twenty-nine thousand one hundred sixty-eight' WHERE a=6696;\nUPDATE t2 SET c='eighty thousand six hundred fifteen' WHERE a=6697;\nUPDATE t2 SET c='sixteen thousand four hundred seventy-eight' WHERE a=6698;\nUPDATE t2 SET c='seventy-seven thousand six hundred thirty-three' WHERE a=6699;\nUPDATE t2 SET c='twenty-three thousand six hundred forty-four' WHERE a=6700;\nUPDATE t2 SET c='eighteen thousand two hundred ninety-six' WHERE a=6701;\nUPDATE t2 SET c='seven thousand eight hundred twenty-six' WHERE a=6702;\nUPDATE t2 SET c='thirty thousand two hundred seventy-seven' WHERE a=6703;\nUPDATE t2 SET c='eighty-three thousand three hundred forty-six' WHERE a=6704;\nUPDATE t2 SET c='eighty thousand two hundred thirty-nine' WHERE a=6705;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seventy-two' WHERE a=6706;\nUPDATE t2 SET c='seventy thousand two hundred forty-five' WHERE a=6707;\nUPDATE t2 SET c='fifty-eight thousand three hundred thirty-nine' WHERE a=6708;\nUPDATE t2 SET c='fifty-two thousand forty-six' WHERE a=6709;\nUPDATE t2 SET c='four thousand two hundred eighty-nine' WHERE a=6710;\nUPDATE t2 SET c='forty-nine thousand six hundred eighteen' WHERE a=6711;\nUPDATE t2 SET c='seventy-six thousand six hundred thirty-seven' WHERE a=6712;\nUPDATE t2 SET c='twenty-five thousand two hundred sixty' WHERE a=6713;\nUPDATE t2 SET c='twenty-one thousand seven hundred eighty-two' WHERE a=6714;\nUPDATE t2 SET c='six thousand eight hundred eighteen' WHERE a=6715;\nUPDATE t2 SET c='ninety-nine thousand five hundred thirty-four' WHERE a=6716;\nUPDATE t2 SET c='eighty-five thousand five hundred twenty-nine' WHERE a=6717;\nUPDATE t2 SET c='four hundred ninety-five' WHERE a=6718;\nUPDATE t2 SET c='sixty-two thousand eight hundred ninety-one' WHERE a=6719;\nUPDATE t2 SET c='ninety-nine thousand eight hundred forty-nine' WHERE a=6720;\nUPDATE t2 SET c='seventy-two thousand two hundred ninety' WHERE a=6721;\nUPDATE t2 SET c='fifty-four thousand one hundred sixty' WHERE a=6722;\nUPDATE t2 SET c='seventy-four thousand four hundred sixty-five' WHERE a=6723;\nUPDATE t2 SET c='fifteen thousand twenty-three' WHERE a=6724;\nUPDATE t2 SET c='fifty thousand eight hundred forty-one' WHERE a=6725;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-five' WHERE a=6726;\nUPDATE t2 SET c='forty-one thousand four hundred sixty-eight' WHERE a=6727;\nUPDATE t2 SET c='eighty-five thousand six hundred ninety-one' WHERE a=6728;\nUPDATE t2 SET c='nine thousand six hundred ninety' WHERE a=6729;\nUPDATE t2 SET c='four thousand nine hundred seventy-two' WHERE a=6730;\nUPDATE t2 SET c='forty-two thousand nine hundred sixty-five' WHERE a=6731;\nUPDATE t2 SET c='sixty-one thousand nine hundred fifty-nine' WHERE a=6732;\nUPDATE t2 SET c='eighty thousand five hundred thirty-one' WHERE a=6733;\nUPDATE t2 SET c='eighty-six thousand four hundred seventeen' WHERE a=6734;\nUPDATE t2 SET c='sixty-two thousand nine hundred fifty-five' WHERE a=6735;\nUPDATE t2 SET c='fifty-five thousand two hundred twenty-two' WHERE a=6736;\nUPDATE t2 SET c='ninety-one thousand five hundred ninety-two' WHERE a=6737;\nUPDATE t2 SET c='ninety-four thousand thirty-one' WHERE a=6738;\nUPDATE t2 SET c='eighty-seven thousand one hundred twenty-eight' WHERE a=6739;\nUPDATE t2 SET c='fifty-seven thousand four hundred ninety-five' WHERE a=6740;\nUPDATE t2 SET c='eighty-six thousand two hundred twenty' WHERE a=6741;\nUPDATE t2 SET c='forty-five thousand nine hundred fourteen' WHERE a=6742;\nUPDATE t2 SET c='sixty-five thousand nine hundred twenty-eight' WHERE a=6743;\nUPDATE t2 SET c='sixty-one thousand one hundred forty-six' WHERE a=6744;\nUPDATE t2 SET c='twenty-two thousand three hundred eight' WHERE a=6745;\nUPDATE t2 SET c='sixty thousand seven hundred eighty-four' WHERE a=6746;\nUPDATE t2 SET c='seventy-four thousand seventy' WHERE a=6747;\nUPDATE t2 SET c='twenty-nine thousand eight hundred fifty-two' WHERE a=6748;\nUPDATE t2 SET c='fifty-four thousand two hundred ten' WHERE a=6749;\nUPDATE t2 SET c='seventy thousand four hundred four' WHERE a=6750;\nUPDATE t2 SET c='seventy-eight thousand seven hundred eleven' WHERE a=6751;\nUPDATE t2 SET c='four thousand two hundred twenty-four' WHERE a=6752;\nUPDATE t2 SET c='one hundred twenty-nine' WHERE a=6753;\nUPDATE t2 SET c='eighty thousand three hundred eighty-three' WHERE a=6754;\nUPDATE t2 SET c='forty-one thousand ninety-four' WHERE a=6755;\nUPDATE t2 SET c='four hundred fifty' WHERE a=6756;\nUPDATE t2 SET c='forty-five thousand six hundred sixty-nine' WHERE a=6757;\nUPDATE t2 SET c='seventy-four thousand four hundred one' WHERE a=6758;\nUPDATE t2 SET c='ninety-seven thousand eighty' WHERE a=6759;\nUPDATE t2 SET c='eighty-two thousand eight hundred twenty-three' WHERE a=6760;\nUPDATE t2 SET c='seven thousand two hundred eighty-eight' WHERE a=6761;\nUPDATE t2 SET c='ninety-five thousand seven hundred ninety-six' WHERE a=6762;\nUPDATE t2 SET c='sixty-one thousand three hundred' WHERE a=6763;\nUPDATE t2 SET c='ten thousand one hundred seventy-nine' WHERE a=6764;\nUPDATE t2 SET c='thirteen thousand two hundred four' WHERE a=6765;\nUPDATE t2 SET c='twenty-six thousand two hundred sixty-four' WHERE a=6766;\nUPDATE t2 SET c='fifty-six thousand ten' WHERE a=6767;\nUPDATE t2 SET c='seventy-three thousand seven hundred eighty-three' WHERE a=6768;\nUPDATE t2 SET c='twenty-four thousand nine hundred fifty-five' WHERE a=6769;\nUPDATE t2 SET c='seventy-one thousand one hundred seventy-two' WHERE a=6770;\nUPDATE t2 SET c='seventeen thousand one hundred one' WHERE a=6771;\nUPDATE t2 SET c='twenty-eight thousand eight hundred thirty-one' WHERE a=6772;\nUPDATE t2 SET c='thirty-five thousand four hundred eighty-five' WHERE a=6773;\nUPDATE t2 SET c='ninety-one thousand two hundred ninety-eight' WHERE a=6774;\nUPDATE t2 SET c='seventy-one thousand seven hundred twenty-one' WHERE a=6775;\nUPDATE t2 SET c='sixteen thousand six hundred fifteen' WHERE a=6776;\nUPDATE t2 SET c='ninety-six thousand two hundred fifty' WHERE a=6777;\nUPDATE t2 SET c='eighty-four thousand six hundred seventy-two' WHERE a=6778;\nUPDATE t2 SET c='twenty-seven thousand seven hundred thirty-five' WHERE a=6779;\nUPDATE t2 SET c='three thousand four hundred thirty-seven' WHERE a=6780;\nUPDATE t2 SET c='seventy-one thousand three hundred eighteen' WHERE a=6781;\nUPDATE t2 SET c='sixteen thousand eight hundred sixty-two' WHERE a=6782;\nUPDATE t2 SET c='twenty-three thousand one hundred fifty-eight' WHERE a=6783;\nUPDATE t2 SET c='forty-one thousand six hundred eighty-four' WHERE a=6784;\nUPDATE t2 SET c='ninety-three thousand two hundred fifty-five' WHERE a=6785;\nUPDATE t2 SET c='twenty-four thousand four hundred sixty-four' WHERE a=6786;\nUPDATE t2 SET c='ninety-five thousand nine hundred seventy-four' WHERE a=6787;\nUPDATE t2 SET c='eighteen thousand three hundred seventy-eight' WHERE a=6788;\nUPDATE t2 SET c='eight thousand four hundred one' WHERE a=6789;\nUPDATE t2 SET c='thirty-six thousand eighty-six' WHERE a=6790;\nUPDATE t2 SET c='one thousand six hundred thirty-three' WHERE a=6791;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-nine' WHERE a=6792;\nUPDATE t2 SET c='six hundred sixteen' WHERE a=6793;\nUPDATE t2 SET c='twenty-two thousand five hundred three' WHERE a=6794;\nUPDATE t2 SET c='thirty-one thousand four hundred thirty-three' WHERE a=6795;\nUPDATE t2 SET c='ninety-one thousand nine hundred sixteen' WHERE a=6796;\nUPDATE t2 SET c='seventeen thousand one hundred eighty-two' WHERE a=6797;\nUPDATE t2 SET c='fifty-six thousand one hundred seventy-three' WHERE a=6798;\nUPDATE t2 SET c='forty-four thousand nine hundred eighty-seven' WHERE a=6799;\nUPDATE t2 SET c='fifty-two thousand nine hundred thirty-one' WHERE a=6800;\nUPDATE t2 SET c='four thousand five hundred eighty-eight' WHERE a=6801;\nUPDATE t2 SET c='thirty-seven thousand eight hundred eighty-nine' WHERE a=6802;\nUPDATE t2 SET c='thirteen thousand two hundred thirty-four' WHERE a=6803;\nUPDATE t2 SET c='thirty-six thousand one hundred eighty-nine' WHERE a=6804;\nUPDATE t2 SET c='forty-three thousand four hundred ninety-three' WHERE a=6805;\nUPDATE t2 SET c='nineteen thousand nine hundred forty-two' WHERE a=6806;\nUPDATE t2 SET c='ninety-eight thousand eight hundred forty-nine' WHERE a=6807;\nUPDATE t2 SET c='one thousand three hundred eighty-five' WHERE a=6808;\nUPDATE t2 SET c='sixty-eight thousand six hundred ninety-three' WHERE a=6809;\nUPDATE t2 SET c='four thousand seven hundred sixty-nine' WHERE a=6810;\nUPDATE t2 SET c='seventy-five thousand nine hundred twenty-four' WHERE a=6811;\nUPDATE t2 SET c='three thousand nine hundred seventeen' WHERE a=6812;\nUPDATE t2 SET c='ninety-nine thousand two hundred twenty-one' WHERE a=6813;\nUPDATE t2 SET c='eighty thousand seven hundred fourteen' WHERE a=6814;\nUPDATE t2 SET c='forty thousand four hundred two' WHERE a=6815;\nUPDATE t2 SET c='two thousand six hundred forty-two' WHERE a=6816;\nUPDATE t2 SET c='eighty-six thousand six hundred seventy-five' WHERE a=6817;\nUPDATE t2 SET c='fourteen thousand seven hundred twenty-four' WHERE a=6818;\nUPDATE t2 SET c='seven thousand eight hundred forty-five' WHERE a=6819;\nUPDATE t2 SET c='ninety-seven thousand four hundred seventy-five' WHERE a=6820;\nUPDATE t2 SET c='fifty-four thousand four hundred thirty-one' WHERE a=6821;\nUPDATE t2 SET c='seventy-three thousand six hundred sixty-one' WHERE a=6822;\nUPDATE t2 SET c='thirty-three thousand three hundred seventy-five' WHERE a=6823;\nUPDATE t2 SET c='twenty-five thousand three hundred thirteen' WHERE a=6824;\nUPDATE t2 SET c='sixty-six thousand nine hundred thirty-nine' WHERE a=6825;\nUPDATE t2 SET c='twenty-two thousand one hundred ninety-three' WHERE a=6826;\nUPDATE t2 SET c='forty-eight thousand eight hundred fifty-five' WHERE a=6827;\nUPDATE t2 SET c='twenty-five thousand six hundred thirty-six' WHERE a=6828;\nUPDATE t2 SET c='sixteen thousand seven hundred eighty-five' WHERE a=6829;\nUPDATE t2 SET c='fifty-eight thousand seven hundred five' WHERE a=6830;\nUPDATE t2 SET c='forty-one thousand two hundred sixty' WHERE a=6831;\nUPDATE t2 SET c='forty-six thousand two hundred twenty-nine' WHERE a=6832;\nUPDATE t2 SET c='ninety-one thousand eight hundred seventy' WHERE a=6833;\nUPDATE t2 SET c='twenty-three thousand seven hundred twenty-eight' WHERE a=6834;\nUPDATE t2 SET c='sixty-one thousand eight hundred eighty-six' WHERE a=6835;\nUPDATE t2 SET c='forty-three thousand one hundred seventy-three' WHERE a=6836;\nUPDATE t2 SET c='fourteen thousand four hundred forty-four' WHERE a=6837;\nUPDATE t2 SET c='eighty-nine thousand forty-four' WHERE a=6838;\nUPDATE t2 SET c='fifteen thousand five hundred fifty-two' WHERE a=6839;\nUPDATE t2 SET c='twenty-three thousand five hundred four' WHERE a=6840;\nUPDATE t2 SET c='fifty-eight thousand eight hundred seventy-one' WHERE a=6841;\nUPDATE t2 SET c='four thousand five hundred eighty-one' WHERE a=6842;\nUPDATE t2 SET c='twenty-one thousand six hundred fifty-five' WHERE a=6843;\nUPDATE t2 SET c='thirty-five thousand four hundred fifty-three' WHERE a=6844;\nUPDATE t2 SET c='thirty-two thousand one hundred one' WHERE a=6845;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-nine' WHERE a=6846;\nUPDATE t2 SET c='seventy-four thousand sixty-eight' WHERE a=6847;\nUPDATE t2 SET c='thirty-eight thousand three hundred sixty-eight' WHERE a=6848;\nUPDATE t2 SET c='five thousand one hundred twenty-five' WHERE a=6849;\nUPDATE t2 SET c='ninety-six thousand three hundred fifty' WHERE a=6850;\nUPDATE t2 SET c='eighty-one thousand three hundred fourteen' WHERE a=6851;\nUPDATE t2 SET c='eighty-one thousand five hundred forty-four' WHERE a=6852;\nUPDATE t2 SET c='forty-five thousand three hundred ninety-three' WHERE a=6853;\nUPDATE t2 SET c='seventy thousand one hundred forty-seven' WHERE a=6854;\nUPDATE t2 SET c='seventy-nine thousand eighty-two' WHERE a=6855;\nUPDATE t2 SET c='eighty-eight thousand seven hundred seventeen' WHERE a=6856;\nUPDATE t2 SET c='seventy-six thousand four hundred two' WHERE a=6857;\nUPDATE t2 SET c='seventy-four thousand seven hundred sixty-seven' WHERE a=6858;\nUPDATE t2 SET c='sixty-six thousand nine hundred fifty-five' WHERE a=6859;\nUPDATE t2 SET c='thirty thousand nine hundred sixty-four' WHERE a=6860;\nUPDATE t2 SET c='ninety-four thousand nine hundred eighty-one' WHERE a=6861;\nUPDATE t2 SET c='eighty-nine thousand one hundred sixty-five' WHERE a=6862;\nUPDATE t2 SET c='sixty-six thousand five hundred ninety-seven' WHERE a=6863;\nUPDATE t2 SET c='sixty-one thousand two hundred twelve' WHERE a=6864;\nUPDATE t2 SET c='eighteen thousand one hundred thirty' WHERE a=6865;\nUPDATE t2 SET c='forty-four thousand three hundred thirty-nine' WHERE a=6866;\nUPDATE t2 SET c='seventy-seven thousand four hundred fifty-five' WHERE a=6867;\nUPDATE t2 SET c='four thousand two hundred thirty-five' WHERE a=6868;\nUPDATE t2 SET c='seven thousand two hundred sixty-nine' WHERE a=6869;\nUPDATE t2 SET c='thirty-one thousand eight hundred eighty-one' WHERE a=6870;\nUPDATE t2 SET c='forty-one thousand six hundred seventy' WHERE a=6871;\nUPDATE t2 SET c='forty-four thousand one hundred ninety-seven' WHERE a=6872;\nUPDATE t2 SET c='twenty-four thousand nine hundred seventy-nine' WHERE a=6873;\nUPDATE t2 SET c='eighty-two thousand five hundred six' WHERE a=6874;\nUPDATE t2 SET c='forty-three thousand five hundred sixty-one' WHERE a=6875;\nUPDATE t2 SET c='two thousand three hundred twenty-four' WHERE a=6876;\nUPDATE t2 SET c='forty-eight thousand nine hundred forty-eight' WHERE a=6877;\nUPDATE t2 SET c='thirty-two thousand six hundred ten' WHERE a=6878;\nUPDATE t2 SET c='ninety-one thousand one hundred eighteen' WHERE a=6879;\nUPDATE t2 SET c='seventy-nine thousand two hundred forty-three' WHERE a=6880;\nUPDATE t2 SET c='eighty thousand six hundred forty-two' WHERE a=6881;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-five' WHERE a=6882;\nUPDATE t2 SET c='eighty-two thousand one hundred eighty-three' WHERE a=6883;\nUPDATE t2 SET c='fifty-five thousand three hundred eighty-five' WHERE a=6884;\nUPDATE t2 SET c='sixty-one thousand six hundred six' WHERE a=6885;\nUPDATE t2 SET c='seventy-four thousand nine hundred forty-six' WHERE a=6886;\nUPDATE t2 SET c='eighty-seven thousand seven hundred eighty-five' WHERE a=6887;\nUPDATE t2 SET c='fifty-seven thousand five hundred thirty-seven' WHERE a=6888;\nUPDATE t2 SET c='eighty-eight thousand one hundred fourteen' WHERE a=6889;\nUPDATE t2 SET c='eighty-three thousand six hundred forty-two' WHERE a=6890;\nUPDATE t2 SET c='twenty-three thousand ninety-five' WHERE a=6891;\nUPDATE t2 SET c='nine thousand four hundred six' WHERE a=6892;\nUPDATE t2 SET c='eighteen thousand seven hundred forty-seven' WHERE a=6893;\nUPDATE t2 SET c='twenty-three thousand four hundred fifty-five' WHERE a=6894;\nUPDATE t2 SET c='fifty-one thousand nine hundred thirty-one' WHERE a=6895;\nUPDATE t2 SET c='twelve thousand seven hundred' WHERE a=6896;\nUPDATE t2 SET c='eighty-six thousand one hundred forty-seven' WHERE a=6897;\nUPDATE t2 SET c='sixty-seven thousand seven hundred seventy-one' WHERE a=6898;\nUPDATE t2 SET c='sixty-five thousand five hundred sixty-seven' WHERE a=6899;\nUPDATE t2 SET c='seventy-three thousand eight hundred seventy' WHERE a=6900;\nUPDATE t2 SET c='forty-one thousand ninety-two' WHERE a=6901;\nUPDATE t2 SET c='seventy-nine thousand two hundred thirty-one' WHERE a=6902;\nUPDATE t2 SET c='forty-one thousand seven hundred eighty-one' WHERE a=6903;\nUPDATE t2 SET c='seventy-nine thousand seven hundred eighty-three' WHERE a=6904;\nUPDATE t2 SET c='seventy-nine thousand four hundred fifty-two' WHERE a=6905;\nUPDATE t2 SET c='forty-eight thousand nine hundred fifty-two' WHERE a=6906;\nUPDATE t2 SET c='eighty-nine thousand sixty-three' WHERE a=6907;\nUPDATE t2 SET c='fifty-eight thousand nine hundred twenty-five' WHERE a=6908;\nUPDATE t2 SET c='fifty-three thousand seventy' WHERE a=6909;\nUPDATE t2 SET c='seventy-five thousand three hundred twenty-one' WHERE a=6910;\nUPDATE t2 SET c='thirty-three thousand six hundred twenty-one' WHERE a=6911;\nUPDATE t2 SET c='seventy-eight thousand eight hundred thirty-three' WHERE a=6912;\nUPDATE t2 SET c='eighty-six thousand four hundred sixty-five' WHERE a=6913;\nUPDATE t2 SET c='thirty-nine thousand two hundred nineteen' WHERE a=6914;\nUPDATE t2 SET c='eighty-five thousand two hundred thirty-eight' WHERE a=6915;\nUPDATE t2 SET c='sixty-nine thousand four hundred forty-four' WHERE a=6916;\nUPDATE t2 SET c='thirty-three thousand three hundred sixty-four' WHERE a=6917;\nUPDATE t2 SET c='forty thousand ninety-six' WHERE a=6918;\nUPDATE t2 SET c='thirty-six thousand nine hundred sixty' WHERE a=6919;\nUPDATE t2 SET c='forty-eight thousand three hundred sixty-two' WHERE a=6920;\nUPDATE t2 SET c='sixty thousand seven hundred ten' WHERE a=6921;\nUPDATE t2 SET c='forty-nine thousand nine hundred sixty-two' WHERE a=6922;\nUPDATE t2 SET c='thirty thousand six hundred fifteen' WHERE a=6923;\nUPDATE t2 SET c='fifty-five thousand seven hundred seven' WHERE a=6924;\nUPDATE t2 SET c='sixteen thousand three hundred eighty-seven' WHERE a=6925;\nUPDATE t2 SET c='forty-seven thousand four hundred eighty-three' WHERE a=6926;\nUPDATE t2 SET c='eighty-eight thousand five hundred seventy-nine' WHERE a=6927;\nUPDATE t2 SET c='forty-five thousand six hundred twenty-six' WHERE a=6928;\nUPDATE t2 SET c='eighteen thousand two hundred four' WHERE a=6929;\nUPDATE t2 SET c='thirty-one thousand one hundred thirty' WHERE a=6930;\nUPDATE t2 SET c='thirty-eight thousand eighty-three' WHERE a=6931;\nUPDATE t2 SET c='seventy-six thousand five hundred seventy-eight' WHERE a=6932;\nUPDATE t2 SET c='twenty thousand eight hundred fifty-two' WHERE a=6933;\nUPDATE t2 SET c='fifty-six thousand two hundred ninety-six' WHERE a=6934;\nUPDATE t2 SET c='one thousand two hundred thirty-four' WHERE a=6935;\nUPDATE t2 SET c='twenty-three thousand one hundred ninety' WHERE a=6936;\nUPDATE t2 SET c='twenty-six thousand eight hundred eleven' WHERE a=6937;\nUPDATE t2 SET c='eighty-seven thousand six hundred twenty-two' WHERE a=6938;\nUPDATE t2 SET c='ninety-one thousand seven hundred forty-five' WHERE a=6939;\nUPDATE t2 SET c='sixty-four thousand six hundred twenty-eight' WHERE a=6940;\nUPDATE t2 SET c='nineteen thousand nine hundred eighty-three' WHERE a=6941;\nUPDATE t2 SET c='nine thousand three hundred two' WHERE a=6942;\nUPDATE t2 SET c='seventy-six thousand three hundred eighty-one' WHERE a=6943;\nUPDATE t2 SET c='eleven thousand eight hundred forty-six' WHERE a=6944;\nUPDATE t2 SET c='forty-two thousand one hundred seventy-eight' WHERE a=6945;\nUPDATE t2 SET c='sixty-nine thousand twenty-five' WHERE a=6946;\nUPDATE t2 SET c='seventy thousand two hundred forty-five' WHERE a=6947;\nUPDATE t2 SET c='sixty-eight thousand six hundred eighty-five' WHERE a=6948;\nUPDATE t2 SET c='seventy-two thousand five hundred twenty-five' WHERE a=6949;\nUPDATE t2 SET c='thirteen thousand eight hundred ninety-two' WHERE a=6950;\nUPDATE t2 SET c='one thousand three hundred eighteen' WHERE a=6951;\nUPDATE t2 SET c='twenty-one thousand four hundred seventy-nine' WHERE a=6952;\nUPDATE t2 SET c='fifty-three thousand six hundred forty-one' WHERE a=6953;\nUPDATE t2 SET c='sixty-two thousand three hundred ninety-seven' WHERE a=6954;\nUPDATE t2 SET c='seventy-five thousand five hundred seventy-seven' WHERE a=6955;\nUPDATE t2 SET c='sixty-six thousand six hundred thirty-five' WHERE a=6956;\nUPDATE t2 SET c='forty-six thousand five hundred fifty-two' WHERE a=6957;\nUPDATE t2 SET c='twenty thousand one hundred ninety-two' WHERE a=6958;\nUPDATE t2 SET c='eighteen thousand six hundred forty' WHERE a=6959;\nUPDATE t2 SET c='sixty-one thousand one hundred ten' WHERE a=6960;\nUPDATE t2 SET c='fifty-four thousand eight hundred sixty-three' WHERE a=6961;\nUPDATE t2 SET c='seventy-two thousand three hundred forty-four' WHERE a=6962;\nUPDATE t2 SET c='sixty-five thousand four hundred twenty-six' WHERE a=6963;\nUPDATE t2 SET c='fifty-seven thousand nine hundred thirty-two' WHERE a=6964;\nUPDATE t2 SET c='sixty-eight thousand nine hundred seventy-two' WHERE a=6965;\nUPDATE t2 SET c='sixty-seven thousand six hundred seventy-four' WHERE a=6966;\nUPDATE t2 SET c='seven thousand nine hundred sixty-five' WHERE a=6967;\nUPDATE t2 SET c='ninety-two thousand seventy-three' WHERE a=6968;\nUPDATE t2 SET c='thirty-one thousand five hundred ninety-one' WHERE a=6969;\nUPDATE t2 SET c='sixty-three thousand one hundred ninety-six' WHERE a=6970;\nUPDATE t2 SET c='seventeen thousand nine hundred fifty-three' WHERE a=6971;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-four' WHERE a=6972;\nUPDATE t2 SET c='fifty-three thousand forty-two' WHERE a=6973;\nUPDATE t2 SET c='six thousand seven hundred forty-three' WHERE a=6974;\nUPDATE t2 SET c='seventy-three thousand nine hundred eighty-three' WHERE a=6975;\nUPDATE t2 SET c='eighty-three thousand six hundred seventy-three' WHERE a=6976;\nUPDATE t2 SET c='fifty thousand two hundred seventy-eight' WHERE a=6977;\nUPDATE t2 SET c='ninety-nine thousand two hundred thirty-nine' WHERE a=6978;\nUPDATE t2 SET c='fifty-nine thousand nine hundred twenty-seven' WHERE a=6979;\nUPDATE t2 SET c='sixty-six thousand five hundred thirty-eight' WHERE a=6980;\nUPDATE t2 SET c='two thousand eleven' WHERE a=6981;\nUPDATE t2 SET c='fifty-two thousand eight hundred forty-nine' WHERE a=6982;\nUPDATE t2 SET c='sixty-one thousand two hundred eighteen' WHERE a=6983;\nUPDATE t2 SET c='fifty-two thousand one hundred three' WHERE a=6984;\nUPDATE t2 SET c='seventy-two thousand eight hundred forty-one' WHERE a=6985;\nUPDATE t2 SET c='ninety thousand eight hundred twenty-two' WHERE a=6986;\nUPDATE t2 SET c='five thousand nine hundred forty-four' WHERE a=6987;\nUPDATE t2 SET c='thirty-five thousand five hundred twenty-four' WHERE a=6988;\nUPDATE t2 SET c='thirty-four thousand seventy-four' WHERE a=6989;\nUPDATE t2 SET c='forty-eight thousand twenty-nine' WHERE a=6990;\nUPDATE t2 SET c='thirty-four thousand seventy-three' WHERE a=6991;\nUPDATE t2 SET c='forty-five thousand two hundred twenty-nine' WHERE a=6992;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-seven' WHERE a=6993;\nUPDATE t2 SET c='fifty-two thousand one hundred fifty-five' WHERE a=6994;\nUPDATE t2 SET c='fifty-three thousand eight hundred nine' WHERE a=6995;\nUPDATE t2 SET c='forty-three thousand eight hundred forty-nine' WHERE a=6996;\nUPDATE t2 SET c='forty-one thousand four hundred sixty-one' WHERE a=6997;\nUPDATE t2 SET c='sixty-five thousand seventeen' WHERE a=6998;\nUPDATE t2 SET c='ninety-four thousand nine hundred forty' WHERE a=6999;\nUPDATE t2 SET c='seventeen thousand eighty-four' WHERE a=7000;\nUPDATE t2 SET c='thirty-eight thousand six hundred sixty-seven' WHERE a=7001;\nUPDATE t2 SET c='three thousand eighty-five' WHERE a=7002;\nUPDATE t2 SET c='seventeen thousand four hundred ninety' WHERE a=7003;\nUPDATE t2 SET c='twenty-three thousand one hundred eleven' WHERE a=7004;\nUPDATE t2 SET c='thirty-four thousand five hundred sixty-two' WHERE a=7005;\nUPDATE t2 SET c='sixty-eight thousand two hundred ninety-nine' WHERE a=7006;\nUPDATE t2 SET c='seventy-three thousand three hundred seventy-three' WHERE a=7007;\nUPDATE t2 SET c='thirty-eight thousand three hundred sixty-nine' WHERE a=7008;\nUPDATE t2 SET c='one hundred forty-two' WHERE a=7009;\nUPDATE t2 SET c='eighty-eight thousand seventy-one' WHERE a=7010;\nUPDATE t2 SET c='ninety-four thousand thirty-two' WHERE a=7011;\nUPDATE t2 SET c='seven thousand one hundred thirty-four' WHERE a=7012;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-two' WHERE a=7013;\nUPDATE t2 SET c='eighty thousand three hundred seventy-six' WHERE a=7014;\nUPDATE t2 SET c='sixty-seven thousand seven hundred fourteen' WHERE a=7015;\nUPDATE t2 SET c='seventy-five thousand six hundred twenty-one' WHERE a=7016;\nUPDATE t2 SET c='fifteen thousand four hundred forty-three' WHERE a=7017;\nUPDATE t2 SET c='twenty thousand five hundred one' WHERE a=7018;\nUPDATE t2 SET c='eleven thousand eight hundred forty-three' WHERE a=7019;\nUPDATE t2 SET c='eighteen thousand eight hundred ninety-eight' WHERE a=7020;\nUPDATE t2 SET c='fifteen thousand three hundred seven' WHERE a=7021;\nUPDATE t2 SET c='sixty-five thousand nine hundred thirty' WHERE a=7022;\nUPDATE t2 SET c='ninety-two thousand two hundred twenty-one' WHERE a=7023;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty' WHERE a=7024;\nUPDATE t2 SET c='twenty-one thousand five hundred thirty-four' WHERE a=7025;\nUPDATE t2 SET c='twenty-six thousand five hundred fifty-five' WHERE a=7026;\nUPDATE t2 SET c='seventy-four thousand two hundred seventy-two' WHERE a=7027;\nUPDATE t2 SET c='thirty-three thousand nine hundred twenty' WHERE a=7028;\nUPDATE t2 SET c='seventy-five thousand one hundred twenty-one' WHERE a=7029;\nUPDATE t2 SET c='ninety-two thousand six hundred twelve' WHERE a=7030;\nUPDATE t2 SET c='thirty-four thousand ninety-nine' WHERE a=7031;\nUPDATE t2 SET c='eighty-eight thousand one hundred ninety-one' WHERE a=7032;\nUPDATE t2 SET c='seventy-two thousand two hundred twenty-four' WHERE a=7033;\nUPDATE t2 SET c='fifty-two thousand eight hundred sixty-eight' WHERE a=7034;\nUPDATE t2 SET c='eighty-six thousand eight hundred' WHERE a=7035;\nUPDATE t2 SET c='twenty-nine thousand seven hundred forty-four' WHERE a=7036;\nUPDATE t2 SET c='twenty thousand three hundred seventy-eight' WHERE a=7037;\nUPDATE t2 SET c='forty-one thousand four hundred thirty-two' WHERE a=7038;\nUPDATE t2 SET c='fifty-three thousand nine hundred twenty-six' WHERE a=7039;\nUPDATE t2 SET c='forty-two thousand three hundred one' WHERE a=7040;\nUPDATE t2 SET c='seventeen thousand thirty-two' WHERE a=7041;\nUPDATE t2 SET c='ninety thousand five hundred six' WHERE a=7042;\nUPDATE t2 SET c='seventeen thousand nine hundred seventy' WHERE a=7043;\nUPDATE t2 SET c='forty-five thousand four hundred fifty-three' WHERE a=7044;\nUPDATE t2 SET c='thirty-four thousand four hundred seventeen' WHERE a=7045;\nUPDATE t2 SET c='sixty-six thousand twenty-seven' WHERE a=7046;\nUPDATE t2 SET c='twenty-three thousand five hundred fifty-three' WHERE a=7047;\nUPDATE t2 SET c='eighty-one thousand two hundred twenty-two' WHERE a=7048;\nUPDATE t2 SET c='seventy-six thousand five hundred twenty-seven' WHERE a=7049;\nUPDATE t2 SET c='fourteen thousand two hundred sixty-three' WHERE a=7050;\nUPDATE t2 SET c='thirty-two thousand ninety-six' WHERE a=7051;\nUPDATE t2 SET c='fourteen thousand six hundred seventy-eight' WHERE a=7052;\nUPDATE t2 SET c='fifteen thousand nine hundred twenty-eight' WHERE a=7053;\nUPDATE t2 SET c='twenty-six thousand five hundred forty-five' WHERE a=7054;\nUPDATE t2 SET c='eleven thousand one hundred twenty-eight' WHERE a=7055;\nUPDATE t2 SET c='sixty-three thousand seven hundred twenty-eight' WHERE a=7056;\nUPDATE t2 SET c='forty-six thousand two hundred thirty-seven' WHERE a=7057;\nUPDATE t2 SET c='seventy-six thousand one hundred forty-nine' WHERE a=7058;\nUPDATE t2 SET c='fifty-five thousand four hundred seventy-nine' WHERE a=7059;\nUPDATE t2 SET c='ninety-two thousand eight hundred forty-four' WHERE a=7060;\nUPDATE t2 SET c='ninety-seven thousand nine hundred twenty-seven' WHERE a=7061;\nUPDATE t2 SET c='sixty-two thousand two hundred nine' WHERE a=7062;\nUPDATE t2 SET c='sixteen thousand one hundred seventy-five' WHERE a=7063;\nUPDATE t2 SET c='fifty-five thousand one hundred sixty-two' WHERE a=7064;\nUPDATE t2 SET c='forty-three thousand three hundred ninety-six' WHERE a=7065;\nUPDATE t2 SET c='nine thousand three hundred seventy-two' WHERE a=7066;\nUPDATE t2 SET c='fifty-one thousand seven hundred eighteen' WHERE a=7067;\nUPDATE t2 SET c='ninety-nine thousand three hundred thirty-three' WHERE a=7068;\nUPDATE t2 SET c='sixty-eight thousand six hundred forty-seven' WHERE a=7069;\nUPDATE t2 SET c='fifty-eight thousand six hundred twelve' WHERE a=7070;\nUPDATE t2 SET c='sixty-nine thousand six hundred forty-five' WHERE a=7071;\nUPDATE t2 SET c='fifty-seven thousand seven hundred ninety-four' WHERE a=7072;\nUPDATE t2 SET c='sixty-nine thousand seven hundred eighty-nine' WHERE a=7073;\nUPDATE t2 SET c='seventy-five thousand eleven' WHERE a=7074;\nUPDATE t2 SET c='fifty-nine thousand eight hundred ninety-four' WHERE a=7075;\nUPDATE t2 SET c='fifty-two thousand seven hundred twenty-two' WHERE a=7076;\nUPDATE t2 SET c='thirty-six thousand five hundred six' WHERE a=7077;\nUPDATE t2 SET c='three thousand nine hundred forty-two' WHERE a=7078;\nUPDATE t2 SET c='thirty-six thousand two hundred ninety-eight' WHERE a=7079;\nUPDATE t2 SET c='fifty-nine thousand ninety-five' WHERE a=7080;\nUPDATE t2 SET c='forty-seven thousand four hundred sixty-eight' WHERE a=7081;\nUPDATE t2 SET c='sixteen thousand one hundred seventy-five' WHERE a=7082;\nUPDATE t2 SET c='seventy-two thousand eight hundred sixty-eight' WHERE a=7083;\nUPDATE t2 SET c='forty-eight thousand seven hundred ninety-three' WHERE a=7084;\nUPDATE t2 SET c='sixty-two thousand three hundred fourteen' WHERE a=7085;\nUPDATE t2 SET c='seventy-eight thousand nine hundred sixty-five' WHERE a=7086;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-six' WHERE a=7087;\nUPDATE t2 SET c='six hundred forty-two' WHERE a=7088;\nUPDATE t2 SET c='seventeen thousand six hundred twelve' WHERE a=7089;\nUPDATE t2 SET c='eighty-seven thousand seven hundred fifty-five' WHERE a=7090;\nUPDATE t2 SET c='twenty-seven thousand two hundred fifteen' WHERE a=7091;\nUPDATE t2 SET c='fifty-three thousand four hundred twenty-one' WHERE a=7092;\nUPDATE t2 SET c='eighty-seven thousand eighteen' WHERE a=7093;\nUPDATE t2 SET c='fifty-three thousand six hundred twenty-five' WHERE a=7094;\nUPDATE t2 SET c='eighteen thousand nine hundred fifty-seven' WHERE a=7095;\nUPDATE t2 SET c='forty-one thousand two hundred fifty-seven' WHERE a=7096;\nUPDATE t2 SET c='fifty-eight thousand seven hundred seventeen' WHERE a=7097;\nUPDATE t2 SET c='seventy-four thousand nine hundred thirty-nine' WHERE a=7098;\nUPDATE t2 SET c='three thousand eight hundred two' WHERE a=7099;\nUPDATE t2 SET c='seventy-eight thousand six hundred sixty-nine' WHERE a=7100;\nUPDATE t2 SET c='sixty-eight thousand four hundred forty' WHERE a=7101;\nUPDATE t2 SET c='eleven thousand nine hundred eighty-seven' WHERE a=7102;\nUPDATE t2 SET c='ninety-seven thousand nine hundred sixty' WHERE a=7103;\nUPDATE t2 SET c='two thousand one hundred thirty-two' WHERE a=7104;\nUPDATE t2 SET c='thirty-two thousand six hundred nineteen' WHERE a=7105;\nUPDATE t2 SET c='ninety-four thousand fifty-six' WHERE a=7106;\nUPDATE t2 SET c='seven hundred twenty-nine' WHERE a=7107;\nUPDATE t2 SET c='nineteen thousand eight hundred fifty-three' WHERE a=7108;\nUPDATE t2 SET c='two thousand seven' WHERE a=7109;\nUPDATE t2 SET c='twenty thousand one hundred ninety-one' WHERE a=7110;\nUPDATE t2 SET c='fifty-one thousand five hundred nine' WHERE a=7111;\nUPDATE t2 SET c='eighty-nine thousand five hundred seventy-one' WHERE a=7112;\nUPDATE t2 SET c='seventy-one thousand three hundred thirty-five' WHERE a=7113;\nUPDATE t2 SET c='ninety-one thousand seven hundred one' WHERE a=7114;\nUPDATE t2 SET c='twelve thousand one hundred forty' WHERE a=7115;\nUPDATE t2 SET c='ninety-eight thousand four hundred ninety-nine' WHERE a=7116;\nUPDATE t2 SET c='forty-nine thousand three hundred forty-four' WHERE a=7117;\nUPDATE t2 SET c='sixty-six thousand one' WHERE a=7118;\nUPDATE t2 SET c='seventy-six thousand seven hundred eighty-one' WHERE a=7119;\nUPDATE t2 SET c='eighty-seven thousand one hundred three' WHERE a=7120;\nUPDATE t2 SET c='nine thousand five hundred fifty' WHERE a=7121;\nUPDATE t2 SET c='forty-four thousand six hundred ninety-three' WHERE a=7122;\nUPDATE t2 SET c='five thousand one hundred ninety-five' WHERE a=7123;\nUPDATE t2 SET c='eight thousand nine hundred five' WHERE a=7124;\nUPDATE t2 SET c='forty-three thousand six hundred twenty-seven' WHERE a=7125;\nUPDATE t2 SET c='sixty-five thousand seven hundred seven' WHERE a=7126;\nUPDATE t2 SET c='three thousand one hundred seventy-four' WHERE a=7127;\nUPDATE t2 SET c='fifty-eight thousand six hundred thirty-five' WHERE a=7128;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty-four' WHERE a=7129;\nUPDATE t2 SET c='eighty-one thousand nine hundred sixty' WHERE a=7130;\nUPDATE t2 SET c='fifty-nine thousand sixty' WHERE a=7131;\nUPDATE t2 SET c='seventy-two thousand nine hundred four' WHERE a=7132;\nUPDATE t2 SET c='seventy-seven thousand forty-three' WHERE a=7133;\nUPDATE t2 SET c='seventeen thousand eight hundred sixteen' WHERE a=7134;\nUPDATE t2 SET c='thirty-one thousand two hundred sixteen' WHERE a=7135;\nUPDATE t2 SET c='sixteen thousand five hundred fifty' WHERE a=7136;\nUPDATE t2 SET c='eighty-seven thousand nine hundred forty-three' WHERE a=7137;\nUPDATE t2 SET c='ninety-six thousand eight hundred seventy-seven' WHERE a=7138;\nUPDATE t2 SET c='thirteen thousand seven hundred eighty-five' WHERE a=7139;\nUPDATE t2 SET c='forty-two thousand seven hundred twenty-nine' WHERE a=7140;\nUPDATE t2 SET c='ninety-two thousand seven hundred eighty' WHERE a=7141;\nUPDATE t2 SET c='sixty thousand eight hundred fifty-nine' WHERE a=7142;\nUPDATE t2 SET c='eighty-one thousand four hundred ninety-seven' WHERE a=7143;\nUPDATE t2 SET c='six thousand one hundred ninety-four' WHERE a=7144;\nUPDATE t2 SET c='ninety-nine thousand seven hundred fifty-one' WHERE a=7145;\nUPDATE t2 SET c='thirty-eight thousand six hundred thirty-nine' WHERE a=7146;\nUPDATE t2 SET c='fifty-five thousand six hundred twenty-three' WHERE a=7147;\nUPDATE t2 SET c='seven thousand one hundred sixty-four' WHERE a=7148;\nUPDATE t2 SET c='thirty-five thousand seven hundred nineteen' WHERE a=7149;\nUPDATE t2 SET c='seventy-two thousand three hundred fifty-eight' WHERE a=7150;\nUPDATE t2 SET c='sixty thousand four hundred forty-seven' WHERE a=7151;\nUPDATE t2 SET c='twenty-three thousand twenty-six' WHERE a=7152;\nUPDATE t2 SET c='thirty-five thousand four hundred eighty' WHERE a=7153;\nUPDATE t2 SET c='fifty-seven thousand four hundred sixty' WHERE a=7154;\nUPDATE t2 SET c='eighty thousand two hundred eighteen' WHERE a=7155;\nUPDATE t2 SET c='fifty-six thousand four hundred eighty-one' WHERE a=7156;\nUPDATE t2 SET c='fifty-one thousand seven hundred sixty-two' WHERE a=7157;\nUPDATE t2 SET c='two thousand one hundred nine' WHERE a=7158;\nUPDATE t2 SET c='sixty-seven thousand five hundred three' WHERE a=7159;\nUPDATE t2 SET c='five thousand one hundred forty-two' WHERE a=7160;\nUPDATE t2 SET c='four thousand seven hundred seventy-five' WHERE a=7161;\nUPDATE t2 SET c='eighteen thousand five hundred sixty-three' WHERE a=7162;\nUPDATE t2 SET c='thirty-seven thousand eighty' WHERE a=7163;\nUPDATE t2 SET c='one hundred thirty-eight' WHERE a=7164;\nUPDATE t2 SET c='twenty-one thousand six hundred seven' WHERE a=7165;\nUPDATE t2 SET c='eight thousand six hundred seventy-three' WHERE a=7166;\nUPDATE t2 SET c='fifty-one thousand two hundred ninety-five' WHERE a=7167;\nUPDATE t2 SET c='sixty-one thousand three hundred thirty-five' WHERE a=7168;\nUPDATE t2 SET c='thirty-six thousand eight hundred seventy-six' WHERE a=7169;\nUPDATE t2 SET c='ninety-one thousand seven hundred sixty-four' WHERE a=7170;\nUPDATE t2 SET c='six thousand seven hundred eighty-seven' WHERE a=7171;\nUPDATE t2 SET c='thirty-four thousand six hundred ninety-two' WHERE a=7172;\nUPDATE t2 SET c='seventy-eight thousand seven hundred seventy-five' WHERE a=7173;\nUPDATE t2 SET c='eighty-three thousand five hundred fifty-three' WHERE a=7174;\nUPDATE t2 SET c='sixty-eight thousand five hundred seventy-three' WHERE a=7175;\nUPDATE t2 SET c='eleven thousand nine hundred eighty-one' WHERE a=7176;\nUPDATE t2 SET c='thirty-three thousand three hundred forty-eight' WHERE a=7177;\nUPDATE t2 SET c='nineteen thousand nine hundred five' WHERE a=7178;\nUPDATE t2 SET c='sixty-three thousand two hundred seventy-seven' WHERE a=7179;\nUPDATE t2 SET c='fifty-one thousand eight hundred two' WHERE a=7180;\nUPDATE t2 SET c='thirty-nine thousand five hundred eighty-four' WHERE a=7181;\nUPDATE t2 SET c='sixty-six thousand four hundred seventy-four' WHERE a=7182;\nUPDATE t2 SET c='three thousand one hundred seventy-two' WHERE a=7183;\nUPDATE t2 SET c='fifty-two thousand twenty-one' WHERE a=7184;\nUPDATE t2 SET c='twenty-three thousand one hundred forty-eight' WHERE a=7185;\nUPDATE t2 SET c='fifty thousand eight hundred fifty-four' WHERE a=7186;\nUPDATE t2 SET c='thirty-five thousand one hundred twenty-four' WHERE a=7187;\nUPDATE t2 SET c='ninety-eight thousand forty-two' WHERE a=7188;\nUPDATE t2 SET c='one thousand nine hundred fifty-three' WHERE a=7189;\nUPDATE t2 SET c='sixty-one thousand two hundred twelve' WHERE a=7190;\nUPDATE t2 SET c='twenty-four thousand four hundred sixty' WHERE a=7191;\nUPDATE t2 SET c='eighty-four thousand one hundred ninety-five' WHERE a=7192;\nUPDATE t2 SET c='ninety-four thousand eight hundred nine' WHERE a=7193;\nUPDATE t2 SET c='seventy-seven thousand three hundred fifty' WHERE a=7194;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety' WHERE a=7195;\nUPDATE t2 SET c='eighty-three thousand six hundred forty-six' WHERE a=7196;\nUPDATE t2 SET c='twenty-one thousand nine hundred forty-one' WHERE a=7197;\nUPDATE t2 SET c='sixty-one thousand one hundred twenty-four' WHERE a=7198;\nUPDATE t2 SET c='sixty-four thousand four hundred two' WHERE a=7199;\nUPDATE t2 SET c='sixty-four thousand eight hundred thirteen' WHERE a=7200;\nUPDATE t2 SET c='nine thousand seven hundred' WHERE a=7201;\nUPDATE t2 SET c='ninety-one thousand eight hundred eighty-eight' WHERE a=7202;\nUPDATE t2 SET c='six thousand thirty-three' WHERE a=7203;\nUPDATE t2 SET c='eighty-eight thousand four hundred eight' WHERE a=7204;\nUPDATE t2 SET c='forty-seven thousand one hundred twenty-eight' WHERE a=7205;\nUPDATE t2 SET c='seventy-seven thousand nine hundred forty-six' WHERE a=7206;\nUPDATE t2 SET c='twelve thousand six hundred forty' WHERE a=7207;\nUPDATE t2 SET c='fifty-three thousand five hundred thirty-four' WHERE a=7208;\nUPDATE t2 SET c='ninety thousand five hundred twenty-seven' WHERE a=7209;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty-three' WHERE a=7210;\nUPDATE t2 SET c='thirteen thousand five hundred fifty-four' WHERE a=7211;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-seven' WHERE a=7212;\nUPDATE t2 SET c='three thousand six hundred sixty' WHERE a=7213;\nUPDATE t2 SET c='seventy-seven thousand five hundred sixteen' WHERE a=7214;\nUPDATE t2 SET c='twenty thousand eight hundred seventy-seven' WHERE a=7215;\nUPDATE t2 SET c='forty-one thousand five hundred forty-nine' WHERE a=7216;\nUPDATE t2 SET c='four thousand four hundred sixty-three' WHERE a=7217;\nUPDATE t2 SET c='forty-three thousand five hundred thirty-eight' WHERE a=7218;\nUPDATE t2 SET c='forty-six thousand fifty-nine' WHERE a=7219;\nUPDATE t2 SET c='twenty-six thousand five hundred fifty-five' WHERE a=7220;\nUPDATE t2 SET c='sixteen thousand eight hundred four' WHERE a=7221;\nUPDATE t2 SET c='seventy-seven thousand one hundred seventy-eight' WHERE a=7222;\nUPDATE t2 SET c='seventy-four thousand forty' WHERE a=7223;\nUPDATE t2 SET c='fifty-seven thousand twenty-one' WHERE a=7224;\nUPDATE t2 SET c='one thousand nine hundred fifty-five' WHERE a=7225;\nUPDATE t2 SET c='nineteen thousand six hundred fifty-nine' WHERE a=7226;\nUPDATE t2 SET c='nine thousand two hundred forty-one' WHERE a=7227;\nUPDATE t2 SET c='seventeen thousand three hundred fifty-six' WHERE a=7228;\nUPDATE t2 SET c='twenty-four thousand four hundred seventy-three' WHERE a=7229;\nUPDATE t2 SET c='forty-four thousand five hundred twenty-two' WHERE a=7230;\nUPDATE t2 SET c='thirty-one thousand nine hundred two' WHERE a=7231;\nUPDATE t2 SET c='ten thousand nine hundred forty' WHERE a=7232;\nUPDATE t2 SET c='twenty thousand nine hundred seventy-seven' WHERE a=7233;\nUPDATE t2 SET c='thirty-six thousand nine hundred thirty-four' WHERE a=7234;\nUPDATE t2 SET c='eight thousand three hundred twenty-two' WHERE a=7235;\nUPDATE t2 SET c='twenty-two thousand seven hundred eighteen' WHERE a=7236;\nUPDATE t2 SET c='fifty-eight thousand thirty-eight' WHERE a=7237;\nUPDATE t2 SET c='thirteen thousand seven hundred ninety-seven' WHERE a=7238;\nUPDATE t2 SET c='sixty-seven thousand six hundred sixty-nine' WHERE a=7239;\nUPDATE t2 SET c='thirteen thousand one hundred eighty-four' WHERE a=7240;\nUPDATE t2 SET c='eighty-six thousand eight hundred ninety-nine' WHERE a=7241;\nUPDATE t2 SET c='forty-two thousand one hundred thirty-three' WHERE a=7242;\nUPDATE t2 SET c='sixty-four thousand four hundred ninety-three' WHERE a=7243;\nUPDATE t2 SET c='fifty-nine thousand fifty-two' WHERE a=7244;\nUPDATE t2 SET c='forty-one thousand forty-four' WHERE a=7245;\nUPDATE t2 SET c='twenty-eight thousand forty-one' WHERE a=7246;\nUPDATE t2 SET c='eighty-seven thousand three hundred twenty' WHERE a=7247;\nUPDATE t2 SET c='thirty-two thousand sixty-five' WHERE a=7248;\nUPDATE t2 SET c='forty-four thousand forty-four' WHERE a=7249;\nUPDATE t2 SET c='twelve thousand eight hundred fifty-six' WHERE a=7250;\nUPDATE t2 SET c='twenty-four thousand eight hundred forty-five' WHERE a=7251;\nUPDATE t2 SET c='eighty-five thousand two hundred three' WHERE a=7252;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-nine' WHERE a=7253;\nUPDATE t2 SET c='forty-five thousand seven hundred sixty-three' WHERE a=7254;\nUPDATE t2 SET c='forty thousand ten' WHERE a=7255;\nUPDATE t2 SET c='ninety-two thousand seven hundred eighty-two' WHERE a=7256;\nUPDATE t2 SET c='twenty-nine thousand eight hundred eighty-three' WHERE a=7257;\nUPDATE t2 SET c='fifty-seven thousand seven hundred ninety-seven' WHERE a=7258;\nUPDATE t2 SET c='ninety-four thousand forty-five' WHERE a=7259;\nUPDATE t2 SET c='thirty-two thousand one hundred seven' WHERE a=7260;\nUPDATE t2 SET c='sixty-five thousand six hundred twenty-two' WHERE a=7261;\nUPDATE t2 SET c='eighty thousand four hundred sixty-three' WHERE a=7262;\nUPDATE t2 SET c='one thousand eight hundred sixty-three' WHERE a=7263;\nUPDATE t2 SET c='fourteen thousand five hundred twenty-seven' WHERE a=7264;\nUPDATE t2 SET c='fifty-seven thousand seven hundred seventy-seven' WHERE a=7265;\nUPDATE t2 SET c='seventy-one thousand four hundred sixty-four' WHERE a=7266;\nUPDATE t2 SET c='eighty-five thousand seventy-three' WHERE a=7267;\nUPDATE t2 SET c='fifty-two thousand seven hundred ninety-seven' WHERE a=7268;\nUPDATE t2 SET c='twelve thousand eight hundred forty-nine' WHERE a=7269;\nUPDATE t2 SET c='ninety-eight thousand nine hundred sixty-four' WHERE a=7270;\nUPDATE t2 SET c='four thousand one hundred thirty' WHERE a=7271;\nUPDATE t2 SET c='thirty-four thousand three hundred thirty-five' WHERE a=7272;\nUPDATE t2 SET c='fifty-two thousand two hundred ninety' WHERE a=7273;\nUPDATE t2 SET c='fifty-seven thousand one hundred thirty-two' WHERE a=7274;\nUPDATE t2 SET c='ninety-three thousand four hundred ten' WHERE a=7275;\nUPDATE t2 SET c='fifty-nine thousand one' WHERE a=7276;\nUPDATE t2 SET c='thirty thousand four hundred thirty-five' WHERE a=7277;\nUPDATE t2 SET c='twenty-eight thousand two hundred ten' WHERE a=7278;\nUPDATE t2 SET c='sixty-nine thousand three hundred forty-six' WHERE a=7279;\nUPDATE t2 SET c='eleven thousand seven hundred forty-one' WHERE a=7280;\nUPDATE t2 SET c='twelve thousand two hundred eighteen' WHERE a=7281;\nUPDATE t2 SET c='seventy-three thousand four hundred thirty-three' WHERE a=7282;\nUPDATE t2 SET c='seventy-two thousand three hundred thirty-nine' WHERE a=7283;\nUPDATE t2 SET c='one thousand seven hundred fourteen' WHERE a=7284;\nUPDATE t2 SET c='forty thousand five hundred fifty-nine' WHERE a=7285;\nUPDATE t2 SET c='fifty-four thousand eight hundred fifty-four' WHERE a=7286;\nUPDATE t2 SET c='twenty-eight thousand nine hundred forty-eight' WHERE a=7287;\nUPDATE t2 SET c='forty-four thousand one hundred eighty-eight' WHERE a=7288;\nUPDATE t2 SET c='three hundred fifty-one' WHERE a=7289;\nUPDATE t2 SET c='thirty-one thousand four hundred sixty-eight' WHERE a=7290;\nUPDATE t2 SET c='forty-one thousand two hundred forty-three' WHERE a=7291;\nUPDATE t2 SET c='seventy-one thousand nine hundred twenty-seven' WHERE a=7292;\nUPDATE t2 SET c='sixty-six thousand sixty-two' WHERE a=7293;\nUPDATE t2 SET c='ninety-six thousand nine hundred' WHERE a=7294;\nUPDATE t2 SET c='sixty-nine thousand nine hundred forty-three' WHERE a=7295;\nUPDATE t2 SET c='sixty-eight thousand one hundred forty-seven' WHERE a=7296;\nUPDATE t2 SET c='thirty-five thousand three hundred twenty-eight' WHERE a=7297;\nUPDATE t2 SET c='nine thousand fifty-six' WHERE a=7298;\nUPDATE t2 SET c='six hundred thirty-three' WHERE a=7299;\nUPDATE t2 SET c='six thousand two hundred sixty-five' WHERE a=7300;\nUPDATE t2 SET c='sixty-five thousand nine hundred eighty-one' WHERE a=7301;\nUPDATE t2 SET c='sixty-two thousand five hundred forty' WHERE a=7302;\nUPDATE t2 SET c='twenty-eight thousand four hundred thirty-two' WHERE a=7303;\nUPDATE t2 SET c='seventy-seven thousand four hundred sixty-five' WHERE a=7304;\nUPDATE t2 SET c='fifty-one thousand six hundred forty-six' WHERE a=7305;\nUPDATE t2 SET c='eighty-four thousand eight hundred seven' WHERE a=7306;\nUPDATE t2 SET c='sixty-one thousand three hundred fifty-one' WHERE a=7307;\nUPDATE t2 SET c='thirty-six thousand seven hundred ninety-seven' WHERE a=7308;\nUPDATE t2 SET c='eighty-three thousand five hundred ten' WHERE a=7309;\nUPDATE t2 SET c='seventeen thousand three hundred seventy-one' WHERE a=7310;\nUPDATE t2 SET c='fifty-eight thousand eighteen' WHERE a=7311;\nUPDATE t2 SET c='twenty-five thousand nine hundred thirty-eight' WHERE a=7312;\nUPDATE t2 SET c='thirty-six thousand eight hundred thirty' WHERE a=7313;\nUPDATE t2 SET c='fifty-three thousand seven hundred eighty-four' WHERE a=7314;\nUPDATE t2 SET c='ninety-one thousand six hundred five' WHERE a=7315;\nUPDATE t2 SET c='fifty-seven thousand three hundred twenty-eight' WHERE a=7316;\nUPDATE t2 SET c='twenty-five thousand six hundred seventy-eight' WHERE a=7317;\nUPDATE t2 SET c='fourteen thousand eight hundred sixty-two' WHERE a=7318;\nUPDATE t2 SET c='ninety-nine thousand eight hundred ninety-eight' WHERE a=7319;\nUPDATE t2 SET c='nine thousand nine hundred seventy-two' WHERE a=7320;\nUPDATE t2 SET c='seven hundred seventeen' WHERE a=7321;\nUPDATE t2 SET c='seventy thousand six hundred five' WHERE a=7322;\nUPDATE t2 SET c='forty-one thousand two hundred sixty-four' WHERE a=7323;\nUPDATE t2 SET c='sixty-five thousand six hundred seventy-nine' WHERE a=7324;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-six' WHERE a=7325;\nUPDATE t2 SET c='forty-eight thousand seventy-one' WHERE a=7326;\nUPDATE t2 SET c='thirty-two thousand three hundred eighty-seven' WHERE a=7327;\nUPDATE t2 SET c='eighty-eight thousand seven hundred ninety-four' WHERE a=7328;\nUPDATE t2 SET c='sixty-one thousand three hundred seventy-six' WHERE a=7329;\nUPDATE t2 SET c='seventeen thousand two hundred eighty-three' WHERE a=7330;\nUPDATE t2 SET c='five thousand nine hundred ninety-two' WHERE a=7331;\nUPDATE t2 SET c='fifty-one thousand six hundred fifteen' WHERE a=7332;\nUPDATE t2 SET c='ninety-seven thousand five hundred eighty-six' WHERE a=7333;\nUPDATE t2 SET c='twenty-eight thousand five hundred sixty-five' WHERE a=7334;\nUPDATE t2 SET c='forty-eight thousand five hundred thirty' WHERE a=7335;\nUPDATE t2 SET c='forty thousand three hundred fifty-eight' WHERE a=7336;\nUPDATE t2 SET c='two thousand three hundred one' WHERE a=7337;\nUPDATE t2 SET c='twenty-four thousand two hundred fifty-seven' WHERE a=7338;\nUPDATE t2 SET c='sixty-six thousand nine hundred ninety-eight' WHERE a=7339;\nUPDATE t2 SET c='twenty-nine thousand eight hundred eighty-three' WHERE a=7340;\nUPDATE t2 SET c='nineteen thousand nine hundred fourteen' WHERE a=7341;\nUPDATE t2 SET c='twenty-six thousand seven hundred eighteen' WHERE a=7342;\nUPDATE t2 SET c='seventy-four thousand seven hundred seventy-five' WHERE a=7343;\nUPDATE t2 SET c='seventy-eight thousand two hundred forty-seven' WHERE a=7344;\nUPDATE t2 SET c='eighty-nine thousand three hundred four' WHERE a=7345;\nUPDATE t2 SET c='twenty-nine thousand one hundred sixty-five' WHERE a=7346;\nUPDATE t2 SET c='fifty-eight thousand eighty-seven' WHERE a=7347;\nUPDATE t2 SET c='eighty thousand two hundred sixteen' WHERE a=7348;\nUPDATE t2 SET c='four thousand one hundred forty-three' WHERE a=7349;\nUPDATE t2 SET c='seventy-four thousand three hundred forty-two' WHERE a=7350;\nUPDATE t2 SET c='seventeen thousand one hundred forty-three' WHERE a=7351;\nUPDATE t2 SET c='ninety-seven thousand three hundred' WHERE a=7352;\nUPDATE t2 SET c='fifty-five thousand eight hundred twenty-two' WHERE a=7353;\nUPDATE t2 SET c='nine thousand four hundred ninety-four' WHERE a=7354;\nUPDATE t2 SET c='eighteen thousand five hundred ten' WHERE a=7355;\nUPDATE t2 SET c='eighty-four thousand seven hundred twenty-nine' WHERE a=7356;\nUPDATE t2 SET c='fifty thousand four hundred thirty-two' WHERE a=7357;\nUPDATE t2 SET c='sixty-seven thousand two hundred thirty-eight' WHERE a=7358;\nUPDATE t2 SET c='sixty-six thousand seven hundred thirty-four' WHERE a=7359;\nUPDATE t2 SET c='eighty-four thousand five' WHERE a=7360;\nUPDATE t2 SET c='fourteen thousand two hundred nine' WHERE a=7361;\nUPDATE t2 SET c='two thousand eighty-four' WHERE a=7362;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty' WHERE a=7363;\nUPDATE t2 SET c='thirty-six thousand three hundred seven' WHERE a=7364;\nUPDATE t2 SET c='five thousand seven hundred nineteen' WHERE a=7365;\nUPDATE t2 SET c='sixty-eight thousand seven hundred two' WHERE a=7366;\nUPDATE t2 SET c='sixteen thousand three hundred eighteen' WHERE a=7367;\nUPDATE t2 SET c='forty thousand two hundred thirty-three' WHERE a=7368;\nUPDATE t2 SET c='sixty-two thousand one' WHERE a=7369;\nUPDATE t2 SET c='thirty-five thousand one hundred' WHERE a=7370;\nUPDATE t2 SET c='sixty-nine thousand seven hundred ten' WHERE a=7371;\nUPDATE t2 SET c='twenty-one thousand nine hundred sixty-one' WHERE a=7372;\nUPDATE t2 SET c='thirty-three thousand one hundred nineteen' WHERE a=7373;\nUPDATE t2 SET c='seventy-four thousand eight hundred eighty-seven' WHERE a=7374;\nUPDATE t2 SET c='seventy thousand six hundred ninety-three' WHERE a=7375;\nUPDATE t2 SET c='eighty-three thousand one' WHERE a=7376;\nUPDATE t2 SET c='ninety thousand three hundred thirty-eight' WHERE a=7377;\nUPDATE t2 SET c='thirty-two thousand seven hundred sixty' WHERE a=7378;\nUPDATE t2 SET c='seventy-four thousand five hundred seventeen' WHERE a=7379;\nUPDATE t2 SET c='thirty-eight thousand three hundred fourteen' WHERE a=7380;\nUPDATE t2 SET c='seventy-four thousand eight hundred nineteen' WHERE a=7381;\nUPDATE t2 SET c='three thousand nine hundred ninety-one' WHERE a=7382;\nUPDATE t2 SET c='sixty-eight thousand five hundred twenty-three' WHERE a=7383;\nUPDATE t2 SET c='eighty-nine thousand four hundred four' WHERE a=7384;\nUPDATE t2 SET c='seventy-eight thousand seven hundred fifty' WHERE a=7385;\nUPDATE t2 SET c='sixty-seven thousand seven hundred fifty-five' WHERE a=7386;\nUPDATE t2 SET c='thirteen thousand six hundred eighty-three' WHERE a=7387;\nUPDATE t2 SET c='forty thousand one hundred ninety-six' WHERE a=7388;\nUPDATE t2 SET c='seventy-seven thousand nine hundred twenty-six' WHERE a=7389;\nUPDATE t2 SET c='seventy-six thousand six hundred four' WHERE a=7390;\nUPDATE t2 SET c='ninety-two thousand six hundred fifty-one' WHERE a=7391;\nUPDATE t2 SET c='eighty-nine thousand eight hundred forty-six' WHERE a=7392;\nUPDATE t2 SET c='thirty-eight thousand three hundred twenty-nine' WHERE a=7393;\nUPDATE t2 SET c='eighty-one thousand eight hundred fifty-seven' WHERE a=7394;\nUPDATE t2 SET c='sixty-five thousand seven hundred thirty-six' WHERE a=7395;\nUPDATE t2 SET c='ten thousand four hundred sixty-six' WHERE a=7396;\nUPDATE t2 SET c='eighty-six thousand' WHERE a=7397;\nUPDATE t2 SET c='twenty-two thousand five hundred forty-one' WHERE a=7398;\nUPDATE t2 SET c='twenty-five thousand six hundred one' WHERE a=7399;\nUPDATE t2 SET c='eight hundred fifty-nine' WHERE a=7400;\nUPDATE t2 SET c='sixty-six thousand ninety-one' WHERE a=7401;\nUPDATE t2 SET c='ninety-one thousand six hundred nineteen' WHERE a=7402;\nUPDATE t2 SET c='eighty-five thousand nine hundred twenty-seven' WHERE a=7403;\nUPDATE t2 SET c='eighteen thousand eight hundred sixty-nine' WHERE a=7404;\nUPDATE t2 SET c='sixty-eight thousand one hundred eight' WHERE a=7405;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-one' WHERE a=7406;\nUPDATE t2 SET c='one thousand two hundred fifty' WHERE a=7407;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventy-nine' WHERE a=7408;\nUPDATE t2 SET c='twenty-eight thousand three hundred ninety-six' WHERE a=7409;\nUPDATE t2 SET c='fifty-three thousand eight hundred twenty-four' WHERE a=7410;\nUPDATE t2 SET c='twenty-seven thousand seven hundred ninety-five' WHERE a=7411;\nUPDATE t2 SET c='ninety-one thousand five hundred nine' WHERE a=7412;\nUPDATE t2 SET c='ninety-four thousand eight hundred seven' WHERE a=7413;\nUPDATE t2 SET c='eighty-five thousand six hundred twenty-one' WHERE a=7414;\nUPDATE t2 SET c='eighty-three thousand three hundred eighty-four' WHERE a=7415;\nUPDATE t2 SET c='seventy-six thousand four hundred twenty' WHERE a=7416;\nUPDATE t2 SET c='sixty-eight thousand three hundred fifty-seven' WHERE a=7417;\nUPDATE t2 SET c='fifty-three thousand eight hundred seventy-seven' WHERE a=7418;\nUPDATE t2 SET c='ninety-four thousand six hundred nineteen' WHERE a=7419;\nUPDATE t2 SET c='forty-three thousand nine hundred eighty-six' WHERE a=7420;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-two' WHERE a=7421;\nUPDATE t2 SET c='fifty-one thousand one hundred fifty-seven' WHERE a=7422;\nUPDATE t2 SET c='forty-two thousand five hundred thirty-eight' WHERE a=7423;\nUPDATE t2 SET c='thirteen thousand four hundred twelve' WHERE a=7424;\nUPDATE t2 SET c='forty-four thousand forty' WHERE a=7425;\nUPDATE t2 SET c='eight thousand seven hundred seventy-five' WHERE a=7426;\nUPDATE t2 SET c='ninety-six thousand four hundred seventy-eight' WHERE a=7427;\nUPDATE t2 SET c='sixty-six thousand five hundred twenty-nine' WHERE a=7428;\nUPDATE t2 SET c='seventy-nine thousand four hundred ninety-nine' WHERE a=7429;\nUPDATE t2 SET c='thirty-four thousand fifty-five' WHERE a=7430;\nUPDATE t2 SET c='fifty-one thousand five hundred sixty-five' WHERE a=7431;\nUPDATE t2 SET c='two thousand six hundred seventy-three' WHERE a=7432;\nUPDATE t2 SET c='seventy-four thousand five hundred sixty-seven' WHERE a=7433;\nUPDATE t2 SET c='seventy-seven thousand four hundred eighty-seven' WHERE a=7434;\nUPDATE t2 SET c='sixty-two thousand fourteen' WHERE a=7435;\nUPDATE t2 SET c='thirty-nine thousand one hundred' WHERE a=7436;\nUPDATE t2 SET c='ninety-one thousand one hundred twenty' WHERE a=7437;\nUPDATE t2 SET c='eighty-four thousand three hundred seventy-seven' WHERE a=7438;\nUPDATE t2 SET c='forty-seven thousand ninety-one' WHERE a=7439;\nUPDATE t2 SET c='thirty-nine thousand seven hundred thirteen' WHERE a=7440;\nUPDATE t2 SET c='thirty-seven thousand two hundred five' WHERE a=7441;\nUPDATE t2 SET c='eighty-four thousand one hundred twenty' WHERE a=7442;\nUPDATE t2 SET c='fifteen thousand eighty' WHERE a=7443;\nUPDATE t2 SET c='seventy thousand four hundred seventy' WHERE a=7444;\nUPDATE t2 SET c='twenty-six thousand four hundred five' WHERE a=7445;\nUPDATE t2 SET c='seventy-six thousand ninety-two' WHERE a=7446;\nUPDATE t2 SET c='forty-nine thousand six hundred twenty-three' WHERE a=7447;\nUPDATE t2 SET c='fifteen thousand four hundred twenty' WHERE a=7448;\nUPDATE t2 SET c='eighty-nine thousand three hundred ten' WHERE a=7449;\nUPDATE t2 SET c='fifty-nine thousand five hundred seventy-two' WHERE a=7450;\nUPDATE t2 SET c='fifty-three thousand six hundred eighty-seven' WHERE a=7451;\nUPDATE t2 SET c='four thousand two hundred eleven' WHERE a=7452;\nUPDATE t2 SET c='eighty-four thousand fifty' WHERE a=7453;\nUPDATE t2 SET c='twenty-four thousand one hundred twenty-six' WHERE a=7454;\nUPDATE t2 SET c='ninety-three thousand one hundred eighty-seven' WHERE a=7455;\nUPDATE t2 SET c='twelve thousand four hundred eighty' WHERE a=7456;\nUPDATE t2 SET c='fifty-eight thousand two hundred sixty-seven' WHERE a=7457;\nUPDATE t2 SET c='six thousand six hundred sixty' WHERE a=7458;\nUPDATE t2 SET c='ninety-six thousand three hundred seventy-seven' WHERE a=7459;\nUPDATE t2 SET c='seventy-two thousand eight hundred ninety-one' WHERE a=7460;\nUPDATE t2 SET c='sixty-nine thousand six hundred five' WHERE a=7461;\nUPDATE t2 SET c='twenty thousand four hundred thirty-seven' WHERE a=7462;\nUPDATE t2 SET c='twenty-seven thousand eight hundred eighty-seven' WHERE a=7463;\nUPDATE t2 SET c='fifty-five thousand five hundred eighty-three' WHERE a=7464;\nUPDATE t2 SET c='forty-six thousand four hundred seventy' WHERE a=7465;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty' WHERE a=7466;\nUPDATE t2 SET c='forty-four thousand one hundred eighty-eight' WHERE a=7467;\nUPDATE t2 SET c='thirteen thousand three hundred ninety-four' WHERE a=7468;\nUPDATE t2 SET c='thirty-four thousand nine hundred eighty-seven' WHERE a=7469;\nUPDATE t2 SET c='forty-two thousand eight hundred fourteen' WHERE a=7470;\nUPDATE t2 SET c='two thousand four hundred ninety-eight' WHERE a=7471;\nUPDATE t2 SET c='forty-two thousand six hundred forty-two' WHERE a=7472;\nUPDATE t2 SET c='thirty thousand five hundred twenty-seven' WHERE a=7473;\nUPDATE t2 SET c='thirty-nine thousand three hundred eighty' WHERE a=7474;\nUPDATE t2 SET c='ninety-four thousand six hundred forty-four' WHERE a=7475;\nUPDATE t2 SET c='sixty-six thousand six hundred eighty-one' WHERE a=7476;\nUPDATE t2 SET c='eighty-three thousand one hundred forty-five' WHERE a=7477;\nUPDATE t2 SET c='thirty-nine thousand one hundred sixty-seven' WHERE a=7478;\nUPDATE t2 SET c='seventeen thousand three hundred eighty-four' WHERE a=7479;\nUPDATE t2 SET c='eighty-two thousand four hundred fifty-four' WHERE a=7480;\nUPDATE t2 SET c='sixty-two thousand seventeen' WHERE a=7481;\nUPDATE t2 SET c='nine thousand six hundred thirty-five' WHERE a=7482;\nUPDATE t2 SET c='sixty-seven thousand sixteen' WHERE a=7483;\nUPDATE t2 SET c='sixty-eight thousand fifty-one' WHERE a=7484;\nUPDATE t2 SET c='eighty-nine thousand one hundred thirty-one' WHERE a=7485;\nUPDATE t2 SET c='seventy-eight thousand seven hundred sixty-seven' WHERE a=7486;\nUPDATE t2 SET c='four thousand two hundred eighty-three' WHERE a=7487;\nUPDATE t2 SET c='sixty-seven thousand nine hundred forty-one' WHERE a=7488;\nUPDATE t2 SET c='seventy-three thousand eight hundred sixty-eight' WHERE a=7489;\nUPDATE t2 SET c='eighty-six thousand seven hundred thirty-five' WHERE a=7490;\nUPDATE t2 SET c='forty-one thousand five hundred eighty-three' WHERE a=7491;\nUPDATE t2 SET c='sixteen thousand nine hundred seventy' WHERE a=7492;\nUPDATE t2 SET c='forty-four thousand two hundred eighty-one' WHERE a=7493;\nUPDATE t2 SET c='forty-eight thousand eight hundred five' WHERE a=7494;\nUPDATE t2 SET c='fifteen thousand four hundred fifteen' WHERE a=7495;\nUPDATE t2 SET c='twenty-five thousand three hundred seventy-five' WHERE a=7496;\nUPDATE t2 SET c='thirty-one thousand three hundred fifty-six' WHERE a=7497;\nUPDATE t2 SET c='nineteen thousand six hundred nine' WHERE a=7498;\nUPDATE t2 SET c='sixteen thousand three hundred seventy-one' WHERE a=7499;\nUPDATE t2 SET c='twenty-seven thousand five hundred sixty-seven' WHERE a=7500;\nUPDATE t2 SET c='ninety-nine thousand six hundred fifty-eight' WHERE a=7501;\nUPDATE t2 SET c='fifty-eight thousand seven hundred twenty-eight' WHERE a=7502;\nUPDATE t2 SET c='twenty-five thousand one hundred sixty-four' WHERE a=7503;\nUPDATE t2 SET c='forty thousand two hundred seventy-eight' WHERE a=7504;\nUPDATE t2 SET c='five thousand four hundred six' WHERE a=7505;\nUPDATE t2 SET c='seventy-six thousand eight hundred forty-seven' WHERE a=7506;\nUPDATE t2 SET c='eight thousand twenty-three' WHERE a=7507;\nUPDATE t2 SET c='forty thousand fifty-eight' WHERE a=7508;\nUPDATE t2 SET c='twenty-two thousand seven hundred seventy-eight' WHERE a=7509;\nUPDATE t2 SET c='eighty-seven thousand one hundred twelve' WHERE a=7510;\nUPDATE t2 SET c='fifty-five thousand six hundred sixty-one' WHERE a=7511;\nUPDATE t2 SET c='forty-four thousand nine hundred one' WHERE a=7512;\nUPDATE t2 SET c='fifty thousand eight hundred fifty-six' WHERE a=7513;\nUPDATE t2 SET c='twenty-three thousand seven hundred forty-seven' WHERE a=7514;\nUPDATE t2 SET c='fifty-four thousand six hundred forty-seven' WHERE a=7515;\nUPDATE t2 SET c='ninety-three thousand four hundred eighty-seven' WHERE a=7516;\nUPDATE t2 SET c='forty-one thousand six hundred eighty-two' WHERE a=7517;\nUPDATE t2 SET c='fifty-six thousand two hundred four' WHERE a=7518;\nUPDATE t2 SET c='ninety-six thousand three hundred sixty-nine' WHERE a=7519;\nUPDATE t2 SET c='seventy-nine thousand eight hundred four' WHERE a=7520;\nUPDATE t2 SET c='sixty-eight thousand five hundred fifty-nine' WHERE a=7521;\nUPDATE t2 SET c='fourteen thousand eighteen' WHERE a=7522;\nUPDATE t2 SET c='eighty-three thousand seven hundred eleven' WHERE a=7523;\nUPDATE t2 SET c='forty thousand four hundred thirty-five' WHERE a=7524;\nUPDATE t2 SET c='thirty-two thousand seven hundred sixty-five' WHERE a=7525;\nUPDATE t2 SET c='forty thousand five hundred forty-eight' WHERE a=7526;\nUPDATE t2 SET c='forty-nine thousand one hundred' WHERE a=7527;\nUPDATE t2 SET c='thirty-eight thousand seven hundred eight' WHERE a=7528;\nUPDATE t2 SET c='one thousand seven hundred seventy-one' WHERE a=7529;\nUPDATE t2 SET c='two thousand fifty-three' WHERE a=7530;\nUPDATE t2 SET c='fifty-three thousand three hundred ten' WHERE a=7531;\nUPDATE t2 SET c='thirty-six thousand four hundred thirty' WHERE a=7532;\nUPDATE t2 SET c='thirty-two thousand five hundred thirty' WHERE a=7533;\nUPDATE t2 SET c='eighty-five thousand one hundred seventy-six' WHERE a=7534;\nUPDATE t2 SET c='ninety-six thousand one hundred forty-one' WHERE a=7535;\nUPDATE t2 SET c='seventy-three thousand four hundred three' WHERE a=7536;\nUPDATE t2 SET c='thirteen thousand five hundred eighty-nine' WHERE a=7537;\nUPDATE t2 SET c='ninety thousand seven hundred sixty-one' WHERE a=7538;\nUPDATE t2 SET c='nine thousand seven hundred ten' WHERE a=7539;\nUPDATE t2 SET c='seven thousand one hundred five' WHERE a=7540;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-three' WHERE a=7541;\nUPDATE t2 SET c='seventy-three thousand seven hundred' WHERE a=7542;\nUPDATE t2 SET c='ten thousand seven hundred two' WHERE a=7543;\nUPDATE t2 SET c='forty-seven thousand nine hundred sixty-seven' WHERE a=7544;\nUPDATE t2 SET c='twenty-two thousand three hundred eighty-seven' WHERE a=7545;\nUPDATE t2 SET c='twenty-nine thousand eight hundred forty-seven' WHERE a=7546;\nUPDATE t2 SET c='seventy-nine thousand two hundred seventy' WHERE a=7547;\nUPDATE t2 SET c='twenty-six thousand four hundred eighty-eight' WHERE a=7548;\nUPDATE t2 SET c='seventeen thousand two hundred ninety-four' WHERE a=7549;\nUPDATE t2 SET c='sixty-eight thousand seven hundred forty-six' WHERE a=7550;\nUPDATE t2 SET c='fourteen thousand six hundred thirty-nine' WHERE a=7551;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-six' WHERE a=7552;\nUPDATE t2 SET c='ninety-four thousand nine hundred thirty-two' WHERE a=7553;\nUPDATE t2 SET c='eleven thousand nine hundred twenty-nine' WHERE a=7554;\nUPDATE t2 SET c='ninety-nine thousand eight hundred ninety' WHERE a=7555;\nUPDATE t2 SET c='twenty-seven thousand six hundred eighty-four' WHERE a=7556;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty-seven' WHERE a=7557;\nUPDATE t2 SET c='twenty-four thousand five hundred forty-six' WHERE a=7558;\nUPDATE t2 SET c='forty-six thousand one hundred twenty' WHERE a=7559;\nUPDATE t2 SET c='sixty-eight thousand four' WHERE a=7560;\nUPDATE t2 SET c='ninety-five thousand eight hundred seventy-three' WHERE a=7561;\nUPDATE t2 SET c='thirty-seven thousand four hundred sixty-nine' WHERE a=7562;\nUPDATE t2 SET c='forty-three thousand five hundred seventy-four' WHERE a=7563;\nUPDATE t2 SET c='sixty-four thousand one hundred thirty-seven' WHERE a=7564;\nUPDATE t2 SET c='fifteen thousand four hundred sixty-eight' WHERE a=7565;\nUPDATE t2 SET c='twenty-six thousand four hundred twenty-one' WHERE a=7566;\nUPDATE t2 SET c='sixty-one thousand one hundred ninety' WHERE a=7567;\nUPDATE t2 SET c='thirteen thousand two hundred twelve' WHERE a=7568;\nUPDATE t2 SET c='forty-four thousand one hundred ninety-nine' WHERE a=7569;\nUPDATE t2 SET c='thirty-eight thousand six hundred fifty-five' WHERE a=7570;\nUPDATE t2 SET c='forty-two thousand twenty-seven' WHERE a=7571;\nUPDATE t2 SET c='seventy-seven thousand four hundred forty-five' WHERE a=7572;\nUPDATE t2 SET c='sixty-seven thousand two hundred twenty-six' WHERE a=7573;\nUPDATE t2 SET c='thirty-nine thousand four hundred seventy-eight' WHERE a=7574;\nUPDATE t2 SET c='forty-one thousand four hundred thirty-nine' WHERE a=7575;\nUPDATE t2 SET c='sixty-six thousand two hundred seventy-eight' WHERE a=7576;\nUPDATE t2 SET c='ninety-six thousand one hundred sixty-five' WHERE a=7577;\nUPDATE t2 SET c='ninety-three thousand eight hundred forty-three' WHERE a=7578;\nUPDATE t2 SET c='thirty-four thousand two hundred fifty-four' WHERE a=7579;\nUPDATE t2 SET c='fifty-eight thousand six hundred one' WHERE a=7580;\nUPDATE t2 SET c='thirty thousand eight hundred fifty-four' WHERE a=7581;\nUPDATE t2 SET c='thirty-three thousand two hundred seven' WHERE a=7582;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eighty-one' WHERE a=7583;\nUPDATE t2 SET c='twenty-four thousand five hundred twenty-three' WHERE a=7584;\nUPDATE t2 SET c='eighty-eight thousand four hundred eighty-two' WHERE a=7585;\nUPDATE t2 SET c='forty-six thousand one hundred fifty' WHERE a=7586;\nUPDATE t2 SET c='eight thousand eighteen' WHERE a=7587;\nUPDATE t2 SET c='nineteen thousand five hundred five' WHERE a=7588;\nUPDATE t2 SET c='twenty-seven thousand two' WHERE a=7589;\nUPDATE t2 SET c='fifty thousand one hundred seventy-eight' WHERE a=7590;\nUPDATE t2 SET c='eighteen thousand three hundred fifty-nine' WHERE a=7591;\nUPDATE t2 SET c='seventy-nine thousand one hundred fifty' WHERE a=7592;\nUPDATE t2 SET c='thirty-nine thousand five hundred thirty' WHERE a=7593;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixty-one' WHERE a=7594;\nUPDATE t2 SET c='thirty-three thousand six hundred thirty' WHERE a=7595;\nUPDATE t2 SET c='five thousand seventy-one' WHERE a=7596;\nUPDATE t2 SET c='sixty-eight thousand one hundred thirty' WHERE a=7597;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-four' WHERE a=7598;\nUPDATE t2 SET c='seven thousand six hundred forty-seven' WHERE a=7599;\nUPDATE t2 SET c='sixty-two thousand four hundred ten' WHERE a=7600;\nUPDATE t2 SET c='thirty-two thousand nine hundred fifty-seven' WHERE a=7601;\nUPDATE t2 SET c='sixty-two thousand five hundred eighty-nine' WHERE a=7602;\nUPDATE t2 SET c='ninety-one thousand three hundred twenty-eight' WHERE a=7603;\nUPDATE t2 SET c='ninety-seven thousand one hundred twenty-eight' WHERE a=7604;\nUPDATE t2 SET c='sixty-two thousand seven hundred three' WHERE a=7605;\nUPDATE t2 SET c='twenty-one thousand three hundred sixty-seven' WHERE a=7606;\nUPDATE t2 SET c='eighty-eight thousand six hundred seven' WHERE a=7607;\nUPDATE t2 SET c='twenty-three thousand eight hundred three' WHERE a=7608;\nUPDATE t2 SET c='two thousand six hundred fourteen' WHERE a=7609;\nUPDATE t2 SET c='twenty-four thousand two hundred sixty-seven' WHERE a=7610;\nUPDATE t2 SET c='forty-three thousand two hundred fifty-nine' WHERE a=7611;\nUPDATE t2 SET c='ninety-nine thousand five hundred fifty' WHERE a=7612;\nUPDATE t2 SET c='ninety-six thousand fifty-four' WHERE a=7613;\nUPDATE t2 SET c='forty-eight thousand two hundred fifty-seven' WHERE a=7614;\nUPDATE t2 SET c='twelve thousand four hundred twenty-eight' WHERE a=7615;\nUPDATE t2 SET c='eight thousand seven hundred forty-three' WHERE a=7616;\nUPDATE t2 SET c='seventy-six thousand four hundred thirty-six' WHERE a=7617;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirteen' WHERE a=7618;\nUPDATE t2 SET c='fifteen thousand eight hundred twenty-four' WHERE a=7619;\nUPDATE t2 SET c='seventeen thousand nine hundred seventeen' WHERE a=7620;\nUPDATE t2 SET c='eight thousand nine hundred ninety-three' WHERE a=7621;\nUPDATE t2 SET c='eighty-three thousand seven hundred forty-five' WHERE a=7622;\nUPDATE t2 SET c='ninety-three thousand four hundred twenty-three' WHERE a=7623;\nUPDATE t2 SET c='sixty-seven thousand one hundred one' WHERE a=7624;\nUPDATE t2 SET c='forty-nine thousand one hundred nineteen' WHERE a=7625;\nUPDATE t2 SET c='four thousand four hundred eight' WHERE a=7626;\nUPDATE t2 SET c='thirty-six thousand six hundred twenty-eight' WHERE a=7627;\nUPDATE t2 SET c='six thousand eight hundred seventy-seven' WHERE a=7628;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ninety-nine' WHERE a=7629;\nUPDATE t2 SET c='five thousand four hundred ninety-three' WHERE a=7630;\nUPDATE t2 SET c='twenty-one thousand nine hundred fifty-two' WHERE a=7631;\nUPDATE t2 SET c='fifty-seven thousand nine hundred one' WHERE a=7632;\nUPDATE t2 SET c='sixty-two thousand one hundred forty-five' WHERE a=7633;\nUPDATE t2 SET c='three thousand one hundred ninety-four' WHERE a=7634;\nUPDATE t2 SET c='fifty-four thousand one hundred twelve' WHERE a=7635;\nUPDATE t2 SET c='thirty-five thousand two hundred seventy-six' WHERE a=7636;\nUPDATE t2 SET c='three thousand four hundred five' WHERE a=7637;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-one' WHERE a=7638;\nUPDATE t2 SET c='fifty thousand two hundred sixty-five' WHERE a=7639;\nUPDATE t2 SET c='ninety-five thousand two hundred twenty-five' WHERE a=7640;\nUPDATE t2 SET c='ninety-three thousand eight hundred sixty-seven' WHERE a=7641;\nUPDATE t2 SET c='eighty-seven thousand two hundred thirty-seven' WHERE a=7642;\nUPDATE t2 SET c='three thousand seven hundred eighty-two' WHERE a=7643;\nUPDATE t2 SET c='ten thousand four hundred thirty-two' WHERE a=7644;\nUPDATE t2 SET c='ninety-eight thousand eight hundred eighty-three' WHERE a=7645;\nUPDATE t2 SET c='eighty-one thousand two hundred thirteen' WHERE a=7646;\nUPDATE t2 SET c='forty-eight thousand forty-four' WHERE a=7647;\nUPDATE t2 SET c='seventy-three thousand eight hundred thirty-one' WHERE a=7648;\nUPDATE t2 SET c='forty-two thousand twenty-six' WHERE a=7649;\nUPDATE t2 SET c='eighteen thousand eight hundred twenty-eight' WHERE a=7650;\nUPDATE t2 SET c='twenty-two thousand four hundred eighty-five' WHERE a=7651;\nUPDATE t2 SET c='forty-two thousand one hundred ten' WHERE a=7652;\nUPDATE t2 SET c='thirty-nine thousand two' WHERE a=7653;\nUPDATE t2 SET c='eight thousand one hundred sixty-three' WHERE a=7654;\nUPDATE t2 SET c='fifty-six thousand twenty-six' WHERE a=7655;\nUPDATE t2 SET c='sixty-eight thousand two hundred eighty' WHERE a=7656;\nUPDATE t2 SET c='fifty-three thousand seven hundred nineteen' WHERE a=7657;\nUPDATE t2 SET c='twenty-four thousand six hundred fifty-three' WHERE a=7658;\nUPDATE t2 SET c='ninety thousand seven hundred eighteen' WHERE a=7659;\nUPDATE t2 SET c='twelve thousand seven hundred twenty-three' WHERE a=7660;\nUPDATE t2 SET c='twenty-eight thousand eight hundred ninety' WHERE a=7661;\nUPDATE t2 SET c='thirty-two thousand forty-two' WHERE a=7662;\nUPDATE t2 SET c='ninety-nine thousand four hundred fifty-six' WHERE a=7663;\nUPDATE t2 SET c='twenty-six thousand six hundred thirteen' WHERE a=7664;\nUPDATE t2 SET c='ninety-two thousand nine hundred twenty' WHERE a=7665;\nUPDATE t2 SET c='thirty-one thousand one hundred seventy-seven' WHERE a=7666;\nUPDATE t2 SET c='twenty-eight thousand one hundred five' WHERE a=7667;\nUPDATE t2 SET c='fifty-three thousand eight hundred eighty-seven' WHERE a=7668;\nUPDATE t2 SET c='thirty-four thousand five hundred seventy-eight' WHERE a=7669;\nUPDATE t2 SET c='forty-nine thousand two hundred thirty-seven' WHERE a=7670;\nUPDATE t2 SET c='seventy-one thousand two hundred seventy-nine' WHERE a=7671;\nUPDATE t2 SET c='sixty-seven thousand three hundred fifty-seven' WHERE a=7672;\nUPDATE t2 SET c='forty-four thousand five hundred sixty-four' WHERE a=7673;\nUPDATE t2 SET c='five thousand nine hundred three' WHERE a=7674;\nUPDATE t2 SET c='ninety-three thousand eight hundred fifty-two' WHERE a=7675;\nUPDATE t2 SET c='fifty-six thousand two hundred thirty-six' WHERE a=7676;\nUPDATE t2 SET c='twenty-two thousand four hundred sixty-nine' WHERE a=7677;\nUPDATE t2 SET c='twenty-eight thousand one hundred fifty-four' WHERE a=7678;\nUPDATE t2 SET c='thirty-one thousand eight hundred thirty-eight' WHERE a=7679;\nUPDATE t2 SET c='thirty-four thousand thirty-five' WHERE a=7680;\nUPDATE t2 SET c='forty-five thousand one hundred one' WHERE a=7681;\nUPDATE t2 SET c='twenty-six thousand four hundred thirty-one' WHERE a=7682;\nUPDATE t2 SET c='twenty-seven thousand seven hundred fifty-four' WHERE a=7683;\nUPDATE t2 SET c='thirty-six thousand eight hundred thirty-two' WHERE a=7684;\nUPDATE t2 SET c='fourteen thousand two hundred four' WHERE a=7685;\nUPDATE t2 SET c='fifty-three thousand nine hundred thirty-one' WHERE a=7686;\nUPDATE t2 SET c='ninety-five thousand eight hundred ninety-three' WHERE a=7687;\nUPDATE t2 SET c='forty-seven thousand nine hundred fifty-three' WHERE a=7688;\nUPDATE t2 SET c='thirty-four thousand six hundred twenty-seven' WHERE a=7689;\nUPDATE t2 SET c='seventy-eight thousand eight hundred twenty-three' WHERE a=7690;\nUPDATE t2 SET c='seventy-three thousand four hundred seventy' WHERE a=7691;\nUPDATE t2 SET c='ten thousand two hundred sixty-seven' WHERE a=7692;\nUPDATE t2 SET c='forty-seven thousand nine hundred eighty-five' WHERE a=7693;\nUPDATE t2 SET c='seventy-five thousand fifty-six' WHERE a=7694;\nUPDATE t2 SET c='seventy-four thousand two hundred eighty-three' WHERE a=7695;\nUPDATE t2 SET c='fifty-four thousand ninety-two' WHERE a=7696;\nUPDATE t2 SET c='forty-nine thousand four hundred twenty-eight' WHERE a=7697;\nUPDATE t2 SET c='ninety-two thousand thirty-seven' WHERE a=7698;\nUPDATE t2 SET c='seventy-six thousand eight hundred seventy-one' WHERE a=7699;\nUPDATE t2 SET c='sixty-one thousand four hundred ninety' WHERE a=7700;\nUPDATE t2 SET c='sixty-six thousand eight hundred sixty-five' WHERE a=7701;\nUPDATE t2 SET c='thirty-two thousand eight hundred sixty-six' WHERE a=7702;\nUPDATE t2 SET c='forty-three thousand eight hundred thirty-one' WHERE a=7703;\nUPDATE t2 SET c='seventy-two thousand seven hundred' WHERE a=7704;\nUPDATE t2 SET c='eleven thousand one hundred eleven' WHERE a=7705;\nUPDATE t2 SET c='fifty-eight thousand eight hundred thirty-five' WHERE a=7706;\nUPDATE t2 SET c='seventy-seven thousand one hundred fifty-nine' WHERE a=7707;\nUPDATE t2 SET c='fifty-two thousand six hundred ninety-two' WHERE a=7708;\nUPDATE t2 SET c='ninety-five thousand nine hundred thirty' WHERE a=7709;\nUPDATE t2 SET c='thirty-seven thousand nine hundred sixty-one' WHERE a=7710;\nUPDATE t2 SET c='sixty thousand nine hundred fifteen' WHERE a=7711;\nUPDATE t2 SET c='ninety-five thousand five hundred forty-five' WHERE a=7712;\nUPDATE t2 SET c='sixty-five thousand six hundred one' WHERE a=7713;\nUPDATE t2 SET c='sixty-six thousand three hundred ninety-eight' WHERE a=7714;\nUPDATE t2 SET c='four thousand four hundred forty-six' WHERE a=7715;\nUPDATE t2 SET c='seventy-seven thousand five hundred' WHERE a=7716;\nUPDATE t2 SET c='thirty-two thousand one hundred eighty-seven' WHERE a=7717;\nUPDATE t2 SET c='sixty-nine thousand six hundred eighteen' WHERE a=7718;\nUPDATE t2 SET c='three thousand nine hundred forty-four' WHERE a=7719;\nUPDATE t2 SET c='ninety-five thousand nine hundred fifty-two' WHERE a=7720;\nUPDATE t2 SET c='fifty-four thousand seven hundred sixty-nine' WHERE a=7721;\nUPDATE t2 SET c='twenty-eight thousand six hundred two' WHERE a=7722;\nUPDATE t2 SET c='twenty-six thousand one hundred fifty-six' WHERE a=7723;\nUPDATE t2 SET c='ninety-two thousand nine hundred twenty-six' WHERE a=7724;\nUPDATE t2 SET c='ninety thousand eight hundred eighty' WHERE a=7725;\nUPDATE t2 SET c='seventy-seven thousand one hundred two' WHERE a=7726;\nUPDATE t2 SET c='twenty-eight thousand seven hundred eight' WHERE a=7727;\nUPDATE t2 SET c='thirty-five thousand two hundred eight' WHERE a=7728;\nUPDATE t2 SET c='sixty-three thousand three hundred four' WHERE a=7729;\nUPDATE t2 SET c='twenty-nine thousand four hundred eighty-two' WHERE a=7730;\nUPDATE t2 SET c='forty-two thousand five hundred eighty-nine' WHERE a=7731;\nUPDATE t2 SET c='three thousand four hundred ten' WHERE a=7732;\nUPDATE t2 SET c='seventy-four thousand five hundred forty' WHERE a=7733;\nUPDATE t2 SET c='fifty-two thousand five hundred twenty-five' WHERE a=7734;\nUPDATE t2 SET c='seventy thousand five hundred eighty-three' WHERE a=7735;\nUPDATE t2 SET c='eighty-four thousand nine hundred ninety-six' WHERE a=7736;\nUPDATE t2 SET c='seventy-four thousand four hundred thirty-three' WHERE a=7737;\nUPDATE t2 SET c='twenty-one thousand four hundred thirty-seven' WHERE a=7738;\nUPDATE t2 SET c='seventy-two thousand four hundred three' WHERE a=7739;\nUPDATE t2 SET c='ninety-two thousand nine hundred seventy-four' WHERE a=7740;\nUPDATE t2 SET c='sixty-eight thousand eight hundred eight' WHERE a=7741;\nUPDATE t2 SET c='forty-four thousand seven hundred sixty-eight' WHERE a=7742;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety' WHERE a=7743;\nUPDATE t2 SET c='sixty-four thousand seven hundred four' WHERE a=7744;\nUPDATE t2 SET c='eleven thousand seven hundred thirteen' WHERE a=7745;\nUPDATE t2 SET c='eight thousand seven hundred thirty-nine' WHERE a=7746;\nUPDATE t2 SET c='sixty-two thousand eighty-three' WHERE a=7747;\nUPDATE t2 SET c='twenty-three thousand five hundred seventy-eight' WHERE a=7748;\nUPDATE t2 SET c='fifty-three thousand two hundred sixty-eight' WHERE a=7749;\nUPDATE t2 SET c='nineteen thousand eight hundred seventy-seven' WHERE a=7750;\nUPDATE t2 SET c='eighty-eight thousand one hundred thirty-one' WHERE a=7751;\nUPDATE t2 SET c='eighty-seven thousand six hundred forty' WHERE a=7752;\nUPDATE t2 SET c='forty-three thousand four hundred eighty-nine' WHERE a=7753;\nUPDATE t2 SET c='sixteen thousand seven hundred one' WHERE a=7754;\nUPDATE t2 SET c='ninety-three thousand three hundred ninety-two' WHERE a=7755;\nUPDATE t2 SET c='forty thousand six hundred eighty-five' WHERE a=7756;\nUPDATE t2 SET c='twenty-six thousand six hundred ninety-two' WHERE a=7757;\nUPDATE t2 SET c='five thousand three hundred ninety-four' WHERE a=7758;\nUPDATE t2 SET c='twenty-nine thousand two hundred forty-three' WHERE a=7759;\nUPDATE t2 SET c='sixty thousand five hundred fifty-two' WHERE a=7760;\nUPDATE t2 SET c='thirteen thousand four hundred three' WHERE a=7761;\nUPDATE t2 SET c='seventy thousand eight hundred sixty' WHERE a=7762;\nUPDATE t2 SET c='fifty-one thousand four' WHERE a=7763;\nUPDATE t2 SET c='seventy-five thousand four hundred ninety-five' WHERE a=7764;\nUPDATE t2 SET c='fifty-five thousand four hundred fifty-six' WHERE a=7765;\nUPDATE t2 SET c='thirteen thousand four hundred seventy-six' WHERE a=7766;\nUPDATE t2 SET c='twenty-five thousand seven hundred fifty-eight' WHERE a=7767;\nUPDATE t2 SET c='fifteen thousand six hundred eight' WHERE a=7768;\nUPDATE t2 SET c='eighteen thousand seven hundred thirty-nine' WHERE a=7769;\nUPDATE t2 SET c='thirty-three thousand five hundred seventy-three' WHERE a=7770;\nUPDATE t2 SET c='twenty-seven thousand five hundred thirty-nine' WHERE a=7771;\nUPDATE t2 SET c='thirty-one thousand five hundred four' WHERE a=7772;\nUPDATE t2 SET c='fifty-one thousand four hundred seven' WHERE a=7773;\nUPDATE t2 SET c='seven thousand five hundred fifty-eight' WHERE a=7774;\nUPDATE t2 SET c='ninety-six thousand seven hundred eighty-seven' WHERE a=7775;\nUPDATE t2 SET c='ninety-two thousand eight hundred four' WHERE a=7776;\nUPDATE t2 SET c='twenty-nine thousand two hundred seventy' WHERE a=7777;\nUPDATE t2 SET c='thirty-two thousand five hundred sixty-seven' WHERE a=7778;\nUPDATE t2 SET c='ninety-eight thousand eight hundred ninety-eight' WHERE a=7779;\nUPDATE t2 SET c='seventy-two thousand twenty-eight' WHERE a=7780;\nUPDATE t2 SET c='four thousand one hundred ninety-two' WHERE a=7781;\nUPDATE t2 SET c='eighty-four thousand thirty-two' WHERE a=7782;\nUPDATE t2 SET c='five thousand four hundred twenty-nine' WHERE a=7783;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-eight' WHERE a=7784;\nUPDATE t2 SET c='five thousand one hundred fifty-eight' WHERE a=7785;\nUPDATE t2 SET c='seventy-two thousand nine hundred seventy-two' WHERE a=7786;\nUPDATE t2 SET c='nine thousand two hundred ninety-one' WHERE a=7787;\nUPDATE t2 SET c='thirty-four thousand six hundred thirty-five' WHERE a=7788;\nUPDATE t2 SET c='five thousand forty-two' WHERE a=7789;\nUPDATE t2 SET c='fifty-five thousand four hundred thirty-three' WHERE a=7790;\nUPDATE t2 SET c='twenty-nine thousand nine hundred sixty-four' WHERE a=7791;\nUPDATE t2 SET c='ninety-three thousand seven hundred fifty' WHERE a=7792;\nUPDATE t2 SET c='twelve thousand five hundred six' WHERE a=7793;\nUPDATE t2 SET c='twelve thousand one hundred five' WHERE a=7794;\nUPDATE t2 SET c='ninety-three thousand one hundred thirty-six' WHERE a=7795;\nUPDATE t2 SET c='ninety-four thousand seven hundred seventy-six' WHERE a=7796;\nUPDATE t2 SET c='forty-five thousand six hundred eighty-two' WHERE a=7797;\nUPDATE t2 SET c='eighty-eight thousand four hundred thirty-six' WHERE a=7798;\nUPDATE t2 SET c='ninety-nine thousand six hundred twenty-seven' WHERE a=7799;\nUPDATE t2 SET c='twenty-three thousand five hundred twenty-nine' WHERE a=7800;\nUPDATE t2 SET c='forty-seven thousand seven hundred fifty-two' WHERE a=7801;\nUPDATE t2 SET c='eighty-eight thousand nine hundred' WHERE a=7802;\nUPDATE t2 SET c='thirty-four thousand seven hundred thirty-eight' WHERE a=7803;\nUPDATE t2 SET c='eighty thousand nine hundred twenty-two' WHERE a=7804;\nUPDATE t2 SET c='seventy-nine thousand six hundred thirty' WHERE a=7805;\nUPDATE t2 SET c='thirty-two thousand eight hundred fourteen' WHERE a=7806;\nUPDATE t2 SET c='forty-nine thousand nine hundred fifty-eight' WHERE a=7807;\nUPDATE t2 SET c='seventy-eight thousand five hundred eighty-seven' WHERE a=7808;\nUPDATE t2 SET c='ninety-eight thousand nine hundred fifty' WHERE a=7809;\nUPDATE t2 SET c='eighty-five thousand six hundred twenty-eight' WHERE a=7810;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-five' WHERE a=7811;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy' WHERE a=7812;\nUPDATE t2 SET c='one hundred sixty' WHERE a=7813;\nUPDATE t2 SET c='fifty-six thousand sixty-nine' WHERE a=7814;\nUPDATE t2 SET c='eight thousand two hundred ninety-six' WHERE a=7815;\nUPDATE t2 SET c='fourteen thousand three hundred sixty-seven' WHERE a=7816;\nUPDATE t2 SET c='seventy-two thousand five hundred sixteen' WHERE a=7817;\nUPDATE t2 SET c='twenty-seven thousand two hundred sixteen' WHERE a=7818;\nUPDATE t2 SET c='fifty thousand five hundred seventy-one' WHERE a=7819;\nUPDATE t2 SET c='twenty-nine thousand four hundred eighty-three' WHERE a=7820;\nUPDATE t2 SET c='twenty-eight thousand nine hundred fifteen' WHERE a=7821;\nUPDATE t2 SET c='thirty-five thousand seven hundred thirty-three' WHERE a=7822;\nUPDATE t2 SET c='ninety-two thousand one hundred six' WHERE a=7823;\nUPDATE t2 SET c='twenty-nine thousand eight hundred ninety-six' WHERE a=7824;\nUPDATE t2 SET c='seventy-four thousand one hundred sixty' WHERE a=7825;\nUPDATE t2 SET c='ninety-six thousand two hundred eight' WHERE a=7826;\nUPDATE t2 SET c='forty-three thousand six hundred fifty' WHERE a=7827;\nUPDATE t2 SET c='forty-seven thousand eight hundred eighty-nine' WHERE a=7828;\nUPDATE t2 SET c='sixty-two thousand twenty' WHERE a=7829;\nUPDATE t2 SET c='sixty-three thousand one hundred sixty-seven' WHERE a=7830;\nUPDATE t2 SET c='twenty-two thousand five hundred ninety' WHERE a=7831;\nUPDATE t2 SET c='thirty-eight thousand nine hundred fifty-eight' WHERE a=7832;\nUPDATE t2 SET c='ninety-eight thousand six hundred eleven' WHERE a=7833;\nUPDATE t2 SET c='ninety-eight thousand four hundred eight' WHERE a=7834;\nUPDATE t2 SET c='nineteen thousand two hundred ninety-seven' WHERE a=7835;\nUPDATE t2 SET c='ten thousand eight hundred forty-eight' WHERE a=7836;\nUPDATE t2 SET c='ninety-four thousand eight hundred eighty-three' WHERE a=7837;\nUPDATE t2 SET c='forty-eight thousand four hundred fifty-five' WHERE a=7838;\nUPDATE t2 SET c='ninety-eight thousand one hundred fifty-two' WHERE a=7839;\nUPDATE t2 SET c='thirty-five thousand two hundred thirty-seven' WHERE a=7840;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixty-eight' WHERE a=7841;\nUPDATE t2 SET c='forty-four thousand three hundred ninety-five' WHERE a=7842;\nUPDATE t2 SET c='seventeen thousand four hundred ninety-one' WHERE a=7843;\nUPDATE t2 SET c='forty-five thousand six hundred seventy-eight' WHERE a=7844;\nUPDATE t2 SET c='twenty thousand one hundred' WHERE a=7845;\nUPDATE t2 SET c='forty-nine thousand five hundred sixty-two' WHERE a=7846;\nUPDATE t2 SET c='seventy-three thousand eight hundred nineteen' WHERE a=7847;\nUPDATE t2 SET c='fifty-three thousand seven hundred twenty-three' WHERE a=7848;\nUPDATE t2 SET c='forty-two thousand six hundred nineteen' WHERE a=7849;\nUPDATE t2 SET c='eighty thousand nine hundred forty-six' WHERE a=7850;\nUPDATE t2 SET c='forty-six thousand three hundred ninety-three' WHERE a=7851;\nUPDATE t2 SET c='forty-eight thousand three hundred forty-five' WHERE a=7852;\nUPDATE t2 SET c='twenty-five thousand one hundred forty-one' WHERE a=7853;\nUPDATE t2 SET c='one hundred fifty-six' WHERE a=7854;\nUPDATE t2 SET c='ninety-four thousand one hundred sixty-nine' WHERE a=7855;\nUPDATE t2 SET c='seventy-eight thousand five hundred sixty-six' WHERE a=7856;\nUPDATE t2 SET c='six thousand seven hundred thirty-seven' WHERE a=7857;\nUPDATE t2 SET c='eighty-five thousand two hundred eighty-nine' WHERE a=7858;\nUPDATE t2 SET c='eighteen thousand three hundred thirty-six' WHERE a=7859;\nUPDATE t2 SET c='sixty-four thousand seven hundred eighty-five' WHERE a=7860;\nUPDATE t2 SET c='forty-seven thousand five hundred eighty-one' WHERE a=7861;\nUPDATE t2 SET c='twenty-one thousand five hundred seventy-two' WHERE a=7862;\nUPDATE t2 SET c='fifty-seven thousand five hundred ten' WHERE a=7863;\nUPDATE t2 SET c='eighty-seven thousand thirty-nine' WHERE a=7864;\nUPDATE t2 SET c='thirty-three thousand two hundred seven' WHERE a=7865;\nUPDATE t2 SET c='eighty-nine thousand six hundred thirty-two' WHERE a=7866;\nUPDATE t2 SET c='eighty-two thousand seven hundred twenty-three' WHERE a=7867;\nUPDATE t2 SET c='eighty-one thousand five hundred ninety-one' WHERE a=7868;\nUPDATE t2 SET c='sixty-nine thousand two hundred twenty-one' WHERE a=7869;\nUPDATE t2 SET c='six thousand one hundred three' WHERE a=7870;\nUPDATE t2 SET c='sixty-two thousand eight hundred seventeen' WHERE a=7871;\nUPDATE t2 SET c='seventy-seven thousand two hundred thirty-one' WHERE a=7872;\nUPDATE t2 SET c='fifty thousand one hundred seventy-seven' WHERE a=7873;\nUPDATE t2 SET c='eighty-eight thousand twenty-seven' WHERE a=7874;\nUPDATE t2 SET c='sixteen thousand five hundred forty-five' WHERE a=7875;\nUPDATE t2 SET c='one thousand four hundred ninety-seven' WHERE a=7876;\nUPDATE t2 SET c='seventy-six thousand eight hundred ninety-five' WHERE a=7877;\nUPDATE t2 SET c='ninety-nine thousand four hundred forty-eight' WHERE a=7878;\nUPDATE t2 SET c='thirty-eight thousand eight hundred' WHERE a=7879;\nUPDATE t2 SET c='thirty-five thousand two hundred three' WHERE a=7880;\nUPDATE t2 SET c='ninety-two thousand two hundred forty-one' WHERE a=7881;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-six' WHERE a=7882;\nUPDATE t2 SET c='thirty-five thousand one hundred twenty-four' WHERE a=7883;\nUPDATE t2 SET c='thirteen thousand nine hundred sixty-nine' WHERE a=7884;\nUPDATE t2 SET c='fifteen thousand four hundred sixty-one' WHERE a=7885;\nUPDATE t2 SET c='twenty-one thousand four hundred forty-nine' WHERE a=7886;\nUPDATE t2 SET c='seventy thousand eighty' WHERE a=7887;\nUPDATE t2 SET c='seventy-three thousand seven hundred nineteen' WHERE a=7888;\nUPDATE t2 SET c='thirty-six thousand sixty-five' WHERE a=7889;\nUPDATE t2 SET c='sixty-one thousand five hundred thirty-three' WHERE a=7890;\nUPDATE t2 SET c='thirty-nine thousand three hundred nine' WHERE a=7891;\nUPDATE t2 SET c='seventy-five thousand five hundred sixty-five' WHERE a=7892;\nUPDATE t2 SET c='seventy-nine thousand seven hundred twenty-eight' WHERE a=7893;\nUPDATE t2 SET c='seventy-eight thousand nine hundred sixty-five' WHERE a=7894;\nUPDATE t2 SET c='thirty-six thousand six hundred ninety-four' WHERE a=7895;\nUPDATE t2 SET c='fifty-three thousand seven hundred thirty-six' WHERE a=7896;\nUPDATE t2 SET c='thirteen thousand one hundred sixty-four' WHERE a=7897;\nUPDATE t2 SET c='forty-one thousand nine hundred forty-one' WHERE a=7898;\nUPDATE t2 SET c='sixty-seven thousand eight hundred sixty-nine' WHERE a=7899;\nUPDATE t2 SET c='fifty-four thousand three hundred sixty-one' WHERE a=7900;\nUPDATE t2 SET c='forty-eight thousand three hundred forty-two' WHERE a=7901;\nUPDATE t2 SET c='ninety-five thousand four hundred seventy-eight' WHERE a=7902;\nUPDATE t2 SET c='fifty thousand nine hundred ninety-six' WHERE a=7903;\nUPDATE t2 SET c='thirty-seven thousand eight hundred sixty-eight' WHERE a=7904;\nUPDATE t2 SET c='forty-six thousand two hundred forty-three' WHERE a=7905;\nUPDATE t2 SET c='twenty-nine thousand five hundred forty-four' WHERE a=7906;\nUPDATE t2 SET c='fifty-eight thousand two hundred seventeen' WHERE a=7907;\nUPDATE t2 SET c='twenty-two thousand nine hundred thirty-eight' WHERE a=7908;\nUPDATE t2 SET c='ninety-six thousand two hundred twenty-five' WHERE a=7909;\nUPDATE t2 SET c='nine thousand eight hundred seventy-four' WHERE a=7910;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-four' WHERE a=7911;\nUPDATE t2 SET c='fifty-nine thousand three hundred thirty-four' WHERE a=7912;\nUPDATE t2 SET c='forty-four thousand seven hundred ninety-six' WHERE a=7913;\nUPDATE t2 SET c='sixty-four thousand six hundred fifty-one' WHERE a=7914;\nUPDATE t2 SET c='eight thousand eight hundred forty-eight' WHERE a=7915;\nUPDATE t2 SET c='forty-three thousand one hundred eleven' WHERE a=7916;\nUPDATE t2 SET c='twenty-eight thousand one hundred forty' WHERE a=7917;\nUPDATE t2 SET c='sixty-one thousand seven hundred seventy-three' WHERE a=7918;\nUPDATE t2 SET c='eighty-two thousand two hundred eight' WHERE a=7919;\nUPDATE t2 SET c='three hundred fifty-one' WHERE a=7920;\nUPDATE t2 SET c='twelve thousand seven hundred fifty-nine' WHERE a=7921;\nUPDATE t2 SET c='sixty-seven thousand eight hundred fifty-seven' WHERE a=7922;\nUPDATE t2 SET c='ninety-eight thousand nine hundred twelve' WHERE a=7923;\nUPDATE t2 SET c='seventy-three thousand four hundred eighty-six' WHERE a=7924;\nUPDATE t2 SET c='fifty-nine thousand fifteen' WHERE a=7925;\nUPDATE t2 SET c='thirty-three thousand four hundred eighty-two' WHERE a=7926;\nUPDATE t2 SET c='fifteen thousand two hundred forty-four' WHERE a=7927;\nUPDATE t2 SET c='nine thousand eight hundred thirty-three' WHERE a=7928;\nUPDATE t2 SET c='fifty-three thousand nine hundred seventy-two' WHERE a=7929;\nUPDATE t2 SET c='fifty-four thousand three hundred thirty-three' WHERE a=7930;\nUPDATE t2 SET c='eighteen thousand three hundred forty-eight' WHERE a=7931;\nUPDATE t2 SET c='seventy-nine thousand two hundred eighty-two' WHERE a=7932;\nUPDATE t2 SET c='forty-seven thousand eight hundred twenty-five' WHERE a=7933;\nUPDATE t2 SET c='two thousand four hundred forty-eight' WHERE a=7934;\nUPDATE t2 SET c='twenty-six thousand eight hundred fifty-seven' WHERE a=7935;\nUPDATE t2 SET c='sixty-four thousand seventy-one' WHERE a=7936;\nUPDATE t2 SET c='sixty-eight thousand two hundred seventeen' WHERE a=7937;\nUPDATE t2 SET c='thirteen thousand three hundred seventy-nine' WHERE a=7938;\nUPDATE t2 SET c='sixty thousand two hundred forty' WHERE a=7939;\nUPDATE t2 SET c='ninety-four thousand five hundred seventy-two' WHERE a=7940;\nUPDATE t2 SET c='fourteen thousand six hundred four' WHERE a=7941;\nUPDATE t2 SET c='eighty-five thousand seventy-six' WHERE a=7942;\nUPDATE t2 SET c='fourteen thousand three hundred five' WHERE a=7943;\nUPDATE t2 SET c='ninety-five thousand eight hundred ninety-six' WHERE a=7944;\nUPDATE t2 SET c='thirty-two thousand five hundred seventy-one' WHERE a=7945;\nUPDATE t2 SET c='eighty-two thousand eighty' WHERE a=7946;\nUPDATE t2 SET c='one thousand eight hundred thirty-nine' WHERE a=7947;\nUPDATE t2 SET c='seventy-two thousand five hundred nine' WHERE a=7948;\nUPDATE t2 SET c='eight thousand nine hundred thirty-eight' WHERE a=7949;\nUPDATE t2 SET c='seventy-five thousand seven hundred thirteen' WHERE a=7950;\nUPDATE t2 SET c='ninety-six thousand one hundred fifty-five' WHERE a=7951;\nUPDATE t2 SET c='thirty-five thousand one hundred twenty-nine' WHERE a=7952;\nUPDATE t2 SET c='six thousand two hundred nine' WHERE a=7953;\nUPDATE t2 SET c='forty-nine thousand seven hundred forty-nine' WHERE a=7954;\nUPDATE t2 SET c='sixty-three thousand four hundred thirty' WHERE a=7955;\nUPDATE t2 SET c='nineteen thousand ninety-five' WHERE a=7956;\nUPDATE t2 SET c='fourteen thousand six hundred sixty-seven' WHERE a=7957;\nUPDATE t2 SET c='forty-five thousand seven hundred six' WHERE a=7958;\nUPDATE t2 SET c='seventeen thousand eight hundred eighty-one' WHERE a=7959;\nUPDATE t2 SET c='twenty-one thousand four hundred ninety' WHERE a=7960;\nUPDATE t2 SET c='eighty-four thousand seven hundred ninety-four' WHERE a=7961;\nUPDATE t2 SET c='twenty-six thousand one hundred eight' WHERE a=7962;\nUPDATE t2 SET c='eighty-four thousand five hundred ninety-four' WHERE a=7963;\nUPDATE t2 SET c='thirty-seven thousand nine hundred seventy-eight' WHERE a=7964;\nUPDATE t2 SET c='thirty-four thousand one hundred one' WHERE a=7965;\nUPDATE t2 SET c='ninety-one thousand one hundred seventy-two' WHERE a=7966;\nUPDATE t2 SET c='fifty-nine thousand eight hundred eighty-six' WHERE a=7967;\nUPDATE t2 SET c='twenty-seven thousand five hundred sixty-six' WHERE a=7968;\nUPDATE t2 SET c='ninety-seven thousand two hundred fifty-three' WHERE a=7969;\nUPDATE t2 SET c='fifty-one thousand five hundred sixty-three' WHERE a=7970;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-four' WHERE a=7971;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-three' WHERE a=7972;\nUPDATE t2 SET c='seventy-nine thousand six hundred three' WHERE a=7973;\nUPDATE t2 SET c='sixty-eight thousand three hundred seventeen' WHERE a=7974;\nUPDATE t2 SET c='seventy-two thousand six hundred twenty-one' WHERE a=7975;\nUPDATE t2 SET c='ninety-six thousand eight hundred twenty-three' WHERE a=7976;\nUPDATE t2 SET c='fifty thousand seven hundred four' WHERE a=7977;\nUPDATE t2 SET c='two thousand eight hundred fifty-one' WHERE a=7978;\nUPDATE t2 SET c='sixty-nine thousand five hundred five' WHERE a=7979;\nUPDATE t2 SET c='seventy-two thousand two hundred fourteen' WHERE a=7980;\nUPDATE t2 SET c='fifty-one thousand four hundred eight' WHERE a=7981;\nUPDATE t2 SET c='nineteen thousand nine hundred twenty' WHERE a=7982;\nUPDATE t2 SET c='seventy-seven thousand three hundred twenty-eight' WHERE a=7983;\nUPDATE t2 SET c='forty-two thousand nine hundred fifty' WHERE a=7984;\nUPDATE t2 SET c='eleven thousand six hundred ninety-seven' WHERE a=7985;\nUPDATE t2 SET c='twenty-nine thousand four hundred eighty' WHERE a=7986;\nUPDATE t2 SET c='sixty-five thousand seven hundred eighty-two' WHERE a=7987;\nUPDATE t2 SET c='seventy-four thousand three hundred thirteen' WHERE a=7988;\nUPDATE t2 SET c='forty-six thousand five hundred thirteen' WHERE a=7989;\nUPDATE t2 SET c='seventy-six thousand nine hundred fifty-two' WHERE a=7990;\nUPDATE t2 SET c='sixty-three thousand seven hundred ninety-six' WHERE a=7991;\nUPDATE t2 SET c='ninety-three thousand six hundred four' WHERE a=7992;\nUPDATE t2 SET c='eighty-three thousand one hundred fifty-one' WHERE a=7993;\nUPDATE t2 SET c='thirty-one thousand nine hundred five' WHERE a=7994;\nUPDATE t2 SET c='ninety-five thousand eight hundred twenty-five' WHERE a=7995;\nUPDATE t2 SET c='twenty-six thousand fifty-five' WHERE a=7996;\nUPDATE t2 SET c='sixty-six thousand five hundred sixty-six' WHERE a=7997;\nUPDATE t2 SET c='thirty-nine thousand six hundred eighty-six' WHERE a=7998;\nUPDATE t2 SET c='fifteen thousand eight hundred eighty-five' WHERE a=7999;\nUPDATE t2 SET c='thirty-nine thousand six hundred eighty-five' WHERE a=8000;\nUPDATE t2 SET c='nineteen thousand four hundred ninety-one' WHERE a=8001;\nUPDATE t2 SET c='fourteen thousand one hundred two' WHERE a=8002;\nUPDATE t2 SET c='ninety-four thousand nine hundred ninety-one' WHERE a=8003;\nUPDATE t2 SET c='ninety-two thousand one hundred ninety-five' WHERE a=8004;\nUPDATE t2 SET c='sixty-five thousand ninety-three' WHERE a=8005;\nUPDATE t2 SET c='ninety-six thousand three hundred eighty-eight' WHERE a=8006;\nUPDATE t2 SET c='seven thousand two hundred sixty-five' WHERE a=8007;\nUPDATE t2 SET c='thirty-six thousand thirty-nine' WHERE a=8008;\nUPDATE t2 SET c='sixty-five thousand one hundred thirty-three' WHERE a=8009;\nUPDATE t2 SET c='sixty-two thousand two hundred twenty-six' WHERE a=8010;\nUPDATE t2 SET c='thirty-four thousand four hundred ninety-nine' WHERE a=8011;\nUPDATE t2 SET c='twenty-seven thousand one hundred forty-six' WHERE a=8012;\nUPDATE t2 SET c='fifty-two thousand five hundred four' WHERE a=8013;\nUPDATE t2 SET c='forty-one thousand five hundred twenty-three' WHERE a=8014;\nUPDATE t2 SET c='eighty-six thousand three hundred seventy-two' WHERE a=8015;\nUPDATE t2 SET c='twenty-eight thousand four hundred sixty' WHERE a=8016;\nUPDATE t2 SET c='forty-three thousand six hundred ninety-four' WHERE a=8017;\nUPDATE t2 SET c='seventy thousand two hundred ninety-two' WHERE a=8018;\nUPDATE t2 SET c='twenty-three thousand six hundred forty-seven' WHERE a=8019;\nUPDATE t2 SET c='forty-four thousand fifty-nine' WHERE a=8020;\nUPDATE t2 SET c='twenty-seven thousand six hundred' WHERE a=8021;\nUPDATE t2 SET c='fifty-nine thousand four hundred sixty-seven' WHERE a=8022;\nUPDATE t2 SET c='sixty-six thousand eight hundred five' WHERE a=8023;\nUPDATE t2 SET c='one thousand six hundred forty' WHERE a=8024;\nUPDATE t2 SET c='nine thousand five hundred ninety-eight' WHERE a=8025;\nUPDATE t2 SET c='twenty-one thousand two hundred eighty-five' WHERE a=8026;\nUPDATE t2 SET c='eighty-eight thousand eight hundred sixty' WHERE a=8027;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety-nine' WHERE a=8028;\nUPDATE t2 SET c='forty-three thousand nine hundred fifty-five' WHERE a=8029;\nUPDATE t2 SET c='sixty thousand five hundred eighty' WHERE a=8030;\nUPDATE t2 SET c='thirty-five thousand four hundred nine' WHERE a=8031;\nUPDATE t2 SET c='sixty-seven thousand five hundred thirty-four' WHERE a=8032;\nUPDATE t2 SET c='eighteen thousand two hundred forty' WHERE a=8033;\nUPDATE t2 SET c='seventy-eight thousand four hundred seventy' WHERE a=8034;\nUPDATE t2 SET c='fifty-three thousand six hundred sixty-four' WHERE a=8035;\nUPDATE t2 SET c='ninety-three thousand seven hundred thirty-one' WHERE a=8036;\nUPDATE t2 SET c='seventy-five thousand five hundred ninety-one' WHERE a=8037;\nUPDATE t2 SET c='eighty-nine thousand nine hundred ninety-six' WHERE a=8038;\nUPDATE t2 SET c='seven thousand nine hundred seventy-five' WHERE a=8039;\nUPDATE t2 SET c='sixty-three thousand eight hundred thirty-nine' WHERE a=8040;\nUPDATE t2 SET c='eighty thousand eight' WHERE a=8041;\nUPDATE t2 SET c='five thousand four' WHERE a=8042;\nUPDATE t2 SET c='sixty-nine thousand eight hundred thirty-three' WHERE a=8043;\nUPDATE t2 SET c='eighty-five thousand six hundred thirty' WHERE a=8044;\nUPDATE t2 SET c='fifty-eight thousand three hundred fifty-eight' WHERE a=8045;\nUPDATE t2 SET c='sixty-five thousand seven hundred ten' WHERE a=8046;\nUPDATE t2 SET c='ninety-two thousand four hundred twenty-five' WHERE a=8047;\nUPDATE t2 SET c='thirty-eight thousand seventy-six' WHERE a=8048;\nUPDATE t2 SET c='eleven thousand one hundred twenty-three' WHERE a=8049;\nUPDATE t2 SET c='ninety-six thousand seven hundred ninety-one' WHERE a=8050;\nUPDATE t2 SET c='ninety-nine thousand four hundred seventy' WHERE a=8051;\nUPDATE t2 SET c='forty-one thousand four hundred sixteen' WHERE a=8052;\nUPDATE t2 SET c='twelve thousand eight hundred ninety-eight' WHERE a=8053;\nUPDATE t2 SET c='nineteen thousand nine hundred seventy-one' WHERE a=8054;\nUPDATE t2 SET c='thirty-three thousand eight hundred twenty-six' WHERE a=8055;\nUPDATE t2 SET c='forty-one thousand four hundred thirty-four' WHERE a=8056;\nUPDATE t2 SET c='seven thousand seven hundred seventy-eight' WHERE a=8057;\nUPDATE t2 SET c='twenty-eight thousand seven hundred ninety-nine' WHERE a=8058;\nUPDATE t2 SET c='forty-nine thousand two hundred eleven' WHERE a=8059;\nUPDATE t2 SET c='ninety-three thousand three hundred forty-five' WHERE a=8060;\nUPDATE t2 SET c='eight thousand five hundred fifty-five' WHERE a=8061;\nUPDATE t2 SET c='thirty-six thousand two hundred seventy-five' WHERE a=8062;\nUPDATE t2 SET c='thirty-five thousand four hundred seventy-six' WHERE a=8063;\nUPDATE t2 SET c='fifty-eight thousand five hundred forty-seven' WHERE a=8064;\nUPDATE t2 SET c='forty-one thousand eighty-six' WHERE a=8065;\nUPDATE t2 SET c='eighty-six thousand eight hundred seventy' WHERE a=8066;\nUPDATE t2 SET c='eighty-seven thousand six hundred ninety-one' WHERE a=8067;\nUPDATE t2 SET c='sixty-five thousand seven hundred forty-six' WHERE a=8068;\nUPDATE t2 SET c='nineteen thousand one hundred sixty-five' WHERE a=8069;\nUPDATE t2 SET c='seventy-two thousand six hundred eighteen' WHERE a=8070;\nUPDATE t2 SET c='ninety-eight thousand six hundred thirty-eight' WHERE a=8071;\nUPDATE t2 SET c='thirty-one thousand seven hundred eighty-one' WHERE a=8072;\nUPDATE t2 SET c='ten thousand one hundred six' WHERE a=8073;\nUPDATE t2 SET c='sixty-five thousand three hundred thirty-four' WHERE a=8074;\nUPDATE t2 SET c='thirty thousand seven hundred eighty-one' WHERE a=8075;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-seven' WHERE a=8076;\nUPDATE t2 SET c='eighty-nine thousand two hundred forty-four' WHERE a=8077;\nUPDATE t2 SET c='three thousand one hundred sixty-six' WHERE a=8078;\nUPDATE t2 SET c='two thousand five hundred fifty-three' WHERE a=8079;\nUPDATE t2 SET c='seventy thousand six hundred seventy-three' WHERE a=8080;\nUPDATE t2 SET c='fifty-eight thousand nine hundred sixty-one' WHERE a=8081;\nUPDATE t2 SET c='six thousand three hundred twenty-one' WHERE a=8082;\nUPDATE t2 SET c='sixty-seven thousand three hundred twenty-eight' WHERE a=8083;\nUPDATE t2 SET c='ninety-seven thousand seven hundred nineteen' WHERE a=8084;\nUPDATE t2 SET c='twenty-one thousand eighty-one' WHERE a=8085;\nUPDATE t2 SET c='ninety-one thousand eight hundred thirty-seven' WHERE a=8086;\nUPDATE t2 SET c='forty thousand one hundred thirty-one' WHERE a=8087;\nUPDATE t2 SET c='forty-seven thousand six hundred fifty-one' WHERE a=8088;\nUPDATE t2 SET c='eighteen thousand nine hundred fourteen' WHERE a=8089;\nUPDATE t2 SET c='seventy thousand six hundred sixty-four' WHERE a=8090;\nUPDATE t2 SET c='twenty-six thousand five hundred sixty-four' WHERE a=8091;\nUPDATE t2 SET c='two thousand two hundred eighty-seven' WHERE a=8092;\nUPDATE t2 SET c='eighty-seven thousand seventy-five' WHERE a=8093;\nUPDATE t2 SET c='four thousand seven hundred thirty-eight' WHERE a=8094;\nUPDATE t2 SET c='seven thousand two hundred seventy-four' WHERE a=8095;\nUPDATE t2 SET c='forty-one thousand three hundred ninety-seven' WHERE a=8096;\nUPDATE t2 SET c='twenty thousand nine hundred twenty' WHERE a=8097;\nUPDATE t2 SET c='ten thousand one hundred ninety-four' WHERE a=8098;\nUPDATE t2 SET c='thirty-three thousand four hundred thirty-three' WHERE a=8099;\nUPDATE t2 SET c='twenty thousand five hundred thirty-two' WHERE a=8100;\nUPDATE t2 SET c='forty-one thousand five hundred fifty-nine' WHERE a=8101;\nUPDATE t2 SET c='twenty-eight thousand six hundred eighty-five' WHERE a=8102;\nUPDATE t2 SET c='twenty-eight thousand three hundred eighty-eight' WHERE a=8103;\nUPDATE t2 SET c='fifty-nine thousand eighty-five' WHERE a=8104;\nUPDATE t2 SET c='eighty-seven thousand six hundred eight' WHERE a=8105;\nUPDATE t2 SET c='seven thousand four hundred eighty-four' WHERE a=8106;\nUPDATE t2 SET c='forty-nine thousand eight hundred sixty-nine' WHERE a=8107;\nUPDATE t2 SET c='seventy-seven thousand eight hundred two' WHERE a=8108;\nUPDATE t2 SET c='eight thousand four hundred thirty-seven' WHERE a=8109;\nUPDATE t2 SET c='seventy-six thousand five hundred ninety-seven' WHERE a=8110;\nUPDATE t2 SET c='one thousand seven hundred eleven' WHERE a=8111;\nUPDATE t2 SET c='sixty-seven thousand five hundred eleven' WHERE a=8112;\nUPDATE t2 SET c='four thousand two hundred' WHERE a=8113;\nUPDATE t2 SET c='eighty-eight thousand six hundred forty-four' WHERE a=8114;\nUPDATE t2 SET c='thirty-seven thousand seven hundred fifty-three' WHERE a=8115;\nUPDATE t2 SET c='eighteen thousand four hundred forty-seven' WHERE a=8116;\nUPDATE t2 SET c='thirty-seven thousand six hundred forty-four' WHERE a=8117;\nUPDATE t2 SET c='seventy-three thousand two hundred eighty-five' WHERE a=8118;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-six' WHERE a=8119;\nUPDATE t2 SET c='eighty-two thousand nine hundred twenty-two' WHERE a=8120;\nUPDATE t2 SET c='thirty-six thousand eight hundred twenty-six' WHERE a=8121;\nUPDATE t2 SET c='fifty-four thousand five hundred thirty-six' WHERE a=8122;\nUPDATE t2 SET c='eighty-five thousand two hundred fifty-three' WHERE a=8123;\nUPDATE t2 SET c='ten thousand eight hundred seven' WHERE a=8124;\nUPDATE t2 SET c='twenty-eight thousand two hundred seventy-three' WHERE a=8125;\nUPDATE t2 SET c='twelve thousand eight hundred twenty-eight' WHERE a=8126;\nUPDATE t2 SET c='sixty-six thousand six hundred sixty-five' WHERE a=8127;\nUPDATE t2 SET c='fifty-nine thousand three hundred forty-seven' WHERE a=8128;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-one' WHERE a=8129;\nUPDATE t2 SET c='nine thousand two hundred eight' WHERE a=8130;\nUPDATE t2 SET c='seventy-three thousand eight hundred fifty-six' WHERE a=8131;\nUPDATE t2 SET c='fifty-eight thousand forty-three' WHERE a=8132;\nUPDATE t2 SET c='fourteen thousand seven hundred seven' WHERE a=8133;\nUPDATE t2 SET c='eighty-two thousand two hundred twenty-five' WHERE a=8134;\nUPDATE t2 SET c='seventy-eight thousand six hundred seventy-four' WHERE a=8135;\nUPDATE t2 SET c='twenty-six thousand three hundred fourteen' WHERE a=8136;\nUPDATE t2 SET c='ninety-five thousand three hundred sixty-five' WHERE a=8137;\nUPDATE t2 SET c='forty-five thousand seventy-six' WHERE a=8138;\nUPDATE t2 SET c='fifty-three thousand one hundred twelve' WHERE a=8139;\nUPDATE t2 SET c='ninety-nine thousand six hundred eight' WHERE a=8140;\nUPDATE t2 SET c='thirty-one thousand three hundred thirty-three' WHERE a=8141;\nUPDATE t2 SET c='ninety-three thousand two hundred sixty-four' WHERE a=8142;\nUPDATE t2 SET c='eighty thousand six hundred six' WHERE a=8143;\nUPDATE t2 SET c='eighty-seven thousand five hundred sixty-six' WHERE a=8144;\nUPDATE t2 SET c='fifty-five thousand two hundred sixty-nine' WHERE a=8145;\nUPDATE t2 SET c='three thousand two hundred ninety' WHERE a=8146;\nUPDATE t2 SET c='five thousand five hundred' WHERE a=8147;\nUPDATE t2 SET c='seventy thousand five hundred forty-eight' WHERE a=8148;\nUPDATE t2 SET c='thirty-three thousand one hundred eighty-five' WHERE a=8149;\nUPDATE t2 SET c='seventy thousand four hundred twenty' WHERE a=8150;\nUPDATE t2 SET c='nine thousand eight hundred fifty-two' WHERE a=8151;\nUPDATE t2 SET c='seventy-four thousand one hundred sixty' WHERE a=8152;\nUPDATE t2 SET c='forty-four thousand six hundred four' WHERE a=8153;\nUPDATE t2 SET c='one thousand two hundred fifty-nine' WHERE a=8154;\nUPDATE t2 SET c='forty-three thousand sixteen' WHERE a=8155;\nUPDATE t2 SET c='fifty-two thousand nine hundred ninety-one' WHERE a=8156;\nUPDATE t2 SET c='thirteen thousand three hundred twenty-three' WHERE a=8157;\nUPDATE t2 SET c='one thousand one hundred fifty-one' WHERE a=8158;\nUPDATE t2 SET c='sixty thousand three hundred seventy-six' WHERE a=8159;\nUPDATE t2 SET c='seventy-five thousand seven hundred seventy-five' WHERE a=8160;\nUPDATE t2 SET c='seventy-two thousand eight hundred sixty-three' WHERE a=8161;\nUPDATE t2 SET c='seventy thousand three hundred eighty-one' WHERE a=8162;\nUPDATE t2 SET c='forty thousand two hundred seven' WHERE a=8163;\nUPDATE t2 SET c='eighty-six thousand three hundred eighty-two' WHERE a=8164;\nUPDATE t2 SET c='thirty-three thousand five hundred forty-nine' WHERE a=8165;\nUPDATE t2 SET c='sixty-two thousand one hundred sixty-six' WHERE a=8166;\nUPDATE t2 SET c='eighty thousand nine hundred forty-three' WHERE a=8167;\nUPDATE t2 SET c='ninety-two thousand four hundred ninety-seven' WHERE a=8168;\nUPDATE t2 SET c='forty-five thousand nine hundred thirty-four' WHERE a=8169;\nUPDATE t2 SET c='seventy-one thousand eight hundred sixty-three' WHERE a=8170;\nUPDATE t2 SET c='thirty-three thousand seven hundred sixteen' WHERE a=8171;\nUPDATE t2 SET c='sixty-four thousand five hundred twenty-seven' WHERE a=8172;\nUPDATE t2 SET c='forty-four thousand thirteen' WHERE a=8173;\nUPDATE t2 SET c='sixty-one thousand eight hundred eighty' WHERE a=8174;\nUPDATE t2 SET c='fifty-two thousand one hundred eighty' WHERE a=8175;\nUPDATE t2 SET c='eight thousand nine hundred five' WHERE a=8176;\nUPDATE t2 SET c='seventeen thousand seven hundred eighty-two' WHERE a=8177;\nUPDATE t2 SET c='seventy-two thousand two hundred ninety-eight' WHERE a=8178;\nUPDATE t2 SET c='sixty-eight thousand seven hundred fifty-four' WHERE a=8179;\nUPDATE t2 SET c='seventy-one thousand seventy-three' WHERE a=8180;\nUPDATE t2 SET c='twenty-two thousand one hundred ninety-six' WHERE a=8181;\nUPDATE t2 SET c='twelve thousand one hundred eighteen' WHERE a=8182;\nUPDATE t2 SET c='seventy-nine thousand forty-four' WHERE a=8183;\nUPDATE t2 SET c='ninety-three thousand forty-four' WHERE a=8184;\nUPDATE t2 SET c='seventy-two thousand fifty-three' WHERE a=8185;\nUPDATE t2 SET c='fifty-seven thousand nine hundred seventy-two' WHERE a=8186;\nUPDATE t2 SET c='sixty-five thousand five hundred thirty-four' WHERE a=8187;\nUPDATE t2 SET c='fifty-six thousand eight hundred twenty-seven' WHERE a=8188;\nUPDATE t2 SET c='twenty-eight thousand four hundred eleven' WHERE a=8189;\nUPDATE t2 SET c='seventy-eight thousand nine hundred twenty-two' WHERE a=8190;\nUPDATE t2 SET c='ninety-seven thousand two hundred one' WHERE a=8191;\nUPDATE t2 SET c='forty-nine thousand one hundred ninety-nine' WHERE a=8192;\nUPDATE t2 SET c='twenty-seven thousand one hundred one' WHERE a=8193;\nUPDATE t2 SET c='fifty-five thousand one hundred one' WHERE a=8194;\nUPDATE t2 SET c='thirty-four thousand forty-four' WHERE a=8195;\nUPDATE t2 SET c='thirty-one thousand eight hundred fifty-four' WHERE a=8196;\nUPDATE t2 SET c='thirty-seven thousand seven hundred seventy-one' WHERE a=8197;\nUPDATE t2 SET c='three thousand eight hundred sixty-four' WHERE a=8198;\nUPDATE t2 SET c='eight thousand two hundred seventy-four' WHERE a=8199;\nUPDATE t2 SET c='fifty-one thousand four hundred thirty-nine' WHERE a=8200;\nUPDATE t2 SET c='eighteen thousand two hundred eighteen' WHERE a=8201;\nUPDATE t2 SET c='eight thousand nine hundred twenty-two' WHERE a=8202;\nUPDATE t2 SET c='twenty-eight thousand five' WHERE a=8203;\nUPDATE t2 SET c='sixty-two thousand five hundred twenty-one' WHERE a=8204;\nUPDATE t2 SET c='ten thousand six hundred eighty-four' WHERE a=8205;\nUPDATE t2 SET c='sixty-six thousand seven hundred eighty-seven' WHERE a=8206;\nUPDATE t2 SET c='eighty-six thousand five hundred forty' WHERE a=8207;\nUPDATE t2 SET c='ninety-three thousand nine hundred thirty' WHERE a=8208;\nUPDATE t2 SET c='fifty-three thousand nine hundred eighty-nine' WHERE a=8209;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventy-eight' WHERE a=8210;\nUPDATE t2 SET c='fifty thousand six hundred fifty-five' WHERE a=8211;\nUPDATE t2 SET c='twenty-four thousand one hundred forty-eight' WHERE a=8212;\nUPDATE t2 SET c='twenty-seven thousand six hundred eighty-six' WHERE a=8213;\nUPDATE t2 SET c='eighty-six thousand one hundred sixty-nine' WHERE a=8214;\nUPDATE t2 SET c='eleven thousand five hundred nine' WHERE a=8215;\nUPDATE t2 SET c='twenty-seven thousand eight hundred thirty' WHERE a=8216;\nUPDATE t2 SET c='fifty thousand four hundred thirty-one' WHERE a=8217;\nUPDATE t2 SET c='seventy-eight thousand eight hundred sixteen' WHERE a=8218;\nUPDATE t2 SET c='two thousand four hundred twenty' WHERE a=8219;\nUPDATE t2 SET c='twenty-four thousand five hundred one' WHERE a=8220;\nUPDATE t2 SET c='fifty-five thousand two hundred forty' WHERE a=8221;\nUPDATE t2 SET c='eighty-five thousand nine hundred fifty-five' WHERE a=8222;\nUPDATE t2 SET c='ninety-nine thousand nine hundred eighteen' WHERE a=8223;\nUPDATE t2 SET c='eight thousand five hundred forty-eight' WHERE a=8224;\nUPDATE t2 SET c='seventeen thousand eight hundred forty' WHERE a=8225;\nUPDATE t2 SET c='eighty-seven thousand three hundred twenty-nine' WHERE a=8226;\nUPDATE t2 SET c='sixty-one thousand six hundred seventy-one' WHERE a=8227;\nUPDATE t2 SET c='ninety-six thousand one hundred seventy-one' WHERE a=8228;\nUPDATE t2 SET c='thirty-seven thousand one hundred ninety-three' WHERE a=8229;\nUPDATE t2 SET c='thirteen thousand seven hundred thirteen' WHERE a=8230;\nUPDATE t2 SET c='ninety-nine thousand fifty-one' WHERE a=8231;\nUPDATE t2 SET c='ninety-seven thousand one hundred eighty' WHERE a=8232;\nUPDATE t2 SET c='six thousand nine hundred eighty' WHERE a=8233;\nUPDATE t2 SET c='fifty thousand twenty-four' WHERE a=8234;\nUPDATE t2 SET c='eighty-four thousand three hundred thirty-four' WHERE a=8235;\nUPDATE t2 SET c='sixty-two thousand six hundred seventeen' WHERE a=8236;\nUPDATE t2 SET c='eighty-one thousand two hundred eighty-eight' WHERE a=8237;\nUPDATE t2 SET c='seventy-two thousand seven hundred fifty-eight' WHERE a=8238;\nUPDATE t2 SET c='nineteen thousand seventy-eight' WHERE a=8239;\nUPDATE t2 SET c='seven thousand one hundred ninety-two' WHERE a=8240;\nUPDATE t2 SET c='sixty-eight thousand two hundred fifteen' WHERE a=8241;\nUPDATE t2 SET c='thirty-two thousand two hundred seventy-four' WHERE a=8242;\nUPDATE t2 SET c='ninety-five thousand eight hundred eight' WHERE a=8243;\nUPDATE t2 SET c='one thousand nine hundred fifty-seven' WHERE a=8244;\nUPDATE t2 SET c='forty-eight thousand nine hundred twenty-five' WHERE a=8245;\nUPDATE t2 SET c='thirty thousand six hundred seventy' WHERE a=8246;\nUPDATE t2 SET c='eighty-seven thousand four hundred eighty-four' WHERE a=8247;\nUPDATE t2 SET c='sixty thousand sixty-four' WHERE a=8248;\nUPDATE t2 SET c='forty-four thousand thirty-six' WHERE a=8249;\nUPDATE t2 SET c='thirty-four thousand two hundred seventy-two' WHERE a=8250;\nUPDATE t2 SET c='ninety-four thousand two hundred fifty-seven' WHERE a=8251;\nUPDATE t2 SET c='twenty-three thousand seven hundred two' WHERE a=8252;\nUPDATE t2 SET c='sixty thousand four hundred eighty' WHERE a=8253;\nUPDATE t2 SET c='seventy-eight thousand two hundred twenty-two' WHERE a=8254;\nUPDATE t2 SET c='fifteen thousand nine hundred ninety-seven' WHERE a=8255;\nUPDATE t2 SET c='eighty-two thousand eight hundred thirty-seven' WHERE a=8256;\nUPDATE t2 SET c='twenty-nine thousand two hundred ninety-two' WHERE a=8257;\nUPDATE t2 SET c='thirty-nine thousand five hundred sixty-six' WHERE a=8258;\nUPDATE t2 SET c='eleven thousand seven hundred forty-six' WHERE a=8259;\nUPDATE t2 SET c='twenty-five thousand five hundred thirty-six' WHERE a=8260;\nUPDATE t2 SET c='fifteen thousand three hundred seventy-five' WHERE a=8261;\nUPDATE t2 SET c='five thousand sixty-one' WHERE a=8262;\nUPDATE t2 SET c='seventy thousand eight hundred seventy' WHERE a=8263;\nUPDATE t2 SET c='three thousand nine hundred fifty-eight' WHERE a=8264;\nUPDATE t2 SET c='forty-six thousand one hundred forty-eight' WHERE a=8265;\nUPDATE t2 SET c='fifty-five thousand seven hundred thirty-eight' WHERE a=8266;\nUPDATE t2 SET c='forty-six thousand two hundred fifty-eight' WHERE a=8267;\nUPDATE t2 SET c='eleven thousand three hundred seventy-seven' WHERE a=8268;\nUPDATE t2 SET c='eighty-nine thousand three hundred fourteen' WHERE a=8269;\nUPDATE t2 SET c='twenty-two thousand eight hundred fifty-one' WHERE a=8270;\nUPDATE t2 SET c='fifty thousand one hundred thirty-two' WHERE a=8271;\nUPDATE t2 SET c='five thousand six hundred thirty-three' WHERE a=8272;\nUPDATE t2 SET c='seventy-six thousand one hundred seventy-five' WHERE a=8273;\nUPDATE t2 SET c='sixty-four thousand eight hundred sixty-five' WHERE a=8274;\nUPDATE t2 SET c='fifty-five thousand four hundred ninety-one' WHERE a=8275;\nUPDATE t2 SET c='seventy-six thousand six hundred seventy-two' WHERE a=8276;\nUPDATE t2 SET c='eighty-five thousand four hundred eighty-one' WHERE a=8277;\nUPDATE t2 SET c='four hundred one' WHERE a=8278;\nUPDATE t2 SET c='sixty-seven thousand one hundred forty-four' WHERE a=8279;\nUPDATE t2 SET c='sixteen thousand seventy-two' WHERE a=8280;\nUPDATE t2 SET c='thirteen thousand eight hundred ten' WHERE a=8281;\nUPDATE t2 SET c='ninety-two thousand six hundred eighty-two' WHERE a=8282;\nUPDATE t2 SET c='three thousand one hundred five' WHERE a=8283;\nUPDATE t2 SET c='forty thousand five hundred nineteen' WHERE a=8284;\nUPDATE t2 SET c='fifty-six thousand seven hundred ninety-nine' WHERE a=8285;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-six' WHERE a=8286;\nUPDATE t2 SET c='four thousand four hundred fifty-three' WHERE a=8287;\nUPDATE t2 SET c='thirty thousand nine hundred eighty-seven' WHERE a=8288;\nUPDATE t2 SET c='sixty-three thousand four hundred fifty-six' WHERE a=8289;\nUPDATE t2 SET c='thirty-three thousand two hundred sixty-five' WHERE a=8290;\nUPDATE t2 SET c='thirty thousand four hundred thirty-three' WHERE a=8291;\nUPDATE t2 SET c='ninety-five thousand one hundred seventy' WHERE a=8292;\nUPDATE t2 SET c='eleven thousand two hundred thirty-five' WHERE a=8293;\nUPDATE t2 SET c='eighty-one thousand seven hundred ninety-eight' WHERE a=8294;\nUPDATE t2 SET c='seventy-four thousand four hundred fourteen' WHERE a=8295;\nUPDATE t2 SET c='nine thousand five hundred sixty-three' WHERE a=8296;\nUPDATE t2 SET c='ninety thousand seven hundred eighty-five' WHERE a=8297;\nUPDATE t2 SET c='ninety-five thousand five hundred fifty' WHERE a=8298;\nUPDATE t2 SET c='five thousand eight hundred forty-six' WHERE a=8299;\nUPDATE t2 SET c='forty-seven thousand six hundred twenty-two' WHERE a=8300;\nUPDATE t2 SET c='ninety-eight thousand eight hundred twenty-seven' WHERE a=8301;\nUPDATE t2 SET c='seventy thousand seven hundred forty-three' WHERE a=8302;\nUPDATE t2 SET c='fifteen thousand eight hundred twenty-four' WHERE a=8303;\nUPDATE t2 SET c='fourteen thousand five hundred twenty-nine' WHERE a=8304;\nUPDATE t2 SET c='fifty-two thousand four hundred sixty-six' WHERE a=8305;\nUPDATE t2 SET c='twenty-two thousand six hundred seventy-seven' WHERE a=8306;\nUPDATE t2 SET c='ten thousand nine hundred forty-three' WHERE a=8307;\nUPDATE t2 SET c='eighty-eight thousand three hundred eighty-five' WHERE a=8308;\nUPDATE t2 SET c='sixty thousand nine hundred twenty-nine' WHERE a=8309;\nUPDATE t2 SET c='eighty-one thousand eight hundred twenty-seven' WHERE a=8310;\nUPDATE t2 SET c='ninety thousand nine hundred fifty-two' WHERE a=8311;\nUPDATE t2 SET c='fifty-nine thousand seven hundred sixty-one' WHERE a=8312;\nUPDATE t2 SET c='thirty thousand two hundred thirty-two' WHERE a=8313;\nUPDATE t2 SET c='thirty-two thousand one hundred seventy-nine' WHERE a=8314;\nUPDATE t2 SET c='five thousand fourteen' WHERE a=8315;\nUPDATE t2 SET c='seventy-one thousand seven hundred seventy-seven' WHERE a=8316;\nUPDATE t2 SET c='sixteen thousand three hundred ninety-six' WHERE a=8317;\nUPDATE t2 SET c='twelve thousand eight hundred seventy-seven' WHERE a=8318;\nUPDATE t2 SET c='twenty-seven thousand six hundred ninety-six' WHERE a=8319;\nUPDATE t2 SET c='fifty thousand eight hundred seven' WHERE a=8320;\nUPDATE t2 SET c='seventy-nine thousand four hundred sixty-eight' WHERE a=8321;\nUPDATE t2 SET c='seventy-four thousand six hundred eighty-three' WHERE a=8322;\nUPDATE t2 SET c='ninety-three thousand three hundred five' WHERE a=8323;\nUPDATE t2 SET c='nine thousand seventeen' WHERE a=8324;\nUPDATE t2 SET c='twenty-eight thousand two hundred fifty-six' WHERE a=8325;\nUPDATE t2 SET c='eighty-three thousand five hundred eighty' WHERE a=8326;\nUPDATE t2 SET c='forty-two thousand four hundred eighty-four' WHERE a=8327;\nUPDATE t2 SET c='seventy-nine thousand four hundred thirty-eight' WHERE a=8328;\nUPDATE t2 SET c='twenty-two thousand seventeen' WHERE a=8329;\nUPDATE t2 SET c='ninety-four thousand one hundred ten' WHERE a=8330;\nUPDATE t2 SET c='eighty-three thousand two hundred two' WHERE a=8331;\nUPDATE t2 SET c='thirty thousand one hundred forty-eight' WHERE a=8332;\nUPDATE t2 SET c='forty-one thousand five hundred ninety-seven' WHERE a=8333;\nUPDATE t2 SET c='sixty-eight thousand six hundred fifty-nine' WHERE a=8334;\nUPDATE t2 SET c='eighteen thousand four hundred eighteen' WHERE a=8335;\nUPDATE t2 SET c='fifty-nine thousand four hundred thirty' WHERE a=8336;\nUPDATE t2 SET c='sixty-four thousand four hundred nine' WHERE a=8337;\nUPDATE t2 SET c='forty-six thousand eight hundred ninety-four' WHERE a=8338;\nUPDATE t2 SET c='twenty-five thousand seven hundred seven' WHERE a=8339;\nUPDATE t2 SET c='eighty-nine thousand two hundred sixty' WHERE a=8340;\nUPDATE t2 SET c='thirty-three thousand four hundred eleven' WHERE a=8341;\nUPDATE t2 SET c='forty-two thousand forty' WHERE a=8342;\nUPDATE t2 SET c='seventy-four thousand four hundred ten' WHERE a=8343;\nUPDATE t2 SET c='ninety-one thousand eight hundred ninety-five' WHERE a=8344;\nUPDATE t2 SET c='twenty-nine thousand seven hundred forty-six' WHERE a=8345;\nUPDATE t2 SET c='fifty-four thousand seventy-four' WHERE a=8346;\nUPDATE t2 SET c='thirty-nine thousand nine hundred forty-seven' WHERE a=8347;\nUPDATE t2 SET c='fifty-four thousand nine hundred ninety-nine' WHERE a=8348;\nUPDATE t2 SET c='sixty thousand seven hundred six' WHERE a=8349;\nUPDATE t2 SET c='thirty thousand five hundred two' WHERE a=8350;\nUPDATE t2 SET c='thirty-one thousand five hundred seventy-five' WHERE a=8351;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixty-six' WHERE a=8352;\nUPDATE t2 SET c='sixty-nine thousand seventy-four' WHERE a=8353;\nUPDATE t2 SET c='eighty thousand nine hundred forty-two' WHERE a=8354;\nUPDATE t2 SET c='sixteen thousand two hundred seventy-eight' WHERE a=8355;\nUPDATE t2 SET c='three thousand ninety-eight' WHERE a=8356;\nUPDATE t2 SET c='ninety-nine thousand seven hundred twenty' WHERE a=8357;\nUPDATE t2 SET c='twenty-eight thousand two hundred sixty-three' WHERE a=8358;\nUPDATE t2 SET c='seventeen thousand ninety-five' WHERE a=8359;\nUPDATE t2 SET c='forty-nine thousand six hundred two' WHERE a=8360;\nUPDATE t2 SET c='sixty-seven thousand five hundred three' WHERE a=8361;\nUPDATE t2 SET c='eighty-two thousand four hundred thirty-two' WHERE a=8362;\nUPDATE t2 SET c='forty-eight thousand three hundred seventy-three' WHERE a=8363;\nUPDATE t2 SET c='thirty-nine thousand eight hundred forty-nine' WHERE a=8364;\nUPDATE t2 SET c='fifty-one thousand eight hundred eighty-five' WHERE a=8365;\nUPDATE t2 SET c='sixty-two thousand nine hundred twelve' WHERE a=8366;\nUPDATE t2 SET c='forty-two thousand two hundred forty-three' WHERE a=8367;\nUPDATE t2 SET c='seventy-eight thousand nine hundred eighty-four' WHERE a=8368;\nUPDATE t2 SET c='fifteen thousand four hundred six' WHERE a=8369;\nUPDATE t2 SET c='thirty-two thousand seven hundred seventy-five' WHERE a=8370;\nUPDATE t2 SET c='sixty-nine thousand seven hundred sixty-five' WHERE a=8371;\nUPDATE t2 SET c='fifty-three thousand six hundred forty-five' WHERE a=8372;\nUPDATE t2 SET c='ten thousand seven hundred forty-three' WHERE a=8373;\nUPDATE t2 SET c='fourteen thousand three hundred eighty' WHERE a=8374;\nUPDATE t2 SET c='ninety-four thousand three hundred seventy-nine' WHERE a=8375;\nUPDATE t2 SET c='seventy-seven thousand two hundred forty-two' WHERE a=8376;\nUPDATE t2 SET c='sixty-six thousand ninety-two' WHERE a=8377;\nUPDATE t2 SET c='sixty-nine thousand one hundred seventy-four' WHERE a=8378;\nUPDATE t2 SET c='thirty-three thousand one hundred four' WHERE a=8379;\nUPDATE t2 SET c='forty-two thousand four hundred seventy-nine' WHERE a=8380;\nUPDATE t2 SET c='nine hundred forty-nine' WHERE a=8381;\nUPDATE t2 SET c='twelve thousand four hundred fifty-four' WHERE a=8382;\nUPDATE t2 SET c='ninety-four thousand nine hundred forty-four' WHERE a=8383;\nUPDATE t2 SET c='sixty-three thousand five hundred eleven' WHERE a=8384;\nUPDATE t2 SET c='seventy thousand three hundred thirty-eight' WHERE a=8385;\nUPDATE t2 SET c='ninety-five thousand thirty-one' WHERE a=8386;\nUPDATE t2 SET c='eleven thousand six hundred ninety-four' WHERE a=8387;\nUPDATE t2 SET c='thirty-three thousand one hundred thirty-three' WHERE a=8388;\nUPDATE t2 SET c='six thousand three hundred one' WHERE a=8389;\nUPDATE t2 SET c='thirty-seven thousand eight hundred five' WHERE a=8390;\nUPDATE t2 SET c='fifty-five thousand one hundred forty-four' WHERE a=8391;\nUPDATE t2 SET c='ninety-one thousand eight hundred sixty-five' WHERE a=8392;\nUPDATE t2 SET c='thirty-six thousand six hundred ninety-two' WHERE a=8393;\nUPDATE t2 SET c='ninety-two thousand one hundred forty-three' WHERE a=8394;\nUPDATE t2 SET c='ten thousand eight hundred seventy-two' WHERE a=8395;\nUPDATE t2 SET c='thirty-three thousand seven hundred sixteen' WHERE a=8396;\nUPDATE t2 SET c='thirty-two thousand six hundred one' WHERE a=8397;\nUPDATE t2 SET c='eighty-four thousand five hundred fifty-six' WHERE a=8398;\nUPDATE t2 SET c='seventy-one thousand nine hundred seventy-three' WHERE a=8399;\nUPDATE t2 SET c='seventy-seven thousand seven hundred seventy' WHERE a=8400;\nUPDATE t2 SET c='forty-nine thousand eight hundred ninety-six' WHERE a=8401;\nUPDATE t2 SET c='eight hundred twenty-nine' WHERE a=8402;\nUPDATE t2 SET c='twelve thousand seven hundred ninety-three' WHERE a=8403;\nUPDATE t2 SET c='sixty-seven thousand three hundred thirty-five' WHERE a=8404;\nUPDATE t2 SET c='thirty-one thousand nine hundred thirty-seven' WHERE a=8405;\nUPDATE t2 SET c='seventy-six thousand five hundred sixty-nine' WHERE a=8406;\nUPDATE t2 SET c='eighty-three thousand three hundred fifty-two' WHERE a=8407;\nUPDATE t2 SET c='twenty-five thousand five hundred four' WHERE a=8408;\nUPDATE t2 SET c='seventy-five thousand one hundred sixty-six' WHERE a=8409;\nUPDATE t2 SET c='eighty-six thousand six hundred sixty-six' WHERE a=8410;\nUPDATE t2 SET c='fifteen thousand nine hundred forty-two' WHERE a=8411;\nUPDATE t2 SET c='seventy-five thousand nine hundred seventy-six' WHERE a=8412;\nUPDATE t2 SET c='ten thousand one hundred ninety-three' WHERE a=8413;\nUPDATE t2 SET c='six thousand seventy-three' WHERE a=8414;\nUPDATE t2 SET c='sixty-three thousand two hundred fourteen' WHERE a=8415;\nUPDATE t2 SET c='thirteen thousand five hundred thirty-nine' WHERE a=8416;\nUPDATE t2 SET c='five thousand four hundred seventy-five' WHERE a=8417;\nUPDATE t2 SET c='seventy thousand ninety-five' WHERE a=8418;\nUPDATE t2 SET c='forty-two thousand three hundred ninety-eight' WHERE a=8419;\nUPDATE t2 SET c='eighteen thousand twenty-nine' WHERE a=8420;\nUPDATE t2 SET c='forty thousand four hundred fifty-two' WHERE a=8421;\nUPDATE t2 SET c='forty-eight thousand two hundred eight' WHERE a=8422;\nUPDATE t2 SET c='thirty-four thousand five hundred ninety-four' WHERE a=8423;\nUPDATE t2 SET c='forty-nine thousand eight hundred eighty-two' WHERE a=8424;\nUPDATE t2 SET c='fifty-six thousand seven hundred nineteen' WHERE a=8425;\nUPDATE t2 SET c='two thousand three hundred ninety-one' WHERE a=8426;\nUPDATE t2 SET c='ninety-nine thousand seven hundred eighty-five' WHERE a=8427;\nUPDATE t2 SET c='eighty-one thousand seven hundred twenty-seven' WHERE a=8428;\nUPDATE t2 SET c='sixty-one thousand four hundred forty-nine' WHERE a=8429;\nUPDATE t2 SET c='sixty-three thousand four hundred twenty-four' WHERE a=8430;\nUPDATE t2 SET c='eleven thousand thirteen' WHERE a=8431;\nUPDATE t2 SET c='twenty-four thousand one hundred twenty-two' WHERE a=8432;\nUPDATE t2 SET c='eighty thousand five hundred forty' WHERE a=8433;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-eight' WHERE a=8434;\nUPDATE t2 SET c='sixty-three thousand three hundred twenty' WHERE a=8435;\nUPDATE t2 SET c='three thousand two hundred forty-five' WHERE a=8436;\nUPDATE t2 SET c='fifty-six thousand eight hundred forty-five' WHERE a=8437;\nUPDATE t2 SET c='seventy-four thousand eight hundred eighty-eight' WHERE a=8438;\nUPDATE t2 SET c='seventy-three thousand one hundred fifty-nine' WHERE a=8439;\nUPDATE t2 SET c='seventy-two thousand two' WHERE a=8440;\nUPDATE t2 SET c='seventy-five thousand three hundred sixty-seven' WHERE a=8441;\nUPDATE t2 SET c='ninety-six thousand five hundred twelve' WHERE a=8442;\nUPDATE t2 SET c='seventy-two thousand seven hundred forty-one' WHERE a=8443;\nUPDATE t2 SET c='thirty-five thousand one hundred sixty-three' WHERE a=8444;\nUPDATE t2 SET c='forty-three thousand six hundred twelve' WHERE a=8445;\nUPDATE t2 SET c='ten thousand seven hundred thirty-five' WHERE a=8446;\nUPDATE t2 SET c='twenty thousand four hundred fifty-three' WHERE a=8447;\nUPDATE t2 SET c='forty-one thousand two hundred eighty' WHERE a=8448;\nUPDATE t2 SET c='four hundred ten' WHERE a=8449;\nUPDATE t2 SET c='fifty-one thousand three hundred ninety-four' WHERE a=8450;\nUPDATE t2 SET c='seventy-nine thousand four hundred eighty-nine' WHERE a=8451;\nUPDATE t2 SET c='twelve thousand nine hundred thirty-four' WHERE a=8452;\nUPDATE t2 SET c='eighty-six thousand nine hundred eighty-seven' WHERE a=8453;\nUPDATE t2 SET c='seventy-five thousand nine hundred eighty-three' WHERE a=8454;\nUPDATE t2 SET c='six thousand four hundred six' WHERE a=8455;\nUPDATE t2 SET c='eighty-seven thousand six hundred forty-eight' WHERE a=8456;\nUPDATE t2 SET c='seventy-four thousand five hundred forty-six' WHERE a=8457;\nUPDATE t2 SET c='seventy-five thousand one hundred thirty-two' WHERE a=8458;\nUPDATE t2 SET c='seventy-eight thousand nine' WHERE a=8459;\nUPDATE t2 SET c='ninety-eight thousand three hundred thirty-one' WHERE a=8460;\nUPDATE t2 SET c='ninety-seven thousand one hundred' WHERE a=8461;\nUPDATE t2 SET c='fifty-seven thousand six hundred ninety-five' WHERE a=8462;\nUPDATE t2 SET c='five hundred sixty' WHERE a=8463;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-three' WHERE a=8464;\nUPDATE t2 SET c='seventy-seven thousand nine hundred thirty' WHERE a=8465;\nUPDATE t2 SET c='fifty thousand three hundred sixty-four' WHERE a=8466;\nUPDATE t2 SET c='thirty-five thousand six hundred four' WHERE a=8467;\nUPDATE t2 SET c='fifty-two thousand two hundred fifty-four' WHERE a=8468;\nUPDATE t2 SET c='ninety-eight thousand four hundred sixteen' WHERE a=8469;\nUPDATE t2 SET c='forty-nine thousand five hundred seventy-eight' WHERE a=8470;\nUPDATE t2 SET c='sixty-four thousand nine hundred eighty-one' WHERE a=8471;\nUPDATE t2 SET c='seven thousand six hundred eighty-four' WHERE a=8472;\nUPDATE t2 SET c='eighty-three thousand three hundred ninety-three' WHERE a=8473;\nUPDATE t2 SET c='forty-six thousand three hundred ten' WHERE a=8474;\nUPDATE t2 SET c='seventy-five thousand nine hundred thirty-five' WHERE a=8475;\nUPDATE t2 SET c='eighty-three thousand six hundred sixty-two' WHERE a=8476;\nUPDATE t2 SET c='seventy-six thousand one hundred sixty-five' WHERE a=8477;\nUPDATE t2 SET c='sixty-one thousand six hundred eighty-one' WHERE a=8478;\nUPDATE t2 SET c='four thousand seven hundred twenty-seven' WHERE a=8479;\nUPDATE t2 SET c='eighteen thousand five hundred forty-nine' WHERE a=8480;\nUPDATE t2 SET c='seventy-three thousand four hundred fifty' WHERE a=8481;\nUPDATE t2 SET c='sixty-five thousand thirty-nine' WHERE a=8482;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eighty-six' WHERE a=8483;\nUPDATE t2 SET c='three thousand five hundred five' WHERE a=8484;\nUPDATE t2 SET c='seventy-one thousand one hundred ninety-one' WHERE a=8485;\nUPDATE t2 SET c='forty-eight thousand seven hundred eighty-four' WHERE a=8486;\nUPDATE t2 SET c='fifty-one thousand seven hundred eighty-four' WHERE a=8487;\nUPDATE t2 SET c='eighty-five thousand twenty-four' WHERE a=8488;\nUPDATE t2 SET c='fifty-two thousand two hundred twenty-five' WHERE a=8489;\nUPDATE t2 SET c='twenty-five thousand eight hundred eighty-six' WHERE a=8490;\nUPDATE t2 SET c='forty-eight thousand eight hundred thirty-five' WHERE a=8491;\nUPDATE t2 SET c='twenty thousand nine hundred eleven' WHERE a=8492;\nUPDATE t2 SET c='twenty-five thousand four hundred fifty-two' WHERE a=8493;\nUPDATE t2 SET c='twenty-six thousand five hundred sixty-one' WHERE a=8494;\nUPDATE t2 SET c='ten thousand three hundred sixty-four' WHERE a=8495;\nUPDATE t2 SET c='seventy-seven thousand two hundred eight' WHERE a=8496;\nUPDATE t2 SET c='eighty-three thousand five hundred forty-two' WHERE a=8497;\nUPDATE t2 SET c='seventy-eight thousand five hundred forty-five' WHERE a=8498;\nUPDATE t2 SET c='eighty-three thousand nine hundred eighty-eight' WHERE a=8499;\nUPDATE t2 SET c='seventy-four thousand seven hundred twenty-three' WHERE a=8500;\nUPDATE t2 SET c='forty-eight thousand two hundred forty-two' WHERE a=8501;\nUPDATE t2 SET c='twenty-nine thousand six hundred sixty-seven' WHERE a=8502;\nUPDATE t2 SET c='fifty-nine thousand seven hundred forty-nine' WHERE a=8503;\nUPDATE t2 SET c='eighty-eight thousand two hundred forty-seven' WHERE a=8504;\nUPDATE t2 SET c='twenty-five thousand eight hundred forty-seven' WHERE a=8505;\nUPDATE t2 SET c='fifteen thousand two hundred forty-six' WHERE a=8506;\nUPDATE t2 SET c='seventy-six thousand two hundred ninety-three' WHERE a=8507;\nUPDATE t2 SET c='forty-five thousand twenty-eight' WHERE a=8508;\nUPDATE t2 SET c='five thousand one hundred seventy-five' WHERE a=8509;\nUPDATE t2 SET c='seventy-two thousand seven hundred eighteen' WHERE a=8510;\nUPDATE t2 SET c='ninety-four thousand six hundred thirty-five' WHERE a=8511;\nUPDATE t2 SET c='ninety thousand fifty-two' WHERE a=8512;\nUPDATE t2 SET c='five thousand eight hundred twenty' WHERE a=8513;\nUPDATE t2 SET c='fifteen thousand two hundred thirty' WHERE a=8514;\nUPDATE t2 SET c='sixty-nine thousand eight hundred thirty-seven' WHERE a=8515;\nUPDATE t2 SET c='thirty-six thousand five hundred seventy' WHERE a=8516;\nUPDATE t2 SET c='ninety-seven thousand seven hundred ninety-three' WHERE a=8517;\nUPDATE t2 SET c='seventy-seven thousand three hundred forty-two' WHERE a=8518;\nUPDATE t2 SET c='ninety-two thousand four hundred sixty-four' WHERE a=8519;\nUPDATE t2 SET c='five hundred four' WHERE a=8520;\nUPDATE t2 SET c='twenty-three thousand two hundred thirty-four' WHERE a=8521;\nUPDATE t2 SET c='ninety-four thousand four hundred twenty-six' WHERE a=8522;\nUPDATE t2 SET c='sixty-three thousand eight hundred twenty' WHERE a=8523;\nUPDATE t2 SET c='eighty-nine thousand seven hundred eighty' WHERE a=8524;\nUPDATE t2 SET c='fifty-four thousand two hundred six' WHERE a=8525;\nUPDATE t2 SET c='fifty-five thousand eight hundred seventy-six' WHERE a=8526;\nUPDATE t2 SET c='sixty-four thousand eight hundred sixty-three' WHERE a=8527;\nUPDATE t2 SET c='six thousand eight hundred sixty-four' WHERE a=8528;\nUPDATE t2 SET c='thirty-three thousand eight hundred ninety-one' WHERE a=8529;\nUPDATE t2 SET c='eighty-three thousand five hundred sixty-six' WHERE a=8530;\nUPDATE t2 SET c='ninety-seven thousand four hundred twenty' WHERE a=8531;\nUPDATE t2 SET c='seven thousand one hundred fifty-nine' WHERE a=8532;\nUPDATE t2 SET c='sixty-two thousand nine hundred sixty-three' WHERE a=8533;\nUPDATE t2 SET c='sixty-seven thousand four hundred thirty-nine' WHERE a=8534;\nUPDATE t2 SET c='three thousand one hundred fifty-nine' WHERE a=8535;\nUPDATE t2 SET c='twelve thousand twenty-four' WHERE a=8536;\nUPDATE t2 SET c='seventy-six thousand one hundred thirteen' WHERE a=8537;\nUPDATE t2 SET c='eighty-six thousand five hundred ninety-nine' WHERE a=8538;\nUPDATE t2 SET c='eight thousand four hundred ninety-four' WHERE a=8539;\nUPDATE t2 SET c='forty-four thousand seven hundred sixty-five' WHERE a=8540;\nUPDATE t2 SET c='twenty-four thousand two hundred fifty-nine' WHERE a=8541;\nUPDATE t2 SET c='seventy thousand two hundred ninety-two' WHERE a=8542;\nUPDATE t2 SET c='sixty-four thousand eight hundred ninety-one' WHERE a=8543;\nUPDATE t2 SET c='ninety-six thousand two hundred forty' WHERE a=8544;\nUPDATE t2 SET c='eleven thousand one hundred ninety-three' WHERE a=8545;\nUPDATE t2 SET c='forty-one thousand nine hundred forty-three' WHERE a=8546;\nUPDATE t2 SET c='seven thousand four hundred twenty' WHERE a=8547;\nUPDATE t2 SET c='two hundred seventy-seven' WHERE a=8548;\nUPDATE t2 SET c='ninety-seven thousand two hundred seventy-two' WHERE a=8549;\nUPDATE t2 SET c='forty-eight thousand two hundred thirty' WHERE a=8550;\nUPDATE t2 SET c='eighty-two thousand two hundred sixty-three' WHERE a=8551;\nUPDATE t2 SET c='sixty-three thousand three hundred twenty-six' WHERE a=8552;\nUPDATE t2 SET c='eighty-eight thousand seven hundred seventy-four' WHERE a=8553;\nUPDATE t2 SET c='seventy-four thousand twenty-five' WHERE a=8554;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-three' WHERE a=8555;\nUPDATE t2 SET c='three thousand three hundred four' WHERE a=8556;\nUPDATE t2 SET c='forty-three thousand one hundred seventy' WHERE a=8557;\nUPDATE t2 SET c='sixty-six thousand seven hundred ninety-two' WHERE a=8558;\nUPDATE t2 SET c='eighty-seven thousand six hundred twenty-three' WHERE a=8559;\nUPDATE t2 SET c='eighty-four thousand two hundred ninety-two' WHERE a=8560;\nUPDATE t2 SET c='thirty-eight thousand one hundred thirty-one' WHERE a=8561;\nUPDATE t2 SET c='thirty-one thousand four hundred thirty' WHERE a=8562;\nUPDATE t2 SET c='sixty-one thousand two hundred sixty' WHERE a=8563;\nUPDATE t2 SET c='thirty-six thousand nine hundred thirty-two' WHERE a=8564;\nUPDATE t2 SET c='eleven thousand four hundred forty-four' WHERE a=8565;\nUPDATE t2 SET c='fifty-nine thousand three hundred seven' WHERE a=8566;\nUPDATE t2 SET c='ninety-five thousand ninety' WHERE a=8567;\nUPDATE t2 SET c='seventy-seven thousand seven hundred ninety-seven' WHERE a=8568;\nUPDATE t2 SET c='seventy-two thousand eight hundred eighty-one' WHERE a=8569;\nUPDATE t2 SET c='thirty-seven thousand one hundred fourteen' WHERE a=8570;\nUPDATE t2 SET c='seventy-six thousand three hundred eighty-seven' WHERE a=8571;\nUPDATE t2 SET c='six thousand two hundred forty-eight' WHERE a=8572;\nUPDATE t2 SET c='eighty-seven thousand five hundred one' WHERE a=8573;\nUPDATE t2 SET c='forty thousand three hundred forty-five' WHERE a=8574;\nUPDATE t2 SET c='ninety thousand seven hundred sixty-five' WHERE a=8575;\nUPDATE t2 SET c='nine thousand three hundred eighty-three' WHERE a=8576;\nUPDATE t2 SET c='eighteen thousand six hundred seventy-eight' WHERE a=8577;\nUPDATE t2 SET c='fifty thousand seven hundred eighty-nine' WHERE a=8578;\nUPDATE t2 SET c='eleven thousand six hundred forty-five' WHERE a=8579;\nUPDATE t2 SET c='thirty thousand six hundred fifty-three' WHERE a=8580;\nUPDATE t2 SET c='sixty-two thousand six hundred thirty-six' WHERE a=8581;\nUPDATE t2 SET c='seventy-one thousand three hundred eighty-two' WHERE a=8582;\nUPDATE t2 SET c='sixty-four thousand two hundred fifty-one' WHERE a=8583;\nUPDATE t2 SET c='fifty-six thousand nine hundred eighty-four' WHERE a=8584;\nUPDATE t2 SET c='forty-six thousand one hundred sixty-eight' WHERE a=8585;\nUPDATE t2 SET c='sixty-seven thousand nine hundred eight' WHERE a=8586;\nUPDATE t2 SET c='twenty-two thousand seven hundred two' WHERE a=8587;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixty-nine' WHERE a=8588;\nUPDATE t2 SET c='seventy-five thousand nine hundred seventy-eight' WHERE a=8589;\nUPDATE t2 SET c='eighty-eight thousand two hundred fifty-three' WHERE a=8590;\nUPDATE t2 SET c='one thousand ninety-six' WHERE a=8591;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-seven' WHERE a=8592;\nUPDATE t2 SET c='seventy-four thousand seventy-seven' WHERE a=8593;\nUPDATE t2 SET c='forty-three thousand seven hundred ten' WHERE a=8594;\nUPDATE t2 SET c='seventy-three thousand four hundred seventy-six' WHERE a=8595;\nUPDATE t2 SET c='thirty-four thousand nine hundred four' WHERE a=8596;\nUPDATE t2 SET c='thirteen thousand three hundred eighty-nine' WHERE a=8597;\nUPDATE t2 SET c='sixty-two thousand eighty-seven' WHERE a=8598;\nUPDATE t2 SET c='thirty-two thousand three hundred fifty-seven' WHERE a=8599;\nUPDATE t2 SET c='seventy-eight thousand four hundred seventy-eight' WHERE a=8600;\nUPDATE t2 SET c='three thousand fifty-seven' WHERE a=8601;\nUPDATE t2 SET c='twenty-two thousand fifty-seven' WHERE a=8602;\nUPDATE t2 SET c='fifty-one thousand two hundred eighty-five' WHERE a=8603;\nUPDATE t2 SET c='sixty-six thousand five hundred twenty-six' WHERE a=8604;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-six' WHERE a=8605;\nUPDATE t2 SET c='seventy-one thousand three hundred twenty' WHERE a=8606;\nUPDATE t2 SET c='sixty-three thousand two' WHERE a=8607;\nUPDATE t2 SET c='eighty-nine thousand six hundred fourteen' WHERE a=8608;\nUPDATE t2 SET c='sixty-six thousand two hundred eleven' WHERE a=8609;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seven' WHERE a=8610;\nUPDATE t2 SET c='sixty-three thousand four hundred sixty' WHERE a=8611;\nUPDATE t2 SET c='forty-seven thousand seven hundred thirty-one' WHERE a=8612;\nUPDATE t2 SET c='seventy-four thousand six hundred twenty-two' WHERE a=8613;\nUPDATE t2 SET c='one thousand two hundred eighty' WHERE a=8614;\nUPDATE t2 SET c='fifty-three thousand eight hundred seventy-two' WHERE a=8615;\nUPDATE t2 SET c='fifty-four thousand three hundred fifty-four' WHERE a=8616;\nUPDATE t2 SET c='ninety-three thousand five hundred forty-five' WHERE a=8617;\nUPDATE t2 SET c='ninety thousand one hundred three' WHERE a=8618;\nUPDATE t2 SET c='seventy-six thousand six hundred thirty-eight' WHERE a=8619;\nUPDATE t2 SET c='ninety-seven thousand four hundred ninety' WHERE a=8620;\nUPDATE t2 SET c='ten thousand eight hundred one' WHERE a=8621;\nUPDATE t2 SET c='eighty-eight thousand nine hundred seventy' WHERE a=8622;\nUPDATE t2 SET c='seventy-seven thousand three hundred fifty-one' WHERE a=8623;\nUPDATE t2 SET c='twelve thousand nine hundred eighty-six' WHERE a=8624;\nUPDATE t2 SET c='seventeen thousand three hundred fifty' WHERE a=8625;\nUPDATE t2 SET c='seventy-eight thousand five hundred fifteen' WHERE a=8626;\nUPDATE t2 SET c='eighty-nine thousand two hundred fourteen' WHERE a=8627;\nUPDATE t2 SET c='sixty-six thousand seven hundred sixty-six' WHERE a=8628;\nUPDATE t2 SET c='fifty-six thousand four hundred forty-two' WHERE a=8629;\nUPDATE t2 SET c='seventy-seven thousand two hundred forty-nine' WHERE a=8630;\nUPDATE t2 SET c='sixty-three thousand one hundred fifty-seven' WHERE a=8631;\nUPDATE t2 SET c='twenty-four thousand two hundred ninety-eight' WHERE a=8632;\nUPDATE t2 SET c='sixty-five thousand eight hundred twenty-seven' WHERE a=8633;\nUPDATE t2 SET c='eighty-five thousand four hundred seventy-nine' WHERE a=8634;\nUPDATE t2 SET c='thirty-three thousand four hundred eighty-three' WHERE a=8635;\nUPDATE t2 SET c='forty-six thousand seven hundred eighty-seven' WHERE a=8636;\nUPDATE t2 SET c='eighty-three thousand nine hundred sixty' WHERE a=8637;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-four' WHERE a=8638;\nUPDATE t2 SET c='sixty-eight thousand seven hundred fifty-four' WHERE a=8639;\nUPDATE t2 SET c='thirty-three thousand nine hundred thirty-five' WHERE a=8640;\nUPDATE t2 SET c='sixty-seven thousand eight hundred twenty-five' WHERE a=8641;\nUPDATE t2 SET c='three thousand three hundred twenty-two' WHERE a=8642;\nUPDATE t2 SET c='thirty-nine thousand one hundred fifty-two' WHERE a=8643;\nUPDATE t2 SET c='one thousand eight hundred seventy-two' WHERE a=8644;\nUPDATE t2 SET c='eighty thousand nine hundred fifty-seven' WHERE a=8645;\nUPDATE t2 SET c='eighty-nine thousand four hundred sixty-three' WHERE a=8646;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fourteen' WHERE a=8647;\nUPDATE t2 SET c='thirty-one thousand four hundred nine' WHERE a=8648;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy-four' WHERE a=8649;\nUPDATE t2 SET c='eight thousand nine hundred ninety-three' WHERE a=8650;\nUPDATE t2 SET c='twenty-six thousand one hundred twenty-four' WHERE a=8651;\nUPDATE t2 SET c='ninety thousand five hundred fifty-three' WHERE a=8652;\nUPDATE t2 SET c='forty-seven thousand one hundred eighty-eight' WHERE a=8653;\nUPDATE t2 SET c='twenty-two thousand four hundred thirty' WHERE a=8654;\nUPDATE t2 SET c='sixty-two thousand three hundred twenty-six' WHERE a=8655;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-three' WHERE a=8656;\nUPDATE t2 SET c='eighty-five thousand five hundred ninety-eight' WHERE a=8657;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-eight' WHERE a=8658;\nUPDATE t2 SET c='seventy-five thousand seventy-seven' WHERE a=8659;\nUPDATE t2 SET c='thirty thousand nine hundred sixty-eight' WHERE a=8660;\nUPDATE t2 SET c='eighty-six thousand four hundred seventy-two' WHERE a=8661;\nUPDATE t2 SET c='eighty-nine thousand four hundred eighty-seven' WHERE a=8662;\nUPDATE t2 SET c='forty-nine thousand six hundred seventy-one' WHERE a=8663;\nUPDATE t2 SET c='nine thousand six hundred thirty-seven' WHERE a=8664;\nUPDATE t2 SET c='twenty-five thousand five hundred thirty-five' WHERE a=8665;\nUPDATE t2 SET c='forty-six thousand one hundred five' WHERE a=8666;\nUPDATE t2 SET c='fifty-four thousand five hundred twenty-seven' WHERE a=8667;\nUPDATE t2 SET c='sixty-two thousand thirty-three' WHERE a=8668;\nUPDATE t2 SET c='eighteen thousand four hundred sixteen' WHERE a=8669;\nUPDATE t2 SET c='fifty-eight thousand four hundred forty-four' WHERE a=8670;\nUPDATE t2 SET c='eighty-seven thousand six hundred twenty-nine' WHERE a=8671;\nUPDATE t2 SET c='ninety-nine thousand three hundred twenty-five' WHERE a=8672;\nUPDATE t2 SET c='seventy-two thousand six hundred one' WHERE a=8673;\nUPDATE t2 SET c='four thousand six hundred fifty-five' WHERE a=8674;\nUPDATE t2 SET c='ninety-four thousand fifty-two' WHERE a=8675;\nUPDATE t2 SET c='fifteen thousand three hundred ninety-two' WHERE a=8676;\nUPDATE t2 SET c='seventy-seven thousand two hundred seventeen' WHERE a=8677;\nUPDATE t2 SET c='thirty-nine thousand one hundred' WHERE a=8678;\nUPDATE t2 SET c='nine thousand one hundred fifty' WHERE a=8679;\nUPDATE t2 SET c='fifty-six thousand five hundred seventy-four' WHERE a=8680;\nUPDATE t2 SET c='sixty-one thousand three hundred forty-seven' WHERE a=8681;\nUPDATE t2 SET c='twenty-six thousand seven hundred five' WHERE a=8682;\nUPDATE t2 SET c='twenty-five thousand eight hundred ninety-four' WHERE a=8683;\nUPDATE t2 SET c='twenty-five thousand three hundred ten' WHERE a=8684;\nUPDATE t2 SET c='ninety-five thousand one hundred fifty-four' WHERE a=8685;\nUPDATE t2 SET c='ninety-five thousand six hundred thirty-four' WHERE a=8686;\nUPDATE t2 SET c='two thousand nine hundred five' WHERE a=8687;\nUPDATE t2 SET c='twelve thousand six hundred twenty-eight' WHERE a=8688;\nUPDATE t2 SET c='eighty-three thousand nine hundred eighty-six' WHERE a=8689;\nUPDATE t2 SET c='fifty-two thousand six hundred fifty-seven' WHERE a=8690;\nUPDATE t2 SET c='seven thousand nine hundred seventy-three' WHERE a=8691;\nUPDATE t2 SET c='twenty-one thousand three hundred forty-nine' WHERE a=8692;\nUPDATE t2 SET c='fifty-five thousand eight hundred two' WHERE a=8693;\nUPDATE t2 SET c='twelve thousand six hundred five' WHERE a=8694;\nUPDATE t2 SET c='sixty-five thousand sixty-one' WHERE a=8695;\nUPDATE t2 SET c='fifty thousand thirty-two' WHERE a=8696;\nUPDATE t2 SET c='sixty-nine thousand one hundred ninety-eight' WHERE a=8697;\nUPDATE t2 SET c='thirty-one thousand nine hundred twenty-six' WHERE a=8698;\nUPDATE t2 SET c='two hundred thirteen' WHERE a=8699;\nUPDATE t2 SET c='one thousand nine hundred thirty-three' WHERE a=8700;\nUPDATE t2 SET c='ten thousand three hundred seventy-eight' WHERE a=8701;\nUPDATE t2 SET c='fifty-six thousand one hundred forty-two' WHERE a=8702;\nUPDATE t2 SET c='forty-four thousand nine hundred forty-six' WHERE a=8703;\nUPDATE t2 SET c='forty-seven thousand twenty-five' WHERE a=8704;\nUPDATE t2 SET c='ten thousand eight hundred one' WHERE a=8705;\nUPDATE t2 SET c='forty-one thousand one hundred sixty-four' WHERE a=8706;\nUPDATE t2 SET c='ninety-nine thousand seven hundred ninety-nine' WHERE a=8707;\nUPDATE t2 SET c='thirty-one thousand six hundred forty-seven' WHERE a=8708;\nUPDATE t2 SET c='twenty-two thousand three hundred fifty-seven' WHERE a=8709;\nUPDATE t2 SET c='seventy-five thousand one' WHERE a=8710;\nUPDATE t2 SET c='sixty-seven thousand eight hundred fifty-eight' WHERE a=8711;\nUPDATE t2 SET c='thirty-five thousand three hundred eighty-five' WHERE a=8712;\nUPDATE t2 SET c='eighty-five thousand three hundred eighty-seven' WHERE a=8713;\nUPDATE t2 SET c='forty-eight thousand five hundred fourteen' WHERE a=8714;\nUPDATE t2 SET c='sixty-five thousand three hundred sixty-seven' WHERE a=8715;\nUPDATE t2 SET c='fifty-four thousand three hundred eighty-nine' WHERE a=8716;\nUPDATE t2 SET c='seventy-two thousand six hundred sixty-seven' WHERE a=8717;\nUPDATE t2 SET c='forty-six thousand one hundred eighty-eight' WHERE a=8718;\nUPDATE t2 SET c='ninety-eight thousand one hundred twenty-six' WHERE a=8719;\nUPDATE t2 SET c='sixty-three thousand three hundred eighty-one' WHERE a=8720;\nUPDATE t2 SET c='ten thousand six hundred forty-four' WHERE a=8721;\nUPDATE t2 SET c='fifty-one thousand nine hundred one' WHERE a=8722;\nUPDATE t2 SET c='eighty-three thousand five hundred thirty' WHERE a=8723;\nUPDATE t2 SET c='thirty-nine thousand seven hundred eighty-three' WHERE a=8724;\nUPDATE t2 SET c='twenty-three thousand nine hundred eighty-eight' WHERE a=8725;\nUPDATE t2 SET c='thirty-one thousand six hundred thirty-seven' WHERE a=8726;\nUPDATE t2 SET c='sixty-two thousand nine hundred ninety-nine' WHERE a=8727;\nUPDATE t2 SET c='eighty-two thousand sixteen' WHERE a=8728;\nUPDATE t2 SET c='ninety-three thousand three hundred fifteen' WHERE a=8729;\nUPDATE t2 SET c='sixty-seven thousand two hundred fifty-one' WHERE a=8730;\nUPDATE t2 SET c='twenty-five thousand four hundred thirty-one' WHERE a=8731;\nUPDATE t2 SET c='eighty-seven thousand eight hundred sixty-six' WHERE a=8732;\nUPDATE t2 SET c='ninety-six thousand one hundred twenty-three' WHERE a=8733;\nUPDATE t2 SET c='sixty-two thousand eight hundred eighty-eight' WHERE a=8734;\nUPDATE t2 SET c='fifty-six thousand four hundred twenty-five' WHERE a=8735;\nUPDATE t2 SET c='ninety-four thousand five hundred eighty-eight' WHERE a=8736;\nUPDATE t2 SET c='eighteen thousand five hundred thirty-six' WHERE a=8737;\nUPDATE t2 SET c='thirty-two thousand one hundred ninety-four' WHERE a=8738;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-five' WHERE a=8739;\nUPDATE t2 SET c='five thousand four hundred fifty-four' WHERE a=8740;\nUPDATE t2 SET c='ninety-two thousand five hundred seventy-seven' WHERE a=8741;\nUPDATE t2 SET c='six thousand three hundred fourteen' WHERE a=8742;\nUPDATE t2 SET c='forty-nine thousand four hundred one' WHERE a=8743;\nUPDATE t2 SET c='eighty-six thousand fifty-four' WHERE a=8744;\nUPDATE t2 SET c='seventy-six thousand nine hundred thirty-six' WHERE a=8745;\nUPDATE t2 SET c='eighty-eight thousand eight hundred fourteen' WHERE a=8746;\nUPDATE t2 SET c='eighty-two thousand six hundred nineteen' WHERE a=8747;\nUPDATE t2 SET c='forty thousand three hundred ninety' WHERE a=8748;\nUPDATE t2 SET c='thirty-nine thousand three hundred ninety-one' WHERE a=8749;\nUPDATE t2 SET c='sixty-nine thousand seven hundred twenty-three' WHERE a=8750;\nUPDATE t2 SET c='eighty-eight thousand two hundred eighty' WHERE a=8751;\nUPDATE t2 SET c='forty-seven thousand seven hundred seventy-four' WHERE a=8752;\nUPDATE t2 SET c='forty-one thousand five hundred eighty-eight' WHERE a=8753;\nUPDATE t2 SET c='sixty thousand one hundred ninety-nine' WHERE a=8754;\nUPDATE t2 SET c='fifty-six thousand five hundred seventeen' WHERE a=8755;\nUPDATE t2 SET c='forty-nine thousand one hundred forty-two' WHERE a=8756;\nUPDATE t2 SET c='forty-five thousand two hundred fifty-four' WHERE a=8757;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-four' WHERE a=8758;\nUPDATE t2 SET c='seventy-four thousand one hundred seventy-nine' WHERE a=8759;\nUPDATE t2 SET c='eighty-five thousand thirty-six' WHERE a=8760;\nUPDATE t2 SET c='sixty-seven thousand six hundred forty' WHERE a=8761;\nUPDATE t2 SET c='two thousand eight hundred twenty-five' WHERE a=8762;\nUPDATE t2 SET c='fifty-three thousand one hundred forty-nine' WHERE a=8763;\nUPDATE t2 SET c='fifty-four thousand three hundred seventy-five' WHERE a=8764;\nUPDATE t2 SET c='ninety-three thousand two hundred eight' WHERE a=8765;\nUPDATE t2 SET c='eighty thousand thirty-three' WHERE a=8766;\nUPDATE t2 SET c='twenty-one thousand seven hundred ninety-two' WHERE a=8767;\nUPDATE t2 SET c='ninety-nine thousand six hundred twelve' WHERE a=8768;\nUPDATE t2 SET c='ninety-two thousand seven hundred ninety-eight' WHERE a=8769;\nUPDATE t2 SET c='seventy-eight thousand six hundred twenty-one' WHERE a=8770;\nUPDATE t2 SET c='ninety-two thousand one hundred nine' WHERE a=8771;\nUPDATE t2 SET c='seventy-four thousand three hundred sixty-seven' WHERE a=8772;\nUPDATE t2 SET c='ninety-seven thousand nine hundred twenty-two' WHERE a=8773;\nUPDATE t2 SET c='two thousand seven hundred four' WHERE a=8774;\nUPDATE t2 SET c='forty-two thousand two hundred thirty' WHERE a=8775;\nUPDATE t2 SET c='ninety-seven thousand eleven' WHERE a=8776;\nUPDATE t2 SET c='eighty-one thousand eight hundred ninety-four' WHERE a=8777;\nUPDATE t2 SET c='fifty-two thousand seven hundred thirteen' WHERE a=8778;\nUPDATE t2 SET c='eighty-three thousand nine hundred sixty-three' WHERE a=8779;\nUPDATE t2 SET c='ninety-seven thousand five hundred fifty-three' WHERE a=8780;\nUPDATE t2 SET c='seventy-eight thousand three hundred ninety-six' WHERE a=8781;\nUPDATE t2 SET c='five thousand five hundred two' WHERE a=8782;\nUPDATE t2 SET c='twenty thousand seventy-five' WHERE a=8783;\nUPDATE t2 SET c='nine hundred eighty-seven' WHERE a=8784;\nUPDATE t2 SET c='ninety-five thousand nine hundred eighty-seven' WHERE a=8785;\nUPDATE t2 SET c='nineteen thousand nine hundred ten' WHERE a=8786;\nUPDATE t2 SET c='fifty-five thousand two hundred twenty' WHERE a=8787;\nUPDATE t2 SET c='nine thousand forty' WHERE a=8788;\nUPDATE t2 SET c='nineteen thousand seven hundred eighty-two' WHERE a=8789;\nUPDATE t2 SET c='forty-nine thousand three hundred eighty' WHERE a=8790;\nUPDATE t2 SET c='fifty-eight thousand four hundred sixty-nine' WHERE a=8791;\nUPDATE t2 SET c='thirty-two thousand fifty' WHERE a=8792;\nUPDATE t2 SET c='sixty-three thousand eight hundred one' WHERE a=8793;\nUPDATE t2 SET c='thirty-nine thousand eighty-nine' WHERE a=8794;\nUPDATE t2 SET c='sixteen thousand two hundred sixty-two' WHERE a=8795;\nUPDATE t2 SET c='seventy-one thousand four hundred' WHERE a=8796;\nUPDATE t2 SET c='eighty-two thousand seven hundred two' WHERE a=8797;\nUPDATE t2 SET c='twelve thousand eight hundred eighteen' WHERE a=8798;\nUPDATE t2 SET c='twenty-three thousand ninety-one' WHERE a=8799;\nUPDATE t2 SET c='two thousand one hundred twenty-nine' WHERE a=8800;\nUPDATE t2 SET c='seven thousand seven hundred seventy-two' WHERE a=8801;\nUPDATE t2 SET c='one thousand fifteen' WHERE a=8802;\nUPDATE t2 SET c='seven thousand six hundred fifty-two' WHERE a=8803;\nUPDATE t2 SET c='seventy-four thousand seven hundred seventy-two' WHERE a=8804;\nUPDATE t2 SET c='sixty thousand one hundred thirty-four' WHERE a=8805;\nUPDATE t2 SET c='ninety-eight thousand nine hundred thirty-one' WHERE a=8806;\nUPDATE t2 SET c='sixty-one thousand six hundred eighteen' WHERE a=8807;\nUPDATE t2 SET c='fifty-one thousand six hundred nine' WHERE a=8808;\nUPDATE t2 SET c='nine thousand seven hundred nine' WHERE a=8809;\nUPDATE t2 SET c='ninety-seven thousand two hundred thirty-eight' WHERE a=8810;\nUPDATE t2 SET c='sixty-seven thousand ninety-one' WHERE a=8811;\nUPDATE t2 SET c='sixty-three thousand five hundred seven' WHERE a=8812;\nUPDATE t2 SET c='seventy-four thousand three hundred twenty-six' WHERE a=8813;\nUPDATE t2 SET c='ninety-seven thousand eight hundred ninety-seven' WHERE a=8814;\nUPDATE t2 SET c='ninety-one thousand nine hundred six' WHERE a=8815;\nUPDATE t2 SET c='twenty-three thousand seven hundred eighty-eight' WHERE a=8816;\nUPDATE t2 SET c='four thousand eight hundred forty-nine' WHERE a=8817;\nUPDATE t2 SET c='ninety-seven thousand eighteen' WHERE a=8818;\nUPDATE t2 SET c='seventy-one thousand nine hundred three' WHERE a=8819;\nUPDATE t2 SET c='thirty-two thousand nine hundred fifty-nine' WHERE a=8820;\nUPDATE t2 SET c='ten thousand four hundred fifty-four' WHERE a=8821;\nUPDATE t2 SET c='fifty-seven thousand eight hundred sixty-one' WHERE a=8822;\nUPDATE t2 SET c='ninety-three thousand two hundred forty-four' WHERE a=8823;\nUPDATE t2 SET c='thirty-seven thousand eight hundred seventy-three' WHERE a=8824;\nUPDATE t2 SET c='seventy thousand seven hundred seventy-five' WHERE a=8825;\nUPDATE t2 SET c='ninety-one thousand six hundred eighty-four' WHERE a=8826;\nUPDATE t2 SET c='eighteen thousand seven hundred twelve' WHERE a=8827;\nUPDATE t2 SET c='seventy-eight thousand five hundred eleven' WHERE a=8828;\nUPDATE t2 SET c='sixteen thousand three hundred seventy-four' WHERE a=8829;\nUPDATE t2 SET c='seventy-two thousand nine hundred six' WHERE a=8830;\nUPDATE t2 SET c='eighty-one thousand eight hundred eighty-six' WHERE a=8831;\nUPDATE t2 SET c='twenty-four thousand three hundred twenty-six' WHERE a=8832;\nUPDATE t2 SET c='seventy-nine thousand three hundred sixty' WHERE a=8833;\nUPDATE t2 SET c='eighty-four thousand two hundred ninety-one' WHERE a=8834;\nUPDATE t2 SET c='fifty-six thousand one hundred nineteen' WHERE a=8835;\nUPDATE t2 SET c='ninety-one thousand three hundred twenty-six' WHERE a=8836;\nUPDATE t2 SET c='seventeen thousand four hundred thirty-six' WHERE a=8837;\nUPDATE t2 SET c='eleven thousand sixty' WHERE a=8838;\nUPDATE t2 SET c='sixty thousand three hundred eighteen' WHERE a=8839;\nUPDATE t2 SET c='ninety-six thousand nine hundred seven' WHERE a=8840;\nUPDATE t2 SET c='eighty-six thousand one hundred fifty-five' WHERE a=8841;\nUPDATE t2 SET c='twenty thousand eight hundred three' WHERE a=8842;\nUPDATE t2 SET c='ninety-seven thousand eight hundred thirty-one' WHERE a=8843;\nUPDATE t2 SET c='thirty-six thousand one hundred ten' WHERE a=8844;\nUPDATE t2 SET c='forty-four thousand seven hundred five' WHERE a=8845;\nUPDATE t2 SET c='thirty thousand three hundred six' WHERE a=8846;\nUPDATE t2 SET c='ninety-three thousand twenty-nine' WHERE a=8847;\nUPDATE t2 SET c='eighty-four thousand eight hundred' WHERE a=8848;\nUPDATE t2 SET c='eighteen thousand nine hundred eighty-eight' WHERE a=8849;\nUPDATE t2 SET c='forty-nine thousand four hundred twenty-nine' WHERE a=8850;\nUPDATE t2 SET c='seventy-eight thousand nine hundred fifty-six' WHERE a=8851;\nUPDATE t2 SET c='thirteen thousand two hundred sixty-four' WHERE a=8852;\nUPDATE t2 SET c='fifty-one thousand three hundred seventy-eight' WHERE a=8853;\nUPDATE t2 SET c='fifty-five thousand seven hundred twenty-eight' WHERE a=8854;\nUPDATE t2 SET c='two thousand four hundred thirty-eight' WHERE a=8855;\nUPDATE t2 SET c='six thousand one hundred thirty-three' WHERE a=8856;\nUPDATE t2 SET c='forty thousand nine hundred ninety' WHERE a=8857;\nUPDATE t2 SET c='fifty-five thousand three hundred five' WHERE a=8858;\nUPDATE t2 SET c='twenty-eight thousand two hundred thirty' WHERE a=8859;\nUPDATE t2 SET c='sixty-eight thousand five hundred twenty-one' WHERE a=8860;\nUPDATE t2 SET c='sixteen thousand three hundred forty-seven' WHERE a=8861;\nUPDATE t2 SET c='eleven thousand two hundred seventy-six' WHERE a=8862;\nUPDATE t2 SET c='twenty-one thousand one hundred fifty-two' WHERE a=8863;\nUPDATE t2 SET c='eight thousand seven hundred thirty-eight' WHERE a=8864;\nUPDATE t2 SET c='sixty-eight thousand one hundred seventy-nine' WHERE a=8865;\nUPDATE t2 SET c='sixteen thousand forty-seven' WHERE a=8866;\nUPDATE t2 SET c='eleven thousand nine hundred eighty-five' WHERE a=8867;\nUPDATE t2 SET c='ninety-three thousand one hundred two' WHERE a=8868;\nUPDATE t2 SET c='twenty-seven thousand one hundred eighty-four' WHERE a=8869;\nUPDATE t2 SET c='seventy-nine thousand eight hundred two' WHERE a=8870;\nUPDATE t2 SET c='three thousand six hundred thirteen' WHERE a=8871;\nUPDATE t2 SET c='ninety-eight thousand nine hundred twenty-eight' WHERE a=8872;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighty-nine' WHERE a=8873;\nUPDATE t2 SET c='seven thousand eight hundred nineteen' WHERE a=8874;\nUPDATE t2 SET c='thirty-one thousand nine hundred eighty-two' WHERE a=8875;\nUPDATE t2 SET c='nineteen thousand three hundred fifty-seven' WHERE a=8876;\nUPDATE t2 SET c='twelve thousand eight hundred eighty-four' WHERE a=8877;\nUPDATE t2 SET c='eighty-four thousand four hundred thirty-three' WHERE a=8878;\nUPDATE t2 SET c='sixty-five thousand nine hundred sixteen' WHERE a=8879;\nUPDATE t2 SET c='ninety-seven thousand nine hundred forty-one' WHERE a=8880;\nUPDATE t2 SET c='seventy-nine thousand eight hundred seventy-four' WHERE a=8881;\nUPDATE t2 SET c='fifty-nine thousand eight hundred ninety-five' WHERE a=8882;\nUPDATE t2 SET c='ninety-eight thousand four hundred twenty' WHERE a=8883;\nUPDATE t2 SET c='fifty-two thousand six hundred ninety-two' WHERE a=8884;\nUPDATE t2 SET c='fifty-one thousand eight hundred five' WHERE a=8885;\nUPDATE t2 SET c='thirty-two thousand eighty-two' WHERE a=8886;\nUPDATE t2 SET c='forty-nine thousand three hundred sixty-one' WHERE a=8887;\nUPDATE t2 SET c='twenty-eight thousand seven hundred forty-six' WHERE a=8888;\nUPDATE t2 SET c='forty-two thousand eighty-three' WHERE a=8889;\nUPDATE t2 SET c='seventeen thousand six hundred four' WHERE a=8890;\nUPDATE t2 SET c='ninety-five thousand one hundred seventy-four' WHERE a=8891;\nUPDATE t2 SET c='eighty-eight thousand nine hundred forty-six' WHERE a=8892;\nUPDATE t2 SET c='twenty-four thousand two hundred sixty-five' WHERE a=8893;\nUPDATE t2 SET c='nineteen thousand four hundred sixty-eight' WHERE a=8894;\nUPDATE t2 SET c='eighty-six thousand six hundred fifty-nine' WHERE a=8895;\nUPDATE t2 SET c='four thousand nine hundred thirty-one' WHERE a=8896;\nUPDATE t2 SET c='ten thousand five hundred seventy-one' WHERE a=8897;\nUPDATE t2 SET c='sixty-five thousand six hundred seventeen' WHERE a=8898;\nUPDATE t2 SET c='forty-two thousand eight hundred five' WHERE a=8899;\nUPDATE t2 SET c='ninety-five thousand six hundred eleven' WHERE a=8900;\nUPDATE t2 SET c='thirty-two thousand four hundred seventy-two' WHERE a=8901;\nUPDATE t2 SET c='six hundred seventy-five' WHERE a=8902;\nUPDATE t2 SET c='ninety-eight thousand nine hundred four' WHERE a=8903;\nUPDATE t2 SET c='eighty-five thousand nine hundred one' WHERE a=8904;\nUPDATE t2 SET c='forty thousand five hundred seventy-eight' WHERE a=8905;\nUPDATE t2 SET c='thirty-one thousand seven hundred ninety-seven' WHERE a=8906;\nUPDATE t2 SET c='twenty-eight thousand one hundred eighty-five' WHERE a=8907;\nUPDATE t2 SET c='seventy-seven thousand nine hundred forty-four' WHERE a=8908;\nUPDATE t2 SET c='seventeen thousand five hundred eighty-one' WHERE a=8909;\nUPDATE t2 SET c='six thousand two hundred sixty' WHERE a=8910;\nUPDATE t2 SET c='ninety-four thousand one hundred eighty-one' WHERE a=8911;\nUPDATE t2 SET c='twenty thousand six hundred thirty-three' WHERE a=8912;\nUPDATE t2 SET c='ninety-six thousand nine hundred twenty' WHERE a=8913;\nUPDATE t2 SET c='sixty-four thousand nine hundred thirty-five' WHERE a=8914;\nUPDATE t2 SET c='thirty-six thousand seventy-seven' WHERE a=8915;\nUPDATE t2 SET c='eighty-four thousand six hundred twenty-five' WHERE a=8916;\nUPDATE t2 SET c='fifty thousand eight hundred eighty' WHERE a=8917;\nUPDATE t2 SET c='twenty thousand seventy-five' WHERE a=8918;\nUPDATE t2 SET c='ninety-five thousand nine hundred eighty-two' WHERE a=8919;\nUPDATE t2 SET c='ninety-eight thousand one hundred ninety-four' WHERE a=8920;\nUPDATE t2 SET c='forty-one thousand three hundred sixty-seven' WHERE a=8921;\nUPDATE t2 SET c='sixty-five thousand one hundred fifty-four' WHERE a=8922;\nUPDATE t2 SET c='fifty-five thousand two hundred sixty-nine' WHERE a=8923;\nUPDATE t2 SET c='sixty-seven thousand one hundred seventy-two' WHERE a=8924;\nUPDATE t2 SET c='sixty-seven thousand sixty-seven' WHERE a=8925;\nUPDATE t2 SET c='fifty-nine thousand nine hundred sixty-four' WHERE a=8926;\nUPDATE t2 SET c='fifty thousand one hundred forty-five' WHERE a=8927;\nUPDATE t2 SET c='eighty-five thousand nine hundred eleven' WHERE a=8928;\nUPDATE t2 SET c='sixty-seven thousand one hundred twenty-eight' WHERE a=8929;\nUPDATE t2 SET c='eleven thousand one hundred fifty-four' WHERE a=8930;\nUPDATE t2 SET c='fifteen thousand five hundred seventy-one' WHERE a=8931;\nUPDATE t2 SET c='forty-six thousand six hundred two' WHERE a=8932;\nUPDATE t2 SET c='eighteen thousand five hundred ninety-seven' WHERE a=8933;\nUPDATE t2 SET c='twenty-eight thousand nine hundred twenty-seven' WHERE a=8934;\nUPDATE t2 SET c='sixty-one thousand three hundred forty-one' WHERE a=8935;\nUPDATE t2 SET c='fifty-three thousand eight hundred fifty-three' WHERE a=8936;\nUPDATE t2 SET c='ninety thousand two hundred twenty-six' WHERE a=8937;\nUPDATE t2 SET c='thirty-two thousand seven hundred fifty-two' WHERE a=8938;\nUPDATE t2 SET c='sixty-one thousand sixty-five' WHERE a=8939;\nUPDATE t2 SET c='one hundred sixty-six' WHERE a=8940;\nUPDATE t2 SET c='sixty-eight thousand three hundred seventy-two' WHERE a=8941;\nUPDATE t2 SET c='twenty-five thousand eight hundred four' WHERE a=8942;\nUPDATE t2 SET c='fifty-nine thousand nine hundred forty-four' WHERE a=8943;\nUPDATE t2 SET c='eighty-five thousand seventy-seven' WHERE a=8944;\nUPDATE t2 SET c='thirty-three thousand one hundred forty-two' WHERE a=8945;\nUPDATE t2 SET c='sixty-four thousand nine hundred seventy-one' WHERE a=8946;\nUPDATE t2 SET c='thirty-five thousand five hundred twelve' WHERE a=8947;\nUPDATE t2 SET c='ninety-three thousand three hundred twenty-seven' WHERE a=8948;\nUPDATE t2 SET c='eighty-six thousand four hundred eighteen' WHERE a=8949;\nUPDATE t2 SET c='thirty-eight thousand four hundred ninety-two' WHERE a=8950;\nUPDATE t2 SET c='eighty-three thousand seven hundred sixty-seven' WHERE a=8951;\nUPDATE t2 SET c='sixteen thousand two hundred forty-four' WHERE a=8952;\nUPDATE t2 SET c='eighty-one thousand eight hundred sixty-three' WHERE a=8953;\nUPDATE t2 SET c='ninety-seven thousand three hundred eighty' WHERE a=8954;\nUPDATE t2 SET c='twenty-one thousand six hundred fifty-seven' WHERE a=8955;\nUPDATE t2 SET c='seventy-seven thousand five hundred thirty-three' WHERE a=8956;\nUPDATE t2 SET c='thirty thousand five hundred seventy-five' WHERE a=8957;\nUPDATE t2 SET c='forty-one thousand one hundred three' WHERE a=8958;\nUPDATE t2 SET c='seventy-seven thousand nine hundred eighty-three' WHERE a=8959;\nUPDATE t2 SET c='thirty-five thousand eight hundred ninety-eight' WHERE a=8960;\nUPDATE t2 SET c='five thousand three hundred ninety-nine' WHERE a=8961;\nUPDATE t2 SET c='fifty-six thousand one hundred seventy-two' WHERE a=8962;\nUPDATE t2 SET c='eleven thousand two hundred thirteen' WHERE a=8963;\nUPDATE t2 SET c='thirteen thousand twenty-nine' WHERE a=8964;\nUPDATE t2 SET c='eighty-five thousand nine hundred fifty-three' WHERE a=8965;\nUPDATE t2 SET c='ninety-four thousand seven hundred seventy-eight' WHERE a=8966;\nUPDATE t2 SET c='twenty-nine thousand seven hundred twenty-six' WHERE a=8967;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-six' WHERE a=8968;\nUPDATE t2 SET c='thirty-two thousand two hundred seventy' WHERE a=8969;\nUPDATE t2 SET c='fifty-two thousand two hundred thirty-seven' WHERE a=8970;\nUPDATE t2 SET c='ten thousand forty-five' WHERE a=8971;\nUPDATE t2 SET c='thirty-nine thousand six hundred ninety-six' WHERE a=8972;\nUPDATE t2 SET c='fifty-eight thousand fifty-nine' WHERE a=8973;\nUPDATE t2 SET c='eighty-nine thousand two hundred two' WHERE a=8974;\nUPDATE t2 SET c='seventy-one thousand six hundred ninety-one' WHERE a=8975;\nUPDATE t2 SET c='eleven thousand nine hundred seventy-five' WHERE a=8976;\nUPDATE t2 SET c='seventy thousand three hundred ninety-six' WHERE a=8977;\nUPDATE t2 SET c='seventy-five thousand seven hundred twelve' WHERE a=8978;\nUPDATE t2 SET c='forty-seven thousand four hundred five' WHERE a=8979;\nUPDATE t2 SET c='twenty-six thousand eight hundred fifty' WHERE a=8980;\nUPDATE t2 SET c='twenty-two thousand five hundred four' WHERE a=8981;\nUPDATE t2 SET c='two thousand seven hundred ninety-one' WHERE a=8982;\nUPDATE t2 SET c='twenty thousand seven hundred sixty-four' WHERE a=8983;\nUPDATE t2 SET c='forty-three thousand seven hundred eight' WHERE a=8984;\nUPDATE t2 SET c='twenty-two thousand five hundred forty-eight' WHERE a=8985;\nUPDATE t2 SET c='twenty thousand four hundred fourteen' WHERE a=8986;\nUPDATE t2 SET c='ninety-two thousand eight hundred thirty-seven' WHERE a=8987;\nUPDATE t2 SET c='thirteen thousand three hundred fourteen' WHERE a=8988;\nUPDATE t2 SET c='twenty-three thousand eight hundred four' WHERE a=8989;\nUPDATE t2 SET c='twenty-four thousand one hundred forty-nine' WHERE a=8990;\nUPDATE t2 SET c='seventy-one thousand thirty-three' WHERE a=8991;\nUPDATE t2 SET c='sixty-nine thousand eight hundred twenty-six' WHERE a=8992;\nUPDATE t2 SET c='fifteen thousand one hundred seventy-nine' WHERE a=8993;\nUPDATE t2 SET c='sixteen thousand one hundred nine' WHERE a=8994;\nUPDATE t2 SET c='ninety-one thousand seven hundred thirteen' WHERE a=8995;\nUPDATE t2 SET c='fifty-three thousand nine hundred sixty-nine' WHERE a=8996;\nUPDATE t2 SET c='nine thousand two hundred forty-two' WHERE a=8997;\nUPDATE t2 SET c='thirteen thousand seven hundred sixteen' WHERE a=8998;\nUPDATE t2 SET c='thirty-seven thousand one hundred twenty-three' WHERE a=8999;\nUPDATE t2 SET c='three thousand two hundred eighty-eight' WHERE a=9000;\nUPDATE t2 SET c='seventy thousand two hundred forty-five' WHERE a=9001;\nUPDATE t2 SET c='forty-eight thousand two hundred eighty-eight' WHERE a=9002;\nUPDATE t2 SET c='twenty-nine thousand six hundred fifty-four' WHERE a=9003;\nUPDATE t2 SET c='forty-seven thousand six hundred eighty-seven' WHERE a=9004;\nUPDATE t2 SET c='thirty-nine thousand one hundred fifty-six' WHERE a=9005;\nUPDATE t2 SET c='one thousand two hundred ninety-five' WHERE a=9006;\nUPDATE t2 SET c='eighty-four thousand four hundred fifty' WHERE a=9007;\nUPDATE t2 SET c='eighty-six thousand three hundred thirty-one' WHERE a=9008;\nUPDATE t2 SET c='eighty-seven thousand sixty' WHERE a=9009;\nUPDATE t2 SET c='sixty-five thousand eight hundred sixteen' WHERE a=9010;\nUPDATE t2 SET c='twenty-six thousand one hundred forty-five' WHERE a=9011;\nUPDATE t2 SET c='fifty-four thousand fifty-three' WHERE a=9012;\nUPDATE t2 SET c='ninety-eight thousand eight hundred sixteen' WHERE a=9013;\nUPDATE t2 SET c='twenty-one thousand ninety-eight' WHERE a=9014;\nUPDATE t2 SET c='sixty-five thousand two hundred ninety-four' WHERE a=9015;\nUPDATE t2 SET c='forty-two thousand six hundred forty' WHERE a=9016;\nUPDATE t2 SET c='seventy-four thousand four hundred ninety-six' WHERE a=9017;\nUPDATE t2 SET c='twenty-eight thousand three hundred ninety-one' WHERE a=9018;\nUPDATE t2 SET c='eighty-nine thousand five hundred eighty-eight' WHERE a=9019;\nUPDATE t2 SET c='eighty-eight thousand five hundred eighty-five' WHERE a=9020;\nUPDATE t2 SET c='fifty-two thousand seven hundred fifty-six' WHERE a=9021;\nUPDATE t2 SET c='eighty-four thousand eighty-seven' WHERE a=9022;\nUPDATE t2 SET c='fifty-three thousand eight hundred seventy-five' WHERE a=9023;\nUPDATE t2 SET c='fourteen thousand seven hundred ninety' WHERE a=9024;\nUPDATE t2 SET c='fifty-eight thousand five hundred sixty-two' WHERE a=9025;\nUPDATE t2 SET c='eighty-three thousand three hundred twenty-one' WHERE a=9026;\nUPDATE t2 SET c='ninety-two thousand seven hundred six' WHERE a=9027;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty-five' WHERE a=9028;\nUPDATE t2 SET c='sixteen thousand seven hundred twenty-four' WHERE a=9029;\nUPDATE t2 SET c='fifty-four thousand sixty-six' WHERE a=9030;\nUPDATE t2 SET c='eleven thousand ninety-two' WHERE a=9031;\nUPDATE t2 SET c='fifty-seven thousand one hundred sixty-eight' WHERE a=9032;\nUPDATE t2 SET c='eighty-one thousand twenty-one' WHERE a=9033;\nUPDATE t2 SET c='thirty-five thousand six hundred seventy-five' WHERE a=9034;\nUPDATE t2 SET c='seventy-four thousand three hundred eighty-three' WHERE a=9035;\nUPDATE t2 SET c='twenty-seven thousand three' WHERE a=9036;\nUPDATE t2 SET c='thirty-two thousand two hundred ten' WHERE a=9037;\nUPDATE t2 SET c='thirty-eight thousand eight hundred sixty-two' WHERE a=9038;\nUPDATE t2 SET c='eight thousand two hundred seventy-six' WHERE a=9039;\nUPDATE t2 SET c='seventy-six thousand seven hundred thirty' WHERE a=9040;\nUPDATE t2 SET c='two thousand seven hundred sixty-five' WHERE a=9041;\nUPDATE t2 SET c='thirty-one thousand ninety-six' WHERE a=9042;\nUPDATE t2 SET c='thirty-three thousand five hundred fifty-one' WHERE a=9043;\nUPDATE t2 SET c='ninety-six thousand three hundred eighty-three' WHERE a=9044;\nUPDATE t2 SET c='sixty-three thousand two hundred forty-one' WHERE a=9045;\nUPDATE t2 SET c='two thousand five hundred forty-six' WHERE a=9046;\nUPDATE t2 SET c='two thousand five hundred seventy' WHERE a=9047;\nUPDATE t2 SET c='fifty-three thousand five hundred forty-seven' WHERE a=9048;\nUPDATE t2 SET c='seventy-six thousand eight hundred fifteen' WHERE a=9049;\nUPDATE t2 SET c='eighty-five thousand sixty-nine' WHERE a=9050;\nUPDATE t2 SET c='seventy-one thousand seven hundred sixty-four' WHERE a=9051;\nUPDATE t2 SET c='forty-six thousand four hundred thirty-six' WHERE a=9052;\nUPDATE t2 SET c='one thousand one hundred twenty-three' WHERE a=9053;\nUPDATE t2 SET c='fifteen thousand seven hundred ninety-eight' WHERE a=9054;\nUPDATE t2 SET c='twelve thousand one hundred five' WHERE a=9055;\nUPDATE t2 SET c='sixty-three thousand two hundred thirty-one' WHERE a=9056;\nUPDATE t2 SET c='sixty-six thousand seven hundred twenty-two' WHERE a=9057;\nUPDATE t2 SET c='twenty-one thousand ninety-two' WHERE a=9058;\nUPDATE t2 SET c='fifty-three thousand one hundred forty-four' WHERE a=9059;\nUPDATE t2 SET c='thirty-two thousand one hundred sixty' WHERE a=9060;\nUPDATE t2 SET c='sixty-three thousand four hundred twenty-eight' WHERE a=9061;\nUPDATE t2 SET c='two thousand nine hundred seventy' WHERE a=9062;\nUPDATE t2 SET c='eighty-two thousand two hundred seventy-five' WHERE a=9063;\nUPDATE t2 SET c='fifty-seven thousand two hundred four' WHERE a=9064;\nUPDATE t2 SET c='thirty thousand seven hundred ninety-two' WHERE a=9065;\nUPDATE t2 SET c='eighty-three thousand seven hundred fourteen' WHERE a=9066;\nUPDATE t2 SET c='twenty-seven thousand eight hundred forty-two' WHERE a=9067;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-six' WHERE a=9068;\nUPDATE t2 SET c='forty-eight thousand five hundred ninety-two' WHERE a=9069;\nUPDATE t2 SET c='four thousand eight hundred twenty-seven' WHERE a=9070;\nUPDATE t2 SET c='forty-two thousand one hundred thirty-six' WHERE a=9071;\nUPDATE t2 SET c='ninety-five thousand nine hundred forty-seven' WHERE a=9072;\nUPDATE t2 SET c='sixty-one thousand one hundred sixty-one' WHERE a=9073;\nUPDATE t2 SET c='sixty-three thousand six hundred ninety-seven' WHERE a=9074;\nUPDATE t2 SET c='seventy-six thousand nine hundred fifty-four' WHERE a=9075;\nUPDATE t2 SET c='fifty-three thousand two hundred ninety-four' WHERE a=9076;\nUPDATE t2 SET c='seventeen thousand eighty-three' WHERE a=9077;\nUPDATE t2 SET c='twenty-one thousand four hundred ten' WHERE a=9078;\nUPDATE t2 SET c='forty-seven thousand six hundred seventy-eight' WHERE a=9079;\nUPDATE t2 SET c='eighty-three thousand four hundred nine' WHERE a=9080;\nUPDATE t2 SET c='fifty-seven thousand nine hundred twenty-two' WHERE a=9081;\nUPDATE t2 SET c='ninety-six thousand nine hundred twenty-seven' WHERE a=9082;\nUPDATE t2 SET c='thirty-five thousand two hundred ninety' WHERE a=9083;\nUPDATE t2 SET c='twelve thousand seventy-two' WHERE a=9084;\nUPDATE t2 SET c='fifty-two thousand five hundred nine' WHERE a=9085;\nUPDATE t2 SET c='thirty-seven thousand twenty-three' WHERE a=9086;\nUPDATE t2 SET c='fifty-three thousand one hundred thirty-nine' WHERE a=9087;\nUPDATE t2 SET c='fifty-four thousand five hundred sixteen' WHERE a=9088;\nUPDATE t2 SET c='fifty-five thousand nine hundred forty' WHERE a=9089;\nUPDATE t2 SET c='thirty thousand eighty-one' WHERE a=9090;\nUPDATE t2 SET c='four hundred forty-nine' WHERE a=9091;\nUPDATE t2 SET c='seventy-two thousand seven hundred thirty' WHERE a=9092;\nUPDATE t2 SET c='two thousand three hundred eighty-one' WHERE a=9093;\nUPDATE t2 SET c='forty-six thousand one hundred eighty-six' WHERE a=9094;\nUPDATE t2 SET c='eleven thousand five hundred eighteen' WHERE a=9095;\nUPDATE t2 SET c='twenty-one thousand two hundred eighty-nine' WHERE a=9096;\nUPDATE t2 SET c='thirty thousand seven hundred forty-five' WHERE a=9097;\nUPDATE t2 SET c='sixty-seven thousand six hundred twenty-seven' WHERE a=9098;\nUPDATE t2 SET c='seventy thousand nine hundred twenty-five' WHERE a=9099;\nUPDATE t2 SET c='twelve thousand six hundred forty-six' WHERE a=9100;\nUPDATE t2 SET c='seventy-five thousand five hundred eight' WHERE a=9101;\nUPDATE t2 SET c='eighteen thousand four hundred one' WHERE a=9102;\nUPDATE t2 SET c='ninety-nine thousand three hundred ninety-four' WHERE a=9103;\nUPDATE t2 SET c='forty-eight thousand three hundred thirty-five' WHERE a=9104;\nUPDATE t2 SET c='seventy-six thousand four hundred twenty-six' WHERE a=9105;\nUPDATE t2 SET c='twenty-five thousand four hundred eighty' WHERE a=9106;\nUPDATE t2 SET c='fifty thousand two hundred eighty-five' WHERE a=9107;\nUPDATE t2 SET c='fifty-five thousand nine hundred twenty-five' WHERE a=9108;\nUPDATE t2 SET c='sixty-six thousand one hundred ninety' WHERE a=9109;\nUPDATE t2 SET c='four thousand five hundred fifty-three' WHERE a=9110;\nUPDATE t2 SET c='twenty-four thousand one hundred forty-four' WHERE a=9111;\nUPDATE t2 SET c='fifty-two thousand one hundred two' WHERE a=9112;\nUPDATE t2 SET c='fifty-eight thousand two hundred ninety-eight' WHERE a=9113;\nUPDATE t2 SET c='thirteen thousand six hundred forty' WHERE a=9114;\nUPDATE t2 SET c='ninety thousand five hundred thirty-one' WHERE a=9115;\nUPDATE t2 SET c='twenty-eight thousand six' WHERE a=9116;\nUPDATE t2 SET c='eighty thousand four hundred thirty-six' WHERE a=9117;\nUPDATE t2 SET c='seventy-six thousand six hundred eighty-six' WHERE a=9118;\nUPDATE t2 SET c='eighteen thousand nine hundred thirty-two' WHERE a=9119;\nUPDATE t2 SET c='forty-nine thousand sixty-nine' WHERE a=9120;\nUPDATE t2 SET c='fifty-five thousand five hundred fifty-eight' WHERE a=9121;\nUPDATE t2 SET c='ninety-five thousand two hundred fifty-six' WHERE a=9122;\nUPDATE t2 SET c='thirty-two thousand eight hundred ninety-six' WHERE a=9123;\nUPDATE t2 SET c='twenty-five thousand eight hundred sixty' WHERE a=9124;\nUPDATE t2 SET c='fourteen thousand nine hundred ninety-eight' WHERE a=9125;\nUPDATE t2 SET c='eighty-two thousand two hundred ninety-seven' WHERE a=9126;\nUPDATE t2 SET c='fifty-two thousand seven hundred thirty-six' WHERE a=9127;\nUPDATE t2 SET c='seventy-nine thousand eight hundred seventy-seven' WHERE a=9128;\nUPDATE t2 SET c='forty-nine thousand one hundred eighteen' WHERE a=9129;\nUPDATE t2 SET c='forty-five thousand ninety-eight' WHERE a=9130;\nUPDATE t2 SET c='seventeen thousand six hundred fifty-six' WHERE a=9131;\nUPDATE t2 SET c='twenty-five thousand nine hundred twenty-five' WHERE a=9132;\nUPDATE t2 SET c='fifty-seven thousand three hundred fifty-six' WHERE a=9133;\nUPDATE t2 SET c='eighty-eight thousand six hundred forty-six' WHERE a=9134;\nUPDATE t2 SET c='thirty-five thousand one hundred eighty-four' WHERE a=9135;\nUPDATE t2 SET c='twenty-four thousand two hundred sixty-eight' WHERE a=9136;\nUPDATE t2 SET c='eighty thousand seven hundred one' WHERE a=9137;\nUPDATE t2 SET c='ten thousand two hundred ninety' WHERE a=9138;\nUPDATE t2 SET c='ninety-two thousand one hundred seventy-five' WHERE a=9139;\nUPDATE t2 SET c='ninety-six thousand eight hundred eighty-six' WHERE a=9140;\nUPDATE t2 SET c='eighty-one thousand seventy-six' WHERE a=9141;\nUPDATE t2 SET c='fifty-nine thousand four hundred fifty' WHERE a=9142;\nUPDATE t2 SET c='twenty-nine thousand five hundred forty-two' WHERE a=9143;\nUPDATE t2 SET c='eighty-four thousand eight hundred forty-nine' WHERE a=9144;\nUPDATE t2 SET c='thirty-four thousand five hundred seventy-eight' WHERE a=9145;\nUPDATE t2 SET c='nine thousand seven hundred twenty-two' WHERE a=9146;\nUPDATE t2 SET c='sixty-one thousand three hundred sixty-three' WHERE a=9147;\nUPDATE t2 SET c='forty-six thousand eight hundred forty-five' WHERE a=9148;\nUPDATE t2 SET c='ten thousand three hundred seventy-nine' WHERE a=9149;\nUPDATE t2 SET c='eighty-five thousand sixty' WHERE a=9150;\nUPDATE t2 SET c='eighty-three thousand three hundred sixty-five' WHERE a=9151;\nUPDATE t2 SET c='seven thousand two hundred ninety-eight' WHERE a=9152;\nUPDATE t2 SET c='twenty-four thousand seven hundred fourteen' WHERE a=9153;\nUPDATE t2 SET c='twenty-one thousand nine hundred twenty-nine' WHERE a=9154;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seven' WHERE a=9155;\nUPDATE t2 SET c='sixteen thousand six hundred forty-seven' WHERE a=9156;\nUPDATE t2 SET c='fifty-six thousand nine hundred fifty-two' WHERE a=9157;\nUPDATE t2 SET c='ninety-four thousand seven hundred sixty-four' WHERE a=9158;\nUPDATE t2 SET c='fourteen thousand seven hundred twenty-two' WHERE a=9159;\nUPDATE t2 SET c='forty-six thousand six hundred twenty-two' WHERE a=9160;\nUPDATE t2 SET c='twenty-six thousand one hundred ninety-five' WHERE a=9161;\nUPDATE t2 SET c='seventy-three thousand fifty-six' WHERE a=9162;\nUPDATE t2 SET c='seventy-five thousand seven hundred sixty-four' WHERE a=9163;\nUPDATE t2 SET c='fifty-five thousand six hundred fifty' WHERE a=9164;\nUPDATE t2 SET c='seven thousand two hundred fifty' WHERE a=9165;\nUPDATE t2 SET c='eight thousand three hundred eighty-one' WHERE a=9166;\nUPDATE t2 SET c='forty-three thousand five hundred sixteen' WHERE a=9167;\nUPDATE t2 SET c='sixty-two thousand five hundred twenty-two' WHERE a=9168;\nUPDATE t2 SET c='eighty-eight thousand nine hundred' WHERE a=9169;\nUPDATE t2 SET c='ninety-nine thousand three hundred forty-three' WHERE a=9170;\nUPDATE t2 SET c='sixty-one thousand three hundred nine' WHERE a=9171;\nUPDATE t2 SET c='seventy-nine thousand nine hundred sixty-eight' WHERE a=9172;\nUPDATE t2 SET c='sixty-one thousand seven hundred seventeen' WHERE a=9173;\nUPDATE t2 SET c='sixty-five thousand two hundred eighty-five' WHERE a=9174;\nUPDATE t2 SET c='five thousand three hundred forty-four' WHERE a=9175;\nUPDATE t2 SET c='twelve thousand five hundred ninety-one' WHERE a=9176;\nUPDATE t2 SET c='fifty-nine thousand seven hundred twenty-six' WHERE a=9177;\nUPDATE t2 SET c='five thousand nine hundred eleven' WHERE a=9178;\nUPDATE t2 SET c='seventy-four thousand seven hundred fifty-eight' WHERE a=9179;\nUPDATE t2 SET c='sixty-nine thousand ninety-six' WHERE a=9180;\nUPDATE t2 SET c='two thousand six hundred eighty-one' WHERE a=9181;\nUPDATE t2 SET c='sixty-seven thousand seven hundred thirty-eight' WHERE a=9182;\nUPDATE t2 SET c='one thousand seven hundred seventy-eight' WHERE a=9183;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ten' WHERE a=9184;\nUPDATE t2 SET c='sixty thousand seven hundred sixty-three' WHERE a=9185;\nUPDATE t2 SET c='forty-five thousand two hundred ninety-four' WHERE a=9186;\nUPDATE t2 SET c='eighty-three thousand five hundred seventy-five' WHERE a=9187;\nUPDATE t2 SET c='fifty thousand seven hundred forty-six' WHERE a=9188;\nUPDATE t2 SET c='seven thousand seven hundred eighty-five' WHERE a=9189;\nUPDATE t2 SET c='ninety-one thousand fifty-seven' WHERE a=9190;\nUPDATE t2 SET c='thirty-three thousand two hundred forty-one' WHERE a=9191;\nUPDATE t2 SET c='eighty-one thousand one hundred thirty-four' WHERE a=9192;\nUPDATE t2 SET c='twenty-three thousand two hundred sixty-one' WHERE a=9193;\nUPDATE t2 SET c='seventy-six thousand one hundred six' WHERE a=9194;\nUPDATE t2 SET c='seventy thousand eight hundred forty-three' WHERE a=9195;\nUPDATE t2 SET c='six thousand two hundred eighty' WHERE a=9196;\nUPDATE t2 SET c='seven thousand three hundred ten' WHERE a=9197;\nUPDATE t2 SET c='sixteen thousand six hundred twenty-one' WHERE a=9198;\nUPDATE t2 SET c='thirty thousand twenty-nine' WHERE a=9199;\nUPDATE t2 SET c='two thousand twenty-three' WHERE a=9200;\nUPDATE t2 SET c='fifty thousand six hundred forty-three' WHERE a=9201;\nUPDATE t2 SET c='sixty-four thousand one hundred forty-three' WHERE a=9202;\nUPDATE t2 SET c='sixty-six thousand one hundred forty-one' WHERE a=9203;\nUPDATE t2 SET c='fifty-one thousand four hundred thirty-four' WHERE a=9204;\nUPDATE t2 SET c='ninety-nine thousand nine hundred forty' WHERE a=9205;\nUPDATE t2 SET c='sixty-four thousand two hundred sixty' WHERE a=9206;\nUPDATE t2 SET c='eight thousand two hundred six' WHERE a=9207;\nUPDATE t2 SET c='fifty-four thousand forty-one' WHERE a=9208;\nUPDATE t2 SET c='ninety-two thousand one hundred forty-one' WHERE a=9209;\nUPDATE t2 SET c='sixty-three thousand seven hundred ninety-eight' WHERE a=9210;\nUPDATE t2 SET c='twenty-three thousand four hundred eighty-two' WHERE a=9211;\nUPDATE t2 SET c='twenty-one thousand six hundred five' WHERE a=9212;\nUPDATE t2 SET c='forty-five thousand two hundred fifty-three' WHERE a=9213;\nUPDATE t2 SET c='seventy-four thousand two hundred twenty-one' WHERE a=9214;\nUPDATE t2 SET c='seventy-two thousand six hundred thirty-nine' WHERE a=9215;\nUPDATE t2 SET c='ninety-two thousand four hundred ninety-five' WHERE a=9216;\nUPDATE t2 SET c='fifty-five thousand nine hundred nineteen' WHERE a=9217;\nUPDATE t2 SET c='sixty-four thousand five hundred sixty-six' WHERE a=9218;\nUPDATE t2 SET c='forty-six thousand five hundred twenty-one' WHERE a=9219;\nUPDATE t2 SET c='thirty thousand seven hundred forty-two' WHERE a=9220;\nUPDATE t2 SET c='eleven thousand six hundred forty-four' WHERE a=9221;\nUPDATE t2 SET c='thirty-eight thousand six hundred twenty-nine' WHERE a=9222;\nUPDATE t2 SET c='eighty-seven thousand eight hundred sixty-two' WHERE a=9223;\nUPDATE t2 SET c='forty-nine thousand four hundred thirty-five' WHERE a=9224;\nUPDATE t2 SET c='eighty-six thousand one hundred thirty-three' WHERE a=9225;\nUPDATE t2 SET c='fifty-eight thousand eight hundred ninety' WHERE a=9226;\nUPDATE t2 SET c='forty thousand four hundred thirty-four' WHERE a=9227;\nUPDATE t2 SET c='forty-two thousand four hundred one' WHERE a=9228;\nUPDATE t2 SET c='sixty-nine thousand seven hundred fourteen' WHERE a=9229;\nUPDATE t2 SET c='ninety-nine thousand five hundred fifty-five' WHERE a=9230;\nUPDATE t2 SET c='two thousand six hundred fifty-seven' WHERE a=9231;\nUPDATE t2 SET c='sixty-four thousand twenty-seven' WHERE a=9232;\nUPDATE t2 SET c='seventy-four thousand six hundred sixty-eight' WHERE a=9233;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-one' WHERE a=9234;\nUPDATE t2 SET c='fifty-nine thousand seven hundred eighty-three' WHERE a=9235;\nUPDATE t2 SET c='seventy-five thousand fifteen' WHERE a=9236;\nUPDATE t2 SET c='fifty-nine thousand seven hundred eighty-four' WHERE a=9237;\nUPDATE t2 SET c='forty-three thousand one hundred sixty-nine' WHERE a=9238;\nUPDATE t2 SET c='five hundred fifty-seven' WHERE a=9239;\nUPDATE t2 SET c='ninety-nine thousand two hundred eighty-two' WHERE a=9240;\nUPDATE t2 SET c='sixty thousand six hundred ten' WHERE a=9241;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirteen' WHERE a=9242;\nUPDATE t2 SET c='thirty-eight thousand three hundred fifty-six' WHERE a=9243;\nUPDATE t2 SET c='thirty-eight thousand two hundred nineteen' WHERE a=9244;\nUPDATE t2 SET c='six thousand ninety-two' WHERE a=9245;\nUPDATE t2 SET c='twenty-nine thousand one hundred four' WHERE a=9246;\nUPDATE t2 SET c='forty-four thousand seven hundred twenty-five' WHERE a=9247;\nUPDATE t2 SET c='eighty-nine thousand one hundred eleven' WHERE a=9248;\nUPDATE t2 SET c='forty-one thousand fifty-three' WHERE a=9249;\nUPDATE t2 SET c='twenty-one thousand seven hundred eighty-seven' WHERE a=9250;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-two' WHERE a=9251;\nUPDATE t2 SET c='ninety-seven thousand four hundred fifty-nine' WHERE a=9252;\nUPDATE t2 SET c='twenty-four thousand two hundred seventy-nine' WHERE a=9253;\nUPDATE t2 SET c='seventy-four thousand eight hundred eighty-five' WHERE a=9254;\nUPDATE t2 SET c='ninety-one thousand two hundred fifty-three' WHERE a=9255;\nUPDATE t2 SET c='twenty thousand eight hundred sixty-two' WHERE a=9256;\nUPDATE t2 SET c='sixty-nine thousand two hundred ninety-nine' WHERE a=9257;\nUPDATE t2 SET c='twenty thousand two hundred fifty-six' WHERE a=9258;\nUPDATE t2 SET c='five thousand four hundred twenty-eight' WHERE a=9259;\nUPDATE t2 SET c='fifty-three thousand eight hundred six' WHERE a=9260;\nUPDATE t2 SET c='eighty-five thousand five hundred thirty-three' WHERE a=9261;\nUPDATE t2 SET c='forty-nine thousand two hundred twenty-nine' WHERE a=9262;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy' WHERE a=9263;\nUPDATE t2 SET c='ninety-two thousand five hundred ninety-seven' WHERE a=9264;\nUPDATE t2 SET c='eighty thousand six hundred twenty-six' WHERE a=9265;\nUPDATE t2 SET c='thirteen thousand six hundred sixty' WHERE a=9266;\nUPDATE t2 SET c='thirteen thousand eight hundred sixteen' WHERE a=9267;\nUPDATE t2 SET c='forty-five thousand seven hundred forty-one' WHERE a=9268;\nUPDATE t2 SET c='eleven thousand five hundred eighty-nine' WHERE a=9269;\nUPDATE t2 SET c='fifty-seven thousand six hundred twenty-nine' WHERE a=9270;\nUPDATE t2 SET c='thirty-eight thousand five hundred sixty-seven' WHERE a=9271;\nUPDATE t2 SET c='twenty-three thousand one hundred eighty-one' WHERE a=9272;\nUPDATE t2 SET c='twenty thousand two hundred fifty' WHERE a=9273;\nUPDATE t2 SET c='fifty-nine thousand three hundred thirteen' WHERE a=9274;\nUPDATE t2 SET c='thirty-two thousand nine hundred one' WHERE a=9275;\nUPDATE t2 SET c='forty-one thousand five hundred fourteen' WHERE a=9276;\nUPDATE t2 SET c='sixty-two thousand three hundred forty-seven' WHERE a=9277;\nUPDATE t2 SET c='ninety-one thousand three hundred sixty' WHERE a=9278;\nUPDATE t2 SET c='thirty-four thousand two hundred seventy-two' WHERE a=9279;\nUPDATE t2 SET c='seventy-two thousand four hundred eighty-one' WHERE a=9280;\nUPDATE t2 SET c='forty-five thousand three hundred ninety-three' WHERE a=9281;\nUPDATE t2 SET c='eighty-six thousand one hundred twenty' WHERE a=9282;\nUPDATE t2 SET c='eighty-eight thousand six hundred thirty-five' WHERE a=9283;\nUPDATE t2 SET c='ninety-six thousand nine hundred sixty-four' WHERE a=9284;\nUPDATE t2 SET c='forty thousand nine hundred seventy-seven' WHERE a=9285;\nUPDATE t2 SET c='fifty-nine thousand five' WHERE a=9286;\nUPDATE t2 SET c='eighteen thousand one hundred twenty-one' WHERE a=9287;\nUPDATE t2 SET c='eighteen thousand six hundred thirty-five' WHERE a=9288;\nUPDATE t2 SET c='eighty-two thousand five hundred thirty-four' WHERE a=9289;\nUPDATE t2 SET c='fifty-one thousand one hundred forty-four' WHERE a=9290;\nUPDATE t2 SET c='twenty-seven thousand two hundred twenty' WHERE a=9291;\nUPDATE t2 SET c='sixteen thousand two hundred fifty-two' WHERE a=9292;\nUPDATE t2 SET c='forty thousand five hundred forty-eight' WHERE a=9293;\nUPDATE t2 SET c='forty-two thousand seventy-three' WHERE a=9294;\nUPDATE t2 SET c='sixty-five thousand five hundred thirty-three' WHERE a=9295;\nUPDATE t2 SET c='thirty thousand four hundred seventy-two' WHERE a=9296;\nUPDATE t2 SET c='fifty-nine thousand one hundred thirty-one' WHERE a=9297;\nUPDATE t2 SET c='sixty-three thousand one hundred seventy-five' WHERE a=9298;\nUPDATE t2 SET c='ninety-one thousand five hundred eleven' WHERE a=9299;\nUPDATE t2 SET c='eighty-six thousand four hundred sixty-nine' WHERE a=9300;\nUPDATE t2 SET c='eighty-eight thousand nine hundred forty-six' WHERE a=9301;\nUPDATE t2 SET c='sixty-one thousand sixty' WHERE a=9302;\nUPDATE t2 SET c='eighty-eight thousand seven hundred ninety-three' WHERE a=9303;\nUPDATE t2 SET c='ninety thousand sixty-one' WHERE a=9304;\nUPDATE t2 SET c='eight thousand eight hundred sixty-eight' WHERE a=9305;\nUPDATE t2 SET c='twenty-one thousand fifty' WHERE a=9306;\nUPDATE t2 SET c='seventy-six thousand one hundred six' WHERE a=9307;\nUPDATE t2 SET c='seven thousand nine hundred eighty-three' WHERE a=9308;\nUPDATE t2 SET c='fifty-seven thousand eight hundred seven' WHERE a=9309;\nUPDATE t2 SET c='ninety-four thousand three hundred fifty-two' WHERE a=9310;\nUPDATE t2 SET c='twenty-eight thousand three hundred twenty-eight' WHERE a=9311;\nUPDATE t2 SET c='twelve thousand two hundred forty' WHERE a=9312;\nUPDATE t2 SET c='fifty-two thousand eight hundred twenty-three' WHERE a=9313;\nUPDATE t2 SET c='eight thousand ninety-four' WHERE a=9314;\nUPDATE t2 SET c='thirty-seven thousand four hundred six' WHERE a=9315;\nUPDATE t2 SET c='sixty-two thousand six hundred eighty-three' WHERE a=9316;\nUPDATE t2 SET c='ninety thousand eight hundred ninety-one' WHERE a=9317;\nUPDATE t2 SET c='eighty-eight thousand seventeen' WHERE a=9318;\nUPDATE t2 SET c='thirty-nine thousand three hundred twenty-one' WHERE a=9319;\nUPDATE t2 SET c='eighteen thousand one' WHERE a=9320;\nUPDATE t2 SET c='fourteen thousand seven hundred seventy-nine' WHERE a=9321;\nUPDATE t2 SET c='ninety thousand two hundred eighty-four' WHERE a=9322;\nUPDATE t2 SET c='fifty-three thousand nine hundred eighty-four' WHERE a=9323;\nUPDATE t2 SET c='two hundred twenty-six' WHERE a=9324;\nUPDATE t2 SET c='ten thousand seven hundred six' WHERE a=9325;\nUPDATE t2 SET c='forty thousand seven hundred seventeen' WHERE a=9326;\nUPDATE t2 SET c='sixty-seven thousand five hundred eight' WHERE a=9327;\nUPDATE t2 SET c='seventy-four thousand five hundred ninety-three' WHERE a=9328;\nUPDATE t2 SET c='forty-six thousand ninety-five' WHERE a=9329;\nUPDATE t2 SET c='forty-five thousand five hundred forty-five' WHERE a=9330;\nUPDATE t2 SET c='thirty-nine thousand five hundred seventy-six' WHERE a=9331;\nUPDATE t2 SET c='thirty-six thousand four hundred ninety-six' WHERE a=9332;\nUPDATE t2 SET c='thirty-five thousand two hundred six' WHERE a=9333;\nUPDATE t2 SET c='twenty thousand one' WHERE a=9334;\nUPDATE t2 SET c='sixty thousand forty' WHERE a=9335;\nUPDATE t2 SET c='twenty-seven thousand six hundred forty-eight' WHERE a=9336;\nUPDATE t2 SET c='fifty-three thousand eight hundred eighty-seven' WHERE a=9337;\nUPDATE t2 SET c='sixty-one thousand nine hundred seventy-three' WHERE a=9338;\nUPDATE t2 SET c='sixty-two thousand four hundred ninety-nine' WHERE a=9339;\nUPDATE t2 SET c='eighty-three thousand one hundred sixty-two' WHERE a=9340;\nUPDATE t2 SET c='fifty-nine thousand eight hundred sixty-four' WHERE a=9341;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty-three' WHERE a=9342;\nUPDATE t2 SET c='seventy-three thousand nine hundred thirty-six' WHERE a=9343;\nUPDATE t2 SET c='ninety-four thousand four hundred forty-nine' WHERE a=9344;\nUPDATE t2 SET c='ninety thousand four hundred forty-four' WHERE a=9345;\nUPDATE t2 SET c='eighty-one thousand three hundred six' WHERE a=9346;\nUPDATE t2 SET c='forty-five thousand two hundred forty-six' WHERE a=9347;\nUPDATE t2 SET c='ninety-three thousand six hundred twenty-three' WHERE a=9348;\nUPDATE t2 SET c='ninety-four thousand ninety' WHERE a=9349;\nUPDATE t2 SET c='ninety-six thousand four hundred fifty-six' WHERE a=9350;\nUPDATE t2 SET c='sixty-nine thousand two hundred eighty-nine' WHERE a=9351;\nUPDATE t2 SET c='thirty-one thousand one hundred two' WHERE a=9352;\nUPDATE t2 SET c='forty-six thousand five hundred fifty-three' WHERE a=9353;\nUPDATE t2 SET c='ninety thousand five hundred eighty-five' WHERE a=9354;\nUPDATE t2 SET c='one hundred fifty-eight' WHERE a=9355;\nUPDATE t2 SET c='twenty-nine thousand nine hundred eleven' WHERE a=9356;\nUPDATE t2 SET c='seventy-seven thousand six hundred twenty-one' WHERE a=9357;\nUPDATE t2 SET c='twenty-four thousand eighty-seven' WHERE a=9358;\nUPDATE t2 SET c='forty-two thousand three hundred thirty' WHERE a=9359;\nUPDATE t2 SET c='eighty thousand eighty-five' WHERE a=9360;\nUPDATE t2 SET c='fifty thousand seven hundred eighty-one' WHERE a=9361;\nUPDATE t2 SET c='thirty-seven thousand four hundred' WHERE a=9362;\nUPDATE t2 SET c='sixty-two thousand one hundred sixty' WHERE a=9363;\nUPDATE t2 SET c='nine hundred fifty-one' WHERE a=9364;\nUPDATE t2 SET c='five hundred twenty-seven' WHERE a=9365;\nUPDATE t2 SET c='ninety-two thousand nine hundred fifteen' WHERE a=9366;\nUPDATE t2 SET c='sixty-six thousand five hundred seventy-seven' WHERE a=9367;\nUPDATE t2 SET c='four thousand eight hundred sixty-five' WHERE a=9368;\nUPDATE t2 SET c='eighty-one thousand six hundred forty-six' WHERE a=9369;\nUPDATE t2 SET c='ninety-six thousand nine hundred six' WHERE a=9370;\nUPDATE t2 SET c='sixty-eight thousand nine hundred seven' WHERE a=9371;\nUPDATE t2 SET c='seventy-five thousand nine hundred eighty-seven' WHERE a=9372;\nUPDATE t2 SET c='ninety-six thousand five hundred eighteen' WHERE a=9373;\nUPDATE t2 SET c='twenty-one thousand two hundred eighty-two' WHERE a=9374;\nUPDATE t2 SET c='fifty-eight thousand two hundred thirty' WHERE a=9375;\nUPDATE t2 SET c='ninety-eight thousand eight hundred seventy-nine' WHERE a=9376;\nUPDATE t2 SET c='fifty-six thousand seven hundred nine' WHERE a=9377;\nUPDATE t2 SET c='forty-three thousand five hundred forty-three' WHERE a=9378;\nUPDATE t2 SET c='fourteen thousand eight hundred eighty' WHERE a=9379;\nUPDATE t2 SET c='eighty-four thousand four hundred sixty' WHERE a=9380;\nUPDATE t2 SET c='forty-four thousand six hundred eleven' WHERE a=9381;\nUPDATE t2 SET c='twenty-one thousand eight hundred forty-eight' WHERE a=9382;\nUPDATE t2 SET c='fifteen thousand two hundred twenty-seven' WHERE a=9383;\nUPDATE t2 SET c='forty-seven thousand nine hundred seventy-one' WHERE a=9384;\nUPDATE t2 SET c='sixty thousand two hundred fifty-three' WHERE a=9385;\nUPDATE t2 SET c='sixty-nine thousand one hundred twenty-five' WHERE a=9386;\nUPDATE t2 SET c='seven thousand seven' WHERE a=9387;\nUPDATE t2 SET c='thirty-seven thousand four hundred seventy-one' WHERE a=9388;\nUPDATE t2 SET c='twenty thousand nine hundred fifty-five' WHERE a=9389;\nUPDATE t2 SET c='fourteen thousand three hundred eighteen' WHERE a=9390;\nUPDATE t2 SET c='ninety-four thousand six hundred fifty-four' WHERE a=9391;\nUPDATE t2 SET c='sixty-three thousand ten' WHERE a=9392;\nUPDATE t2 SET c='sixty-five thousand four hundred eighty-one' WHERE a=9393;\nUPDATE t2 SET c='sixty-five thousand seven hundred ninety-three' WHERE a=9394;\nUPDATE t2 SET c='sixty thousand six hundred fifty-three' WHERE a=9395;\nUPDATE t2 SET c='sixty-six thousand six hundred eleven' WHERE a=9396;\nUPDATE t2 SET c='thirty-five thousand one hundred seventy-eight' WHERE a=9397;\nUPDATE t2 SET c='twelve thousand three hundred eighty-eight' WHERE a=9398;\nUPDATE t2 SET c='eighty-seven thousand eight hundred forty-one' WHERE a=9399;\nUPDATE t2 SET c='forty-nine thousand four hundred seventy-seven' WHERE a=9400;\nUPDATE t2 SET c='eighty thousand one hundred six' WHERE a=9401;\nUPDATE t2 SET c='fifty-five thousand seven hundred sixty-seven' WHERE a=9402;\nUPDATE t2 SET c='forty-four thousand one hundred twenty-seven' WHERE a=9403;\nUPDATE t2 SET c='twenty-five thousand two hundred ninety-one' WHERE a=9404;\nUPDATE t2 SET c='twenty-four thousand three hundred twenty-six' WHERE a=9405;\nUPDATE t2 SET c='eight thousand four hundred seventy-two' WHERE a=9406;\nUPDATE t2 SET c='forty-nine thousand six hundred eighty' WHERE a=9407;\nUPDATE t2 SET c='fifty thousand three hundred seventy-seven' WHERE a=9408;\nUPDATE t2 SET c='nine thousand four hundred seventy-five' WHERE a=9409;\nUPDATE t2 SET c='sixty-nine thousand six hundred ninety-seven' WHERE a=9410;\nUPDATE t2 SET c='fifty-one thousand seven hundred ninety-seven' WHERE a=9411;\nUPDATE t2 SET c='thirteen thousand eight hundred twenty-nine' WHERE a=9412;\nUPDATE t2 SET c='thirty-eight thousand ninety-six' WHERE a=9413;\nUPDATE t2 SET c='twenty-nine thousand ninety-four' WHERE a=9414;\nUPDATE t2 SET c='sixty-three thousand four hundred forty-nine' WHERE a=9415;\nUPDATE t2 SET c='fifty-six thousand five hundred ninety-eight' WHERE a=9416;\nUPDATE t2 SET c='ninety-five thousand four hundred thirty-three' WHERE a=9417;\nUPDATE t2 SET c='thirty-seven thousand nine hundred ninety-four' WHERE a=9418;\nUPDATE t2 SET c='eighty-nine thousand nine hundred thirty-nine' WHERE a=9419;\nUPDATE t2 SET c='thirty-eight thousand seven hundred fifty-one' WHERE a=9420;\nUPDATE t2 SET c='seven hundred fifty-nine' WHERE a=9421;\nUPDATE t2 SET c='ninety-six thousand two hundred thirty-seven' WHERE a=9422;\nUPDATE t2 SET c='eighty-one thousand eighty-two' WHERE a=9423;\nUPDATE t2 SET c='eighteen thousand seven hundred eighty-three' WHERE a=9424;\nUPDATE t2 SET c='twenty-four thousand three hundred thirty-one' WHERE a=9425;\nUPDATE t2 SET c='eighty-seven thousand four hundred sixty' WHERE a=9426;\nUPDATE t2 SET c='eighty-seven thousand eight hundred eighty-six' WHERE a=9427;\nUPDATE t2 SET c='eight thousand one hundred eighty-eight' WHERE a=9428;\nUPDATE t2 SET c='twenty-five thousand six hundred seventy-nine' WHERE a=9429;\nUPDATE t2 SET c='thirty-two thousand five hundred seventy-six' WHERE a=9430;\nUPDATE t2 SET c='ninety-eight thousand six hundred sixty-four' WHERE a=9431;\nUPDATE t2 SET c='sixty thousand two hundred fifty-eight' WHERE a=9432;\nUPDATE t2 SET c='fifty-three thousand eight hundred ninety-six' WHERE a=9433;\nUPDATE t2 SET c='eighty-five thousand seven hundred twelve' WHERE a=9434;\nUPDATE t2 SET c='forty-seven thousand nine hundred seventeen' WHERE a=9435;\nUPDATE t2 SET c='ninety-four thousand two hundred eighty-four' WHERE a=9436;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-two' WHERE a=9437;\nUPDATE t2 SET c='three thousand eight hundred seventy-nine' WHERE a=9438;\nUPDATE t2 SET c='twenty-nine thousand one hundred sixty-eight' WHERE a=9439;\nUPDATE t2 SET c='thirty-four thousand five hundred twenty-five' WHERE a=9440;\nUPDATE t2 SET c='eighteen thousand eight hundred eleven' WHERE a=9441;\nUPDATE t2 SET c='fifteen thousand five hundred eighteen' WHERE a=9442;\nUPDATE t2 SET c='sixty-five thousand five hundred eighty-seven' WHERE a=9443;\nUPDATE t2 SET c='fifty thousand six hundred thirty-one' WHERE a=9444;\nUPDATE t2 SET c='ninety-six thousand one hundred forty' WHERE a=9445;\nUPDATE t2 SET c='seventy-three thousand one hundred forty-five' WHERE a=9446;\nUPDATE t2 SET c='twenty-one thousand six hundred eighty-eight' WHERE a=9447;\nUPDATE t2 SET c='twenty-five thousand five hundred seven' WHERE a=9448;\nUPDATE t2 SET c='sixty-five thousand five hundred twenty' WHERE a=9449;\nUPDATE t2 SET c='sixty-eight thousand six hundred twenty-three' WHERE a=9450;\nUPDATE t2 SET c='seventy-six thousand nine hundred sixteen' WHERE a=9451;\nUPDATE t2 SET c='twenty-seven thousand eight hundred twelve' WHERE a=9452;\nUPDATE t2 SET c='ninety-two thousand five hundred fifty-nine' WHERE a=9453;\nUPDATE t2 SET c='thirty-five thousand two hundred thirty' WHERE a=9454;\nUPDATE t2 SET c='eleven thousand seven hundred seventy-four' WHERE a=9455;\nUPDATE t2 SET c='fourteen thousand six hundred thirty-one' WHERE a=9456;\nUPDATE t2 SET c='ninety-four thousand eight hundred sixty-seven' WHERE a=9457;\nUPDATE t2 SET c='seventy-two thousand one hundred thirty-three' WHERE a=9458;\nUPDATE t2 SET c='seventy-three thousand four hundred twenty-six' WHERE a=9459;\nUPDATE t2 SET c='ninety-two thousand one hundred thirty-four' WHERE a=9460;\nUPDATE t2 SET c='ninety-one thousand seven hundred fifty-seven' WHERE a=9461;\nUPDATE t2 SET c='thirty-nine thousand eight hundred fifty' WHERE a=9462;\nUPDATE t2 SET c='thirty-three thousand seven hundred forty' WHERE a=9463;\nUPDATE t2 SET c='ninety thousand seven hundred eighty' WHERE a=9464;\nUPDATE t2 SET c='ninety-nine thousand two hundred ninety-six' WHERE a=9465;\nUPDATE t2 SET c='eight thousand seven hundred thirty-nine' WHERE a=9466;\nUPDATE t2 SET c='thirty-six thousand four hundred eleven' WHERE a=9467;\nUPDATE t2 SET c='twenty-eight thousand three hundred five' WHERE a=9468;\nUPDATE t2 SET c='sixty-three thousand eight hundred seventy-one' WHERE a=9469;\nUPDATE t2 SET c='one thousand nine hundred seventy-six' WHERE a=9470;\nUPDATE t2 SET c='thirty thousand four hundred twenty-eight' WHERE a=9471;\nUPDATE t2 SET c='seventy-six thousand eight hundred seventy-five' WHERE a=9472;\nUPDATE t2 SET c='seventy-six thousand fifty-four' WHERE a=9473;\nUPDATE t2 SET c='sixty-nine thousand seven hundred seventy-one' WHERE a=9474;\nUPDATE t2 SET c='ninety-four thousand forty-eight' WHERE a=9475;\nUPDATE t2 SET c='thirty-five thousand seven hundred eighty-two' WHERE a=9476;\nUPDATE t2 SET c='two thousand six hundred forty' WHERE a=9477;\nUPDATE t2 SET c='sixty-eight thousand five hundred one' WHERE a=9478;\nUPDATE t2 SET c='eighty-six thousand nine hundred thirteen' WHERE a=9479;\nUPDATE t2 SET c='eighty-five thousand seventy-one' WHERE a=9480;\nUPDATE t2 SET c='seventy-seven thousand five hundred fifty-nine' WHERE a=9481;\nUPDATE t2 SET c='fifty thousand eight hundred fifty-six' WHERE a=9482;\nUPDATE t2 SET c='five thousand five hundred seventy-nine' WHERE a=9483;\nUPDATE t2 SET c='forty-four thousand four hundred forty-nine' WHERE a=9484;\nUPDATE t2 SET c='eight thousand four hundred thirty-eight' WHERE a=9485;\nUPDATE t2 SET c='ninety-two thousand three hundred seventy-four' WHERE a=9486;\nUPDATE t2 SET c='twenty-two thousand five hundred eighty-three' WHERE a=9487;\nUPDATE t2 SET c='thirty thousand four hundred eighty-nine' WHERE a=9488;\nUPDATE t2 SET c='eighty-three thousand five hundred ninety-eight' WHERE a=9489;\nUPDATE t2 SET c='ninety-four thousand four hundred fifty-six' WHERE a=9490;\nUPDATE t2 SET c='sixteen thousand nine hundred eighty-one' WHERE a=9491;\nUPDATE t2 SET c='twenty-nine thousand one hundred eighty-four' WHERE a=9492;\nUPDATE t2 SET c='eighty-five thousand one hundred eight' WHERE a=9493;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ninety-two' WHERE a=9494;\nUPDATE t2 SET c='seventy-nine thousand two hundred thirty-six' WHERE a=9495;\nUPDATE t2 SET c='ninety-two thousand six hundred forty-one' WHERE a=9496;\nUPDATE t2 SET c='ninety-nine thousand one hundred ninety-three' WHERE a=9497;\nUPDATE t2 SET c='ninety-one thousand four hundred seventy-four' WHERE a=9498;\nUPDATE t2 SET c='sixty-one thousand one hundred eighty-five' WHERE a=9499;\nUPDATE t2 SET c='fifty-two thousand fifteen' WHERE a=9500;\nUPDATE t2 SET c='twenty-six thousand eight hundred thirty-three' WHERE a=9501;\nUPDATE t2 SET c='ninety-four thousand six hundred seventy-six' WHERE a=9502;\nUPDATE t2 SET c='seven thousand nine hundred fifty-nine' WHERE a=9503;\nUPDATE t2 SET c='thirty-four thousand eighty-four' WHERE a=9504;\nUPDATE t2 SET c='forty thousand seven hundred fifty-seven' WHERE a=9505;\nUPDATE t2 SET c='fifty-one thousand six hundred twenty-seven' WHERE a=9506;\nUPDATE t2 SET c='two hundred forty-eight' WHERE a=9507;\nUPDATE t2 SET c='twenty-four thousand six hundred eighty-six' WHERE a=9508;\nUPDATE t2 SET c='seventy-five thousand four hundred sixteen' WHERE a=9509;\nUPDATE t2 SET c='eighty thousand ninety-six' WHERE a=9510;\nUPDATE t2 SET c='two hundred thirty-three' WHERE a=9511;\nUPDATE t2 SET c='forty-six thousand six hundred seventy-one' WHERE a=9512;\nUPDATE t2 SET c='fifty-two thousand nine hundred thirteen' WHERE a=9513;\nUPDATE t2 SET c='eight thousand five hundred thirty' WHERE a=9514;\nUPDATE t2 SET c='thirty-four thousand nine hundred seventy-one' WHERE a=9515;\nUPDATE t2 SET c='ninety-five thousand two hundred eight' WHERE a=9516;\nUPDATE t2 SET c='one thousand twenty-six' WHERE a=9517;\nUPDATE t2 SET c='forty-nine thousand two hundred sixty-five' WHERE a=9518;\nUPDATE t2 SET c='eighty thousand twenty-four' WHERE a=9519;\nUPDATE t2 SET c='nine thousand eighty-four' WHERE a=9520;\nUPDATE t2 SET c='sixty-nine thousand six hundred ninety-nine' WHERE a=9521;\nUPDATE t2 SET c='fifty-one thousand four hundred eight' WHERE a=9522;\nUPDATE t2 SET c='thirty-six thousand nine hundred ninety' WHERE a=9523;\nUPDATE t2 SET c='forty-nine thousand one hundred eighty-two' WHERE a=9524;\nUPDATE t2 SET c='eleven thousand nine hundred thirty-two' WHERE a=9525;\nUPDATE t2 SET c='sixty-two thousand ninety-two' WHERE a=9526;\nUPDATE t2 SET c='twenty-nine thousand sixty-three' WHERE a=9527;\nUPDATE t2 SET c='eighty-seven thousand three hundred twenty-six' WHERE a=9528;\nUPDATE t2 SET c='thirty-one thousand eight hundred seventy' WHERE a=9529;\nUPDATE t2 SET c='forty-six thousand nine hundred fifteen' WHERE a=9530;\nUPDATE t2 SET c='one thousand six hundred ninety-one' WHERE a=9531;\nUPDATE t2 SET c='sixty-five thousand nine hundred twenty-five' WHERE a=9532;\nUPDATE t2 SET c='thirty thousand four hundred fifteen' WHERE a=9533;\nUPDATE t2 SET c='fifty-seven thousand two hundred ninety-two' WHERE a=9534;\nUPDATE t2 SET c='sixty-four thousand seven hundred ten' WHERE a=9535;\nUPDATE t2 SET c='twenty-five thousand ninety-nine' WHERE a=9536;\nUPDATE t2 SET c='sixty-five thousand one hundred thirty-seven' WHERE a=9537;\nUPDATE t2 SET c='forty-one thousand three hundred one' WHERE a=9538;\nUPDATE t2 SET c='fourteen thousand three hundred twenty-six' WHERE a=9539;\nUPDATE t2 SET c='sixty-five thousand six hundred thirty-three' WHERE a=9540;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty-five' WHERE a=9541;\nUPDATE t2 SET c='six thousand seven hundred seventeen' WHERE a=9542;\nUPDATE t2 SET c='sixty-nine thousand eight hundred thirty-two' WHERE a=9543;\nUPDATE t2 SET c='four thousand one hundred forty' WHERE a=9544;\nUPDATE t2 SET c='ninety thousand sixty-seven' WHERE a=9545;\nUPDATE t2 SET c='sixty-four thousand nine hundred seven' WHERE a=9546;\nUPDATE t2 SET c='six thousand nine hundred sixty-eight' WHERE a=9547;\nUPDATE t2 SET c='twenty-one thousand sixty-four' WHERE a=9548;\nUPDATE t2 SET c='thirteen thousand six hundred twenty-eight' WHERE a=9549;\nUPDATE t2 SET c='forty-five thousand two hundred thirty-nine' WHERE a=9550;\nUPDATE t2 SET c='ninety-three thousand nine hundred sixty-two' WHERE a=9551;\nUPDATE t2 SET c='thirty thousand three hundred twenty-one' WHERE a=9552;\nUPDATE t2 SET c='thirty-two thousand seven hundred sixty-nine' WHERE a=9553;\nUPDATE t2 SET c='fifty thousand two hundred fifteen' WHERE a=9554;\nUPDATE t2 SET c='eighty-two thousand four hundred sixty-one' WHERE a=9555;\nUPDATE t2 SET c='twenty-eight thousand eight hundred seventy-three' WHERE a=9556;\nUPDATE t2 SET c='forty-five thousand seven hundred five' WHERE a=9557;\nUPDATE t2 SET c='eighty-nine thousand six hundred eighty-two' WHERE a=9558;\nUPDATE t2 SET c='eighty thousand six hundred ninety-four' WHERE a=9559;\nUPDATE t2 SET c='forty thousand seventy' WHERE a=9560;\nUPDATE t2 SET c='eighty-two thousand four hundred eighty' WHERE a=9561;\nUPDATE t2 SET c='sixty-two thousand two hundred thirty-six' WHERE a=9562;\nUPDATE t2 SET c='seventy-six thousand eight hundred twenty-three' WHERE a=9563;\nUPDATE t2 SET c='twenty-three thousand three hundred nineteen' WHERE a=9564;\nUPDATE t2 SET c='fifty-six thousand two hundred fifteen' WHERE a=9565;\nUPDATE t2 SET c='eighty-two thousand eight hundred seventy-six' WHERE a=9566;\nUPDATE t2 SET c='sixty-two thousand five hundred eighty-four' WHERE a=9567;\nUPDATE t2 SET c='eighty-five thousand sixty-four' WHERE a=9568;\nUPDATE t2 SET c='thirty-two thousand eight hundred seventy-four' WHERE a=9569;\nUPDATE t2 SET c='fifty-seven thousand forty-one' WHERE a=9570;\nUPDATE t2 SET c='sixty-two thousand seven hundred twenty-four' WHERE a=9571;\nUPDATE t2 SET c='sixty-six thousand nine hundred sixteen' WHERE a=9572;\nUPDATE t2 SET c='one thousand three hundred twenty-six' WHERE a=9573;\nUPDATE t2 SET c='eighty-three thousand one hundred forty-six' WHERE a=9574;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty-five' WHERE a=9575;\nUPDATE t2 SET c='thirty-four thousand eight hundred fifty-two' WHERE a=9576;\nUPDATE t2 SET c='eighty-six thousand four hundred three' WHERE a=9577;\nUPDATE t2 SET c='fifty-three thousand seven hundred sixteen' WHERE a=9578;\nUPDATE t2 SET c='ninety-three thousand five hundred fifty-three' WHERE a=9579;\nUPDATE t2 SET c='sixty-nine thousand four hundred ninety-two' WHERE a=9580;\nUPDATE t2 SET c='fifty-eight thousand eight hundred thirty-seven' WHERE a=9581;\nUPDATE t2 SET c='thirty-four thousand nine hundred seventy-six' WHERE a=9582;\nUPDATE t2 SET c='sixty-seven thousand five hundred sixty-six' WHERE a=9583;\nUPDATE t2 SET c='eighty-six thousand nine hundred eighty-four' WHERE a=9584;\nUPDATE t2 SET c='ninety-two thousand two hundred seventy-eight' WHERE a=9585;\nUPDATE t2 SET c='thirty-five thousand two hundred fifty-nine' WHERE a=9586;\nUPDATE t2 SET c='forty-six thousand five hundred seventy-two' WHERE a=9587;\nUPDATE t2 SET c='ninety-eight thousand eight hundred eighty-four' WHERE a=9588;\nUPDATE t2 SET c='eighteen thousand three hundred ninety' WHERE a=9589;\nUPDATE t2 SET c='twenty-two thousand eight hundred fifty' WHERE a=9590;\nUPDATE t2 SET c='thirty-two thousand four hundred sixty-one' WHERE a=9591;\nUPDATE t2 SET c='thirty-eight thousand eight hundred thirty-five' WHERE a=9592;\nUPDATE t2 SET c='twenty-seven thousand six hundred thirty-three' WHERE a=9593;\nUPDATE t2 SET c='seventy-three thousand three hundred eighty-four' WHERE a=9594;\nUPDATE t2 SET c='thirty-four thousand six hundred sixty-four' WHERE a=9595;\nUPDATE t2 SET c='ninety-five thousand five hundred twenty-seven' WHERE a=9596;\nUPDATE t2 SET c='twenty-seven thousand three hundred one' WHERE a=9597;\nUPDATE t2 SET c='ninety-six thousand four hundred' WHERE a=9598;\nUPDATE t2 SET c='seventy-eight thousand eight hundred forty-nine' WHERE a=9599;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-one' WHERE a=9600;\nUPDATE t2 SET c='eighty-six thousand five hundred ninety-seven' WHERE a=9601;\nUPDATE t2 SET c='seventy-six thousand five hundred fifty' WHERE a=9602;\nUPDATE t2 SET c='ten thousand seven hundred thirty-five' WHERE a=9603;\nUPDATE t2 SET c='twenty-three thousand nine hundred twenty-five' WHERE a=9604;\nUPDATE t2 SET c='thirty-nine thousand one hundred forty-three' WHERE a=9605;\nUPDATE t2 SET c='eighteen thousand nine hundred forty-two' WHERE a=9606;\nUPDATE t2 SET c='eleven thousand eight hundred seventy-seven' WHERE a=9607;\nUPDATE t2 SET c='twenty-nine thousand one hundred seventy' WHERE a=9608;\nUPDATE t2 SET c='ten thousand two hundred eighty-eight' WHERE a=9609;\nUPDATE t2 SET c='six thousand four hundred nine' WHERE a=9610;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixty-eight' WHERE a=9611;\nUPDATE t2 SET c='thirty-six thousand eight hundred ninety-nine' WHERE a=9612;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirty-two' WHERE a=9613;\nUPDATE t2 SET c='eighty-six thousand nine hundred fifty-six' WHERE a=9614;\nUPDATE t2 SET c='fifty-four thousand fourteen' WHERE a=9615;\nUPDATE t2 SET c='eighty-six thousand seven hundred sixty-nine' WHERE a=9616;\nUPDATE t2 SET c='twenty-nine thousand two hundred eighty-three' WHERE a=9617;\nUPDATE t2 SET c='sixty-eight thousand six hundred twenty' WHERE a=9618;\nUPDATE t2 SET c='eight thousand four hundred nine' WHERE a=9619;\nUPDATE t2 SET c='seventy-seven thousand seven hundred fifty' WHERE a=9620;\nUPDATE t2 SET c='twenty-four thousand seven hundred twenty-seven' WHERE a=9621;\nUPDATE t2 SET c='twenty-three thousand nine hundred sixty-seven' WHERE a=9622;\nUPDATE t2 SET c='forty-five thousand seven hundred fifty-two' WHERE a=9623;\nUPDATE t2 SET c='three thousand one hundred sixty-nine' WHERE a=9624;\nUPDATE t2 SET c='seventy-nine thousand five hundred twelve' WHERE a=9625;\nUPDATE t2 SET c='twenty-nine thousand one hundred' WHERE a=9626;\nUPDATE t2 SET c='sixty thousand seven hundred twenty-eight' WHERE a=9627;\nUPDATE t2 SET c='eighty-six thousand five hundred fifty-four' WHERE a=9628;\nUPDATE t2 SET c='seventeen thousand eight hundred eighty-eight' WHERE a=9629;\nUPDATE t2 SET c='fifty-four thousand eight hundred ninety-three' WHERE a=9630;\nUPDATE t2 SET c='ninety-three thousand four hundred twenty-five' WHERE a=9631;\nUPDATE t2 SET c='twenty thousand five hundred sixty-six' WHERE a=9632;\nUPDATE t2 SET c='thirty-one thousand one hundred four' WHERE a=9633;\nUPDATE t2 SET c='twenty thousand one hundred eighty' WHERE a=9634;\nUPDATE t2 SET c='eighty-eight thousand seven hundred twenty-two' WHERE a=9635;\nUPDATE t2 SET c='seven thousand three hundred twenty-five' WHERE a=9636;\nUPDATE t2 SET c='seventy-four thousand five hundred forty-seven' WHERE a=9637;\nUPDATE t2 SET c='eighty-nine thousand three hundred thirteen' WHERE a=9638;\nUPDATE t2 SET c='sixty-one thousand seven hundred two' WHERE a=9639;\nUPDATE t2 SET c='ninety-two thousand six hundred sixty-one' WHERE a=9640;\nUPDATE t2 SET c='fifty-six thousand sixty-four' WHERE a=9641;\nUPDATE t2 SET c='four thousand one hundred fifty-five' WHERE a=9642;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-four' WHERE a=9643;\nUPDATE t2 SET c='forty-five thousand two hundred seventy-seven' WHERE a=9644;\nUPDATE t2 SET c='forty-two thousand four hundred fifty-three' WHERE a=9645;\nUPDATE t2 SET c='fifty-three thousand seven hundred twenty-six' WHERE a=9646;\nUPDATE t2 SET c='twenty-four thousand nine hundred thirty-seven' WHERE a=9647;\nUPDATE t2 SET c='forty-four thousand two hundred twenty' WHERE a=9648;\nUPDATE t2 SET c='forty-seven thousand fifteen' WHERE a=9649;\nUPDATE t2 SET c='thirty thousand four hundred seventy' WHERE a=9650;\nUPDATE t2 SET c='two thousand one hundred fifty-three' WHERE a=9651;\nUPDATE t2 SET c='thirty-eight thousand forty-four' WHERE a=9652;\nUPDATE t2 SET c='seventy thousand five hundred twenty-four' WHERE a=9653;\nUPDATE t2 SET c='sixty-three thousand eight hundred fifty-one' WHERE a=9654;\nUPDATE t2 SET c='seventy-four thousand fifty-three' WHERE a=9655;\nUPDATE t2 SET c='thirty-five thousand seventy-six' WHERE a=9656;\nUPDATE t2 SET c='forty-seven' WHERE a=9657;\nUPDATE t2 SET c='thirty-seven thousand four hundred sixty-four' WHERE a=9658;\nUPDATE t2 SET c='sixty-eight thousand eight hundred seventy-eight' WHERE a=9659;\nUPDATE t2 SET c='seventy-five thousand nine hundred fifty-four' WHERE a=9660;\nUPDATE t2 SET c='forty-five thousand one hundred eighty-nine' WHERE a=9661;\nUPDATE t2 SET c='four thousand seventy-three' WHERE a=9662;\nUPDATE t2 SET c='five thousand nine hundred eighty-two' WHERE a=9663;\nUPDATE t2 SET c='twenty-three thousand eight hundred fifty-nine' WHERE a=9664;\nUPDATE t2 SET c='ninety-one thousand one hundred sixty-eight' WHERE a=9665;\nUPDATE t2 SET c='twenty thousand four hundred thirty-two' WHERE a=9666;\nUPDATE t2 SET c='twenty thousand five hundred seven' WHERE a=9667;\nUPDATE t2 SET c='fifty-one thousand three hundred fifty-five' WHERE a=9668;\nUPDATE t2 SET c='twenty-seven thousand eight hundred sixty-one' WHERE a=9669;\nUPDATE t2 SET c='twenty-nine thousand seven hundred sixty-three' WHERE a=9670;\nUPDATE t2 SET c='forty-eight thousand four hundred twenty-six' WHERE a=9671;\nUPDATE t2 SET c='seventy-one thousand one hundred thirty-two' WHERE a=9672;\nUPDATE t2 SET c='seventy-five thousand one hundred sixty-seven' WHERE a=9673;\nUPDATE t2 SET c='eighty-two thousand seven hundred thirteen' WHERE a=9674;\nUPDATE t2 SET c='thirty-five thousand four hundred eighty' WHERE a=9675;\nUPDATE t2 SET c='five thousand four hundred three' WHERE a=9676;\nUPDATE t2 SET c='fifty-five thousand seven hundred thirty' WHERE a=9677;\nUPDATE t2 SET c='ninety-five thousand ninety-six' WHERE a=9678;\nUPDATE t2 SET c='four hundred sixty-nine' WHERE a=9679;\nUPDATE t2 SET c='nineteen thousand one hundred ninety-four' WHERE a=9680;\nUPDATE t2 SET c='eighty-one thousand three hundred thirty-eight' WHERE a=9681;\nUPDATE t2 SET c='twenty-five thousand one hundred seventy-nine' WHERE a=9682;\nUPDATE t2 SET c='thirty-two thousand seventy-three' WHERE a=9683;\nUPDATE t2 SET c='sixty-four thousand one hundred sixteen' WHERE a=9684;\nUPDATE t2 SET c='thirty-six thousand nine hundred eight' WHERE a=9685;\nUPDATE t2 SET c='seventy-nine thousand eight hundred thirteen' WHERE a=9686;\nUPDATE t2 SET c='ninety-nine thousand seventy' WHERE a=9687;\nUPDATE t2 SET c='three thousand eight hundred eighty-nine' WHERE a=9688;\nUPDATE t2 SET c='twenty-two thousand six hundred eight' WHERE a=9689;\nUPDATE t2 SET c='seventy thousand forty-six' WHERE a=9690;\nUPDATE t2 SET c='eighty-five thousand six hundred fourteen' WHERE a=9691;\nUPDATE t2 SET c='twenty-nine thousand five hundred fifteen' WHERE a=9692;\nUPDATE t2 SET c='thirty-two thousand three hundred ninety-eight' WHERE a=9693;\nUPDATE t2 SET c='ten thousand one hundred ninety-nine' WHERE a=9694;\nUPDATE t2 SET c='eighty-eight thousand eight hundred fifty-two' WHERE a=9695;\nUPDATE t2 SET c='forty-one thousand two hundred seventy-seven' WHERE a=9696;\nUPDATE t2 SET c='thirty-six thousand six hundred fourteen' WHERE a=9697;\nUPDATE t2 SET c='fifty-three thousand five hundred thirty-one' WHERE a=9698;\nUPDATE t2 SET c='sixty-six thousand two hundred sixty' WHERE a=9699;\nUPDATE t2 SET c='twelve thousand seven hundred ninety-eight' WHERE a=9700;\nUPDATE t2 SET c='thirty-six thousand ninety-nine' WHERE a=9701;\nUPDATE t2 SET c='forty-four thousand five hundred eighty-six' WHERE a=9702;\nUPDATE t2 SET c='fifty-eight thousand five hundred thirty-five' WHERE a=9703;\nUPDATE t2 SET c='twenty-one thousand nine hundred twenty-four' WHERE a=9704;\nUPDATE t2 SET c='eighty-six thousand six hundred ninety-seven' WHERE a=9705;\nUPDATE t2 SET c='eighty-seven thousand two hundred thirty-seven' WHERE a=9706;\nUPDATE t2 SET c='fifty-eight thousand seven hundred forty-eight' WHERE a=9707;\nUPDATE t2 SET c='fourteen thousand four hundred thirty' WHERE a=9708;\nUPDATE t2 SET c='thirty-five thousand five hundred sixty-two' WHERE a=9709;\nUPDATE t2 SET c='sixty-five thousand four hundred fifty' WHERE a=9710;\nUPDATE t2 SET c='sixty-four thousand three hundred seventy-two' WHERE a=9711;\nUPDATE t2 SET c='twenty-one thousand eight hundred seventy-nine' WHERE a=9712;\nUPDATE t2 SET c='ninety-four thousand eight hundred eight' WHERE a=9713;\nUPDATE t2 SET c='fifty-five thousand seven hundred thirty-three' WHERE a=9714;\nUPDATE t2 SET c='fifty-seven thousand seven hundred thirty-one' WHERE a=9715;\nUPDATE t2 SET c='one thousand six hundred thirty-six' WHERE a=9716;\nUPDATE t2 SET c='eighty-two thousand two hundred seventy-eight' WHERE a=9717;\nUPDATE t2 SET c='sixty-six thousand two hundred forty-one' WHERE a=9718;\nUPDATE t2 SET c='eighty-seven thousand six hundred twenty' WHERE a=9719;\nUPDATE t2 SET c='seven hundred ninety-two' WHERE a=9720;\nUPDATE t2 SET c='thirty-one thousand three hundred ten' WHERE a=9721;\nUPDATE t2 SET c='ninety-one thousand two hundred sixty-two' WHERE a=9722;\nUPDATE t2 SET c='thirty-four thousand six hundred twenty-eight' WHERE a=9723;\nUPDATE t2 SET c='seventy-four thousand seven hundred fifty-one' WHERE a=9724;\nUPDATE t2 SET c='twenty-five thousand two hundred nineteen' WHERE a=9725;\nUPDATE t2 SET c='seventy-three thousand three hundred ninety-two' WHERE a=9726;\nUPDATE t2 SET c='sixty-one thousand seven hundred forty-five' WHERE a=9727;\nUPDATE t2 SET c='sixty-four thousand one hundred two' WHERE a=9728;\nUPDATE t2 SET c='fourteen thousand five hundred ninety-two' WHERE a=9729;\nUPDATE t2 SET c='twenty-four thousand three hundred thirty-two' WHERE a=9730;\nUPDATE t2 SET c='eighty-seven thousand six hundred ninety-seven' WHERE a=9731;\nUPDATE t2 SET c='eighty-six thousand seven hundred seventy-one' WHERE a=9732;\nUPDATE t2 SET c='nine thousand eight hundred four' WHERE a=9733;\nUPDATE t2 SET c='forty thousand seven hundred fifty-nine' WHERE a=9734;\nUPDATE t2 SET c='eighty-nine thousand three hundred seventy-eight' WHERE a=9735;\nUPDATE t2 SET c='forty-one thousand four hundred forty' WHERE a=9736;\nUPDATE t2 SET c='thirty-four thousand nine hundred fifty' WHERE a=9737;\nUPDATE t2 SET c='seventy-three thousand two hundred sixty-eight' WHERE a=9738;\nUPDATE t2 SET c='eighty-seven thousand seven hundred forty-five' WHERE a=9739;\nUPDATE t2 SET c='ninety-six thousand two hundred six' WHERE a=9740;\nUPDATE t2 SET c='ninety-eight thousand five hundred four' WHERE a=9741;\nUPDATE t2 SET c='seven thousand five hundred fifty-nine' WHERE a=9742;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seventy-seven' WHERE a=9743;\nUPDATE t2 SET c='fifty-two thousand nine hundred forty-three' WHERE a=9744;\nUPDATE t2 SET c='seventy-two thousand one hundred fifty-two' WHERE a=9745;\nUPDATE t2 SET c='sixty thousand six hundred seven' WHERE a=9746;\nUPDATE t2 SET c='thirty-nine thousand one hundred ninety-two' WHERE a=9747;\nUPDATE t2 SET c='fifteen thousand seven hundred fifty-nine' WHERE a=9748;\nUPDATE t2 SET c='eleven thousand eight hundred thirty-seven' WHERE a=9749;\nUPDATE t2 SET c='sixteen thousand one hundred thirty-nine' WHERE a=9750;\nUPDATE t2 SET c='forty-seven thousand three hundred eighty' WHERE a=9751;\nUPDATE t2 SET c='ninety-six thousand six hundred' WHERE a=9752;\nUPDATE t2 SET c='seventy-three thousand' WHERE a=9753;\nUPDATE t2 SET c='twenty-three thousand fourteen' WHERE a=9754;\nUPDATE t2 SET c='ten thousand eight hundred twenty-three' WHERE a=9755;\nUPDATE t2 SET c='eleven thousand five hundred ninety-nine' WHERE a=9756;\nUPDATE t2 SET c='eighty-nine thousand three hundred eighty-seven' WHERE a=9757;\nUPDATE t2 SET c='ninety thousand three hundred ninety' WHERE a=9758;\nUPDATE t2 SET c='fifty-four thousand three hundred sixty-eight' WHERE a=9759;\nUPDATE t2 SET c='nine thousand six hundred ninety-two' WHERE a=9760;\nUPDATE t2 SET c='forty thousand three hundred eighty-seven' WHERE a=9761;\nUPDATE t2 SET c='seventy-five thousand seven hundred ninety-nine' WHERE a=9762;\nUPDATE t2 SET c='eight thousand five hundred sixty-two' WHERE a=9763;\nUPDATE t2 SET c='sixty-seven thousand seven hundred thirty-three' WHERE a=9764;\nUPDATE t2 SET c='seventeen thousand one hundred twenty-nine' WHERE a=9765;\nUPDATE t2 SET c='twenty-four thousand nine hundred ninety-six' WHERE a=9766;\nUPDATE t2 SET c='twenty thousand two hundred sixty' WHERE a=9767;\nUPDATE t2 SET c='nineteen thousand seven hundred sixty-six' WHERE a=9768;\nUPDATE t2 SET c='thirty-five thousand six hundred sixty-nine' WHERE a=9769;\nUPDATE t2 SET c='forty-eight thousand eighty-seven' WHERE a=9770;\nUPDATE t2 SET c='fourteen thousand six hundred ninety-one' WHERE a=9771;\nUPDATE t2 SET c='nineteen thousand one hundred twenty' WHERE a=9772;\nUPDATE t2 SET c='eighty-nine thousand nine hundred eighty-seven' WHERE a=9773;\nUPDATE t2 SET c='ninety-two thousand two hundred thirty' WHERE a=9774;\nUPDATE t2 SET c='thirty-seven thousand one hundred forty' WHERE a=9775;\nUPDATE t2 SET c='sixty-four thousand four hundred seventy-two' WHERE a=9776;\nUPDATE t2 SET c='sixty thousand five hundred thirty-six' WHERE a=9777;\nUPDATE t2 SET c='seventy-three thousand one hundred thirty-eight' WHERE a=9778;\nUPDATE t2 SET c='sixty thousand four hundred four' WHERE a=9779;\nUPDATE t2 SET c='seventy thousand four hundred fifty-nine' WHERE a=9780;\nUPDATE t2 SET c='sixty-eight thousand two hundred ninety-two' WHERE a=9781;\nUPDATE t2 SET c='nineteen thousand two hundred twenty-four' WHERE a=9782;\nUPDATE t2 SET c='sixty-three thousand eight hundred sixty-four' WHERE a=9783;\nUPDATE t2 SET c='sixty-four thousand three' WHERE a=9784;\nUPDATE t2 SET c='twenty-nine thousand eight hundred thirty-eight' WHERE a=9785;\nUPDATE t2 SET c='eighty thousand three hundred three' WHERE a=9786;\nUPDATE t2 SET c='four thousand seven hundred ninety-three' WHERE a=9787;\nUPDATE t2 SET c='twenty-three thousand four hundred ninety-six' WHERE a=9788;\nUPDATE t2 SET c='ninety-two thousand thirteen' WHERE a=9789;\nUPDATE t2 SET c='twenty-two thousand seventy-two' WHERE a=9790;\nUPDATE t2 SET c='eight thousand eight hundred thirty' WHERE a=9791;\nUPDATE t2 SET c='forty-three thousand one hundred seventy-nine' WHERE a=9792;\nUPDATE t2 SET c='ninety-seven thousand sixty-three' WHERE a=9793;\nUPDATE t2 SET c='fifty-eight thousand eight hundred fifty-seven' WHERE a=9794;\nUPDATE t2 SET c='thirteen thousand one hundred forty-six' WHERE a=9795;\nUPDATE t2 SET c='twenty-nine thousand five hundred forty' WHERE a=9796;\nUPDATE t2 SET c='ninety-nine thousand two hundred fifty-three' WHERE a=9797;\nUPDATE t2 SET c='forty-three thousand one hundred sixty-seven' WHERE a=9798;\nUPDATE t2 SET c='sixty-nine thousand eight hundred thirty-two' WHERE a=9799;\nUPDATE t2 SET c='thirty-two thousand two hundred fifty-three' WHERE a=9800;\nUPDATE t2 SET c='fifty-one thousand one hundred forty-seven' WHERE a=9801;\nUPDATE t2 SET c='nine thousand seventy-four' WHERE a=9802;\nUPDATE t2 SET c='forty-seven thousand eight hundred five' WHERE a=9803;\nUPDATE t2 SET c='thirty-eight thousand nine hundred seventy-five' WHERE a=9804;\nUPDATE t2 SET c='fourteen thousand three hundred six' WHERE a=9805;\nUPDATE t2 SET c='twenty-four thousand eighty-eight' WHERE a=9806;\nUPDATE t2 SET c='ninety-two thousand eight hundred forty-four' WHERE a=9807;\nUPDATE t2 SET c='five hundred twelve' WHERE a=9808;\nUPDATE t2 SET c='eighty-two thousand eighty-three' WHERE a=9809;\nUPDATE t2 SET c='forty-five thousand two hundred twenty-two' WHERE a=9810;\nUPDATE t2 SET c='thirty-seven thousand eight hundred ninety' WHERE a=9811;\nUPDATE t2 SET c='ten thousand three hundred forty-nine' WHERE a=9812;\nUPDATE t2 SET c='twenty-four thousand five hundred seventeen' WHERE a=9813;\nUPDATE t2 SET c='fifteen thousand eight hundred sixty-two' WHERE a=9814;\nUPDATE t2 SET c='six thousand five hundred two' WHERE a=9815;\nUPDATE t2 SET c='ninety-nine thousand eight hundred sixty-seven' WHERE a=9816;\nUPDATE t2 SET c='thirty-six thousand seven hundred sixty' WHERE a=9817;\nUPDATE t2 SET c='eight thousand seventy' WHERE a=9818;\nUPDATE t2 SET c='eighty-one thousand seven hundred fifty-nine' WHERE a=9819;\nUPDATE t2 SET c='forty-five thousand five hundred forty-two' WHERE a=9820;\nUPDATE t2 SET c='thirty-eight thousand four hundred nine' WHERE a=9821;\nUPDATE t2 SET c='thirty-one thousand seven hundred fourteen' WHERE a=9822;\nUPDATE t2 SET c='twelve thousand eight hundred eighty-two' WHERE a=9823;\nUPDATE t2 SET c='four thousand one hundred eighty-six' WHERE a=9824;\nUPDATE t2 SET c='eighteen thousand nine hundred ninety-seven' WHERE a=9825;\nUPDATE t2 SET c='eighty-one thousand nine hundred ninety' WHERE a=9826;\nUPDATE t2 SET c='sixteen thousand nine hundred forty-one' WHERE a=9827;\nUPDATE t2 SET c='twenty-seven thousand four hundred fifty-one' WHERE a=9828;\nUPDATE t2 SET c='forty-three thousand one hundred forty-six' WHERE a=9829;\nUPDATE t2 SET c='ninety thousand six hundred forty-one' WHERE a=9830;\nUPDATE t2 SET c='fifty thousand two hundred fifty' WHERE a=9831;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventeen' WHERE a=9832;\nUPDATE t2 SET c='sixty-five thousand seven hundred eighteen' WHERE a=9833;\nUPDATE t2 SET c='seventy-seven thousand eighty-two' WHERE a=9834;\nUPDATE t2 SET c='eighty thousand three hundred thirteen' WHERE a=9835;\nUPDATE t2 SET c='eighty thousand two hundred eighty-eight' WHERE a=9836;\nUPDATE t2 SET c='twenty-six thousand seven hundred thirteen' WHERE a=9837;\nUPDATE t2 SET c='sixty-nine thousand eight hundred eighty-eight' WHERE a=9838;\nUPDATE t2 SET c='twenty thousand two hundred ten' WHERE a=9839;\nUPDATE t2 SET c='nineteen thousand seven hundred twenty-six' WHERE a=9840;\nUPDATE t2 SET c='eighty-five thousand six hundred thirty-three' WHERE a=9841;\nUPDATE t2 SET c='four thousand six hundred eighteen' WHERE a=9842;\nUPDATE t2 SET c='fifty-eight thousand three hundred eighteen' WHERE a=9843;\nUPDATE t2 SET c='twenty-one thousand four hundred fifty-three' WHERE a=9844;\nUPDATE t2 SET c='ninety-one thousand four hundred thirty-six' WHERE a=9845;\nUPDATE t2 SET c='thirteen thousand thirty-seven' WHERE a=9846;\nUPDATE t2 SET c='seven thousand three hundred eight' WHERE a=9847;\nUPDATE t2 SET c='ninety-two thousand four hundred fifty' WHERE a=9848;\nUPDATE t2 SET c='thirty-five thousand three hundred nine' WHERE a=9849;\nUPDATE t2 SET c='three thousand three hundred seventy-nine' WHERE a=9850;\nUPDATE t2 SET c='seventy-six thousand four' WHERE a=9851;\nUPDATE t2 SET c='eighty-two thousand nine hundred fifty-eight' WHERE a=9852;\nUPDATE t2 SET c='twenty-three thousand eight hundred nineteen' WHERE a=9853;\nUPDATE t2 SET c='thirty-two thousand three' WHERE a=9854;\nUPDATE t2 SET c='seventy-two thousand eight hundred thirty-five' WHERE a=9855;\nUPDATE t2 SET c='eighty thousand nine hundred six' WHERE a=9856;\nUPDATE t2 SET c='ninety-two thousand six hundred fifty-three' WHERE a=9857;\nUPDATE t2 SET c='thirty-one thousand one hundred sixteen' WHERE a=9858;\nUPDATE t2 SET c='fifty-one thousand two hundred eighteen' WHERE a=9859;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifteen' WHERE a=9860;\nUPDATE t2 SET c='eighty-five thousand five hundred eighty-five' WHERE a=9861;\nUPDATE t2 SET c='fifty-seven thousand five hundred ninety-five' WHERE a=9862;\nUPDATE t2 SET c='sixty-two thousand three hundred' WHERE a=9863;\nUPDATE t2 SET c='seventy-three thousand eighty-one' WHERE a=9864;\nUPDATE t2 SET c='twenty thousand four hundred forty-two' WHERE a=9865;\nUPDATE t2 SET c='fifty-eight thousand nine hundred twenty' WHERE a=9866;\nUPDATE t2 SET c='fourteen thousand nine hundred eighty-four' WHERE a=9867;\nUPDATE t2 SET c='eighty-four thousand two hundred seventy-two' WHERE a=9868;\nUPDATE t2 SET c='sixty-six thousand one hundred thirty-one' WHERE a=9869;\nUPDATE t2 SET c='seventy-three thousand six hundred nine' WHERE a=9870;\nUPDATE t2 SET c='fifty-nine thousand seven hundred forty-five' WHERE a=9871;\nUPDATE t2 SET c='seventy-five thousand four hundred fifty-seven' WHERE a=9872;\nUPDATE t2 SET c='fifty-seven thousand eight hundred twenty-eight' WHERE a=9873;\nUPDATE t2 SET c='ninety-three thousand four hundred ninety-five' WHERE a=9874;\nUPDATE t2 SET c='sixty-nine thousand four hundred twenty-five' WHERE a=9875;\nUPDATE t2 SET c='fifty-seven thousand sixteen' WHERE a=9876;\nUPDATE t2 SET c='twenty-eight thousand eight hundred eighteen' WHERE a=9877;\nUPDATE t2 SET c='ninety thousand eight hundred twenty-one' WHERE a=9878;\nUPDATE t2 SET c='thirty thousand two hundred nine' WHERE a=9879;\nUPDATE t2 SET c='forty-seven thousand one hundred nineteen' WHERE a=9880;\nUPDATE t2 SET c='forty-six thousand two hundred eighty-nine' WHERE a=9881;\nUPDATE t2 SET c='forty-six thousand seven hundred eighty-six' WHERE a=9882;\nUPDATE t2 SET c='eighty-four thousand two hundred twenty-four' WHERE a=9883;\nUPDATE t2 SET c='fifty-two thousand three hundred fifty-four' WHERE a=9884;\nUPDATE t2 SET c='ninety-nine thousand four hundred ninety-five' WHERE a=9885;\nUPDATE t2 SET c='ninety-seven thousand two hundred eleven' WHERE a=9886;\nUPDATE t2 SET c='fifty-three thousand eight hundred seventy-six' WHERE a=9887;\nUPDATE t2 SET c='ten thousand four hundred fifty-three' WHERE a=9888;\nUPDATE t2 SET c='eighty-nine thousand three hundred eight' WHERE a=9889;\nUPDATE t2 SET c='nineteen thousand nine hundred sixty-three' WHERE a=9890;\nUPDATE t2 SET c='eighty-one thousand six hundred seventy-eight' WHERE a=9891;\nUPDATE t2 SET c='seventy-two thousand five hundred sixteen' WHERE a=9892;\nUPDATE t2 SET c='twenty-two thousand two hundred forty-three' WHERE a=9893;\nUPDATE t2 SET c='ninety-nine thousand seven hundred ninety-seven' WHERE a=9894;\nUPDATE t2 SET c='seventy-six thousand two hundred fourteen' WHERE a=9895;\nUPDATE t2 SET c='seventy-five thousand eight hundred twenty-four' WHERE a=9896;\nUPDATE t2 SET c='ninety-six thousand five hundred fifty' WHERE a=9897;\nUPDATE t2 SET c='ninety-six thousand eight hundred four' WHERE a=9898;\nUPDATE t2 SET c='eighty-nine thousand nine hundred fifty-five' WHERE a=9899;\nUPDATE t2 SET c='eighty-three thousand four hundred two' WHERE a=9900;\nUPDATE t2 SET c='forty-four thousand four hundred seventy-nine' WHERE a=9901;\nUPDATE t2 SET c='ninety-seven thousand six hundred seventy-three' WHERE a=9902;\nUPDATE t2 SET c='eighty-two thousand four hundred thirty-three' WHERE a=9903;\nUPDATE t2 SET c='six hundred fourteen' WHERE a=9904;\nUPDATE t2 SET c='ninety-four thousand four hundred forty-two' WHERE a=9905;\nUPDATE t2 SET c='thirty-five thousand three hundred twenty-five' WHERE a=9906;\nUPDATE t2 SET c='sixty-nine thousand five hundred eighty-seven' WHERE a=9907;\nUPDATE t2 SET c='thirty-eight thousand nine hundred forty' WHERE a=9908;\nUPDATE t2 SET c='twelve thousand four hundred twenty-four' WHERE a=9909;\nUPDATE t2 SET c='twenty-two thousand two hundred thirty-four' WHERE a=9910;\nUPDATE t2 SET c='three thousand seven hundred ten' WHERE a=9911;\nUPDATE t2 SET c='twenty-two thousand seven hundred fourteen' WHERE a=9912;\nUPDATE t2 SET c='thirty-four thousand three hundred forty-eight' WHERE a=9913;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-four' WHERE a=9914;\nUPDATE t2 SET c='forty-six thousand two hundred seventy-one' WHERE a=9915;\nUPDATE t2 SET c='fifty-one thousand seven hundred thirty-six' WHERE a=9916;\nUPDATE t2 SET c='ninety thousand nine hundred thirty' WHERE a=9917;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-two' WHERE a=9918;\nUPDATE t2 SET c='seventy-two thousand four hundred twenty-nine' WHERE a=9919;\nUPDATE t2 SET c='forty-two thousand nine hundred sixty-eight' WHERE a=9920;\nUPDATE t2 SET c='eighty-four thousand forty-five' WHERE a=9921;\nUPDATE t2 SET c='thirty-eight thousand eight hundred eighty-four' WHERE a=9922;\nUPDATE t2 SET c='one thousand seven hundred fourteen' WHERE a=9923;\nUPDATE t2 SET c='sixty-six thousand seven hundred four' WHERE a=9924;\nUPDATE t2 SET c='forty thousand five hundred forty' WHERE a=9925;\nUPDATE t2 SET c='twenty-two thousand six hundred sixty-eight' WHERE a=9926;\nUPDATE t2 SET c='thirty-six thousand three hundred forty-five' WHERE a=9927;\nUPDATE t2 SET c='thirty-seven thousand five hundred forty' WHERE a=9928;\nUPDATE t2 SET c='fifty-three thousand one hundred thirty-seven' WHERE a=9929;\nUPDATE t2 SET c='seventy thousand nine hundred forty-seven' WHERE a=9930;\nUPDATE t2 SET c='fifty thousand five hundred fifty-six' WHERE a=9931;\nUPDATE t2 SET c='fifty-six thousand one hundred fifty-one' WHERE a=9932;\nUPDATE t2 SET c='fifty-two thousand one hundred three' WHERE a=9933;\nUPDATE t2 SET c='seventy-two thousand three hundred fifty-three' WHERE a=9934;\nUPDATE t2 SET c='eight thousand eight hundred ninety' WHERE a=9935;\nUPDATE t2 SET c='sixteen thousand seven hundred fifty-seven' WHERE a=9936;\nUPDATE t2 SET c='three thousand eight hundred twenty-nine' WHERE a=9937;\nUPDATE t2 SET c='fourteen thousand eight hundred twenty-six' WHERE a=9938;\nUPDATE t2 SET c='thirty-one thousand seventy-eight' WHERE a=9939;\nUPDATE t2 SET c='one thousand three hundred fifty' WHERE a=9940;\nUPDATE t2 SET c='eighty-one thousand seven hundred eight' WHERE a=9941;\nUPDATE t2 SET c='forty-eight thousand three hundred eighty-six' WHERE a=9942;\nUPDATE t2 SET c='fifty-one thousand four hundred sixty-nine' WHERE a=9943;\nUPDATE t2 SET c='ninety-seven thousand four hundred twelve' WHERE a=9944;\nUPDATE t2 SET c='sixty-nine thousand five hundred seventy-two' WHERE a=9945;\nUPDATE t2 SET c='thirty-five thousand five hundred ninety-four' WHERE a=9946;\nUPDATE t2 SET c='eighty-three thousand five hundred seventy-six' WHERE a=9947;\nUPDATE t2 SET c='sixty-nine thousand six hundred sixty-four' WHERE a=9948;\nUPDATE t2 SET c='eighty-five thousand seven hundred ninety-three' WHERE a=9949;\nUPDATE t2 SET c='sixty-nine thousand eight hundred fifty-two' WHERE a=9950;\nUPDATE t2 SET c='ninety-three thousand two hundred fifty-six' WHERE a=9951;\nUPDATE t2 SET c='forty-two thousand two hundred fifteen' WHERE a=9952;\nUPDATE t2 SET c='thirty-two thousand one hundred twenty-four' WHERE a=9953;\nUPDATE t2 SET c='seventy-five thousand eight hundred four' WHERE a=9954;\nUPDATE t2 SET c='five thousand six hundred eighty-five' WHERE a=9955;\nUPDATE t2 SET c='eighty-six thousand two hundred seventy-three' WHERE a=9956;\nUPDATE t2 SET c='twenty-seven thousand seven hundred' WHERE a=9957;\nUPDATE t2 SET c='fifty-one thousand eight hundred eighty-nine' WHERE a=9958;\nUPDATE t2 SET c='fifty-six thousand four hundred seventy-five' WHERE a=9959;\nUPDATE t2 SET c='twenty-six thousand eight hundred seventy-four' WHERE a=9960;\nUPDATE t2 SET c='ninety-three thousand forty-seven' WHERE a=9961;\nUPDATE t2 SET c='seven hundred eighty-four' WHERE a=9962;\nUPDATE t2 SET c='eighty-seven thousand seven hundred fifteen' WHERE a=9963;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-two' WHERE a=9964;\nUPDATE t2 SET c='fifty-one thousand two hundred ninety-three' WHERE a=9965;\nUPDATE t2 SET c='eighteen thousand seven hundred eighty-three' WHERE a=9966;\nUPDATE t2 SET c='eighty-two thousand seven hundred ninety-two' WHERE a=9967;\nUPDATE t2 SET c='thirty-six thousand four hundred thirty-seven' WHERE a=9968;\nUPDATE t2 SET c='forty-nine thousand five hundred forty-one' WHERE a=9969;\nUPDATE t2 SET c='thirty-one thousand nine hundred eight' WHERE a=9970;\nUPDATE t2 SET c='ninety-nine thousand four hundred seventy-four' WHERE a=9971;\nUPDATE t2 SET c='twenty-three thousand thirty-four' WHERE a=9972;\nUPDATE t2 SET c='ninety-five thousand one hundred twenty-one' WHERE a=9973;\nUPDATE t2 SET c='six hundred eighty-nine' WHERE a=9974;\nUPDATE t2 SET c='sixteen thousand eight hundred eight' WHERE a=9975;\nUPDATE t2 SET c='four thousand one hundred fifty-four' WHERE a=9976;\nUPDATE t2 SET c='seventeen thousand sixty-eight' WHERE a=9977;\nUPDATE t2 SET c='seventy-six thousand eight hundred sixty-two' WHERE a=9978;\nUPDATE t2 SET c='one thousand seven hundred five' WHERE a=9979;\nUPDATE t2 SET c='twenty-three thousand eighty-seven' WHERE a=9980;\nUPDATE t2 SET c='eight thousand eight hundred sixty-eight' WHERE a=9981;\nUPDATE t2 SET c='fifty-eight thousand five hundred seventy-two' WHERE a=9982;\nUPDATE t2 SET c='sixteen thousand one hundred seventy-nine' WHERE a=9983;\nUPDATE t2 SET c='ninety-seven thousand two hundred thirty-four' WHERE a=9984;\nUPDATE t2 SET c='eighty-five thousand six hundred eleven' WHERE a=9985;\nUPDATE t2 SET c='thirty-five thousand eight hundred six' WHERE a=9986;\nUPDATE t2 SET c='thirty-nine thousand seven hundred twenty-seven' WHERE a=9987;\nUPDATE t2 SET c='eighty-two thousand three hundred twenty-five' WHERE a=9988;\nUPDATE t2 SET c='thirty-nine thousand six hundred forty-nine' WHERE a=9989;\nUPDATE t2 SET c='eighty thousand two hundred sixty-four' WHERE a=9990;\nUPDATE t2 SET c='sixty-two thousand three hundred seventy-six' WHERE a=9991;\nUPDATE t2 SET c='five thousand six hundred fifty-nine' WHERE a=9992;\nUPDATE t2 SET c='thirteen thousand fifty-four' WHERE a=9993;\nUPDATE t2 SET c='fourteen thousand fifty-eight' WHERE a=9994;\nUPDATE t2 SET c='forty-nine thousand seven hundred thirty-five' WHERE a=9995;\nUPDATE t2 SET c='seventy-nine thousand two hundred thirty-seven' WHERE a=9996;\nUPDATE t2 SET c='seven thousand seven hundred fifty-four' WHERE a=9997;\nUPDATE t2 SET c='fifty-three thousand three hundred eleven' WHERE a=9998;\nUPDATE t2 SET c='thirty thousand one hundred seven' WHERE a=9999;\nUPDATE t2 SET c='fifty-seven thousand twenty-eight' WHERE a=10000;\nUPDATE t2 SET c='six thousand eight hundred sixty-two' WHERE a=10001;\nUPDATE t2 SET c='sixty thousand three hundred sixty-seven' WHERE a=10002;\nUPDATE t2 SET c='thirty-one thousand six hundred seventy-four' WHERE a=10003;\nUPDATE t2 SET c='fifty-three thousand eight hundred fifty-eight' WHERE a=10004;\nUPDATE t2 SET c='forty-three thousand one hundred eighty-three' WHERE a=10005;\nUPDATE t2 SET c='ninety-three thousand two hundred seventy-eight' WHERE a=10006;\nUPDATE t2 SET c='sixty-one thousand two hundred eighty-one' WHERE a=10007;\nUPDATE t2 SET c='four thousand four hundred forty-eight' WHERE a=10008;\nUPDATE t2 SET c='four thousand two hundred six' WHERE a=10009;\nUPDATE t2 SET c='seventy-two thousand six hundred four' WHERE a=10010;\nUPDATE t2 SET c='fifty-six thousand four hundred ninety-six' WHERE a=10011;\nUPDATE t2 SET c='six thousand three hundred ninety-two' WHERE a=10012;\nUPDATE t2 SET c='sixty thousand three hundred eighty-nine' WHERE a=10013;\nUPDATE t2 SET c='twenty-eight thousand nine hundred ninety-four' WHERE a=10014;\nUPDATE t2 SET c='eighty-four thousand two hundred forty-two' WHERE a=10015;\nUPDATE t2 SET c='ninety-two thousand eight hundred twenty-eight' WHERE a=10016;\nUPDATE t2 SET c='thirty-five thousand two hundred seventy-seven' WHERE a=10017;\nUPDATE t2 SET c='thirty-eight thousand four hundred seventeen' WHERE a=10018;\nUPDATE t2 SET c='seventy-eight thousand seventy-two' WHERE a=10019;\nUPDATE t2 SET c='twenty-two thousand two hundred thirty-seven' WHERE a=10020;\nUPDATE t2 SET c='fourteen thousand six hundred sixty-two' WHERE a=10021;\nUPDATE t2 SET c='twenty-seven thousand seventy' WHERE a=10022;\nUPDATE t2 SET c='eighteen thousand two hundred twenty-one' WHERE a=10023;\nUPDATE t2 SET c='forty-four thousand one hundred twenty-three' WHERE a=10024;\nUPDATE t2 SET c='sixty-two thousand two hundred six' WHERE a=10025;\nUPDATE t2 SET c='forty-two thousand six hundred seventy-four' WHERE a=10026;\nUPDATE t2 SET c='nineteen thousand four hundred sixty-one' WHERE a=10027;\nUPDATE t2 SET c='ninety-five thousand seven hundred eighty-four' WHERE a=10028;\nUPDATE t2 SET c='twenty-two thousand four hundred seventy' WHERE a=10029;\nUPDATE t2 SET c='ninety-three thousand seven hundred ninety-one' WHERE a=10030;\nUPDATE t2 SET c='thirty-nine thousand two hundred ninety-four' WHERE a=10031;\nUPDATE t2 SET c='forty-three thousand eight hundred thirty-three' WHERE a=10032;\nUPDATE t2 SET c='sixty-seven thousand two hundred sixty-two' WHERE a=10033;\nUPDATE t2 SET c='sixty-one thousand eight hundred sixty-eight' WHERE a=10034;\nUPDATE t2 SET c='fifty-one thousand four hundred forty-two' WHERE a=10035;\nUPDATE t2 SET c='six thousand four hundred eighty-two' WHERE a=10036;\nUPDATE t2 SET c='seventy-nine thousand nine hundred ninety-four' WHERE a=10037;\nUPDATE t2 SET c='eighty-eight thousand eight hundred seventy-seven' WHERE a=10038;\nUPDATE t2 SET c='twelve thousand five hundred sixteen' WHERE a=10039;\nUPDATE t2 SET c='seven thousand nine hundred sixty-six' WHERE a=10040;\nUPDATE t2 SET c='eighty-eight thousand one hundred sixty' WHERE a=10041;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-three' WHERE a=10042;\nUPDATE t2 SET c='thirty-eight thousand one hundred fifty-nine' WHERE a=10043;\nUPDATE t2 SET c='sixty-eight thousand eight hundred forty-nine' WHERE a=10044;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-eight' WHERE a=10045;\nUPDATE t2 SET c='one thousand four hundred sixty-three' WHERE a=10046;\nUPDATE t2 SET c='twenty-eight thousand one hundred seventy-one' WHERE a=10047;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty-three' WHERE a=10048;\nUPDATE t2 SET c='twenty-nine thousand eight hundred forty-six' WHERE a=10049;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-five' WHERE a=10050;\nUPDATE t2 SET c='ninety thousand eight hundred fifty-five' WHERE a=10051;\nUPDATE t2 SET c='ten thousand three hundred forty-five' WHERE a=10052;\nUPDATE t2 SET c='forty-two thousand nine hundred forty-five' WHERE a=10053;\nUPDATE t2 SET c='forty-three thousand seven hundred ninety-nine' WHERE a=10054;\nUPDATE t2 SET c='seventy-one thousand nine hundred eighty-five' WHERE a=10055;\nUPDATE t2 SET c='seventy thousand two hundred sixty-four' WHERE a=10056;\nUPDATE t2 SET c='sixty-eight thousand six hundred nineteen' WHERE a=10057;\nUPDATE t2 SET c='fifty-seven thousand five hundred seventy-seven' WHERE a=10058;\nUPDATE t2 SET c='nineteen thousand eight hundred sixty-eight' WHERE a=10059;\nUPDATE t2 SET c='seventy-nine thousand seven hundred thirty-one' WHERE a=10060;\nUPDATE t2 SET c='fifteen thousand seven hundred forty-eight' WHERE a=10061;\nUPDATE t2 SET c='sixty-three thousand three hundred ninety-three' WHERE a=10062;\nUPDATE t2 SET c='ninety-six thousand six hundred eighty-seven' WHERE a=10063;\nUPDATE t2 SET c='sixty-six thousand one hundred seventy-three' WHERE a=10064;\nUPDATE t2 SET c='forty-four thousand seven hundred twenty' WHERE a=10065;\nUPDATE t2 SET c='seventy-nine thousand six hundred sixty-one' WHERE a=10066;\nUPDATE t2 SET c='fifty-three thousand twelve' WHERE a=10067;\nUPDATE t2 SET c='ninety-three thousand fifty-seven' WHERE a=10068;\nUPDATE t2 SET c='six thousand eighty-eight' WHERE a=10069;\nUPDATE t2 SET c='fifty-six thousand six hundred eighty-seven' WHERE a=10070;\nUPDATE t2 SET c='fifty-seven thousand two hundred thirty-two' WHERE a=10071;\nUPDATE t2 SET c='thirty-six thousand two hundred eighty-one' WHERE a=10072;\nUPDATE t2 SET c='sixty-eight thousand six' WHERE a=10073;\nUPDATE t2 SET c='fifty-nine thousand four hundred sixteen' WHERE a=10074;\nUPDATE t2 SET c='sixty-eight thousand six hundred forty-eight' WHERE a=10075;\nUPDATE t2 SET c='fifty-eight thousand nine hundred sixty-four' WHERE a=10076;\nUPDATE t2 SET c='seventy-six thousand two hundred two' WHERE a=10077;\nUPDATE t2 SET c='three thousand nine hundred one' WHERE a=10078;\nUPDATE t2 SET c='thirty thousand two hundred fifty' WHERE a=10079;\nUPDATE t2 SET c='forty-four thousand six hundred eight' WHERE a=10080;\nUPDATE t2 SET c='twenty-two thousand two hundred sixty' WHERE a=10081;\nUPDATE t2 SET c='seventy-one thousand two hundred ninety' WHERE a=10082;\nUPDATE t2 SET c='sixty-five thousand five hundred forty-eight' WHERE a=10083;\nUPDATE t2 SET c='ninety-seven thousand four hundred twelve' WHERE a=10084;\nUPDATE t2 SET c='eighty thousand one hundred fifty-nine' WHERE a=10085;\nUPDATE t2 SET c='seven thousand one hundred seventy-three' WHERE a=10086;\nUPDATE t2 SET c='fifty-six thousand three hundred forty-five' WHERE a=10087;\nUPDATE t2 SET c='twenty-three thousand six hundred seventy-two' WHERE a=10088;\nUPDATE t2 SET c='eighty-three thousand two hundred thirty-seven' WHERE a=10089;\nUPDATE t2 SET c='thirty-three thousand one hundred eleven' WHERE a=10090;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty-two' WHERE a=10091;\nUPDATE t2 SET c='fifteen thousand' WHERE a=10092;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixty-two' WHERE a=10093;\nUPDATE t2 SET c='sixty-three thousand eight hundred eighteen' WHERE a=10094;\nUPDATE t2 SET c='thirteen thousand seven hundred ninety-nine' WHERE a=10095;\nUPDATE t2 SET c='two thousand four hundred twenty-nine' WHERE a=10096;\nUPDATE t2 SET c='seventy-nine thousand six hundred thirty-nine' WHERE a=10097;\nUPDATE t2 SET c='sixty-five thousand two hundred thirty-seven' WHERE a=10098;\nUPDATE t2 SET c='thirty-one thousand eight hundred eighty-four' WHERE a=10099;\nUPDATE t2 SET c='ninety-two thousand six hundred seven' WHERE a=10100;\nUPDATE t2 SET c='ten thousand six hundred sixty-nine' WHERE a=10101;\nUPDATE t2 SET c='seventy-seven thousand one hundred seventy-three' WHERE a=10102;\nUPDATE t2 SET c='sixty-seven thousand three hundred seventy-seven' WHERE a=10103;\nUPDATE t2 SET c='eighty-eight thousand six hundred thirty-three' WHERE a=10104;\nUPDATE t2 SET c='twenty-six thousand five hundred forty' WHERE a=10105;\nUPDATE t2 SET c='thirty-two thousand eight hundred thirty-three' WHERE a=10106;\nUPDATE t2 SET c='forty-three thousand two hundred twenty-one' WHERE a=10107;\nUPDATE t2 SET c='thirty-one thousand nine hundred sixty-nine' WHERE a=10108;\nUPDATE t2 SET c='fifty-three thousand seven hundred eighteen' WHERE a=10109;\nUPDATE t2 SET c='seventy thousand three hundred eighty-eight' WHERE a=10110;\nUPDATE t2 SET c='seventy-five thousand sixty' WHERE a=10111;\nUPDATE t2 SET c='eight thousand three hundred thirteen' WHERE a=10112;\nUPDATE t2 SET c='sixty-three thousand four hundred ninety-six' WHERE a=10113;\nUPDATE t2 SET c='fifty-nine thousand seventy-four' WHERE a=10114;\nUPDATE t2 SET c='twenty-eight thousand one hundred twenty-four' WHERE a=10115;\nUPDATE t2 SET c='seventy-six thousand five hundred eighty-six' WHERE a=10116;\nUPDATE t2 SET c='five thousand three hundred twenty-two' WHERE a=10117;\nUPDATE t2 SET c='seventy-seven thousand two hundred ninety-four' WHERE a=10118;\nUPDATE t2 SET c='fifty thousand four hundred twenty' WHERE a=10119;\nUPDATE t2 SET c='twenty-two thousand two hundred seventy-eight' WHERE a=10120;\nUPDATE t2 SET c='twelve thousand five hundred seventy-nine' WHERE a=10121;\nUPDATE t2 SET c='four thousand ninety-eight' WHERE a=10122;\nUPDATE t2 SET c='ninety-four thousand forty-eight' WHERE a=10123;\nUPDATE t2 SET c='fifty-seven thousand nine hundred forty-one' WHERE a=10124;\nUPDATE t2 SET c='thirty-six thousand four hundred ninety-three' WHERE a=10125;\nUPDATE t2 SET c='twenty-two thousand two hundred thirty-two' WHERE a=10126;\nUPDATE t2 SET c='seventy-seven thousand five hundred eighty-five' WHERE a=10127;\nUPDATE t2 SET c='fifty-nine thousand seventy-four' WHERE a=10128;\nUPDATE t2 SET c='seventy-seven thousand one hundred three' WHERE a=10129;\nUPDATE t2 SET c='ninety-six thousand one hundred seventy' WHERE a=10130;\nUPDATE t2 SET c='thirty-three thousand one hundred sixty-one' WHERE a=10131;\nUPDATE t2 SET c='forty-three thousand seven hundred seventeen' WHERE a=10132;\nUPDATE t2 SET c='forty-eight thousand four hundred thirty-seven' WHERE a=10133;\nUPDATE t2 SET c='fifty-nine thousand two hundred fifty-three' WHERE a=10134;\nUPDATE t2 SET c='nineteen thousand nine hundred ninety-seven' WHERE a=10135;\nUPDATE t2 SET c='fifty-five thousand eight hundred thirty-eight' WHERE a=10136;\nUPDATE t2 SET c='sixty-six thousand fifty-eight' WHERE a=10137;\nUPDATE t2 SET c='seventy-three thousand forty-eight' WHERE a=10138;\nUPDATE t2 SET c='fifty-three thousand nine hundred twenty-three' WHERE a=10139;\nUPDATE t2 SET c='seventy thousand five hundred sixty-five' WHERE a=10140;\nUPDATE t2 SET c='fifty-nine thousand eight hundred seven' WHERE a=10141;\nUPDATE t2 SET c='twenty-one thousand one hundred fourteen' WHERE a=10142;\nUPDATE t2 SET c='forty-one thousand two hundred sixty-seven' WHERE a=10143;\nUPDATE t2 SET c='ninety-eight thousand three hundred thirty-nine' WHERE a=10144;\nUPDATE t2 SET c='fifty-six thousand five hundred forty-five' WHERE a=10145;\nUPDATE t2 SET c='fifty-one thousand nine hundred sixty-five' WHERE a=10146;\nUPDATE t2 SET c='thirty-five thousand seventy-two' WHERE a=10147;\nUPDATE t2 SET c='eighty-five thousand two hundred seventy-five' WHERE a=10148;\nUPDATE t2 SET c='ninety-nine thousand six hundred thirty-one' WHERE a=10149;\nUPDATE t2 SET c='eighty-six thousand nine hundred eighty-six' WHERE a=10150;\nUPDATE t2 SET c='nineteen thousand six hundred forty-six' WHERE a=10151;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-six' WHERE a=10152;\nUPDATE t2 SET c='ninety-two thousand two hundred ninety' WHERE a=10153;\nUPDATE t2 SET c='eighteen thousand nine hundred three' WHERE a=10154;\nUPDATE t2 SET c='twenty-six thousand one hundred seventy-four' WHERE a=10155;\nUPDATE t2 SET c='sixty-seven thousand five hundred fifty-two' WHERE a=10156;\nUPDATE t2 SET c='two thousand seven hundred' WHERE a=10157;\nUPDATE t2 SET c='ninety-four thousand five hundred twenty-six' WHERE a=10158;\nUPDATE t2 SET c='seventy-five thousand seventy' WHERE a=10159;\nUPDATE t2 SET c='two thousand four hundred seventy-four' WHERE a=10160;\nUPDATE t2 SET c='eighty-one thousand two hundred fifty-three' WHERE a=10161;\nUPDATE t2 SET c='thirteen thousand nine hundred forty-eight' WHERE a=10162;\nUPDATE t2 SET c='twenty-two thousand seven hundred nine' WHERE a=10163;\nUPDATE t2 SET c='seventy-one thousand six hundred forty-nine' WHERE a=10164;\nUPDATE t2 SET c='one hundred eighty-one' WHERE a=10165;\nUPDATE t2 SET c='sixty-four thousand four hundred fifty-two' WHERE a=10166;\nUPDATE t2 SET c='thirty-four thousand four hundred twenty' WHERE a=10167;\nUPDATE t2 SET c='ninety-four thousand three hundred fifty-two' WHERE a=10168;\nUPDATE t2 SET c='fifty thousand three hundred two' WHERE a=10169;\nUPDATE t2 SET c='eighty-seven thousand three hundred thirty-two' WHERE a=10170;\nUPDATE t2 SET c='twenty thousand five hundred eight' WHERE a=10171;\nUPDATE t2 SET c='seventeen thousand six hundred twenty' WHERE a=10172;\nUPDATE t2 SET c='thirty thousand five hundred fifty-seven' WHERE a=10173;\nUPDATE t2 SET c='twenty-two thousand one hundred fifteen' WHERE a=10174;\nUPDATE t2 SET c='seventy-eight thousand eight hundred sixty-six' WHERE a=10175;\nUPDATE t2 SET c='three hundred ten' WHERE a=10176;\nUPDATE t2 SET c='ninety-one thousand nine hundred seventeen' WHERE a=10177;\nUPDATE t2 SET c='twenty-six thousand seven hundred sixty-nine' WHERE a=10178;\nUPDATE t2 SET c='seventy-eight thousand one hundred' WHERE a=10179;\nUPDATE t2 SET c='one thousand seven hundred eighty-nine' WHERE a=10180;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy-eight' WHERE a=10181;\nUPDATE t2 SET c='twenty-nine thousand six hundred eighty-seven' WHERE a=10182;\nUPDATE t2 SET c='ninety-six thousand three hundred seventy-five' WHERE a=10183;\nUPDATE t2 SET c='four thousand eight hundred sixty-two' WHERE a=10184;\nUPDATE t2 SET c='fifty-three thousand ninety-nine' WHERE a=10185;\nUPDATE t2 SET c='sixty-five thousand nine hundred eighty-four' WHERE a=10186;\nUPDATE t2 SET c='nine thousand eight hundred seventy-six' WHERE a=10187;\nUPDATE t2 SET c='sixty thousand eight hundred thirty-eight' WHERE a=10188;\nUPDATE t2 SET c='sixty-five thousand nine hundred seventy-one' WHERE a=10189;\nUPDATE t2 SET c='one thousand nine hundred three' WHERE a=10190;\nUPDATE t2 SET c='seventy-eight thousand fifty-one' WHERE a=10191;\nUPDATE t2 SET c='thirty-eight thousand two hundred seventy-one' WHERE a=10192;\nUPDATE t2 SET c='eighty-one thousand two hundred five' WHERE a=10193;\nUPDATE t2 SET c='forty-four thousand eighty-one' WHERE a=10194;\nUPDATE t2 SET c='sixteen thousand four hundred eighteen' WHERE a=10195;\nUPDATE t2 SET c='forty-three thousand two hundred eighty-five' WHERE a=10196;\nUPDATE t2 SET c='fifty-eight thousand seven hundred two' WHERE a=10197;\nUPDATE t2 SET c='thirty-one thousand two hundred sixteen' WHERE a=10198;\nUPDATE t2 SET c='three thousand four hundred eighty-one' WHERE a=10199;\nUPDATE t2 SET c='three thousand three hundred thirty-four' WHERE a=10200;\nUPDATE t2 SET c='seventy-four thousand four hundred forty-one' WHERE a=10201;\nUPDATE t2 SET c='ninety-three thousand seven hundred nine' WHERE a=10202;\nUPDATE t2 SET c='fifty-five thousand nine hundred thirty-nine' WHERE a=10203;\nUPDATE t2 SET c='twenty-two thousand nine hundred forty-eight' WHERE a=10204;\nUPDATE t2 SET c='thirty-five thousand twenty-nine' WHERE a=10205;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ten' WHERE a=10206;\nUPDATE t2 SET c='six thousand three hundred thirteen' WHERE a=10207;\nUPDATE t2 SET c='ninety-nine thousand four hundred fifty-five' WHERE a=10208;\nUPDATE t2 SET c='fifty-eight thousand five hundred fifty-nine' WHERE a=10209;\nUPDATE t2 SET c='six thousand nine hundred forty-five' WHERE a=10210;\nUPDATE t2 SET c='ninety-four thousand one hundred fifty-one' WHERE a=10211;\nUPDATE t2 SET c='seventy-five thousand nine hundred fifty-four' WHERE a=10212;\nUPDATE t2 SET c='forty-seven thousand six hundred seventy' WHERE a=10213;\nUPDATE t2 SET c='seventy thousand five hundred fifty-three' WHERE a=10214;\nUPDATE t2 SET c='thirty-six thousand four hundred eighty-seven' WHERE a=10215;\nUPDATE t2 SET c='sixty thousand one hundred sixty-three' WHERE a=10216;\nUPDATE t2 SET c='ninety-one thousand one' WHERE a=10217;\nUPDATE t2 SET c='sixty-six thousand seven hundred fifty-one' WHERE a=10218;\nUPDATE t2 SET c='thirteen thousand four hundred thirty-nine' WHERE a=10219;\nUPDATE t2 SET c='fifty-five thousand five hundred fifty-eight' WHERE a=10220;\nUPDATE t2 SET c='twenty-six thousand five hundred fifty-five' WHERE a=10221;\nUPDATE t2 SET c='fifty-six thousand three hundred ninety-three' WHERE a=10222;\nUPDATE t2 SET c='thirty thousand two hundred four' WHERE a=10223;\nUPDATE t2 SET c='eighty-nine thousand one hundred eighty-four' WHERE a=10224;\nUPDATE t2 SET c='ninety-four thousand seven hundred sixteen' WHERE a=10225;\nUPDATE t2 SET c='eighty-two thousand eight hundred fifty-six' WHERE a=10226;\nUPDATE t2 SET c='ninety-seven thousand eight hundred sixteen' WHERE a=10227;\nUPDATE t2 SET c='fifty-two thousand seven hundred fifty-five' WHERE a=10228;\nUPDATE t2 SET c='ninety-five thousand three hundred ninety-seven' WHERE a=10229;\nUPDATE t2 SET c='twenty-four thousand six hundred forty-six' WHERE a=10230;\nUPDATE t2 SET c='twenty thousand eight hundred sixty-nine' WHERE a=10231;\nUPDATE t2 SET c='fifty-one thousand two hundred thirty-nine' WHERE a=10232;\nUPDATE t2 SET c='twenty-three thousand four hundred thirty-four' WHERE a=10233;\nUPDATE t2 SET c='twenty-one thousand eighty' WHERE a=10234;\nUPDATE t2 SET c='eighty-six thousand seven hundred sixty-four' WHERE a=10235;\nUPDATE t2 SET c='thirty thousand one hundred ninety-four' WHERE a=10236;\nUPDATE t2 SET c='fifty-three thousand seventy-four' WHERE a=10237;\nUPDATE t2 SET c='ninety-five thousand two hundred fourteen' WHERE a=10238;\nUPDATE t2 SET c='eighty-five thousand six hundred sixty-eight' WHERE a=10239;\nUPDATE t2 SET c='seventy-eight thousand one hundred fifty-five' WHERE a=10240;\nUPDATE t2 SET c='thirty-four thousand one hundred forty-eight' WHERE a=10241;\nUPDATE t2 SET c='ninety-three thousand seven hundred twenty-five' WHERE a=10242;\nUPDATE t2 SET c='twenty-four thousand fifty' WHERE a=10243;\nUPDATE t2 SET c='forty-one thousand nine hundred sixteen' WHERE a=10244;\nUPDATE t2 SET c='twenty-eight thousand seven hundred thirty' WHERE a=10245;\nUPDATE t2 SET c='fifty-five thousand five hundred sixty-eight' WHERE a=10246;\nUPDATE t2 SET c='eight thousand seven hundred thirteen' WHERE a=10247;\nUPDATE t2 SET c='three thousand five hundred eighty-five' WHERE a=10248;\nUPDATE t2 SET c='thirty-seven thousand five hundred sixty-nine' WHERE a=10249;\nUPDATE t2 SET c='twenty thousand seven hundred eighty-two' WHERE a=10250;\nUPDATE t2 SET c='fifty-four thousand six hundred sixty-eight' WHERE a=10251;\nUPDATE t2 SET c='sixty-two thousand one hundred ninety-five' WHERE a=10252;\nUPDATE t2 SET c='eighty-two thousand four hundred three' WHERE a=10253;\nUPDATE t2 SET c='eighty-two thousand four hundred thirty-one' WHERE a=10254;\nUPDATE t2 SET c='thirty-four thousand five hundred one' WHERE a=10255;\nUPDATE t2 SET c='nine thousand nine hundred sixty-six' WHERE a=10256;\nUPDATE t2 SET c='sixty-three thousand seven hundred ninety-three' WHERE a=10257;\nUPDATE t2 SET c='eighteen thousand five hundred sixty-four' WHERE a=10258;\nUPDATE t2 SET c='sixty-two thousand three hundred ninety-six' WHERE a=10259;\nUPDATE t2 SET c='eighty-nine thousand two hundred sixty-one' WHERE a=10260;\nUPDATE t2 SET c='thirty-nine thousand nine hundred thirty-seven' WHERE a=10261;\nUPDATE t2 SET c='one thousand five hundred eighty-two' WHERE a=10262;\nUPDATE t2 SET c='twenty-two thousand five hundred eighty' WHERE a=10263;\nUPDATE t2 SET c='fourteen thousand eight hundred sixty-seven' WHERE a=10264;\nUPDATE t2 SET c='fifty-nine thousand one hundred sixty' WHERE a=10265;\nUPDATE t2 SET c='fifty-eight thousand two hundred eighty-seven' WHERE a=10266;\nUPDATE t2 SET c='ninety-four thousand four hundred nine' WHERE a=10267;\nUPDATE t2 SET c='twenty-nine thousand five hundred twenty-two' WHERE a=10268;\nUPDATE t2 SET c='sixty-four thousand seven hundred fifty-three' WHERE a=10269;\nUPDATE t2 SET c='ninety-eight thousand fifty-four' WHERE a=10270;\nUPDATE t2 SET c='twenty-one thousand one hundred' WHERE a=10271;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-two' WHERE a=10272;\nUPDATE t2 SET c='seventy-seven thousand eight hundred forty-one' WHERE a=10273;\nUPDATE t2 SET c='fifty-four thousand two hundred fifty-seven' WHERE a=10274;\nUPDATE t2 SET c='two thousand eight' WHERE a=10275;\nUPDATE t2 SET c='thirty-four thousand nine hundred seventy-two' WHERE a=10276;\nUPDATE t2 SET c='thirty-five thousand seventy-eight' WHERE a=10277;\nUPDATE t2 SET c='seventy-nine thousand eight hundred fifty-five' WHERE a=10278;\nUPDATE t2 SET c='fifty-three thousand six hundred sixty' WHERE a=10279;\nUPDATE t2 SET c='eighty-seven thousand two hundred fifty-four' WHERE a=10280;\nUPDATE t2 SET c='seventy thousand seven hundred twenty-four' WHERE a=10281;\nUPDATE t2 SET c='sixty-three thousand three hundred forty' WHERE a=10282;\nUPDATE t2 SET c='sixteen thousand eight hundred seventy-five' WHERE a=10283;\nUPDATE t2 SET c='eighty-four thousand two hundred sixty-one' WHERE a=10284;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-six' WHERE a=10285;\nUPDATE t2 SET c='ninety-nine thousand nine hundred three' WHERE a=10286;\nUPDATE t2 SET c='sixty-six thousand two hundred seventy-eight' WHERE a=10287;\nUPDATE t2 SET c='forty-six thousand one hundred forty-seven' WHERE a=10288;\nUPDATE t2 SET c='nineteen thousand eight hundred thirty-three' WHERE a=10289;\nUPDATE t2 SET c='sixty-five thousand one hundred ninety-eight' WHERE a=10290;\nUPDATE t2 SET c='fifty-seven thousand four hundred fifty-four' WHERE a=10291;\nUPDATE t2 SET c='twelve thousand four hundred three' WHERE a=10292;\nUPDATE t2 SET c='eighty-four thousand nine hundred fifty-six' WHERE a=10293;\nUPDATE t2 SET c='sixty-one thousand six hundred thirty-five' WHERE a=10294;\nUPDATE t2 SET c='four thousand eight hundred forty-five' WHERE a=10295;\nUPDATE t2 SET c='sixty-three thousand three hundred thirty-eight' WHERE a=10296;\nUPDATE t2 SET c='seventy-seven thousand seven hundred twenty-eight' WHERE a=10297;\nUPDATE t2 SET c='twenty-six thousand six hundred sixty-six' WHERE a=10298;\nUPDATE t2 SET c='fifty thousand six hundred twenty-seven' WHERE a=10299;\nUPDATE t2 SET c='fifty thousand three hundred ninety-nine' WHERE a=10300;\nUPDATE t2 SET c='thirty-eight thousand four hundred twenty-nine' WHERE a=10301;\nUPDATE t2 SET c='nine thousand three hundred eighty-seven' WHERE a=10302;\nUPDATE t2 SET c='seventy-nine thousand ninety-three' WHERE a=10303;\nUPDATE t2 SET c='sixty-nine thousand eight hundred four' WHERE a=10304;\nUPDATE t2 SET c='seventy-two thousand nine hundred fifty-four' WHERE a=10305;\nUPDATE t2 SET c='sixty-one thousand four hundred fifty-four' WHERE a=10306;\nUPDATE t2 SET c='ninety-seven thousand one hundred twenty-one' WHERE a=10307;\nUPDATE t2 SET c='ninety-six thousand eight hundred fifty-two' WHERE a=10308;\nUPDATE t2 SET c='fifty-six thousand seven hundred thirty-three' WHERE a=10309;\nUPDATE t2 SET c='eighty-three thousand one hundred ninety-eight' WHERE a=10310;\nUPDATE t2 SET c='eighty-five thousand eight hundred seventy-eight' WHERE a=10311;\nUPDATE t2 SET c='eighty thousand seven hundred seventeen' WHERE a=10312;\nUPDATE t2 SET c='seventy-two thousand one hundred fifty-six' WHERE a=10313;\nUPDATE t2 SET c='thirty-nine thousand three hundred forty-three' WHERE a=10314;\nUPDATE t2 SET c='eighty-two' WHERE a=10315;\nUPDATE t2 SET c='sixty-seven thousand two hundred seventy' WHERE a=10316;\nUPDATE t2 SET c='seventy-six thousand four hundred forty-four' WHERE a=10317;\nUPDATE t2 SET c='fifteen thousand six hundred' WHERE a=10318;\nUPDATE t2 SET c='eighty-five thousand six hundred forty' WHERE a=10319;\nUPDATE t2 SET c='sixty-four thousand nine hundred eighty-two' WHERE a=10320;\nUPDATE t2 SET c='four thousand six hundred six' WHERE a=10321;\nUPDATE t2 SET c='seventy-two thousand four hundred forty-seven' WHERE a=10322;\nUPDATE t2 SET c='sixty-eight thousand eight hundred fifty-eight' WHERE a=10323;\nUPDATE t2 SET c='seventy-four thousand two hundred twenty-one' WHERE a=10324;\nUPDATE t2 SET c='seventy-three thousand five hundred seventy-seven' WHERE a=10325;\nUPDATE t2 SET c='fifty-two thousand one hundred four' WHERE a=10326;\nUPDATE t2 SET c='fifty-six thousand five hundred forty-six' WHERE a=10327;\nUPDATE t2 SET c='fifty-four thousand one hundred thirty-one' WHERE a=10328;\nUPDATE t2 SET c='fifty-three thousand one hundred seventy-one' WHERE a=10329;\nUPDATE t2 SET c='sixty-four thousand six hundred fifty-three' WHERE a=10330;\nUPDATE t2 SET c='sixty-six thousand eight hundred ninety-one' WHERE a=10331;\nUPDATE t2 SET c='fifty-nine thousand nine hundred eighteen' WHERE a=10332;\nUPDATE t2 SET c='six thousand seven hundred thirty' WHERE a=10333;\nUPDATE t2 SET c='twenty-six thousand one hundred twelve' WHERE a=10334;\nUPDATE t2 SET c='fourteen thousand six hundred eleven' WHERE a=10335;\nUPDATE t2 SET c='sixty-one thousand two hundred ninety-four' WHERE a=10336;\nUPDATE t2 SET c='fifty thousand nine hundred twelve' WHERE a=10337;\nUPDATE t2 SET c='one thousand five hundred sixty-two' WHERE a=10338;\nUPDATE t2 SET c='twenty-four thousand nine hundred sixty-nine' WHERE a=10339;\nUPDATE t2 SET c='three hundred fifty-eight' WHERE a=10340;\nUPDATE t2 SET c='thirty-five thousand four hundred eighty-eight' WHERE a=10341;\nUPDATE t2 SET c='sixteen thousand nine hundred twelve' WHERE a=10342;\nUPDATE t2 SET c='sixty-nine thousand nine hundred fifty-eight' WHERE a=10343;\nUPDATE t2 SET c='seventy-eight thousand seven hundred twenty-one' WHERE a=10344;\nUPDATE t2 SET c='thirty-seven thousand one' WHERE a=10345;\nUPDATE t2 SET c='seventy-five thousand nine hundred seven' WHERE a=10346;\nUPDATE t2 SET c='sixty-nine thousand nine hundred eighty-five' WHERE a=10347;\nUPDATE t2 SET c='twenty-seven thousand eight hundred sixty-seven' WHERE a=10348;\nUPDATE t2 SET c='ninety-five thousand forty-eight' WHERE a=10349;\nUPDATE t2 SET c='eighty-two thousand nine hundred fourteen' WHERE a=10350;\nUPDATE t2 SET c='forty-four thousand four hundred sixty-four' WHERE a=10351;\nUPDATE t2 SET c='five thousand three hundred twenty-seven' WHERE a=10352;\nUPDATE t2 SET c='ninety-eight thousand seven hundred eleven' WHERE a=10353;\nUPDATE t2 SET c='seventy-one thousand four hundred one' WHERE a=10354;\nUPDATE t2 SET c='sixty-six thousand eighty-nine' WHERE a=10355;\nUPDATE t2 SET c='seventy-eight thousand nineteen' WHERE a=10356;\nUPDATE t2 SET c='twenty-one thousand sixty-seven' WHERE a=10357;\nUPDATE t2 SET c='one thousand five hundred seventy' WHERE a=10358;\nUPDATE t2 SET c='ninety-six thousand one hundred twenty-one' WHERE a=10359;\nUPDATE t2 SET c='sixty-four thousand two hundred twelve' WHERE a=10360;\nUPDATE t2 SET c='sixty thousand thirty-four' WHERE a=10361;\nUPDATE t2 SET c='nineteen thousand three hundred fifty' WHERE a=10362;\nUPDATE t2 SET c='twenty-four thousand five hundred fourteen' WHERE a=10363;\nUPDATE t2 SET c='seventy-five thousand five hundred thirty-nine' WHERE a=10364;\nUPDATE t2 SET c='eighty-eight thousand two hundred twenty-three' WHERE a=10365;\nUPDATE t2 SET c='seventy-four thousand eight hundred fifty-nine' WHERE a=10366;\nUPDATE t2 SET c='forty-four thousand two hundred twelve' WHERE a=10367;\nUPDATE t2 SET c='twelve thousand eight' WHERE a=10368;\nUPDATE t2 SET c='ten thousand six hundred forty-nine' WHERE a=10369;\nUPDATE t2 SET c='thirty-nine thousand two hundred forty-two' WHERE a=10370;\nUPDATE t2 SET c='forty-four thousand five hundred fourteen' WHERE a=10371;\nUPDATE t2 SET c='ninety thousand two hundred thirty-three' WHERE a=10372;\nUPDATE t2 SET c='fourteen thousand four hundred thirty-six' WHERE a=10373;\nUPDATE t2 SET c='eight thousand nine hundred seventeen' WHERE a=10374;\nUPDATE t2 SET c='forty-one thousand two hundred sixty-seven' WHERE a=10375;\nUPDATE t2 SET c='twenty-seven thousand three hundred eighty-nine' WHERE a=10376;\nUPDATE t2 SET c='eighty-nine thousand seven hundred six' WHERE a=10377;\nUPDATE t2 SET c='twenty-two thousand eight hundred twenty-nine' WHERE a=10378;\nUPDATE t2 SET c='forty-nine thousand three hundred eighty-five' WHERE a=10379;\nUPDATE t2 SET c='fifty thousand four hundred seventeen' WHERE a=10380;\nUPDATE t2 SET c='eighty-seven thousand six hundred thirty-eight' WHERE a=10381;\nUPDATE t2 SET c='eighty-five thousand twenty-five' WHERE a=10382;\nUPDATE t2 SET c='eleven thousand six hundred seventy-five' WHERE a=10383;\nUPDATE t2 SET c='three thousand nine hundred thirty-three' WHERE a=10384;\nUPDATE t2 SET c='sixty-three thousand two hundred sixty-five' WHERE a=10385;\nUPDATE t2 SET c='seventy-eight thousand one hundred fifty-five' WHERE a=10386;\nUPDATE t2 SET c='sixty-four thousand two hundred twenty-nine' WHERE a=10387;\nUPDATE t2 SET c='seventy-one thousand four hundred eighty-eight' WHERE a=10388;\nUPDATE t2 SET c='three thousand three hundred thirty-three' WHERE a=10389;\nUPDATE t2 SET c='fifty-one thousand one hundred fifty-five' WHERE a=10390;\nUPDATE t2 SET c='fifty-eight thousand eight hundred twenty-eight' WHERE a=10391;\nUPDATE t2 SET c='forty-five thousand six hundred fifty' WHERE a=10392;\nUPDATE t2 SET c='seven thousand five hundred thirty-nine' WHERE a=10393;\nUPDATE t2 SET c='twenty-six thousand four hundred ninety-seven' WHERE a=10394;\nUPDATE t2 SET c='fifty-four thousand seven hundred six' WHERE a=10395;\nUPDATE t2 SET c='nineteen thousand seventy-seven' WHERE a=10396;\nUPDATE t2 SET c='seventy-two thousand three hundred seventy-three' WHERE a=10397;\nUPDATE t2 SET c='forty-nine thousand three hundred thirty-five' WHERE a=10398;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-eight' WHERE a=10399;\nUPDATE t2 SET c='ninety-nine thousand two hundred forty-four' WHERE a=10400;\nUPDATE t2 SET c='seventy-two thousand four hundred eighty-nine' WHERE a=10401;\nUPDATE t2 SET c='fifty-seven thousand seven hundred fifty-two' WHERE a=10402;\nUPDATE t2 SET c='ten thousand one hundred sixty' WHERE a=10403;\nUPDATE t2 SET c='fifty-six thousand four hundred ninety-seven' WHERE a=10404;\nUPDATE t2 SET c='twenty-two thousand two hundred thirty-nine' WHERE a=10405;\nUPDATE t2 SET c='ninety-seven thousand seven hundred forty-seven' WHERE a=10406;\nUPDATE t2 SET c='eighty-six thousand forty-five' WHERE a=10407;\nUPDATE t2 SET c='fifty thousand two hundred eighty-two' WHERE a=10408;\nUPDATE t2 SET c='seventy-nine thousand eighty-eight' WHERE a=10409;\nUPDATE t2 SET c='sixty-six thousand seven hundred ninety-six' WHERE a=10410;\nUPDATE t2 SET c='eight thousand nine hundred fifty-seven' WHERE a=10411;\nUPDATE t2 SET c='forty-six thousand two hundred seventy-six' WHERE a=10412;\nUPDATE t2 SET c='fourteen thousand six hundred twenty-seven' WHERE a=10413;\nUPDATE t2 SET c='fourteen thousand four hundred five' WHERE a=10414;\nUPDATE t2 SET c='eighty-seven thousand four hundred twenty-nine' WHERE a=10415;\nUPDATE t2 SET c='fifty-three thousand five hundred eighty-four' WHERE a=10416;\nUPDATE t2 SET c='forty-one thousand six hundred thirty-eight' WHERE a=10417;\nUPDATE t2 SET c='ten thousand ninety' WHERE a=10418;\nUPDATE t2 SET c='thirty-one thousand eight hundred ten' WHERE a=10419;\nUPDATE t2 SET c='five thousand nine hundred sixteen' WHERE a=10420;\nUPDATE t2 SET c='twenty-four thousand forty-eight' WHERE a=10421;\nUPDATE t2 SET c='ten thousand ninety-two' WHERE a=10422;\nUPDATE t2 SET c='fifteen thousand five hundred ninety-four' WHERE a=10423;\nUPDATE t2 SET c='three thousand six hundred ninety-five' WHERE a=10424;\nUPDATE t2 SET c='seventy-four thousand nine hundred thirty-one' WHERE a=10425;\nUPDATE t2 SET c='seventy-two thousand two hundred seventy-five' WHERE a=10426;\nUPDATE t2 SET c='forty-two thousand ninety-one' WHERE a=10427;\nUPDATE t2 SET c='twenty-two thousand three hundred thirty-eight' WHERE a=10428;\nUPDATE t2 SET c='ninety-eight thousand seven hundred thirty-nine' WHERE a=10429;\nUPDATE t2 SET c='twenty thousand nine hundred sixty-seven' WHERE a=10430;\nUPDATE t2 SET c='thirty-two thousand five hundred twenty-nine' WHERE a=10431;\nUPDATE t2 SET c='eleven thousand forty-three' WHERE a=10432;\nUPDATE t2 SET c='twelve thousand seven hundred' WHERE a=10433;\nUPDATE t2 SET c='seventy thousand four' WHERE a=10434;\nUPDATE t2 SET c='fifty-three thousand seven hundred' WHERE a=10435;\nUPDATE t2 SET c='fifty-eight thousand five hundred thirty-nine' WHERE a=10436;\nUPDATE t2 SET c='twenty thousand two hundred five' WHERE a=10437;\nUPDATE t2 SET c='fifty thousand six hundred twenty-eight' WHERE a=10438;\nUPDATE t2 SET c='eighty-three thousand seven hundred sixteen' WHERE a=10439;\nUPDATE t2 SET c='fifteen thousand two hundred seventy-seven' WHERE a=10440;\nUPDATE t2 SET c='eighty thousand nine hundred eighty-seven' WHERE a=10441;\nUPDATE t2 SET c='ninety-nine thousand one hundred eighty-eight' WHERE a=10442;\nUPDATE t2 SET c='forty-nine thousand one hundred seventy-three' WHERE a=10443;\nUPDATE t2 SET c='fifty-five thousand eight hundred ninety-two' WHERE a=10444;\nUPDATE t2 SET c='eighty-nine thousand two hundred ninety-five' WHERE a=10445;\nUPDATE t2 SET c='seventy-seven thousand five hundred forty-three' WHERE a=10446;\nUPDATE t2 SET c='ninety-two thousand seven hundred seventy-two' WHERE a=10447;\nUPDATE t2 SET c='eight thousand three hundred fifty-one' WHERE a=10448;\nUPDATE t2 SET c='twenty-three thousand three hundred twenty' WHERE a=10449;\nUPDATE t2 SET c='ninety-six thousand two hundred eighteen' WHERE a=10450;\nUPDATE t2 SET c='sixty thousand eight hundred twenty-five' WHERE a=10451;\nUPDATE t2 SET c='thirty-one thousand one hundred two' WHERE a=10452;\nUPDATE t2 SET c='eighty-nine thousand three hundred fifty' WHERE a=10453;\nUPDATE t2 SET c='ninety thousand eight hundred forty-seven' WHERE a=10454;\nUPDATE t2 SET c='sixty-two thousand thirty' WHERE a=10455;\nUPDATE t2 SET c='eleven thousand three hundred fifty-five' WHERE a=10456;\nUPDATE t2 SET c='seventy thousand nine hundred eighty-one' WHERE a=10457;\nUPDATE t2 SET c='eighty-six thousand nine hundred forty-seven' WHERE a=10458;\nUPDATE t2 SET c='twenty-nine thousand nine hundred twenty-two' WHERE a=10459;\nUPDATE t2 SET c='ninety-three thousand six hundred thirty-four' WHERE a=10460;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-four' WHERE a=10461;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-nine' WHERE a=10462;\nUPDATE t2 SET c='ninety-eight thousand seven hundred eighty-two' WHERE a=10463;\nUPDATE t2 SET c='fifty-five thousand fifteen' WHERE a=10464;\nUPDATE t2 SET c='eighteen thousand seven hundred ninety-nine' WHERE a=10465;\nUPDATE t2 SET c='ninety-eight thousand eight hundred thirteen' WHERE a=10466;\nUPDATE t2 SET c='thirty-four thousand eight hundred fifty-two' WHERE a=10467;\nUPDATE t2 SET c='sixteen thousand one hundred twenty-six' WHERE a=10468;\nUPDATE t2 SET c='eighty-seven thousand six hundred eighty-nine' WHERE a=10469;\nUPDATE t2 SET c='eighty-six thousand nine hundred twenty-seven' WHERE a=10470;\nUPDATE t2 SET c='seventy-three thousand two hundred eighty-seven' WHERE a=10471;\nUPDATE t2 SET c='eighty-nine thousand one hundred eighty-five' WHERE a=10472;\nUPDATE t2 SET c='twenty thousand six hundred forty-seven' WHERE a=10473;\nUPDATE t2 SET c='fifty-eight thousand three hundred sixty-nine' WHERE a=10474;\nUPDATE t2 SET c='thirty-three thousand eight hundred sixty-four' WHERE a=10475;\nUPDATE t2 SET c='thirty-eight thousand three hundred thirty-three' WHERE a=10476;\nUPDATE t2 SET c='twenty-eight thousand one hundred twelve' WHERE a=10477;\nUPDATE t2 SET c='thirty-five thousand nine hundred eighteen' WHERE a=10478;\nUPDATE t2 SET c='eleven thousand seven hundred seven' WHERE a=10479;\nUPDATE t2 SET c='seventy-seven thousand six hundred fifty-nine' WHERE a=10480;\nUPDATE t2 SET c='eighty-five thousand two hundred twenty-one' WHERE a=10481;\nUPDATE t2 SET c='seventy-one thousand five hundred ninety-four' WHERE a=10482;\nUPDATE t2 SET c='eighty-five thousand two hundred ninety-seven' WHERE a=10483;\nUPDATE t2 SET c='thirty-five thousand six hundred ninety' WHERE a=10484;\nUPDATE t2 SET c='fifty-one thousand nine hundred ninety-two' WHERE a=10485;\nUPDATE t2 SET c='nineteen thousand ninety-five' WHERE a=10486;\nUPDATE t2 SET c='eighty-two thousand six hundred eighty-nine' WHERE a=10487;\nUPDATE t2 SET c='forty-eight thousand eight hundred ninety-seven' WHERE a=10488;\nUPDATE t2 SET c='five thousand four hundred nineteen' WHERE a=10489;\nUPDATE t2 SET c='thirty thousand five hundred seventy-five' WHERE a=10490;\nUPDATE t2 SET c='forty-five thousand five hundred forty-five' WHERE a=10491;\nUPDATE t2 SET c='ninety-one thousand four hundred ninety-eight' WHERE a=10492;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy-eight' WHERE a=10493;\nUPDATE t2 SET c='eighty-five thousand four hundred thirty-seven' WHERE a=10494;\nUPDATE t2 SET c='forty-two thousand three hundred forty-four' WHERE a=10495;\nUPDATE t2 SET c='one thousand two hundred fifty-eight' WHERE a=10496;\nUPDATE t2 SET c='thirty-seven thousand three hundred thirty-one' WHERE a=10497;\nUPDATE t2 SET c='twelve thousand nine hundred seventy-six' WHERE a=10498;\nUPDATE t2 SET c='twenty-two thousand four hundred eighty-three' WHERE a=10499;\nUPDATE t2 SET c='fifty-nine thousand three hundred sixty' WHERE a=10500;\nUPDATE t2 SET c='fifty-three thousand sixty-five' WHERE a=10501;\nUPDATE t2 SET c='twelve thousand seven hundred ninety-five' WHERE a=10502;\nUPDATE t2 SET c='sixteen thousand seven hundred forty-one' WHERE a=10503;\nUPDATE t2 SET c='three thousand nine hundred twenty-five' WHERE a=10504;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-six' WHERE a=10505;\nUPDATE t2 SET c='forty-six thousand seven hundred forty' WHERE a=10506;\nUPDATE t2 SET c='sixty-nine thousand twenty' WHERE a=10507;\nUPDATE t2 SET c='forty-two thousand eight hundred seven' WHERE a=10508;\nUPDATE t2 SET c='fifty-two thousand two hundred ninety-eight' WHERE a=10509;\nUPDATE t2 SET c='thirty-four thousand two hundred two' WHERE a=10510;\nUPDATE t2 SET c='sixty thousand nine hundred fourteen' WHERE a=10511;\nUPDATE t2 SET c='twenty-five thousand six hundred ninety-nine' WHERE a=10512;\nUPDATE t2 SET c='ninety thousand nine hundred twenty-one' WHERE a=10513;\nUPDATE t2 SET c='thirty-five thousand three hundred ninety-four' WHERE a=10514;\nUPDATE t2 SET c='ninety-eight thousand one hundred fifty-two' WHERE a=10515;\nUPDATE t2 SET c='thirty-one thousand six hundred eighty-six' WHERE a=10516;\nUPDATE t2 SET c='seventy thousand nine hundred fifty-four' WHERE a=10517;\nUPDATE t2 SET c='forty-six thousand nine hundred forty' WHERE a=10518;\nUPDATE t2 SET c='fourteen thousand six hundred thirty' WHERE a=10519;\nUPDATE t2 SET c='eighty-eight thousand one hundred eighty-eight' WHERE a=10520;\nUPDATE t2 SET c='eleven thousand six hundred forty-nine' WHERE a=10521;\nUPDATE t2 SET c='ninety-four thousand nine hundred eleven' WHERE a=10522;\nUPDATE t2 SET c='three thousand one hundred ninety-six' WHERE a=10523;\nUPDATE t2 SET c='eighty-two thousand one hundred fifty-two' WHERE a=10524;\nUPDATE t2 SET c='twenty-one thousand nine hundred ninety-four' WHERE a=10525;\nUPDATE t2 SET c='twenty-two thousand seven hundred thirty-two' WHERE a=10526;\nUPDATE t2 SET c='fifty thousand nine hundred three' WHERE a=10527;\nUPDATE t2 SET c='thirty-three thousand six hundred seventy-three' WHERE a=10528;\nUPDATE t2 SET c='twenty-nine thousand three hundred twelve' WHERE a=10529;\nUPDATE t2 SET c='forty-three thousand nine hundred eighty-four' WHERE a=10530;\nUPDATE t2 SET c='eighty-seven thousand nine hundred one' WHERE a=10531;\nUPDATE t2 SET c='five thousand four hundred fifty-three' WHERE a=10532;\nUPDATE t2 SET c='twelve thousand three hundred thirty-three' WHERE a=10533;\nUPDATE t2 SET c='thirty thousand six hundred fifty-five' WHERE a=10534;\nUPDATE t2 SET c='two thousand two hundred forty-four' WHERE a=10535;\nUPDATE t2 SET c='fifty-six thousand two hundred twenty-eight' WHERE a=10536;\nUPDATE t2 SET c='twenty-two thousand sixty-three' WHERE a=10537;\nUPDATE t2 SET c='six thousand six hundred seventy-eight' WHERE a=10538;\nUPDATE t2 SET c='eight thousand twenty-three' WHERE a=10539;\nUPDATE t2 SET c='six thousand one hundred ninety' WHERE a=10540;\nUPDATE t2 SET c='fifty thousand eight hundred sixty-two' WHERE a=10541;\nUPDATE t2 SET c='forty-two thousand two hundred sixty-five' WHERE a=10542;\nUPDATE t2 SET c='fifty-seven thousand nine hundred five' WHERE a=10543;\nUPDATE t2 SET c='ninety-six thousand twenty-six' WHERE a=10544;\nUPDATE t2 SET c='forty-nine thousand six hundred sixty-three' WHERE a=10545;\nUPDATE t2 SET c='nineteen thousand seven hundred ninety-five' WHERE a=10546;\nUPDATE t2 SET c='twenty-four thousand seventy-six' WHERE a=10547;\nUPDATE t2 SET c='forty-three thousand eight hundred eighty-one' WHERE a=10548;\nUPDATE t2 SET c='eight thousand five hundred forty-seven' WHERE a=10549;\nUPDATE t2 SET c='thirty-seven thousand two hundred fifty' WHERE a=10550;\nUPDATE t2 SET c='twenty-six thousand nine hundred seventy-nine' WHERE a=10551;\nUPDATE t2 SET c='forty thousand seven hundred seventy-six' WHERE a=10552;\nUPDATE t2 SET c='eighty-seven thousand three hundred eighty-one' WHERE a=10553;\nUPDATE t2 SET c='forty-nine thousand eight hundred forty-six' WHERE a=10554;\nUPDATE t2 SET c='fifty-eight thousand seven hundred nine' WHERE a=10555;\nUPDATE t2 SET c='fourteen thousand three hundred sixty-five' WHERE a=10556;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty-five' WHERE a=10557;\nUPDATE t2 SET c='four thousand three hundred eighty-two' WHERE a=10558;\nUPDATE t2 SET c='forty-five thousand four hundred eighty' WHERE a=10559;\nUPDATE t2 SET c='seventy-two thousand four hundred twenty-nine' WHERE a=10560;\nUPDATE t2 SET c='thirty-nine thousand seven hundred eighty' WHERE a=10561;\nUPDATE t2 SET c='forty thousand eighty-four' WHERE a=10562;\nUPDATE t2 SET c='fifty-seven thousand five hundred forty-four' WHERE a=10563;\nUPDATE t2 SET c='twenty-five thousand nine hundred fifty' WHERE a=10564;\nUPDATE t2 SET c='ninety thousand four hundred twenty-two' WHERE a=10565;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety-five' WHERE a=10566;\nUPDATE t2 SET c='forty-eight thousand nine hundred thirty-four' WHERE a=10567;\nUPDATE t2 SET c='ninety-one thousand three hundred ninety-five' WHERE a=10568;\nUPDATE t2 SET c='seventy thousand six hundred forty-seven' WHERE a=10569;\nUPDATE t2 SET c='seventy-five thousand three hundred fifty-six' WHERE a=10570;\nUPDATE t2 SET c='forty-three thousand nine hundred thirty-seven' WHERE a=10571;\nUPDATE t2 SET c='forty-five thousand forty-three' WHERE a=10572;\nUPDATE t2 SET c='seven thousand two hundred eighty-four' WHERE a=10573;\nUPDATE t2 SET c='ninety-one thousand three hundred ninety-three' WHERE a=10574;\nUPDATE t2 SET c='sixty-one thousand three hundred twenty-four' WHERE a=10575;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-eight' WHERE a=10576;\nUPDATE t2 SET c='twenty-one thousand three hundred seventeen' WHERE a=10577;\nUPDATE t2 SET c='ninety-seven thousand sixty-seven' WHERE a=10578;\nUPDATE t2 SET c='twenty-two thousand seven hundred sixty' WHERE a=10579;\nUPDATE t2 SET c='three thousand four hundred sixteen' WHERE a=10580;\nUPDATE t2 SET c='six thousand six hundred forty-seven' WHERE a=10581;\nUPDATE t2 SET c='seventy-six thousand five hundred sixty' WHERE a=10582;\nUPDATE t2 SET c='twelve thousand four hundred sixty-five' WHERE a=10583;\nUPDATE t2 SET c='ninety-one thousand five hundred sixty-one' WHERE a=10584;\nUPDATE t2 SET c='two thousand two hundred forty-eight' WHERE a=10585;\nUPDATE t2 SET c='one thousand one hundred seventy-one' WHERE a=10586;\nUPDATE t2 SET c='eighty-four thousand forty-nine' WHERE a=10587;\nUPDATE t2 SET c='thirty-seven thousand three hundred eighty-four' WHERE a=10588;\nUPDATE t2 SET c='sixty-one thousand nine hundred seventy-four' WHERE a=10589;\nUPDATE t2 SET c='thirteen thousand four hundred fifty-seven' WHERE a=10590;\nUPDATE t2 SET c='sixty-three thousand five hundred fifty-eight' WHERE a=10591;\nUPDATE t2 SET c='ten thousand three hundred ninety-eight' WHERE a=10592;\nUPDATE t2 SET c='eighty-eight thousand thirty-two' WHERE a=10593;\nUPDATE t2 SET c='eighty-one thousand two hundred forty-eight' WHERE a=10594;\nUPDATE t2 SET c='nineteen thousand five hundred seventy' WHERE a=10595;\nUPDATE t2 SET c='twenty thousand two hundred' WHERE a=10596;\nUPDATE t2 SET c='seventy-six thousand fifty-four' WHERE a=10597;\nUPDATE t2 SET c='thirty-one thousand one hundred two' WHERE a=10598;\nUPDATE t2 SET c='ninety-one thousand two hundred sixty-nine' WHERE a=10599;\nUPDATE t2 SET c='ninety-two thousand six hundred twenty-two' WHERE a=10600;\nUPDATE t2 SET c='thirty-six thousand three hundred eighty-eight' WHERE a=10601;\nUPDATE t2 SET c='sixty-seven thousand eight hundred thirty-nine' WHERE a=10602;\nUPDATE t2 SET c='fifty-two thousand seven hundred sixty-one' WHERE a=10603;\nUPDATE t2 SET c='ninety-three thousand four hundred fifty-five' WHERE a=10604;\nUPDATE t2 SET c='thirty thousand eight hundred sixty' WHERE a=10605;\nUPDATE t2 SET c='seventeen thousand three hundred thirty-four' WHERE a=10606;\nUPDATE t2 SET c='ninety-nine thousand one hundred three' WHERE a=10607;\nUPDATE t2 SET c='twenty-four thousand eight hundred forty-two' WHERE a=10608;\nUPDATE t2 SET c='fifty-eight thousand one hundred forty-four' WHERE a=10609;\nUPDATE t2 SET c='eighty thousand seven hundred eighteen' WHERE a=10610;\nUPDATE t2 SET c='sixty-five thousand nine hundred fifty-nine' WHERE a=10611;\nUPDATE t2 SET c='fifty-one thousand three hundred nineteen' WHERE a=10612;\nUPDATE t2 SET c='four thousand seven hundred sixty-six' WHERE a=10613;\nUPDATE t2 SET c='eighty-six thousand six hundred seventy-nine' WHERE a=10614;\nUPDATE t2 SET c='forty-three thousand thirty-one' WHERE a=10615;\nUPDATE t2 SET c='ten thousand one hundred fifty-two' WHERE a=10616;\nUPDATE t2 SET c='fifty thousand two hundred eighty-five' WHERE a=10617;\nUPDATE t2 SET c='fourteen thousand eight hundred fifty-six' WHERE a=10618;\nUPDATE t2 SET c='fifty-five thousand four hundred eighty-two' WHERE a=10619;\nUPDATE t2 SET c='seventy-five thousand eight hundred twenty-five' WHERE a=10620;\nUPDATE t2 SET c='twenty-six thousand four hundred seventy-three' WHERE a=10621;\nUPDATE t2 SET c='eighty-six thousand eight hundred three' WHERE a=10622;\nUPDATE t2 SET c='sixty-four thousand four hundred eighty-nine' WHERE a=10623;\nUPDATE t2 SET c='eighty thousand seven hundred ninety-four' WHERE a=10624;\nUPDATE t2 SET c='twenty-five thousand seven hundred seventy-five' WHERE a=10625;\nUPDATE t2 SET c='ninety-seven thousand six hundred twenty' WHERE a=10626;\nUPDATE t2 SET c='sixty-six thousand three hundred thirty-nine' WHERE a=10627;\nUPDATE t2 SET c='thirty-one thousand six hundred thirteen' WHERE a=10628;\nUPDATE t2 SET c='fifteen thousand one hundred eighty-six' WHERE a=10629;\nUPDATE t2 SET c='ninety-seven thousand eight hundred' WHERE a=10630;\nUPDATE t2 SET c='seventy-nine thousand eight hundred thirty-four' WHERE a=10631;\nUPDATE t2 SET c='eleven thousand six hundred sixty' WHERE a=10632;\nUPDATE t2 SET c='seventy thousand seven hundred ninety-eight' WHERE a=10633;\nUPDATE t2 SET c='fifty-six thousand fifty-three' WHERE a=10634;\nUPDATE t2 SET c='eighty thousand seven hundred sixty-one' WHERE a=10635;\nUPDATE t2 SET c='seventy thousand seven hundred ninety-six' WHERE a=10636;\nUPDATE t2 SET c='eight thousand six hundred sixty-six' WHERE a=10637;\nUPDATE t2 SET c='forty-nine thousand one hundred ninety-four' WHERE a=10638;\nUPDATE t2 SET c='sixty-seven thousand seven hundred ninety' WHERE a=10639;\nUPDATE t2 SET c='thirty-nine thousand seven hundred three' WHERE a=10640;\nUPDATE t2 SET c='ninety-nine thousand seventy-six' WHERE a=10641;\nUPDATE t2 SET c='eight thousand one hundred twenty-nine' WHERE a=10642;\nUPDATE t2 SET c='seventy-eight thousand two hundred thirty-six' WHERE a=10643;\nUPDATE t2 SET c='four thousand twenty-nine' WHERE a=10644;\nUPDATE t2 SET c='forty-nine thousand four hundred fifteen' WHERE a=10645;\nUPDATE t2 SET c='fifty-two thousand four hundred forty-five' WHERE a=10646;\nUPDATE t2 SET c='thirty thousand four hundred thirteen' WHERE a=10647;\nUPDATE t2 SET c='six thousand four hundred seventeen' WHERE a=10648;\nUPDATE t2 SET c='ninety-four thousand one hundred nineteen' WHERE a=10649;\nUPDATE t2 SET c='thirty-one thousand nine hundred eighty' WHERE a=10650;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty' WHERE a=10651;\nUPDATE t2 SET c='sixty thousand six hundred thirty-three' WHERE a=10652;\nUPDATE t2 SET c='three thousand six hundred fifty' WHERE a=10653;\nUPDATE t2 SET c='nineteen thousand one hundred twenty-five' WHERE a=10654;\nUPDATE t2 SET c='twenty-one thousand eight hundred fifty-three' WHERE a=10655;\nUPDATE t2 SET c='eighteen thousand one hundred eighty-seven' WHERE a=10656;\nUPDATE t2 SET c='six thousand one hundred twenty-nine' WHERE a=10657;\nUPDATE t2 SET c='twenty-seven thousand nine hundred seventy-one' WHERE a=10658;\nUPDATE t2 SET c='ninety-two thousand six hundred eighty' WHERE a=10659;\nUPDATE t2 SET c='forty-seven thousand six hundred forty-five' WHERE a=10660;\nUPDATE t2 SET c='forty-nine thousand one hundred eight' WHERE a=10661;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty' WHERE a=10662;\nUPDATE t2 SET c='eighty-two thousand eight hundred twenty-one' WHERE a=10663;\nUPDATE t2 SET c='ninety-two thousand eight hundred ninety-eight' WHERE a=10664;\nUPDATE t2 SET c='ninety-six thousand five hundred thirty-three' WHERE a=10665;\nUPDATE t2 SET c='sixty-seven thousand eight hundred one' WHERE a=10666;\nUPDATE t2 SET c='twelve thousand three hundred seventy' WHERE a=10667;\nUPDATE t2 SET c='thirty thousand eight hundred seven' WHERE a=10668;\nUPDATE t2 SET c='fifty-one thousand two hundred sixty-six' WHERE a=10669;\nUPDATE t2 SET c='eighty-seven thousand twenty-two' WHERE a=10670;\nUPDATE t2 SET c='eighty-four thousand eighty-seven' WHERE a=10671;\nUPDATE t2 SET c='forty-one thousand twenty-one' WHERE a=10672;\nUPDATE t2 SET c='six thousand nine hundred fifty-five' WHERE a=10673;\nUPDATE t2 SET c='sixty-four thousand two hundred seventy-seven' WHERE a=10674;\nUPDATE t2 SET c='sixty-three thousand six hundred eighty-five' WHERE a=10675;\nUPDATE t2 SET c='forty-nine thousand twenty-seven' WHERE a=10676;\nUPDATE t2 SET c='ninety-three thousand seven hundred forty-four' WHERE a=10677;\nUPDATE t2 SET c='three thousand five hundred ninety' WHERE a=10678;\nUPDATE t2 SET c='seventy-one thousand one hundred five' WHERE a=10679;\nUPDATE t2 SET c='seven hundred eighteen' WHERE a=10680;\nUPDATE t2 SET c='twenty-eight thousand two hundred ninety-four' WHERE a=10681;\nUPDATE t2 SET c='ninety-six thousand four hundred thirty-eight' WHERE a=10682;\nUPDATE t2 SET c='sixty-five thousand nine hundred fourteen' WHERE a=10683;\nUPDATE t2 SET c='twenty-three thousand five' WHERE a=10684;\nUPDATE t2 SET c='eighty-seven thousand three hundred three' WHERE a=10685;\nUPDATE t2 SET c='nineteen thousand one hundred sixty-seven' WHERE a=10686;\nUPDATE t2 SET c='twenty-three thousand one hundred eleven' WHERE a=10687;\nUPDATE t2 SET c='seventy-four thousand thirty-nine' WHERE a=10688;\nUPDATE t2 SET c='thirty-four thousand one hundred seventy-one' WHERE a=10689;\nUPDATE t2 SET c='twenty-four thousand two hundred twelve' WHERE a=10690;\nUPDATE t2 SET c='seventy thousand two hundred four' WHERE a=10691;\nUPDATE t2 SET c='ninety-nine thousand nine hundred thirty-two' WHERE a=10692;\nUPDATE t2 SET c='thirty-four thousand five hundred ninety-three' WHERE a=10693;\nUPDATE t2 SET c='thirty-seven thousand seven hundred ninety' WHERE a=10694;\nUPDATE t2 SET c='fifty-five thousand seven hundred seventy' WHERE a=10695;\nUPDATE t2 SET c='thirty-four thousand seven hundred twenty-seven' WHERE a=10696;\nUPDATE t2 SET c='eighty-seven thousand five hundred twenty-two' WHERE a=10697;\nUPDATE t2 SET c='forty-one thousand nine hundred forty-four' WHERE a=10698;\nUPDATE t2 SET c='ninety-three thousand five hundred sixty-eight' WHERE a=10699;\nUPDATE t2 SET c='thirty-five thousand seven hundred seventy-seven' WHERE a=10700;\nUPDATE t2 SET c='sixty thousand four hundred seventy-one' WHERE a=10701;\nUPDATE t2 SET c='thirty-eight thousand sixty-eight' WHERE a=10702;\nUPDATE t2 SET c='thirty-five thousand two hundred ninety-one' WHERE a=10703;\nUPDATE t2 SET c='forty-three thousand seven hundred fifty-seven' WHERE a=10704;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-four' WHERE a=10705;\nUPDATE t2 SET c='ninety-eight thousand four hundred ninety' WHERE a=10706;\nUPDATE t2 SET c='four thousand eight hundred forty-eight' WHERE a=10707;\nUPDATE t2 SET c='thirty-nine thousand five hundred ninety' WHERE a=10708;\nUPDATE t2 SET c='eighty-six thousand three hundred five' WHERE a=10709;\nUPDATE t2 SET c='eighteen thousand six hundred twenty' WHERE a=10710;\nUPDATE t2 SET c='fifty-six thousand three hundred fifty-six' WHERE a=10711;\nUPDATE t2 SET c='ninety-three thousand one hundred twenty-four' WHERE a=10712;\nUPDATE t2 SET c='eighty-nine thousand eight hundred seventy-six' WHERE a=10713;\nUPDATE t2 SET c='fifty-three thousand two hundred thirty-six' WHERE a=10714;\nUPDATE t2 SET c='nineteen thousand nine hundred seventy-one' WHERE a=10715;\nUPDATE t2 SET c='fifty thousand three hundred twelve' WHERE a=10716;\nUPDATE t2 SET c='nine thousand three hundred eighty-five' WHERE a=10717;\nUPDATE t2 SET c='thirty-eight thousand three hundred forty-one' WHERE a=10718;\nUPDATE t2 SET c='eighty-eight thousand three hundred twenty' WHERE a=10719;\nUPDATE t2 SET c='seventy-three thousand seven hundred forty-one' WHERE a=10720;\nUPDATE t2 SET c='thirty-six thousand eight hundred eighty-seven' WHERE a=10721;\nUPDATE t2 SET c='ninety-seven thousand fifteen' WHERE a=10722;\nUPDATE t2 SET c='sixty-three thousand sixty-five' WHERE a=10723;\nUPDATE t2 SET c='seventy-six thousand seven hundred sixty' WHERE a=10724;\nUPDATE t2 SET c='eleven thousand nine hundred seventy-four' WHERE a=10725;\nUPDATE t2 SET c='ninety-eight thousand three hundred ten' WHERE a=10726;\nUPDATE t2 SET c='twenty-one thousand one hundred forty-nine' WHERE a=10727;\nUPDATE t2 SET c='seventeen thousand two hundred ninety-one' WHERE a=10728;\nUPDATE t2 SET c='eighteen thousand nine hundred nineteen' WHERE a=10729;\nUPDATE t2 SET c='twenty-eight thousand three hundred ninety-three' WHERE a=10730;\nUPDATE t2 SET c='ninety thousand nine hundred fifty-six' WHERE a=10731;\nUPDATE t2 SET c='seventy-four thousand seven hundred forty-four' WHERE a=10732;\nUPDATE t2 SET c='forty-one thousand four hundred forty-two' WHERE a=10733;\nUPDATE t2 SET c='ninety-seven thousand seven hundred seventy-three' WHERE a=10734;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty-eight' WHERE a=10735;\nUPDATE t2 SET c='eighty-seven thousand two hundred twenty-two' WHERE a=10736;\nUPDATE t2 SET c='sixty-seven thousand four hundred twenty-nine' WHERE a=10737;\nUPDATE t2 SET c='thirty-nine thousand six hundred eighty-five' WHERE a=10738;\nUPDATE t2 SET c='sixty-eight thousand three hundred eighty-one' WHERE a=10739;\nUPDATE t2 SET c='forty-eight thousand sixty-four' WHERE a=10740;\nUPDATE t2 SET c='forty-six thousand three hundred ninety-three' WHERE a=10741;\nUPDATE t2 SET c='sixty-seven thousand five hundred eleven' WHERE a=10742;\nUPDATE t2 SET c='six thousand eight hundred sixty-three' WHERE a=10743;\nUPDATE t2 SET c='seventy-two thousand seven hundred one' WHERE a=10744;\nUPDATE t2 SET c='thirty-six thousand eighteen' WHERE a=10745;\nUPDATE t2 SET c='seventy-six thousand seven hundred eighty-seven' WHERE a=10746;\nUPDATE t2 SET c='fifty-one thousand two hundred eighty-three' WHERE a=10747;\nUPDATE t2 SET c='three thousand ninety-four' WHERE a=10748;\nUPDATE t2 SET c='eleven thousand eight hundred eighty-four' WHERE a=10749;\nUPDATE t2 SET c='fifty thousand two hundred eighty-nine' WHERE a=10750;\nUPDATE t2 SET c='six thousand two hundred forty-six' WHERE a=10751;\nUPDATE t2 SET c='fifty-four thousand eight hundred fifty-four' WHERE a=10752;\nUPDATE t2 SET c='four thousand seven hundred ninety-one' WHERE a=10753;\nUPDATE t2 SET c='eighty-seven thousand eight hundred eighty-three' WHERE a=10754;\nUPDATE t2 SET c='seventeen thousand five hundred twenty-three' WHERE a=10755;\nUPDATE t2 SET c='eighty-one thousand two hundred eighty-four' WHERE a=10756;\nUPDATE t2 SET c='sixty-two thousand two hundred twenty-three' WHERE a=10757;\nUPDATE t2 SET c='ninety-five thousand four hundred ninety-six' WHERE a=10758;\nUPDATE t2 SET c='forty-five thousand nine hundred forty-one' WHERE a=10759;\nUPDATE t2 SET c='twenty-four thousand twenty-seven' WHERE a=10760;\nUPDATE t2 SET c='eighteen thousand two hundred two' WHERE a=10761;\nUPDATE t2 SET c='eighty-nine thousand five hundred eighty-seven' WHERE a=10762;\nUPDATE t2 SET c='twenty-one thousand eighty-nine' WHERE a=10763;\nUPDATE t2 SET c='four hundred sixty-nine' WHERE a=10764;\nUPDATE t2 SET c='six thousand twenty' WHERE a=10765;\nUPDATE t2 SET c='seventy thousand five hundred seventy-seven' WHERE a=10766;\nUPDATE t2 SET c='sixty-one thousand nine hundred seventy-five' WHERE a=10767;\nUPDATE t2 SET c='sixty-six thousand four hundred fifty-nine' WHERE a=10768;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-seven' WHERE a=10769;\nUPDATE t2 SET c='seventy-seven thousand seven hundred thirty-one' WHERE a=10770;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-seven' WHERE a=10771;\nUPDATE t2 SET c='seventy-three thousand one hundred twenty-nine' WHERE a=10772;\nUPDATE t2 SET c='seventeen thousand nine hundred sixty-seven' WHERE a=10773;\nUPDATE t2 SET c='ninety-six thousand five hundred sixty-nine' WHERE a=10774;\nUPDATE t2 SET c='fifty-three thousand five hundred thirty-five' WHERE a=10775;\nUPDATE t2 SET c='seventy-two thousand six hundred ninety' WHERE a=10776;\nUPDATE t2 SET c='forty-one thousand four hundred fifty-eight' WHERE a=10777;\nUPDATE t2 SET c='ten thousand six hundred one' WHERE a=10778;\nUPDATE t2 SET c='eighty-eight thousand eight hundred five' WHERE a=10779;\nUPDATE t2 SET c='fifty-five thousand two hundred thirty-three' WHERE a=10780;\nUPDATE t2 SET c='seventy-nine thousand three hundred twenty-four' WHERE a=10781;\nUPDATE t2 SET c='eighty-seven thousand eight hundred eighty-five' WHERE a=10782;\nUPDATE t2 SET c='forty-three thousand one hundred seventy-six' WHERE a=10783;\nUPDATE t2 SET c='eighty-four thousand eight hundred sixty-seven' WHERE a=10784;\nUPDATE t2 SET c='eighty-six thousand six hundred fifty-three' WHERE a=10785;\nUPDATE t2 SET c='fifty-four thousand six hundred seventy-seven' WHERE a=10786;\nUPDATE t2 SET c='sixty-four thousand three hundred fifty-three' WHERE a=10787;\nUPDATE t2 SET c='seventy-eight thousand seven hundred thirty-nine' WHERE a=10788;\nUPDATE t2 SET c='thirty-eight thousand one hundred fifty-six' WHERE a=10789;\nUPDATE t2 SET c='two thousand four hundred nine' WHERE a=10790;\nUPDATE t2 SET c='twenty-three thousand two hundred seven' WHERE a=10791;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-three' WHERE a=10792;\nUPDATE t2 SET c='fifty-four thousand six hundred nineteen' WHERE a=10793;\nUPDATE t2 SET c='fifty-five thousand six hundred one' WHERE a=10794;\nUPDATE t2 SET c='fifty-nine thousand nine hundred thirty-two' WHERE a=10795;\nUPDATE t2 SET c='eighty-eight thousand three hundred ninety-nine' WHERE a=10796;\nUPDATE t2 SET c='eighteen thousand five hundred forty-four' WHERE a=10797;\nUPDATE t2 SET c='eighty thousand nine hundred thirty-nine' WHERE a=10798;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eight' WHERE a=10799;\nUPDATE t2 SET c='ninety-three thousand three hundred twenty-three' WHERE a=10800;\nUPDATE t2 SET c='seventy-one thousand three hundred seventeen' WHERE a=10801;\nUPDATE t2 SET c='sixty-three thousand four hundred seventeen' WHERE a=10802;\nUPDATE t2 SET c='sixty-three thousand seven hundred sixty-four' WHERE a=10803;\nUPDATE t2 SET c='thirty-six thousand nine hundred forty-eight' WHERE a=10804;\nUPDATE t2 SET c='forty-three thousand six hundred eighty-three' WHERE a=10805;\nUPDATE t2 SET c='twenty-nine thousand nine hundred ninety-two' WHERE a=10806;\nUPDATE t2 SET c='sixty thousand eight hundred ninety-eight' WHERE a=10807;\nUPDATE t2 SET c='ninety-nine thousand one hundred sixty-one' WHERE a=10808;\nUPDATE t2 SET c='fifty-one thousand three hundred forty' WHERE a=10809;\nUPDATE t2 SET c='ninety-four thousand two hundred thirty-six' WHERE a=10810;\nUPDATE t2 SET c='twelve thousand seven hundred twenty-three' WHERE a=10811;\nUPDATE t2 SET c='thirty-six thousand nine hundred sixty-six' WHERE a=10812;\nUPDATE t2 SET c='eighty-six thousand eight hundred fifty-two' WHERE a=10813;\nUPDATE t2 SET c='sixty-four thousand seven hundred thirty-eight' WHERE a=10814;\nUPDATE t2 SET c='sixty-one thousand thirty-one' WHERE a=10815;\nUPDATE t2 SET c='seventy-seven thousand two hundred eighty-seven' WHERE a=10816;\nUPDATE t2 SET c='eighty-five thousand one hundred seventy-seven' WHERE a=10817;\nUPDATE t2 SET c='twenty-two thousand eight hundred ninety-two' WHERE a=10818;\nUPDATE t2 SET c='sixty-four thousand seven hundred thirty-three' WHERE a=10819;\nUPDATE t2 SET c='ninety-nine thousand eighty-three' WHERE a=10820;\nUPDATE t2 SET c='eleven thousand seven hundred forty' WHERE a=10821;\nUPDATE t2 SET c='thirty-eight thousand six hundred sixteen' WHERE a=10822;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty-six' WHERE a=10823;\nUPDATE t2 SET c='forty-five thousand five hundred ten' WHERE a=10824;\nUPDATE t2 SET c='ninety-nine thousand seven hundred seventy-five' WHERE a=10825;\nUPDATE t2 SET c='seventy-six thousand six hundred fifty' WHERE a=10826;\nUPDATE t2 SET c='twenty-two thousand six hundred six' WHERE a=10827;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty-seven' WHERE a=10828;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-four' WHERE a=10829;\nUPDATE t2 SET c='forty-one thousand four hundred thirty-seven' WHERE a=10830;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-eight' WHERE a=10831;\nUPDATE t2 SET c='fifty-nine thousand five hundred fourteen' WHERE a=10832;\nUPDATE t2 SET c='twenty-six thousand three hundred ninety-seven' WHERE a=10833;\nUPDATE t2 SET c='forty-eight thousand nine hundred thirty-five' WHERE a=10834;\nUPDATE t2 SET c='thirty-four thousand six hundred seven' WHERE a=10835;\nUPDATE t2 SET c='five thousand eight hundred thirty-four' WHERE a=10836;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty-one' WHERE a=10837;\nUPDATE t2 SET c='twenty-two thousand four hundred fifty-three' WHERE a=10838;\nUPDATE t2 SET c='fifty-three thousand five hundred twenty-two' WHERE a=10839;\nUPDATE t2 SET c='sixty-eight thousand twenty-one' WHERE a=10840;\nUPDATE t2 SET c='eighty-one thousand seven hundred fifty-two' WHERE a=10841;\nUPDATE t2 SET c='seven thousand three hundred twenty-three' WHERE a=10842;\nUPDATE t2 SET c='fourteen thousand four hundred eighty' WHERE a=10843;\nUPDATE t2 SET c='ninety-six thousand eight hundred seventy-three' WHERE a=10844;\nUPDATE t2 SET c='thirty-four thousand two hundred seventy' WHERE a=10845;\nUPDATE t2 SET c='sixty-three thousand one hundred thirty-seven' WHERE a=10846;\nUPDATE t2 SET c='sixty-two thousand four hundred eighty-nine' WHERE a=10847;\nUPDATE t2 SET c='seventeen thousand one hundred thirty-three' WHERE a=10848;\nUPDATE t2 SET c='sixty-nine thousand seven hundred five' WHERE a=10849;\nUPDATE t2 SET c='forty-four thousand two hundred thirty-seven' WHERE a=10850;\nUPDATE t2 SET c='thirty-six thousand seven hundred thirty-six' WHERE a=10851;\nUPDATE t2 SET c='eighty-nine thousand two hundred sixty-five' WHERE a=10852;\nUPDATE t2 SET c='twenty thousand two hundred sixty-two' WHERE a=10853;\nUPDATE t2 SET c='eighty-six thousand seven hundred thirty-two' WHERE a=10854;\nUPDATE t2 SET c='forty-five thousand six hundred fifteen' WHERE a=10855;\nUPDATE t2 SET c='eighty thousand seven hundred twenty-five' WHERE a=10856;\nUPDATE t2 SET c='thirty-two thousand eight hundred ninety-three' WHERE a=10857;\nUPDATE t2 SET c='seventy-seven thousand three hundred twenty-eight' WHERE a=10858;\nUPDATE t2 SET c='sixty thousand three hundred eighty' WHERE a=10859;\nUPDATE t2 SET c='fifty-nine thousand three hundred eighty-five' WHERE a=10860;\nUPDATE t2 SET c='eighty-eight thousand three hundred eighty-six' WHERE a=10861;\nUPDATE t2 SET c='twenty-one thousand thirty-two' WHERE a=10862;\nUPDATE t2 SET c='fifty-three thousand seventy-three' WHERE a=10863;\nUPDATE t2 SET c='eighty-four thousand seven hundred thirty-two' WHERE a=10864;\nUPDATE t2 SET c='sixty-seven thousand four hundred six' WHERE a=10865;\nUPDATE t2 SET c='twenty-six thousand two hundred fifty-two' WHERE a=10866;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-two' WHERE a=10867;\nUPDATE t2 SET c='sixty-nine thousand five hundred forty' WHERE a=10868;\nUPDATE t2 SET c='ninety-two thousand six hundred six' WHERE a=10869;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-three' WHERE a=10870;\nUPDATE t2 SET c='nine thousand six hundred two' WHERE a=10871;\nUPDATE t2 SET c='nine hundred fifty-two' WHERE a=10872;\nUPDATE t2 SET c='ninety thousand nine hundred eight' WHERE a=10873;\nUPDATE t2 SET c='seventy-four thousand six hundred eighty-eight' WHERE a=10874;\nUPDATE t2 SET c='forty-two thousand seven hundred eight' WHERE a=10875;\nUPDATE t2 SET c='forty-five thousand six hundred seventy-seven' WHERE a=10876;\nUPDATE t2 SET c='forty-six thousand two hundred eighty-eight' WHERE a=10877;\nUPDATE t2 SET c='twenty-five thousand two hundred seventy-four' WHERE a=10878;\nUPDATE t2 SET c='nineteen thousand one hundred ninety-eight' WHERE a=10879;\nUPDATE t2 SET c='fifty thousand three hundred eighty' WHERE a=10880;\nUPDATE t2 SET c='seventy thousand five hundred forty-nine' WHERE a=10881;\nUPDATE t2 SET c='sixty-three thousand four hundred two' WHERE a=10882;\nUPDATE t2 SET c='thirty-seven thousand five hundred fifty-three' WHERE a=10883;\nUPDATE t2 SET c='fifty-nine thousand seven hundred thirty' WHERE a=10884;\nUPDATE t2 SET c='twenty-nine thousand nine hundred thirty-two' WHERE a=10885;\nUPDATE t2 SET c='eighty-three thousand one hundred fifteen' WHERE a=10886;\nUPDATE t2 SET c='thirty-three thousand five hundred sixty-two' WHERE a=10887;\nUPDATE t2 SET c='twenty-nine thousand eight hundred thirty' WHERE a=10888;\nUPDATE t2 SET c='sixty-seven thousand seven hundred five' WHERE a=10889;\nUPDATE t2 SET c='eight hundred thirteen' WHERE a=10890;\nUPDATE t2 SET c='seventeen thousand four hundred eighty' WHERE a=10891;\nUPDATE t2 SET c='twenty thousand eight hundred six' WHERE a=10892;\nUPDATE t2 SET c='ninety-eight thousand nine hundred seventy-eight' WHERE a=10893;\nUPDATE t2 SET c='eighty-nine thousand six hundred eighty-nine' WHERE a=10894;\nUPDATE t2 SET c='eleven thousand five hundred five' WHERE a=10895;\nUPDATE t2 SET c='fifty-four thousand seven hundred eighty' WHERE a=10896;\nUPDATE t2 SET c='forty-eight thousand four hundred nineteen' WHERE a=10897;\nUPDATE t2 SET c='ninety-seven thousand seven hundred seventy-nine' WHERE a=10898;\nUPDATE t2 SET c='eighty-one thousand three hundred twenty-four' WHERE a=10899;\nUPDATE t2 SET c='eighty thousand twenty-four' WHERE a=10900;\nUPDATE t2 SET c='seventy-six thousand two hundred sixteen' WHERE a=10901;\nUPDATE t2 SET c='seventy-three thousand thirty' WHERE a=10902;\nUPDATE t2 SET c='fifty-two thousand nine hundred forty-six' WHERE a=10903;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty-one' WHERE a=10904;\nUPDATE t2 SET c='twenty thousand seven hundred eighty-three' WHERE a=10905;\nUPDATE t2 SET c='ninety-seven thousand four hundred nineteen' WHERE a=10906;\nUPDATE t2 SET c='eighty-six thousand two hundred sixteen' WHERE a=10907;\nUPDATE t2 SET c='forty-one thousand eight hundred three' WHERE a=10908;\nUPDATE t2 SET c='forty-three thousand two hundred sixty-four' WHERE a=10909;\nUPDATE t2 SET c='seventy-four thousand three hundred seven' WHERE a=10910;\nUPDATE t2 SET c='thirty-two thousand two hundred ninety-seven' WHERE a=10911;\nUPDATE t2 SET c='fifty-one thousand nine hundred forty' WHERE a=10912;\nUPDATE t2 SET c='thirty thousand two hundred seventy-three' WHERE a=10913;\nUPDATE t2 SET c='seven thousand six hundred five' WHERE a=10914;\nUPDATE t2 SET c='thirty-three thousand seven hundred seven' WHERE a=10915;\nUPDATE t2 SET c='thirty-three thousand two hundred sixteen' WHERE a=10916;\nUPDATE t2 SET c='seventeen thousand four hundred eighty' WHERE a=10917;\nUPDATE t2 SET c='sixty-five thousand two hundred fifty-nine' WHERE a=10918;\nUPDATE t2 SET c='fifty-three thousand three hundred forty' WHERE a=10919;\nUPDATE t2 SET c='seventy-one thousand one hundred fifty-nine' WHERE a=10920;\nUPDATE t2 SET c='eighty-nine thousand one hundred fifteen' WHERE a=10921;\nUPDATE t2 SET c='three thousand nine hundred fifty-four' WHERE a=10922;\nUPDATE t2 SET c='eighteen thousand eight hundred thirty-eight' WHERE a=10923;\nUPDATE t2 SET c='seventy-three thousand three hundred thirteen' WHERE a=10924;\nUPDATE t2 SET c='twenty-five thousand three hundred fifty-one' WHERE a=10925;\nUPDATE t2 SET c='thirty-one thousand one hundred fifteen' WHERE a=10926;\nUPDATE t2 SET c='thirty-seven thousand nine hundred twelve' WHERE a=10927;\nUPDATE t2 SET c='ninety-eight thousand three hundred sixteen' WHERE a=10928;\nUPDATE t2 SET c='fifty-three thousand four hundred sixty-five' WHERE a=10929;\nUPDATE t2 SET c='seventy-four thousand three hundred sixty-five' WHERE a=10930;\nUPDATE t2 SET c='seventy-one thousand four hundred seventeen' WHERE a=10931;\nUPDATE t2 SET c='sixty-four thousand four hundred eight' WHERE a=10932;\nUPDATE t2 SET c='eighteen thousand four hundred four' WHERE a=10933;\nUPDATE t2 SET c='sixty-four thousand five hundred thirty-eight' WHERE a=10934;\nUPDATE t2 SET c='thirty-five thousand forty-three' WHERE a=10935;\nUPDATE t2 SET c='fifty-five thousand six hundred eighty' WHERE a=10936;\nUPDATE t2 SET c='seventy-seven thousand three hundred fifty-six' WHERE a=10937;\nUPDATE t2 SET c='sixty-seven thousand eight hundred twenty-two' WHERE a=10938;\nUPDATE t2 SET c='ninety thousand three hundred fifty-six' WHERE a=10939;\nUPDATE t2 SET c='seventy-four thousand five hundred seventy-two' WHERE a=10940;\nUPDATE t2 SET c='seventeen thousand six hundred seventy-five' WHERE a=10941;\nUPDATE t2 SET c='thirty-three thousand six hundred seventy-one' WHERE a=10942;\nUPDATE t2 SET c='sixty-three thousand five hundred thirty-six' WHERE a=10943;\nUPDATE t2 SET c='seventy-nine thousand two hundred eighty-three' WHERE a=10944;\nUPDATE t2 SET c='ninety-four thousand seven hundred eighty-eight' WHERE a=10945;\nUPDATE t2 SET c='ninety-three thousand one hundred thirty-four' WHERE a=10946;\nUPDATE t2 SET c='fifty-four thousand five hundred eighty-four' WHERE a=10947;\nUPDATE t2 SET c='eighty-two thousand two hundred ninety-four' WHERE a=10948;\nUPDATE t2 SET c='fourteen thousand seven hundred seventy-four' WHERE a=10949;\nUPDATE t2 SET c='forty-nine thousand five hundred fifty-four' WHERE a=10950;\nUPDATE t2 SET c='seventy-one thousand forty-six' WHERE a=10951;\nUPDATE t2 SET c='nineteen thousand five hundred thirty-seven' WHERE a=10952;\nUPDATE t2 SET c='eighty-two thousand four hundred twenty-four' WHERE a=10953;\nUPDATE t2 SET c='forty-three thousand one hundred eighty-seven' WHERE a=10954;\nUPDATE t2 SET c='four thousand nine hundred seventy-eight' WHERE a=10955;\nUPDATE t2 SET c='fifty-two thousand four hundred ten' WHERE a=10956;\nUPDATE t2 SET c='one thousand four hundred fifty-one' WHERE a=10957;\nUPDATE t2 SET c='fifty-eight thousand two hundred fifty-eight' WHERE a=10958;\nUPDATE t2 SET c='eleven thousand nine hundred forty' WHERE a=10959;\nUPDATE t2 SET c='twenty thousand three hundred fourteen' WHERE a=10960;\nUPDATE t2 SET c='sixty-eight thousand four hundred twenty-seven' WHERE a=10961;\nUPDATE t2 SET c='eight thousand six hundred fifty-nine' WHERE a=10962;\nUPDATE t2 SET c='sixty-four thousand two hundred thirty-four' WHERE a=10963;\nUPDATE t2 SET c='seventy-seven thousand seven hundred twenty-seven' WHERE a=10964;\nUPDATE t2 SET c='twenty thousand seven hundred twenty-two' WHERE a=10965;\nUPDATE t2 SET c='fifty-nine thousand six hundred forty-five' WHERE a=10966;\nUPDATE t2 SET c='eighty-six thousand six hundred fifty-nine' WHERE a=10967;\nUPDATE t2 SET c='forty-five thousand three hundred twenty-one' WHERE a=10968;\nUPDATE t2 SET c='ninety thousand two hundred thirty-eight' WHERE a=10969;\nUPDATE t2 SET c='sixty-five thousand eighty-one' WHERE a=10970;\nUPDATE t2 SET c='eighty-nine thousand three hundred twenty-seven' WHERE a=10971;\nUPDATE t2 SET c='seventy-three thousand four hundred eighty-eight' WHERE a=10972;\nUPDATE t2 SET c='eighty-four thousand eight hundred thirty-five' WHERE a=10973;\nUPDATE t2 SET c='twenty-nine thousand fifty-six' WHERE a=10974;\nUPDATE t2 SET c='sixty-nine thousand five hundred sixty-three' WHERE a=10975;\nUPDATE t2 SET c='one thousand two hundred fifteen' WHERE a=10976;\nUPDATE t2 SET c='thirty-six thousand one hundred ninety-seven' WHERE a=10977;\nUPDATE t2 SET c='sixty thousand eighty-one' WHERE a=10978;\nUPDATE t2 SET c='fifty-eight thousand seven hundred twenty-one' WHERE a=10979;\nUPDATE t2 SET c='twenty-eight thousand five hundred ninety-four' WHERE a=10980;\nUPDATE t2 SET c='eighty-five thousand eight hundred thirty-one' WHERE a=10981;\nUPDATE t2 SET c='eighty-nine thousand six hundred thirty-six' WHERE a=10982;\nUPDATE t2 SET c='sixteen thousand eight hundred seventy-one' WHERE a=10983;\nUPDATE t2 SET c='twenty-eight thousand four hundred fifty-three' WHERE a=10984;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-eight' WHERE a=10985;\nUPDATE t2 SET c='twenty-seven thousand five hundred seventy' WHERE a=10986;\nUPDATE t2 SET c='eighty-two thousand eight hundred sixty-eight' WHERE a=10987;\nUPDATE t2 SET c='twenty-three thousand eleven' WHERE a=10988;\nUPDATE t2 SET c='four thousand seven hundred twenty-two' WHERE a=10989;\nUPDATE t2 SET c='eighty-eight thousand eighteen' WHERE a=10990;\nUPDATE t2 SET c='ninety-four thousand three hundred twenty-two' WHERE a=10991;\nUPDATE t2 SET c='eighty-one thousand eighty' WHERE a=10992;\nUPDATE t2 SET c='forty-nine thousand four hundred eighty-two' WHERE a=10993;\nUPDATE t2 SET c='thirty-three thousand four hundred sixty-eight' WHERE a=10994;\nUPDATE t2 SET c='seventy-one thousand seven hundred eighty-one' WHERE a=10995;\nUPDATE t2 SET c='eighteen thousand two hundred ten' WHERE a=10996;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixty-four' WHERE a=10997;\nUPDATE t2 SET c='twenty-five thousand eight hundred thirteen' WHERE a=10998;\nUPDATE t2 SET c='five thousand two hundred thirteen' WHERE a=10999;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-one' WHERE a=11000;\nUPDATE t2 SET c='fourteen thousand seven hundred twenty-four' WHERE a=11001;\nUPDATE t2 SET c='ninety-four thousand nine hundred seventy-one' WHERE a=11002;\nUPDATE t2 SET c='forty-five thousand eight hundred two' WHERE a=11003;\nUPDATE t2 SET c='fifty-one thousand five hundred thirteen' WHERE a=11004;\nUPDATE t2 SET c='sixty-five thousand sixty-four' WHERE a=11005;\nUPDATE t2 SET c='seventy-four thousand five hundred ninety-six' WHERE a=11006;\nUPDATE t2 SET c='four thousand three hundred fifty-one' WHERE a=11007;\nUPDATE t2 SET c='thirty-two thousand one hundred eighty-nine' WHERE a=11008;\nUPDATE t2 SET c='sixteen thousand five hundred thirty-four' WHERE a=11009;\nUPDATE t2 SET c='seven thousand two hundred eighty-one' WHERE a=11010;\nUPDATE t2 SET c='ninety thousand seven hundred sixty-six' WHERE a=11011;\nUPDATE t2 SET c='twenty-two thousand three hundred thirty-six' WHERE a=11012;\nUPDATE t2 SET c='twenty-six thousand nine hundred seventy-four' WHERE a=11013;\nUPDATE t2 SET c='eighty-three thousand six hundred twenty-one' WHERE a=11014;\nUPDATE t2 SET c='twenty-six thousand five hundred eighty-nine' WHERE a=11015;\nUPDATE t2 SET c='eighteen thousand two hundred seventy-one' WHERE a=11016;\nUPDATE t2 SET c='fifty-six thousand one hundred eight' WHERE a=11017;\nUPDATE t2 SET c='thirty-six thousand seven hundred seventeen' WHERE a=11018;\nUPDATE t2 SET c='fifteen thousand eight hundred three' WHERE a=11019;\nUPDATE t2 SET c='ninety-two thousand two hundred fourteen' WHERE a=11020;\nUPDATE t2 SET c='forty-one thousand eight hundred forty-seven' WHERE a=11021;\nUPDATE t2 SET c='thirty-one thousand eight hundred nineteen' WHERE a=11022;\nUPDATE t2 SET c='fourteen thousand five hundred fifteen' WHERE a=11023;\nUPDATE t2 SET c='four thousand seven hundred sixty-four' WHERE a=11024;\nUPDATE t2 SET c='fifty-nine thousand seven hundred fifty' WHERE a=11025;\nUPDATE t2 SET c='eighty-one thousand three hundred seventy-two' WHERE a=11026;\nUPDATE t2 SET c='five thousand two hundred seventy-eight' WHERE a=11027;\nUPDATE t2 SET c='seventy-one thousand three hundred ninety-eight' WHERE a=11028;\nUPDATE t2 SET c='thirty-two thousand six hundred fifty-eight' WHERE a=11029;\nUPDATE t2 SET c='sixty-four thousand eight hundred fifteen' WHERE a=11030;\nUPDATE t2 SET c='eighty-nine thousand six hundred eighty-eight' WHERE a=11031;\nUPDATE t2 SET c='forty-five thousand five hundred sixty-five' WHERE a=11032;\nUPDATE t2 SET c='twenty-three thousand eight hundred twenty-four' WHERE a=11033;\nUPDATE t2 SET c='eighty-five thousand nine hundred sixty' WHERE a=11034;\nUPDATE t2 SET c='seventy-one thousand one hundred thirty-one' WHERE a=11035;\nUPDATE t2 SET c='twenty-five thousand five hundred sixty-seven' WHERE a=11036;\nUPDATE t2 SET c='seventy-one thousand one hundred seventy-five' WHERE a=11037;\nUPDATE t2 SET c='seventy thousand fifty-two' WHERE a=11038;\nUPDATE t2 SET c='twenty-five thousand two hundred seventy-one' WHERE a=11039;\nUPDATE t2 SET c='thirteen thousand four hundred seventy-nine' WHERE a=11040;\nUPDATE t2 SET c='thirty-seven thousand seven hundred forty-nine' WHERE a=11041;\nUPDATE t2 SET c='ninety-six thousand two hundred one' WHERE a=11042;\nUPDATE t2 SET c='ninety-seven thousand eighty-eight' WHERE a=11043;\nUPDATE t2 SET c='fifty-four thousand four hundred sixty-five' WHERE a=11044;\nUPDATE t2 SET c='sixty-eight thousand three hundred seven' WHERE a=11045;\nUPDATE t2 SET c='eighty-six thousand eight hundred fifty-three' WHERE a=11046;\nUPDATE t2 SET c='eighty-three thousand fifty-five' WHERE a=11047;\nUPDATE t2 SET c='three thousand nine hundred twenty-nine' WHERE a=11048;\nUPDATE t2 SET c='eleven thousand eight hundred ninety-three' WHERE a=11049;\nUPDATE t2 SET c='twelve thousand six hundred seventy-three' WHERE a=11050;\nUPDATE t2 SET c='fifty-six thousand one hundred two' WHERE a=11051;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-eight' WHERE a=11052;\nUPDATE t2 SET c='forty-five thousand five hundred sixty' WHERE a=11053;\nUPDATE t2 SET c='three thousand five hundred fifty-five' WHERE a=11054;\nUPDATE t2 SET c='forty-five thousand seven hundred seventy-seven' WHERE a=11055;\nUPDATE t2 SET c='sixty-five thousand seven hundred eighty-two' WHERE a=11056;\nUPDATE t2 SET c='twenty-two thousand seven hundred ninety-one' WHERE a=11057;\nUPDATE t2 SET c='nine thousand seven hundred sixty-seven' WHERE a=11058;\nUPDATE t2 SET c='two hundred sixty-two' WHERE a=11059;\nUPDATE t2 SET c='forty-five thousand sixty-five' WHERE a=11060;\nUPDATE t2 SET c='fifty-five thousand nine hundred fifty-one' WHERE a=11061;\nUPDATE t2 SET c='forty-seven thousand four hundred twenty-two' WHERE a=11062;\nUPDATE t2 SET c='ninety-two thousand seven hundred eleven' WHERE a=11063;\nUPDATE t2 SET c='ninety-one thousand six hundred forty-one' WHERE a=11064;\nUPDATE t2 SET c='seventy-six thousand thirty-nine' WHERE a=11065;\nUPDATE t2 SET c='ninety-four thousand nine hundred eighty-two' WHERE a=11066;\nUPDATE t2 SET c='nineteen thousand one hundred twenty-six' WHERE a=11067;\nUPDATE t2 SET c='nine thousand one hundred seventy-nine' WHERE a=11068;\nUPDATE t2 SET c='thirty-five thousand eighty-two' WHERE a=11069;\nUPDATE t2 SET c='forty-five thousand four hundred ninety-eight' WHERE a=11070;\nUPDATE t2 SET c='seventy-one thousand eighty-two' WHERE a=11071;\nUPDATE t2 SET c='ninety-five thousand four hundred sixty-four' WHERE a=11072;\nUPDATE t2 SET c='fifty-eight thousand six hundred forty-five' WHERE a=11073;\nUPDATE t2 SET c='sixty-two thousand fifty' WHERE a=11074;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventeen' WHERE a=11075;\nUPDATE t2 SET c='ninety-seven thousand three hundred twenty-eight' WHERE a=11076;\nUPDATE t2 SET c='eighty-five thousand eight hundred twenty-five' WHERE a=11077;\nUPDATE t2 SET c='twenty-four thousand one hundred sixty-seven' WHERE a=11078;\nUPDATE t2 SET c='twenty-nine thousand four hundred sixteen' WHERE a=11079;\nUPDATE t2 SET c='fifty-three thousand one hundred sixty-five' WHERE a=11080;\nUPDATE t2 SET c='twenty-one thousand seven hundred six' WHERE a=11081;\nUPDATE t2 SET c='sixty thousand six hundred fifty-six' WHERE a=11082;\nUPDATE t2 SET c='fifteen thousand nine hundred twenty-two' WHERE a=11083;\nUPDATE t2 SET c='seventy-five thousand two hundred one' WHERE a=11084;\nUPDATE t2 SET c='three thousand four hundred' WHERE a=11085;\nUPDATE t2 SET c='fifty-seven thousand six hundred ninety-one' WHERE a=11086;\nUPDATE t2 SET c='twenty-six thousand fourteen' WHERE a=11087;\nUPDATE t2 SET c='three thousand four hundred eighty-nine' WHERE a=11088;\nUPDATE t2 SET c='sixty-seven thousand eight hundred sixty-two' WHERE a=11089;\nUPDATE t2 SET c='eighty-seven thousand fifty' WHERE a=11090;\nUPDATE t2 SET c='thirteen thousand seven hundred twelve' WHERE a=11091;\nUPDATE t2 SET c='sixty-one thousand six hundred ninety-three' WHERE a=11092;\nUPDATE t2 SET c='seventy-three thousand nine hundred fifteen' WHERE a=11093;\nUPDATE t2 SET c='eighty-seven thousand thirty-six' WHERE a=11094;\nUPDATE t2 SET c='forty-four thousand three hundred sixty-five' WHERE a=11095;\nUPDATE t2 SET c='fifty-nine' WHERE a=11096;\nUPDATE t2 SET c='ninety-six thousand four hundred thirty-seven' WHERE a=11097;\nUPDATE t2 SET c='forty-one thousand three hundred thirteen' WHERE a=11098;\nUPDATE t2 SET c='sixty-four thousand five hundred forty-nine' WHERE a=11099;\nUPDATE t2 SET c='thirty-three thousand eight hundred eight' WHERE a=11100;\nUPDATE t2 SET c='seventy-seven thousand eight hundred forty-four' WHERE a=11101;\nUPDATE t2 SET c='fifty thousand forty-one' WHERE a=11102;\nUPDATE t2 SET c='seventy-four thousand two hundred eleven' WHERE a=11103;\nUPDATE t2 SET c='eighty-five thousand nine hundred eighty-six' WHERE a=11104;\nUPDATE t2 SET c='fourteen thousand five hundred seventy-five' WHERE a=11105;\nUPDATE t2 SET c='twenty-six thousand five hundred forty-two' WHERE a=11106;\nUPDATE t2 SET c='thirty-five thousand four hundred ninety-eight' WHERE a=11107;\nUPDATE t2 SET c='sixty-eight thousand six hundred eighteen' WHERE a=11108;\nUPDATE t2 SET c='ninety-three thousand six hundred seventy-five' WHERE a=11109;\nUPDATE t2 SET c='seventy-five thousand eight hundred twenty-eight' WHERE a=11110;\nUPDATE t2 SET c='twenty-three thousand eighty-two' WHERE a=11111;\nUPDATE t2 SET c='eighty-five thousand four hundred seventy-eight' WHERE a=11112;\nUPDATE t2 SET c='fifty-eight thousand four hundred sixty-three' WHERE a=11113;\nUPDATE t2 SET c='forty-nine thousand one hundred seven' WHERE a=11114;\nUPDATE t2 SET c='sixty-two thousand fifty-one' WHERE a=11115;\nUPDATE t2 SET c='five thousand six hundred fifty-four' WHERE a=11116;\nUPDATE t2 SET c='fifty thousand six hundred eighty-nine' WHERE a=11117;\nUPDATE t2 SET c='fifty-nine thousand three hundred ninety-seven' WHERE a=11118;\nUPDATE t2 SET c='ninety-three thousand forty-four' WHERE a=11119;\nUPDATE t2 SET c='sixty-seven thousand twenty' WHERE a=11120;\nUPDATE t2 SET c='fourteen thousand three hundred seventy-four' WHERE a=11121;\nUPDATE t2 SET c='one thousand six hundred forty-nine' WHERE a=11122;\nUPDATE t2 SET c='ninety-nine thousand two hundred sixty-five' WHERE a=11123;\nUPDATE t2 SET c='twenty thousand three hundred two' WHERE a=11124;\nUPDATE t2 SET c='twenty-two thousand eight hundred forty-seven' WHERE a=11125;\nUPDATE t2 SET c='thirty-seven thousand eleven' WHERE a=11126;\nUPDATE t2 SET c='seven thousand two hundred four' WHERE a=11127;\nUPDATE t2 SET c='eighty-eight thousand three hundred one' WHERE a=11128;\nUPDATE t2 SET c='sixteen thousand five hundred ninety-three' WHERE a=11129;\nUPDATE t2 SET c='forty-six thousand eight hundred thirty-eight' WHERE a=11130;\nUPDATE t2 SET c='forty-three thousand seven hundred twenty-four' WHERE a=11131;\nUPDATE t2 SET c='seventy-six thousand two hundred forty-five' WHERE a=11132;\nUPDATE t2 SET c='thirty thousand six hundred thirty-one' WHERE a=11133;\nUPDATE t2 SET c='twenty-one thousand five hundred sixty-nine' WHERE a=11134;\nUPDATE t2 SET c='eighty-six thousand one hundred fourteen' WHERE a=11135;\nUPDATE t2 SET c='ninety-three thousand five hundred three' WHERE a=11136;\nUPDATE t2 SET c='seventy-seven thousand six hundred ninety-three' WHERE a=11137;\nUPDATE t2 SET c='ninety-six thousand nine hundred fifty-eight' WHERE a=11138;\nUPDATE t2 SET c='fifty-eight thousand eight hundred twenty-six' WHERE a=11139;\nUPDATE t2 SET c='twelve thousand nine hundred ninety-eight' WHERE a=11140;\nUPDATE t2 SET c='sixteen thousand one hundred five' WHERE a=11141;\nUPDATE t2 SET c='seventy-three thousand four hundred sixty-nine' WHERE a=11142;\nUPDATE t2 SET c='twelve thousand seven hundred eighty-six' WHERE a=11143;\nUPDATE t2 SET c='fifty-eight thousand eight hundred' WHERE a=11144;\nUPDATE t2 SET c='sixty-six thousand six hundred four' WHERE a=11145;\nUPDATE t2 SET c='fifty-three thousand eight hundred eighty-two' WHERE a=11146;\nUPDATE t2 SET c='eight hundred fifty-five' WHERE a=11147;\nUPDATE t2 SET c='one thousand nine hundred fifty-nine' WHERE a=11148;\nUPDATE t2 SET c='seventy-nine thousand three hundred eighty-nine' WHERE a=11149;\nUPDATE t2 SET c='ninety-nine thousand five hundred thirty-five' WHERE a=11150;\nUPDATE t2 SET c='eighty-five thousand nine hundred seventy-two' WHERE a=11151;\nUPDATE t2 SET c='forty-five thousand three hundred fifty-one' WHERE a=11152;\nUPDATE t2 SET c='sixty-four thousand six hundred sixty-one' WHERE a=11153;\nUPDATE t2 SET c='thirty thousand eighteen' WHERE a=11154;\nUPDATE t2 SET c='ninety-five thousand three hundred nine' WHERE a=11155;\nUPDATE t2 SET c='forty-eight thousand seven hundred thirty-six' WHERE a=11156;\nUPDATE t2 SET c='ninety thousand one hundred seventy-four' WHERE a=11157;\nUPDATE t2 SET c='eighty-eight thousand three hundred eighty-nine' WHERE a=11158;\nUPDATE t2 SET c='fifty thousand nine hundred thirty-seven' WHERE a=11159;\nUPDATE t2 SET c='sixty-seven thousand five hundred twenty-six' WHERE a=11160;\nUPDATE t2 SET c='fifty-six thousand five hundred seventy' WHERE a=11161;\nUPDATE t2 SET c='twenty thousand one hundred forty-nine' WHERE a=11162;\nUPDATE t2 SET c='nineteen thousand four hundred ninety-two' WHERE a=11163;\nUPDATE t2 SET c='thirty-one thousand seven hundred forty-three' WHERE a=11164;\nUPDATE t2 SET c='thirty-four thousand nine hundred sixty-seven' WHERE a=11165;\nUPDATE t2 SET c='twenty-eight thousand six hundred seventy-four' WHERE a=11166;\nUPDATE t2 SET c='ninety-two thousand seven hundred twelve' WHERE a=11167;\nUPDATE t2 SET c='eleven thousand two hundred seventy-four' WHERE a=11168;\nUPDATE t2 SET c='seventy-nine thousand seven hundred forty-four' WHERE a=11169;\nUPDATE t2 SET c='eighty-six thousand six hundred sixty-two' WHERE a=11170;\nUPDATE t2 SET c='fifty-five thousand two' WHERE a=11171;\nUPDATE t2 SET c='six thousand twenty-three' WHERE a=11172;\nUPDATE t2 SET c='fifty-three thousand four hundred eighty-seven' WHERE a=11173;\nUPDATE t2 SET c='thirty-seven thousand two hundred eighty-two' WHERE a=11174;\nUPDATE t2 SET c='eighty-two thousand five hundred ninety-six' WHERE a=11175;\nUPDATE t2 SET c='fifty-one thousand one hundred fifty-three' WHERE a=11176;\nUPDATE t2 SET c='twenty thousand eight hundred ninety-three' WHERE a=11177;\nUPDATE t2 SET c='twenty-two thousand nine hundred eighteen' WHERE a=11178;\nUPDATE t2 SET c='seventeen thousand six hundred seventeen' WHERE a=11179;\nUPDATE t2 SET c='sixty-one thousand one hundred eighty-seven' WHERE a=11180;\nUPDATE t2 SET c='fifty-seven thousand two hundred fifteen' WHERE a=11181;\nUPDATE t2 SET c='seventy-seven thousand five hundred fifty-eight' WHERE a=11182;\nUPDATE t2 SET c='twenty thousand six hundred ten' WHERE a=11183;\nUPDATE t2 SET c='forty-three thousand three hundred seventy' WHERE a=11184;\nUPDATE t2 SET c='twenty-five thousand eight hundred fifty' WHERE a=11185;\nUPDATE t2 SET c='seventy thousand seven hundred fifty-two' WHERE a=11186;\nUPDATE t2 SET c='eighty-one thousand six hundred ninety-eight' WHERE a=11187;\nUPDATE t2 SET c='sixty-six thousand nine hundred fourteen' WHERE a=11188;\nUPDATE t2 SET c='thirty-one thousand one hundred fifty-six' WHERE a=11189;\nUPDATE t2 SET c='six thousand seven hundred thirty-two' WHERE a=11190;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-two' WHERE a=11191;\nUPDATE t2 SET c='twenty-eight thousand two hundred sixteen' WHERE a=11192;\nUPDATE t2 SET c='fourteen thousand two hundred forty-two' WHERE a=11193;\nUPDATE t2 SET c='ninety-four thousand five hundred twenty-one' WHERE a=11194;\nUPDATE t2 SET c='seventy-one thousand two hundred forty-three' WHERE a=11195;\nUPDATE t2 SET c='fourteen thousand eight hundred seven' WHERE a=11196;\nUPDATE t2 SET c='twenty-two thousand two hundred twelve' WHERE a=11197;\nUPDATE t2 SET c='twenty-one thousand two hundred three' WHERE a=11198;\nUPDATE t2 SET c='ninety thousand fifty-four' WHERE a=11199;\nUPDATE t2 SET c='sixty-seven thousand nine hundred fifty-seven' WHERE a=11200;\nUPDATE t2 SET c='seventy-seven thousand three hundred eighty-three' WHERE a=11201;\nUPDATE t2 SET c='sixty-six thousand one hundred five' WHERE a=11202;\nUPDATE t2 SET c='thirty-one thousand four hundred twenty-two' WHERE a=11203;\nUPDATE t2 SET c='forty-eight thousand seven hundred eighty-seven' WHERE a=11204;\nUPDATE t2 SET c='eighty-nine thousand one hundred forty-one' WHERE a=11205;\nUPDATE t2 SET c='thirty-four thousand three hundred twenty-six' WHERE a=11206;\nUPDATE t2 SET c='eighty-eight thousand seven hundred eighty-nine' WHERE a=11207;\nUPDATE t2 SET c='seven thousand eight hundred twelve' WHERE a=11208;\nUPDATE t2 SET c='eighty-six thousand six hundred forty-six' WHERE a=11209;\nUPDATE t2 SET c='eighty-four thousand seven hundred' WHERE a=11210;\nUPDATE t2 SET c='thirty-nine thousand six hundred ninety-two' WHERE a=11211;\nUPDATE t2 SET c='forty-seven thousand one hundred fifty' WHERE a=11212;\nUPDATE t2 SET c='sixty-one thousand two hundred fifty-three' WHERE a=11213;\nUPDATE t2 SET c='twelve thousand eight hundred sixty-eight' WHERE a=11214;\nUPDATE t2 SET c='eighty-four thousand seven hundred ninety-eight' WHERE a=11215;\nUPDATE t2 SET c='forty-seven thousand one hundred eight' WHERE a=11216;\nUPDATE t2 SET c='fifty-six thousand seven hundred forty-two' WHERE a=11217;\nUPDATE t2 SET c='sixteen thousand four hundred forty-three' WHERE a=11218;\nUPDATE t2 SET c='forty-five thousand eight hundred sixty-four' WHERE a=11219;\nUPDATE t2 SET c='sixty-four thousand ninety-two' WHERE a=11220;\nUPDATE t2 SET c='sixty-five thousand eight hundred forty-four' WHERE a=11221;\nUPDATE t2 SET c='thirty-four thousand three hundred nine' WHERE a=11222;\nUPDATE t2 SET c='twenty-five thousand four hundred seventy-nine' WHERE a=11223;\nUPDATE t2 SET c='seventy thousand eight hundred forty-seven' WHERE a=11224;\nUPDATE t2 SET c='ninety-nine thousand twenty-two' WHERE a=11225;\nUPDATE t2 SET c='ninety-two thousand nine hundred sixty-seven' WHERE a=11226;\nUPDATE t2 SET c='eight thousand five hundred eighty-eight' WHERE a=11227;\nUPDATE t2 SET c='twenty-four thousand five hundred nineteen' WHERE a=11228;\nUPDATE t2 SET c='twenty-five thousand nine hundred fifty-four' WHERE a=11229;\nUPDATE t2 SET c='thirty-one thousand one hundred eighty-nine' WHERE a=11230;\nUPDATE t2 SET c='eighty-one thousand forty-three' WHERE a=11231;\nUPDATE t2 SET c='eighty-eight thousand four hundred thirty-six' WHERE a=11232;\nUPDATE t2 SET c='seventy-six thousand four hundred thirty-six' WHERE a=11233;\nUPDATE t2 SET c='twenty-seven thousand five hundred seventy-nine' WHERE a=11234;\nUPDATE t2 SET c='fifty-one thousand eight hundred eighty' WHERE a=11235;\nUPDATE t2 SET c='fifty-two thousand seven hundred fifty-two' WHERE a=11236;\nUPDATE t2 SET c='seventy-one thousand two hundred seventy-nine' WHERE a=11237;\nUPDATE t2 SET c='thirty-five thousand one hundred sixty-six' WHERE a=11238;\nUPDATE t2 SET c='ninety-six thousand six hundred ninety-nine' WHERE a=11239;\nUPDATE t2 SET c='sixty-seven thousand five hundred eighty-one' WHERE a=11240;\nUPDATE t2 SET c='seventy-nine thousand one hundred thirty-one' WHERE a=11241;\nUPDATE t2 SET c='sixteen thousand forty-nine' WHERE a=11242;\nUPDATE t2 SET c='forty-five thousand one hundred sixty-eight' WHERE a=11243;\nUPDATE t2 SET c='eighty-two thousand nine hundred forty' WHERE a=11244;\nUPDATE t2 SET c='thirteen thousand thirty-six' WHERE a=11245;\nUPDATE t2 SET c='seven thousand seven hundred twenty' WHERE a=11246;\nUPDATE t2 SET c='seventy-two thousand nine hundred twenty-five' WHERE a=11247;\nUPDATE t2 SET c='nine hundred forty-five' WHERE a=11248;\nUPDATE t2 SET c='twenty-two thousand five hundred eighty-four' WHERE a=11249;\nUPDATE t2 SET c='ninety-six thousand eighty-five' WHERE a=11250;\nUPDATE t2 SET c='forty-six thousand eight hundred forty-one' WHERE a=11251;\nUPDATE t2 SET c='thirty-two thousand six hundred ninety-nine' WHERE a=11252;\nUPDATE t2 SET c='twenty-two thousand three hundred eighty-nine' WHERE a=11253;\nUPDATE t2 SET c='six thousand four hundred thirteen' WHERE a=11254;\nUPDATE t2 SET c='eighty thousand two hundred forty-four' WHERE a=11255;\nUPDATE t2 SET c='fifty-two thousand seven hundred ninety-seven' WHERE a=11256;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty-five' WHERE a=11257;\nUPDATE t2 SET c='fifty-two thousand four hundred six' WHERE a=11258;\nUPDATE t2 SET c='nine thousand two hundred forty-four' WHERE a=11259;\nUPDATE t2 SET c='seventy-six thousand eight hundred twenty-seven' WHERE a=11260;\nUPDATE t2 SET c='sixty-eight thousand nine hundred sixty-six' WHERE a=11261;\nUPDATE t2 SET c='forty-nine thousand five hundred forty-six' WHERE a=11262;\nUPDATE t2 SET c='fifty thousand five hundred thirty-seven' WHERE a=11263;\nUPDATE t2 SET c='eighty-four thousand nine hundred seventy' WHERE a=11264;\nUPDATE t2 SET c='fifty-two thousand three hundred two' WHERE a=11265;\nUPDATE t2 SET c='ninety-four thousand three hundred' WHERE a=11266;\nUPDATE t2 SET c='ninety thousand eight hundred fifty-six' WHERE a=11267;\nUPDATE t2 SET c='eighty-eight thousand six hundred ninety-one' WHERE a=11268;\nUPDATE t2 SET c='ninety thousand three hundred forty-seven' WHERE a=11269;\nUPDATE t2 SET c='seventy-five thousand seven hundred ninety-nine' WHERE a=11270;\nUPDATE t2 SET c='fourteen thousand four hundred fifty-nine' WHERE a=11271;\nUPDATE t2 SET c='twenty thousand six hundred seventy-five' WHERE a=11272;\nUPDATE t2 SET c='ninety thousand one hundred ninety' WHERE a=11273;\nUPDATE t2 SET c='ninety-nine thousand nine hundred eighty-four' WHERE a=11274;\nUPDATE t2 SET c='fifteen thousand one hundred thirty-six' WHERE a=11275;\nUPDATE t2 SET c='sixty-six thousand one hundred two' WHERE a=11276;\nUPDATE t2 SET c='forty-seven thousand nine hundred nine' WHERE a=11277;\nUPDATE t2 SET c='twenty-one thousand one hundred seventy-one' WHERE a=11278;\nUPDATE t2 SET c='eighty-seven thousand four hundred fourteen' WHERE a=11279;\nUPDATE t2 SET c='sixty-eight thousand nine hundred sixty-one' WHERE a=11280;\nUPDATE t2 SET c='seventy-two thousand seventy-eight' WHERE a=11281;\nUPDATE t2 SET c='eighty-nine thousand five hundred six' WHERE a=11282;\nUPDATE t2 SET c='sixty-four thousand nine hundred fifty-four' WHERE a=11283;\nUPDATE t2 SET c='twenty-six thousand forty-nine' WHERE a=11284;\nUPDATE t2 SET c='ninety-two thousand nine hundred sixty-one' WHERE a=11285;\nUPDATE t2 SET c='forty-six thousand nine hundred eighty-three' WHERE a=11286;\nUPDATE t2 SET c='forty-nine thousand nine hundred thirty' WHERE a=11287;\nUPDATE t2 SET c='forty-seven thousand six hundred twenty-four' WHERE a=11288;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-seven' WHERE a=11289;\nUPDATE t2 SET c='seventy-six thousand six hundred eight' WHERE a=11290;\nUPDATE t2 SET c='seventy-seven thousand one hundred twenty' WHERE a=11291;\nUPDATE t2 SET c='seven thousand four hundred thirteen' WHERE a=11292;\nUPDATE t2 SET c='eighty-seven thousand sixty-four' WHERE a=11293;\nUPDATE t2 SET c='four thousand eight hundred eighty' WHERE a=11294;\nUPDATE t2 SET c='sixty-eight thousand seven hundred eighteen' WHERE a=11295;\nUPDATE t2 SET c='seventy-one thousand two hundred thirty-seven' WHERE a=11296;\nUPDATE t2 SET c='sixty-two thousand three hundred thirteen' WHERE a=11297;\nUPDATE t2 SET c='one thousand sixty-three' WHERE a=11298;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-four' WHERE a=11299;\nUPDATE t2 SET c='fifty-two thousand four hundred seven' WHERE a=11300;\nUPDATE t2 SET c='twelve thousand one hundred ninety-four' WHERE a=11301;\nUPDATE t2 SET c='sixty-five thousand four hundred sixty-four' WHERE a=11302;\nUPDATE t2 SET c='ninety-five thousand twelve' WHERE a=11303;\nUPDATE t2 SET c='ninety-three thousand six hundred forty-one' WHERE a=11304;\nUPDATE t2 SET c='sixteen thousand three hundred twenty-eight' WHERE a=11305;\nUPDATE t2 SET c='twenty-one thousand five hundred seventy' WHERE a=11306;\nUPDATE t2 SET c='forty-three thousand one hundred eighty-three' WHERE a=11307;\nUPDATE t2 SET c='seventy-eight thousand six hundred fifty-six' WHERE a=11308;\nUPDATE t2 SET c='thirty-nine thousand eight hundred sixty-eight' WHERE a=11309;\nUPDATE t2 SET c='forty-seven thousand eight hundred seventy-four' WHERE a=11310;\nUPDATE t2 SET c='seventy-eight thousand four hundred six' WHERE a=11311;\nUPDATE t2 SET c='fifty-four thousand four hundred thirty-seven' WHERE a=11312;\nUPDATE t2 SET c='twenty-six thousand forty' WHERE a=11313;\nUPDATE t2 SET c='fifty-three thousand seven hundred sixty' WHERE a=11314;\nUPDATE t2 SET c='forty thousand four hundred' WHERE a=11315;\nUPDATE t2 SET c='thirty-one thousand ten' WHERE a=11316;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventy-six' WHERE a=11317;\nUPDATE t2 SET c='seventy-eight thousand six hundred ninety-seven' WHERE a=11318;\nUPDATE t2 SET c='eighteen thousand eight hundred seventeen' WHERE a=11319;\nUPDATE t2 SET c='forty-two thousand six hundred seventy-eight' WHERE a=11320;\nUPDATE t2 SET c='sixty-four thousand one hundred fifty-seven' WHERE a=11321;\nUPDATE t2 SET c='ten thousand nine hundred forty-eight' WHERE a=11322;\nUPDATE t2 SET c='eighty thousand two hundred twenty-seven' WHERE a=11323;\nUPDATE t2 SET c='forty-four thousand thirteen' WHERE a=11324;\nUPDATE t2 SET c='fifty-one thousand six hundred sixty-six' WHERE a=11325;\nUPDATE t2 SET c='fifty-six thousand nine hundred forty-six' WHERE a=11326;\nUPDATE t2 SET c='sixty-five thousand nine hundred eleven' WHERE a=11327;\nUPDATE t2 SET c='thirty-eight thousand one hundred sixty-nine' WHERE a=11328;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirty-nine' WHERE a=11329;\nUPDATE t2 SET c='twelve thousand ten' WHERE a=11330;\nUPDATE t2 SET c='twenty-five thousand four hundred eighty' WHERE a=11331;\nUPDATE t2 SET c='forty thousand one hundred three' WHERE a=11332;\nUPDATE t2 SET c='thirty-six thousand four hundred forty-nine' WHERE a=11333;\nUPDATE t2 SET c='thirty-three thousand six hundred four' WHERE a=11334;\nUPDATE t2 SET c='eleven thousand five hundred nine' WHERE a=11335;\nUPDATE t2 SET c='fifty-eight thousand thirty-eight' WHERE a=11336;\nUPDATE t2 SET c='seventy-nine thousand seven hundred forty-five' WHERE a=11337;\nUPDATE t2 SET c='sixty-seven thousand nine hundred fifty-eight' WHERE a=11338;\nUPDATE t2 SET c='fifty-three thousand four hundred fifty-nine' WHERE a=11339;\nUPDATE t2 SET c='twenty-nine thousand ninety-one' WHERE a=11340;\nUPDATE t2 SET c='thirty-six thousand six hundred fifty-three' WHERE a=11341;\nUPDATE t2 SET c='twenty-five thousand eight hundred sixteen' WHERE a=11342;\nUPDATE t2 SET c='eighty-seven thousand three hundred twenty-three' WHERE a=11343;\nUPDATE t2 SET c='seventy-nine thousand eight hundred sixteen' WHERE a=11344;\nUPDATE t2 SET c='seventy-six thousand seven hundred seventy' WHERE a=11345;\nUPDATE t2 SET c='twenty-six thousand three hundred sixty-three' WHERE a=11346;\nUPDATE t2 SET c='twenty thousand four hundred ninety-nine' WHERE a=11347;\nUPDATE t2 SET c='sixty-one thousand two hundred sixty-one' WHERE a=11348;\nUPDATE t2 SET c='twenty-five thousand four hundred fifty-seven' WHERE a=11349;\nUPDATE t2 SET c='seventeen thousand nine hundred seventy-six' WHERE a=11350;\nUPDATE t2 SET c='five thousand six hundred fifty-five' WHERE a=11351;\nUPDATE t2 SET c='twenty-four thousand eight hundred seventy-eight' WHERE a=11352;\nUPDATE t2 SET c='ninety thousand four hundred seventy-six' WHERE a=11353;\nUPDATE t2 SET c='eighty-seven thousand five hundred seventy-one' WHERE a=11354;\nUPDATE t2 SET c='ninety-five thousand nine hundred fifty-three' WHERE a=11355;\nUPDATE t2 SET c='ninety-five thousand forty-four' WHERE a=11356;\nUPDATE t2 SET c='seven thousand four hundred eighty' WHERE a=11357;\nUPDATE t2 SET c='thirteen thousand one hundred twenty-five' WHERE a=11358;\nUPDATE t2 SET c='forty-one thousand six hundred forty-six' WHERE a=11359;\nUPDATE t2 SET c='thirty-six thousand three hundred twenty-two' WHERE a=11360;\nUPDATE t2 SET c='fifty-one thousand seven hundred fifty-five' WHERE a=11361;\nUPDATE t2 SET c='twenty-three thousand one hundred forty-two' WHERE a=11362;\nUPDATE t2 SET c='forty-two thousand seven hundred nineteen' WHERE a=11363;\nUPDATE t2 SET c='thirty thousand six hundred sixty-three' WHERE a=11364;\nUPDATE t2 SET c='seventy-eight thousand six hundred eighty-four' WHERE a=11365;\nUPDATE t2 SET c='eighty-three thousand ninety-six' WHERE a=11366;\nUPDATE t2 SET c='sixty-three thousand two hundred six' WHERE a=11367;\nUPDATE t2 SET c='fifty-one thousand seven hundred fifty-nine' WHERE a=11368;\nUPDATE t2 SET c='seventy-one thousand four hundred nineteen' WHERE a=11369;\nUPDATE t2 SET c='sixty-two thousand eight hundred eighty-two' WHERE a=11370;\nUPDATE t2 SET c='thirty-nine thousand seven hundred nine' WHERE a=11371;\nUPDATE t2 SET c='seventy-six thousand thirty-five' WHERE a=11372;\nUPDATE t2 SET c='sixty thousand six hundred fifty-one' WHERE a=11373;\nUPDATE t2 SET c='sixty-one thousand six hundred sixty-one' WHERE a=11374;\nUPDATE t2 SET c='forty thousand six hundred ninety-six' WHERE a=11375;\nUPDATE t2 SET c='thirty-three thousand four hundred sixty-four' WHERE a=11376;\nUPDATE t2 SET c='seventy-four thousand four hundred forty-four' WHERE a=11377;\nUPDATE t2 SET c='five thousand nine hundred one' WHERE a=11378;\nUPDATE t2 SET c='forty-six thousand nine hundred eighty-one' WHERE a=11379;\nUPDATE t2 SET c='seventy-one thousand three hundred seventy-eight' WHERE a=11380;\nUPDATE t2 SET c='twenty-six thousand sixty-nine' WHERE a=11381;\nUPDATE t2 SET c='sixty-four thousand four hundred eighty-seven' WHERE a=11382;\nUPDATE t2 SET c='ninety thousand seven hundred ninety-four' WHERE a=11383;\nUPDATE t2 SET c='twenty-seven thousand one' WHERE a=11384;\nUPDATE t2 SET c='thirty-nine thousand five hundred seventy-nine' WHERE a=11385;\nUPDATE t2 SET c='fifty-five thousand three hundred ninety-six' WHERE a=11386;\nUPDATE t2 SET c='fifteen thousand nine hundred ninety-three' WHERE a=11387;\nUPDATE t2 SET c='thirty-five thousand nine hundred ninety-five' WHERE a=11388;\nUPDATE t2 SET c='sixty-three thousand four hundred eighteen' WHERE a=11389;\nUPDATE t2 SET c='ten thousand five hundred forty-three' WHERE a=11390;\nUPDATE t2 SET c='forty thousand three hundred eighty-one' WHERE a=11391;\nUPDATE t2 SET c='eighty-eight thousand two hundred eighty' WHERE a=11392;\nUPDATE t2 SET c='forty-seven thousand eight hundred ten' WHERE a=11393;\nUPDATE t2 SET c='eighty-nine thousand eight hundred thirty-eight' WHERE a=11394;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-seven' WHERE a=11395;\nUPDATE t2 SET c='twenty-five thousand seventy-one' WHERE a=11396;\nUPDATE t2 SET c='sixty thousand three hundred one' WHERE a=11397;\nUPDATE t2 SET c='seventy-five thousand nine hundred eighty-six' WHERE a=11398;\nUPDATE t2 SET c='sixty-one thousand four hundred eighty' WHERE a=11399;\nUPDATE t2 SET c='eighty-eight thousand seven hundred ninety-one' WHERE a=11400;\nUPDATE t2 SET c='fifty-seven thousand two hundred sixty-three' WHERE a=11401;\nUPDATE t2 SET c='seventy-five thousand six hundred thirty-six' WHERE a=11402;\nUPDATE t2 SET c='seventy-five thousand one hundred fifty-five' WHERE a=11403;\nUPDATE t2 SET c='fourteen thousand two hundred fifty-three' WHERE a=11404;\nUPDATE t2 SET c='sixty-six thousand seven hundred forty-three' WHERE a=11405;\nUPDATE t2 SET c='eight thousand two hundred seventy-one' WHERE a=11406;\nUPDATE t2 SET c='eighty-one thousand five hundred thirty-nine' WHERE a=11407;\nUPDATE t2 SET c='sixty-six thousand eight hundred forty-eight' WHERE a=11408;\nUPDATE t2 SET c='forty-eight thousand eight hundred sixty-four' WHERE a=11409;\nUPDATE t2 SET c='thirty-one thousand seven hundred sixty-seven' WHERE a=11410;\nUPDATE t2 SET c='seventy-seven thousand three hundred fourteen' WHERE a=11411;\nUPDATE t2 SET c='twenty-eight thousand one hundred fifty-nine' WHERE a=11412;\nUPDATE t2 SET c='fifty-four thousand two hundred seventy-three' WHERE a=11413;\nUPDATE t2 SET c='seventy-five thousand seven hundred twenty-one' WHERE a=11414;\nUPDATE t2 SET c='ninety-one thousand three hundred six' WHERE a=11415;\nUPDATE t2 SET c='twelve thousand two hundred thirty-nine' WHERE a=11416;\nUPDATE t2 SET c='sixty-eight thousand seven hundred fifty-nine' WHERE a=11417;\nUPDATE t2 SET c='eighty thousand one hundred ninety-seven' WHERE a=11418;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-nine' WHERE a=11419;\nUPDATE t2 SET c='twenty-six thousand three hundred seventy-five' WHERE a=11420;\nUPDATE t2 SET c='fifty thousand five hundred forty-one' WHERE a=11421;\nUPDATE t2 SET c='fifty-three thousand six hundred sixty-seven' WHERE a=11422;\nUPDATE t2 SET c='twenty-five thousand five hundred seventy-eight' WHERE a=11423;\nUPDATE t2 SET c='eighty-four thousand twenty' WHERE a=11424;\nUPDATE t2 SET c='seventy-seven thousand five hundred sixty-one' WHERE a=11425;\nUPDATE t2 SET c='seven thousand seven hundred thirty' WHERE a=11426;\nUPDATE t2 SET c='thirty thousand ninety' WHERE a=11427;\nUPDATE t2 SET c='fifteen thousand eight hundred twenty-four' WHERE a=11428;\nUPDATE t2 SET c='ninety-one thousand five hundred forty-five' WHERE a=11429;\nUPDATE t2 SET c='thirty-two thousand two hundred eighty-five' WHERE a=11430;\nUPDATE t2 SET c='sixty-four thousand seven hundred fifty-seven' WHERE a=11431;\nUPDATE t2 SET c='seventy-seven thousand nine hundred nine' WHERE a=11432;\nUPDATE t2 SET c='forty-six thousand four hundred eighteen' WHERE a=11433;\nUPDATE t2 SET c='seventy-six thousand nine hundred eighty-one' WHERE a=11434;\nUPDATE t2 SET c='eighty-one thousand nine hundred eight' WHERE a=11435;\nUPDATE t2 SET c='seventy-five thousand four hundred fifty' WHERE a=11436;\nUPDATE t2 SET c='forty-three thousand one hundred twenty-eight' WHERE a=11437;\nUPDATE t2 SET c='twenty-seven thousand seven hundred eighty' WHERE a=11438;\nUPDATE t2 SET c='three thousand one hundred five' WHERE a=11439;\nUPDATE t2 SET c='forty-four thousand five hundred ninety-five' WHERE a=11440;\nUPDATE t2 SET c='twenty-two thousand ninety-eight' WHERE a=11441;\nUPDATE t2 SET c='ninety-two thousand five hundred four' WHERE a=11442;\nUPDATE t2 SET c='sixty-eight thousand three hundred twenty-two' WHERE a=11443;\nUPDATE t2 SET c='ninety-eight thousand nine hundred fifty-nine' WHERE a=11444;\nUPDATE t2 SET c='thirty thousand two hundred seventy' WHERE a=11445;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-five' WHERE a=11446;\nUPDATE t2 SET c='six thousand seven hundred eighty' WHERE a=11447;\nUPDATE t2 SET c='eighty-two thousand twenty-seven' WHERE a=11448;\nUPDATE t2 SET c='twenty-seven thousand two hundred thirty-eight' WHERE a=11449;\nUPDATE t2 SET c='forty thousand nine hundred fifty-seven' WHERE a=11450;\nUPDATE t2 SET c='eighty-five thousand six hundred sixty-two' WHERE a=11451;\nUPDATE t2 SET c='twenty thousand two hundred sixteen' WHERE a=11452;\nUPDATE t2 SET c='forty-two thousand nine hundred twenty-five' WHERE a=11453;\nUPDATE t2 SET c='eighty-eight thousand three hundred ninety-four' WHERE a=11454;\nUPDATE t2 SET c='forty-two thousand seven hundred forty-five' WHERE a=11455;\nUPDATE t2 SET c='sixty-one thousand four hundred three' WHERE a=11456;\nUPDATE t2 SET c='seventy-three thousand eight hundred twenty-seven' WHERE a=11457;\nUPDATE t2 SET c='thirty-one thousand seventy-four' WHERE a=11458;\nUPDATE t2 SET c='sixty-seven thousand thirty-eight' WHERE a=11459;\nUPDATE t2 SET c='fifty-seven thousand nine hundred thirty-two' WHERE a=11460;\nUPDATE t2 SET c='twenty-eight thousand three hundred ninety-seven' WHERE a=11461;\nUPDATE t2 SET c='sixteen thousand eight hundred sixty' WHERE a=11462;\nUPDATE t2 SET c='seventy-six thousand seven hundred' WHERE a=11463;\nUPDATE t2 SET c='fifty-nine thousand six hundred seventy' WHERE a=11464;\nUPDATE t2 SET c='twenty-one thousand fifty-one' WHERE a=11465;\nUPDATE t2 SET c='seven thousand eight hundred sixty-one' WHERE a=11466;\nUPDATE t2 SET c='seventy thousand three hundred seventy-eight' WHERE a=11467;\nUPDATE t2 SET c='fifty-two thousand six hundred twenty-four' WHERE a=11468;\nUPDATE t2 SET c='nineteen thousand nine hundred thirty-five' WHERE a=11469;\nUPDATE t2 SET c='twenty-five thousand three hundred ninety' WHERE a=11470;\nUPDATE t2 SET c='six thousand three hundred fifty-one' WHERE a=11471;\nUPDATE t2 SET c='sixty thousand two hundred twenty-nine' WHERE a=11472;\nUPDATE t2 SET c='twenty-three thousand seven' WHERE a=11473;\nUPDATE t2 SET c='eighteen thousand four' WHERE a=11474;\nUPDATE t2 SET c='seventy-seven thousand six hundred five' WHERE a=11475;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-five' WHERE a=11476;\nUPDATE t2 SET c='twenty-five thousand four hundred thirteen' WHERE a=11477;\nUPDATE t2 SET c='eighty-eight thousand nine hundred sixty-eight' WHERE a=11478;\nUPDATE t2 SET c='sixty-three thousand five hundred twenty-three' WHERE a=11479;\nUPDATE t2 SET c='eighty-five thousand five hundred thirty-six' WHERE a=11480;\nUPDATE t2 SET c='seventy-eight thousand eight hundred fifty-three' WHERE a=11481;\nUPDATE t2 SET c='forty-nine thousand four hundred twenty-three' WHERE a=11482;\nUPDATE t2 SET c='twenty-five thousand three hundred twenty-six' WHERE a=11483;\nUPDATE t2 SET c='sixty-nine thousand six hundred seventy-two' WHERE a=11484;\nUPDATE t2 SET c='seventy thousand one hundred sixty' WHERE a=11485;\nUPDATE t2 SET c='ninety-four thousand five hundred sixty-nine' WHERE a=11486;\nUPDATE t2 SET c='thirty-four thousand forty-three' WHERE a=11487;\nUPDATE t2 SET c='sixty-five thousand five hundred three' WHERE a=11488;\nUPDATE t2 SET c='twenty-six thousand eight hundred forty-one' WHERE a=11489;\nUPDATE t2 SET c='eighty-two thousand thirty-two' WHERE a=11490;\nUPDATE t2 SET c='seventy-five thousand seven hundred forty-five' WHERE a=11491;\nUPDATE t2 SET c='fifty-six thousand seven hundred forty-eight' WHERE a=11492;\nUPDATE t2 SET c='ninety-four thousand two hundred eighty-seven' WHERE a=11493;\nUPDATE t2 SET c='one thousand seven hundred eighty' WHERE a=11494;\nUPDATE t2 SET c='thirty-one thousand six hundred fifteen' WHERE a=11495;\nUPDATE t2 SET c='ten thousand nine hundred fifty-four' WHERE a=11496;\nUPDATE t2 SET c='seventy-five thousand seven hundred eighty-two' WHERE a=11497;\nUPDATE t2 SET c='twenty-four thousand four hundred ten' WHERE a=11498;\nUPDATE t2 SET c='fifty-eight thousand four hundred ten' WHERE a=11499;\nUPDATE t2 SET c='thirty thousand three hundred twenty-six' WHERE a=11500;\nUPDATE t2 SET c='six hundred forty-five' WHERE a=11501;\nUPDATE t2 SET c='seventy-four thousand one hundred sixty-eight' WHERE a=11502;\nUPDATE t2 SET c='fifty-two thousand eight hundred forty-six' WHERE a=11503;\nUPDATE t2 SET c='thirty-three thousand three hundred thirty-six' WHERE a=11504;\nUPDATE t2 SET c='eighty-four thousand four hundred eight' WHERE a=11505;\nUPDATE t2 SET c='forty-seven thousand five hundred fifteen' WHERE a=11506;\nUPDATE t2 SET c='sixty thousand eight hundred twenty-two' WHERE a=11507;\nUPDATE t2 SET c='seventy-three thousand one hundred fifty' WHERE a=11508;\nUPDATE t2 SET c='eighty-one thousand six hundred twelve' WHERE a=11509;\nUPDATE t2 SET c='sixty-three thousand four hundred nine' WHERE a=11510;\nUPDATE t2 SET c='sixty-eight thousand four hundred sixty-five' WHERE a=11511;\nUPDATE t2 SET c='twenty-five thousand seven hundred twenty' WHERE a=11512;\nUPDATE t2 SET c='seventy thousand five hundred sixty-eight' WHERE a=11513;\nUPDATE t2 SET c='ninety thousand eight hundred seventy-seven' WHERE a=11514;\nUPDATE t2 SET c='sixty-one thousand three hundred three' WHERE a=11515;\nUPDATE t2 SET c='sixty-five thousand four hundred twelve' WHERE a=11516;\nUPDATE t2 SET c='thirty thousand three hundred two' WHERE a=11517;\nUPDATE t2 SET c='fifty-seven thousand forty-one' WHERE a=11518;\nUPDATE t2 SET c='eighty-seven thousand five hundred ninety-nine' WHERE a=11519;\nUPDATE t2 SET c='one thousand one hundred thirty-four' WHERE a=11520;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirty-seven' WHERE a=11521;\nUPDATE t2 SET c='forty-nine thousand four hundred sixty-nine' WHERE a=11522;\nUPDATE t2 SET c='eighty-four thousand nine hundred sixty' WHERE a=11523;\nUPDATE t2 SET c='forty-two thousand one hundred seventeen' WHERE a=11524;\nUPDATE t2 SET c='sixty-five thousand six hundred eighty-two' WHERE a=11525;\nUPDATE t2 SET c='thirty-eight thousand seven hundred eighty-three' WHERE a=11526;\nUPDATE t2 SET c='forty-six thousand six hundred thirty-seven' WHERE a=11527;\nUPDATE t2 SET c='sixty-two thousand one hundred eight' WHERE a=11528;\nUPDATE t2 SET c='fifty-five thousand three hundred forty-seven' WHERE a=11529;\nUPDATE t2 SET c='twenty-eight thousand six hundred nineteen' WHERE a=11530;\nUPDATE t2 SET c='nineteen thousand nine hundred forty' WHERE a=11531;\nUPDATE t2 SET c='eighty-three thousand seven hundred seventy-eight' WHERE a=11532;\nUPDATE t2 SET c='eighty thousand six hundred sixty-four' WHERE a=11533;\nUPDATE t2 SET c='fifty-four thousand seven hundred sixty-five' WHERE a=11534;\nUPDATE t2 SET c='forty-six thousand one hundred nine' WHERE a=11535;\nUPDATE t2 SET c='forty thousand twenty-two' WHERE a=11536;\nUPDATE t2 SET c='sixteen thousand one hundred eighty-four' WHERE a=11537;\nUPDATE t2 SET c='fifty-seven thousand three hundred two' WHERE a=11538;\nUPDATE t2 SET c='seventy thousand nine hundred twenty-five' WHERE a=11539;\nUPDATE t2 SET c='ninety-one thousand eight hundred sixty-six' WHERE a=11540;\nUPDATE t2 SET c='twenty thousand nine hundred sixteen' WHERE a=11541;\nUPDATE t2 SET c='seventy-six thousand thirty-three' WHERE a=11542;\nUPDATE t2 SET c='one thousand seven hundred thirty-six' WHERE a=11543;\nUPDATE t2 SET c='twenty-one thousand five hundred ninety-two' WHERE a=11544;\nUPDATE t2 SET c='eighty-five thousand nine hundred seventy-five' WHERE a=11545;\nUPDATE t2 SET c='eighty-seven thousand five hundred two' WHERE a=11546;\nUPDATE t2 SET c='three thousand eight hundred fifty-two' WHERE a=11547;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-two' WHERE a=11548;\nUPDATE t2 SET c='thirty-seven thousand twenty-one' WHERE a=11549;\nUPDATE t2 SET c='twenty-nine thousand seven hundred ninety-three' WHERE a=11550;\nUPDATE t2 SET c='fifty thousand six hundred fifty-one' WHERE a=11551;\nUPDATE t2 SET c='ninety-nine thousand nine hundred seventy-eight' WHERE a=11552;\nUPDATE t2 SET c='seventy-four thousand two hundred forty-six' WHERE a=11553;\nUPDATE t2 SET c='sixty-five thousand two hundred seventy-seven' WHERE a=11554;\nUPDATE t2 SET c='twenty-two thousand forty-five' WHERE a=11555;\nUPDATE t2 SET c='sixty-seven thousand sixty-one' WHERE a=11556;\nUPDATE t2 SET c='thirty thousand forty-three' WHERE a=11557;\nUPDATE t2 SET c='one thousand eight hundred sixty-three' WHERE a=11558;\nUPDATE t2 SET c='nineteen thousand nine hundred twenty-six' WHERE a=11559;\nUPDATE t2 SET c='ten thousand six hundred sixty-one' WHERE a=11560;\nUPDATE t2 SET c='forty-two thousand one hundred seventy-two' WHERE a=11561;\nUPDATE t2 SET c='forty-two thousand three hundred forty-five' WHERE a=11562;\nUPDATE t2 SET c='seventy-seven thousand two hundred sixty-two' WHERE a=11563;\nUPDATE t2 SET c='eight hundred five' WHERE a=11564;\nUPDATE t2 SET c='seventy-eight thousand fifty-eight' WHERE a=11565;\nUPDATE t2 SET c='eighty-two thousand seven hundred fifteen' WHERE a=11566;\nUPDATE t2 SET c='fifty-two thousand eighty-nine' WHERE a=11567;\nUPDATE t2 SET c='ninety-eight thousand five hundred ninety-four' WHERE a=11568;\nUPDATE t2 SET c='ninety-two thousand two hundred seventy-five' WHERE a=11569;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty-one' WHERE a=11570;\nUPDATE t2 SET c='nineteen thousand five hundred forty-nine' WHERE a=11571;\nUPDATE t2 SET c='ninety-nine thousand three hundred eighty-six' WHERE a=11572;\nUPDATE t2 SET c='ten thousand thirty-two' WHERE a=11573;\nUPDATE t2 SET c='seventy-two thousand two hundred eighteen' WHERE a=11574;\nUPDATE t2 SET c='ten thousand four hundred twelve' WHERE a=11575;\nUPDATE t2 SET c='seventy-seven thousand nine hundred twelve' WHERE a=11576;\nUPDATE t2 SET c='twenty-one thousand nine hundred seventy' WHERE a=11577;\nUPDATE t2 SET c='fifty-five thousand four hundred sixty-seven' WHERE a=11578;\nUPDATE t2 SET c='seventy thousand nine hundred thirty' WHERE a=11579;\nUPDATE t2 SET c='twenty-five thousand seven hundred four' WHERE a=11580;\nUPDATE t2 SET c='forty-five thousand nine hundred ninety-two' WHERE a=11581;\nUPDATE t2 SET c='seventy thousand two hundred ninety-nine' WHERE a=11582;\nUPDATE t2 SET c='seventy-three thousand two hundred sixty-five' WHERE a=11583;\nUPDATE t2 SET c='eighty-eight thousand two hundred seventy-nine' WHERE a=11584;\nUPDATE t2 SET c='fifty-seven thousand fifty-two' WHERE a=11585;\nUPDATE t2 SET c='seventy-four thousand two hundred eighty' WHERE a=11586;\nUPDATE t2 SET c='eighty-four thousand five hundred twenty' WHERE a=11587;\nUPDATE t2 SET c='seven thousand three' WHERE a=11588;\nUPDATE t2 SET c='seventy-two thousand eight hundred ninety-nine' WHERE a=11589;\nUPDATE t2 SET c='sixty-six thousand seventy-one' WHERE a=11590;\nUPDATE t2 SET c='seventy-six thousand sixty-seven' WHERE a=11591;\nUPDATE t2 SET c='fifty-eight thousand two hundred four' WHERE a=11592;\nUPDATE t2 SET c='ninety-seven thousand three hundred eighty-five' WHERE a=11593;\nUPDATE t2 SET c='four hundred seventy-one' WHERE a=11594;\nUPDATE t2 SET c='fifty-five thousand fifty' WHERE a=11595;\nUPDATE t2 SET c='three thousand two hundred ninety-four' WHERE a=11596;\nUPDATE t2 SET c='eighty-two thousand six hundred ninety-six' WHERE a=11597;\nUPDATE t2 SET c='two thousand six hundred sixty-five' WHERE a=11598;\nUPDATE t2 SET c='eight thousand seven hundred seventeen' WHERE a=11599;\nUPDATE t2 SET c='forty-seven thousand seven hundred ninety' WHERE a=11600;\nUPDATE t2 SET c='thirty-nine thousand three hundred seventy-nine' WHERE a=11601;\nUPDATE t2 SET c='ninety-two thousand five hundred eighty-seven' WHERE a=11602;\nUPDATE t2 SET c='sixteen thousand seven hundred twenty' WHERE a=11603;\nUPDATE t2 SET c='three thousand nine hundred fifty-five' WHERE a=11604;\nUPDATE t2 SET c='twenty-two thousand nine hundred one' WHERE a=11605;\nUPDATE t2 SET c='thirty-three thousand nine hundred seventy-two' WHERE a=11606;\nUPDATE t2 SET c='three thousand eight hundred twenty-eight' WHERE a=11607;\nUPDATE t2 SET c='sixty-seven thousand four hundred thirty' WHERE a=11608;\nUPDATE t2 SET c='twenty-four thousand five hundred seven' WHERE a=11609;\nUPDATE t2 SET c='fifty-eight thousand seven hundred seventy-one' WHERE a=11610;\nUPDATE t2 SET c='eighty-two thousand six hundred ninety-four' WHERE a=11611;\nUPDATE t2 SET c='sixty-three thousand five hundred eighty-one' WHERE a=11612;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty-three' WHERE a=11613;\nUPDATE t2 SET c='forty-one thousand one hundred twenty-eight' WHERE a=11614;\nUPDATE t2 SET c='eighty-nine thousand eight hundred forty' WHERE a=11615;\nUPDATE t2 SET c='thirty-three thousand two hundred forty-five' WHERE a=11616;\nUPDATE t2 SET c='sixty-two thousand six hundred nineteen' WHERE a=11617;\nUPDATE t2 SET c='twenty-eight thousand three hundred twenty-seven' WHERE a=11618;\nUPDATE t2 SET c='twenty-four thousand eighty-nine' WHERE a=11619;\nUPDATE t2 SET c='forty-four thousand five hundred forty-one' WHERE a=11620;\nUPDATE t2 SET c='sixty-seven thousand three hundred ninety-nine' WHERE a=11621;\nUPDATE t2 SET c='ninety-nine thousand two hundred thirteen' WHERE a=11622;\nUPDATE t2 SET c='ninety-nine thousand nine hundred sixty-three' WHERE a=11623;\nUPDATE t2 SET c='seventy-three thousand five hundred nine' WHERE a=11624;\nUPDATE t2 SET c='one thousand seventy-two' WHERE a=11625;\nUPDATE t2 SET c='thirty-two thousand four hundred ninety-six' WHERE a=11626;\nUPDATE t2 SET c='sixty-four thousand six hundred forty-three' WHERE a=11627;\nUPDATE t2 SET c='fifty-four thousand' WHERE a=11628;\nUPDATE t2 SET c='seventy-four thousand five hundred seventy-eight' WHERE a=11629;\nUPDATE t2 SET c='seventy thousand three hundred twenty-three' WHERE a=11630;\nUPDATE t2 SET c='seventy-five thousand two hundred thirty-five' WHERE a=11631;\nUPDATE t2 SET c='thirty-three thousand eight hundred two' WHERE a=11632;\nUPDATE t2 SET c='two thousand one hundred thirty-seven' WHERE a=11633;\nUPDATE t2 SET c='twenty-two thousand two hundred fourteen' WHERE a=11634;\nUPDATE t2 SET c='seventy-one thousand five hundred seventy-six' WHERE a=11635;\nUPDATE t2 SET c='thirty-two thousand eight hundred eighty-two' WHERE a=11636;\nUPDATE t2 SET c='forty-one thousand two hundred sixty' WHERE a=11637;\nUPDATE t2 SET c='thirty-three thousand five hundred fifty-eight' WHERE a=11638;\nUPDATE t2 SET c='forty thousand nine hundred ninety-six' WHERE a=11639;\nUPDATE t2 SET c='ninety-one thousand eight hundred forty-eight' WHERE a=11640;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy-nine' WHERE a=11641;\nUPDATE t2 SET c='nine thousand two hundred seventy-six' WHERE a=11642;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirty-one' WHERE a=11643;\nUPDATE t2 SET c='thirty-two thousand three hundred thirty-six' WHERE a=11644;\nUPDATE t2 SET c='five thousand three hundred thirteen' WHERE a=11645;\nUPDATE t2 SET c='four hundred twenty-six' WHERE a=11646;\nUPDATE t2 SET c='fifteen thousand ten' WHERE a=11647;\nUPDATE t2 SET c='seventy-three thousand seven hundred forty-seven' WHERE a=11648;\nUPDATE t2 SET c='thirty-four thousand ninety-four' WHERE a=11649;\nUPDATE t2 SET c='ninety-seven thousand eight hundred twenty-five' WHERE a=11650;\nUPDATE t2 SET c='ninety-four thousand three hundred twenty-one' WHERE a=11651;\nUPDATE t2 SET c='forty-four thousand seven hundred ninety-four' WHERE a=11652;\nUPDATE t2 SET c='seventy-eight thousand one hundred forty-eight' WHERE a=11653;\nUPDATE t2 SET c='twenty-five thousand eight hundred ninety-two' WHERE a=11654;\nUPDATE t2 SET c='sixty-seven thousand seven hundred fifty-one' WHERE a=11655;\nUPDATE t2 SET c='twenty-eight thousand nine hundred forty' WHERE a=11656;\nUPDATE t2 SET c='seventy-six thousand twenty-five' WHERE a=11657;\nUPDATE t2 SET c='seventy-five thousand eight hundred sixty-two' WHERE a=11658;\nUPDATE t2 SET c='seventy-five thousand fifty-nine' WHERE a=11659;\nUPDATE t2 SET c='ninety-five thousand three hundred seventy-five' WHERE a=11660;\nUPDATE t2 SET c='ninety-one thousand seven hundred twenty-four' WHERE a=11661;\nUPDATE t2 SET c='seventy-five thousand seven hundred fifty-seven' WHERE a=11662;\nUPDATE t2 SET c='forty-five thousand four hundred ninety-three' WHERE a=11663;\nUPDATE t2 SET c='eleven thousand five hundred eighty-five' WHERE a=11664;\nUPDATE t2 SET c='one thousand five hundred thirty-six' WHERE a=11665;\nUPDATE t2 SET c='thirty-two thousand nine hundred fifty-five' WHERE a=11666;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-one' WHERE a=11667;\nUPDATE t2 SET c='two thousand four hundred twenty-five' WHERE a=11668;\nUPDATE t2 SET c='thirty-one thousand nine hundred forty-two' WHERE a=11669;\nUPDATE t2 SET c='twenty-eight thousand five hundred thirty-four' WHERE a=11670;\nUPDATE t2 SET c='fifty-eight thousand three hundred eighty-five' WHERE a=11671;\nUPDATE t2 SET c='seventy-four thousand one hundred fifty-three' WHERE a=11672;\nUPDATE t2 SET c='thirty-one thousand two hundred twenty-six' WHERE a=11673;\nUPDATE t2 SET c='four thousand one' WHERE a=11674;\nUPDATE t2 SET c='seventy-one thousand four hundred forty-four' WHERE a=11675;\nUPDATE t2 SET c='seventy-eight thousand eight hundred eighty-five' WHERE a=11676;\nUPDATE t2 SET c='twenty-three thousand eight hundred sixty-six' WHERE a=11677;\nUPDATE t2 SET c='forty thousand two hundred fifty-five' WHERE a=11678;\nUPDATE t2 SET c='ninety-seven thousand one hundred sixty-six' WHERE a=11679;\nUPDATE t2 SET c='fifty-four thousand two hundred ninety-nine' WHERE a=11680;\nUPDATE t2 SET c='nine thousand fifty-six' WHERE a=11681;\nUPDATE t2 SET c='fifty-six thousand seven hundred thirty-five' WHERE a=11682;\nUPDATE t2 SET c='three thousand seven hundred forty' WHERE a=11683;\nUPDATE t2 SET c='eighty-nine thousand one' WHERE a=11684;\nUPDATE t2 SET c='seventy-five thousand three hundred fifty' WHERE a=11685;\nUPDATE t2 SET c='thirty-five thousand three hundred seventy-one' WHERE a=11686;\nUPDATE t2 SET c='fourteen thousand two hundred twenty-one' WHERE a=11687;\nUPDATE t2 SET c='fifty-five thousand one hundred seventy-seven' WHERE a=11688;\nUPDATE t2 SET c='twenty-four thousand one hundred eleven' WHERE a=11689;\nUPDATE t2 SET c='one thousand nine hundred eighty-one' WHERE a=11690;\nUPDATE t2 SET c='eighty thousand six hundred thirty-one' WHERE a=11691;\nUPDATE t2 SET c='forty-seven thousand thirty-six' WHERE a=11692;\nUPDATE t2 SET c='fifteen thousand five hundred three' WHERE a=11693;\nUPDATE t2 SET c='ninety-five thousand eight hundred thirty-seven' WHERE a=11694;\nUPDATE t2 SET c='ninety-two thousand two hundred forty' WHERE a=11695;\nUPDATE t2 SET c='ninety-three thousand one hundred thirty' WHERE a=11696;\nUPDATE t2 SET c='seventy-nine thousand seven hundred forty-seven' WHERE a=11697;\nUPDATE t2 SET c='seventeen thousand twenty-three' WHERE a=11698;\nUPDATE t2 SET c='ninety-seven thousand six hundred nine' WHERE a=11699;\nUPDATE t2 SET c='seventy-four thousand eight hundred eighty-seven' WHERE a=11700;\nUPDATE t2 SET c='nineteen thousand eight hundred forty-three' WHERE a=11701;\nUPDATE t2 SET c='forty-four thousand nine hundred fifteen' WHERE a=11702;\nUPDATE t2 SET c='seventy-one thousand three hundred thirty-nine' WHERE a=11703;\nUPDATE t2 SET c='eighty-three thousand five hundred nine' WHERE a=11704;\nUPDATE t2 SET c='seventy thousand five hundred seventy-eight' WHERE a=11705;\nUPDATE t2 SET c='twenty-eight thousand seven hundred six' WHERE a=11706;\nUPDATE t2 SET c='ninety-one thousand three hundred thirteen' WHERE a=11707;\nUPDATE t2 SET c='thirty-one thousand two hundred ninety-five' WHERE a=11708;\nUPDATE t2 SET c='fifty-six thousand five hundred forty-six' WHERE a=11709;\nUPDATE t2 SET c='fourteen thousand seven hundred twenty-three' WHERE a=11710;\nUPDATE t2 SET c='seven thousand six hundred forty-six' WHERE a=11711;\nUPDATE t2 SET c='forty-seven thousand one hundred thirty-seven' WHERE a=11712;\nUPDATE t2 SET c='fifteen thousand eight hundred ninety-six' WHERE a=11713;\nUPDATE t2 SET c='one hundred five' WHERE a=11714;\nUPDATE t2 SET c='seventy-four thousand five hundred forty-four' WHERE a=11715;\nUPDATE t2 SET c='forty-six thousand one hundred seventy-seven' WHERE a=11716;\nUPDATE t2 SET c='twenty thousand three hundred seventy-seven' WHERE a=11717;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty-eight' WHERE a=11718;\nUPDATE t2 SET c='eight thousand six hundred ninety-three' WHERE a=11719;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy-seven' WHERE a=11720;\nUPDATE t2 SET c='fifteen thousand three hundred fifty-two' WHERE a=11721;\nUPDATE t2 SET c='seventy-eight thousand eighty-three' WHERE a=11722;\nUPDATE t2 SET c='seven thousand six hundred eight' WHERE a=11723;\nUPDATE t2 SET c='seventy-eight thousand three hundred eleven' WHERE a=11724;\nUPDATE t2 SET c='thirty-eight thousand two hundred fifty-one' WHERE a=11725;\nUPDATE t2 SET c='seventeen thousand three hundred seven' WHERE a=11726;\nUPDATE t2 SET c='sixteen thousand six hundred twenty-two' WHERE a=11727;\nUPDATE t2 SET c='ninety-six thousand thirty-four' WHERE a=11728;\nUPDATE t2 SET c='twenty-six thousand five hundred eighty-two' WHERE a=11729;\nUPDATE t2 SET c='forty-seven thousand four hundred sixty-nine' WHERE a=11730;\nUPDATE t2 SET c='twenty-one thousand two hundred twenty-four' WHERE a=11731;\nUPDATE t2 SET c='sixty-six thousand six hundred thirty-nine' WHERE a=11732;\nUPDATE t2 SET c='eight thousand four hundred fifteen' WHERE a=11733;\nUPDATE t2 SET c='sixty-four thousand six hundred ninety-six' WHERE a=11734;\nUPDATE t2 SET c='sixty-seven thousand four hundred sixty-three' WHERE a=11735;\nUPDATE t2 SET c='forty-eight thousand three hundred eleven' WHERE a=11736;\nUPDATE t2 SET c='sixty-one thousand three hundred twenty' WHERE a=11737;\nUPDATE t2 SET c='eight thousand two hundred sixty-five' WHERE a=11738;\nUPDATE t2 SET c='ninety-six thousand one hundred eighty-seven' WHERE a=11739;\nUPDATE t2 SET c='sixteen thousand four hundred thirty-two' WHERE a=11740;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-one' WHERE a=11741;\nUPDATE t2 SET c='fifty-seven thousand four hundred eighty-three' WHERE a=11742;\nUPDATE t2 SET c='forty-one thousand three hundred twenty-one' WHERE a=11743;\nUPDATE t2 SET c='eighty-three thousand five hundred eighty-six' WHERE a=11744;\nUPDATE t2 SET c='seventy-five thousand four hundred eighteen' WHERE a=11745;\nUPDATE t2 SET c='thirty-six thousand twenty-seven' WHERE a=11746;\nUPDATE t2 SET c='sixty-two thousand two hundred seventy-six' WHERE a=11747;\nUPDATE t2 SET c='thirty-nine thousand eight hundred seventy-three' WHERE a=11748;\nUPDATE t2 SET c='ninety-seven thousand one hundred ninety-three' WHERE a=11749;\nUPDATE t2 SET c='sixty-six thousand one hundred forty-nine' WHERE a=11750;\nUPDATE t2 SET c='seventeen thousand eight hundred ninety-eight' WHERE a=11751;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty-one' WHERE a=11752;\nUPDATE t2 SET c='ten thousand eight' WHERE a=11753;\nUPDATE t2 SET c='sixty-three thousand five hundred sixty-nine' WHERE a=11754;\nUPDATE t2 SET c='fifty-two thousand two hundred six' WHERE a=11755;\nUPDATE t2 SET c='seventy-two thousand five hundred thirty-three' WHERE a=11756;\nUPDATE t2 SET c='thirty-seven thousand four hundred sixty-seven' WHERE a=11757;\nUPDATE t2 SET c='thirty-four thousand one hundred fifty-seven' WHERE a=11758;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-five' WHERE a=11759;\nUPDATE t2 SET c='sixty-five thousand eight hundred fifty-two' WHERE a=11760;\nUPDATE t2 SET c='two thousand five hundred fifty-three' WHERE a=11761;\nUPDATE t2 SET c='sixty-one thousand seven hundred seventy-one' WHERE a=11762;\nUPDATE t2 SET c='twenty-one thousand seven hundred forty-nine' WHERE a=11763;\nUPDATE t2 SET c='forty-eight thousand one hundred eighty-three' WHERE a=11764;\nUPDATE t2 SET c='thirty thousand five hundred forty-one' WHERE a=11765;\nUPDATE t2 SET c='five thousand six hundred ninety-nine' WHERE a=11766;\nUPDATE t2 SET c='thirty-three thousand three hundred thirty-five' WHERE a=11767;\nUPDATE t2 SET c='one thousand four hundred ninety-three' WHERE a=11768;\nUPDATE t2 SET c='eighty-five thousand two hundred seventy-nine' WHERE a=11769;\nUPDATE t2 SET c='fifteen thousand eight hundred sixty-two' WHERE a=11770;\nUPDATE t2 SET c='seventy-three thousand four hundred five' WHERE a=11771;\nUPDATE t2 SET c='twenty-one thousand two hundred sixteen' WHERE a=11772;\nUPDATE t2 SET c='seven thousand four hundred ninety-five' WHERE a=11773;\nUPDATE t2 SET c='seventy thousand six hundred eighty' WHERE a=11774;\nUPDATE t2 SET c='twenty-five thousand seven hundred eighty-nine' WHERE a=11775;\nUPDATE t2 SET c='three thousand two hundred four' WHERE a=11776;\nUPDATE t2 SET c='sixty-three thousand five hundred eighty-one' WHERE a=11777;\nUPDATE t2 SET c='eighty-four thousand eight hundred five' WHERE a=11778;\nUPDATE t2 SET c='six thousand eight hundred eighty-five' WHERE a=11779;\nUPDATE t2 SET c='sixty-six thousand nine hundred fourteen' WHERE a=11780;\nUPDATE t2 SET c='eighty thousand two hundred twenty-nine' WHERE a=11781;\nUPDATE t2 SET c='fifty thousand four hundred twenty-five' WHERE a=11782;\nUPDATE t2 SET c='sixty thousand eight hundred two' WHERE a=11783;\nUPDATE t2 SET c='sixty-six thousand three hundred eighty-four' WHERE a=11784;\nUPDATE t2 SET c='eighty-five thousand three hundred ninety-seven' WHERE a=11785;\nUPDATE t2 SET c='fifteen thousand seven hundred twelve' WHERE a=11786;\nUPDATE t2 SET c='seventy thousand five hundred twenty-six' WHERE a=11787;\nUPDATE t2 SET c='forty thousand sixty-five' WHERE a=11788;\nUPDATE t2 SET c='forty-six thousand sixty-two' WHERE a=11789;\nUPDATE t2 SET c='thirty-three thousand five hundred six' WHERE a=11790;\nUPDATE t2 SET c='ninety-seven thousand four hundred fifty-eight' WHERE a=11791;\nUPDATE t2 SET c='eighty-one thousand four hundred twenty-three' WHERE a=11792;\nUPDATE t2 SET c='thirty thousand three hundred seventeen' WHERE a=11793;\nUPDATE t2 SET c='eighty-nine thousand four hundred seventy-six' WHERE a=11794;\nUPDATE t2 SET c='seventy-three thousand one hundred thirty-eight' WHERE a=11795;\nUPDATE t2 SET c='five thousand nine hundred eighty-nine' WHERE a=11796;\nUPDATE t2 SET c='ninety-four thousand nine hundred seventy-two' WHERE a=11797;\nUPDATE t2 SET c='sixty-seven thousand nine hundred seventy' WHERE a=11798;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-two' WHERE a=11799;\nUPDATE t2 SET c='forty-four thousand seven hundred seventy-three' WHERE a=11800;\nUPDATE t2 SET c='eleven thousand two hundred forty-two' WHERE a=11801;\nUPDATE t2 SET c='fifty-seven thousand eight hundred seventy' WHERE a=11802;\nUPDATE t2 SET c='eighty-seven thousand seven hundred forty-one' WHERE a=11803;\nUPDATE t2 SET c='seventy-three thousand six hundred seventeen' WHERE a=11804;\nUPDATE t2 SET c='seventy-nine thousand eight hundred twenty-seven' WHERE a=11805;\nUPDATE t2 SET c='twenty-six thousand nine hundred sixty-two' WHERE a=11806;\nUPDATE t2 SET c='eighty-nine thousand eight hundred sixty-three' WHERE a=11807;\nUPDATE t2 SET c='thirty-nine thousand nine hundred sixty-one' WHERE a=11808;\nUPDATE t2 SET c='seventy-one thousand one hundred sixty-seven' WHERE a=11809;\nUPDATE t2 SET c='thirty-five thousand five hundred two' WHERE a=11810;\nUPDATE t2 SET c='forty-nine thousand sixty' WHERE a=11811;\nUPDATE t2 SET c='fifty-seven thousand one hundred ninety' WHERE a=11812;\nUPDATE t2 SET c='sixty thousand six hundred forty-one' WHERE a=11813;\nUPDATE t2 SET c='sixty-five thousand four hundred forty-eight' WHERE a=11814;\nUPDATE t2 SET c='thirty-nine thousand two hundred seventy-eight' WHERE a=11815;\nUPDATE t2 SET c='eighteen thousand three hundred four' WHERE a=11816;\nUPDATE t2 SET c='sixty-five thousand four hundred one' WHERE a=11817;\nUPDATE t2 SET c='thirteen thousand two hundred thirty-six' WHERE a=11818;\nUPDATE t2 SET c='fifty thousand eighty-two' WHERE a=11819;\nUPDATE t2 SET c='five thousand ninety' WHERE a=11820;\nUPDATE t2 SET c='ninety-five thousand five hundred sixty-seven' WHERE a=11821;\nUPDATE t2 SET c='sixty-seven thousand five hundred twenty-four' WHERE a=11822;\nUPDATE t2 SET c='thirty-eight thousand three hundred twenty-six' WHERE a=11823;\nUPDATE t2 SET c='fifty-eight thousand one hundred five' WHERE a=11824;\nUPDATE t2 SET c='twenty-nine thousand nine hundred forty-eight' WHERE a=11825;\nUPDATE t2 SET c='thirty-nine thousand six hundred fifteen' WHERE a=11826;\nUPDATE t2 SET c='nineteen thousand one hundred fifty-eight' WHERE a=11827;\nUPDATE t2 SET c='thirty-nine thousand two hundred thirteen' WHERE a=11828;\nUPDATE t2 SET c='thirty-six thousand four' WHERE a=11829;\nUPDATE t2 SET c='eighty-seven thousand forty-eight' WHERE a=11830;\nUPDATE t2 SET c='thirteen thousand four hundred seven' WHERE a=11831;\nUPDATE t2 SET c='fifty-three thousand one hundred seventy-one' WHERE a=11832;\nUPDATE t2 SET c='twenty-five thousand four hundred fifty-two' WHERE a=11833;\nUPDATE t2 SET c='thirty-six thousand five hundred fifty-one' WHERE a=11834;\nUPDATE t2 SET c='eighty-three thousand seventy-seven' WHERE a=11835;\nUPDATE t2 SET c='eighty-five thousand nine hundred eighty-six' WHERE a=11836;\nUPDATE t2 SET c='fifty-four thousand two hundred sixty-four' WHERE a=11837;\nUPDATE t2 SET c='thirty-two thousand eight hundred sixty-two' WHERE a=11838;\nUPDATE t2 SET c='forty-five thousand sixty-five' WHERE a=11839;\nUPDATE t2 SET c='ninety-eight thousand nine hundred ninety-four' WHERE a=11840;\nUPDATE t2 SET c='seventy-two thousand nine hundred eighty-three' WHERE a=11841;\nUPDATE t2 SET c='four thousand six hundred forty-one' WHERE a=11842;\nUPDATE t2 SET c='sixty-four thousand six hundred eighty-seven' WHERE a=11843;\nUPDATE t2 SET c='thirty-one thousand six hundred twenty' WHERE a=11844;\nUPDATE t2 SET c='thirty-four thousand five hundred forty-nine' WHERE a=11845;\nUPDATE t2 SET c='eighty-one thousand seventy-three' WHERE a=11846;\nUPDATE t2 SET c='twenty-two thousand five hundred thirty-two' WHERE a=11847;\nUPDATE t2 SET c='thirty-six thousand five hundred seventy-two' WHERE a=11848;\nUPDATE t2 SET c='ninety thousand one hundred four' WHERE a=11849;\nUPDATE t2 SET c='seventy thousand four hundred ninety-nine' WHERE a=11850;\nUPDATE t2 SET c='twenty-four thousand four hundred sixty-seven' WHERE a=11851;\nUPDATE t2 SET c='sixty-two thousand two hundred forty' WHERE a=11852;\nUPDATE t2 SET c='thirty-seven thousand four hundred forty-four' WHERE a=11853;\nUPDATE t2 SET c='twelve thousand forty-one' WHERE a=11854;\nUPDATE t2 SET c='forty-two thousand five hundred forty-seven' WHERE a=11855;\nUPDATE t2 SET c='eighty-four thousand one hundred sixty-six' WHERE a=11856;\nUPDATE t2 SET c='fifty-six thousand seven hundred twenty-two' WHERE a=11857;\nUPDATE t2 SET c='nine thousand three hundred eleven' WHERE a=11858;\nUPDATE t2 SET c='thirty-nine thousand three hundred eighty-three' WHERE a=11859;\nUPDATE t2 SET c='ninety-three thousand six hundred twenty-one' WHERE a=11860;\nUPDATE t2 SET c='twenty-eight thousand one hundred sixty-seven' WHERE a=11861;\nUPDATE t2 SET c='fifty-three thousand six hundred' WHERE a=11862;\nUPDATE t2 SET c='fifteen thousand two hundred ninety-eight' WHERE a=11863;\nUPDATE t2 SET c='forty-six thousand eight hundred sixteen' WHERE a=11864;\nUPDATE t2 SET c='thirty-four thousand three hundred fifty-five' WHERE a=11865;\nUPDATE t2 SET c='sixty-three thousand three hundred forty-nine' WHERE a=11866;\nUPDATE t2 SET c='sixty-eight thousand eight hundred thirty-six' WHERE a=11867;\nUPDATE t2 SET c='fifty thousand seven hundred twenty-two' WHERE a=11868;\nUPDATE t2 SET c='seventy-seven thousand seven hundred thirty' WHERE a=11869;\nUPDATE t2 SET c='fifty-two thousand thirty-nine' WHERE a=11870;\nUPDATE t2 SET c='sixty-eight thousand five hundred twenty-nine' WHERE a=11871;\nUPDATE t2 SET c='twenty-one thousand nineteen' WHERE a=11872;\nUPDATE t2 SET c='fifty-seven thousand seven hundred fifteen' WHERE a=11873;\nUPDATE t2 SET c='fifty thousand seven hundred twelve' WHERE a=11874;\nUPDATE t2 SET c='thirty-nine thousand two hundred thirty-seven' WHERE a=11875;\nUPDATE t2 SET c='eighty-four thousand ninety-seven' WHERE a=11876;\nUPDATE t2 SET c='ninety-nine thousand eight hundred seventy-two' WHERE a=11877;\nUPDATE t2 SET c='ninety-eight thousand six hundred thirty' WHERE a=11878;\nUPDATE t2 SET c='eight thousand one hundred ninety-nine' WHERE a=11879;\nUPDATE t2 SET c='eighty-two thousand twenty-two' WHERE a=11880;\nUPDATE t2 SET c='sixty-three thousand six hundred fourteen' WHERE a=11881;\nUPDATE t2 SET c='seventy-five thousand fifteen' WHERE a=11882;\nUPDATE t2 SET c='seventy-four thousand eight hundred thirty-four' WHERE a=11883;\nUPDATE t2 SET c='thirty-four thousand six hundred eighty-eight' WHERE a=11884;\nUPDATE t2 SET c='forty-five thousand fifty' WHERE a=11885;\nUPDATE t2 SET c='eighty-three thousand three hundred seventy' WHERE a=11886;\nUPDATE t2 SET c='nine thousand two hundred ten' WHERE a=11887;\nUPDATE t2 SET c='eighty-five thousand eight hundred eighty-four' WHERE a=11888;\nUPDATE t2 SET c='thirteen thousand two hundred ninety-four' WHERE a=11889;\nUPDATE t2 SET c='thirty-one thousand six hundred sixty-one' WHERE a=11890;\nUPDATE t2 SET c='ninety-nine thousand two hundred sixty-three' WHERE a=11891;\nUPDATE t2 SET c='sixty-eight thousand four hundred thirty-one' WHERE a=11892;\nUPDATE t2 SET c='twenty-six thousand five hundred twenty-five' WHERE a=11893;\nUPDATE t2 SET c='forty-nine thousand one hundred eighty-seven' WHERE a=11894;\nUPDATE t2 SET c='forty-three thousand four hundred fifty' WHERE a=11895;\nUPDATE t2 SET c='forty-nine thousand six hundred eight' WHERE a=11896;\nUPDATE t2 SET c='forty-one thousand five hundred thirty-six' WHERE a=11897;\nUPDATE t2 SET c='sixty-nine thousand three hundred fifty-seven' WHERE a=11898;\nUPDATE t2 SET c='sixty-five thousand two hundred sixty-three' WHERE a=11899;\nUPDATE t2 SET c='sixty-eight thousand eight hundred forty-seven' WHERE a=11900;\nUPDATE t2 SET c='fifty thousand four hundred eight' WHERE a=11901;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-nine' WHERE a=11902;\nUPDATE t2 SET c='twenty-seven thousand five hundred eighty-six' WHERE a=11903;\nUPDATE t2 SET c='thirty-four thousand six hundred twelve' WHERE a=11904;\nUPDATE t2 SET c='seventeen thousand one hundred eighty-three' WHERE a=11905;\nUPDATE t2 SET c='sixty-seven thousand five hundred thirty-seven' WHERE a=11906;\nUPDATE t2 SET c='eighty-six thousand three hundred ninety-five' WHERE a=11907;\nUPDATE t2 SET c='six thousand forty-two' WHERE a=11908;\nUPDATE t2 SET c='fifty-one thousand seven hundred eighty-nine' WHERE a=11909;\nUPDATE t2 SET c='fifty-two thousand nine hundred five' WHERE a=11910;\nUPDATE t2 SET c='twenty-two thousand eight hundred sixty-one' WHERE a=11911;\nUPDATE t2 SET c='twenty thousand three hundred thirty-seven' WHERE a=11912;\nUPDATE t2 SET c='forty-three thousand ninety-eight' WHERE a=11913;\nUPDATE t2 SET c='thirty-five thousand six hundred twenty-three' WHERE a=11914;\nUPDATE t2 SET c='fifty thousand eight hundred fourteen' WHERE a=11915;\nUPDATE t2 SET c='seventy-two thousand three hundred eight' WHERE a=11916;\nUPDATE t2 SET c='eighty-seven thousand three hundred one' WHERE a=11917;\nUPDATE t2 SET c='twenty-four thousand three hundred ninety-five' WHERE a=11918;\nUPDATE t2 SET c='ninety-six thousand nine hundred eight' WHERE a=11919;\nUPDATE t2 SET c='sixty thousand three hundred seven' WHERE a=11920;\nUPDATE t2 SET c='seventy-seven thousand thirty-five' WHERE a=11921;\nUPDATE t2 SET c='eighty-nine thousand nine hundred thirty-eight' WHERE a=11922;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-three' WHERE a=11923;\nUPDATE t2 SET c='seventy-five thousand six hundred thirty-eight' WHERE a=11924;\nUPDATE t2 SET c='thirty-one thousand thirty-eight' WHERE a=11925;\nUPDATE t2 SET c='ninety thousand seven hundred sixty-three' WHERE a=11926;\nUPDATE t2 SET c='sixty-nine thousand six hundred twenty-nine' WHERE a=11927;\nUPDATE t2 SET c='eighty-four thousand one hundred twenty-nine' WHERE a=11928;\nUPDATE t2 SET c='fifty-two thousand five hundred seven' WHERE a=11929;\nUPDATE t2 SET c='three thousand two hundred eighty-five' WHERE a=11930;\nUPDATE t2 SET c='twenty-three thousand seven hundred forty-two' WHERE a=11931;\nUPDATE t2 SET c='twenty-nine thousand five hundred seventy-five' WHERE a=11932;\nUPDATE t2 SET c='five thousand eight hundred ninety-six' WHERE a=11933;\nUPDATE t2 SET c='forty-four thousand eight hundred eighty-three' WHERE a=11934;\nUPDATE t2 SET c='seventy-eight thousand five hundred thirty-eight' WHERE a=11935;\nUPDATE t2 SET c='seventy-seven thousand seven hundred twenty-six' WHERE a=11936;\nUPDATE t2 SET c='seventy-seven thousand two hundred forty-four' WHERE a=11937;\nUPDATE t2 SET c='twenty-four thousand eight hundred forty-seven' WHERE a=11938;\nUPDATE t2 SET c='fifty-six thousand five hundred seventy-four' WHERE a=11939;\nUPDATE t2 SET c='forty-eight thousand seven hundred ninety-eight' WHERE a=11940;\nUPDATE t2 SET c='thirty-four thousand ninety-five' WHERE a=11941;\nUPDATE t2 SET c='seven thousand nine hundred ninety-seven' WHERE a=11942;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-two' WHERE a=11943;\nUPDATE t2 SET c='forty-seven thousand two hundred sixty' WHERE a=11944;\nUPDATE t2 SET c='twenty-seven thousand four hundred eleven' WHERE a=11945;\nUPDATE t2 SET c='seventeen thousand five hundred seventy-eight' WHERE a=11946;\nUPDATE t2 SET c='seventy-three thousand six hundred sixty-eight' WHERE a=11947;\nUPDATE t2 SET c='eighty-nine thousand seven hundred fourteen' WHERE a=11948;\nUPDATE t2 SET c='fifty-five thousand nine hundred twenty-nine' WHERE a=11949;\nUPDATE t2 SET c='twenty-two thousand five hundred seventy-six' WHERE a=11950;\nUPDATE t2 SET c='seventy-two thousand three hundred sixteen' WHERE a=11951;\nUPDATE t2 SET c='seventy-eight thousand five hundred seventy-seven' WHERE a=11952;\nUPDATE t2 SET c='thirty-one thousand three hundred forty-four' WHERE a=11953;\nUPDATE t2 SET c='sixty-seven thousand three hundred thirty-three' WHERE a=11954;\nUPDATE t2 SET c='thirteen thousand nine hundred ninety-nine' WHERE a=11955;\nUPDATE t2 SET c='nine thousand four hundred twenty-six' WHERE a=11956;\nUPDATE t2 SET c='twelve thousand three hundred sixty-six' WHERE a=11957;\nUPDATE t2 SET c='two hundred forty-four' WHERE a=11958;\nUPDATE t2 SET c='two hundred eighty-nine' WHERE a=11959;\nUPDATE t2 SET c='thirty thousand one hundred five' WHERE a=11960;\nUPDATE t2 SET c='thirty-five thousand six hundred two' WHERE a=11961;\nUPDATE t2 SET c='thirty-three thousand eight hundred nine' WHERE a=11962;\nUPDATE t2 SET c='eighty-one thousand two hundred thirty-nine' WHERE a=11963;\nUPDATE t2 SET c='ninety-five thousand four hundred seventy-eight' WHERE a=11964;\nUPDATE t2 SET c='ninety-three thousand four hundred sixty-nine' WHERE a=11965;\nUPDATE t2 SET c='eleven thousand five hundred sixteen' WHERE a=11966;\nUPDATE t2 SET c='sixty-eight thousand one hundred fifty' WHERE a=11967;\nUPDATE t2 SET c='sixty-three thousand six hundred eleven' WHERE a=11968;\nUPDATE t2 SET c='eighty thousand four hundred sixty-four' WHERE a=11969;\nUPDATE t2 SET c='ninety-one thousand seventy-six' WHERE a=11970;\nUPDATE t2 SET c='eighty-four thousand seven hundred forty-nine' WHERE a=11971;\nUPDATE t2 SET c='fifty-two thousand eight hundred ninety-nine' WHERE a=11972;\nUPDATE t2 SET c='fifty-four thousand six hundred eighty-two' WHERE a=11973;\nUPDATE t2 SET c='sixty-five thousand two hundred eighty-five' WHERE a=11974;\nUPDATE t2 SET c='four thousand six hundred twenty' WHERE a=11975;\nUPDATE t2 SET c='eighty-four thousand two hundred sixty-eight' WHERE a=11976;\nUPDATE t2 SET c='ninety-four thousand forty-eight' WHERE a=11977;\nUPDATE t2 SET c='three thousand four hundred thirty-seven' WHERE a=11978;\nUPDATE t2 SET c='thirty-seven thousand eight hundred eighteen' WHERE a=11979;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy-three' WHERE a=11980;\nUPDATE t2 SET c='sixty-six thousand seven hundred forty-two' WHERE a=11981;\nUPDATE t2 SET c='eighteen thousand nine hundred fifty-seven' WHERE a=11982;\nUPDATE t2 SET c='ninety-four thousand five hundred eighteen' WHERE a=11983;\nUPDATE t2 SET c='eighty thousand six hundred eighty-three' WHERE a=11984;\nUPDATE t2 SET c='six thousand four hundred twenty-seven' WHERE a=11985;\nUPDATE t2 SET c='forty-two thousand one hundred fifty-three' WHERE a=11986;\nUPDATE t2 SET c='eighty-one thousand eight hundred seventy-nine' WHERE a=11987;\nUPDATE t2 SET c='twenty thousand three hundred eighty-seven' WHERE a=11988;\nUPDATE t2 SET c='sixty-eight thousand four hundred eighty-three' WHERE a=11989;\nUPDATE t2 SET c='eighty-seven thousand eight hundred sixty-three' WHERE a=11990;\nUPDATE t2 SET c='eighty-seven thousand four hundred fifty-one' WHERE a=11991;\nUPDATE t2 SET c='six thousand four hundred four' WHERE a=11992;\nUPDATE t2 SET c='thirteen thousand thirty-two' WHERE a=11993;\nUPDATE t2 SET c='sixteen thousand nine hundred ninety-five' WHERE a=11994;\nUPDATE t2 SET c='twenty-five thousand five hundred eighty' WHERE a=11995;\nUPDATE t2 SET c='sixty-two thousand five hundred forty-one' WHERE a=11996;\nUPDATE t2 SET c='fifty-nine thousand eight hundred sixty-six' WHERE a=11997;\nUPDATE t2 SET c='nineteen thousand one hundred thirteen' WHERE a=11998;\nUPDATE t2 SET c='seventy-four thousand one hundred eighty-nine' WHERE a=11999;\nUPDATE t2 SET c='sixty-seven thousand five hundred ninety-seven' WHERE a=12000;\nUPDATE t2 SET c='seventy-three thousand three hundred fifty-seven' WHERE a=12001;\nUPDATE t2 SET c='thirty-three thousand one hundred six' WHERE a=12002;\nUPDATE t2 SET c='eighty-seven thousand eight hundred thirty-one' WHERE a=12003;\nUPDATE t2 SET c='ninety-four thousand ninety-eight' WHERE a=12004;\nUPDATE t2 SET c='forty thousand six hundred eighteen' WHERE a=12005;\nUPDATE t2 SET c='seventy-three thousand nine hundred fifty-nine' WHERE a=12006;\nUPDATE t2 SET c='seven thousand six hundred thirty-six' WHERE a=12007;\nUPDATE t2 SET c='eighty-three thousand five hundred twenty-eight' WHERE a=12008;\nUPDATE t2 SET c='fifty-three thousand eight hundred twenty-two' WHERE a=12009;\nUPDATE t2 SET c='one thousand sixty-eight' WHERE a=12010;\nUPDATE t2 SET c='seventy-eight thousand two hundred ninety-five' WHERE a=12011;\nUPDATE t2 SET c='nineteen thousand three hundred seven' WHERE a=12012;\nUPDATE t2 SET c='ninety-five thousand three hundred sixty-two' WHERE a=12013;\nUPDATE t2 SET c='twenty-four thousand two hundred eight' WHERE a=12014;\nUPDATE t2 SET c='eighty-two thousand nine hundred fifty-nine' WHERE a=12015;\nUPDATE t2 SET c='ninety-nine thousand one hundred sixty-four' WHERE a=12016;\nUPDATE t2 SET c='twenty thousand one hundred thirty-eight' WHERE a=12017;\nUPDATE t2 SET c='ninety-nine thousand two hundred seven' WHERE a=12018;\nUPDATE t2 SET c='fifty-three thousand four hundred ninety-eight' WHERE a=12019;\nUPDATE t2 SET c='eighty-three thousand two hundred seventy-two' WHERE a=12020;\nUPDATE t2 SET c='forty-five thousand nine hundred eighty-four' WHERE a=12021;\nUPDATE t2 SET c='six thousand five' WHERE a=12022;\nUPDATE t2 SET c='fifty-seven thousand two hundred five' WHERE a=12023;\nUPDATE t2 SET c='forty-seven thousand four hundred seventy' WHERE a=12024;\nUPDATE t2 SET c='fifty-three thousand five hundred one' WHERE a=12025;\nUPDATE t2 SET c='twenty-four thousand five hundred twelve' WHERE a=12026;\nUPDATE t2 SET c='seventy-six thousand eight hundred thirty-one' WHERE a=12027;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-nine' WHERE a=12028;\nUPDATE t2 SET c='eleven thousand five hundred six' WHERE a=12029;\nUPDATE t2 SET c='forty-six thousand eight hundred seventy-two' WHERE a=12030;\nUPDATE t2 SET c='forty-one thousand three hundred fifty-eight' WHERE a=12031;\nUPDATE t2 SET c='twenty-eight thousand five hundred five' WHERE a=12032;\nUPDATE t2 SET c='eighty-five thousand two hundred seventy-six' WHERE a=12033;\nUPDATE t2 SET c='sixty-four thousand eight hundred three' WHERE a=12034;\nUPDATE t2 SET c='eighty thousand eight hundred ninety-two' WHERE a=12035;\nUPDATE t2 SET c='eighty-seven thousand twelve' WHERE a=12036;\nUPDATE t2 SET c='seventy-three thousand five hundred sixty-nine' WHERE a=12037;\nUPDATE t2 SET c='twenty-six thousand two hundred fifty-seven' WHERE a=12038;\nUPDATE t2 SET c='seven thousand one hundred thirty-seven' WHERE a=12039;\nUPDATE t2 SET c='thirty-one thousand eighty-seven' WHERE a=12040;\nUPDATE t2 SET c='forty-one thousand seven hundred sixty' WHERE a=12041;\nUPDATE t2 SET c='nine thousand six hundred ninety-two' WHERE a=12042;\nUPDATE t2 SET c='forty-one thousand one hundred' WHERE a=12043;\nUPDATE t2 SET c='seventy-eight thousand eight hundred three' WHERE a=12044;\nUPDATE t2 SET c='ninety-five thousand four hundred ninety-seven' WHERE a=12045;\nUPDATE t2 SET c='six thousand one hundred seventy-one' WHERE a=12046;\nUPDATE t2 SET c='ninety-four thousand four hundred thirty-five' WHERE a=12047;\nUPDATE t2 SET c='twenty-four thousand five hundred thirty-nine' WHERE a=12048;\nUPDATE t2 SET c='sixty-six thousand six hundred forty-nine' WHERE a=12049;\nUPDATE t2 SET c='fifteen thousand five hundred eighty-six' WHERE a=12050;\nUPDATE t2 SET c='twenty-five thousand eight hundred fourteen' WHERE a=12051;\nUPDATE t2 SET c='seventy-nine thousand two hundred thirty-five' WHERE a=12052;\nUPDATE t2 SET c='ninety-three thousand seven hundred eighty-one' WHERE a=12053;\nUPDATE t2 SET c='four thousand three hundred forty-seven' WHERE a=12054;\nUPDATE t2 SET c='ninety-two thousand three hundred ninety-three' WHERE a=12055;\nUPDATE t2 SET c='seventy-seven thousand one hundred twenty-seven' WHERE a=12056;\nUPDATE t2 SET c='seventy-six thousand five hundred sixty-two' WHERE a=12057;\nUPDATE t2 SET c='forty-five thousand six hundred forty-five' WHERE a=12058;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-four' WHERE a=12059;\nUPDATE t2 SET c='forty-three thousand six hundred thirty-four' WHERE a=12060;\nUPDATE t2 SET c='sixty-two thousand two hundred seventeen' WHERE a=12061;\nUPDATE t2 SET c='two thousand sixty-seven' WHERE a=12062;\nUPDATE t2 SET c='ninety-five thousand eight hundred forty-five' WHERE a=12063;\nUPDATE t2 SET c='thirty-eight thousand three hundred forty-six' WHERE a=12064;\nUPDATE t2 SET c='five thousand five hundred fifty-two' WHERE a=12065;\nUPDATE t2 SET c='ninety thousand two hundred eighty-five' WHERE a=12066;\nUPDATE t2 SET c='fourteen thousand three hundred eighty-eight' WHERE a=12067;\nUPDATE t2 SET c='one thousand six hundred sixty-four' WHERE a=12068;\nUPDATE t2 SET c='forty-two thousand six hundred forty-eight' WHERE a=12069;\nUPDATE t2 SET c='eighty-four thousand four hundred seventy-five' WHERE a=12070;\nUPDATE t2 SET c='forty-five thousand six hundred ninety-three' WHERE a=12071;\nUPDATE t2 SET c='ten thousand two hundred thirty-three' WHERE a=12072;\nUPDATE t2 SET c='fourteen thousand five hundred sixty-one' WHERE a=12073;\nUPDATE t2 SET c='ninety-four thousand one hundred forty-eight' WHERE a=12074;\nUPDATE t2 SET c='thirty thousand seventeen' WHERE a=12075;\nUPDATE t2 SET c='thirty-four thousand two hundred eleven' WHERE a=12076;\nUPDATE t2 SET c='forty-seven thousand one hundred eighty-three' WHERE a=12077;\nUPDATE t2 SET c='seventy-six thousand three hundred fifty-six' WHERE a=12078;\nUPDATE t2 SET c='fifty-seven thousand six hundred ninety' WHERE a=12079;\nUPDATE t2 SET c='seventy-eight thousand fifty-three' WHERE a=12080;\nUPDATE t2 SET c='nineteen thousand two hundred sixty-five' WHERE a=12081;\nUPDATE t2 SET c='four thousand one hundred thirteen' WHERE a=12082;\nUPDATE t2 SET c='sixty-four thousand four hundred thirty-one' WHERE a=12083;\nUPDATE t2 SET c='thirty-nine thousand six hundred seventy' WHERE a=12084;\nUPDATE t2 SET c='seventy-nine thousand five hundred ninety-four' WHERE a=12085;\nUPDATE t2 SET c='seventy-one thousand six hundred seventeen' WHERE a=12086;\nUPDATE t2 SET c='ninety-five thousand seven hundred fifty-one' WHERE a=12087;\nUPDATE t2 SET c='sixty-nine thousand forty-one' WHERE a=12088;\nUPDATE t2 SET c='forty-three thousand one hundred twenty-four' WHERE a=12089;\nUPDATE t2 SET c='ninety-four thousand five hundred nine' WHERE a=12090;\nUPDATE t2 SET c='seventy thousand six hundred thirteen' WHERE a=12091;\nUPDATE t2 SET c='sixty-seven thousand six hundred seventy-six' WHERE a=12092;\nUPDATE t2 SET c='sixty-four thousand seven hundred four' WHERE a=12093;\nUPDATE t2 SET c='sixteen thousand three hundred thirty-four' WHERE a=12094;\nUPDATE t2 SET c='nineteen thousand six hundred thirty-one' WHERE a=12095;\nUPDATE t2 SET c='eighteen thousand five hundred twenty-six' WHERE a=12096;\nUPDATE t2 SET c='twenty-one thousand five hundred ninety-seven' WHERE a=12097;\nUPDATE t2 SET c='one thousand six hundred seven' WHERE a=12098;\nUPDATE t2 SET c='ten thousand two hundred seventy-nine' WHERE a=12099;\nUPDATE t2 SET c='fifty-eight thousand four hundred eighty-six' WHERE a=12100;\nUPDATE t2 SET c='eighty-two thousand four hundred nineteen' WHERE a=12101;\nUPDATE t2 SET c='thirty-three thousand seven hundred twenty-five' WHERE a=12102;\nUPDATE t2 SET c='fifteen thousand one hundred thirteen' WHERE a=12103;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-five' WHERE a=12104;\nUPDATE t2 SET c='fifty-nine thousand one hundred eighty' WHERE a=12105;\nUPDATE t2 SET c='fifty-nine thousand three hundred seventy-six' WHERE a=12106;\nUPDATE t2 SET c='nineteen thousand five hundred twelve' WHERE a=12107;\nUPDATE t2 SET c='four thousand one hundred forty-six' WHERE a=12108;\nUPDATE t2 SET c='two thousand four hundred thirty-three' WHERE a=12109;\nUPDATE t2 SET c='fifty-one thousand four hundred eleven' WHERE a=12110;\nUPDATE t2 SET c='seventy-three thousand eight hundred ninety-eight' WHERE a=12111;\nUPDATE t2 SET c='eighty-one thousand seven hundred seventeen' WHERE a=12112;\nUPDATE t2 SET c='four hundred' WHERE a=12113;\nUPDATE t2 SET c='fifty-seven thousand five hundred ninety-two' WHERE a=12114;\nUPDATE t2 SET c='eighteen thousand nine hundred forty-eight' WHERE a=12115;\nUPDATE t2 SET c='sixty-seven thousand six hundred fifty-two' WHERE a=12116;\nUPDATE t2 SET c='fifty-eight thousand eight hundred sixty-three' WHERE a=12117;\nUPDATE t2 SET c='fourteen thousand five hundred forty' WHERE a=12118;\nUPDATE t2 SET c='six thousand fifty' WHERE a=12119;\nUPDATE t2 SET c='twenty-six thousand three hundred fifty-three' WHERE a=12120;\nUPDATE t2 SET c='four hundred seventy-one' WHERE a=12121;\nUPDATE t2 SET c='thirty-nine thousand nine hundred sixty-seven' WHERE a=12122;\nUPDATE t2 SET c='ten thousand three hundred ninety-four' WHERE a=12123;\nUPDATE t2 SET c='fifty-eight thousand eighty' WHERE a=12124;\nUPDATE t2 SET c='thirty-nine thousand ninety-nine' WHERE a=12125;\nUPDATE t2 SET c='twenty-eight thousand one hundred twenty-four' WHERE a=12126;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-four' WHERE a=12127;\nUPDATE t2 SET c='fifty-three thousand forty-nine' WHERE a=12128;\nUPDATE t2 SET c='seven thousand seven hundred ninety' WHERE a=12129;\nUPDATE t2 SET c='ninety-six thousand seven hundred ninety-one' WHERE a=12130;\nUPDATE t2 SET c='twenty-one thousand three hundred fifty-six' WHERE a=12131;\nUPDATE t2 SET c='sixty-three thousand three hundred nine' WHERE a=12132;\nUPDATE t2 SET c='six thousand three hundred ninety-eight' WHERE a=12133;\nUPDATE t2 SET c='fourteen thousand four hundred ninety-five' WHERE a=12134;\nUPDATE t2 SET c='eighty-eight thousand six hundred seventy-two' WHERE a=12135;\nUPDATE t2 SET c='seventy-one thousand four hundred ninety-one' WHERE a=12136;\nUPDATE t2 SET c='thirty-seven thousand eleven' WHERE a=12137;\nUPDATE t2 SET c='fifteen thousand one hundred seven' WHERE a=12138;\nUPDATE t2 SET c='ninety-eight thousand nine hundred forty-five' WHERE a=12139;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-three' WHERE a=12140;\nUPDATE t2 SET c='seventy-nine thousand five hundred ninety-five' WHERE a=12141;\nUPDATE t2 SET c='twenty-nine thousand seven hundred sixteen' WHERE a=12142;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-seven' WHERE a=12143;\nUPDATE t2 SET c='thirty-seven thousand three hundred fifty-nine' WHERE a=12144;\nUPDATE t2 SET c='eighteen thousand eight hundred nine' WHERE a=12145;\nUPDATE t2 SET c='thirty-nine thousand nine hundred fourteen' WHERE a=12146;\nUPDATE t2 SET c='twenty-seven thousand five hundred sixty-two' WHERE a=12147;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-six' WHERE a=12148;\nUPDATE t2 SET c='eighty thousand one hundred eighty-six' WHERE a=12149;\nUPDATE t2 SET c='sixteen thousand nine hundred ninety-six' WHERE a=12150;\nUPDATE t2 SET c='sixty-four thousand six hundred eighty-eight' WHERE a=12151;\nUPDATE t2 SET c='six thousand six hundred eighty-four' WHERE a=12152;\nUPDATE t2 SET c='sixty thousand eight hundred thirty-eight' WHERE a=12153;\nUPDATE t2 SET c='ninety thousand nine hundred thirty-two' WHERE a=12154;\nUPDATE t2 SET c='ninety-six thousand nine hundred thirty-one' WHERE a=12155;\nUPDATE t2 SET c='sixty-six thousand two hundred eighty-eight' WHERE a=12156;\nUPDATE t2 SET c='seventy-six thousand eight hundred twenty-four' WHERE a=12157;\nUPDATE t2 SET c='thirteen thousand seven hundred forty-five' WHERE a=12158;\nUPDATE t2 SET c='eighty-four thousand seven hundred thirty-eight' WHERE a=12159;\nUPDATE t2 SET c='four thousand nine hundred sixty-two' WHERE a=12160;\nUPDATE t2 SET c='eleven thousand one hundred sixty-two' WHERE a=12161;\nUPDATE t2 SET c='ninety-seven thousand three hundred seven' WHERE a=12162;\nUPDATE t2 SET c='eighty-six thousand five hundred sixty' WHERE a=12163;\nUPDATE t2 SET c='one hundred sixteen' WHERE a=12164;\nUPDATE t2 SET c='fifty thousand two hundred forty-three' WHERE a=12165;\nUPDATE t2 SET c='eighty-four thousand nine hundred sixty-nine' WHERE a=12166;\nUPDATE t2 SET c='seventy-one thousand eight hundred forty-six' WHERE a=12167;\nUPDATE t2 SET c='fifty-one thousand four hundred forty-two' WHERE a=12168;\nUPDATE t2 SET c='seventy-two thousand ninety-one' WHERE a=12169;\nUPDATE t2 SET c='twenty-five thousand eight hundred forty-eight' WHERE a=12170;\nUPDATE t2 SET c='seventy thousand two hundred forty-four' WHERE a=12171;\nUPDATE t2 SET c='fourteen thousand one hundred fifty-eight' WHERE a=12172;\nUPDATE t2 SET c='thirty-seven thousand eight hundred fifty-two' WHERE a=12173;\nUPDATE t2 SET c='seventy-nine thousand four hundred seventy-nine' WHERE a=12174;\nUPDATE t2 SET c='ten thousand nine hundred thirteen' WHERE a=12175;\nUPDATE t2 SET c='thirteen thousand one hundred sixty-six' WHERE a=12176;\nUPDATE t2 SET c='fifty-seven thousand four hundred eight' WHERE a=12177;\nUPDATE t2 SET c='twenty-two thousand six hundred seventy-five' WHERE a=12178;\nUPDATE t2 SET c='seventy-five thousand one hundred thirty-seven' WHERE a=12179;\nUPDATE t2 SET c='eighteen thousand seven hundred thirteen' WHERE a=12180;\nUPDATE t2 SET c='ninety-six thousand thirty-two' WHERE a=12181;\nUPDATE t2 SET c='eight thousand one hundred fifty-seven' WHERE a=12182;\nUPDATE t2 SET c='seventeen thousand three hundred fifty-four' WHERE a=12183;\nUPDATE t2 SET c='forty-nine thousand five hundred fifteen' WHERE a=12184;\nUPDATE t2 SET c='seventeen thousand three hundred fifty-five' WHERE a=12185;\nUPDATE t2 SET c='seventy-two thousand five hundred forty-four' WHERE a=12186;\nUPDATE t2 SET c='thirty thousand three hundred sixty-eight' WHERE a=12187;\nUPDATE t2 SET c='thirty-one thousand five hundred seventy-three' WHERE a=12188;\nUPDATE t2 SET c='eighty-six thousand three hundred ninety-one' WHERE a=12189;\nUPDATE t2 SET c='eighty-one thousand four hundred eight' WHERE a=12190;\nUPDATE t2 SET c='thirty-two thousand one hundred three' WHERE a=12191;\nUPDATE t2 SET c='two thousand eight hundred seventeen' WHERE a=12192;\nUPDATE t2 SET c='ninety-one thousand three hundred ninety' WHERE a=12193;\nUPDATE t2 SET c='ninety-three thousand three hundred thirty-seven' WHERE a=12194;\nUPDATE t2 SET c='eighty-four thousand nine hundred eighty-eight' WHERE a=12195;\nUPDATE t2 SET c='ninety-one thousand four hundred seventy-three' WHERE a=12196;\nUPDATE t2 SET c='forty-five thousand four hundred seventy-nine' WHERE a=12197;\nUPDATE t2 SET c='sixty-seven thousand three hundred sixty-six' WHERE a=12198;\nUPDATE t2 SET c='sixty-three thousand three hundred thirty-eight' WHERE a=12199;\nUPDATE t2 SET c='thirty-five thousand four hundred ninety-four' WHERE a=12200;\nUPDATE t2 SET c='seventy thousand one hundred sixty-seven' WHERE a=12201;\nUPDATE t2 SET c='twenty-six thousand two hundred forty-six' WHERE a=12202;\nUPDATE t2 SET c='ninety thousand three hundred seventy-two' WHERE a=12203;\nUPDATE t2 SET c='eighty-one thousand eight hundred twenty-seven' WHERE a=12204;\nUPDATE t2 SET c='four thousand seven hundred eighty-two' WHERE a=12205;\nUPDATE t2 SET c='forty-one thousand six hundred eighty' WHERE a=12206;\nUPDATE t2 SET c='fourteen thousand nine hundred sixty-four' WHERE a=12207;\nUPDATE t2 SET c='fifty-eight thousand two hundred twenty-eight' WHERE a=12208;\nUPDATE t2 SET c='ninety-seven thousand six hundred ninety-eight' WHERE a=12209;\nUPDATE t2 SET c='fifty thousand eight hundred forty-four' WHERE a=12210;\nUPDATE t2 SET c='twenty-six thousand eight hundred fifty-nine' WHERE a=12211;\nUPDATE t2 SET c='two thousand eight hundred eighty-nine' WHERE a=12212;\nUPDATE t2 SET c='seventy-two thousand four hundred ninety-five' WHERE a=12213;\nUPDATE t2 SET c='thirty thousand eight hundred thirty-four' WHERE a=12214;\nUPDATE t2 SET c='eight thousand eleven' WHERE a=12215;\nUPDATE t2 SET c='nine thousand seven hundred forty-one' WHERE a=12216;\nUPDATE t2 SET c='forty-nine thousand one hundred thirty-nine' WHERE a=12217;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty-seven' WHERE a=12218;\nUPDATE t2 SET c='ninety-eight thousand one hundred seventy-seven' WHERE a=12219;\nUPDATE t2 SET c='forty thousand nine hundred eighty-one' WHERE a=12220;\nUPDATE t2 SET c='ninety-six thousand four hundred eighty-eight' WHERE a=12221;\nUPDATE t2 SET c='seven thousand five hundred ninety-four' WHERE a=12222;\nUPDATE t2 SET c='eighty-five thousand three hundred twenty-five' WHERE a=12223;\nUPDATE t2 SET c='seventy-six thousand three hundred nine' WHERE a=12224;\nUPDATE t2 SET c='fifty-four thousand nine hundred forty-nine' WHERE a=12225;\nUPDATE t2 SET c='forty-four thousand two hundred sixty-nine' WHERE a=12226;\nUPDATE t2 SET c='thirty-eight thousand nine hundred fifty-three' WHERE a=12227;\nUPDATE t2 SET c='thirty-six thousand two hundred three' WHERE a=12228;\nUPDATE t2 SET c='forty-six thousand five hundred seventy-three' WHERE a=12229;\nUPDATE t2 SET c='eighty-nine thousand two hundred forty-eight' WHERE a=12230;\nUPDATE t2 SET c='twenty-three thousand five hundred eighty-one' WHERE a=12231;\nUPDATE t2 SET c='eighteen thousand four hundred twenty-four' WHERE a=12232;\nUPDATE t2 SET c='fifteen thousand eight hundred twenty-two' WHERE a=12233;\nUPDATE t2 SET c='twelve thousand six hundred fifty-three' WHERE a=12234;\nUPDATE t2 SET c='seventy-five thousand nine hundred ninety-seven' WHERE a=12235;\nUPDATE t2 SET c='eight thousand five hundred seventy-one' WHERE a=12236;\nUPDATE t2 SET c='thirty-nine thousand five hundred seventy' WHERE a=12237;\nUPDATE t2 SET c='forty-two thousand three hundred eighty-four' WHERE a=12238;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty-eight' WHERE a=12239;\nUPDATE t2 SET c='twenty-nine thousand four hundred four' WHERE a=12240;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty-four' WHERE a=12241;\nUPDATE t2 SET c='eighty-six thousand five hundred thirty-two' WHERE a=12242;\nUPDATE t2 SET c='two thousand three hundred seventy-nine' WHERE a=12243;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty-six' WHERE a=12244;\nUPDATE t2 SET c='forty-eight thousand two hundred fifty' WHERE a=12245;\nUPDATE t2 SET c='eighty-nine thousand six hundred eleven' WHERE a=12246;\nUPDATE t2 SET c='eleven thousand seven hundred seventy-four' WHERE a=12247;\nUPDATE t2 SET c='forty-seven thousand eleven' WHERE a=12248;\nUPDATE t2 SET c='twenty-seven thousand eight hundred nineteen' WHERE a=12249;\nUPDATE t2 SET c='eighty-three thousand three hundred fifteen' WHERE a=12250;\nUPDATE t2 SET c='fifty-six thousand eight hundred eighty-eight' WHERE a=12251;\nUPDATE t2 SET c='sixty-nine thousand four hundred fifteen' WHERE a=12252;\nUPDATE t2 SET c='thirty thousand nine hundred forty-nine' WHERE a=12253;\nUPDATE t2 SET c='fifty-eight thousand four hundred thirty-five' WHERE a=12254;\nUPDATE t2 SET c='eighty-one thousand seven hundred eighty-six' WHERE a=12255;\nUPDATE t2 SET c='ninety thousand twenty-one' WHERE a=12256;\nUPDATE t2 SET c='seventy-nine thousand nine hundred forty-seven' WHERE a=12257;\nUPDATE t2 SET c='forty-three thousand nine hundred twenty-five' WHERE a=12258;\nUPDATE t2 SET c='forty-three thousand five hundred sixty-seven' WHERE a=12259;\nUPDATE t2 SET c='ninety-four thousand nine hundred forty-nine' WHERE a=12260;\nUPDATE t2 SET c='sixty-four thousand nine hundred thirteen' WHERE a=12261;\nUPDATE t2 SET c='eighty-eight thousand seven hundred eighty-six' WHERE a=12262;\nUPDATE t2 SET c='fifty-five thousand nine hundred sixty-five' WHERE a=12263;\nUPDATE t2 SET c='ten thousand six hundred forty-three' WHERE a=12264;\nUPDATE t2 SET c='forty-five thousand ninety-seven' WHERE a=12265;\nUPDATE t2 SET c='twenty-one thousand six hundred forty-nine' WHERE a=12266;\nUPDATE t2 SET c='twenty-seven thousand two hundred sixty-three' WHERE a=12267;\nUPDATE t2 SET c='thirty-eight thousand eight hundred sixty-two' WHERE a=12268;\nUPDATE t2 SET c='thirteen thousand four hundred twenty-five' WHERE a=12269;\nUPDATE t2 SET c='ten thousand three hundred seventy-three' WHERE a=12270;\nUPDATE t2 SET c='twenty-six thousand one hundred eight' WHERE a=12271;\nUPDATE t2 SET c='five hundred sixty-three' WHERE a=12272;\nUPDATE t2 SET c='one thousand one hundred ninety-six' WHERE a=12273;\nUPDATE t2 SET c='fifty-four thousand five hundred seventy-one' WHERE a=12274;\nUPDATE t2 SET c='fifty-four thousand four hundred thirty-five' WHERE a=12275;\nUPDATE t2 SET c='sixty-five thousand three hundred eight' WHERE a=12276;\nUPDATE t2 SET c='forty-nine thousand forty-eight' WHERE a=12277;\nUPDATE t2 SET c='eighty-six thousand two hundred eighteen' WHERE a=12278;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ninety-two' WHERE a=12279;\nUPDATE t2 SET c='twenty-one thousand three hundred sixty-six' WHERE a=12280;\nUPDATE t2 SET c='thirty-eight thousand three hundred twenty' WHERE a=12281;\nUPDATE t2 SET c='sixteen thousand seven hundred thirty-three' WHERE a=12282;\nUPDATE t2 SET c='ninety-six thousand one' WHERE a=12283;\nUPDATE t2 SET c='fifty-five thousand seventy-four' WHERE a=12284;\nUPDATE t2 SET c='three thousand seven hundred thirty-eight' WHERE a=12285;\nUPDATE t2 SET c='forty-one thousand six hundred sixty-four' WHERE a=12286;\nUPDATE t2 SET c='six thousand six hundred twenty-seven' WHERE a=12287;\nUPDATE t2 SET c='fifty-five thousand five hundred sixty-six' WHERE a=12288;\nUPDATE t2 SET c='fifty-eight thousand two hundred five' WHERE a=12289;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eighty-seven' WHERE a=12290;\nUPDATE t2 SET c='sixty-five thousand nine hundred seventy-seven' WHERE a=12291;\nUPDATE t2 SET c='twenty-seven thousand seven hundred ninety-nine' WHERE a=12292;\nUPDATE t2 SET c='eighty-four thousand six hundred twenty-six' WHERE a=12293;\nUPDATE t2 SET c='thirty-eight thousand eight hundred sixty-nine' WHERE a=12294;\nUPDATE t2 SET c='thirty-nine thousand one hundred nineteen' WHERE a=12295;\nUPDATE t2 SET c='one thousand nine hundred eleven' WHERE a=12296;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-four' WHERE a=12297;\nUPDATE t2 SET c='twenty-four thousand five hundred seventy-seven' WHERE a=12298;\nUPDATE t2 SET c='seventeen thousand three hundred five' WHERE a=12299;\nUPDATE t2 SET c='thirty-three thousand twenty-five' WHERE a=12300;\nUPDATE t2 SET c='fifty-three thousand three hundred eighty-seven' WHERE a=12301;\nUPDATE t2 SET c='seventy thousand eighty-nine' WHERE a=12302;\nUPDATE t2 SET c='thirty-two thousand seven hundred ninety-nine' WHERE a=12303;\nUPDATE t2 SET c='thirty-seven thousand one hundred ninety-eight' WHERE a=12304;\nUPDATE t2 SET c='twenty thousand seven hundred forty' WHERE a=12305;\nUPDATE t2 SET c='eighty-two thousand ninety-two' WHERE a=12306;\nUPDATE t2 SET c='ninety-six thousand five hundred twelve' WHERE a=12307;\nUPDATE t2 SET c='eighty thousand five hundred fifteen' WHERE a=12308;\nUPDATE t2 SET c='seventy-nine thousand nine hundred sixty-three' WHERE a=12309;\nUPDATE t2 SET c='thirty-seven thousand three hundred forty' WHERE a=12310;\nUPDATE t2 SET c='ninety-nine thousand two hundred fifty-five' WHERE a=12311;\nUPDATE t2 SET c='sixty-two thousand nine hundred seventy' WHERE a=12312;\nUPDATE t2 SET c='eighty-three thousand thirty-four' WHERE a=12313;\nUPDATE t2 SET c='thirty-six thousand six hundred seven' WHERE a=12314;\nUPDATE t2 SET c='sixty-three thousand one hundred seventeen' WHERE a=12315;\nUPDATE t2 SET c='forty-one thousand eight hundred thirty-seven' WHERE a=12316;\nUPDATE t2 SET c='fifty-eight thousand one hundred sixteen' WHERE a=12317;\nUPDATE t2 SET c='ninety-six thousand three hundred seventy' WHERE a=12318;\nUPDATE t2 SET c='ninety thousand seventy' WHERE a=12319;\nUPDATE t2 SET c='fifteen thousand ninety-five' WHERE a=12320;\nUPDATE t2 SET c='thirty-two thousand nine hundred seventy-seven' WHERE a=12321;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty-one' WHERE a=12322;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-six' WHERE a=12323;\nUPDATE t2 SET c='sixty-nine thousand five hundred sixty-four' WHERE a=12324;\nUPDATE t2 SET c='seventeen thousand eight hundred ninety-four' WHERE a=12325;\nUPDATE t2 SET c='thirty-four thousand four hundred seventy-two' WHERE a=12326;\nUPDATE t2 SET c='thirty-three thousand nine hundred eighty-nine' WHERE a=12327;\nUPDATE t2 SET c='eighty-seven thousand eight hundred forty-nine' WHERE a=12328;\nUPDATE t2 SET c='seventy-seven thousand six hundred seventy-one' WHERE a=12329;\nUPDATE t2 SET c='sixty-four thousand three hundred fifty-two' WHERE a=12330;\nUPDATE t2 SET c='one thousand six hundred sixty-eight' WHERE a=12331;\nUPDATE t2 SET c='sixty-four thousand eight hundred eight' WHERE a=12332;\nUPDATE t2 SET c='eighty-seven thousand three hundred seventy-four' WHERE a=12333;\nUPDATE t2 SET c='ninety-three thousand four hundred sixty-four' WHERE a=12334;\nUPDATE t2 SET c='four hundred thirty-seven' WHERE a=12335;\nUPDATE t2 SET c='forty-four thousand three hundred ninety-six' WHERE a=12336;\nUPDATE t2 SET c='fourteen thousand five hundred seventy-one' WHERE a=12337;\nUPDATE t2 SET c='seventy-two thousand five hundred twenty-three' WHERE a=12338;\nUPDATE t2 SET c='eighty-three thousand eight hundred twelve' WHERE a=12339;\nUPDATE t2 SET c='five thousand four hundred twenty-one' WHERE a=12340;\nUPDATE t2 SET c='ninety-two thousand seven hundred twenty-two' WHERE a=12341;\nUPDATE t2 SET c='seven thousand two hundred sixty-four' WHERE a=12342;\nUPDATE t2 SET c='thirty-nine thousand nine hundred sixty' WHERE a=12343;\nUPDATE t2 SET c='thirty-eight thousand three hundred nine' WHERE a=12344;\nUPDATE t2 SET c='sixty-one thousand four hundred eighty-five' WHERE a=12345;\nUPDATE t2 SET c='nine thousand eight hundred forty-five' WHERE a=12346;\nUPDATE t2 SET c='forty-three thousand three hundred' WHERE a=12347;\nUPDATE t2 SET c='fifty-five thousand three hundred forty-nine' WHERE a=12348;\nUPDATE t2 SET c='sixty-nine thousand nine hundred ninety-eight' WHERE a=12349;\nUPDATE t2 SET c='twenty-six thousand five hundred twenty-seven' WHERE a=12350;\nUPDATE t2 SET c='fourteen thousand four hundred three' WHERE a=12351;\nUPDATE t2 SET c='twenty-five thousand seven hundred seventy-five' WHERE a=12352;\nUPDATE t2 SET c='two thousand two hundred ninety-four' WHERE a=12353;\nUPDATE t2 SET c='seventy-three thousand one hundred thirty-four' WHERE a=12354;\nUPDATE t2 SET c='forty-four thousand nine hundred seventy-two' WHERE a=12355;\nUPDATE t2 SET c='six thousand five' WHERE a=12356;\nUPDATE t2 SET c='twenty-eight' WHERE a=12357;\nUPDATE t2 SET c='sixty-four thousand thirty-two' WHERE a=12358;\nUPDATE t2 SET c='five hundred ninety-five' WHERE a=12359;\nUPDATE t2 SET c='fifty-nine thousand nine hundred seventy' WHERE a=12360;\nUPDATE t2 SET c='twenty thousand one hundred seventy-seven' WHERE a=12361;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-two' WHERE a=12362;\nUPDATE t2 SET c='sixty thousand one hundred sixty-five' WHERE a=12363;\nUPDATE t2 SET c='fifty-one thousand two hundred sixty' WHERE a=12364;\nUPDATE t2 SET c='seventy-four thousand six hundred eighty-five' WHERE a=12365;\nUPDATE t2 SET c='forty-three thousand four hundred ninety-one' WHERE a=12366;\nUPDATE t2 SET c='seventy-eight thousand three hundred twenty' WHERE a=12367;\nUPDATE t2 SET c='seventy-seven thousand two hundred thirty-three' WHERE a=12368;\nUPDATE t2 SET c='ten thousand nine hundred thirty-eight' WHERE a=12369;\nUPDATE t2 SET c='twenty-one thousand four hundred fifty-six' WHERE a=12370;\nUPDATE t2 SET c='thirty-one thousand four hundred two' WHERE a=12371;\nUPDATE t2 SET c='six thousand six hundred thirty-four' WHERE a=12372;\nUPDATE t2 SET c='thirty-three thousand eight hundred twenty-three' WHERE a=12373;\nUPDATE t2 SET c='thirty-eight thousand forty' WHERE a=12374;\nUPDATE t2 SET c='eighty-nine thousand three hundred nine' WHERE a=12375;\nUPDATE t2 SET c='fifty-four thousand three hundred thirteen' WHERE a=12376;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventy-four' WHERE a=12377;\nUPDATE t2 SET c='thirty-nine thousand five hundred sixty-eight' WHERE a=12378;\nUPDATE t2 SET c='sixty-five thousand eighty-three' WHERE a=12379;\nUPDATE t2 SET c='two thousand one hundred forty-six' WHERE a=12380;\nUPDATE t2 SET c='twenty-two thousand six hundred forty-eight' WHERE a=12381;\nUPDATE t2 SET c='two thousand three hundred eighty-three' WHERE a=12382;\nUPDATE t2 SET c='thirty-six thousand nine hundred twenty-five' WHERE a=12383;\nUPDATE t2 SET c='ninety-nine thousand five hundred ninety-two' WHERE a=12384;\nUPDATE t2 SET c='thirty-four thousand eight hundred eighty' WHERE a=12385;\nUPDATE t2 SET c='five thousand nine hundred ninety-five' WHERE a=12386;\nUPDATE t2 SET c='ninety-three thousand three hundred ninety-six' WHERE a=12387;\nUPDATE t2 SET c='forty-nine thousand six hundred two' WHERE a=12388;\nUPDATE t2 SET c='seventy-one thousand six hundred sixty-six' WHERE a=12389;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-two' WHERE a=12390;\nUPDATE t2 SET c='eighty-four thousand one hundred sixty-eight' WHERE a=12391;\nUPDATE t2 SET c='twenty-five thousand eight hundred eight' WHERE a=12392;\nUPDATE t2 SET c='fifty-four thousand two hundred eighty-three' WHERE a=12393;\nUPDATE t2 SET c='forty-two thousand four hundred seventy-nine' WHERE a=12394;\nUPDATE t2 SET c='fifty thousand three hundred seventy-four' WHERE a=12395;\nUPDATE t2 SET c='twenty-five thousand three hundred eighty-three' WHERE a=12396;\nUPDATE t2 SET c='twenty-four thousand five hundred ninety-five' WHERE a=12397;\nUPDATE t2 SET c='fifteen thousand one hundred two' WHERE a=12398;\nUPDATE t2 SET c='seventy-three thousand four hundred forty-three' WHERE a=12399;\nUPDATE t2 SET c='fifty-five thousand five hundred fifty-nine' WHERE a=12400;\nUPDATE t2 SET c='thirty-two thousand two hundred eighty-two' WHERE a=12401;\nUPDATE t2 SET c='twenty-four thousand eight hundred two' WHERE a=12402;\nUPDATE t2 SET c='eighty-six thousand one hundred twenty-five' WHERE a=12403;\nUPDATE t2 SET c='fifty-one thousand four hundred nineteen' WHERE a=12404;\nUPDATE t2 SET c='fifty-two thousand two hundred thirty-five' WHERE a=12405;\nUPDATE t2 SET c='ninety-seven thousand one hundred ninety-two' WHERE a=12406;\nUPDATE t2 SET c='thirty-eight thousand six hundred ninety' WHERE a=12407;\nUPDATE t2 SET c='forty thousand one hundred seventy-four' WHERE a=12408;\nUPDATE t2 SET c='thirty-seven thousand nine hundred ninety-eight' WHERE a=12409;\nUPDATE t2 SET c='one thousand one hundred eighty-eight' WHERE a=12410;\nUPDATE t2 SET c='sixty-seven thousand three hundred seventy-six' WHERE a=12411;\nUPDATE t2 SET c='seventy-two thousand two hundred forty-nine' WHERE a=12412;\nUPDATE t2 SET c='eighteen thousand three hundred ninety-eight' WHERE a=12413;\nUPDATE t2 SET c='six thousand four hundred forty-one' WHERE a=12414;\nUPDATE t2 SET c='eighty thousand five hundred twenty-one' WHERE a=12415;\nUPDATE t2 SET c='fifty-one thousand six hundred fifty-one' WHERE a=12416;\nUPDATE t2 SET c='sixty-five thousand sixty-five' WHERE a=12417;\nUPDATE t2 SET c='ninety-nine thousand nine hundred twenty-eight' WHERE a=12418;\nUPDATE t2 SET c='ninety-eight thousand four hundred forty' WHERE a=12419;\nUPDATE t2 SET c='fifty-nine thousand one hundred four' WHERE a=12420;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty-five' WHERE a=12421;\nUPDATE t2 SET c='forty-five thousand six hundred ninety-nine' WHERE a=12422;\nUPDATE t2 SET c='twelve thousand four hundred seventy-nine' WHERE a=12423;\nUPDATE t2 SET c='eighteen thousand four hundred forty-two' WHERE a=12424;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-seven' WHERE a=12425;\nUPDATE t2 SET c='ten thousand seven hundred thirty-nine' WHERE a=12426;\nUPDATE t2 SET c='thirty-four thousand eight hundred eighty-eight' WHERE a=12427;\nUPDATE t2 SET c='sixty-two thousand two hundred fifty-eight' WHERE a=12428;\nUPDATE t2 SET c='seventy-four thousand seven' WHERE a=12429;\nUPDATE t2 SET c='eighty thousand three hundred fifty' WHERE a=12430;\nUPDATE t2 SET c='eight thousand five hundred sixty' WHERE a=12431;\nUPDATE t2 SET c='seventy thousand six hundred thirty-eight' WHERE a=12432;\nUPDATE t2 SET c='ninety-eight thousand two hundred forty-nine' WHERE a=12433;\nUPDATE t2 SET c='eighty-nine thousand eight hundred seven' WHERE a=12434;\nUPDATE t2 SET c='seventy-eight thousand ten' WHERE a=12435;\nUPDATE t2 SET c='forty-five thousand two hundred one' WHERE a=12436;\nUPDATE t2 SET c='thirty thousand ten' WHERE a=12437;\nUPDATE t2 SET c='ninety-eight thousand two hundred fifty' WHERE a=12438;\nUPDATE t2 SET c='fifty thousand one hundred eighty-eight' WHERE a=12439;\nUPDATE t2 SET c='seventeen thousand three hundred forty-two' WHERE a=12440;\nUPDATE t2 SET c='sixty-four thousand three hundred eighty-nine' WHERE a=12441;\nUPDATE t2 SET c='twenty-five thousand fifty-five' WHERE a=12442;\nUPDATE t2 SET c='fifty-eight thousand two hundred seventy-seven' WHERE a=12443;\nUPDATE t2 SET c='fifteen thousand five hundred sixty-nine' WHERE a=12444;\nUPDATE t2 SET c='seventy-six thousand forty-six' WHERE a=12445;\nUPDATE t2 SET c='seventy-nine thousand four hundred ninety-nine' WHERE a=12446;\nUPDATE t2 SET c='fifty-two thousand three hundred thirteen' WHERE a=12447;\nUPDATE t2 SET c='fifty-five thousand four hundred twenty-one' WHERE a=12448;\nUPDATE t2 SET c='fifty-two thousand nine hundred eighty-three' WHERE a=12449;\nUPDATE t2 SET c='eighteen thousand eight hundred ninety-one' WHERE a=12450;\nUPDATE t2 SET c='seventy-one thousand one hundred fifty-seven' WHERE a=12451;\nUPDATE t2 SET c='seventy-five thousand five hundred fourteen' WHERE a=12452;\nUPDATE t2 SET c='seventeen thousand one hundred twenty-two' WHERE a=12453;\nUPDATE t2 SET c='eighty-three thousand one hundred fifteen' WHERE a=12454;\nUPDATE t2 SET c='ninety-nine thousand two hundred two' WHERE a=12455;\nUPDATE t2 SET c='twenty-seven thousand two hundred twenty-nine' WHERE a=12456;\nUPDATE t2 SET c='sixty-seven thousand five hundred twenty-two' WHERE a=12457;\nUPDATE t2 SET c='eighty-five thousand four hundred thirteen' WHERE a=12458;\nUPDATE t2 SET c='twelve thousand seven hundred seventy-eight' WHERE a=12459;\nUPDATE t2 SET c='ninety thousand six hundred eighty-seven' WHERE a=12460;\nUPDATE t2 SET c='sixty-five thousand nine hundred ninety-three' WHERE a=12461;\nUPDATE t2 SET c='eighty-two thousand one hundred forty' WHERE a=12462;\nUPDATE t2 SET c='seventy-three thousand six hundred forty-four' WHERE a=12463;\nUPDATE t2 SET c='forty thousand seven hundred thirty-four' WHERE a=12464;\nUPDATE t2 SET c='seventy-one thousand four hundred forty-seven' WHERE a=12465;\nUPDATE t2 SET c='twenty-one thousand nine hundred thirty-one' WHERE a=12466;\nUPDATE t2 SET c='ninety-seven thousand eight hundred eleven' WHERE a=12467;\nUPDATE t2 SET c='six thousand one hundred thirty-two' WHERE a=12468;\nUPDATE t2 SET c='seventy-six thousand thirty-six' WHERE a=12469;\nUPDATE t2 SET c='sixty-eight thousand' WHERE a=12470;\nUPDATE t2 SET c='thirty-seven thousand seven hundred forty-four' WHERE a=12471;\nUPDATE t2 SET c='thirty-seven thousand six hundred forty-nine' WHERE a=12472;\nUPDATE t2 SET c='twenty thousand two hundred nineteen' WHERE a=12473;\nUPDATE t2 SET c='eighty-two thousand four hundred thirty-nine' WHERE a=12474;\nUPDATE t2 SET c='seventy-seven thousand eight hundred fifty-five' WHERE a=12475;\nUPDATE t2 SET c='fourteen thousand two hundred ninety-three' WHERE a=12476;\nUPDATE t2 SET c='eleven thousand six hundred twenty-five' WHERE a=12477;\nUPDATE t2 SET c='eight thousand four hundred eighteen' WHERE a=12478;\nUPDATE t2 SET c='one thousand six hundred sixty-four' WHERE a=12479;\nUPDATE t2 SET c='thirty-one thousand seven hundred seventy-eight' WHERE a=12480;\nUPDATE t2 SET c='thirty-eight thousand seven hundred fifty-two' WHERE a=12481;\nUPDATE t2 SET c='forty-six thousand five hundred nine' WHERE a=12482;\nUPDATE t2 SET c='one thousand two hundred thirty-eight' WHERE a=12483;\nUPDATE t2 SET c='twenty-one thousand one hundred seven' WHERE a=12484;\nUPDATE t2 SET c='eighty-four thousand eighty-two' WHERE a=12485;\nUPDATE t2 SET c='ninety-six thousand six hundred forty' WHERE a=12486;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-six' WHERE a=12487;\nUPDATE t2 SET c='eighty-three thousand twenty-one' WHERE a=12488;\nUPDATE t2 SET c='nine thousand sixty-nine' WHERE a=12489;\nUPDATE t2 SET c='ninety thousand nine hundred fifty-seven' WHERE a=12490;\nUPDATE t2 SET c='ninety-seven thousand twenty-six' WHERE a=12491;\nUPDATE t2 SET c='ninety-eight thousand eight hundred ninety-one' WHERE a=12492;\nUPDATE t2 SET c='fourteen thousand five hundred fifty-nine' WHERE a=12493;\nUPDATE t2 SET c='sixty-one thousand nine hundred forty-five' WHERE a=12494;\nUPDATE t2 SET c='seven thousand five hundred four' WHERE a=12495;\nUPDATE t2 SET c='ninety-eight thousand four hundred seventy-six' WHERE a=12496;\nUPDATE t2 SET c='seventy-four thousand five hundred forty-four' WHERE a=12497;\nUPDATE t2 SET c='twenty-eight thousand five hundred eleven' WHERE a=12498;\nUPDATE t2 SET c='eighty thousand two hundred sixty-seven' WHERE a=12499;\nUPDATE t2 SET c='thirty-five thousand two hundred seventy-one' WHERE a=12500;\nUPDATE t2 SET c='fifty-five thousand two hundred fifty-two' WHERE a=12501;\nUPDATE t2 SET c='eight thousand seventy-six' WHERE a=12502;\nUPDATE t2 SET c='sixty-nine thousand eight hundred forty-three' WHERE a=12503;\nUPDATE t2 SET c='sixty-four thousand seven hundred two' WHERE a=12504;\nUPDATE t2 SET c='fifty-nine thousand five hundred sixty-three' WHERE a=12505;\nUPDATE t2 SET c='eighteen thousand eight hundred sixty-one' WHERE a=12506;\nUPDATE t2 SET c='seventy-six thousand five hundred three' WHERE a=12507;\nUPDATE t2 SET c='seventy-five thousand six hundred eighty-nine' WHERE a=12508;\nUPDATE t2 SET c='eleven thousand two hundred seventy-two' WHERE a=12509;\nUPDATE t2 SET c='ninety-nine thousand one hundred forty-nine' WHERE a=12510;\nUPDATE t2 SET c='fourteen thousand two hundred nineteen' WHERE a=12511;\nUPDATE t2 SET c='ninety thousand three hundred fifty-seven' WHERE a=12512;\nUPDATE t2 SET c='three thousand thirty-nine' WHERE a=12513;\nUPDATE t2 SET c='nine thousand four hundred thirty' WHERE a=12514;\nUPDATE t2 SET c='seventy-two thousand one hundred six' WHERE a=12515;\nUPDATE t2 SET c='three thousand seven hundred forty-two' WHERE a=12516;\nUPDATE t2 SET c='nineteen thousand two hundred ninety-two' WHERE a=12517;\nUPDATE t2 SET c='forty-two thousand seven hundred forty-five' WHERE a=12518;\nUPDATE t2 SET c='forty-nine thousand one hundred thirty' WHERE a=12519;\nUPDATE t2 SET c='twenty-three thousand three hundred twelve' WHERE a=12520;\nUPDATE t2 SET c='seventy-one thousand eight hundred ninety' WHERE a=12521;\nUPDATE t2 SET c='ninety-eight thousand forty-six' WHERE a=12522;\nUPDATE t2 SET c='eighteen thousand seven hundred seventy-two' WHERE a=12523;\nUPDATE t2 SET c='thirty thousand four hundred fifty-one' WHERE a=12524;\nUPDATE t2 SET c='ninety-eight thousand three hundred thirty-two' WHERE a=12525;\nUPDATE t2 SET c='ninety-one thousand four hundred seventy-three' WHERE a=12526;\nUPDATE t2 SET c='eighty-eight thousand four hundred sixty-eight' WHERE a=12527;\nUPDATE t2 SET c='seventy-eight thousand four hundred ninety-two' WHERE a=12528;\nUPDATE t2 SET c='forty-eight thousand one hundred seventy-eight' WHERE a=12529;\nUPDATE t2 SET c='sixty-two thousand three hundred eighteen' WHERE a=12530;\nUPDATE t2 SET c='thirty-three thousand eight hundred thirty-five' WHERE a=12531;\nUPDATE t2 SET c='twelve thousand four hundred twenty-five' WHERE a=12532;\nUPDATE t2 SET c='twenty-six thousand nine hundred ninety-two' WHERE a=12533;\nUPDATE t2 SET c='forty thousand four hundred ninety-five' WHERE a=12534;\nUPDATE t2 SET c='five thousand eight hundred forty-four' WHERE a=12535;\nUPDATE t2 SET c='eighty-nine thousand nine hundred sixty-two' WHERE a=12536;\nUPDATE t2 SET c='ninety-seven thousand five hundred seventy-six' WHERE a=12537;\nUPDATE t2 SET c='eighty-six thousand four hundred eighteen' WHERE a=12538;\nUPDATE t2 SET c='ninety-seven thousand nine hundred sixty-one' WHERE a=12539;\nUPDATE t2 SET c='ninety-five thousand six hundred thirty-six' WHERE a=12540;\nUPDATE t2 SET c='forty-four thousand nine hundred seventy-one' WHERE a=12541;\nUPDATE t2 SET c='seventy-seven thousand three hundred thirty-five' WHERE a=12542;\nUPDATE t2 SET c='eighty-two thousand two hundred' WHERE a=12543;\nUPDATE t2 SET c='forty-two thousand six hundred seven' WHERE a=12544;\nUPDATE t2 SET c='eighty-one thousand twenty-nine' WHERE a=12545;\nUPDATE t2 SET c='seventy-nine thousand five hundred sixty-one' WHERE a=12546;\nUPDATE t2 SET c='eighty-eight thousand seven hundred eighty-four' WHERE a=12547;\nUPDATE t2 SET c='five thousand nine hundred eighty-one' WHERE a=12548;\nUPDATE t2 SET c='two thousand one hundred fifty-eight' WHERE a=12549;\nUPDATE t2 SET c='nine thousand eight hundred seventy-five' WHERE a=12550;\nUPDATE t2 SET c='seven thousand three hundred twenty-four' WHERE a=12551;\nUPDATE t2 SET c='eighty-three thousand three hundred forty-eight' WHERE a=12552;\nUPDATE t2 SET c='seventy-five thousand two hundred twenty-eight' WHERE a=12553;\nUPDATE t2 SET c='eighty thousand nine hundred fourteen' WHERE a=12554;\nUPDATE t2 SET c='forty-eight thousand one hundred seventy-three' WHERE a=12555;\nUPDATE t2 SET c='seventy-four thousand eight hundred nineteen' WHERE a=12556;\nUPDATE t2 SET c='fifty thousand three hundred seventy' WHERE a=12557;\nUPDATE t2 SET c='thirty-seven thousand two hundred sixty-eight' WHERE a=12558;\nUPDATE t2 SET c='thirty-six thousand seven hundred forty-three' WHERE a=12559;\nUPDATE t2 SET c='sixty-one thousand four hundred seventy-seven' WHERE a=12560;\nUPDATE t2 SET c='forty-six thousand eight hundred twenty-three' WHERE a=12561;\nUPDATE t2 SET c='sixty-five thousand seven hundred fifty-five' WHERE a=12562;\nUPDATE t2 SET c='fifty-three thousand seven hundred fifty' WHERE a=12563;\nUPDATE t2 SET c='sixty-eight thousand nine hundred eighty-six' WHERE a=12564;\nUPDATE t2 SET c='nineteen thousand two hundred thirteen' WHERE a=12565;\nUPDATE t2 SET c='twenty-nine thousand two hundred ninety' WHERE a=12566;\nUPDATE t2 SET c='forty-three thousand one hundred sixty-three' WHERE a=12567;\nUPDATE t2 SET c='sixty-five thousand six hundred thirty-one' WHERE a=12568;\nUPDATE t2 SET c='eighty-eight thousand nine hundred seventy-three' WHERE a=12569;\nUPDATE t2 SET c='four thousand five hundred eighty-eight' WHERE a=12570;\nUPDATE t2 SET c='eighty thousand nine hundred fifty' WHERE a=12571;\nUPDATE t2 SET c='forty-nine thousand two hundred ninety-eight' WHERE a=12572;\nUPDATE t2 SET c='twenty thousand three hundred forty-nine' WHERE a=12573;\nUPDATE t2 SET c='ninety-nine thousand one hundred sixty-seven' WHERE a=12574;\nUPDATE t2 SET c='five thousand eight hundred forty-six' WHERE a=12575;\nUPDATE t2 SET c='thirty-two thousand four hundred twelve' WHERE a=12576;\nUPDATE t2 SET c='forty-one thousand three hundred forty-eight' WHERE a=12577;\nUPDATE t2 SET c='six hundred four' WHERE a=12578;\nUPDATE t2 SET c='forty-three thousand two hundred seventy-nine' WHERE a=12579;\nUPDATE t2 SET c='eighty-nine thousand eight hundred ninety-nine' WHERE a=12580;\nUPDATE t2 SET c='thirty-seven thousand two hundred ninety-six' WHERE a=12581;\nUPDATE t2 SET c='fourteen thousand eight hundred fifty-four' WHERE a=12582;\nUPDATE t2 SET c='eighty-four thousand nine hundred seventy-eight' WHERE a=12583;\nUPDATE t2 SET c='eighty-two thousand six hundred seventy-nine' WHERE a=12584;\nUPDATE t2 SET c='twenty thousand five hundred nineteen' WHERE a=12585;\nUPDATE t2 SET c='two hundred sixty' WHERE a=12586;\nUPDATE t2 SET c='seventy-three thousand five hundred sixty-seven' WHERE a=12587;\nUPDATE t2 SET c='fifty-seven thousand eighty-nine' WHERE a=12588;\nUPDATE t2 SET c='fifty-one thousand four hundred sixty-one' WHERE a=12589;\nUPDATE t2 SET c='thirty-six thousand eighteen' WHERE a=12590;\nUPDATE t2 SET c='seventy-nine thousand six hundred ninety-two' WHERE a=12591;\nUPDATE t2 SET c='seventy-six thousand thirty-six' WHERE a=12592;\nUPDATE t2 SET c='sixty-eight thousand two hundred seventy-three' WHERE a=12593;\nUPDATE t2 SET c='eighty-eight thousand five hundred fifty-nine' WHERE a=12594;\nUPDATE t2 SET c='forty-six thousand five hundred thirty-four' WHERE a=12595;\nUPDATE t2 SET c='thirty-two thousand one hundred twenty-seven' WHERE a=12596;\nUPDATE t2 SET c='fifty-five thousand two hundred thirty-eight' WHERE a=12597;\nUPDATE t2 SET c='forty-six thousand nine hundred twenty-six' WHERE a=12598;\nUPDATE t2 SET c='seven thousand eight hundred forty-seven' WHERE a=12599;\nUPDATE t2 SET c='twenty-six thousand seven hundred ninety-one' WHERE a=12600;\nUPDATE t2 SET c='nineteen thousand nine hundred ninety-nine' WHERE a=12601;\nUPDATE t2 SET c='fifty-eight thousand nine hundred eighty' WHERE a=12602;\nUPDATE t2 SET c='sixteen thousand sixty-nine' WHERE a=12603;\nUPDATE t2 SET c='forty-six thousand one hundred eighty-nine' WHERE a=12604;\nUPDATE t2 SET c='three thousand nine hundred fifty-nine' WHERE a=12605;\nUPDATE t2 SET c='seventy-three thousand seventeen' WHERE a=12606;\nUPDATE t2 SET c='forty-nine thousand eight hundred ninety-one' WHERE a=12607;\nUPDATE t2 SET c='fifty-six thousand four hundred twenty-five' WHERE a=12608;\nUPDATE t2 SET c='thirty-two thousand six hundred twenty-five' WHERE a=12609;\nUPDATE t2 SET c='thirty-five thousand five hundred thirty-two' WHERE a=12610;\nUPDATE t2 SET c='forty-nine thousand ninety-seven' WHERE a=12611;\nUPDATE t2 SET c='sixty-three thousand two hundred forty' WHERE a=12612;\nUPDATE t2 SET c='eighty-eight thousand eight hundred fifty-one' WHERE a=12613;\nUPDATE t2 SET c='six thousand forty' WHERE a=12614;\nUPDATE t2 SET c='thirty-nine thousand seven hundred ninety-six' WHERE a=12615;\nUPDATE t2 SET c='sixty-four thousand nine hundred seventy-four' WHERE a=12616;\nUPDATE t2 SET c='eighty-four thousand eight hundred ninety-three' WHERE a=12617;\nUPDATE t2 SET c='twenty-three thousand twenty-four' WHERE a=12618;\nUPDATE t2 SET c='one thousand seventy-four' WHERE a=12619;\nUPDATE t2 SET c='seventy-two thousand three hundred ninety-six' WHERE a=12620;\nUPDATE t2 SET c='thirty-three thousand five hundred eighty-six' WHERE a=12621;\nUPDATE t2 SET c='forty-one thousand four hundred thirty-five' WHERE a=12622;\nUPDATE t2 SET c='twenty-five thousand eight hundred forty-eight' WHERE a=12623;\nUPDATE t2 SET c='eighty-two thousand eight hundred sixty-nine' WHERE a=12624;\nUPDATE t2 SET c='ninety-three thousand seven hundred forty-three' WHERE a=12625;\nUPDATE t2 SET c='twenty-three thousand one hundred nineteen' WHERE a=12626;\nUPDATE t2 SET c='seventy-five thousand one hundred eighteen' WHERE a=12627;\nUPDATE t2 SET c='nine hundred eighty-seven' WHERE a=12628;\nUPDATE t2 SET c='seven thousand two hundred ninety-seven' WHERE a=12629;\nUPDATE t2 SET c='thirty-nine thousand nine hundred sixty-one' WHERE a=12630;\nUPDATE t2 SET c='ninety-nine thousand six hundred twenty-six' WHERE a=12631;\nUPDATE t2 SET c='eighty thousand six hundred five' WHERE a=12632;\nUPDATE t2 SET c='eighty-two thousand four hundred seventy-seven' WHERE a=12633;\nUPDATE t2 SET c='thirty-five thousand one hundred ninety-six' WHERE a=12634;\nUPDATE t2 SET c='twenty-four thousand nine hundred ninety' WHERE a=12635;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-seven' WHERE a=12636;\nUPDATE t2 SET c='eighty thousand four hundred seventy-two' WHERE a=12637;\nUPDATE t2 SET c='forty thousand five hundred ninety-five' WHERE a=12638;\nUPDATE t2 SET c='five thousand six hundred eighty' WHERE a=12639;\nUPDATE t2 SET c='eighty-two thousand three hundred twenty-four' WHERE a=12640;\nUPDATE t2 SET c='thirty-one thousand one hundred eighty-nine' WHERE a=12641;\nUPDATE t2 SET c='fifty-three thousand one hundred forty-eight' WHERE a=12642;\nUPDATE t2 SET c='twenty thousand five hundred forty-nine' WHERE a=12643;\nUPDATE t2 SET c='forty-one thousand one hundred nineteen' WHERE a=12644;\nUPDATE t2 SET c='nine hundred fifty-nine' WHERE a=12645;\nUPDATE t2 SET c='fourteen thousand four hundred sixty-two' WHERE a=12646;\nUPDATE t2 SET c='ninety-three thousand four hundred ninety-eight' WHERE a=12647;\nUPDATE t2 SET c='sixty-one thousand eight hundred six' WHERE a=12648;\nUPDATE t2 SET c='twenty-one thousand four hundred thirty-five' WHERE a=12649;\nUPDATE t2 SET c='sixteen thousand one hundred fifty-five' WHERE a=12650;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventy-three' WHERE a=12651;\nUPDATE t2 SET c='sixty-four thousand two hundred fifty-seven' WHERE a=12652;\nUPDATE t2 SET c='sixty-five thousand three hundred thirty-one' WHERE a=12653;\nUPDATE t2 SET c='ninety-one thousand seventy-four' WHERE a=12654;\nUPDATE t2 SET c='ninety-two thousand one hundred seventy' WHERE a=12655;\nUPDATE t2 SET c='one thousand eight hundred eleven' WHERE a=12656;\nUPDATE t2 SET c='fifty-four thousand seven hundred seventy-six' WHERE a=12657;\nUPDATE t2 SET c='seventy thousand four hundred sixty-eight' WHERE a=12658;\nUPDATE t2 SET c='ninety-nine thousand seven hundred sixty' WHERE a=12659;\nUPDATE t2 SET c='sixty-three thousand two hundred ten' WHERE a=12660;\nUPDATE t2 SET c='sixty-three thousand five hundred nine' WHERE a=12661;\nUPDATE t2 SET c='fourteen thousand one hundred two' WHERE a=12662;\nUPDATE t2 SET c='seventy-five thousand five hundred seventy-seven' WHERE a=12663;\nUPDATE t2 SET c='twenty-eight thousand four hundred twenty-eight' WHERE a=12664;\nUPDATE t2 SET c='forty-one thousand six hundred eighty-six' WHERE a=12665;\nUPDATE t2 SET c='thirty-two thousand five hundred thirty-one' WHERE a=12666;\nUPDATE t2 SET c='seventy-two thousand eight hundred forty-five' WHERE a=12667;\nUPDATE t2 SET c='sixty-one thousand eight hundred ten' WHERE a=12668;\nUPDATE t2 SET c='twenty thousand six hundred seventy-one' WHERE a=12669;\nUPDATE t2 SET c='twelve thousand six hundred thirty-three' WHERE a=12670;\nUPDATE t2 SET c='three thousand eight hundred ninety-six' WHERE a=12671;\nUPDATE t2 SET c='eighty-two thousand one hundred fifty-five' WHERE a=12672;\nUPDATE t2 SET c='seventy-five thousand six hundred sixty-six' WHERE a=12673;\nUPDATE t2 SET c='eighty-three thousand three hundred thirty-nine' WHERE a=12674;\nUPDATE t2 SET c='fifty-five thousand three hundred seventy-nine' WHERE a=12675;\nUPDATE t2 SET c='sixty-seven thousand seventy-one' WHERE a=12676;\nUPDATE t2 SET c='seventy-seven thousand five hundred eighty-six' WHERE a=12677;\nUPDATE t2 SET c='fifty-nine thousand eight hundred sixty-eight' WHERE a=12678;\nUPDATE t2 SET c='fourteen thousand seven hundred twenty-seven' WHERE a=12679;\nUPDATE t2 SET c='seventy-one thousand eight hundred forty-nine' WHERE a=12680;\nUPDATE t2 SET c='twenty-two thousand three hundred seventy-nine' WHERE a=12681;\nUPDATE t2 SET c='thirty-seven thousand nine hundred seventy-four' WHERE a=12682;\nUPDATE t2 SET c='twenty-seven thousand three hundred twenty-four' WHERE a=12683;\nUPDATE t2 SET c='thirty-four thousand seven hundred seventy-eight' WHERE a=12684;\nUPDATE t2 SET c='forty-eight thousand six hundred forty-five' WHERE a=12685;\nUPDATE t2 SET c='forty-eight thousand five hundred twelve' WHERE a=12686;\nUPDATE t2 SET c='ninety-seven thousand six hundred fifty-six' WHERE a=12687;\nUPDATE t2 SET c='thirty-five thousand fifty-one' WHERE a=12688;\nUPDATE t2 SET c='fifty-two thousand fifty-nine' WHERE a=12689;\nUPDATE t2 SET c='nine hundred sixty-four' WHERE a=12690;\nUPDATE t2 SET c='seven thousand seventy-six' WHERE a=12691;\nUPDATE t2 SET c='two thousand five hundred fourteen' WHERE a=12692;\nUPDATE t2 SET c='eighty-two thousand eight hundred eighty-four' WHERE a=12693;\nUPDATE t2 SET c='ninety-one thousand four hundred nineteen' WHERE a=12694;\nUPDATE t2 SET c='ninety-seven thousand six hundred ninety-eight' WHERE a=12695;\nUPDATE t2 SET c='eighty-seven thousand nine' WHERE a=12696;\nUPDATE t2 SET c='twenty-seven thousand six hundred sixty-three' WHERE a=12697;\nUPDATE t2 SET c='ninety-two thousand two hundred eighty-seven' WHERE a=12698;\nUPDATE t2 SET c='five thousand seven hundred forty-five' WHERE a=12699;\nUPDATE t2 SET c='seventy-six thousand one hundred ninety-three' WHERE a=12700;\nUPDATE t2 SET c='eighty-eight thousand seven hundred seventeen' WHERE a=12701;\nUPDATE t2 SET c='ninety-one thousand three hundred eighty-six' WHERE a=12702;\nUPDATE t2 SET c='sixty-two thousand three hundred ninety-eight' WHERE a=12703;\nUPDATE t2 SET c='ninety-two thousand one hundred sixty' WHERE a=12704;\nUPDATE t2 SET c='seventy-two thousand three hundred six' WHERE a=12705;\nUPDATE t2 SET c='twenty-three thousand seven hundred ninety-seven' WHERE a=12706;\nUPDATE t2 SET c='ninety-four thousand three hundred two' WHERE a=12707;\nUPDATE t2 SET c='thirty-two thousand seven hundred fifty-nine' WHERE a=12708;\nUPDATE t2 SET c='eighty-one thousand one hundred fifty-seven' WHERE a=12709;\nUPDATE t2 SET c='fifty-nine thousand nine hundred ninety-six' WHERE a=12710;\nUPDATE t2 SET c='sixty-seven thousand six hundred five' WHERE a=12711;\nUPDATE t2 SET c='ninety-three thousand seventy-five' WHERE a=12712;\nUPDATE t2 SET c='twenty-six thousand eight hundred fifty-two' WHERE a=12713;\nUPDATE t2 SET c='fifty-three thousand eight hundred forty-seven' WHERE a=12714;\nUPDATE t2 SET c='twenty-six thousand six hundred eighty-eight' WHERE a=12715;\nUPDATE t2 SET c='twenty-six thousand six hundred sixty' WHERE a=12716;\nUPDATE t2 SET c='eighty-four thousand three hundred ninety-nine' WHERE a=12717;\nUPDATE t2 SET c='seven thousand five hundred seventy-two' WHERE a=12718;\nUPDATE t2 SET c='thirty-three thousand two hundred nine' WHERE a=12719;\nUPDATE t2 SET c='seventy-seven thousand eight hundred sixty-nine' WHERE a=12720;\nUPDATE t2 SET c='sixty-two thousand eight hundred twenty-one' WHERE a=12721;\nUPDATE t2 SET c='forty-two thousand seven hundred sixty-one' WHERE a=12722;\nUPDATE t2 SET c='seventy-three thousand three hundred sixty-two' WHERE a=12723;\nUPDATE t2 SET c='forty-six thousand five hundred fifty-six' WHERE a=12724;\nUPDATE t2 SET c='forty-one thousand four hundred ninety-two' WHERE a=12725;\nUPDATE t2 SET c='seventy-four thousand six hundred eighty-seven' WHERE a=12726;\nUPDATE t2 SET c='eighty-nine thousand ninety-two' WHERE a=12727;\nUPDATE t2 SET c='nine thousand four' WHERE a=12728;\nUPDATE t2 SET c='thirty-three thousand two hundred ninety-six' WHERE a=12729;\nUPDATE t2 SET c='fifty-two thousand eight hundred eighteen' WHERE a=12730;\nUPDATE t2 SET c='eighty-four thousand five hundred ninety-three' WHERE a=12731;\nUPDATE t2 SET c='thirty-one thousand nine hundred forty' WHERE a=12732;\nUPDATE t2 SET c='thirty-four thousand four hundred nine' WHERE a=12733;\nUPDATE t2 SET c='eighty thousand forty-four' WHERE a=12734;\nUPDATE t2 SET c='eighty-nine thousand five hundred six' WHERE a=12735;\nUPDATE t2 SET c='seventy-five thousand eight hundred eighty-five' WHERE a=12736;\nUPDATE t2 SET c='thirty-five thousand seventy-four' WHERE a=12737;\nUPDATE t2 SET c='eighty-four thousand eight hundred ninety-five' WHERE a=12738;\nUPDATE t2 SET c='sixty-eight thousand seven hundred eighty-four' WHERE a=12739;\nUPDATE t2 SET c='fifty-nine thousand seven hundred eighty' WHERE a=12740;\nUPDATE t2 SET c='thirty-five thousand four hundred fifty-two' WHERE a=12741;\nUPDATE t2 SET c='fifteen thousand three hundred thirty-four' WHERE a=12742;\nUPDATE t2 SET c='five thousand nine hundred twenty-eight' WHERE a=12743;\nUPDATE t2 SET c='fifty-two thousand one hundred seventy-three' WHERE a=12744;\nUPDATE t2 SET c='thirty-one thousand three hundred twenty-five' WHERE a=12745;\nUPDATE t2 SET c='forty-two thousand fifty' WHERE a=12746;\nUPDATE t2 SET c='eleven thousand one hundred sixty-three' WHERE a=12747;\nUPDATE t2 SET c='nine thousand six hundred one' WHERE a=12748;\nUPDATE t2 SET c='seventeen thousand forty-six' WHERE a=12749;\nUPDATE t2 SET c='thirteen thousand one hundred twenty-nine' WHERE a=12750;\nUPDATE t2 SET c='eighty-seven thousand seventy-seven' WHERE a=12751;\nUPDATE t2 SET c='eighty-five thousand two hundred thirty-seven' WHERE a=12752;\nUPDATE t2 SET c='nine thousand eighty' WHERE a=12753;\nUPDATE t2 SET c='thirteen thousand four hundred forty-six' WHERE a=12754;\nUPDATE t2 SET c='thirty-five thousand five hundred twenty-four' WHERE a=12755;\nUPDATE t2 SET c='twelve thousand twenty-eight' WHERE a=12756;\nUPDATE t2 SET c='forty-five thousand one hundred seventy-six' WHERE a=12757;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty' WHERE a=12758;\nUPDATE t2 SET c='thirty-one thousand six hundred ninety-two' WHERE a=12759;\nUPDATE t2 SET c='forty-nine thousand three hundred thirty-seven' WHERE a=12760;\nUPDATE t2 SET c='fifty-five thousand seven hundred fifty-six' WHERE a=12761;\nUPDATE t2 SET c='twenty-seven thousand three hundred twenty-eight' WHERE a=12762;\nUPDATE t2 SET c='forty-nine thousand three hundred thirty-one' WHERE a=12763;\nUPDATE t2 SET c='thirty-four thousand two hundred eighty-eight' WHERE a=12764;\nUPDATE t2 SET c='fifty-one thousand six hundred eighty-seven' WHERE a=12765;\nUPDATE t2 SET c='three thousand six hundred fifty-two' WHERE a=12766;\nUPDATE t2 SET c='eleven thousand four hundred ninety-seven' WHERE a=12767;\nUPDATE t2 SET c='eighty-nine thousand seven hundred seventy-two' WHERE a=12768;\nUPDATE t2 SET c='fifty-two thousand eight hundred ninety-one' WHERE a=12769;\nUPDATE t2 SET c='five thousand two hundred eighty-three' WHERE a=12770;\nUPDATE t2 SET c='two thousand three hundred ninety-six' WHERE a=12771;\nUPDATE t2 SET c='twenty thousand nine hundred ninety-seven' WHERE a=12772;\nUPDATE t2 SET c='three thousand seven hundred seventy-six' WHERE a=12773;\nUPDATE t2 SET c='fifteen thousand five hundred sixty-one' WHERE a=12774;\nUPDATE t2 SET c='nine thousand one hundred sixty-two' WHERE a=12775;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-nine' WHERE a=12776;\nUPDATE t2 SET c='forty-six thousand nine hundred sixty-eight' WHERE a=12777;\nUPDATE t2 SET c='ninety-six thousand five hundred ninety-three' WHERE a=12778;\nUPDATE t2 SET c='forty thousand seven hundred eighty-three' WHERE a=12779;\nUPDATE t2 SET c='eighty-six thousand four hundred eighty-eight' WHERE a=12780;\nUPDATE t2 SET c='thirty-six thousand two hundred fifty-two' WHERE a=12781;\nUPDATE t2 SET c='forty thousand five hundred nineteen' WHERE a=12782;\nUPDATE t2 SET c='ninety-eight thousand nine hundred ninety-five' WHERE a=12783;\nUPDATE t2 SET c='twelve thousand one hundred fifty-nine' WHERE a=12784;\nUPDATE t2 SET c='sixty-one thousand sixty-six' WHERE a=12785;\nUPDATE t2 SET c='nineteen thousand nine hundred eighty-eight' WHERE a=12786;\nUPDATE t2 SET c='thirty-two thousand eight hundred forty-five' WHERE a=12787;\nUPDATE t2 SET c='forty-eight thousand nine hundred twenty-seven' WHERE a=12788;\nUPDATE t2 SET c='fifty-two thousand five hundred eighty-six' WHERE a=12789;\nUPDATE t2 SET c='fifty-two thousand eight hundred sixty-one' WHERE a=12790;\nUPDATE t2 SET c='twenty-six thousand five hundred seventy-three' WHERE a=12791;\nUPDATE t2 SET c='sixty-six thousand eight hundred thirty-six' WHERE a=12792;\nUPDATE t2 SET c='three thousand two hundred forty-four' WHERE a=12793;\nUPDATE t2 SET c='ten thousand eight hundred eighty-three' WHERE a=12794;\nUPDATE t2 SET c='sixty-three thousand seven hundred sixty-five' WHERE a=12795;\nUPDATE t2 SET c='thirteen thousand nine hundred sixty-one' WHERE a=12796;\nUPDATE t2 SET c='fifty thousand two hundred' WHERE a=12797;\nUPDATE t2 SET c='fifteen thousand nine hundred eighty-six' WHERE a=12798;\nUPDATE t2 SET c='twenty-five thousand eight hundred eighty-two' WHERE a=12799;\nUPDATE t2 SET c='seventy-nine thousand nine hundred eighty-one' WHERE a=12800;\nUPDATE t2 SET c='seventy-seven thousand one hundred eleven' WHERE a=12801;\nUPDATE t2 SET c='fifty-six thousand eight hundred fifteen' WHERE a=12802;\nUPDATE t2 SET c='thirty thousand six hundred sixty' WHERE a=12803;\nUPDATE t2 SET c='seventy-nine thousand eight hundred forty-seven' WHERE a=12804;\nUPDATE t2 SET c='fifty thousand forty-six' WHERE a=12805;\nUPDATE t2 SET c='fifteen thousand five hundred nineteen' WHERE a=12806;\nUPDATE t2 SET c='eighty-six thousand six hundred twelve' WHERE a=12807;\nUPDATE t2 SET c='twelve thousand forty-six' WHERE a=12808;\nUPDATE t2 SET c='seventy-five thousand three hundred eighty-eight' WHERE a=12809;\nUPDATE t2 SET c='forty-eight thousand three hundred seventy-one' WHERE a=12810;\nUPDATE t2 SET c='fifty-nine thousand one hundred nineteen' WHERE a=12811;\nUPDATE t2 SET c='ten thousand five hundred sixteen' WHERE a=12812;\nUPDATE t2 SET c='sixty-nine thousand five hundred sixty' WHERE a=12813;\nUPDATE t2 SET c='sixty-one thousand four hundred six' WHERE a=12814;\nUPDATE t2 SET c='thirty-one thousand eight hundred sixty-one' WHERE a=12815;\nUPDATE t2 SET c='thirty-eight thousand nine hundred forty-three' WHERE a=12816;\nUPDATE t2 SET c='thirty-seven thousand seventy-five' WHERE a=12817;\nUPDATE t2 SET c='fifteen thousand six hundred fourteen' WHERE a=12818;\nUPDATE t2 SET c='eighty thousand nine hundred fifteen' WHERE a=12819;\nUPDATE t2 SET c='one thousand seven hundred nineteen' WHERE a=12820;\nUPDATE t2 SET c='ninety-six thousand three hundred eighty-seven' WHERE a=12821;\nUPDATE t2 SET c='twenty-three thousand one hundred nineteen' WHERE a=12822;\nUPDATE t2 SET c='sixteen thousand three hundred seventy-three' WHERE a=12823;\nUPDATE t2 SET c='twenty-five thousand four hundred sixteen' WHERE a=12824;\nUPDATE t2 SET c='sixty-four thousand six hundred twelve' WHERE a=12825;\nUPDATE t2 SET c='sixty-three thousand four hundred ninety-three' WHERE a=12826;\nUPDATE t2 SET c='ninety-one thousand six hundred one' WHERE a=12827;\nUPDATE t2 SET c='sixty thousand eight hundred twenty' WHERE a=12828;\nUPDATE t2 SET c='thirty-four thousand eight hundred seven' WHERE a=12829;\nUPDATE t2 SET c='nineteen thousand five hundred six' WHERE a=12830;\nUPDATE t2 SET c='eighty-seven thousand nine hundred sixty-five' WHERE a=12831;\nUPDATE t2 SET c='thirty-one thousand two hundred thirty-four' WHERE a=12832;\nUPDATE t2 SET c='five hundred eighty-five' WHERE a=12833;\nUPDATE t2 SET c='thirty-two thousand eight hundred sixty-six' WHERE a=12834;\nUPDATE t2 SET c='two thousand forty-nine' WHERE a=12835;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-two' WHERE a=12836;\nUPDATE t2 SET c='seventy thousand seven hundred fourteen' WHERE a=12837;\nUPDATE t2 SET c='seventy-six thousand one hundred thirty-six' WHERE a=12838;\nUPDATE t2 SET c='sixty-two thousand three hundred three' WHERE a=12839;\nUPDATE t2 SET c='two thousand nine hundred sixty-six' WHERE a=12840;\nUPDATE t2 SET c='three thousand seven hundred forty-one' WHERE a=12841;\nUPDATE t2 SET c='fifty-four thousand four hundred fourteen' WHERE a=12842;\nUPDATE t2 SET c='sixty-six thousand seven hundred seventy-nine' WHERE a=12843;\nUPDATE t2 SET c='eighteen thousand two hundred eighty-one' WHERE a=12844;\nUPDATE t2 SET c='seventeen thousand five hundred eighteen' WHERE a=12845;\nUPDATE t2 SET c='fifty-three thousand one hundred ninety-three' WHERE a=12846;\nUPDATE t2 SET c='eighty-six thousand one hundred eighty-seven' WHERE a=12847;\nUPDATE t2 SET c='eighty-nine thousand four hundred thirty-eight' WHERE a=12848;\nUPDATE t2 SET c='forty-one thousand nine hundred eighteen' WHERE a=12849;\nUPDATE t2 SET c='seventy-one thousand three hundred sixty-seven' WHERE a=12850;\nUPDATE t2 SET c='sixty-seven thousand two hundred sixty-five' WHERE a=12851;\nUPDATE t2 SET c='twenty-nine thousand seven hundred eighty-two' WHERE a=12852;\nUPDATE t2 SET c='seventy-eight thousand five hundred ninety-nine' WHERE a=12853;\nUPDATE t2 SET c='four thousand nine hundred seventy-four' WHERE a=12854;\nUPDATE t2 SET c='forty-five thousand nine hundred ninety-three' WHERE a=12855;\nUPDATE t2 SET c='sixty-six thousand two hundred forty-seven' WHERE a=12856;\nUPDATE t2 SET c='sixty-seven thousand three hundred thirty' WHERE a=12857;\nUPDATE t2 SET c='thirty-eight thousand six hundred sixty-five' WHERE a=12858;\nUPDATE t2 SET c='one thousand three hundred nineteen' WHERE a=12859;\nUPDATE t2 SET c='ninety-one thousand seven hundred thirteen' WHERE a=12860;\nUPDATE t2 SET c='seventy thousand six hundred ten' WHERE a=12861;\nUPDATE t2 SET c='nine thousand four hundred thirteen' WHERE a=12862;\nUPDATE t2 SET c='ninety-six thousand four hundred two' WHERE a=12863;\nUPDATE t2 SET c='fifty-four thousand seven hundred fifty-one' WHERE a=12864;\nUPDATE t2 SET c='eighty-three thousand nine hundred seventy-one' WHERE a=12865;\nUPDATE t2 SET c='ninety-six thousand two hundred sixty-two' WHERE a=12866;\nUPDATE t2 SET c='forty-four thousand three hundred fifty' WHERE a=12867;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eighty-six' WHERE a=12868;\nUPDATE t2 SET c='thirty-nine thousand ninety-eight' WHERE a=12869;\nUPDATE t2 SET c='ten thousand six hundred twenty-nine' WHERE a=12870;\nUPDATE t2 SET c='seventy-five thousand four hundred twenty-six' WHERE a=12871;\nUPDATE t2 SET c='ten thousand two hundred two' WHERE a=12872;\nUPDATE t2 SET c='twenty-five thousand eight hundred fifty' WHERE a=12873;\nUPDATE t2 SET c='ninety-nine thousand one hundred one' WHERE a=12874;\nUPDATE t2 SET c='ninety-seven thousand three hundred fifty-six' WHERE a=12875;\nUPDATE t2 SET c='twenty-seven thousand two hundred seventy-three' WHERE a=12876;\nUPDATE t2 SET c='twenty-one thousand three hundred one' WHERE a=12877;\nUPDATE t2 SET c='fifty-one thousand four hundred thirty-six' WHERE a=12878;\nUPDATE t2 SET c='nine thousand eight hundred twelve' WHERE a=12879;\nUPDATE t2 SET c='thirty thousand six hundred eighty' WHERE a=12880;\nUPDATE t2 SET c='ninety-eight thousand forty-seven' WHERE a=12881;\nUPDATE t2 SET c='fifty-four thousand three hundred seventy-nine' WHERE a=12882;\nUPDATE t2 SET c='twenty-six thousand one hundred ten' WHERE a=12883;\nUPDATE t2 SET c='twenty-eight thousand eighty-eight' WHERE a=12884;\nUPDATE t2 SET c='fifty-six thousand eight hundred sixty-eight' WHERE a=12885;\nUPDATE t2 SET c='thirty-four thousand five hundred thirty-eight' WHERE a=12886;\nUPDATE t2 SET c='eighteen thousand six hundred forty' WHERE a=12887;\nUPDATE t2 SET c='ninety-four thousand five hundred sixty-three' WHERE a=12888;\nUPDATE t2 SET c='seventy-six thousand one hundred fifty' WHERE a=12889;\nUPDATE t2 SET c='two thousand one hundred thirteen' WHERE a=12890;\nUPDATE t2 SET c='sixty-five thousand ninety-six' WHERE a=12891;\nUPDATE t2 SET c='seventy thousand six hundred nineteen' WHERE a=12892;\nUPDATE t2 SET c='two thousand five hundred eighty-one' WHERE a=12893;\nUPDATE t2 SET c='forty-two thousand three hundred thirty-seven' WHERE a=12894;\nUPDATE t2 SET c='thirty-eight thousand six hundred seventy-four' WHERE a=12895;\nUPDATE t2 SET c='forty-seven thousand six hundred sixty-four' WHERE a=12896;\nUPDATE t2 SET c='forty-four thousand three hundred seventy-six' WHERE a=12897;\nUPDATE t2 SET c='thirty-five thousand nine hundred twenty' WHERE a=12898;\nUPDATE t2 SET c='eighty thousand five hundred sixty' WHERE a=12899;\nUPDATE t2 SET c='sixteen thousand two hundred twelve' WHERE a=12900;\nUPDATE t2 SET c='sixty-five thousand one hundred seventy-eight' WHERE a=12901;\nUPDATE t2 SET c='twenty-one thousand nine hundred eleven' WHERE a=12902;\nUPDATE t2 SET c='fifty-six thousand twenty-five' WHERE a=12903;\nUPDATE t2 SET c='sixteen thousand five hundred five' WHERE a=12904;\nUPDATE t2 SET c='seventy-four thousand seventy-seven' WHERE a=12905;\nUPDATE t2 SET c='eighty-two thousand nine hundred thirty-seven' WHERE a=12906;\nUPDATE t2 SET c='fifty-six thousand one hundred eighty-three' WHERE a=12907;\nUPDATE t2 SET c='seventy-six thousand seven hundred eleven' WHERE a=12908;\nUPDATE t2 SET c='five thousand eight hundred twenty-eight' WHERE a=12909;\nUPDATE t2 SET c='two thousand two hundred seventy-six' WHERE a=12910;\nUPDATE t2 SET c='twenty-one thousand nine hundred forty-five' WHERE a=12911;\nUPDATE t2 SET c='ninety-one thousand five hundred fifty-nine' WHERE a=12912;\nUPDATE t2 SET c='eighty-one thousand five hundred sixty-nine' WHERE a=12913;\nUPDATE t2 SET c='thirty-four thousand fifteen' WHERE a=12914;\nUPDATE t2 SET c='fifty-eight thousand eight hundred fifty-two' WHERE a=12915;\nUPDATE t2 SET c='seventy-two thousand one hundred fifty-two' WHERE a=12916;\nUPDATE t2 SET c='fifty thousand seven hundred eighty-five' WHERE a=12917;\nUPDATE t2 SET c='sixty-seven thousand seven hundred ninety-four' WHERE a=12918;\nUPDATE t2 SET c='seventy thousand one hundred thirty-six' WHERE a=12919;\nUPDATE t2 SET c='twenty thousand eight hundred two' WHERE a=12920;\nUPDATE t2 SET c='ninety-five thousand one hundred twenty-five' WHERE a=12921;\nUPDATE t2 SET c='thirty-five thousand seven hundred eighteen' WHERE a=12922;\nUPDATE t2 SET c='fifty-six thousand one hundred seventy-nine' WHERE a=12923;\nUPDATE t2 SET c='sixty-one thousand nine hundred thirty-three' WHERE a=12924;\nUPDATE t2 SET c='eighty-four thousand seven hundred forty-one' WHERE a=12925;\nUPDATE t2 SET c='twenty-three thousand nine hundred ninety-three' WHERE a=12926;\nUPDATE t2 SET c='fourteen thousand forty-two' WHERE a=12927;\nUPDATE t2 SET c='seventy-two thousand nine hundred thirty-one' WHERE a=12928;\nUPDATE t2 SET c='fifty-four thousand three hundred seventy-five' WHERE a=12929;\nUPDATE t2 SET c='fifty-six thousand one' WHERE a=12930;\nUPDATE t2 SET c='eighty-nine thousand one hundred seventy-two' WHERE a=12931;\nUPDATE t2 SET c='thirteen thousand seventy-five' WHERE a=12932;\nUPDATE t2 SET c='fifty-four thousand seven hundred six' WHERE a=12933;\nUPDATE t2 SET c='eighty-eight thousand six hundred sixty-three' WHERE a=12934;\nUPDATE t2 SET c='seventy thousand six hundred eight' WHERE a=12935;\nUPDATE t2 SET c='thirty-five thousand six hundred forty-five' WHERE a=12936;\nUPDATE t2 SET c='ninety thousand nine hundred two' WHERE a=12937;\nUPDATE t2 SET c='fourteen thousand six hundred sixty' WHERE a=12938;\nUPDATE t2 SET c='eighty-five thousand three hundred twenty-two' WHERE a=12939;\nUPDATE t2 SET c='ten thousand forty-eight' WHERE a=12940;\nUPDATE t2 SET c='forty-five thousand eight hundred thirteen' WHERE a=12941;\nUPDATE t2 SET c='eighty-nine thousand six hundred eighty-one' WHERE a=12942;\nUPDATE t2 SET c='fifty-four thousand seven hundred thirty-seven' WHERE a=12943;\nUPDATE t2 SET c='sixty-nine thousand nine hundred fifty-seven' WHERE a=12944;\nUPDATE t2 SET c='fifty-seven thousand nine hundred seventy-six' WHERE a=12945;\nUPDATE t2 SET c='forty-nine thousand seven hundred thirty-eight' WHERE a=12946;\nUPDATE t2 SET c='eighty-six thousand five hundred thirty-three' WHERE a=12947;\nUPDATE t2 SET c='seventy-eight thousand four hundred twenty-eight' WHERE a=12948;\nUPDATE t2 SET c='twenty-two thousand six hundred fifty-one' WHERE a=12949;\nUPDATE t2 SET c='seventy-one thousand three hundred thirty-six' WHERE a=12950;\nUPDATE t2 SET c='sixty-one thousand five hundred eleven' WHERE a=12951;\nUPDATE t2 SET c='forty-eight thousand two hundred ninety-eight' WHERE a=12952;\nUPDATE t2 SET c='sixty-nine thousand eight hundred ninety-nine' WHERE a=12953;\nUPDATE t2 SET c='thirty-nine thousand six hundred twenty-three' WHERE a=12954;\nUPDATE t2 SET c='seventy-four thousand five hundred seventy-nine' WHERE a=12955;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ninety-five' WHERE a=12956;\nUPDATE t2 SET c='thirty-five thousand four hundred twelve' WHERE a=12957;\nUPDATE t2 SET c='eighty-seven thousand eight hundred fifty-two' WHERE a=12958;\nUPDATE t2 SET c='ninety-seven thousand seven hundred seventy-seven' WHERE a=12959;\nUPDATE t2 SET c='seventy-eight thousand three hundred fifty-one' WHERE a=12960;\nUPDATE t2 SET c='thirty-two thousand five hundred sixty-seven' WHERE a=12961;\nUPDATE t2 SET c='thirty thousand five hundred thirty-seven' WHERE a=12962;\nUPDATE t2 SET c='eighty-one thousand three hundred twenty-eight' WHERE a=12963;\nUPDATE t2 SET c='thirteen thousand eight hundred nineteen' WHERE a=12964;\nUPDATE t2 SET c='four thousand one hundred ninety-five' WHERE a=12965;\nUPDATE t2 SET c='twelve thousand two hundred nineteen' WHERE a=12966;\nUPDATE t2 SET c='seventy-one thousand nine hundred sixty-nine' WHERE a=12967;\nUPDATE t2 SET c='forty-six thousand three hundred nineteen' WHERE a=12968;\nUPDATE t2 SET c='thirty-two thousand seven hundred fifty-two' WHERE a=12969;\nUPDATE t2 SET c='sixty-two thousand five hundred ninety-five' WHERE a=12970;\nUPDATE t2 SET c='ninety-one thousand sixty-seven' WHERE a=12971;\nUPDATE t2 SET c='eighty-five thousand fifty-eight' WHERE a=12972;\nUPDATE t2 SET c='ninety-nine thousand six hundred sixty-one' WHERE a=12973;\nUPDATE t2 SET c='seventy-one thousand three hundred eighty-one' WHERE a=12974;\nUPDATE t2 SET c='ninety-nine thousand seven hundred thirty-seven' WHERE a=12975;\nUPDATE t2 SET c='sixty-five thousand three hundred fifty-nine' WHERE a=12976;\nUPDATE t2 SET c='twenty-two thousand one hundred twenty-three' WHERE a=12977;\nUPDATE t2 SET c='fifty-four thousand eight hundred sixty-five' WHERE a=12978;\nUPDATE t2 SET c='sixty thousand eight hundred forty-four' WHERE a=12979;\nUPDATE t2 SET c='seventy-nine thousand four hundred fourteen' WHERE a=12980;\nUPDATE t2 SET c='fifty thousand one hundred fifty-two' WHERE a=12981;\nUPDATE t2 SET c='forty-two thousand two hundred eighty-two' WHERE a=12982;\nUPDATE t2 SET c='thirty-one thousand one hundred eighty-six' WHERE a=12983;\nUPDATE t2 SET c='seventy-five thousand two hundred eighty-three' WHERE a=12984;\nUPDATE t2 SET c='one thousand two hundred seventy-nine' WHERE a=12985;\nUPDATE t2 SET c='fifty-one thousand five hundred twenty-four' WHERE a=12986;\nUPDATE t2 SET c='twenty-four thousand five hundred fifty-three' WHERE a=12987;\nUPDATE t2 SET c='sixty-nine thousand two hundred fifty-eight' WHERE a=12988;\nUPDATE t2 SET c='eighty-two thousand seven hundred forty-six' WHERE a=12989;\nUPDATE t2 SET c='five thousand eight hundred nineteen' WHERE a=12990;\nUPDATE t2 SET c='thirty-eight thousand two hundred fifty-six' WHERE a=12991;\nUPDATE t2 SET c='thirty-six thousand two hundred sixty-six' WHERE a=12992;\nUPDATE t2 SET c='sixty-nine thousand five hundred eighty-three' WHERE a=12993;\nUPDATE t2 SET c='thirty-one thousand two hundred ninety-one' WHERE a=12994;\nUPDATE t2 SET c='fifty thousand one hundred twenty' WHERE a=12995;\nUPDATE t2 SET c='twelve thousand fifty-six' WHERE a=12996;\nUPDATE t2 SET c='ninety thousand four hundred ninety' WHERE a=12997;\nUPDATE t2 SET c='ninety-nine thousand three hundred eighteen' WHERE a=12998;\nUPDATE t2 SET c='eighty-seven thousand thirty-five' WHERE a=12999;\nUPDATE t2 SET c='seventy-three thousand five hundred seventy-eight' WHERE a=13000;\nUPDATE t2 SET c='one thousand two hundred sixty-one' WHERE a=13001;\nUPDATE t2 SET c='forty-seven thousand eighty-three' WHERE a=13002;\nUPDATE t2 SET c='seventy thousand seven hundred thirty-six' WHERE a=13003;\nUPDATE t2 SET c='thirty-six thousand eight hundred seventy-two' WHERE a=13004;\nUPDATE t2 SET c='seventy-four thousand one hundred four' WHERE a=13005;\nUPDATE t2 SET c='seventy-six thousand four hundred ninety-six' WHERE a=13006;\nUPDATE t2 SET c='one thousand two hundred fifty-five' WHERE a=13007;\nUPDATE t2 SET c='four thousand seven hundred thirty' WHERE a=13008;\nUPDATE t2 SET c='sixty-seven thousand two hundred sixty-nine' WHERE a=13009;\nUPDATE t2 SET c='forty-four thousand one hundred' WHERE a=13010;\nUPDATE t2 SET c='fifty-two thousand five hundred forty-six' WHERE a=13011;\nUPDATE t2 SET c='forty-five thousand four hundred sixty-six' WHERE a=13012;\nUPDATE t2 SET c='ninety-three thousand three hundred thirty-five' WHERE a=13013;\nUPDATE t2 SET c='thirty-one thousand two hundred fourteen' WHERE a=13014;\nUPDATE t2 SET c='forty-six thousand eight hundred twenty-five' WHERE a=13015;\nUPDATE t2 SET c='forty thousand five hundred fifty-nine' WHERE a=13016;\nUPDATE t2 SET c='sixteen thousand nine hundred three' WHERE a=13017;\nUPDATE t2 SET c='twenty thousand five hundred ten' WHERE a=13018;\nUPDATE t2 SET c='ninety-five thousand two hundred ninety-four' WHERE a=13019;\nUPDATE t2 SET c='sixty-three thousand four hundred fifty-eight' WHERE a=13020;\nUPDATE t2 SET c='twenty-one thousand eight hundred forty-one' WHERE a=13021;\nUPDATE t2 SET c='forty-five thousand sixty-nine' WHERE a=13022;\nUPDATE t2 SET c='sixty-one thousand seven hundred eighty-two' WHERE a=13023;\nUPDATE t2 SET c='twenty-nine thousand nine hundred forty-six' WHERE a=13024;\nUPDATE t2 SET c='twenty-three thousand three hundred ninety-five' WHERE a=13025;\nUPDATE t2 SET c='eighteen thousand four hundred thirty' WHERE a=13026;\nUPDATE t2 SET c='sixty-eight thousand nine hundred ten' WHERE a=13027;\nUPDATE t2 SET c='twenty-three thousand sixty-seven' WHERE a=13028;\nUPDATE t2 SET c='forty thousand two hundred seventy-seven' WHERE a=13029;\nUPDATE t2 SET c='thirty-two thousand five hundred thirty-four' WHERE a=13030;\nUPDATE t2 SET c='eleven thousand eight hundred six' WHERE a=13031;\nUPDATE t2 SET c='seven thousand one hundred ninety-two' WHERE a=13032;\nUPDATE t2 SET c='ninety-eight thousand three hundred forty-seven' WHERE a=13033;\nUPDATE t2 SET c='ninety-two thousand seven hundred twenty-six' WHERE a=13034;\nUPDATE t2 SET c='eighty-nine thousand seven hundred forty-four' WHERE a=13035;\nUPDATE t2 SET c='forty-nine thousand three hundred twenty-nine' WHERE a=13036;\nUPDATE t2 SET c='ninety-four thousand eight hundred seventy-five' WHERE a=13037;\nUPDATE t2 SET c='seventy-three thousand eight hundred ninety-three' WHERE a=13038;\nUPDATE t2 SET c='seventy thousand five hundred nine' WHERE a=13039;\nUPDATE t2 SET c='ninety-two thousand seven hundred twenty-eight' WHERE a=13040;\nUPDATE t2 SET c='forty-six thousand five hundred fifty' WHERE a=13041;\nUPDATE t2 SET c='seventy-eight thousand thirty' WHERE a=13042;\nUPDATE t2 SET c='eight thousand ninety-eight' WHERE a=13043;\nUPDATE t2 SET c='eighty-eight thousand seven hundred twenty' WHERE a=13044;\nUPDATE t2 SET c='four thousand six hundred fourteen' WHERE a=13045;\nUPDATE t2 SET c='twenty-six thousand four hundred seventeen' WHERE a=13046;\nUPDATE t2 SET c='twenty-seven thousand twenty-eight' WHERE a=13047;\nUPDATE t2 SET c='sixty-four thousand six hundred thirty-five' WHERE a=13048;\nUPDATE t2 SET c='twenty thousand nine hundred fifty-three' WHERE a=13049;\nUPDATE t2 SET c='thirty-seven thousand three hundred forty-three' WHERE a=13050;\nUPDATE t2 SET c='ninety-one thousand eight hundred sixty-six' WHERE a=13051;\nUPDATE t2 SET c='sixty-six thousand six hundred sixty-nine' WHERE a=13052;\nUPDATE t2 SET c='six thousand three hundred seven' WHERE a=13053;\nUPDATE t2 SET c='forty-six thousand six hundred sixty-nine' WHERE a=13054;\nUPDATE t2 SET c='thirty-eight thousand five hundred twenty-eight' WHERE a=13055;\nUPDATE t2 SET c='fifty-one thousand four hundred ninety-nine' WHERE a=13056;\nUPDATE t2 SET c='fifty-one thousand six hundred five' WHERE a=13057;\nUPDATE t2 SET c='seven thousand nine hundred forty-one' WHERE a=13058;\nUPDATE t2 SET c='thirty-two thousand six hundred seventy' WHERE a=13059;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-six' WHERE a=13060;\nUPDATE t2 SET c='seventy-three thousand one' WHERE a=13061;\nUPDATE t2 SET c='sixty-two thousand four hundred thirty-four' WHERE a=13062;\nUPDATE t2 SET c='forty-one thousand two hundred thirty-eight' WHERE a=13063;\nUPDATE t2 SET c='ninety-two thousand three hundred seventy-four' WHERE a=13064;\nUPDATE t2 SET c='fifty-three thousand nine hundred forty-four' WHERE a=13065;\nUPDATE t2 SET c='thirty-two thousand eight hundred eighty-five' WHERE a=13066;\nUPDATE t2 SET c='eighty-four thousand one hundred fifty-seven' WHERE a=13067;\nUPDATE t2 SET c='thirty-six thousand nine hundred thirty-one' WHERE a=13068;\nUPDATE t2 SET c='fifty-seven thousand three hundred eight' WHERE a=13069;\nUPDATE t2 SET c='forty-six thousand one hundred nine' WHERE a=13070;\nUPDATE t2 SET c='forty-six thousand one hundred sixty-six' WHERE a=13071;\nUPDATE t2 SET c='three thousand eight hundred ninety-seven' WHERE a=13072;\nUPDATE t2 SET c='sixty-eight thousand three hundred fifty' WHERE a=13073;\nUPDATE t2 SET c='twenty-two thousand seven hundred thirty-two' WHERE a=13074;\nUPDATE t2 SET c='forty-nine thousand nine hundred ninety-three' WHERE a=13075;\nUPDATE t2 SET c='seventy-one thousand five hundred twelve' WHERE a=13076;\nUPDATE t2 SET c='sixty-one thousand one hundred thirty-one' WHERE a=13077;\nUPDATE t2 SET c='twenty-five thousand five hundred twenty-six' WHERE a=13078;\nUPDATE t2 SET c='eight thousand fifty-three' WHERE a=13079;\nUPDATE t2 SET c='seventy-three thousand seven hundred forty-two' WHERE a=13080;\nUPDATE t2 SET c='nine thousand one hundred forty-three' WHERE a=13081;\nUPDATE t2 SET c='thirty-three thousand five hundred eighty-one' WHERE a=13082;\nUPDATE t2 SET c='thirty-five thousand sixty-three' WHERE a=13083;\nUPDATE t2 SET c='thirty-five thousand nine hundred' WHERE a=13084;\nUPDATE t2 SET c='fifty-three thousand four hundred ninety' WHERE a=13085;\nUPDATE t2 SET c='fifty-six thousand six hundred eleven' WHERE a=13086;\nUPDATE t2 SET c='forty-three thousand eight hundred fifty-seven' WHERE a=13087;\nUPDATE t2 SET c='nineteen thousand one hundred eighty-one' WHERE a=13088;\nUPDATE t2 SET c='forty-nine thousand two hundred twelve' WHERE a=13089;\nUPDATE t2 SET c='four thousand two hundred seventy-five' WHERE a=13090;\nUPDATE t2 SET c='one thousand eighty' WHERE a=13091;\nUPDATE t2 SET c='forty-one thousand two hundred sixty-four' WHERE a=13092;\nUPDATE t2 SET c='thirty-two thousand three hundred thirty-nine' WHERE a=13093;\nUPDATE t2 SET c='ninety thousand ninety-seven' WHERE a=13094;\nUPDATE t2 SET c='ninety-one thousand two hundred forty-five' WHERE a=13095;\nUPDATE t2 SET c='ninety-six thousand six hundred fifteen' WHERE a=13096;\nUPDATE t2 SET c='fifty-eight thousand ninety-four' WHERE a=13097;\nUPDATE t2 SET c='seven thousand three hundred seventy-two' WHERE a=13098;\nUPDATE t2 SET c='fifty-seven thousand eighty-eight' WHERE a=13099;\nUPDATE t2 SET c='twelve thousand three hundred forty-four' WHERE a=13100;\nUPDATE t2 SET c='fifty-seven thousand six hundred fifty-five' WHERE a=13101;\nUPDATE t2 SET c='four thousand one hundred eighty-seven' WHERE a=13102;\nUPDATE t2 SET c='thirty-six thousand seven hundred thirty-one' WHERE a=13103;\nUPDATE t2 SET c='nineteen thousand three hundred fifty-eight' WHERE a=13104;\nUPDATE t2 SET c='fifty-nine thousand three hundred fourteen' WHERE a=13105;\nUPDATE t2 SET c='eighty-four thousand two hundred thirty-five' WHERE a=13106;\nUPDATE t2 SET c='forty-two thousand two hundred eighteen' WHERE a=13107;\nUPDATE t2 SET c='sixty-two thousand five hundred forty-seven' WHERE a=13108;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-four' WHERE a=13109;\nUPDATE t2 SET c='forty-eight thousand six hundred twenty-nine' WHERE a=13110;\nUPDATE t2 SET c='sixty thousand four hundred twenty-seven' WHERE a=13111;\nUPDATE t2 SET c='twenty-two thousand four hundred four' WHERE a=13112;\nUPDATE t2 SET c='fifty-four thousand five' WHERE a=13113;\nUPDATE t2 SET c='ninety-five thousand six hundred seven' WHERE a=13114;\nUPDATE t2 SET c='fourteen thousand one hundred eleven' WHERE a=13115;\nUPDATE t2 SET c='thirty-seven thousand ninety' WHERE a=13116;\nUPDATE t2 SET c='eighty-eight thousand ninety-four' WHERE a=13117;\nUPDATE t2 SET c='forty-five thousand three hundred ninety-nine' WHERE a=13118;\nUPDATE t2 SET c='thirty-three thousand two hundred eighty-seven' WHERE a=13119;\nUPDATE t2 SET c='twenty-nine thousand six hundred forty-five' WHERE a=13120;\nUPDATE t2 SET c='ninety-one thousand nine hundred sixty-one' WHERE a=13121;\nUPDATE t2 SET c='eighty-five thousand three hundred seventy-one' WHERE a=13122;\nUPDATE t2 SET c='eighty-five thousand nine hundred ninety-nine' WHERE a=13123;\nUPDATE t2 SET c='nineteen thousand seven hundred ninety-two' WHERE a=13124;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirty-one' WHERE a=13125;\nUPDATE t2 SET c='thirteen thousand one hundred fifty-nine' WHERE a=13126;\nUPDATE t2 SET c='forty-two thousand four hundred fourteen' WHERE a=13127;\nUPDATE t2 SET c='fifty-nine thousand two hundred eighty-eight' WHERE a=13128;\nUPDATE t2 SET c='ninety-six thousand seven hundred sixty-four' WHERE a=13129;\nUPDATE t2 SET c='thirty-seven thousand six hundred eighty-three' WHERE a=13130;\nUPDATE t2 SET c='seventy-three thousand three hundred eighty-one' WHERE a=13131;\nUPDATE t2 SET c='seventeen thousand seven hundred two' WHERE a=13132;\nUPDATE t2 SET c='forty-eight thousand six hundred fifty-three' WHERE a=13133;\nUPDATE t2 SET c='seventy-five thousand nine hundred ninety-three' WHERE a=13134;\nUPDATE t2 SET c='ninety-three thousand three hundred sixty-nine' WHERE a=13135;\nUPDATE t2 SET c='fifty-five thousand four hundred thirty-eight' WHERE a=13136;\nUPDATE t2 SET c='seventy-three thousand one hundred sixty-two' WHERE a=13137;\nUPDATE t2 SET c='sixty-five thousand one hundred sixty-five' WHERE a=13138;\nUPDATE t2 SET c='ninety-five thousand five hundred twenty-three' WHERE a=13139;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-two' WHERE a=13140;\nUPDATE t2 SET c='seventeen thousand three hundred six' WHERE a=13141;\nUPDATE t2 SET c='six thousand seven hundred eighty-six' WHERE a=13142;\nUPDATE t2 SET c='thirty thousand three hundred seventy-two' WHERE a=13143;\nUPDATE t2 SET c='fifty-six thousand five hundred ninety-one' WHERE a=13144;\nUPDATE t2 SET c='thirty-three thousand seven hundred seventy-seven' WHERE a=13145;\nUPDATE t2 SET c='twenty-two thousand nine hundred forty-six' WHERE a=13146;\nUPDATE t2 SET c='fifty-three thousand seven hundred sixty-nine' WHERE a=13147;\nUPDATE t2 SET c='sixteen thousand one hundred eleven' WHERE a=13148;\nUPDATE t2 SET c='eighteen thousand fifty-two' WHERE a=13149;\nUPDATE t2 SET c='eighty-three thousand one hundred forty-two' WHERE a=13150;\nUPDATE t2 SET c='twenty-four thousand eight hundred seven' WHERE a=13151;\nUPDATE t2 SET c='forty-nine thousand sixty-two' WHERE a=13152;\nUPDATE t2 SET c='thirty-three thousand eight hundred seventy-one' WHERE a=13153;\nUPDATE t2 SET c='thirty-eight thousand one hundred nineteen' WHERE a=13154;\nUPDATE t2 SET c='forty-five thousand four hundred sixty-three' WHERE a=13155;\nUPDATE t2 SET c='twelve thousand seven hundred thirty' WHERE a=13156;\nUPDATE t2 SET c='ninety-nine thousand four hundred fourteen' WHERE a=13157;\nUPDATE t2 SET c='eighty-five thousand nine hundred ninety-five' WHERE a=13158;\nUPDATE t2 SET c='twenty-nine thousand nine hundred eighty-nine' WHERE a=13159;\nUPDATE t2 SET c='fifteen thousand six hundred thirteen' WHERE a=13160;\nUPDATE t2 SET c='thirty-two thousand five hundred seventy-five' WHERE a=13161;\nUPDATE t2 SET c='eleven thousand one hundred fifty-one' WHERE a=13162;\nUPDATE t2 SET c='eighty-five thousand nine hundred twelve' WHERE a=13163;\nUPDATE t2 SET c='twenty thousand four hundred thirty-three' WHERE a=13164;\nUPDATE t2 SET c='sixty-four thousand six hundred sixteen' WHERE a=13165;\nUPDATE t2 SET c='eighty-nine thousand eighty-one' WHERE a=13166;\nUPDATE t2 SET c='twenty-six thousand four hundred seventy-nine' WHERE a=13167;\nUPDATE t2 SET c='thirty thousand ninety-three' WHERE a=13168;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ninety-three' WHERE a=13169;\nUPDATE t2 SET c='fifty-four thousand sixteen' WHERE a=13170;\nUPDATE t2 SET c='seventy-three thousand two hundred fifty-seven' WHERE a=13171;\nUPDATE t2 SET c='seven thousand four hundred eight' WHERE a=13172;\nUPDATE t2 SET c='thirty-four thousand one hundred five' WHERE a=13173;\nUPDATE t2 SET c='seventy-nine thousand two hundred seventy-nine' WHERE a=13174;\nUPDATE t2 SET c='sixty-seven thousand six hundred seventy-nine' WHERE a=13175;\nUPDATE t2 SET c='thirty-nine thousand eight hundred forty-one' WHERE a=13176;\nUPDATE t2 SET c='twenty-eight thousand four hundred fifty-eight' WHERE a=13177;\nUPDATE t2 SET c='twenty-five thousand six hundred ninety-six' WHERE a=13178;\nUPDATE t2 SET c='ninety-nine thousand six hundred forty-eight' WHERE a=13179;\nUPDATE t2 SET c='forty-five thousand eight hundred sixty-three' WHERE a=13180;\nUPDATE t2 SET c='seventy-three thousand seven hundred twelve' WHERE a=13181;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy-seven' WHERE a=13182;\nUPDATE t2 SET c='one thousand three hundred eighty' WHERE a=13183;\nUPDATE t2 SET c='ninety-one thousand eight hundred thirty-one' WHERE a=13184;\nUPDATE t2 SET c='forty-eight thousand two hundred thirty-four' WHERE a=13185;\nUPDATE t2 SET c='ninety-two thousand nine hundred ninety-three' WHERE a=13186;\nUPDATE t2 SET c='seventy-five thousand three hundred fifty-nine' WHERE a=13187;\nUPDATE t2 SET c='fifty thousand twelve' WHERE a=13188;\nUPDATE t2 SET c='eleven thousand one hundred seventeen' WHERE a=13189;\nUPDATE t2 SET c='eighty thousand two hundred ninety-six' WHERE a=13190;\nUPDATE t2 SET c='eleven thousand five hundred ninety-three' WHERE a=13191;\nUPDATE t2 SET c='ninety-six thousand fifty-five' WHERE a=13192;\nUPDATE t2 SET c='fifteen thousand one hundred thirty-five' WHERE a=13193;\nUPDATE t2 SET c='sixty-six thousand three hundred seventy-two' WHERE a=13194;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighteen' WHERE a=13195;\nUPDATE t2 SET c='twenty-one thousand nine hundred thirty-one' WHERE a=13196;\nUPDATE t2 SET c='one thousand three hundred thirty-two' WHERE a=13197;\nUPDATE t2 SET c='ten thousand five hundred sixty-two' WHERE a=13198;\nUPDATE t2 SET c='fifty thousand two hundred eighty-two' WHERE a=13199;\nUPDATE t2 SET c='fifty-four thousand nine hundred thirteen' WHERE a=13200;\nUPDATE t2 SET c='seventy-one thousand two hundred fifty-five' WHERE a=13201;\nUPDATE t2 SET c='sixty-three thousand nine hundred eighty' WHERE a=13202;\nUPDATE t2 SET c='fifty-eight thousand one hundred fifty-four' WHERE a=13203;\nUPDATE t2 SET c='ninety-nine thousand three hundred twenty-five' WHERE a=13204;\nUPDATE t2 SET c='seventy-four thousand nine hundred eleven' WHERE a=13205;\nUPDATE t2 SET c='seventeen thousand eight hundred five' WHERE a=13206;\nUPDATE t2 SET c='twenty-four thousand two hundred ninety-one' WHERE a=13207;\nUPDATE t2 SET c='eighteen thousand one hundred twenty-one' WHERE a=13208;\nUPDATE t2 SET c='eighty-eight thousand eight hundred nine' WHERE a=13209;\nUPDATE t2 SET c='seventy-seven thousand two hundred seventeen' WHERE a=13210;\nUPDATE t2 SET c='ninety thousand one hundred thirty-four' WHERE a=13211;\nUPDATE t2 SET c='fifty-seven thousand seven hundred eighty' WHERE a=13212;\nUPDATE t2 SET c='sixteen thousand three hundred fifty-six' WHERE a=13213;\nUPDATE t2 SET c='fifty-two thousand eight hundred seventy' WHERE a=13214;\nUPDATE t2 SET c='two thousand three hundred forty-seven' WHERE a=13215;\nUPDATE t2 SET c='eighteen thousand three hundred ninety-two' WHERE a=13216;\nUPDATE t2 SET c='nine thousand one hundred forty-one' WHERE a=13217;\nUPDATE t2 SET c='seventy-five thousand six hundred seventy-eight' WHERE a=13218;\nUPDATE t2 SET c='forty-three thousand seven hundred sixty' WHERE a=13219;\nUPDATE t2 SET c='twenty-eight thousand six hundred eighty' WHERE a=13220;\nUPDATE t2 SET c='forty thousand nine hundred twelve' WHERE a=13221;\nUPDATE t2 SET c='seventy-six thousand four hundred twelve' WHERE a=13222;\nUPDATE t2 SET c='ten thousand four hundred eighty-six' WHERE a=13223;\nUPDATE t2 SET c='six thousand one hundred fifty-two' WHERE a=13224;\nUPDATE t2 SET c='seventy-six thousand nine hundred eighty-two' WHERE a=13225;\nUPDATE t2 SET c='seven hundred fifty-three' WHERE a=13226;\nUPDATE t2 SET c='three hundred eighty-five' WHERE a=13227;\nUPDATE t2 SET c='forty-one thousand nine hundred fifty-five' WHERE a=13228;\nUPDATE t2 SET c='six thousand two hundred sixty-two' WHERE a=13229;\nUPDATE t2 SET c='sixty-three thousand seven hundred fifty' WHERE a=13230;\nUPDATE t2 SET c='sixteen thousand eighty-four' WHERE a=13231;\nUPDATE t2 SET c='sixty-one thousand one hundred sixty-eight' WHERE a=13232;\nUPDATE t2 SET c='fifty-six thousand five hundred eighteen' WHERE a=13233;\nUPDATE t2 SET c='four thousand five hundred seventy-seven' WHERE a=13234;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-eight' WHERE a=13235;\nUPDATE t2 SET c='fifty-eight thousand one hundred eighty-two' WHERE a=13236;\nUPDATE t2 SET c='thirty-two thousand nine hundred ninety-two' WHERE a=13237;\nUPDATE t2 SET c='ninety-two thousand four hundred thirty-five' WHERE a=13238;\nUPDATE t2 SET c='seventy-seven thousand eight hundred eighty-six' WHERE a=13239;\nUPDATE t2 SET c='thirty-nine thousand two hundred sixteen' WHERE a=13240;\nUPDATE t2 SET c='seven thousand nine hundred eighty-eight' WHERE a=13241;\nUPDATE t2 SET c='ninety thousand three hundred sixty-eight' WHERE a=13242;\nUPDATE t2 SET c='twenty-four thousand six hundred twenty-four' WHERE a=13243;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ninety-eight' WHERE a=13244;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty-six' WHERE a=13245;\nUPDATE t2 SET c='seventy-four thousand six hundred thirty-seven' WHERE a=13246;\nUPDATE t2 SET c='twenty-eight thousand six hundred seven' WHERE a=13247;\nUPDATE t2 SET c='ninety-five thousand two hundred ninety-two' WHERE a=13248;\nUPDATE t2 SET c='seventy-five thousand six hundred fifty-three' WHERE a=13249;\nUPDATE t2 SET c='twenty-seven thousand nine hundred twenty' WHERE a=13250;\nUPDATE t2 SET c='sixty-five thousand one' WHERE a=13251;\nUPDATE t2 SET c='ninety-one thousand seven hundred forty-nine' WHERE a=13252;\nUPDATE t2 SET c='sixty-two thousand five hundred thirty-one' WHERE a=13253;\nUPDATE t2 SET c='thirty-one thousand eighteen' WHERE a=13254;\nUPDATE t2 SET c='sixty-one thousand thirty-eight' WHERE a=13255;\nUPDATE t2 SET c='fifty-nine thousand six hundred ninety-seven' WHERE a=13256;\nUPDATE t2 SET c='three hundred two' WHERE a=13257;\nUPDATE t2 SET c='sixty-four thousand four hundred forty-three' WHERE a=13258;\nUPDATE t2 SET c='seventy-nine thousand eight hundred one' WHERE a=13259;\nUPDATE t2 SET c='sixty-two thousand seven hundred twenty-six' WHERE a=13260;\nUPDATE t2 SET c='two thousand seven' WHERE a=13261;\nUPDATE t2 SET c='twenty-eight thousand ninety-eight' WHERE a=13262;\nUPDATE t2 SET c='sixteen thousand fourteen' WHERE a=13263;\nUPDATE t2 SET c='forty-eight thousand eight hundred fifty-five' WHERE a=13264;\nUPDATE t2 SET c='seventy thousand five hundred fourteen' WHERE a=13265;\nUPDATE t2 SET c='seventy-seven thousand fifty-eight' WHERE a=13266;\nUPDATE t2 SET c='forty-nine thousand four hundred fifteen' WHERE a=13267;\nUPDATE t2 SET c='seventy-nine thousand five hundred seventy-two' WHERE a=13268;\nUPDATE t2 SET c='ninety-five thousand eight hundred seventy-two' WHERE a=13269;\nUPDATE t2 SET c='eighty-eight thousand six hundred sixty' WHERE a=13270;\nUPDATE t2 SET c='ninety-one thousand six hundred twelve' WHERE a=13271;\nUPDATE t2 SET c='fifty-nine thousand thirty-two' WHERE a=13272;\nUPDATE t2 SET c='thirty-one thousand two hundred four' WHERE a=13273;\nUPDATE t2 SET c='ninety-seven thousand six hundred sixty-seven' WHERE a=13274;\nUPDATE t2 SET c='forty-nine thousand seven hundred thirty' WHERE a=13275;\nUPDATE t2 SET c='forty-two thousand six hundred forty-one' WHERE a=13276;\nUPDATE t2 SET c='six thousand one hundred seventeen' WHERE a=13277;\nUPDATE t2 SET c='nineteen thousand six hundred sixty' WHERE a=13278;\nUPDATE t2 SET c='ninety-seven thousand forty-six' WHERE a=13279;\nUPDATE t2 SET c='eighty-nine thousand eight hundred fifty-six' WHERE a=13280;\nUPDATE t2 SET c='twenty-seven thousand five hundred eighty-eight' WHERE a=13281;\nUPDATE t2 SET c='three thousand eight hundred ninety-nine' WHERE a=13282;\nUPDATE t2 SET c='seventy thousand three hundred eighty-four' WHERE a=13283;\nUPDATE t2 SET c='seventeen thousand five hundred ninety-five' WHERE a=13284;\nUPDATE t2 SET c='eighty-two thousand two hundred eighty-three' WHERE a=13285;\nUPDATE t2 SET c='fifty-four thousand eight hundred sixty-two' WHERE a=13286;\nUPDATE t2 SET c='ninety-five thousand thirty-eight' WHERE a=13287;\nUPDATE t2 SET c='fifty thousand seven hundred twenty' WHERE a=13288;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-one' WHERE a=13289;\nUPDATE t2 SET c='fifty-five thousand one hundred fifty-seven' WHERE a=13290;\nUPDATE t2 SET c='twenty-two thousand seven hundred four' WHERE a=13291;\nUPDATE t2 SET c='one thousand two hundred thirty-five' WHERE a=13292;\nUPDATE t2 SET c='one thousand one hundred forty-five' WHERE a=13293;\nUPDATE t2 SET c='thirty-one thousand eight hundred eighty-eight' WHERE a=13294;\nUPDATE t2 SET c='seventy-one thousand nine hundred sixty-six' WHERE a=13295;\nUPDATE t2 SET c='eleven thousand eight hundred twenty-three' WHERE a=13296;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-six' WHERE a=13297;\nUPDATE t2 SET c='seventy-five thousand six hundred fifty-seven' WHERE a=13298;\nUPDATE t2 SET c='thirty-six thousand four hundred thirty-eight' WHERE a=13299;\nUPDATE t2 SET c='one thousand eight hundred six' WHERE a=13300;\nUPDATE t2 SET c='ninety-eight thousand fifty-four' WHERE a=13301;\nUPDATE t2 SET c='two thousand forty-one' WHERE a=13302;\nUPDATE t2 SET c='twenty-nine thousand two hundred seventy-six' WHERE a=13303;\nUPDATE t2 SET c='eighty thousand one hundred nineteen' WHERE a=13304;\nUPDATE t2 SET c='sixty-four thousand three hundred sixty-six' WHERE a=13305;\nUPDATE t2 SET c='seventy-one thousand one hundred ninety-five' WHERE a=13306;\nUPDATE t2 SET c='three thousand four hundred fifty-six' WHERE a=13307;\nUPDATE t2 SET c='thirty-five thousand four hundred fifty-seven' WHERE a=13308;\nUPDATE t2 SET c='twelve thousand sixty-two' WHERE a=13309;\nUPDATE t2 SET c='forty-one thousand eight hundred twenty-six' WHERE a=13310;\nUPDATE t2 SET c='ninety-seven thousand eight hundred eleven' WHERE a=13311;\nUPDATE t2 SET c='fourteen thousand seven hundred ninety-four' WHERE a=13312;\nUPDATE t2 SET c='ninety-five thousand eighty-seven' WHERE a=13313;\nUPDATE t2 SET c='fifty-five thousand fifty-five' WHERE a=13314;\nUPDATE t2 SET c='ninety-two thousand three hundred one' WHERE a=13315;\nUPDATE t2 SET c='ten thousand eight hundred sixty-five' WHERE a=13316;\nUPDATE t2 SET c='sixty thousand two hundred fifty-seven' WHERE a=13317;\nUPDATE t2 SET c='ninety-seven thousand five hundred forty-four' WHERE a=13318;\nUPDATE t2 SET c='eighty-six thousand four hundred twenty-five' WHERE a=13319;\nUPDATE t2 SET c='twenty-four thousand seventy-six' WHERE a=13320;\nUPDATE t2 SET c='forty-two thousand four hundred eighteen' WHERE a=13321;\nUPDATE t2 SET c='sixty-four thousand seven hundred seventy-nine' WHERE a=13322;\nUPDATE t2 SET c='forty-one thousand one hundred eighty-five' WHERE a=13323;\nUPDATE t2 SET c='thirty-three thousand seven hundred eighty' WHERE a=13324;\nUPDATE t2 SET c='twenty-four thousand four hundred seven' WHERE a=13325;\nUPDATE t2 SET c='forty-two thousand one hundred forty-two' WHERE a=13326;\nUPDATE t2 SET c='twenty-two thousand six hundred twenty-four' WHERE a=13327;\nUPDATE t2 SET c='seventy thousand six hundred nine' WHERE a=13328;\nUPDATE t2 SET c='twenty thousand five hundred twenty-two' WHERE a=13329;\nUPDATE t2 SET c='ninety-six thousand two hundred twenty-two' WHERE a=13330;\nUPDATE t2 SET c='sixty thousand ninety-six' WHERE a=13331;\nUPDATE t2 SET c='ninety-seven thousand two hundred seventy-eight' WHERE a=13332;\nUPDATE t2 SET c='twenty-seven thousand three hundred ninety-nine' WHERE a=13333;\nUPDATE t2 SET c='four thousand nine hundred ninety-nine' WHERE a=13334;\nUPDATE t2 SET c='sixty-nine thousand five hundred sixteen' WHERE a=13335;\nUPDATE t2 SET c='eight thousand five hundred thirty-eight' WHERE a=13336;\nUPDATE t2 SET c='fifty-three thousand one hundred thirty-three' WHERE a=13337;\nUPDATE t2 SET c='six thousand one hundred forty-five' WHERE a=13338;\nUPDATE t2 SET c='seventy-seven thousand eight hundred fifty-four' WHERE a=13339;\nUPDATE t2 SET c='forty-seven thousand five hundred twelve' WHERE a=13340;\nUPDATE t2 SET c='sixty-eight thousand one hundred twenty-three' WHERE a=13341;\nUPDATE t2 SET c='seventy-eight thousand five hundred eighty-six' WHERE a=13342;\nUPDATE t2 SET c='seventy-six thousand seven hundred thirty-four' WHERE a=13343;\nUPDATE t2 SET c='fifty thousand three hundred eighty-two' WHERE a=13344;\nUPDATE t2 SET c='fifteen thousand eight hundred thirty-eight' WHERE a=13345;\nUPDATE t2 SET c='ninety-five thousand nine hundred sixty-four' WHERE a=13346;\nUPDATE t2 SET c='fifty-four thousand two hundred eighty' WHERE a=13347;\nUPDATE t2 SET c='one thousand one hundred sixty-seven' WHERE a=13348;\nUPDATE t2 SET c='thirty-nine thousand eight hundred forty-three' WHERE a=13349;\nUPDATE t2 SET c='nineteen thousand eight hundred eighty-one' WHERE a=13350;\nUPDATE t2 SET c='twenty thousand eight hundred thirty-six' WHERE a=13351;\nUPDATE t2 SET c='thirty-seven thousand six hundred twenty-nine' WHERE a=13352;\nUPDATE t2 SET c='twenty-eight thousand seventy' WHERE a=13353;\nUPDATE t2 SET c='eighty-eight thousand five hundred sixty-nine' WHERE a=13354;\nUPDATE t2 SET c='sixteen thousand two hundred thirty-eight' WHERE a=13355;\nUPDATE t2 SET c='twenty-one thousand one hundred thirty-two' WHERE a=13356;\nUPDATE t2 SET c='thirty-five thousand four hundred forty-five' WHERE a=13357;\nUPDATE t2 SET c='seventy-nine thousand six hundred twenty' WHERE a=13358;\nUPDATE t2 SET c='eleven thousand seven hundred thirty-six' WHERE a=13359;\nUPDATE t2 SET c='twenty-seven thousand thirty-two' WHERE a=13360;\nUPDATE t2 SET c='two thousand nine hundred sixty-six' WHERE a=13361;\nUPDATE t2 SET c='twenty-eight thousand three hundred' WHERE a=13362;\nUPDATE t2 SET c='seventy thousand two hundred twenty-one' WHERE a=13363;\nUPDATE t2 SET c='fifty-six thousand five hundred forty-two' WHERE a=13364;\nUPDATE t2 SET c='forty-six thousand five' WHERE a=13365;\nUPDATE t2 SET c='eighty-four thousand seven hundred eighty-seven' WHERE a=13366;\nUPDATE t2 SET c='fifty-five thousand four hundred fifty' WHERE a=13367;\nUPDATE t2 SET c='forty-one thousand three hundred seventy-two' WHERE a=13368;\nUPDATE t2 SET c='one thousand two hundred ninety-two' WHERE a=13369;\nUPDATE t2 SET c='ninety-eight thousand eighty-three' WHERE a=13370;\nUPDATE t2 SET c='thirty-four thousand one' WHERE a=13371;\nUPDATE t2 SET c='three thousand four hundred fifty' WHERE a=13372;\nUPDATE t2 SET c='twenty-one thousand seven hundred one' WHERE a=13373;\nUPDATE t2 SET c='thirty-seven thousand six hundred thirty-two' WHERE a=13374;\nUPDATE t2 SET c='fifty-nine thousand eight hundred forty-two' WHERE a=13375;\nUPDATE t2 SET c='seventy-five thousand eight hundred sixty-nine' WHERE a=13376;\nUPDATE t2 SET c='seventy-one thousand five hundred eleven' WHERE a=13377;\nUPDATE t2 SET c='twenty-eight thousand four hundred thirty' WHERE a=13378;\nUPDATE t2 SET c='twenty-six thousand eight hundred thirty-one' WHERE a=13379;\nUPDATE t2 SET c='sixty-seven thousand seven hundred fifty-six' WHERE a=13380;\nUPDATE t2 SET c='eleven thousand two hundred thirty-one' WHERE a=13381;\nUPDATE t2 SET c='fifty-three thousand two hundred forty-six' WHERE a=13382;\nUPDATE t2 SET c='twenty-eight thousand nine hundred thirty-four' WHERE a=13383;\nUPDATE t2 SET c='eleven thousand two hundred forty-three' WHERE a=13384;\nUPDATE t2 SET c='twenty-one thousand two hundred eighty-five' WHERE a=13385;\nUPDATE t2 SET c='eighty-nine thousand seven hundred twenty-six' WHERE a=13386;\nUPDATE t2 SET c='fifteen thousand nine hundred fifteen' WHERE a=13387;\nUPDATE t2 SET c='two thousand six hundred eighty-two' WHERE a=13388;\nUPDATE t2 SET c='six thousand nine hundred forty-seven' WHERE a=13389;\nUPDATE t2 SET c='ninety-six thousand three hundred sixty' WHERE a=13390;\nUPDATE t2 SET c='ninety-three thousand six hundred eighty-five' WHERE a=13391;\nUPDATE t2 SET c='forty-five thousand six hundred seventy-two' WHERE a=13392;\nUPDATE t2 SET c='eighty-four thousand eight hundred seventy-three' WHERE a=13393;\nUPDATE t2 SET c='seventy-seven thousand three hundred sixty-four' WHERE a=13394;\nUPDATE t2 SET c='twenty thousand eight hundred eighty-one' WHERE a=13395;\nUPDATE t2 SET c='seventy thousand two hundred eighty-three' WHERE a=13396;\nUPDATE t2 SET c='ninety-one thousand seven hundred eighty-one' WHERE a=13397;\nUPDATE t2 SET c='thirty-one thousand eight hundred eighty-eight' WHERE a=13398;\nUPDATE t2 SET c='forty thousand three hundred fifty-eight' WHERE a=13399;\nUPDATE t2 SET c='ten thousand nine hundred thirty-three' WHERE a=13400;\nUPDATE t2 SET c='ninety-four thousand three hundred seventy-four' WHERE a=13401;\nUPDATE t2 SET c='twelve thousand five hundred ninety-nine' WHERE a=13402;\nUPDATE t2 SET c='nine hundred twenty-three' WHERE a=13403;\nUPDATE t2 SET c='forty-five thousand one hundred seventy-eight' WHERE a=13404;\nUPDATE t2 SET c='eighty-eight thousand two hundred sixty-four' WHERE a=13405;\nUPDATE t2 SET c='seven thousand one hundred twenty-seven' WHERE a=13406;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty-eight' WHERE a=13407;\nUPDATE t2 SET c='eighty-four thousand ninety-seven' WHERE a=13408;\nUPDATE t2 SET c='twenty-three thousand eight hundred fifteen' WHERE a=13409;\nUPDATE t2 SET c='ninety-nine thousand three hundred fifteen' WHERE a=13410;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty-three' WHERE a=13411;\nUPDATE t2 SET c='seventeen thousand seven hundred seventy-six' WHERE a=13412;\nUPDATE t2 SET c='forty-one thousand five hundred thirteen' WHERE a=13413;\nUPDATE t2 SET c='ninety-one thousand nine hundred seventy-one' WHERE a=13414;\nUPDATE t2 SET c='eighty-two thousand nine hundred fifty-six' WHERE a=13415;\nUPDATE t2 SET c='seventy-one thousand eight hundred sixty' WHERE a=13416;\nUPDATE t2 SET c='forty-six thousand five hundred twenty-one' WHERE a=13417;\nUPDATE t2 SET c='thirty-three thousand six hundred fourteen' WHERE a=13418;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fifty-nine' WHERE a=13419;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-five' WHERE a=13420;\nUPDATE t2 SET c='one thousand one hundred ninety' WHERE a=13421;\nUPDATE t2 SET c='seventy-four thousand nine hundred nineteen' WHERE a=13422;\nUPDATE t2 SET c='twenty-two thousand six hundred eight' WHERE a=13423;\nUPDATE t2 SET c='one thousand eight hundred twenty-four' WHERE a=13424;\nUPDATE t2 SET c='ninety-nine thousand one hundred fifty-nine' WHERE a=13425;\nUPDATE t2 SET c='seventy-one thousand eight hundred four' WHERE a=13426;\nUPDATE t2 SET c='eighty-two thousand seven hundred eleven' WHERE a=13427;\nUPDATE t2 SET c='forty-nine thousand nine hundred eighty-seven' WHERE a=13428;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-six' WHERE a=13429;\nUPDATE t2 SET c='four thousand one hundred sixty-eight' WHERE a=13430;\nUPDATE t2 SET c='eighty-three thousand three hundred eighty' WHERE a=13431;\nUPDATE t2 SET c='thirty-two thousand four hundred sixty-nine' WHERE a=13432;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ninety-nine' WHERE a=13433;\nUPDATE t2 SET c='ninety-seven thousand one hundred twenty-seven' WHERE a=13434;\nUPDATE t2 SET c='sixteen thousand thirty-four' WHERE a=13435;\nUPDATE t2 SET c='thirty-one thousand four hundred ninety-eight' WHERE a=13436;\nUPDATE t2 SET c='twelve thousand six hundred eighteen' WHERE a=13437;\nUPDATE t2 SET c='thirty-seven thousand one hundred seventy-four' WHERE a=13438;\nUPDATE t2 SET c='seventeen thousand five hundred two' WHERE a=13439;\nUPDATE t2 SET c='fifty-nine thousand three hundred seventy-six' WHERE a=13440;\nUPDATE t2 SET c='seventy-six thousand one hundred eighty-six' WHERE a=13441;\nUPDATE t2 SET c='three hundred forty-three' WHERE a=13442;\nUPDATE t2 SET c='sixty-one thousand eighty-eight' WHERE a=13443;\nUPDATE t2 SET c='seventy-eight thousand three hundred eighty-nine' WHERE a=13444;\nUPDATE t2 SET c='two thousand nine hundred eighty-six' WHERE a=13445;\nUPDATE t2 SET c='forty-seven thousand seven hundred sixty-six' WHERE a=13446;\nUPDATE t2 SET c='ninety-two thousand eight hundred twenty-three' WHERE a=13447;\nUPDATE t2 SET c='six thousand six hundred ninety-five' WHERE a=13448;\nUPDATE t2 SET c='twenty-five thousand six hundred sixty-seven' WHERE a=13449;\nUPDATE t2 SET c='twenty-one thousand eight hundred fifteen' WHERE a=13450;\nUPDATE t2 SET c='seventy-eight thousand four hundred forty-seven' WHERE a=13451;\nUPDATE t2 SET c='sixty-nine thousand six hundred thirty-four' WHERE a=13452;\nUPDATE t2 SET c='thirty thousand one hundred thirty-seven' WHERE a=13453;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-four' WHERE a=13454;\nUPDATE t2 SET c='ninety-seven thousand five hundred fifty' WHERE a=13455;\nUPDATE t2 SET c='fifty-two thousand five hundred seventy' WHERE a=13456;\nUPDATE t2 SET c='twenty-eight thousand one hundred eight' WHERE a=13457;\nUPDATE t2 SET c='sixty-four thousand three hundred sixty-seven' WHERE a=13458;\nUPDATE t2 SET c='thirty-one thousand four' WHERE a=13459;\nUPDATE t2 SET c='nine thousand one hundred ninety-one' WHERE a=13460;\nUPDATE t2 SET c='twelve thousand seven hundred seventy-nine' WHERE a=13461;\nUPDATE t2 SET c='fifty-one thousand three hundred sixty-two' WHERE a=13462;\nUPDATE t2 SET c='five thousand seven hundred eighty-six' WHERE a=13463;\nUPDATE t2 SET c='seventy-seven thousand four hundred ninety-one' WHERE a=13464;\nUPDATE t2 SET c='fifteen thousand two hundred eighty-four' WHERE a=13465;\nUPDATE t2 SET c='seventy-four thousand seven hundred twenty-three' WHERE a=13466;\nUPDATE t2 SET c='seventy-two thousand one hundred ninety-seven' WHERE a=13467;\nUPDATE t2 SET c='seventy-six thousand two hundred ninety-seven' WHERE a=13468;\nUPDATE t2 SET c='twenty thousand two hundred ninety-nine' WHERE a=13469;\nUPDATE t2 SET c='fifty thousand seven hundred sixty-five' WHERE a=13470;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirty-three' WHERE a=13471;\nUPDATE t2 SET c='ninety-three thousand three hundred fifty-six' WHERE a=13472;\nUPDATE t2 SET c='two thousand seven hundred seventy-four' WHERE a=13473;\nUPDATE t2 SET c='forty-four thousand ninety-eight' WHERE a=13474;\nUPDATE t2 SET c='sixty-three thousand seven hundred twenty-five' WHERE a=13475;\nUPDATE t2 SET c='fifteen thousand seven hundred seventy-seven' WHERE a=13476;\nUPDATE t2 SET c='seventy-three thousand two hundred seventy-eight' WHERE a=13477;\nUPDATE t2 SET c='seventy-three thousand two hundred four' WHERE a=13478;\nUPDATE t2 SET c='forty-nine thousand six hundred ten' WHERE a=13479;\nUPDATE t2 SET c='sixty-one thousand seven hundred seventy-nine' WHERE a=13480;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-eight' WHERE a=13481;\nUPDATE t2 SET c='eight thousand two hundred forty-four' WHERE a=13482;\nUPDATE t2 SET c='thirty-five thousand four hundred eighty-three' WHERE a=13483;\nUPDATE t2 SET c='sixty-nine thousand two hundred ninety-two' WHERE a=13484;\nUPDATE t2 SET c='eighty-five thousand two hundred eighty-six' WHERE a=13485;\nUPDATE t2 SET c='sixty-eight thousand three hundred seventy-four' WHERE a=13486;\nUPDATE t2 SET c='ten thousand five hundred sixty-one' WHERE a=13487;\nUPDATE t2 SET c='eighty-one thousand four hundred forty-one' WHERE a=13488;\nUPDATE t2 SET c='thirty-four thousand three hundred forty-six' WHERE a=13489;\nUPDATE t2 SET c='eleven thousand three hundred forty-six' WHERE a=13490;\nUPDATE t2 SET c='fifty-five thousand five hundred ninety-three' WHERE a=13491;\nUPDATE t2 SET c='sixty-two thousand five hundred twenty-seven' WHERE a=13492;\nUPDATE t2 SET c='forty-two thousand nine hundred one' WHERE a=13493;\nUPDATE t2 SET c='thirty-two thousand six hundred fifty-three' WHERE a=13494;\nUPDATE t2 SET c='two thousand three hundred seventy-nine' WHERE a=13495;\nUPDATE t2 SET c='three thousand five hundred ninety-eight' WHERE a=13496;\nUPDATE t2 SET c='eighteen thousand three hundred fourteen' WHERE a=13497;\nUPDATE t2 SET c='twenty-three thousand eight hundred seven' WHERE a=13498;\nUPDATE t2 SET c='eighty thousand one hundred eighty-five' WHERE a=13499;\nUPDATE t2 SET c='thirty-six thousand one hundred twenty-seven' WHERE a=13500;\nUPDATE t2 SET c='sixty-seven thousand eight hundred twelve' WHERE a=13501;\nUPDATE t2 SET c='eighty-six thousand four hundred seventy-five' WHERE a=13502;\nUPDATE t2 SET c='sixty-five thousand seven hundred eighty-two' WHERE a=13503;\nUPDATE t2 SET c='thirty-nine thousand nine hundred eight' WHERE a=13504;\nUPDATE t2 SET c='three thousand nine hundred eighty-two' WHERE a=13505;\nUPDATE t2 SET c='thirteen thousand three hundred sixty-five' WHERE a=13506;\nUPDATE t2 SET c='ninety-three thousand eight hundred fourteen' WHERE a=13507;\nUPDATE t2 SET c='thirty-seven thousand four hundred thirty-five' WHERE a=13508;\nUPDATE t2 SET c='forty-four thousand one hundred ninety-five' WHERE a=13509;\nUPDATE t2 SET c='eighty-nine thousand five hundred eighty-four' WHERE a=13510;\nUPDATE t2 SET c='forty-eight thousand three hundred eighty-one' WHERE a=13511;\nUPDATE t2 SET c='three thousand three hundred sixty-three' WHERE a=13512;\nUPDATE t2 SET c='seventy thousand eighty-eight' WHERE a=13513;\nUPDATE t2 SET c='ninety-three thousand six hundred twenty' WHERE a=13514;\nUPDATE t2 SET c='sixty-six thousand six hundred fifty-eight' WHERE a=13515;\nUPDATE t2 SET c='nine thousand two hundred seventy' WHERE a=13516;\nUPDATE t2 SET c='seventy-three thousand four hundred eighty-seven' WHERE a=13517;\nUPDATE t2 SET c='thirty-four thousand seven hundred forty-four' WHERE a=13518;\nUPDATE t2 SET c='eighty-nine thousand seven hundred six' WHERE a=13519;\nUPDATE t2 SET c='ninety-one thousand seven hundred thirty-six' WHERE a=13520;\nUPDATE t2 SET c='seventy-three thousand four hundred ninety-six' WHERE a=13521;\nUPDATE t2 SET c='thirty-six thousand seven hundred eighty-eight' WHERE a=13522;\nUPDATE t2 SET c='twenty-one thousand eight hundred six' WHERE a=13523;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-two' WHERE a=13524;\nUPDATE t2 SET c='eighty-five thousand three hundred twenty-one' WHERE a=13525;\nUPDATE t2 SET c='thirty-four thousand three hundred seventy-one' WHERE a=13526;\nUPDATE t2 SET c='forty-eight thousand seven hundred ninety-two' WHERE a=13527;\nUPDATE t2 SET c='fifty-nine thousand two hundred thirty-three' WHERE a=13528;\nUPDATE t2 SET c='seventy-four thousand seven hundred forty-five' WHERE a=13529;\nUPDATE t2 SET c='eighty-nine thousand three hundred seventy-two' WHERE a=13530;\nUPDATE t2 SET c='seventy-four thousand one hundred twenty-nine' WHERE a=13531;\nUPDATE t2 SET c='fourteen thousand nine hundred four' WHERE a=13532;\nUPDATE t2 SET c='forty-five thousand seven hundred twelve' WHERE a=13533;\nUPDATE t2 SET c='eighty-two thousand one hundred forty-six' WHERE a=13534;\nUPDATE t2 SET c='twenty-six thousand eight hundred ten' WHERE a=13535;\nUPDATE t2 SET c='eight thousand three hundred seventy-five' WHERE a=13536;\nUPDATE t2 SET c='eight thousand six hundred ten' WHERE a=13537;\nUPDATE t2 SET c='twenty-six thousand one hundred ninety' WHERE a=13538;\nUPDATE t2 SET c='fifty-five thousand eight hundred seventy-two' WHERE a=13539;\nUPDATE t2 SET c='seven thousand thirty-seven' WHERE a=13540;\nUPDATE t2 SET c='eighty-eight thousand five hundred twenty-five' WHERE a=13541;\nUPDATE t2 SET c='eighty-two thousand five hundred forty' WHERE a=13542;\nUPDATE t2 SET c='four thousand two hundred fifty-three' WHERE a=13543;\nUPDATE t2 SET c='seventy-one thousand three hundred sixty-three' WHERE a=13544;\nUPDATE t2 SET c='ninety-nine thousand two hundred eighty-three' WHERE a=13545;\nUPDATE t2 SET c='fifty-six thousand two hundred sixty-nine' WHERE a=13546;\nUPDATE t2 SET c='ninety-six thousand three hundred forty-eight' WHERE a=13547;\nUPDATE t2 SET c='eighty-six thousand seven hundred eighty-two' WHERE a=13548;\nUPDATE t2 SET c='seventy-eight thousand two hundred sixty-seven' WHERE a=13549;\nUPDATE t2 SET c='twenty-four thousand seven hundred thirty-three' WHERE a=13550;\nUPDATE t2 SET c='sixty thousand one hundred seventy-six' WHERE a=13551;\nUPDATE t2 SET c='thirty-seven thousand seven hundred ninety-eight' WHERE a=13552;\nUPDATE t2 SET c='sixty-nine thousand forty' WHERE a=13553;\nUPDATE t2 SET c='twenty-seven thousand six hundred thirty-four' WHERE a=13554;\nUPDATE t2 SET c='twenty-eight thousand ten' WHERE a=13555;\nUPDATE t2 SET c='fifty-two thousand seven hundred eighty-one' WHERE a=13556;\nUPDATE t2 SET c='one hundred forty-six' WHERE a=13557;\nUPDATE t2 SET c='eleven thousand eight hundred thirty-three' WHERE a=13558;\nUPDATE t2 SET c='eighty-two thousand two hundred eighteen' WHERE a=13559;\nUPDATE t2 SET c='eighty-one thousand one hundred eighty' WHERE a=13560;\nUPDATE t2 SET c='eighty thousand fifty-nine' WHERE a=13561;\nUPDATE t2 SET c='thirty-five thousand four hundred twenty-five' WHERE a=13562;\nUPDATE t2 SET c='forty-nine thousand nine hundred forty-two' WHERE a=13563;\nUPDATE t2 SET c='fifteen thousand four hundred sixty-five' WHERE a=13564;\nUPDATE t2 SET c='four thousand fifty-two' WHERE a=13565;\nUPDATE t2 SET c='eighty-two thousand eight hundred six' WHERE a=13566;\nUPDATE t2 SET c='twenty-three thousand two hundred sixty-three' WHERE a=13567;\nUPDATE t2 SET c='fifty-six thousand one hundred sixty-seven' WHERE a=13568;\nUPDATE t2 SET c='twenty-five thousand two hundred seventy' WHERE a=13569;\nUPDATE t2 SET c='eighty-four thousand nine hundred thirty-seven' WHERE a=13570;\nUPDATE t2 SET c='eighty-four thousand seven hundred twenty-one' WHERE a=13571;\nUPDATE t2 SET c='eighty-two thousand ten' WHERE a=13572;\nUPDATE t2 SET c='seventy-two thousand one hundred ninety' WHERE a=13573;\nUPDATE t2 SET c='seventy-six thousand seven hundred seventy-four' WHERE a=13574;\nUPDATE t2 SET c='seventeen thousand eight hundred twenty-six' WHERE a=13575;\nUPDATE t2 SET c='seventy-five thousand three hundred twelve' WHERE a=13576;\nUPDATE t2 SET c='eighty-three thousand one hundred eighteen' WHERE a=13577;\nUPDATE t2 SET c='seventy-two thousand three hundred ninety-nine' WHERE a=13578;\nUPDATE t2 SET c='ninety-five thousand seven hundred twenty-nine' WHERE a=13579;\nUPDATE t2 SET c='eighteen thousand seven hundred thirty-seven' WHERE a=13580;\nUPDATE t2 SET c='fifty-three thousand six hundred sixty-two' WHERE a=13581;\nUPDATE t2 SET c='thirty-six thousand two hundred seven' WHERE a=13582;\nUPDATE t2 SET c='eighteen thousand eight hundred forty-six' WHERE a=13583;\nUPDATE t2 SET c='sixty-eight thousand five hundred eighteen' WHERE a=13584;\nUPDATE t2 SET c='seventy-eight thousand six hundred forty-six' WHERE a=13585;\nUPDATE t2 SET c='eighty-seven thousand seven hundred ninety-one' WHERE a=13586;\nUPDATE t2 SET c='forty-two thousand four hundred eighty-five' WHERE a=13587;\nUPDATE t2 SET c='eighty-one thousand four hundred fifty-nine' WHERE a=13588;\nUPDATE t2 SET c='twenty-nine thousand five hundred eighty-five' WHERE a=13589;\nUPDATE t2 SET c='seventy-seven thousand forty-four' WHERE a=13590;\nUPDATE t2 SET c='fifteen thousand three hundred eighteen' WHERE a=13591;\nUPDATE t2 SET c='seventy-eight thousand eight hundred thirty-seven' WHERE a=13592;\nUPDATE t2 SET c='eighty-five thousand one hundred twenty-eight' WHERE a=13593;\nUPDATE t2 SET c='eighty-five thousand one hundred twelve' WHERE a=13594;\nUPDATE t2 SET c='sixty thousand nine hundred sixty-five' WHERE a=13595;\nUPDATE t2 SET c='eighty-one thousand six hundred fifteen' WHERE a=13596;\nUPDATE t2 SET c='twenty-four thousand five hundred ninety-seven' WHERE a=13597;\nUPDATE t2 SET c='twenty-two thousand six hundred fifteen' WHERE a=13598;\nUPDATE t2 SET c='six thousand nine hundred eighty-six' WHERE a=13599;\nUPDATE t2 SET c='seventy-two thousand eight hundred seven' WHERE a=13600;\nUPDATE t2 SET c='forty-three thousand three hundred ninety-one' WHERE a=13601;\nUPDATE t2 SET c='thirty-four thousand one hundred eighty-six' WHERE a=13602;\nUPDATE t2 SET c='forty-six thousand five hundred eighty' WHERE a=13603;\nUPDATE t2 SET c='ninety-six thousand six hundred forty-seven' WHERE a=13604;\nUPDATE t2 SET c='ninety-four thousand five hundred seventy-three' WHERE a=13605;\nUPDATE t2 SET c='forty-one thousand seventy-two' WHERE a=13606;\nUPDATE t2 SET c='five thousand seven hundred fifty-four' WHERE a=13607;\nUPDATE t2 SET c='thirteen thousand eight hundred eighty-eight' WHERE a=13608;\nUPDATE t2 SET c='eighty-five thousand eight hundred ninety-seven' WHERE a=13609;\nUPDATE t2 SET c='fifty-four thousand nine hundred forty-nine' WHERE a=13610;\nUPDATE t2 SET c='ninety-five thousand five hundred sixty-five' WHERE a=13611;\nUPDATE t2 SET c='sixty-seven thousand eight hundred eighty' WHERE a=13612;\nUPDATE t2 SET c='twenty-three thousand nine hundred eighty-five' WHERE a=13613;\nUPDATE t2 SET c='three thousand three hundred ninety-four' WHERE a=13614;\nUPDATE t2 SET c='twenty-seven thousand seventy-one' WHERE a=13615;\nUPDATE t2 SET c='sixty thousand eighty-nine' WHERE a=13616;\nUPDATE t2 SET c='thirty-three thousand one hundred seventy-five' WHERE a=13617;\nUPDATE t2 SET c='fifty-one thousand four hundred seventy-eight' WHERE a=13618;\nUPDATE t2 SET c='twenty-seven thousand eight hundred twenty-four' WHERE a=13619;\nUPDATE t2 SET c='fifty-nine thousand eight hundred four' WHERE a=13620;\nUPDATE t2 SET c='twenty-two thousand one hundred fifty-one' WHERE a=13621;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty-one' WHERE a=13622;\nUPDATE t2 SET c='twenty-two thousand nine hundred three' WHERE a=13623;\nUPDATE t2 SET c='eighty-four thousand eight hundred fifty-two' WHERE a=13624;\nUPDATE t2 SET c='seventy-two thousand forty-seven' WHERE a=13625;\nUPDATE t2 SET c='eighty-four thousand nine hundred eight' WHERE a=13626;\nUPDATE t2 SET c='thirty-nine thousand two hundred forty-two' WHERE a=13627;\nUPDATE t2 SET c='twenty-three thousand seven hundred ten' WHERE a=13628;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-one' WHERE a=13629;\nUPDATE t2 SET c='eighty-five thousand nine hundred forty' WHERE a=13630;\nUPDATE t2 SET c='five thousand six hundred fifty-three' WHERE a=13631;\nUPDATE t2 SET c='eighty-four thousand three hundred eighty-five' WHERE a=13632;\nUPDATE t2 SET c='eighty-four thousand seven hundred forty-five' WHERE a=13633;\nUPDATE t2 SET c='thirty-five thousand two hundred forty' WHERE a=13634;\nUPDATE t2 SET c='two thousand two hundred eighty-six' WHERE a=13635;\nUPDATE t2 SET c='seven thousand four' WHERE a=13636;\nUPDATE t2 SET c='seventy-four thousand seven hundred sixty-nine' WHERE a=13637;\nUPDATE t2 SET c='thirty-eight thousand six hundred twenty-one' WHERE a=13638;\nUPDATE t2 SET c='twenty-four thousand two hundred fifty-three' WHERE a=13639;\nUPDATE t2 SET c='forty-four thousand four hundred four' WHERE a=13640;\nUPDATE t2 SET c='four thousand five hundred sixty-two' WHERE a=13641;\nUPDATE t2 SET c='ninety-five thousand five hundred nine' WHERE a=13642;\nUPDATE t2 SET c='nineteen thousand six hundred forty-eight' WHERE a=13643;\nUPDATE t2 SET c='seventy-nine thousand one hundred sixteen' WHERE a=13644;\nUPDATE t2 SET c='eighteen thousand nine hundred ninety-one' WHERE a=13645;\nUPDATE t2 SET c='fifty-six thousand one hundred twenty-nine' WHERE a=13646;\nUPDATE t2 SET c='thirty-nine thousand nine hundred six' WHERE a=13647;\nUPDATE t2 SET c='fifty-two thousand nine hundred sixty-seven' WHERE a=13648;\nUPDATE t2 SET c='seventeen thousand three hundred fifty-four' WHERE a=13649;\nUPDATE t2 SET c='fifty-six thousand sixty-two' WHERE a=13650;\nUPDATE t2 SET c='twenty-eight thousand nine hundred twenty-five' WHERE a=13651;\nUPDATE t2 SET c='twenty-eight thousand seven hundred ninety-four' WHERE a=13652;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-five' WHERE a=13653;\nUPDATE t2 SET c='seventy-four thousand seven hundred forty-one' WHERE a=13654;\nUPDATE t2 SET c='fourteen thousand four hundred fifty-three' WHERE a=13655;\nUPDATE t2 SET c='sixty-six thousand seven hundred ninety-nine' WHERE a=13656;\nUPDATE t2 SET c='six thousand seven hundred forty-eight' WHERE a=13657;\nUPDATE t2 SET c='sixty-five thousand sixty-six' WHERE a=13658;\nUPDATE t2 SET c='sixty-eight thousand six hundred sixty-eight' WHERE a=13659;\nUPDATE t2 SET c='sixty-two thousand two hundred fifty-six' WHERE a=13660;\nUPDATE t2 SET c='fifty-three thousand six hundred seventeen' WHERE a=13661;\nUPDATE t2 SET c='fifty-seven thousand five hundred eighty-one' WHERE a=13662;\nUPDATE t2 SET c='eighteen thousand one hundred eighty-seven' WHERE a=13663;\nUPDATE t2 SET c='thirty-nine thousand nine hundred ninety-five' WHERE a=13664;\nUPDATE t2 SET c='seventy-nine thousand eighty-seven' WHERE a=13665;\nUPDATE t2 SET c='fifty-two thousand two hundred forty-one' WHERE a=13666;\nUPDATE t2 SET c='thirty-three thousand five hundred eighty-five' WHERE a=13667;\nUPDATE t2 SET c='thirty-three thousand four hundred eighty' WHERE a=13668;\nUPDATE t2 SET c='fifty-one thousand forty-five' WHERE a=13669;\nUPDATE t2 SET c='seven thousand seven hundred twenty-three' WHERE a=13670;\nUPDATE t2 SET c='thirty-eight thousand eight hundred seventy-five' WHERE a=13671;\nUPDATE t2 SET c='seventy-nine thousand eighteen' WHERE a=13672;\nUPDATE t2 SET c='five hundred seventy-three' WHERE a=13673;\nUPDATE t2 SET c='forty-two thousand nine hundred twenty-nine' WHERE a=13674;\nUPDATE t2 SET c='eighty-two thousand one hundred twenty-one' WHERE a=13675;\nUPDATE t2 SET c='sixty-five thousand six hundred fifty-one' WHERE a=13676;\nUPDATE t2 SET c='five thousand three hundred fifty-nine' WHERE a=13677;\nUPDATE t2 SET c='four hundred forty-five' WHERE a=13678;\nUPDATE t2 SET c='ninety-seven thousand nine hundred nineteen' WHERE a=13679;\nUPDATE t2 SET c='three thousand three hundred twenty-nine' WHERE a=13680;\nUPDATE t2 SET c='eighty-seven thousand five hundred twenty' WHERE a=13681;\nUPDATE t2 SET c='thirty-two thousand thirty-nine' WHERE a=13682;\nUPDATE t2 SET c='fifty thousand three hundred ninety-five' WHERE a=13683;\nUPDATE t2 SET c='eight thousand two hundred sixty-seven' WHERE a=13684;\nUPDATE t2 SET c='three thousand three hundred fifty-eight' WHERE a=13685;\nUPDATE t2 SET c='thirty-two thousand four hundred eighteen' WHERE a=13686;\nUPDATE t2 SET c='thirty-two thousand seven hundred eighty-six' WHERE a=13687;\nUPDATE t2 SET c='fourteen thousand two hundred twenty-two' WHERE a=13688;\nUPDATE t2 SET c='forty-nine thousand ninety-three' WHERE a=13689;\nUPDATE t2 SET c='forty-four thousand six hundred thirty-two' WHERE a=13690;\nUPDATE t2 SET c='forty-nine thousand nine hundred thirteen' WHERE a=13691;\nUPDATE t2 SET c='fifty-four thousand seven hundred forty-five' WHERE a=13692;\nUPDATE t2 SET c='twenty-four thousand eight hundred seventy-seven' WHERE a=13693;\nUPDATE t2 SET c='fifty-nine thousand five hundred forty-six' WHERE a=13694;\nUPDATE t2 SET c='fifty-five thousand nine hundred seventy-three' WHERE a=13695;\nUPDATE t2 SET c='sixty-three thousand two hundred fifty-four' WHERE a=13696;\nUPDATE t2 SET c='eighty-eight thousand nine hundred eighty' WHERE a=13697;\nUPDATE t2 SET c='twenty-six thousand five hundred twenty-six' WHERE a=13698;\nUPDATE t2 SET c='seven thousand five hundred four' WHERE a=13699;\nUPDATE t2 SET c='twelve thousand one hundred thirty-three' WHERE a=13700;\nUPDATE t2 SET c='thirty-three thousand eight' WHERE a=13701;\nUPDATE t2 SET c='thirty-three thousand seven hundred ninety-two' WHERE a=13702;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty' WHERE a=13703;\nUPDATE t2 SET c='ninety-six thousand two hundred fourteen' WHERE a=13704;\nUPDATE t2 SET c='eighty-seven thousand two hundred thirty-nine' WHERE a=13705;\nUPDATE t2 SET c='seventy-four thousand one hundred thirty-three' WHERE a=13706;\nUPDATE t2 SET c='fifty-nine thousand three hundred fifteen' WHERE a=13707;\nUPDATE t2 SET c='fourteen thousand nine hundred thirty-four' WHERE a=13708;\nUPDATE t2 SET c='fifty-five thousand three hundred eighty-two' WHERE a=13709;\nUPDATE t2 SET c='twenty-two thousand nine hundred twenty-six' WHERE a=13710;\nUPDATE t2 SET c='eighty-one thousand sixty' WHERE a=13711;\nUPDATE t2 SET c='eighty-nine thousand six hundred forty-one' WHERE a=13712;\nUPDATE t2 SET c='forty-four thousand four hundred fifty-five' WHERE a=13713;\nUPDATE t2 SET c='thirty-eight thousand three hundred twenty-five' WHERE a=13714;\nUPDATE t2 SET c='eighty-five thousand five hundred seventy-two' WHERE a=13715;\nUPDATE t2 SET c='eighty-seven thousand eight hundred thirty-two' WHERE a=13716;\nUPDATE t2 SET c='seventy-six thousand seven hundred fifty-four' WHERE a=13717;\nUPDATE t2 SET c='ninety-four thousand eight hundred sixty-seven' WHERE a=13718;\nUPDATE t2 SET c='twenty-one thousand five hundred thirty-eight' WHERE a=13719;\nUPDATE t2 SET c='twelve thousand eight hundred three' WHERE a=13720;\nUPDATE t2 SET c='sixty-nine thousand two hundred ninety-six' WHERE a=13721;\nUPDATE t2 SET c='sixty-two thousand seven hundred ninety-nine' WHERE a=13722;\nUPDATE t2 SET c='nineteen thousand six hundred twenty-five' WHERE a=13723;\nUPDATE t2 SET c='fifty-four thousand five hundred sixty-two' WHERE a=13724;\nUPDATE t2 SET c='fifty-one thousand nine hundred ninety-six' WHERE a=13725;\nUPDATE t2 SET c='thirty-one thousand nine hundred thirteen' WHERE a=13726;\nUPDATE t2 SET c='thirty thousand five hundred fifty-six' WHERE a=13727;\nUPDATE t2 SET c='sixty-one thousand seven hundred fifty-four' WHERE a=13728;\nUPDATE t2 SET c='twenty-four thousand three hundred forty-six' WHERE a=13729;\nUPDATE t2 SET c='thirty-one thousand six hundred four' WHERE a=13730;\nUPDATE t2 SET c='ten thousand eighty' WHERE a=13731;\nUPDATE t2 SET c='seven thousand three hundred fifty-seven' WHERE a=13732;\nUPDATE t2 SET c='thirty-five thousand sixty-two' WHERE a=13733;\nUPDATE t2 SET c='eighteen thousand six hundred twenty-nine' WHERE a=13734;\nUPDATE t2 SET c='twenty-seven thousand four hundred forty-four' WHERE a=13735;\nUPDATE t2 SET c='thirty-three thousand eleven' WHERE a=13736;\nUPDATE t2 SET c='eighty thousand seven hundred thirty-three' WHERE a=13737;\nUPDATE t2 SET c='fifty-five thousand three hundred thirty-seven' WHERE a=13738;\nUPDATE t2 SET c='twenty-six thousand two hundred nineteen' WHERE a=13739;\nUPDATE t2 SET c='sixty-eight thousand eight hundred twenty-nine' WHERE a=13740;\nUPDATE t2 SET c='eighty-five thousand three hundred eighty-four' WHERE a=13741;\nUPDATE t2 SET c='sixty-seven thousand five hundred sixty-seven' WHERE a=13742;\nUPDATE t2 SET c='seven thousand four hundred seventy-four' WHERE a=13743;\nUPDATE t2 SET c='forty-two thousand six hundred ninety-eight' WHERE a=13744;\nUPDATE t2 SET c='sixty-nine thousand two hundred eighty-eight' WHERE a=13745;\nUPDATE t2 SET c='seventy-seven thousand ninety-eight' WHERE a=13746;\nUPDATE t2 SET c='seventy-eight thousand seven hundred thirty-nine' WHERE a=13747;\nUPDATE t2 SET c='ninety-one thousand six hundred fifty-one' WHERE a=13748;\nUPDATE t2 SET c='sixty-one thousand one hundred thirty-seven' WHERE a=13749;\nUPDATE t2 SET c='sixteen thousand nine hundred forty-one' WHERE a=13750;\nUPDATE t2 SET c='nine thousand two hundred ninety-six' WHERE a=13751;\nUPDATE t2 SET c='forty-two thousand three hundred twenty-nine' WHERE a=13752;\nUPDATE t2 SET c='five thousand two hundred sixty-five' WHERE a=13753;\nUPDATE t2 SET c='fifty-two thousand five hundred ninety-two' WHERE a=13754;\nUPDATE t2 SET c='forty-two thousand two hundred five' WHERE a=13755;\nUPDATE t2 SET c='ninety-two thousand six hundred sixty-three' WHERE a=13756;\nUPDATE t2 SET c='nine thousand nine hundred eight' WHERE a=13757;\nUPDATE t2 SET c='eighty-seven thousand one hundred eighty-seven' WHERE a=13758;\nUPDATE t2 SET c='four thousand eight hundred seventy-four' WHERE a=13759;\nUPDATE t2 SET c='ninety-three thousand one hundred sixty-five' WHERE a=13760;\nUPDATE t2 SET c='forty-two thousand seven hundred sixty-seven' WHERE a=13761;\nUPDATE t2 SET c='twenty-one thousand three hundred twenty-four' WHERE a=13762;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirteen' WHERE a=13763;\nUPDATE t2 SET c='twenty-nine thousand eighty-eight' WHERE a=13764;\nUPDATE t2 SET c='eleven thousand eight hundred sixteen' WHERE a=13765;\nUPDATE t2 SET c='thirty-six thousand one hundred thirty-three' WHERE a=13766;\nUPDATE t2 SET c='ten thousand nine hundred sixty-three' WHERE a=13767;\nUPDATE t2 SET c='fifty-eight thousand two hundred sixty-one' WHERE a=13768;\nUPDATE t2 SET c='two thousand eight hundred seventy-two' WHERE a=13769;\nUPDATE t2 SET c='sixty thousand one hundred three' WHERE a=13770;\nUPDATE t2 SET c='eighty-six thousand eight hundred fifty-four' WHERE a=13771;\nUPDATE t2 SET c='thirty-four thousand fifty-one' WHERE a=13772;\nUPDATE t2 SET c='sixteen thousand nine hundred sixteen' WHERE a=13773;\nUPDATE t2 SET c='one thousand three hundred nineteen' WHERE a=13774;\nUPDATE t2 SET c='twenty-four thousand five hundred ninety-two' WHERE a=13775;\nUPDATE t2 SET c='twenty-seven thousand six hundred eighty-four' WHERE a=13776;\nUPDATE t2 SET c='one thousand nine hundred eighty-eight' WHERE a=13777;\nUPDATE t2 SET c='seven thousand two hundred thirty-six' WHERE a=13778;\nUPDATE t2 SET c='eighty-eight thousand three hundred twenty-seven' WHERE a=13779;\nUPDATE t2 SET c='sixty-six thousand seventeen' WHERE a=13780;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixty-four' WHERE a=13781;\nUPDATE t2 SET c='twelve thousand eight hundred twenty-six' WHERE a=13782;\nUPDATE t2 SET c='forty-seven thousand three hundred eleven' WHERE a=13783;\nUPDATE t2 SET c='ninety-nine thousand seven hundred twenty' WHERE a=13784;\nUPDATE t2 SET c='twenty-five thousand one hundred fifty-eight' WHERE a=13785;\nUPDATE t2 SET c='thirty-five thousand four hundred seven' WHERE a=13786;\nUPDATE t2 SET c='nine thousand three hundred ninety-five' WHERE a=13787;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty-five' WHERE a=13788;\nUPDATE t2 SET c='twenty-eight thousand nine hundred thirty-two' WHERE a=13789;\nUPDATE t2 SET c='eighty-eight thousand three hundred fifty-two' WHERE a=13790;\nUPDATE t2 SET c='seventy-eight thousand five hundred seven' WHERE a=13791;\nUPDATE t2 SET c='forty-one thousand five hundred fifty-seven' WHERE a=13792;\nUPDATE t2 SET c='four thousand seven hundred forty-three' WHERE a=13793;\nUPDATE t2 SET c='seventy-two thousand five hundred forty-nine' WHERE a=13794;\nUPDATE t2 SET c='twenty-one thousand nine hundred two' WHERE a=13795;\nUPDATE t2 SET c='eighty-four thousand two hundred eighty-four' WHERE a=13796;\nUPDATE t2 SET c='thirty-five thousand nine hundred fifteen' WHERE a=13797;\nUPDATE t2 SET c='sixty-two thousand nine hundred seven' WHERE a=13798;\nUPDATE t2 SET c='eighty-eight thousand seven hundred ninety-five' WHERE a=13799;\nUPDATE t2 SET c='six hundred thirty-one' WHERE a=13800;\nUPDATE t2 SET c='fifty-six thousand six hundred sixty-nine' WHERE a=13801;\nUPDATE t2 SET c='seventy-three thousand five hundred sixty-five' WHERE a=13802;\nUPDATE t2 SET c='thirty-four thousand fifty-six' WHERE a=13803;\nUPDATE t2 SET c='ninety-four thousand four hundred eleven' WHERE a=13804;\nUPDATE t2 SET c='forty thousand six hundred ninety-five' WHERE a=13805;\nUPDATE t2 SET c='ninety-four thousand three hundred twenty-four' WHERE a=13806;\nUPDATE t2 SET c='fifty-two thousand seven hundred ninety-two' WHERE a=13807;\nUPDATE t2 SET c='sixty-five thousand five hundred eighty-nine' WHERE a=13808;\nUPDATE t2 SET c='nine thousand seven hundred ninety-five' WHERE a=13809;\nUPDATE t2 SET c='eighty-five thousand seven hundred six' WHERE a=13810;\nUPDATE t2 SET c='seventeen thousand four hundred twelve' WHERE a=13811;\nUPDATE t2 SET c='eighty-seven thousand one hundred forty' WHERE a=13812;\nUPDATE t2 SET c='sixty-seven thousand four hundred ninety-five' WHERE a=13813;\nUPDATE t2 SET c='twelve thousand four hundred twenty-four' WHERE a=13814;\nUPDATE t2 SET c='seven thousand one hundred seventy-two' WHERE a=13815;\nUPDATE t2 SET c='forty-five thousand six hundred forty-seven' WHERE a=13816;\nUPDATE t2 SET c='thirty thousand four hundred thirty-six' WHERE a=13817;\nUPDATE t2 SET c='sixty-one thousand four hundred fourteen' WHERE a=13818;\nUPDATE t2 SET c='forty-six thousand three hundred seven' WHERE a=13819;\nUPDATE t2 SET c='sixty-eight thousand ninety-eight' WHERE a=13820;\nUPDATE t2 SET c='seventeen thousand seven hundred forty-eight' WHERE a=13821;\nUPDATE t2 SET c='ninety-seven thousand eight hundred twenty-nine' WHERE a=13822;\nUPDATE t2 SET c='sixty-two thousand three hundred seventy-two' WHERE a=13823;\nUPDATE t2 SET c='thirty-five thousand two hundred thirty-five' WHERE a=13824;\nUPDATE t2 SET c='seventy-eight thousand thirty-nine' WHERE a=13825;\nUPDATE t2 SET c='seventy-four thousand two hundred fifty-three' WHERE a=13826;\nUPDATE t2 SET c='seventy thousand eight hundred twenty-four' WHERE a=13827;\nUPDATE t2 SET c='thirty thousand two hundred forty-five' WHERE a=13828;\nUPDATE t2 SET c='eighty-six thousand one hundred thirty-six' WHERE a=13829;\nUPDATE t2 SET c='five thousand four hundred sixty-seven' WHERE a=13830;\nUPDATE t2 SET c='fifty-three thousand seventy-three' WHERE a=13831;\nUPDATE t2 SET c='one thousand nine hundred thirty-one' WHERE a=13832;\nUPDATE t2 SET c='sixty-seven thousand three hundred fifty-five' WHERE a=13833;\nUPDATE t2 SET c='eighty-eight thousand three hundred sixty-five' WHERE a=13834;\nUPDATE t2 SET c='forty-two thousand seven hundred eleven' WHERE a=13835;\nUPDATE t2 SET c='fourteen thousand five hundred ten' WHERE a=13836;\nUPDATE t2 SET c='thirty thousand five hundred eighty-six' WHERE a=13837;\nUPDATE t2 SET c='sixty-one thousand eight hundred thirty-nine' WHERE a=13838;\nUPDATE t2 SET c='twenty-four thousand six hundred sixty' WHERE a=13839;\nUPDATE t2 SET c='twenty thousand two hundred sixty-one' WHERE a=13840;\nUPDATE t2 SET c='eighty-seven thousand eight hundred thirty' WHERE a=13841;\nUPDATE t2 SET c='eighty-three thousand four hundred ninety-one' WHERE a=13842;\nUPDATE t2 SET c='fifty-six thousand four hundred twenty-seven' WHERE a=13843;\nUPDATE t2 SET c='fifty-eight thousand three hundred thirty-six' WHERE a=13844;\nUPDATE t2 SET c='eighty-three thousand nine hundred six' WHERE a=13845;\nUPDATE t2 SET c='sixteen thousand five hundred fifty-four' WHERE a=13846;\nUPDATE t2 SET c='ninety-eight thousand eight hundred fourteen' WHERE a=13847;\nUPDATE t2 SET c='forty-three thousand one hundred eighty' WHERE a=13848;\nUPDATE t2 SET c='eighty-one thousand one hundred seventeen' WHERE a=13849;\nUPDATE t2 SET c='twenty-eight thousand eight hundred nine' WHERE a=13850;\nUPDATE t2 SET c='seventy-three thousand seventy-one' WHERE a=13851;\nUPDATE t2 SET c='seventy-three thousand one hundred ninety-three' WHERE a=13852;\nUPDATE t2 SET c='sixty-five thousand three hundred twelve' WHERE a=13853;\nUPDATE t2 SET c='three thousand eight hundred nineteen' WHERE a=13854;\nUPDATE t2 SET c='forty-nine thousand one hundred sixteen' WHERE a=13855;\nUPDATE t2 SET c='twenty-one thousand eight hundred ninety-three' WHERE a=13856;\nUPDATE t2 SET c='ninety-three thousand eight hundred fifty-three' WHERE a=13857;\nUPDATE t2 SET c='ninety-one thousand one hundred one' WHERE a=13858;\nUPDATE t2 SET c='seventy thousand seven hundred forty-six' WHERE a=13859;\nUPDATE t2 SET c='seventy-two thousand six hundred eighty-three' WHERE a=13860;\nUPDATE t2 SET c='sixty-two thousand four hundred ninety-five' WHERE a=13861;\nUPDATE t2 SET c='forty-five thousand one hundred three' WHERE a=13862;\nUPDATE t2 SET c='sixteen thousand four hundred sixty-six' WHERE a=13863;\nUPDATE t2 SET c='seventy-one thousand twenty' WHERE a=13864;\nUPDATE t2 SET c='thirty-six thousand one hundred thirty-seven' WHERE a=13865;\nUPDATE t2 SET c='forty thousand ninety' WHERE a=13866;\nUPDATE t2 SET c='twenty-two thousand six hundred forty-one' WHERE a=13867;\nUPDATE t2 SET c='forty-five thousand five hundred forty-three' WHERE a=13868;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy-eight' WHERE a=13869;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-four' WHERE a=13870;\nUPDATE t2 SET c='twenty-one thousand eight hundred twenty-nine' WHERE a=13871;\nUPDATE t2 SET c='seventy-five thousand eight hundred eighty-nine' WHERE a=13872;\nUPDATE t2 SET c='fifty-six thousand nine hundred thirty-eight' WHERE a=13873;\nUPDATE t2 SET c='ninety-eight thousand nine hundred fifty-two' WHERE a=13874;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-six' WHERE a=13875;\nUPDATE t2 SET c='twenty-one thousand five hundred twenty-six' WHERE a=13876;\nUPDATE t2 SET c='twenty-one thousand seven hundred fifty-two' WHERE a=13877;\nUPDATE t2 SET c='thirty-one thousand nine hundred fifty-four' WHERE a=13878;\nUPDATE t2 SET c='two thousand seven hundred three' WHERE a=13879;\nUPDATE t2 SET c='twenty thousand nine hundred ninety-five' WHERE a=13880;\nUPDATE t2 SET c='twenty-three thousand seven hundred ninety-three' WHERE a=13881;\nUPDATE t2 SET c='thirty-six thousand four hundred sixty-eight' WHERE a=13882;\nUPDATE t2 SET c='sixty-one thousand five hundred eighty-nine' WHERE a=13883;\nUPDATE t2 SET c='eighty-one thousand one hundred thirty-five' WHERE a=13884;\nUPDATE t2 SET c='thirty-eight thousand eight hundred sixty-three' WHERE a=13885;\nUPDATE t2 SET c='forty-seven thousand four hundred five' WHERE a=13886;\nUPDATE t2 SET c='thirty-six thousand four hundred ninety-one' WHERE a=13887;\nUPDATE t2 SET c='twenty-three thousand two hundred sixty-four' WHERE a=13888;\nUPDATE t2 SET c='fifty-seven thousand six hundred eighty-seven' WHERE a=13889;\nUPDATE t2 SET c='seventy-nine thousand three hundred sixty-two' WHERE a=13890;\nUPDATE t2 SET c='eighty-five thousand one hundred sixty-seven' WHERE a=13891;\nUPDATE t2 SET c='twelve thousand two hundred thirty-nine' WHERE a=13892;\nUPDATE t2 SET c='sixteen thousand four hundred eighty-one' WHERE a=13893;\nUPDATE t2 SET c='seventy-nine thousand six hundred fifty-eight' WHERE a=13894;\nUPDATE t2 SET c='fifty-four thousand four hundred twelve' WHERE a=13895;\nUPDATE t2 SET c='eighty-five thousand eight hundred seventy-three' WHERE a=13896;\nUPDATE t2 SET c='twenty-nine thousand one hundred eighty-six' WHERE a=13897;\nUPDATE t2 SET c='thirty-eight thousand two hundred fifty-two' WHERE a=13898;\nUPDATE t2 SET c='ten thousand four hundred sixty-eight' WHERE a=13899;\nUPDATE t2 SET c='ten thousand six hundred eighty' WHERE a=13900;\nUPDATE t2 SET c='thirteen thousand seven hundred sixty-six' WHERE a=13901;\nUPDATE t2 SET c='seventeen thousand eight hundred ninety-three' WHERE a=13902;\nUPDATE t2 SET c='seventy-three thousand fifty-five' WHERE a=13903;\nUPDATE t2 SET c='fourteen thousand four hundred nine' WHERE a=13904;\nUPDATE t2 SET c='two thousand nine hundred ninety' WHERE a=13905;\nUPDATE t2 SET c='ninety-seven thousand five hundred thirty' WHERE a=13906;\nUPDATE t2 SET c='eighty-six thousand sixty-eight' WHERE a=13907;\nUPDATE t2 SET c='sixty-eight thousand sixty-nine' WHERE a=13908;\nUPDATE t2 SET c='twenty-three thousand three hundred sixty-one' WHERE a=13909;\nUPDATE t2 SET c='thirty-six thousand sixty-seven' WHERE a=13910;\nUPDATE t2 SET c='fourteen thousand five hundred eighty-two' WHERE a=13911;\nUPDATE t2 SET c='sixty-six thousand three hundred eighty-three' WHERE a=13912;\nUPDATE t2 SET c='fifty-eight thousand two hundred' WHERE a=13913;\nUPDATE t2 SET c='twelve thousand two hundred seventeen' WHERE a=13914;\nUPDATE t2 SET c='forty-three thousand seven hundred twenty-six' WHERE a=13915;\nUPDATE t2 SET c='twenty-four thousand twelve' WHERE a=13916;\nUPDATE t2 SET c='thirty-nine thousand seven hundred seventy-seven' WHERE a=13917;\nUPDATE t2 SET c='nine thousand eight hundred thirty-six' WHERE a=13918;\nUPDATE t2 SET c='ninety thousand four hundred seventy-two' WHERE a=13919;\nUPDATE t2 SET c='twenty-five thousand one hundred sixty-four' WHERE a=13920;\nUPDATE t2 SET c='twenty-nine thousand five hundred forty-six' WHERE a=13921;\nUPDATE t2 SET c='forty-four thousand nine hundred thirty' WHERE a=13922;\nUPDATE t2 SET c='thirty-two thousand seven hundred ninety-four' WHERE a=13923;\nUPDATE t2 SET c='eighty-seven thousand nine hundred sixty-two' WHERE a=13924;\nUPDATE t2 SET c='thirty-four thousand three hundred seven' WHERE a=13925;\nUPDATE t2 SET c='seventy-four thousand six hundred twenty-nine' WHERE a=13926;\nUPDATE t2 SET c='five thousand six hundred seventy-four' WHERE a=13927;\nUPDATE t2 SET c='seventeen thousand five hundred fifty-six' WHERE a=13928;\nUPDATE t2 SET c='eight thousand two hundred thirty-five' WHERE a=13929;\nUPDATE t2 SET c='twenty-six thousand six hundred fifty-eight' WHERE a=13930;\nUPDATE t2 SET c='fifty-seven thousand four' WHERE a=13931;\nUPDATE t2 SET c='forty-five thousand two hundred sixty-seven' WHERE a=13932;\nUPDATE t2 SET c='thirty-eight thousand thirty-five' WHERE a=13933;\nUPDATE t2 SET c='fifty-two thousand five hundred sixty-three' WHERE a=13934;\nUPDATE t2 SET c='thirty-four thousand five hundred twelve' WHERE a=13935;\nUPDATE t2 SET c='sixty-seven thousand nine hundred forty-two' WHERE a=13936;\nUPDATE t2 SET c='ninety thousand eight hundred forty-one' WHERE a=13937;\nUPDATE t2 SET c='thirty-four thousand two hundred forty' WHERE a=13938;\nUPDATE t2 SET c='forty-six thousand nine hundred thirty-four' WHERE a=13939;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fifty-three' WHERE a=13940;\nUPDATE t2 SET c='three thousand three hundred eighty-eight' WHERE a=13941;\nUPDATE t2 SET c='sixteen thousand five hundred fifty-four' WHERE a=13942;\nUPDATE t2 SET c='fifty-nine thousand two hundred eighty-one' WHERE a=13943;\nUPDATE t2 SET c='seven thousand five hundred twenty-one' WHERE a=13944;\nUPDATE t2 SET c='eight hundred forty-nine' WHERE a=13945;\nUPDATE t2 SET c='thirty-four thousand one hundred seventy-nine' WHERE a=13946;\nUPDATE t2 SET c='thirty thousand eight hundred forty-four' WHERE a=13947;\nUPDATE t2 SET c='nine thousand six hundred forty-two' WHERE a=13948;\nUPDATE t2 SET c='sixty-one thousand five hundred fifty-two' WHERE a=13949;\nUPDATE t2 SET c='forty-one thousand eighty-nine' WHERE a=13950;\nUPDATE t2 SET c='seventy-two thousand ninety-six' WHERE a=13951;\nUPDATE t2 SET c='sixty-eight thousand nineteen' WHERE a=13952;\nUPDATE t2 SET c='five thousand nine hundred ninety-two' WHERE a=13953;\nUPDATE t2 SET c='thirteen thousand one hundred sixty-four' WHERE a=13954;\nUPDATE t2 SET c='thirty-one thousand five hundred seven' WHERE a=13955;\nUPDATE t2 SET c='forty-one thousand eight hundred sixty-nine' WHERE a=13956;\nUPDATE t2 SET c='fifty-one thousand four hundred seventeen' WHERE a=13957;\nUPDATE t2 SET c='eighty thousand seven hundred two' WHERE a=13958;\nUPDATE t2 SET c='thirty-five thousand seven hundred fifty-six' WHERE a=13959;\nUPDATE t2 SET c='sixty-nine thousand nine hundred seventy-nine' WHERE a=13960;\nUPDATE t2 SET c='six thousand eight hundred forty-eight' WHERE a=13961;\nUPDATE t2 SET c='eight thousand two hundred eighty-three' WHERE a=13962;\nUPDATE t2 SET c='sixty-six thousand five hundred fifty-three' WHERE a=13963;\nUPDATE t2 SET c='twenty-two thousand three hundred forty-one' WHERE a=13964;\nUPDATE t2 SET c='thirty-five thousand nine hundred' WHERE a=13965;\nUPDATE t2 SET c='thirty-three thousand seven hundred seventy-five' WHERE a=13966;\nUPDATE t2 SET c='sixty-eight thousand three hundred thirty-nine' WHERE a=13967;\nUPDATE t2 SET c='fifty thousand nine hundred fifty-six' WHERE a=13968;\nUPDATE t2 SET c='ninety-five thousand six hundred ninety-six' WHERE a=13969;\nUPDATE t2 SET c='seventy-eight thousand eight hundred ten' WHERE a=13970;\nUPDATE t2 SET c='twenty-three thousand six hundred forty-nine' WHERE a=13971;\nUPDATE t2 SET c='six thousand two hundred twenty-four' WHERE a=13972;\nUPDATE t2 SET c='twenty thousand two hundred fifty-one' WHERE a=13973;\nUPDATE t2 SET c='fifty-six thousand eighty-three' WHERE a=13974;\nUPDATE t2 SET c='eight thousand three hundred twenty-seven' WHERE a=13975;\nUPDATE t2 SET c='twenty-five thousand seven hundred eighty-five' WHERE a=13976;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-six' WHERE a=13977;\nUPDATE t2 SET c='ninety-seven thousand five hundred fifty-eight' WHERE a=13978;\nUPDATE t2 SET c='twenty-three thousand nine hundred eighty-three' WHERE a=13979;\nUPDATE t2 SET c='eleven thousand seven hundred twenty-five' WHERE a=13980;\nUPDATE t2 SET c='forty-eight thousand five hundred eighty-three' WHERE a=13981;\nUPDATE t2 SET c='eighty thousand sixty-two' WHERE a=13982;\nUPDATE t2 SET c='twelve thousand four hundred twenty-nine' WHERE a=13983;\nUPDATE t2 SET c='seventy-three thousand five hundred seventy-seven' WHERE a=13984;\nUPDATE t2 SET c='ninety-six thousand twenty-five' WHERE a=13985;\nUPDATE t2 SET c='forty-five thousand eight hundred seventy-eight' WHERE a=13986;\nUPDATE t2 SET c='sixty-eight thousand nine hundred thirty-six' WHERE a=13987;\nUPDATE t2 SET c='ninety-seven thousand twenty-six' WHERE a=13988;\nUPDATE t2 SET c='two thousand six hundred ninety-five' WHERE a=13989;\nUPDATE t2 SET c='seventy-nine thousand two hundred thirty-six' WHERE a=13990;\nUPDATE t2 SET c='seventy-seven thousand one hundred twenty-two' WHERE a=13991;\nUPDATE t2 SET c='thirty-eight thousand fifty-seven' WHERE a=13992;\nUPDATE t2 SET c='forty-five thousand one hundred fourteen' WHERE a=13993;\nUPDATE t2 SET c='fifty-two thousand seven hundred eighty-eight' WHERE a=13994;\nUPDATE t2 SET c='twenty-nine thousand three hundred eighty-eight' WHERE a=13995;\nUPDATE t2 SET c='eighty-one thousand two hundred twenty-six' WHERE a=13996;\nUPDATE t2 SET c='seventy-six thousand fifty-nine' WHERE a=13997;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-eight' WHERE a=13998;\nUPDATE t2 SET c='twenty-nine thousand six hundred ninety-nine' WHERE a=13999;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-three' WHERE a=14000;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-one' WHERE a=14001;\nUPDATE t2 SET c='sixty thousand eight hundred sixty-eight' WHERE a=14002;\nUPDATE t2 SET c='ninety thousand eight hundred sixty-one' WHERE a=14003;\nUPDATE t2 SET c='ninety-eight thousand fifty-four' WHERE a=14004;\nUPDATE t2 SET c='forty-four thousand three hundred twenty-seven' WHERE a=14005;\nUPDATE t2 SET c='eighty-eight thousand nine hundred fifty-three' WHERE a=14006;\nUPDATE t2 SET c='fifty-eight thousand ninety-four' WHERE a=14007;\nUPDATE t2 SET c='eighty-six thousand five hundred one' WHERE a=14008;\nUPDATE t2 SET c='sixty thousand twenty-five' WHERE a=14009;\nUPDATE t2 SET c='ninety-four thousand eight hundred seventy-one' WHERE a=14010;\nUPDATE t2 SET c='ninety-seven thousand three hundred eighty-four' WHERE a=14011;\nUPDATE t2 SET c='twenty thousand one hundred forty-five' WHERE a=14012;\nUPDATE t2 SET c='fifty-four thousand two hundred sixty-eight' WHERE a=14013;\nUPDATE t2 SET c='twenty thousand three hundred fifteen' WHERE a=14014;\nUPDATE t2 SET c='twenty-five thousand seven hundred fifty-seven' WHERE a=14015;\nUPDATE t2 SET c='fifty-eight thousand four hundred fifty' WHERE a=14016;\nUPDATE t2 SET c='fifty thousand seven hundred sixty-seven' WHERE a=14017;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy' WHERE a=14018;\nUPDATE t2 SET c='fifty-four thousand six hundred twenty' WHERE a=14019;\nUPDATE t2 SET c='eighty-four thousand nine hundred forty' WHERE a=14020;\nUPDATE t2 SET c='thirty-seven thousand four hundred ninety-nine' WHERE a=14021;\nUPDATE t2 SET c='sixty-two thousand nine hundred fifty-two' WHERE a=14022;\nUPDATE t2 SET c='ten thousand nine hundred thirty-seven' WHERE a=14023;\nUPDATE t2 SET c='seventy-two thousand five hundred twenty-two' WHERE a=14024;\nUPDATE t2 SET c='seventy-four thousand nine hundred forty-nine' WHERE a=14025;\nUPDATE t2 SET c='nineteen thousand three hundred ninety-seven' WHERE a=14026;\nUPDATE t2 SET c='seventy-two thousand seven hundred eighty-five' WHERE a=14027;\nUPDATE t2 SET c='sixteen thousand forty-eight' WHERE a=14028;\nUPDATE t2 SET c='eighty-nine thousand five hundred ninety-five' WHERE a=14029;\nUPDATE t2 SET c='nine thousand ten' WHERE a=14030;\nUPDATE t2 SET c='fifty-one thousand four hundred sixty-six' WHERE a=14031;\nUPDATE t2 SET c='fifty-six thousand six hundred seven' WHERE a=14032;\nUPDATE t2 SET c='twelve thousand nine hundred thirty-five' WHERE a=14033;\nUPDATE t2 SET c='forty-five thousand one hundred twenty-one' WHERE a=14034;\nUPDATE t2 SET c='eighty thousand six hundred fifty-eight' WHERE a=14035;\nUPDATE t2 SET c='seventy thousand four hundred eighteen' WHERE a=14036;\nUPDATE t2 SET c='twenty-eight thousand ninety-eight' WHERE a=14037;\nUPDATE t2 SET c='nineteen thousand twenty-four' WHERE a=14038;\nUPDATE t2 SET c='sixty thousand three hundred fifty-seven' WHERE a=14039;\nUPDATE t2 SET c='eighty-one thousand six hundred twenty-five' WHERE a=14040;\nUPDATE t2 SET c='eleven thousand six hundred twenty-three' WHERE a=14041;\nUPDATE t2 SET c='forty-one thousand eighty-nine' WHERE a=14042;\nUPDATE t2 SET c='thirty-one thousand six hundred nine' WHERE a=14043;\nUPDATE t2 SET c='eighty-four thousand five hundred twenty' WHERE a=14044;\nUPDATE t2 SET c='nineteen thousand eight hundred eighty-six' WHERE a=14045;\nUPDATE t2 SET c='seventy-six thousand nine hundred twenty-eight' WHERE a=14046;\nUPDATE t2 SET c='seventy-six thousand nine hundred five' WHERE a=14047;\nUPDATE t2 SET c='seventy-six thousand one hundred fifty-nine' WHERE a=14048;\nUPDATE t2 SET c='eighty-one thousand six hundred twenty' WHERE a=14049;\nUPDATE t2 SET c='twenty-one thousand sixty-four' WHERE a=14050;\nUPDATE t2 SET c='ninety-four thousand one hundred twenty-seven' WHERE a=14051;\nUPDATE t2 SET c='six thousand two hundred thirty' WHERE a=14052;\nUPDATE t2 SET c='fifty-five thousand seventy-three' WHERE a=14053;\nUPDATE t2 SET c='four thousand eight hundred eighty-five' WHERE a=14054;\nUPDATE t2 SET c='fifty-four thousand three hundred eighteen' WHERE a=14055;\nUPDATE t2 SET c='ninety thousand one hundred ninety-three' WHERE a=14056;\nUPDATE t2 SET c='thirty-two thousand one hundred eighty-six' WHERE a=14057;\nUPDATE t2 SET c='forty-seven thousand one hundred forty-one' WHERE a=14058;\nUPDATE t2 SET c='eight thousand one hundred twenty-four' WHERE a=14059;\nUPDATE t2 SET c='thirty-eight thousand twelve' WHERE a=14060;\nUPDATE t2 SET c='fifty-eight thousand two hundred seventy-nine' WHERE a=14061;\nUPDATE t2 SET c='one thousand nine hundred thirty-two' WHERE a=14062;\nUPDATE t2 SET c='ninety-four thousand six hundred thirty-seven' WHERE a=14063;\nUPDATE t2 SET c='fifty thousand one hundred one' WHERE a=14064;\nUPDATE t2 SET c='two thousand eight hundred forty-three' WHERE a=14065;\nUPDATE t2 SET c='thirty-eight thousand two hundred fifty-eight' WHERE a=14066;\nUPDATE t2 SET c='fifty-nine thousand five hundred' WHERE a=14067;\nUPDATE t2 SET c='eighty-five thousand five hundred ninety-nine' WHERE a=14068;\nUPDATE t2 SET c='nine thousand five hundred eighty-four' WHERE a=14069;\nUPDATE t2 SET c='seventy-two thousand sixteen' WHERE a=14070;\nUPDATE t2 SET c='thirty-seven thousand one hundred ninety-eight' WHERE a=14071;\nUPDATE t2 SET c='two thousand seven hundred sixty-four' WHERE a=14072;\nUPDATE t2 SET c='thirty-four thousand ninety-nine' WHERE a=14073;\nUPDATE t2 SET c='nineteen thousand four hundred sixty-one' WHERE a=14074;\nUPDATE t2 SET c='fifty-two thousand nine hundred eleven' WHERE a=14075;\nUPDATE t2 SET c='thirty-two thousand one hundred five' WHERE a=14076;\nUPDATE t2 SET c='sixty-two thousand six' WHERE a=14077;\nUPDATE t2 SET c='seventy-four thousand five hundred fifty' WHERE a=14078;\nUPDATE t2 SET c='sixty-two thousand eight hundred seventy-eight' WHERE a=14079;\nUPDATE t2 SET c='eighty-five thousand one hundred seventy-three' WHERE a=14080;\nUPDATE t2 SET c='twenty thousand eleven' WHERE a=14081;\nUPDATE t2 SET c='thirty-five thousand six hundred forty-two' WHERE a=14082;\nUPDATE t2 SET c='ninety-nine thousand eight hundred eighty-five' WHERE a=14083;\nUPDATE t2 SET c='ninety-two thousand forty' WHERE a=14084;\nUPDATE t2 SET c='sixty-three thousand six hundred fifty-four' WHERE a=14085;\nUPDATE t2 SET c='eleven thousand three hundred forty-nine' WHERE a=14086;\nUPDATE t2 SET c='four thousand two hundred sixty-eight' WHERE a=14087;\nUPDATE t2 SET c='twenty-three thousand seven hundred seventy-six' WHERE a=14088;\nUPDATE t2 SET c='thirty-one thousand twenty-seven' WHERE a=14089;\nUPDATE t2 SET c='ninety-four thousand nine hundred seventy-three' WHERE a=14090;\nUPDATE t2 SET c='twenty-one thousand five hundred eighty-seven' WHERE a=14091;\nUPDATE t2 SET c='thirty-four thousand one hundred forty-four' WHERE a=14092;\nUPDATE t2 SET c='twenty-six thousand seven hundred five' WHERE a=14093;\nUPDATE t2 SET c='seventeen thousand three hundred four' WHERE a=14094;\nUPDATE t2 SET c='eighty-one thousand three hundred ninety-eight' WHERE a=14095;\nUPDATE t2 SET c='fifty-two thousand four hundred eighty-nine' WHERE a=14096;\nUPDATE t2 SET c='nine thousand seven hundred twenty-four' WHERE a=14097;\nUPDATE t2 SET c='ninety-three thousand eight hundred thirty-seven' WHERE a=14098;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy-one' WHERE a=14099;\nUPDATE t2 SET c='thirty thousand seven hundred ninety-one' WHERE a=14100;\nUPDATE t2 SET c='three thousand seven hundred fifty-two' WHERE a=14101;\nUPDATE t2 SET c='three hundred seventy-two' WHERE a=14102;\nUPDATE t2 SET c='seventy thousand one hundred forty-nine' WHERE a=14103;\nUPDATE t2 SET c='forty-seven thousand nine hundred twenty-three' WHERE a=14104;\nUPDATE t2 SET c='fifty-two thousand seven hundred thirty-eight' WHERE a=14105;\nUPDATE t2 SET c='fifty-seven thousand seven hundred twenty-four' WHERE a=14106;\nUPDATE t2 SET c='ninety-one thousand five hundred thirty-nine' WHERE a=14107;\nUPDATE t2 SET c='sixty-one thousand five hundred sixty-six' WHERE a=14108;\nUPDATE t2 SET c='seventy-one thousand nine hundred four' WHERE a=14109;\nUPDATE t2 SET c='thirty-six thousand six hundred fifteen' WHERE a=14110;\nUPDATE t2 SET c='fifteen thousand six hundred twenty-nine' WHERE a=14111;\nUPDATE t2 SET c='eighty-nine thousand six hundred five' WHERE a=14112;\nUPDATE t2 SET c='ninety-five thousand seven hundred thirty-seven' WHERE a=14113;\nUPDATE t2 SET c='eighty-seven thousand three hundred ninety-three' WHERE a=14114;\nUPDATE t2 SET c='forty-seven thousand eighty-six' WHERE a=14115;\nUPDATE t2 SET c='forty-two thousand twenty-two' WHERE a=14116;\nUPDATE t2 SET c='seventeen thousand three hundred thirty-five' WHERE a=14117;\nUPDATE t2 SET c='ninety-seven thousand thirty' WHERE a=14118;\nUPDATE t2 SET c='seventeen thousand eight hundred sixty-nine' WHERE a=14119;\nUPDATE t2 SET c='thirty-five thousand seven hundred forty-eight' WHERE a=14120;\nUPDATE t2 SET c='fifty-one thousand five hundred eighty' WHERE a=14121;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifty-nine' WHERE a=14122;\nUPDATE t2 SET c='seven thousand nine hundred fifty' WHERE a=14123;\nUPDATE t2 SET c='eighty-two thousand seven hundred seventy-five' WHERE a=14124;\nUPDATE t2 SET c='thirty-five thousand one hundred ninety-seven' WHERE a=14125;\nUPDATE t2 SET c='seventeen thousand five hundred sixty' WHERE a=14126;\nUPDATE t2 SET c='sixty-two thousand two hundred thirty-seven' WHERE a=14127;\nUPDATE t2 SET c='forty-nine thousand six hundred sixty-three' WHERE a=14128;\nUPDATE t2 SET c='forty-eight thousand four hundred three' WHERE a=14129;\nUPDATE t2 SET c='sixty thousand eight hundred forty-one' WHERE a=14130;\nUPDATE t2 SET c='eighty-eight thousand five hundred sixty-six' WHERE a=14131;\nUPDATE t2 SET c='forty-eight thousand five hundred thirty-four' WHERE a=14132;\nUPDATE t2 SET c='sixty-seven thousand three hundred sixty' WHERE a=14133;\nUPDATE t2 SET c='twenty-six thousand seven hundred ninety-three' WHERE a=14134;\nUPDATE t2 SET c='forty-six thousand nine hundred eight' WHERE a=14135;\nUPDATE t2 SET c='fifteen thousand one hundred sixty-five' WHERE a=14136;\nUPDATE t2 SET c='eighty-nine thousand two hundred ninety' WHERE a=14137;\nUPDATE t2 SET c='two thousand four hundred thirty-eight' WHERE a=14138;\nUPDATE t2 SET c='seventy-seven thousand one hundred forty-three' WHERE a=14139;\nUPDATE t2 SET c='forty-eight' WHERE a=14140;\nUPDATE t2 SET c='eighty-three thousand forty' WHERE a=14141;\nUPDATE t2 SET c='forty-four thousand one' WHERE a=14142;\nUPDATE t2 SET c='sixty-four thousand ninety-three' WHERE a=14143;\nUPDATE t2 SET c='seventy thousand forty-one' WHERE a=14144;\nUPDATE t2 SET c='sixty-nine thousand five hundred three' WHERE a=14145;\nUPDATE t2 SET c='nine thousand three hundred fifty-six' WHERE a=14146;\nUPDATE t2 SET c='thirty-four thousand eight hundred sixty-four' WHERE a=14147;\nUPDATE t2 SET c='five thousand seven hundred fifty-eight' WHERE a=14148;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-seven' WHERE a=14149;\nUPDATE t2 SET c='ninety-three thousand seven hundred forty-five' WHERE a=14150;\nUPDATE t2 SET c='fifty-four thousand three hundred eighty-one' WHERE a=14151;\nUPDATE t2 SET c='fifty-three thousand seven hundred nineteen' WHERE a=14152;\nUPDATE t2 SET c='thirty-seven thousand four hundred thirty-seven' WHERE a=14153;\nUPDATE t2 SET c='thirty-three thousand two hundred forty-six' WHERE a=14154;\nUPDATE t2 SET c='thirty-two thousand one hundred two' WHERE a=14155;\nUPDATE t2 SET c='eight thousand six hundred one' WHERE a=14156;\nUPDATE t2 SET c='ninety-six thousand seven hundred ninety-seven' WHERE a=14157;\nUPDATE t2 SET c='ninety thousand nine hundred forty-six' WHERE a=14158;\nUPDATE t2 SET c='eighty-one thousand seven hundred forty-five' WHERE a=14159;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty-seven' WHERE a=14160;\nUPDATE t2 SET c='ninety-six thousand eight hundred thirty-seven' WHERE a=14161;\nUPDATE t2 SET c='fifty-three thousand three hundred forty-seven' WHERE a=14162;\nUPDATE t2 SET c='twenty thousand seven hundred seventy-six' WHERE a=14163;\nUPDATE t2 SET c='ninety-one thousand three hundred fifty-nine' WHERE a=14164;\nUPDATE t2 SET c='two hundred sixteen' WHERE a=14165;\nUPDATE t2 SET c='thirty-seven thousand five hundred forty-two' WHERE a=14166;\nUPDATE t2 SET c='eighteen thousand four hundred twenty-one' WHERE a=14167;\nUPDATE t2 SET c='eighty-nine thousand seven hundred twelve' WHERE a=14168;\nUPDATE t2 SET c='forty-eight thousand four hundred forty-five' WHERE a=14169;\nUPDATE t2 SET c='ninety-four thousand eight hundred sixty-five' WHERE a=14170;\nUPDATE t2 SET c='twenty-two thousand seven hundred seventeen' WHERE a=14171;\nUPDATE t2 SET c='thirty-two thousand four hundred forty-one' WHERE a=14172;\nUPDATE t2 SET c='fourteen thousand one hundred eighty-six' WHERE a=14173;\nUPDATE t2 SET c='thirty-seven thousand nine' WHERE a=14174;\nUPDATE t2 SET c='forty-one thousand two hundred thirty-three' WHERE a=14175;\nUPDATE t2 SET c='fifty-three thousand six hundred thirty-three' WHERE a=14176;\nUPDATE t2 SET c='one thousand two hundred sixty' WHERE a=14177;\nUPDATE t2 SET c='thirty-one thousand eight hundred ninety-eight' WHERE a=14178;\nUPDATE t2 SET c='forty-two thousand four hundred twenty-seven' WHERE a=14179;\nUPDATE t2 SET c='thirty-nine thousand sixty-two' WHERE a=14180;\nUPDATE t2 SET c='fifty-three thousand four' WHERE a=14181;\nUPDATE t2 SET c='thirty-eight thousand nine hundred ninety-five' WHERE a=14182;\nUPDATE t2 SET c='nine hundred seventy-one' WHERE a=14183;\nUPDATE t2 SET c='sixty-one thousand nine hundred eighty-seven' WHERE a=14184;\nUPDATE t2 SET c='sixty-eight thousand six hundred eighty-seven' WHERE a=14185;\nUPDATE t2 SET c='thirty-six thousand nine hundred seventy-one' WHERE a=14186;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-four' WHERE a=14187;\nUPDATE t2 SET c='eighty-two thousand nine hundred seven' WHERE a=14188;\nUPDATE t2 SET c='twenty thousand one hundred three' WHERE a=14189;\nUPDATE t2 SET c='twenty-six thousand eighty-one' WHERE a=14190;\nUPDATE t2 SET c='ninety-one thousand six hundred twenty-two' WHERE a=14191;\nUPDATE t2 SET c='eighty-seven thousand six hundred five' WHERE a=14192;\nUPDATE t2 SET c='twenty-three thousand seven hundred seventy-three' WHERE a=14193;\nUPDATE t2 SET c='fifty-one thousand two hundred eighty-two' WHERE a=14194;\nUPDATE t2 SET c='forty-three thousand three hundred fifty-one' WHERE a=14195;\nUPDATE t2 SET c='thirty-four thousand seven hundred ninety-nine' WHERE a=14196;\nUPDATE t2 SET c='forty-one thousand three hundred thirty-seven' WHERE a=14197;\nUPDATE t2 SET c='forty-eight thousand three hundred thirty-three' WHERE a=14198;\nUPDATE t2 SET c='thirty-one thousand three hundred seventy-eight' WHERE a=14199;\nUPDATE t2 SET c='sixty-five thousand seven hundred forty-six' WHERE a=14200;\nUPDATE t2 SET c='seventy-three thousand eight hundred thirty-one' WHERE a=14201;\nUPDATE t2 SET c='thirty thousand one hundred fifty-four' WHERE a=14202;\nUPDATE t2 SET c='eleven thousand twenty-four' WHERE a=14203;\nUPDATE t2 SET c='forty-seven thousand one hundred thirty-one' WHERE a=14204;\nUPDATE t2 SET c='twenty-four thousand three hundred ninety-three' WHERE a=14205;\nUPDATE t2 SET c='fifty-two thousand four hundred ninety-seven' WHERE a=14206;\nUPDATE t2 SET c='eighty-three thousand five' WHERE a=14207;\nUPDATE t2 SET c='forty-eight thousand one hundred forty-four' WHERE a=14208;\nUPDATE t2 SET c='six thousand five hundred seventy' WHERE a=14209;\nUPDATE t2 SET c='seventy-two thousand eight hundred sixty-one' WHERE a=14210;\nUPDATE t2 SET c='ninety-two thousand seventy-four' WHERE a=14211;\nUPDATE t2 SET c='twenty thousand nine hundred forty-one' WHERE a=14212;\nUPDATE t2 SET c='ninety-three thousand one hundred two' WHERE a=14213;\nUPDATE t2 SET c='eighty-eight thousand six hundred sixty-nine' WHERE a=14214;\nUPDATE t2 SET c='eighty-one thousand nine hundred thirty-nine' WHERE a=14215;\nUPDATE t2 SET c='ninety-eight thousand three hundred eighty' WHERE a=14216;\nUPDATE t2 SET c='forty-two thousand sixty' WHERE a=14217;\nUPDATE t2 SET c='seventy-seven thousand four hundred eleven' WHERE a=14218;\nUPDATE t2 SET c='thirty-three thousand seven hundred ninety-nine' WHERE a=14219;\nUPDATE t2 SET c='ninety-four thousand nine hundred twenty-five' WHERE a=14220;\nUPDATE t2 SET c='sixty-four thousand six hundred sixty-five' WHERE a=14221;\nUPDATE t2 SET c='forty-three thousand eight hundred seventy-two' WHERE a=14222;\nUPDATE t2 SET c='ten thousand six hundred forty-five' WHERE a=14223;\nUPDATE t2 SET c='eighty-four thousand two' WHERE a=14224;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fifty-one' WHERE a=14225;\nUPDATE t2 SET c='seventy-nine thousand one hundred fourteen' WHERE a=14226;\nUPDATE t2 SET c='ninety-seven thousand thirty-four' WHERE a=14227;\nUPDATE t2 SET c='eighty-four thousand nine hundred eleven' WHERE a=14228;\nUPDATE t2 SET c='two thousand one hundred thirteen' WHERE a=14229;\nUPDATE t2 SET c='ninety-three thousand one hundred ninety-five' WHERE a=14230;\nUPDATE t2 SET c='forty-seven thousand seven hundred thirty-nine' WHERE a=14231;\nUPDATE t2 SET c='twenty-two thousand two hundred forty' WHERE a=14232;\nUPDATE t2 SET c='sixty-eight thousand two hundred twenty-seven' WHERE a=14233;\nUPDATE t2 SET c='forty-five thousand three hundred seventy-five' WHERE a=14234;\nUPDATE t2 SET c='twenty-seven thousand nine hundred seventy-four' WHERE a=14235;\nUPDATE t2 SET c='seventy-eight thousand two hundred ninety-three' WHERE a=14236;\nUPDATE t2 SET c='sixty-six thousand one hundred seventy-eight' WHERE a=14237;\nUPDATE t2 SET c='seventy-one thousand five hundred twenty-four' WHERE a=14238;\nUPDATE t2 SET c='forty-five thousand eighty-three' WHERE a=14239;\nUPDATE t2 SET c='forty thousand eight hundred fifty-three' WHERE a=14240;\nUPDATE t2 SET c='fifty-one thousand nineteen' WHERE a=14241;\nUPDATE t2 SET c='forty-nine thousand two hundred twenty-eight' WHERE a=14242;\nUPDATE t2 SET c='twenty-eight thousand three hundred eighty-eight' WHERE a=14243;\nUPDATE t2 SET c='six thousand twenty-nine' WHERE a=14244;\nUPDATE t2 SET c='eighty-three thousand nine hundred ninety-five' WHERE a=14245;\nUPDATE t2 SET c='ninety-nine thousand eight hundred thirty-seven' WHERE a=14246;\nUPDATE t2 SET c='seventy-two thousand eight hundred fifty-one' WHERE a=14247;\nUPDATE t2 SET c='eighteen thousand one hundred sixty-three' WHERE a=14248;\nUPDATE t2 SET c='sixty-five thousand three hundred twenty-two' WHERE a=14249;\nUPDATE t2 SET c='forty-seven thousand six hundred eighty-one' WHERE a=14250;\nUPDATE t2 SET c='twenty-two thousand four hundred forty-one' WHERE a=14251;\nUPDATE t2 SET c='fifty-four thousand one hundred thirteen' WHERE a=14252;\nUPDATE t2 SET c='twenty-seven thousand eight hundred seventeen' WHERE a=14253;\nUPDATE t2 SET c='seventeen thousand five hundred eighty-three' WHERE a=14254;\nUPDATE t2 SET c='seventeen thousand three hundred eighty-four' WHERE a=14255;\nUPDATE t2 SET c='seventy-two thousand four hundred twenty-nine' WHERE a=14256;\nUPDATE t2 SET c='thirty-two thousand two hundred eighty-seven' WHERE a=14257;\nUPDATE t2 SET c='forty-six thousand four hundred seventy-seven' WHERE a=14258;\nUPDATE t2 SET c='sixty-eight thousand two hundred forty-nine' WHERE a=14259;\nUPDATE t2 SET c='sixty-seven thousand four hundred twenty-three' WHERE a=14260;\nUPDATE t2 SET c='fifty-nine thousand six hundred ninety-two' WHERE a=14261;\nUPDATE t2 SET c='forty-five thousand seven hundred ninety-eight' WHERE a=14262;\nUPDATE t2 SET c='nine thousand three hundred ninety-two' WHERE a=14263;\nUPDATE t2 SET c='thirty-nine thousand three hundred fifty-three' WHERE a=14264;\nUPDATE t2 SET c='four thousand four hundred sixty-three' WHERE a=14265;\nUPDATE t2 SET c='thirteen thousand seven hundred sixty' WHERE a=14266;\nUPDATE t2 SET c='thirteen thousand four hundred sixty-four' WHERE a=14267;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-nine' WHERE a=14268;\nUPDATE t2 SET c='seventy-three thousand six hundred one' WHERE a=14269;\nUPDATE t2 SET c='seventy-four thousand four hundred seventy-two' WHERE a=14270;\nUPDATE t2 SET c='sixty-three thousand eight hundred seventy-six' WHERE a=14271;\nUPDATE t2 SET c='fourteen thousand four hundred thirty-seven' WHERE a=14272;\nUPDATE t2 SET c='seven thousand nine hundred fifty-eight' WHERE a=14273;\nUPDATE t2 SET c='fifty-six thousand three hundred forty-three' WHERE a=14274;\nUPDATE t2 SET c='sixteen thousand seven hundred twenty-nine' WHERE a=14275;\nUPDATE t2 SET c='thirty-six thousand four hundred forty-three' WHERE a=14276;\nUPDATE t2 SET c='eighty-three thousand one hundred twelve' WHERE a=14277;\nUPDATE t2 SET c='eighty-two thousand eight hundred twenty-eight' WHERE a=14278;\nUPDATE t2 SET c='fifty-one thousand nine hundred twenty' WHERE a=14279;\nUPDATE t2 SET c='ninety-two thousand nine hundred twenty-one' WHERE a=14280;\nUPDATE t2 SET c='thirty-one thousand five hundred ninety-one' WHERE a=14281;\nUPDATE t2 SET c='twenty thousand eight hundred sixty-five' WHERE a=14282;\nUPDATE t2 SET c='ninety-three thousand three hundred fourteen' WHERE a=14283;\nUPDATE t2 SET c='thirty-one thousand four hundred sixty-eight' WHERE a=14284;\nUPDATE t2 SET c='forty-two thousand two hundred thirty-two' WHERE a=14285;\nUPDATE t2 SET c='thirty thousand three hundred eighty' WHERE a=14286;\nUPDATE t2 SET c='fifty-four thousand six hundred eighteen' WHERE a=14287;\nUPDATE t2 SET c='sixty-six thousand one hundred thirteen' WHERE a=14288;\nUPDATE t2 SET c='twenty-four thousand three hundred sixty-seven' WHERE a=14289;\nUPDATE t2 SET c='one thousand nine hundred eighteen' WHERE a=14290;\nUPDATE t2 SET c='thirty-eight thousand two hundred twenty-two' WHERE a=14291;\nUPDATE t2 SET c='eleven thousand five hundred sixty-six' WHERE a=14292;\nUPDATE t2 SET c='fifty-five thousand six hundred thirty-seven' WHERE a=14293;\nUPDATE t2 SET c='twenty-eight thousand five hundred fifty-eight' WHERE a=14294;\nUPDATE t2 SET c='sixty thousand three hundred thirty-six' WHERE a=14295;\nUPDATE t2 SET c='seventy-two thousand three hundred thirty-two' WHERE a=14296;\nUPDATE t2 SET c='twelve thousand two hundred eighty-three' WHERE a=14297;\nUPDATE t2 SET c='fifty-seven thousand eight hundred seventy-six' WHERE a=14298;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-five' WHERE a=14299;\nUPDATE t2 SET c='thirty-one thousand four hundred two' WHERE a=14300;\nUPDATE t2 SET c='nineteen thousand one hundred fifty-five' WHERE a=14301;\nUPDATE t2 SET c='three thousand seven hundred fifty-nine' WHERE a=14302;\nUPDATE t2 SET c='eighty-seven thousand sixty-nine' WHERE a=14303;\nUPDATE t2 SET c='thirty-four thousand five hundred thirty-seven' WHERE a=14304;\nUPDATE t2 SET c='thirty-nine thousand seven hundred thirty-five' WHERE a=14305;\nUPDATE t2 SET c='fifty-six thousand one hundred forty-nine' WHERE a=14306;\nUPDATE t2 SET c='ninety-three thousand fifty-seven' WHERE a=14307;\nUPDATE t2 SET c='thirty thousand nine hundred forty-six' WHERE a=14308;\nUPDATE t2 SET c='forty-nine thousand one hundred nineteen' WHERE a=14309;\nUPDATE t2 SET c='sixty-six thousand four hundred forty-nine' WHERE a=14310;\nUPDATE t2 SET c='seventy-five thousand seven hundred' WHERE a=14311;\nUPDATE t2 SET c='twenty-one thousand four' WHERE a=14312;\nUPDATE t2 SET c='thirteen thousand four hundred eighty-one' WHERE a=14313;\nUPDATE t2 SET c='four thousand five hundred thirty-five' WHERE a=14314;\nUPDATE t2 SET c='seventy-seven thousand five hundred nine' WHERE a=14315;\nUPDATE t2 SET c='twenty-one thousand five hundred sixty-seven' WHERE a=14316;\nUPDATE t2 SET c='ten thousand fifty-nine' WHERE a=14317;\nUPDATE t2 SET c='three thousand two hundred twenty' WHERE a=14318;\nUPDATE t2 SET c='twenty-two thousand ninety-five' WHERE a=14319;\nUPDATE t2 SET c='five thousand thirty-four' WHERE a=14320;\nUPDATE t2 SET c='ninety-one thousand three hundred three' WHERE a=14321;\nUPDATE t2 SET c='sixteen thousand ninety-one' WHERE a=14322;\nUPDATE t2 SET c='fifty-three thousand one hundred twenty-three' WHERE a=14323;\nUPDATE t2 SET c='nineteen thousand four hundred ninety-eight' WHERE a=14324;\nUPDATE t2 SET c='five thousand four hundred eighty' WHERE a=14325;\nUPDATE t2 SET c='fifty thousand three hundred two' WHERE a=14326;\nUPDATE t2 SET c='thirty-one thousand eighty-eight' WHERE a=14327;\nUPDATE t2 SET c='eighty-one thousand five hundred ninety-seven' WHERE a=14328;\nUPDATE t2 SET c='seven thousand three hundred fifteen' WHERE a=14329;\nUPDATE t2 SET c='sixty-eight thousand seven hundred twenty-one' WHERE a=14330;\nUPDATE t2 SET c='forty-four thousand one hundred forty-nine' WHERE a=14331;\nUPDATE t2 SET c='twenty-eight thousand two hundred sixty-three' WHERE a=14332;\nUPDATE t2 SET c='ninety thousand six hundred fifty' WHERE a=14333;\nUPDATE t2 SET c='twenty thousand ninety-six' WHERE a=14334;\nUPDATE t2 SET c='thirty-three thousand four hundred four' WHERE a=14335;\nUPDATE t2 SET c='forty-seven thousand two hundred eleven' WHERE a=14336;\nUPDATE t2 SET c='thirty thousand three hundred ninety-four' WHERE a=14337;\nUPDATE t2 SET c='sixty-six thousand six hundred forty-one' WHERE a=14338;\nUPDATE t2 SET c='twenty-six thousand four hundred eighty-eight' WHERE a=14339;\nUPDATE t2 SET c='eighty-eight thousand eight hundred eight' WHERE a=14340;\nUPDATE t2 SET c='eighty-one thousand three hundred eighty-two' WHERE a=14341;\nUPDATE t2 SET c='fifty-seven thousand eight hundred eighty' WHERE a=14342;\nUPDATE t2 SET c='ninety-three thousand eight hundred eighty-one' WHERE a=14343;\nUPDATE t2 SET c='twenty-six thousand nine hundred sixty-six' WHERE a=14344;\nUPDATE t2 SET c='ninety-four thousand four hundred twenty-one' WHERE a=14345;\nUPDATE t2 SET c='ninety-five thousand nine hundred forty-six' WHERE a=14346;\nUPDATE t2 SET c='fourteen thousand two hundred thirty-eight' WHERE a=14347;\nUPDATE t2 SET c='twenty-three thousand seven hundred fifty-six' WHERE a=14348;\nUPDATE t2 SET c='fourteen thousand seven hundred twelve' WHERE a=14349;\nUPDATE t2 SET c='fifty-four thousand two hundred eighty-one' WHERE a=14350;\nUPDATE t2 SET c='eighty-six thousand nine hundred twenty-seven' WHERE a=14351;\nUPDATE t2 SET c='sixty-nine thousand three hundred thirty' WHERE a=14352;\nUPDATE t2 SET c='thirty-eight thousand one hundred forty-eight' WHERE a=14353;\nUPDATE t2 SET c='nine thousand seven hundred forty-two' WHERE a=14354;\nUPDATE t2 SET c='eighty-five thousand five hundred thirteen' WHERE a=14355;\nUPDATE t2 SET c='thirty-two thousand ninety-four' WHERE a=14356;\nUPDATE t2 SET c='eighty-eight thousand one hundred twenty-two' WHERE a=14357;\nUPDATE t2 SET c='twenty-nine thousand nine hundred thirty-five' WHERE a=14358;\nUPDATE t2 SET c='thirty-five thousand one hundred thirty-one' WHERE a=14359;\nUPDATE t2 SET c='forty-two thousand eight hundred fifty-four' WHERE a=14360;\nUPDATE t2 SET c='forty-six thousand seven' WHERE a=14361;\nUPDATE t2 SET c='sixteen thousand nine hundred twelve' WHERE a=14362;\nUPDATE t2 SET c='ten thousand two hundred twelve' WHERE a=14363;\nUPDATE t2 SET c='fifty-nine thousand six hundred thirty-six' WHERE a=14364;\nUPDATE t2 SET c='fifty-seven thousand seventy-five' WHERE a=14365;\nUPDATE t2 SET c='eight thousand four hundred sixty-six' WHERE a=14366;\nUPDATE t2 SET c='forty-nine thousand seventy-six' WHERE a=14367;\nUPDATE t2 SET c='thirty-six thousand three hundred fifty-six' WHERE a=14368;\nUPDATE t2 SET c='twenty-one thousand five hundred twenty' WHERE a=14369;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty-four' WHERE a=14370;\nUPDATE t2 SET c='fifty-one thousand' WHERE a=14371;\nUPDATE t2 SET c='one thousand eight hundred one' WHERE a=14372;\nUPDATE t2 SET c='thirty-three thousand nineteen' WHERE a=14373;\nUPDATE t2 SET c='forty-eight thousand nine hundred six' WHERE a=14374;\nUPDATE t2 SET c='thirty-eight thousand four hundred thirty-four' WHERE a=14375;\nUPDATE t2 SET c='twenty-three thousand nine hundred forty-three' WHERE a=14376;\nUPDATE t2 SET c='seventy-four thousand two hundred thirty-three' WHERE a=14377;\nUPDATE t2 SET c='seventy-two thousand one hundred thirty-seven' WHERE a=14378;\nUPDATE t2 SET c='sixty-six thousand seventy-two' WHERE a=14379;\nUPDATE t2 SET c='forty-two thousand five hundred fifty-one' WHERE a=14380;\nUPDATE t2 SET c='seventy thousand seven hundred thirty-three' WHERE a=14381;\nUPDATE t2 SET c='one thousand two hundred sixty-seven' WHERE a=14382;\nUPDATE t2 SET c='fifty-one thousand nine hundred thirty-seven' WHERE a=14383;\nUPDATE t2 SET c='fifty-eight thousand five hundred eighty' WHERE a=14384;\nUPDATE t2 SET c='fifty-seven thousand five hundred fifty-five' WHERE a=14385;\nUPDATE t2 SET c='forty-eight thousand six hundred ninety-three' WHERE a=14386;\nUPDATE t2 SET c='forty-four thousand four hundred seventy-three' WHERE a=14387;\nUPDATE t2 SET c='thirty-six thousand eight hundred seventeen' WHERE a=14388;\nUPDATE t2 SET c='fifteen thousand eight hundred seventy-one' WHERE a=14389;\nUPDATE t2 SET c='forty thousand seven hundred thirty' WHERE a=14390;\nUPDATE t2 SET c='eighty-three thousand four hundred seventy-six' WHERE a=14391;\nUPDATE t2 SET c='forty-seven thousand four hundred ten' WHERE a=14392;\nUPDATE t2 SET c='fifty-four thousand six hundred sixty' WHERE a=14393;\nUPDATE t2 SET c='forty-nine thousand two hundred eight' WHERE a=14394;\nUPDATE t2 SET c='seventy-three thousand one hundred seventy-three' WHERE a=14395;\nUPDATE t2 SET c='sixteen thousand five hundred twenty-one' WHERE a=14396;\nUPDATE t2 SET c='seventy-one thousand four hundred three' WHERE a=14397;\nUPDATE t2 SET c='thirty-four thousand twelve' WHERE a=14398;\nUPDATE t2 SET c='forty-three thousand seven hundred eighty-one' WHERE a=14399;\nUPDATE t2 SET c='seventy-five thousand seven hundred ninety' WHERE a=14400;\nUPDATE t2 SET c='forty-eight thousand three hundred seventy-four' WHERE a=14401;\nUPDATE t2 SET c='sixty-five thousand fifty-six' WHERE a=14402;\nUPDATE t2 SET c='twenty-seven thousand seven hundred eighty-four' WHERE a=14403;\nUPDATE t2 SET c='eighteen thousand five hundred forty-five' WHERE a=14404;\nUPDATE t2 SET c='fifty-three thousand seven hundred twenty-four' WHERE a=14405;\nUPDATE t2 SET c='fifty-three thousand five hundred eight' WHERE a=14406;\nUPDATE t2 SET c='sixty-four thousand ninety-five' WHERE a=14407;\nUPDATE t2 SET c='eighty-eight thousand one hundred fifty' WHERE a=14408;\nUPDATE t2 SET c='forty-nine thousand six hundred forty-three' WHERE a=14409;\nUPDATE t2 SET c='sixty-eight thousand six hundred eighty-nine' WHERE a=14410;\nUPDATE t2 SET c='eight thousand three' WHERE a=14411;\nUPDATE t2 SET c='four thousand six hundred twenty-six' WHERE a=14412;\nUPDATE t2 SET c='seventy-nine thousand one hundred forty-six' WHERE a=14413;\nUPDATE t2 SET c='eighty-five thousand nine hundred fifty-three' WHERE a=14414;\nUPDATE t2 SET c='forty-five thousand eight hundred sixty-eight' WHERE a=14415;\nUPDATE t2 SET c='four thousand four hundred four' WHERE a=14416;\nUPDATE t2 SET c='forty-nine thousand one hundred three' WHERE a=14417;\nUPDATE t2 SET c='sixty-eight thousand five hundred fifty-three' WHERE a=14418;\nUPDATE t2 SET c='nine thousand seven hundred sixty-seven' WHERE a=14419;\nUPDATE t2 SET c='fourteen thousand twelve' WHERE a=14420;\nUPDATE t2 SET c='thirteen thousand three hundred ninety-eight' WHERE a=14421;\nUPDATE t2 SET c='fifty-four thousand six hundred ninety-eight' WHERE a=14422;\nUPDATE t2 SET c='fifty-two thousand one hundred ninety-six' WHERE a=14423;\nUPDATE t2 SET c='thirty-one thousand nine hundred fifty' WHERE a=14424;\nUPDATE t2 SET c='seventy-eight thousand one hundred twenty' WHERE a=14425;\nUPDATE t2 SET c='sixty-four thousand eight hundred forty-one' WHERE a=14426;\nUPDATE t2 SET c='eighty-three thousand eighty-four' WHERE a=14427;\nUPDATE t2 SET c='nineteen thousand one hundred sixty-seven' WHERE a=14428;\nUPDATE t2 SET c='eighty-two thousand two hundred eighteen' WHERE a=14429;\nUPDATE t2 SET c='fifty-seven thousand eighty' WHERE a=14430;\nUPDATE t2 SET c='twenty-four thousand five hundred thirty-six' WHERE a=14431;\nUPDATE t2 SET c='eighty thousand six hundred fifty' WHERE a=14432;\nUPDATE t2 SET c='thirty thousand one hundred three' WHERE a=14433;\nUPDATE t2 SET c='thirty-one thousand five hundred eight' WHERE a=14434;\nUPDATE t2 SET c='eighty-seven thousand two hundred fifteen' WHERE a=14435;\nUPDATE t2 SET c='twenty-five thousand two hundred seventy-seven' WHERE a=14436;\nUPDATE t2 SET c='fifty-five thousand two hundred fourteen' WHERE a=14437;\nUPDATE t2 SET c='forty-nine thousand four hundred thirty-seven' WHERE a=14438;\nUPDATE t2 SET c='fifty-nine thousand one hundred four' WHERE a=14439;\nUPDATE t2 SET c='four thousand two hundred thirteen' WHERE a=14440;\nUPDATE t2 SET c='ninety-nine thousand six hundred thirty-six' WHERE a=14441;\nUPDATE t2 SET c='four thousand seven hundred eighty-eight' WHERE a=14442;\nUPDATE t2 SET c='eighty-four thousand one hundred sixty-nine' WHERE a=14443;\nUPDATE t2 SET c='twenty-eight thousand six hundred ninety-nine' WHERE a=14444;\nUPDATE t2 SET c='two hundred eleven' WHERE a=14445;\nUPDATE t2 SET c='fifty-five thousand nine hundred forty-six' WHERE a=14446;\nUPDATE t2 SET c='fifty-four thousand two hundred twenty-nine' WHERE a=14447;\nUPDATE t2 SET c='eighty-one thousand seven hundred fifty-four' WHERE a=14448;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-eight' WHERE a=14449;\nUPDATE t2 SET c='twenty-four thousand six hundred eighty-one' WHERE a=14450;\nUPDATE t2 SET c='ninety-six thousand nine hundred forty-three' WHERE a=14451;\nUPDATE t2 SET c='eleven thousand two hundred ninety-nine' WHERE a=14452;\nUPDATE t2 SET c='seventy-eight thousand one hundred twenty-one' WHERE a=14453;\nUPDATE t2 SET c='eighty-eight thousand four hundred seventy-nine' WHERE a=14454;\nUPDATE t2 SET c='thirty-two thousand three hundred fifty-six' WHERE a=14455;\nUPDATE t2 SET c='ninety-four thousand three hundred eighty-two' WHERE a=14456;\nUPDATE t2 SET c='seventy-five thousand one hundred forty-seven' WHERE a=14457;\nUPDATE t2 SET c='sixty-seven thousand two hundred fifty-eight' WHERE a=14458;\nUPDATE t2 SET c='thirty-four thousand five hundred thirty-five' WHERE a=14459;\nUPDATE t2 SET c='ninety-three thousand nine hundred thirty-nine' WHERE a=14460;\nUPDATE t2 SET c='eighty thousand five hundred thirty-one' WHERE a=14461;\nUPDATE t2 SET c='thirty-five thousand two hundred nine' WHERE a=14462;\nUPDATE t2 SET c='thirty-two thousand six hundred forty-eight' WHERE a=14463;\nUPDATE t2 SET c='seventy-three thousand seven hundred thirty-two' WHERE a=14464;\nUPDATE t2 SET c='twenty-two thousand eight hundred thirty-three' WHERE a=14465;\nUPDATE t2 SET c='forty-six thousand six hundred thirty' WHERE a=14466;\nUPDATE t2 SET c='sixty-two thousand two hundred seventy-nine' WHERE a=14467;\nUPDATE t2 SET c='thirty-three thousand seven hundred seven' WHERE a=14468;\nUPDATE t2 SET c='sixty-four thousand seven hundred sixty-seven' WHERE a=14469;\nUPDATE t2 SET c='ninety-five thousand eight hundred forty-four' WHERE a=14470;\nUPDATE t2 SET c='one thousand six hundred nine' WHERE a=14471;\nUPDATE t2 SET c='forty thousand one hundred fifty-one' WHERE a=14472;\nUPDATE t2 SET c='seventy-three thousand six hundred twenty-nine' WHERE a=14473;\nUPDATE t2 SET c='fifty-five thousand eight hundred seventy-eight' WHERE a=14474;\nUPDATE t2 SET c='thirty-four thousand nine hundred five' WHERE a=14475;\nUPDATE t2 SET c='twelve thousand nine hundred twenty-one' WHERE a=14476;\nUPDATE t2 SET c='forty-eight thousand six hundred twelve' WHERE a=14477;\nUPDATE t2 SET c='eighty-three thousand two hundred thirty-four' WHERE a=14478;\nUPDATE t2 SET c='eighty-nine thousand thirteen' WHERE a=14479;\nUPDATE t2 SET c='forty-two thousand eight hundred ninety-three' WHERE a=14480;\nUPDATE t2 SET c='seventy-one thousand eight hundred seventy-eight' WHERE a=14481;\nUPDATE t2 SET c='eighty-two thousand seven hundred eighty-two' WHERE a=14482;\nUPDATE t2 SET c='forty-nine thousand one hundred seven' WHERE a=14483;\nUPDATE t2 SET c='eighty-eight thousand one hundred eighty-three' WHERE a=14484;\nUPDATE t2 SET c='twenty-seven thousand three hundred fifty-one' WHERE a=14485;\nUPDATE t2 SET c='thirty-two thousand eight hundred sixty-six' WHERE a=14486;\nUPDATE t2 SET c='ninety-two thousand forty-nine' WHERE a=14487;\nUPDATE t2 SET c='seventy-four thousand seven hundred fifty-two' WHERE a=14488;\nUPDATE t2 SET c='three thousand four hundred forty-nine' WHERE a=14489;\nUPDATE t2 SET c='ninety-seven thousand nine hundred eighty-four' WHERE a=14490;\nUPDATE t2 SET c='fifty-six thousand five hundred eighty-two' WHERE a=14491;\nUPDATE t2 SET c='forty-four thousand five hundred eighty-four' WHERE a=14492;\nUPDATE t2 SET c='thirty-eight thousand one hundred seventy-nine' WHERE a=14493;\nUPDATE t2 SET c='nineteen thousand seven hundred ninety-three' WHERE a=14494;\nUPDATE t2 SET c='eighty thousand two hundred two' WHERE a=14495;\nUPDATE t2 SET c='seventy-seven thousand six hundred eighty-two' WHERE a=14496;\nUPDATE t2 SET c='forty-five thousand four hundred fourteen' WHERE a=14497;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-five' WHERE a=14498;\nUPDATE t2 SET c='sixty thousand seven hundred seventy-seven' WHERE a=14499;\nUPDATE t2 SET c='eighty-three thousand four hundred forty-seven' WHERE a=14500;\nUPDATE t2 SET c='fifteen thousand four hundred fifty-six' WHERE a=14501;\nUPDATE t2 SET c='ninety-five thousand six hundred sixteen' WHERE a=14502;\nUPDATE t2 SET c='thirty-six thousand five hundred one' WHERE a=14503;\nUPDATE t2 SET c='one thousand six hundred eighty-five' WHERE a=14504;\nUPDATE t2 SET c='four thousand one hundred one' WHERE a=14505;\nUPDATE t2 SET c='eleven thousand two hundred forty-three' WHERE a=14506;\nUPDATE t2 SET c='seventy-six thousand eight hundred thirty-five' WHERE a=14507;\nUPDATE t2 SET c='twenty-five thousand four hundred seventeen' WHERE a=14508;\nUPDATE t2 SET c='forty-seven thousand five hundred fourteen' WHERE a=14509;\nUPDATE t2 SET c='sixty-nine thousand eight hundred ten' WHERE a=14510;\nUPDATE t2 SET c='three thousand eight hundred forty-two' WHERE a=14511;\nUPDATE t2 SET c='ninety-five thousand seventy-eight' WHERE a=14512;\nUPDATE t2 SET c='twelve thousand eight hundred seventy-eight' WHERE a=14513;\nUPDATE t2 SET c='thirty-three thousand two hundred sixty-seven' WHERE a=14514;\nUPDATE t2 SET c='seventy-seven thousand three hundred ninety-six' WHERE a=14515;\nUPDATE t2 SET c='eighty-nine thousand four hundred fifty-four' WHERE a=14516;\nUPDATE t2 SET c='twenty-four thousand five hundred ninety-five' WHERE a=14517;\nUPDATE t2 SET c='eighty-four thousand eight hundred fifty-five' WHERE a=14518;\nUPDATE t2 SET c='eighty-seven thousand one hundred seven' WHERE a=14519;\nUPDATE t2 SET c='eighty-six thousand four hundred twenty-nine' WHERE a=14520;\nUPDATE t2 SET c='seventy-four thousand five hundred seventy-three' WHERE a=14521;\nUPDATE t2 SET c='twenty-nine thousand five hundred eighty-six' WHERE a=14522;\nUPDATE t2 SET c='thirty-two thousand twenty-four' WHERE a=14523;\nUPDATE t2 SET c='ninety-two thousand two hundred six' WHERE a=14524;\nUPDATE t2 SET c='twenty thousand three hundred eleven' WHERE a=14525;\nUPDATE t2 SET c='forty-three thousand three hundred fifty-four' WHERE a=14526;\nUPDATE t2 SET c='nine thousand four hundred seventy-nine' WHERE a=14527;\nUPDATE t2 SET c='nineteen thousand nine hundred sixty-six' WHERE a=14528;\nUPDATE t2 SET c='twenty-five thousand eight hundred eighty-one' WHERE a=14529;\nUPDATE t2 SET c='thirty-five thousand ninety-six' WHERE a=14530;\nUPDATE t2 SET c='sixty-seven thousand six hundred eight' WHERE a=14531;\nUPDATE t2 SET c='twenty-four thousand six hundred sixty-four' WHERE a=14532;\nUPDATE t2 SET c='ninety-three thousand eight hundred sixty-two' WHERE a=14533;\nUPDATE t2 SET c='twenty thousand seven hundred ninety-four' WHERE a=14534;\nUPDATE t2 SET c='sixty-two thousand one hundred ninety-five' WHERE a=14535;\nUPDATE t2 SET c='thirty-seven thousand one hundred seventy-six' WHERE a=14536;\nUPDATE t2 SET c='two thousand seven hundred forty-nine' WHERE a=14537;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eight' WHERE a=14538;\nUPDATE t2 SET c='forty-seven thousand three hundred fourteen' WHERE a=14539;\nUPDATE t2 SET c='sixty-six thousand six hundred forty-three' WHERE a=14540;\nUPDATE t2 SET c='eighty-nine thousand two hundred two' WHERE a=14541;\nUPDATE t2 SET c='fifty-three thousand seven hundred eighty-two' WHERE a=14542;\nUPDATE t2 SET c='seventeen thousand one hundred fifty-six' WHERE a=14543;\nUPDATE t2 SET c='thirty-seven thousand nine hundred thirty-three' WHERE a=14544;\nUPDATE t2 SET c='sixty-four thousand one hundred forty-eight' WHERE a=14545;\nUPDATE t2 SET c='thirty-nine thousand three hundred sixty-four' WHERE a=14546;\nUPDATE t2 SET c='twenty-one thousand six hundred sixty-one' WHERE a=14547;\nUPDATE t2 SET c='thirty-four thousand one hundred thirteen' WHERE a=14548;\nUPDATE t2 SET c='ninety-one thousand eight hundred seventy-two' WHERE a=14549;\nUPDATE t2 SET c='thirty-five thousand three hundred twenty-two' WHERE a=14550;\nUPDATE t2 SET c='eighty-six thousand one hundred twenty-eight' WHERE a=14551;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty-one' WHERE a=14552;\nUPDATE t2 SET c='forty-seven thousand nine hundred sixty-five' WHERE a=14553;\nUPDATE t2 SET c='thirty-six thousand forty-one' WHERE a=14554;\nUPDATE t2 SET c='thirty-eight thousand thirty-five' WHERE a=14555;\nUPDATE t2 SET c='eighty-eight thousand fifty-three' WHERE a=14556;\nUPDATE t2 SET c='fifty-four thousand two hundred twenty-one' WHERE a=14557;\nUPDATE t2 SET c='ten thousand two hundred fifty-nine' WHERE a=14558;\nUPDATE t2 SET c='thirty-four thousand five hundred seventy-four' WHERE a=14559;\nUPDATE t2 SET c='seventy-five thousand four hundred forty-nine' WHERE a=14560;\nUPDATE t2 SET c='thirteen thousand nine hundred twenty-nine' WHERE a=14561;\nUPDATE t2 SET c='ninety-one thousand one hundred fifty-three' WHERE a=14562;\nUPDATE t2 SET c='fifty-five thousand seven hundred sixty-three' WHERE a=14563;\nUPDATE t2 SET c='thirty-three thousand four hundred thirty-nine' WHERE a=14564;\nUPDATE t2 SET c='twenty-eight thousand four hundred' WHERE a=14565;\nUPDATE t2 SET c='forty-eight thousand forty-one' WHERE a=14566;\nUPDATE t2 SET c='nine thousand six hundred sixty-two' WHERE a=14567;\nUPDATE t2 SET c='forty-three thousand eight hundred fifty-seven' WHERE a=14568;\nUPDATE t2 SET c='forty-five thousand five hundred fifty-one' WHERE a=14569;\nUPDATE t2 SET c='eighty-six thousand two hundred ninety-eight' WHERE a=14570;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventy-eight' WHERE a=14571;\nUPDATE t2 SET c='twenty-nine thousand six hundred twelve' WHERE a=14572;\nUPDATE t2 SET c='fifty-three thousand two hundred sixty' WHERE a=14573;\nUPDATE t2 SET c='eighty thousand one hundred seventy-six' WHERE a=14574;\nUPDATE t2 SET c='ninety-three thousand one hundred fifty-seven' WHERE a=14575;\nUPDATE t2 SET c='sixty-seven thousand five hundred fifty-seven' WHERE a=14576;\nUPDATE t2 SET c='seventy-nine thousand two hundred forty-four' WHERE a=14577;\nUPDATE t2 SET c='five thousand nine hundred fifty-seven' WHERE a=14578;\nUPDATE t2 SET c='eighty-eight thousand eight hundred twenty' WHERE a=14579;\nUPDATE t2 SET c='fifty-three thousand eight hundred fifty-three' WHERE a=14580;\nUPDATE t2 SET c='fifty-four thousand six hundred fifty-five' WHERE a=14581;\nUPDATE t2 SET c='forty-seven thousand eight hundred forty-nine' WHERE a=14582;\nUPDATE t2 SET c='twenty thousand nine hundred nineteen' WHERE a=14583;\nUPDATE t2 SET c='sixty-four thousand seven hundred eleven' WHERE a=14584;\nUPDATE t2 SET c='fifty-eight thousand eight hundred twenty-one' WHERE a=14585;\nUPDATE t2 SET c='fifty-seven thousand eight hundred nineteen' WHERE a=14586;\nUPDATE t2 SET c='eighty-two thousand eight hundred two' WHERE a=14587;\nUPDATE t2 SET c='thirteen thousand nine hundred thirty-five' WHERE a=14588;\nUPDATE t2 SET c='seventy-five thousand two hundred forty-seven' WHERE a=14589;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighty-four' WHERE a=14590;\nUPDATE t2 SET c='thirty-five thousand two hundred ninety-six' WHERE a=14591;\nUPDATE t2 SET c='thirty-one thousand two hundred sixty-seven' WHERE a=14592;\nUPDATE t2 SET c='sixty-two thousand two hundred ten' WHERE a=14593;\nUPDATE t2 SET c='seventy-nine thousand five hundred ninety-nine' WHERE a=14594;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-five' WHERE a=14595;\nUPDATE t2 SET c='twenty thousand three hundred twenty-three' WHERE a=14596;\nUPDATE t2 SET c='thirteen thousand three hundred eighty-two' WHERE a=14597;\nUPDATE t2 SET c='forty-nine thousand two hundred ninety-seven' WHERE a=14598;\nUPDATE t2 SET c='eighty-four thousand five hundred thirty-three' WHERE a=14599;\nUPDATE t2 SET c='fifty-six thousand two hundred three' WHERE a=14600;\nUPDATE t2 SET c='eighteen thousand three hundred fifty-three' WHERE a=14601;\nUPDATE t2 SET c='three thousand four hundred thirty-one' WHERE a=14602;\nUPDATE t2 SET c='eighteen thousand six hundred one' WHERE a=14603;\nUPDATE t2 SET c='eighty-nine thousand nine hundred fifty-seven' WHERE a=14604;\nUPDATE t2 SET c='fifty-four thousand three hundred forty-one' WHERE a=14605;\nUPDATE t2 SET c='seventeen thousand six hundred eighty-seven' WHERE a=14606;\nUPDATE t2 SET c='fifty-four thousand eight hundred ninety-one' WHERE a=14607;\nUPDATE t2 SET c='twenty-eight thousand six hundred ninety-four' WHERE a=14608;\nUPDATE t2 SET c='ninety-three thousand sixty-seven' WHERE a=14609;\nUPDATE t2 SET c='fifty thousand seven hundred eighty-two' WHERE a=14610;\nUPDATE t2 SET c='fourteen thousand three hundred twenty-two' WHERE a=14611;\nUPDATE t2 SET c='thirty-four thousand six hundred fifty-two' WHERE a=14612;\nUPDATE t2 SET c='twenty-six thousand ninety-nine' WHERE a=14613;\nUPDATE t2 SET c='seventy-eight thousand one hundred eighty-two' WHERE a=14614;\nUPDATE t2 SET c='fifty-two thousand nine hundred thirty-eight' WHERE a=14615;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty-six' WHERE a=14616;\nUPDATE t2 SET c='eighty-nine thousand one hundred seventy-eight' WHERE a=14617;\nUPDATE t2 SET c='ninety-four thousand one hundred eighty-five' WHERE a=14618;\nUPDATE t2 SET c='thirty-two thousand four hundred sixty-eight' WHERE a=14619;\nUPDATE t2 SET c='twenty-two thousand four hundred eight' WHERE a=14620;\nUPDATE t2 SET c='fifteen thousand six hundred fifty-six' WHERE a=14621;\nUPDATE t2 SET c='thirty-seven thousand four hundred seventy-four' WHERE a=14622;\nUPDATE t2 SET c='fifty-seven thousand eight hundred twenty-nine' WHERE a=14623;\nUPDATE t2 SET c='ninety-seven thousand five hundred forty' WHERE a=14624;\nUPDATE t2 SET c='ninety-three thousand seven hundred ninety-four' WHERE a=14625;\nUPDATE t2 SET c='eight thousand four hundred twenty-one' WHERE a=14626;\nUPDATE t2 SET c='ninety-five thousand eighty-six' WHERE a=14627;\nUPDATE t2 SET c='sixty-four thousand seventy-four' WHERE a=14628;\nUPDATE t2 SET c='forty-four thousand nine hundred twenty-eight' WHERE a=14629;\nUPDATE t2 SET c='thirty-three thousand four hundred seven' WHERE a=14630;\nUPDATE t2 SET c='seventeen thousand five hundred twenty-one' WHERE a=14631;\nUPDATE t2 SET c='fifty-five thousand eight hundred ninety-seven' WHERE a=14632;\nUPDATE t2 SET c='ninety-five thousand one hundred sixty-seven' WHERE a=14633;\nUPDATE t2 SET c='three thousand seven hundred eighty' WHERE a=14634;\nUPDATE t2 SET c='six hundred sixty-two' WHERE a=14635;\nUPDATE t2 SET c='seventy-four thousand three hundred eighty-six' WHERE a=14636;\nUPDATE t2 SET c='thirty-six thousand three hundred fifty' WHERE a=14637;\nUPDATE t2 SET c='seventy thousand four hundred ninety-nine' WHERE a=14638;\nUPDATE t2 SET c='twelve thousand thirty-five' WHERE a=14639;\nUPDATE t2 SET c='fifty-five thousand six hundred ninety-nine' WHERE a=14640;\nUPDATE t2 SET c='twenty-two thousand three hundred sixteen' WHERE a=14641;\nUPDATE t2 SET c='fifty-five thousand three hundred nineteen' WHERE a=14642;\nUPDATE t2 SET c='nineteen thousand seven hundred forty-nine' WHERE a=14643;\nUPDATE t2 SET c='fourteen thousand six' WHERE a=14644;\nUPDATE t2 SET c='thirty-seven thousand six hundred twenty' WHERE a=14645;\nUPDATE t2 SET c='eighty-seven thousand two hundred seventy-one' WHERE a=14646;\nUPDATE t2 SET c='seventy-four thousand forty-five' WHERE a=14647;\nUPDATE t2 SET c='one thousand six hundred thirty-four' WHERE a=14648;\nUPDATE t2 SET c='eighty-two thousand five hundred sixty-four' WHERE a=14649;\nUPDATE t2 SET c='eighty-two thousand five hundred eighty-nine' WHERE a=14650;\nUPDATE t2 SET c='thirty-nine thousand four hundred forty-five' WHERE a=14651;\nUPDATE t2 SET c='sixty-one thousand two hundred seven' WHERE a=14652;\nUPDATE t2 SET c='four thousand nine hundred thirty-four' WHERE a=14653;\nUPDATE t2 SET c='eighty-two thousand four hundred forty-five' WHERE a=14654;\nUPDATE t2 SET c='eighty-five thousand eight hundred ninety-five' WHERE a=14655;\nUPDATE t2 SET c='eighteen thousand five hundred fifty-three' WHERE a=14656;\nUPDATE t2 SET c='seven thousand two hundred fifty-six' WHERE a=14657;\nUPDATE t2 SET c='ninety-six thousand nine hundred forty' WHERE a=14658;\nUPDATE t2 SET c='ninety-nine thousand four hundred sixty-four' WHERE a=14659;\nUPDATE t2 SET c='seventy thousand eight hundred twenty-eight' WHERE a=14660;\nUPDATE t2 SET c='forty-nine thousand seven hundred eighty-four' WHERE a=14661;\nUPDATE t2 SET c='ninety-two thousand nine hundred ninety-five' WHERE a=14662;\nUPDATE t2 SET c='eighty-one thousand eight hundred ten' WHERE a=14663;\nUPDATE t2 SET c='thirteen thousand two hundred twenty-one' WHERE a=14664;\nUPDATE t2 SET c='seventy-three thousand three hundred fifty-eight' WHERE a=14665;\nUPDATE t2 SET c='ninety-five thousand one hundred eighty-three' WHERE a=14666;\nUPDATE t2 SET c='sixty-eight thousand two hundred seventy-three' WHERE a=14667;\nUPDATE t2 SET c='twenty-one thousand one hundred thirty-one' WHERE a=14668;\nUPDATE t2 SET c='ninety-six thousand one hundred fifty' WHERE a=14669;\nUPDATE t2 SET c='three thousand eight hundred sixty-nine' WHERE a=14670;\nUPDATE t2 SET c='eighty-two thousand eight hundred ninety-one' WHERE a=14671;\nUPDATE t2 SET c='seventy-four thousand five hundred eighty-one' WHERE a=14672;\nUPDATE t2 SET c='forty-nine thousand eight hundred twenty-one' WHERE a=14673;\nUPDATE t2 SET c='fifty-two thousand three hundred fourteen' WHERE a=14674;\nUPDATE t2 SET c='eighty-three thousand seven hundred thirteen' WHERE a=14675;\nUPDATE t2 SET c='eighty-seven thousand three hundred forty-seven' WHERE a=14676;\nUPDATE t2 SET c='thirteen thousand six hundred fifty-six' WHERE a=14677;\nUPDATE t2 SET c='twelve thousand four hundred eighty-one' WHERE a=14678;\nUPDATE t2 SET c='two thousand four hundred ninety-one' WHERE a=14679;\nUPDATE t2 SET c='forty-five thousand eight hundred eight' WHERE a=14680;\nUPDATE t2 SET c='forty-one thousand one hundred eleven' WHERE a=14681;\nUPDATE t2 SET c='twenty-two thousand four hundred eighty-three' WHERE a=14682;\nUPDATE t2 SET c='ninety-eight thousand five hundred fifteen' WHERE a=14683;\nUPDATE t2 SET c='thirty-three thousand four hundred one' WHERE a=14684;\nUPDATE t2 SET c='sixty thousand seven hundred eighty-three' WHERE a=14685;\nUPDATE t2 SET c='four thousand eight hundred sixty-six' WHERE a=14686;\nUPDATE t2 SET c='twenty-seven thousand five hundred eighty' WHERE a=14687;\nUPDATE t2 SET c='seventy-eight thousand one hundred thirteen' WHERE a=14688;\nUPDATE t2 SET c='eight thousand fourteen' WHERE a=14689;\nUPDATE t2 SET c='twenty-six thousand five hundred forty-four' WHERE a=14690;\nUPDATE t2 SET c='forty thousand two hundred forty' WHERE a=14691;\nUPDATE t2 SET c='twenty-two thousand five hundred fifty-two' WHERE a=14692;\nUPDATE t2 SET c='forty-nine thousand eight hundred ninety-two' WHERE a=14693;\nUPDATE t2 SET c='two thousand nine hundred forty-one' WHERE a=14694;\nUPDATE t2 SET c='eighty-four thousand seven hundred ninety-eight' WHERE a=14695;\nUPDATE t2 SET c='two thousand three hundred forty-eight' WHERE a=14696;\nUPDATE t2 SET c='thirty-five thousand five hundred' WHERE a=14697;\nUPDATE t2 SET c='forty thousand six hundred sixty-seven' WHERE a=14698;\nUPDATE t2 SET c='sixty-two thousand two hundred fifty-three' WHERE a=14699;\nUPDATE t2 SET c='eighty-one thousand eight hundred six' WHERE a=14700;\nUPDATE t2 SET c='seventy-five thousand four hundred four' WHERE a=14701;\nUPDATE t2 SET c='twenty-four thousand two hundred thirty-five' WHERE a=14702;\nUPDATE t2 SET c='eight thousand seven hundred twenty-nine' WHERE a=14703;\nUPDATE t2 SET c='forty-four thousand two hundred fifty-eight' WHERE a=14704;\nUPDATE t2 SET c='eighty-three thousand two hundred' WHERE a=14705;\nUPDATE t2 SET c='fifty-three thousand sixty-three' WHERE a=14706;\nUPDATE t2 SET c='eighty thousand four hundred seventy-six' WHERE a=14707;\nUPDATE t2 SET c='seven thousand seven hundred fifty-eight' WHERE a=14708;\nUPDATE t2 SET c='eighteen thousand six hundred thirty-seven' WHERE a=14709;\nUPDATE t2 SET c='eighty-three thousand one hundred eleven' WHERE a=14710;\nUPDATE t2 SET c='ninety-two thousand two hundred fifty-seven' WHERE a=14711;\nUPDATE t2 SET c='ninety thousand eight hundred sixty' WHERE a=14712;\nUPDATE t2 SET c='twelve thousand two hundred twenty-five' WHERE a=14713;\nUPDATE t2 SET c='fifty-seven thousand seven hundred forty-one' WHERE a=14714;\nUPDATE t2 SET c='ninety-three thousand four hundred thirty-one' WHERE a=14715;\nUPDATE t2 SET c='seventy-two thousand five hundred ninety-nine' WHERE a=14716;\nUPDATE t2 SET c='thirty-three thousand one hundred five' WHERE a=14717;\nUPDATE t2 SET c='eighty-seven thousand nine hundred twenty-one' WHERE a=14718;\nUPDATE t2 SET c='forty-six thousand eight hundred eighty-seven' WHERE a=14719;\nUPDATE t2 SET c='twenty-one thousand one hundred seventy-three' WHERE a=14720;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty' WHERE a=14721;\nUPDATE t2 SET c='twelve thousand seven hundred eighty-four' WHERE a=14722;\nUPDATE t2 SET c='one thousand nine hundred twenty-nine' WHERE a=14723;\nUPDATE t2 SET c='seventy-nine thousand seven hundred seven' WHERE a=14724;\nUPDATE t2 SET c='fifty-seven thousand nine hundred ninety-one' WHERE a=14725;\nUPDATE t2 SET c='ninety-two thousand fifty-eight' WHERE a=14726;\nUPDATE t2 SET c='eighteen thousand eight hundred sixty' WHERE a=14727;\nUPDATE t2 SET c='nine thousand three hundred' WHERE a=14728;\nUPDATE t2 SET c='twenty-three thousand four hundred ninety-nine' WHERE a=14729;\nUPDATE t2 SET c='thirty thousand two hundred nineteen' WHERE a=14730;\nUPDATE t2 SET c='twenty-eight thousand eight hundred fifty-seven' WHERE a=14731;\nUPDATE t2 SET c='ninety-one thousand six hundred eleven' WHERE a=14732;\nUPDATE t2 SET c='seventy-two thousand five hundred fifty-four' WHERE a=14733;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty-eight' WHERE a=14734;\nUPDATE t2 SET c='seven thousand two hundred fifty-four' WHERE a=14735;\nUPDATE t2 SET c='forty-three thousand six hundred sixty-two' WHERE a=14736;\nUPDATE t2 SET c='ten thousand one hundred eighty-four' WHERE a=14737;\nUPDATE t2 SET c='thirty-nine thousand seven hundred nine' WHERE a=14738;\nUPDATE t2 SET c='seventy-seven thousand two hundred fifty-seven' WHERE a=14739;\nUPDATE t2 SET c='eighteen thousand six hundred nine' WHERE a=14740;\nUPDATE t2 SET c='thirty-four thousand six hundred sixty-six' WHERE a=14741;\nUPDATE t2 SET c='one hundred fourteen' WHERE a=14742;\nUPDATE t2 SET c='fifty-five thousand seven hundred ninety-six' WHERE a=14743;\nUPDATE t2 SET c='forty thousand five hundred seventy-nine' WHERE a=14744;\nUPDATE t2 SET c='eighty-nine thousand nine hundred six' WHERE a=14745;\nUPDATE t2 SET c='eighty-five thousand five hundred sixteen' WHERE a=14746;\nUPDATE t2 SET c='eighty-nine thousand seven hundred twenty-three' WHERE a=14747;\nUPDATE t2 SET c='forty-four thousand eight hundred seventy-five' WHERE a=14748;\nUPDATE t2 SET c='eighty-six thousand nine hundred thirty-six' WHERE a=14749;\nUPDATE t2 SET c='forty-eight thousand nine hundred thirteen' WHERE a=14750;\nUPDATE t2 SET c='thirty thousand two hundred sixty' WHERE a=14751;\nUPDATE t2 SET c='eighty thousand seven hundred eight' WHERE a=14752;\nUPDATE t2 SET c='seventy-five thousand eight hundred seventy-one' WHERE a=14753;\nUPDATE t2 SET c='eleven thousand five hundred fifty-nine' WHERE a=14754;\nUPDATE t2 SET c='twenty-two thousand ninety-eight' WHERE a=14755;\nUPDATE t2 SET c='seventy-two thousand seven hundred twenty-seven' WHERE a=14756;\nUPDATE t2 SET c='fifty thousand eight hundred twenty' WHERE a=14757;\nUPDATE t2 SET c='eighty-eight thousand five hundred seventy-three' WHERE a=14758;\nUPDATE t2 SET c='ninety-four thousand two hundred seventy-four' WHERE a=14759;\nUPDATE t2 SET c='thirty-two thousand nine hundred sixty-three' WHERE a=14760;\nUPDATE t2 SET c='thirty-six thousand two hundred seventy-six' WHERE a=14761;\nUPDATE t2 SET c='thirteen thousand three hundred twenty-five' WHERE a=14762;\nUPDATE t2 SET c='fifty-four thousand two hundred ninety-three' WHERE a=14763;\nUPDATE t2 SET c='thirty thousand eight hundred seventy-seven' WHERE a=14764;\nUPDATE t2 SET c='thirty-four thousand three hundred ninety-two' WHERE a=14765;\nUPDATE t2 SET c='eighty-one thousand six hundred one' WHERE a=14766;\nUPDATE t2 SET c='seventy thousand one hundred seventeen' WHERE a=14767;\nUPDATE t2 SET c='ninety-nine thousand six hundred fifty-eight' WHERE a=14768;\nUPDATE t2 SET c='eighty-three thousand five hundred eleven' WHERE a=14769;\nUPDATE t2 SET c='seventy-six thousand five hundred ninety-eight' WHERE a=14770;\nUPDATE t2 SET c='thirty-four thousand eight hundred sixty-six' WHERE a=14771;\nUPDATE t2 SET c='twenty-nine thousand three hundred sixty-six' WHERE a=14772;\nUPDATE t2 SET c='sixty-eight thousand nine hundred seventy-four' WHERE a=14773;\nUPDATE t2 SET c='one thousand two hundred forty-three' WHERE a=14774;\nUPDATE t2 SET c='thirty-five thousand two hundred sixty-eight' WHERE a=14775;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighty-six' WHERE a=14776;\nUPDATE t2 SET c='ninety-four thousand two hundred sixty-three' WHERE a=14777;\nUPDATE t2 SET c='fifty-seven thousand six hundred seventy-four' WHERE a=14778;\nUPDATE t2 SET c='sixty-eight thousand eight hundred seventy-six' WHERE a=14779;\nUPDATE t2 SET c='thirty thousand one hundred sixty-seven' WHERE a=14780;\nUPDATE t2 SET c='forty-nine thousand seven hundred nine' WHERE a=14781;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-five' WHERE a=14782;\nUPDATE t2 SET c='thirteen thousand eight hundred thirty-three' WHERE a=14783;\nUPDATE t2 SET c='fifteen thousand one hundred seventy-four' WHERE a=14784;\nUPDATE t2 SET c='thirty-five thousand four hundred thirty' WHERE a=14785;\nUPDATE t2 SET c='thirty-eight thousand five hundred forty-four' WHERE a=14786;\nUPDATE t2 SET c='seventy-one thousand one hundred ninety' WHERE a=14787;\nUPDATE t2 SET c='forty-three thousand three hundred forty-four' WHERE a=14788;\nUPDATE t2 SET c='sixty-three thousand thirty-eight' WHERE a=14789;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-eight' WHERE a=14790;\nUPDATE t2 SET c='fifty-one thousand two hundred fifty-three' WHERE a=14791;\nUPDATE t2 SET c='twenty-nine thousand eight hundred sixty-two' WHERE a=14792;\nUPDATE t2 SET c='six thousand two hundred seventy-six' WHERE a=14793;\nUPDATE t2 SET c='forty thousand six hundred nine' WHERE a=14794;\nUPDATE t2 SET c='twenty-nine thousand six hundred one' WHERE a=14795;\nUPDATE t2 SET c='ninety-eight thousand two hundred forty-one' WHERE a=14796;\nUPDATE t2 SET c='sixty-eight thousand five hundred forty-seven' WHERE a=14797;\nUPDATE t2 SET c='two hundred twenty-eight' WHERE a=14798;\nUPDATE t2 SET c='fourteen thousand eight hundred forty-nine' WHERE a=14799;\nUPDATE t2 SET c='forty-nine thousand five hundred two' WHERE a=14800;\nUPDATE t2 SET c='sixty-eight thousand three hundred eighty-seven' WHERE a=14801;\nUPDATE t2 SET c='two thousand four hundred three' WHERE a=14802;\nUPDATE t2 SET c='fifty-six thousand two hundred seventy-five' WHERE a=14803;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty' WHERE a=14804;\nUPDATE t2 SET c='forty-two thousand five hundred thirty-four' WHERE a=14805;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-one' WHERE a=14806;\nUPDATE t2 SET c='forty-nine thousand nine hundred sixteen' WHERE a=14807;\nUPDATE t2 SET c='fifty-seven thousand nine hundred one' WHERE a=14808;\nUPDATE t2 SET c='ninety-five thousand seven hundred ninety-four' WHERE a=14809;\nUPDATE t2 SET c='five thousand nineteen' WHERE a=14810;\nUPDATE t2 SET c='forty-one thousand three hundred sixty-six' WHERE a=14811;\nUPDATE t2 SET c='seventeen thousand four hundred eight' WHERE a=14812;\nUPDATE t2 SET c='thirty-five thousand two hundred sixteen' WHERE a=14813;\nUPDATE t2 SET c='seven thousand forty-four' WHERE a=14814;\nUPDATE t2 SET c='twenty-seven thousand one hundred forty-six' WHERE a=14815;\nUPDATE t2 SET c='seven thousand seven hundred eighty-two' WHERE a=14816;\nUPDATE t2 SET c='ninety-six thousand seven hundred fifty-two' WHERE a=14817;\nUPDATE t2 SET c='sixty-seven thousand seven hundred forty-two' WHERE a=14818;\nUPDATE t2 SET c='seventeen thousand seven hundred fifty-five' WHERE a=14819;\nUPDATE t2 SET c='seventeen thousand one hundred seventy-four' WHERE a=14820;\nUPDATE t2 SET c='fourteen thousand two hundred fifty-three' WHERE a=14821;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirty-seven' WHERE a=14822;\nUPDATE t2 SET c='seven thousand seven hundred ninety-eight' WHERE a=14823;\nUPDATE t2 SET c='ninety-two thousand six hundred eighteen' WHERE a=14824;\nUPDATE t2 SET c='eighty-five thousand eight hundred eighty-two' WHERE a=14825;\nUPDATE t2 SET c='eighty-five thousand three hundred fifty' WHERE a=14826;\nUPDATE t2 SET c='ninety thousand four hundred eight' WHERE a=14827;\nUPDATE t2 SET c='eight thousand three hundred forty-nine' WHERE a=14828;\nUPDATE t2 SET c='ten thousand four hundred six' WHERE a=14829;\nUPDATE t2 SET c='sixty-one thousand twenty' WHERE a=14830;\nUPDATE t2 SET c='sixty-seven thousand three hundred five' WHERE a=14831;\nUPDATE t2 SET c='twelve thousand eight' WHERE a=14832;\nUPDATE t2 SET c='twenty thousand seven hundred seventy' WHERE a=14833;\nUPDATE t2 SET c='thirteen thousand sixty-four' WHERE a=14834;\nUPDATE t2 SET c='seventy-one thousand six hundred eighty-one' WHERE a=14835;\nUPDATE t2 SET c='eighty-seven thousand five hundred sixty-six' WHERE a=14836;\nUPDATE t2 SET c='fifty-nine thousand seven hundred fifty-eight' WHERE a=14837;\nUPDATE t2 SET c='ninety-one thousand six hundred eighteen' WHERE a=14838;\nUPDATE t2 SET c='ninety-six thousand seven hundred sixty-five' WHERE a=14839;\nUPDATE t2 SET c='four thousand forty-two' WHERE a=14840;\nUPDATE t2 SET c='ninety-six thousand five hundred fifty-eight' WHERE a=14841;\nUPDATE t2 SET c='nine thousand nine hundred twenty-four' WHERE a=14842;\nUPDATE t2 SET c='fifty thousand two hundred nineteen' WHERE a=14843;\nUPDATE t2 SET c='ninety-two thousand three hundred seventy-eight' WHERE a=14844;\nUPDATE t2 SET c='fifteen thousand six hundred fourteen' WHERE a=14845;\nUPDATE t2 SET c='ninety-nine thousand one hundred thirty-eight' WHERE a=14846;\nUPDATE t2 SET c='thirty-one thousand five hundred seventy-three' WHERE a=14847;\nUPDATE t2 SET c='fifteen thousand forty-nine' WHERE a=14848;\nUPDATE t2 SET c='seventy-one thousand six hundred ninety-four' WHERE a=14849;\nUPDATE t2 SET c='eighty-nine thousand seven hundred ninety-nine' WHERE a=14850;\nUPDATE t2 SET c='three hundred twelve' WHERE a=14851;\nUPDATE t2 SET c='twenty-three thousand nine hundred thirty-nine' WHERE a=14852;\nUPDATE t2 SET c='eighty-six thousand fifty-six' WHERE a=14853;\nUPDATE t2 SET c='seventy-six thousand nine hundred eighty' WHERE a=14854;\nUPDATE t2 SET c='thirteen thousand seven hundred forty-three' WHERE a=14855;\nUPDATE t2 SET c='seventy-one thousand five hundred sixty-six' WHERE a=14856;\nUPDATE t2 SET c='one thousand fifty-three' WHERE a=14857;\nUPDATE t2 SET c='eighty-nine thousand three hundred twenty-eight' WHERE a=14858;\nUPDATE t2 SET c='sixty-two thousand seven hundred ninety-three' WHERE a=14859;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-five' WHERE a=14860;\nUPDATE t2 SET c='forty-nine thousand five hundred fifty-eight' WHERE a=14861;\nUPDATE t2 SET c='ninety-nine thousand seven hundred fourteen' WHERE a=14862;\nUPDATE t2 SET c='seven thousand thirty-five' WHERE a=14863;\nUPDATE t2 SET c='thirty-eight thousand four hundred sixty-four' WHERE a=14864;\nUPDATE t2 SET c='sixty-three thousand six hundred fifty-four' WHERE a=14865;\nUPDATE t2 SET c='fifty-nine thousand two hundred seventy-seven' WHERE a=14866;\nUPDATE t2 SET c='sixty-one thousand eight hundred twelve' WHERE a=14867;\nUPDATE t2 SET c='fifty-five thousand two hundred twelve' WHERE a=14868;\nUPDATE t2 SET c='ninety-two thousand three hundred sixty-three' WHERE a=14869;\nUPDATE t2 SET c='thirty-seven thousand thirty-nine' WHERE a=14870;\nUPDATE t2 SET c='twenty-five thousand eight hundred eighty-eight' WHERE a=14871;\nUPDATE t2 SET c='six thousand nine hundred seventy-one' WHERE a=14872;\nUPDATE t2 SET c='forty-nine thousand eight hundred twenty-six' WHERE a=14873;\nUPDATE t2 SET c='three thousand two hundred seventy-nine' WHERE a=14874;\nUPDATE t2 SET c='twelve thousand nine hundred forty-three' WHERE a=14875;\nUPDATE t2 SET c='thirteen thousand six hundred seventy-six' WHERE a=14876;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-two' WHERE a=14877;\nUPDATE t2 SET c='eight thousand six hundred eighty' WHERE a=14878;\nUPDATE t2 SET c='four thousand five hundred four' WHERE a=14879;\nUPDATE t2 SET c='forty-seven thousand nine hundred seventy-nine' WHERE a=14880;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirty' WHERE a=14881;\nUPDATE t2 SET c='ninety-seven thousand seven hundred fifty-two' WHERE a=14882;\nUPDATE t2 SET c='eighty-five thousand five hundred nineteen' WHERE a=14883;\nUPDATE t2 SET c='seventy-nine thousand six hundred three' WHERE a=14884;\nUPDATE t2 SET c='seven thousand nine hundred twenty-two' WHERE a=14885;\nUPDATE t2 SET c='twenty-nine thousand four hundred fourteen' WHERE a=14886;\nUPDATE t2 SET c='fifty thousand seven hundred fifty-seven' WHERE a=14887;\nUPDATE t2 SET c='seventy-seven thousand sixty-six' WHERE a=14888;\nUPDATE t2 SET c='forty-six thousand six hundred eighty-two' WHERE a=14889;\nUPDATE t2 SET c='two thousand forty-one' WHERE a=14890;\nUPDATE t2 SET c='forty-six thousand two hundred twenty' WHERE a=14891;\nUPDATE t2 SET c='seventy-eight thousand nine hundred ninety-seven' WHERE a=14892;\nUPDATE t2 SET c='sixteen thousand three hundred sixty-four' WHERE a=14893;\nUPDATE t2 SET c='thirty-one thousand three hundred forty-two' WHERE a=14894;\nUPDATE t2 SET c='seventy-nine thousand one hundred ninety-five' WHERE a=14895;\nUPDATE t2 SET c='seventy-two thousand fifteen' WHERE a=14896;\nUPDATE t2 SET c='sixty-four thousand eight hundred ninety-seven' WHERE a=14897;\nUPDATE t2 SET c='fifty-three thousand two hundred fifty-four' WHERE a=14898;\nUPDATE t2 SET c='sixteen thousand six hundred nine' WHERE a=14899;\nUPDATE t2 SET c='fifty thousand two hundred thirty-eight' WHERE a=14900;\nUPDATE t2 SET c='ninety-two thousand six hundred ninety-three' WHERE a=14901;\nUPDATE t2 SET c='twenty-eight thousand nine hundred six' WHERE a=14902;\nUPDATE t2 SET c='forty-one thousand eight hundred fifty-nine' WHERE a=14903;\nUPDATE t2 SET c='thirty thousand nine hundred twenty-three' WHERE a=14904;\nUPDATE t2 SET c='eighty-eight thousand two hundred fifty-eight' WHERE a=14905;\nUPDATE t2 SET c='sixty-four thousand one hundred six' WHERE a=14906;\nUPDATE t2 SET c='nineteen thousand eight hundred thirty-seven' WHERE a=14907;\nUPDATE t2 SET c='twenty-four thousand eight hundred' WHERE a=14908;\nUPDATE t2 SET c='eighty-five thousand six hundred thirty-nine' WHERE a=14909;\nUPDATE t2 SET c='one thousand sixty-four' WHERE a=14910;\nUPDATE t2 SET c='forty-eight thousand eight hundred fourteen' WHERE a=14911;\nUPDATE t2 SET c='one thousand six hundred fifty-six' WHERE a=14912;\nUPDATE t2 SET c='forty-eight thousand seven hundred fifty-four' WHERE a=14913;\nUPDATE t2 SET c='twelve thousand five hundred fifty-two' WHERE a=14914;\nUPDATE t2 SET c='one thousand six hundred seventy-eight' WHERE a=14915;\nUPDATE t2 SET c='twenty-five thousand eight hundred forty-five' WHERE a=14916;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-five' WHERE a=14917;\nUPDATE t2 SET c='thirty-one thousand fifty' WHERE a=14918;\nUPDATE t2 SET c='twelve thousand three hundred twenty' WHERE a=14919;\nUPDATE t2 SET c='forty thousand seven hundred twenty-nine' WHERE a=14920;\nUPDATE t2 SET c='twenty-five thousand five hundred seventy-seven' WHERE a=14921;\nUPDATE t2 SET c='one thousand six hundred ninety' WHERE a=14922;\nUPDATE t2 SET c='one thousand six hundred eighteen' WHERE a=14923;\nUPDATE t2 SET c='sixty-two thousand eight hundred ninety-five' WHERE a=14924;\nUPDATE t2 SET c='fifty-two thousand four hundred ninety-eight' WHERE a=14925;\nUPDATE t2 SET c='ninety-three thousand eight hundred ninety-three' WHERE a=14926;\nUPDATE t2 SET c='five thousand eighty-eight' WHERE a=14927;\nUPDATE t2 SET c='sixteen thousand two hundred sixty-three' WHERE a=14928;\nUPDATE t2 SET c='thirty-three thousand eight hundred twenty-nine' WHERE a=14929;\nUPDATE t2 SET c='fifteen thousand eight hundred forty' WHERE a=14930;\nUPDATE t2 SET c='twenty-five thousand seven hundred thirty-eight' WHERE a=14931;\nUPDATE t2 SET c='twelve thousand six hundred twenty-nine' WHERE a=14932;\nUPDATE t2 SET c='twenty-two thousand one hundred five' WHERE a=14933;\nUPDATE t2 SET c='fifty-nine thousand four hundred fifty-three' WHERE a=14934;\nUPDATE t2 SET c='sixty-six thousand nine hundred forty-nine' WHERE a=14935;\nUPDATE t2 SET c='thirty-six thousand four hundred fifty-one' WHERE a=14936;\nUPDATE t2 SET c='thirteen thousand twelve' WHERE a=14937;\nUPDATE t2 SET c='ninety-six thousand eight hundred' WHERE a=14938;\nUPDATE t2 SET c='fifty-two thousand four hundred fifty-three' WHERE a=14939;\nUPDATE t2 SET c='sixty-eight thousand six hundred ten' WHERE a=14940;\nUPDATE t2 SET c='thirty-seven thousand nine hundred thirty-nine' WHERE a=14941;\nUPDATE t2 SET c='eighty-four thousand six hundred nine' WHERE a=14942;\nUPDATE t2 SET c='eighty-six thousand one hundred seventy-eight' WHERE a=14943;\nUPDATE t2 SET c='ninety-six thousand six hundred forty-six' WHERE a=14944;\nUPDATE t2 SET c='twenty-seven thousand one hundred sixty-eight' WHERE a=14945;\nUPDATE t2 SET c='eighty-four thousand one hundred eighty-eight' WHERE a=14946;\nUPDATE t2 SET c='eighteen thousand three hundred twenty-nine' WHERE a=14947;\nUPDATE t2 SET c='ninety-two thousand ninety-two' WHERE a=14948;\nUPDATE t2 SET c='three thousand nine hundred forty-one' WHERE a=14949;\nUPDATE t2 SET c='sixty-one thousand seven hundred ninety-eight' WHERE a=14950;\nUPDATE t2 SET c='thirty-nine thousand nine hundred thirty' WHERE a=14951;\nUPDATE t2 SET c='forty-five thousand three hundred thirteen' WHERE a=14952;\nUPDATE t2 SET c='forty-four thousand eight hundred seventy-six' WHERE a=14953;\nUPDATE t2 SET c='forty-two thousand seven hundred sixty' WHERE a=14954;\nUPDATE t2 SET c='forty-five thousand two hundred eighty-nine' WHERE a=14955;\nUPDATE t2 SET c='sixty-one thousand seven hundred ninety' WHERE a=14956;\nUPDATE t2 SET c='eighty-three thousand nine hundred twenty-eight' WHERE a=14957;\nUPDATE t2 SET c='eight hundred fifty-two' WHERE a=14958;\nUPDATE t2 SET c='thirty-nine thousand three hundred thirty-six' WHERE a=14959;\nUPDATE t2 SET c='eleven thousand six hundred seven' WHERE a=14960;\nUPDATE t2 SET c='seven thousand four hundred seventy-one' WHERE a=14961;\nUPDATE t2 SET c='seventy-one thousand one hundred sixty-seven' WHERE a=14962;\nUPDATE t2 SET c='forty-one thousand forty-nine' WHERE a=14963;\nUPDATE t2 SET c='seventy-one thousand four hundred seventeen' WHERE a=14964;\nUPDATE t2 SET c='fifty-three thousand two hundred forty-eight' WHERE a=14965;\nUPDATE t2 SET c='seventy-two thousand four hundred eighty-three' WHERE a=14966;\nUPDATE t2 SET c='ninety-eight thousand six hundred fifty-seven' WHERE a=14967;\nUPDATE t2 SET c='eighty-four thousand eight hundred eighty-four' WHERE a=14968;\nUPDATE t2 SET c='forty-four thousand five hundred five' WHERE a=14969;\nUPDATE t2 SET c='ninety-four thousand one hundred seventy-two' WHERE a=14970;\nUPDATE t2 SET c='fifteen thousand nine hundred forty-eight' WHERE a=14971;\nUPDATE t2 SET c='ninety-five thousand two hundred eighty-nine' WHERE a=14972;\nUPDATE t2 SET c='thirty thousand two hundred seventy-two' WHERE a=14973;\nUPDATE t2 SET c='eighty-eight thousand six hundred eighty' WHERE a=14974;\nUPDATE t2 SET c='fifty-one thousand seven hundred five' WHERE a=14975;\nUPDATE t2 SET c='ninety-one thousand seven hundred sixty-five' WHERE a=14976;\nUPDATE t2 SET c='ninety-five thousand nine hundred ninety-one' WHERE a=14977;\nUPDATE t2 SET c='twelve thousand six hundred ninety-one' WHERE a=14978;\nUPDATE t2 SET c='fifty-three thousand two hundred seventy-two' WHERE a=14979;\nUPDATE t2 SET c='forty-one thousand three hundred fifty' WHERE a=14980;\nUPDATE t2 SET c='eight thousand five hundred sixty-two' WHERE a=14981;\nUPDATE t2 SET c='seventeen thousand eight hundred forty-six' WHERE a=14982;\nUPDATE t2 SET c='thirty-one thousand six hundred thirty' WHERE a=14983;\nUPDATE t2 SET c='twenty-five thousand nine hundred eighty-five' WHERE a=14984;\nUPDATE t2 SET c='ninety-five thousand two hundred twenty-five' WHERE a=14985;\nUPDATE t2 SET c='eighty-two thousand seven hundred ten' WHERE a=14986;\nUPDATE t2 SET c='five thousand three hundred twenty-five' WHERE a=14987;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventy-eight' WHERE a=14988;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventy-five' WHERE a=14989;\nUPDATE t2 SET c='six thousand one hundred ninety-six' WHERE a=14990;\nUPDATE t2 SET c='sixteen thousand fifty-five' WHERE a=14991;\nUPDATE t2 SET c='ninety-one thousand two hundred forty' WHERE a=14992;\nUPDATE t2 SET c='eighty-nine thousand three hundred forty-nine' WHERE a=14993;\nUPDATE t2 SET c='thirty-four thousand three hundred forty-six' WHERE a=14994;\nUPDATE t2 SET c='fifty thousand three hundred seventy-six' WHERE a=14995;\nUPDATE t2 SET c='eleven thousand one hundred sixty-seven' WHERE a=14996;\nUPDATE t2 SET c='forty-three thousand seventy-nine' WHERE a=14997;\nUPDATE t2 SET c='thirty-one thousand four hundred fourteen' WHERE a=14998;\nUPDATE t2 SET c='forty-one thousand eight hundred forty-three' WHERE a=14999;\nUPDATE t2 SET c='eighty-six thousand four hundred forty-one' WHERE a=15000;\nUPDATE t2 SET c='eight thousand two hundred four' WHERE a=15001;\nUPDATE t2 SET c='nineteen thousand one hundred eighty' WHERE a=15002;\nUPDATE t2 SET c='ninety-two thousand four hundred fifty-four' WHERE a=15003;\nUPDATE t2 SET c='twenty-one thousand three hundred fourteen' WHERE a=15004;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty-four' WHERE a=15005;\nUPDATE t2 SET c='ninety-three thousand three hundred thirty-nine' WHERE a=15006;\nUPDATE t2 SET c='forty-one thousand one hundred thirty-six' WHERE a=15007;\nUPDATE t2 SET c='sixty thousand six hundred twenty-five' WHERE a=15008;\nUPDATE t2 SET c='forty-three thousand eight hundred thirty-three' WHERE a=15009;\nUPDATE t2 SET c='forty-six thousand one hundred sixty-four' WHERE a=15010;\nUPDATE t2 SET c='sixty-five thousand two hundred forty-five' WHERE a=15011;\nUPDATE t2 SET c='thirty thousand four hundred fifty-one' WHERE a=15012;\nUPDATE t2 SET c='fifty-two thousand nine hundred twenty-seven' WHERE a=15013;\nUPDATE t2 SET c='ninety thousand' WHERE a=15014;\nUPDATE t2 SET c='forty-seven thousand eight hundred eighty-one' WHERE a=15015;\nUPDATE t2 SET c='sixteen thousand nine hundred twelve' WHERE a=15016;\nUPDATE t2 SET c='seven thousand two hundred ten' WHERE a=15017;\nUPDATE t2 SET c='forty-nine thousand three hundred forty-two' WHERE a=15018;\nUPDATE t2 SET c='thirty-two thousand six hundred thirty-two' WHERE a=15019;\nUPDATE t2 SET c='nineteen thousand one hundred forty-five' WHERE a=15020;\nUPDATE t2 SET c='twenty-three thousand two hundred seventeen' WHERE a=15021;\nUPDATE t2 SET c='thirteen thousand five hundred twenty-three' WHERE a=15022;\nUPDATE t2 SET c='thirty-seven thousand four hundred twenty-one' WHERE a=15023;\nUPDATE t2 SET c='thirty-one thousand two hundred eighty-six' WHERE a=15024;\nUPDATE t2 SET c='ninety thousand five hundred fifty' WHERE a=15025;\nUPDATE t2 SET c='sixty-five thousand one hundred forty-three' WHERE a=15026;\nUPDATE t2 SET c='seventy-eight thousand five hundred sixty-one' WHERE a=15027;\nUPDATE t2 SET c='twenty-one thousand nine hundred fifty' WHERE a=15028;\nUPDATE t2 SET c='eighty-nine thousand twenty-seven' WHERE a=15029;\nUPDATE t2 SET c='fifty thousand one hundred fifty-eight' WHERE a=15030;\nUPDATE t2 SET c='four thousand sixty-seven' WHERE a=15031;\nUPDATE t2 SET c='forty-one thousand eight hundred twenty-one' WHERE a=15032;\nUPDATE t2 SET c='eleven thousand nine hundred sixty-six' WHERE a=15033;\nUPDATE t2 SET c='twenty-two thousand seven hundred seventy-nine' WHERE a=15034;\nUPDATE t2 SET c='forty-two thousand five hundred thirty-one' WHERE a=15035;\nUPDATE t2 SET c='fifty-one thousand three hundred four' WHERE a=15036;\nUPDATE t2 SET c='thirty-six thousand seventy-three' WHERE a=15037;\nUPDATE t2 SET c='thirteen thousand one hundred thirty-nine' WHERE a=15038;\nUPDATE t2 SET c='fifty-six thousand seven hundred nineteen' WHERE a=15039;\nUPDATE t2 SET c='twenty-six thousand three hundred forty-two' WHERE a=15040;\nUPDATE t2 SET c='seventy-eight thousand two hundred forty-three' WHERE a=15041;\nUPDATE t2 SET c='thirty thousand four hundred eighty-four' WHERE a=15042;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-two' WHERE a=15043;\nUPDATE t2 SET c='ten thousand seven hundred ninety' WHERE a=15044;\nUPDATE t2 SET c='sixty-three thousand three hundred ninety-six' WHERE a=15045;\nUPDATE t2 SET c='thirty-seven thousand seven hundred forty-eight' WHERE a=15046;\nUPDATE t2 SET c='sixty thousand nine hundred twelve' WHERE a=15047;\nUPDATE t2 SET c='sixty-nine thousand one hundred sixty-six' WHERE a=15048;\nUPDATE t2 SET c='ninety-eight thousand four hundred eighty-nine' WHERE a=15049;\nUPDATE t2 SET c='seventy thousand two hundred twenty-three' WHERE a=15050;\nUPDATE t2 SET c='sixty-one thousand eight hundred seventy' WHERE a=15051;\nUPDATE t2 SET c='seventy-nine thousand seven hundred seventy-nine' WHERE a=15052;\nUPDATE t2 SET c='eighty thousand three hundred sixty-two' WHERE a=15053;\nUPDATE t2 SET c='twenty-two thousand seven hundred one' WHERE a=15054;\nUPDATE t2 SET c='forty-nine thousand one hundred sixty-nine' WHERE a=15055;\nUPDATE t2 SET c='sixty-one thousand six hundred eleven' WHERE a=15056;\nUPDATE t2 SET c='twenty-one thousand three hundred forty-two' WHERE a=15057;\nUPDATE t2 SET c='eight thousand four hundred sixty-nine' WHERE a=15058;\nUPDATE t2 SET c='fifteen thousand one hundred seventeen' WHERE a=15059;\nUPDATE t2 SET c='fifty-seven thousand three hundred twenty-six' WHERE a=15060;\nUPDATE t2 SET c='twenty-two thousand eight hundred fourteen' WHERE a=15061;\nUPDATE t2 SET c='twenty-six thousand five hundred sixty-nine' WHERE a=15062;\nUPDATE t2 SET c='sixty-four thousand one hundred ten' WHERE a=15063;\nUPDATE t2 SET c='forty-four thousand three hundred forty-five' WHERE a=15064;\nUPDATE t2 SET c='forty-eight thousand seven hundred seventy-six' WHERE a=15065;\nUPDATE t2 SET c='forty-five thousand eight hundred ninety-one' WHERE a=15066;\nUPDATE t2 SET c='sixty-six thousand one hundred forty-three' WHERE a=15067;\nUPDATE t2 SET c='seventy-six thousand four hundred forty-four' WHERE a=15068;\nUPDATE t2 SET c='nineteen thousand eight hundred eighty-seven' WHERE a=15069;\nUPDATE t2 SET c='forty-nine thousand nine hundred thirty-one' WHERE a=15070;\nUPDATE t2 SET c='sixty-nine thousand seven hundred eighty-eight' WHERE a=15071;\nUPDATE t2 SET c='twenty-seven thousand eight hundred eleven' WHERE a=15072;\nUPDATE t2 SET c='forty-three thousand four hundred fifty-four' WHERE a=15073;\nUPDATE t2 SET c='thirty-three thousand seven hundred eighty-nine' WHERE a=15074;\nUPDATE t2 SET c='ninety-four thousand five' WHERE a=15075;\nUPDATE t2 SET c='seventy-four thousand five hundred sixty-eight' WHERE a=15076;\nUPDATE t2 SET c='five hundred seventy' WHERE a=15077;\nUPDATE t2 SET c='forty-three thousand four hundred fifty-seven' WHERE a=15078;\nUPDATE t2 SET c='eighty-four thousand sixty-eight' WHERE a=15079;\nUPDATE t2 SET c='ninety-nine thousand seven hundred sixty-seven' WHERE a=15080;\nUPDATE t2 SET c='three thousand six hundred sixty-eight' WHERE a=15081;\nUPDATE t2 SET c='twenty-eight thousand seven hundred three' WHERE a=15082;\nUPDATE t2 SET c='seventy-five thousand seven hundred ninety-three' WHERE a=15083;\nUPDATE t2 SET c='eight thousand five hundred ninety-eight' WHERE a=15084;\nUPDATE t2 SET c='eighty-one thousand twenty' WHERE a=15085;\nUPDATE t2 SET c='eighty-seven thousand six hundred fifty-one' WHERE a=15086;\nUPDATE t2 SET c='nine thousand three hundred fifteen' WHERE a=15087;\nUPDATE t2 SET c='nineteen thousand four hundred forty-eight' WHERE a=15088;\nUPDATE t2 SET c='twenty-three thousand eight hundred forty-one' WHERE a=15089;\nUPDATE t2 SET c='eighty-one thousand two hundred three' WHERE a=15090;\nUPDATE t2 SET c='eighty-two thousand two hundred sixty-five' WHERE a=15091;\nUPDATE t2 SET c='fourteen thousand three hundred eighty-five' WHERE a=15092;\nUPDATE t2 SET c='sixty-six thousand seven hundred twenty-six' WHERE a=15093;\nUPDATE t2 SET c='two hundred eight' WHERE a=15094;\nUPDATE t2 SET c='forty thousand fifty-four' WHERE a=15095;\nUPDATE t2 SET c='eighty-three thousand seven hundred thirty-two' WHERE a=15096;\nUPDATE t2 SET c='seventy-four thousand six hundred nine' WHERE a=15097;\nUPDATE t2 SET c='fifteen thousand six hundred fifty-nine' WHERE a=15098;\nUPDATE t2 SET c='fifty-three thousand eight hundred twenty-five' WHERE a=15099;\nUPDATE t2 SET c='eighteen thousand six hundred three' WHERE a=15100;\nUPDATE t2 SET c='eighty-eight thousand three hundred six' WHERE a=15101;\nUPDATE t2 SET c='fifty thousand two hundred twenty-eight' WHERE a=15102;\nUPDATE t2 SET c='fifty-five thousand seven hundred ninety-four' WHERE a=15103;\nUPDATE t2 SET c='eighty-four thousand one hundred seventeen' WHERE a=15104;\nUPDATE t2 SET c='six thousand nine hundred eighty-six' WHERE a=15105;\nUPDATE t2 SET c='seventy-four thousand five hundred forty' WHERE a=15106;\nUPDATE t2 SET c='thirty-five thousand three hundred forty-eight' WHERE a=15107;\nUPDATE t2 SET c='ninety thousand three hundred twenty-two' WHERE a=15108;\nUPDATE t2 SET c='forty-nine thousand nine hundred twelve' WHERE a=15109;\nUPDATE t2 SET c='fifty-five thousand three hundred eight' WHERE a=15110;\nUPDATE t2 SET c='sixty-six thousand seven hundred forty-four' WHERE a=15111;\nUPDATE t2 SET c='seventy thousand seven hundred twenty-five' WHERE a=15112;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seventy-one' WHERE a=15113;\nUPDATE t2 SET c='eighteen thousand eight hundred six' WHERE a=15114;\nUPDATE t2 SET c='forty-seven thousand six hundred fifty-six' WHERE a=15115;\nUPDATE t2 SET c='forty-seven thousand five hundred sixteen' WHERE a=15116;\nUPDATE t2 SET c='thirty-two thousand three hundred sixteen' WHERE a=15117;\nUPDATE t2 SET c='eight thousand three hundred ninety-three' WHERE a=15118;\nUPDATE t2 SET c='sixteen thousand two hundred seventy-eight' WHERE a=15119;\nUPDATE t2 SET c='ninety-nine thousand four hundred ten' WHERE a=15120;\nUPDATE t2 SET c='forty thousand six hundred sixty-four' WHERE a=15121;\nUPDATE t2 SET c='seventeen thousand one hundred fifty-one' WHERE a=15122;\nUPDATE t2 SET c='forty-five thousand two hundred seventy-three' WHERE a=15123;\nUPDATE t2 SET c='ninety-seven thousand one hundred seventy-nine' WHERE a=15124;\nUPDATE t2 SET c='fifty-eight thousand three' WHERE a=15125;\nUPDATE t2 SET c='fifty-seven thousand three hundred thirty-nine' WHERE a=15126;\nUPDATE t2 SET c='nineteen thousand eight hundred fourteen' WHERE a=15127;\nUPDATE t2 SET c='sixty-seven thousand nine hundred eighty-two' WHERE a=15128;\nUPDATE t2 SET c='ninety-two thousand eight hundred fifty-nine' WHERE a=15129;\nUPDATE t2 SET c='fifty-one thousand one hundred eighty-three' WHERE a=15130;\nUPDATE t2 SET c='ninety thousand fifty-one' WHERE a=15131;\nUPDATE t2 SET c='fifty-one thousand five hundred thirty-one' WHERE a=15132;\nUPDATE t2 SET c='twenty thousand eight hundred twenty-three' WHERE a=15133;\nUPDATE t2 SET c='thirty-four thousand four hundred seventeen' WHERE a=15134;\nUPDATE t2 SET c='eighty-five thousand two hundred six' WHERE a=15135;\nUPDATE t2 SET c='forty-one thousand two hundred twenty-nine' WHERE a=15136;\nUPDATE t2 SET c='seven thousand two hundred sixteen' WHERE a=15137;\nUPDATE t2 SET c='eighty-three thousand five hundred sixty' WHERE a=15138;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-four' WHERE a=15139;\nUPDATE t2 SET c='ninety-nine thousand three hundred forty-three' WHERE a=15140;\nUPDATE t2 SET c='one thousand six hundred thirty-two' WHERE a=15141;\nUPDATE t2 SET c='ninety-five thousand nine hundred seventy-eight' WHERE a=15142;\nUPDATE t2 SET c='thirty-six thousand six hundred thirty-seven' WHERE a=15143;\nUPDATE t2 SET c='thirty thousand nine hundred fifty-four' WHERE a=15144;\nUPDATE t2 SET c='thirty-two thousand two hundred fifty-four' WHERE a=15145;\nUPDATE t2 SET c='twenty-six thousand five hundred eighty-three' WHERE a=15146;\nUPDATE t2 SET c='sixty-three thousand three hundred six' WHERE a=15147;\nUPDATE t2 SET c='eighty-three thousand four hundred eighteen' WHERE a=15148;\nUPDATE t2 SET c='fifty-two thousand nine hundred fifty-eight' WHERE a=15149;\nUPDATE t2 SET c='one thousand four hundred fifty-six' WHERE a=15150;\nUPDATE t2 SET c='eight thousand five hundred ninety-one' WHERE a=15151;\nUPDATE t2 SET c='ninety-five thousand seven hundred twenty-one' WHERE a=15152;\nUPDATE t2 SET c='eighty-seven thousand eight hundred forty' WHERE a=15153;\nUPDATE t2 SET c='fifty-four thousand one hundred forty-one' WHERE a=15154;\nUPDATE t2 SET c='eighty-nine thousand five hundred seven' WHERE a=15155;\nUPDATE t2 SET c='four thousand eighty' WHERE a=15156;\nUPDATE t2 SET c='eighty-eight thousand five hundred two' WHERE a=15157;\nUPDATE t2 SET c='thirty-three thousand six hundred forty' WHERE a=15158;\nUPDATE t2 SET c='six thousand eight hundred thirty-two' WHERE a=15159;\nUPDATE t2 SET c='thirty-two thousand seven hundred one' WHERE a=15160;\nUPDATE t2 SET c='sixty thousand three hundred thirteen' WHERE a=15161;\nUPDATE t2 SET c='sixty-six thousand three hundred seventy-eight' WHERE a=15162;\nUPDATE t2 SET c='sixty-eight thousand seven hundred sixty-two' WHERE a=15163;\nUPDATE t2 SET c='forty-three thousand one hundred nine' WHERE a=15164;\nUPDATE t2 SET c='ninety-six thousand four hundred nine' WHERE a=15165;\nUPDATE t2 SET c='sixty-nine thousand six hundred seventy-three' WHERE a=15166;\nUPDATE t2 SET c='fifty-one thousand six hundred thirty-four' WHERE a=15167;\nUPDATE t2 SET c='seventy thousand six hundred forty-seven' WHERE a=15168;\nUPDATE t2 SET c='seventeen thousand six hundred eighty-seven' WHERE a=15169;\nUPDATE t2 SET c='eight thousand twenty-six' WHERE a=15170;\nUPDATE t2 SET c='ninety-nine thousand nine hundred ninety-three' WHERE a=15171;\nUPDATE t2 SET c='sixty-seven thousand thirty-six' WHERE a=15172;\nUPDATE t2 SET c='twenty-six thousand fourteen' WHERE a=15173;\nUPDATE t2 SET c='eighty-four thousand forty-four' WHERE a=15174;\nUPDATE t2 SET c='thirteen thousand eight hundred forty-six' WHERE a=15175;\nUPDATE t2 SET c='ninety-two thousand forty-nine' WHERE a=15176;\nUPDATE t2 SET c='twenty-seven thousand nine hundred eighty-three' WHERE a=15177;\nUPDATE t2 SET c='eighty-two thousand six hundred ninety' WHERE a=15178;\nUPDATE t2 SET c='fifty-seven thousand thirty-nine' WHERE a=15179;\nUPDATE t2 SET c='twenty-two thousand ninety-seven' WHERE a=15180;\nUPDATE t2 SET c='sixty-seven thousand nine hundred eighty-five' WHERE a=15181;\nUPDATE t2 SET c='thirty thousand eight hundred fifty-one' WHERE a=15182;\nUPDATE t2 SET c='three thousand five hundred ninety-two' WHERE a=15183;\nUPDATE t2 SET c='sixty-three thousand seven hundred forty-five' WHERE a=15184;\nUPDATE t2 SET c='seventy-three thousand three hundred eighty-one' WHERE a=15185;\nUPDATE t2 SET c='sixty-six thousand one hundred thirty-nine' WHERE a=15186;\nUPDATE t2 SET c='fifty-one thousand nine hundred forty-one' WHERE a=15187;\nUPDATE t2 SET c='fifteen thousand two hundred eighty-five' WHERE a=15188;\nUPDATE t2 SET c='one thousand nine hundred fifty-four' WHERE a=15189;\nUPDATE t2 SET c='fifty-eight thousand four hundred eighty-seven' WHERE a=15190;\nUPDATE t2 SET c='ninety-nine thousand six hundred ninety-one' WHERE a=15191;\nUPDATE t2 SET c='twenty-one thousand four hundred fourteen' WHERE a=15192;\nUPDATE t2 SET c='twenty-eight thousand one hundred fifty-five' WHERE a=15193;\nUPDATE t2 SET c='thirty thousand two hundred sixty-four' WHERE a=15194;\nUPDATE t2 SET c='eighty-five thousand eight hundred thirty-five' WHERE a=15195;\nUPDATE t2 SET c='eight thousand one hundred eighty-four' WHERE a=15196;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirty' WHERE a=15197;\nUPDATE t2 SET c='fifteen thousand two hundred ninety-nine' WHERE a=15198;\nUPDATE t2 SET c='thirty-four thousand five hundred thirty-two' WHERE a=15199;\nUPDATE t2 SET c='sixty-seven thousand seven hundred twenty-three' WHERE a=15200;\nUPDATE t2 SET c='eighty thousand one hundred fifty-eight' WHERE a=15201;\nUPDATE t2 SET c='forty-five thousand two hundred ninety-three' WHERE a=15202;\nUPDATE t2 SET c='eighty-four thousand four hundred sixty-six' WHERE a=15203;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-four' WHERE a=15204;\nUPDATE t2 SET c='twenty-seven thousand eighty' WHERE a=15205;\nUPDATE t2 SET c='seventy-three thousand two hundred thirty-five' WHERE a=15206;\nUPDATE t2 SET c='nine thousand seven hundred two' WHERE a=15207;\nUPDATE t2 SET c='fifty-five thousand eight hundred forty-six' WHERE a=15208;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy-four' WHERE a=15209;\nUPDATE t2 SET c='thirty-eight thousand eight hundred nine' WHERE a=15210;\nUPDATE t2 SET c='fifty-two thousand four hundred sixty-three' WHERE a=15211;\nUPDATE t2 SET c='eight thousand five hundred seven' WHERE a=15212;\nUPDATE t2 SET c='seventy thousand eight hundred fifty-five' WHERE a=15213;\nUPDATE t2 SET c='fifty-six thousand six hundred fifty-five' WHERE a=15214;\nUPDATE t2 SET c='fifty-nine thousand nine hundred twenty-one' WHERE a=15215;\nUPDATE t2 SET c='thirteen thousand nine hundred forty-one' WHERE a=15216;\nUPDATE t2 SET c='thirty-three thousand seventeen' WHERE a=15217;\nUPDATE t2 SET c='eighty-nine thousand three hundred' WHERE a=15218;\nUPDATE t2 SET c='forty-nine thousand six hundred sixty-eight' WHERE a=15219;\nUPDATE t2 SET c='sixty-nine thousand one hundred nineteen' WHERE a=15220;\nUPDATE t2 SET c='thirty-eight thousand one hundred two' WHERE a=15221;\nUPDATE t2 SET c='ninety-six thousand one hundred fifteen' WHERE a=15222;\nUPDATE t2 SET c='ninety-one thousand seven hundred seventy-one' WHERE a=15223;\nUPDATE t2 SET c='thirty-six thousand one hundred ninety-six' WHERE a=15224;\nUPDATE t2 SET c='twenty-seven thousand four hundred thirty-nine' WHERE a=15225;\nUPDATE t2 SET c='seventy-three thousand three hundred thirty-four' WHERE a=15226;\nUPDATE t2 SET c='sixteen thousand six hundred sixty-nine' WHERE a=15227;\nUPDATE t2 SET c='fifty-two thousand nine hundred thirty-two' WHERE a=15228;\nUPDATE t2 SET c='ten thousand one hundred twenty-nine' WHERE a=15229;\nUPDATE t2 SET c='seventy-seven thousand seven hundred fourteen' WHERE a=15230;\nUPDATE t2 SET c='ninety-nine thousand one hundred fifty-two' WHERE a=15231;\nUPDATE t2 SET c='seventy-five thousand three hundred forty' WHERE a=15232;\nUPDATE t2 SET c='fifty-six thousand nine hundred four' WHERE a=15233;\nUPDATE t2 SET c='twelve thousand five hundred thirty-nine' WHERE a=15234;\nUPDATE t2 SET c='eighty-two thousand nine hundred seventy-two' WHERE a=15235;\nUPDATE t2 SET c='ninety-five thousand nine hundred thirty-six' WHERE a=15236;\nUPDATE t2 SET c='fifty thousand two hundred eight' WHERE a=15237;\nUPDATE t2 SET c='thirteen thousand eight hundred seventy-six' WHERE a=15238;\nUPDATE t2 SET c='six thousand three hundred twelve' WHERE a=15239;\nUPDATE t2 SET c='sixty-six thousand eight hundred seventy' WHERE a=15240;\nUPDATE t2 SET c='twenty-four thousand five hundred eighty-three' WHERE a=15241;\nUPDATE t2 SET c='forty thousand thirty-seven' WHERE a=15242;\nUPDATE t2 SET c='ninety-eight thousand thirty-one' WHERE a=15243;\nUPDATE t2 SET c='seven thousand seven hundred twenty-two' WHERE a=15244;\nUPDATE t2 SET c='ninety-eight thousand four hundred twenty-nine' WHERE a=15245;\nUPDATE t2 SET c='thirty-three thousand nine hundred ninety-six' WHERE a=15246;\nUPDATE t2 SET c='twenty-eight thousand six hundred fifty-four' WHERE a=15247;\nUPDATE t2 SET c='seventy-eight thousand two hundred thirty-three' WHERE a=15248;\nUPDATE t2 SET c='sixty-five thousand eight hundred fifty-eight' WHERE a=15249;\nUPDATE t2 SET c='ninety-two thousand two hundred thirty-nine' WHERE a=15250;\nUPDATE t2 SET c='thirty-seven thousand eight hundred forty-four' WHERE a=15251;\nUPDATE t2 SET c='forty-six thousand four hundred forty-six' WHERE a=15252;\nUPDATE t2 SET c='ninety thousand five hundred thirty-nine' WHERE a=15253;\nUPDATE t2 SET c='twenty-eight thousand two hundred ninety-five' WHERE a=15254;\nUPDATE t2 SET c='fifty-three thousand three hundred thirty-one' WHERE a=15255;\nUPDATE t2 SET c='twelve thousand six hundred eighty' WHERE a=15256;\nUPDATE t2 SET c='seventeen thousand eight hundred twenty-eight' WHERE a=15257;\nUPDATE t2 SET c='sixty thousand nine hundred twelve' WHERE a=15258;\nUPDATE t2 SET c='forty-seven thousand two hundred sixty-seven' WHERE a=15259;\nUPDATE t2 SET c='seventy-two thousand three hundred seventy-two' WHERE a=15260;\nUPDATE t2 SET c='forty-four thousand one hundred ninety-four' WHERE a=15261;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-three' WHERE a=15262;\nUPDATE t2 SET c='fifty-five thousand four hundred ninety-three' WHERE a=15263;\nUPDATE t2 SET c='sixty-two thousand five hundred forty-three' WHERE a=15264;\nUPDATE t2 SET c='sixty-five thousand one hundred twenty-two' WHERE a=15265;\nUPDATE t2 SET c='forty-six thousand two hundred sixty-two' WHERE a=15266;\nUPDATE t2 SET c='fifty-three thousand eight hundred fourteen' WHERE a=15267;\nUPDATE t2 SET c='sixty thousand four hundred twenty-nine' WHERE a=15268;\nUPDATE t2 SET c='sixty-four thousand three hundred seven' WHERE a=15269;\nUPDATE t2 SET c='eighty-three thousand one hundred ninety-six' WHERE a=15270;\nUPDATE t2 SET c='forty-one thousand seven hundred eleven' WHERE a=15271;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-one' WHERE a=15272;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-two' WHERE a=15273;\nUPDATE t2 SET c='twenty-seven thousand eight hundred forty-two' WHERE a=15274;\nUPDATE t2 SET c='thirty thousand six hundred thirty-five' WHERE a=15275;\nUPDATE t2 SET c='fifty-two thousand seven hundred forty-one' WHERE a=15276;\nUPDATE t2 SET c='twenty thousand six hundred ninety-three' WHERE a=15277;\nUPDATE t2 SET c='ninety-three thousand three hundred thirty-three' WHERE a=15278;\nUPDATE t2 SET c='nine thousand two hundred forty-four' WHERE a=15279;\nUPDATE t2 SET c='thirty-five thousand nine hundred fifty-nine' WHERE a=15280;\nUPDATE t2 SET c='fifty-six thousand seven hundred ninety-three' WHERE a=15281;\nUPDATE t2 SET c='seventy thousand nine hundred twenty-one' WHERE a=15282;\nUPDATE t2 SET c='fifty-four thousand two hundred thirty-nine' WHERE a=15283;\nUPDATE t2 SET c='ninety-two thousand seven hundred forty' WHERE a=15284;\nUPDATE t2 SET c='ninety-eight thousand three hundred four' WHERE a=15285;\nUPDATE t2 SET c='twenty-two thousand two hundred eighty-eight' WHERE a=15286;\nUPDATE t2 SET c='twenty-six thousand three hundred seventy-one' WHERE a=15287;\nUPDATE t2 SET c='sixty-five thousand three hundred forty-four' WHERE a=15288;\nUPDATE t2 SET c='seventy-one thousand three hundred forty-four' WHERE a=15289;\nUPDATE t2 SET c='forty-five thousand one hundred seven' WHERE a=15290;\nUPDATE t2 SET c='ten thousand four hundred sixty-eight' WHERE a=15291;\nUPDATE t2 SET c='thirty-two thousand six hundred forty-four' WHERE a=15292;\nUPDATE t2 SET c='sixty-five thousand five hundred fifty-two' WHERE a=15293;\nUPDATE t2 SET c='ninety-one thousand six hundred thirty-six' WHERE a=15294;\nUPDATE t2 SET c='fifty-three thousand three' WHERE a=15295;\nUPDATE t2 SET c='twenty-one thousand seven hundred ninety-seven' WHERE a=15296;\nUPDATE t2 SET c='ninety-six thousand seven hundred ninety-two' WHERE a=15297;\nUPDATE t2 SET c='eighty-three thousand nine hundred seven' WHERE a=15298;\nUPDATE t2 SET c='nine thousand two hundred eighty-nine' WHERE a=15299;\nUPDATE t2 SET c='seventy-five thousand two hundred twenty-three' WHERE a=15300;\nUPDATE t2 SET c='five thousand seven hundred forty-two' WHERE a=15301;\nUPDATE t2 SET c='eighty-four thousand seven hundred forty-three' WHERE a=15302;\nUPDATE t2 SET c='sixty thousand three hundred forty-one' WHERE a=15303;\nUPDATE t2 SET c='fifty-three thousand sixty-three' WHERE a=15304;\nUPDATE t2 SET c='ninety-six thousand five hundred twenty-seven' WHERE a=15305;\nUPDATE t2 SET c='seventy-six thousand five hundred twenty-nine' WHERE a=15306;\nUPDATE t2 SET c='thirty thousand five hundred seventy-seven' WHERE a=15307;\nUPDATE t2 SET c='ninety-nine thousand forty-five' WHERE a=15308;\nUPDATE t2 SET c='twenty-four thousand one hundred ninety-eight' WHERE a=15309;\nUPDATE t2 SET c='three thousand' WHERE a=15310;\nUPDATE t2 SET c='eleven thousand five hundred fourteen' WHERE a=15311;\nUPDATE t2 SET c='eighty-seven thousand sixty-one' WHERE a=15312;\nUPDATE t2 SET c='seventeen thousand seven hundred twelve' WHERE a=15313;\nUPDATE t2 SET c='twenty thousand three hundred fifty-four' WHERE a=15314;\nUPDATE t2 SET c='seventeen thousand five hundred sixty-two' WHERE a=15315;\nUPDATE t2 SET c='thirty-five thousand eight hundred eleven' WHERE a=15316;\nUPDATE t2 SET c='seven thousand seven hundred fifty-three' WHERE a=15317;\nUPDATE t2 SET c='forty-seven thousand four hundred ninety' WHERE a=15318;\nUPDATE t2 SET c='forty-four thousand nine hundred two' WHERE a=15319;\nUPDATE t2 SET c='seventeen thousand five hundred thirty-two' WHERE a=15320;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-one' WHERE a=15321;\nUPDATE t2 SET c='thirty thousand four hundred ninety' WHERE a=15322;\nUPDATE t2 SET c='four thousand one hundred eleven' WHERE a=15323;\nUPDATE t2 SET c='sixty-one thousand two hundred thirty-eight' WHERE a=15324;\nUPDATE t2 SET c='forty-seven thousand six hundred forty-five' WHERE a=15325;\nUPDATE t2 SET c='fifteen thousand three hundred sixty' WHERE a=15326;\nUPDATE t2 SET c='fifteen thousand four hundred four' WHERE a=15327;\nUPDATE t2 SET c='fifty-six thousand eight hundred sixty-nine' WHERE a=15328;\nUPDATE t2 SET c='three thousand six hundred nineteen' WHERE a=15329;\nUPDATE t2 SET c='eighty-eight thousand eighty-eight' WHERE a=15330;\nUPDATE t2 SET c='forty-three thousand four hundred seventy-seven' WHERE a=15331;\nUPDATE t2 SET c='fifty-seven thousand eight hundred ninety-eight' WHERE a=15332;\nUPDATE t2 SET c='thirty-six thousand three hundred eighty' WHERE a=15333;\nUPDATE t2 SET c='fifty-six thousand four hundred thirty-two' WHERE a=15334;\nUPDATE t2 SET c='ninety-nine thousand nine hundred forty-nine' WHERE a=15335;\nUPDATE t2 SET c='eight thousand two hundred eighty-five' WHERE a=15336;\nUPDATE t2 SET c='three hundred three' WHERE a=15337;\nUPDATE t2 SET c='seventy-three thousand nine hundred forty-three' WHERE a=15338;\nUPDATE t2 SET c='eighty-two thousand six hundred twenty' WHERE a=15339;\nUPDATE t2 SET c='six thousand nine hundred thirty-one' WHERE a=15340;\nUPDATE t2 SET c='one hundred three' WHERE a=15341;\nUPDATE t2 SET c='forty-five thousand two hundred forty-five' WHERE a=15342;\nUPDATE t2 SET c='sixty-two thousand one hundred twelve' WHERE a=15343;\nUPDATE t2 SET c='sixty-nine thousand thirteen' WHERE a=15344;\nUPDATE t2 SET c='forty thousand eight hundred twenty-three' WHERE a=15345;\nUPDATE t2 SET c='four thousand two hundred sixty-four' WHERE a=15346;\nUPDATE t2 SET c='thirty-one thousand seventy-two' WHERE a=15347;\nUPDATE t2 SET c='thirty-eight thousand seven hundred twenty' WHERE a=15348;\nUPDATE t2 SET c='sixty-one thousand one hundred thirty-nine' WHERE a=15349;\nUPDATE t2 SET c='sixty thousand eight hundred twenty-three' WHERE a=15350;\nUPDATE t2 SET c='thirty-six thousand nine hundred twenty-eight' WHERE a=15351;\nUPDATE t2 SET c='twenty-four thousand four hundred fifty' WHERE a=15352;\nUPDATE t2 SET c='twenty-three thousand nine hundred six' WHERE a=15353;\nUPDATE t2 SET c='twelve thousand one hundred eighty-three' WHERE a=15354;\nUPDATE t2 SET c='four thousand two hundred twelve' WHERE a=15355;\nUPDATE t2 SET c='fifteen thousand nine hundred thirty' WHERE a=15356;\nUPDATE t2 SET c='fifty-nine thousand eight hundred thirty-nine' WHERE a=15357;\nUPDATE t2 SET c='eighty-four thousand seven hundred' WHERE a=15358;\nUPDATE t2 SET c='seventy-six thousand six hundred twenty-eight' WHERE a=15359;\nUPDATE t2 SET c='twenty-nine thousand three hundred one' WHERE a=15360;\nUPDATE t2 SET c='seventy-eight thousand four hundred sixty-three' WHERE a=15361;\nUPDATE t2 SET c='ninety-six thousand three hundred fifty-eight' WHERE a=15362;\nUPDATE t2 SET c='two thousand nine hundred seven' WHERE a=15363;\nUPDATE t2 SET c='ninety-three thousand two hundred sixty-three' WHERE a=15364;\nUPDATE t2 SET c='forty-nine thousand seven hundred forty' WHERE a=15365;\nUPDATE t2 SET c='eight thousand six hundred thirty-three' WHERE a=15366;\nUPDATE t2 SET c='fifty-three thousand seven hundred nine' WHERE a=15367;\nUPDATE t2 SET c='eleven thousand two hundred ninety-six' WHERE a=15368;\nUPDATE t2 SET c='ten thousand eight hundred ninety-six' WHERE a=15369;\nUPDATE t2 SET c='seventy-four thousand one hundred forty-six' WHERE a=15370;\nUPDATE t2 SET c='eighty-nine thousand seven hundred seventy-one' WHERE a=15371;\nUPDATE t2 SET c='four thousand two hundred one' WHERE a=15372;\nUPDATE t2 SET c='sixty-eight thousand one hundred thirty-one' WHERE a=15373;\nUPDATE t2 SET c='seventeen thousand eight hundred fifty-seven' WHERE a=15374;\nUPDATE t2 SET c='twenty-four thousand three hundred thirty-five' WHERE a=15375;\nUPDATE t2 SET c='fifty-one thousand one hundred eleven' WHERE a=15376;\nUPDATE t2 SET c='forty-four thousand nine hundred ninety-three' WHERE a=15377;\nUPDATE t2 SET c='forty-three thousand thirty-three' WHERE a=15378;\nUPDATE t2 SET c='ninety-one thousand one hundred fifty-eight' WHERE a=15379;\nUPDATE t2 SET c='eight thousand three hundred twelve' WHERE a=15380;\nUPDATE t2 SET c='ninety thousand five hundred thirteen' WHERE a=15381;\nUPDATE t2 SET c='forty-two thousand eight hundred seventy' WHERE a=15382;\nUPDATE t2 SET c='twenty-seven thousand four hundred eighteen' WHERE a=15383;\nUPDATE t2 SET c='sixty-one thousand one hundred forty-eight' WHERE a=15384;\nUPDATE t2 SET c='seventy-two thousand seven hundred fifty-two' WHERE a=15385;\nUPDATE t2 SET c='twenty-eight thousand one hundred forty-eight' WHERE a=15386;\nUPDATE t2 SET c='eighty-six thousand one hundred twenty-one' WHERE a=15387;\nUPDATE t2 SET c='eighty-four thousand one hundred sixty-six' WHERE a=15388;\nUPDATE t2 SET c='seventeen thousand five hundred ninety-two' WHERE a=15389;\nUPDATE t2 SET c='nine thousand fifty-five' WHERE a=15390;\nUPDATE t2 SET c='forty-six thousand five hundred eleven' WHERE a=15391;\nUPDATE t2 SET c='seventy-three thousand five hundred ninety' WHERE a=15392;\nUPDATE t2 SET c='forty-eight thousand eight hundred eighty-three' WHERE a=15393;\nUPDATE t2 SET c='forty-four thousand seventy-six' WHERE a=15394;\nUPDATE t2 SET c='eighteen thousand eight hundred eighty-eight' WHERE a=15395;\nUPDATE t2 SET c='twenty-six thousand two hundred fifty' WHERE a=15396;\nUPDATE t2 SET c='thirty thousand five hundred forty' WHERE a=15397;\nUPDATE t2 SET c='eighty-six thousand five hundred nine' WHERE a=15398;\nUPDATE t2 SET c='ninety-seven thousand seven hundred eighty-four' WHERE a=15399;\nUPDATE t2 SET c='thirty thousand five hundred sixty-four' WHERE a=15400;\nUPDATE t2 SET c='forty-seven thousand eight hundred seven' WHERE a=15401;\nUPDATE t2 SET c='twelve thousand six hundred fifty' WHERE a=15402;\nUPDATE t2 SET c='seventeen thousand seventy-five' WHERE a=15403;\nUPDATE t2 SET c='three thousand three' WHERE a=15404;\nUPDATE t2 SET c='eighty-seven thousand five hundred twenty-six' WHERE a=15405;\nUPDATE t2 SET c='eighty-nine thousand six hundred twenty' WHERE a=15406;\nUPDATE t2 SET c='forty-nine thousand eight hundred sixty-four' WHERE a=15407;\nUPDATE t2 SET c='thirty-two thousand nine hundred eight' WHERE a=15408;\nUPDATE t2 SET c='fifty thousand eight hundred eighty-two' WHERE a=15409;\nUPDATE t2 SET c='ten thousand five hundred seventy-two' WHERE a=15410;\nUPDATE t2 SET c='thirty-four thousand four hundred twenty-eight' WHERE a=15411;\nUPDATE t2 SET c='nine thousand seven hundred twenty-one' WHERE a=15412;\nUPDATE t2 SET c='eighteen thousand three hundred eighty-two' WHERE a=15413;\nUPDATE t2 SET c='fifty-two thousand two hundred eighty-three' WHERE a=15414;\nUPDATE t2 SET c='twenty-five thousand nine hundred fifty-five' WHERE a=15415;\nUPDATE t2 SET c='ninety-seven thousand eight hundred seventy-eight' WHERE a=15416;\nUPDATE t2 SET c='thirty-two thousand four hundred ninety-four' WHERE a=15417;\nUPDATE t2 SET c='forty-four thousand nine hundred eighty-four' WHERE a=15418;\nUPDATE t2 SET c='sixty-two thousand six hundred sixty-two' WHERE a=15419;\nUPDATE t2 SET c='fifty-eight thousand five hundred twenty-four' WHERE a=15420;\nUPDATE t2 SET c='fifty-eight thousand three hundred forty-seven' WHERE a=15421;\nUPDATE t2 SET c='seven thousand one hundred eighty-four' WHERE a=15422;\nUPDATE t2 SET c='sixty-nine thousand three hundred three' WHERE a=15423;\nUPDATE t2 SET c='sixty thousand one hundred seventy' WHERE a=15424;\nUPDATE t2 SET c='thirty-six thousand six hundred thirty' WHERE a=15425;\nUPDATE t2 SET c='thirteen thousand one hundred eighty-seven' WHERE a=15426;\nUPDATE t2 SET c='twenty-five thousand three hundred eighty-three' WHERE a=15427;\nUPDATE t2 SET c='fourteen thousand eight hundred thirty-one' WHERE a=15428;\nUPDATE t2 SET c='eighty thousand seven hundred sixty-six' WHERE a=15429;\nUPDATE t2 SET c='twenty thousand two hundred ninety-six' WHERE a=15430;\nUPDATE t2 SET c='eighty-seven thousand two hundred thirty-two' WHERE a=15431;\nUPDATE t2 SET c='sixty-one thousand fifty-two' WHERE a=15432;\nUPDATE t2 SET c='nineteen thousand nine hundred fifty-two' WHERE a=15433;\nUPDATE t2 SET c='ninety-five thousand six hundred fourteen' WHERE a=15434;\nUPDATE t2 SET c='fifty-three thousand three hundred eighty-seven' WHERE a=15435;\nUPDATE t2 SET c='four thousand nine hundred five' WHERE a=15436;\nUPDATE t2 SET c='nine thousand one hundred twenty-five' WHERE a=15437;\nUPDATE t2 SET c='eighty-one thousand four hundred thirteen' WHERE a=15438;\nUPDATE t2 SET c='forty thousand four hundred eighty' WHERE a=15439;\nUPDATE t2 SET c='ninety-four thousand four hundred eighty-one' WHERE a=15440;\nUPDATE t2 SET c='ninety-two thousand twenty-eight' WHERE a=15441;\nUPDATE t2 SET c='one thousand five hundred thirty-four' WHERE a=15442;\nUPDATE t2 SET c='three thousand eight hundred ninety-four' WHERE a=15443;\nUPDATE t2 SET c='twenty-seven thousand nine hundred ninety-five' WHERE a=15444;\nUPDATE t2 SET c='thirteen thousand six hundred twenty-four' WHERE a=15445;\nUPDATE t2 SET c='sixty-four thousand seven hundred twenty-seven' WHERE a=15446;\nUPDATE t2 SET c='eighteen thousand two hundred two' WHERE a=15447;\nUPDATE t2 SET c='sixty-three thousand five hundred thirty' WHERE a=15448;\nUPDATE t2 SET c='sixty-one thousand eighty-three' WHERE a=15449;\nUPDATE t2 SET c='twenty-four thousand two hundred seventy-three' WHERE a=15450;\nUPDATE t2 SET c='forty-six thousand one hundred thirty' WHERE a=15451;\nUPDATE t2 SET c='sixty-eight thousand seven hundred fifteen' WHERE a=15452;\nUPDATE t2 SET c='one thousand forty-three' WHERE a=15453;\nUPDATE t2 SET c='seventy-four thousand six hundred sixty-seven' WHERE a=15454;\nUPDATE t2 SET c='six thousand three hundred seven' WHERE a=15455;\nUPDATE t2 SET c='sixty-four thousand five hundred twenty' WHERE a=15456;\nUPDATE t2 SET c='twenty-two thousand seven hundred ninety-seven' WHERE a=15457;\nUPDATE t2 SET c='sixty-five thousand five hundred eighty-three' WHERE a=15458;\nUPDATE t2 SET c='thirty-seven thousand nine hundred twenty-three' WHERE a=15459;\nUPDATE t2 SET c='eighty-eight thousand eight hundred seventy' WHERE a=15460;\nUPDATE t2 SET c='eighty-three thousand six hundred twenty-eight' WHERE a=15461;\nUPDATE t2 SET c='ninety-seven thousand seven hundred seventy-nine' WHERE a=15462;\nUPDATE t2 SET c='ninety-one thousand nine hundred eighty-four' WHERE a=15463;\nUPDATE t2 SET c='fifty thousand nine hundred eighty-two' WHERE a=15464;\nUPDATE t2 SET c='ninety-eight thousand eight hundred fifty-five' WHERE a=15465;\nUPDATE t2 SET c='seventy-eight thousand five hundred sixty-six' WHERE a=15466;\nUPDATE t2 SET c='thirty-eight thousand seven hundred thirty-nine' WHERE a=15467;\nUPDATE t2 SET c='two thousand four hundred twelve' WHERE a=15468;\nUPDATE t2 SET c='eighty-six thousand nine hundred seventy-seven' WHERE a=15469;\nUPDATE t2 SET c='sixty-four thousand eight hundred fifty' WHERE a=15470;\nUPDATE t2 SET c='ninety-eight thousand six hundred ninety-four' WHERE a=15471;\nUPDATE t2 SET c='eighty-nine thousand nine hundred fifty-seven' WHERE a=15472;\nUPDATE t2 SET c='thirty-two thousand seven hundred seventy-six' WHERE a=15473;\nUPDATE t2 SET c='ninety-one thousand nine hundred forty-nine' WHERE a=15474;\nUPDATE t2 SET c='twenty-six thousand one hundred forty-eight' WHERE a=15475;\nUPDATE t2 SET c='ninety-five thousand seven hundred ninety-nine' WHERE a=15476;\nUPDATE t2 SET c='eight thousand seven hundred thirty-seven' WHERE a=15477;\nUPDATE t2 SET c='seventy-five thousand four hundred forty-nine' WHERE a=15478;\nUPDATE t2 SET c='sixty-three thousand seven hundred fifty-three' WHERE a=15479;\nUPDATE t2 SET c='ninety-eight thousand one hundred six' WHERE a=15480;\nUPDATE t2 SET c='twenty-two thousand five hundred ten' WHERE a=15481;\nUPDATE t2 SET c='fifty-three thousand eighty-six' WHERE a=15482;\nUPDATE t2 SET c='thirty-six thousand five hundred forty-three' WHERE a=15483;\nUPDATE t2 SET c='eighteen thousand eight hundred sixty-four' WHERE a=15484;\nUPDATE t2 SET c='seven thousand three hundred ninety' WHERE a=15485;\nUPDATE t2 SET c='thirty-eight thousand six hundred thirteen' WHERE a=15486;\nUPDATE t2 SET c='ninety-five thousand six hundred thirty-two' WHERE a=15487;\nUPDATE t2 SET c='forty-nine thousand six hundred sixty-seven' WHERE a=15488;\nUPDATE t2 SET c='twenty-eight thousand four hundred three' WHERE a=15489;\nUPDATE t2 SET c='fifty-five thousand one hundred forty-six' WHERE a=15490;\nUPDATE t2 SET c='fifty-four thousand five hundred ninety-eight' WHERE a=15491;\nUPDATE t2 SET c='ninety-seven thousand six hundred four' WHERE a=15492;\nUPDATE t2 SET c='five thousand three hundred sixteen' WHERE a=15493;\nUPDATE t2 SET c='thirty-five thousand nineteen' WHERE a=15494;\nUPDATE t2 SET c='seventy-nine thousand three hundred' WHERE a=15495;\nUPDATE t2 SET c='eight thousand five hundred forty-seven' WHERE a=15496;\nUPDATE t2 SET c='thirty-eight thousand one hundred seventy-eight' WHERE a=15497;\nUPDATE t2 SET c='eighty-nine thousand ninety-two' WHERE a=15498;\nUPDATE t2 SET c='ninety-five thousand nine hundred eighteen' WHERE a=15499;\nUPDATE t2 SET c='sixty thousand two hundred nine' WHERE a=15500;\nUPDATE t2 SET c='eighty-two thousand ninety-three' WHERE a=15501;\nUPDATE t2 SET c='seventy-five thousand twenty-eight' WHERE a=15502;\nUPDATE t2 SET c='seventy-three thousand eight hundred twenty-seven' WHERE a=15503;\nUPDATE t2 SET c='seventeen thousand one hundred seventy-five' WHERE a=15504;\nUPDATE t2 SET c='ninety thousand two hundred sixty-three' WHERE a=15505;\nUPDATE t2 SET c='eighty-four thousand seven hundred seventy-seven' WHERE a=15506;\nUPDATE t2 SET c='eighty-eight thousand nine hundred sixty-six' WHERE a=15507;\nUPDATE t2 SET c='seventy thousand two hundred forty-three' WHERE a=15508;\nUPDATE t2 SET c='one thousand six hundred nineteen' WHERE a=15509;\nUPDATE t2 SET c='thirty-three thousand nine hundred sixty-eight' WHERE a=15510;\nUPDATE t2 SET c='thirteen thousand seventy-two' WHERE a=15511;\nUPDATE t2 SET c='seventy-seven thousand seven' WHERE a=15512;\nUPDATE t2 SET c='thirty-five thousand nine hundred thirty-three' WHERE a=15513;\nUPDATE t2 SET c='thirty-six thousand twelve' WHERE a=15514;\nUPDATE t2 SET c='ninety-six thousand eight hundred eight' WHERE a=15515;\nUPDATE t2 SET c='thirty thousand one hundred thirty-four' WHERE a=15516;\nUPDATE t2 SET c='nine thousand eighty-eight' WHERE a=15517;\nUPDATE t2 SET c='sixteen thousand seven hundred forty-seven' WHERE a=15518;\nUPDATE t2 SET c='seventy-nine thousand nine hundred twenty-four' WHERE a=15519;\nUPDATE t2 SET c='seventy-two thousand eight hundred fifty' WHERE a=15520;\nUPDATE t2 SET c='fourteen thousand two hundred one' WHERE a=15521;\nUPDATE t2 SET c='one thousand eight hundred sixty-six' WHERE a=15522;\nUPDATE t2 SET c='twelve thousand seven hundred fifty-six' WHERE a=15523;\nUPDATE t2 SET c='seventy-two thousand three hundred seventy-six' WHERE a=15524;\nUPDATE t2 SET c='seven thousand six hundred twenty-two' WHERE a=15525;\nUPDATE t2 SET c='forty-six thousand eight hundred thirty-nine' WHERE a=15526;\nUPDATE t2 SET c='ninety-one thousand one hundred fifty-nine' WHERE a=15527;\nUPDATE t2 SET c='ninety-seven thousand five hundred twelve' WHERE a=15528;\nUPDATE t2 SET c='sixty-five thousand one hundred thirteen' WHERE a=15529;\nUPDATE t2 SET c='sixty-three thousand one hundred fifty' WHERE a=15530;\nUPDATE t2 SET c='fifty-seven thousand five hundred seventy-seven' WHERE a=15531;\nUPDATE t2 SET c='thirty-five thousand seven hundred sixteen' WHERE a=15532;\nUPDATE t2 SET c='fifteen thousand two hundred ninety-two' WHERE a=15533;\nUPDATE t2 SET c='ninety-nine thousand eight hundred four' WHERE a=15534;\nUPDATE t2 SET c='eighty-nine thousand nine hundred fifty' WHERE a=15535;\nUPDATE t2 SET c='twenty-three thousand eighty-three' WHERE a=15536;\nUPDATE t2 SET c='forty thousand seven hundred seventy-seven' WHERE a=15537;\nUPDATE t2 SET c='fifty-five thousand one hundred five' WHERE a=15538;\nUPDATE t2 SET c='seventy-seven thousand nine hundred eighteen' WHERE a=15539;\nUPDATE t2 SET c='forty-nine thousand nine hundred forty-six' WHERE a=15540;\nUPDATE t2 SET c='eighteen thousand nine hundred seven' WHERE a=15541;\nUPDATE t2 SET c='ninety-nine thousand six hundred three' WHERE a=15542;\nUPDATE t2 SET c='ninety thousand twenty-nine' WHERE a=15543;\nUPDATE t2 SET c='fifty-six thousand five hundred sixty-three' WHERE a=15544;\nUPDATE t2 SET c='eighty-seven thousand four hundred eighty' WHERE a=15545;\nUPDATE t2 SET c='thirty thousand five hundred sixty-six' WHERE a=15546;\nUPDATE t2 SET c='forty-one thousand four hundred three' WHERE a=15547;\nUPDATE t2 SET c='sixty-two thousand one hundred three' WHERE a=15548;\nUPDATE t2 SET c='seventy thousand nine hundred thirty-nine' WHERE a=15549;\nUPDATE t2 SET c='eighty-one thousand four hundred sixty-eight' WHERE a=15550;\nUPDATE t2 SET c='ninety thousand seventy-three' WHERE a=15551;\nUPDATE t2 SET c='sixty-one thousand eight hundred sixty-eight' WHERE a=15552;\nUPDATE t2 SET c='forty-seven thousand three hundred thirty-five' WHERE a=15553;\nUPDATE t2 SET c='seventy-three thousand seven hundred thirty-three' WHERE a=15554;\nUPDATE t2 SET c='forty-nine thousand five hundred one' WHERE a=15555;\nUPDATE t2 SET c='six thousand six hundred seventy' WHERE a=15556;\nUPDATE t2 SET c='twenty-one thousand two hundred fifty-two' WHERE a=15557;\nUPDATE t2 SET c='thirty-five thousand two hundred fifty-nine' WHERE a=15558;\nUPDATE t2 SET c='ninety-six thousand five hundred fifty-three' WHERE a=15559;\nUPDATE t2 SET c='ninety-seven thousand fifty-nine' WHERE a=15560;\nUPDATE t2 SET c='forty-four thousand thirty' WHERE a=15561;\nUPDATE t2 SET c='eighty-two thousand eighty-five' WHERE a=15562;\nUPDATE t2 SET c='twenty-two thousand five hundred sixty-four' WHERE a=15563;\nUPDATE t2 SET c='fifty thousand one hundred forty-two' WHERE a=15564;\nUPDATE t2 SET c='fifty-nine thousand five hundred seventy-one' WHERE a=15565;\nUPDATE t2 SET c='twenty-three thousand two hundred two' WHERE a=15566;\nUPDATE t2 SET c='ninety-four thousand eight hundred eighty-nine' WHERE a=15567;\nUPDATE t2 SET c='seventy-six thousand four hundred seventy-four' WHERE a=15568;\nUPDATE t2 SET c='nineteen thousand nine hundred thirty-four' WHERE a=15569;\nUPDATE t2 SET c='sixty-three thousand seven hundred seventy-nine' WHERE a=15570;\nUPDATE t2 SET c='thirty-five thousand four hundred twenty-one' WHERE a=15571;\nUPDATE t2 SET c='eight thousand two hundred forty-four' WHERE a=15572;\nUPDATE t2 SET c='twenty-three thousand six hundred twenty-three' WHERE a=15573;\nUPDATE t2 SET c='ninety-eight thousand five hundred ninety-six' WHERE a=15574;\nUPDATE t2 SET c='thirty-nine thousand nine hundred twenty-one' WHERE a=15575;\nUPDATE t2 SET c='seventy-six thousand nine hundred thirty-five' WHERE a=15576;\nUPDATE t2 SET c='thirty-seven thousand five hundred eighty-one' WHERE a=15577;\nUPDATE t2 SET c='seventy-four thousand two hundred eighty-seven' WHERE a=15578;\nUPDATE t2 SET c='sixty-nine thousand thirty-nine' WHERE a=15579;\nUPDATE t2 SET c='seventy-two thousand seven hundred sixty-three' WHERE a=15580;\nUPDATE t2 SET c='thirty thousand nine hundred thirty-eight' WHERE a=15581;\nUPDATE t2 SET c='sixty thousand one hundred ninety-eight' WHERE a=15582;\nUPDATE t2 SET c='twenty-eight thousand nine hundred seventy-eight' WHERE a=15583;\nUPDATE t2 SET c='sixty-nine thousand six hundred seven' WHERE a=15584;\nUPDATE t2 SET c='sixty thousand six hundred seventy-nine' WHERE a=15585;\nUPDATE t2 SET c='twelve thousand six hundred forty-one' WHERE a=15586;\nUPDATE t2 SET c='thirty-three thousand eight hundred ninety-nine' WHERE a=15587;\nUPDATE t2 SET c='forty-four thousand eight hundred seventy-five' WHERE a=15588;\nUPDATE t2 SET c='seventy-nine thousand nine hundred fifty-six' WHERE a=15589;\nUPDATE t2 SET c='forty-two thousand one hundred two' WHERE a=15590;\nUPDATE t2 SET c='thirty-eight thousand seven hundred twelve' WHERE a=15591;\nUPDATE t2 SET c='twenty-one thousand two hundred sixty-one' WHERE a=15592;\nUPDATE t2 SET c='sixty-three thousand seven hundred ninety-three' WHERE a=15593;\nUPDATE t2 SET c='twenty thousand six hundred four' WHERE a=15594;\nUPDATE t2 SET c='seventy-nine thousand four hundred eighty-seven' WHERE a=15595;\nUPDATE t2 SET c='seventy-one thousand seven hundred twenty-one' WHERE a=15596;\nUPDATE t2 SET c='seventy-five thousand eight' WHERE a=15597;\nUPDATE t2 SET c='sixty-nine thousand four hundred seventy-nine' WHERE a=15598;\nUPDATE t2 SET c='seventy thousand seven hundred eighty-two' WHERE a=15599;\nUPDATE t2 SET c='twenty-four thousand one hundred fifty-four' WHERE a=15600;\nUPDATE t2 SET c='sixty thousand six hundred twenty-six' WHERE a=15601;\nUPDATE t2 SET c='two thousand seven hundred seventy-five' WHERE a=15602;\nUPDATE t2 SET c='two thousand seven hundred forty-seven' WHERE a=15603;\nUPDATE t2 SET c='seventy-one thousand five hundred fifty-eight' WHERE a=15604;\nUPDATE t2 SET c='sixty-six thousand nine hundred thirty-seven' WHERE a=15605;\nUPDATE t2 SET c='fifty-nine thousand three hundred seventy-six' WHERE a=15606;\nUPDATE t2 SET c='seventy-three thousand six hundred sixty-three' WHERE a=15607;\nUPDATE t2 SET c='twenty-two thousand nine hundred ninety' WHERE a=15608;\nUPDATE t2 SET c='fifty-four thousand three hundred fifty-four' WHERE a=15609;\nUPDATE t2 SET c='thirty thousand eight hundred eighty-three' WHERE a=15610;\nUPDATE t2 SET c='seventy thousand seven hundred seventy-nine' WHERE a=15611;\nUPDATE t2 SET c='forty-three thousand three hundred thirty-two' WHERE a=15612;\nUPDATE t2 SET c='thirty-two thousand five hundred twenty-seven' WHERE a=15613;\nUPDATE t2 SET c='eighty-five thousand twenty-three' WHERE a=15614;\nUPDATE t2 SET c='one thousand eight hundred twelve' WHERE a=15615;\nUPDATE t2 SET c='thirty-six thousand twenty-eight' WHERE a=15616;\nUPDATE t2 SET c='sixty-two thousand three hundred fifty-two' WHERE a=15617;\nUPDATE t2 SET c='forty-five thousand five hundred sixty-one' WHERE a=15618;\nUPDATE t2 SET c='two thousand nine hundred thirty-nine' WHERE a=15619;\nUPDATE t2 SET c='five hundred thirty' WHERE a=15620;\nUPDATE t2 SET c='fifty-six thousand nine hundred seventy-five' WHERE a=15621;\nUPDATE t2 SET c='seventy thousand nine hundred sixty-three' WHERE a=15622;\nUPDATE t2 SET c='five thousand nine hundred twenty-five' WHERE a=15623;\nUPDATE t2 SET c='seventy-six thousand one hundred forty' WHERE a=15624;\nUPDATE t2 SET c='eighty thousand two hundred thirteen' WHERE a=15625;\nUPDATE t2 SET c='ninety-one thousand four hundred six' WHERE a=15626;\nUPDATE t2 SET c='ninety-nine thousand four hundred three' WHERE a=15627;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-three' WHERE a=15628;\nUPDATE t2 SET c='seven thousand nine hundred sixty-three' WHERE a=15629;\nUPDATE t2 SET c='forty-five thousand seven hundred four' WHERE a=15630;\nUPDATE t2 SET c='eighty-three thousand sixteen' WHERE a=15631;\nUPDATE t2 SET c='seventy-five thousand three hundred fifty-three' WHERE a=15632;\nUPDATE t2 SET c='thirty-nine thousand four hundred thirty-six' WHERE a=15633;\nUPDATE t2 SET c='fifty thousand three' WHERE a=15634;\nUPDATE t2 SET c='seventy-two thousand nine hundred forty-nine' WHERE a=15635;\nUPDATE t2 SET c='sixty-five thousand five hundred two' WHERE a=15636;\nUPDATE t2 SET c='thirty-one thousand nine hundred thirty-six' WHERE a=15637;\nUPDATE t2 SET c='seventy-five thousand seven hundred forty-eight' WHERE a=15638;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-nine' WHERE a=15639;\nUPDATE t2 SET c='seventy-two thousand eight hundred ninety-seven' WHERE a=15640;\nUPDATE t2 SET c='nine thousand sixty-seven' WHERE a=15641;\nUPDATE t2 SET c='two thousand four hundred twenty-two' WHERE a=15642;\nUPDATE t2 SET c='sixty-three thousand five hundred ten' WHERE a=15643;\nUPDATE t2 SET c='forty-eight thousand twenty' WHERE a=15644;\nUPDATE t2 SET c='seventy-two thousand six hundred ninety-three' WHERE a=15645;\nUPDATE t2 SET c='eighty-nine thousand one hundred twenty-eight' WHERE a=15646;\nUPDATE t2 SET c='nineteen thousand nine hundred eighty-six' WHERE a=15647;\nUPDATE t2 SET c='twenty-five thousand seventy' WHERE a=15648;\nUPDATE t2 SET c='eighty-six thousand three hundred seven' WHERE a=15649;\nUPDATE t2 SET c='ninety-nine thousand six hundred ninety-six' WHERE a=15650;\nUPDATE t2 SET c='thirty-four thousand three hundred one' WHERE a=15651;\nUPDATE t2 SET c='eighty-four thousand seventy-two' WHERE a=15652;\nUPDATE t2 SET c='twenty-six thousand three hundred seventy-two' WHERE a=15653;\nUPDATE t2 SET c='fifty-six thousand one hundred eighty-nine' WHERE a=15654;\nUPDATE t2 SET c='thirty-six thousand eight hundred seventy-nine' WHERE a=15655;\nUPDATE t2 SET c='thirty-five thousand nine hundred ninety-eight' WHERE a=15656;\nUPDATE t2 SET c='fifty-four thousand sixty-eight' WHERE a=15657;\nUPDATE t2 SET c='eighty-three thousand three hundred ninety-nine' WHERE a=15658;\nUPDATE t2 SET c='sixty-four thousand eight hundred seventy-three' WHERE a=15659;\nUPDATE t2 SET c='fifty-nine thousand five hundred twelve' WHERE a=15660;\nUPDATE t2 SET c='seven thousand seven hundred fifty-seven' WHERE a=15661;\nUPDATE t2 SET c='seventy-four thousand six hundred forty-eight' WHERE a=15662;\nUPDATE t2 SET c='thirty-four thousand six hundred fifty' WHERE a=15663;\nUPDATE t2 SET c='fifty-two thousand eight hundred thirty-five' WHERE a=15664;\nUPDATE t2 SET c='seventy-four thousand one hundred four' WHERE a=15665;\nUPDATE t2 SET c='fifty-three thousand six hundred ninety-one' WHERE a=15666;\nUPDATE t2 SET c='thirty-one thousand eight hundred twenty-two' WHERE a=15667;\nUPDATE t2 SET c='seventy-six thousand four hundred ninety-nine' WHERE a=15668;\nUPDATE t2 SET c='fifty-four thousand eight hundred thirty-six' WHERE a=15669;\nUPDATE t2 SET c='five thousand two hundred sixty-six' WHERE a=15670;\nUPDATE t2 SET c='forty-six thousand eight hundred eighty' WHERE a=15671;\nUPDATE t2 SET c='thirty-eight thousand one hundred one' WHERE a=15672;\nUPDATE t2 SET c='fifty-eight thousand two hundred twenty-four' WHERE a=15673;\nUPDATE t2 SET c='six thousand nine hundred thirty-five' WHERE a=15674;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-three' WHERE a=15675;\nUPDATE t2 SET c='sixty-four thousand two hundred two' WHERE a=15676;\nUPDATE t2 SET c='eighteen thousand four hundred fifty-nine' WHERE a=15677;\nUPDATE t2 SET c='seventy-nine thousand two hundred ten' WHERE a=15678;\nUPDATE t2 SET c='twenty thousand nine hundred forty-two' WHERE a=15679;\nUPDATE t2 SET c='sixty-seven thousand ninety-four' WHERE a=15680;\nUPDATE t2 SET c='eighty-two thousand seven hundred fifty-one' WHERE a=15681;\nUPDATE t2 SET c='forty-seven thousand nine hundred one' WHERE a=15682;\nUPDATE t2 SET c='twenty thousand two hundred fifty' WHERE a=15683;\nUPDATE t2 SET c='ninety-four thousand five hundred sixty-seven' WHERE a=15684;\nUPDATE t2 SET c='fifty-two thousand sixty' WHERE a=15685;\nUPDATE t2 SET c='eighty-one thousand seven hundred twenty-seven' WHERE a=15686;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy-seven' WHERE a=15687;\nUPDATE t2 SET c='sixty-five thousand three hundred one' WHERE a=15688;\nUPDATE t2 SET c='four thousand three hundred forty-four' WHERE a=15689;\nUPDATE t2 SET c='three thousand five hundred sixty-three' WHERE a=15690;\nUPDATE t2 SET c='nineteen thousand nine hundred twenty-five' WHERE a=15691;\nUPDATE t2 SET c='ninety-nine thousand five hundred forty-two' WHERE a=15692;\nUPDATE t2 SET c='seventy-four thousand five hundred twenty-nine' WHERE a=15693;\nUPDATE t2 SET c='three thousand four hundred fifty-four' WHERE a=15694;\nUPDATE t2 SET c='twenty-eight thousand three hundred forty' WHERE a=15695;\nUPDATE t2 SET c='seventy-seven thousand six hundred eighty-six' WHERE a=15696;\nUPDATE t2 SET c='forty-five thousand three hundred twenty-one' WHERE a=15697;\nUPDATE t2 SET c='eighty thousand sixty-three' WHERE a=15698;\nUPDATE t2 SET c='seventy-eight thousand nine hundred thirty-six' WHERE a=15699;\nUPDATE t2 SET c='eighty-six thousand six hundred eighty-seven' WHERE a=15700;\nUPDATE t2 SET c='forty-seven thousand seven hundred ten' WHERE a=15701;\nUPDATE t2 SET c='forty-five thousand forty-eight' WHERE a=15702;\nUPDATE t2 SET c='three thousand nine hundred seventy-eight' WHERE a=15703;\nUPDATE t2 SET c='forty thousand three hundred fifty-four' WHERE a=15704;\nUPDATE t2 SET c='sixty-five thousand two hundred nineteen' WHERE a=15705;\nUPDATE t2 SET c='thirty-four thousand two hundred ninety-eight' WHERE a=15706;\nUPDATE t2 SET c='seventy-four thousand three hundred sixty-five' WHERE a=15707;\nUPDATE t2 SET c='fifty-five thousand four hundred twenty-two' WHERE a=15708;\nUPDATE t2 SET c='sixty-four thousand six hundred forty-three' WHERE a=15709;\nUPDATE t2 SET c='fifty-two thousand six hundred eighty-two' WHERE a=15710;\nUPDATE t2 SET c='twenty-six thousand five hundred twenty-six' WHERE a=15711;\nUPDATE t2 SET c='eighty-four thousand one hundred seven' WHERE a=15712;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-two' WHERE a=15713;\nUPDATE t2 SET c='ninety thousand twenty-eight' WHERE a=15714;\nUPDATE t2 SET c='forty-one thousand seven hundred forty-two' WHERE a=15715;\nUPDATE t2 SET c='twenty-five thousand two hundred ninety-six' WHERE a=15716;\nUPDATE t2 SET c='seventy-six thousand seventeen' WHERE a=15717;\nUPDATE t2 SET c='twenty thousand seven hundred sixty-three' WHERE a=15718;\nUPDATE t2 SET c='sixty-four thousand four hundred forty-seven' WHERE a=15719;\nUPDATE t2 SET c='eleven thousand ninety-one' WHERE a=15720;\nUPDATE t2 SET c='fifteen thousand four hundred fifty-five' WHERE a=15721;\nUPDATE t2 SET c='nine thousand eight hundred seventy-eight' WHERE a=15722;\nUPDATE t2 SET c='twenty-nine thousand one hundred eighty-seven' WHERE a=15723;\nUPDATE t2 SET c='seventy thousand forty-two' WHERE a=15724;\nUPDATE t2 SET c='thirty-five thousand seven hundred fifty-two' WHERE a=15725;\nUPDATE t2 SET c='forty-two thousand nine hundred ninety-two' WHERE a=15726;\nUPDATE t2 SET c='twenty-five thousand twelve' WHERE a=15727;\nUPDATE t2 SET c='eighty-two thousand four hundred six' WHERE a=15728;\nUPDATE t2 SET c='forty-three thousand nine hundred sixty' WHERE a=15729;\nUPDATE t2 SET c='twenty-six thousand eight hundred twelve' WHERE a=15730;\nUPDATE t2 SET c='thirteen thousand ninety-seven' WHERE a=15731;\nUPDATE t2 SET c='forty-four thousand six hundred fifty-one' WHERE a=15732;\nUPDATE t2 SET c='fifty-one thousand three' WHERE a=15733;\nUPDATE t2 SET c='thirty-eight thousand five hundred eighty-one' WHERE a=15734;\nUPDATE t2 SET c='sixty-four thousand seven hundred seventy' WHERE a=15735;\nUPDATE t2 SET c='ninety thousand five hundred seventy' WHERE a=15736;\nUPDATE t2 SET c='seventeen thousand one hundred fifty' WHERE a=15737;\nUPDATE t2 SET c='forty-six thousand nine hundred eighty-four' WHERE a=15738;\nUPDATE t2 SET c='sixty thousand fifty-six' WHERE a=15739;\nUPDATE t2 SET c='twenty-six thousand one hundred twenty-three' WHERE a=15740;\nUPDATE t2 SET c='three thousand seven hundred nineteen' WHERE a=15741;\nUPDATE t2 SET c='eighty-eight thousand twenty-two' WHERE a=15742;\nUPDATE t2 SET c='five thousand three hundred three' WHERE a=15743;\nUPDATE t2 SET c='ninety-four thousand four hundred eighty-two' WHERE a=15744;\nUPDATE t2 SET c='ninety-eight thousand six hundred ninety-seven' WHERE a=15745;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-eight' WHERE a=15746;\nUPDATE t2 SET c='two thousand three hundred ninety-nine' WHERE a=15747;\nUPDATE t2 SET c='thirty-seven thousand nine hundred seventy' WHERE a=15748;\nUPDATE t2 SET c='fifty-three thousand seven hundred twelve' WHERE a=15749;\nUPDATE t2 SET c='fifty-seven thousand two hundred twelve' WHERE a=15750;\nUPDATE t2 SET c='sixty thousand nine hundred twenty' WHERE a=15751;\nUPDATE t2 SET c='eight thousand one hundred fifty-five' WHERE a=15752;\nUPDATE t2 SET c='sixty-three thousand eight hundred fifty-six' WHERE a=15753;\nUPDATE t2 SET c='twenty-one thousand three hundred thirty-six' WHERE a=15754;\nUPDATE t2 SET c='three thousand two hundred sixty-one' WHERE a=15755;\nUPDATE t2 SET c='forty-two thousand thirty-six' WHERE a=15756;\nUPDATE t2 SET c='ten thousand four hundred ninety' WHERE a=15757;\nUPDATE t2 SET c='fifty-seven thousand fifty-two' WHERE a=15758;\nUPDATE t2 SET c='fifty-six thousand one hundred ninety-six' WHERE a=15759;\nUPDATE t2 SET c='seventy-five thousand three hundred twenty-four' WHERE a=15760;\nUPDATE t2 SET c='sixty-nine thousand four hundred fifty-eight' WHERE a=15761;\nUPDATE t2 SET c='sixty-seven thousand three hundred forty-seven' WHERE a=15762;\nUPDATE t2 SET c='three thousand eight hundred sixty-six' WHERE a=15763;\nUPDATE t2 SET c='fifty-one thousand seven hundred forty-three' WHERE a=15764;\nUPDATE t2 SET c='thirty thousand nine hundred ninety-four' WHERE a=15765;\nUPDATE t2 SET c='twenty-six thousand four hundred seventy-one' WHERE a=15766;\nUPDATE t2 SET c='eighty-seven thousand nine hundred ninety-seven' WHERE a=15767;\nUPDATE t2 SET c='thirty-nine thousand eighty-five' WHERE a=15768;\nUPDATE t2 SET c='twenty-five thousand twenty-seven' WHERE a=15769;\nUPDATE t2 SET c='thirty-nine thousand five hundred seventy-three' WHERE a=15770;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty' WHERE a=15771;\nUPDATE t2 SET c='ninety-five thousand one hundred fifty-five' WHERE a=15772;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty-six' WHERE a=15773;\nUPDATE t2 SET c='fifty-two thousand eighty-eight' WHERE a=15774;\nUPDATE t2 SET c='forty-three thousand seven hundred fifty-two' WHERE a=15775;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty-one' WHERE a=15776;\nUPDATE t2 SET c='ninety-two thousand three hundred sixty-four' WHERE a=15777;\nUPDATE t2 SET c='fifty-nine thousand one hundred sixty-five' WHERE a=15778;\nUPDATE t2 SET c='twenty-three thousand ninety-four' WHERE a=15779;\nUPDATE t2 SET c='ninety-four thousand five hundred two' WHERE a=15780;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-nine' WHERE a=15781;\nUPDATE t2 SET c='thirteen thousand seven hundred eighty-two' WHERE a=15782;\nUPDATE t2 SET c='sixty-six thousand ninety-eight' WHERE a=15783;\nUPDATE t2 SET c='ninety-six thousand seven hundred fifty-five' WHERE a=15784;\nUPDATE t2 SET c='eighty-two thousand nine hundred eighty' WHERE a=15785;\nUPDATE t2 SET c='forty-four thousand seven hundred fifty' WHERE a=15786;\nUPDATE t2 SET c='sixteen thousand eighteen' WHERE a=15787;\nUPDATE t2 SET c='forty-six thousand nine hundred four' WHERE a=15788;\nUPDATE t2 SET c='fifty-nine thousand two hundred five' WHERE a=15789;\nUPDATE t2 SET c='forty-six thousand four hundred seventy-one' WHERE a=15790;\nUPDATE t2 SET c='eighty-nine thousand one hundred sixty-one' WHERE a=15791;\nUPDATE t2 SET c='eighty-two thousand two' WHERE a=15792;\nUPDATE t2 SET c='sixty-four thousand six hundred two' WHERE a=15793;\nUPDATE t2 SET c='sixty-nine thousand forty-seven' WHERE a=15794;\nUPDATE t2 SET c='forty-one thousand nine hundred thirty-one' WHERE a=15795;\nUPDATE t2 SET c='seventy-nine thousand one hundred forty-seven' WHERE a=15796;\nUPDATE t2 SET c='ninety-nine thousand nine hundred eighty-seven' WHERE a=15797;\nUPDATE t2 SET c='eighty-eight thousand six hundred fifteen' WHERE a=15798;\nUPDATE t2 SET c='thirteen thousand forty-four' WHERE a=15799;\nUPDATE t2 SET c='nine thousand nineteen' WHERE a=15800;\nUPDATE t2 SET c='forty-five thousand four hundred forty-seven' WHERE a=15801;\nUPDATE t2 SET c='eighty-two thousand three hundred fifty-four' WHERE a=15802;\nUPDATE t2 SET c='fifty-six thousand five hundred sixty' WHERE a=15803;\nUPDATE t2 SET c='thirty-eight thousand eight hundred six' WHERE a=15804;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-nine' WHERE a=15805;\nUPDATE t2 SET c='ten thousand nine hundred seventy-six' WHERE a=15806;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty-two' WHERE a=15807;\nUPDATE t2 SET c='four thousand one hundred seventy-seven' WHERE a=15808;\nUPDATE t2 SET c='sixty thousand nine hundred ninety-seven' WHERE a=15809;\nUPDATE t2 SET c='forty-six thousand three hundred eighty-six' WHERE a=15810;\nUPDATE t2 SET c='ninety-nine thousand four hundred one' WHERE a=15811;\nUPDATE t2 SET c='seven thousand seven hundred five' WHERE a=15812;\nUPDATE t2 SET c='forty thousand seven hundred ninety-three' WHERE a=15813;\nUPDATE t2 SET c='seventy-two thousand seven hundred fifty-four' WHERE a=15814;\nUPDATE t2 SET c='thirty-four thousand four hundred eighty' WHERE a=15815;\nUPDATE t2 SET c='eighty-five thousand five hundred sixty-eight' WHERE a=15816;\nUPDATE t2 SET c='seventy-four thousand three hundred sixteen' WHERE a=15817;\nUPDATE t2 SET c='sixty-eight thousand five hundred eighty-eight' WHERE a=15818;\nUPDATE t2 SET c='sixty thousand seven hundred seventy-seven' WHERE a=15819;\nUPDATE t2 SET c='fifty-four thousand sixty-two' WHERE a=15820;\nUPDATE t2 SET c='thirty thousand nine hundred nineteen' WHERE a=15821;\nUPDATE t2 SET c='six thousand eight hundred fifty-one' WHERE a=15822;\nUPDATE t2 SET c='forty-six thousand fifty-four' WHERE a=15823;\nUPDATE t2 SET c='sixty-four thousand three hundred nine' WHERE a=15824;\nUPDATE t2 SET c='thirty-six thousand four hundred fourteen' WHERE a=15825;\nUPDATE t2 SET c='ninety-five thousand twenty-one' WHERE a=15826;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-two' WHERE a=15827;\nUPDATE t2 SET c='four thousand seven hundred seventy-seven' WHERE a=15828;\nUPDATE t2 SET c='sixty-two thousand four hundred eighty-five' WHERE a=15829;\nUPDATE t2 SET c='thirty-four thousand eight hundred eighty-five' WHERE a=15830;\nUPDATE t2 SET c='seventy-two thousand sixty-one' WHERE a=15831;\nUPDATE t2 SET c='sixty-six thousand two hundred thirty-nine' WHERE a=15832;\nUPDATE t2 SET c='thirty-three thousand two hundred eleven' WHERE a=15833;\nUPDATE t2 SET c='nine thousand six hundred thirty-one' WHERE a=15834;\nUPDATE t2 SET c='seventy-one thousand five hundred eighty-seven' WHERE a=15835;\nUPDATE t2 SET c='twenty-two thousand two hundred twenty-eight' WHERE a=15836;\nUPDATE t2 SET c='eighty-three thousand seven hundred twenty-two' WHERE a=15837;\nUPDATE t2 SET c='eighty-three thousand five hundred seventy-two' WHERE a=15838;\nUPDATE t2 SET c='ninety-one thousand one hundred ninety-seven' WHERE a=15839;\nUPDATE t2 SET c='sixty-seven thousand six hundred thirty-three' WHERE a=15840;\nUPDATE t2 SET c='ninety-six thousand seven hundred eighty-seven' WHERE a=15841;\nUPDATE t2 SET c='nineteen thousand five hundred seventy-six' WHERE a=15842;\nUPDATE t2 SET c='seventy-five thousand two hundred fifty-three' WHERE a=15843;\nUPDATE t2 SET c='eighty-four thousand two hundred thirty-two' WHERE a=15844;\nUPDATE t2 SET c='twenty-seven thousand four hundred six' WHERE a=15845;\nUPDATE t2 SET c='seventy-six thousand five hundred thirty-two' WHERE a=15846;\nUPDATE t2 SET c='twenty-five thousand six hundred fifty-one' WHERE a=15847;\nUPDATE t2 SET c='forty-six thousand six hundred twenty-nine' WHERE a=15848;\nUPDATE t2 SET c='fifteen thousand twenty-eight' WHERE a=15849;\nUPDATE t2 SET c='thirty-nine thousand three hundred thirty' WHERE a=15850;\nUPDATE t2 SET c='forty-six thousand five hundred sixty-six' WHERE a=15851;\nUPDATE t2 SET c='fifty-two thousand two hundred eighty-two' WHERE a=15852;\nUPDATE t2 SET c='eighty-nine thousand five hundred ninety-five' WHERE a=15853;\nUPDATE t2 SET c='thirty-seven thousand three hundred fifty-two' WHERE a=15854;\nUPDATE t2 SET c='twenty-seven thousand four hundred sixty-two' WHERE a=15855;\nUPDATE t2 SET c='sixty-seven thousand two hundred sixty' WHERE a=15856;\nUPDATE t2 SET c='twenty-one thousand eight hundred eighty-five' WHERE a=15857;\nUPDATE t2 SET c='thirty-one thousand six hundred ninety-seven' WHERE a=15858;\nUPDATE t2 SET c='eleven thousand two hundred twenty-four' WHERE a=15859;\nUPDATE t2 SET c='sixty-four thousand fifty-six' WHERE a=15860;\nUPDATE t2 SET c='eleven thousand seven hundred twenty' WHERE a=15861;\nUPDATE t2 SET c='thirty-one thousand eighty-two' WHERE a=15862;\nUPDATE t2 SET c='fifty-one thousand six' WHERE a=15863;\nUPDATE t2 SET c='eighty-three thousand four hundred fifty-three' WHERE a=15864;\nUPDATE t2 SET c='ninety thousand eight hundred seventy-one' WHERE a=15865;\nUPDATE t2 SET c='eight thousand five hundred eighty-nine' WHERE a=15866;\nUPDATE t2 SET c='forty-four thousand eight hundred seventy-six' WHERE a=15867;\nUPDATE t2 SET c='seven thousand three hundred fifty-four' WHERE a=15868;\nUPDATE t2 SET c='forty-nine thousand two hundred forty-five' WHERE a=15869;\nUPDATE t2 SET c='thirty-seven thousand five hundred eighty-eight' WHERE a=15870;\nUPDATE t2 SET c='eighty-four thousand three hundred fifty-seven' WHERE a=15871;\nUPDATE t2 SET c='six thousand eight hundred fifty-two' WHERE a=15872;\nUPDATE t2 SET c='eighty thousand eight hundred seven' WHERE a=15873;\nUPDATE t2 SET c='seventy-one thousand seven hundred fifty' WHERE a=15874;\nUPDATE t2 SET c='forty-three thousand forty-three' WHERE a=15875;\nUPDATE t2 SET c='ninety-seven thousand eight hundred twenty-eight' WHERE a=15876;\nUPDATE t2 SET c='seventy-seven thousand nine hundred seven' WHERE a=15877;\nUPDATE t2 SET c='eighty-one thousand four hundred thirty-nine' WHERE a=15878;\nUPDATE t2 SET c='seventy-seven thousand five hundred eighteen' WHERE a=15879;\nUPDATE t2 SET c='one thousand three hundred sixty-five' WHERE a=15880;\nUPDATE t2 SET c='twenty-one thousand nine hundred seventy' WHERE a=15881;\nUPDATE t2 SET c='eighty-seven thousand nine hundred seventy-eight' WHERE a=15882;\nUPDATE t2 SET c='forty-one thousand five hundred thirty-two' WHERE a=15883;\nUPDATE t2 SET c='fifty-two thousand five hundred eighteen' WHERE a=15884;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-four' WHERE a=15885;\nUPDATE t2 SET c='seventy-one thousand eight hundred eleven' WHERE a=15886;\nUPDATE t2 SET c='fifty-nine thousand three hundred ninety-three' WHERE a=15887;\nUPDATE t2 SET c='fifty thousand nine hundred eighty-three' WHERE a=15888;\nUPDATE t2 SET c='ninety-two thousand six hundred' WHERE a=15889;\nUPDATE t2 SET c='sixty-six thousand five hundred four' WHERE a=15890;\nUPDATE t2 SET c='forty-nine thousand three hundred ten' WHERE a=15891;\nUPDATE t2 SET c='forty thousand nine hundred thirty-six' WHERE a=15892;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-six' WHERE a=15893;\nUPDATE t2 SET c='sixty-eight thousand one hundred ten' WHERE a=15894;\nUPDATE t2 SET c='one thousand one hundred twenty-four' WHERE a=15895;\nUPDATE t2 SET c='fifty thousand seven hundred fifty' WHERE a=15896;\nUPDATE t2 SET c='twenty-three thousand seven hundred seventy-seven' WHERE a=15897;\nUPDATE t2 SET c='eighty-nine thousand four hundred fifteen' WHERE a=15898;\nUPDATE t2 SET c='thirty-three thousand five hundred seventeen' WHERE a=15899;\nUPDATE t2 SET c='forty-six thousand nine hundred thirteen' WHERE a=15900;\nUPDATE t2 SET c='fifty-three thousand five hundred ten' WHERE a=15901;\nUPDATE t2 SET c='thirty-seven thousand two hundred eighty-eight' WHERE a=15902;\nUPDATE t2 SET c='thirty-six thousand six hundred nine' WHERE a=15903;\nUPDATE t2 SET c='twenty thousand seven hundred forty-three' WHERE a=15904;\nUPDATE t2 SET c='thirty-four thousand four hundred fifty-nine' WHERE a=15905;\nUPDATE t2 SET c='forty-seven thousand four hundred fourteen' WHERE a=15906;\nUPDATE t2 SET c='fifty-seven thousand five hundred fifty-nine' WHERE a=15907;\nUPDATE t2 SET c='fifty-five thousand seven hundred five' WHERE a=15908;\nUPDATE t2 SET c='eleven thousand eight hundred ninety-one' WHERE a=15909;\nUPDATE t2 SET c='ten thousand six hundred forty-nine' WHERE a=15910;\nUPDATE t2 SET c='thirty-two thousand three hundred forty-seven' WHERE a=15911;\nUPDATE t2 SET c='fifty-eight thousand one hundred nine' WHERE a=15912;\nUPDATE t2 SET c='ninety-two thousand five hundred ninety-eight' WHERE a=15913;\nUPDATE t2 SET c='thirty-six thousand one hundred twenty-six' WHERE a=15914;\nUPDATE t2 SET c='twenty-one thousand eight hundred ninety-nine' WHERE a=15915;\nUPDATE t2 SET c='seventy-two thousand six hundred seventy' WHERE a=15916;\nUPDATE t2 SET c='thirteen thousand four hundred seventeen' WHERE a=15917;\nUPDATE t2 SET c='thirty-seven thousand ninety-two' WHERE a=15918;\nUPDATE t2 SET c='seventy thousand seven hundred seventy-three' WHERE a=15919;\nUPDATE t2 SET c='twenty-nine thousand eight hundred sixty-eight' WHERE a=15920;\nUPDATE t2 SET c='forty-three thousand ninety-three' WHERE a=15921;\nUPDATE t2 SET c='eighty-seven thousand five hundred eighty' WHERE a=15922;\nUPDATE t2 SET c='seventy thousand one hundred eighty-six' WHERE a=15923;\nUPDATE t2 SET c='four thousand nine hundred eighty-eight' WHERE a=15924;\nUPDATE t2 SET c='ninety-two thousand six hundred ninety-six' WHERE a=15925;\nUPDATE t2 SET c='sixteen thousand four hundred fifty-four' WHERE a=15926;\nUPDATE t2 SET c='sixty-one thousand five hundred fifty-six' WHERE a=15927;\nUPDATE t2 SET c='fifty thousand seven hundred sixty-three' WHERE a=15928;\nUPDATE t2 SET c='twenty-six thousand three hundred forty-two' WHERE a=15929;\nUPDATE t2 SET c='twelve thousand thirty-five' WHERE a=15930;\nUPDATE t2 SET c='seventy-five thousand three hundred ninety-eight' WHERE a=15931;\nUPDATE t2 SET c='ten thousand eight hundred forty-six' WHERE a=15932;\nUPDATE t2 SET c='six thousand five hundred sixty-five' WHERE a=15933;\nUPDATE t2 SET c='twenty-two thousand five hundred fifty-three' WHERE a=15934;\nUPDATE t2 SET c='nineteen thousand four hundred fifty-two' WHERE a=15935;\nUPDATE t2 SET c='forty-eight thousand five hundred fifty-four' WHERE a=15936;\nUPDATE t2 SET c='seven thousand five hundred sixty-four' WHERE a=15937;\nUPDATE t2 SET c='fifty thousand eight hundred ninety' WHERE a=15938;\nUPDATE t2 SET c='fifty-four thousand seven hundred eight' WHERE a=15939;\nUPDATE t2 SET c='forty-eight thousand seven hundred seventy-nine' WHERE a=15940;\nUPDATE t2 SET c='eighty thousand four hundred' WHERE a=15941;\nUPDATE t2 SET c='seventy-eight thousand nine hundred seventy-four' WHERE a=15942;\nUPDATE t2 SET c='forty-six thousand seven hundred eighty-six' WHERE a=15943;\nUPDATE t2 SET c='ninety-seven thousand six hundred sixty-eight' WHERE a=15944;\nUPDATE t2 SET c='sixty-seven thousand nine hundred forty-eight' WHERE a=15945;\nUPDATE t2 SET c='twenty-nine thousand five hundred fifty-four' WHERE a=15946;\nUPDATE t2 SET c='forty-four thousand five hundred twenty-nine' WHERE a=15947;\nUPDATE t2 SET c='seventy-one thousand eight hundred nine' WHERE a=15948;\nUPDATE t2 SET c='sixty-nine thousand eight hundred fifty' WHERE a=15949;\nUPDATE t2 SET c='twenty-five thousand two hundred fifty-eight' WHERE a=15950;\nUPDATE t2 SET c='seventy-three thousand three hundred forty' WHERE a=15951;\nUPDATE t2 SET c='fifty-seven thousand five hundred twenty' WHERE a=15952;\nUPDATE t2 SET c='twenty-five thousand two hundred fifty' WHERE a=15953;\nUPDATE t2 SET c='seventeen thousand five hundred twenty-five' WHERE a=15954;\nUPDATE t2 SET c='nine hundred seven' WHERE a=15955;\nUPDATE t2 SET c='forty-five thousand five hundred thirty-two' WHERE a=15956;\nUPDATE t2 SET c='twelve thousand nine hundred nineteen' WHERE a=15957;\nUPDATE t2 SET c='eighty thousand nine hundred eighty-three' WHERE a=15958;\nUPDATE t2 SET c='twenty-one thousand one hundred forty' WHERE a=15959;\nUPDATE t2 SET c='twenty-three thousand nine hundred forty-four' WHERE a=15960;\nUPDATE t2 SET c='seventy-eight thousand two hundred twelve' WHERE a=15961;\nUPDATE t2 SET c='ninety-nine thousand six hundred fifteen' WHERE a=15962;\nUPDATE t2 SET c='thirteen thousand two hundred fifty-one' WHERE a=15963;\nUPDATE t2 SET c='seventy-one thousand one hundred eighteen' WHERE a=15964;\nUPDATE t2 SET c='twenty-two thousand seven hundred sixty-one' WHERE a=15965;\nUPDATE t2 SET c='fifty-five thousand six hundred sixty-three' WHERE a=15966;\nUPDATE t2 SET c='forty-five thousand four hundred twenty-nine' WHERE a=15967;\nUPDATE t2 SET c='fifty thousand five hundred sixty-five' WHERE a=15968;\nUPDATE t2 SET c='ninety-eight thousand six hundred twenty' WHERE a=15969;\nUPDATE t2 SET c='fifty-two thousand seven hundred twenty' WHERE a=15970;\nUPDATE t2 SET c='forty thousand five hundred fifty-five' WHERE a=15971;\nUPDATE t2 SET c='sixty-two thousand two hundred forty-seven' WHERE a=15972;\nUPDATE t2 SET c='forty-six thousand three hundred fifty-nine' WHERE a=15973;\nUPDATE t2 SET c='twenty-seven thousand three hundred seven' WHERE a=15974;\nUPDATE t2 SET c='fifty-three thousand seven hundred twenty' WHERE a=15975;\nUPDATE t2 SET c='ninety-five thousand four hundred sixty-six' WHERE a=15976;\nUPDATE t2 SET c='eighty-six thousand one hundred seventy-nine' WHERE a=15977;\nUPDATE t2 SET c='fifty-five thousand nine hundred twenty-eight' WHERE a=15978;\nUPDATE t2 SET c='fifty thousand four hundred seventeen' WHERE a=15979;\nUPDATE t2 SET c='ten thousand eight hundred seventy-four' WHERE a=15980;\nUPDATE t2 SET c='ninety-two thousand nineteen' WHERE a=15981;\nUPDATE t2 SET c='twenty-one thousand seven hundred seventy' WHERE a=15982;\nUPDATE t2 SET c='seven thousand three hundred thirty-eight' WHERE a=15983;\nUPDATE t2 SET c='seventy-six thousand seventy-eight' WHERE a=15984;\nUPDATE t2 SET c='thirty-five thousand six hundred thirty-seven' WHERE a=15985;\nUPDATE t2 SET c='eighty thousand five hundred ten' WHERE a=15986;\nUPDATE t2 SET c='fifty-four thousand eight hundred ninety-nine' WHERE a=15987;\nUPDATE t2 SET c='ninety-five thousand six hundred twenty-five' WHERE a=15988;\nUPDATE t2 SET c='forty-three thousand eight hundred forty-seven' WHERE a=15989;\nUPDATE t2 SET c='sixty-eight thousand six hundred seventy-nine' WHERE a=15990;\nUPDATE t2 SET c='fifty-five thousand four hundred forty-six' WHERE a=15991;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ten' WHERE a=15992;\nUPDATE t2 SET c='seventy-one thousand five hundred eighty-eight' WHERE a=15993;\nUPDATE t2 SET c='four thousand seventy-four' WHERE a=15994;\nUPDATE t2 SET c='eighty-five thousand four hundred twenty-six' WHERE a=15995;\nUPDATE t2 SET c='ninety thousand seven hundred thirty-two' WHERE a=15996;\nUPDATE t2 SET c='fifty-four thousand sixty-four' WHERE a=15997;\nUPDATE t2 SET c='ninety-seven thousand one hundred' WHERE a=15998;\nUPDATE t2 SET c='ninety-one thousand six hundred forty-six' WHERE a=15999;\nUPDATE t2 SET c='two thousand five hundred seventy-seven' WHERE a=16000;\nUPDATE t2 SET c='eighty-one thousand three hundred forty' WHERE a=16001;\nUPDATE t2 SET c='eighty-five thousand eight hundred twenty-five' WHERE a=16002;\nUPDATE t2 SET c='fifty-one thousand six hundred thirty-five' WHERE a=16003;\nUPDATE t2 SET c='thirteen thousand eight hundred nineteen' WHERE a=16004;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty' WHERE a=16005;\nUPDATE t2 SET c='seventy-six thousand seven hundred twenty-two' WHERE a=16006;\nUPDATE t2 SET c='fifty-one thousand three hundred forty-seven' WHERE a=16007;\nUPDATE t2 SET c='twenty-five thousand four hundred forty' WHERE a=16008;\nUPDATE t2 SET c='forty thousand eight hundred thirty-one' WHERE a=16009;\nUPDATE t2 SET c='nineteen thousand three hundred sixty-seven' WHERE a=16010;\nUPDATE t2 SET c='twenty-eight thousand one hundred ninety-five' WHERE a=16011;\nUPDATE t2 SET c='fifty-four thousand one hundred nine' WHERE a=16012;\nUPDATE t2 SET c='thirty-four thousand two hundred sixty-eight' WHERE a=16013;\nUPDATE t2 SET c='twenty-three thousand six hundred seventy-nine' WHERE a=16014;\nUPDATE t2 SET c='fifty-three thousand one hundred seventy-five' WHERE a=16015;\nUPDATE t2 SET c='fifty-three thousand four hundred fifty-two' WHERE a=16016;\nUPDATE t2 SET c='thirty-three thousand nine hundred one' WHERE a=16017;\nUPDATE t2 SET c='seventy-five thousand three hundred eighty-five' WHERE a=16018;\nUPDATE t2 SET c='sixty-one thousand three hundred eighty-three' WHERE a=16019;\nUPDATE t2 SET c='thirty-two thousand one hundred thirteen' WHERE a=16020;\nUPDATE t2 SET c='seventy-seven thousand sixty-nine' WHERE a=16021;\nUPDATE t2 SET c='fifty-five thousand twenty-seven' WHERE a=16022;\nUPDATE t2 SET c='fifty-nine thousand nine hundred thirteen' WHERE a=16023;\nUPDATE t2 SET c='twenty-nine thousand five hundred fifty-five' WHERE a=16024;\nUPDATE t2 SET c='forty-seven thousand eight hundred thirty-three' WHERE a=16025;\nUPDATE t2 SET c='thirty-six thousand two hundred seventy' WHERE a=16026;\nUPDATE t2 SET c='seventy-six thousand seven hundred sixty-five' WHERE a=16027;\nUPDATE t2 SET c='ninety-seven thousand five hundred twenty-seven' WHERE a=16028;\nUPDATE t2 SET c='fifty thousand one hundred eighty-nine' WHERE a=16029;\nUPDATE t2 SET c='eighty-nine thousand one hundred fifty-eight' WHERE a=16030;\nUPDATE t2 SET c='fifty-eight thousand sixty-three' WHERE a=16031;\nUPDATE t2 SET c='ninety thousand five hundred eighty-two' WHERE a=16032;\nUPDATE t2 SET c='eighty-five thousand eight hundred seventy-five' WHERE a=16033;\nUPDATE t2 SET c='fifty-eight thousand two hundred sixty-five' WHERE a=16034;\nUPDATE t2 SET c='sixty-five thousand ninety-one' WHERE a=16035;\nUPDATE t2 SET c='six thousand three hundred thirty-six' WHERE a=16036;\nUPDATE t2 SET c='fifty-six thousand two hundred twenty-seven' WHERE a=16037;\nUPDATE t2 SET c='seventy-one thousand one hundred ninety-eight' WHERE a=16038;\nUPDATE t2 SET c='thirty-eight thousand four hundred forty-seven' WHERE a=16039;\nUPDATE t2 SET c='twenty-eight thousand seven hundred seventy' WHERE a=16040;\nUPDATE t2 SET c='eighty-five thousand three hundred five' WHERE a=16041;\nUPDATE t2 SET c='seventy-four thousand two hundred thirty-six' WHERE a=16042;\nUPDATE t2 SET c='fifty-seven thousand one hundred sixty-two' WHERE a=16043;\nUPDATE t2 SET c='four hundred sixty-three' WHERE a=16044;\nUPDATE t2 SET c='nine thousand six hundred sixty-eight' WHERE a=16045;\nUPDATE t2 SET c='thirty thousand three hundred ninety-four' WHERE a=16046;\nUPDATE t2 SET c='thirty-five thousand seventy-one' WHERE a=16047;\nUPDATE t2 SET c='seventy-three thousand nine hundred nineteen' WHERE a=16048;\nUPDATE t2 SET c='thirty-six thousand three hundred twenty-six' WHERE a=16049;\nUPDATE t2 SET c='sixty-seven thousand one hundred thirty-six' WHERE a=16050;\nUPDATE t2 SET c='forty-seven thousand nine hundred sixty' WHERE a=16051;\nUPDATE t2 SET c='thirty-seven thousand thirty-two' WHERE a=16052;\nUPDATE t2 SET c='sixty-two thousand six hundred sixty-eight' WHERE a=16053;\nUPDATE t2 SET c='fifty-one thousand two' WHERE a=16054;\nUPDATE t2 SET c='ninety-seven thousand seven hundred eighty-five' WHERE a=16055;\nUPDATE t2 SET c='seven thousand six hundred fifteen' WHERE a=16056;\nUPDATE t2 SET c='seventy-five thousand eight hundred six' WHERE a=16057;\nUPDATE t2 SET c='forty-eight thousand forty-four' WHERE a=16058;\nUPDATE t2 SET c='eighty-four thousand two hundred forty-six' WHERE a=16059;\nUPDATE t2 SET c='thirty-seven thousand five hundred seven' WHERE a=16060;\nUPDATE t2 SET c='twenty-two thousand eight hundred sixty-three' WHERE a=16061;\nUPDATE t2 SET c='thirty-seven thousand nine hundred fifty-two' WHERE a=16062;\nUPDATE t2 SET c='sixty-six thousand eight hundred one' WHERE a=16063;\nUPDATE t2 SET c='eighty-three thousand three hundred eighty-six' WHERE a=16064;\nUPDATE t2 SET c='seventy-three thousand two hundred thirty-nine' WHERE a=16065;\nUPDATE t2 SET c='ninety-five thousand six hundred twenty-two' WHERE a=16066;\nUPDATE t2 SET c='twenty thousand one hundred fifty-one' WHERE a=16067;\nUPDATE t2 SET c='forty-nine thousand eight hundred nineteen' WHERE a=16068;\nUPDATE t2 SET c='forty-nine thousand nine hundred sixty' WHERE a=16069;\nUPDATE t2 SET c='fifty-one thousand seven hundred forty-five' WHERE a=16070;\nUPDATE t2 SET c='sixty-six thousand six hundred fifty-three' WHERE a=16071;\nUPDATE t2 SET c='fifty-nine thousand six hundred seventy-three' WHERE a=16072;\nUPDATE t2 SET c='three thousand two hundred twenty-two' WHERE a=16073;\nUPDATE t2 SET c='fifty-one thousand forty-three' WHERE a=16074;\nUPDATE t2 SET c='fifty-seven thousand nine hundred sixty-six' WHERE a=16075;\nUPDATE t2 SET c='fifty thousand nine hundred twenty-seven' WHERE a=16076;\nUPDATE t2 SET c='seventy thousand nine hundred twelve' WHERE a=16077;\nUPDATE t2 SET c='forty-six thousand four' WHERE a=16078;\nUPDATE t2 SET c='eleven thousand seven hundred seventy-four' WHERE a=16079;\nUPDATE t2 SET c='seventy thousand two hundred sixty-three' WHERE a=16080;\nUPDATE t2 SET c='four thousand eight hundred ninety-four' WHERE a=16081;\nUPDATE t2 SET c='eighty-four thousand eight hundred seventy-six' WHERE a=16082;\nUPDATE t2 SET c='eighty-three thousand four hundred sixty-six' WHERE a=16083;\nUPDATE t2 SET c='ninety-eight thousand eight hundred eighty-five' WHERE a=16084;\nUPDATE t2 SET c='ten thousand three hundred ninety-seven' WHERE a=16085;\nUPDATE t2 SET c='forty-six thousand five hundred twenty-eight' WHERE a=16086;\nUPDATE t2 SET c='thirty-three thousand twenty-three' WHERE a=16087;\nUPDATE t2 SET c='forty-five thousand two hundred thirty-nine' WHERE a=16088;\nUPDATE t2 SET c='sixteen thousand four hundred eighty-nine' WHERE a=16089;\nUPDATE t2 SET c='eighty-six thousand thirty' WHERE a=16090;\nUPDATE t2 SET c='thirteen thousand two hundred ninety-eight' WHERE a=16091;\nUPDATE t2 SET c='two thousand three hundred twenty-seven' WHERE a=16092;\nUPDATE t2 SET c='eighty-three thousand ninety-eight' WHERE a=16093;\nUPDATE t2 SET c='fifty-one thousand seven hundred sixty-seven' WHERE a=16094;\nUPDATE t2 SET c='seventy-six thousand five hundred thirty-nine' WHERE a=16095;\nUPDATE t2 SET c='thirty-three thousand three hundred twenty-six' WHERE a=16096;\nUPDATE t2 SET c='sixty-five thousand seven hundred eighteen' WHERE a=16097;\nUPDATE t2 SET c='twelve thousand eight hundred seventy-seven' WHERE a=16098;\nUPDATE t2 SET c='eighty-two thousand seven hundred fifty-four' WHERE a=16099;\nUPDATE t2 SET c='seventeen thousand six hundred ninety-three' WHERE a=16100;\nUPDATE t2 SET c='sixty-five thousand five hundred forty' WHERE a=16101;\nUPDATE t2 SET c='sixty-two thousand one hundred ninety-nine' WHERE a=16102;\nUPDATE t2 SET c='twenty-nine thousand one hundred twelve' WHERE a=16103;\nUPDATE t2 SET c='forty-three thousand six hundred twenty-one' WHERE a=16104;\nUPDATE t2 SET c='thirty-six thousand seven hundred ninety-four' WHERE a=16105;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty-nine' WHERE a=16106;\nUPDATE t2 SET c='forty-eight thousand five hundred eighty-two' WHERE a=16107;\nUPDATE t2 SET c='twenty-eight thousand seven hundred twenty-three' WHERE a=16108;\nUPDATE t2 SET c='sixty-six thousand nine hundred twenty-five' WHERE a=16109;\nUPDATE t2 SET c='fifty-one thousand one hundred fifty-one' WHERE a=16110;\nUPDATE t2 SET c='eighty-four thousand two hundred forty-one' WHERE a=16111;\nUPDATE t2 SET c='forty thousand one hundred seventy-six' WHERE a=16112;\nUPDATE t2 SET c='ninety-two thousand six hundred thirty-six' WHERE a=16113;\nUPDATE t2 SET c='eighty-two thousand two hundred ninety-four' WHERE a=16114;\nUPDATE t2 SET c='three thousand six hundred twenty-seven' WHERE a=16115;\nUPDATE t2 SET c='three thousand seven hundred ninety-five' WHERE a=16116;\nUPDATE t2 SET c='thirty-eight thousand five hundred ninety-two' WHERE a=16117;\nUPDATE t2 SET c='sixty-one thousand eighty-seven' WHERE a=16118;\nUPDATE t2 SET c='nineteen thousand five hundred seventeen' WHERE a=16119;\nUPDATE t2 SET c='nine thousand two hundred seventy-six' WHERE a=16120;\nUPDATE t2 SET c='eighty-six thousand six hundred thirty' WHERE a=16121;\nUPDATE t2 SET c='ninety-five thousand eight hundred forty-four' WHERE a=16122;\nUPDATE t2 SET c='fifty-nine thousand nine hundred forty-eight' WHERE a=16123;\nUPDATE t2 SET c='ninety-six thousand one hundred five' WHERE a=16124;\nUPDATE t2 SET c='seventy thousand seven hundred forty-nine' WHERE a=16125;\nUPDATE t2 SET c='eighty-seven thousand four hundred forty-nine' WHERE a=16126;\nUPDATE t2 SET c='eighty-seven thousand four hundred twelve' WHERE a=16127;\nUPDATE t2 SET c='twenty-three thousand two hundred ninety-three' WHERE a=16128;\nUPDATE t2 SET c='seventy-six thousand seven hundred eighty-one' WHERE a=16129;\nUPDATE t2 SET c='fifty-six thousand seven hundred ten' WHERE a=16130;\nUPDATE t2 SET c='seventy-five thousand eight hundred fifty-three' WHERE a=16131;\nUPDATE t2 SET c='forty-seven thousand one hundred forty-three' WHERE a=16132;\nUPDATE t2 SET c='thirteen thousand two hundred fifty-six' WHERE a=16133;\nUPDATE t2 SET c='eighty-two thousand nine hundred sixty-five' WHERE a=16134;\nUPDATE t2 SET c='thirty-one thousand one hundred one' WHERE a=16135;\nUPDATE t2 SET c='sixty-three thousand five hundred forty-eight' WHERE a=16136;\nUPDATE t2 SET c='seventy-five thousand thirty-two' WHERE a=16137;\nUPDATE t2 SET c='six thousand six hundred seventy-nine' WHERE a=16138;\nUPDATE t2 SET c='sixty-eight thousand six hundred twenty-four' WHERE a=16139;\nUPDATE t2 SET c='sixty-two thousand five hundred nineteen' WHERE a=16140;\nUPDATE t2 SET c='ninety-two thousand one hundred sixty-seven' WHERE a=16141;\nUPDATE t2 SET c='thirty-seven thousand two hundred forty-six' WHERE a=16142;\nUPDATE t2 SET c='seventy-seven thousand eighty-nine' WHERE a=16143;\nUPDATE t2 SET c='twenty-one thousand one hundred eighty-four' WHERE a=16144;\nUPDATE t2 SET c='seven thousand seven hundred seventy' WHERE a=16145;\nUPDATE t2 SET c='nine thousand eight hundred sixty-nine' WHERE a=16146;\nUPDATE t2 SET c='seventy-three thousand seven hundred twenty' WHERE a=16147;\nUPDATE t2 SET c='fifty-one thousand nine hundred four' WHERE a=16148;\nUPDATE t2 SET c='eighty-eight thousand eight hundred ninety-five' WHERE a=16149;\nUPDATE t2 SET c='thirty-six thousand one hundred four' WHERE a=16150;\nUPDATE t2 SET c='forty thousand one hundred fifty-seven' WHERE a=16151;\nUPDATE t2 SET c='forty-seven thousand one hundred sixty-eight' WHERE a=16152;\nUPDATE t2 SET c='five hundred three' WHERE a=16153;\nUPDATE t2 SET c='forty-one thousand two hundred thirty-eight' WHERE a=16154;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fifty-five' WHERE a=16155;\nUPDATE t2 SET c='fifty-eight thousand eighty-one' WHERE a=16156;\nUPDATE t2 SET c='thirty-three thousand seven hundred sixty' WHERE a=16157;\nUPDATE t2 SET c='seventy-eight thousand three hundred ninety-three' WHERE a=16158;\nUPDATE t2 SET c='sixty-four thousand three hundred ninety-seven' WHERE a=16159;\nUPDATE t2 SET c='seventy-seven thousand nine hundred thirty-six' WHERE a=16160;\nUPDATE t2 SET c='eighty-eight thousand one hundred eleven' WHERE a=16161;\nUPDATE t2 SET c='fifty-four thousand nine hundred thirty-three' WHERE a=16162;\nUPDATE t2 SET c='sixty-two thousand six hundred forty' WHERE a=16163;\nUPDATE t2 SET c='fifty-four thousand four hundred sixty-two' WHERE a=16164;\nUPDATE t2 SET c='thirty-three thousand four hundred ten' WHERE a=16165;\nUPDATE t2 SET c='thirty-five thousand eight hundred thirty-six' WHERE a=16166;\nUPDATE t2 SET c='eleven thousand five hundred twenty' WHERE a=16167;\nUPDATE t2 SET c='thirty-one thousand five hundred forty-six' WHERE a=16168;\nUPDATE t2 SET c='fifty-six thousand two hundred ninety-one' WHERE a=16169;\nUPDATE t2 SET c='forty-five thousand two hundred twelve' WHERE a=16170;\nUPDATE t2 SET c='twenty-three thousand five hundred seventy-six' WHERE a=16171;\nUPDATE t2 SET c='one thousand forty-seven' WHERE a=16172;\nUPDATE t2 SET c='eighteen thousand fifty-four' WHERE a=16173;\nUPDATE t2 SET c='eighteen thousand two hundred forty-two' WHERE a=16174;\nUPDATE t2 SET c='forty-one thousand six hundred fifty-six' WHERE a=16175;\nUPDATE t2 SET c='twenty-nine thousand ninety-six' WHERE a=16176;\nUPDATE t2 SET c='seventy-seven thousand three hundred twenty-three' WHERE a=16177;\nUPDATE t2 SET c='sixty-eight thousand one hundred seventy-four' WHERE a=16178;\nUPDATE t2 SET c='forty-three thousand eight hundred sixty-one' WHERE a=16179;\nUPDATE t2 SET c='forty thousand seven hundred forty-three' WHERE a=16180;\nUPDATE t2 SET c='forty-three thousand two hundred seventy-nine' WHERE a=16181;\nUPDATE t2 SET c='fourteen thousand two hundred eight' WHERE a=16182;\nUPDATE t2 SET c='sixty-eight thousand five hundred seventy-two' WHERE a=16183;\nUPDATE t2 SET c='seventy-eight thousand three hundred thirty-one' WHERE a=16184;\nUPDATE t2 SET c='thirty-six thousand seven hundred twenty-five' WHERE a=16185;\nUPDATE t2 SET c='thirty-two thousand seven hundred eighteen' WHERE a=16186;\nUPDATE t2 SET c='twenty-six thousand four hundred forty-nine' WHERE a=16187;\nUPDATE t2 SET c='eighty-five thousand five hundred eighty-five' WHERE a=16188;\nUPDATE t2 SET c='forty-nine thousand seven hundred ninety-four' WHERE a=16189;\nUPDATE t2 SET c='forty-three thousand seven hundred eighty-three' WHERE a=16190;\nUPDATE t2 SET c='seventy-nine thousand three hundred thirty-three' WHERE a=16191;\nUPDATE t2 SET c='twenty-seven thousand four hundred seventy-nine' WHERE a=16192;\nUPDATE t2 SET c='eighty-two thousand two hundred sixteen' WHERE a=16193;\nUPDATE t2 SET c='eighty-four thousand six hundred eighty-three' WHERE a=16194;\nUPDATE t2 SET c='fifty-six thousand five hundred fifty-four' WHERE a=16195;\nUPDATE t2 SET c='forty-six thousand eighty-four' WHERE a=16196;\nUPDATE t2 SET c='sixty-four thousand seven hundred forty-two' WHERE a=16197;\nUPDATE t2 SET c='sixty-five thousand four hundred thirty-seven' WHERE a=16198;\nUPDATE t2 SET c='fifty thousand five hundred sixty-two' WHERE a=16199;\nUPDATE t2 SET c='twelve thousand three hundred sixty-eight' WHERE a=16200;\nUPDATE t2 SET c='nineteen thousand seven hundred forty-eight' WHERE a=16201;\nUPDATE t2 SET c='ninety thousand nine hundred fifty-one' WHERE a=16202;\nUPDATE t2 SET c='seventy-nine thousand one hundred twenty-two' WHERE a=16203;\nUPDATE t2 SET c='sixty-seven thousand nine hundred fifty-one' WHERE a=16204;\nUPDATE t2 SET c='eighty-eight thousand three hundred nineteen' WHERE a=16205;\nUPDATE t2 SET c='fifty-six thousand seventy-three' WHERE a=16206;\nUPDATE t2 SET c='twenty-one thousand six hundred ninety-seven' WHERE a=16207;\nUPDATE t2 SET c='seventy-one thousand one hundred sixty-nine' WHERE a=16208;\nUPDATE t2 SET c='fifty thousand eight hundred twenty-one' WHERE a=16209;\nUPDATE t2 SET c='seventy-two thousand three hundred thirty' WHERE a=16210;\nUPDATE t2 SET c='eighty-eight thousand five hundred fifty-eight' WHERE a=16211;\nUPDATE t2 SET c='twenty-two thousand eight hundred ninety-two' WHERE a=16212;\nUPDATE t2 SET c='thirty-eight thousand four hundred six' WHERE a=16213;\nUPDATE t2 SET c='ninety-one thousand four hundred twenty' WHERE a=16214;\nUPDATE t2 SET c='forty-one thousand fifty-seven' WHERE a=16215;\nUPDATE t2 SET c='ninety-seven thousand one hundred forty' WHERE a=16216;\nUPDATE t2 SET c='ninety-seven thousand two hundred ninety-eight' WHERE a=16217;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-four' WHERE a=16218;\nUPDATE t2 SET c='ninety-nine thousand eight hundred six' WHERE a=16219;\nUPDATE t2 SET c='thirty-two thousand one hundred seventeen' WHERE a=16220;\nUPDATE t2 SET c='fifty-five thousand five hundred twenty' WHERE a=16221;\nUPDATE t2 SET c='thirty-eight thousand two hundred nineteen' WHERE a=16222;\nUPDATE t2 SET c='fifty-two thousand nine hundred fifty-five' WHERE a=16223;\nUPDATE t2 SET c='seventy-seven thousand three hundred ninety-eight' WHERE a=16224;\nUPDATE t2 SET c='ninety-one thousand eight hundred seventeen' WHERE a=16225;\nUPDATE t2 SET c='eighty-six thousand six hundred forty-three' WHERE a=16226;\nUPDATE t2 SET c='seventy-nine thousand four hundred twenty-six' WHERE a=16227;\nUPDATE t2 SET c='ninety-five thousand seven hundred seventy-seven' WHERE a=16228;\nUPDATE t2 SET c='fifty-four thousand three hundred thirteen' WHERE a=16229;\nUPDATE t2 SET c='forty-one thousand five hundred fifty-eight' WHERE a=16230;\nUPDATE t2 SET c='ninety-one thousand one hundred eighty' WHERE a=16231;\nUPDATE t2 SET c='fourteen thousand four hundred thirty-seven' WHERE a=16232;\nUPDATE t2 SET c='ninety-three thousand seven hundred forty-four' WHERE a=16233;\nUPDATE t2 SET c='fifty-eight thousand six hundred eighty-eight' WHERE a=16234;\nUPDATE t2 SET c='eighty-three thousand sixty' WHERE a=16235;\nUPDATE t2 SET c='seventy-nine thousand seven hundred ninety-five' WHERE a=16236;\nUPDATE t2 SET c='ninety-six thousand two hundred seventy-five' WHERE a=16237;\nUPDATE t2 SET c='seventy-three thousand seventy-six' WHERE a=16238;\nUPDATE t2 SET c='sixty-eight thousand six hundred nine' WHERE a=16239;\nUPDATE t2 SET c='forty-two thousand five hundred twenty-three' WHERE a=16240;\nUPDATE t2 SET c='eight thousand four hundred thirty-six' WHERE a=16241;\nUPDATE t2 SET c='sixty-three thousand one hundred thirty-two' WHERE a=16242;\nUPDATE t2 SET c='thirty-seven thousand nine hundred forty-five' WHERE a=16243;\nUPDATE t2 SET c='sixty-eight thousand nine hundred fifty-seven' WHERE a=16244;\nUPDATE t2 SET c='sixty-five thousand nine hundred eighty-two' WHERE a=16245;\nUPDATE t2 SET c='forty-eight thousand four hundred twenty-eight' WHERE a=16246;\nUPDATE t2 SET c='four thousand seven hundred forty-four' WHERE a=16247;\nUPDATE t2 SET c='thirty-seven thousand ninety-seven' WHERE a=16248;\nUPDATE t2 SET c='eighty-six thousand four hundred forty' WHERE a=16249;\nUPDATE t2 SET c='eleven thousand nine hundred six' WHERE a=16250;\nUPDATE t2 SET c='sixty-six thousand two hundred twenty-three' WHERE a=16251;\nUPDATE t2 SET c='sixty-two thousand four hundred sixty-six' WHERE a=16252;\nUPDATE t2 SET c='twenty thousand eight hundred forty-six' WHERE a=16253;\nUPDATE t2 SET c='ninety-two thousand five hundred fifty-seven' WHERE a=16254;\nUPDATE t2 SET c='fifty-eight thousand one hundred fifteen' WHERE a=16255;\nUPDATE t2 SET c='six thousand six hundred twenty-four' WHERE a=16256;\nUPDATE t2 SET c='ninety-eight thousand two hundred eighty-one' WHERE a=16257;\nUPDATE t2 SET c='eighty-two thousand seven hundred sixty-eight' WHERE a=16258;\nUPDATE t2 SET c='five thousand three' WHERE a=16259;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-four' WHERE a=16260;\nUPDATE t2 SET c='eighty thousand seven hundred twenty-eight' WHERE a=16261;\nUPDATE t2 SET c='seventy-nine thousand one hundred forty-two' WHERE a=16262;\nUPDATE t2 SET c='twenty-nine thousand one hundred ninety' WHERE a=16263;\nUPDATE t2 SET c='eighty-five thousand six hundred nine' WHERE a=16264;\nUPDATE t2 SET c='thirty-nine thousand eight hundred eighty-six' WHERE a=16265;\nUPDATE t2 SET c='thirty-three thousand three hundred forty-six' WHERE a=16266;\nUPDATE t2 SET c='ninety-nine thousand nine hundred thirty-seven' WHERE a=16267;\nUPDATE t2 SET c='four thousand nine hundred seventeen' WHERE a=16268;\nUPDATE t2 SET c='thirty-four thousand two hundred eighty-three' WHERE a=16269;\nUPDATE t2 SET c='twenty-six thousand five hundred forty-eight' WHERE a=16270;\nUPDATE t2 SET c='ninety-two thousand two hundred eighty-eight' WHERE a=16271;\nUPDATE t2 SET c='ten thousand one hundred twenty-three' WHERE a=16272;\nUPDATE t2 SET c='twenty-eight thousand two hundred two' WHERE a=16273;\nUPDATE t2 SET c='eighty-six thousand one hundred thirteen' WHERE a=16274;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-nine' WHERE a=16275;\nUPDATE t2 SET c='eighty-five thousand twenty-two' WHERE a=16276;\nUPDATE t2 SET c='seventy-two thousand eight hundred seven' WHERE a=16277;\nUPDATE t2 SET c='five thousand six hundred nine' WHERE a=16278;\nUPDATE t2 SET c='twelve thousand five hundred twenty-four' WHERE a=16279;\nUPDATE t2 SET c='fourteen thousand eight hundred eleven' WHERE a=16280;\nUPDATE t2 SET c='fifty-eight thousand one hundred eighty-seven' WHERE a=16281;\nUPDATE t2 SET c='ninety-six thousand nine hundred fifty-two' WHERE a=16282;\nUPDATE t2 SET c='seventy-five thousand nine hundred twenty-eight' WHERE a=16283;\nUPDATE t2 SET c='forty-one thousand eight hundred twenty-eight' WHERE a=16284;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-three' WHERE a=16285;\nUPDATE t2 SET c='fifty-three thousand three hundred twelve' WHERE a=16286;\nUPDATE t2 SET c='ninety-two thousand eight hundred twenty-two' WHERE a=16287;\nUPDATE t2 SET c='seventy-four thousand six hundred one' WHERE a=16288;\nUPDATE t2 SET c='eighty-nine thousand five hundred seventy-three' WHERE a=16289;\nUPDATE t2 SET c='forty-seven thousand five hundred ninety-eight' WHERE a=16290;\nUPDATE t2 SET c='thirty-six thousand seven hundred ten' WHERE a=16291;\nUPDATE t2 SET c='twenty-four thousand three hundred ninety-seven' WHERE a=16292;\nUPDATE t2 SET c='thirty-five thousand six hundred sixty' WHERE a=16293;\nUPDATE t2 SET c='eighteen thousand one hundred ninety-one' WHERE a=16294;\nUPDATE t2 SET c='sixty-two thousand eighty' WHERE a=16295;\nUPDATE t2 SET c='fifty-one thousand one hundred forty-three' WHERE a=16296;\nUPDATE t2 SET c='ninety-six thousand nine hundred twenty-eight' WHERE a=16297;\nUPDATE t2 SET c='eighty-six thousand six hundred seventy-nine' WHERE a=16298;\nUPDATE t2 SET c='ninety-three thousand four hundred fifty-seven' WHERE a=16299;\nUPDATE t2 SET c='eighty-five thousand three hundred fifty-three' WHERE a=16300;\nUPDATE t2 SET c='thirty-five thousand six hundred one' WHERE a=16301;\nUPDATE t2 SET c='twenty-two thousand three hundred sixty-one' WHERE a=16302;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-six' WHERE a=16303;\nUPDATE t2 SET c='eighty-seven thousand eight hundred seventy-six' WHERE a=16304;\nUPDATE t2 SET c='fifty-two thousand nine hundred eighteen' WHERE a=16305;\nUPDATE t2 SET c='sixty-two thousand seven hundred seventy-four' WHERE a=16306;\nUPDATE t2 SET c='forty-six thousand four hundred thirty-one' WHERE a=16307;\nUPDATE t2 SET c='ninety-one thousand nineteen' WHERE a=16308;\nUPDATE t2 SET c='eighteen thousand thirteen' WHERE a=16309;\nUPDATE t2 SET c='nine thousand two hundred fifty-seven' WHERE a=16310;\nUPDATE t2 SET c='eighty-one thousand one hundred sixty-one' WHERE a=16311;\nUPDATE t2 SET c='forty thousand three hundred thirty-eight' WHERE a=16312;\nUPDATE t2 SET c='twenty-nine thousand nine hundred ten' WHERE a=16313;\nUPDATE t2 SET c='thirteen thousand fifty-two' WHERE a=16314;\nUPDATE t2 SET c='nineteen thousand nine hundred forty-three' WHERE a=16315;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-seven' WHERE a=16316;\nUPDATE t2 SET c='sixteen thousand one hundred' WHERE a=16317;\nUPDATE t2 SET c='sixty-four thousand eight hundred eighty-five' WHERE a=16318;\nUPDATE t2 SET c='fifty-one thousand eight hundred sixty-three' WHERE a=16319;\nUPDATE t2 SET c='fifty-eight thousand five hundred ninety-eight' WHERE a=16320;\nUPDATE t2 SET c='eighty-one thousand nine hundred thirty-eight' WHERE a=16321;\nUPDATE t2 SET c='fifty-eight thousand six hundred sixty-nine' WHERE a=16322;\nUPDATE t2 SET c='seventy thousand five hundred fifteen' WHERE a=16323;\nUPDATE t2 SET c='ninety thousand seven hundred thirty-four' WHERE a=16324;\nUPDATE t2 SET c='fifty-two thousand five hundred ninety-six' WHERE a=16325;\nUPDATE t2 SET c='fifty-two thousand two hundred seventy-nine' WHERE a=16326;\nUPDATE t2 SET c='eighty-eight thousand six hundred one' WHERE a=16327;\nUPDATE t2 SET c='sixty-five thousand six hundred thirty-three' WHERE a=16328;\nUPDATE t2 SET c='ninety thousand seven hundred thirty-four' WHERE a=16329;\nUPDATE t2 SET c='sixteen thousand three hundred twenty-one' WHERE a=16330;\nUPDATE t2 SET c='ninety-six thousand five hundred seventeen' WHERE a=16331;\nUPDATE t2 SET c='eighty-one thousand two hundred ninety-six' WHERE a=16332;\nUPDATE t2 SET c='seventeen thousand four hundred forty-five' WHERE a=16333;\nUPDATE t2 SET c='ninety-six thousand two hundred ninety-four' WHERE a=16334;\nUPDATE t2 SET c='forty-two thousand two hundred thirty-eight' WHERE a=16335;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-three' WHERE a=16336;\nUPDATE t2 SET c='eighty thousand four hundred seventy-three' WHERE a=16337;\nUPDATE t2 SET c='fifty-five thousand five hundred thirty-nine' WHERE a=16338;\nUPDATE t2 SET c='sixty-five thousand eight hundred ninety-one' WHERE a=16339;\nUPDATE t2 SET c='ninety-three thousand seven hundred eighty-three' WHERE a=16340;\nUPDATE t2 SET c='seventy-seven thousand twenty-five' WHERE a=16341;\nUPDATE t2 SET c='sixty-three thousand five hundred fifty-two' WHERE a=16342;\nUPDATE t2 SET c='four thousand three hundred seventy-eight' WHERE a=16343;\nUPDATE t2 SET c='ninety-five thousand nine hundred twenty-three' WHERE a=16344;\nUPDATE t2 SET c='sixty thousand three hundred eighty-three' WHERE a=16345;\nUPDATE t2 SET c='sixty-five thousand eighty-nine' WHERE a=16346;\nUPDATE t2 SET c='twenty-three thousand seven hundred nineteen' WHERE a=16347;\nUPDATE t2 SET c='seventy-nine thousand four hundred seventy-seven' WHERE a=16348;\nUPDATE t2 SET c='forty-two thousand seven hundred ninety-five' WHERE a=16349;\nUPDATE t2 SET c='seventy-three thousand five hundred seventy-four' WHERE a=16350;\nUPDATE t2 SET c='eight thousand nine hundred sixty-two' WHERE a=16351;\nUPDATE t2 SET c='thirty-three thousand one hundred eighty-two' WHERE a=16352;\nUPDATE t2 SET c='sixty-eight thousand seven hundred thirty-six' WHERE a=16353;\nUPDATE t2 SET c='forty-three thousand four hundred five' WHERE a=16354;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty-two' WHERE a=16355;\nUPDATE t2 SET c='ninety-seven thousand eight hundred sixteen' WHERE a=16356;\nUPDATE t2 SET c='thirteen thousand nine hundred forty' WHERE a=16357;\nUPDATE t2 SET c='ninety-one thousand eight hundred seven' WHERE a=16358;\nUPDATE t2 SET c='eighty-eight thousand two hundred forty-six' WHERE a=16359;\nUPDATE t2 SET c='forty thousand four hundred seven' WHERE a=16360;\nUPDATE t2 SET c='fifty-nine thousand seven hundred ninety-nine' WHERE a=16361;\nUPDATE t2 SET c='eighty-three thousand six hundred seventy-seven' WHERE a=16362;\nUPDATE t2 SET c='forty-seven thousand eighteen' WHERE a=16363;\nUPDATE t2 SET c='one thousand one hundred ninety-six' WHERE a=16364;\nUPDATE t2 SET c='seventeen thousand one hundred twenty-six' WHERE a=16365;\nUPDATE t2 SET c='eighty-one thousand fifty-two' WHERE a=16366;\nUPDATE t2 SET c='ninety-four thousand seven hundred ninety-one' WHERE a=16367;\nUPDATE t2 SET c='twenty-six thousand six hundred fifty' WHERE a=16368;\nUPDATE t2 SET c='seventy-six thousand eight hundred forty-one' WHERE a=16369;\nUPDATE t2 SET c='twenty-eight thousand eight hundred twenty-six' WHERE a=16370;\nUPDATE t2 SET c='forty-five thousand six hundred sixty-two' WHERE a=16371;\nUPDATE t2 SET c='thirty-nine thousand twenty-four' WHERE a=16372;\nUPDATE t2 SET c='seventy-five thousand seven hundred forty-five' WHERE a=16373;\nUPDATE t2 SET c='sixty-four thousand seven hundred seventy-two' WHERE a=16374;\nUPDATE t2 SET c='twenty-two thousand seven hundred eighty-six' WHERE a=16375;\nUPDATE t2 SET c='sixty-nine thousand five hundred twenty-five' WHERE a=16376;\nUPDATE t2 SET c='thirty-six thousand three hundred ninety-eight' WHERE a=16377;\nUPDATE t2 SET c='five thousand five hundred twenty-one' WHERE a=16378;\nUPDATE t2 SET c='seventy-eight thousand thirty-eight' WHERE a=16379;\nUPDATE t2 SET c='sixty-three thousand eight hundred thirty-eight' WHERE a=16380;\nUPDATE t2 SET c='sixty-one thousand nine hundred four' WHERE a=16381;\nUPDATE t2 SET c='eighty thousand seven hundred eight' WHERE a=16382;\nUPDATE t2 SET c='eighty-four thousand nine hundred ninety-three' WHERE a=16383;\nUPDATE t2 SET c='twenty thousand three hundred ninety-one' WHERE a=16384;\nUPDATE t2 SET c='forty-six thousand nine hundred sixty-seven' WHERE a=16385;\nUPDATE t2 SET c='eighty thousand two hundred thirty-five' WHERE a=16386;\nUPDATE t2 SET c='fifty-one thousand four hundred fifty-six' WHERE a=16387;\nUPDATE t2 SET c='twenty-two thousand five hundred ninety-three' WHERE a=16388;\nUPDATE t2 SET c='thirty-four thousand four hundred forty-three' WHERE a=16389;\nUPDATE t2 SET c='fifty-three thousand eight hundred eleven' WHERE a=16390;\nUPDATE t2 SET c='eighty-eight thousand nine hundred ninety-seven' WHERE a=16391;\nUPDATE t2 SET c='eighteen thousand four hundred twenty-seven' WHERE a=16392;\nUPDATE t2 SET c='thirty-six thousand two hundred eleven' WHERE a=16393;\nUPDATE t2 SET c='twenty-seven thousand two hundred ten' WHERE a=16394;\nUPDATE t2 SET c='fifty-one thousand ninety-eight' WHERE a=16395;\nUPDATE t2 SET c='seventy-eight thousand seven hundred sixteen' WHERE a=16396;\nUPDATE t2 SET c='forty-three thousand eight hundred twenty-two' WHERE a=16397;\nUPDATE t2 SET c='eighteen thousand one hundred twenty-seven' WHERE a=16398;\nUPDATE t2 SET c='twenty-seven thousand one hundred sixty-eight' WHERE a=16399;\nUPDATE t2 SET c='five thousand four hundred eighteen' WHERE a=16400;\nUPDATE t2 SET c='thirty-nine thousand six hundred thirty-eight' WHERE a=16401;\nUPDATE t2 SET c='three thousand six hundred forty-one' WHERE a=16402;\nUPDATE t2 SET c='thirty-eight thousand three hundred fifty-seven' WHERE a=16403;\nUPDATE t2 SET c='thirty-four thousand nine hundred seventy-seven' WHERE a=16404;\nUPDATE t2 SET c='thirty-five thousand five hundred ninety-seven' WHERE a=16405;\nUPDATE t2 SET c='seven thousand six hundred eighteen' WHERE a=16406;\nUPDATE t2 SET c='eighty-eight thousand two hundred eighty-seven' WHERE a=16407;\nUPDATE t2 SET c='five thousand five hundred nineteen' WHERE a=16408;\nUPDATE t2 SET c='three thousand eighty-six' WHERE a=16409;\nUPDATE t2 SET c='five thousand three hundred nine' WHERE a=16410;\nUPDATE t2 SET c='ten thousand seven hundred two' WHERE a=16411;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ninety-six' WHERE a=16412;\nUPDATE t2 SET c='four thousand two hundred eleven' WHERE a=16413;\nUPDATE t2 SET c='ninety-five thousand six hundred forty-five' WHERE a=16414;\nUPDATE t2 SET c='thirty-three thousand five hundred thirty-two' WHERE a=16415;\nUPDATE t2 SET c='seventy-four thousand one hundred nineteen' WHERE a=16416;\nUPDATE t2 SET c='seventy thousand twenty-three' WHERE a=16417;\nUPDATE t2 SET c='eighty-two thousand ninety-four' WHERE a=16418;\nUPDATE t2 SET c='forty thousand two hundred sixty-seven' WHERE a=16419;\nUPDATE t2 SET c='eighty-six thousand one hundred fifty-two' WHERE a=16420;\nUPDATE t2 SET c='eighty-two thousand five hundred seventy-four' WHERE a=16421;\nUPDATE t2 SET c='seventy-eight thousand fifty-four' WHERE a=16422;\nUPDATE t2 SET c='seventy-four thousand two hundred eighty-four' WHERE a=16423;\nUPDATE t2 SET c='thirteen thousand two hundred thirty-nine' WHERE a=16424;\nUPDATE t2 SET c='fifty-six thousand two hundred forty-three' WHERE a=16425;\nUPDATE t2 SET c='thirty-two thousand nine hundred twenty-five' WHERE a=16426;\nUPDATE t2 SET c='sixty-two thousand one hundred eighty-four' WHERE a=16427;\nUPDATE t2 SET c='thirty-eight thousand two hundred fifty-one' WHERE a=16428;\nUPDATE t2 SET c='sixty-nine thousand seven hundred twenty-five' WHERE a=16429;\nUPDATE t2 SET c='fifty-three thousand two hundred fifty-four' WHERE a=16430;\nUPDATE t2 SET c='eighty-five thousand four hundred eighty-five' WHERE a=16431;\nUPDATE t2 SET c='eleven thousand one hundred eighty-nine' WHERE a=16432;\nUPDATE t2 SET c='sixty-three thousand four hundred sixty-eight' WHERE a=16433;\nUPDATE t2 SET c='fifteen thousand seven hundred eighty-nine' WHERE a=16434;\nUPDATE t2 SET c='fifty-seven thousand one hundred thirty-seven' WHERE a=16435;\nUPDATE t2 SET c='fifty-six thousand six hundred forty-six' WHERE a=16436;\nUPDATE t2 SET c='eighty-one thousand sixty' WHERE a=16437;\nUPDATE t2 SET c='fourteen thousand four hundred sixty-one' WHERE a=16438;\nUPDATE t2 SET c='forty-four thousand seven hundred seventy-eight' WHERE a=16439;\nUPDATE t2 SET c='seventy-eight thousand three hundred fifty-two' WHERE a=16440;\nUPDATE t2 SET c='fifty thousand seven hundred thirteen' WHERE a=16441;\nUPDATE t2 SET c='seven thousand seven hundred nine' WHERE a=16442;\nUPDATE t2 SET c='eighty-six thousand five hundred thirty-three' WHERE a=16443;\nUPDATE t2 SET c='one thousand three hundred forty-two' WHERE a=16444;\nUPDATE t2 SET c='thirty-seven thousand six hundred fifty-five' WHERE a=16445;\nUPDATE t2 SET c='ninety-one thousand nine hundred fourteen' WHERE a=16446;\nUPDATE t2 SET c='four thousand sixty-two' WHERE a=16447;\nUPDATE t2 SET c='eighty-two thousand eight hundred fifty-three' WHERE a=16448;\nUPDATE t2 SET c='forty-nine thousand six hundred' WHERE a=16449;\nUPDATE t2 SET c='fifty-seven thousand six hundred fifty' WHERE a=16450;\nUPDATE t2 SET c='eighty-two thousand five hundred forty-four' WHERE a=16451;\nUPDATE t2 SET c='eight thousand five hundred sixty-five' WHERE a=16452;\nUPDATE t2 SET c='ninety thousand three hundred three' WHERE a=16453;\nUPDATE t2 SET c='eighty-eight thousand two hundred sixty' WHERE a=16454;\nUPDATE t2 SET c='seventy-six thousand eight hundred thirty-five' WHERE a=16455;\nUPDATE t2 SET c='forty-one thousand three hundred ninety-eight' WHERE a=16456;\nUPDATE t2 SET c='forty-nine thousand five hundred seventeen' WHERE a=16457;\nUPDATE t2 SET c='sixty-nine thousand six hundred eighty-seven' WHERE a=16458;\nUPDATE t2 SET c='thirty-one thousand nine hundred thirty-four' WHERE a=16459;\nUPDATE t2 SET c='seven hundred forty-four' WHERE a=16460;\nUPDATE t2 SET c='sixteen thousand seven hundred twenty-nine' WHERE a=16461;\nUPDATE t2 SET c='fifty-nine thousand nine hundred three' WHERE a=16462;\nUPDATE t2 SET c='seventy-seven thousand one hundred thirty-six' WHERE a=16463;\nUPDATE t2 SET c='seventy-six thousand two hundred sixty-seven' WHERE a=16464;\nUPDATE t2 SET c='ninety-nine thousand nine hundred forty-four' WHERE a=16465;\nUPDATE t2 SET c='eighty-five thousand six hundred fifty-four' WHERE a=16466;\nUPDATE t2 SET c='thirty-nine thousand five hundred fifty-eight' WHERE a=16467;\nUPDATE t2 SET c='fifty-six thousand six hundred two' WHERE a=16468;\nUPDATE t2 SET c='ninety-four thousand six hundred one' WHERE a=16469;\nUPDATE t2 SET c='sixty-six thousand three hundred fifty-four' WHERE a=16470;\nUPDATE t2 SET c='six thousand one hundred ninety-two' WHERE a=16471;\nUPDATE t2 SET c='thirty-four thousand five hundred two' WHERE a=16472;\nUPDATE t2 SET c='nineteen thousand six hundred sixty-four' WHERE a=16473;\nUPDATE t2 SET c='five thousand nine hundred eighty-six' WHERE a=16474;\nUPDATE t2 SET c='ninety-four thousand forty-nine' WHERE a=16475;\nUPDATE t2 SET c='nineteen thousand five hundred eighty-two' WHERE a=16476;\nUPDATE t2 SET c='eighteen thousand six hundred ninety-eight' WHERE a=16477;\nUPDATE t2 SET c='thirty-six thousand six hundred eighty-one' WHERE a=16478;\nUPDATE t2 SET c='seventy-nine thousand six hundred sixty-six' WHERE a=16479;\nUPDATE t2 SET c='twenty thousand four hundred forty-one' WHERE a=16480;\nUPDATE t2 SET c='thirty-five thousand eight hundred ninety-four' WHERE a=16481;\nUPDATE t2 SET c='ninety-eight thousand six hundred twenty-two' WHERE a=16482;\nUPDATE t2 SET c='six thousand three hundred ten' WHERE a=16483;\nUPDATE t2 SET c='thirty-five thousand seven hundred twenty-one' WHERE a=16484;\nUPDATE t2 SET c='fifty-three thousand nine hundred three' WHERE a=16485;\nUPDATE t2 SET c='four thousand eight hundred eighty-one' WHERE a=16486;\nUPDATE t2 SET c='sixty-four thousand thirty-eight' WHERE a=16487;\nUPDATE t2 SET c='twenty-seven thousand two hundred ninety-five' WHERE a=16488;\nUPDATE t2 SET c='fifteen thousand four hundred seventy-two' WHERE a=16489;\nUPDATE t2 SET c='fifty-three thousand six hundred two' WHERE a=16490;\nUPDATE t2 SET c='four thousand nine hundred nineteen' WHERE a=16491;\nUPDATE t2 SET c='ninety-one thousand one hundred thirteen' WHERE a=16492;\nUPDATE t2 SET c='fifty-nine thousand three hundred thirty-one' WHERE a=16493;\nUPDATE t2 SET c='eighty-one thousand sixty-three' WHERE a=16494;\nUPDATE t2 SET c='thirty-five thousand six hundred ninety-five' WHERE a=16495;\nUPDATE t2 SET c='seventy-two thousand three hundred thirty-one' WHERE a=16496;\nUPDATE t2 SET c='thirty-seven thousand three hundred forty-four' WHERE a=16497;\nUPDATE t2 SET c='seven thousand six' WHERE a=16498;\nUPDATE t2 SET c='eighty-nine thousand eight hundred seventeen' WHERE a=16499;\nUPDATE t2 SET c='fifty-four thousand three hundred forty-five' WHERE a=16500;\nUPDATE t2 SET c='fifty-three thousand one hundred thirty-three' WHERE a=16501;\nUPDATE t2 SET c='twenty-nine thousand two hundred ninety-six' WHERE a=16502;\nUPDATE t2 SET c='eighty-seven thousand eighty-nine' WHERE a=16503;\nUPDATE t2 SET c='ninety-nine thousand two hundred fifty-four' WHERE a=16504;\nUPDATE t2 SET c='seventeen thousand four hundred six' WHERE a=16505;\nUPDATE t2 SET c='eleven thousand two hundred seventy' WHERE a=16506;\nUPDATE t2 SET c='ninety-eight thousand eight hundred sixty-five' WHERE a=16507;\nUPDATE t2 SET c='fifty-one thousand six hundred thirty-three' WHERE a=16508;\nUPDATE t2 SET c='seventy-one thousand seventy-two' WHERE a=16509;\nUPDATE t2 SET c='ninety-five thousand seven hundred ninety-eight' WHERE a=16510;\nUPDATE t2 SET c='eighty thousand six hundred three' WHERE a=16511;\nUPDATE t2 SET c='sixty-five thousand nine hundred seventeen' WHERE a=16512;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-three' WHERE a=16513;\nUPDATE t2 SET c='sixty-three thousand seven hundred sixty-six' WHERE a=16514;\nUPDATE t2 SET c='twenty-four thousand seven hundred thirty-seven' WHERE a=16515;\nUPDATE t2 SET c='eight thousand nine hundred thirty-three' WHERE a=16516;\nUPDATE t2 SET c='sixty-nine thousand six hundred thirty-two' WHERE a=16517;\nUPDATE t2 SET c='eighty-nine thousand nine hundred eighty-five' WHERE a=16518;\nUPDATE t2 SET c='forty-three thousand three hundred eighty-six' WHERE a=16519;\nUPDATE t2 SET c='fifty-nine thousand two hundred thirty-seven' WHERE a=16520;\nUPDATE t2 SET c='nine thousand nine hundred fifty-two' WHERE a=16521;\nUPDATE t2 SET c='twenty thousand seven hundred ninety-three' WHERE a=16522;\nUPDATE t2 SET c='forty thousand two hundred nineteen' WHERE a=16523;\nUPDATE t2 SET c='nine thousand three hundred sixteen' WHERE a=16524;\nUPDATE t2 SET c='forty-six thousand eighty-two' WHERE a=16525;\nUPDATE t2 SET c='forty-three thousand two hundred seventeen' WHERE a=16526;\nUPDATE t2 SET c='thirty-eight thousand eight hundred four' WHERE a=16527;\nUPDATE t2 SET c='ninety-nine thousand four hundred ninety-eight' WHERE a=16528;\nUPDATE t2 SET c='seventy-eight thousand two hundred forty-three' WHERE a=16529;\nUPDATE t2 SET c='eighty-nine thousand forty-one' WHERE a=16530;\nUPDATE t2 SET c='seventy-three thousand six hundred twenty' WHERE a=16531;\nUPDATE t2 SET c='twenty-seven thousand six hundred seventy-nine' WHERE a=16532;\nUPDATE t2 SET c='forty-one thousand six hundred thirty-eight' WHERE a=16533;\nUPDATE t2 SET c='seventy-eight thousand two hundred nineteen' WHERE a=16534;\nUPDATE t2 SET c='ninety-four' WHERE a=16535;\nUPDATE t2 SET c='seventy-nine thousand six hundred ninety' WHERE a=16536;\nUPDATE t2 SET c='one thousand six hundred ninety-nine' WHERE a=16537;\nUPDATE t2 SET c='sixty-seven thousand five hundred twenty-nine' WHERE a=16538;\nUPDATE t2 SET c='twenty-two thousand three hundred thirty-six' WHERE a=16539;\nUPDATE t2 SET c='thirty-two thousand eight hundred sixty-five' WHERE a=16540;\nUPDATE t2 SET c='seventy thousand six hundred sixty-four' WHERE a=16541;\nUPDATE t2 SET c='fifteen thousand nine hundred fifty-four' WHERE a=16542;\nUPDATE t2 SET c='forty-five thousand two hundred ninety-one' WHERE a=16543;\nUPDATE t2 SET c='twenty-nine thousand five hundred eighty-seven' WHERE a=16544;\nUPDATE t2 SET c='sixty-two thousand thirty-six' WHERE a=16545;\nUPDATE t2 SET c='twelve thousand seven hundred thirty-six' WHERE a=16546;\nUPDATE t2 SET c='fifty thousand eight hundred fifty' WHERE a=16547;\nUPDATE t2 SET c='twelve thousand five hundred eighty-four' WHERE a=16548;\nUPDATE t2 SET c='fifty-five thousand four hundred forty-eight' WHERE a=16549;\nUPDATE t2 SET c='forty-nine thousand five hundred forty-four' WHERE a=16550;\nUPDATE t2 SET c='thirty-eight thousand seven hundred sixteen' WHERE a=16551;\nUPDATE t2 SET c='fifty-nine thousand four hundred nine' WHERE a=16552;\nUPDATE t2 SET c='twenty-four thousand nine hundred sixty-eight' WHERE a=16553;\nUPDATE t2 SET c='eighty-two thousand nine hundred twenty-five' WHERE a=16554;\nUPDATE t2 SET c='forty-one thousand four hundred fifty' WHERE a=16555;\nUPDATE t2 SET c='seven thousand eight hundred sixty-seven' WHERE a=16556;\nUPDATE t2 SET c='twenty-nine thousand five hundred ninety-nine' WHERE a=16557;\nUPDATE t2 SET c='twenty-five thousand eight hundred eight' WHERE a=16558;\nUPDATE t2 SET c='ninety-two thousand nine' WHERE a=16559;\nUPDATE t2 SET c='fifty-eight thousand seven hundred two' WHERE a=16560;\nUPDATE t2 SET c='two thousand eight' WHERE a=16561;\nUPDATE t2 SET c='eighty-two thousand one hundred forty-six' WHERE a=16562;\nUPDATE t2 SET c='five hundred thirty-seven' WHERE a=16563;\nUPDATE t2 SET c='nine thousand five hundred thirty-nine' WHERE a=16564;\nUPDATE t2 SET c='twenty-one thousand' WHERE a=16565;\nUPDATE t2 SET c='fifty-two thousand four hundred forty-seven' WHERE a=16566;\nUPDATE t2 SET c='forty-three thousand six hundred fourteen' WHERE a=16567;\nUPDATE t2 SET c='seventy-three thousand one hundred nine' WHERE a=16568;\nUPDATE t2 SET c='seventy-five thousand eight hundred ninety-nine' WHERE a=16569;\nUPDATE t2 SET c='seventy-seven thousand four hundred three' WHERE a=16570;\nUPDATE t2 SET c='sixty-nine thousand six hundred seventy-nine' WHERE a=16571;\nUPDATE t2 SET c='ninety-two thousand six hundred one' WHERE a=16572;\nUPDATE t2 SET c='forty-four thousand four hundred one' WHERE a=16573;\nUPDATE t2 SET c='thirty-three thousand six hundred seventy-six' WHERE a=16574;\nUPDATE t2 SET c='twenty-three thousand eight hundred thirty-nine' WHERE a=16575;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty-eight' WHERE a=16576;\nUPDATE t2 SET c='twenty thousand two hundred two' WHERE a=16577;\nUPDATE t2 SET c='fifty-six thousand four hundred thirty' WHERE a=16578;\nUPDATE t2 SET c='twenty-three thousand two hundred eighty-eight' WHERE a=16579;\nUPDATE t2 SET c='forty-five thousand seventy-two' WHERE a=16580;\nUPDATE t2 SET c='seventeen thousand two hundred twenty-four' WHERE a=16581;\nUPDATE t2 SET c='sixty-three thousand three hundred thirty-four' WHERE a=16582;\nUPDATE t2 SET c='ninety-two thousand five hundred forty-two' WHERE a=16583;\nUPDATE t2 SET c='eighty thousand six hundred forty' WHERE a=16584;\nUPDATE t2 SET c='fifty-six thousand six hundred forty-eight' WHERE a=16585;\nUPDATE t2 SET c='forty-six thousand three hundred two' WHERE a=16586;\nUPDATE t2 SET c='seventy-four thousand one hundred fifty-six' WHERE a=16587;\nUPDATE t2 SET c='eight thousand seven hundred sixty-two' WHERE a=16588;\nUPDATE t2 SET c='sixty-seven thousand nine hundred forty-nine' WHERE a=16589;\nUPDATE t2 SET c='twenty-two thousand three hundred three' WHERE a=16590;\nUPDATE t2 SET c='eighty-five thousand two hundred forty-five' WHERE a=16591;\nUPDATE t2 SET c='two thousand nine hundred twenty-two' WHERE a=16592;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-five' WHERE a=16593;\nUPDATE t2 SET c='thirty-eight thousand four hundred eighty-one' WHERE a=16594;\nUPDATE t2 SET c='thirty-one thousand six hundred fifty-six' WHERE a=16595;\nUPDATE t2 SET c='ninety-six thousand eight hundred eighty-seven' WHERE a=16596;\nUPDATE t2 SET c='two thousand seven hundred fifty-three' WHERE a=16597;\nUPDATE t2 SET c='ninety-nine thousand four hundred fifty' WHERE a=16598;\nUPDATE t2 SET c='eighty-six thousand four hundred eighty-six' WHERE a=16599;\nUPDATE t2 SET c='thirty-nine thousand nine hundred ninety-one' WHERE a=16600;\nUPDATE t2 SET c='sixty-nine thousand three hundred sixty-four' WHERE a=16601;\nUPDATE t2 SET c='sixty thousand four hundred eighteen' WHERE a=16602;\nUPDATE t2 SET c='thirteen thousand one hundred twenty-five' WHERE a=16603;\nUPDATE t2 SET c='sixty-five thousand four hundred forty-eight' WHERE a=16604;\nUPDATE t2 SET c='seventy-three thousand forty-seven' WHERE a=16605;\nUPDATE t2 SET c='thirty-two thousand' WHERE a=16606;\nUPDATE t2 SET c='ninety-one thousand one hundred twenty-four' WHERE a=16607;\nUPDATE t2 SET c='seventy-eight thousand two hundred six' WHERE a=16608;\nUPDATE t2 SET c='two thousand eight hundred seventeen' WHERE a=16609;\nUPDATE t2 SET c='forty-six thousand eighty-seven' WHERE a=16610;\nUPDATE t2 SET c='seventy-seven thousand seventy-six' WHERE a=16611;\nUPDATE t2 SET c='sixty-four thousand eight hundred sixty-one' WHERE a=16612;\nUPDATE t2 SET c='four thousand one hundred six' WHERE a=16613;\nUPDATE t2 SET c='fifty-five thousand four hundred fifty-eight' WHERE a=16614;\nUPDATE t2 SET c='ninety-four thousand seven hundred twenty-three' WHERE a=16615;\nUPDATE t2 SET c='eighty-two thousand five hundred fifty-seven' WHERE a=16616;\nUPDATE t2 SET c='eighty-one thousand seven hundred forty-nine' WHERE a=16617;\nUPDATE t2 SET c='sixty-four thousand seven hundred seventy-two' WHERE a=16618;\nUPDATE t2 SET c='thirty-four thousand nine hundred fifty-three' WHERE a=16619;\nUPDATE t2 SET c='ninety-eight thousand eight hundred forty' WHERE a=16620;\nUPDATE t2 SET c='twenty-seven thousand three hundred sixty-five' WHERE a=16621;\nUPDATE t2 SET c='seventeen thousand six hundred ninety-two' WHERE a=16622;\nUPDATE t2 SET c='fourteen thousand one hundred three' WHERE a=16623;\nUPDATE t2 SET c='eighty-six thousand three hundred seventeen' WHERE a=16624;\nUPDATE t2 SET c='eighty-three thousand nine hundred fifty-eight' WHERE a=16625;\nUPDATE t2 SET c='forty-seven thousand eight hundred eighteen' WHERE a=16626;\nUPDATE t2 SET c='twenty thousand five hundred seven' WHERE a=16627;\nUPDATE t2 SET c='forty-five thousand four hundred forty-seven' WHERE a=16628;\nUPDATE t2 SET c='twenty-six thousand five hundred seventy-five' WHERE a=16629;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-three' WHERE a=16630;\nUPDATE t2 SET c='forty-two thousand nine hundred thirty-one' WHERE a=16631;\nUPDATE t2 SET c='fifty-one thousand three hundred seventy-four' WHERE a=16632;\nUPDATE t2 SET c='fifty-seven thousand seven hundred ninety-four' WHERE a=16633;\nUPDATE t2 SET c='twenty-six thousand eight hundred thirty-seven' WHERE a=16634;\nUPDATE t2 SET c='forty-two thousand seven hundred seventy-three' WHERE a=16635;\nUPDATE t2 SET c='forty-four thousand one hundred eighty-nine' WHERE a=16636;\nUPDATE t2 SET c='ninety-one thousand six hundred eighteen' WHERE a=16637;\nUPDATE t2 SET c='forty-one thousand one hundred thirty-two' WHERE a=16638;\nUPDATE t2 SET c='eighty-nine thousand five hundred fifty-one' WHERE a=16639;\nUPDATE t2 SET c='eighty thousand two hundred thirty-five' WHERE a=16640;\nUPDATE t2 SET c='fifty-five thousand one hundred forty-eight' WHERE a=16641;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-three' WHERE a=16642;\nUPDATE t2 SET c='thirty-four thousand one hundred three' WHERE a=16643;\nUPDATE t2 SET c='eighty-nine thousand two hundred fifty-two' WHERE a=16644;\nUPDATE t2 SET c='fifty-six thousand six hundred eighty-five' WHERE a=16645;\nUPDATE t2 SET c='twenty-one thousand four hundred seventy-six' WHERE a=16646;\nUPDATE t2 SET c='nine thousand five hundred sixty-three' WHERE a=16647;\nUPDATE t2 SET c='sixty-five thousand nine hundred sixty-six' WHERE a=16648;\nUPDATE t2 SET c='four hundred thirty-seven' WHERE a=16649;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventy-four' WHERE a=16650;\nUPDATE t2 SET c='twenty-six thousand six hundred forty-three' WHERE a=16651;\nUPDATE t2 SET c='forty-four thousand six hundred thirteen' WHERE a=16652;\nUPDATE t2 SET c='eighty-seven thousand five hundred eighteen' WHERE a=16653;\nUPDATE t2 SET c='twenty thousand six hundred fifty-two' WHERE a=16654;\nUPDATE t2 SET c='seventy-eight thousand eight hundred eighty-eight' WHERE a=16655;\nUPDATE t2 SET c='fifty-four thousand nine hundred forty-one' WHERE a=16656;\nUPDATE t2 SET c='one thousand seven hundred eleven' WHERE a=16657;\nUPDATE t2 SET c='five thousand five hundred forty-six' WHERE a=16658;\nUPDATE t2 SET c='four thousand one hundred thirty-four' WHERE a=16659;\nUPDATE t2 SET c='fifty-one thousand one hundred seventy-one' WHERE a=16660;\nUPDATE t2 SET c='sixty-three thousand eleven' WHERE a=16661;\nUPDATE t2 SET c='fifteen thousand one hundred three' WHERE a=16662;\nUPDATE t2 SET c='nine thousand six hundred twenty-nine' WHERE a=16663;\nUPDATE t2 SET c='ninety-eight thousand four hundred eighty' WHERE a=16664;\nUPDATE t2 SET c='thirty-six thousand three hundred four' WHERE a=16665;\nUPDATE t2 SET c='seventy-seven thousand eight hundred forty-one' WHERE a=16666;\nUPDATE t2 SET c='fourteen thousand ninety-nine' WHERE a=16667;\nUPDATE t2 SET c='eighty-eight thousand one hundred twenty-four' WHERE a=16668;\nUPDATE t2 SET c='eighty-five thousand nine hundred eight' WHERE a=16669;\nUPDATE t2 SET c='seventy-four thousand one hundred thirty-eight' WHERE a=16670;\nUPDATE t2 SET c='thirty-two thousand seven hundred ninety-two' WHERE a=16671;\nUPDATE t2 SET c='thirty-three thousand eleven' WHERE a=16672;\nUPDATE t2 SET c='fifty-one thousand ninety-one' WHERE a=16673;\nUPDATE t2 SET c='seventy-one thousand six hundred eighty-one' WHERE a=16674;\nUPDATE t2 SET c='ninety-five thousand three hundred sixty' WHERE a=16675;\nUPDATE t2 SET c='fifty-five thousand two hundred seventy-seven' WHERE a=16676;\nUPDATE t2 SET c='twenty-one thousand six hundred seventy-one' WHERE a=16677;\nUPDATE t2 SET c='eighty-two thousand seven hundred sixty-three' WHERE a=16678;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty-five' WHERE a=16679;\nUPDATE t2 SET c='twenty-five thousand seven hundred ninety-seven' WHERE a=16680;\nUPDATE t2 SET c='nine thousand sixty-two' WHERE a=16681;\nUPDATE t2 SET c='nineteen thousand one hundred sixty-nine' WHERE a=16682;\nUPDATE t2 SET c='seventy-three thousand seven hundred one' WHERE a=16683;\nUPDATE t2 SET c='twenty-three thousand four hundred fifteen' WHERE a=16684;\nUPDATE t2 SET c='ninety-one thousand nine hundred thirty-three' WHERE a=16685;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventy-seven' WHERE a=16686;\nUPDATE t2 SET c='sixty-nine thousand two hundred fifty-nine' WHERE a=16687;\nUPDATE t2 SET c='forty-two thousand nine hundred thirty-eight' WHERE a=16688;\nUPDATE t2 SET c='seventy-five thousand seven hundred thirty' WHERE a=16689;\nUPDATE t2 SET c='eighty-nine thousand four hundred twenty-three' WHERE a=16690;\nUPDATE t2 SET c='eighty-two thousand two hundred seventy-five' WHERE a=16691;\nUPDATE t2 SET c='ninety-three thousand eight hundred twenty-seven' WHERE a=16692;\nUPDATE t2 SET c='fifty-nine thousand nine hundred fifty-five' WHERE a=16693;\nUPDATE t2 SET c='thirty-nine thousand seven hundred eighty-four' WHERE a=16694;\nUPDATE t2 SET c='sixty-six thousand one hundred ten' WHERE a=16695;\nUPDATE t2 SET c='sixty-one thousand one hundred eighteen' WHERE a=16696;\nUPDATE t2 SET c='seventy-one thousand three hundred seventy-nine' WHERE a=16697;\nUPDATE t2 SET c='ninety-eight thousand three hundred thirty-two' WHERE a=16698;\nUPDATE t2 SET c='seventy-eight thousand eighteen' WHERE a=16699;\nUPDATE t2 SET c='fifty-eight thousand seven hundred twenty-eight' WHERE a=16700;\nUPDATE t2 SET c='seventy-five thousand three hundred sixty-two' WHERE a=16701;\nUPDATE t2 SET c='fifty-eight thousand seventy-two' WHERE a=16702;\nUPDATE t2 SET c='forty-six thousand one hundred four' WHERE a=16703;\nUPDATE t2 SET c='nine thousand six hundred eighty-one' WHERE a=16704;\nUPDATE t2 SET c='sixty-two thousand one hundred sixty-six' WHERE a=16705;\nUPDATE t2 SET c='thirty-seven thousand one hundred eighty-four' WHERE a=16706;\nUPDATE t2 SET c='fifty-three thousand four hundred thirty-five' WHERE a=16707;\nUPDATE t2 SET c='nineteen thousand seven hundred ninety-five' WHERE a=16708;\nUPDATE t2 SET c='thirty-four thousand one hundred forty-seven' WHERE a=16709;\nUPDATE t2 SET c='fifty thousand six hundred twenty-two' WHERE a=16710;\nUPDATE t2 SET c='eighty-three thousand seven hundred forty' WHERE a=16711;\nUPDATE t2 SET c='ninety thousand four hundred twenty-one' WHERE a=16712;\nUPDATE t2 SET c='eighty-seven thousand one hundred sixty-one' WHERE a=16713;\nUPDATE t2 SET c='ninety-six thousand four hundred forty-two' WHERE a=16714;\nUPDATE t2 SET c='ninety-eight thousand eight hundred forty-four' WHERE a=16715;\nUPDATE t2 SET c='forty-six thousand eight hundred eighty-seven' WHERE a=16716;\nUPDATE t2 SET c='thirty-six thousand nine hundred sixty-three' WHERE a=16717;\nUPDATE t2 SET c='thirty-eight thousand eighteen' WHERE a=16718;\nUPDATE t2 SET c='thirty-six thousand one hundred nine' WHERE a=16719;\nUPDATE t2 SET c='fifty-two thousand four hundred seventy-one' WHERE a=16720;\nUPDATE t2 SET c='seventy-five thousand three hundred eleven' WHERE a=16721;\nUPDATE t2 SET c='ten thousand one hundred seventeen' WHERE a=16722;\nUPDATE t2 SET c='forty-four thousand two hundred fifty-three' WHERE a=16723;\nUPDATE t2 SET c='twelve thousand three hundred fifty-one' WHERE a=16724;\nUPDATE t2 SET c='ninety-seven thousand four hundred seventy-five' WHERE a=16725;\nUPDATE t2 SET c='seventy-one thousand five hundred eighty-three' WHERE a=16726;\nUPDATE t2 SET c='six thousand two hundred seventy-seven' WHERE a=16727;\nUPDATE t2 SET c='eighty-three thousand six hundred twenty-eight' WHERE a=16728;\nUPDATE t2 SET c='five thousand nine hundred' WHERE a=16729;\nUPDATE t2 SET c='seventy-seven thousand eight hundred fifty-two' WHERE a=16730;\nUPDATE t2 SET c='eighty-five thousand five hundred thirty-six' WHERE a=16731;\nUPDATE t2 SET c='sixty-seven thousand nine hundred ninety-seven' WHERE a=16732;\nUPDATE t2 SET c='seventy-eight thousand seven hundred thirty-seven' WHERE a=16733;\nUPDATE t2 SET c='seventy-two thousand eight hundred fifty-one' WHERE a=16734;\nUPDATE t2 SET c='six hundred seventy-five' WHERE a=16735;\nUPDATE t2 SET c='twenty-nine thousand nine hundred sixty-three' WHERE a=16736;\nUPDATE t2 SET c='seventy thousand eighty-seven' WHERE a=16737;\nUPDATE t2 SET c='fifty-two thousand five hundred sixteen' WHERE a=16738;\nUPDATE t2 SET c='ninety-three thousand nine hundred twenty-seven' WHERE a=16739;\nUPDATE t2 SET c='nine thousand eight hundred thirty-seven' WHERE a=16740;\nUPDATE t2 SET c='twenty-four thousand eight hundred thirty-six' WHERE a=16741;\nUPDATE t2 SET c='sixty-five thousand three hundred twenty-five' WHERE a=16742;\nUPDATE t2 SET c='forty-eight thousand ten' WHERE a=16743;\nUPDATE t2 SET c='sixty thousand seven hundred ninety-five' WHERE a=16744;\nUPDATE t2 SET c='thirty-nine thousand nine hundred seventy-four' WHERE a=16745;\nUPDATE t2 SET c='thirty-four thousand six hundred twenty-two' WHERE a=16746;\nUPDATE t2 SET c='eighty thousand two hundred' WHERE a=16747;\nUPDATE t2 SET c='five thousand eight hundred fourteen' WHERE a=16748;\nUPDATE t2 SET c='twenty-one thousand seventy-six' WHERE a=16749;\nUPDATE t2 SET c='seventy-five thousand forty-five' WHERE a=16750;\nUPDATE t2 SET c='sixty-five thousand sixty-three' WHERE a=16751;\nUPDATE t2 SET c='seventy-eight thousand thirty-seven' WHERE a=16752;\nUPDATE t2 SET c='ninety-six thousand five hundred twenty-five' WHERE a=16753;\nUPDATE t2 SET c='sixty-eight thousand seven hundred seventy-four' WHERE a=16754;\nUPDATE t2 SET c='nineteen thousand fifteen' WHERE a=16755;\nUPDATE t2 SET c='seventy-three thousand six hundred eighty-five' WHERE a=16756;\nUPDATE t2 SET c='fifteen thousand twenty-one' WHERE a=16757;\nUPDATE t2 SET c='sixty-nine thousand eight hundred fifty-seven' WHERE a=16758;\nUPDATE t2 SET c='forty-two thousand two hundred' WHERE a=16759;\nUPDATE t2 SET c='six thousand nine hundred' WHERE a=16760;\nUPDATE t2 SET c='eighty-eight thousand nine hundred seventy-six' WHERE a=16761;\nUPDATE t2 SET c='six thousand two hundred fifty-five' WHERE a=16762;\nUPDATE t2 SET c='seven thousand four hundred sixty' WHERE a=16763;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifty-two' WHERE a=16764;\nUPDATE t2 SET c='ninety-three thousand two hundred twelve' WHERE a=16765;\nUPDATE t2 SET c='forty-five thousand seven hundred thirty-seven' WHERE a=16766;\nUPDATE t2 SET c='twenty-two thousand eight hundred thirty-eight' WHERE a=16767;\nUPDATE t2 SET c='fifty-eight thousand seven hundred twenty' WHERE a=16768;\nUPDATE t2 SET c='eighty-two thousand five hundred eighty-nine' WHERE a=16769;\nUPDATE t2 SET c='fifteen thousand seven hundred fifty-two' WHERE a=16770;\nUPDATE t2 SET c='eighty thousand nine hundred sixty-nine' WHERE a=16771;\nUPDATE t2 SET c='ten thousand one hundred twenty-two' WHERE a=16772;\nUPDATE t2 SET c='eighty thousand two hundred thirty-two' WHERE a=16773;\nUPDATE t2 SET c='sixty-five thousand three hundred seventy-one' WHERE a=16774;\nUPDATE t2 SET c='forty-six thousand seven hundred nine' WHERE a=16775;\nUPDATE t2 SET c='ninety-two thousand seven hundred eighty-three' WHERE a=16776;\nUPDATE t2 SET c='ninety-one thousand five hundred seventy-four' WHERE a=16777;\nUPDATE t2 SET c='fifty-seven thousand five hundred ninety-nine' WHERE a=16778;\nUPDATE t2 SET c='fifty-five thousand eight hundred ninety-three' WHERE a=16779;\nUPDATE t2 SET c='fifty-two thousand seven hundred ninety-five' WHERE a=16780;\nUPDATE t2 SET c='eighty-six thousand five hundred eighty-three' WHERE a=16781;\nUPDATE t2 SET c='sixty-five thousand nine hundred forty-nine' WHERE a=16782;\nUPDATE t2 SET c='eighty-nine thousand seven hundred fifty-six' WHERE a=16783;\nUPDATE t2 SET c='six hundred seventy-five' WHERE a=16784;\nUPDATE t2 SET c='eighteen thousand two hundred sixty-three' WHERE a=16785;\nUPDATE t2 SET c='ten thousand nine hundred nine' WHERE a=16786;\nUPDATE t2 SET c='ninety-eight thousand one hundred thirty-five' WHERE a=16787;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty-three' WHERE a=16788;\nUPDATE t2 SET c='eighty thousand twenty-three' WHERE a=16789;\nUPDATE t2 SET c='six thousand one hundred twenty-nine' WHERE a=16790;\nUPDATE t2 SET c='eighty-two thousand three hundred fifteen' WHERE a=16791;\nUPDATE t2 SET c='forty thousand six hundred seventeen' WHERE a=16792;\nUPDATE t2 SET c='eighty-seven thousand six hundred eighty-nine' WHERE a=16793;\nUPDATE t2 SET c='eight thousand two hundred thirty-five' WHERE a=16794;\nUPDATE t2 SET c='nineteen thousand nine hundred eighty-five' WHERE a=16795;\nUPDATE t2 SET c='seventy-seven thousand seven hundred fifty-seven' WHERE a=16796;\nUPDATE t2 SET c='eighty-two thousand eight hundred' WHERE a=16797;\nUPDATE t2 SET c='eighteen thousand five hundred twenty' WHERE a=16798;\nUPDATE t2 SET c='thirty-two thousand nine hundred five' WHERE a=16799;\nUPDATE t2 SET c='fifty-two thousand eight hundred eighteen' WHERE a=16800;\nUPDATE t2 SET c='forty-five thousand nine hundred ninety-five' WHERE a=16801;\nUPDATE t2 SET c='sixty-five thousand five hundred ninety' WHERE a=16802;\nUPDATE t2 SET c='eight thousand one hundred seventy-two' WHERE a=16803;\nUPDATE t2 SET c='thirty-seven thousand two hundred ninety' WHERE a=16804;\nUPDATE t2 SET c='fifty thousand seven hundred one' WHERE a=16805;\nUPDATE t2 SET c='eleven thousand two hundred sixty-three' WHERE a=16806;\nUPDATE t2 SET c='twenty-four thousand nine hundred eleven' WHERE a=16807;\nUPDATE t2 SET c='seventy-two thousand five hundred eighty-eight' WHERE a=16808;\nUPDATE t2 SET c='thirty-nine thousand nine hundred forty-one' WHERE a=16809;\nUPDATE t2 SET c='four thousand four hundred seventy-two' WHERE a=16810;\nUPDATE t2 SET c='two thousand one hundred sixty' WHERE a=16811;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-one' WHERE a=16812;\nUPDATE t2 SET c='twenty-eight thousand three hundred seventy-six' WHERE a=16813;\nUPDATE t2 SET c='eighty-nine thousand two hundred five' WHERE a=16814;\nUPDATE t2 SET c='thirty-six thousand nine hundred twenty-two' WHERE a=16815;\nUPDATE t2 SET c='five hundred eighty-one' WHERE a=16816;\nUPDATE t2 SET c='twenty-eight thousand nine hundred forty-eight' WHERE a=16817;\nUPDATE t2 SET c='twenty-seven thousand seven hundred fifty-two' WHERE a=16818;\nUPDATE t2 SET c='sixty-nine thousand four hundred twenty-seven' WHERE a=16819;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty-seven' WHERE a=16820;\nUPDATE t2 SET c='nineteen thousand three hundred ninety-eight' WHERE a=16821;\nUPDATE t2 SET c='sixty-four thousand five hundred twenty-two' WHERE a=16822;\nUPDATE t2 SET c='sixty thousand nine hundred thirty-six' WHERE a=16823;\nUPDATE t2 SET c='forty-three thousand three hundred eighty-four' WHERE a=16824;\nUPDATE t2 SET c='eighteen thousand seven hundred sixty-three' WHERE a=16825;\nUPDATE t2 SET c='nineteen thousand two hundred forty-one' WHERE a=16826;\nUPDATE t2 SET c='thirty thousand three hundred sixty-two' WHERE a=16827;\nUPDATE t2 SET c='fifty-four thousand two hundred forty-three' WHERE a=16828;\nUPDATE t2 SET c='seventy thousand nineteen' WHERE a=16829;\nUPDATE t2 SET c='seventy thousand five hundred ninety-nine' WHERE a=16830;\nUPDATE t2 SET c='ninety thousand three hundred fifty-eight' WHERE a=16831;\nUPDATE t2 SET c='eleven thousand nine hundred fifty-five' WHERE a=16832;\nUPDATE t2 SET c='thirty-six thousand nine hundred fifty-six' WHERE a=16833;\nUPDATE t2 SET c='thirty-seven thousand fifty-nine' WHERE a=16834;\nUPDATE t2 SET c='thirty-seven thousand thirty-eight' WHERE a=16835;\nUPDATE t2 SET c='sixty-four thousand nine hundred ninety-three' WHERE a=16836;\nUPDATE t2 SET c='twenty-seven thousand three hundred forty-seven' WHERE a=16837;\nUPDATE t2 SET c='seventy-six thousand two hundred sixty-one' WHERE a=16838;\nUPDATE t2 SET c='seventy-three thousand four hundred forty-two' WHERE a=16839;\nUPDATE t2 SET c='seventy-six thousand nine hundred four' WHERE a=16840;\nUPDATE t2 SET c='eighteen thousand four hundred thirty-three' WHERE a=16841;\nUPDATE t2 SET c='thirty-seven thousand nine hundred fifty-four' WHERE a=16842;\nUPDATE t2 SET c='seventy-two thousand one hundred sixty-seven' WHERE a=16843;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-five' WHERE a=16844;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-five' WHERE a=16845;\nUPDATE t2 SET c='fifteen thousand five hundred twenty-five' WHERE a=16846;\nUPDATE t2 SET c='eighty-three thousand fourteen' WHERE a=16847;\nUPDATE t2 SET c='six thousand one hundred seventeen' WHERE a=16848;\nUPDATE t2 SET c='eighty-four thousand nine hundred eleven' WHERE a=16849;\nUPDATE t2 SET c='ninety-two thousand three hundred five' WHERE a=16850;\nUPDATE t2 SET c='fifty thousand seventy-five' WHERE a=16851;\nUPDATE t2 SET c='eighty-nine thousand two hundred twelve' WHERE a=16852;\nUPDATE t2 SET c='fifty-one thousand one hundred sixty-four' WHERE a=16853;\nUPDATE t2 SET c='nineteen thousand one hundred seventeen' WHERE a=16854;\nUPDATE t2 SET c='sixty thousand four hundred thirty-five' WHERE a=16855;\nUPDATE t2 SET c='eighty-five thousand three hundred fifty-four' WHERE a=16856;\nUPDATE t2 SET c='four thousand three hundred seventy-three' WHERE a=16857;\nUPDATE t2 SET c='twenty thousand five hundred fifty-seven' WHERE a=16858;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-two' WHERE a=16859;\nUPDATE t2 SET c='seventy-nine thousand two hundred eighty-two' WHERE a=16860;\nUPDATE t2 SET c='thirty-two thousand sixty-two' WHERE a=16861;\nUPDATE t2 SET c='forty-four thousand eight hundred sixty-four' WHERE a=16862;\nUPDATE t2 SET c='twenty-four thousand five hundred twenty-three' WHERE a=16863;\nUPDATE t2 SET c='thirty-four thousand five hundred nine' WHERE a=16864;\nUPDATE t2 SET c='fifteen thousand nine hundred twenty-three' WHERE a=16865;\nUPDATE t2 SET c='sixteen thousand five hundred forty-six' WHERE a=16866;\nUPDATE t2 SET c='thirty-nine thousand four hundred seventy-three' WHERE a=16867;\nUPDATE t2 SET c='eighty-one thousand four hundred eighteen' WHERE a=16868;\nUPDATE t2 SET c='fourteen thousand five hundred fifty-one' WHERE a=16869;\nUPDATE t2 SET c='twenty-three thousand three hundred fifty-seven' WHERE a=16870;\nUPDATE t2 SET c='thirty-eight thousand one hundred twenty-eight' WHERE a=16871;\nUPDATE t2 SET c='sixty-eight thousand nine hundred fifty' WHERE a=16872;\nUPDATE t2 SET c='one thousand six hundred forty-four' WHERE a=16873;\nUPDATE t2 SET c='thirty-two thousand five hundred sixty-two' WHERE a=16874;\nUPDATE t2 SET c='ninety-seven thousand seventy-five' WHERE a=16875;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-one' WHERE a=16876;\nUPDATE t2 SET c='fifty thousand seven hundred ninety-five' WHERE a=16877;\nUPDATE t2 SET c='ninety thousand nine hundred twenty-nine' WHERE a=16878;\nUPDATE t2 SET c='fifty thousand eight hundred fifteen' WHERE a=16879;\nUPDATE t2 SET c='fifty-two thousand six hundred thirty-five' WHERE a=16880;\nUPDATE t2 SET c='ninety-three thousand seven hundred thirty-nine' WHERE a=16881;\nUPDATE t2 SET c='seventeen thousand seven hundred fifty-eight' WHERE a=16882;\nUPDATE t2 SET c='forty-eight thousand two hundred fourteen' WHERE a=16883;\nUPDATE t2 SET c='sixty thousand eight hundred ten' WHERE a=16884;\nUPDATE t2 SET c='fifty-nine thousand seven hundred eighteen' WHERE a=16885;\nUPDATE t2 SET c='three thousand seven hundred sixty-three' WHERE a=16886;\nUPDATE t2 SET c='six thousand eight hundred ninety-one' WHERE a=16887;\nUPDATE t2 SET c='eighty-four thousand one hundred forty-nine' WHERE a=16888;\nUPDATE t2 SET c='fifty-two thousand fifteen' WHERE a=16889;\nUPDATE t2 SET c='twenty-eight thousand one hundred seventy-eight' WHERE a=16890;\nUPDATE t2 SET c='thirty-two thousand nine hundred sixty-one' WHERE a=16891;\nUPDATE t2 SET c='ninety-four thousand eight hundred six' WHERE a=16892;\nUPDATE t2 SET c='ninety-nine thousand two hundred ninety-five' WHERE a=16893;\nUPDATE t2 SET c='seventy-eight thousand nine hundred thirty-seven' WHERE a=16894;\nUPDATE t2 SET c='twenty-nine thousand five hundred thirty-one' WHERE a=16895;\nUPDATE t2 SET c='seventy-five thousand nine hundred' WHERE a=16896;\nUPDATE t2 SET c='twenty-five thousand three hundred' WHERE a=16897;\nUPDATE t2 SET c='fifty-four thousand seventeen' WHERE a=16898;\nUPDATE t2 SET c='twenty-nine thousand nine hundred sixty' WHERE a=16899;\nUPDATE t2 SET c='forty-three thousand two hundred eighty-eight' WHERE a=16900;\nUPDATE t2 SET c='seventy-seven thousand three hundred seventy-eight' WHERE a=16901;\nUPDATE t2 SET c='one hundred forty-nine' WHERE a=16902;\nUPDATE t2 SET c='sixty-six thousand eight hundred eighteen' WHERE a=16903;\nUPDATE t2 SET c='fifty-four thousand three hundred thirty-nine' WHERE a=16904;\nUPDATE t2 SET c='ninety-four thousand nine hundred eighty-six' WHERE a=16905;\nUPDATE t2 SET c='eighty-one thousand four hundred ninety-five' WHERE a=16906;\nUPDATE t2 SET c='fifty-five thousand nine hundred eighty-six' WHERE a=16907;\nUPDATE t2 SET c='seventeen thousand nine hundred fifty-seven' WHERE a=16908;\nUPDATE t2 SET c='thirteen thousand three hundred seventeen' WHERE a=16909;\nUPDATE t2 SET c='ninety-eight thousand nine hundred forty-four' WHERE a=16910;\nUPDATE t2 SET c='sixty-one thousand three hundred forty-six' WHERE a=16911;\nUPDATE t2 SET c='seventy-eight thousand one hundred eighty-nine' WHERE a=16912;\nUPDATE t2 SET c='sixteen thousand twenty-seven' WHERE a=16913;\nUPDATE t2 SET c='fifty-five thousand six hundred ninety' WHERE a=16914;\nUPDATE t2 SET c='twelve thousand six hundred eight' WHERE a=16915;\nUPDATE t2 SET c='seventy thousand thirty-three' WHERE a=16916;\nUPDATE t2 SET c='eight thousand seven hundred ninety-six' WHERE a=16917;\nUPDATE t2 SET c='seventy-five thousand nine hundred eighty-one' WHERE a=16918;\nUPDATE t2 SET c='eighty-six thousand six hundred seventy-two' WHERE a=16919;\nUPDATE t2 SET c='eighty thousand nine hundred eighty' WHERE a=16920;\nUPDATE t2 SET c='sixty-five thousand six hundred twelve' WHERE a=16921;\nUPDATE t2 SET c='thirty thousand three hundred twenty-four' WHERE a=16922;\nUPDATE t2 SET c='twenty-four thousand nine hundred ninety' WHERE a=16923;\nUPDATE t2 SET c='thirty-five thousand one hundred twelve' WHERE a=16924;\nUPDATE t2 SET c='forty thousand twenty-two' WHERE a=16925;\nUPDATE t2 SET c='twenty-seven thousand four hundred forty-five' WHERE a=16926;\nUPDATE t2 SET c='ninety-four thousand seven hundred forty-nine' WHERE a=16927;\nUPDATE t2 SET c='eighty-nine thousand six hundred forty-six' WHERE a=16928;\nUPDATE t2 SET c='thirty-seven thousand six hundred five' WHERE a=16929;\nUPDATE t2 SET c='fifty-seven thousand one hundred sixty-three' WHERE a=16930;\nUPDATE t2 SET c='thirty-nine thousand seven hundred thirty-two' WHERE a=16931;\nUPDATE t2 SET c='seventy-one thousand eight hundred forty-seven' WHERE a=16932;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty-one' WHERE a=16933;\nUPDATE t2 SET c='thirty-six thousand four hundred sixty-two' WHERE a=16934;\nUPDATE t2 SET c='forty thousand two hundred seventy-one' WHERE a=16935;\nUPDATE t2 SET c='seventy-five thousand one hundred fifty-one' WHERE a=16936;\nUPDATE t2 SET c='eighty-six thousand eight hundred sixty-eight' WHERE a=16937;\nUPDATE t2 SET c='seventy-four thousand forty-four' WHERE a=16938;\nUPDATE t2 SET c='twelve thousand nine hundred ninety-five' WHERE a=16939;\nUPDATE t2 SET c='thirty-six thousand six hundred eighty-six' WHERE a=16940;\nUPDATE t2 SET c='seventeen thousand five hundred nine' WHERE a=16941;\nUPDATE t2 SET c='sixty-nine thousand eight hundred nine' WHERE a=16942;\nUPDATE t2 SET c='ninety-seven thousand two hundred ninety-seven' WHERE a=16943;\nUPDATE t2 SET c='eighty-five thousand six hundred three' WHERE a=16944;\nUPDATE t2 SET c='ninety-four thousand six hundred fifty-seven' WHERE a=16945;\nUPDATE t2 SET c='sixty-seven thousand eight hundred forty-three' WHERE a=16946;\nUPDATE t2 SET c='ninety-three thousand three hundred fourteen' WHERE a=16947;\nUPDATE t2 SET c='ninety-one thousand six hundred seventy-five' WHERE a=16948;\nUPDATE t2 SET c='ninety-four thousand six hundred ninety' WHERE a=16949;\nUPDATE t2 SET c='one thousand eight hundred thirty-nine' WHERE a=16950;\nUPDATE t2 SET c='twenty-five thousand six hundred eighty-six' WHERE a=16951;\nUPDATE t2 SET c='forty-eight thousand four hundred eighty-five' WHERE a=16952;\nUPDATE t2 SET c='forty-nine thousand three hundred twelve' WHERE a=16953;\nUPDATE t2 SET c='ninety-six thousand thirty' WHERE a=16954;\nUPDATE t2 SET c='one thousand four hundred five' WHERE a=16955;\nUPDATE t2 SET c='seventy-four thousand one hundred thirteen' WHERE a=16956;\nUPDATE t2 SET c='one thousand seven hundred two' WHERE a=16957;\nUPDATE t2 SET c='eighty-three thousand ninety-three' WHERE a=16958;\nUPDATE t2 SET c='eighty-seven thousand four hundred seventy' WHERE a=16959;\nUPDATE t2 SET c='forty-nine thousand eight hundred twenty-two' WHERE a=16960;\nUPDATE t2 SET c='twenty thousand seven hundred thirty-one' WHERE a=16961;\nUPDATE t2 SET c='thirteen thousand seven hundred thirty-four' WHERE a=16962;\nUPDATE t2 SET c='fifty-seven thousand nine hundred twenty-five' WHERE a=16963;\nUPDATE t2 SET c='twenty-six thousand two hundred forty-four' WHERE a=16964;\nUPDATE t2 SET c='fifty-one thousand eight hundred eighty-three' WHERE a=16965;\nUPDATE t2 SET c='fourteen thousand five hundred seven' WHERE a=16966;\nUPDATE t2 SET c='twenty-nine thousand nine hundred thirty-two' WHERE a=16967;\nUPDATE t2 SET c='seventy-six thousand sixty-one' WHERE a=16968;\nUPDATE t2 SET c='seventy-two thousand three hundred sixteen' WHERE a=16969;\nUPDATE t2 SET c='seventy thousand four hundred eighty-seven' WHERE a=16970;\nUPDATE t2 SET c='one thousand fifty-eight' WHERE a=16971;\nUPDATE t2 SET c='fifty-seven thousand one hundred seventy-eight' WHERE a=16972;\nUPDATE t2 SET c='sixty-seven thousand three hundred fifty-nine' WHERE a=16973;\nUPDATE t2 SET c='eleven thousand four hundred thirty-six' WHERE a=16974;\nUPDATE t2 SET c='seventy-five thousand two hundred eighty-eight' WHERE a=16975;\nUPDATE t2 SET c='ninety-eight thousand five hundred sixty-two' WHERE a=16976;\nUPDATE t2 SET c='sixty-three thousand one hundred ninety-two' WHERE a=16977;\nUPDATE t2 SET c='seventy thousand six hundred eighty-nine' WHERE a=16978;\nUPDATE t2 SET c='fifty-four thousand two hundred one' WHERE a=16979;\nUPDATE t2 SET c='ninety-five thousand six hundred nineteen' WHERE a=16980;\nUPDATE t2 SET c='eighty-two thousand three hundred forty-three' WHERE a=16981;\nUPDATE t2 SET c='sixty-four thousand five hundred four' WHERE a=16982;\nUPDATE t2 SET c='ninety-nine thousand seven hundred seventeen' WHERE a=16983;\nUPDATE t2 SET c='forty-four thousand one hundred nineteen' WHERE a=16984;\nUPDATE t2 SET c='ten thousand three hundred seventy-three' WHERE a=16985;\nUPDATE t2 SET c='fifty-three thousand eight hundred forty-one' WHERE a=16986;\nUPDATE t2 SET c='eighty-seven thousand one hundred sixty-one' WHERE a=16987;\nUPDATE t2 SET c='sixty-three thousand seven hundred eighty-eight' WHERE a=16988;\nUPDATE t2 SET c='forty-three thousand forty-three' WHERE a=16989;\nUPDATE t2 SET c='forty-four thousand three hundred forty-nine' WHERE a=16990;\nUPDATE t2 SET c='thirty-one thousand seven hundred eighteen' WHERE a=16991;\nUPDATE t2 SET c='forty-seven thousand three hundred ninety' WHERE a=16992;\nUPDATE t2 SET c='ninety-seven thousand two hundred forty-seven' WHERE a=16993;\nUPDATE t2 SET c='sixty-four thousand seven hundred forty-nine' WHERE a=16994;\nUPDATE t2 SET c='sixty-six thousand four hundred forty-three' WHERE a=16995;\nUPDATE t2 SET c='twenty-four thousand three hundred ninety-four' WHERE a=16996;\nUPDATE t2 SET c='seventy thousand two hundred twenty-six' WHERE a=16997;\nUPDATE t2 SET c='fifty-five thousand three hundred fifty-two' WHERE a=16998;\nUPDATE t2 SET c='fourteen thousand nine hundred seventy-nine' WHERE a=16999;\nUPDATE t2 SET c='sixty-five thousand forty-seven' WHERE a=17000;\nUPDATE t2 SET c='forty thousand nine hundred sixty-seven' WHERE a=17001;\nUPDATE t2 SET c='sixty thousand nine hundred eighty-four' WHERE a=17002;\nUPDATE t2 SET c='forty thousand seventy-one' WHERE a=17003;\nUPDATE t2 SET c='four thousand one hundred fifty-eight' WHERE a=17004;\nUPDATE t2 SET c='twenty-six thousand nine hundred seventy-four' WHERE a=17005;\nUPDATE t2 SET c='seventy-eight thousand three hundred seventeen' WHERE a=17006;\nUPDATE t2 SET c='twenty-nine thousand three hundred eighty-four' WHERE a=17007;\nUPDATE t2 SET c='forty-eight thousand seven hundred sixty-four' WHERE a=17008;\nUPDATE t2 SET c='fifty-four thousand eighty-nine' WHERE a=17009;\nUPDATE t2 SET c='forty thousand two hundred seventy-three' WHERE a=17010;\nUPDATE t2 SET c='thirty-one thousand one hundred nine' WHERE a=17011;\nUPDATE t2 SET c='forty-eight thousand eight hundred ninety-two' WHERE a=17012;\nUPDATE t2 SET c='fifty-nine thousand eight hundred sixteen' WHERE a=17013;\nUPDATE t2 SET c='thirty-five thousand eight hundred fifty-two' WHERE a=17014;\nUPDATE t2 SET c='twenty-seven thousand three hundred forty-four' WHERE a=17015;\nUPDATE t2 SET c='one thousand one hundred fifty-one' WHERE a=17016;\nUPDATE t2 SET c='six thousand six hundred eighty-one' WHERE a=17017;\nUPDATE t2 SET c='forty-eight thousand seven hundred sixty' WHERE a=17018;\nUPDATE t2 SET c='three thousand five hundred ninety-three' WHERE a=17019;\nUPDATE t2 SET c='sixty-five thousand six hundred eighteen' WHERE a=17020;\nUPDATE t2 SET c='ninety thousand three hundred sixty-six' WHERE a=17021;\nUPDATE t2 SET c='eighty-four thousand four hundred thirty-two' WHERE a=17022;\nUPDATE t2 SET c='fifteen thousand five hundred seventy-two' WHERE a=17023;\nUPDATE t2 SET c='seventy-eight thousand three hundred five' WHERE a=17024;\nUPDATE t2 SET c='seventy-five thousand twenty-one' WHERE a=17025;\nUPDATE t2 SET c='fifty-nine thousand eight hundred eighty-eight' WHERE a=17026;\nUPDATE t2 SET c='eighty-six thousand three hundred eighty-two' WHERE a=17027;\nUPDATE t2 SET c='ninety-four thousand seven hundred thirty-two' WHERE a=17028;\nUPDATE t2 SET c='eighty-three thousand two hundred thirty-nine' WHERE a=17029;\nUPDATE t2 SET c='seventy thousand two hundred forty-three' WHERE a=17030;\nUPDATE t2 SET c='sixty-seven thousand seven hundred ninety-three' WHERE a=17031;\nUPDATE t2 SET c='ninety-three thousand two hundred forty-five' WHERE a=17032;\nUPDATE t2 SET c='four thousand five hundred eighty-seven' WHERE a=17033;\nUPDATE t2 SET c='one thousand seven hundred ninety-five' WHERE a=17034;\nUPDATE t2 SET c='fourteen thousand seven hundred sixty-nine' WHERE a=17035;\nUPDATE t2 SET c='twenty-seven thousand nine hundred thirty' WHERE a=17036;\nUPDATE t2 SET c='forty thousand five hundred seven' WHERE a=17037;\nUPDATE t2 SET c='thirty-eight thousand ninety-seven' WHERE a=17038;\nUPDATE t2 SET c='eighteen thousand six hundred ten' WHERE a=17039;\nUPDATE t2 SET c='fifty-two thousand three hundred twenty-one' WHERE a=17040;\nUPDATE t2 SET c='thirty-six thousand two hundred ninety-eight' WHERE a=17041;\nUPDATE t2 SET c='four hundred eight' WHERE a=17042;\nUPDATE t2 SET c='twenty-four thousand five hundred thirty-eight' WHERE a=17043;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty' WHERE a=17044;\nUPDATE t2 SET c='ninety-seven thousand eight hundred eighty-one' WHERE a=17045;\nUPDATE t2 SET c='seventy-seven thousand five hundred fifty-three' WHERE a=17046;\nUPDATE t2 SET c='eighty-five thousand six hundred one' WHERE a=17047;\nUPDATE t2 SET c='four thousand six hundred thirty-six' WHERE a=17048;\nUPDATE t2 SET c='seventy-six thousand one hundred forty-seven' WHERE a=17049;\nUPDATE t2 SET c='seventy-four thousand ninety-five' WHERE a=17050;\nUPDATE t2 SET c='three thousand five hundred seventy-eight' WHERE a=17051;\nUPDATE t2 SET c='one thousand five hundred ninety-nine' WHERE a=17052;\nUPDATE t2 SET c='sixty-three thousand two hundred seventy-one' WHERE a=17053;\nUPDATE t2 SET c='fifty-six thousand two hundred eighty' WHERE a=17054;\nUPDATE t2 SET c='ninety-six thousand twenty-eight' WHERE a=17055;\nUPDATE t2 SET c='thirty-four thousand one hundred sixty-eight' WHERE a=17056;\nUPDATE t2 SET c='seventy-six thousand three hundred five' WHERE a=17057;\nUPDATE t2 SET c='seventy-seven thousand six hundred eighty-seven' WHERE a=17058;\nUPDATE t2 SET c='seventy-one thousand nine hundred twelve' WHERE a=17059;\nUPDATE t2 SET c='five thousand eight hundred sixteen' WHERE a=17060;\nUPDATE t2 SET c='seventy-three thousand four hundred forty-nine' WHERE a=17061;\nUPDATE t2 SET c='forty-six thousand six hundred ninety-five' WHERE a=17062;\nUPDATE t2 SET c='eighty-two thousand six hundred two' WHERE a=17063;\nUPDATE t2 SET c='sixty-seven thousand two hundred seventy' WHERE a=17064;\nUPDATE t2 SET c='sixty-eight thousand four hundred sixty-eight' WHERE a=17065;\nUPDATE t2 SET c='twenty-seven thousand nine hundred ninety-six' WHERE a=17066;\nUPDATE t2 SET c='eighty-five thousand one hundred fourteen' WHERE a=17067;\nUPDATE t2 SET c='sixteen thousand five hundred thirty-nine' WHERE a=17068;\nUPDATE t2 SET c='seventy-one thousand seven hundred eight' WHERE a=17069;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty-eight' WHERE a=17070;\nUPDATE t2 SET c='eighty-two thousand nine hundred thirty-two' WHERE a=17071;\nUPDATE t2 SET c='five thousand one hundred twenty-two' WHERE a=17072;\nUPDATE t2 SET c='forty-three thousand four hundred thirty-four' WHERE a=17073;\nUPDATE t2 SET c='seventy-six thousand seven hundred forty-eight' WHERE a=17074;\nUPDATE t2 SET c='six thousand six hundred twenty-four' WHERE a=17075;\nUPDATE t2 SET c='seventeen thousand three hundred forty' WHERE a=17076;\nUPDATE t2 SET c='twenty-eight thousand three hundred seventy-nine' WHERE a=17077;\nUPDATE t2 SET c='forty-four thousand two hundred sixty-seven' WHERE a=17078;\nUPDATE t2 SET c='thirteen thousand six hundred seventy-four' WHERE a=17079;\nUPDATE t2 SET c='sixteen thousand eight hundred forty-three' WHERE a=17080;\nUPDATE t2 SET c='sixty-six thousand two hundred sixty-seven' WHERE a=17081;\nUPDATE t2 SET c='sixty-one thousand nine hundred ninety-one' WHERE a=17082;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-nine' WHERE a=17083;\nUPDATE t2 SET c='ninety-six thousand nine hundred three' WHERE a=17084;\nUPDATE t2 SET c='ten thousand eight hundred sixty-six' WHERE a=17085;\nUPDATE t2 SET c='thirty-two thousand three hundred fifty-four' WHERE a=17086;\nUPDATE t2 SET c='forty-nine thousand eight hundred seventy-one' WHERE a=17087;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-two' WHERE a=17088;\nUPDATE t2 SET c='fifty-two thousand seven hundred eighty' WHERE a=17089;\nUPDATE t2 SET c='thirty-one thousand forty-seven' WHERE a=17090;\nUPDATE t2 SET c='ten thousand two hundred eighty-four' WHERE a=17091;\nUPDATE t2 SET c='fifteen thousand four hundred eighty-eight' WHERE a=17092;\nUPDATE t2 SET c='sixty-eight thousand five hundred thirty-eight' WHERE a=17093;\nUPDATE t2 SET c='sixty-four thousand nine hundred seventy-four' WHERE a=17094;\nUPDATE t2 SET c='sixty-nine thousand five hundred ninety-one' WHERE a=17095;\nUPDATE t2 SET c='thirty-two thousand six hundred forty-four' WHERE a=17096;\nUPDATE t2 SET c='twenty-five thousand five hundred eight' WHERE a=17097;\nUPDATE t2 SET c='fifty thousand four hundred twenty-seven' WHERE a=17098;\nUPDATE t2 SET c='eighty-eight thousand three hundred seventeen' WHERE a=17099;\nUPDATE t2 SET c='twenty-two thousand four hundred ninety-two' WHERE a=17100;\nUPDATE t2 SET c='thirteen thousand nine hundred forty-six' WHERE a=17101;\nUPDATE t2 SET c='seventy-five thousand two hundred thirty-two' WHERE a=17102;\nUPDATE t2 SET c='ninety-eight thousand two hundred eighty' WHERE a=17103;\nUPDATE t2 SET c='twenty thousand ninety' WHERE a=17104;\nUPDATE t2 SET c='sixty-three thousand four hundred sixty-eight' WHERE a=17105;\nUPDATE t2 SET c='forty-seven thousand eight hundred fifty-seven' WHERE a=17106;\nUPDATE t2 SET c='seventeen thousand four hundred fifty-nine' WHERE a=17107;\nUPDATE t2 SET c='seventy-nine thousand seven hundred thirty-six' WHERE a=17108;\nUPDATE t2 SET c='seventy-two thousand five hundred sixty-four' WHERE a=17109;\nUPDATE t2 SET c='twenty thousand five hundred ten' WHERE a=17110;\nUPDATE t2 SET c='thirty-nine thousand one hundred thirty-one' WHERE a=17111;\nUPDATE t2 SET c='thirty-eight thousand six hundred forty-one' WHERE a=17112;\nUPDATE t2 SET c='ninety-six thousand four hundred sixty-one' WHERE a=17113;\nUPDATE t2 SET c='forty-nine thousand ninety-seven' WHERE a=17114;\nUPDATE t2 SET c='eighty-one thousand four hundred seventy-eight' WHERE a=17115;\nUPDATE t2 SET c='sixteen thousand eight hundred sixty-four' WHERE a=17116;\nUPDATE t2 SET c='ninety-five thousand seven hundred ten' WHERE a=17117;\nUPDATE t2 SET c='seventy-nine thousand eight hundred seventy-six' WHERE a=17118;\nUPDATE t2 SET c='ninety-nine thousand six hundred fifty-two' WHERE a=17119;\nUPDATE t2 SET c='sixty thousand one hundred forty-nine' WHERE a=17120;\nUPDATE t2 SET c='ninety thousand four hundred forty-eight' WHERE a=17121;\nUPDATE t2 SET c='thirty-two thousand seven hundred sixty-one' WHERE a=17122;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty-five' WHERE a=17123;\nUPDATE t2 SET c='thirty thousand eight hundred nine' WHERE a=17124;\nUPDATE t2 SET c='eighty-seven thousand nine hundred sixty-seven' WHERE a=17125;\nUPDATE t2 SET c='seven thousand eight hundred thirty-three' WHERE a=17126;\nUPDATE t2 SET c='ninety-seven thousand three hundred sixty-eight' WHERE a=17127;\nUPDATE t2 SET c='nineteen thousand one hundred eight' WHERE a=17128;\nUPDATE t2 SET c='seventy-one thousand six hundred eight' WHERE a=17129;\nUPDATE t2 SET c='forty-nine thousand one hundred forty-one' WHERE a=17130;\nUPDATE t2 SET c='forty-three thousand eight hundred sixty-six' WHERE a=17131;\nUPDATE t2 SET c='sixty-one thousand nine hundred forty-six' WHERE a=17132;\nUPDATE t2 SET c='forty-two thousand six hundred fifty-eight' WHERE a=17133;\nUPDATE t2 SET c='twenty-nine thousand eight hundred forty-four' WHERE a=17134;\nUPDATE t2 SET c='sixty-two thousand one hundred eighty-five' WHERE a=17135;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-five' WHERE a=17136;\nUPDATE t2 SET c='fifty-one thousand three hundred' WHERE a=17137;\nUPDATE t2 SET c='eighty-seven thousand seven hundred thirty-two' WHERE a=17138;\nUPDATE t2 SET c='twenty-one thousand ninety-three' WHERE a=17139;\nUPDATE t2 SET c='ninety-three thousand eight hundred fifty-eight' WHERE a=17140;\nUPDATE t2 SET c='thirty-three thousand three hundred twelve' WHERE a=17141;\nUPDATE t2 SET c='forty-seven thousand nine hundred thirty-four' WHERE a=17142;\nUPDATE t2 SET c='seventeen thousand seven hundred twenty-one' WHERE a=17143;\nUPDATE t2 SET c='seventy-four thousand nine hundred ninety-four' WHERE a=17144;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty-nine' WHERE a=17145;\nUPDATE t2 SET c='eighty thousand nine hundred thirty-one' WHERE a=17146;\nUPDATE t2 SET c='ten thousand four hundred ninety' WHERE a=17147;\nUPDATE t2 SET c='eleven thousand eight hundred twenty' WHERE a=17148;\nUPDATE t2 SET c='sixty-six thousand eight hundred fourteen' WHERE a=17149;\nUPDATE t2 SET c='fifty-four thousand five hundred sixty-three' WHERE a=17150;\nUPDATE t2 SET c='sixty thousand two hundred twenty-seven' WHERE a=17151;\nUPDATE t2 SET c='ninety-four thousand seven hundred sixty-four' WHERE a=17152;\nUPDATE t2 SET c='fifty-four thousand six hundred fifty-four' WHERE a=17153;\nUPDATE t2 SET c='twenty-two thousand two hundred sixty-three' WHERE a=17154;\nUPDATE t2 SET c='fifteen thousand two hundred fifty-two' WHERE a=17155;\nUPDATE t2 SET c='thirty-seven thousand one hundred forty-seven' WHERE a=17156;\nUPDATE t2 SET c='sixty-two thousand seven hundred forty-six' WHERE a=17157;\nUPDATE t2 SET c='one thousand two hundred twenty-two' WHERE a=17158;\nUPDATE t2 SET c='fifty-six thousand three hundred fourteen' WHERE a=17159;\nUPDATE t2 SET c='ten thousand eight hundred eighty-two' WHERE a=17160;\nUPDATE t2 SET c='sixty-one thousand seven hundred fifty-three' WHERE a=17161;\nUPDATE t2 SET c='forty-one thousand six hundred forty-five' WHERE a=17162;\nUPDATE t2 SET c='sixty-three thousand nine hundred seventy' WHERE a=17163;\nUPDATE t2 SET c='five thousand five hundred seventy-one' WHERE a=17164;\nUPDATE t2 SET c='seventy-four thousand three hundred eight' WHERE a=17165;\nUPDATE t2 SET c='thirty-two thousand three hundred eighty-seven' WHERE a=17166;\nUPDATE t2 SET c='two hundred sixty-eight' WHERE a=17167;\nUPDATE t2 SET c='ninety-seven thousand one hundred eighty-seven' WHERE a=17168;\nUPDATE t2 SET c='seventy thousand five hundred eighty-seven' WHERE a=17169;\nUPDATE t2 SET c='ninety-three thousand four hundred forty-three' WHERE a=17170;\nUPDATE t2 SET c='fifty-six thousand one hundred thirty-nine' WHERE a=17171;\nUPDATE t2 SET c='seven hundred twenty-nine' WHERE a=17172;\nUPDATE t2 SET c='thirty-five thousand one hundred thirty-six' WHERE a=17173;\nUPDATE t2 SET c='one thousand six hundred forty-six' WHERE a=17174;\nUPDATE t2 SET c='thirteen thousand ninety-four' WHERE a=17175;\nUPDATE t2 SET c='thirty-six thousand one hundred sixty-six' WHERE a=17176;\nUPDATE t2 SET c='seventy-eight thousand six hundred seven' WHERE a=17177;\nUPDATE t2 SET c='sixty-one thousand six hundred forty-nine' WHERE a=17178;\nUPDATE t2 SET c='seventy thousand eight hundred sixteen' WHERE a=17179;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-three' WHERE a=17180;\nUPDATE t2 SET c='thirty-one thousand three hundred seventy-six' WHERE a=17181;\nUPDATE t2 SET c='seventeen thousand six hundred twenty-six' WHERE a=17182;\nUPDATE t2 SET c='seventy-nine thousand four hundred seventy-two' WHERE a=17183;\nUPDATE t2 SET c='forty-six thousand one hundred nineteen' WHERE a=17184;\nUPDATE t2 SET c='twenty-one thousand nine hundred thirty-six' WHERE a=17185;\nUPDATE t2 SET c='two thousand six hundred seventy-two' WHERE a=17186;\nUPDATE t2 SET c='twenty-nine thousand five hundred thirty-two' WHERE a=17187;\nUPDATE t2 SET c='seventeen thousand six hundred twenty-eight' WHERE a=17188;\nUPDATE t2 SET c='seven hundred two' WHERE a=17189;\nUPDATE t2 SET c='eighty-three thousand seven hundred thirty-two' WHERE a=17190;\nUPDATE t2 SET c='ninety-eight thousand seven hundred thirty-six' WHERE a=17191;\nUPDATE t2 SET c='seventy-three thousand three hundred sixty' WHERE a=17192;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-one' WHERE a=17193;\nUPDATE t2 SET c='seventy-seven thousand three hundred ninety-nine' WHERE a=17194;\nUPDATE t2 SET c='seventy-two thousand one hundred one' WHERE a=17195;\nUPDATE t2 SET c='seventy thousand six hundred thirty-seven' WHERE a=17196;\nUPDATE t2 SET c='thirty thousand one hundred ninety-six' WHERE a=17197;\nUPDATE t2 SET c='twenty-six thousand four hundred sixty-three' WHERE a=17198;\nUPDATE t2 SET c='four thousand four hundred thirty-nine' WHERE a=17199;\nUPDATE t2 SET c='fifty-six thousand ninety' WHERE a=17200;\nUPDATE t2 SET c='eighty-two thousand thirty' WHERE a=17201;\nUPDATE t2 SET c='eighty-seven thousand nine hundred sixty-two' WHERE a=17202;\nUPDATE t2 SET c='seventy-four thousand eight hundred fifty-eight' WHERE a=17203;\nUPDATE t2 SET c='ninety thousand thirty-three' WHERE a=17204;\nUPDATE t2 SET c='sixty-five thousand five hundred twenty' WHERE a=17205;\nUPDATE t2 SET c='fifty-five thousand three hundred seventy-nine' WHERE a=17206;\nUPDATE t2 SET c='sixty-nine thousand one hundred eighteen' WHERE a=17207;\nUPDATE t2 SET c='forty-one thousand eight hundred fifty-seven' WHERE a=17208;\nUPDATE t2 SET c='thirty-two thousand five hundred ninety-two' WHERE a=17209;\nUPDATE t2 SET c='ninety thousand four hundred twenty' WHERE a=17210;\nUPDATE t2 SET c='sixty thousand seven hundred eighty-nine' WHERE a=17211;\nUPDATE t2 SET c='thirty-five thousand nineteen' WHERE a=17212;\nUPDATE t2 SET c='seventy-five thousand seven hundred thirty-one' WHERE a=17213;\nUPDATE t2 SET c='forty-eight thousand five hundred fifty-two' WHERE a=17214;\nUPDATE t2 SET c='eight thousand one hundred sixty-three' WHERE a=17215;\nUPDATE t2 SET c='eighty-four thousand nine hundred eighty-three' WHERE a=17216;\nUPDATE t2 SET c='eighty-nine thousand one hundred fifty-one' WHERE a=17217;\nUPDATE t2 SET c='eighty-eight thousand five hundred forty-eight' WHERE a=17218;\nUPDATE t2 SET c='fifty-one thousand six hundred seventy-two' WHERE a=17219;\nUPDATE t2 SET c='twenty-six thousand three hundred sixty-two' WHERE a=17220;\nUPDATE t2 SET c='fifty-one thousand eighty-seven' WHERE a=17221;\nUPDATE t2 SET c='sixty-three thousand six hundred twenty-eight' WHERE a=17222;\nUPDATE t2 SET c='forty-two thousand nine hundred fifty' WHERE a=17223;\nUPDATE t2 SET c='twelve thousand three hundred eighty-three' WHERE a=17224;\nUPDATE t2 SET c='forty-six thousand two hundred eighty-eight' WHERE a=17225;\nUPDATE t2 SET c='fifty thousand eighty-seven' WHERE a=17226;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-five' WHERE a=17227;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty' WHERE a=17228;\nUPDATE t2 SET c='eighteen thousand two hundred seventy-one' WHERE a=17229;\nUPDATE t2 SET c='eighty-six thousand fifty-two' WHERE a=17230;\nUPDATE t2 SET c='fifty-six thousand one hundred ninety-eight' WHERE a=17231;\nUPDATE t2 SET c='eleven thousand nine hundred six' WHERE a=17232;\nUPDATE t2 SET c='thirteen thousand nine hundred forty-seven' WHERE a=17233;\nUPDATE t2 SET c='seventy-one thousand nine hundred eighty' WHERE a=17234;\nUPDATE t2 SET c='eighty thousand five hundred ninety-two' WHERE a=17235;\nUPDATE t2 SET c='seventeen thousand eighty-nine' WHERE a=17236;\nUPDATE t2 SET c='ninety-nine thousand seven hundred ninety' WHERE a=17237;\nUPDATE t2 SET c='fifty-four thousand four hundred eight' WHERE a=17238;\nUPDATE t2 SET c='thirty-six thousand two hundred forty-eight' WHERE a=17239;\nUPDATE t2 SET c='eighty-six thousand four hundred seventy' WHERE a=17240;\nUPDATE t2 SET c='sixty-one thousand eight hundred eighty-five' WHERE a=17241;\nUPDATE t2 SET c='seventeen thousand seven hundred sixty' WHERE a=17242;\nUPDATE t2 SET c='fifty-five thousand nine hundred thirty' WHERE a=17243;\nUPDATE t2 SET c='seventy-five thousand two hundred thirty-four' WHERE a=17244;\nUPDATE t2 SET c='ninety-four thousand four hundred fifty-seven' WHERE a=17245;\nUPDATE t2 SET c='sixty thousand three hundred ninety-one' WHERE a=17246;\nUPDATE t2 SET c='seventy-five thousand one hundred ninety-two' WHERE a=17247;\nUPDATE t2 SET c='thirty-two thousand seven hundred seventy-five' WHERE a=17248;\nUPDATE t2 SET c='eleven thousand sixty-one' WHERE a=17249;\nUPDATE t2 SET c='fifty thousand one hundred thirty-five' WHERE a=17250;\nUPDATE t2 SET c='eighty-six thousand two hundred ninety-three' WHERE a=17251;\nUPDATE t2 SET c='thirty-nine thousand eight hundred thirty-three' WHERE a=17252;\nUPDATE t2 SET c='twenty-two thousand two hundred eighty-three' WHERE a=17253;\nUPDATE t2 SET c='fifty-seven thousand five hundred twenty-seven' WHERE a=17254;\nUPDATE t2 SET c='sixty-two thousand three hundred eighty-two' WHERE a=17255;\nUPDATE t2 SET c='twenty-seven thousand eight hundred forty-five' WHERE a=17256;\nUPDATE t2 SET c='thirty thousand four hundred eighty-five' WHERE a=17257;\nUPDATE t2 SET c='eighty-four thousand seven hundred thirty-seven' WHERE a=17258;\nUPDATE t2 SET c='sixty-four thousand eighty' WHERE a=17259;\nUPDATE t2 SET c='two thousand two hundred ninety-three' WHERE a=17260;\nUPDATE t2 SET c='one thousand five hundred seventeen' WHERE a=17261;\nUPDATE t2 SET c='twenty-six thousand four hundred eighty-nine' WHERE a=17262;\nUPDATE t2 SET c='sixty-six thousand four hundred fifty-three' WHERE a=17263;\nUPDATE t2 SET c='forty-two thousand five hundred forty-six' WHERE a=17264;\nUPDATE t2 SET c='eighty-two thousand four hundred nine' WHERE a=17265;\nUPDATE t2 SET c='twenty-seven thousand one hundred ninety-three' WHERE a=17266;\nUPDATE t2 SET c='seventy-seven thousand four hundred eighty-six' WHERE a=17267;\nUPDATE t2 SET c='eighteen thousand ninety-four' WHERE a=17268;\nUPDATE t2 SET c='fifty-one thousand four hundred thirty-three' WHERE a=17269;\nUPDATE t2 SET c='seven thousand four hundred forty-nine' WHERE a=17270;\nUPDATE t2 SET c='seventy-four thousand seven hundred seventy-two' WHERE a=17271;\nUPDATE t2 SET c='ninety-three thousand four hundred five' WHERE a=17272;\nUPDATE t2 SET c='eighty-four thousand six hundred one' WHERE a=17273;\nUPDATE t2 SET c='eighteen thousand five hundred thirteen' WHERE a=17274;\nUPDATE t2 SET c='eighty-four thousand four hundred sixty-six' WHERE a=17275;\nUPDATE t2 SET c='sixty-five thousand seven' WHERE a=17276;\nUPDATE t2 SET c='thirty-eight thousand eight hundred forty-five' WHERE a=17277;\nUPDATE t2 SET c='twenty-four thousand five hundred ninety-two' WHERE a=17278;\nUPDATE t2 SET c='seventy thousand sixty-four' WHERE a=17279;\nUPDATE t2 SET c='thirty-seven thousand sixty-eight' WHERE a=17280;\nUPDATE t2 SET c='ninety-six thousand sixty-nine' WHERE a=17281;\nUPDATE t2 SET c='seventy-five thousand eight hundred eighty-two' WHERE a=17282;\nUPDATE t2 SET c='thirty-six thousand one hundred thirty-five' WHERE a=17283;\nUPDATE t2 SET c='eighty-three thousand eighty-one' WHERE a=17284;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixteen' WHERE a=17285;\nUPDATE t2 SET c='sixty-one thousand thirty' WHERE a=17286;\nUPDATE t2 SET c='forty-nine thousand eight hundred forty-six' WHERE a=17287;\nUPDATE t2 SET c='twenty-four thousand one hundred thirty-seven' WHERE a=17288;\nUPDATE t2 SET c='twenty-four thousand nine hundred twenty-seven' WHERE a=17289;\nUPDATE t2 SET c='fifty-four thousand seven hundred forty-seven' WHERE a=17290;\nUPDATE t2 SET c='seventy-one thousand three hundred forty-three' WHERE a=17291;\nUPDATE t2 SET c='nine thousand three hundred forty-two' WHERE a=17292;\nUPDATE t2 SET c='seven thousand three hundred one' WHERE a=17293;\nUPDATE t2 SET c='eighty-two thousand sixty-seven' WHERE a=17294;\nUPDATE t2 SET c='forty-five thousand seven hundred twelve' WHERE a=17295;\nUPDATE t2 SET c='ninety-six thousand ninety-two' WHERE a=17296;\nUPDATE t2 SET c='one thousand one hundred fifty' WHERE a=17297;\nUPDATE t2 SET c='seventy-nine thousand eight hundred twenty-nine' WHERE a=17298;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixty-nine' WHERE a=17299;\nUPDATE t2 SET c='ninety-two thousand one hundred seventy-six' WHERE a=17300;\nUPDATE t2 SET c='twenty-one thousand eight hundred thirteen' WHERE a=17301;\nUPDATE t2 SET c='twenty-three thousand seven hundred sixteen' WHERE a=17302;\nUPDATE t2 SET c='sixty-six thousand ninety-one' WHERE a=17303;\nUPDATE t2 SET c='seventy-four thousand four hundred forty-nine' WHERE a=17304;\nUPDATE t2 SET c='seventy-five thousand one hundred eighty-eight' WHERE a=17305;\nUPDATE t2 SET c='forty-five thousand nine hundred eighty-nine' WHERE a=17306;\nUPDATE t2 SET c='twenty-seven thousand seven hundred sixty-two' WHERE a=17307;\nUPDATE t2 SET c='twenty-two thousand nine' WHERE a=17308;\nUPDATE t2 SET c='four thousand eight hundred thirty-two' WHERE a=17309;\nUPDATE t2 SET c='nine thousand seven hundred forty-two' WHERE a=17310;\nUPDATE t2 SET c='forty-one thousand one hundred thirty-five' WHERE a=17311;\nUPDATE t2 SET c='seventy-two thousand five hundred sixty-eight' WHERE a=17312;\nUPDATE t2 SET c='sixty-four thousand one hundred sixty-six' WHERE a=17313;\nUPDATE t2 SET c='thirty-nine thousand nine hundred fifty-six' WHERE a=17314;\nUPDATE t2 SET c='sixty-eight thousand four hundred eighty-two' WHERE a=17315;\nUPDATE t2 SET c='thirty-two thousand three hundred ninety-two' WHERE a=17316;\nUPDATE t2 SET c='ninety-six thousand five hundred thirty-three' WHERE a=17317;\nUPDATE t2 SET c='forty-four thousand one hundred seventy-eight' WHERE a=17318;\nUPDATE t2 SET c='one thousand seven hundred twenty' WHERE a=17319;\nUPDATE t2 SET c='three thousand eight hundred twenty-nine' WHERE a=17320;\nUPDATE t2 SET c='eighty thousand nine hundred forty' WHERE a=17321;\nUPDATE t2 SET c='eight hundred thirty-five' WHERE a=17322;\nUPDATE t2 SET c='twenty-seven thousand nine hundred seventy-six' WHERE a=17323;\nUPDATE t2 SET c='twenty-one thousand six hundred ninety-seven' WHERE a=17324;\nUPDATE t2 SET c='eleven thousand three hundred ninety-seven' WHERE a=17325;\nUPDATE t2 SET c='twelve thousand three hundred eighty-one' WHERE a=17326;\nUPDATE t2 SET c='two thousand eight hundred forty' WHERE a=17327;\nUPDATE t2 SET c='nineteen thousand five hundred twenty-one' WHERE a=17328;\nUPDATE t2 SET c='forty-five thousand seventy-nine' WHERE a=17329;\nUPDATE t2 SET c='fifty thousand one hundred sixty' WHERE a=17330;\nUPDATE t2 SET c='sixty-three thousand nine hundred eleven' WHERE a=17331;\nUPDATE t2 SET c='twenty thousand one hundred sixty-nine' WHERE a=17332;\nUPDATE t2 SET c='thirty-seven thousand ninety-nine' WHERE a=17333;\nUPDATE t2 SET c='fifty-nine thousand nine hundred seventy-seven' WHERE a=17334;\nUPDATE t2 SET c='forty-seven thousand six hundred forty-four' WHERE a=17335;\nUPDATE t2 SET c='forty-eight thousand nine hundred seventy-eight' WHERE a=17336;\nUPDATE t2 SET c='eighty-two thousand six hundred seventeen' WHERE a=17337;\nUPDATE t2 SET c='thirty-three thousand four hundred ten' WHERE a=17338;\nUPDATE t2 SET c='forty-three' WHERE a=17339;\nUPDATE t2 SET c='fifty-eight thousand seven hundred ninety-seven' WHERE a=17340;\nUPDATE t2 SET c='two thousand seven hundred fifty-nine' WHERE a=17341;\nUPDATE t2 SET c='twenty-eight thousand seven hundred fifty-eight' WHERE a=17342;\nUPDATE t2 SET c='fifty-three thousand seven hundred seven' WHERE a=17343;\nUPDATE t2 SET c='twenty thousand six hundred seventy-three' WHERE a=17344;\nUPDATE t2 SET c='forty-six thousand eight hundred seven' WHERE a=17345;\nUPDATE t2 SET c='one thousand eight hundred thirty-six' WHERE a=17346;\nUPDATE t2 SET c='eighty-five thousand seven hundred nine' WHERE a=17347;\nUPDATE t2 SET c='eighty-seven thousand seven hundred seventy-nine' WHERE a=17348;\nUPDATE t2 SET c='eighty-seven thousand two hundred seventy-three' WHERE a=17349;\nUPDATE t2 SET c='two thousand nine hundred eighty-seven' WHERE a=17350;\nUPDATE t2 SET c='thirty-eight thousand two hundred twenty-one' WHERE a=17351;\nUPDATE t2 SET c='eighty-four thousand six hundred seventy-three' WHERE a=17352;\nUPDATE t2 SET c='seventy-three thousand five hundred twenty-nine' WHERE a=17353;\nUPDATE t2 SET c='seventy-one thousand six hundred eighty-nine' WHERE a=17354;\nUPDATE t2 SET c='sixty-three thousand nine hundred fifty-six' WHERE a=17355;\nUPDATE t2 SET c='one thousand six hundred eleven' WHERE a=17356;\nUPDATE t2 SET c='fifteen thousand forty-four' WHERE a=17357;\nUPDATE t2 SET c='thirty-eight thousand two hundred seventy-nine' WHERE a=17358;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty' WHERE a=17359;\nUPDATE t2 SET c='seventy-nine thousand four hundred fifty' WHERE a=17360;\nUPDATE t2 SET c='seventeen thousand five hundred eight' WHERE a=17361;\nUPDATE t2 SET c='seventy-four thousand three hundred ninety' WHERE a=17362;\nUPDATE t2 SET c='fifty-two thousand eight hundred one' WHERE a=17363;\nUPDATE t2 SET c='seven thousand eight hundred sixty-nine' WHERE a=17364;\nUPDATE t2 SET c='sixty-one thousand four hundred ninety-two' WHERE a=17365;\nUPDATE t2 SET c='nineteen thousand one hundred seventy-five' WHERE a=17366;\nUPDATE t2 SET c='ninety-one thousand six hundred seven' WHERE a=17367;\nUPDATE t2 SET c='seventy-one thousand four hundred ten' WHERE a=17368;\nUPDATE t2 SET c='ninety-eight thousand four hundred ninety-seven' WHERE a=17369;\nUPDATE t2 SET c='six thousand eight hundred sixty-two' WHERE a=17370;\nUPDATE t2 SET c='three thousand four hundred eighteen' WHERE a=17371;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-six' WHERE a=17372;\nUPDATE t2 SET c='sixty-eight thousand three hundred fifty' WHERE a=17373;\nUPDATE t2 SET c='twenty-six thousand sixty' WHERE a=17374;\nUPDATE t2 SET c='thirty-one thousand three hundred fifty' WHERE a=17375;\nUPDATE t2 SET c='forty-three thousand one hundred forty-three' WHERE a=17376;\nUPDATE t2 SET c='six thousand eight hundred fifty-five' WHERE a=17377;\nUPDATE t2 SET c='eighty-six thousand eight hundred' WHERE a=17378;\nUPDATE t2 SET c='seventy thousand four hundred fifty-three' WHERE a=17379;\nUPDATE t2 SET c='twenty thousand four hundred four' WHERE a=17380;\nUPDATE t2 SET c='twenty-six thousand three hundred fifty-two' WHERE a=17381;\nUPDATE t2 SET c='six thousand five hundred fifty-seven' WHERE a=17382;\nUPDATE t2 SET c='fifty-eight thousand six hundred ninety-six' WHERE a=17383;\nUPDATE t2 SET c='sixty-five thousand eight hundred' WHERE a=17384;\nUPDATE t2 SET c='thirty thousand two hundred eighty-one' WHERE a=17385;\nUPDATE t2 SET c='forty-eight thousand six hundred thirty-two' WHERE a=17386;\nUPDATE t2 SET c='ninety-three thousand four hundred forty-five' WHERE a=17387;\nUPDATE t2 SET c='fifty-one thousand one hundred fifty-six' WHERE a=17388;\nUPDATE t2 SET c='eighty-two thousand four hundred ninety-seven' WHERE a=17389;\nUPDATE t2 SET c='twenty-one thousand four hundred ninety-five' WHERE a=17390;\nUPDATE t2 SET c='eleven thousand sixty-eight' WHERE a=17391;\nUPDATE t2 SET c='thirty-three thousand six hundred ninety-six' WHERE a=17392;\nUPDATE t2 SET c='eighty-four thousand twenty-six' WHERE a=17393;\nUPDATE t2 SET c='forty-two thousand seven hundred ninety-nine' WHERE a=17394;\nUPDATE t2 SET c='thirteen thousand ten' WHERE a=17395;\nUPDATE t2 SET c='sixty-nine thousand eight hundred three' WHERE a=17396;\nUPDATE t2 SET c='thirty-nine thousand sixty-seven' WHERE a=17397;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirty-nine' WHERE a=17398;\nUPDATE t2 SET c='forty-nine thousand five hundred ten' WHERE a=17399;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-eight' WHERE a=17400;\nUPDATE t2 SET c='ninety-five thousand six hundred eighty-one' WHERE a=17401;\nUPDATE t2 SET c='fifty-six thousand one hundred sixty-four' WHERE a=17402;\nUPDATE t2 SET c='forty-nine thousand five hundred ninety-two' WHERE a=17403;\nUPDATE t2 SET c='seventy-one thousand three hundred ten' WHERE a=17404;\nUPDATE t2 SET c='thirty-two thousand fifty-three' WHERE a=17405;\nUPDATE t2 SET c='ninety-nine thousand three hundred sixty-one' WHERE a=17406;\nUPDATE t2 SET c='twenty-two thousand two hundred eighty-four' WHERE a=17407;\nUPDATE t2 SET c='fifty-six thousand ten' WHERE a=17408;\nUPDATE t2 SET c='thirty-two thousand one hundred twenty-nine' WHERE a=17409;\nUPDATE t2 SET c='fifty-four thousand six hundred fifty-six' WHERE a=17410;\nUPDATE t2 SET c='forty-two thousand eight hundred seventy-nine' WHERE a=17411;\nUPDATE t2 SET c='eighty-six thousand fifty-seven' WHERE a=17412;\nUPDATE t2 SET c='forty-five thousand eight hundred twenty-seven' WHERE a=17413;\nUPDATE t2 SET c='sixty thousand four hundred forty-eight' WHERE a=17414;\nUPDATE t2 SET c='seventy-five thousand six hundred seventy-three' WHERE a=17415;\nUPDATE t2 SET c='fifty-six thousand two hundred ninety-six' WHERE a=17416;\nUPDATE t2 SET c='seventy-five thousand nine hundred thirty-six' WHERE a=17417;\nUPDATE t2 SET c='ninety thousand six hundred seventy' WHERE a=17418;\nUPDATE t2 SET c='forty-three thousand nine hundred seventy-one' WHERE a=17419;\nUPDATE t2 SET c='seventy-eight thousand one hundred five' WHERE a=17420;\nUPDATE t2 SET c='twenty-five thousand four hundred eighty-five' WHERE a=17421;\nUPDATE t2 SET c='forty-eight thousand eight hundred thirteen' WHERE a=17422;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-eight' WHERE a=17423;\nUPDATE t2 SET c='forty-three thousand eight hundred forty-seven' WHERE a=17424;\nUPDATE t2 SET c='ninety-three thousand five hundred thirty-two' WHERE a=17425;\nUPDATE t2 SET c='forty-seven thousand four hundred thirty-five' WHERE a=17426;\nUPDATE t2 SET c='ninety-nine thousand eight hundred thirty-nine' WHERE a=17427;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-six' WHERE a=17428;\nUPDATE t2 SET c='nine thousand thirty' WHERE a=17429;\nUPDATE t2 SET c='eighty-seven thousand seven hundred seventy-four' WHERE a=17430;\nUPDATE t2 SET c='ninety thousand four hundred ninety-six' WHERE a=17431;\nUPDATE t2 SET c='thirty-three thousand seven hundred seventy-one' WHERE a=17432;\nUPDATE t2 SET c='eighty-five thousand six hundred eighty-one' WHERE a=17433;\nUPDATE t2 SET c='seventy-one thousand seven hundred ninety-one' WHERE a=17434;\nUPDATE t2 SET c='eleven thousand two hundred sixty-nine' WHERE a=17435;\nUPDATE t2 SET c='fifteen thousand five hundred four' WHERE a=17436;\nUPDATE t2 SET c='seventy-six thousand four hundred twenty-seven' WHERE a=17437;\nUPDATE t2 SET c='ninety-nine thousand nine hundred forty-seven' WHERE a=17438;\nUPDATE t2 SET c='forty-one thousand six hundred sixty-four' WHERE a=17439;\nUPDATE t2 SET c='forty-eight thousand four hundred forty-eight' WHERE a=17440;\nUPDATE t2 SET c='nine thousand eight hundred ninety-eight' WHERE a=17441;\nUPDATE t2 SET c='seventy-seven thousand five hundred two' WHERE a=17442;\nUPDATE t2 SET c='forty-seven thousand one hundred sixty-one' WHERE a=17443;\nUPDATE t2 SET c='seventy-two thousand six hundred twenty' WHERE a=17444;\nUPDATE t2 SET c='fifty-eight thousand nine hundred fourteen' WHERE a=17445;\nUPDATE t2 SET c='fifty-two thousand nine hundred ten' WHERE a=17446;\nUPDATE t2 SET c='ninety-one thousand three hundred fifty-eight' WHERE a=17447;\nUPDATE t2 SET c='sixty-nine thousand thirty-three' WHERE a=17448;\nUPDATE t2 SET c='seventy-eight thousand seven' WHERE a=17449;\nUPDATE t2 SET c='seventy-eight thousand five hundred sixty-eight' WHERE a=17450;\nUPDATE t2 SET c='two thousand four hundred thirty-five' WHERE a=17451;\nUPDATE t2 SET c='eighty-two thousand eight hundred twenty-five' WHERE a=17452;\nUPDATE t2 SET c='five thousand three hundred sixty-five' WHERE a=17453;\nUPDATE t2 SET c='forty-nine thousand two hundred seventy-three' WHERE a=17454;\nUPDATE t2 SET c='forty-five thousand five hundred eight' WHERE a=17455;\nUPDATE t2 SET c='sixty thousand five hundred fifty-seven' WHERE a=17456;\nUPDATE t2 SET c='fifty-seven thousand two hundred seventy-four' WHERE a=17457;\nUPDATE t2 SET c='sixteen thousand four hundred six' WHERE a=17458;\nUPDATE t2 SET c='thirteen thousand six hundred seventy-nine' WHERE a=17459;\nUPDATE t2 SET c='ninety-one thousand eight hundred seven' WHERE a=17460;\nUPDATE t2 SET c='ninety-three thousand eight hundred fifty-three' WHERE a=17461;\nUPDATE t2 SET c='eighteen thousand five hundred fifty-seven' WHERE a=17462;\nUPDATE t2 SET c='seventy-four thousand three hundred eighty-nine' WHERE a=17463;\nUPDATE t2 SET c='eighty thousand three hundred seventy-seven' WHERE a=17464;\nUPDATE t2 SET c='thirty-nine thousand two hundred seventy-five' WHERE a=17465;\nUPDATE t2 SET c='fifty-two thousand six hundred three' WHERE a=17466;\nUPDATE t2 SET c='twenty-two thousand one hundred' WHERE a=17467;\nUPDATE t2 SET c='ninety-four thousand seven hundred four' WHERE a=17468;\nUPDATE t2 SET c='seventy-three thousand seven hundred thirty-six' WHERE a=17469;\nUPDATE t2 SET c='sixty-two thousand nine hundred eighty-five' WHERE a=17470;\nUPDATE t2 SET c='seventy-five thousand five hundred eighty-six' WHERE a=17471;\nUPDATE t2 SET c='fifty-six thousand thirty-six' WHERE a=17472;\nUPDATE t2 SET c='forty-eight thousand six hundred nine' WHERE a=17473;\nUPDATE t2 SET c='thirty-six thousand three hundred eighteen' WHERE a=17474;\nUPDATE t2 SET c='twenty-two thousand seven hundred twenty-three' WHERE a=17475;\nUPDATE t2 SET c='ninety-two thousand seven hundred forty-four' WHERE a=17476;\nUPDATE t2 SET c='seventy-two thousand nine hundred eighty-two' WHERE a=17477;\nUPDATE t2 SET c='sixty-six thousand nine hundred fifty-five' WHERE a=17478;\nUPDATE t2 SET c='twenty-six thousand five hundred seventeen' WHERE a=17479;\nUPDATE t2 SET c='twenty-three thousand nine hundred twenty-three' WHERE a=17480;\nUPDATE t2 SET c='ninety-two thousand three hundred thirty-six' WHERE a=17481;\nUPDATE t2 SET c='seventy-six thousand three hundred eighty-five' WHERE a=17482;\nUPDATE t2 SET c='eighteen thousand six hundred nineteen' WHERE a=17483;\nUPDATE t2 SET c='forty-six thousand five hundred thirty-eight' WHERE a=17484;\nUPDATE t2 SET c='seventy-six thousand eight hundred ninety' WHERE a=17485;\nUPDATE t2 SET c='seventy-two thousand nine hundred seventy-four' WHERE a=17486;\nUPDATE t2 SET c='thirty thousand three hundred five' WHERE a=17487;\nUPDATE t2 SET c='four thousand three hundred forty-seven' WHERE a=17488;\nUPDATE t2 SET c='ninety-four thousand nine hundred sixty-two' WHERE a=17489;\nUPDATE t2 SET c='twenty-one thousand six hundred seventy-three' WHERE a=17490;\nUPDATE t2 SET c='five thousand two hundred seven' WHERE a=17491;\nUPDATE t2 SET c='ten thousand nine hundred eighty-five' WHERE a=17492;\nUPDATE t2 SET c='forty-four thousand three hundred twenty-three' WHERE a=17493;\nUPDATE t2 SET c='eight thousand eight hundred twenty-seven' WHERE a=17494;\nUPDATE t2 SET c='twenty-nine thousand eight hundred thirty' WHERE a=17495;\nUPDATE t2 SET c='fifty-one thousand eight hundred forty-one' WHERE a=17496;\nUPDATE t2 SET c='twenty-seven thousand nine hundred twenty-eight' WHERE a=17497;\nUPDATE t2 SET c='thirty-five thousand three hundred twenty-seven' WHERE a=17498;\nUPDATE t2 SET c='eleven thousand eight hundred thirty-five' WHERE a=17499;\nUPDATE t2 SET c='ninety-eight thousand fifteen' WHERE a=17500;\nUPDATE t2 SET c='ninety-two thousand five hundred thirty' WHERE a=17501;\nUPDATE t2 SET c='three thousand five hundred sixteen' WHERE a=17502;\nUPDATE t2 SET c='four thousand five hundred twenty-two' WHERE a=17503;\nUPDATE t2 SET c='fifty-four thousand three hundred eighty-four' WHERE a=17504;\nUPDATE t2 SET c='forty-nine thousand six hundred thirty-six' WHERE a=17505;\nUPDATE t2 SET c='twenty thousand three hundred thirteen' WHERE a=17506;\nUPDATE t2 SET c='five thousand eighty-two' WHERE a=17507;\nUPDATE t2 SET c='forty-six thousand five hundred thirty-nine' WHERE a=17508;\nUPDATE t2 SET c='seven thousand seven hundred twenty-nine' WHERE a=17509;\nUPDATE t2 SET c='thirty-eight thousand five hundred sixty-five' WHERE a=17510;\nUPDATE t2 SET c='thirty-four thousand three hundred six' WHERE a=17511;\nUPDATE t2 SET c='seventy-seven thousand nine hundred thirty-nine' WHERE a=17512;\nUPDATE t2 SET c='twenty-six thousand four hundred seventy-five' WHERE a=17513;\nUPDATE t2 SET c='fifty-three thousand five hundred eight' WHERE a=17514;\nUPDATE t2 SET c='seventy-six thousand five hundred eighty-five' WHERE a=17515;\nUPDATE t2 SET c='thirty-two thousand one hundred sixty-one' WHERE a=17516;\nUPDATE t2 SET c='fifty-eight thousand thirty-nine' WHERE a=17517;\nUPDATE t2 SET c='sixty-five thousand seventeen' WHERE a=17518;\nUPDATE t2 SET c='fifty-nine thousand seven hundred seventy-nine' WHERE a=17519;\nUPDATE t2 SET c='eighty-nine thousand four hundred fifteen' WHERE a=17520;\nUPDATE t2 SET c='ten thousand five hundred forty-three' WHERE a=17521;\nUPDATE t2 SET c='nineteen thousand one hundred ninety-four' WHERE a=17522;\nUPDATE t2 SET c='eighty-eight thousand three hundred sixteen' WHERE a=17523;\nUPDATE t2 SET c='eighty-two thousand six hundred thirty-four' WHERE a=17524;\nUPDATE t2 SET c='twenty-five thousand one hundred twenty' WHERE a=17525;\nUPDATE t2 SET c='fifty-two thousand two hundred thirty-three' WHERE a=17526;\nUPDATE t2 SET c='fourteen thousand eight hundred fifty' WHERE a=17527;\nUPDATE t2 SET c='eighty-four thousand two hundred ninety-seven' WHERE a=17528;\nUPDATE t2 SET c='twenty-seven thousand five hundred eleven' WHERE a=17529;\nUPDATE t2 SET c='eighty thousand nine hundred sixty-five' WHERE a=17530;\nUPDATE t2 SET c='two thousand four hundred thirty-two' WHERE a=17531;\nUPDATE t2 SET c='sixty-six thousand three hundred fifty-five' WHERE a=17532;\nUPDATE t2 SET c='fifty-four thousand fifty' WHERE a=17533;\nUPDATE t2 SET c='seventy-one thousand seven hundred eighty' WHERE a=17534;\nUPDATE t2 SET c='thirty-nine thousand three hundred forty-three' WHERE a=17535;\nUPDATE t2 SET c='eighty-nine thousand four hundred fifty-seven' WHERE a=17536;\nUPDATE t2 SET c='ninety-nine thousand five hundred sixty-six' WHERE a=17537;\nUPDATE t2 SET c='ten thousand four hundred seventy-eight' WHERE a=17538;\nUPDATE t2 SET c='eighty-five thousand three hundred ten' WHERE a=17539;\nUPDATE t2 SET c='ninety-seven thousand five hundred fourteen' WHERE a=17540;\nUPDATE t2 SET c='fifty-five thousand five hundred twenty-four' WHERE a=17541;\nUPDATE t2 SET c='forty-six thousand nine hundred eighty-three' WHERE a=17542;\nUPDATE t2 SET c='fifty-nine thousand nine hundred forty-five' WHERE a=17543;\nUPDATE t2 SET c='nineteen thousand two hundred sixty-four' WHERE a=17544;\nUPDATE t2 SET c='forty-five thousand two hundred forty-five' WHERE a=17545;\nUPDATE t2 SET c='sixty-eight thousand two hundred fifty-two' WHERE a=17546;\nUPDATE t2 SET c='ten thousand thirty' WHERE a=17547;\nUPDATE t2 SET c='fifty-eight thousand five hundred twelve' WHERE a=17548;\nUPDATE t2 SET c='seventy-four thousand two hundred sixty-eight' WHERE a=17549;\nUPDATE t2 SET c='sixty-three thousand five hundred fifty-one' WHERE a=17550;\nUPDATE t2 SET c='forty-six thousand four hundred thirty-six' WHERE a=17551;\nUPDATE t2 SET c='fourteen thousand eighty-seven' WHERE a=17552;\nUPDATE t2 SET c='two thousand three hundred sixty-four' WHERE a=17553;\nUPDATE t2 SET c='eighty-four thousand fifty-four' WHERE a=17554;\nUPDATE t2 SET c='twenty-three thousand nine hundred thirty-two' WHERE a=17555;\nUPDATE t2 SET c='eighty-two thousand one hundred fifty-five' WHERE a=17556;\nUPDATE t2 SET c='forty-four thousand four hundred seventy-seven' WHERE a=17557;\nUPDATE t2 SET c='eighty-three thousand two' WHERE a=17558;\nUPDATE t2 SET c='fifty-six thousand five hundred sixty-five' WHERE a=17559;\nUPDATE t2 SET c='sixty-eight thousand two hundred seventy-four' WHERE a=17560;\nUPDATE t2 SET c='forty-one thousand seven hundred seventy-one' WHERE a=17561;\nUPDATE t2 SET c='twenty-three thousand five hundred seventy-three' WHERE a=17562;\nUPDATE t2 SET c='six thousand five hundred twenty-two' WHERE a=17563;\nUPDATE t2 SET c='thirty-eight thousand five hundred ninety-seven' WHERE a=17564;\nUPDATE t2 SET c='twenty-eight thousand eight hundred ninety-one' WHERE a=17565;\nUPDATE t2 SET c='two thousand two' WHERE a=17566;\nUPDATE t2 SET c='twenty-two thousand three hundred forty-seven' WHERE a=17567;\nUPDATE t2 SET c='five thousand four hundred thirty-four' WHERE a=17568;\nUPDATE t2 SET c='fifty-four thousand four hundred ninety-five' WHERE a=17569;\nUPDATE t2 SET c='fourteen thousand five hundred ninety-six' WHERE a=17570;\nUPDATE t2 SET c='ninety-three thousand two hundred two' WHERE a=17571;\nUPDATE t2 SET c='thirteen thousand one hundred twelve' WHERE a=17572;\nUPDATE t2 SET c='thirteen thousand eight hundred twelve' WHERE a=17573;\nUPDATE t2 SET c='ninety thousand nine hundred seventy-five' WHERE a=17574;\nUPDATE t2 SET c='eighty-eight thousand eight hundred twenty-one' WHERE a=17575;\nUPDATE t2 SET c='fifty-six thousand twenty-two' WHERE a=17576;\nUPDATE t2 SET c='fourteen thousand one hundred twenty' WHERE a=17577;\nUPDATE t2 SET c='seventy-nine thousand eight hundred seventeen' WHERE a=17578;\nUPDATE t2 SET c='fifty-one thousand four hundred ninety-one' WHERE a=17579;\nUPDATE t2 SET c='sixty-nine thousand four hundred four' WHERE a=17580;\nUPDATE t2 SET c='sixty-four thousand three hundred thirty-one' WHERE a=17581;\nUPDATE t2 SET c='eighty-eight thousand fifty-four' WHERE a=17582;\nUPDATE t2 SET c='twenty-five thousand four hundred two' WHERE a=17583;\nUPDATE t2 SET c='sixty-seven thousand seven hundred eighty-five' WHERE a=17584;\nUPDATE t2 SET c='nineteen thousand six hundred eleven' WHERE a=17585;\nUPDATE t2 SET c='seventy-six thousand seven hundred eight' WHERE a=17586;\nUPDATE t2 SET c='fifty-eight thousand seven hundred forty-nine' WHERE a=17587;\nUPDATE t2 SET c='two hundred twenty-two' WHERE a=17588;\nUPDATE t2 SET c='ninety-four thousand eight hundred seventy-five' WHERE a=17589;\nUPDATE t2 SET c='sixty-seven thousand one hundred fourteen' WHERE a=17590;\nUPDATE t2 SET c='sixty-one thousand four hundred one' WHERE a=17591;\nUPDATE t2 SET c='fifty-five thousand ninety-three' WHERE a=17592;\nUPDATE t2 SET c='forty-seven thousand eight hundred seventy-five' WHERE a=17593;\nUPDATE t2 SET c='seventy-eight thousand thirteen' WHERE a=17594;\nUPDATE t2 SET c='forty-nine thousand three hundred eighty-five' WHERE a=17595;\nUPDATE t2 SET c='thirty-three thousand seven hundred twenty-seven' WHERE a=17596;\nUPDATE t2 SET c='thirty-two thousand three hundred sixty-five' WHERE a=17597;\nUPDATE t2 SET c='eighty-nine thousand six hundred forty-seven' WHERE a=17598;\nUPDATE t2 SET c='sixteen thousand one hundred ninety-six' WHERE a=17599;\nUPDATE t2 SET c='eighty-five thousand two hundred thirty-eight' WHERE a=17600;\nUPDATE t2 SET c='ninety-two thousand eight hundred fifty-five' WHERE a=17601;\nUPDATE t2 SET c='forty-six thousand three hundred twenty-nine' WHERE a=17602;\nUPDATE t2 SET c='fifty-nine thousand four hundred sixty-seven' WHERE a=17603;\nUPDATE t2 SET c='twenty-four thousand nine hundred sixty' WHERE a=17604;\nUPDATE t2 SET c='ninety thousand six hundred sixty-seven' WHERE a=17605;\nUPDATE t2 SET c='seventy-five thousand two hundred twenty-nine' WHERE a=17606;\nUPDATE t2 SET c='two thousand three hundred fifty-two' WHERE a=17607;\nUPDATE t2 SET c='forty-two thousand six hundred eighteen' WHERE a=17608;\nUPDATE t2 SET c='ninety-four thousand four hundred forty-one' WHERE a=17609;\nUPDATE t2 SET c='fifty-three thousand six hundred thirty-one' WHERE a=17610;\nUPDATE t2 SET c='three thousand seven hundred sixty-eight' WHERE a=17611;\nUPDATE t2 SET c='sixty-eight thousand one hundred seventy' WHERE a=17612;\nUPDATE t2 SET c='seventy-five thousand nine hundred fifty-four' WHERE a=17613;\nUPDATE t2 SET c='eighty-three thousand four hundred ninety-eight' WHERE a=17614;\nUPDATE t2 SET c='fifty-six thousand fifty-five' WHERE a=17615;\nUPDATE t2 SET c='eighteen thousand one hundred nineteen' WHERE a=17616;\nUPDATE t2 SET c='eighty-two thousand seven hundred fifty-nine' WHERE a=17617;\nUPDATE t2 SET c='eighty thousand eight hundred thirty-eight' WHERE a=17618;\nUPDATE t2 SET c='ninety-six thousand six hundred six' WHERE a=17619;\nUPDATE t2 SET c='twenty-five thousand two hundred eighty-seven' WHERE a=17620;\nUPDATE t2 SET c='fifty-three thousand two hundred eight' WHERE a=17621;\nUPDATE t2 SET c='sixty-seven thousand thirty-one' WHERE a=17622;\nUPDATE t2 SET c='sixty-one thousand two hundred sixty-six' WHERE a=17623;\nUPDATE t2 SET c='ninety-two thousand seven hundred thirteen' WHERE a=17624;\nUPDATE t2 SET c='forty-two thousand eight hundred twenty-nine' WHERE a=17625;\nUPDATE t2 SET c='forty-nine thousand two hundred ninety-nine' WHERE a=17626;\nUPDATE t2 SET c='seventy-nine thousand eight hundred ninety-one' WHERE a=17627;\nUPDATE t2 SET c='eighty-seven thousand nine hundred ninety-six' WHERE a=17628;\nUPDATE t2 SET c='thirty-seven thousand nine hundred fifty-six' WHERE a=17629;\nUPDATE t2 SET c='forty-one thousand four hundred ninety-five' WHERE a=17630;\nUPDATE t2 SET c='seven thousand sixty-six' WHERE a=17631;\nUPDATE t2 SET c='forty-two thousand ninety-eight' WHERE a=17632;\nUPDATE t2 SET c='eighty-one thousand eight hundred fifty-two' WHERE a=17633;\nUPDATE t2 SET c='nineteen thousand nine hundred eighty-four' WHERE a=17634;\nUPDATE t2 SET c='eleven thousand six hundred nine' WHERE a=17635;\nUPDATE t2 SET c='twenty-six thousand one hundred twelve' WHERE a=17636;\nUPDATE t2 SET c='seventy-six thousand seven hundred sixty-eight' WHERE a=17637;\nUPDATE t2 SET c='fourteen thousand five hundred nine' WHERE a=17638;\nUPDATE t2 SET c='six thousand four hundred sixteen' WHERE a=17639;\nUPDATE t2 SET c='thirteen thousand two hundred sixty-five' WHERE a=17640;\nUPDATE t2 SET c='seventy-four thousand two hundred eighty-three' WHERE a=17641;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-seven' WHERE a=17642;\nUPDATE t2 SET c='ninety-six thousand one hundred seventy-six' WHERE a=17643;\nUPDATE t2 SET c='forty-two thousand three hundred five' WHERE a=17644;\nUPDATE t2 SET c='twenty-eight thousand three hundred forty-seven' WHERE a=17645;\nUPDATE t2 SET c='seventy-three thousand five hundred ninety-seven' WHERE a=17646;\nUPDATE t2 SET c='sixty-six thousand two hundred seventy-seven' WHERE a=17647;\nUPDATE t2 SET c='twelve thousand seven hundred twenty-eight' WHERE a=17648;\nUPDATE t2 SET c='sixty-four thousand nine hundred thirty-nine' WHERE a=17649;\nUPDATE t2 SET c='ninety-six thousand seven hundred fifteen' WHERE a=17650;\nUPDATE t2 SET c='forty-nine thousand five hundred eighty-two' WHERE a=17651;\nUPDATE t2 SET c='fourteen thousand seven hundred eighty' WHERE a=17652;\nUPDATE t2 SET c='thirty-five thousand two hundred twenty-eight' WHERE a=17653;\nUPDATE t2 SET c='eighty-one thousand thirty-three' WHERE a=17654;\nUPDATE t2 SET c='twenty-one thousand nine hundred fifty-one' WHERE a=17655;\nUPDATE t2 SET c='sixteen thousand nine hundred seventy-three' WHERE a=17656;\nUPDATE t2 SET c='eighty-six thousand three hundred fifty-seven' WHERE a=17657;\nUPDATE t2 SET c='eighty-seven thousand two hundred seventy-six' WHERE a=17658;\nUPDATE t2 SET c='eight thousand one hundred fifty-six' WHERE a=17659;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-eight' WHERE a=17660;\nUPDATE t2 SET c='forty-five thousand nine hundred sixty-three' WHERE a=17661;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixty-nine' WHERE a=17662;\nUPDATE t2 SET c='ninety thousand one hundred eighty-one' WHERE a=17663;\nUPDATE t2 SET c='thirty-two thousand five hundred twelve' WHERE a=17664;\nUPDATE t2 SET c='eighty-one thousand three hundred thirty-two' WHERE a=17665;\nUPDATE t2 SET c='eighty-three thousand six hundred thirty-eight' WHERE a=17666;\nUPDATE t2 SET c='seventy-one thousand nine hundred thirty-two' WHERE a=17667;\nUPDATE t2 SET c='fifteen thousand seven hundred eighty-six' WHERE a=17668;\nUPDATE t2 SET c='thirty-two thousand seven hundred ninety-one' WHERE a=17669;\nUPDATE t2 SET c='fifty-five thousand forty-seven' WHERE a=17670;\nUPDATE t2 SET c='eighty-four thousand eight hundred ninety-three' WHERE a=17671;\nUPDATE t2 SET c='forty-three thousand seven hundred forty-nine' WHERE a=17672;\nUPDATE t2 SET c='fifty-five thousand two hundred seventy-eight' WHERE a=17673;\nUPDATE t2 SET c='ninety-one thousand two hundred six' WHERE a=17674;\nUPDATE t2 SET c='seventy thousand one hundred fifteen' WHERE a=17675;\nUPDATE t2 SET c='eighty-three thousand two hundred ninety-nine' WHERE a=17676;\nUPDATE t2 SET c='seventy-six thousand four hundred sixty-five' WHERE a=17677;\nUPDATE t2 SET c='forty-nine thousand four hundred forty' WHERE a=17678;\nUPDATE t2 SET c='seventy-eight thousand four hundred sixty-six' WHERE a=17679;\nUPDATE t2 SET c='sixty-two thousand nineteen' WHERE a=17680;\nUPDATE t2 SET c='seventy-two thousand ninety-two' WHERE a=17681;\nUPDATE t2 SET c='seventy thousand three hundred eighty-six' WHERE a=17682;\nUPDATE t2 SET c='ninety-five thousand six hundred twenty-seven' WHERE a=17683;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy-seven' WHERE a=17684;\nUPDATE t2 SET c='fifty thousand eight hundred eight' WHERE a=17685;\nUPDATE t2 SET c='fourteen thousand two hundred ninety-one' WHERE a=17686;\nUPDATE t2 SET c='four thousand one hundred forty-six' WHERE a=17687;\nUPDATE t2 SET c='eighty-eight thousand seven hundred twenty-seven' WHERE a=17688;\nUPDATE t2 SET c='thirty thousand twenty-four' WHERE a=17689;\nUPDATE t2 SET c='thirty thousand seven hundred sixty-seven' WHERE a=17690;\nUPDATE t2 SET c='ninety-five thousand seven hundred nine' WHERE a=17691;\nUPDATE t2 SET c='sixty-three thousand nine hundred fifty-seven' WHERE a=17692;\nUPDATE t2 SET c='five thousand seven hundred fifty-three' WHERE a=17693;\nUPDATE t2 SET c='eighty-three thousand one hundred fifty-six' WHERE a=17694;\nUPDATE t2 SET c='fifteen thousand six hundred eighty-five' WHERE a=17695;\nUPDATE t2 SET c='sixty-two thousand four hundred seventy-one' WHERE a=17696;\nUPDATE t2 SET c='forty thousand nine hundred fifty-two' WHERE a=17697;\nUPDATE t2 SET c='sixteen thousand six hundred ninety-five' WHERE a=17698;\nUPDATE t2 SET c='fifty-eight thousand five hundred twenty-seven' WHERE a=17699;\nUPDATE t2 SET c='forty-five thousand two hundred thirteen' WHERE a=17700;\nUPDATE t2 SET c='twenty-one thousand five hundred sixty-five' WHERE a=17701;\nUPDATE t2 SET c='twenty-two thousand six hundred five' WHERE a=17702;\nUPDATE t2 SET c='thirty-eight thousand four hundred seventy-one' WHERE a=17703;\nUPDATE t2 SET c='forty-nine thousand four hundred ninety-two' WHERE a=17704;\nUPDATE t2 SET c='forty-two thousand two hundred twelve' WHERE a=17705;\nUPDATE t2 SET c='thirty-seven thousand two hundred ninety-five' WHERE a=17706;\nUPDATE t2 SET c='eighty-two thousand six hundred thirty-three' WHERE a=17707;\nUPDATE t2 SET c='fifty-nine thousand one hundred six' WHERE a=17708;\nUPDATE t2 SET c='sixty-one thousand three hundred thirteen' WHERE a=17709;\nUPDATE t2 SET c='thirty-eight thousand five hundred ninety' WHERE a=17710;\nUPDATE t2 SET c='nine thousand three hundred seventy-nine' WHERE a=17711;\nUPDATE t2 SET c='ninety-three thousand one hundred fifty-five' WHERE a=17712;\nUPDATE t2 SET c='sixty-nine thousand five hundred eighty-seven' WHERE a=17713;\nUPDATE t2 SET c='thirty-five thousand six hundred sixty-one' WHERE a=17714;\nUPDATE t2 SET c='sixty-eight thousand eighty-four' WHERE a=17715;\nUPDATE t2 SET c='ninety-seven thousand eight hundred thirteen' WHERE a=17716;\nUPDATE t2 SET c='eighty-one thousand eight hundred eighty-eight' WHERE a=17717;\nUPDATE t2 SET c='sixty-five thousand three hundred two' WHERE a=17718;\nUPDATE t2 SET c='ninety-three thousand four hundred fifty-four' WHERE a=17719;\nUPDATE t2 SET c='twenty-four thousand six hundred twelve' WHERE a=17720;\nUPDATE t2 SET c='twenty-six thousand eight hundred eighteen' WHERE a=17721;\nUPDATE t2 SET c='ten thousand seven hundred thirty-eight' WHERE a=17722;\nUPDATE t2 SET c='ninety-five thousand six hundred eighty-nine' WHERE a=17723;\nUPDATE t2 SET c='three thousand six hundred fourteen' WHERE a=17724;\nUPDATE t2 SET c='twenty-eight thousand four hundred fourteen' WHERE a=17725;\nUPDATE t2 SET c='ninety-five thousand three hundred thirteen' WHERE a=17726;\nUPDATE t2 SET c='forty-eight thousand nine hundred eighty-six' WHERE a=17727;\nUPDATE t2 SET c='thirty thousand three hundred fifteen' WHERE a=17728;\nUPDATE t2 SET c='fifty thousand thirty-four' WHERE a=17729;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-eight' WHERE a=17730;\nUPDATE t2 SET c='twenty-five thousand five hundred fifteen' WHERE a=17731;\nUPDATE t2 SET c='eighty-nine thousand nine hundred seventy-eight' WHERE a=17732;\nUPDATE t2 SET c='seventy thousand four hundred sixty-two' WHERE a=17733;\nUPDATE t2 SET c='fifty-seven thousand three hundred fifty' WHERE a=17734;\nUPDATE t2 SET c='twenty-nine thousand six hundred sixteen' WHERE a=17735;\nUPDATE t2 SET c='forty-six thousand eight hundred forty' WHERE a=17736;\nUPDATE t2 SET c='seventy thousand four hundred nineteen' WHERE a=17737;\nUPDATE t2 SET c='nine thousand six hundred sixty-seven' WHERE a=17738;\nUPDATE t2 SET c='eighty-two thousand nine hundred fifteen' WHERE a=17739;\nUPDATE t2 SET c='seven thousand nine hundred ninety-four' WHERE a=17740;\nUPDATE t2 SET c='five thousand one hundred ninety-three' WHERE a=17741;\nUPDATE t2 SET c='two thousand four hundred seventy' WHERE a=17742;\nUPDATE t2 SET c='twenty-five thousand seven hundred forty-one' WHERE a=17743;\nUPDATE t2 SET c='thirteen thousand nine hundred sixty-seven' WHERE a=17744;\nUPDATE t2 SET c='thirty-three thousand four hundred twenty-nine' WHERE a=17745;\nUPDATE t2 SET c='seven thousand nine hundred fifty-two' WHERE a=17746;\nUPDATE t2 SET c='four thousand two hundred thirty-two' WHERE a=17747;\nUPDATE t2 SET c='ninety thousand four hundred forty-five' WHERE a=17748;\nUPDATE t2 SET c='twelve thousand fifteen' WHERE a=17749;\nUPDATE t2 SET c='seventy thousand eight hundred forty-nine' WHERE a=17750;\nUPDATE t2 SET c='seventy thousand three hundred two' WHERE a=17751;\nUPDATE t2 SET c='ninety-six thousand five hundred forty-one' WHERE a=17752;\nUPDATE t2 SET c='ten thousand seven hundred forty-five' WHERE a=17753;\nUPDATE t2 SET c='sixty-three thousand six hundred fifty' WHERE a=17754;\nUPDATE t2 SET c='sixty-eight thousand eight hundred thirty-six' WHERE a=17755;\nUPDATE t2 SET c='sixty-five thousand three hundred twenty-two' WHERE a=17756;\nUPDATE t2 SET c='ninety-four thousand four hundred ninety-nine' WHERE a=17757;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventy-three' WHERE a=17758;\nUPDATE t2 SET c='ninety-five thousand three hundred thirty' WHERE a=17759;\nUPDATE t2 SET c='forty-three thousand four hundred forty-four' WHERE a=17760;\nUPDATE t2 SET c='thirty-one thousand nine hundred twenty-five' WHERE a=17761;\nUPDATE t2 SET c='seven thousand three hundred thirty-five' WHERE a=17762;\nUPDATE t2 SET c='eighty-eight thousand eight hundred sixty-seven' WHERE a=17763;\nUPDATE t2 SET c='eighty-five thousand five hundred fifty-nine' WHERE a=17764;\nUPDATE t2 SET c='forty-seven thousand one hundred forty-six' WHERE a=17765;\nUPDATE t2 SET c='twenty-three thousand three hundred seventy-four' WHERE a=17766;\nUPDATE t2 SET c='fifty-seven thousand six hundred sixty-two' WHERE a=17767;\nUPDATE t2 SET c='twenty-two thousand four hundred fifty-nine' WHERE a=17768;\nUPDATE t2 SET c='forty-three thousand eight hundred twenty-seven' WHERE a=17769;\nUPDATE t2 SET c='fifty-nine thousand seven hundred thirty-two' WHERE a=17770;\nUPDATE t2 SET c='forty-three thousand two hundred fifty-five' WHERE a=17771;\nUPDATE t2 SET c='eighty-five thousand seven hundred thirty' WHERE a=17772;\nUPDATE t2 SET c='eighty-nine thousand eight hundred thirty-four' WHERE a=17773;\nUPDATE t2 SET c='one thousand nine hundred fifty-eight' WHERE a=17774;\nUPDATE t2 SET c='forty-two thousand four hundred six' WHERE a=17775;\nUPDATE t2 SET c='forty-five thousand four hundred thirty-one' WHERE a=17776;\nUPDATE t2 SET c='ten thousand five hundred fourteen' WHERE a=17777;\nUPDATE t2 SET c='eighty-three thousand seventy-two' WHERE a=17778;\nUPDATE t2 SET c='sixty-five thousand four hundred fourteen' WHERE a=17779;\nUPDATE t2 SET c='seventy-seven thousand one hundred sixty-one' WHERE a=17780;\nUPDATE t2 SET c='seventy-nine thousand seven hundred ninety-three' WHERE a=17781;\nUPDATE t2 SET c='nine thousand eight hundred ninety-one' WHERE a=17782;\nUPDATE t2 SET c='five thousand three hundred forty-one' WHERE a=17783;\nUPDATE t2 SET c='sixty-two thousand four hundred sixty-seven' WHERE a=17784;\nUPDATE t2 SET c='ninety-four thousand four hundred twenty-five' WHERE a=17785;\nUPDATE t2 SET c='forty-six thousand fifty-nine' WHERE a=17786;\nUPDATE t2 SET c='one thousand eight hundred sixty' WHERE a=17787;\nUPDATE t2 SET c='seventy-five thousand fifteen' WHERE a=17788;\nUPDATE t2 SET c='fifty-six thousand seven hundred sixty-one' WHERE a=17789;\nUPDATE t2 SET c='fifty thousand two hundred eighty-five' WHERE a=17790;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-seven' WHERE a=17791;\nUPDATE t2 SET c='eighty-four thousand eight hundred forty-three' WHERE a=17792;\nUPDATE t2 SET c='forty-one thousand two hundred sixty-four' WHERE a=17793;\nUPDATE t2 SET c='fifty-five thousand seven hundred fifty-two' WHERE a=17794;\nUPDATE t2 SET c='seventy-five thousand four hundred eighty-six' WHERE a=17795;\nUPDATE t2 SET c='thirty-three thousand three hundred seventy-three' WHERE a=17796;\nUPDATE t2 SET c='twenty-nine thousand five' WHERE a=17797;\nUPDATE t2 SET c='six thousand seven hundred fifty-six' WHERE a=17798;\nUPDATE t2 SET c='sixty-one thousand one' WHERE a=17799;\nUPDATE t2 SET c='fifty-nine thousand three hundred eighty' WHERE a=17800;\nUPDATE t2 SET c='twenty thousand nine hundred eighty-nine' WHERE a=17801;\nUPDATE t2 SET c='eighty-three thousand two hundred fifty' WHERE a=17802;\nUPDATE t2 SET c='thirty-two thousand eight hundred fifty-five' WHERE a=17803;\nUPDATE t2 SET c='forty-eight thousand six hundred forty-three' WHERE a=17804;\nUPDATE t2 SET c='eighty-four thousand seven hundred nineteen' WHERE a=17805;\nUPDATE t2 SET c='five thousand four hundred fifteen' WHERE a=17806;\nUPDATE t2 SET c='ninety-four thousand one hundred fourteen' WHERE a=17807;\nUPDATE t2 SET c='fifty-three thousand four hundred forty-three' WHERE a=17808;\nUPDATE t2 SET c='nineteen thousand three hundred twenty' WHERE a=17809;\nUPDATE t2 SET c='twenty-two thousand three hundred thirty-five' WHERE a=17810;\nUPDATE t2 SET c='fifty-five thousand sixteen' WHERE a=17811;\nUPDATE t2 SET c='one thousand four hundred fifty-two' WHERE a=17812;\nUPDATE t2 SET c='seventy-three thousand four hundred seventy-two' WHERE a=17813;\nUPDATE t2 SET c='thirty-seven thousand four hundred sixty-seven' WHERE a=17814;\nUPDATE t2 SET c='twenty-eight thousand six hundred twenty-seven' WHERE a=17815;\nUPDATE t2 SET c='eight thousand three hundred twenty-six' WHERE a=17816;\nUPDATE t2 SET c='ninety-one thousand six hundred twenty-one' WHERE a=17817;\nUPDATE t2 SET c='fifty-four thousand two hundred eighty-nine' WHERE a=17818;\nUPDATE t2 SET c='sixty-seven thousand seven hundred sixty-five' WHERE a=17819;\nUPDATE t2 SET c='thirty-five thousand two hundred five' WHERE a=17820;\nUPDATE t2 SET c='sixty-three thousand eight hundred' WHERE a=17821;\nUPDATE t2 SET c='nine hundred thirty-three' WHERE a=17822;\nUPDATE t2 SET c='thirty-four thousand one hundred eighty-three' WHERE a=17823;\nUPDATE t2 SET c='eight thousand three hundred ninety-eight' WHERE a=17824;\nUPDATE t2 SET c='forty-nine thousand nine hundred fifty-two' WHERE a=17825;\nUPDATE t2 SET c='thirty-one thousand six hundred thirty-five' WHERE a=17826;\nUPDATE t2 SET c='fifty-nine thousand three hundred forty-two' WHERE a=17827;\nUPDATE t2 SET c='sixty thousand forty-seven' WHERE a=17828;\nUPDATE t2 SET c='eight thousand one hundred fifty-five' WHERE a=17829;\nUPDATE t2 SET c='nineteen thousand three hundred eighty-seven' WHERE a=17830;\nUPDATE t2 SET c='thirty-seven thousand eighty-seven' WHERE a=17831;\nUPDATE t2 SET c='eighty-four thousand three hundred eighty-five' WHERE a=17832;\nUPDATE t2 SET c='sixty-nine thousand thirty-nine' WHERE a=17833;\nUPDATE t2 SET c='seventy-eight thousand five hundred twelve' WHERE a=17834;\nUPDATE t2 SET c='eighteen thousand eighty' WHERE a=17835;\nUPDATE t2 SET c='forty-three thousand nine' WHERE a=17836;\nUPDATE t2 SET c='three thousand nine hundred thirty-nine' WHERE a=17837;\nUPDATE t2 SET c='sixty-nine thousand six hundred eighty-two' WHERE a=17838;\nUPDATE t2 SET c='thirty-nine thousand two hundred sixty-five' WHERE a=17839;\nUPDATE t2 SET c='fifty-seven thousand seven hundred eighty-three' WHERE a=17840;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-five' WHERE a=17841;\nUPDATE t2 SET c='eighteen thousand five hundred twenty-four' WHERE a=17842;\nUPDATE t2 SET c='sixty-eight thousand sixty-nine' WHERE a=17843;\nUPDATE t2 SET c='sixty-six thousand four hundred forty-four' WHERE a=17844;\nUPDATE t2 SET c='ninety-five thousand nine hundred five' WHERE a=17845;\nUPDATE t2 SET c='eighty-three thousand five hundred sixty-one' WHERE a=17846;\nUPDATE t2 SET c='ninety-two thousand two hundred fifty-five' WHERE a=17847;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighty-two' WHERE a=17848;\nUPDATE t2 SET c='forty-eight thousand four hundred eighty-seven' WHERE a=17849;\nUPDATE t2 SET c='thirty-three thousand three hundred five' WHERE a=17850;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-four' WHERE a=17851;\nUPDATE t2 SET c='forty-three thousand two hundred six' WHERE a=17852;\nUPDATE t2 SET c='twenty-six thousand seven hundred seven' WHERE a=17853;\nUPDATE t2 SET c='twenty-nine thousand nine hundred fourteen' WHERE a=17854;\nUPDATE t2 SET c='ninety thousand nine hundred thirty-seven' WHERE a=17855;\nUPDATE t2 SET c='fifty-three thousand seventy-four' WHERE a=17856;\nUPDATE t2 SET c='thirteen thousand two hundred forty-two' WHERE a=17857;\nUPDATE t2 SET c='seventy-nine thousand nine hundred twelve' WHERE a=17858;\nUPDATE t2 SET c='ninety-three thousand eight hundred sixty-three' WHERE a=17859;\nUPDATE t2 SET c='eighteen thousand one hundred seventy-six' WHERE a=17860;\nUPDATE t2 SET c='ninety-seven thousand nine hundred sixty' WHERE a=17861;\nUPDATE t2 SET c='twenty-eight thousand eight hundred thirty-three' WHERE a=17862;\nUPDATE t2 SET c='thirty-four thousand eighteen' WHERE a=17863;\nUPDATE t2 SET c='twenty-eight thousand three hundred sixty-nine' WHERE a=17864;\nUPDATE t2 SET c='twenty-four thousand four hundred fifty-four' WHERE a=17865;\nUPDATE t2 SET c='twenty-nine thousand nine hundred eighty-one' WHERE a=17866;\nUPDATE t2 SET c='fifty-seven thousand six hundred eighty-three' WHERE a=17867;\nUPDATE t2 SET c='forty-eight thousand one hundred seventy-seven' WHERE a=17868;\nUPDATE t2 SET c='seventy-two thousand one hundred fifteen' WHERE a=17869;\nUPDATE t2 SET c='seventy-three thousand eight hundred nineteen' WHERE a=17870;\nUPDATE t2 SET c='twenty-five thousand three hundred' WHERE a=17871;\nUPDATE t2 SET c='sixty-four thousand thirty-four' WHERE a=17872;\nUPDATE t2 SET c='forty-seven thousand two hundred eighteen' WHERE a=17873;\nUPDATE t2 SET c='eighty-one thousand two hundred ninety-seven' WHERE a=17874;\nUPDATE t2 SET c='thirty thousand five hundred sixty-seven' WHERE a=17875;\nUPDATE t2 SET c='ninety-nine thousand eight hundred eleven' WHERE a=17876;\nUPDATE t2 SET c='forty-five thousand two hundred eleven' WHERE a=17877;\nUPDATE t2 SET c='forty-one thousand three hundred ninety-eight' WHERE a=17878;\nUPDATE t2 SET c='eighty-eight thousand six hundred twenty-seven' WHERE a=17879;\nUPDATE t2 SET c='sixty-two thousand three hundred ninety-nine' WHERE a=17880;\nUPDATE t2 SET c='ninety-four thousand five hundred forty-five' WHERE a=17881;\nUPDATE t2 SET c='twelve thousand one hundred twenty-three' WHERE a=17882;\nUPDATE t2 SET c='twenty-seven thousand five hundred sixty-four' WHERE a=17883;\nUPDATE t2 SET c='thirty-four thousand seventy-two' WHERE a=17884;\nUPDATE t2 SET c='seventy-four thousand three hundred fifty-six' WHERE a=17885;\nUPDATE t2 SET c='eighty-six thousand two hundred fifty-four' WHERE a=17886;\nUPDATE t2 SET c='sixty-one thousand forty' WHERE a=17887;\nUPDATE t2 SET c='seventy-two thousand three hundred thirty-one' WHERE a=17888;\nUPDATE t2 SET c='forty-four thousand two hundred seventy-nine' WHERE a=17889;\nUPDATE t2 SET c='seventy-four thousand four hundred six' WHERE a=17890;\nUPDATE t2 SET c='sixty-four thousand eight hundred eighty-eight' WHERE a=17891;\nUPDATE t2 SET c='sixty-seven thousand two hundred thirty-two' WHERE a=17892;\nUPDATE t2 SET c='twenty-seven thousand four hundred twenty-four' WHERE a=17893;\nUPDATE t2 SET c='forty-five thousand two hundred seventy-two' WHERE a=17894;\nUPDATE t2 SET c='eighty-four thousand eight hundred twenty-one' WHERE a=17895;\nUPDATE t2 SET c='seventy thousand two hundred six' WHERE a=17896;\nUPDATE t2 SET c='thirty-four thousand six hundred ninety' WHERE a=17897;\nUPDATE t2 SET c='fifty-three thousand three hundred three' WHERE a=17898;\nUPDATE t2 SET c='fifty-five thousand nine hundred thirty-one' WHERE a=17899;\nUPDATE t2 SET c='twenty-two thousand four hundred seventy-one' WHERE a=17900;\nUPDATE t2 SET c='forty-three thousand one hundred ninety-five' WHERE a=17901;\nUPDATE t2 SET c='twelve thousand two hundred sixty-five' WHERE a=17902;\nUPDATE t2 SET c='twenty-five thousand seven hundred twenty' WHERE a=17903;\nUPDATE t2 SET c='sixty-three thousand three hundred thirty-eight' WHERE a=17904;\nUPDATE t2 SET c='ninety-two thousand four hundred twenty' WHERE a=17905;\nUPDATE t2 SET c='fifty thousand four hundred twenty-six' WHERE a=17906;\nUPDATE t2 SET c='thirty-nine thousand eight hundred forty-four' WHERE a=17907;\nUPDATE t2 SET c='thirty-six thousand three hundred seventy-six' WHERE a=17908;\nUPDATE t2 SET c='sixty-five thousand forty-one' WHERE a=17909;\nUPDATE t2 SET c='eleven thousand eighteen' WHERE a=17910;\nUPDATE t2 SET c='twenty-five thousand eight hundred eighty-one' WHERE a=17911;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-four' WHERE a=17912;\nUPDATE t2 SET c='seventy-two thousand five hundred fifty-four' WHERE a=17913;\nUPDATE t2 SET c='twelve thousand one hundred sixty-two' WHERE a=17914;\nUPDATE t2 SET c='thirty-eight thousand nine hundred seventy-one' WHERE a=17915;\nUPDATE t2 SET c='twenty-five thousand five hundred eighteen' WHERE a=17916;\nUPDATE t2 SET c='fifty-nine thousand four hundred seventy-four' WHERE a=17917;\nUPDATE t2 SET c='twenty thousand two hundred thirty-nine' WHERE a=17918;\nUPDATE t2 SET c='seventy-two thousand sixteen' WHERE a=17919;\nUPDATE t2 SET c='seven thousand seven hundred eighty-two' WHERE a=17920;\nUPDATE t2 SET c='forty-six thousand one hundred seventy-one' WHERE a=17921;\nUPDATE t2 SET c='forty-six thousand five hundred six' WHERE a=17922;\nUPDATE t2 SET c='thirty thousand sixteen' WHERE a=17923;\nUPDATE t2 SET c='forty-two thousand ninety' WHERE a=17924;\nUPDATE t2 SET c='sixty thousand six hundred ninety-six' WHERE a=17925;\nUPDATE t2 SET c='fifty-four thousand one' WHERE a=17926;\nUPDATE t2 SET c='thirty-five thousand two hundred sixty-one' WHERE a=17927;\nUPDATE t2 SET c='sixteen thousand three hundred twenty' WHERE a=17928;\nUPDATE t2 SET c='ninety-eight thousand four hundred twenty-one' WHERE a=17929;\nUPDATE t2 SET c='sixteen thousand six hundred ninety-two' WHERE a=17930;\nUPDATE t2 SET c='fifty-four thousand five hundred ninety-eight' WHERE a=17931;\nUPDATE t2 SET c='thirty-three thousand two hundred twenty-seven' WHERE a=17932;\nUPDATE t2 SET c='twenty-eight thousand three' WHERE a=17933;\nUPDATE t2 SET c='forty-eight thousand seven hundred twenty-seven' WHERE a=17934;\nUPDATE t2 SET c='seventy-five thousand one hundred seventy-six' WHERE a=17935;\nUPDATE t2 SET c='fifty-two thousand one hundred forty-nine' WHERE a=17936;\nUPDATE t2 SET c='thirty-five thousand nine hundred eleven' WHERE a=17937;\nUPDATE t2 SET c='seven thousand two hundred seventeen' WHERE a=17938;\nUPDATE t2 SET c='ninety-five thousand four hundred forty-nine' WHERE a=17939;\nUPDATE t2 SET c='six thousand eighty-six' WHERE a=17940;\nUPDATE t2 SET c='eighty-three thousand one hundred thirty' WHERE a=17941;\nUPDATE t2 SET c='nineteen thousand thirty-six' WHERE a=17942;\nUPDATE t2 SET c='fifty-eight thousand nine hundred seventy-seven' WHERE a=17943;\nUPDATE t2 SET c='eighteen thousand three hundred sixty-four' WHERE a=17944;\nUPDATE t2 SET c='seventy-one thousand six hundred four' WHERE a=17945;\nUPDATE t2 SET c='eighty-five thousand twenty-one' WHERE a=17946;\nUPDATE t2 SET c='fifteen thousand eight hundred eighty' WHERE a=17947;\nUPDATE t2 SET c='seventy-three thousand six hundred eighty-eight' WHERE a=17948;\nUPDATE t2 SET c='seventy-five thousand one hundred fifty-nine' WHERE a=17949;\nUPDATE t2 SET c='nine thousand ninety-eight' WHERE a=17950;\nUPDATE t2 SET c='eighty-six thousand six hundred forty-six' WHERE a=17951;\nUPDATE t2 SET c='forty-three thousand four hundred fifty-one' WHERE a=17952;\nUPDATE t2 SET c='eighty-six thousand fourteen' WHERE a=17953;\nUPDATE t2 SET c='sixty-one thousand three hundred six' WHERE a=17954;\nUPDATE t2 SET c='eighty-two thousand six hundred eight' WHERE a=17955;\nUPDATE t2 SET c='eighty-two thousand three hundred' WHERE a=17956;\nUPDATE t2 SET c='sixty-three thousand three hundred thirty-three' WHERE a=17957;\nUPDATE t2 SET c='fifty-one thousand four hundred ninety-six' WHERE a=17958;\nUPDATE t2 SET c='eleven thousand fifty-five' WHERE a=17959;\nUPDATE t2 SET c='fifty-eight thousand two hundred forty-four' WHERE a=17960;\nUPDATE t2 SET c='twenty-two thousand twenty-six' WHERE a=17961;\nUPDATE t2 SET c='twenty-one thousand five hundred seven' WHERE a=17962;\nUPDATE t2 SET c='twenty-four thousand two hundred twenty-five' WHERE a=17963;\nUPDATE t2 SET c='nineteen thousand seven hundred eighty-five' WHERE a=17964;\nUPDATE t2 SET c='forty-five thousand three hundred twenty-seven' WHERE a=17965;\nUPDATE t2 SET c='ninety-seven thousand two hundred eighty-four' WHERE a=17966;\nUPDATE t2 SET c='sixty thousand six hundred forty-four' WHERE a=17967;\nUPDATE t2 SET c='seventy-one thousand twelve' WHERE a=17968;\nUPDATE t2 SET c='fifty-four thousand two hundred forty-three' WHERE a=17969;\nUPDATE t2 SET c='seventeen thousand fifty' WHERE a=17970;\nUPDATE t2 SET c='seventy-seven thousand eight hundred seven' WHERE a=17971;\nUPDATE t2 SET c='sixty-nine thousand four hundred fifteen' WHERE a=17972;\nUPDATE t2 SET c='forty-six thousand nine hundred eighty-two' WHERE a=17973;\nUPDATE t2 SET c='one thousand three hundred forty-one' WHERE a=17974;\nUPDATE t2 SET c='sixty thousand seven hundred twenty-six' WHERE a=17975;\nUPDATE t2 SET c='twenty-two thousand one hundred eighteen' WHERE a=17976;\nUPDATE t2 SET c='sixteen thousand three hundred twenty-five' WHERE a=17977;\nUPDATE t2 SET c='seventy-two thousand four hundred five' WHERE a=17978;\nUPDATE t2 SET c='twenty-three thousand nine hundred eighty' WHERE a=17979;\nUPDATE t2 SET c='twenty-five thousand four hundred eighty-three' WHERE a=17980;\nUPDATE t2 SET c='two hundred twelve' WHERE a=17981;\nUPDATE t2 SET c='seven thousand sixty-four' WHERE a=17982;\nUPDATE t2 SET c='seventy-four thousand nine hundred fourteen' WHERE a=17983;\nUPDATE t2 SET c='thirty-eight thousand one hundred fifty-seven' WHERE a=17984;\nUPDATE t2 SET c='thirty thousand nine hundred forty-five' WHERE a=17985;\nUPDATE t2 SET c='eighty-two thousand one hundred sixty-three' WHERE a=17986;\nUPDATE t2 SET c='eight thousand seven hundred ninety-five' WHERE a=17987;\nUPDATE t2 SET c='eighty thousand nine hundred eight' WHERE a=17988;\nUPDATE t2 SET c='seventy-five thousand five hundred seventy-seven' WHERE a=17989;\nUPDATE t2 SET c='thirty-nine thousand seven hundred sixty-eight' WHERE a=17990;\nUPDATE t2 SET c='thirty-six thousand nineteen' WHERE a=17991;\nUPDATE t2 SET c='forty-three thousand one hundred seventy-nine' WHERE a=17992;\nUPDATE t2 SET c='ninety thousand six hundred seven' WHERE a=17993;\nUPDATE t2 SET c='nine thousand five hundred eighty-five' WHERE a=17994;\nUPDATE t2 SET c='thirty-nine thousand four hundred thirty-eight' WHERE a=17995;\nUPDATE t2 SET c='sixteen thousand one hundred thirteen' WHERE a=17996;\nUPDATE t2 SET c='eighty-eight thousand four hundred ninety-one' WHERE a=17997;\nUPDATE t2 SET c='fifty-two thousand six hundred sixty-eight' WHERE a=17998;\nUPDATE t2 SET c='fifty-five thousand five hundred ninety-two' WHERE a=17999;\nUPDATE t2 SET c='one hundred eighty-nine' WHERE a=18000;\nUPDATE t2 SET c='forty-eight thousand three hundred forty-one' WHERE a=18001;\nUPDATE t2 SET c='sixty-six thousand one hundred eighty-nine' WHERE a=18002;\nUPDATE t2 SET c='thirty thousand five hundred thirty-three' WHERE a=18003;\nUPDATE t2 SET c='seventy-five thousand three hundred seventy-three' WHERE a=18004;\nUPDATE t2 SET c='thirty-eight thousand seven hundred nineteen' WHERE a=18005;\nUPDATE t2 SET c='ninety-five thousand seven hundred six' WHERE a=18006;\nUPDATE t2 SET c='sixty-two thousand four hundred fifty-one' WHERE a=18007;\nUPDATE t2 SET c='sixty-three thousand eight hundred ninety-nine' WHERE a=18008;\nUPDATE t2 SET c='fifty-four thousand four hundred seventy' WHERE a=18009;\nUPDATE t2 SET c='forty-nine thousand seven hundred ninety-seven' WHERE a=18010;\nUPDATE t2 SET c='ninety-nine thousand eight hundred seventy-one' WHERE a=18011;\nUPDATE t2 SET c='sixty-six thousand three hundred fifty' WHERE a=18012;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-eight' WHERE a=18013;\nUPDATE t2 SET c='fifty-eight thousand fifty-one' WHERE a=18014;\nUPDATE t2 SET c='eleven thousand three hundred sixty-three' WHERE a=18015;\nUPDATE t2 SET c='forty thousand two hundred thirty-six' WHERE a=18016;\nUPDATE t2 SET c='fifteen thousand thirty-one' WHERE a=18017;\nUPDATE t2 SET c='fifty-one thousand three hundred seventy-nine' WHERE a=18018;\nUPDATE t2 SET c='eighty-six thousand three hundred forty-three' WHERE a=18019;\nUPDATE t2 SET c='thirty-one thousand twenty-nine' WHERE a=18020;\nUPDATE t2 SET c='thirteen thousand eight hundred seventy-three' WHERE a=18021;\nUPDATE t2 SET c='forty-six thousand two hundred forty-four' WHERE a=18022;\nUPDATE t2 SET c='twenty-six thousand nine hundred forty-five' WHERE a=18023;\nUPDATE t2 SET c='thirteen thousand seven hundred five' WHERE a=18024;\nUPDATE t2 SET c='twenty-eight thousand two hundred ninety-eight' WHERE a=18025;\nUPDATE t2 SET c='seventy-two thousand six hundred ninety-nine' WHERE a=18026;\nUPDATE t2 SET c='twenty-eight thousand five hundred four' WHERE a=18027;\nUPDATE t2 SET c='nineteen thousand sixty-seven' WHERE a=18028;\nUPDATE t2 SET c='seventy-five thousand eight hundred seventy-nine' WHERE a=18029;\nUPDATE t2 SET c='thirty-six thousand two hundred seventy-five' WHERE a=18030;\nUPDATE t2 SET c='eighty thousand three hundred thirty-four' WHERE a=18031;\nUPDATE t2 SET c='three thousand two hundred eighty-nine' WHERE a=18032;\nUPDATE t2 SET c='sixty-nine thousand eight hundred forty-six' WHERE a=18033;\nUPDATE t2 SET c='twenty-nine thousand nine hundred seventy-seven' WHERE a=18034;\nUPDATE t2 SET c='thirty thousand seven hundred six' WHERE a=18035;\nUPDATE t2 SET c='forty-six thousand nine hundred thirty-one' WHERE a=18036;\nUPDATE t2 SET c='seventy-two thousand one hundred fifty-seven' WHERE a=18037;\nUPDATE t2 SET c='seventeen thousand three hundred eight' WHERE a=18038;\nUPDATE t2 SET c='fifty-six thousand ninety-three' WHERE a=18039;\nUPDATE t2 SET c='ninety-three thousand fifty-five' WHERE a=18040;\nUPDATE t2 SET c='eighty-five thousand three hundred sixty-three' WHERE a=18041;\nUPDATE t2 SET c='seven thousand three hundred seventy-eight' WHERE a=18042;\nUPDATE t2 SET c='sixty thousand five hundred thirty-eight' WHERE a=18043;\nUPDATE t2 SET c='fifty thousand four hundred forty' WHERE a=18044;\nUPDATE t2 SET c='twenty-four thousand five hundred eighty-eight' WHERE a=18045;\nUPDATE t2 SET c='ninety-one thousand four hundred twenty-four' WHERE a=18046;\nUPDATE t2 SET c='sixty-eight thousand two hundred sixty-five' WHERE a=18047;\nUPDATE t2 SET c='seven thousand eight hundred eighty-seven' WHERE a=18048;\nUPDATE t2 SET c='fifty-eight thousand seventy-eight' WHERE a=18049;\nUPDATE t2 SET c='sixty-nine thousand six hundred sixty-five' WHERE a=18050;\nUPDATE t2 SET c='ninety-nine thousand one hundred ninety-nine' WHERE a=18051;\nUPDATE t2 SET c='eighty thousand three hundred thirty-two' WHERE a=18052;\nUPDATE t2 SET c='twelve thousand one hundred fifty-four' WHERE a=18053;\nUPDATE t2 SET c='fifty-two thousand four hundred forty-nine' WHERE a=18054;\nUPDATE t2 SET c='forty-six thousand eight hundred thirty-six' WHERE a=18055;\nUPDATE t2 SET c='twenty-seven thousand six hundred nine' WHERE a=18056;\nUPDATE t2 SET c='fifteen thousand nine hundred thirty-three' WHERE a=18057;\nUPDATE t2 SET c='fifty-six thousand one hundred seventy-two' WHERE a=18058;\nUPDATE t2 SET c='nine thousand eight hundred eighteen' WHERE a=18059;\nUPDATE t2 SET c='seventy thousand two hundred ninety-two' WHERE a=18060;\nUPDATE t2 SET c='fifty-eight thousand five hundred seventy-five' WHERE a=18061;\nUPDATE t2 SET c='seventy-four thousand two hundred sixteen' WHERE a=18062;\nUPDATE t2 SET c='eighty-one thousand two hundred seventy-one' WHERE a=18063;\nUPDATE t2 SET c='two thousand thirty-one' WHERE a=18064;\nUPDATE t2 SET c='forty-seven thousand six hundred nine' WHERE a=18065;\nUPDATE t2 SET c='seventy-eight thousand nine hundred thirty-seven' WHERE a=18066;\nUPDATE t2 SET c='sixty-five thousand five hundred seventy-six' WHERE a=18067;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty' WHERE a=18068;\nUPDATE t2 SET c='eighteen thousand eight hundred sixty' WHERE a=18069;\nUPDATE t2 SET c='fifty-eight thousand five hundred ninety-seven' WHERE a=18070;\nUPDATE t2 SET c='thirty-seven thousand three hundred fifty-five' WHERE a=18071;\nUPDATE t2 SET c='eighteen thousand four hundred forty-two' WHERE a=18072;\nUPDATE t2 SET c='fifty-seven thousand six hundred thirty-six' WHERE a=18073;\nUPDATE t2 SET c='twenty-eight thousand one hundred sixty-one' WHERE a=18074;\nUPDATE t2 SET c='forty-four thousand nine hundred ninety-five' WHERE a=18075;\nUPDATE t2 SET c='ninety-two thousand six hundred forty-three' WHERE a=18076;\nUPDATE t2 SET c='thirty-three thousand seven hundred seventy' WHERE a=18077;\nUPDATE t2 SET c='seventy-three thousand fourteen' WHERE a=18078;\nUPDATE t2 SET c='one thousand forty-two' WHERE a=18079;\nUPDATE t2 SET c='twenty-one thousand four hundred thirty-seven' WHERE a=18080;\nUPDATE t2 SET c='sixty-six thousand six hundred five' WHERE a=18081;\nUPDATE t2 SET c='eighty-nine thousand seven hundred twenty-six' WHERE a=18082;\nUPDATE t2 SET c='one thousand six hundred twenty-seven' WHERE a=18083;\nUPDATE t2 SET c='sixty-one thousand eighty-four' WHERE a=18084;\nUPDATE t2 SET c='sixty-one thousand four hundred ninety-seven' WHERE a=18085;\nUPDATE t2 SET c='fifty-eight thousand four hundred fifty-six' WHERE a=18086;\nUPDATE t2 SET c='twenty-seven thousand five hundred seventeen' WHERE a=18087;\nUPDATE t2 SET c='twenty-one thousand four hundred sixty-seven' WHERE a=18088;\nUPDATE t2 SET c='twenty-eight thousand one hundred' WHERE a=18089;\nUPDATE t2 SET c='thirty-one thousand three hundred twenty-six' WHERE a=18090;\nUPDATE t2 SET c='six thousand five hundred forty-three' WHERE a=18091;\nUPDATE t2 SET c='twenty-eight thousand four' WHERE a=18092;\nUPDATE t2 SET c='ninety-four thousand five hundred nine' WHERE a=18093;\nUPDATE t2 SET c='seventy-six thousand three hundred forty-seven' WHERE a=18094;\nUPDATE t2 SET c='sixty-six thousand seven hundred twenty-two' WHERE a=18095;\nUPDATE t2 SET c='forty-two thousand five hundred ninety' WHERE a=18096;\nUPDATE t2 SET c='thirty-eight thousand seven hundred eighteen' WHERE a=18097;\nUPDATE t2 SET c='sixty-eight thousand four hundred nine' WHERE a=18098;\nUPDATE t2 SET c='eighty-three thousand nine hundred twenty-three' WHERE a=18099;\nUPDATE t2 SET c='twenty-two thousand two hundred eighty-eight' WHERE a=18100;\nUPDATE t2 SET c='sixty-eight thousand one hundred fifty-three' WHERE a=18101;\nUPDATE t2 SET c='eighty-seven thousand two hundred' WHERE a=18102;\nUPDATE t2 SET c='seventy-eight thousand fifty-three' WHERE a=18103;\nUPDATE t2 SET c='eighty-five thousand three hundred twenty-four' WHERE a=18104;\nUPDATE t2 SET c='thirty-two thousand seven hundred forty-five' WHERE a=18105;\nUPDATE t2 SET c='sixty-two thousand eight hundred three' WHERE a=18106;\nUPDATE t2 SET c='thirty-six thousand two hundred fifteen' WHERE a=18107;\nUPDATE t2 SET c='sixty thousand eight hundred seventeen' WHERE a=18108;\nUPDATE t2 SET c='eighteen thousand two hundred fifty-one' WHERE a=18109;\nUPDATE t2 SET c='ninety-two thousand four hundred fifteen' WHERE a=18110;\nUPDATE t2 SET c='sixty-four thousand twenty-four' WHERE a=18111;\nUPDATE t2 SET c='eighty-one thousand nine' WHERE a=18112;\nUPDATE t2 SET c='forty thousand nine hundred five' WHERE a=18113;\nUPDATE t2 SET c='fifty-two thousand nine hundred seventy-five' WHERE a=18114;\nUPDATE t2 SET c='sixty-six thousand seventy' WHERE a=18115;\nUPDATE t2 SET c='eighty-seven thousand twenty' WHERE a=18116;\nUPDATE t2 SET c='fourteen thousand ninety-five' WHERE a=18117;\nUPDATE t2 SET c='seventy-seven thousand six hundred sixty-seven' WHERE a=18118;\nUPDATE t2 SET c='eighty-one thousand seven hundred eighty-three' WHERE a=18119;\nUPDATE t2 SET c='eighty-nine thousand two hundred sixty-two' WHERE a=18120;\nUPDATE t2 SET c='four thousand five hundred seventy-four' WHERE a=18121;\nUPDATE t2 SET c='four thousand four hundred sixty-one' WHERE a=18122;\nUPDATE t2 SET c='eighty-three thousand two hundred eighteen' WHERE a=18123;\nUPDATE t2 SET c='nine thousand five hundred eighty-seven' WHERE a=18124;\nUPDATE t2 SET c='eight thousand eight hundred sixteen' WHERE a=18125;\nUPDATE t2 SET c='nine thousand two hundred five' WHERE a=18126;\nUPDATE t2 SET c='sixty-four thousand two hundred thirty-four' WHERE a=18127;\nUPDATE t2 SET c='thirty thousand seven hundred six' WHERE a=18128;\nUPDATE t2 SET c='seven thousand five hundred fifty-four' WHERE a=18129;\nUPDATE t2 SET c='four thousand two hundred' WHERE a=18130;\nUPDATE t2 SET c='fifty-four thousand four hundred ninety-nine' WHERE a=18131;\nUPDATE t2 SET c='eighty-two thousand four hundred fifty-seven' WHERE a=18132;\nUPDATE t2 SET c='nine thousand four hundred fifty-five' WHERE a=18133;\nUPDATE t2 SET c='eighty-five thousand nine hundred thirty' WHERE a=18134;\nUPDATE t2 SET c='thirty-four thousand four hundred thirty-eight' WHERE a=18135;\nUPDATE t2 SET c='fourteen thousand six hundred fifteen' WHERE a=18136;\nUPDATE t2 SET c='eighty-four thousand three hundred three' WHERE a=18137;\nUPDATE t2 SET c='twenty-eight thousand four hundred seven' WHERE a=18138;\nUPDATE t2 SET c='eighteen thousand five hundred forty-nine' WHERE a=18139;\nUPDATE t2 SET c='eighteen thousand nine hundred sixty-six' WHERE a=18140;\nUPDATE t2 SET c='sixty-five thousand four hundred thirty-eight' WHERE a=18141;\nUPDATE t2 SET c='eleven thousand twenty-four' WHERE a=18142;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-six' WHERE a=18143;\nUPDATE t2 SET c='sixty-seven thousand one hundred six' WHERE a=18144;\nUPDATE t2 SET c='five thousand nine' WHERE a=18145;\nUPDATE t2 SET c='fifty-eight thousand seven hundred' WHERE a=18146;\nUPDATE t2 SET c='eighty-two thousand seven hundred thirty-eight' WHERE a=18147;\nUPDATE t2 SET c='thirteen thousand eight hundred forty-seven' WHERE a=18148;\nUPDATE t2 SET c='ten thousand eight hundred ninety-seven' WHERE a=18149;\nUPDATE t2 SET c='seventy-one thousand forty-four' WHERE a=18150;\nUPDATE t2 SET c='eighty-nine thousand eight hundred eighteen' WHERE a=18151;\nUPDATE t2 SET c='eighty-five thousand eight hundred fifty-four' WHERE a=18152;\nUPDATE t2 SET c='forty-two thousand one hundred ninety-nine' WHERE a=18153;\nUPDATE t2 SET c='forty-one thousand five hundred fifty-eight' WHERE a=18154;\nUPDATE t2 SET c='seventy-one thousand six hundred three' WHERE a=18155;\nUPDATE t2 SET c='seventy-eight thousand three hundred fifty-eight' WHERE a=18156;\nUPDATE t2 SET c='seventy-nine thousand nine hundred sixty' WHERE a=18157;\nUPDATE t2 SET c='fifty-four thousand four hundred seventy-one' WHERE a=18158;\nUPDATE t2 SET c='fifty-four thousand three hundred forty-seven' WHERE a=18159;\nUPDATE t2 SET c='fifty-four thousand four hundred twenty-one' WHERE a=18160;\nUPDATE t2 SET c='nineteen thousand nine hundred forty-nine' WHERE a=18161;\nUPDATE t2 SET c='sixty-four thousand seven hundred eighty-two' WHERE a=18162;\nUPDATE t2 SET c='fifty thousand nine hundred sixty-seven' WHERE a=18163;\nUPDATE t2 SET c='eleven thousand seven hundred forty-eight' WHERE a=18164;\nUPDATE t2 SET c='seventy-one thousand forty' WHERE a=18165;\nUPDATE t2 SET c='sixty-seven thousand six hundred eighty-three' WHERE a=18166;\nUPDATE t2 SET c='thirty thousand seven hundred two' WHERE a=18167;\nUPDATE t2 SET c='sixty-six thousand one hundred seventy-seven' WHERE a=18168;\nUPDATE t2 SET c='thirty-nine thousand six hundred thirty-three' WHERE a=18169;\nUPDATE t2 SET c='seventeen thousand two hundred sixty-four' WHERE a=18170;\nUPDATE t2 SET c='forty-seven thousand five hundred six' WHERE a=18171;\nUPDATE t2 SET c='sixty-nine thousand one hundred thirty' WHERE a=18172;\nUPDATE t2 SET c='sixty-six thousand three hundred forty-nine' WHERE a=18173;\nUPDATE t2 SET c='seventeen thousand six hundred sixty-two' WHERE a=18174;\nUPDATE t2 SET c='sixty-eight thousand one hundred eighty-two' WHERE a=18175;\nUPDATE t2 SET c='fourteen thousand seven hundred nineteen' WHERE a=18176;\nUPDATE t2 SET c='thirty-five thousand five hundred twenty-four' WHERE a=18177;\nUPDATE t2 SET c='sixty-five thousand one hundred three' WHERE a=18178;\nUPDATE t2 SET c='thirteen thousand eight hundred seventy-five' WHERE a=18179;\nUPDATE t2 SET c='eleven thousand nine hundred ten' WHERE a=18180;\nUPDATE t2 SET c='twenty-six thousand nine hundred forty-seven' WHERE a=18181;\nUPDATE t2 SET c='thirteen thousand six hundred seventy-nine' WHERE a=18182;\nUPDATE t2 SET c='ninety thousand eight hundred fifty-seven' WHERE a=18183;\nUPDATE t2 SET c='forty-seven thousand five hundred thirty-seven' WHERE a=18184;\nUPDATE t2 SET c='seventeen thousand forty-three' WHERE a=18185;\nUPDATE t2 SET c='ninety-nine thousand six hundred twenty-seven' WHERE a=18186;\nUPDATE t2 SET c='fifty thousand seven hundred twenty-two' WHERE a=18187;\nUPDATE t2 SET c='thirty-three thousand five hundred sixty-six' WHERE a=18188;\nUPDATE t2 SET c='seventy-one thousand one hundred nineteen' WHERE a=18189;\nUPDATE t2 SET c='eighty-eight thousand nine hundred ninety-six' WHERE a=18190;\nUPDATE t2 SET c='eighty-five thousand' WHERE a=18191;\nUPDATE t2 SET c='seventy thousand three hundred seventy-five' WHERE a=18192;\nUPDATE t2 SET c='sixty-nine thousand forty-six' WHERE a=18193;\nUPDATE t2 SET c='thirty-four thousand seven hundred six' WHERE a=18194;\nUPDATE t2 SET c='eighteen thousand two hundred thirty-eight' WHERE a=18195;\nUPDATE t2 SET c='thirty thousand four hundred fifty-three' WHERE a=18196;\nUPDATE t2 SET c='one thousand seven hundred forty-six' WHERE a=18197;\nUPDATE t2 SET c='eleven thousand four' WHERE a=18198;\nUPDATE t2 SET c='twenty-eight thousand eight hundred two' WHERE a=18199;\nUPDATE t2 SET c='seventy-eight thousand five hundred thirty-two' WHERE a=18200;\nUPDATE t2 SET c='fifty-nine thousand three hundred seventy-one' WHERE a=18201;\nUPDATE t2 SET c='thirty-five thousand eight hundred sixty' WHERE a=18202;\nUPDATE t2 SET c='fifty-seven thousand nine hundred thirteen' WHERE a=18203;\nUPDATE t2 SET c='sixty-six thousand eight hundred seventy-eight' WHERE a=18204;\nUPDATE t2 SET c='forty-six thousand seven hundred nineteen' WHERE a=18205;\nUPDATE t2 SET c='sixty-four thousand five hundred eighty-nine' WHERE a=18206;\nUPDATE t2 SET c='eighty-nine thousand two hundred fifty-four' WHERE a=18207;\nUPDATE t2 SET c='forty-two thousand one hundred sixty-six' WHERE a=18208;\nUPDATE t2 SET c='seventy-six thousand nine hundred twenty-seven' WHERE a=18209;\nUPDATE t2 SET c='one thousand six hundred sixty-seven' WHERE a=18210;\nUPDATE t2 SET c='nine hundred ninety-two' WHERE a=18211;\nUPDATE t2 SET c='thirty-two thousand five hundred thirty' WHERE a=18212;\nUPDATE t2 SET c='thirty thousand three hundred' WHERE a=18213;\nUPDATE t2 SET c='seventy-nine thousand six hundred forty-eight' WHERE a=18214;\nUPDATE t2 SET c='ninety-four thousand two hundred forty-nine' WHERE a=18215;\nUPDATE t2 SET c='sixty-three thousand two hundred thirty-three' WHERE a=18216;\nUPDATE t2 SET c='sixty-six thousand eight hundred eighty-three' WHERE a=18217;\nUPDATE t2 SET c='eighty-six thousand five hundred fifty-three' WHERE a=18218;\nUPDATE t2 SET c='sixteen thousand seven hundred fifty-six' WHERE a=18219;\nUPDATE t2 SET c='seventy-eight thousand one hundred eighty-two' WHERE a=18220;\nUPDATE t2 SET c='seventy-six thousand sixty-four' WHERE a=18221;\nUPDATE t2 SET c='twenty thousand two hundred sixty-one' WHERE a=18222;\nUPDATE t2 SET c='five thousand five hundred ninety-eight' WHERE a=18223;\nUPDATE t2 SET c='seventy-six thousand three hundred ninety-one' WHERE a=18224;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirty' WHERE a=18225;\nUPDATE t2 SET c='sixty-four thousand three hundred thirty-three' WHERE a=18226;\nUPDATE t2 SET c='seven thousand seven hundred ninety-one' WHERE a=18227;\nUPDATE t2 SET c='eighty-three thousand nine hundred ninety' WHERE a=18228;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-three' WHERE a=18229;\nUPDATE t2 SET c='sixty-two thousand five hundred sixty-five' WHERE a=18230;\nUPDATE t2 SET c='twelve thousand one' WHERE a=18231;\nUPDATE t2 SET c='fifty-two thousand one hundred forty-seven' WHERE a=18232;\nUPDATE t2 SET c='ninety thousand two hundred twenty-two' WHERE a=18233;\nUPDATE t2 SET c='seventy-seven thousand six hundred fifty-two' WHERE a=18234;\nUPDATE t2 SET c='seventy-two thousand three hundred sixty-five' WHERE a=18235;\nUPDATE t2 SET c='thirty-four thousand two hundred fourteen' WHERE a=18236;\nUPDATE t2 SET c='forty-six thousand one hundred ninety-one' WHERE a=18237;\nUPDATE t2 SET c='ninety-four thousand eight hundred sixty-one' WHERE a=18238;\nUPDATE t2 SET c='fifty-four thousand six hundred ninety-one' WHERE a=18239;\nUPDATE t2 SET c='thirty thousand seven hundred thirteen' WHERE a=18240;\nUPDATE t2 SET c='eighty-nine thousand one hundred sixty-two' WHERE a=18241;\nUPDATE t2 SET c='eighteen thousand seven hundred fifty-five' WHERE a=18242;\nUPDATE t2 SET c='fifty-six thousand eight hundred twenty-one' WHERE a=18243;\nUPDATE t2 SET c='forty-eight thousand one hundred thirty-five' WHERE a=18244;\nUPDATE t2 SET c='forty-three thousand one hundred thirty-two' WHERE a=18245;\nUPDATE t2 SET c='sixty-three thousand eight hundred twenty-one' WHERE a=18246;\nUPDATE t2 SET c='twenty-nine thousand three hundred forty-one' WHERE a=18247;\nUPDATE t2 SET c='seventy-nine thousand five hundred twenty-two' WHERE a=18248;\nUPDATE t2 SET c='eighty-three thousand two hundred fifty-six' WHERE a=18249;\nUPDATE t2 SET c='five thousand nine hundred eighty-one' WHERE a=18250;\nUPDATE t2 SET c='twenty-two thousand five hundred seventy-five' WHERE a=18251;\nUPDATE t2 SET c='two thousand four hundred ninety-six' WHERE a=18252;\nUPDATE t2 SET c='thirty-three thousand one hundred one' WHERE a=18253;\nUPDATE t2 SET c='ten thousand nine hundred twenty-six' WHERE a=18254;\nUPDATE t2 SET c='thirty-nine thousand nine hundred fifty-two' WHERE a=18255;\nUPDATE t2 SET c='thirty-three thousand nine hundred ninety-five' WHERE a=18256;\nUPDATE t2 SET c='forty-five thousand six hundred nine' WHERE a=18257;\nUPDATE t2 SET c='ninety-seven thousand one hundred sixty-one' WHERE a=18258;\nUPDATE t2 SET c='eight thousand four hundred fifty-six' WHERE a=18259;\nUPDATE t2 SET c='ninety-three thousand two hundred forty-seven' WHERE a=18260;\nUPDATE t2 SET c='twenty-four thousand five hundred thirty-five' WHERE a=18261;\nUPDATE t2 SET c='twenty-seven thousand three hundred seventy-eight' WHERE a=18262;\nUPDATE t2 SET c='forty-two thousand seven hundred forty-five' WHERE a=18263;\nUPDATE t2 SET c='fifty-four thousand nine hundred twenty-two' WHERE a=18264;\nUPDATE t2 SET c='fifty-two thousand seven hundred fifty-two' WHERE a=18265;\nUPDATE t2 SET c='seventy-four thousand six hundred eighteen' WHERE a=18266;\nUPDATE t2 SET c='eighteen thousand eighty-two' WHERE a=18267;\nUPDATE t2 SET c='ninety-eight thousand nine hundred seventy-eight' WHERE a=18268;\nUPDATE t2 SET c='fifty thousand two hundred nineteen' WHERE a=18269;\nUPDATE t2 SET c='forty-nine thousand eight hundred twenty-three' WHERE a=18270;\nUPDATE t2 SET c='thirty-four thousand eight hundred eighty-four' WHERE a=18271;\nUPDATE t2 SET c='thirty-seven thousand nine hundred seventy-nine' WHERE a=18272;\nUPDATE t2 SET c='thirty-four thousand three hundred seventy-seven' WHERE a=18273;\nUPDATE t2 SET c='eighty-eight thousand six hundred forty-two' WHERE a=18274;\nUPDATE t2 SET c='eleven thousand two hundred seventeen' WHERE a=18275;\nUPDATE t2 SET c='eighty-three thousand two hundred forty-seven' WHERE a=18276;\nUPDATE t2 SET c='thirty-four thousand nine hundred ninety' WHERE a=18277;\nUPDATE t2 SET c='ninety-five thousand seven hundred ninety-eight' WHERE a=18278;\nUPDATE t2 SET c='ninety-two thousand one hundred twenty-two' WHERE a=18279;\nUPDATE t2 SET c='twelve thousand seven hundred ninety-four' WHERE a=18280;\nUPDATE t2 SET c='seventy thousand eight hundred eighty' WHERE a=18281;\nUPDATE t2 SET c='forty-five thousand two hundred eighteen' WHERE a=18282;\nUPDATE t2 SET c='seventy-four thousand seven hundred fifty-nine' WHERE a=18283;\nUPDATE t2 SET c='sixty-four thousand sixty-six' WHERE a=18284;\nUPDATE t2 SET c='seventy-two thousand two hundred ten' WHERE a=18285;\nUPDATE t2 SET c='one hundred fifty-nine' WHERE a=18286;\nUPDATE t2 SET c='thirty-five thousand six' WHERE a=18287;\nUPDATE t2 SET c='seventy-two thousand five hundred eighty-six' WHERE a=18288;\nUPDATE t2 SET c='nine thousand three hundred eleven' WHERE a=18289;\nUPDATE t2 SET c='forty-three thousand three hundred sixty-eight' WHERE a=18290;\nUPDATE t2 SET c='forty-three thousand eight hundred thirty-five' WHERE a=18291;\nUPDATE t2 SET c='eleven thousand seven hundred fifty-six' WHERE a=18292;\nUPDATE t2 SET c='ninety-two thousand two hundred fifty-one' WHERE a=18293;\nUPDATE t2 SET c='nine thousand four hundred sixty-four' WHERE a=18294;\nUPDATE t2 SET c='ninety-six thousand three hundred seventy-two' WHERE a=18295;\nUPDATE t2 SET c='fifty-nine thousand two hundred eighty-one' WHERE a=18296;\nUPDATE t2 SET c='eighty-three thousand five hundred forty-seven' WHERE a=18297;\nUPDATE t2 SET c='forty thousand fifty-one' WHERE a=18298;\nUPDATE t2 SET c='eighteen thousand twenty-eight' WHERE a=18299;\nUPDATE t2 SET c='nineteen thousand one hundred fifty-five' WHERE a=18300;\nUPDATE t2 SET c='thirty-three thousand two hundred' WHERE a=18301;\nUPDATE t2 SET c='thirty-eight thousand nine hundred thirty-five' WHERE a=18302;\nUPDATE t2 SET c='forty-five thousand sixteen' WHERE a=18303;\nUPDATE t2 SET c='twenty-five thousand eight hundred' WHERE a=18304;\nUPDATE t2 SET c='ten thousand five hundred nine' WHERE a=18305;\nUPDATE t2 SET c='two thousand nine hundred sixty-one' WHERE a=18306;\nUPDATE t2 SET c='fifty-eight thousand two hundred twenty' WHERE a=18307;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-eight' WHERE a=18308;\nUPDATE t2 SET c='fifty-eight thousand two hundred fifty-six' WHERE a=18309;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-two' WHERE a=18310;\nUPDATE t2 SET c='sixty-six thousand forty-three' WHERE a=18311;\nUPDATE t2 SET c='ninety-seven thousand one hundred sixty-five' WHERE a=18312;\nUPDATE t2 SET c='ninety-six thousand eight hundred forty-seven' WHERE a=18313;\nUPDATE t2 SET c='fourteen thousand three hundred sixty-one' WHERE a=18314;\nUPDATE t2 SET c='fifty-two thousand four hundred sixty-six' WHERE a=18315;\nUPDATE t2 SET c='ninety-four thousand eighty-eight' WHERE a=18316;\nUPDATE t2 SET c='ninety-one thousand four hundred four' WHERE a=18317;\nUPDATE t2 SET c='seventy-five thousand ninety' WHERE a=18318;\nUPDATE t2 SET c='sixty thousand seven hundred seventy-six' WHERE a=18319;\nUPDATE t2 SET c='eighty-one thousand five hundred nineteen' WHERE a=18320;\nUPDATE t2 SET c='five thousand nine hundred eighty-six' WHERE a=18321;\nUPDATE t2 SET c='two hundred ninety-six' WHERE a=18322;\nUPDATE t2 SET c='four thousand two hundred sixty-one' WHERE a=18323;\nUPDATE t2 SET c='forty-six thousand nine hundred fifty-five' WHERE a=18324;\nUPDATE t2 SET c='five thousand eight hundred sixty' WHERE a=18325;\nUPDATE t2 SET c='ninety thousand four hundred sixty-six' WHERE a=18326;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy-one' WHERE a=18327;\nUPDATE t2 SET c='twenty-three thousand seven hundred forty' WHERE a=18328;\nUPDATE t2 SET c='fifty thousand three hundred thirty-two' WHERE a=18329;\nUPDATE t2 SET c='eighty-eight thousand eight hundred sixty-nine' WHERE a=18330;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty-four' WHERE a=18331;\nUPDATE t2 SET c='twenty-nine thousand four hundred thirty-six' WHERE a=18332;\nUPDATE t2 SET c='ninety-seven thousand one hundred ninety-eight' WHERE a=18333;\nUPDATE t2 SET c='eleven thousand one' WHERE a=18334;\nUPDATE t2 SET c='thirty-one thousand nine hundred twenty-eight' WHERE a=18335;\nUPDATE t2 SET c='fifty-one thousand two hundred twenty-four' WHERE a=18336;\nUPDATE t2 SET c='thirty-three thousand two hundred ninety-one' WHERE a=18337;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighty-six' WHERE a=18338;\nUPDATE t2 SET c='ninety-eight thousand eight hundred forty-four' WHERE a=18339;\nUPDATE t2 SET c='five thousand one hundred twenty-five' WHERE a=18340;\nUPDATE t2 SET c='seventy-six thousand nine hundred twenty-four' WHERE a=18341;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifty-one' WHERE a=18342;\nUPDATE t2 SET c='sixty-eight thousand five hundred eight' WHERE a=18343;\nUPDATE t2 SET c='five thousand three hundred twenty-eight' WHERE a=18344;\nUPDATE t2 SET c='fifty-three thousand eight hundred sixty' WHERE a=18345;\nUPDATE t2 SET c='fifteen thousand six' WHERE a=18346;\nUPDATE t2 SET c='ninety-five thousand five hundred ninety-eight' WHERE a=18347;\nUPDATE t2 SET c='ninety-six thousand five hundred eighty-seven' WHERE a=18348;\nUPDATE t2 SET c='sixteen thousand two hundred sixty-three' WHERE a=18349;\nUPDATE t2 SET c='one thousand eight hundred sixty-seven' WHERE a=18350;\nUPDATE t2 SET c='seventy-six thousand twenty-nine' WHERE a=18351;\nUPDATE t2 SET c='ninety-seven thousand eight hundred sixty-seven' WHERE a=18352;\nUPDATE t2 SET c='twenty-eight thousand six hundred sixty-one' WHERE a=18353;\nUPDATE t2 SET c='fifteen thousand nine hundred sixty-seven' WHERE a=18354;\nUPDATE t2 SET c='sixty-five thousand sixty-five' WHERE a=18355;\nUPDATE t2 SET c='one thousand eight hundred twenty-four' WHERE a=18356;\nUPDATE t2 SET c='sixty-seven thousand two hundred ninety-seven' WHERE a=18357;\nUPDATE t2 SET c='sixty-one thousand eight hundred thirty-five' WHERE a=18358;\nUPDATE t2 SET c='fifty-one thousand seven hundred twenty-four' WHERE a=18359;\nUPDATE t2 SET c='ninety thousand six hundred twenty-nine' WHERE a=18360;\nUPDATE t2 SET c='forty thousand fourteen' WHERE a=18361;\nUPDATE t2 SET c='fifty-seven thousand two hundred seventy-nine' WHERE a=18362;\nUPDATE t2 SET c='eighty-eight thousand five hundred ninety-six' WHERE a=18363;\nUPDATE t2 SET c='fifty-four thousand four hundred thirty-six' WHERE a=18364;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-six' WHERE a=18365;\nUPDATE t2 SET c='ninety-eight thousand three hundred forty-six' WHERE a=18366;\nUPDATE t2 SET c='eighty-eight thousand twelve' WHERE a=18367;\nUPDATE t2 SET c='seventy-seven thousand nine hundred six' WHERE a=18368;\nUPDATE t2 SET c='twenty-seven thousand one hundred sixty-eight' WHERE a=18369;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty-six' WHERE a=18370;\nUPDATE t2 SET c='forty-six thousand seven hundred twenty-seven' WHERE a=18371;\nUPDATE t2 SET c='four thousand five hundred fifty-one' WHERE a=18372;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-five' WHERE a=18373;\nUPDATE t2 SET c='forty-three thousand one hundred thirty-seven' WHERE a=18374;\nUPDATE t2 SET c='ten thousand nine hundred ninety' WHERE a=18375;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-three' WHERE a=18376;\nUPDATE t2 SET c='eleven thousand seven hundred four' WHERE a=18377;\nUPDATE t2 SET c='fifty-six thousand six hundred seventy-five' WHERE a=18378;\nUPDATE t2 SET c='twelve thousand nine hundred eighty-three' WHERE a=18379;\nUPDATE t2 SET c='eleven thousand six' WHERE a=18380;\nUPDATE t2 SET c='sixty-nine thousand seven hundred fifty-seven' WHERE a=18381;\nUPDATE t2 SET c='thirty-three thousand seven hundred nineteen' WHERE a=18382;\nUPDATE t2 SET c='forty-nine thousand twenty-one' WHERE a=18383;\nUPDATE t2 SET c='twenty thousand four hundred sixty-eight' WHERE a=18384;\nUPDATE t2 SET c='forty-one thousand eight hundred thirty-four' WHERE a=18385;\nUPDATE t2 SET c='fifty-seven thousand five hundred ninety' WHERE a=18386;\nUPDATE t2 SET c='seventy-one thousand four hundred thirty-two' WHERE a=18387;\nUPDATE t2 SET c='twenty-two thousand eight hundred forty-six' WHERE a=18388;\nUPDATE t2 SET c='twenty-six thousand four hundred forty-six' WHERE a=18389;\nUPDATE t2 SET c='seventy-six thousand fifty-nine' WHERE a=18390;\nUPDATE t2 SET c='seventeen thousand five hundred sixty-six' WHERE a=18391;\nUPDATE t2 SET c='sixty-seven thousand seven hundred eleven' WHERE a=18392;\nUPDATE t2 SET c='thirty-two thousand three hundred twenty-two' WHERE a=18393;\nUPDATE t2 SET c='forty-eight thousand seven hundred thirty-four' WHERE a=18394;\nUPDATE t2 SET c='ninety thousand six hundred sixty-seven' WHERE a=18395;\nUPDATE t2 SET c='sixty-four thousand nine hundred five' WHERE a=18396;\nUPDATE t2 SET c='eighty-four thousand two hundred eighty-two' WHERE a=18397;\nUPDATE t2 SET c='seventy-eight thousand two hundred twenty-two' WHERE a=18398;\nUPDATE t2 SET c='ninety-two thousand three hundred eight' WHERE a=18399;\nUPDATE t2 SET c='twenty-seven thousand five hundred ninety-three' WHERE a=18400;\nUPDATE t2 SET c='thirty-three thousand thirty-two' WHERE a=18401;\nUPDATE t2 SET c='twenty-eight thousand five hundred eighty-one' WHERE a=18402;\nUPDATE t2 SET c='fifty-seven thousand three hundred thirteen' WHERE a=18403;\nUPDATE t2 SET c='twenty-five thousand eight hundred sixty-six' WHERE a=18404;\nUPDATE t2 SET c='fifty-four thousand nine hundred eighty-two' WHERE a=18405;\nUPDATE t2 SET c='twenty-seven thousand five hundred eighty-seven' WHERE a=18406;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-seven' WHERE a=18407;\nUPDATE t2 SET c='sixteen thousand seven hundred thirty-one' WHERE a=18408;\nUPDATE t2 SET c='fifty-six thousand four hundred ninety-five' WHERE a=18409;\nUPDATE t2 SET c='six thousand seven hundred thirty' WHERE a=18410;\nUPDATE t2 SET c='ninety-nine thousand five hundred eighty-nine' WHERE a=18411;\nUPDATE t2 SET c='eighty thousand five hundred five' WHERE a=18412;\nUPDATE t2 SET c='twenty-seven thousand six hundred ninety-one' WHERE a=18413;\nUPDATE t2 SET c='twenty-one thousand seven hundred twenty-seven' WHERE a=18414;\nUPDATE t2 SET c='seventy-four thousand four hundred nine' WHERE a=18415;\nUPDATE t2 SET c='thirty thousand three hundred thirty-five' WHERE a=18416;\nUPDATE t2 SET c='seven thousand four hundred nineteen' WHERE a=18417;\nUPDATE t2 SET c='seventy-three thousand six hundred thirty-two' WHERE a=18418;\nUPDATE t2 SET c='eight thousand two hundred eighty-one' WHERE a=18419;\nUPDATE t2 SET c='sixty-seven thousand ninety-five' WHERE a=18420;\nUPDATE t2 SET c='six thousand four hundred one' WHERE a=18421;\nUPDATE t2 SET c='forty-seven thousand nine hundred fifty-seven' WHERE a=18422;\nUPDATE t2 SET c='twenty-eight thousand four hundred sixty-four' WHERE a=18423;\nUPDATE t2 SET c='fifty-four thousand five hundred six' WHERE a=18424;\nUPDATE t2 SET c='seventy-seven thousand six hundred forty-five' WHERE a=18425;\nUPDATE t2 SET c='twenty-nine thousand two hundred four' WHERE a=18426;\nUPDATE t2 SET c='eight thousand four hundred six' WHERE a=18427;\nUPDATE t2 SET c='three thousand nine hundred eighty-two' WHERE a=18428;\nUPDATE t2 SET c='seventy-seven thousand nine hundred fifty-four' WHERE a=18429;\nUPDATE t2 SET c='twelve thousand six hundred ninety' WHERE a=18430;\nUPDATE t2 SET c='eighty-one thousand sixty-seven' WHERE a=18431;\nUPDATE t2 SET c='thirty-nine thousand seven hundred fifty-six' WHERE a=18432;\nUPDATE t2 SET c='twenty-three thousand seven hundred forty-two' WHERE a=18433;\nUPDATE t2 SET c='fifty-seven thousand nine hundred sixty-two' WHERE a=18434;\nUPDATE t2 SET c='ten thousand seven hundred ninety-eight' WHERE a=18435;\nUPDATE t2 SET c='thirty-one thousand six hundred thirty-seven' WHERE a=18436;\nUPDATE t2 SET c='twenty-four thousand six hundred eleven' WHERE a=18437;\nUPDATE t2 SET c='eighty thousand four hundred seventy-nine' WHERE a=18438;\nUPDATE t2 SET c='twenty-seven thousand three hundred fifty-five' WHERE a=18439;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-one' WHERE a=18440;\nUPDATE t2 SET c='five hundred twenty-five' WHERE a=18441;\nUPDATE t2 SET c='ninety-one thousand one hundred ninety-four' WHERE a=18442;\nUPDATE t2 SET c='one thousand nineteen' WHERE a=18443;\nUPDATE t2 SET c='five thousand five hundred ninety-three' WHERE a=18444;\nUPDATE t2 SET c='fourteen thousand four hundred fifteen' WHERE a=18445;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty-nine' WHERE a=18446;\nUPDATE t2 SET c='ninety-one thousand one hundred twenty-three' WHERE a=18447;\nUPDATE t2 SET c='seventeen thousand two hundred seven' WHERE a=18448;\nUPDATE t2 SET c='fifty-seven thousand seven hundred fifteen' WHERE a=18449;\nUPDATE t2 SET c='eighty-four thousand three hundred eighty-one' WHERE a=18450;\nUPDATE t2 SET c='ninety-four thousand two hundred forty-two' WHERE a=18451;\nUPDATE t2 SET c='three thousand three hundred sixty-three' WHERE a=18452;\nUPDATE t2 SET c='thirty-three thousand two hundred thirty-six' WHERE a=18453;\nUPDATE t2 SET c='thirty-eight thousand thirty-nine' WHERE a=18454;\nUPDATE t2 SET c='seventeen thousand three hundred eighty-five' WHERE a=18455;\nUPDATE t2 SET c='thirty-two thousand six hundred sixty' WHERE a=18456;\nUPDATE t2 SET c='seventy-six thousand five hundred eighty-nine' WHERE a=18457;\nUPDATE t2 SET c='one thousand two hundred forty-one' WHERE a=18458;\nUPDATE t2 SET c='twenty thousand four hundred twenty-eight' WHERE a=18459;\nUPDATE t2 SET c='fifty-eight thousand two hundred eighty-three' WHERE a=18460;\nUPDATE t2 SET c='thirty-four thousand two hundred sixty-one' WHERE a=18461;\nUPDATE t2 SET c='eight thousand seven' WHERE a=18462;\nUPDATE t2 SET c='fifty-three thousand nine hundred forty-three' WHERE a=18463;\nUPDATE t2 SET c='sixty-seven thousand six hundred ninety-eight' WHERE a=18464;\nUPDATE t2 SET c='fifty-three thousand nine hundred twenty-three' WHERE a=18465;\nUPDATE t2 SET c='fifty-six thousand eighty-six' WHERE a=18466;\nUPDATE t2 SET c='two thousand six hundred sixteen' WHERE a=18467;\nUPDATE t2 SET c='fifty-seven thousand nine hundred ninety' WHERE a=18468;\nUPDATE t2 SET c='twelve thousand seventy-four' WHERE a=18469;\nUPDATE t2 SET c='thirteen thousand twenty-nine' WHERE a=18470;\nUPDATE t2 SET c='seventy-three thousand six hundred eighteen' WHERE a=18471;\nUPDATE t2 SET c='seventy thousand eight hundred seventy-five' WHERE a=18472;\nUPDATE t2 SET c='ninety-two thousand seventy-one' WHERE a=18473;\nUPDATE t2 SET c='eighty thousand one hundred sixty-four' WHERE a=18474;\nUPDATE t2 SET c='sixty-four thousand one hundred sixty-four' WHERE a=18475;\nUPDATE t2 SET c='forty-four thousand one hundred six' WHERE a=18476;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy' WHERE a=18477;\nUPDATE t2 SET c='seventy-eight thousand eighty-three' WHERE a=18478;\nUPDATE t2 SET c='forty-eight thousand one hundred four' WHERE a=18479;\nUPDATE t2 SET c='twelve thousand one hundred ninety-two' WHERE a=18480;\nUPDATE t2 SET c='thirteen thousand sixteen' WHERE a=18481;\nUPDATE t2 SET c='ninety-one thousand four hundred thirty-five' WHERE a=18482;\nUPDATE t2 SET c='fifty-seven thousand two hundred twenty-four' WHERE a=18483;\nUPDATE t2 SET c='seventy-five thousand four hundred fifty' WHERE a=18484;\nUPDATE t2 SET c='forty-six thousand seven hundred fifty-nine' WHERE a=18485;\nUPDATE t2 SET c='seventy-two thousand six hundred fifty-five' WHERE a=18486;\nUPDATE t2 SET c='four thousand seven hundred sixty' WHERE a=18487;\nUPDATE t2 SET c='sixty-five thousand six hundred eighty-nine' WHERE a=18488;\nUPDATE t2 SET c='ninety-nine thousand fifty' WHERE a=18489;\nUPDATE t2 SET c='fifty-seven thousand eight hundred eighty-four' WHERE a=18490;\nUPDATE t2 SET c='ninety-nine thousand eighty-four' WHERE a=18491;\nUPDATE t2 SET c='forty-five thousand four hundred eighty-five' WHERE a=18492;\nUPDATE t2 SET c='forty thousand nine hundred sixty-five' WHERE a=18493;\nUPDATE t2 SET c='eleven thousand four hundred forty-six' WHERE a=18494;\nUPDATE t2 SET c='seventy-four thousand three hundred forty' WHERE a=18495;\nUPDATE t2 SET c='forty-three thousand seven hundred seventy-six' WHERE a=18496;\nUPDATE t2 SET c='forty-three thousand nine hundred sixty' WHERE a=18497;\nUPDATE t2 SET c='seventy-six thousand nine hundred seventy-four' WHERE a=18498;\nUPDATE t2 SET c='fifty-seven thousand six hundred three' WHERE a=18499;\nUPDATE t2 SET c='fifty-four thousand three hundred twenty-two' WHERE a=18500;\nUPDATE t2 SET c='forty-seven thousand three hundred twenty-five' WHERE a=18501;\nUPDATE t2 SET c='thirty-five thousand twenty-seven' WHERE a=18502;\nUPDATE t2 SET c='fifty-one thousand four hundred four' WHERE a=18503;\nUPDATE t2 SET c='three thousand seven hundred eighty-two' WHERE a=18504;\nUPDATE t2 SET c='forty-one thousand seven hundred forty-one' WHERE a=18505;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety-three' WHERE a=18506;\nUPDATE t2 SET c='twenty-one thousand nine hundred thirty-four' WHERE a=18507;\nUPDATE t2 SET c='sixty thousand seven hundred thirty-seven' WHERE a=18508;\nUPDATE t2 SET c='sixty-four thousand two hundred eighty-one' WHERE a=18509;\nUPDATE t2 SET c='seventy-four thousand four hundred nineteen' WHERE a=18510;\nUPDATE t2 SET c='sixty-eight thousand six hundred fifty-three' WHERE a=18511;\nUPDATE t2 SET c='twenty-six thousand one hundred sixty-six' WHERE a=18512;\nUPDATE t2 SET c='sixteen thousand one hundred seventy-five' WHERE a=18513;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-seven' WHERE a=18514;\nUPDATE t2 SET c='seventy-seven thousand six hundred twenty' WHERE a=18515;\nUPDATE t2 SET c='eighty thousand seven hundred thirty-four' WHERE a=18516;\nUPDATE t2 SET c='sixty-one thousand seven hundred sixty-nine' WHERE a=18517;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-one' WHERE a=18518;\nUPDATE t2 SET c='twenty-five thousand two hundred twenty-one' WHERE a=18519;\nUPDATE t2 SET c='ninety-two thousand one hundred sixty-two' WHERE a=18520;\nUPDATE t2 SET c='thirty-three thousand seven hundred forty-seven' WHERE a=18521;\nUPDATE t2 SET c='sixty-eight thousand three hundred seven' WHERE a=18522;\nUPDATE t2 SET c='fifty-three thousand six hundred thirty-eight' WHERE a=18523;\nUPDATE t2 SET c='seventy-one thousand seven hundred seventy-five' WHERE a=18524;\nUPDATE t2 SET c='eighty thousand four hundred seventy-eight' WHERE a=18525;\nUPDATE t2 SET c='sixty-six thousand two hundred sixty-six' WHERE a=18526;\nUPDATE t2 SET c='thirteen thousand five hundred fifty-eight' WHERE a=18527;\nUPDATE t2 SET c='eighty-eight thousand seven hundred eighty-two' WHERE a=18528;\nUPDATE t2 SET c='sixty-five thousand six hundred fifty-eight' WHERE a=18529;\nUPDATE t2 SET c='sixty-six thousand eighty-one' WHERE a=18530;\nUPDATE t2 SET c='forty-one thousand nine hundred seventy-five' WHERE a=18531;\nUPDATE t2 SET c='twelve thousand six hundred twenty-three' WHERE a=18532;\nUPDATE t2 SET c='sixty-one thousand fifty-eight' WHERE a=18533;\nUPDATE t2 SET c='ten thousand two hundred seventy-three' WHERE a=18534;\nUPDATE t2 SET c='ten thousand twenty-four' WHERE a=18535;\nUPDATE t2 SET c='fifty-nine thousand five hundred forty-four' WHERE a=18536;\nUPDATE t2 SET c='ninety-eight thousand seven hundred one' WHERE a=18537;\nUPDATE t2 SET c='thirty-seven thousand one hundred twenty-four' WHERE a=18538;\nUPDATE t2 SET c='twenty-nine thousand eight hundred one' WHERE a=18539;\nUPDATE t2 SET c='ninety thousand four hundred fourteen' WHERE a=18540;\nUPDATE t2 SET c='thirty-three thousand nine hundred seventy-six' WHERE a=18541;\nUPDATE t2 SET c='eleven thousand two hundred twenty-seven' WHERE a=18542;\nUPDATE t2 SET c='ninety-one thousand three hundred thirty-seven' WHERE a=18543;\nUPDATE t2 SET c='eight thousand seven hundred fifty-seven' WHERE a=18544;\nUPDATE t2 SET c='eighty-eight thousand three hundred seventy-eight' WHERE a=18545;\nUPDATE t2 SET c='fifty-four thousand seven hundred eighty-three' WHERE a=18546;\nUPDATE t2 SET c='fifty-one thousand eight hundred ninety' WHERE a=18547;\nUPDATE t2 SET c='eighteen thousand eight hundred fifty-five' WHERE a=18548;\nUPDATE t2 SET c='seventy-three thousand four hundred forty-two' WHERE a=18549;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-four' WHERE a=18550;\nUPDATE t2 SET c='ninety-seven thousand four hundred thirty-six' WHERE a=18551;\nUPDATE t2 SET c='twenty thousand one hundred thirty-six' WHERE a=18552;\nUPDATE t2 SET c='sixty-seven thousand five hundred forty-nine' WHERE a=18553;\nUPDATE t2 SET c='forty-three thousand nine hundred twenty-one' WHERE a=18554;\nUPDATE t2 SET c='ninety-nine thousand six hundred seven' WHERE a=18555;\nUPDATE t2 SET c='eighty-seven thousand two hundred forty-seven' WHERE a=18556;\nUPDATE t2 SET c='forty-seven thousand nine hundred thirty-nine' WHERE a=18557;\nUPDATE t2 SET c='seventy-one thousand one hundred seventy-seven' WHERE a=18558;\nUPDATE t2 SET c='forty-eight thousand four hundred fourteen' WHERE a=18559;\nUPDATE t2 SET c='thirty-four thousand two hundred eighty-two' WHERE a=18560;\nUPDATE t2 SET c='fourteen thousand one hundred twenty-seven' WHERE a=18561;\nUPDATE t2 SET c='fifty-three thousand two hundred thirty-seven' WHERE a=18562;\nUPDATE t2 SET c='sixty-eight thousand four hundred nine' WHERE a=18563;\nUPDATE t2 SET c='ninety-five thousand seventy-nine' WHERE a=18564;\nUPDATE t2 SET c='forty-two thousand seven hundred six' WHERE a=18565;\nUPDATE t2 SET c='forty thousand eight hundred twenty-two' WHERE a=18566;\nUPDATE t2 SET c='sixty-four thousand seven hundred thirty-nine' WHERE a=18567;\nUPDATE t2 SET c='seventeen thousand one hundred forty-one' WHERE a=18568;\nUPDATE t2 SET c='seventy-seven thousand seven' WHERE a=18569;\nUPDATE t2 SET c='nineteen thousand five hundred ninety-three' WHERE a=18570;\nUPDATE t2 SET c='one thousand five hundred sixty-four' WHERE a=18571;\nUPDATE t2 SET c='five thousand five hundred twenty-three' WHERE a=18572;\nUPDATE t2 SET c='seventy-nine thousand one hundred eight' WHERE a=18573;\nUPDATE t2 SET c='thirty-eight thousand two hundred eighty-six' WHERE a=18574;\nUPDATE t2 SET c='twenty-one thousand four hundred ten' WHERE a=18575;\nUPDATE t2 SET c='thirty-five thousand three hundred eighty-two' WHERE a=18576;\nUPDATE t2 SET c='sixty-seven thousand two hundred sixty-three' WHERE a=18577;\nUPDATE t2 SET c='fifty-nine thousand five hundred thirty-two' WHERE a=18578;\nUPDATE t2 SET c='fifty-nine thousand four hundred fifty-eight' WHERE a=18579;\nUPDATE t2 SET c='nine hundred eighty-five' WHERE a=18580;\nUPDATE t2 SET c='seventy-one thousand six hundred eighty-three' WHERE a=18581;\nUPDATE t2 SET c='ninety-six thousand nine hundred sixty-nine' WHERE a=18582;\nUPDATE t2 SET c='eighty-three thousand ninety-seven' WHERE a=18583;\nUPDATE t2 SET c='ninety-four thousand seven hundred eighty-one' WHERE a=18584;\nUPDATE t2 SET c='thirty thousand twelve' WHERE a=18585;\nUPDATE t2 SET c='twelve thousand four hundred thirty-two' WHERE a=18586;\nUPDATE t2 SET c='six thousand nine hundred twenty-eight' WHERE a=18587;\nUPDATE t2 SET c='ninety-two thousand forty-seven' WHERE a=18588;\nUPDATE t2 SET c='twenty-seven thousand eight hundred ten' WHERE a=18589;\nUPDATE t2 SET c='twenty thousand two hundred forty-six' WHERE a=18590;\nUPDATE t2 SET c='forty-eight thousand four hundred thirty-three' WHERE a=18591;\nUPDATE t2 SET c='thirty-five thousand two hundred forty' WHERE a=18592;\nUPDATE t2 SET c='twenty-nine thousand four hundred ninety-five' WHERE a=18593;\nUPDATE t2 SET c='twelve thousand nine hundred forty-one' WHERE a=18594;\nUPDATE t2 SET c='ten thousand six hundred thirty-five' WHERE a=18595;\nUPDATE t2 SET c='ten thousand eight hundred ninety-six' WHERE a=18596;\nUPDATE t2 SET c='fifty-six thousand five hundred ninety-nine' WHERE a=18597;\nUPDATE t2 SET c='eighty-seven thousand five hundred nine' WHERE a=18598;\nUPDATE t2 SET c='seventy-three thousand one hundred fifty-five' WHERE a=18599;\nUPDATE t2 SET c='forty-nine thousand nine hundred fifty-eight' WHERE a=18600;\nUPDATE t2 SET c='two thousand two hundred seventy-nine' WHERE a=18601;\nUPDATE t2 SET c='three thousand three hundred twenty-four' WHERE a=18602;\nUPDATE t2 SET c='sixteen thousand seven hundred sixty-seven' WHERE a=18603;\nUPDATE t2 SET c='seventy-six thousand two hundred twenty-four' WHERE a=18604;\nUPDATE t2 SET c='forty-six thousand thirty-nine' WHERE a=18605;\nUPDATE t2 SET c='fifty-three thousand one hundred eighty-eight' WHERE a=18606;\nUPDATE t2 SET c='twenty-four thousand seven hundred eighty-six' WHERE a=18607;\nUPDATE t2 SET c='eleven thousand two hundred two' WHERE a=18608;\nUPDATE t2 SET c='ninety-nine thousand four hundred forty' WHERE a=18609;\nUPDATE t2 SET c='seventeen thousand seven hundred fifty-six' WHERE a=18610;\nUPDATE t2 SET c='seventy-four thousand six hundred seventy-seven' WHERE a=18611;\nUPDATE t2 SET c='seventy-nine thousand seven hundred twenty' WHERE a=18612;\nUPDATE t2 SET c='ninety-nine thousand six hundred eighteen' WHERE a=18613;\nUPDATE t2 SET c='seventeen thousand two hundred thirty-nine' WHERE a=18614;\nUPDATE t2 SET c='twenty-nine thousand seventy-six' WHERE a=18615;\nUPDATE t2 SET c='eleven thousand one hundred thirty-nine' WHERE a=18616;\nUPDATE t2 SET c='ninety-six thousand two hundred eighty-six' WHERE a=18617;\nUPDATE t2 SET c='forty-seven thousand one hundred twenty-two' WHERE a=18618;\nUPDATE t2 SET c='seventy-one thousand seven hundred nine' WHERE a=18619;\nUPDATE t2 SET c='fifty-two thousand sixty-six' WHERE a=18620;\nUPDATE t2 SET c='sixty thousand two hundred seventy-two' WHERE a=18621;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety-seven' WHERE a=18622;\nUPDATE t2 SET c='fifty-four thousand three hundred ninety-five' WHERE a=18623;\nUPDATE t2 SET c='seventy-nine thousand three hundred sixty' WHERE a=18624;\nUPDATE t2 SET c='seventy-seven thousand one hundred forty-six' WHERE a=18625;\nUPDATE t2 SET c='seventy-five thousand three hundred seven' WHERE a=18626;\nUPDATE t2 SET c='twenty-four thousand eight hundred twelve' WHERE a=18627;\nUPDATE t2 SET c='nine thousand three hundred forty-three' WHERE a=18628;\nUPDATE t2 SET c='thirteen thousand five hundred forty-two' WHERE a=18629;\nUPDATE t2 SET c='five thousand two hundred forty-nine' WHERE a=18630;\nUPDATE t2 SET c='thirty thousand nine hundred ninety' WHERE a=18631;\nUPDATE t2 SET c='eleven thousand three hundred ninety-nine' WHERE a=18632;\nUPDATE t2 SET c='ninety thousand six hundred seventeen' WHERE a=18633;\nUPDATE t2 SET c='eighty-five thousand two hundred fifty-eight' WHERE a=18634;\nUPDATE t2 SET c='forty-eight thousand three hundred twenty-seven' WHERE a=18635;\nUPDATE t2 SET c='ninety thousand eight hundred seventy-two' WHERE a=18636;\nUPDATE t2 SET c='ninety-eight thousand four hundred eighty-eight' WHERE a=18637;\nUPDATE t2 SET c='six thousand one hundred sixty-five' WHERE a=18638;\nUPDATE t2 SET c='ten thousand seven hundred eighty-three' WHERE a=18639;\nUPDATE t2 SET c='eighty-nine thousand nine hundred fifty-four' WHERE a=18640;\nUPDATE t2 SET c='forty-four thousand six hundred eighty-two' WHERE a=18641;\nUPDATE t2 SET c='twenty-eight thousand eight hundred thirty-three' WHERE a=18642;\nUPDATE t2 SET c='ninety-nine thousand one hundred seventy' WHERE a=18643;\nUPDATE t2 SET c='nine thousand six hundred seventy-one' WHERE a=18644;\nUPDATE t2 SET c='seventeen thousand five hundred fifty' WHERE a=18645;\nUPDATE t2 SET c='ninety-six thousand seven hundred thirty-two' WHERE a=18646;\nUPDATE t2 SET c='eighty-four thousand five hundred twenty-eight' WHERE a=18647;\nUPDATE t2 SET c='sixty-five thousand six hundred twenty-two' WHERE a=18648;\nUPDATE t2 SET c='fifty thousand nine hundred ninety-six' WHERE a=18649;\nUPDATE t2 SET c='seven thousand five hundred seventy-one' WHERE a=18650;\nUPDATE t2 SET c='twenty-one thousand nine hundred thirty-two' WHERE a=18651;\nUPDATE t2 SET c='twenty-eight thousand two hundred forty-six' WHERE a=18652;\nUPDATE t2 SET c='ninety thousand six hundred sixty-two' WHERE a=18653;\nUPDATE t2 SET c='seventy-six thousand thirty-five' WHERE a=18654;\nUPDATE t2 SET c='twenty-six thousand nine hundred one' WHERE a=18655;\nUPDATE t2 SET c='thirty-three thousand eight hundred fifty-nine' WHERE a=18656;\nUPDATE t2 SET c='eighty-eight thousand five hundred thirty-four' WHERE a=18657;\nUPDATE t2 SET c='thirty-seven thousand one' WHERE a=18658;\nUPDATE t2 SET c='six thousand four hundred seventy-five' WHERE a=18659;\nUPDATE t2 SET c='ninety-eight thousand nine hundred three' WHERE a=18660;\nUPDATE t2 SET c='forty-one thousand four hundred sixty-one' WHERE a=18661;\nUPDATE t2 SET c='eighty-three thousand seventy-one' WHERE a=18662;\nUPDATE t2 SET c='eighty thousand seven hundred forty-three' WHERE a=18663;\nUPDATE t2 SET c='ten thousand one hundred thirty-nine' WHERE a=18664;\nUPDATE t2 SET c='nine thousand five hundred six' WHERE a=18665;\nUPDATE t2 SET c='forty-one thousand eight hundred thirty-three' WHERE a=18666;\nUPDATE t2 SET c='sixty-seven thousand eight hundred forty-nine' WHERE a=18667;\nUPDATE t2 SET c='fourteen thousand four hundred nineteen' WHERE a=18668;\nUPDATE t2 SET c='seventy-eight thousand one hundred ten' WHERE a=18669;\nUPDATE t2 SET c='thirty-four thousand ninety' WHERE a=18670;\nUPDATE t2 SET c='four thousand seven hundred six' WHERE a=18671;\nUPDATE t2 SET c='thirty-five thousand four hundred sixty-three' WHERE a=18672;\nUPDATE t2 SET c='sixty-six thousand eight hundred seventy-eight' WHERE a=18673;\nUPDATE t2 SET c='forty-six thousand four hundred eighty-nine' WHERE a=18674;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty-six' WHERE a=18675;\nUPDATE t2 SET c='thirty-eight thousand seven hundred eighteen' WHERE a=18676;\nUPDATE t2 SET c='thirty-four thousand three hundred twenty' WHERE a=18677;\nUPDATE t2 SET c='ten thousand eight hundred seventeen' WHERE a=18678;\nUPDATE t2 SET c='eight hundred ninety-one' WHERE a=18679;\nUPDATE t2 SET c='five thousand nine hundred sixty-one' WHERE a=18680;\nUPDATE t2 SET c='fifty-two thousand seven hundred six' WHERE a=18681;\nUPDATE t2 SET c='thirty-three thousand nine hundred forty-five' WHERE a=18682;\nUPDATE t2 SET c='ninety-seven thousand one hundred thirty-five' WHERE a=18683;\nUPDATE t2 SET c='fifty-three thousand three hundred forty-seven' WHERE a=18684;\nUPDATE t2 SET c='twenty-six thousand five hundred sixty-one' WHERE a=18685;\nUPDATE t2 SET c='forty thousand four hundred thirty-four' WHERE a=18686;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventy-two' WHERE a=18687;\nUPDATE t2 SET c='six thousand one hundred fifty-seven' WHERE a=18688;\nUPDATE t2 SET c='fifty-nine thousand three hundred seventeen' WHERE a=18689;\nUPDATE t2 SET c='nineteen thousand nine hundred seventy' WHERE a=18690;\nUPDATE t2 SET c='forty-seven thousand seven hundred eighty' WHERE a=18691;\nUPDATE t2 SET c='thirty-three thousand one hundred forty-six' WHERE a=18692;\nUPDATE t2 SET c='four thousand five hundred forty-two' WHERE a=18693;\nUPDATE t2 SET c='ninety-six thousand two hundred twenty-five' WHERE a=18694;\nUPDATE t2 SET c='twelve thousand nine hundred thirty-three' WHERE a=18695;\nUPDATE t2 SET c='nineteen thousand eight hundred seventy-nine' WHERE a=18696;\nUPDATE t2 SET c='seventy-seven thousand eight hundred thirty-four' WHERE a=18697;\nUPDATE t2 SET c='sixty-one thousand five hundred sixty-two' WHERE a=18698;\nUPDATE t2 SET c='eighty-five thousand six hundred seventeen' WHERE a=18699;\nUPDATE t2 SET c='sixty-five thousand seven hundred fifty' WHERE a=18700;\nUPDATE t2 SET c='seventy-two thousand five hundred sixty-two' WHERE a=18701;\nUPDATE t2 SET c='thirty thousand eleven' WHERE a=18702;\nUPDATE t2 SET c='seventy-four thousand eighteen' WHERE a=18703;\nUPDATE t2 SET c='sixty-eight thousand three hundred fifty-seven' WHERE a=18704;\nUPDATE t2 SET c='two thousand nine hundred twenty-eight' WHERE a=18705;\nUPDATE t2 SET c='sixty-five thousand nine hundred fifty-eight' WHERE a=18706;\nUPDATE t2 SET c='sixty-five thousand nine hundred eighty-six' WHERE a=18707;\nUPDATE t2 SET c='seventy-four thousand nine hundred forty-six' WHERE a=18708;\nUPDATE t2 SET c='eighty-nine thousand sixty-four' WHERE a=18709;\nUPDATE t2 SET c='sixty-four thousand four hundred ninety' WHERE a=18710;\nUPDATE t2 SET c='seventy-five thousand three hundred four' WHERE a=18711;\nUPDATE t2 SET c='ten thousand eight hundred ninety-nine' WHERE a=18712;\nUPDATE t2 SET c='seventy-one thousand five hundred forty-eight' WHERE a=18713;\nUPDATE t2 SET c='eighty-four thousand nine hundred thirty-five' WHERE a=18714;\nUPDATE t2 SET c='sixty-four thousand seven hundred thirty-three' WHERE a=18715;\nUPDATE t2 SET c='fifty-seven thousand three hundred twenty-six' WHERE a=18716;\nUPDATE t2 SET c='fourteen thousand nine hundred thirty-one' WHERE a=18717;\nUPDATE t2 SET c='twenty-two thousand nine hundred fifty-three' WHERE a=18718;\nUPDATE t2 SET c='sixty-four thousand sixty-nine' WHERE a=18719;\nUPDATE t2 SET c='ten thousand three hundred fifty-four' WHERE a=18720;\nUPDATE t2 SET c='thirty-three thousand six hundred twenty-eight' WHERE a=18721;\nUPDATE t2 SET c='sixty-five thousand one hundred thirty-nine' WHERE a=18722;\nUPDATE t2 SET c='ninety thousand eight hundred eighty-two' WHERE a=18723;\nUPDATE t2 SET c='fifty-two thousand three hundred ninety-seven' WHERE a=18724;\nUPDATE t2 SET c='seventy-five thousand four hundred thirty-seven' WHERE a=18725;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-six' WHERE a=18726;\nUPDATE t2 SET c='eleven thousand three hundred seventy' WHERE a=18727;\nUPDATE t2 SET c='thirty-seven thousand two hundred seventy-three' WHERE a=18728;\nUPDATE t2 SET c='sixty thousand seven hundred thirty-five' WHERE a=18729;\nUPDATE t2 SET c='seven thousand seven hundred thirty-seven' WHERE a=18730;\nUPDATE t2 SET c='one hundred forty-three' WHERE a=18731;\nUPDATE t2 SET c='seventy-nine thousand six hundred sixty-seven' WHERE a=18732;\nUPDATE t2 SET c='thirty-two thousand seven hundred three' WHERE a=18733;\nUPDATE t2 SET c='twenty-one thousand nine hundred forty-two' WHERE a=18734;\nUPDATE t2 SET c='seventy-three thousand two hundred eighty-eight' WHERE a=18735;\nUPDATE t2 SET c='three hundred ninety-seven' WHERE a=18736;\nUPDATE t2 SET c='nineteen thousand one hundred fifty-five' WHERE a=18737;\nUPDATE t2 SET c='fifty-three thousand four hundred four' WHERE a=18738;\nUPDATE t2 SET c='thirty thousand two hundred seventy-seven' WHERE a=18739;\nUPDATE t2 SET c='five thousand seven hundred ninety-six' WHERE a=18740;\nUPDATE t2 SET c='eighty thousand nine hundred ninety-nine' WHERE a=18741;\nUPDATE t2 SET c='eighty-five thousand one hundred eighty-seven' WHERE a=18742;\nUPDATE t2 SET c='sixty-four thousand nine hundred fifty-two' WHERE a=18743;\nUPDATE t2 SET c='forty-two thousand four hundred ninety-four' WHERE a=18744;\nUPDATE t2 SET c='ninety-six thousand thirty-seven' WHERE a=18745;\nUPDATE t2 SET c='eighty-six thousand sixty-six' WHERE a=18746;\nUPDATE t2 SET c='nineteen thousand seven hundred ten' WHERE a=18747;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-seven' WHERE a=18748;\nUPDATE t2 SET c='thirty-eight thousand six hundred eighty-two' WHERE a=18749;\nUPDATE t2 SET c='thirty thousand six' WHERE a=18750;\nUPDATE t2 SET c='one thousand four hundred forty-five' WHERE a=18751;\nUPDATE t2 SET c='seventy-one thousand six hundred seventeen' WHERE a=18752;\nUPDATE t2 SET c='sixty-seven thousand one hundred sixty-five' WHERE a=18753;\nUPDATE t2 SET c='fifty-three thousand five hundred twenty-seven' WHERE a=18754;\nUPDATE t2 SET c='fifty-seven thousand nine hundred two' WHERE a=18755;\nUPDATE t2 SET c='forty-seven thousand seven hundred ninety-eight' WHERE a=18756;\nUPDATE t2 SET c='twenty thousand five hundred ten' WHERE a=18757;\nUPDATE t2 SET c='seventy-one thousand eight hundred fourteen' WHERE a=18758;\nUPDATE t2 SET c='four thousand three hundred thirty-nine' WHERE a=18759;\nUPDATE t2 SET c='eighty-five thousand six' WHERE a=18760;\nUPDATE t2 SET c='seventy-eight thousand five hundred eighteen' WHERE a=18761;\nUPDATE t2 SET c='twenty-four thousand nine hundred sixty-two' WHERE a=18762;\nUPDATE t2 SET c='thirty-seven thousand one hundred thirty-seven' WHERE a=18763;\nUPDATE t2 SET c='ninety-two thousand four hundred twenty-nine' WHERE a=18764;\nUPDATE t2 SET c='seventy-nine thousand one hundred one' WHERE a=18765;\nUPDATE t2 SET c='twenty-three thousand nine hundred thirty-three' WHERE a=18766;\nUPDATE t2 SET c='fifty-one thousand eight hundred forty-two' WHERE a=18767;\nUPDATE t2 SET c='nine thousand five hundred eighty-four' WHERE a=18768;\nUPDATE t2 SET c='sixty-one thousand two hundred eighty' WHERE a=18769;\nUPDATE t2 SET c='thirty-seven thousand six hundred sixty-three' WHERE a=18770;\nUPDATE t2 SET c='fifty-seven thousand eight hundred forty-nine' WHERE a=18771;\nUPDATE t2 SET c='forty-three thousand five hundred fifty-seven' WHERE a=18772;\nUPDATE t2 SET c='sixty thousand eight hundred' WHERE a=18773;\nUPDATE t2 SET c='thirty-three thousand one hundred ninety-two' WHERE a=18774;\nUPDATE t2 SET c='ninety-two thousand six hundred eighty-one' WHERE a=18775;\nUPDATE t2 SET c='eight hundred eighty-one' WHERE a=18776;\nUPDATE t2 SET c='ninety-seven thousand sixty-one' WHERE a=18777;\nUPDATE t2 SET c='eighty-five thousand two hundred forty-one' WHERE a=18778;\nUPDATE t2 SET c='ten thousand sixty-five' WHERE a=18779;\nUPDATE t2 SET c='fifty-one thousand one hundred seventy-nine' WHERE a=18780;\nUPDATE t2 SET c='sixteen thousand two hundred six' WHERE a=18781;\nUPDATE t2 SET c='one thousand sixty-nine' WHERE a=18782;\nUPDATE t2 SET c='twenty-nine thousand five hundred forty-eight' WHERE a=18783;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fifty-two' WHERE a=18784;\nUPDATE t2 SET c='six thousand seven hundred twenty-nine' WHERE a=18785;\nUPDATE t2 SET c='fifty-three thousand five hundred seventy-seven' WHERE a=18786;\nUPDATE t2 SET c='fifty thousand nine hundred twenty-one' WHERE a=18787;\nUPDATE t2 SET c='fifty-nine thousand sixty-two' WHERE a=18788;\nUPDATE t2 SET c='eighty-eight thousand six hundred three' WHERE a=18789;\nUPDATE t2 SET c='ninety-four thousand six hundred seventy-four' WHERE a=18790;\nUPDATE t2 SET c='two thousand nine hundred twenty-one' WHERE a=18791;\nUPDATE t2 SET c='sixty-three thousand seven hundred thirty-six' WHERE a=18792;\nUPDATE t2 SET c='forty-eight thousand one hundred eighty' WHERE a=18793;\nUPDATE t2 SET c='ninety-one thousand two hundred ten' WHERE a=18794;\nUPDATE t2 SET c='twenty-four thousand two hundred seven' WHERE a=18795;\nUPDATE t2 SET c='ninety-one thousand six hundred six' WHERE a=18796;\nUPDATE t2 SET c='forty-one thousand three hundred sixty-three' WHERE a=18797;\nUPDATE t2 SET c='fifty-nine thousand one hundred twenty-four' WHERE a=18798;\nUPDATE t2 SET c='fifty-three thousand four hundred forty-two' WHERE a=18799;\nUPDATE t2 SET c='fifty-six thousand one hundred five' WHERE a=18800;\nUPDATE t2 SET c='ninety-two thousand eight hundred thirty-five' WHERE a=18801;\nUPDATE t2 SET c='twenty-four thousand two hundred eighty' WHERE a=18802;\nUPDATE t2 SET c='eighty-six thousand five hundred seventy-eight' WHERE a=18803;\nUPDATE t2 SET c='forty-four thousand one hundred twenty-five' WHERE a=18804;\nUPDATE t2 SET c='fifty-nine thousand one hundred sixty' WHERE a=18805;\nUPDATE t2 SET c='thirty thousand four hundred fifty' WHERE a=18806;\nUPDATE t2 SET c='twelve thousand eight hundred fifty-three' WHERE a=18807;\nUPDATE t2 SET c='forty-seven thousand eight hundred sixty-nine' WHERE a=18808;\nUPDATE t2 SET c='seventy-five thousand six hundred seventeen' WHERE a=18809;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-eight' WHERE a=18810;\nUPDATE t2 SET c='seventy-nine thousand one hundred sixty-six' WHERE a=18811;\nUPDATE t2 SET c='forty-nine thousand six hundred fifteen' WHERE a=18812;\nUPDATE t2 SET c='ninety-one thousand eight hundred sixty-three' WHERE a=18813;\nUPDATE t2 SET c='sixty thousand five hundred twenty-two' WHERE a=18814;\nUPDATE t2 SET c='ninety-four thousand two hundred forty-six' WHERE a=18815;\nUPDATE t2 SET c='eight thousand eight hundred eighty-nine' WHERE a=18816;\nUPDATE t2 SET c='eighty-seven thousand six hundred sixty-nine' WHERE a=18817;\nUPDATE t2 SET c='ninety-one thousand two hundred one' WHERE a=18818;\nUPDATE t2 SET c='sixty-seven thousand three hundred forty-two' WHERE a=18819;\nUPDATE t2 SET c='eighty thousand twenty-nine' WHERE a=18820;\nUPDATE t2 SET c='ninety-four thousand six hundred fifty-eight' WHERE a=18821;\nUPDATE t2 SET c='fifteen thousand nine hundred forty-seven' WHERE a=18822;\nUPDATE t2 SET c='forty-one thousand six hundred one' WHERE a=18823;\nUPDATE t2 SET c='thirty-seven thousand sixty' WHERE a=18824;\nUPDATE t2 SET c='eighty-nine thousand four hundred twelve' WHERE a=18825;\nUPDATE t2 SET c='three hundred forty-two' WHERE a=18826;\nUPDATE t2 SET c='nineteen thousand three hundred sixty' WHERE a=18827;\nUPDATE t2 SET c='thirty-five thousand seven hundred fifty-four' WHERE a=18828;\nUPDATE t2 SET c='sixty-eight thousand four hundred eighty-four' WHERE a=18829;\nUPDATE t2 SET c='twenty-eight thousand sixty-seven' WHERE a=18830;\nUPDATE t2 SET c='sixty-one thousand four hundred seventy-eight' WHERE a=18831;\nUPDATE t2 SET c='ninety-four thousand eight hundred thirty-three' WHERE a=18832;\nUPDATE t2 SET c='twenty-one thousand four hundred seventy-nine' WHERE a=18833;\nUPDATE t2 SET c='eighty-four thousand eight hundred fifty-two' WHERE a=18834;\nUPDATE t2 SET c='ninety thousand nine hundred fifty-four' WHERE a=18835;\nUPDATE t2 SET c='sixty-eight thousand five hundred eighty-eight' WHERE a=18836;\nUPDATE t2 SET c='fourteen thousand two' WHERE a=18837;\nUPDATE t2 SET c='twenty-four thousand nine hundred seventy-nine' WHERE a=18838;\nUPDATE t2 SET c='forty-one thousand five hundred nineteen' WHERE a=18839;\nUPDATE t2 SET c='twenty-nine thousand three hundred ninety-three' WHERE a=18840;\nUPDATE t2 SET c='twelve thousand one' WHERE a=18841;\nUPDATE t2 SET c='fifty-five thousand one hundred fourteen' WHERE a=18842;\nUPDATE t2 SET c='eleven thousand one hundred fifty-four' WHERE a=18843;\nUPDATE t2 SET c='fifty-six thousand seventy-one' WHERE a=18844;\nUPDATE t2 SET c='twenty-one thousand seven hundred thirty-seven' WHERE a=18845;\nUPDATE t2 SET c='seven thousand nine hundred fourteen' WHERE a=18846;\nUPDATE t2 SET c='forty-nine thousand one hundred eighty-three' WHERE a=18847;\nUPDATE t2 SET c='sixty-seven thousand two hundred eighty-nine' WHERE a=18848;\nUPDATE t2 SET c='sixty-nine thousand nine hundred ninety-eight' WHERE a=18849;\nUPDATE t2 SET c='twenty-one thousand one hundred ninety' WHERE a=18850;\nUPDATE t2 SET c='five thousand three hundred nineteen' WHERE a=18851;\nUPDATE t2 SET c='twenty thousand eight hundred ninety-five' WHERE a=18852;\nUPDATE t2 SET c='fifty-four thousand six hundred eleven' WHERE a=18853;\nUPDATE t2 SET c='thirty-six thousand three hundred sixty-five' WHERE a=18854;\nUPDATE t2 SET c='sixty-seven thousand four hundred forty-seven' WHERE a=18855;\nUPDATE t2 SET c='eighty-four thousand one hundred sixteen' WHERE a=18856;\nUPDATE t2 SET c='eighty-eight thousand forty' WHERE a=18857;\nUPDATE t2 SET c='forty-four thousand two hundred six' WHERE a=18858;\nUPDATE t2 SET c='four thousand two hundred thirty-nine' WHERE a=18859;\nUPDATE t2 SET c='six thousand three hundred thirty-one' WHERE a=18860;\nUPDATE t2 SET c='seventy-five thousand nine hundred twenty-eight' WHERE a=18861;\nUPDATE t2 SET c='eighty-five thousand eighty-six' WHERE a=18862;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-nine' WHERE a=18863;\nUPDATE t2 SET c='fifty-eight thousand nine hundred twenty-five' WHERE a=18864;\nUPDATE t2 SET c='thirty-one thousand nine hundred seventy-one' WHERE a=18865;\nUPDATE t2 SET c='ninety-one thousand sixty-nine' WHERE a=18866;\nUPDATE t2 SET c='seventy thousand seven hundred eighty' WHERE a=18867;\nUPDATE t2 SET c='seventy-two thousand eight hundred forty-two' WHERE a=18868;\nUPDATE t2 SET c='fifty-five thousand five hundred eighty-seven' WHERE a=18869;\nUPDATE t2 SET c='eighteen thousand twenty-four' WHERE a=18870;\nUPDATE t2 SET c='forty-six thousand fifty-seven' WHERE a=18871;\nUPDATE t2 SET c='ninety-six thousand eight hundred ninety' WHERE a=18872;\nUPDATE t2 SET c='one thousand two hundred seventy-eight' WHERE a=18873;\nUPDATE t2 SET c='sixty-three thousand nine hundred fifty-three' WHERE a=18874;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-one' WHERE a=18875;\nUPDATE t2 SET c='twenty-seven thousand one hundred ninety-three' WHERE a=18876;\nUPDATE t2 SET c='fourteen thousand one hundred eighty-nine' WHERE a=18877;\nUPDATE t2 SET c='five thousand nine hundred fifty-seven' WHERE a=18878;\nUPDATE t2 SET c='twenty-six thousand one hundred forty-eight' WHERE a=18879;\nUPDATE t2 SET c='twenty-five thousand six hundred forty-eight' WHERE a=18880;\nUPDATE t2 SET c='twenty-three thousand five hundred sixty' WHERE a=18881;\nUPDATE t2 SET c='ninety-six thousand two hundred eight' WHERE a=18882;\nUPDATE t2 SET c='sixty-two thousand two hundred eighty-seven' WHERE a=18883;\nUPDATE t2 SET c='twenty-five thousand three hundred eight' WHERE a=18884;\nUPDATE t2 SET c='sixty-nine thousand five hundred eighty-two' WHERE a=18885;\nUPDATE t2 SET c='thirty-five thousand one hundred nine' WHERE a=18886;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety-eight' WHERE a=18887;\nUPDATE t2 SET c='twenty-three thousand eighty-seven' WHERE a=18888;\nUPDATE t2 SET c='forty-five thousand four hundred thirteen' WHERE a=18889;\nUPDATE t2 SET c='seven thousand two hundred ninety-eight' WHERE a=18890;\nUPDATE t2 SET c='thirteen thousand eight hundred sixty-seven' WHERE a=18891;\nUPDATE t2 SET c='five thousand nine hundred seventy-four' WHERE a=18892;\nUPDATE t2 SET c='seven hundred two' WHERE a=18893;\nUPDATE t2 SET c='forty-nine thousand five hundred forty-nine' WHERE a=18894;\nUPDATE t2 SET c='twenty-seven thousand two hundred fifty-two' WHERE a=18895;\nUPDATE t2 SET c='eight thousand three hundred twenty-four' WHERE a=18896;\nUPDATE t2 SET c='fifty-seven thousand four hundred forty-eight' WHERE a=18897;\nUPDATE t2 SET c='eighty thousand five hundred seventy-two' WHERE a=18898;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty-six' WHERE a=18899;\nUPDATE t2 SET c='eighty-three thousand two hundred thirty-two' WHERE a=18900;\nUPDATE t2 SET c='three thousand two hundred twenty-three' WHERE a=18901;\nUPDATE t2 SET c='sixty-three thousand one hundred twenty-three' WHERE a=18902;\nUPDATE t2 SET c='seventeen thousand one hundred thirty-two' WHERE a=18903;\nUPDATE t2 SET c='sixty thousand twenty-three' WHERE a=18904;\nUPDATE t2 SET c='seventeen thousand four hundred seventy-eight' WHERE a=18905;\nUPDATE t2 SET c='ninety-nine thousand three hundred twenty-nine' WHERE a=18906;\nUPDATE t2 SET c='twenty-four thousand eighty-five' WHERE a=18907;\nUPDATE t2 SET c='forty-nine thousand three hundred sixty-eight' WHERE a=18908;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-three' WHERE a=18909;\nUPDATE t2 SET c='thirty-six thousand five hundred seventeen' WHERE a=18910;\nUPDATE t2 SET c='twenty-four thousand four hundred thirty-eight' WHERE a=18911;\nUPDATE t2 SET c='forty-four thousand four hundred twenty-three' WHERE a=18912;\nUPDATE t2 SET c='sixty-one thousand eight hundred five' WHERE a=18913;\nUPDATE t2 SET c='seventy-three thousand eight hundred forty-three' WHERE a=18914;\nUPDATE t2 SET c='seventy-five thousand six hundred eighty' WHERE a=18915;\nUPDATE t2 SET c='sixty-five thousand thirty-seven' WHERE a=18916;\nUPDATE t2 SET c='fifty-two thousand seven hundred eighty' WHERE a=18917;\nUPDATE t2 SET c='thirty-six thousand four hundred ten' WHERE a=18918;\nUPDATE t2 SET c='ninety-two thousand nine hundred forty-two' WHERE a=18919;\nUPDATE t2 SET c='fifteen thousand six hundred ninety' WHERE a=18920;\nUPDATE t2 SET c='ninety-six thousand seven hundred forty-one' WHERE a=18921;\nUPDATE t2 SET c='fifteen thousand two hundred ten' WHERE a=18922;\nUPDATE t2 SET c='fifty-three thousand seven hundred forty-seven' WHERE a=18923;\nUPDATE t2 SET c='eighty-nine thousand five hundred seventy-eight' WHERE a=18924;\nUPDATE t2 SET c='fifty-five thousand two hundred sixty-seven' WHERE a=18925;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-six' WHERE a=18926;\nUPDATE t2 SET c='sixty-seven thousand thirty-six' WHERE a=18927;\nUPDATE t2 SET c='sixty-nine thousand three hundred thirty-eight' WHERE a=18928;\nUPDATE t2 SET c='thirty-five thousand twenty-six' WHERE a=18929;\nUPDATE t2 SET c='ninety-one thousand two hundred forty' WHERE a=18930;\nUPDATE t2 SET c='thirty-one thousand five hundred thirty' WHERE a=18931;\nUPDATE t2 SET c='sixty thousand seven hundred forty-seven' WHERE a=18932;\nUPDATE t2 SET c='six thousand six hundred fifty-eight' WHERE a=18933;\nUPDATE t2 SET c='eighty-nine thousand five hundred twenty-eight' WHERE a=18934;\nUPDATE t2 SET c='sixty-two thousand five hundred twenty' WHERE a=18935;\nUPDATE t2 SET c='sixty-six thousand seven hundred sixty-three' WHERE a=18936;\nUPDATE t2 SET c='forty-one thousand five hundred forty-seven' WHERE a=18937;\nUPDATE t2 SET c='nine thousand five hundred ninety-seven' WHERE a=18938;\nUPDATE t2 SET c='ninety-two thousand eight hundred sixty-seven' WHERE a=18939;\nUPDATE t2 SET c='ninety-five thousand nine hundred seventy-one' WHERE a=18940;\nUPDATE t2 SET c='four thousand five hundred seventy-six' WHERE a=18941;\nUPDATE t2 SET c='thirty-four thousand forty-eight' WHERE a=18942;\nUPDATE t2 SET c='seventy-four thousand seven hundred twelve' WHERE a=18943;\nUPDATE t2 SET c='three thousand seven hundred ninety-three' WHERE a=18944;\nUPDATE t2 SET c='fifty-one thousand six hundred sixty-three' WHERE a=18945;\nUPDATE t2 SET c='thirty-four thousand eight hundred eighty-two' WHERE a=18946;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-two' WHERE a=18947;\nUPDATE t2 SET c='thirty-five thousand eight hundred thirty-six' WHERE a=18948;\nUPDATE t2 SET c='seventy-three thousand two hundred seventy-four' WHERE a=18949;\nUPDATE t2 SET c='thirty-nine thousand five hundred fifty-one' WHERE a=18950;\nUPDATE t2 SET c='ninety-seven thousand seven hundred forty-two' WHERE a=18951;\nUPDATE t2 SET c='thirty-nine thousand two hundred eighty-three' WHERE a=18952;\nUPDATE t2 SET c='eighty-four thousand five hundred twenty-one' WHERE a=18953;\nUPDATE t2 SET c='thirty-four thousand two hundred eleven' WHERE a=18954;\nUPDATE t2 SET c='thirty-five thousand five hundred fifty-two' WHERE a=18955;\nUPDATE t2 SET c='fifty-one thousand five hundred eight' WHERE a=18956;\nUPDATE t2 SET c='eighty-one thousand eighty' WHERE a=18957;\nUPDATE t2 SET c='thirty-one thousand two hundred fifty-two' WHERE a=18958;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-one' WHERE a=18959;\nUPDATE t2 SET c='forty-three thousand eight hundred' WHERE a=18960;\nUPDATE t2 SET c='ninety-eight thousand six hundred eighty-five' WHERE a=18961;\nUPDATE t2 SET c='thirty-nine thousand six hundred sixty-six' WHERE a=18962;\nUPDATE t2 SET c='ninety-three thousand six hundred eighty-six' WHERE a=18963;\nUPDATE t2 SET c='ninety-eight thousand two hundred ninety-nine' WHERE a=18964;\nUPDATE t2 SET c='eighty thousand five hundred forty-six' WHERE a=18965;\nUPDATE t2 SET c='five thousand three hundred ninety' WHERE a=18966;\nUPDATE t2 SET c='twenty-five thousand eighty-six' WHERE a=18967;\nUPDATE t2 SET c='sixty-five thousand four hundred eighty-four' WHERE a=18968;\nUPDATE t2 SET c='thirty thousand sixty-one' WHERE a=18969;\nUPDATE t2 SET c='seventy thousand four hundred forty' WHERE a=18970;\nUPDATE t2 SET c='seventy-five thousand nine hundred fifty-five' WHERE a=18971;\nUPDATE t2 SET c='twenty-nine thousand three hundred twenty-six' WHERE a=18972;\nUPDATE t2 SET c='forty-five thousand nine hundred ninety-four' WHERE a=18973;\nUPDATE t2 SET c='fifty-three thousand five hundred nineteen' WHERE a=18974;\nUPDATE t2 SET c='nine thousand one hundred eleven' WHERE a=18975;\nUPDATE t2 SET c='thirty-four thousand three hundred seventy' WHERE a=18976;\nUPDATE t2 SET c='thirty-four thousand eight hundred six' WHERE a=18977;\nUPDATE t2 SET c='fifty-nine thousand nine hundred one' WHERE a=18978;\nUPDATE t2 SET c='three thousand six hundred ten' WHERE a=18979;\nUPDATE t2 SET c='twenty thousand five hundred twenty-seven' WHERE a=18980;\nUPDATE t2 SET c='fifty-three thousand five hundred two' WHERE a=18981;\nUPDATE t2 SET c='forty thousand two hundred ten' WHERE a=18982;\nUPDATE t2 SET c='sixty-nine thousand two hundred thirty-six' WHERE a=18983;\nUPDATE t2 SET c='forty-three thousand four hundred twenty-seven' WHERE a=18984;\nUPDATE t2 SET c='fifty-four thousand five hundred eighty-four' WHERE a=18985;\nUPDATE t2 SET c='sixty-one thousand nine hundred fifty-six' WHERE a=18986;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-five' WHERE a=18987;\nUPDATE t2 SET c='forty-nine thousand seven hundred fifty-six' WHERE a=18988;\nUPDATE t2 SET c='seventy-seven thousand seventy-nine' WHERE a=18989;\nUPDATE t2 SET c='forty-five thousand six hundred ninety-two' WHERE a=18990;\nUPDATE t2 SET c='thirty-seven thousand one hundred ninety-three' WHERE a=18991;\nUPDATE t2 SET c='twelve thousand two hundred forty-six' WHERE a=18992;\nUPDATE t2 SET c='thirty-eight thousand eighty-six' WHERE a=18993;\nUPDATE t2 SET c='fifty-four thousand four hundred forty-three' WHERE a=18994;\nUPDATE t2 SET c='sixty-five thousand forty-four' WHERE a=18995;\nUPDATE t2 SET c='sixty-eight thousand eight hundred twelve' WHERE a=18996;\nUPDATE t2 SET c='twenty-four thousand seven hundred two' WHERE a=18997;\nUPDATE t2 SET c='eighty-six thousand three hundred fifty-four' WHERE a=18998;\nUPDATE t2 SET c='forty-two thousand two hundred fifty-eight' WHERE a=18999;\nUPDATE t2 SET c='twenty-five thousand nine hundred twenty-five' WHERE a=19000;\nUPDATE t2 SET c='twenty-four thousand three hundred eighty-two' WHERE a=19001;\nUPDATE t2 SET c='forty-five thousand four hundred forty-nine' WHERE a=19002;\nUPDATE t2 SET c='eighty-five thousand six hundred thirty-eight' WHERE a=19003;\nUPDATE t2 SET c='eighteen thousand nine hundred eighty' WHERE a=19004;\nUPDATE t2 SET c='twenty-three thousand three hundred fifty-one' WHERE a=19005;\nUPDATE t2 SET c='seventy-eight thousand two hundred twenty-five' WHERE a=19006;\nUPDATE t2 SET c='sixty-nine thousand eight hundred thirty-seven' WHERE a=19007;\nUPDATE t2 SET c='thirty-nine thousand two hundred sixty-nine' WHERE a=19008;\nUPDATE t2 SET c='forty-seven thousand seven hundred eighty-five' WHERE a=19009;\nUPDATE t2 SET c='ninety-one thousand six hundred sixty-three' WHERE a=19010;\nUPDATE t2 SET c='thirty-nine thousand one hundred forty-five' WHERE a=19011;\nUPDATE t2 SET c='sixty-four thousand three hundred fifty-five' WHERE a=19012;\nUPDATE t2 SET c='fourteen thousand three hundred ten' WHERE a=19013;\nUPDATE t2 SET c='one thousand one hundred seventy-one' WHERE a=19014;\nUPDATE t2 SET c='eleven thousand four hundred fifteen' WHERE a=19015;\nUPDATE t2 SET c='ninety-four thousand one hundred fifty-one' WHERE a=19016;\nUPDATE t2 SET c='eleven thousand two hundred' WHERE a=19017;\nUPDATE t2 SET c='ten thousand two hundred four' WHERE a=19018;\nUPDATE t2 SET c='seventy-five thousand two hundred sixty' WHERE a=19019;\nUPDATE t2 SET c='thirty-five thousand seven hundred thirty-six' WHERE a=19020;\nUPDATE t2 SET c='eighty-six thousand one hundred twenty-two' WHERE a=19021;\nUPDATE t2 SET c='sixty-three thousand nine hundred eighteen' WHERE a=19022;\nUPDATE t2 SET c='fifteen thousand seven hundred twenty-one' WHERE a=19023;\nUPDATE t2 SET c='two thousand one hundred sixty-two' WHERE a=19024;\nUPDATE t2 SET c='fifty-seven thousand six hundred seventy-three' WHERE a=19025;\nUPDATE t2 SET c='forty thousand two hundred twelve' WHERE a=19026;\nUPDATE t2 SET c='forty thousand eight hundred fifty-five' WHERE a=19027;\nUPDATE t2 SET c='ninety-six thousand seven hundred eighty-nine' WHERE a=19028;\nUPDATE t2 SET c='twenty thousand thirty-four' WHERE a=19029;\nUPDATE t2 SET c='fifty-five thousand two hundred eighty-nine' WHERE a=19030;\nUPDATE t2 SET c='fifty-seven thousand five hundred sixteen' WHERE a=19031;\nUPDATE t2 SET c='thirteen thousand three hundred thirty-six' WHERE a=19032;\nUPDATE t2 SET c='forty-nine thousand five hundred eighty-two' WHERE a=19033;\nUPDATE t2 SET c='twenty-three thousand nine hundred fifty-five' WHERE a=19034;\nUPDATE t2 SET c='twenty-two thousand five hundred eighty-two' WHERE a=19035;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-eight' WHERE a=19036;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-three' WHERE a=19037;\nUPDATE t2 SET c='two thousand two hundred sixteen' WHERE a=19038;\nUPDATE t2 SET c='thirty-four thousand two hundred six' WHERE a=19039;\nUPDATE t2 SET c='fifteen thousand six hundred fifty-six' WHERE a=19040;\nUPDATE t2 SET c='seventy-two thousand seven hundred thirty-eight' WHERE a=19041;\nUPDATE t2 SET c='thirty-six thousand nine hundred four' WHERE a=19042;\nUPDATE t2 SET c='thirty-one thousand six hundred sixteen' WHERE a=19043;\nUPDATE t2 SET c='thirty-four thousand eight hundred twenty' WHERE a=19044;\nUPDATE t2 SET c='two thousand seventy-nine' WHERE a=19045;\nUPDATE t2 SET c='fifteen thousand five hundred twenty-one' WHERE a=19046;\nUPDATE t2 SET c='ninety thousand seven hundred forty-two' WHERE a=19047;\nUPDATE t2 SET c='sixty-nine thousand six hundred five' WHERE a=19048;\nUPDATE t2 SET c='thirty-one thousand four hundred fifty-nine' WHERE a=19049;\nUPDATE t2 SET c='twenty-three thousand three hundred twenty-eight' WHERE a=19050;\nUPDATE t2 SET c='sixty-five thousand two hundred one' WHERE a=19051;\nUPDATE t2 SET c='two thousand six hundred eighty-four' WHERE a=19052;\nUPDATE t2 SET c='forty-one thousand three hundred eight' WHERE a=19053;\nUPDATE t2 SET c='forty-one thousand four hundred twenty-nine' WHERE a=19054;\nUPDATE t2 SET c='ninety-seven thousand seven hundred forty-eight' WHERE a=19055;\nUPDATE t2 SET c='seventy-five thousand eight hundred seventy-one' WHERE a=19056;\nUPDATE t2 SET c='eleven thousand forty-six' WHERE a=19057;\nUPDATE t2 SET c='ninety-seven thousand six hundred nine' WHERE a=19058;\nUPDATE t2 SET c='fifty-seven thousand four hundred fifty-three' WHERE a=19059;\nUPDATE t2 SET c='thirty-two thousand sixty-two' WHERE a=19060;\nUPDATE t2 SET c='fifty-four thousand twenty' WHERE a=19061;\nUPDATE t2 SET c='sixty thousand eight hundred forty-four' WHERE a=19062;\nUPDATE t2 SET c='sixty-seven thousand eight hundred eighty' WHERE a=19063;\nUPDATE t2 SET c='seven thousand nine hundred fifteen' WHERE a=19064;\nUPDATE t2 SET c='nine thousand five hundred ninety-seven' WHERE a=19065;\nUPDATE t2 SET c='forty thousand one hundred twelve' WHERE a=19066;\nUPDATE t2 SET c='four thousand nine hundred seventy-seven' WHERE a=19067;\nUPDATE t2 SET c='sixty-five thousand five hundred thirty-nine' WHERE a=19068;\nUPDATE t2 SET c='ninety-eight thousand three hundred twenty-five' WHERE a=19069;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-seven' WHERE a=19070;\nUPDATE t2 SET c='sixty thousand seven hundred twenty-one' WHERE a=19071;\nUPDATE t2 SET c='forty thousand four hundred eleven' WHERE a=19072;\nUPDATE t2 SET c='sixty-nine thousand five hundred ninety-three' WHERE a=19073;\nUPDATE t2 SET c='thirty-three thousand four hundred ninety-eight' WHERE a=19074;\nUPDATE t2 SET c='twenty-eight thousand nine hundred six' WHERE a=19075;\nUPDATE t2 SET c='ninety-six thousand one hundred nineteen' WHERE a=19076;\nUPDATE t2 SET c='twenty-five thousand six hundred two' WHERE a=19077;\nUPDATE t2 SET c='seventy-eight thousand nine hundred fifty-six' WHERE a=19078;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty' WHERE a=19079;\nUPDATE t2 SET c='eighty-nine thousand three hundred sixty-five' WHERE a=19080;\nUPDATE t2 SET c='fifty-two thousand four hundred sixty-six' WHERE a=19081;\nUPDATE t2 SET c='ninety-six thousand three hundred twenty-six' WHERE a=19082;\nUPDATE t2 SET c='twenty-eight thousand seven hundred twenty-four' WHERE a=19083;\nUPDATE t2 SET c='thirty-one thousand five hundred five' WHERE a=19084;\nUPDATE t2 SET c='ninety thousand four hundred sixty-two' WHERE a=19085;\nUPDATE t2 SET c='thirty-four thousand nine hundred eighty-three' WHERE a=19086;\nUPDATE t2 SET c='forty-five thousand five hundred fifty-one' WHERE a=19087;\nUPDATE t2 SET c='eight thousand three hundred thirty-six' WHERE a=19088;\nUPDATE t2 SET c='forty thousand five hundred fifty-three' WHERE a=19089;\nUPDATE t2 SET c='sixty-three thousand six hundred seventy-eight' WHERE a=19090;\nUPDATE t2 SET c='eighty-four thousand five hundred ninety-two' WHERE a=19091;\nUPDATE t2 SET c='forty-nine thousand five hundred eighty-five' WHERE a=19092;\nUPDATE t2 SET c='seventy-six thousand seven hundred fifty' WHERE a=19093;\nUPDATE t2 SET c='ninety-nine thousand six hundred sixteen' WHERE a=19094;\nUPDATE t2 SET c='eighty thousand nine hundred ninety-four' WHERE a=19095;\nUPDATE t2 SET c='fifty-three thousand nine hundred ninety-seven' WHERE a=19096;\nUPDATE t2 SET c='eighty-seven thousand three hundred thirty-seven' WHERE a=19097;\nUPDATE t2 SET c='seventy-three thousand one hundred fifteen' WHERE a=19098;\nUPDATE t2 SET c='eighty-three thousand sixty-five' WHERE a=19099;\nUPDATE t2 SET c='ninety-seven thousand four hundred ten' WHERE a=19100;\nUPDATE t2 SET c='seventy thousand nine hundred sixty-two' WHERE a=19101;\nUPDATE t2 SET c='ninety-six thousand six hundred seventy-five' WHERE a=19102;\nUPDATE t2 SET c='ninety-one thousand thirty-seven' WHERE a=19103;\nUPDATE t2 SET c='seventy-six thousand seven hundred thirty' WHERE a=19104;\nUPDATE t2 SET c='fourteen thousand seventy' WHERE a=19105;\nUPDATE t2 SET c='eighty-five thousand seven hundred sixteen' WHERE a=19106;\nUPDATE t2 SET c='seventy-nine thousand one hundred eleven' WHERE a=19107;\nUPDATE t2 SET c='thirty-four thousand eight hundred sixty-three' WHERE a=19108;\nUPDATE t2 SET c='thirty-one thousand two hundred forty' WHERE a=19109;\nUPDATE t2 SET c='twenty-five thousand three hundred eighty-seven' WHERE a=19110;\nUPDATE t2 SET c='thirty-seven thousand nine hundred sixty-three' WHERE a=19111;\nUPDATE t2 SET c='twenty thousand nine hundred sixty-five' WHERE a=19112;\nUPDATE t2 SET c='eighty-three thousand sixty-nine' WHERE a=19113;\nUPDATE t2 SET c='ninety-one thousand seventeen' WHERE a=19114;\nUPDATE t2 SET c='seventy-five thousand four hundred seventy-seven' WHERE a=19115;\nUPDATE t2 SET c='sixty-one thousand fourteen' WHERE a=19116;\nUPDATE t2 SET c='seventy-three thousand one hundred fourteen' WHERE a=19117;\nUPDATE t2 SET c='fifty-four thousand one hundred fifty-eight' WHERE a=19118;\nUPDATE t2 SET c='forty thousand seven hundred five' WHERE a=19119;\nUPDATE t2 SET c='seventy-six thousand three hundred forty-eight' WHERE a=19120;\nUPDATE t2 SET c='thirty-four thousand eight hundred sixty-eight' WHERE a=19121;\nUPDATE t2 SET c='fifty-eight thousand nine hundred three' WHERE a=19122;\nUPDATE t2 SET c='twenty-nine thousand four hundred forty' WHERE a=19123;\nUPDATE t2 SET c='nine thousand four hundred eighty-four' WHERE a=19124;\nUPDATE t2 SET c='ninety thousand two hundred fifty-six' WHERE a=19125;\nUPDATE t2 SET c='fifty-seven thousand one hundred sixty-five' WHERE a=19126;\nUPDATE t2 SET c='sixty-nine thousand eight hundred ninety' WHERE a=19127;\nUPDATE t2 SET c='eighty thousand four hundred sixteen' WHERE a=19128;\nUPDATE t2 SET c='four thousand eight hundred thirty-five' WHERE a=19129;\nUPDATE t2 SET c='forty-six thousand one hundred ninety-four' WHERE a=19130;\nUPDATE t2 SET c='seventy thousand one hundred fifteen' WHERE a=19131;\nUPDATE t2 SET c='fifty-five thousand three hundred eighty-one' WHERE a=19132;\nUPDATE t2 SET c='sixty-six thousand three hundred sixty-five' WHERE a=19133;\nUPDATE t2 SET c='twenty-one thousand six hundred seventy-three' WHERE a=19134;\nUPDATE t2 SET c='eighty-one thousand three hundred twenty-one' WHERE a=19135;\nUPDATE t2 SET c='seventy-nine thousand three hundred ninety-six' WHERE a=19136;\nUPDATE t2 SET c='eighty-six thousand twenty-three' WHERE a=19137;\nUPDATE t2 SET c='seventy-one thousand one hundred twenty-nine' WHERE a=19138;\nUPDATE t2 SET c='twenty-five thousand fifty' WHERE a=19139;\nUPDATE t2 SET c='fifty-nine thousand two hundred twenty-five' WHERE a=19140;\nUPDATE t2 SET c='seventeen thousand six hundred eighty-six' WHERE a=19141;\nUPDATE t2 SET c='fifty-two thousand six hundred twenty-nine' WHERE a=19142;\nUPDATE t2 SET c='thirty-two thousand one hundred eighty-one' WHERE a=19143;\nUPDATE t2 SET c='sixty-five thousand seven hundred thirty-two' WHERE a=19144;\nUPDATE t2 SET c='eighty-six thousand two hundred' WHERE a=19145;\nUPDATE t2 SET c='ninety-three thousand nine hundred twenty-seven' WHERE a=19146;\nUPDATE t2 SET c='nineteen thousand two hundred eighty' WHERE a=19147;\nUPDATE t2 SET c='fifty-six thousand two hundred twenty-eight' WHERE a=19148;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-one' WHERE a=19149;\nUPDATE t2 SET c='fifty-nine thousand three hundred forty-eight' WHERE a=19150;\nUPDATE t2 SET c='sixty-six thousand two hundred sixty-one' WHERE a=19151;\nUPDATE t2 SET c='sixty-five thousand two hundred ten' WHERE a=19152;\nUPDATE t2 SET c='one thousand six hundred twenty-nine' WHERE a=19153;\nUPDATE t2 SET c='forty-two thousand nine hundred ninety-eight' WHERE a=19154;\nUPDATE t2 SET c='eight thousand three hundred thirty' WHERE a=19155;\nUPDATE t2 SET c='twenty-eight thousand seven hundred eighty-one' WHERE a=19156;\nUPDATE t2 SET c='seven thousand sixty-eight' WHERE a=19157;\nUPDATE t2 SET c='forty-four thousand five hundred forty-eight' WHERE a=19158;\nUPDATE t2 SET c='seventy-one thousand seven hundred thirty-five' WHERE a=19159;\nUPDATE t2 SET c='seven thousand one hundred fifteen' WHERE a=19160;\nUPDATE t2 SET c='thirty-six thousand three hundred twenty-nine' WHERE a=19161;\nUPDATE t2 SET c='seventy-six thousand two hundred seventy-five' WHERE a=19162;\nUPDATE t2 SET c='thirty-five thousand forty-two' WHERE a=19163;\nUPDATE t2 SET c='ninety thousand three hundred thirty-one' WHERE a=19164;\nUPDATE t2 SET c='ninety-seven thousand eight hundred fifty-four' WHERE a=19165;\nUPDATE t2 SET c='eighty thousand nine hundred fifty' WHERE a=19166;\nUPDATE t2 SET c='seventy-three thousand three hundred ninety-eight' WHERE a=19167;\nUPDATE t2 SET c='nineteen thousand one hundred forty-five' WHERE a=19168;\nUPDATE t2 SET c='eighty-nine thousand two hundred eighty-two' WHERE a=19169;\nUPDATE t2 SET c='eighty-one thousand one hundred twenty-one' WHERE a=19170;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-three' WHERE a=19171;\nUPDATE t2 SET c='seventy-six thousand two hundred seventy-six' WHERE a=19172;\nUPDATE t2 SET c='forty-five thousand eight hundred seventy-seven' WHERE a=19173;\nUPDATE t2 SET c='fifty-four thousand one hundred fifteen' WHERE a=19174;\nUPDATE t2 SET c='thirty-eight thousand four hundred thirty-five' WHERE a=19175;\nUPDATE t2 SET c='twenty thousand six hundred eight' WHERE a=19176;\nUPDATE t2 SET c='fifty-five thousand eighty' WHERE a=19177;\nUPDATE t2 SET c='nineteen thousand fifty-one' WHERE a=19178;\nUPDATE t2 SET c='eighty-three thousand eight hundred ninety-seven' WHERE a=19179;\nUPDATE t2 SET c='forty-seven thousand ninety-two' WHERE a=19180;\nUPDATE t2 SET c='ninety-four thousand five hundred forty-two' WHERE a=19181;\nUPDATE t2 SET c='thirty-six thousand seven hundred twenty-six' WHERE a=19182;\nUPDATE t2 SET c='forty-three thousand three hundred ten' WHERE a=19183;\nUPDATE t2 SET c='nine thousand three hundred eighty-five' WHERE a=19184;\nUPDATE t2 SET c='thirty-eight thousand one hundred seventy-five' WHERE a=19185;\nUPDATE t2 SET c='thirty thousand four hundred twenty-one' WHERE a=19186;\nUPDATE t2 SET c='sixty-eight thousand three hundred eighty' WHERE a=19187;\nUPDATE t2 SET c='forty-one thousand nine hundred ninety-five' WHERE a=19188;\nUPDATE t2 SET c='ninety-three thousand nine hundred sixty-three' WHERE a=19189;\nUPDATE t2 SET c='ninety-nine thousand fifteen' WHERE a=19190;\nUPDATE t2 SET c='seventy-six thousand two hundred ninety-seven' WHERE a=19191;\nUPDATE t2 SET c='one thousand seven hundred sixty-four' WHERE a=19192;\nUPDATE t2 SET c='nine thousand eight hundred eighty' WHERE a=19193;\nUPDATE t2 SET c='ninety-seven thousand four hundred three' WHERE a=19194;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ten' WHERE a=19195;\nUPDATE t2 SET c='sixty-seven thousand two hundred thirty-seven' WHERE a=19196;\nUPDATE t2 SET c='six hundred thirty-seven' WHERE a=19197;\nUPDATE t2 SET c='forty thousand eight hundred twenty-five' WHERE a=19198;\nUPDATE t2 SET c='eighty thousand three hundred fifty-five' WHERE a=19199;\nUPDATE t2 SET c='fifty thousand two hundred twelve' WHERE a=19200;\nUPDATE t2 SET c='fifty-one thousand three hundred thirty-two' WHERE a=19201;\nUPDATE t2 SET c='twelve thousand six hundred thirty' WHERE a=19202;\nUPDATE t2 SET c='fifty thousand fifty-one' WHERE a=19203;\nUPDATE t2 SET c='twenty-five thousand one hundred six' WHERE a=19204;\nUPDATE t2 SET c='twenty-nine thousand four hundred ninety-five' WHERE a=19205;\nUPDATE t2 SET c='five thousand seven hundred sixty-five' WHERE a=19206;\nUPDATE t2 SET c='fifty-six thousand eight hundred thirty-one' WHERE a=19207;\nUPDATE t2 SET c='sixty-seven thousand six hundred fifty-eight' WHERE a=19208;\nUPDATE t2 SET c='twenty thousand two hundred thirty-three' WHERE a=19209;\nUPDATE t2 SET c='seventy-two thousand three hundred ninety-five' WHERE a=19210;\nUPDATE t2 SET c='twenty-nine thousand five hundred seven' WHERE a=19211;\nUPDATE t2 SET c='ninety-five thousand six hundred fifty-six' WHERE a=19212;\nUPDATE t2 SET c='ninety-six thousand one hundred fifty-two' WHERE a=19213;\nUPDATE t2 SET c='twenty-six thousand three hundred sixty-six' WHERE a=19214;\nUPDATE t2 SET c='twelve thousand two hundred eight' WHERE a=19215;\nUPDATE t2 SET c='thirty-eight thousand four hundred eighty-six' WHERE a=19216;\nUPDATE t2 SET c='ten thousand four hundred seventy-three' WHERE a=19217;\nUPDATE t2 SET c='forty-six thousand five hundred sixty' WHERE a=19218;\nUPDATE t2 SET c='sixty-five thousand thirteen' WHERE a=19219;\nUPDATE t2 SET c='ninety-seven thousand two hundred ninety-four' WHERE a=19220;\nUPDATE t2 SET c='eighty-nine thousand nine hundred eighty-six' WHERE a=19221;\nUPDATE t2 SET c='thirty-three thousand one hundred fourteen' WHERE a=19222;\nUPDATE t2 SET c='thirty-one thousand sixty-two' WHERE a=19223;\nUPDATE t2 SET c='ninety-five thousand three hundred eighty-two' WHERE a=19224;\nUPDATE t2 SET c='forty-five thousand eight hundred twenty-one' WHERE a=19225;\nUPDATE t2 SET c='forty-nine thousand one hundred one' WHERE a=19226;\nUPDATE t2 SET c='thirty-two thousand six hundred thirteen' WHERE a=19227;\nUPDATE t2 SET c='sixty-eight thousand one hundred fifty-five' WHERE a=19228;\nUPDATE t2 SET c='thirteen thousand six hundred seventy' WHERE a=19229;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty-six' WHERE a=19230;\nUPDATE t2 SET c='seventy-five thousand seven hundred twenty-two' WHERE a=19231;\nUPDATE t2 SET c='twenty-three thousand nine hundred forty-seven' WHERE a=19232;\nUPDATE t2 SET c='three thousand one hundred thirty-eight' WHERE a=19233;\nUPDATE t2 SET c='ninety-four thousand twenty-two' WHERE a=19234;\nUPDATE t2 SET c='sixty-four thousand nine hundred five' WHERE a=19235;\nUPDATE t2 SET c='eighty-six thousand eight hundred twenty-seven' WHERE a=19236;\nUPDATE t2 SET c='forty-nine thousand eight hundred seventy' WHERE a=19237;\nUPDATE t2 SET c='nineteen thousand two hundred five' WHERE a=19238;\nUPDATE t2 SET c='fifty-three thousand one hundred ninety' WHERE a=19239;\nUPDATE t2 SET c='nineteen thousand six hundred sixty-one' WHERE a=19240;\nUPDATE t2 SET c='sixty-six thousand four hundred forty' WHERE a=19241;\nUPDATE t2 SET c='ninety thousand six hundred thirty-three' WHERE a=19242;\nUPDATE t2 SET c='twenty-seven thousand eight hundred forty-eight' WHERE a=19243;\nUPDATE t2 SET c='sixty-one thousand six hundred thirty-six' WHERE a=19244;\nUPDATE t2 SET c='seventeen thousand two hundred forty-nine' WHERE a=19245;\nUPDATE t2 SET c='sixty-one thousand two hundred forty-two' WHERE a=19246;\nUPDATE t2 SET c='eighty-three thousand two hundred twenty' WHERE a=19247;\nUPDATE t2 SET c='nineteen thousand five hundred twenty-three' WHERE a=19248;\nUPDATE t2 SET c='eighty-nine thousand nine hundred sixty-nine' WHERE a=19249;\nUPDATE t2 SET c='twenty-four thousand twenty-seven' WHERE a=19250;\nUPDATE t2 SET c='ninety-nine thousand two hundred seven' WHERE a=19251;\nUPDATE t2 SET c='forty-seven thousand twenty-four' WHERE a=19252;\nUPDATE t2 SET c='eighty-four thousand one hundred fifty-eight' WHERE a=19253;\nUPDATE t2 SET c='ninety-nine thousand three hundred sixty-six' WHERE a=19254;\nUPDATE t2 SET c='ninety-nine thousand seven hundred eighty-nine' WHERE a=19255;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-six' WHERE a=19256;\nUPDATE t2 SET c='eleven thousand seven hundred ninety-seven' WHERE a=19257;\nUPDATE t2 SET c='twenty thousand six hundred forty-one' WHERE a=19258;\nUPDATE t2 SET c='thirty-one thousand eight hundred forty-four' WHERE a=19259;\nUPDATE t2 SET c='sixty-three thousand six hundred eighty-four' WHERE a=19260;\nUPDATE t2 SET c='ninety thousand eight hundred seventy' WHERE a=19261;\nUPDATE t2 SET c='eight thousand one hundred sixty-two' WHERE a=19262;\nUPDATE t2 SET c='thirty-three thousand five hundred twenty-two' WHERE a=19263;\nUPDATE t2 SET c='seventy-one thousand five hundred ten' WHERE a=19264;\nUPDATE t2 SET c='ninety-seven thousand sixty-five' WHERE a=19265;\nUPDATE t2 SET c='sixty-five thousand one hundred fifty-nine' WHERE a=19266;\nUPDATE t2 SET c='one thousand eight hundred seven' WHERE a=19267;\nUPDATE t2 SET c='fifteen thousand three hundred seventy-six' WHERE a=19268;\nUPDATE t2 SET c='sixty-four thousand seven hundred eighty-four' WHERE a=19269;\nUPDATE t2 SET c='eighty-eight thousand nine hundred six' WHERE a=19270;\nUPDATE t2 SET c='fifty-eight thousand eight hundred eighty-eight' WHERE a=19271;\nUPDATE t2 SET c='eighty-three thousand eight hundred sixty' WHERE a=19272;\nUPDATE t2 SET c='twenty-two thousand eight hundred ninety-three' WHERE a=19273;\nUPDATE t2 SET c='sixty-seven thousand five hundred eighty-six' WHERE a=19274;\nUPDATE t2 SET c='fifty-seven thousand one hundred fifty-one' WHERE a=19275;\nUPDATE t2 SET c='forty-nine thousand eight hundred seventy-two' WHERE a=19276;\nUPDATE t2 SET c='forty-three thousand five hundred forty-seven' WHERE a=19277;\nUPDATE t2 SET c='seventy-one thousand three hundred ninety-five' WHERE a=19278;\nUPDATE t2 SET c='seventy-six thousand three hundred thirty-two' WHERE a=19279;\nUPDATE t2 SET c='two thousand thirteen' WHERE a=19280;\nUPDATE t2 SET c='sixty-one thousand eight hundred fifty-five' WHERE a=19281;\nUPDATE t2 SET c='seventy-three thousand fifty-seven' WHERE a=19282;\nUPDATE t2 SET c='forty-three thousand eighty-two' WHERE a=19283;\nUPDATE t2 SET c='nine thousand eight hundred eighty-nine' WHERE a=19284;\nUPDATE t2 SET c='thirty-seven thousand two hundred thirty-eight' WHERE a=19285;\nUPDATE t2 SET c='seventeen thousand three hundred eighty-five' WHERE a=19286;\nUPDATE t2 SET c='thirty-six' WHERE a=19287;\nUPDATE t2 SET c='forty-five thousand six hundred fifty-seven' WHERE a=19288;\nUPDATE t2 SET c='forty-two thousand one hundred forty-six' WHERE a=19289;\nUPDATE t2 SET c='seventy-six thousand four hundred twenty' WHERE a=19290;\nUPDATE t2 SET c='fifty-two thousand four hundred eleven' WHERE a=19291;\nUPDATE t2 SET c='sixty-one thousand five hundred eighty-seven' WHERE a=19292;\nUPDATE t2 SET c='seventy-seven thousand nine hundred thirty-four' WHERE a=19293;\nUPDATE t2 SET c='sixty-nine thousand six hundred forty-five' WHERE a=19294;\nUPDATE t2 SET c='fifty-three thousand five hundred fifty' WHERE a=19295;\nUPDATE t2 SET c='thirty-five thousand eight hundred thirty-nine' WHERE a=19296;\nUPDATE t2 SET c='seven thousand eight hundred thirty-six' WHERE a=19297;\nUPDATE t2 SET c='thirty thousand nine hundred thirty-six' WHERE a=19298;\nUPDATE t2 SET c='nine thousand two hundred eighty-one' WHERE a=19299;\nUPDATE t2 SET c='seventy-four thousand thirty-four' WHERE a=19300;\nUPDATE t2 SET c='nine thousand five hundred thirty-seven' WHERE a=19301;\nUPDATE t2 SET c='seventy-two thousand two hundred eighty-eight' WHERE a=19302;\nUPDATE t2 SET c='seventy-four thousand four hundred seventy-five' WHERE a=19303;\nUPDATE t2 SET c='twenty-six thousand five hundred eighty-four' WHERE a=19304;\nUPDATE t2 SET c='fifty-seven thousand five hundred fifty-three' WHERE a=19305;\nUPDATE t2 SET c='thirty-three thousand three hundred eleven' WHERE a=19306;\nUPDATE t2 SET c='eight thousand one hundred seventy-seven' WHERE a=19307;\nUPDATE t2 SET c='ninety-eight thousand five hundred three' WHERE a=19308;\nUPDATE t2 SET c='eighty-two thousand two hundred eighty-five' WHERE a=19309;\nUPDATE t2 SET c='seventy-four thousand eight hundred fifteen' WHERE a=19310;\nUPDATE t2 SET c='eighty-seven thousand one' WHERE a=19311;\nUPDATE t2 SET c='seventy-seven thousand eight hundred seventy-seven' WHERE a=19312;\nUPDATE t2 SET c='fifty-one thousand one hundred twenty-two' WHERE a=19313;\nUPDATE t2 SET c='thirty-seven thousand six hundred seventy-seven' WHERE a=19314;\nUPDATE t2 SET c='seventy-one thousand two hundred twenty-three' WHERE a=19315;\nUPDATE t2 SET c='ninety-one thousand five hundred eighty-three' WHERE a=19316;\nUPDATE t2 SET c='forty-two thousand nine hundred seventy-one' WHERE a=19317;\nUPDATE t2 SET c='thirty-six thousand five hundred ninety-five' WHERE a=19318;\nUPDATE t2 SET c='thirty-five thousand seven hundred thirteen' WHERE a=19319;\nUPDATE t2 SET c='thirty-six thousand forty-four' WHERE a=19320;\nUPDATE t2 SET c='forty-five thousand two hundred fifty-five' WHERE a=19321;\nUPDATE t2 SET c='seventy-eight thousand five hundred eighty-four' WHERE a=19322;\nUPDATE t2 SET c='thirty-eight thousand five hundred two' WHERE a=19323;\nUPDATE t2 SET c='thirty-five thousand six hundred eighteen' WHERE a=19324;\nUPDATE t2 SET c='thirty-one thousand six hundred twenty-two' WHERE a=19325;\nUPDATE t2 SET c='four thousand one hundred twenty-four' WHERE a=19326;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-six' WHERE a=19327;\nUPDATE t2 SET c='eighty-seven thousand six hundred eighty-seven' WHERE a=19328;\nUPDATE t2 SET c='ninety-one thousand two hundred sixteen' WHERE a=19329;\nUPDATE t2 SET c='fifty-six thousand eight hundred three' WHERE a=19330;\nUPDATE t2 SET c='thirty-two thousand one hundred fifty-one' WHERE a=19331;\nUPDATE t2 SET c='forty-four thousand three hundred seventy-three' WHERE a=19332;\nUPDATE t2 SET c='ninety-seven thousand two hundred fifty-nine' WHERE a=19333;\nUPDATE t2 SET c='sixteen thousand six hundred forty-eight' WHERE a=19334;\nUPDATE t2 SET c='thirty-four thousand two hundred twenty' WHERE a=19335;\nUPDATE t2 SET c='ninety-seven thousand two hundred ninety-nine' WHERE a=19336;\nUPDATE t2 SET c='forty-six thousand six hundred fifty-four' WHERE a=19337;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-nine' WHERE a=19338;\nUPDATE t2 SET c='five thousand six hundred seventy-four' WHERE a=19339;\nUPDATE t2 SET c='eighty-two thousand nine hundred twelve' WHERE a=19340;\nUPDATE t2 SET c='nineteen thousand three hundred seventy-four' WHERE a=19341;\nUPDATE t2 SET c='ninety-eight thousand two hundred ninety-nine' WHERE a=19342;\nUPDATE t2 SET c='sixty-five thousand nine hundred forty-four' WHERE a=19343;\nUPDATE t2 SET c='fifty-eight thousand seven hundred thirty-one' WHERE a=19344;\nUPDATE t2 SET c='sixty thousand eight hundred sixty-four' WHERE a=19345;\nUPDATE t2 SET c='fifty-six thousand three hundred thirty-nine' WHERE a=19346;\nUPDATE t2 SET c='forty-seven thousand forty-nine' WHERE a=19347;\nUPDATE t2 SET c='ninety-nine thousand seven hundred ninety-six' WHERE a=19348;\nUPDATE t2 SET c='sixty-five thousand one hundred twenty-five' WHERE a=19349;\nUPDATE t2 SET c='seventy-six thousand eight hundred ninety-six' WHERE a=19350;\nUPDATE t2 SET c='eighty-three thousand three hundred sixty-four' WHERE a=19351;\nUPDATE t2 SET c='nine thousand five hundred seventy-five' WHERE a=19352;\nUPDATE t2 SET c='ninety-three thousand seven hundred nineteen' WHERE a=19353;\nUPDATE t2 SET c='fifty-six thousand seven hundred eighty-four' WHERE a=19354;\nUPDATE t2 SET c='seventy-one thousand nine hundred sixty-six' WHERE a=19355;\nUPDATE t2 SET c='fifty thousand one hundred ninety-four' WHERE a=19356;\nUPDATE t2 SET c='seventy-eight thousand eight hundred ninety-six' WHERE a=19357;\nUPDATE t2 SET c='twenty-six thousand five hundred thirty-seven' WHERE a=19358;\nUPDATE t2 SET c='forty-two thousand six hundred seventy-six' WHERE a=19359;\nUPDATE t2 SET c='ten thousand one hundred eighty-five' WHERE a=19360;\nUPDATE t2 SET c='eighty-eight thousand six hundred twenty-three' WHERE a=19361;\nUPDATE t2 SET c='fifty-four thousand one hundred sixty-three' WHERE a=19362;\nUPDATE t2 SET c='seven thousand four hundred nine' WHERE a=19363;\nUPDATE t2 SET c='eighty-five thousand seven hundred ninety-four' WHERE a=19364;\nUPDATE t2 SET c='thirty-nine thousand five hundred sixteen' WHERE a=19365;\nUPDATE t2 SET c='eighty-six thousand nine hundred eight' WHERE a=19366;\nUPDATE t2 SET c='four thousand seven hundred eighty-seven' WHERE a=19367;\nUPDATE t2 SET c='twenty-nine thousand eight hundred forty-nine' WHERE a=19368;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy-eight' WHERE a=19369;\nUPDATE t2 SET c='seventy-five thousand seven hundred twenty-four' WHERE a=19370;\nUPDATE t2 SET c='twenty-three thousand three hundred seventy-four' WHERE a=19371;\nUPDATE t2 SET c='forty-nine thousand nine hundred sixty' WHERE a=19372;\nUPDATE t2 SET c='sixty thousand eight hundred ten' WHERE a=19373;\nUPDATE t2 SET c='thirty-seven thousand seven hundred eighty-seven' WHERE a=19374;\nUPDATE t2 SET c='thirty-six thousand three hundred thirteen' WHERE a=19375;\nUPDATE t2 SET c='thirty-four thousand four hundred twenty-eight' WHERE a=19376;\nUPDATE t2 SET c='seventy-six thousand seven hundred seventy-four' WHERE a=19377;\nUPDATE t2 SET c='twelve thousand six hundred three' WHERE a=19378;\nUPDATE t2 SET c='thirty-four thousand three hundred sixty-six' WHERE a=19379;\nUPDATE t2 SET c='sixteen thousand six hundred ninety-one' WHERE a=19380;\nUPDATE t2 SET c='ninety-five thousand seven hundred five' WHERE a=19381;\nUPDATE t2 SET c='fifty-three thousand seven hundred sixty-five' WHERE a=19382;\nUPDATE t2 SET c='thirty-five thousand seven hundred ninety-seven' WHERE a=19383;\nUPDATE t2 SET c='eighty-eight thousand four hundred seventeen' WHERE a=19384;\nUPDATE t2 SET c='nine thousand two hundred three' WHERE a=19385;\nUPDATE t2 SET c='eighty-nine thousand one hundred thirty-two' WHERE a=19386;\nUPDATE t2 SET c='twenty-seven thousand one hundred seventy-nine' WHERE a=19387;\nUPDATE t2 SET c='sixty-eight thousand one' WHERE a=19388;\nUPDATE t2 SET c='eighty-four thousand three hundred sixteen' WHERE a=19389;\nUPDATE t2 SET c='forty-six thousand seven hundred fifty-seven' WHERE a=19390;\nUPDATE t2 SET c='twenty-seven thousand one hundred forty-nine' WHERE a=19391;\nUPDATE t2 SET c='eighty-five thousand one hundred twenty-seven' WHERE a=19392;\nUPDATE t2 SET c='nineteen thousand eight hundred thirty-five' WHERE a=19393;\nUPDATE t2 SET c='thirty-five thousand five hundred forty-four' WHERE a=19394;\nUPDATE t2 SET c='twenty-five thousand nine hundred eighty-five' WHERE a=19395;\nUPDATE t2 SET c='sixty-five thousand nine hundred eighty-nine' WHERE a=19396;\nUPDATE t2 SET c='thirty-six thousand two hundred sixty-five' WHERE a=19397;\nUPDATE t2 SET c='sixty-seven thousand eight hundred twenty' WHERE a=19398;\nUPDATE t2 SET c='two thousand five hundred seventy-nine' WHERE a=19399;\nUPDATE t2 SET c='sixteen thousand four hundred ninety-six' WHERE a=19400;\nUPDATE t2 SET c='one hundred thirty-eight' WHERE a=19401;\nUPDATE t2 SET c='forty-two thousand eight hundred ninety-four' WHERE a=19402;\nUPDATE t2 SET c='sixty-two thousand five hundred fourteen' WHERE a=19403;\nUPDATE t2 SET c='fifty-three thousand four hundred six' WHERE a=19404;\nUPDATE t2 SET c='twenty-four thousand six hundred nineteen' WHERE a=19405;\nUPDATE t2 SET c='ninety-one thousand fifty-nine' WHERE a=19406;\nUPDATE t2 SET c='seventy-eight thousand five hundred fifty-two' WHERE a=19407;\nUPDATE t2 SET c='twelve thousand seven hundred fifty-six' WHERE a=19408;\nUPDATE t2 SET c='thirty-seven thousand five hundred ten' WHERE a=19409;\nUPDATE t2 SET c='thirty-one thousand three hundred sixty-five' WHERE a=19410;\nUPDATE t2 SET c='thirty thousand eight hundred six' WHERE a=19411;\nUPDATE t2 SET c='twenty-two thousand seven hundred sixty-three' WHERE a=19412;\nUPDATE t2 SET c='sixty-six thousand nine hundred thirteen' WHERE a=19413;\nUPDATE t2 SET c='seven thousand three hundred fifty-one' WHERE a=19414;\nUPDATE t2 SET c='thirteen thousand nine hundred five' WHERE a=19415;\nUPDATE t2 SET c='thirty-nine thousand seventy-eight' WHERE a=19416;\nUPDATE t2 SET c='twenty-eight thousand six hundred seven' WHERE a=19417;\nUPDATE t2 SET c='thirty-six thousand six hundred eighty-nine' WHERE a=19418;\nUPDATE t2 SET c='thirty thousand five hundred two' WHERE a=19419;\nUPDATE t2 SET c='ninety-two thousand three hundred forty-six' WHERE a=19420;\nUPDATE t2 SET c='eighty-two thousand seven hundred seventy-three' WHERE a=19421;\nUPDATE t2 SET c='twenty-seven thousand forty-two' WHERE a=19422;\nUPDATE t2 SET c='forty-three thousand eight hundred seventy-seven' WHERE a=19423;\nUPDATE t2 SET c='sixty-seven thousand three hundred one' WHERE a=19424;\nUPDATE t2 SET c='thirty-five thousand eight hundred eighty' WHERE a=19425;\nUPDATE t2 SET c='twenty-one thousand seven hundred eighty-one' WHERE a=19426;\nUPDATE t2 SET c='thirty-two thousand five hundred thirteen' WHERE a=19427;\nUPDATE t2 SET c='fifty-six thousand nine hundred fifty-one' WHERE a=19428;\nUPDATE t2 SET c='forty-five thousand four hundred thirty-seven' WHERE a=19429;\nUPDATE t2 SET c='seventy thousand five hundred ninety-eight' WHERE a=19430;\nUPDATE t2 SET c='thirteen thousand sixty-five' WHERE a=19431;\nUPDATE t2 SET c='seventy-five thousand seven hundred thirty-eight' WHERE a=19432;\nUPDATE t2 SET c='sixty-five thousand nine hundred sixty-two' WHERE a=19433;\nUPDATE t2 SET c='one thousand six hundred ninety-nine' WHERE a=19434;\nUPDATE t2 SET c='fifty-three thousand four hundred thirty-two' WHERE a=19435;\nUPDATE t2 SET c='thirty-two thousand six hundred eighty-six' WHERE a=19436;\nUPDATE t2 SET c='sixty-four thousand seven hundred twenty-three' WHERE a=19437;\nUPDATE t2 SET c='ninety-two thousand nine hundred fifty-three' WHERE a=19438;\nUPDATE t2 SET c='thirty-three thousand six hundred twenty-nine' WHERE a=19439;\nUPDATE t2 SET c='fifty-four thousand seven hundred ninety-one' WHERE a=19440;\nUPDATE t2 SET c='fifty-nine thousand nine hundred seventeen' WHERE a=19441;\nUPDATE t2 SET c='twenty-one thousand nine hundred eight' WHERE a=19442;\nUPDATE t2 SET c='forty-three thousand eight hundred sixty-nine' WHERE a=19443;\nUPDATE t2 SET c='sixty-five thousand two hundred fifty-six' WHERE a=19444;\nUPDATE t2 SET c='fifty-six thousand nine hundred twenty-six' WHERE a=19445;\nUPDATE t2 SET c='twenty-eight thousand one hundred eighty-six' WHERE a=19446;\nUPDATE t2 SET c='thirty-five thousand eight hundred forty-one' WHERE a=19447;\nUPDATE t2 SET c='three thousand five hundred twenty-eight' WHERE a=19448;\nUPDATE t2 SET c='ninety-one thousand seven hundred twenty-one' WHERE a=19449;\nUPDATE t2 SET c='ninety-five thousand fourteen' WHERE a=19450;\nUPDATE t2 SET c='ninety-four thousand thirty-six' WHERE a=19451;\nUPDATE t2 SET c='ninety-eight thousand eight hundred eighty-one' WHERE a=19452;\nUPDATE t2 SET c='sixty-three thousand seven hundred forty-three' WHERE a=19453;\nUPDATE t2 SET c='fifty-three thousand seven hundred ninety-one' WHERE a=19454;\nUPDATE t2 SET c='eighty-eight thousand three hundred twenty-five' WHERE a=19455;\nUPDATE t2 SET c='seventy-nine thousand four hundred sixty-two' WHERE a=19456;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy-six' WHERE a=19457;\nUPDATE t2 SET c='thirty thousand four hundred ninety-four' WHERE a=19458;\nUPDATE t2 SET c='three thousand three hundred eighty-nine' WHERE a=19459;\nUPDATE t2 SET c='forty-four thousand one hundred sixty-three' WHERE a=19460;\nUPDATE t2 SET c='one thousand sixty-eight' WHERE a=19461;\nUPDATE t2 SET c='eighty-three thousand five hundred forty-eight' WHERE a=19462;\nUPDATE t2 SET c='fifteen thousand five hundred sixty-three' WHERE a=19463;\nUPDATE t2 SET c='eighty thousand four hundred thirty-eight' WHERE a=19464;\nUPDATE t2 SET c='forty-five thousand one hundred fifty-six' WHERE a=19465;\nUPDATE t2 SET c='twenty-five thousand six hundred thirty-six' WHERE a=19466;\nUPDATE t2 SET c='one thousand five hundred thirty-six' WHERE a=19467;\nUPDATE t2 SET c='eighty-nine thousand six hundred thirty-nine' WHERE a=19468;\nUPDATE t2 SET c='twenty-one thousand six hundred ninety-three' WHERE a=19469;\nUPDATE t2 SET c='eighty-six thousand seven hundred fifty-three' WHERE a=19470;\nUPDATE t2 SET c='ninety-six thousand three hundred thirteen' WHERE a=19471;\nUPDATE t2 SET c='ninety-two thousand nine hundred five' WHERE a=19472;\nUPDATE t2 SET c='fifty-six thousand one hundred fifty-three' WHERE a=19473;\nUPDATE t2 SET c='forty-six thousand four hundred seven' WHERE a=19474;\nUPDATE t2 SET c='ninety-eight thousand eight hundred forty-one' WHERE a=19475;\nUPDATE t2 SET c='seventy-eight thousand three hundred sixty-one' WHERE a=19476;\nUPDATE t2 SET c='ninety-eight thousand six hundred fifteen' WHERE a=19477;\nUPDATE t2 SET c='ninety-seven thousand two hundred sixteen' WHERE a=19478;\nUPDATE t2 SET c='ninety-seven thousand one' WHERE a=19479;\nUPDATE t2 SET c='eighty-four thousand five hundred fifty-four' WHERE a=19480;\nUPDATE t2 SET c='seventy-six thousand fifty-nine' WHERE a=19481;\nUPDATE t2 SET c='twelve thousand five hundred sixteen' WHERE a=19482;\nUPDATE t2 SET c='forty-six thousand eight hundred three' WHERE a=19483;\nUPDATE t2 SET c='three thousand nine hundred seventy-four' WHERE a=19484;\nUPDATE t2 SET c='seventy-three thousand ninety-three' WHERE a=19485;\nUPDATE t2 SET c='seventy-nine thousand five hundred seventy-three' WHERE a=19486;\nUPDATE t2 SET c='seventy-six thousand five hundred forty-two' WHERE a=19487;\nUPDATE t2 SET c='ninety-five thousand fifty-four' WHERE a=19488;\nUPDATE t2 SET c='thirty-seven thousand sixty-seven' WHERE a=19489;\nUPDATE t2 SET c='thirty-three thousand six hundred fifty-three' WHERE a=19490;\nUPDATE t2 SET c='eighty-one thousand nine hundred' WHERE a=19491;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-eight' WHERE a=19492;\nUPDATE t2 SET c='twenty-three thousand three hundred nineteen' WHERE a=19493;\nUPDATE t2 SET c='fifty-one thousand seven hundred nine' WHERE a=19494;\nUPDATE t2 SET c='twenty-nine thousand eleven' WHERE a=19495;\nUPDATE t2 SET c='ninety-five thousand seven hundred twenty-seven' WHERE a=19496;\nUPDATE t2 SET c='fifty-four thousand two hundred sixty' WHERE a=19497;\nUPDATE t2 SET c='seventy-three thousand six hundred fifty' WHERE a=19498;\nUPDATE t2 SET c='twenty-five thousand eight hundred eighty-five' WHERE a=19499;\nUPDATE t2 SET c='eighty-eight thousand three hundred sixty' WHERE a=19500;\nUPDATE t2 SET c='thirty-one thousand six hundred twelve' WHERE a=19501;\nUPDATE t2 SET c='fifty-nine thousand seven hundred fifty-four' WHERE a=19502;\nUPDATE t2 SET c='forty-four thousand six hundred ninety-four' WHERE a=19503;\nUPDATE t2 SET c='twenty-nine thousand nine hundred eighty-eight' WHERE a=19504;\nUPDATE t2 SET c='twenty-eight thousand one hundred sixty-one' WHERE a=19505;\nUPDATE t2 SET c='sixty-two thousand eight hundred four' WHERE a=19506;\nUPDATE t2 SET c='twenty-nine thousand eight hundred six' WHERE a=19507;\nUPDATE t2 SET c='eighty-six thousand eight hundred sixty-nine' WHERE a=19508;\nUPDATE t2 SET c='ninety thousand five hundred twenty-nine' WHERE a=19509;\nUPDATE t2 SET c='sixty-nine thousand five hundred sixty-four' WHERE a=19510;\nUPDATE t2 SET c='thirty-six thousand two hundred ten' WHERE a=19511;\nUPDATE t2 SET c='twelve thousand four hundred forty-five' WHERE a=19512;\nUPDATE t2 SET c='fifty-five thousand five hundred forty-two' WHERE a=19513;\nUPDATE t2 SET c='seventy-eight thousand one hundred seventy' WHERE a=19514;\nUPDATE t2 SET c='sixty-eight thousand nine hundred seventy-eight' WHERE a=19515;\nUPDATE t2 SET c='forty-three thousand eighty-five' WHERE a=19516;\nUPDATE t2 SET c='ninety-four thousand eight hundred eighty-five' WHERE a=19517;\nUPDATE t2 SET c='seventy-seven thousand seven hundred ninety-one' WHERE a=19518;\nUPDATE t2 SET c='twenty-six thousand six hundred seventy-six' WHERE a=19519;\nUPDATE t2 SET c='ninety-six thousand four hundred fifteen' WHERE a=19520;\nUPDATE t2 SET c='ninety-eight thousand forty' WHERE a=19521;\nUPDATE t2 SET c='forty thousand four hundred fifty-two' WHERE a=19522;\nUPDATE t2 SET c='sixty-nine thousand seven hundred nine' WHERE a=19523;\nUPDATE t2 SET c='eighty-nine thousand six hundred ninety' WHERE a=19524;\nUPDATE t2 SET c='ninety-two thousand five hundred thirty-five' WHERE a=19525;\nUPDATE t2 SET c='sixty-eight thousand two hundred fifteen' WHERE a=19526;\nUPDATE t2 SET c='seventy-one thousand six hundred seventy-seven' WHERE a=19527;\nUPDATE t2 SET c='forty-one thousand two hundred eighty-seven' WHERE a=19528;\nUPDATE t2 SET c='five thousand eight hundred seventy-eight' WHERE a=19529;\nUPDATE t2 SET c='eighty-five thousand nineteen' WHERE a=19530;\nUPDATE t2 SET c='eleven thousand five hundred thirty-four' WHERE a=19531;\nUPDATE t2 SET c='eleven thousand eight hundred five' WHERE a=19532;\nUPDATE t2 SET c='eight thousand seven hundred fifty-five' WHERE a=19533;\nUPDATE t2 SET c='fifty-eight thousand six hundred eighty-three' WHERE a=19534;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixteen' WHERE a=19535;\nUPDATE t2 SET c='eighty-three thousand seventeen' WHERE a=19536;\nUPDATE t2 SET c='ten thousand six hundred seventy-eight' WHERE a=19537;\nUPDATE t2 SET c='seventeen thousand four hundred twenty-five' WHERE a=19538;\nUPDATE t2 SET c='eighteen thousand two hundred eighty-nine' WHERE a=19539;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty' WHERE a=19540;\nUPDATE t2 SET c='fifty-five thousand three hundred ninety-eight' WHERE a=19541;\nUPDATE t2 SET c='seven thousand two hundred eighteen' WHERE a=19542;\nUPDATE t2 SET c='seventy-three thousand five hundred fifty-nine' WHERE a=19543;\nUPDATE t2 SET c='forty thousand seven hundred twenty-five' WHERE a=19544;\nUPDATE t2 SET c='nine thousand eight hundred fifty-seven' WHERE a=19545;\nUPDATE t2 SET c='thirty-one thousand nine hundred forty' WHERE a=19546;\nUPDATE t2 SET c='eighteen thousand five hundred one' WHERE a=19547;\nUPDATE t2 SET c='seven thousand six hundred eighty-four' WHERE a=19548;\nUPDATE t2 SET c='forty-nine thousand five hundred sixty-eight' WHERE a=19549;\nUPDATE t2 SET c='fourteen thousand six hundred sixty-seven' WHERE a=19550;\nUPDATE t2 SET c='fifty-three thousand two hundred forty-one' WHERE a=19551;\nUPDATE t2 SET c='forty thousand five hundred sixty-nine' WHERE a=19552;\nUPDATE t2 SET c='thirty-three thousand four hundred forty-three' WHERE a=19553;\nUPDATE t2 SET c='nine thousand thirty-seven' WHERE a=19554;\nUPDATE t2 SET c='forty-seven thousand eight hundred fifty-four' WHERE a=19555;\nUPDATE t2 SET c='ten thousand five hundred seven' WHERE a=19556;\nUPDATE t2 SET c='seventeen thousand ninety-nine' WHERE a=19557;\nUPDATE t2 SET c='seventy-nine thousand three hundred twenty-six' WHERE a=19558;\nUPDATE t2 SET c='forty-four thousand one hundred twenty-nine' WHERE a=19559;\nUPDATE t2 SET c='twenty-seven thousand four hundred thirty-nine' WHERE a=19560;\nUPDATE t2 SET c='twenty-four thousand five hundred twelve' WHERE a=19561;\nUPDATE t2 SET c='twenty-nine thousand four hundred sixty-one' WHERE a=19562;\nUPDATE t2 SET c='eighty-eight thousand five hundred sixty-seven' WHERE a=19563;\nUPDATE t2 SET c='sixty-eight thousand eight hundred one' WHERE a=19564;\nUPDATE t2 SET c='fifty-four thousand one hundred seventy-two' WHERE a=19565;\nUPDATE t2 SET c='six thousand four hundred eighty' WHERE a=19566;\nUPDATE t2 SET c='fifty-four thousand nine hundred twenty' WHERE a=19567;\nUPDATE t2 SET c='thirty-two thousand four hundred eight' WHERE a=19568;\nUPDATE t2 SET c='ten thousand eight hundred nineteen' WHERE a=19569;\nUPDATE t2 SET c='ninety thousand nine hundred forty-two' WHERE a=19570;\nUPDATE t2 SET c='seventeen thousand seventy-five' WHERE a=19571;\nUPDATE t2 SET c='sixty thousand eighty-six' WHERE a=19572;\nUPDATE t2 SET c='fifty-three thousand eight hundred twenty-two' WHERE a=19573;\nUPDATE t2 SET c='forty-six thousand one hundred eighty-six' WHERE a=19574;\nUPDATE t2 SET c='seven thousand four hundred twenty-two' WHERE a=19575;\nUPDATE t2 SET c='twenty-seven thousand eight hundred thirty' WHERE a=19576;\nUPDATE t2 SET c='thirty-eight thousand six' WHERE a=19577;\nUPDATE t2 SET c='forty-seven thousand six hundred sixty' WHERE a=19578;\nUPDATE t2 SET c='ninety-six thousand nine hundred thirty-eight' WHERE a=19579;\nUPDATE t2 SET c='three thousand three hundred twenty' WHERE a=19580;\nUPDATE t2 SET c='thirty-five thousand one hundred sixty-eight' WHERE a=19581;\nUPDATE t2 SET c='ninety-four thousand five hundred forty-four' WHERE a=19582;\nUPDATE t2 SET c='eighty-six thousand four hundred fifty-six' WHERE a=19583;\nUPDATE t2 SET c='two thousand eight hundred eight' WHERE a=19584;\nUPDATE t2 SET c='thirty-two thousand seven hundred fifty-one' WHERE a=19585;\nUPDATE t2 SET c='fifty-eight thousand eight hundred nine' WHERE a=19586;\nUPDATE t2 SET c='fifty-five thousand forty-four' WHERE a=19587;\nUPDATE t2 SET c='twenty thousand one hundred eighty-eight' WHERE a=19588;\nUPDATE t2 SET c='fifty-nine thousand fifty-nine' WHERE a=19589;\nUPDATE t2 SET c='fourteen thousand six hundred ninety-nine' WHERE a=19590;\nUPDATE t2 SET c='ninety-six thousand fifty-nine' WHERE a=19591;\nUPDATE t2 SET c='thirty-five thousand three hundred thirty' WHERE a=19592;\nUPDATE t2 SET c='thirty-three thousand seventy-one' WHERE a=19593;\nUPDATE t2 SET c='fifty thousand nine hundred ninety-one' WHERE a=19594;\nUPDATE t2 SET c='ninety-seven thousand nine hundred one' WHERE a=19595;\nUPDATE t2 SET c='sixty-eight thousand nine hundred eighty-six' WHERE a=19596;\nUPDATE t2 SET c='sixty-seven thousand four hundred thirteen' WHERE a=19597;\nUPDATE t2 SET c='seventeen thousand two hundred ninety-eight' WHERE a=19598;\nUPDATE t2 SET c='seventy-seven thousand nine hundred twenty-one' WHERE a=19599;\nUPDATE t2 SET c='fifty-six thousand two hundred forty-three' WHERE a=19600;\nUPDATE t2 SET c='forty thousand four hundred twenty-eight' WHERE a=19601;\nUPDATE t2 SET c='sixteen thousand two hundred sixty-five' WHERE a=19602;\nUPDATE t2 SET c='twelve thousand seven hundred thirty-six' WHERE a=19603;\nUPDATE t2 SET c='eighty-six thousand twenty-nine' WHERE a=19604;\nUPDATE t2 SET c='fifty-seven thousand nine hundred thirty-six' WHERE a=19605;\nUPDATE t2 SET c='seventy-eight thousand seventy' WHERE a=19606;\nUPDATE t2 SET c='eighty-three thousand five hundred thirty-one' WHERE a=19607;\nUPDATE t2 SET c='eight thousand four hundred seventy-eight' WHERE a=19608;\nUPDATE t2 SET c='thirty-four thousand two hundred eighty-eight' WHERE a=19609;\nUPDATE t2 SET c='fifty-one thousand seven hundred thirty-one' WHERE a=19610;\nUPDATE t2 SET c='seventy-four thousand eight hundred seventy-seven' WHERE a=19611;\nUPDATE t2 SET c='seventy thousand one hundred ninety-one' WHERE a=19612;\nUPDATE t2 SET c='eighty-three thousand eight hundred forty' WHERE a=19613;\nUPDATE t2 SET c='sixty-three thousand three hundred seventy-three' WHERE a=19614;\nUPDATE t2 SET c='twenty-five thousand four hundred six' WHERE a=19615;\nUPDATE t2 SET c='seventy-nine thousand eight hundred thirty-nine' WHERE a=19616;\nUPDATE t2 SET c='thirty-six thousand eighty-nine' WHERE a=19617;\nUPDATE t2 SET c='three thousand two hundred eighty-two' WHERE a=19618;\nUPDATE t2 SET c='fifty-one thousand three hundred eighty-six' WHERE a=19619;\nUPDATE t2 SET c='one thousand eight hundred ninety-eight' WHERE a=19620;\nUPDATE t2 SET c='seventy-two thousand two hundred one' WHERE a=19621;\nUPDATE t2 SET c='seventy-four thousand four hundred seventy-eight' WHERE a=19622;\nUPDATE t2 SET c='forty-seven thousand three hundred seventy-five' WHERE a=19623;\nUPDATE t2 SET c='sixty thousand eight hundred thirty-seven' WHERE a=19624;\nUPDATE t2 SET c='thirty-six thousand three hundred eighteen' WHERE a=19625;\nUPDATE t2 SET c='forty-one thousand one hundred eighty' WHERE a=19626;\nUPDATE t2 SET c='three thousand eight hundred sixty-eight' WHERE a=19627;\nUPDATE t2 SET c='forty-one thousand one hundred eleven' WHERE a=19628;\nUPDATE t2 SET c='thirty-two thousand five hundred eighteen' WHERE a=19629;\nUPDATE t2 SET c='six thousand five hundred seventy-one' WHERE a=19630;\nUPDATE t2 SET c='eighty-seven thousand one hundred ninety-nine' WHERE a=19631;\nUPDATE t2 SET c='sixty-nine thousand sixty' WHERE a=19632;\nUPDATE t2 SET c='forty-nine thousand two hundred four' WHERE a=19633;\nUPDATE t2 SET c='twenty-eight thousand four hundred twenty-nine' WHERE a=19634;\nUPDATE t2 SET c='sixty-six thousand three hundred ten' WHERE a=19635;\nUPDATE t2 SET c='eighty-six thousand eight hundred sixty-five' WHERE a=19636;\nUPDATE t2 SET c='thirty-six thousand four hundred fifty-four' WHERE a=19637;\nUPDATE t2 SET c='forty-seven thousand six hundred thirty-six' WHERE a=19638;\nUPDATE t2 SET c='sixty-three thousand thirty-nine' WHERE a=19639;\nUPDATE t2 SET c='eleven thousand seven hundred eighty-two' WHERE a=19640;\nUPDATE t2 SET c='eighty-nine thousand two hundred thirty-four' WHERE a=19641;\nUPDATE t2 SET c='ninety-five thousand eight hundred ninety-one' WHERE a=19642;\nUPDATE t2 SET c='seventy-three thousand nine hundred forty' WHERE a=19643;\nUPDATE t2 SET c='thirty-nine thousand eight hundred thirty-four' WHERE a=19644;\nUPDATE t2 SET c='ninety-six thousand nine hundred fifty-eight' WHERE a=19645;\nUPDATE t2 SET c='twenty-one thousand five hundred fifty-six' WHERE a=19646;\nUPDATE t2 SET c='fifteen thousand six hundred fifty-three' WHERE a=19647;\nUPDATE t2 SET c='sixty-six thousand six hundred twenty-six' WHERE a=19648;\nUPDATE t2 SET c='seventy thousand nine hundred fifty-five' WHERE a=19649;\nUPDATE t2 SET c='nineteen thousand five hundred twenty' WHERE a=19650;\nUPDATE t2 SET c='seventy-seven thousand nine hundred forty-one' WHERE a=19651;\nUPDATE t2 SET c='fifty thousand five hundred thirty-eight' WHERE a=19652;\nUPDATE t2 SET c='three thousand six hundred twenty' WHERE a=19653;\nUPDATE t2 SET c='twelve thousand one hundred fifteen' WHERE a=19654;\nUPDATE t2 SET c='twenty-eight thousand eight hundred thirty-seven' WHERE a=19655;\nUPDATE t2 SET c='ninety-three thousand seven hundred eighty-six' WHERE a=19656;\nUPDATE t2 SET c='seventy-seven thousand two hundred ninety-four' WHERE a=19657;\nUPDATE t2 SET c='ninety-nine thousand four hundred seventeen' WHERE a=19658;\nUPDATE t2 SET c='thirty-five thousand sixty-three' WHERE a=19659;\nUPDATE t2 SET c='eighty-three thousand three hundred seventeen' WHERE a=19660;\nUPDATE t2 SET c='sixty thousand eight hundred sixty-three' WHERE a=19661;\nUPDATE t2 SET c='eighty-eight thousand forty-four' WHERE a=19662;\nUPDATE t2 SET c='five thousand three hundred fifty-four' WHERE a=19663;\nUPDATE t2 SET c='sixty-one thousand one hundred fifty-eight' WHERE a=19664;\nUPDATE t2 SET c='sixty-five thousand seven hundred twenty-eight' WHERE a=19665;\nUPDATE t2 SET c='ninety-seven thousand three hundred seventy-three' WHERE a=19666;\nUPDATE t2 SET c='two thousand thirty-five' WHERE a=19667;\nUPDATE t2 SET c='sixty-one thousand one hundred ninety-one' WHERE a=19668;\nUPDATE t2 SET c='twenty-five thousand nine hundred ninety-two' WHERE a=19669;\nUPDATE t2 SET c='sixty-three thousand five hundred thirty-three' WHERE a=19670;\nUPDATE t2 SET c='two thousand nine hundred eighty-six' WHERE a=19671;\nUPDATE t2 SET c='fifty-two thousand six hundred seventy-three' WHERE a=19672;\nUPDATE t2 SET c='forty-eight thousand four hundred fifty-eight' WHERE a=19673;\nUPDATE t2 SET c='eighty-six thousand two hundred seventy-one' WHERE a=19674;\nUPDATE t2 SET c='fifteen thousand seven hundred two' WHERE a=19675;\nUPDATE t2 SET c='eighty-three thousand one hundred sixty-five' WHERE a=19676;\nUPDATE t2 SET c='fifty-nine thousand two hundred ten' WHERE a=19677;\nUPDATE t2 SET c='forty-two thousand seven hundred ninety' WHERE a=19678;\nUPDATE t2 SET c='fourteen thousand one hundred twenty' WHERE a=19679;\nUPDATE t2 SET c='thirty-one thousand eight hundred fourteen' WHERE a=19680;\nUPDATE t2 SET c='two thousand ninety-five' WHERE a=19681;\nUPDATE t2 SET c='sixty-three thousand four hundred forty-one' WHERE a=19682;\nUPDATE t2 SET c='twenty-two thousand two hundred seventy' WHERE a=19683;\nUPDATE t2 SET c='sixteen thousand eight hundred seventy-nine' WHERE a=19684;\nUPDATE t2 SET c='thirty-one thousand one hundred' WHERE a=19685;\nUPDATE t2 SET c='fifteen thousand six hundred thirty-two' WHERE a=19686;\nUPDATE t2 SET c='twenty thousand nine hundred forty-one' WHERE a=19687;\nUPDATE t2 SET c='ten thousand eight hundred fifty' WHERE a=19688;\nUPDATE t2 SET c='ninety-six thousand four hundred twenty-nine' WHERE a=19689;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixty-nine' WHERE a=19690;\nUPDATE t2 SET c='ninety-four thousand one hundred twenty-four' WHERE a=19691;\nUPDATE t2 SET c='thirty-three thousand eight hundred fifty-eight' WHERE a=19692;\nUPDATE t2 SET c='forty-five thousand seven hundred sixty-seven' WHERE a=19693;\nUPDATE t2 SET c='nine thousand three hundred seventy' WHERE a=19694;\nUPDATE t2 SET c='fifteen thousand one hundred ninety-three' WHERE a=19695;\nUPDATE t2 SET c='fifty-five thousand four hundred four' WHERE a=19696;\nUPDATE t2 SET c='seventy-one thousand eight hundred ninety-four' WHERE a=19697;\nUPDATE t2 SET c='sixty-eight thousand three hundred ninety-two' WHERE a=19698;\nUPDATE t2 SET c='ninety-two thousand two hundred thirteen' WHERE a=19699;\nUPDATE t2 SET c='forty-six thousand four hundred seventy-nine' WHERE a=19700;\nUPDATE t2 SET c='ninety-eight thousand five hundred five' WHERE a=19701;\nUPDATE t2 SET c='eight thousand nine hundred forty-nine' WHERE a=19702;\nUPDATE t2 SET c='sixty-seven thousand five hundred seventy-five' WHERE a=19703;\nUPDATE t2 SET c='eighty-five thousand five hundred eighty-seven' WHERE a=19704;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ninety-one' WHERE a=19705;\nUPDATE t2 SET c='fifty-five thousand nine hundred fifty' WHERE a=19706;\nUPDATE t2 SET c='fifty-four thousand six hundred four' WHERE a=19707;\nUPDATE t2 SET c='three thousand three hundred twenty-two' WHERE a=19708;\nUPDATE t2 SET c='thirty-three thousand six hundred twenty-five' WHERE a=19709;\nUPDATE t2 SET c='eighty-eight thousand five hundred thirteen' WHERE a=19710;\nUPDATE t2 SET c='seventy-two thousand seven hundred fifty-five' WHERE a=19711;\nUPDATE t2 SET c='forty-four thousand eighty-three' WHERE a=19712;\nUPDATE t2 SET c='thirty-two thousand one hundred thirteen' WHERE a=19713;\nUPDATE t2 SET c='five thousand seven hundred ninety-seven' WHERE a=19714;\nUPDATE t2 SET c='fourteen thousand three hundred seventeen' WHERE a=19715;\nUPDATE t2 SET c='seventy-three thousand eight hundred thirty-one' WHERE a=19716;\nUPDATE t2 SET c='thirty-seven thousand three hundred ninety-seven' WHERE a=19717;\nUPDATE t2 SET c='eight thousand nine hundred thirty' WHERE a=19718;\nUPDATE t2 SET c='twenty-four thousand eight hundred ninety-six' WHERE a=19719;\nUPDATE t2 SET c='thirty-six thousand fifty-four' WHERE a=19720;\nUPDATE t2 SET c='seventy-three thousand eight hundred eighty-two' WHERE a=19721;\nUPDATE t2 SET c='eleven thousand six hundred sixty-four' WHERE a=19722;\nUPDATE t2 SET c='sixty-two thousand four hundred fifty-eight' WHERE a=19723;\nUPDATE t2 SET c='sixty thousand one hundred forty-eight' WHERE a=19724;\nUPDATE t2 SET c='fifty-six thousand eighty-seven' WHERE a=19725;\nUPDATE t2 SET c='twelve thousand one hundred eighty-eight' WHERE a=19726;\nUPDATE t2 SET c='twenty-two thousand nine hundred sixty-nine' WHERE a=19727;\nUPDATE t2 SET c='ninety-three thousand ninety-seven' WHERE a=19728;\nUPDATE t2 SET c='ninety-six thousand two hundred fifty-four' WHERE a=19729;\nUPDATE t2 SET c='seventy-four thousand one hundred fifteen' WHERE a=19730;\nUPDATE t2 SET c='thirty-five thousand eight hundred fifty-seven' WHERE a=19731;\nUPDATE t2 SET c='ninety thousand one hundred eighty-four' WHERE a=19732;\nUPDATE t2 SET c='thirty-seven thousand three hundred fifty' WHERE a=19733;\nUPDATE t2 SET c='thirty-two thousand nine hundred fifty' WHERE a=19734;\nUPDATE t2 SET c='eighty-six thousand six hundred nineteen' WHERE a=19735;\nUPDATE t2 SET c='thirteen thousand six hundred fifteen' WHERE a=19736;\nUPDATE t2 SET c='twenty-five thousand nine hundred eighty-three' WHERE a=19737;\nUPDATE t2 SET c='seventy-five thousand six hundred sixteen' WHERE a=19738;\nUPDATE t2 SET c='sixty-four thousand nine hundred ninety-four' WHERE a=19739;\nUPDATE t2 SET c='thirty-one thousand two hundred eighty' WHERE a=19740;\nUPDATE t2 SET c='fifty-one thousand three hundred eighty-two' WHERE a=19741;\nUPDATE t2 SET c='seventy-six thousand six hundred forty-six' WHERE a=19742;\nUPDATE t2 SET c='eighty-four thousand seven hundred forty-two' WHERE a=19743;\nUPDATE t2 SET c='thirty-nine thousand one hundred eight' WHERE a=19744;\nUPDATE t2 SET c='ninety-nine thousand four hundred fifty-eight' WHERE a=19745;\nUPDATE t2 SET c='forty-four thousand eight hundred ninety-three' WHERE a=19746;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-one' WHERE a=19747;\nUPDATE t2 SET c='two thousand three hundred one' WHERE a=19748;\nUPDATE t2 SET c='fifty-two thousand six hundred nineteen' WHERE a=19749;\nUPDATE t2 SET c='sixty-one thousand eight hundred eighty-five' WHERE a=19750;\nUPDATE t2 SET c='twelve thousand two hundred eighty-four' WHERE a=19751;\nUPDATE t2 SET c='twenty-seven thousand eight hundred ninety-four' WHERE a=19752;\nUPDATE t2 SET c='twenty-eight thousand seven hundred two' WHERE a=19753;\nUPDATE t2 SET c='eighty-seven thousand one hundred sixty-nine' WHERE a=19754;\nUPDATE t2 SET c='thirty-seven thousand seven hundred seventy-seven' WHERE a=19755;\nUPDATE t2 SET c='forty-nine thousand eight hundred twenty-five' WHERE a=19756;\nUPDATE t2 SET c='seventy-four thousand five hundred sixty' WHERE a=19757;\nUPDATE t2 SET c='twenty-two thousand four hundred ninety-eight' WHERE a=19758;\nUPDATE t2 SET c='thirty-six thousand one hundred ninety-eight' WHERE a=19759;\nUPDATE t2 SET c='sixty-seven thousand two hundred eighty-eight' WHERE a=19760;\nUPDATE t2 SET c='sixty thousand eight hundred six' WHERE a=19761;\nUPDATE t2 SET c='thirty-four thousand five hundred forty-five' WHERE a=19762;\nUPDATE t2 SET c='sixty-eight thousand nine hundred sixteen' WHERE a=19763;\nUPDATE t2 SET c='eighty-seven thousand three hundred fifty-seven' WHERE a=19764;\nUPDATE t2 SET c='ten thousand five hundred twenty-two' WHERE a=19765;\nUPDATE t2 SET c='eighteen thousand three hundred thirty' WHERE a=19766;\nUPDATE t2 SET c='forty-four thousand one hundred four' WHERE a=19767;\nUPDATE t2 SET c='eighty-three thousand one hundred twenty-two' WHERE a=19768;\nUPDATE t2 SET c='fifty-two thousand nine hundred seventy-seven' WHERE a=19769;\nUPDATE t2 SET c='thirty-one thousand one hundred ninety-two' WHERE a=19770;\nUPDATE t2 SET c='eighty-nine thousand four hundred five' WHERE a=19771;\nUPDATE t2 SET c='seventy-one thousand six hundred seventeen' WHERE a=19772;\nUPDATE t2 SET c='sixty-three thousand one hundred fifty-two' WHERE a=19773;\nUPDATE t2 SET c='eighty-eight thousand two hundred fifty-five' WHERE a=19774;\nUPDATE t2 SET c='forty-three thousand seven hundred seventy-two' WHERE a=19775;\nUPDATE t2 SET c='thirty-eight thousand twelve' WHERE a=19776;\nUPDATE t2 SET c='seventy-nine thousand four hundred eighty-three' WHERE a=19777;\nUPDATE t2 SET c='fifty thousand four hundred eighty-seven' WHERE a=19778;\nUPDATE t2 SET c='eighty-five thousand three hundred seventy-five' WHERE a=19779;\nUPDATE t2 SET c='ninety-seven thousand three hundred thirty-four' WHERE a=19780;\nUPDATE t2 SET c='eighty-nine thousand four hundred fourteen' WHERE a=19781;\nUPDATE t2 SET c='forty thousand fifty-nine' WHERE a=19782;\nUPDATE t2 SET c='fifty-seven thousand five hundred eight' WHERE a=19783;\nUPDATE t2 SET c='sixty-six thousand two hundred forty-six' WHERE a=19784;\nUPDATE t2 SET c='thirty-six thousand nine hundred fifty-six' WHERE a=19785;\nUPDATE t2 SET c='fifty-three thousand three hundred seven' WHERE a=19786;\nUPDATE t2 SET c='thirty-nine thousand seven hundred thirty-six' WHERE a=19787;\nUPDATE t2 SET c='seventy-six thousand four hundred forty-two' WHERE a=19788;\nUPDATE t2 SET c='one thousand five hundred forty-six' WHERE a=19789;\nUPDATE t2 SET c='sixty-eight thousand one hundred fifteen' WHERE a=19790;\nUPDATE t2 SET c='forty-eight thousand seven hundred seventy-three' WHERE a=19791;\nUPDATE t2 SET c='forty-six thousand three hundred eighty-five' WHERE a=19792;\nUPDATE t2 SET c='sixty thousand four hundred seventy-nine' WHERE a=19793;\nUPDATE t2 SET c='forty-seven thousand eight hundred seventy-three' WHERE a=19794;\nUPDATE t2 SET c='fifty-four thousand five hundred fifty-four' WHERE a=19795;\nUPDATE t2 SET c='forty-six thousand seven hundred forty-three' WHERE a=19796;\nUPDATE t2 SET c='eighteen thousand three hundred twenty-seven' WHERE a=19797;\nUPDATE t2 SET c='seventy-nine thousand six hundred sixty-nine' WHERE a=19798;\nUPDATE t2 SET c='eight thousand nine hundred forty-seven' WHERE a=19799;\nUPDATE t2 SET c='thirty-seven thousand one hundred twenty-one' WHERE a=19800;\nUPDATE t2 SET c='forty-three thousand five hundred eighty-one' WHERE a=19801;\nUPDATE t2 SET c='thirty-eight thousand eight hundred ninety' WHERE a=19802;\nUPDATE t2 SET c='sixty-five thousand four hundred ninety-seven' WHERE a=19803;\nUPDATE t2 SET c='sixty-one thousand eight hundred seventy-nine' WHERE a=19804;\nUPDATE t2 SET c='forty-nine thousand seven hundred eighty-seven' WHERE a=19805;\nUPDATE t2 SET c='eighty thousand six hundred ninety-two' WHERE a=19806;\nUPDATE t2 SET c='fifty-three thousand one hundred eighty-two' WHERE a=19807;\nUPDATE t2 SET c='twenty-six thousand five hundred fifteen' WHERE a=19808;\nUPDATE t2 SET c='fifty-eight thousand three hundred sixty-six' WHERE a=19809;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty' WHERE a=19810;\nUPDATE t2 SET c='twenty-five thousand nine hundred twenty-six' WHERE a=19811;\nUPDATE t2 SET c='sixteen thousand ninety-two' WHERE a=19812;\nUPDATE t2 SET c='one thousand three hundred twenty-nine' WHERE a=19813;\nUPDATE t2 SET c='ninety-four thousand one hundred fifty' WHERE a=19814;\nUPDATE t2 SET c='three thousand forty-five' WHERE a=19815;\nUPDATE t2 SET c='seventy-five thousand three hundred forty-five' WHERE a=19816;\nUPDATE t2 SET c='sixty-eight thousand eight hundred ten' WHERE a=19817;\nUPDATE t2 SET c='sixteen thousand five hundred fifty-seven' WHERE a=19818;\nUPDATE t2 SET c='eighty-seven thousand three hundred thirty-four' WHERE a=19819;\nUPDATE t2 SET c='sixty-one thousand one hundred eighteen' WHERE a=19820;\nUPDATE t2 SET c='twenty-nine thousand six hundred eighty-four' WHERE a=19821;\nUPDATE t2 SET c='ninety-five thousand nine hundred seventy-seven' WHERE a=19822;\nUPDATE t2 SET c='fifty thousand four hundred eighty-five' WHERE a=19823;\nUPDATE t2 SET c='ninety-three thousand five hundred twenty-two' WHERE a=19824;\nUPDATE t2 SET c='forty-one thousand four hundred seven' WHERE a=19825;\nUPDATE t2 SET c='nineteen thousand seven hundred twelve' WHERE a=19826;\nUPDATE t2 SET c='five thousand six hundred four' WHERE a=19827;\nUPDATE t2 SET c='ten thousand five hundred five' WHERE a=19828;\nUPDATE t2 SET c='eight thousand four hundred eight' WHERE a=19829;\nUPDATE t2 SET c='one thousand eight hundred forty-five' WHERE a=19830;\nUPDATE t2 SET c='thirty-six thousand nine hundred eighty-one' WHERE a=19831;\nUPDATE t2 SET c='thirty-four thousand seven hundred fifty' WHERE a=19832;\nUPDATE t2 SET c='sixty-eight thousand five hundred forty-three' WHERE a=19833;\nUPDATE t2 SET c='forty-two thousand two hundred ninety-one' WHERE a=19834;\nUPDATE t2 SET c='eighty thousand eight hundred twenty-seven' WHERE a=19835;\nUPDATE t2 SET c='forty thousand three hundred thirty-three' WHERE a=19836;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-four' WHERE a=19837;\nUPDATE t2 SET c='sixty-eight thousand one hundred seventy-eight' WHERE a=19838;\nUPDATE t2 SET c='ninety-three thousand seven hundred sixty' WHERE a=19839;\nUPDATE t2 SET c='seventy-nine thousand one hundred sixty-one' WHERE a=19840;\nUPDATE t2 SET c='thirty thousand one hundred fifteen' WHERE a=19841;\nUPDATE t2 SET c='ninety thousand four hundred seventy-two' WHERE a=19842;\nUPDATE t2 SET c='fifty-five thousand three hundred eighteen' WHERE a=19843;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-six' WHERE a=19844;\nUPDATE t2 SET c='eighty-six thousand twenty-six' WHERE a=19845;\nUPDATE t2 SET c='ninety-three thousand five hundred thirty' WHERE a=19846;\nUPDATE t2 SET c='thirteen thousand sixty-four' WHERE a=19847;\nUPDATE t2 SET c='thirty-seven thousand nine hundred seventeen' WHERE a=19848;\nUPDATE t2 SET c='eighty-two thousand five hundred nine' WHERE a=19849;\nUPDATE t2 SET c='thirteen thousand four hundred forty' WHERE a=19850;\nUPDATE t2 SET c='nine thousand five hundred twenty-six' WHERE a=19851;\nUPDATE t2 SET c='ninety-nine thousand four hundred six' WHERE a=19852;\nUPDATE t2 SET c='fifty-four thousand eight hundred thirty-nine' WHERE a=19853;\nUPDATE t2 SET c='seventy-eight thousand four hundred sixty' WHERE a=19854;\nUPDATE t2 SET c='seventy-three thousand three' WHERE a=19855;\nUPDATE t2 SET c='twenty-five thousand six hundred forty' WHERE a=19856;\nUPDATE t2 SET c='thirty-eight thousand five hundred eighty' WHERE a=19857;\nUPDATE t2 SET c='eighty-nine thousand one hundred forty-four' WHERE a=19858;\nUPDATE t2 SET c='thirteen thousand twenty' WHERE a=19859;\nUPDATE t2 SET c='thirty thousand seven hundred forty-nine' WHERE a=19860;\nUPDATE t2 SET c='seventy thousand four hundred ninety-six' WHERE a=19861;\nUPDATE t2 SET c='ninety-six thousand eight hundred forty' WHERE a=19862;\nUPDATE t2 SET c='sixty-one thousand seven hundred twenty-three' WHERE a=19863;\nUPDATE t2 SET c='ninety-one thousand eight hundred twenty-eight' WHERE a=19864;\nUPDATE t2 SET c='fifty-five thousand three hundred fifteen' WHERE a=19865;\nUPDATE t2 SET c='forty-five thousand eight hundred seventy-four' WHERE a=19866;\nUPDATE t2 SET c='fifty thousand seven hundred sixty-five' WHERE a=19867;\nUPDATE t2 SET c='eighty-two thousand five hundred twelve' WHERE a=19868;\nUPDATE t2 SET c='forty-one thousand four hundred eighty-four' WHERE a=19869;\nUPDATE t2 SET c='forty-eight thousand seven hundred ninety-eight' WHERE a=19870;\nUPDATE t2 SET c='fifty-five thousand one hundred four' WHERE a=19871;\nUPDATE t2 SET c='twenty-four thousand nine hundred ninety' WHERE a=19872;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eighty-five' WHERE a=19873;\nUPDATE t2 SET c='thirty-five thousand two hundred fifty-three' WHERE a=19874;\nUPDATE t2 SET c='eighty-three thousand nine hundred thirty-four' WHERE a=19875;\nUPDATE t2 SET c='seventy-two thousand one hundred thirty-two' WHERE a=19876;\nUPDATE t2 SET c='thirty-four thousand twenty-three' WHERE a=19877;\nUPDATE t2 SET c='fifty-eight thousand six hundred thirty' WHERE a=19878;\nUPDATE t2 SET c='sixteen thousand two hundred sixty-seven' WHERE a=19879;\nUPDATE t2 SET c='twenty-nine thousand four hundred ninety-five' WHERE a=19880;\nUPDATE t2 SET c='forty thousand one hundred sixty' WHERE a=19881;\nUPDATE t2 SET c='eighty thousand three hundred fifty-four' WHERE a=19882;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-one' WHERE a=19883;\nUPDATE t2 SET c='twelve thousand six hundred seventy-two' WHERE a=19884;\nUPDATE t2 SET c='eight thousand one hundred five' WHERE a=19885;\nUPDATE t2 SET c='thirty-one thousand nine hundred fifteen' WHERE a=19886;\nUPDATE t2 SET c='eighty-two thousand two hundred eighty-three' WHERE a=19887;\nUPDATE t2 SET c='four thousand eight hundred fifty-four' WHERE a=19888;\nUPDATE t2 SET c='eighty-five thousand eight hundred fifteen' WHERE a=19889;\nUPDATE t2 SET c='forty thousand six hundred fifty-two' WHERE a=19890;\nUPDATE t2 SET c='thirty-four thousand four hundred eighty-three' WHERE a=19891;\nUPDATE t2 SET c='five thousand nine hundred eleven' WHERE a=19892;\nUPDATE t2 SET c='eighty-one thousand five hundred forty-one' WHERE a=19893;\nUPDATE t2 SET c='nineteen thousand six hundred fifty-four' WHERE a=19894;\nUPDATE t2 SET c='sixty-four thousand four hundred seventy-four' WHERE a=19895;\nUPDATE t2 SET c='twenty-three thousand thirty-four' WHERE a=19896;\nUPDATE t2 SET c='fifty-three thousand seven hundred seventy-nine' WHERE a=19897;\nUPDATE t2 SET c='forty-four thousand nine hundred forty-five' WHERE a=19898;\nUPDATE t2 SET c='ninety-six thousand five hundred eighty' WHERE a=19899;\nUPDATE t2 SET c='eighty-three thousand three' WHERE a=19900;\nUPDATE t2 SET c='twenty-four thousand five' WHERE a=19901;\nUPDATE t2 SET c='two thousand nine hundred two' WHERE a=19902;\nUPDATE t2 SET c='six thousand nine hundred' WHERE a=19903;\nUPDATE t2 SET c='thirty-eight thousand one hundred sixty-three' WHERE a=19904;\nUPDATE t2 SET c='twenty-seven thousand seven hundred fifty-four' WHERE a=19905;\nUPDATE t2 SET c='fifty-one thousand seven hundred eighty-two' WHERE a=19906;\nUPDATE t2 SET c='eighty-three thousand eight hundred sixty' WHERE a=19907;\nUPDATE t2 SET c='eleven thousand six hundred sixteen' WHERE a=19908;\nUPDATE t2 SET c='seventy-eight thousand sixteen' WHERE a=19909;\nUPDATE t2 SET c='eighty thousand three hundred ninety-three' WHERE a=19910;\nUPDATE t2 SET c='forty-eight thousand eight hundred ninety-three' WHERE a=19911;\nUPDATE t2 SET c='fifty thousand two hundred ninety-nine' WHERE a=19912;\nUPDATE t2 SET c='forty thousand two hundred forty-four' WHERE a=19913;\nUPDATE t2 SET c='ninety-eight thousand four hundred fifty-four' WHERE a=19914;\nUPDATE t2 SET c='fifty-five thousand eight hundred two' WHERE a=19915;\nUPDATE t2 SET c='ninety-eight thousand nine hundred ninety-nine' WHERE a=19916;\nUPDATE t2 SET c='seventy thousand eight hundred thirty-three' WHERE a=19917;\nUPDATE t2 SET c='sixty-five thousand six hundred seventy-eight' WHERE a=19918;\nUPDATE t2 SET c='fifty-two thousand four hundred fifty-five' WHERE a=19919;\nUPDATE t2 SET c='sixty-nine thousand one hundred thirty-nine' WHERE a=19920;\nUPDATE t2 SET c='fifty-seven thousand five hundred forty-six' WHERE a=19921;\nUPDATE t2 SET c='ninety-nine thousand three hundred eighty-one' WHERE a=19922;\nUPDATE t2 SET c='thirty-one thousand seven hundred seventy-four' WHERE a=19923;\nUPDATE t2 SET c='seventy-seven thousand three hundred seventy-one' WHERE a=19924;\nUPDATE t2 SET c='ninety-nine thousand two hundred sixty-two' WHERE a=19925;\nUPDATE t2 SET c='six thousand three hundred fifteen' WHERE a=19926;\nUPDATE t2 SET c='sixty-four thousand two hundred six' WHERE a=19927;\nUPDATE t2 SET c='eighty-eight thousand one hundred seventy-five' WHERE a=19928;\nUPDATE t2 SET c='fifty-one thousand one hundred thirty-five' WHERE a=19929;\nUPDATE t2 SET c='ninety thousand eighty-two' WHERE a=19930;\nUPDATE t2 SET c='forty-seven thousand two hundred forty-eight' WHERE a=19931;\nUPDATE t2 SET c='eighty-seven thousand five hundred ninety-one' WHERE a=19932;\nUPDATE t2 SET c='seventy-nine thousand one hundred fifty' WHERE a=19933;\nUPDATE t2 SET c='sixty thousand thirty-four' WHERE a=19934;\nUPDATE t2 SET c='fifty-four thousand four hundred seventy-eight' WHERE a=19935;\nUPDATE t2 SET c='five thousand forty-nine' WHERE a=19936;\nUPDATE t2 SET c='twenty-six thousand eight hundred eleven' WHERE a=19937;\nUPDATE t2 SET c='seventy-two thousand eight hundred seventeen' WHERE a=19938;\nUPDATE t2 SET c='thirty-two thousand six hundred ninety-one' WHERE a=19939;\nUPDATE t2 SET c='thirty-two thousand nine hundred two' WHERE a=19940;\nUPDATE t2 SET c='fourteen thousand two hundred twenty-one' WHERE a=19941;\nUPDATE t2 SET c='seventy-two thousand five hundred fifty-seven' WHERE a=19942;\nUPDATE t2 SET c='eighteen thousand two hundred ninety-seven' WHERE a=19943;\nUPDATE t2 SET c='forty-four thousand seven hundred sixty-seven' WHERE a=19944;\nUPDATE t2 SET c='forty thousand two hundred seventy-two' WHERE a=19945;\nUPDATE t2 SET c='sixty-three thousand eight hundred eighty-seven' WHERE a=19946;\nUPDATE t2 SET c='twenty-nine thousand seven hundred ninety-seven' WHERE a=19947;\nUPDATE t2 SET c='eight thousand three hundred nineteen' WHERE a=19948;\nUPDATE t2 SET c='eleven thousand nine hundred sixty-five' WHERE a=19949;\nUPDATE t2 SET c='fifty-three thousand nine hundred fifty-seven' WHERE a=19950;\nUPDATE t2 SET c='forty-three thousand two hundred ninety-eight' WHERE a=19951;\nUPDATE t2 SET c='forty-three thousand eight hundred seven' WHERE a=19952;\nUPDATE t2 SET c='twenty-three thousand eight hundred sixty-nine' WHERE a=19953;\nUPDATE t2 SET c='twelve thousand one hundred thirteen' WHERE a=19954;\nUPDATE t2 SET c='ninety-nine thousand eight hundred eighteen' WHERE a=19955;\nUPDATE t2 SET c='fifteen thousand two hundred forty-seven' WHERE a=19956;\nUPDATE t2 SET c='seventeen thousand one hundred ninety-nine' WHERE a=19957;\nUPDATE t2 SET c='twenty-three thousand one hundred forty-six' WHERE a=19958;\nUPDATE t2 SET c='thirty-two thousand seventy-one' WHERE a=19959;\nUPDATE t2 SET c='eleven thousand one hundred thirty-seven' WHERE a=19960;\nUPDATE t2 SET c='seventy-eight thousand eight hundred twelve' WHERE a=19961;\nUPDATE t2 SET c='thirteen thousand one hundred eighty-eight' WHERE a=19962;\nUPDATE t2 SET c='sixty-one thousand three hundred thirty-four' WHERE a=19963;\nUPDATE t2 SET c='ninety-nine thousand one hundred seventy-nine' WHERE a=19964;\nUPDATE t2 SET c='fourteen thousand three hundred eight' WHERE a=19965;\nUPDATE t2 SET c='thirty-nine thousand two hundred forty' WHERE a=19966;\nUPDATE t2 SET c='eighty-two thousand two hundred eighty-three' WHERE a=19967;\nUPDATE t2 SET c='eighty-eight thousand nine hundred thirty' WHERE a=19968;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy-seven' WHERE a=19969;\nUPDATE t2 SET c='twenty-seven thousand five hundred eighty-six' WHERE a=19970;\nUPDATE t2 SET c='two thousand three hundred twenty-nine' WHERE a=19971;\nUPDATE t2 SET c='twenty-two thousand six hundred ninety-seven' WHERE a=19972;\nUPDATE t2 SET c='eighty-four thousand eight hundred twenty-five' WHERE a=19973;\nUPDATE t2 SET c='six thousand six hundred sixty-six' WHERE a=19974;\nUPDATE t2 SET c='forty-nine thousand seven hundred seven' WHERE a=19975;\nUPDATE t2 SET c='twenty-nine thousand two hundred eighty-nine' WHERE a=19976;\nUPDATE t2 SET c='eighty-nine thousand five hundred sixty' WHERE a=19977;\nUPDATE t2 SET c='eighty-nine thousand six hundred forty-seven' WHERE a=19978;\nUPDATE t2 SET c='fifty-nine thousand nine hundred forty-nine' WHERE a=19979;\nUPDATE t2 SET c='seventy-nine thousand ninety-five' WHERE a=19980;\nUPDATE t2 SET c='seven thousand seven hundred ninety-four' WHERE a=19981;\nUPDATE t2 SET c='twenty-seven thousand four hundred thirty-three' WHERE a=19982;\nUPDATE t2 SET c='ninety-five thousand five hundred eighty-three' WHERE a=19983;\nUPDATE t2 SET c='seventy-nine thousand nine hundred forty-five' WHERE a=19984;\nUPDATE t2 SET c='four thousand sixty-six' WHERE a=19985;\nUPDATE t2 SET c='seventeen thousand three hundred twenty-two' WHERE a=19986;\nUPDATE t2 SET c='ninety-two thousand four hundred sixty-four' WHERE a=19987;\nUPDATE t2 SET c='seventy-six thousand nine hundred nine' WHERE a=19988;\nUPDATE t2 SET c='seventy-two thousand two hundred twenty-four' WHERE a=19989;\nUPDATE t2 SET c='ninety-three thousand six hundred sixteen' WHERE a=19990;\nUPDATE t2 SET c='ninety-five thousand seven hundred twenty-three' WHERE a=19991;\nUPDATE t2 SET c='ninety-nine thousand twenty-two' WHERE a=19992;\nUPDATE t2 SET c='twenty thousand four hundred eighty-six' WHERE a=19993;\nUPDATE t2 SET c='seventeen thousand three hundred eighty-seven' WHERE a=19994;\nUPDATE t2 SET c='forty-two thousand two hundred twenty-five' WHERE a=19995;\nUPDATE t2 SET c='eighty-seven thousand forty-nine' WHERE a=19996;\nUPDATE t2 SET c='sixteen thousand sixty-three' WHERE a=19997;\nUPDATE t2 SET c='thirty-eight thousand one hundred sixty-two' WHERE a=19998;\nUPDATE t2 SET c='eleven thousand two hundred eighty-five' WHERE a=19999;\nUPDATE t2 SET c='seventy thousand nine hundred forty-one' WHERE a=20000;\nUPDATE t2 SET c='sixteen thousand nine hundred thirty-two' WHERE a=20001;\nUPDATE t2 SET c='fifty-one thousand nine hundred nineteen' WHERE a=20002;\nUPDATE t2 SET c='twelve thousand five hundred sixty' WHERE a=20003;\nUPDATE t2 SET c='seventy-four thousand eight hundred forty-two' WHERE a=20004;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty-eight' WHERE a=20005;\nUPDATE t2 SET c='thirty-eight thousand one hundred thirty-seven' WHERE a=20006;\nUPDATE t2 SET c='forty thousand four hundred forty-six' WHERE a=20007;\nUPDATE t2 SET c='five thousand six hundred fifty-two' WHERE a=20008;\nUPDATE t2 SET c='seventy-one thousand one hundred seventy-six' WHERE a=20009;\nUPDATE t2 SET c='fifty-five thousand five hundred fifty-two' WHERE a=20010;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-two' WHERE a=20011;\nUPDATE t2 SET c='ninety-seven thousand four hundred twenty-nine' WHERE a=20012;\nUPDATE t2 SET c='forty-nine thousand one' WHERE a=20013;\nUPDATE t2 SET c='two thousand thirty-seven' WHERE a=20014;\nUPDATE t2 SET c='ninety thousand eight hundred seventy-seven' WHERE a=20015;\nUPDATE t2 SET c='ninety-four thousand eight hundred nine' WHERE a=20016;\nUPDATE t2 SET c='seventy-six thousand nine hundred thirty-six' WHERE a=20017;\nUPDATE t2 SET c='seventy-three thousand one hundred sixty-three' WHERE a=20018;\nUPDATE t2 SET c='twenty-two thousand four hundred twenty-three' WHERE a=20019;\nUPDATE t2 SET c='two thousand three hundred fifty-two' WHERE a=20020;\nUPDATE t2 SET c='ninety-six thousand three hundred sixty-eight' WHERE a=20021;\nUPDATE t2 SET c='ninety-two thousand six hundred fifteen' WHERE a=20022;\nUPDATE t2 SET c='thirty-eight thousand three hundred eighty-two' WHERE a=20023;\nUPDATE t2 SET c='seventy-six thousand one hundred forty-two' WHERE a=20024;\nUPDATE t2 SET c='forty-one thousand twenty-six' WHERE a=20025;\nUPDATE t2 SET c='forty thousand seven hundred ninety-nine' WHERE a=20026;\nUPDATE t2 SET c='thirteen thousand three hundred ninety-seven' WHERE a=20027;\nUPDATE t2 SET c='twenty-one thousand seven hundred sixty-three' WHERE a=20028;\nUPDATE t2 SET c='thirty-one thousand one hundred ninety' WHERE a=20029;\nUPDATE t2 SET c='sixty-two thousand five hundred ninety-six' WHERE a=20030;\nUPDATE t2 SET c='forty-seven thousand two hundred ninety' WHERE a=20031;\nUPDATE t2 SET c='seventy-eight thousand three hundred eighty-seven' WHERE a=20032;\nUPDATE t2 SET c='seventy-three thousand one hundred forty-nine' WHERE a=20033;\nUPDATE t2 SET c='eighty-four thousand two hundred fifty-nine' WHERE a=20034;\nUPDATE t2 SET c='sixty thousand eight hundred forty-one' WHERE a=20035;\nUPDATE t2 SET c='eighteen thousand four hundred twenty-two' WHERE a=20036;\nUPDATE t2 SET c='seventy-six thousand one hundred forty-four' WHERE a=20037;\nUPDATE t2 SET c='sixty-five thousand three hundred thirty-four' WHERE a=20038;\nUPDATE t2 SET c='five thousand six hundred thirty-nine' WHERE a=20039;\nUPDATE t2 SET c='thirty-eight thousand eight hundred ninety-six' WHERE a=20040;\nUPDATE t2 SET c='seven thousand eight hundred thirty-eight' WHERE a=20041;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty-eight' WHERE a=20042;\nUPDATE t2 SET c='thirty-four thousand two hundred ninety-seven' WHERE a=20043;\nUPDATE t2 SET c='five thousand nine hundred eighty-three' WHERE a=20044;\nUPDATE t2 SET c='eighty-three thousand four hundred thirty-two' WHERE a=20045;\nUPDATE t2 SET c='seventeen thousand nine hundred eighty-seven' WHERE a=20046;\nUPDATE t2 SET c='five thousand three hundred thirty-three' WHERE a=20047;\nUPDATE t2 SET c='fifty-nine thousand three hundred sixty-three' WHERE a=20048;\nUPDATE t2 SET c='thirty-seven thousand eight hundred four' WHERE a=20049;\nUPDATE t2 SET c='sixteen thousand two hundred thirty-nine' WHERE a=20050;\nUPDATE t2 SET c='five thousand one hundred' WHERE a=20051;\nUPDATE t2 SET c='forty-eight thousand nine' WHERE a=20052;\nUPDATE t2 SET c='fifty-two thousand five' WHERE a=20053;\nUPDATE t2 SET c='eighty-nine thousand eight hundred seventy-four' WHERE a=20054;\nUPDATE t2 SET c='fifty-two thousand seven hundred five' WHERE a=20055;\nUPDATE t2 SET c='twelve thousand seven hundred thirteen' WHERE a=20056;\nUPDATE t2 SET c='eighty-eight thousand one hundred eighty-six' WHERE a=20057;\nUPDATE t2 SET c='eighty-two thousand four hundred thirty-seven' WHERE a=20058;\nUPDATE t2 SET c='seventy-six thousand twenty-one' WHERE a=20059;\nUPDATE t2 SET c='forty-two thousand nine hundred seventeen' WHERE a=20060;\nUPDATE t2 SET c='ninety thousand nine hundred sixty-three' WHERE a=20061;\nUPDATE t2 SET c='fifty thousand eight hundred seventy-nine' WHERE a=20062;\nUPDATE t2 SET c='forty-one thousand one hundred seventy-one' WHERE a=20063;\nUPDATE t2 SET c='sixty thousand two hundred forty-five' WHERE a=20064;\nUPDATE t2 SET c='twenty thousand three hundred eighty-one' WHERE a=20065;\nUPDATE t2 SET c='fifty-one thousand six hundred forty-three' WHERE a=20066;\nUPDATE t2 SET c='seventy thousand nine hundred four' WHERE a=20067;\nUPDATE t2 SET c='two thousand one hundred thirty-six' WHERE a=20068;\nUPDATE t2 SET c='seventy-six thousand two hundred seven' WHERE a=20069;\nUPDATE t2 SET c='sixty-two thousand four hundred twenty-two' WHERE a=20070;\nUPDATE t2 SET c='fifty-six thousand nine hundred eighty-six' WHERE a=20071;\nUPDATE t2 SET c='sixty-one thousand eight hundred forty-one' WHERE a=20072;\nUPDATE t2 SET c='thirteen thousand four hundred twenty-seven' WHERE a=20073;\nUPDATE t2 SET c='ten thousand one hundred sixty' WHERE a=20074;\nUPDATE t2 SET c='sixty thousand seven hundred fifty-seven' WHERE a=20075;\nUPDATE t2 SET c='seventy-six thousand four hundred ninety-five' WHERE a=20076;\nUPDATE t2 SET c='sixty-eight thousand six hundred twenty-eight' WHERE a=20077;\nUPDATE t2 SET c='eighty-four thousand eight hundred thirty' WHERE a=20078;\nUPDATE t2 SET c='sixty-six thousand seven hundred nine' WHERE a=20079;\nUPDATE t2 SET c='sixty-nine thousand nine hundred fifty-four' WHERE a=20080;\nUPDATE t2 SET c='eighty-four thousand three hundred thirty-six' WHERE a=20081;\nUPDATE t2 SET c='seventy-one thousand five hundred seventy-five' WHERE a=20082;\nUPDATE t2 SET c='twenty-four thousand three hundred sixty-nine' WHERE a=20083;\nUPDATE t2 SET c='ten thousand nine hundred nineteen' WHERE a=20084;\nUPDATE t2 SET c='twenty-seven thousand twenty' WHERE a=20085;\nUPDATE t2 SET c='twenty thousand seven hundred one' WHERE a=20086;\nUPDATE t2 SET c='thirteen thousand one hundred eighty-six' WHERE a=20087;\nUPDATE t2 SET c='ninety-one thousand four hundred seventy-three' WHERE a=20088;\nUPDATE t2 SET c='eighty-one thousand four hundred seventeen' WHERE a=20089;\nUPDATE t2 SET c='sixty-eight thousand two hundred ninety' WHERE a=20090;\nUPDATE t2 SET c='eight thousand two hundred thirty-nine' WHERE a=20091;\nUPDATE t2 SET c='fifty-four thousand seven hundred fifty-seven' WHERE a=20092;\nUPDATE t2 SET c='fifty-five thousand three hundred thirty-five' WHERE a=20093;\nUPDATE t2 SET c='forty-seven thousand two hundred forty-nine' WHERE a=20094;\nUPDATE t2 SET c='seventy-four thousand one hundred' WHERE a=20095;\nUPDATE t2 SET c='eighty-six thousand five hundred sixty-three' WHERE a=20096;\nUPDATE t2 SET c='eight thousand five hundred ninety-four' WHERE a=20097;\nUPDATE t2 SET c='thirty-three thousand one hundred forty-six' WHERE a=20098;\nUPDATE t2 SET c='forty-eight thousand four hundred ninety-eight' WHERE a=20099;\nUPDATE t2 SET c='thirty-seven thousand six hundred eighty-four' WHERE a=20100;\nUPDATE t2 SET c='seventy-four thousand seven hundred seven' WHERE a=20101;\nUPDATE t2 SET c='forty-six thousand eight hundred forty-two' WHERE a=20102;\nUPDATE t2 SET c='eighteen thousand nineteen' WHERE a=20103;\nUPDATE t2 SET c='thirty thousand one hundred seventeen' WHERE a=20104;\nUPDATE t2 SET c='eight thousand four hundred one' WHERE a=20105;\nUPDATE t2 SET c='eleven thousand ninety-eight' WHERE a=20106;\nUPDATE t2 SET c='thirty-eight thousand one hundred thirty-four' WHERE a=20107;\nUPDATE t2 SET c='eight hundred fifty-two' WHERE a=20108;\nUPDATE t2 SET c='eighty-four thousand seven hundred fifty-eight' WHERE a=20109;\nUPDATE t2 SET c='eleven thousand twelve' WHERE a=20110;\nUPDATE t2 SET c='six thousand eight hundred seven' WHERE a=20111;\nUPDATE t2 SET c='thirty-seven thousand three hundred six' WHERE a=20112;\nUPDATE t2 SET c='thirty-five thousand seven hundred forty-nine' WHERE a=20113;\nUPDATE t2 SET c='ninety-six thousand seven hundred seven' WHERE a=20114;\nUPDATE t2 SET c='twenty-three thousand one hundred forty-nine' WHERE a=20115;\nUPDATE t2 SET c='fourteen thousand forty' WHERE a=20116;\nUPDATE t2 SET c='sixty-seven thousand six hundred ninety-three' WHERE a=20117;\nUPDATE t2 SET c='twenty-three thousand five hundred eighty' WHERE a=20118;\nUPDATE t2 SET c='twenty thousand one hundred eighty-seven' WHERE a=20119;\nUPDATE t2 SET c='fifty-seven thousand one hundred sixty-six' WHERE a=20120;\nUPDATE t2 SET c='sixty-six thousand three hundred seventy-seven' WHERE a=20121;\nUPDATE t2 SET c='twenty-six thousand one hundred sixty-four' WHERE a=20122;\nUPDATE t2 SET c='eighteen thousand nine hundred seven' WHERE a=20123;\nUPDATE t2 SET c='fifty-seven thousand two hundred forty-seven' WHERE a=20124;\nUPDATE t2 SET c='eighteen thousand two hundred seventy-nine' WHERE a=20125;\nUPDATE t2 SET c='twenty-three thousand three hundred eighty' WHERE a=20126;\nUPDATE t2 SET c='sixty-five thousand two hundred seventy-eight' WHERE a=20127;\nUPDATE t2 SET c='forty thousand five hundred twenty-one' WHERE a=20128;\nUPDATE t2 SET c='twenty-one thousand eight hundred sixty' WHERE a=20129;\nUPDATE t2 SET c='seventy thousand three hundred fourteen' WHERE a=20130;\nUPDATE t2 SET c='twenty-six thousand nine hundred fifty-six' WHERE a=20131;\nUPDATE t2 SET c='sixty-four thousand two hundred sixty' WHERE a=20132;\nUPDATE t2 SET c='twenty-four thousand eight hundred ninety-seven' WHERE a=20133;\nUPDATE t2 SET c='forty-four thousand six hundred ninety-one' WHERE a=20134;\nUPDATE t2 SET c='sixty-one thousand twenty' WHERE a=20135;\nUPDATE t2 SET c='fifty-three thousand three hundred fifty-six' WHERE a=20136;\nUPDATE t2 SET c='forty-one thousand six hundred thirty-one' WHERE a=20137;\nUPDATE t2 SET c='ninety-eight thousand six hundred ninety-seven' WHERE a=20138;\nUPDATE t2 SET c='seventy-five thousand thirty-six' WHERE a=20139;\nUPDATE t2 SET c='sixty thousand nine hundred fifty-five' WHERE a=20140;\nUPDATE t2 SET c='seventy-eight thousand six hundred eighty-seven' WHERE a=20141;\nUPDATE t2 SET c='thirty-one thousand fifty-six' WHERE a=20142;\nUPDATE t2 SET c='seventy-five thousand five hundred six' WHERE a=20143;\nUPDATE t2 SET c='twenty-one thousand four hundred seventy-one' WHERE a=20144;\nUPDATE t2 SET c='seventy-three thousand one hundred eight' WHERE a=20145;\nUPDATE t2 SET c='sixty-two thousand six hundred ninety' WHERE a=20146;\nUPDATE t2 SET c='forty-nine thousand nine hundred twenty' WHERE a=20147;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty-six' WHERE a=20148;\nUPDATE t2 SET c='sixteen thousand five hundred ninety-nine' WHERE a=20149;\nUPDATE t2 SET c='forty thousand twenty-five' WHERE a=20150;\nUPDATE t2 SET c='ninety-six thousand five hundred fifty-one' WHERE a=20151;\nUPDATE t2 SET c='ninety-six thousand seventy-seven' WHERE a=20152;\nUPDATE t2 SET c='forty thousand one hundred sixty-six' WHERE a=20153;\nUPDATE t2 SET c='ninety thousand three hundred fifty-five' WHERE a=20154;\nUPDATE t2 SET c='fifty-one thousand seven hundred ninety-three' WHERE a=20155;\nUPDATE t2 SET c='sixty-one thousand six hundred sixty-three' WHERE a=20156;\nUPDATE t2 SET c='sixty-nine thousand eight hundred seventy-five' WHERE a=20157;\nUPDATE t2 SET c='forty-four thousand two hundred five' WHERE a=20158;\nUPDATE t2 SET c='eighty-two thousand one hundred thirty-two' WHERE a=20159;\nUPDATE t2 SET c='eighty-six thousand five' WHERE a=20160;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-nine' WHERE a=20161;\nUPDATE t2 SET c='sixty-three thousand four hundred thirty-five' WHERE a=20162;\nUPDATE t2 SET c='forty thousand two hundred nine' WHERE a=20163;\nUPDATE t2 SET c='seventy thousand nine hundred fifty-four' WHERE a=20164;\nUPDATE t2 SET c='ninety-one thousand one hundred forty-eight' WHERE a=20165;\nUPDATE t2 SET c='forty-eight thousand one hundred eighty-four' WHERE a=20166;\nUPDATE t2 SET c='ninety-eight thousand two hundred thirty-three' WHERE a=20167;\nUPDATE t2 SET c='thirty-one thousand two hundred twenty' WHERE a=20168;\nUPDATE t2 SET c='nineteen thousand eight hundred eighteen' WHERE a=20169;\nUPDATE t2 SET c='fifty-three thousand three hundred eleven' WHERE a=20170;\nUPDATE t2 SET c='twenty-one thousand two hundred two' WHERE a=20171;\nUPDATE t2 SET c='twenty-five thousand seven hundred forty-seven' WHERE a=20172;\nUPDATE t2 SET c='twenty-five thousand two hundred fifty-nine' WHERE a=20173;\nUPDATE t2 SET c='sixteen thousand five hundred' WHERE a=20174;\nUPDATE t2 SET c='eleven thousand eight hundred seventy-seven' WHERE a=20175;\nUPDATE t2 SET c='six thousand three hundred two' WHERE a=20176;\nUPDATE t2 SET c='thirty-six thousand six hundred nineteen' WHERE a=20177;\nUPDATE t2 SET c='sixteen thousand two hundred eighteen' WHERE a=20178;\nUPDATE t2 SET c='twenty-four thousand eight hundred two' WHERE a=20179;\nUPDATE t2 SET c='one thousand six hundred ninety-seven' WHERE a=20180;\nUPDATE t2 SET c='forty-three thousand one hundred seventy-seven' WHERE a=20181;\nUPDATE t2 SET c='eighteen thousand eight hundred twenty-four' WHERE a=20182;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-eight' WHERE a=20183;\nUPDATE t2 SET c='six thousand five hundred two' WHERE a=20184;\nUPDATE t2 SET c='ninety-three thousand one hundred nineteen' WHERE a=20185;\nUPDATE t2 SET c='eighty-four thousand five hundred twenty' WHERE a=20186;\nUPDATE t2 SET c='eighty-one thousand three hundred twenty-nine' WHERE a=20187;\nUPDATE t2 SET c='fourteen thousand three hundred ten' WHERE a=20188;\nUPDATE t2 SET c='forty-seven thousand three hundred thirty-one' WHERE a=20189;\nUPDATE t2 SET c='fourteen thousand three hundred eighty-six' WHERE a=20190;\nUPDATE t2 SET c='twenty-six thousand three hundred ninety-one' WHERE a=20191;\nUPDATE t2 SET c='ninety-three thousand eighty-seven' WHERE a=20192;\nUPDATE t2 SET c='ten thousand eight hundred fifty-eight' WHERE a=20193;\nUPDATE t2 SET c='thirty-one thousand two hundred twenty' WHERE a=20194;\nUPDATE t2 SET c='eighty-eight thousand three hundred twenty-three' WHERE a=20195;\nUPDATE t2 SET c='thirty-four thousand five hundred two' WHERE a=20196;\nUPDATE t2 SET c='one thousand nine hundred twenty-three' WHERE a=20197;\nUPDATE t2 SET c='nine thousand eight hundred thirty-four' WHERE a=20198;\nUPDATE t2 SET c='seventy-seven thousand five hundred forty-seven' WHERE a=20199;\nUPDATE t2 SET c='ninety-four thousand six hundred eighty-seven' WHERE a=20200;\nUPDATE t2 SET c='thirty-five thousand five hundred sixty-seven' WHERE a=20201;\nUPDATE t2 SET c='twenty-five thousand five hundred seven' WHERE a=20202;\nUPDATE t2 SET c='fifty-eight thousand eight hundred eleven' WHERE a=20203;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventy-five' WHERE a=20204;\nUPDATE t2 SET c='seven thousand nine hundred fifty-three' WHERE a=20205;\nUPDATE t2 SET c='eighty-one thousand seven hundred thirty-five' WHERE a=20206;\nUPDATE t2 SET c='forty thousand two hundred thirty-nine' WHERE a=20207;\nUPDATE t2 SET c='fifteen thousand sixty-eight' WHERE a=20208;\nUPDATE t2 SET c='forty-four thousand ten' WHERE a=20209;\nUPDATE t2 SET c='thirty-one thousand six hundred thirty' WHERE a=20210;\nUPDATE t2 SET c='forty thousand six hundred seventy-seven' WHERE a=20211;\nUPDATE t2 SET c='seventy-three thousand eight hundred' WHERE a=20212;\nUPDATE t2 SET c='forty-one thousand nine hundred twenty-one' WHERE a=20213;\nUPDATE t2 SET c='ninety-five thousand nine hundred four' WHERE a=20214;\nUPDATE t2 SET c='eighty-six thousand nine hundred eighty-one' WHERE a=20215;\nUPDATE t2 SET c='forty-nine thousand five hundred forty-six' WHERE a=20216;\nUPDATE t2 SET c='eighty-eight thousand eight hundred sixteen' WHERE a=20217;\nUPDATE t2 SET c='thirty-one thousand four hundred fifty-three' WHERE a=20218;\nUPDATE t2 SET c='forty-one thousand seven hundred eighty' WHERE a=20219;\nUPDATE t2 SET c='forty-three thousand nine hundred ninety' WHERE a=20220;\nUPDATE t2 SET c='twenty-six thousand one hundred eighty-nine' WHERE a=20221;\nUPDATE t2 SET c='thirty-eight thousand two hundred fourteen' WHERE a=20222;\nUPDATE t2 SET c='twenty-nine thousand six hundred twenty-seven' WHERE a=20223;\nUPDATE t2 SET c='eighty-five thousand six hundred seventy-six' WHERE a=20224;\nUPDATE t2 SET c='forty-eight thousand four hundred fifty-six' WHERE a=20225;\nUPDATE t2 SET c='thirty-eight thousand five hundred ninety' WHERE a=20226;\nUPDATE t2 SET c='fifty-four thousand one hundred two' WHERE a=20227;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-one' WHERE a=20228;\nUPDATE t2 SET c='thirty-two thousand seven hundred forty-one' WHERE a=20229;\nUPDATE t2 SET c='eighty-six thousand two hundred twenty' WHERE a=20230;\nUPDATE t2 SET c='twelve thousand seven hundred fifty-three' WHERE a=20231;\nUPDATE t2 SET c='fifty-one thousand four hundred forty-one' WHERE a=20232;\nUPDATE t2 SET c='forty-three thousand six hundred twenty-seven' WHERE a=20233;\nUPDATE t2 SET c='twenty thousand seven hundred forty-eight' WHERE a=20234;\nUPDATE t2 SET c='thirty-seven thousand three hundred thirty-six' WHERE a=20235;\nUPDATE t2 SET c='eighty-eight thousand eight hundred twenty-one' WHERE a=20236;\nUPDATE t2 SET c='thirteen thousand six hundred sixty-two' WHERE a=20237;\nUPDATE t2 SET c='fifty-one thousand two hundred seven' WHERE a=20238;\nUPDATE t2 SET c='six thousand two hundred ninety-six' WHERE a=20239;\nUPDATE t2 SET c='three thousand seven hundred seventy-two' WHERE a=20240;\nUPDATE t2 SET c='sixty-nine thousand five hundred ninety-one' WHERE a=20241;\nUPDATE t2 SET c='eighty-seven thousand nine hundred fifteen' WHERE a=20242;\nUPDATE t2 SET c='thirty-seven thousand four hundred forty-four' WHERE a=20243;\nUPDATE t2 SET c='nine thousand five hundred seventy-two' WHERE a=20244;\nUPDATE t2 SET c='thirteen thousand eight hundred eighty-five' WHERE a=20245;\nUPDATE t2 SET c='forty thousand one hundred thirty-two' WHERE a=20246;\nUPDATE t2 SET c='forty-two thousand four hundred eighty-nine' WHERE a=20247;\nUPDATE t2 SET c='nine thousand five hundred ninety-six' WHERE a=20248;\nUPDATE t2 SET c='thirty-two thousand three hundred eight' WHERE a=20249;\nUPDATE t2 SET c='twenty-two thousand ninety-four' WHERE a=20250;\nUPDATE t2 SET c='eighty-nine thousand four hundred sixty-three' WHERE a=20251;\nUPDATE t2 SET c='twenty-four thousand five hundred fifty' WHERE a=20252;\nUPDATE t2 SET c='sixty-five thousand five hundred seventy-seven' WHERE a=20253;\nUPDATE t2 SET c='forty-two thousand two hundred eight' WHERE a=20254;\nUPDATE t2 SET c='one thousand five' WHERE a=20255;\nUPDATE t2 SET c='sixteen thousand eight hundred eighty-eight' WHERE a=20256;\nUPDATE t2 SET c='eighty-seven thousand three hundred nineteen' WHERE a=20257;\nUPDATE t2 SET c='seventy-seven thousand three hundred eighty-three' WHERE a=20258;\nUPDATE t2 SET c='thirty-one thousand eight hundred sixty-five' WHERE a=20259;\nUPDATE t2 SET c='five thousand nine hundred seventy-six' WHERE a=20260;\nUPDATE t2 SET c='three hundred forty' WHERE a=20261;\nUPDATE t2 SET c='fourteen thousand twenty-three' WHERE a=20262;\nUPDATE t2 SET c='sixty thousand four hundred thirty-nine' WHERE a=20263;\nUPDATE t2 SET c='eighty-nine thousand eight hundred sixty-two' WHERE a=20264;\nUPDATE t2 SET c='thirty-six thousand two hundred thirty-six' WHERE a=20265;\nUPDATE t2 SET c='thirty-seven thousand six hundred forty-seven' WHERE a=20266;\nUPDATE t2 SET c='ninety-one thousand nine hundred sixty-five' WHERE a=20267;\nUPDATE t2 SET c='thirty-six thousand four hundred' WHERE a=20268;\nUPDATE t2 SET c='seventy-one thousand seven hundred eighty-three' WHERE a=20269;\nUPDATE t2 SET c='forty-seven thousand one hundred eighty-one' WHERE a=20270;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-two' WHERE a=20271;\nUPDATE t2 SET c='fifty-six thousand four hundred seventy-six' WHERE a=20272;\nUPDATE t2 SET c='eighty-nine thousand six hundred fifty' WHERE a=20273;\nUPDATE t2 SET c='thirty-one thousand two hundred fifty' WHERE a=20274;\nUPDATE t2 SET c='eighty-three thousand four hundred seventy-two' WHERE a=20275;\nUPDATE t2 SET c='fifty-three thousand seven hundred fifty-one' WHERE a=20276;\nUPDATE t2 SET c='two thousand seven hundred two' WHERE a=20277;\nUPDATE t2 SET c='eighty-one thousand thirty-six' WHERE a=20278;\nUPDATE t2 SET c='ten thousand eight hundred thirty' WHERE a=20279;\nUPDATE t2 SET c='sixty-two thousand eight hundred eighty-eight' WHERE a=20280;\nUPDATE t2 SET c='sixty-one thousand four hundred ninety-three' WHERE a=20281;\nUPDATE t2 SET c='forty-two thousand three hundred forty' WHERE a=20282;\nUPDATE t2 SET c='eighty-nine thousand one hundred nine' WHERE a=20283;\nUPDATE t2 SET c='thirty-nine thousand one hundred eighty-seven' WHERE a=20284;\nUPDATE t2 SET c='sixty-three thousand eight hundred forty-six' WHERE a=20285;\nUPDATE t2 SET c='seventy-three thousand two hundred twenty-five' WHERE a=20286;\nUPDATE t2 SET c='seventy-eight thousand ninety-seven' WHERE a=20287;\nUPDATE t2 SET c='twenty-five thousand four hundred seven' WHERE a=20288;\nUPDATE t2 SET c='thirty-four thousand eight hundred ten' WHERE a=20289;\nUPDATE t2 SET c='twenty-seven thousand seven' WHERE a=20290;\nUPDATE t2 SET c='ninety-eight thousand one hundred fifty-five' WHERE a=20291;\nUPDATE t2 SET c='twenty-five thousand four hundred fifty-six' WHERE a=20292;\nUPDATE t2 SET c='fifty-six thousand one hundred twenty-eight' WHERE a=20293;\nUPDATE t2 SET c='four thousand four hundred seventy-one' WHERE a=20294;\nUPDATE t2 SET c='forty thousand seven hundred fifteen' WHERE a=20295;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-six' WHERE a=20296;\nUPDATE t2 SET c='fifty-two thousand four hundred seventy-one' WHERE a=20297;\nUPDATE t2 SET c='eighty-four thousand two hundred sixty-four' WHERE a=20298;\nUPDATE t2 SET c='twenty-nine thousand two hundred ninety-two' WHERE a=20299;\nUPDATE t2 SET c='eighty-two thousand eight hundred thirty-three' WHERE a=20300;\nUPDATE t2 SET c='seventy-three thousand nine hundred sixteen' WHERE a=20301;\nUPDATE t2 SET c='thirty-four thousand six hundred thirty-four' WHERE a=20302;\nUPDATE t2 SET c='forty-eight thousand five hundred thirty-nine' WHERE a=20303;\nUPDATE t2 SET c='sixty-nine thousand nine hundred one' WHERE a=20304;\nUPDATE t2 SET c='seventeen thousand two hundred twenty-three' WHERE a=20305;\nUPDATE t2 SET c='sixty-three thousand twenty-two' WHERE a=20306;\nUPDATE t2 SET c='seventy-five thousand five hundred forty-eight' WHERE a=20307;\nUPDATE t2 SET c='fifty-nine thousand six hundred seventy-six' WHERE a=20308;\nUPDATE t2 SET c='twenty-one thousand three hundred eighty-four' WHERE a=20309;\nUPDATE t2 SET c='fifty-six thousand forty-nine' WHERE a=20310;\nUPDATE t2 SET c='two thousand three hundred seventeen' WHERE a=20311;\nUPDATE t2 SET c='eighty-five thousand nine hundred thirty-nine' WHERE a=20312;\nUPDATE t2 SET c='forty-six thousand four hundred eighty-one' WHERE a=20313;\nUPDATE t2 SET c='ten thousand nine hundred ninety-five' WHERE a=20314;\nUPDATE t2 SET c='fifty-one thousand eight hundred thirty-seven' WHERE a=20315;\nUPDATE t2 SET c='ninety-nine thousand two hundred seventeen' WHERE a=20316;\nUPDATE t2 SET c='fifty-two thousand eighty-one' WHERE a=20317;\nUPDATE t2 SET c='seventy-nine thousand six hundred ninety-three' WHERE a=20318;\nUPDATE t2 SET c='sixty-four thousand six hundred twenty-five' WHERE a=20319;\nUPDATE t2 SET c='forty-nine thousand three hundred forty-nine' WHERE a=20320;\nUPDATE t2 SET c='eighty-five thousand two hundred ten' WHERE a=20321;\nUPDATE t2 SET c='fifty-seven thousand six hundred eighty-one' WHERE a=20322;\nUPDATE t2 SET c='seventy-one thousand six hundred thirty-five' WHERE a=20323;\nUPDATE t2 SET c='fifteen thousand one hundred forty-four' WHERE a=20324;\nUPDATE t2 SET c='sixty-four thousand nine hundred sixty-eight' WHERE a=20325;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirteen' WHERE a=20326;\nUPDATE t2 SET c='twenty-eight thousand eight hundred sixteen' WHERE a=20327;\nUPDATE t2 SET c='forty-six thousand one hundred twenty-eight' WHERE a=20328;\nUPDATE t2 SET c='seventy-six thousand six hundred eighty-nine' WHERE a=20329;\nUPDATE t2 SET c='thirty-three thousand six hundred seventy-two' WHERE a=20330;\nUPDATE t2 SET c='fifty-four thousand' WHERE a=20331;\nUPDATE t2 SET c='fourteen thousand forty-seven' WHERE a=20332;\nUPDATE t2 SET c='five thousand nine hundred twelve' WHERE a=20333;\nUPDATE t2 SET c='thirteen thousand six hundred thirty-two' WHERE a=20334;\nUPDATE t2 SET c='sixty-six thousand five hundred ninety-seven' WHERE a=20335;\nUPDATE t2 SET c='ninety-four thousand five hundred twenty-four' WHERE a=20336;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirty-one' WHERE a=20337;\nUPDATE t2 SET c='three thousand nine hundred eighty-four' WHERE a=20338;\nUPDATE t2 SET c='one thousand nine hundred thirty-four' WHERE a=20339;\nUPDATE t2 SET c='forty-four thousand five hundred twenty-nine' WHERE a=20340;\nUPDATE t2 SET c='two thousand three hundred sixty-four' WHERE a=20341;\nUPDATE t2 SET c='forty-five thousand three hundred fifty-seven' WHERE a=20342;\nUPDATE t2 SET c='eighty-two thousand seven hundred thirty-six' WHERE a=20343;\nUPDATE t2 SET c='eleven thousand two hundred ninety-nine' WHERE a=20344;\nUPDATE t2 SET c='ninety-two thousand seventy-six' WHERE a=20345;\nUPDATE t2 SET c='seventy-three thousand six hundred eighty-six' WHERE a=20346;\nUPDATE t2 SET c='ninety-seven thousand eight hundred forty' WHERE a=20347;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-seven' WHERE a=20348;\nUPDATE t2 SET c='forty-four thousand five hundred ninety' WHERE a=20349;\nUPDATE t2 SET c='ninety-four thousand forty-one' WHERE a=20350;\nUPDATE t2 SET c='forty-nine thousand one hundred ninety' WHERE a=20351;\nUPDATE t2 SET c='thirteen thousand eight hundred ninety-four' WHERE a=20352;\nUPDATE t2 SET c='forty thousand five hundred eight' WHERE a=20353;\nUPDATE t2 SET c='thirty-nine thousand sixty-five' WHERE a=20354;\nUPDATE t2 SET c='thirty-two thousand five hundred twenty-six' WHERE a=20355;\nUPDATE t2 SET c='four thousand two hundred twenty-six' WHERE a=20356;\nUPDATE t2 SET c='five thousand three hundred fifty-six' WHERE a=20357;\nUPDATE t2 SET c='fifty-seven thousand seven hundred ninety-four' WHERE a=20358;\nUPDATE t2 SET c='ninety thousand four hundred ninety-eight' WHERE a=20359;\nUPDATE t2 SET c='ninety-six thousand three' WHERE a=20360;\nUPDATE t2 SET c='twenty thousand five hundred fifty-nine' WHERE a=20361;\nUPDATE t2 SET c='two thousand ninety-five' WHERE a=20362;\nUPDATE t2 SET c='ninety-four thousand eight hundred eighty-one' WHERE a=20363;\nUPDATE t2 SET c='thirty-seven thousand nine hundred twenty-three' WHERE a=20364;\nUPDATE t2 SET c='thirty-four thousand seven hundred thirty-six' WHERE a=20365;\nUPDATE t2 SET c='ninety-five thousand three hundred seventy-seven' WHERE a=20366;\nUPDATE t2 SET c='four thousand nine' WHERE a=20367;\nUPDATE t2 SET c='eighty-seven thousand nine hundred ten' WHERE a=20368;\nUPDATE t2 SET c='eighteen thousand thirty-six' WHERE a=20369;\nUPDATE t2 SET c='forty-seven thousand one hundred eighty-six' WHERE a=20370;\nUPDATE t2 SET c='eighty-three thousand nine hundred seventy-one' WHERE a=20371;\nUPDATE t2 SET c='sixty-five thousand nine hundred eighty-nine' WHERE a=20372;\nUPDATE t2 SET c='twenty thousand nine hundred thirty-seven' WHERE a=20373;\nUPDATE t2 SET c='fifty-one thousand four hundred ninety-five' WHERE a=20374;\nUPDATE t2 SET c='twenty thousand seven hundred eighty-two' WHERE a=20375;\nUPDATE t2 SET c='one thousand nine hundred sixty' WHERE a=20376;\nUPDATE t2 SET c='thirty-six thousand six hundred ninety-two' WHERE a=20377;\nUPDATE t2 SET c='one thousand six hundred sixteen' WHERE a=20378;\nUPDATE t2 SET c='ninety-four thousand four hundred fifteen' WHERE a=20379;\nUPDATE t2 SET c='twenty-two thousand four hundred eighty' WHERE a=20380;\nUPDATE t2 SET c='forty-one thousand eight hundred ninety-eight' WHERE a=20381;\nUPDATE t2 SET c='two thousand two hundred forty-two' WHERE a=20382;\nUPDATE t2 SET c='forty-seven thousand two hundred two' WHERE a=20383;\nUPDATE t2 SET c='nine thousand twenty-nine' WHERE a=20384;\nUPDATE t2 SET c='sixteen thousand five hundred twenty-one' WHERE a=20385;\nUPDATE t2 SET c='forty-two thousand four hundred five' WHERE a=20386;\nUPDATE t2 SET c='sixty-nine thousand two hundred thirty-four' WHERE a=20387;\nUPDATE t2 SET c='eighty thousand three hundred eleven' WHERE a=20388;\nUPDATE t2 SET c='ninety-one thousand five hundred thirty-two' WHERE a=20389;\nUPDATE t2 SET c='sixty-eight thousand one hundred fifty-six' WHERE a=20390;\nUPDATE t2 SET c='thirty-three thousand five hundred thirty-three' WHERE a=20391;\nUPDATE t2 SET c='ninety-one thousand six hundred seventy-two' WHERE a=20392;\nUPDATE t2 SET c='eighty thousand five hundred thirty-five' WHERE a=20393;\nUPDATE t2 SET c='thirty-four thousand eight hundred seventy-seven' WHERE a=20394;\nUPDATE t2 SET c='forty-six thousand seven hundred one' WHERE a=20395;\nUPDATE t2 SET c='ninety-two thousand six hundred fourteen' WHERE a=20396;\nUPDATE t2 SET c='eighty-six thousand seven hundred fifty-two' WHERE a=20397;\nUPDATE t2 SET c='forty-six thousand nine hundred sixty-seven' WHERE a=20398;\nUPDATE t2 SET c='twelve thousand eighty-four' WHERE a=20399;\nUPDATE t2 SET c='fifty thousand five hundred ninety-seven' WHERE a=20400;\nUPDATE t2 SET c='fifty-four thousand seven hundred eighty-two' WHERE a=20401;\nUPDATE t2 SET c='eighty-six thousand two hundred six' WHERE a=20402;\nUPDATE t2 SET c='ninety-nine thousand thirty-six' WHERE a=20403;\nUPDATE t2 SET c='forty-six thousand five hundred thirty-six' WHERE a=20404;\nUPDATE t2 SET c='seventy-three thousand eight hundred forty-six' WHERE a=20405;\nUPDATE t2 SET c='twelve thousand four hundred forty-three' WHERE a=20406;\nUPDATE t2 SET c='sixty-seven thousand five hundred twenty-five' WHERE a=20407;\nUPDATE t2 SET c='twenty-nine thousand two hundred seventy-eight' WHERE a=20408;\nUPDATE t2 SET c='fifty-nine thousand seven hundred forty-seven' WHERE a=20409;\nUPDATE t2 SET c='thirty-five thousand four hundred ninety-seven' WHERE a=20410;\nUPDATE t2 SET c='seven thousand two hundred ninety-nine' WHERE a=20411;\nUPDATE t2 SET c='fifty-nine thousand five hundred seventy-four' WHERE a=20412;\nUPDATE t2 SET c='thirty thousand two hundred twenty-eight' WHERE a=20413;\nUPDATE t2 SET c='fifty-one thousand two' WHERE a=20414;\nUPDATE t2 SET c='thirty-one thousand two hundred fifty-nine' WHERE a=20415;\nUPDATE t2 SET c='twenty-six thousand nine hundred twenty-six' WHERE a=20416;\nUPDATE t2 SET c='forty-one thousand seven' WHERE a=20417;\nUPDATE t2 SET c='twenty-six thousand five' WHERE a=20418;\nUPDATE t2 SET c='sixty-two thousand eight hundred ninety-five' WHERE a=20419;\nUPDATE t2 SET c='ninety-five thousand eight hundred sixty-one' WHERE a=20420;\nUPDATE t2 SET c='thirty-five thousand nine hundred four' WHERE a=20421;\nUPDATE t2 SET c='forty-one thousand one hundred eighty' WHERE a=20422;\nUPDATE t2 SET c='thirty-six thousand three hundred thirty-six' WHERE a=20423;\nUPDATE t2 SET c='ninety-three thousand eight hundred fifty-two' WHERE a=20424;\nUPDATE t2 SET c='seventy-three thousand seven hundred seventy-one' WHERE a=20425;\nUPDATE t2 SET c='fifty-eight thousand nine hundred twelve' WHERE a=20426;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty-three' WHERE a=20427;\nUPDATE t2 SET c='fifty-eight thousand eight hundred twenty-two' WHERE a=20428;\nUPDATE t2 SET c='thirty thousand seven hundred eighty-seven' WHERE a=20429;\nUPDATE t2 SET c='twelve thousand thirty-seven' WHERE a=20430;\nUPDATE t2 SET c='sixteen thousand seven hundred thirty' WHERE a=20431;\nUPDATE t2 SET c='twenty-five thousand four hundred eighty-two' WHERE a=20432;\nUPDATE t2 SET c='forty-four thousand four hundred fifteen' WHERE a=20433;\nUPDATE t2 SET c='sixteen thousand one hundred twenty-nine' WHERE a=20434;\nUPDATE t2 SET c='eight thousand one hundred seventeen' WHERE a=20435;\nUPDATE t2 SET c='nineteen thousand thirty' WHERE a=20436;\nUPDATE t2 SET c='seventy-one thousand two hundred twenty-four' WHERE a=20437;\nUPDATE t2 SET c='thirty-five thousand seven hundred eleven' WHERE a=20438;\nUPDATE t2 SET c='seven thousand seventeen' WHERE a=20439;\nUPDATE t2 SET c='eighty-five thousand four hundred seventy-one' WHERE a=20440;\nUPDATE t2 SET c='thirty-six thousand three hundred ninety-nine' WHERE a=20441;\nUPDATE t2 SET c='ninety-three thousand three hundred seventy-nine' WHERE a=20442;\nUPDATE t2 SET c='forty-nine thousand six hundred seventy-four' WHERE a=20443;\nUPDATE t2 SET c='one thousand six hundred seventy-seven' WHERE a=20444;\nUPDATE t2 SET c='sixty-nine thousand four hundred twenty-five' WHERE a=20445;\nUPDATE t2 SET c='ninety-eight thousand six hundred sixty-five' WHERE a=20446;\nUPDATE t2 SET c='twenty-three thousand five hundred eighty-nine' WHERE a=20447;\nUPDATE t2 SET c='sixty-two thousand three hundred forty-two' WHERE a=20448;\nUPDATE t2 SET c='sixty-three thousand six hundred sixty-five' WHERE a=20449;\nUPDATE t2 SET c='forty-three thousand six hundred thirty-eight' WHERE a=20450;\nUPDATE t2 SET c='twenty-four thousand seven hundred sixty-one' WHERE a=20451;\nUPDATE t2 SET c='forty-six thousand nine hundred twenty-nine' WHERE a=20452;\nUPDATE t2 SET c='five thousand eight hundred eighty-nine' WHERE a=20453;\nUPDATE t2 SET c='fifty-eight thousand seven hundred thirty-three' WHERE a=20454;\nUPDATE t2 SET c='sixty-six thousand one hundred twenty-one' WHERE a=20455;\nUPDATE t2 SET c='twenty thousand six hundred sixty-eight' WHERE a=20456;\nUPDATE t2 SET c='eighty-eight thousand seven hundred seventy-five' WHERE a=20457;\nUPDATE t2 SET c='thirty-one thousand eight hundred twenty-nine' WHERE a=20458;\nUPDATE t2 SET c='fifty-five thousand one hundred sixty-eight' WHERE a=20459;\nUPDATE t2 SET c='twenty thousand fifty' WHERE a=20460;\nUPDATE t2 SET c='seventy thousand three hundred eight' WHERE a=20461;\nUPDATE t2 SET c='fifty thousand six hundred ninety-eight' WHERE a=20462;\nUPDATE t2 SET c='seventy-six thousand seven hundred ninety-eight' WHERE a=20463;\nUPDATE t2 SET c='ten thousand nine hundred eleven' WHERE a=20464;\nUPDATE t2 SET c='fifty thousand four hundred ninety-six' WHERE a=20465;\nUPDATE t2 SET c='sixteen thousand three hundred ninety-seven' WHERE a=20466;\nUPDATE t2 SET c='ninety-nine thousand five hundred nine' WHERE a=20467;\nUPDATE t2 SET c='fifty-two thousand nine hundred eighty-two' WHERE a=20468;\nUPDATE t2 SET c='ninety-one thousand two hundred fifty-seven' WHERE a=20469;\nUPDATE t2 SET c='twenty-five thousand eight hundred seventy-one' WHERE a=20470;\nUPDATE t2 SET c='thirteen thousand two hundred thirty-six' WHERE a=20471;\nUPDATE t2 SET c='forty-two thousand eight hundred eighty-nine' WHERE a=20472;\nUPDATE t2 SET c='eighteen thousand six hundred eighteen' WHERE a=20473;\nUPDATE t2 SET c='twenty-five thousand three hundred sixty-nine' WHERE a=20474;\nUPDATE t2 SET c='twenty-six thousand seven hundred forty-two' WHERE a=20475;\nUPDATE t2 SET c='ninety-three thousand nine hundred ten' WHERE a=20476;\nUPDATE t2 SET c='sixty-six thousand three hundred ninety-seven' WHERE a=20477;\nUPDATE t2 SET c='three thousand five hundred seventy' WHERE a=20478;\nUPDATE t2 SET c='forty-nine thousand ninety-four' WHERE a=20479;\nUPDATE t2 SET c='twenty-two thousand two hundred fifty-nine' WHERE a=20480;\nUPDATE t2 SET c='fifty-nine thousand three hundred ninety-four' WHERE a=20481;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty-three' WHERE a=20482;\nUPDATE t2 SET c='fourteen thousand four hundred eleven' WHERE a=20483;\nUPDATE t2 SET c='nineteen thousand four hundred fifty-two' WHERE a=20484;\nUPDATE t2 SET c='sixty-nine thousand seven hundred fifty-three' WHERE a=20485;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy-four' WHERE a=20486;\nUPDATE t2 SET c='eighty-two thousand two hundred ten' WHERE a=20487;\nUPDATE t2 SET c='eighty-seven thousand sixty-four' WHERE a=20488;\nUPDATE t2 SET c='twenty-three thousand six hundred fifty-four' WHERE a=20489;\nUPDATE t2 SET c='two thousand nine hundred fifty-six' WHERE a=20490;\nUPDATE t2 SET c='nine thousand two hundred fifty-six' WHERE a=20491;\nUPDATE t2 SET c='twenty-nine thousand eight hundred twenty-eight' WHERE a=20492;\nUPDATE t2 SET c='twenty-seven thousand five hundred ninety-six' WHERE a=20493;\nUPDATE t2 SET c='seventy-one thousand nine hundred forty-seven' WHERE a=20494;\nUPDATE t2 SET c='sixty-five thousand seven hundred forty' WHERE a=20495;\nUPDATE t2 SET c='forty-six thousand three hundred eight' WHERE a=20496;\nUPDATE t2 SET c='nineteen thousand nine hundred seventy-six' WHERE a=20497;\nUPDATE t2 SET c='twenty-three thousand eight hundred sixty-eight' WHERE a=20498;\nUPDATE t2 SET c='fourteen thousand two hundred seventy-nine' WHERE a=20499;\nUPDATE t2 SET c='sixty thousand two hundred fifty-four' WHERE a=20500;\nUPDATE t2 SET c='seven thousand seven hundred thirty-one' WHERE a=20501;\nUPDATE t2 SET c='three thousand thirty-seven' WHERE a=20502;\nUPDATE t2 SET c='twenty-seven thousand four hundred fifty-six' WHERE a=20503;\nUPDATE t2 SET c='ninety-six thousand nine hundred sixty-one' WHERE a=20504;\nUPDATE t2 SET c='ninety thousand six hundred forty-six' WHERE a=20505;\nUPDATE t2 SET c='ninety-one thousand six hundred four' WHERE a=20506;\nUPDATE t2 SET c='nineteen thousand four hundred eighty-nine' WHERE a=20507;\nUPDATE t2 SET c='eleven thousand four hundred sixty-five' WHERE a=20508;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-two' WHERE a=20509;\nUPDATE t2 SET c='eighteen thousand four hundred sixty' WHERE a=20510;\nUPDATE t2 SET c='eleven thousand six hundred fifty-six' WHERE a=20511;\nUPDATE t2 SET c='sixty-seven thousand eight hundred twenty-four' WHERE a=20512;\nUPDATE t2 SET c='twenty thousand four hundred twenty-six' WHERE a=20513;\nUPDATE t2 SET c='fifty-seven thousand four hundred sixty-three' WHERE a=20514;\nUPDATE t2 SET c='fifty-eight thousand seven hundred twenty-six' WHERE a=20515;\nUPDATE t2 SET c='ninety-seven thousand two hundred thirty-seven' WHERE a=20516;\nUPDATE t2 SET c='fifteen thousand eight hundred forty-eight' WHERE a=20517;\nUPDATE t2 SET c='ninety-eight thousand five hundred forty-two' WHERE a=20518;\nUPDATE t2 SET c='fourteen thousand two hundred thirty-two' WHERE a=20519;\nUPDATE t2 SET c='twenty-four thousand eight hundred seventy-one' WHERE a=20520;\nUPDATE t2 SET c='forty thousand seven hundred forty-three' WHERE a=20521;\nUPDATE t2 SET c='seventy-six thousand three hundred ninety-nine' WHERE a=20522;\nUPDATE t2 SET c='eighty-eight thousand thirty-two' WHERE a=20523;\nUPDATE t2 SET c='eighty-nine thousand three hundred forty-five' WHERE a=20524;\nUPDATE t2 SET c='thirty-six thousand twenty-five' WHERE a=20525;\nUPDATE t2 SET c='fifty-one thousand nine hundred seventy' WHERE a=20526;\nUPDATE t2 SET c='sixteen thousand six hundred twenty-five' WHERE a=20527;\nUPDATE t2 SET c='eighteen thousand three hundred thirty-eight' WHERE a=20528;\nUPDATE t2 SET c='fifty thousand eight hundred seventy-nine' WHERE a=20529;\nUPDATE t2 SET c='thirteen thousand nine hundred sixty-three' WHERE a=20530;\nUPDATE t2 SET c='eleven thousand two hundred twenty-nine' WHERE a=20531;\nUPDATE t2 SET c='eighty-three thousand seven hundred twenty-nine' WHERE a=20532;\nUPDATE t2 SET c='twenty-seven thousand nine hundred fourteen' WHERE a=20533;\nUPDATE t2 SET c='seventy-three thousand seven hundred twenty-six' WHERE a=20534;\nUPDATE t2 SET c='eighty-two thousand three hundred seventy-five' WHERE a=20535;\nUPDATE t2 SET c='twenty-three thousand one hundred ninety-nine' WHERE a=20536;\nUPDATE t2 SET c='thirty thousand eight hundred sixty-two' WHERE a=20537;\nUPDATE t2 SET c='twenty-nine thousand one hundred thirty-one' WHERE a=20538;\nUPDATE t2 SET c='nine thousand twenty-one' WHERE a=20539;\nUPDATE t2 SET c='forty-four thousand eight hundred twenty-seven' WHERE a=20540;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eighty-five' WHERE a=20541;\nUPDATE t2 SET c='thirty-one thousand four hundred fifty-two' WHERE a=20542;\nUPDATE t2 SET c='ninety-four thousand seven hundred ninety-two' WHERE a=20543;\nUPDATE t2 SET c='fifty-eight thousand three hundred fifty-two' WHERE a=20544;\nUPDATE t2 SET c='eighty-five thousand one hundred twenty-four' WHERE a=20545;\nUPDATE t2 SET c='six thousand eight hundred ninety-three' WHERE a=20546;\nUPDATE t2 SET c='one thousand five hundred ninety-five' WHERE a=20547;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-four' WHERE a=20548;\nUPDATE t2 SET c='twenty-eight thousand one hundred fifty-five' WHERE a=20549;\nUPDATE t2 SET c='eighty-eight thousand three hundred sixty-eight' WHERE a=20550;\nUPDATE t2 SET c='forty-five thousand four hundred seventeen' WHERE a=20551;\nUPDATE t2 SET c='seventy-nine thousand nine hundred twelve' WHERE a=20552;\nUPDATE t2 SET c='fifty-four thousand three hundred fifty-seven' WHERE a=20553;\nUPDATE t2 SET c='four hundred twenty-four' WHERE a=20554;\nUPDATE t2 SET c='forty-four thousand seven hundred eight' WHERE a=20555;\nUPDATE t2 SET c='ninety thousand twenty-three' WHERE a=20556;\nUPDATE t2 SET c='eighteen thousand six hundred fifty-eight' WHERE a=20557;\nUPDATE t2 SET c='seventy-three thousand two hundred seventy-one' WHERE a=20558;\nUPDATE t2 SET c='forty-seven thousand three hundred twenty-four' WHERE a=20559;\nUPDATE t2 SET c='sixty thousand seven hundred fifty-seven' WHERE a=20560;\nUPDATE t2 SET c='three thousand eight hundred thirty-eight' WHERE a=20561;\nUPDATE t2 SET c='six thousand seventy-five' WHERE a=20562;\nUPDATE t2 SET c='thirty-five thousand four hundred' WHERE a=20563;\nUPDATE t2 SET c='forty-eight thousand one hundred ninety-one' WHERE a=20564;\nUPDATE t2 SET c='thirty-nine thousand three hundred twenty-seven' WHERE a=20565;\nUPDATE t2 SET c='eighteen thousand nine hundred sixty-seven' WHERE a=20566;\nUPDATE t2 SET c='eighty-two thousand eight hundred ten' WHERE a=20567;\nUPDATE t2 SET c='eighty-five thousand one hundred ninety-five' WHERE a=20568;\nUPDATE t2 SET c='eighty-six' WHERE a=20569;\nUPDATE t2 SET c='twenty thousand six hundred one' WHERE a=20570;\nUPDATE t2 SET c='thirty-seven thousand nine hundred eighteen' WHERE a=20571;\nUPDATE t2 SET c='eighty-six thousand seven hundred ten' WHERE a=20572;\nUPDATE t2 SET c='fifty-five thousand five hundred fifty-nine' WHERE a=20573;\nUPDATE t2 SET c='ninety-six thousand four hundred sixty-three' WHERE a=20574;\nUPDATE t2 SET c='ninety-eight thousand six hundred ninety' WHERE a=20575;\nUPDATE t2 SET c='eighty-seven thousand four hundred sixty-eight' WHERE a=20576;\nUPDATE t2 SET c='three thousand seven hundred fifty-six' WHERE a=20577;\nUPDATE t2 SET c='sixty-one thousand four hundred seven' WHERE a=20578;\nUPDATE t2 SET c='fifteen thousand seven hundred seventeen' WHERE a=20579;\nUPDATE t2 SET c='sixty thousand nine hundred twenty-five' WHERE a=20580;\nUPDATE t2 SET c='eighty thousand three hundred forty-one' WHERE a=20581;\nUPDATE t2 SET c='eighty-one thousand five hundred ninety-two' WHERE a=20582;\nUPDATE t2 SET c='thirty-five thousand seven hundred forty-six' WHERE a=20583;\nUPDATE t2 SET c='seventy-four thousand five hundred fifteen' WHERE a=20584;\nUPDATE t2 SET c='fifteen thousand eight hundred eighty-four' WHERE a=20585;\nUPDATE t2 SET c='eighty-two thousand six hundred forty' WHERE a=20586;\nUPDATE t2 SET c='one thousand six hundred thirty-one' WHERE a=20587;\nUPDATE t2 SET c='eleven thousand three hundred fifty-three' WHERE a=20588;\nUPDATE t2 SET c='sixteen thousand four hundred thirty' WHERE a=20589;\nUPDATE t2 SET c='ninety-three thousand four hundred ninety-one' WHERE a=20590;\nUPDATE t2 SET c='sixty thousand seven hundred thirty-four' WHERE a=20591;\nUPDATE t2 SET c='thirty-nine thousand one hundred thirty-five' WHERE a=20592;\nUPDATE t2 SET c='ten thousand two hundred thirty-eight' WHERE a=20593;\nUPDATE t2 SET c='twenty-seven thousand eight hundred eighty-six' WHERE a=20594;\nUPDATE t2 SET c='eighty-six thousand three hundred forty-seven' WHERE a=20595;\nUPDATE t2 SET c='sixty-five thousand nine hundred twenty-eight' WHERE a=20596;\nUPDATE t2 SET c='ninety-five thousand eight hundred eighty' WHERE a=20597;\nUPDATE t2 SET c='fifty-four thousand seven hundred fifty' WHERE a=20598;\nUPDATE t2 SET c='sixty-nine thousand nine hundred seventy' WHERE a=20599;\nUPDATE t2 SET c='eighty thousand four hundred twenty-four' WHERE a=20600;\nUPDATE t2 SET c='seventy thousand seven hundred sixty' WHERE a=20601;\nUPDATE t2 SET c='twenty thousand six hundred sixty-seven' WHERE a=20602;\nUPDATE t2 SET c='eleven thousand eight hundred fifty-six' WHERE a=20603;\nUPDATE t2 SET c='ninety-two thousand sixteen' WHERE a=20604;\nUPDATE t2 SET c='twenty-four thousand seventeen' WHERE a=20605;\nUPDATE t2 SET c='nineteen thousand three hundred fifty-nine' WHERE a=20606;\nUPDATE t2 SET c='twenty-seven thousand seven hundred ninety-nine' WHERE a=20607;\nUPDATE t2 SET c='eighty-two thousand five hundred sixty-three' WHERE a=20608;\nUPDATE t2 SET c='eighty thousand three hundred three' WHERE a=20609;\nUPDATE t2 SET c='fourteen thousand fourteen' WHERE a=20610;\nUPDATE t2 SET c='twelve thousand one hundred twenty-eight' WHERE a=20611;\nUPDATE t2 SET c='twenty-four thousand one hundred twenty-five' WHERE a=20612;\nUPDATE t2 SET c='seventy-nine thousand five hundred sixty-three' WHERE a=20613;\nUPDATE t2 SET c='seven thousand two hundred ninety' WHERE a=20614;\nUPDATE t2 SET c='twenty-seven thousand five hundred ninety-nine' WHERE a=20615;\nUPDATE t2 SET c='eighty-nine thousand three hundred two' WHERE a=20616;\nUPDATE t2 SET c='ten thousand eighty-eight' WHERE a=20617;\nUPDATE t2 SET c='thirty-eight thousand two hundred seventeen' WHERE a=20618;\nUPDATE t2 SET c='fourteen thousand forty-five' WHERE a=20619;\nUPDATE t2 SET c='fifty-one thousand seven hundred eleven' WHERE a=20620;\nUPDATE t2 SET c='five thousand two hundred fifteen' WHERE a=20621;\nUPDATE t2 SET c='thirteen thousand forty-four' WHERE a=20622;\nUPDATE t2 SET c='forty-eight thousand ninety-nine' WHERE a=20623;\nUPDATE t2 SET c='fifty-three thousand forty-nine' WHERE a=20624;\nUPDATE t2 SET c='eighty-three thousand four hundred' WHERE a=20625;\nUPDATE t2 SET c='six thousand seven hundred seventy' WHERE a=20626;\nUPDATE t2 SET c='thirty-three thousand three hundred ninety-eight' WHERE a=20627;\nUPDATE t2 SET c='forty-nine thousand five hundred ninety-three' WHERE a=20628;\nUPDATE t2 SET c='three thousand fifty-one' WHERE a=20629;\nUPDATE t2 SET c='seventy-four thousand eight hundred sixty' WHERE a=20630;\nUPDATE t2 SET c='three thousand five hundred thirty-three' WHERE a=20631;\nUPDATE t2 SET c='thirty-three thousand two hundred two' WHERE a=20632;\nUPDATE t2 SET c='seventy-eight thousand three hundred twenty-seven' WHERE a=20633;\nUPDATE t2 SET c='eighty-eight thousand three hundred fifty-four' WHERE a=20634;\nUPDATE t2 SET c='ninety-one thousand nine hundred fifty-six' WHERE a=20635;\nUPDATE t2 SET c='forty-eight thousand seven hundred sixty-eight' WHERE a=20636;\nUPDATE t2 SET c='seventy-six thousand seven hundred five' WHERE a=20637;\nUPDATE t2 SET c='thirteen thousand seventy-one' WHERE a=20638;\nUPDATE t2 SET c='fifty-four thousand three hundred ninety-one' WHERE a=20639;\nUPDATE t2 SET c='seventy-eight thousand three hundred ninety-five' WHERE a=20640;\nUPDATE t2 SET c='eighty thousand two hundred ten' WHERE a=20641;\nUPDATE t2 SET c='ninety-six thousand three hundred fourteen' WHERE a=20642;\nUPDATE t2 SET c='twenty-three thousand six hundred nineteen' WHERE a=20643;\nUPDATE t2 SET c='thirty-one thousand five hundred fifty-five' WHERE a=20644;\nUPDATE t2 SET c='seventy-one thousand nine hundred eighty-three' WHERE a=20645;\nUPDATE t2 SET c='eighty-six thousand six hundred ninety' WHERE a=20646;\nUPDATE t2 SET c='thirty-five thousand one hundred eighty-seven' WHERE a=20647;\nUPDATE t2 SET c='seventy-seven thousand forty-eight' WHERE a=20648;\nUPDATE t2 SET c='ten thousand six hundred forty-two' WHERE a=20649;\nUPDATE t2 SET c='forty-seven thousand three hundred seventy-two' WHERE a=20650;\nUPDATE t2 SET c='seventeen thousand seven hundred thirty-four' WHERE a=20651;\nUPDATE t2 SET c='sixty-six thousand three hundred sixty-one' WHERE a=20652;\nUPDATE t2 SET c='three thousand eight hundred five' WHERE a=20653;\nUPDATE t2 SET c='forty-five thousand four hundred eighty-three' WHERE a=20654;\nUPDATE t2 SET c='seventy-four thousand five hundred fifteen' WHERE a=20655;\nUPDATE t2 SET c='sixty-two thousand four hundred fifty-nine' WHERE a=20656;\nUPDATE t2 SET c='sixty-six thousand seven hundred eleven' WHERE a=20657;\nUPDATE t2 SET c='twenty-eight thousand five hundred forty-two' WHERE a=20658;\nUPDATE t2 SET c='eighty-one thousand twenty-four' WHERE a=20659;\nUPDATE t2 SET c='eight hundred seven' WHERE a=20660;\nUPDATE t2 SET c='five thousand two hundred forty' WHERE a=20661;\nUPDATE t2 SET c='ninety thousand seven hundred eighty-one' WHERE a=20662;\nUPDATE t2 SET c='sixty-two thousand nine hundred ninety-five' WHERE a=20663;\nUPDATE t2 SET c='fifty-three thousand seven hundred twenty-one' WHERE a=20664;\nUPDATE t2 SET c='forty-two thousand nine hundred ten' WHERE a=20665;\nUPDATE t2 SET c='thirty-five thousand seven hundred ninety-seven' WHERE a=20666;\nUPDATE t2 SET c='six thousand four hundred fifty-three' WHERE a=20667;\nUPDATE t2 SET c='fifty-one thousand two hundred five' WHERE a=20668;\nUPDATE t2 SET c='one thousand three hundred eighty-seven' WHERE a=20669;\nUPDATE t2 SET c='thirteen thousand eight hundred seventy' WHERE a=20670;\nUPDATE t2 SET c='eighty-nine thousand seventy' WHERE a=20671;\nUPDATE t2 SET c='eighteen thousand seven hundred twenty-three' WHERE a=20672;\nUPDATE t2 SET c='ninety-seven thousand four hundred eighty-four' WHERE a=20673;\nUPDATE t2 SET c='ninety-one thousand three hundred fifty-five' WHERE a=20674;\nUPDATE t2 SET c='sixty-two thousand eight hundred fifty-three' WHERE a=20675;\nUPDATE t2 SET c='twenty thousand nine hundred forty-seven' WHERE a=20676;\nUPDATE t2 SET c='twenty-six thousand eight' WHERE a=20677;\nUPDATE t2 SET c='seventeen thousand five hundred sixteen' WHERE a=20678;\nUPDATE t2 SET c='forty-seven thousand four hundred ninety-three' WHERE a=20679;\nUPDATE t2 SET c='forty-six thousand eighty-four' WHERE a=20680;\nUPDATE t2 SET c='ninety-one thousand one hundred sixty-four' WHERE a=20681;\nUPDATE t2 SET c='thirty-nine thousand five hundred twelve' WHERE a=20682;\nUPDATE t2 SET c='forty-five thousand six hundred thirty-six' WHERE a=20683;\nUPDATE t2 SET c='twelve thousand four hundred forty-four' WHERE a=20684;\nUPDATE t2 SET c='eighty-seven thousand four hundred fifty-four' WHERE a=20685;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty-one' WHERE a=20686;\nUPDATE t2 SET c='twelve thousand three hundred seventy-one' WHERE a=20687;\nUPDATE t2 SET c='fifty-three thousand two hundred forty-four' WHERE a=20688;\nUPDATE t2 SET c='nine thousand seven hundred fifty-eight' WHERE a=20689;\nUPDATE t2 SET c='thirty-six thousand three hundred sixty-seven' WHERE a=20690;\nUPDATE t2 SET c='eighty-five thousand nine hundred forty-four' WHERE a=20691;\nUPDATE t2 SET c='forty-five thousand four hundred thirty' WHERE a=20692;\nUPDATE t2 SET c='thirty-nine thousand sixty-three' WHERE a=20693;\nUPDATE t2 SET c='twenty-four thousand two hundred ninety-nine' WHERE a=20694;\nUPDATE t2 SET c='ninety-one thousand five hundred thirty-seven' WHERE a=20695;\nUPDATE t2 SET c='seventy-eight thousand seven hundred eighty-six' WHERE a=20696;\nUPDATE t2 SET c='seventy-nine thousand twenty-three' WHERE a=20697;\nUPDATE t2 SET c='ninety-four thousand eight hundred fifty-one' WHERE a=20698;\nUPDATE t2 SET c='ninety thousand four hundred seventy' WHERE a=20699;\nUPDATE t2 SET c='forty-six thousand five hundred six' WHERE a=20700;\nUPDATE t2 SET c='twenty-one thousand seven hundred forty-six' WHERE a=20701;\nUPDATE t2 SET c='ninety-five thousand three hundred seventy' WHERE a=20702;\nUPDATE t2 SET c='seventy-seven thousand eight hundred thirty-five' WHERE a=20703;\nUPDATE t2 SET c='ten thousand fifty-two' WHERE a=20704;\nUPDATE t2 SET c='sixty-one thousand nine hundred' WHERE a=20705;\nUPDATE t2 SET c='fifteen thousand six hundred five' WHERE a=20706;\nUPDATE t2 SET c='thirteen thousand four hundred forty-eight' WHERE a=20707;\nUPDATE t2 SET c='fifty thousand one hundred forty-two' WHERE a=20708;\nUPDATE t2 SET c='forty-four thousand two hundred fifty-eight' WHERE a=20709;\nUPDATE t2 SET c='fifty-four thousand five hundred thirty-five' WHERE a=20710;\nUPDATE t2 SET c='ninety-six thousand nine hundred twenty' WHERE a=20711;\nUPDATE t2 SET c='seventy-seven thousand seven hundred thirty-eight' WHERE a=20712;\nUPDATE t2 SET c='fifteen thousand one hundred eighty-one' WHERE a=20713;\nUPDATE t2 SET c='eighty-four thousand sixty-nine' WHERE a=20714;\nUPDATE t2 SET c='fifty-four thousand seven hundred thirty-two' WHERE a=20715;\nUPDATE t2 SET c='thirty thousand two hundred one' WHERE a=20716;\nUPDATE t2 SET c='fifty-seven thousand seven hundred thirty-four' WHERE a=20717;\nUPDATE t2 SET c='thirty-five thousand five hundred four' WHERE a=20718;\nUPDATE t2 SET c='thirty-four thousand nine hundred sixteen' WHERE a=20719;\nUPDATE t2 SET c='ninety-one thousand six hundred fifty-four' WHERE a=20720;\nUPDATE t2 SET c='fifty-two thousand five hundred eighty-one' WHERE a=20721;\nUPDATE t2 SET c='ninety-nine thousand three hundred ninety-nine' WHERE a=20722;\nUPDATE t2 SET c='twenty-seven thousand five hundred fifteen' WHERE a=20723;\nUPDATE t2 SET c='thirty-four thousand eight hundred thirty-five' WHERE a=20724;\nUPDATE t2 SET c='eighty thousand one hundred eight' WHERE a=20725;\nUPDATE t2 SET c='fifty-two thousand eight hundred sixty-six' WHERE a=20726;\nUPDATE t2 SET c='five thousand five hundred seventy-five' WHERE a=20727;\nUPDATE t2 SET c='forty-eight thousand three hundred eleven' WHERE a=20728;\nUPDATE t2 SET c='nineteen thousand four hundred twenty-two' WHERE a=20729;\nUPDATE t2 SET c='thirty-seven thousand seventy-five' WHERE a=20730;\nUPDATE t2 SET c='sixty-eight thousand four hundred thirty-six' WHERE a=20731;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-seven' WHERE a=20732;\nUPDATE t2 SET c='thirty-six thousand seven hundred forty-eight' WHERE a=20733;\nUPDATE t2 SET c='ninety-eight thousand eight hundred eighty-nine' WHERE a=20734;\nUPDATE t2 SET c='forty-five thousand eight hundred forty-four' WHERE a=20735;\nUPDATE t2 SET c='seventy-three thousand three hundred thirty-three' WHERE a=20736;\nUPDATE t2 SET c='six thousand five hundred sixteen' WHERE a=20737;\nUPDATE t2 SET c='thirty-five thousand eight hundred ninety-nine' WHERE a=20738;\nUPDATE t2 SET c='seventy-two thousand nine hundred ten' WHERE a=20739;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirty-five' WHERE a=20740;\nUPDATE t2 SET c='fifty-eight thousand two hundred sixty-nine' WHERE a=20741;\nUPDATE t2 SET c='ten thousand eight hundred eighty-four' WHERE a=20742;\nUPDATE t2 SET c='forty-six thousand four hundred sixteen' WHERE a=20743;\nUPDATE t2 SET c='thirty-seven thousand three hundred eleven' WHERE a=20744;\nUPDATE t2 SET c='seventy-eight thousand nine hundred ninety' WHERE a=20745;\nUPDATE t2 SET c='thirty-six thousand three hundred ninety-seven' WHERE a=20746;\nUPDATE t2 SET c='twenty-nine thousand four hundred thirty-seven' WHERE a=20747;\nUPDATE t2 SET c='eighty thousand four hundred seven' WHERE a=20748;\nUPDATE t2 SET c='fifty-four thousand five hundred seventy-five' WHERE a=20749;\nUPDATE t2 SET c='eighty-three thousand one hundred sixty-nine' WHERE a=20750;\nUPDATE t2 SET c='nine thousand one hundred ninety-three' WHERE a=20751;\nUPDATE t2 SET c='fifty-one thousand seven hundred thirty-four' WHERE a=20752;\nUPDATE t2 SET c='forty-five thousand two hundred five' WHERE a=20753;\nUPDATE t2 SET c='seventy-one thousand seven hundred sixteen' WHERE a=20754;\nUPDATE t2 SET c='forty-one thousand three hundred seventy-one' WHERE a=20755;\nUPDATE t2 SET c='twenty-three thousand three hundred eleven' WHERE a=20756;\nUPDATE t2 SET c='sixty-two thousand six hundred thirty-four' WHERE a=20757;\nUPDATE t2 SET c='ninety-two thousand five hundred fourteen' WHERE a=20758;\nUPDATE t2 SET c='eighty-three thousand three hundred thirty-seven' WHERE a=20759;\nUPDATE t2 SET c='seventy-five thousand four hundred eight' WHERE a=20760;\nUPDATE t2 SET c='seventy-nine thousand six hundred two' WHERE a=20761;\nUPDATE t2 SET c='fifty-two thousand five hundred seventy-one' WHERE a=20762;\nUPDATE t2 SET c='thirty-nine thousand five hundred thirty-seven' WHERE a=20763;\nUPDATE t2 SET c='ninety-four thousand two hundred thirty-three' WHERE a=20764;\nUPDATE t2 SET c='forty-three thousand three hundred eighteen' WHERE a=20765;\nUPDATE t2 SET c='seven thousand eight hundred twenty-nine' WHERE a=20766;\nUPDATE t2 SET c='twenty-eight thousand three hundred eighty' WHERE a=20767;\nUPDATE t2 SET c='sixty-four thousand nine hundred ninety-one' WHERE a=20768;\nUPDATE t2 SET c='seventy-two thousand seven hundred sixty-four' WHERE a=20769;\nUPDATE t2 SET c='sixty-nine thousand nine hundred fourteen' WHERE a=20770;\nUPDATE t2 SET c='twenty-six thousand one hundred seventy-three' WHERE a=20771;\nUPDATE t2 SET c='twenty-three thousand five hundred forty-three' WHERE a=20772;\nUPDATE t2 SET c='eighty-nine thousand four hundred sixty-four' WHERE a=20773;\nUPDATE t2 SET c='ninety-seven thousand one hundred forty-seven' WHERE a=20774;\nUPDATE t2 SET c='twenty-two thousand one hundred twenty-seven' WHERE a=20775;\nUPDATE t2 SET c='ninety-eight thousand nine hundred ninety-five' WHERE a=20776;\nUPDATE t2 SET c='seventy-one thousand eight hundred eighty-seven' WHERE a=20777;\nUPDATE t2 SET c='nineteen thousand six hundred sixty-three' WHERE a=20778;\nUPDATE t2 SET c='nineteen thousand five hundred sixty-nine' WHERE a=20779;\nUPDATE t2 SET c='eighty-four thousand eight hundred ninety-seven' WHERE a=20780;\nUPDATE t2 SET c='one thousand one hundred seven' WHERE a=20781;\nUPDATE t2 SET c='sixty-nine thousand two hundred four' WHERE a=20782;\nUPDATE t2 SET c='four thousand one hundred eighty-seven' WHERE a=20783;\nUPDATE t2 SET c='twenty-seven thousand nine hundred fifty-five' WHERE a=20784;\nUPDATE t2 SET c='fifty-five thousand one hundred sixty-nine' WHERE a=20785;\nUPDATE t2 SET c='one thousand six hundred forty-seven' WHERE a=20786;\nUPDATE t2 SET c='eighty-seven thousand ninety-eight' WHERE a=20787;\nUPDATE t2 SET c='fifty-one thousand five hundred twenty-seven' WHERE a=20788;\nUPDATE t2 SET c='eighty thousand five hundred sixty' WHERE a=20789;\nUPDATE t2 SET c='twenty-one thousand nine hundred forty-eight' WHERE a=20790;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-nine' WHERE a=20791;\nUPDATE t2 SET c='eighty-six thousand one hundred thirty-five' WHERE a=20792;\nUPDATE t2 SET c='seven thousand four hundred seventeen' WHERE a=20793;\nUPDATE t2 SET c='forty-six thousand three hundred ninety-nine' WHERE a=20794;\nUPDATE t2 SET c='ninety-six thousand one hundred forty-nine' WHERE a=20795;\nUPDATE t2 SET c='sixty-two thousand one' WHERE a=20796;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy' WHERE a=20797;\nUPDATE t2 SET c='seventy-nine thousand one hundred ninety-six' WHERE a=20798;\nUPDATE t2 SET c='ninety-eight thousand eight hundred thirteen' WHERE a=20799;\nUPDATE t2 SET c='twenty-seven thousand three hundred sixty-eight' WHERE a=20800;\nUPDATE t2 SET c='ninety-four thousand nine hundred fifty-two' WHERE a=20801;\nUPDATE t2 SET c='fifty-five thousand three hundred thirty-one' WHERE a=20802;\nUPDATE t2 SET c='sixty thousand eight hundred seventy' WHERE a=20803;\nUPDATE t2 SET c='forty-nine thousand one hundred twenty-six' WHERE a=20804;\nUPDATE t2 SET c='thirty-seven thousand fifteen' WHERE a=20805;\nUPDATE t2 SET c='six thousand six hundred forty-two' WHERE a=20806;\nUPDATE t2 SET c='seventy-three thousand six hundred sixty-three' WHERE a=20807;\nUPDATE t2 SET c='fifteen thousand five hundred seventy-two' WHERE a=20808;\nUPDATE t2 SET c='sixty-seven thousand six hundred seventy-eight' WHERE a=20809;\nUPDATE t2 SET c='ninety-four thousand two hundred fifty-one' WHERE a=20810;\nUPDATE t2 SET c='twenty-eight thousand two hundred forty-nine' WHERE a=20811;\nUPDATE t2 SET c='eighty-five thousand two hundred ninety-eight' WHERE a=20812;\nUPDATE t2 SET c='seventy-nine thousand seven hundred thirty-one' WHERE a=20813;\nUPDATE t2 SET c='seventy thousand seven hundred fifty-three' WHERE a=20814;\nUPDATE t2 SET c='ninety-nine thousand one hundred thirty-four' WHERE a=20815;\nUPDATE t2 SET c='thirty-nine thousand four hundred nine' WHERE a=20816;\nUPDATE t2 SET c='ninety-seven thousand five hundred forty-nine' WHERE a=20817;\nUPDATE t2 SET c='seventy-eight thousand three hundred ninety-six' WHERE a=20818;\nUPDATE t2 SET c='thirty-three thousand eight hundred seventy-three' WHERE a=20819;\nUPDATE t2 SET c='sixty-four thousand five hundred ninety' WHERE a=20820;\nUPDATE t2 SET c='eight thousand nine hundred ninety-five' WHERE a=20821;\nUPDATE t2 SET c='four thousand six hundred fifty-seven' WHERE a=20822;\nUPDATE t2 SET c='twenty thousand two hundred ninety' WHERE a=20823;\nUPDATE t2 SET c='ninety-six thousand four hundred fifty-four' WHERE a=20824;\nUPDATE t2 SET c='sixty-seven thousand seven hundred twenty-eight' WHERE a=20825;\nUPDATE t2 SET c='three thousand seven hundred one' WHERE a=20826;\nUPDATE t2 SET c='thirty-six thousand eighty-five' WHERE a=20827;\nUPDATE t2 SET c='forty-nine thousand six hundred eighty-two' WHERE a=20828;\nUPDATE t2 SET c='ninety-seven thousand one hundred forty-six' WHERE a=20829;\nUPDATE t2 SET c='sixty-two thousand four hundred fifty-three' WHERE a=20830;\nUPDATE t2 SET c='sixty thousand seven hundred seventy-seven' WHERE a=20831;\nUPDATE t2 SET c='sixty-four thousand seven hundred thirty-nine' WHERE a=20832;\nUPDATE t2 SET c='forty thousand five hundred twenty-seven' WHERE a=20833;\nUPDATE t2 SET c='four thousand one hundred ninety-eight' WHERE a=20834;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-six' WHERE a=20835;\nUPDATE t2 SET c='eighty-two thousand two hundred sixteen' WHERE a=20836;\nUPDATE t2 SET c='forty thousand four hundred ninety-seven' WHERE a=20837;\nUPDATE t2 SET c='thirty thousand nine hundred thirty-four' WHERE a=20838;\nUPDATE t2 SET c='twenty thousand five hundred fourteen' WHERE a=20839;\nUPDATE t2 SET c='thirty-nine thousand nine hundred eighty-nine' WHERE a=20840;\nUPDATE t2 SET c='twenty thousand six hundred eighty-one' WHERE a=20841;\nUPDATE t2 SET c='eleven thousand five hundred seventy-one' WHERE a=20842;\nUPDATE t2 SET c='thirty-three thousand two hundred twenty-one' WHERE a=20843;\nUPDATE t2 SET c='twenty-seven thousand five hundred ninety-three' WHERE a=20844;\nUPDATE t2 SET c='three thousand two hundred eighty-nine' WHERE a=20845;\nUPDATE t2 SET c='forty-seven thousand five hundred eighty-eight' WHERE a=20846;\nUPDATE t2 SET c='thirty-seven thousand seven hundred two' WHERE a=20847;\nUPDATE t2 SET c='twenty-two thousand one hundred fifty' WHERE a=20848;\nUPDATE t2 SET c='twenty thousand four hundred seventy' WHERE a=20849;\nUPDATE t2 SET c='sixty-four thousand four hundred fifty-two' WHERE a=20850;\nUPDATE t2 SET c='twenty-six thousand thirty-one' WHERE a=20851;\nUPDATE t2 SET c='fifty-six thousand eight hundred fifty-seven' WHERE a=20852;\nUPDATE t2 SET c='ten thousand four hundred twelve' WHERE a=20853;\nUPDATE t2 SET c='eleven thousand five hundred fifty-eight' WHERE a=20854;\nUPDATE t2 SET c='thirty-six thousand nine hundred seventy-nine' WHERE a=20855;\nUPDATE t2 SET c='eighty-three thousand one hundred fifty-six' WHERE a=20856;\nUPDATE t2 SET c='fifty-seven thousand three hundred forty-seven' WHERE a=20857;\nUPDATE t2 SET c='forty-four thousand four hundred seventy-five' WHERE a=20858;\nUPDATE t2 SET c='fifty-two thousand five hundred fourteen' WHERE a=20859;\nUPDATE t2 SET c='twenty-one thousand seven hundred forty-one' WHERE a=20860;\nUPDATE t2 SET c='forty-seven thousand four hundred ninety-one' WHERE a=20861;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirteen' WHERE a=20862;\nUPDATE t2 SET c='five hundred eighty-seven' WHERE a=20863;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty-five' WHERE a=20864;\nUPDATE t2 SET c='fifty-nine thousand eight hundred thirteen' WHERE a=20865;\nUPDATE t2 SET c='fifty-nine thousand nine hundred thirty-six' WHERE a=20866;\nUPDATE t2 SET c='ninety thousand one hundred seven' WHERE a=20867;\nUPDATE t2 SET c='forty thousand four hundred ninety-one' WHERE a=20868;\nUPDATE t2 SET c='thirty-three thousand nine hundred forty-eight' WHERE a=20869;\nUPDATE t2 SET c='three thousand seventeen' WHERE a=20870;\nUPDATE t2 SET c='eighty thousand eight hundred twenty-four' WHERE a=20871;\nUPDATE t2 SET c='eight thousand five hundred twenty-four' WHERE a=20872;\nUPDATE t2 SET c='ninety thousand nine hundred fifty-two' WHERE a=20873;\nUPDATE t2 SET c='thirty-four thousand seven hundred sixty-eight' WHERE a=20874;\nUPDATE t2 SET c='sixty thousand six hundred eighty-seven' WHERE a=20875;\nUPDATE t2 SET c='seventy-two thousand seven hundred ninety-six' WHERE a=20876;\nUPDATE t2 SET c='thirty thousand nine hundred ninety-nine' WHERE a=20877;\nUPDATE t2 SET c='fifty-six thousand six hundred sixty-two' WHERE a=20878;\nUPDATE t2 SET c='thirty-nine thousand sixty-one' WHERE a=20879;\nUPDATE t2 SET c='forty-one thousand eight hundred seventy-six' WHERE a=20880;\nUPDATE t2 SET c='seventy-one thousand eight hundred fourteen' WHERE a=20881;\nUPDATE t2 SET c='eighty-five thousand five hundred ninety' WHERE a=20882;\nUPDATE t2 SET c='thirty-two thousand seven hundred fifteen' WHERE a=20883;\nUPDATE t2 SET c='sixty-eight thousand seven hundred forty-two' WHERE a=20884;\nUPDATE t2 SET c='seventy thousand two hundred eighty' WHERE a=20885;\nUPDATE t2 SET c='thirteen thousand two hundred sixty' WHERE a=20886;\nUPDATE t2 SET c='twenty-three thousand four hundred sixty-five' WHERE a=20887;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-one' WHERE a=20888;\nUPDATE t2 SET c='two thousand four hundred eighty-three' WHERE a=20889;\nUPDATE t2 SET c='seventy-one thousand one hundred thirty-seven' WHERE a=20890;\nUPDATE t2 SET c='fifty-two thousand one hundred twenty' WHERE a=20891;\nUPDATE t2 SET c='fourteen thousand three hundred six' WHERE a=20892;\nUPDATE t2 SET c='eighteen thousand two hundred five' WHERE a=20893;\nUPDATE t2 SET c='nineteen thousand thirty-seven' WHERE a=20894;\nUPDATE t2 SET c='eight thousand eight hundred eighty-nine' WHERE a=20895;\nUPDATE t2 SET c='two thousand eight hundred eighteen' WHERE a=20896;\nUPDATE t2 SET c='sixty-seven thousand two hundred forty-six' WHERE a=20897;\nUPDATE t2 SET c='thirty-nine thousand nine' WHERE a=20898;\nUPDATE t2 SET c='thirty-eight thousand one hundred thirty' WHERE a=20899;\nUPDATE t2 SET c='nine hundred fifteen' WHERE a=20900;\nUPDATE t2 SET c='forty-six thousand six hundred thirty-one' WHERE a=20901;\nUPDATE t2 SET c='one thousand six hundred thirty-six' WHERE a=20902;\nUPDATE t2 SET c='sixty-five thousand forty' WHERE a=20903;\nUPDATE t2 SET c='seventy-three thousand three hundred thirty-nine' WHERE a=20904;\nUPDATE t2 SET c='fifty-four thousand eight hundred fifty' WHERE a=20905;\nUPDATE t2 SET c='thirty-two thousand five hundred ninety' WHERE a=20906;\nUPDATE t2 SET c='forty-four thousand five hundred fifty-five' WHERE a=20907;\nUPDATE t2 SET c='thirty-one thousand six hundred eighty-seven' WHERE a=20908;\nUPDATE t2 SET c='twenty-eight thousand five hundred eight' WHERE a=20909;\nUPDATE t2 SET c='twenty-three thousand three hundred seventy-two' WHERE a=20910;\nUPDATE t2 SET c='sixteen thousand two hundred three' WHERE a=20911;\nUPDATE t2 SET c='eighty thousand nine hundred nine' WHERE a=20912;\nUPDATE t2 SET c='forty-four thousand three hundred seventy-eight' WHERE a=20913;\nUPDATE t2 SET c='one thousand three hundred thirty-one' WHERE a=20914;\nUPDATE t2 SET c='sixteen thousand five hundred ninety-six' WHERE a=20915;\nUPDATE t2 SET c='nineteen thousand two hundred eighty-one' WHERE a=20916;\nUPDATE t2 SET c='eleven thousand five hundred twenty-three' WHERE a=20917;\nUPDATE t2 SET c='eighty-five thousand five hundred eight' WHERE a=20918;\nUPDATE t2 SET c='seventy-four thousand eight hundred fifty-six' WHERE a=20919;\nUPDATE t2 SET c='forty-nine thousand nine hundred twenty-one' WHERE a=20920;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-five' WHERE a=20921;\nUPDATE t2 SET c='ninety-one thousand four hundred eighty-nine' WHERE a=20922;\nUPDATE t2 SET c='eighty-seven thousand nine hundred twenty-four' WHERE a=20923;\nUPDATE t2 SET c='forty-two thousand one hundred sixty-seven' WHERE a=20924;\nUPDATE t2 SET c='forty-five thousand seven hundred three' WHERE a=20925;\nUPDATE t2 SET c='fifty thousand nine hundred thirty-eight' WHERE a=20926;\nUPDATE t2 SET c='forty-six thousand eight hundred thirty-six' WHERE a=20927;\nUPDATE t2 SET c='sixty-one thousand six hundred twenty-nine' WHERE a=20928;\nUPDATE t2 SET c='twenty-five thousand four hundred twenty-nine' WHERE a=20929;\nUPDATE t2 SET c='two thousand two hundred fifty-four' WHERE a=20930;\nUPDATE t2 SET c='eighty-eight thousand two hundred forty-nine' WHERE a=20931;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-two' WHERE a=20932;\nUPDATE t2 SET c='fifteen thousand two hundred ninety-five' WHERE a=20933;\nUPDATE t2 SET c='sixty-one thousand five hundred twenty-five' WHERE a=20934;\nUPDATE t2 SET c='sixty thousand one hundred fourteen' WHERE a=20935;\nUPDATE t2 SET c='seventy-six thousand seven hundred fourteen' WHERE a=20936;\nUPDATE t2 SET c='twenty-two thousand two hundred forty-seven' WHERE a=20937;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-three' WHERE a=20938;\nUPDATE t2 SET c='forty-six thousand seven hundred ninety-one' WHERE a=20939;\nUPDATE t2 SET c='ninety-three thousand eight hundred eleven' WHERE a=20940;\nUPDATE t2 SET c='ninety-four thousand eight hundred ten' WHERE a=20941;\nUPDATE t2 SET c='seventy-five thousand four hundred thirty-eight' WHERE a=20942;\nUPDATE t2 SET c='ninety-seven thousand two hundred fifty-nine' WHERE a=20943;\nUPDATE t2 SET c='seventy-nine thousand seven hundred forty-three' WHERE a=20944;\nUPDATE t2 SET c='seventy-eight thousand one hundred thirteen' WHERE a=20945;\nUPDATE t2 SET c='eighty-nine thousand six hundred fifty-four' WHERE a=20946;\nUPDATE t2 SET c='two thousand five hundred ninety-five' WHERE a=20947;\nUPDATE t2 SET c='eighty-six thousand four hundred eighty-two' WHERE a=20948;\nUPDATE t2 SET c='twenty-four thousand four' WHERE a=20949;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-seven' WHERE a=20950;\nUPDATE t2 SET c='eighty-four thousand six hundred sixty-three' WHERE a=20951;\nUPDATE t2 SET c='thirty-two thousand sixty-one' WHERE a=20952;\nUPDATE t2 SET c='twenty-two thousand four hundred forty-five' WHERE a=20953;\nUPDATE t2 SET c='forty-three thousand two hundred thirty-nine' WHERE a=20954;\nUPDATE t2 SET c='thirty-eight thousand five hundred' WHERE a=20955;\nUPDATE t2 SET c='fifty-one thousand seven hundred seventy-nine' WHERE a=20956;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy' WHERE a=20957;\nUPDATE t2 SET c='sixty thousand six hundred twelve' WHERE a=20958;\nUPDATE t2 SET c='ninety-four thousand five hundred ninety-three' WHERE a=20959;\nUPDATE t2 SET c='sixty-six thousand nine hundred eighteen' WHERE a=20960;\nUPDATE t2 SET c='thirty-six thousand eight hundred sixty-two' WHERE a=20961;\nUPDATE t2 SET c='forty-six thousand two hundred twenty-one' WHERE a=20962;\nUPDATE t2 SET c='thirty-six thousand one hundred sixty-seven' WHERE a=20963;\nUPDATE t2 SET c='thirty-four thousand two hundred eleven' WHERE a=20964;\nUPDATE t2 SET c='eight thousand ninety-five' WHERE a=20965;\nUPDATE t2 SET c='seventy-eight thousand seventy-one' WHERE a=20966;\nUPDATE t2 SET c='sixty-three thousand two hundred twenty-four' WHERE a=20967;\nUPDATE t2 SET c='ninety-five thousand nine' WHERE a=20968;\nUPDATE t2 SET c='twelve thousand five hundred twenty-three' WHERE a=20969;\nUPDATE t2 SET c='seventy-five thousand seven hundred thirty-one' WHERE a=20970;\nUPDATE t2 SET c='one thousand one hundred twenty-eight' WHERE a=20971;\nUPDATE t2 SET c='seventy thousand seven hundred sixty-six' WHERE a=20972;\nUPDATE t2 SET c='sixteen thousand three hundred eleven' WHERE a=20973;\nUPDATE t2 SET c='seven thousand three hundred forty-nine' WHERE a=20974;\nUPDATE t2 SET c='fifty-five thousand five hundred two' WHERE a=20975;\nUPDATE t2 SET c='ninety-three thousand nine hundred eleven' WHERE a=20976;\nUPDATE t2 SET c='seventy-nine thousand one hundred ninety' WHERE a=20977;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirty-seven' WHERE a=20978;\nUPDATE t2 SET c='fifty-eight thousand two hundred nine' WHERE a=20979;\nUPDATE t2 SET c='eighty-three thousand ninety-two' WHERE a=20980;\nUPDATE t2 SET c='fifty-two thousand seven hundred six' WHERE a=20981;\nUPDATE t2 SET c='sixty-one thousand three hundred sixty-three' WHERE a=20982;\nUPDATE t2 SET c='ninety-five thousand eight hundred fifty-one' WHERE a=20983;\nUPDATE t2 SET c='forty-nine thousand five hundred ninety-five' WHERE a=20984;\nUPDATE t2 SET c='four thousand five hundred twenty-six' WHERE a=20985;\nUPDATE t2 SET c='forty-three thousand seven hundred sixty-nine' WHERE a=20986;\nUPDATE t2 SET c='nineteen thousand two hundred one' WHERE a=20987;\nUPDATE t2 SET c='eighty thousand two hundred one' WHERE a=20988;\nUPDATE t2 SET c='fifty-three thousand seven hundred seventy-six' WHERE a=20989;\nUPDATE t2 SET c='fifty thousand five hundred ninety-eight' WHERE a=20990;\nUPDATE t2 SET c='nine thousand three hundred sixty-two' WHERE a=20991;\nUPDATE t2 SET c='ten thousand nine hundred seventeen' WHERE a=20992;\nUPDATE t2 SET c='three thousand three hundred thirty-three' WHERE a=20993;\nUPDATE t2 SET c='eight thousand two hundred twenty-four' WHERE a=20994;\nUPDATE t2 SET c='three thousand one hundred seventy-six' WHERE a=20995;\nUPDATE t2 SET c='four thousand six hundred fifteen' WHERE a=20996;\nUPDATE t2 SET c='seventy-two thousand four hundred sixty-two' WHERE a=20997;\nUPDATE t2 SET c='eighteen thousand three hundred thirty-two' WHERE a=20998;\nUPDATE t2 SET c='one thousand three hundred seventy-eight' WHERE a=20999;\nUPDATE t2 SET c='fifteen thousand nine hundred sixty-one' WHERE a=21000;\nUPDATE t2 SET c='seventy-two thousand three hundred twenty-six' WHERE a=21001;\nUPDATE t2 SET c='ninety-one thousand forty-three' WHERE a=21002;\nUPDATE t2 SET c='twenty-four thousand seven hundred thirteen' WHERE a=21003;\nUPDATE t2 SET c='fifty-seven thousand two hundred ninety-five' WHERE a=21004;\nUPDATE t2 SET c='ninety-one thousand fourteen' WHERE a=21005;\nUPDATE t2 SET c='thirty-six thousand five hundred eighty-seven' WHERE a=21006;\nUPDATE t2 SET c='forty-seven thousand one hundred seventy' WHERE a=21007;\nUPDATE t2 SET c='seventy-six thousand nine hundred thirty-eight' WHERE a=21008;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-three' WHERE a=21009;\nUPDATE t2 SET c='nine thousand seven hundred sixty-seven' WHERE a=21010;\nUPDATE t2 SET c='seventeen thousand one hundred thirteen' WHERE a=21011;\nUPDATE t2 SET c='forty-four thousand two hundred ninety' WHERE a=21012;\nUPDATE t2 SET c='thirty thousand eight hundred nine' WHERE a=21013;\nUPDATE t2 SET c='twenty-seven thousand four hundred thirty-six' WHERE a=21014;\nUPDATE t2 SET c='four thousand eight hundred ninety-one' WHERE a=21015;\nUPDATE t2 SET c='forty-one thousand five hundred sixty-eight' WHERE a=21016;\nUPDATE t2 SET c='forty-eight thousand seven hundred sixty-two' WHERE a=21017;\nUPDATE t2 SET c='twenty-three thousand one hundred twenty-nine' WHERE a=21018;\nUPDATE t2 SET c='seventeen thousand five hundred thirty-four' WHERE a=21019;\nUPDATE t2 SET c='eighty-four thousand four hundred eighty-three' WHERE a=21020;\nUPDATE t2 SET c='fifty-three thousand two hundred thirty-six' WHERE a=21021;\nUPDATE t2 SET c='nineteen thousand six hundred eighty-three' WHERE a=21022;\nUPDATE t2 SET c='eighteen thousand nine hundred eighty-nine' WHERE a=21023;\nUPDATE t2 SET c='twenty-three thousand three hundred ten' WHERE a=21024;\nUPDATE t2 SET c='seventy-five thousand sixty-four' WHERE a=21025;\nUPDATE t2 SET c='seventy-five thousand two hundred fifty-five' WHERE a=21026;\nUPDATE t2 SET c='forty-one thousand one hundred seventy-one' WHERE a=21027;\nUPDATE t2 SET c='eighty-eight thousand thirty-seven' WHERE a=21028;\nUPDATE t2 SET c='twenty-two thousand five hundred fifty-one' WHERE a=21029;\nUPDATE t2 SET c='four thousand three hundred eleven' WHERE a=21030;\nUPDATE t2 SET c='eighty-six thousand eight hundred ninety-nine' WHERE a=21031;\nUPDATE t2 SET c='seventy-nine thousand two hundred eighteen' WHERE a=21032;\nUPDATE t2 SET c='twenty-four thousand six hundred fifty-three' WHERE a=21033;\nUPDATE t2 SET c='fifty thousand four hundred forty-one' WHERE a=21034;\nUPDATE t2 SET c='forty-three thousand fifty-nine' WHERE a=21035;\nUPDATE t2 SET c='fifty-six thousand six hundred nineteen' WHERE a=21036;\nUPDATE t2 SET c='sixty-eight thousand nine hundred seven' WHERE a=21037;\nUPDATE t2 SET c='forty-seven thousand four hundred eighty-five' WHERE a=21038;\nUPDATE t2 SET c='five thousand four hundred thirty-five' WHERE a=21039;\nUPDATE t2 SET c='thirty-six thousand seventy-three' WHERE a=21040;\nUPDATE t2 SET c='ninety-five thousand eight hundred ninety-three' WHERE a=21041;\nUPDATE t2 SET c='eighty-two thousand two hundred ninety' WHERE a=21042;\nUPDATE t2 SET c='fourteen thousand one hundred twenty-eight' WHERE a=21043;\nUPDATE t2 SET c='four thousand two hundred twenty-nine' WHERE a=21044;\nUPDATE t2 SET c='ninety-five thousand four hundred two' WHERE a=21045;\nUPDATE t2 SET c='forty-six thousand six hundred eighty-two' WHERE a=21046;\nUPDATE t2 SET c='ninety-two thousand nine hundred eighty-eight' WHERE a=21047;\nUPDATE t2 SET c='eighty-two thousand one hundred twenty-five' WHERE a=21048;\nUPDATE t2 SET c='sixty-eight thousand nine hundred eleven' WHERE a=21049;\nUPDATE t2 SET c='twenty-five thousand one hundred four' WHERE a=21050;\nUPDATE t2 SET c='ninety-one thousand nine hundred sixty-one' WHERE a=21051;\nUPDATE t2 SET c='seven hundred twenty-five' WHERE a=21052;\nUPDATE t2 SET c='twenty thousand seven hundred twenty-two' WHERE a=21053;\nUPDATE t2 SET c='three thousand sixty-five' WHERE a=21054;\nUPDATE t2 SET c='forty-four thousand four hundred ninety-eight' WHERE a=21055;\nUPDATE t2 SET c='ninety-six thousand six hundred forty-eight' WHERE a=21056;\nUPDATE t2 SET c='sixty thousand eight hundred ninety' WHERE a=21057;\nUPDATE t2 SET c='eighty-three thousand nine hundred thirty-nine' WHERE a=21058;\nUPDATE t2 SET c='one thousand one hundred twenty-two' WHERE a=21059;\nUPDATE t2 SET c='forty-two thousand four hundred fifteen' WHERE a=21060;\nUPDATE t2 SET c='six thousand eight hundred eighty-three' WHERE a=21061;\nUPDATE t2 SET c='ninety-four thousand seven hundred forty-four' WHERE a=21062;\nUPDATE t2 SET c='eighteen thousand nine hundred forty-nine' WHERE a=21063;\nUPDATE t2 SET c='sixty-one thousand one hundred nineteen' WHERE a=21064;\nUPDATE t2 SET c='thirty-eight thousand nine hundred twenty-five' WHERE a=21065;\nUPDATE t2 SET c='ten thousand nine hundred sixty-one' WHERE a=21066;\nUPDATE t2 SET c='seventy-four thousand three hundred sixty-eight' WHERE a=21067;\nUPDATE t2 SET c='thirty thousand one hundred thirty-six' WHERE a=21068;\nUPDATE t2 SET c='twenty-nine thousand five hundred sixteen' WHERE a=21069;\nUPDATE t2 SET c='eighty-one thousand one hundred ninety-nine' WHERE a=21070;\nUPDATE t2 SET c='eight thousand two hundred forty-one' WHERE a=21071;\nUPDATE t2 SET c='seventy-nine thousand nine hundred seventeen' WHERE a=21072;\nUPDATE t2 SET c='eighty thousand five hundred sixty-two' WHERE a=21073;\nUPDATE t2 SET c='sixty-nine thousand seven hundred six' WHERE a=21074;\nUPDATE t2 SET c='forty-four thousand three hundred seventy-six' WHERE a=21075;\nUPDATE t2 SET c='twelve thousand eight hundred ninety-four' WHERE a=21076;\nUPDATE t2 SET c='seventy-five thousand four hundred eighty-seven' WHERE a=21077;\nUPDATE t2 SET c='twenty-seven thousand six hundred thirty-seven' WHERE a=21078;\nUPDATE t2 SET c='nine thousand eight hundred sixty-nine' WHERE a=21079;\nUPDATE t2 SET c='sixty-three thousand six hundred sixty-four' WHERE a=21080;\nUPDATE t2 SET c='thirty-three thousand four hundred twenty-five' WHERE a=21081;\nUPDATE t2 SET c='eighty-seven thousand fifteen' WHERE a=21082;\nUPDATE t2 SET c='ninety-eight thousand four hundred ninety-six' WHERE a=21083;\nUPDATE t2 SET c='thirty-six thousand two hundred seventy-two' WHERE a=21084;\nUPDATE t2 SET c='fifty-five thousand eight hundred thirty' WHERE a=21085;\nUPDATE t2 SET c='eighty-six thousand five hundred thirty-seven' WHERE a=21086;\nUPDATE t2 SET c='sixty-three thousand one hundred thirty-four' WHERE a=21087;\nUPDATE t2 SET c='seventeen thousand one hundred twenty-seven' WHERE a=21088;\nUPDATE t2 SET c='seventy-nine thousand one hundred ninety-seven' WHERE a=21089;\nUPDATE t2 SET c='twenty-four thousand two hundred thirty-four' WHERE a=21090;\nUPDATE t2 SET c='seventy-seven thousand six hundred eighty-four' WHERE a=21091;\nUPDATE t2 SET c='eighty-two thousand six hundred eight' WHERE a=21092;\nUPDATE t2 SET c='thirty-three thousand one hundred forty-six' WHERE a=21093;\nUPDATE t2 SET c='sixty thousand six hundred forty-six' WHERE a=21094;\nUPDATE t2 SET c='nine thousand fifty-six' WHERE a=21095;\nUPDATE t2 SET c='seventy-eight thousand eight hundred thirty-five' WHERE a=21096;\nUPDATE t2 SET c='sixty-four thousand nine hundred two' WHERE a=21097;\nUPDATE t2 SET c='fifty-nine thousand eight hundred eighty-seven' WHERE a=21098;\nUPDATE t2 SET c='thirty-one thousand two hundred thirty-six' WHERE a=21099;\nUPDATE t2 SET c='fifteen thousand eight hundred fifty-four' WHERE a=21100;\nUPDATE t2 SET c='forty thousand three hundred fifty-seven' WHERE a=21101;\nUPDATE t2 SET c='ninety-three thousand seven hundred ninety-seven' WHERE a=21102;\nUPDATE t2 SET c='one thousand four hundred eighty-two' WHERE a=21103;\nUPDATE t2 SET c='forty-four thousand five hundred twenty-six' WHERE a=21104;\nUPDATE t2 SET c='fifty-nine thousand three hundred sixty-eight' WHERE a=21105;\nUPDATE t2 SET c='twenty-four thousand four hundred eighty-five' WHERE a=21106;\nUPDATE t2 SET c='five thousand six hundred sixty' WHERE a=21107;\nUPDATE t2 SET c='twenty thousand eight hundred twenty-eight' WHERE a=21108;\nUPDATE t2 SET c='ninety-one thousand nine hundred twenty-two' WHERE a=21109;\nUPDATE t2 SET c='seventy thousand ninety' WHERE a=21110;\nUPDATE t2 SET c='eight thousand six hundred ninety-seven' WHERE a=21111;\nUPDATE t2 SET c='sixty-eight thousand five hundred sixty-one' WHERE a=21112;\nUPDATE t2 SET c='twenty-seven thousand eight hundred sixty-three' WHERE a=21113;\nUPDATE t2 SET c='eighty-six thousand seven hundred four' WHERE a=21114;\nUPDATE t2 SET c='twenty-eight thousand eighty-three' WHERE a=21115;\nUPDATE t2 SET c='eighty-four thousand six hundred thirty-one' WHERE a=21116;\nUPDATE t2 SET c='sixty-seven thousand one hundred seventeen' WHERE a=21117;\nUPDATE t2 SET c='ninety-seven thousand one hundred ninety-six' WHERE a=21118;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-four' WHERE a=21119;\nUPDATE t2 SET c='ten thousand eight hundred thirteen' WHERE a=21120;\nUPDATE t2 SET c='ninety-eight thousand seven hundred forty-nine' WHERE a=21121;\nUPDATE t2 SET c='twenty-seven thousand one hundred thirty-seven' WHERE a=21122;\nUPDATE t2 SET c='thirty thousand one hundred twenty-three' WHERE a=21123;\nUPDATE t2 SET c='twelve thousand three hundred fifty-eight' WHERE a=21124;\nUPDATE t2 SET c='forty-five thousand seven hundred twenty-two' WHERE a=21125;\nUPDATE t2 SET c='sixty-one thousand one hundred forty' WHERE a=21126;\nUPDATE t2 SET c='sixty thousand six hundred twenty-three' WHERE a=21127;\nUPDATE t2 SET c='five thousand two hundred thirty-three' WHERE a=21128;\nUPDATE t2 SET c='twenty thousand eight hundred ninety-four' WHERE a=21129;\nUPDATE t2 SET c='twelve thousand eight hundred seventy-eight' WHERE a=21130;\nUPDATE t2 SET c='thirty-three thousand three hundred sixty-seven' WHERE a=21131;\nUPDATE t2 SET c='five thousand five hundred thirty-nine' WHERE a=21132;\nUPDATE t2 SET c='sixty-seven thousand five hundred thirty-five' WHERE a=21133;\nUPDATE t2 SET c='fourteen thousand seven hundred forty-seven' WHERE a=21134;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventy-one' WHERE a=21135;\nUPDATE t2 SET c='eighty thousand six hundred forty-one' WHERE a=21136;\nUPDATE t2 SET c='eight hundred ten' WHERE a=21137;\nUPDATE t2 SET c='eighty-two thousand six hundred eighty-three' WHERE a=21138;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-five' WHERE a=21139;\nUPDATE t2 SET c='sixty-four thousand one hundred eighty-four' WHERE a=21140;\nUPDATE t2 SET c='thirty-three thousand three hundred seventy-six' WHERE a=21141;\nUPDATE t2 SET c='fifty-eight thousand nine hundred nine' WHERE a=21142;\nUPDATE t2 SET c='two thousand one hundred ninety-two' WHERE a=21143;\nUPDATE t2 SET c='eighty-three thousand one hundred sixty-four' WHERE a=21144;\nUPDATE t2 SET c='forty-seven thousand six hundred sixty-three' WHERE a=21145;\nUPDATE t2 SET c='thirty-two thousand nine hundred ninety-nine' WHERE a=21146;\nUPDATE t2 SET c='twenty-five thousand seven hundred fifty-two' WHERE a=21147;\nUPDATE t2 SET c='eighty-four thousand fifty-two' WHERE a=21148;\nUPDATE t2 SET c='fifty-seven thousand two hundred sixty-six' WHERE a=21149;\nUPDATE t2 SET c='sixty-four thousand five hundred thirty-eight' WHERE a=21150;\nUPDATE t2 SET c='seven thousand one hundred ninety-nine' WHERE a=21151;\nUPDATE t2 SET c='eighty-eight thousand forty-nine' WHERE a=21152;\nUPDATE t2 SET c='seven thousand four hundred ten' WHERE a=21153;\nUPDATE t2 SET c='ninety-seven thousand six hundred thirty-seven' WHERE a=21154;\nUPDATE t2 SET c='thirteen thousand seven hundred thirty-eight' WHERE a=21155;\nUPDATE t2 SET c='twenty-two thousand seven hundred sixty-four' WHERE a=21156;\nUPDATE t2 SET c='eighty-eight thousand fifty' WHERE a=21157;\nUPDATE t2 SET c='eighty thousand five hundred seventy-nine' WHERE a=21158;\nUPDATE t2 SET c='thirty-seven thousand eight hundred one' WHERE a=21159;\nUPDATE t2 SET c='twenty-eight thousand four hundred ninety-eight' WHERE a=21160;\nUPDATE t2 SET c='twenty-seven thousand one hundred seven' WHERE a=21161;\nUPDATE t2 SET c='ninety-one thousand two hundred one' WHERE a=21162;\nUPDATE t2 SET c='twenty-eight thousand two hundred seventy-eight' WHERE a=21163;\nUPDATE t2 SET c='seventy thousand one hundred' WHERE a=21164;\nUPDATE t2 SET c='sixteen thousand four hundred seven' WHERE a=21165;\nUPDATE t2 SET c='seventy-two thousand three hundred forty-three' WHERE a=21166;\nUPDATE t2 SET c='seventy-one thousand six hundred sixty-two' WHERE a=21167;\nUPDATE t2 SET c='thirty-four thousand seven hundred sixty-five' WHERE a=21168;\nUPDATE t2 SET c='sixty-eight thousand four hundred thirty-two' WHERE a=21169;\nUPDATE t2 SET c='seventy-three thousand two hundred eighteen' WHERE a=21170;\nUPDATE t2 SET c='sixty-one thousand seven hundred fifty-nine' WHERE a=21171;\nUPDATE t2 SET c='eighty thousand fifty-nine' WHERE a=21172;\nUPDATE t2 SET c='seventeen thousand one hundred forty-six' WHERE a=21173;\nUPDATE t2 SET c='thirty-three thousand three hundred twenty-seven' WHERE a=21174;\nUPDATE t2 SET c='eighty thousand one hundred seven' WHERE a=21175;\nUPDATE t2 SET c='fourteen thousand three hundred ninety-one' WHERE a=21176;\nUPDATE t2 SET c='fifty-five thousand four hundred twenty-five' WHERE a=21177;\nUPDATE t2 SET c='fifteen thousand five hundred sixty-three' WHERE a=21178;\nUPDATE t2 SET c='sixty-nine thousand forty-six' WHERE a=21179;\nUPDATE t2 SET c='seventy-seven thousand six hundred fifty-one' WHERE a=21180;\nUPDATE t2 SET c='sixty-six thousand five hundred nineteen' WHERE a=21181;\nUPDATE t2 SET c='nineteen thousand two hundred sixty-nine' WHERE a=21182;\nUPDATE t2 SET c='thirty-six thousand four hundred sixty-three' WHERE a=21183;\nUPDATE t2 SET c='fifty-one thousand nine hundred eighty-four' WHERE a=21184;\nUPDATE t2 SET c='eighty thousand five hundred five' WHERE a=21185;\nUPDATE t2 SET c='twenty-one thousand two hundred thirty-seven' WHERE a=21186;\nUPDATE t2 SET c='fifty-one thousand seven hundred forty-four' WHERE a=21187;\nUPDATE t2 SET c='sixty-two thousand forty-four' WHERE a=21188;\nUPDATE t2 SET c='sixteen thousand four hundred eighty-five' WHERE a=21189;\nUPDATE t2 SET c='twenty-one thousand eight hundred ninety-one' WHERE a=21190;\nUPDATE t2 SET c='forty-four thousand eight hundred forty-one' WHERE a=21191;\nUPDATE t2 SET c='eighty-four thousand seven hundred eighty' WHERE a=21192;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirty' WHERE a=21193;\nUPDATE t2 SET c='fifty-four thousand one hundred sixty-one' WHERE a=21194;\nUPDATE t2 SET c='nineteen thousand three hundred sixty-eight' WHERE a=21195;\nUPDATE t2 SET c='twenty-eight thousand two hundred fifty-eight' WHERE a=21196;\nUPDATE t2 SET c='seventy-nine thousand six hundred eighty-six' WHERE a=21197;\nUPDATE t2 SET c='two thousand six hundred' WHERE a=21198;\nUPDATE t2 SET c='thirty-seven thousand nine hundred one' WHERE a=21199;\nUPDATE t2 SET c='sixteen thousand four hundred twenty' WHERE a=21200;\nUPDATE t2 SET c='ten thousand four hundred thirteen' WHERE a=21201;\nUPDATE t2 SET c='forty-eight thousand two hundred' WHERE a=21202;\nUPDATE t2 SET c='forty-two thousand eight hundred fifty-two' WHERE a=21203;\nUPDATE t2 SET c='five thousand two hundred sixty-three' WHERE a=21204;\nUPDATE t2 SET c='sixty-nine thousand three hundred sixty-nine' WHERE a=21205;\nUPDATE t2 SET c='thirty-six thousand eight hundred sixty-two' WHERE a=21206;\nUPDATE t2 SET c='eighty-seven thousand nine hundred thirty-five' WHERE a=21207;\nUPDATE t2 SET c='eighty-five thousand two hundred sixty-two' WHERE a=21208;\nUPDATE t2 SET c='seventy-four thousand four hundred thirty-three' WHERE a=21209;\nUPDATE t2 SET c='thirteen thousand eight hundred ninety' WHERE a=21210;\nUPDATE t2 SET c='ninety-five thousand six hundred ninety-three' WHERE a=21211;\nUPDATE t2 SET c='twelve thousand six' WHERE a=21212;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-one' WHERE a=21213;\nUPDATE t2 SET c='fifty-one thousand seven hundred forty-four' WHERE a=21214;\nUPDATE t2 SET c='fifty-nine thousand nine hundred fifty' WHERE a=21215;\nUPDATE t2 SET c='forty-three thousand five hundred seventy-three' WHERE a=21216;\nUPDATE t2 SET c='ninety-nine thousand two hundred fifty-two' WHERE a=21217;\nUPDATE t2 SET c='fifty-nine thousand three hundred twenty-eight' WHERE a=21218;\nUPDATE t2 SET c='fifty-seven thousand four hundred sixty-eight' WHERE a=21219;\nUPDATE t2 SET c='forty-seven thousand four hundred twenty-six' WHERE a=21220;\nUPDATE t2 SET c='fifty-nine thousand seven hundred twenty-four' WHERE a=21221;\nUPDATE t2 SET c='one hundred fifty-five' WHERE a=21222;\nUPDATE t2 SET c='ninety-seven thousand three hundred forty-four' WHERE a=21223;\nUPDATE t2 SET c='eighteen thousand five hundred thirty-five' WHERE a=21224;\nUPDATE t2 SET c='fifty-seven thousand six hundred twenty-seven' WHERE a=21225;\nUPDATE t2 SET c='sixty-six thousand eighty-five' WHERE a=21226;\nUPDATE t2 SET c='twenty-seven thousand fifteen' WHERE a=21227;\nUPDATE t2 SET c='seventy-eight thousand four hundred sixty-eight' WHERE a=21228;\nUPDATE t2 SET c='ninety-five thousand six hundred eighty-three' WHERE a=21229;\nUPDATE t2 SET c='ninety-six thousand three hundred seventy-two' WHERE a=21230;\nUPDATE t2 SET c='ninety-six thousand one hundred sixty-five' WHERE a=21231;\nUPDATE t2 SET c='twenty-seven thousand seven hundred eighty-five' WHERE a=21232;\nUPDATE t2 SET c='sixty-six thousand fifty-six' WHERE a=21233;\nUPDATE t2 SET c='twelve thousand two hundred forty' WHERE a=21234;\nUPDATE t2 SET c='sixty-eight thousand five hundred forty-six' WHERE a=21235;\nUPDATE t2 SET c='twenty-four thousand five hundred sixty-four' WHERE a=21236;\nUPDATE t2 SET c='twenty-eight thousand one hundred twenty-five' WHERE a=21237;\nUPDATE t2 SET c='seventy-seven thousand three hundred twenty-two' WHERE a=21238;\nUPDATE t2 SET c='eighty-nine thousand three hundred forty-nine' WHERE a=21239;\nUPDATE t2 SET c='eighty-five thousand eight hundred fifty' WHERE a=21240;\nUPDATE t2 SET c='eighty-seven thousand six hundred eighty-four' WHERE a=21241;\nUPDATE t2 SET c='forty-four thousand eight hundred fifty-two' WHERE a=21242;\nUPDATE t2 SET c='five thousand eighty-eight' WHERE a=21243;\nUPDATE t2 SET c='forty thousand four hundred four' WHERE a=21244;\nUPDATE t2 SET c='forty-three thousand five hundred eighty-two' WHERE a=21245;\nUPDATE t2 SET c='eighty-two thousand five hundred seventeen' WHERE a=21246;\nUPDATE t2 SET c='twenty-one thousand six hundred eighty-nine' WHERE a=21247;\nUPDATE t2 SET c='seventy-one thousand five hundred thirty-three' WHERE a=21248;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-one' WHERE a=21249;\nUPDATE t2 SET c='thirty-three thousand five hundred fifty-four' WHERE a=21250;\nUPDATE t2 SET c='twelve thousand fifty-eight' WHERE a=21251;\nUPDATE t2 SET c='forty-four thousand five hundred ninety-eight' WHERE a=21252;\nUPDATE t2 SET c='seventy-four thousand five hundred eighty-six' WHERE a=21253;\nUPDATE t2 SET c='twenty-seven thousand forty-seven' WHERE a=21254;\nUPDATE t2 SET c='forty-three thousand nine hundred fifty-nine' WHERE a=21255;\nUPDATE t2 SET c='twenty-eight thousand three hundred twenty-five' WHERE a=21256;\nUPDATE t2 SET c='twenty-five thousand one hundred twenty-one' WHERE a=21257;\nUPDATE t2 SET c='eight thousand one hundred ten' WHERE a=21258;\nUPDATE t2 SET c='forty-one thousand two hundred ninety-three' WHERE a=21259;\nUPDATE t2 SET c='eighty-four thousand eight hundred sixty-six' WHERE a=21260;\nUPDATE t2 SET c='twenty-two thousand nine hundred twelve' WHERE a=21261;\nUPDATE t2 SET c='sixty-seven thousand one hundred forty-nine' WHERE a=21262;\nUPDATE t2 SET c='fifty-six thousand seven hundred sixteen' WHERE a=21263;\nUPDATE t2 SET c='eighty-five thousand eight hundred seventeen' WHERE a=21264;\nUPDATE t2 SET c='thirty-one thousand five hundred sixty-one' WHERE a=21265;\nUPDATE t2 SET c='twenty-two thousand seven hundred twenty-six' WHERE a=21266;\nUPDATE t2 SET c='eighty-nine thousand seven hundred forty-nine' WHERE a=21267;\nUPDATE t2 SET c='sixty-seven thousand eleven' WHERE a=21268;\nUPDATE t2 SET c='forty-one thousand seven hundred fifty-nine' WHERE a=21269;\nUPDATE t2 SET c='sixty-two thousand nine hundred seventy-seven' WHERE a=21270;\nUPDATE t2 SET c='eighteen thousand four hundred thirty-seven' WHERE a=21271;\nUPDATE t2 SET c='sixty-five thousand sixty-four' WHERE a=21272;\nUPDATE t2 SET c='fifty-five thousand eighty-four' WHERE a=21273;\nUPDATE t2 SET c='sixty-nine thousand six hundred sixty-nine' WHERE a=21274;\nUPDATE t2 SET c='eighty-five thousand eight hundred nine' WHERE a=21275;\nUPDATE t2 SET c='seventeen thousand four hundred ninety-six' WHERE a=21276;\nUPDATE t2 SET c='fifty-six thousand six hundred sixty-six' WHERE a=21277;\nUPDATE t2 SET c='eighty-eight thousand eight hundred fifty-one' WHERE a=21278;\nUPDATE t2 SET c='forty-eight thousand seven hundred seven' WHERE a=21279;\nUPDATE t2 SET c='six thousand nine hundred sixty-five' WHERE a=21280;\nUPDATE t2 SET c='fourteen thousand one hundred sixty-six' WHERE a=21281;\nUPDATE t2 SET c='nine thousand one hundred forty-one' WHERE a=21282;\nUPDATE t2 SET c='sixty-two thousand three hundred forty-six' WHERE a=21283;\nUPDATE t2 SET c='one thousand two hundred eighty-two' WHERE a=21284;\nUPDATE t2 SET c='eighty-seven thousand two hundred ten' WHERE a=21285;\nUPDATE t2 SET c='fifteen thousand four hundred seventy' WHERE a=21286;\nUPDATE t2 SET c='fifty-two thousand eight hundred ninety-seven' WHERE a=21287;\nUPDATE t2 SET c='seventy-one thousand sixty-six' WHERE a=21288;\nUPDATE t2 SET c='fifty-five thousand two hundred eleven' WHERE a=21289;\nUPDATE t2 SET c='ninety-eight thousand forty-four' WHERE a=21290;\nUPDATE t2 SET c='nineteen thousand three hundred eighty-four' WHERE a=21291;\nUPDATE t2 SET c='forty-nine thousand eight hundred thirty-eight' WHERE a=21292;\nUPDATE t2 SET c='eight thousand six hundred fifty-one' WHERE a=21293;\nUPDATE t2 SET c='sixty-eight thousand four hundred seventy-five' WHERE a=21294;\nUPDATE t2 SET c='twenty-seven thousand six hundred seventy-nine' WHERE a=21295;\nUPDATE t2 SET c='sixty-six thousand four hundred thirty-two' WHERE a=21296;\nUPDATE t2 SET c='seventy-eight thousand three hundred forty-one' WHERE a=21297;\nUPDATE t2 SET c='sixty-six thousand five hundred forty' WHERE a=21298;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-seven' WHERE a=21299;\nUPDATE t2 SET c='sixteen thousand five hundred seventy-seven' WHERE a=21300;\nUPDATE t2 SET c='thirty-six thousand three hundred ninety-three' WHERE a=21301;\nUPDATE t2 SET c='sixty-nine thousand one hundred eighty-nine' WHERE a=21302;\nUPDATE t2 SET c='twenty-five thousand nine hundred four' WHERE a=21303;\nUPDATE t2 SET c='ninety-seven thousand four hundred twenty-nine' WHERE a=21304;\nUPDATE t2 SET c='fifty-three thousand five hundred fifty-six' WHERE a=21305;\nUPDATE t2 SET c='seventy-six thousand five hundred eighty-two' WHERE a=21306;\nUPDATE t2 SET c='thirty-three thousand forty-four' WHERE a=21307;\nUPDATE t2 SET c='six hundred sixty-one' WHERE a=21308;\nUPDATE t2 SET c='forty thousand two hundred thirty-two' WHERE a=21309;\nUPDATE t2 SET c='fifty-five thousand nine hundred sixty-one' WHERE a=21310;\nUPDATE t2 SET c='thirty-six thousand five hundred sixty-five' WHERE a=21311;\nUPDATE t2 SET c='eight thousand seven hundred eight' WHERE a=21312;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety' WHERE a=21313;\nUPDATE t2 SET c='thirty-nine thousand nine hundred thirty-three' WHERE a=21314;\nUPDATE t2 SET c='twenty-seven thousand nine hundred ninety-eight' WHERE a=21315;\nUPDATE t2 SET c='twenty-one thousand six hundred seventy-two' WHERE a=21316;\nUPDATE t2 SET c='fifty-three thousand six hundred twenty-one' WHERE a=21317;\nUPDATE t2 SET c='forty-one thousand six hundred eighty' WHERE a=21318;\nUPDATE t2 SET c='sixty-nine thousand six hundred ninety-nine' WHERE a=21319;\nUPDATE t2 SET c='ninety-six thousand five hundred thirty-five' WHERE a=21320;\nUPDATE t2 SET c='sixty-three thousand nine hundred seventy' WHERE a=21321;\nUPDATE t2 SET c='nine thousand two hundred seventy-five' WHERE a=21322;\nUPDATE t2 SET c='thirty-eight thousand five hundred seventy-two' WHERE a=21323;\nUPDATE t2 SET c='seven thousand' WHERE a=21324;\nUPDATE t2 SET c='sixty-one thousand nine hundred sixty-two' WHERE a=21325;\nUPDATE t2 SET c='thirty-seven thousand five hundred fifty-nine' WHERE a=21326;\nUPDATE t2 SET c='forty thousand seven hundred twenty-nine' WHERE a=21327;\nUPDATE t2 SET c='seventy-one thousand twenty-nine' WHERE a=21328;\nUPDATE t2 SET c='twenty-one thousand seven hundred twenty-six' WHERE a=21329;\nUPDATE t2 SET c='ninety-seven thousand seven' WHERE a=21330;\nUPDATE t2 SET c='sixty-eight thousand nine hundred eighty-four' WHERE a=21331;\nUPDATE t2 SET c='ninety-nine thousand four hundred seventy-two' WHERE a=21332;\nUPDATE t2 SET c='forty-seven thousand eight hundred eighty-seven' WHERE a=21333;\nUPDATE t2 SET c='three thousand five hundred five' WHERE a=21334;\nUPDATE t2 SET c='thirty-three thousand eight hundred twenty' WHERE a=21335;\nUPDATE t2 SET c='four thousand seven hundred ninety-five' WHERE a=21336;\nUPDATE t2 SET c='forty-two thousand one hundred ninety-seven' WHERE a=21337;\nUPDATE t2 SET c='seventy-two thousand eight hundred eighty-six' WHERE a=21338;\nUPDATE t2 SET c='ninety-six thousand one hundred eighty-one' WHERE a=21339;\nUPDATE t2 SET c='eighty thousand nine hundred seventy' WHERE a=21340;\nUPDATE t2 SET c='seventy-eight thousand six hundred forty-three' WHERE a=21341;\nUPDATE t2 SET c='sixty-three thousand two hundred ninety-three' WHERE a=21342;\nUPDATE t2 SET c='forty-five thousand nine hundred sixty-nine' WHERE a=21343;\nUPDATE t2 SET c='twenty-four thousand one hundred ninety-five' WHERE a=21344;\nUPDATE t2 SET c='nine thousand five hundred seventy-six' WHERE a=21345;\nUPDATE t2 SET c='fifty-six thousand eight hundred seventy-seven' WHERE a=21346;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighty-four' WHERE a=21347;\nUPDATE t2 SET c='eighty-four thousand five hundred fourteen' WHERE a=21348;\nUPDATE t2 SET c='fifty-five thousand eight hundred fifteen' WHERE a=21349;\nUPDATE t2 SET c='seven thousand nine hundred eighteen' WHERE a=21350;\nUPDATE t2 SET c='seventy-six thousand six hundred twenty-four' WHERE a=21351;\nUPDATE t2 SET c='twenty-three thousand seven hundred forty-four' WHERE a=21352;\nUPDATE t2 SET c='forty-five thousand three hundred forty-five' WHERE a=21353;\nUPDATE t2 SET c='eighty-seven thousand six hundred eighteen' WHERE a=21354;\nUPDATE t2 SET c='sixty-eight thousand seven hundred thirty-nine' WHERE a=21355;\nUPDATE t2 SET c='thirty-eight thousand six hundred seventy-six' WHERE a=21356;\nUPDATE t2 SET c='eighty-five thousand seven hundred fifty-eight' WHERE a=21357;\nUPDATE t2 SET c='ninety-seven thousand five hundred thirty-three' WHERE a=21358;\nUPDATE t2 SET c='fifty-seven thousand eight hundred forty-five' WHERE a=21359;\nUPDATE t2 SET c='seven hundred seventy-two' WHERE a=21360;\nUPDATE t2 SET c='one thousand six hundred one' WHERE a=21361;\nUPDATE t2 SET c='nineteen thousand four hundred twenty-one' WHERE a=21362;\nUPDATE t2 SET c='eighty-nine thousand two hundred forty-six' WHERE a=21363;\nUPDATE t2 SET c='ninety-two thousand four hundred eleven' WHERE a=21364;\nUPDATE t2 SET c='eighty-seven thousand nine hundred fifty-four' WHERE a=21365;\nUPDATE t2 SET c='eighty-five thousand seven hundred fifty-eight' WHERE a=21366;\nUPDATE t2 SET c='fifteen thousand eight hundred fifty-nine' WHERE a=21367;\nUPDATE t2 SET c='forty-two thousand nine hundred twenty-one' WHERE a=21368;\nUPDATE t2 SET c='nine thousand seven hundred fifty-three' WHERE a=21369;\nUPDATE t2 SET c='four thousand eight hundred eighty-nine' WHERE a=21370;\nUPDATE t2 SET c='forty-seven thousand five hundred ten' WHERE a=21371;\nUPDATE t2 SET c='forty-eight thousand eight hundred forty-seven' WHERE a=21372;\nUPDATE t2 SET c='twenty-one thousand eight hundred seventy-two' WHERE a=21373;\nUPDATE t2 SET c='fifteen thousand seven hundred forty-six' WHERE a=21374;\nUPDATE t2 SET c='ten thousand six hundred twenty-nine' WHERE a=21375;\nUPDATE t2 SET c='eighty-seven thousand one hundred thirty-three' WHERE a=21376;\nUPDATE t2 SET c='ninety-three thousand seven hundred eighty-six' WHERE a=21377;\nUPDATE t2 SET c='twenty-seven thousand one hundred sixty-one' WHERE a=21378;\nUPDATE t2 SET c='thirty-four thousand forty-two' WHERE a=21379;\nUPDATE t2 SET c='forty-five thousand four hundred sixty-three' WHERE a=21380;\nUPDATE t2 SET c='seventy-three thousand seven hundred forty-two' WHERE a=21381;\nUPDATE t2 SET c='forty-one thousand four hundred sixteen' WHERE a=21382;\nUPDATE t2 SET c='eighty thousand nine hundred sixty-four' WHERE a=21383;\nUPDATE t2 SET c='thirty-seven thousand two hundred fifty-seven' WHERE a=21384;\nUPDATE t2 SET c='forty-three thousand three hundred seventy-three' WHERE a=21385;\nUPDATE t2 SET c='four thousand eight hundred forty' WHERE a=21386;\nUPDATE t2 SET c='nineteen thousand six hundred ninety' WHERE a=21387;\nUPDATE t2 SET c='sixteen thousand four hundred forty-seven' WHERE a=21388;\nUPDATE t2 SET c='fifty-six thousand eight hundred fifty-two' WHERE a=21389;\nUPDATE t2 SET c='fifty-two thousand two hundred fifty-eight' WHERE a=21390;\nUPDATE t2 SET c='forty-four thousand nine hundred fourteen' WHERE a=21391;\nUPDATE t2 SET c='fourteen thousand twenty-eight' WHERE a=21392;\nUPDATE t2 SET c='ninety-three thousand four hundred sixty-seven' WHERE a=21393;\nUPDATE t2 SET c='forty-three thousand two hundred seventy-nine' WHERE a=21394;\nUPDATE t2 SET c='eleven thousand seven hundred forty' WHERE a=21395;\nUPDATE t2 SET c='forty-three thousand six hundred eighteen' WHERE a=21396;\nUPDATE t2 SET c='eighty-two thousand three hundred ninety-four' WHERE a=21397;\nUPDATE t2 SET c='seventy-eight thousand six hundred ninety-eight' WHERE a=21398;\nUPDATE t2 SET c='seventy thousand thirty-six' WHERE a=21399;\nUPDATE t2 SET c='seventy-seven thousand eight hundred thirty' WHERE a=21400;\nUPDATE t2 SET c='forty-seven thousand five' WHERE a=21401;\nUPDATE t2 SET c='twenty-eight thousand nine hundred sixty-seven' WHERE a=21402;\nUPDATE t2 SET c='nineteen thousand one hundred ninety-eight' WHERE a=21403;\nUPDATE t2 SET c='twenty-five thousand six hundred forty-seven' WHERE a=21404;\nUPDATE t2 SET c='fifty-five thousand five hundred fifty-nine' WHERE a=21405;\nUPDATE t2 SET c='seventy-six thousand seven hundred thirty-six' WHERE a=21406;\nUPDATE t2 SET c='thirty-six thousand nine hundred thirty-four' WHERE a=21407;\nUPDATE t2 SET c='sixty-nine thousand six hundred sixty-two' WHERE a=21408;\nUPDATE t2 SET c='thirty-two thousand seven hundred sixty-one' WHERE a=21409;\nUPDATE t2 SET c='eighty-four thousand two hundred seventy-nine' WHERE a=21410;\nUPDATE t2 SET c='seventy thousand one hundred sixty-five' WHERE a=21411;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-six' WHERE a=21412;\nUPDATE t2 SET c='twenty-three thousand five hundred seventy-three' WHERE a=21413;\nUPDATE t2 SET c='four thousand one hundred fifteen' WHERE a=21414;\nUPDATE t2 SET c='eighty-four thousand three hundred twenty-one' WHERE a=21415;\nUPDATE t2 SET c='twenty-one thousand four hundred thirteen' WHERE a=21416;\nUPDATE t2 SET c='ninety-one thousand four hundred fifty' WHERE a=21417;\nUPDATE t2 SET c='eighty-eight thousand one hundred seventy' WHERE a=21418;\nUPDATE t2 SET c='twenty-seven thousand nine hundred eight' WHERE a=21419;\nUPDATE t2 SET c='eighty-two thousand nine hundred twenty-two' WHERE a=21420;\nUPDATE t2 SET c='ninety-three thousand eighty-four' WHERE a=21421;\nUPDATE t2 SET c='twenty-one thousand eight hundred eighty-six' WHERE a=21422;\nUPDATE t2 SET c='seventy-one thousand eight hundred eleven' WHERE a=21423;\nUPDATE t2 SET c='forty-eight thousand two hundred fifty-eight' WHERE a=21424;\nUPDATE t2 SET c='seventeen thousand two hundred ninety-six' WHERE a=21425;\nUPDATE t2 SET c='seventy-two thousand seven hundred eighty-seven' WHERE a=21426;\nUPDATE t2 SET c='eight thousand five hundred fifty-four' WHERE a=21427;\nUPDATE t2 SET c='twenty-three thousand seven hundred thirty-nine' WHERE a=21428;\nUPDATE t2 SET c='ninety-four thousand one hundred fifteen' WHERE a=21429;\nUPDATE t2 SET c='ninety-seven thousand nine hundred sixty-seven' WHERE a=21430;\nUPDATE t2 SET c='six thousand six hundred twenty-seven' WHERE a=21431;\nUPDATE t2 SET c='ninety-seven thousand sixty-three' WHERE a=21432;\nUPDATE t2 SET c='five thousand seven hundred forty-six' WHERE a=21433;\nUPDATE t2 SET c='ninety-two thousand one hundred sixty-four' WHERE a=21434;\nUPDATE t2 SET c='eighty-one thousand twenty-two' WHERE a=21435;\nUPDATE t2 SET c='sixty-nine thousand nine hundred sixty' WHERE a=21436;\nUPDATE t2 SET c='twenty-nine thousand four hundred twenty-five' WHERE a=21437;\nUPDATE t2 SET c='ten thousand six hundred thirty-six' WHERE a=21438;\nUPDATE t2 SET c='ninety-nine thousand three hundred twenty-one' WHERE a=21439;\nUPDATE t2 SET c='thirty-two thousand six hundred thirty-five' WHERE a=21440;\nUPDATE t2 SET c='seventy thousand nine hundred forty-three' WHERE a=21441;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty-two' WHERE a=21442;\nUPDATE t2 SET c='thirty-three thousand eight hundred twenty-seven' WHERE a=21443;\nUPDATE t2 SET c='twenty-eight thousand six hundred forty' WHERE a=21444;\nUPDATE t2 SET c='thirty-two thousand forty-four' WHERE a=21445;\nUPDATE t2 SET c='fifty-eight thousand sixty-five' WHERE a=21446;\nUPDATE t2 SET c='nineteen thousand eight hundred nine' WHERE a=21447;\nUPDATE t2 SET c='eighty-five thousand ninety-nine' WHERE a=21448;\nUPDATE t2 SET c='six thousand four hundred seventy-eight' WHERE a=21449;\nUPDATE t2 SET c='sixty-five thousand seven hundred eight' WHERE a=21450;\nUPDATE t2 SET c='sixty-three thousand five hundred fifty-nine' WHERE a=21451;\nUPDATE t2 SET c='ninety-two thousand seven hundred sixteen' WHERE a=21452;\nUPDATE t2 SET c='three thousand six hundred sixty-one' WHERE a=21453;\nUPDATE t2 SET c='twenty-four thousand six hundred eighty-eight' WHERE a=21454;\nUPDATE t2 SET c='thirty-three thousand four hundred seventy-five' WHERE a=21455;\nUPDATE t2 SET c='fifteen thousand eight hundred three' WHERE a=21456;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-eight' WHERE a=21457;\nUPDATE t2 SET c='twenty-nine thousand three hundred eighty-six' WHERE a=21458;\nUPDATE t2 SET c='ninety-four thousand one hundred fifteen' WHERE a=21459;\nUPDATE t2 SET c='thirty-two thousand nine hundred seventy-four' WHERE a=21460;\nUPDATE t2 SET c='thirty-six thousand one hundred forty-five' WHERE a=21461;\nUPDATE t2 SET c='ninety-five thousand nine' WHERE a=21462;\nUPDATE t2 SET c='thirty-six thousand five hundred seventy-eight' WHERE a=21463;\nUPDATE t2 SET c='seventy-eight thousand seven hundred' WHERE a=21464;\nUPDATE t2 SET c='twenty-four thousand five hundred twenty-two' WHERE a=21465;\nUPDATE t2 SET c='seventy-two thousand two hundred thirty-six' WHERE a=21466;\nUPDATE t2 SET c='ninety-eight thousand forty-six' WHERE a=21467;\nUPDATE t2 SET c='sixty-six thousand seventy-six' WHERE a=21468;\nUPDATE t2 SET c='forty-two thousand four hundred fifty' WHERE a=21469;\nUPDATE t2 SET c='sixty thousand eleven' WHERE a=21470;\nUPDATE t2 SET c='eight thousand eight hundred seventeen' WHERE a=21471;\nUPDATE t2 SET c='seventy-five thousand three hundred ninety-three' WHERE a=21472;\nUPDATE t2 SET c='fifty-one thousand six hundred seventy-eight' WHERE a=21473;\nUPDATE t2 SET c='fifteen thousand three hundred sixty-one' WHERE a=21474;\nUPDATE t2 SET c='twenty-seven thousand five hundred eighty' WHERE a=21475;\nUPDATE t2 SET c='seventeen thousand nine hundred forty-three' WHERE a=21476;\nUPDATE t2 SET c='thirty-three thousand sixty' WHERE a=21477;\nUPDATE t2 SET c='ninety-two thousand nine hundred ninety-seven' WHERE a=21478;\nUPDATE t2 SET c='fifty-six thousand five hundred fifty-four' WHERE a=21479;\nUPDATE t2 SET c='forty-four thousand one hundred thirty-eight' WHERE a=21480;\nUPDATE t2 SET c='twenty-five thousand three hundred twenty-five' WHERE a=21481;\nUPDATE t2 SET c='ninety-six thousand one hundred fifty' WHERE a=21482;\nUPDATE t2 SET c='seventy-one thousand five hundred thirty-eight' WHERE a=21483;\nUPDATE t2 SET c='twenty-six thousand five hundred seventy' WHERE a=21484;\nUPDATE t2 SET c='eleven thousand nine hundred ninety-eight' WHERE a=21485;\nUPDATE t2 SET c='ninety-two thousand seven hundred thirty-one' WHERE a=21486;\nUPDATE t2 SET c='fourteen thousand four hundred forty-six' WHERE a=21487;\nUPDATE t2 SET c='fifty-one thousand three hundred eighty-seven' WHERE a=21488;\nUPDATE t2 SET c='forty-one thousand eight hundred eighty-four' WHERE a=21489;\nUPDATE t2 SET c='ninety-one thousand two hundred thirty-five' WHERE a=21490;\nUPDATE t2 SET c='eighty-nine thousand eight hundred seventy-three' WHERE a=21491;\nUPDATE t2 SET c='fifty-three thousand six hundred six' WHERE a=21492;\nUPDATE t2 SET c='seventy-nine thousand eight hundred fifty-one' WHERE a=21493;\nUPDATE t2 SET c='forty-one thousand two hundred eighty-four' WHERE a=21494;\nUPDATE t2 SET c='ninety-four thousand two hundred eight' WHERE a=21495;\nUPDATE t2 SET c='sixty-nine thousand eight hundred sixty-eight' WHERE a=21496;\nUPDATE t2 SET c='ninety-five thousand nine hundred eighty-three' WHERE a=21497;\nUPDATE t2 SET c='three thousand eight hundred thirty-eight' WHERE a=21498;\nUPDATE t2 SET c='forty-seven thousand eighty-six' WHERE a=21499;\nUPDATE t2 SET c='one thousand two hundred eighty-four' WHERE a=21500;\nUPDATE t2 SET c='thirteen thousand six hundred thirty-seven' WHERE a=21501;\nUPDATE t2 SET c='eighty-eight thousand six hundred forty-one' WHERE a=21502;\nUPDATE t2 SET c='thirty-four thousand four hundred eighty-nine' WHERE a=21503;\nUPDATE t2 SET c='fourteen thousand eight hundred two' WHERE a=21504;\nUPDATE t2 SET c='eighty thousand five hundred seventeen' WHERE a=21505;\nUPDATE t2 SET c='seventy thousand three hundred thirty-three' WHERE a=21506;\nUPDATE t2 SET c='twenty-eight thousand nine hundred ten' WHERE a=21507;\nUPDATE t2 SET c='thirty-six thousand six hundred fifty' WHERE a=21508;\nUPDATE t2 SET c='eighty-eight thousand two hundred ninety' WHERE a=21509;\nUPDATE t2 SET c='two thousand nine hundred fifty-five' WHERE a=21510;\nUPDATE t2 SET c='ninety-one thousand one hundred sixty-one' WHERE a=21511;\nUPDATE t2 SET c='eighty-two thousand seven hundred forty-five' WHERE a=21512;\nUPDATE t2 SET c='fifty thousand three hundred ninety-one' WHERE a=21513;\nUPDATE t2 SET c='forty-eight thousand six hundred forty-three' WHERE a=21514;\nUPDATE t2 SET c='fifty-two thousand six hundred thirteen' WHERE a=21515;\nUPDATE t2 SET c='eighty-five thousand two hundred' WHERE a=21516;\nUPDATE t2 SET c='nine thousand three hundred seventy-three' WHERE a=21517;\nUPDATE t2 SET c='twenty-two thousand two hundred fifty-four' WHERE a=21518;\nUPDATE t2 SET c='fifty thousand six hundred six' WHERE a=21519;\nUPDATE t2 SET c='twenty-two thousand two hundred ten' WHERE a=21520;\nUPDATE t2 SET c='seventy-one thousand nine' WHERE a=21521;\nUPDATE t2 SET c='thirty-six thousand six hundred seventy-six' WHERE a=21522;\nUPDATE t2 SET c='fifty-eight thousand four hundred forty-three' WHERE a=21523;\nUPDATE t2 SET c='thirty-seven thousand seven hundred fifty-four' WHERE a=21524;\nUPDATE t2 SET c='forty-seven thousand two hundred eighty-six' WHERE a=21525;\nUPDATE t2 SET c='sixty-one thousand six hundred seventy-nine' WHERE a=21526;\nUPDATE t2 SET c='sixteen thousand six hundred four' WHERE a=21527;\nUPDATE t2 SET c='seventy-two thousand three hundred fifty-eight' WHERE a=21528;\nUPDATE t2 SET c='forty-one thousand ninety-four' WHERE a=21529;\nUPDATE t2 SET c='thirty-nine thousand five hundred six' WHERE a=21530;\nUPDATE t2 SET c='forty-nine thousand three hundred seventy-three' WHERE a=21531;\nUPDATE t2 SET c='eighty-three thousand three hundred forty' WHERE a=21532;\nUPDATE t2 SET c='seventy-two thousand forty-two' WHERE a=21533;\nUPDATE t2 SET c='four thousand eighty-five' WHERE a=21534;\nUPDATE t2 SET c='fifty-five thousand one hundred seventy' WHERE a=21535;\nUPDATE t2 SET c='thirty-two thousand three hundred fifty-nine' WHERE a=21536;\nUPDATE t2 SET c='forty-four thousand two hundred twenty-nine' WHERE a=21537;\nUPDATE t2 SET c='eleven thousand nine hundred seventy-four' WHERE a=21538;\nUPDATE t2 SET c='ninety-two thousand eight hundred fourteen' WHERE a=21539;\nUPDATE t2 SET c='eighty-two thousand five hundred ninety-nine' WHERE a=21540;\nUPDATE t2 SET c='ninety-eight thousand seven hundred fifty-three' WHERE a=21541;\nUPDATE t2 SET c='forty thousand two hundred eighty-two' WHERE a=21542;\nUPDATE t2 SET c='ninety-four thousand seven hundred eleven' WHERE a=21543;\nUPDATE t2 SET c='sixty-nine thousand eight hundred forty' WHERE a=21544;\nUPDATE t2 SET c='fifty-seven thousand four hundred thirty-seven' WHERE a=21545;\nUPDATE t2 SET c='twenty-three thousand five hundred thirty-nine' WHERE a=21546;\nUPDATE t2 SET c='ninety-eight thousand five hundred seventy-five' WHERE a=21547;\nUPDATE t2 SET c='ninety-four thousand one hundred seventy-nine' WHERE a=21548;\nUPDATE t2 SET c='eighty-three thousand one hundred twenty' WHERE a=21549;\nUPDATE t2 SET c='eighty-eight thousand four hundred ninety-four' WHERE a=21550;\nUPDATE t2 SET c='sixty-eight thousand ninety-three' WHERE a=21551;\nUPDATE t2 SET c='ninety-three thousand two hundred seventy-nine' WHERE a=21552;\nUPDATE t2 SET c='thirty-two thousand one hundred sixty-two' WHERE a=21553;\nUPDATE t2 SET c='five thousand seven hundred fifty-eight' WHERE a=21554;\nUPDATE t2 SET c='forty-nine thousand two hundred eighteen' WHERE a=21555;\nUPDATE t2 SET c='thirty-one thousand five hundred seven' WHERE a=21556;\nUPDATE t2 SET c='seventeen thousand eight hundred thirty-one' WHERE a=21557;\nUPDATE t2 SET c='seventy-nine thousand four hundred seventy-five' WHERE a=21558;\nUPDATE t2 SET c='twenty thousand nine hundred twenty-one' WHERE a=21559;\nUPDATE t2 SET c='seventy-three thousand seven hundred fourteen' WHERE a=21560;\nUPDATE t2 SET c='eighty-one thousand eight hundred fifteen' WHERE a=21561;\nUPDATE t2 SET c='eighty thousand six hundred twenty-one' WHERE a=21562;\nUPDATE t2 SET c='eleven thousand six hundred sixteen' WHERE a=21563;\nUPDATE t2 SET c='six thousand four hundred sixty-six' WHERE a=21564;\nUPDATE t2 SET c='ninety thousand six hundred eleven' WHERE a=21565;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty-four' WHERE a=21566;\nUPDATE t2 SET c='forty-eight thousand ninety-five' WHERE a=21567;\nUPDATE t2 SET c='two hundred eighty-one' WHERE a=21568;\nUPDATE t2 SET c='eighteen thousand ninety-five' WHERE a=21569;\nUPDATE t2 SET c='thirty-seven thousand six hundred three' WHERE a=21570;\nUPDATE t2 SET c='eighty-two thousand two hundred seventy-three' WHERE a=21571;\nUPDATE t2 SET c='twenty-three thousand two hundred eight' WHERE a=21572;\nUPDATE t2 SET c='twenty-nine thousand four hundred sixty-seven' WHERE a=21573;\nUPDATE t2 SET c='eighty-three thousand three hundred seventy-two' WHERE a=21574;\nUPDATE t2 SET c='eighty-five thousand five hundred sixty-six' WHERE a=21575;\nUPDATE t2 SET c='fourteen thousand six hundred fourteen' WHERE a=21576;\nUPDATE t2 SET c='eighty-seven thousand nine hundred eighty-seven' WHERE a=21577;\nUPDATE t2 SET c='thirty-nine thousand nine hundred ten' WHERE a=21578;\nUPDATE t2 SET c='seventy-nine thousand seven hundred thirty-five' WHERE a=21579;\nUPDATE t2 SET c='ninety-two thousand three hundred thirty-four' WHERE a=21580;\nUPDATE t2 SET c='ninety-two thousand eight hundred ninety-four' WHERE a=21581;\nUPDATE t2 SET c='ninety-four thousand two hundred eighty-seven' WHERE a=21582;\nUPDATE t2 SET c='twenty-seven thousand six hundred sixty-seven' WHERE a=21583;\nUPDATE t2 SET c='twenty-one thousand four hundred twelve' WHERE a=21584;\nUPDATE t2 SET c='fifty-nine thousand four hundred twenty-three' WHERE a=21585;\nUPDATE t2 SET c='twenty-nine thousand two hundred thirty-two' WHERE a=21586;\nUPDATE t2 SET c='ninety-four thousand six hundred forty-four' WHERE a=21587;\nUPDATE t2 SET c='sixty thousand two hundred fifty' WHERE a=21588;\nUPDATE t2 SET c='twelve thousand six hundred eighteen' WHERE a=21589;\nUPDATE t2 SET c='eighty-three thousand one hundred seventy-one' WHERE a=21590;\nUPDATE t2 SET c='forty-nine thousand fifteen' WHERE a=21591;\nUPDATE t2 SET c='fifty-six thousand eight hundred seventy-seven' WHERE a=21592;\nUPDATE t2 SET c='twenty-two thousand one hundred forty-six' WHERE a=21593;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-eight' WHERE a=21594;\nUPDATE t2 SET c='nine thousand nine hundred fifty-nine' WHERE a=21595;\nUPDATE t2 SET c='sixty-one thousand two hundred seventy-four' WHERE a=21596;\nUPDATE t2 SET c='forty-nine thousand two hundred seventy-six' WHERE a=21597;\nUPDATE t2 SET c='sixty-seven thousand seven hundred thirty-four' WHERE a=21598;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-eight' WHERE a=21599;\nUPDATE t2 SET c='eighty-eight thousand two hundred eighty' WHERE a=21600;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-two' WHERE a=21601;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-two' WHERE a=21602;\nUPDATE t2 SET c='eighty-three thousand one hundred ninety' WHERE a=21603;\nUPDATE t2 SET c='fifty-nine thousand two hundred seventy-four' WHERE a=21604;\nUPDATE t2 SET c='twenty-seven thousand five hundred twenty-six' WHERE a=21605;\nUPDATE t2 SET c='forty-two thousand nine hundred fifteen' WHERE a=21606;\nUPDATE t2 SET c='eighty-seven thousand five hundred thirty' WHERE a=21607;\nUPDATE t2 SET c='thirty-five thousand five hundred thirty-three' WHERE a=21608;\nUPDATE t2 SET c='ninety-six thousand eight hundred sixty-three' WHERE a=21609;\nUPDATE t2 SET c='sixty-eight thousand two hundred seventy-five' WHERE a=21610;\nUPDATE t2 SET c='forty thousand six hundred fourteen' WHERE a=21611;\nUPDATE t2 SET c='twenty-four thousand eight hundred thirty-nine' WHERE a=21612;\nUPDATE t2 SET c='fifty-six thousand forty-five' WHERE a=21613;\nUPDATE t2 SET c='twenty-nine thousand six hundred seventy-two' WHERE a=21614;\nUPDATE t2 SET c='eighty-one thousand six hundred ninety-five' WHERE a=21615;\nUPDATE t2 SET c='fourteen thousand seven hundred eighty-one' WHERE a=21616;\nUPDATE t2 SET c='fifty-six thousand one hundred ninety-one' WHERE a=21617;\nUPDATE t2 SET c='nine thousand four hundred seventy-eight' WHERE a=21618;\nUPDATE t2 SET c='forty-seven thousand seven hundred thirty-four' WHERE a=21619;\nUPDATE t2 SET c='eighty-six thousand fifteen' WHERE a=21620;\nUPDATE t2 SET c='thirteen thousand five hundred sixty-two' WHERE a=21621;\nUPDATE t2 SET c='forty-three thousand one hundred twenty-nine' WHERE a=21622;\nUPDATE t2 SET c='thirty-one thousand one hundred fifty-two' WHERE a=21623;\nUPDATE t2 SET c='fifteen thousand nine hundred forty-seven' WHERE a=21624;\nUPDATE t2 SET c='twenty thousand eight hundred eighty-five' WHERE a=21625;\nUPDATE t2 SET c='seventy-nine thousand fifty-seven' WHERE a=21626;\nUPDATE t2 SET c='sixty thousand nine hundred fifty-eight' WHERE a=21627;\nUPDATE t2 SET c='thirteen thousand five hundred five' WHERE a=21628;\nUPDATE t2 SET c='fifty-four thousand six hundred twenty-three' WHERE a=21629;\nUPDATE t2 SET c='sixty-four thousand twenty-two' WHERE a=21630;\nUPDATE t2 SET c='thirty-six thousand nine hundred forty' WHERE a=21631;\nUPDATE t2 SET c='ninety thousand five hundred nineteen' WHERE a=21632;\nUPDATE t2 SET c='seventy-seven thousand one hundred sixty-four' WHERE a=21633;\nUPDATE t2 SET c='seventy-nine thousand eighty-four' WHERE a=21634;\nUPDATE t2 SET c='twelve thousand two hundred thirty-nine' WHERE a=21635;\nUPDATE t2 SET c='thirty-one thousand sixty-seven' WHERE a=21636;\nUPDATE t2 SET c='eighty-five thousand eight hundred fifty-six' WHERE a=21637;\nUPDATE t2 SET c='fifty-six thousand eight hundred fifty' WHERE a=21638;\nUPDATE t2 SET c='twenty-nine thousand four hundred thirty-seven' WHERE a=21639;\nUPDATE t2 SET c='twenty-four thousand four hundred twenty' WHERE a=21640;\nUPDATE t2 SET c='ninety thousand six hundred fifty-six' WHERE a=21641;\nUPDATE t2 SET c='ninety-one thousand two hundred twenty-nine' WHERE a=21642;\nUPDATE t2 SET c='twenty thousand five hundred ninety-one' WHERE a=21643;\nUPDATE t2 SET c='forty-two thousand two hundred seventy' WHERE a=21644;\nUPDATE t2 SET c='sixty-nine thousand six hundred forty-three' WHERE a=21645;\nUPDATE t2 SET c='fifty-eight thousand six hundred ninety-nine' WHERE a=21646;\nUPDATE t2 SET c='fifty-one thousand two hundred ninety-four' WHERE a=21647;\nUPDATE t2 SET c='fifty-four thousand seven hundred sixty-five' WHERE a=21648;\nUPDATE t2 SET c='sixty-four thousand three hundred six' WHERE a=21649;\nUPDATE t2 SET c='three thousand three hundred eighty-four' WHERE a=21650;\nUPDATE t2 SET c='fifty-two thousand two hundred forty-one' WHERE a=21651;\nUPDATE t2 SET c='ninety-four thousand five hundred thirty-eight' WHERE a=21652;\nUPDATE t2 SET c='ninety thousand six hundred nineteen' WHERE a=21653;\nUPDATE t2 SET c='eighty-eight thousand nine hundred sixty' WHERE a=21654;\nUPDATE t2 SET c='twenty-nine thousand one hundred fifty-seven' WHERE a=21655;\nUPDATE t2 SET c='fifty-seven thousand six hundred sixty-seven' WHERE a=21656;\nUPDATE t2 SET c='fifty-nine thousand nine hundred nine' WHERE a=21657;\nUPDATE t2 SET c='thirty-eight thousand fifty-four' WHERE a=21658;\nUPDATE t2 SET c='sixty-seven thousand eight' WHERE a=21659;\nUPDATE t2 SET c='eighty-six thousand two hundred fifty-seven' WHERE a=21660;\nUPDATE t2 SET c='forty-two thousand one hundred sixty-seven' WHERE a=21661;\nUPDATE t2 SET c='forty-nine thousand three hundred fourteen' WHERE a=21662;\nUPDATE t2 SET c='ninety-one thousand three hundred ninety-four' WHERE a=21663;\nUPDATE t2 SET c='ninety-one thousand two hundred thirteen' WHERE a=21664;\nUPDATE t2 SET c='fifty-eight thousand eight hundred fifty-one' WHERE a=21665;\nUPDATE t2 SET c='fifty-one thousand fourteen' WHERE a=21666;\nUPDATE t2 SET c='seventy-seven thousand forty-three' WHERE a=21667;\nUPDATE t2 SET c='seven thousand one hundred ninety-nine' WHERE a=21668;\nUPDATE t2 SET c='sixty-seven thousand seven hundred five' WHERE a=21669;\nUPDATE t2 SET c='three thousand one hundred fifty-eight' WHERE a=21670;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-two' WHERE a=21671;\nUPDATE t2 SET c='eighty-four thousand two hundred twenty' WHERE a=21672;\nUPDATE t2 SET c='three thousand eighty-seven' WHERE a=21673;\nUPDATE t2 SET c='seventy-six thousand seventy-two' WHERE a=21674;\nUPDATE t2 SET c='sixty-six thousand two hundred forty-five' WHERE a=21675;\nUPDATE t2 SET c='seventy-three thousand two hundred fifty-five' WHERE a=21676;\nUPDATE t2 SET c='sixty thousand four hundred seventy-one' WHERE a=21677;\nUPDATE t2 SET c='ninety-six thousand eight hundred thirteen' WHERE a=21678;\nUPDATE t2 SET c='seven hundred fourteen' WHERE a=21679;\nUPDATE t2 SET c='ninety thousand four hundred ninety-five' WHERE a=21680;\nUPDATE t2 SET c='seventeen thousand nine hundred eleven' WHERE a=21681;\nUPDATE t2 SET c='twenty-two thousand eight hundred twenty-two' WHERE a=21682;\nUPDATE t2 SET c='seventy-two thousand two hundred thirty-nine' WHERE a=21683;\nUPDATE t2 SET c='ninety-nine thousand forty-three' WHERE a=21684;\nUPDATE t2 SET c='ninety-four thousand fourteen' WHERE a=21685;\nUPDATE t2 SET c='four hundred fifty-six' WHERE a=21686;\nUPDATE t2 SET c='twenty-six thousand nine hundred seventy-seven' WHERE a=21687;\nUPDATE t2 SET c='ninety-six thousand four hundred eighty-five' WHERE a=21688;\nUPDATE t2 SET c='seventy-four thousand six hundred seventy-six' WHERE a=21689;\nUPDATE t2 SET c='thirty-six thousand nine hundred seventy-three' WHERE a=21690;\nUPDATE t2 SET c='ninety-seven thousand four hundred eighteen' WHERE a=21691;\nUPDATE t2 SET c='thirty-nine thousand six hundred one' WHERE a=21692;\nUPDATE t2 SET c='ninety-five thousand nine hundred sixty-three' WHERE a=21693;\nUPDATE t2 SET c='fifty-seven thousand seven hundred ninety-three' WHERE a=21694;\nUPDATE t2 SET c='ninety-five thousand nine hundred thirty-one' WHERE a=21695;\nUPDATE t2 SET c='seventy-eight thousand six hundred two' WHERE a=21696;\nUPDATE t2 SET c='forty-five thousand eighty-nine' WHERE a=21697;\nUPDATE t2 SET c='forty-eight thousand eight hundred thirty-five' WHERE a=21698;\nUPDATE t2 SET c='thirty thousand six hundred eighteen' WHERE a=21699;\nUPDATE t2 SET c='fifty-three thousand sixty-three' WHERE a=21700;\nUPDATE t2 SET c='twenty-five thousand two hundred sixty-one' WHERE a=21701;\nUPDATE t2 SET c='sixty thousand five hundred one' WHERE a=21702;\nUPDATE t2 SET c='twenty-three thousand four hundred seventy-six' WHERE a=21703;\nUPDATE t2 SET c='twenty-two thousand forty-two' WHERE a=21704;\nUPDATE t2 SET c='ninety-one thousand nine hundred thirty-five' WHERE a=21705;\nUPDATE t2 SET c='eleven thousand eight hundred twenty-three' WHERE a=21706;\nUPDATE t2 SET c='thirty-nine thousand one hundred eighty-six' WHERE a=21707;\nUPDATE t2 SET c='seventy-four thousand one hundred forty' WHERE a=21708;\nUPDATE t2 SET c='twenty thousand seven hundred fifteen' WHERE a=21709;\nUPDATE t2 SET c='ninety-seven thousand five hundred seventy-seven' WHERE a=21710;\nUPDATE t2 SET c='fifty-two thousand four hundred eighteen' WHERE a=21711;\nUPDATE t2 SET c='ninety-one thousand seven hundred forty-six' WHERE a=21712;\nUPDATE t2 SET c='eighty-eight thousand three hundred ninety-five' WHERE a=21713;\nUPDATE t2 SET c='fifty thousand four hundred eleven' WHERE a=21714;\nUPDATE t2 SET c='fifty-three thousand five hundred twenty-six' WHERE a=21715;\nUPDATE t2 SET c='ninety-seven thousand four hundred seventy-one' WHERE a=21716;\nUPDATE t2 SET c='eighty-five thousand ninety-four' WHERE a=21717;\nUPDATE t2 SET c='thirty-two thousand eight hundred ninety' WHERE a=21718;\nUPDATE t2 SET c='forty-five thousand nine hundred' WHERE a=21719;\nUPDATE t2 SET c='eighty-four thousand three hundred forty-four' WHERE a=21720;\nUPDATE t2 SET c='seventy-four thousand five hundred ninety-eight' WHERE a=21721;\nUPDATE t2 SET c='ninety-one thousand eight hundred eighty-five' WHERE a=21722;\nUPDATE t2 SET c='twenty-four thousand six hundred forty-two' WHERE a=21723;\nUPDATE t2 SET c='fifteen thousand three hundred eighteen' WHERE a=21724;\nUPDATE t2 SET c='thirty-five thousand twenty-three' WHERE a=21725;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighty-one' WHERE a=21726;\nUPDATE t2 SET c='forty-seven thousand eighty' WHERE a=21727;\nUPDATE t2 SET c='sixty-six thousand three hundred' WHERE a=21728;\nUPDATE t2 SET c='eighteen thousand six hundred ninety-six' WHERE a=21729;\nUPDATE t2 SET c='sixty-five thousand seven hundred two' WHERE a=21730;\nUPDATE t2 SET c='nine thousand eight hundred thirty-nine' WHERE a=21731;\nUPDATE t2 SET c='eighty-six thousand seven hundred seventy' WHERE a=21732;\nUPDATE t2 SET c='fifty-three thousand four hundred sixty-six' WHERE a=21733;\nUPDATE t2 SET c='thirty-eight thousand eighty-three' WHERE a=21734;\nUPDATE t2 SET c='eighteen thousand one hundred sixty-three' WHERE a=21735;\nUPDATE t2 SET c='fifty-eight thousand nine hundred twenty' WHERE a=21736;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-eight' WHERE a=21737;\nUPDATE t2 SET c='eighty-five thousand four hundred seventy-seven' WHERE a=21738;\nUPDATE t2 SET c='fifty-six thousand eight hundred seventy-seven' WHERE a=21739;\nUPDATE t2 SET c='fifty-seven thousand four hundred thirty-eight' WHERE a=21740;\nUPDATE t2 SET c='eighty thousand seven hundred eighteen' WHERE a=21741;\nUPDATE t2 SET c='three thousand one' WHERE a=21742;\nUPDATE t2 SET c='sixty-seven thousand two hundred seventy-one' WHERE a=21743;\nUPDATE t2 SET c='ninety-five thousand seventy-eight' WHERE a=21744;\nUPDATE t2 SET c='sixty-seven thousand seven hundred sixty-six' WHERE a=21745;\nUPDATE t2 SET c='seven hundred sixty-three' WHERE a=21746;\nUPDATE t2 SET c='sixty-five thousand nine hundred sixty' WHERE a=21747;\nUPDATE t2 SET c='seventy thousand eight hundred seventy-six' WHERE a=21748;\nUPDATE t2 SET c='seventy-six thousand two hundred fifty-five' WHERE a=21749;\nUPDATE t2 SET c='ninety-seven thousand eight hundred four' WHERE a=21750;\nUPDATE t2 SET c='ninety-three thousand ninety-four' WHERE a=21751;\nUPDATE t2 SET c='seventy-seven thousand six hundred sixty-four' WHERE a=21752;\nUPDATE t2 SET c='forty-one thousand six hundred thirty-seven' WHERE a=21753;\nUPDATE t2 SET c='forty thousand nine hundred twelve' WHERE a=21754;\nUPDATE t2 SET c='eighty thousand four hundred nineteen' WHERE a=21755;\nUPDATE t2 SET c='fifteen thousand nine hundred fifty-nine' WHERE a=21756;\nUPDATE t2 SET c='seventy-seven thousand four hundred ninety-four' WHERE a=21757;\nUPDATE t2 SET c='ninety-one thousand three hundred thirty-seven' WHERE a=21758;\nUPDATE t2 SET c='seventy-eight thousand two hundred eighty-four' WHERE a=21759;\nUPDATE t2 SET c='fifty-three thousand seven hundred ninety-nine' WHERE a=21760;\nUPDATE t2 SET c='seventy-seven thousand eighty' WHERE a=21761;\nUPDATE t2 SET c='eighty-six thousand two hundred sixty' WHERE a=21762;\nUPDATE t2 SET c='fifty-seven thousand four hundred thirty-five' WHERE a=21763;\nUPDATE t2 SET c='twenty-five thousand seven hundred twenty-nine' WHERE a=21764;\nUPDATE t2 SET c='sixty-four thousand seven hundred twenty-five' WHERE a=21765;\nUPDATE t2 SET c='eighty-five thousand eight hundred twenty-four' WHERE a=21766;\nUPDATE t2 SET c='four thousand six hundred fifteen' WHERE a=21767;\nUPDATE t2 SET c='ninety thousand eight hundred forty-two' WHERE a=21768;\nUPDATE t2 SET c='four thousand six hundred seventeen' WHERE a=21769;\nUPDATE t2 SET c='ninety-six thousand nine hundred twenty-seven' WHERE a=21770;\nUPDATE t2 SET c='thirty thousand nine hundred sixty-three' WHERE a=21771;\nUPDATE t2 SET c='seventy-nine thousand two hundred twelve' WHERE a=21772;\nUPDATE t2 SET c='fifty-four thousand eight hundred twenty-one' WHERE a=21773;\nUPDATE t2 SET c='sixty-eight thousand seven hundred fifty-four' WHERE a=21774;\nUPDATE t2 SET c='seventy-five thousand one hundred thirty-nine' WHERE a=21775;\nUPDATE t2 SET c='twenty thousand three hundred' WHERE a=21776;\nUPDATE t2 SET c='sixty-two thousand six hundred forty-seven' WHERE a=21777;\nUPDATE t2 SET c='thirty-seven thousand eight hundred fifty-six' WHERE a=21778;\nUPDATE t2 SET c='twenty thousand three hundred sixteen' WHERE a=21779;\nUPDATE t2 SET c='fifty-seven thousand four hundred seventy-five' WHERE a=21780;\nUPDATE t2 SET c='fifty thousand eight hundred seventy-one' WHERE a=21781;\nUPDATE t2 SET c='twenty thousand four hundred eighty-one' WHERE a=21782;\nUPDATE t2 SET c='nine thousand eight hundred one' WHERE a=21783;\nUPDATE t2 SET c='ten thousand one hundred fifty-eight' WHERE a=21784;\nUPDATE t2 SET c='nineteen thousand eight hundred thirty-eight' WHERE a=21785;\nUPDATE t2 SET c='one thousand nine hundred twenty-five' WHERE a=21786;\nUPDATE t2 SET c='seventy-six thousand two hundred seventy-five' WHERE a=21787;\nUPDATE t2 SET c='twenty-five thousand six hundred fifty-nine' WHERE a=21788;\nUPDATE t2 SET c='thirty-three thousand seven hundred ninety-one' WHERE a=21789;\nUPDATE t2 SET c='forty-four thousand one hundred twenty-two' WHERE a=21790;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventy-eight' WHERE a=21791;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-two' WHERE a=21792;\nUPDATE t2 SET c='sixty-nine thousand one hundred twenty-six' WHERE a=21793;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-one' WHERE a=21794;\nUPDATE t2 SET c='sixty-one thousand twenty-five' WHERE a=21795;\nUPDATE t2 SET c='six thousand seven hundred sixty-two' WHERE a=21796;\nUPDATE t2 SET c='forty-five thousand six hundred sixty-three' WHERE a=21797;\nUPDATE t2 SET c='forty-three thousand seven hundred seventy-three' WHERE a=21798;\nUPDATE t2 SET c='sixty-two thousand sixty-seven' WHERE a=21799;\nUPDATE t2 SET c='ninety-nine thousand nine hundred thirty-seven' WHERE a=21800;\nUPDATE t2 SET c='eighty-four thousand seven hundred thirty-nine' WHERE a=21801;\nUPDATE t2 SET c='seventy-six thousand seven hundred five' WHERE a=21802;\nUPDATE t2 SET c='forty thousand eight hundred twenty-five' WHERE a=21803;\nUPDATE t2 SET c='twelve thousand two hundred forty-eight' WHERE a=21804;\nUPDATE t2 SET c='thirty-three thousand two hundred sixty-eight' WHERE a=21805;\nUPDATE t2 SET c='fifty-six thousand three hundred twenty-two' WHERE a=21806;\nUPDATE t2 SET c='seventy-eight thousand two hundred two' WHERE a=21807;\nUPDATE t2 SET c='fifty-five thousand five hundred twenty-three' WHERE a=21808;\nUPDATE t2 SET c='three thousand eight hundred twenty-five' WHERE a=21809;\nUPDATE t2 SET c='forty-four thousand eight hundred twenty-nine' WHERE a=21810;\nUPDATE t2 SET c='fifty-eight thousand eight hundred eighty-four' WHERE a=21811;\nUPDATE t2 SET c='thirty-nine thousand three hundred sixty-three' WHERE a=21812;\nUPDATE t2 SET c='fifty-one thousand six hundred fifty-seven' WHERE a=21813;\nUPDATE t2 SET c='twenty-six thousand four hundred thirteen' WHERE a=21814;\nUPDATE t2 SET c='ninety-three thousand one hundred fifty-two' WHERE a=21815;\nUPDATE t2 SET c='twenty-two thousand eight hundred eighty-five' WHERE a=21816;\nUPDATE t2 SET c='seven thousand nine hundred seventy-four' WHERE a=21817;\nUPDATE t2 SET c='seventy-two thousand five hundred thirteen' WHERE a=21818;\nUPDATE t2 SET c='four hundred sixty-eight' WHERE a=21819;\nUPDATE t2 SET c='sixty-nine thousand one hundred thirty-six' WHERE a=21820;\nUPDATE t2 SET c='eighty-nine thousand six hundred eighty' WHERE a=21821;\nUPDATE t2 SET c='one thousand seven hundred forty-five' WHERE a=21822;\nUPDATE t2 SET c='four thousand three hundred forty-four' WHERE a=21823;\nUPDATE t2 SET c='fifty-nine thousand nine hundred eighty-one' WHERE a=21824;\nUPDATE t2 SET c='three thousand one hundred seventeen' WHERE a=21825;\nUPDATE t2 SET c='ninety-seven thousand eight hundred ninety-two' WHERE a=21826;\nUPDATE t2 SET c='thirty-three thousand six hundred fifty-three' WHERE a=21827;\nUPDATE t2 SET c='twenty thousand two hundred seventy-nine' WHERE a=21828;\nUPDATE t2 SET c='ninety-five thousand ninety-nine' WHERE a=21829;\nUPDATE t2 SET c='fifty-one thousand four hundred fifty-five' WHERE a=21830;\nUPDATE t2 SET c='sixty-nine thousand eight hundred' WHERE a=21831;\nUPDATE t2 SET c='six thousand eight hundred eighty-seven' WHERE a=21832;\nUPDATE t2 SET c='fifteen thousand seven hundred thirty-seven' WHERE a=21833;\nUPDATE t2 SET c='thirty-six thousand nine hundred' WHERE a=21834;\nUPDATE t2 SET c='fifty-nine thousand five hundred forty-one' WHERE a=21835;\nUPDATE t2 SET c='twenty-four thousand two hundred sixty-seven' WHERE a=21836;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixty-one' WHERE a=21837;\nUPDATE t2 SET c='ninety-one thousand five hundred thirty-nine' WHERE a=21838;\nUPDATE t2 SET c='twenty-six thousand six hundred seven' WHERE a=21839;\nUPDATE t2 SET c='nineteen thousand five hundred thirty-five' WHERE a=21840;\nUPDATE t2 SET c='seventy-two thousand two hundred fifty-two' WHERE a=21841;\nUPDATE t2 SET c='nine hundred seventy-nine' WHERE a=21842;\nUPDATE t2 SET c='eighty-six thousand six hundred four' WHERE a=21843;\nUPDATE t2 SET c='sixty-six thousand four hundred forty-nine' WHERE a=21844;\nUPDATE t2 SET c='fifty-nine thousand five hundred ninety-nine' WHERE a=21845;\nUPDATE t2 SET c='eighty-four thousand nine hundred thirty' WHERE a=21846;\nUPDATE t2 SET c='seventy-eight thousand nine hundred ninety-six' WHERE a=21847;\nUPDATE t2 SET c='fifty-seven thousand three hundred fifty-two' WHERE a=21848;\nUPDATE t2 SET c='eighty-seven thousand four hundred seventy-one' WHERE a=21849;\nUPDATE t2 SET c='sixty-six thousand four hundred eighty' WHERE a=21850;\nUPDATE t2 SET c='thirty-five thousand five hundred eighty-one' WHERE a=21851;\nUPDATE t2 SET c='twenty-seven thousand seventy-five' WHERE a=21852;\nUPDATE t2 SET c='seventy-one thousand four hundred three' WHERE a=21853;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixty' WHERE a=21854;\nUPDATE t2 SET c='sixty-five thousand one hundred fifty-three' WHERE a=21855;\nUPDATE t2 SET c='fifteen thousand five hundred thirty-nine' WHERE a=21856;\nUPDATE t2 SET c='forty thousand seven hundred two' WHERE a=21857;\nUPDATE t2 SET c='thirty-seven thousand seven hundred twenty-six' WHERE a=21858;\nUPDATE t2 SET c='two thousand six hundred sixty-eight' WHERE a=21859;\nUPDATE t2 SET c='twenty-three thousand three hundred eighty-nine' WHERE a=21860;\nUPDATE t2 SET c='twenty-seven thousand twenty-three' WHERE a=21861;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-seven' WHERE a=21862;\nUPDATE t2 SET c='sixty-three thousand six hundred eighty-nine' WHERE a=21863;\nUPDATE t2 SET c='seventy-two thousand one hundred eight' WHERE a=21864;\nUPDATE t2 SET c='eighty-two thousand six hundred six' WHERE a=21865;\nUPDATE t2 SET c='sixteen thousand five hundred twenty-nine' WHERE a=21866;\nUPDATE t2 SET c='sixty-eight thousand eight hundred eighty-two' WHERE a=21867;\nUPDATE t2 SET c='forty thousand six hundred seventy-seven' WHERE a=21868;\nUPDATE t2 SET c='nine thousand five hundred fourteen' WHERE a=21869;\nUPDATE t2 SET c='seventy-four thousand five hundred fifty-six' WHERE a=21870;\nUPDATE t2 SET c='forty-nine thousand two hundred eighteen' WHERE a=21871;\nUPDATE t2 SET c='ten thousand eight hundred thirty-three' WHERE a=21872;\nUPDATE t2 SET c='ten thousand three hundred twenty' WHERE a=21873;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-nine' WHERE a=21874;\nUPDATE t2 SET c='fifty-two thousand one hundred eighty-four' WHERE a=21875;\nUPDATE t2 SET c='seventy-one thousand two hundred ten' WHERE a=21876;\nUPDATE t2 SET c='six hundred forty-eight' WHERE a=21877;\nUPDATE t2 SET c='ninety-eight thousand seven hundred fifty' WHERE a=21878;\nUPDATE t2 SET c='fifty-three thousand seven hundred eighty-six' WHERE a=21879;\nUPDATE t2 SET c='seventy-one thousand nine hundred ninety-five' WHERE a=21880;\nUPDATE t2 SET c='forty-four thousand seven hundred seventy-one' WHERE a=21881;\nUPDATE t2 SET c='seventy-three thousand eight hundred seventy-six' WHERE a=21882;\nUPDATE t2 SET c='eighty-six thousand seven hundred thirty-one' WHERE a=21883;\nUPDATE t2 SET c='ninety-four thousand five hundred ten' WHERE a=21884;\nUPDATE t2 SET c='thirty-five thousand six hundred sixty-six' WHERE a=21885;\nUPDATE t2 SET c='fifty-nine thousand five hundred sixty-one' WHERE a=21886;\nUPDATE t2 SET c='ninety-eight thousand eight hundred' WHERE a=21887;\nUPDATE t2 SET c='thirteen thousand seven hundred ninety-five' WHERE a=21888;\nUPDATE t2 SET c='eighty-four thousand five hundred sixty-five' WHERE a=21889;\nUPDATE t2 SET c='ninety-one thousand three hundred sixty-nine' WHERE a=21890;\nUPDATE t2 SET c='eighty-three thousand three hundred eighty-one' WHERE a=21891;\nUPDATE t2 SET c='fifty-four thousand eight hundred ninety-nine' WHERE a=21892;\nUPDATE t2 SET c='one thousand nine hundred sixty-seven' WHERE a=21893;\nUPDATE t2 SET c='ten thousand two hundred ninety-five' WHERE a=21894;\nUPDATE t2 SET c='seventy thousand nine hundred seventy-four' WHERE a=21895;\nUPDATE t2 SET c='fifty-five thousand nine hundred twenty-five' WHERE a=21896;\nUPDATE t2 SET c='twenty-two thousand three hundred fifty' WHERE a=21897;\nUPDATE t2 SET c='sixty-two thousand seven hundred thirty-six' WHERE a=21898;\nUPDATE t2 SET c='twenty-two thousand four hundred sixty-eight' WHERE a=21899;\nUPDATE t2 SET c='ninety-eight thousand seventy-five' WHERE a=21900;\nUPDATE t2 SET c='sixty-one thousand six hundred two' WHERE a=21901;\nUPDATE t2 SET c='five thousand five hundred thirty-one' WHERE a=21902;\nUPDATE t2 SET c='thirty-one thousand three hundred eighty' WHERE a=21903;\nUPDATE t2 SET c='twenty thousand eight hundred ninety-seven' WHERE a=21904;\nUPDATE t2 SET c='thirty-six thousand five hundred forty-one' WHERE a=21905;\nUPDATE t2 SET c='twenty-three thousand six hundred twenty-two' WHERE a=21906;\nUPDATE t2 SET c='ninety-one thousand eight hundred thirty-seven' WHERE a=21907;\nUPDATE t2 SET c='ninety-one thousand eight hundred fifty-four' WHERE a=21908;\nUPDATE t2 SET c='ninety-eight thousand seven hundred fifty-four' WHERE a=21909;\nUPDATE t2 SET c='nine thousand four hundred sixty-eight' WHERE a=21910;\nUPDATE t2 SET c='nine thousand nine hundred seventeen' WHERE a=21911;\nUPDATE t2 SET c='forty-six thousand three hundred ninety-eight' WHERE a=21912;\nUPDATE t2 SET c='sixty-two thousand four hundred ninety-three' WHERE a=21913;\nUPDATE t2 SET c='thirty-eight thousand three hundred fifty-four' WHERE a=21914;\nUPDATE t2 SET c='ninety-one thousand eight hundred thirty-four' WHERE a=21915;\nUPDATE t2 SET c='thirty-six thousand five hundred two' WHERE a=21916;\nUPDATE t2 SET c='twenty thousand six hundred ninety' WHERE a=21917;\nUPDATE t2 SET c='eighteen thousand three hundred sixteen' WHERE a=21918;\nUPDATE t2 SET c='sixty-three thousand three hundred forty-two' WHERE a=21919;\nUPDATE t2 SET c='forty-two thousand nine hundred seventy' WHERE a=21920;\nUPDATE t2 SET c='eighty-two thousand seven hundred twenty-seven' WHERE a=21921;\nUPDATE t2 SET c='twenty thousand two hundred eighty' WHERE a=21922;\nUPDATE t2 SET c='ninety-one thousand nine hundred seventy-four' WHERE a=21923;\nUPDATE t2 SET c='seven thousand eight hundred nineteen' WHERE a=21924;\nUPDATE t2 SET c='forty-five thousand seven hundred sixty-nine' WHERE a=21925;\nUPDATE t2 SET c='eighty-two thousand two hundred ninety-five' WHERE a=21926;\nUPDATE t2 SET c='forty-three thousand three hundred twelve' WHERE a=21927;\nUPDATE t2 SET c='ninety thousand eight hundred twenty-seven' WHERE a=21928;\nUPDATE t2 SET c='forty-six thousand two hundred fifty-two' WHERE a=21929;\nUPDATE t2 SET c='seventy-eight thousand three hundred seven' WHERE a=21930;\nUPDATE t2 SET c='seventy-three thousand two hundred thirty-one' WHERE a=21931;\nUPDATE t2 SET c='fifty thousand one hundred fourteen' WHERE a=21932;\nUPDATE t2 SET c='seventeen thousand ninety-two' WHERE a=21933;\nUPDATE t2 SET c='sixty thousand four hundred nineteen' WHERE a=21934;\nUPDATE t2 SET c='sixty-four thousand two hundred nineteen' WHERE a=21935;\nUPDATE t2 SET c='ninety-eight thousand four hundred three' WHERE a=21936;\nUPDATE t2 SET c='thirty-six thousand eight hundred ninety-two' WHERE a=21937;\nUPDATE t2 SET c='ninety-four thousand one hundred sixteen' WHERE a=21938;\nUPDATE t2 SET c='sixty-five thousand five hundred seventy' WHERE a=21939;\nUPDATE t2 SET c='fifty thousand ninety-one' WHERE a=21940;\nUPDATE t2 SET c='three thousand nine hundred five' WHERE a=21941;\nUPDATE t2 SET c='eighty-one thousand eight hundred thirty-eight' WHERE a=21942;\nUPDATE t2 SET c='ten thousand four hundred ninety' WHERE a=21943;\nUPDATE t2 SET c='forty-seven thousand twenty' WHERE a=21944;\nUPDATE t2 SET c='five thousand two hundred ninety-eight' WHERE a=21945;\nUPDATE t2 SET c='seventy-seven thousand nine hundred seven' WHERE a=21946;\nUPDATE t2 SET c='seventy-nine thousand six hundred nine' WHERE a=21947;\nUPDATE t2 SET c='sixty-seven thousand eight hundred fifty-one' WHERE a=21948;\nUPDATE t2 SET c='seventy-six thousand sixteen' WHERE a=21949;\nUPDATE t2 SET c='sixty thousand two hundred eight' WHERE a=21950;\nUPDATE t2 SET c='seven thousand five hundred seventy-eight' WHERE a=21951;\nUPDATE t2 SET c='ninety-two thousand seven hundred thirteen' WHERE a=21952;\nUPDATE t2 SET c='thirty-four thousand eight' WHERE a=21953;\nUPDATE t2 SET c='eighteen thousand seven hundred one' WHERE a=21954;\nUPDATE t2 SET c='forty-nine thousand seven hundred seventy-nine' WHERE a=21955;\nUPDATE t2 SET c='fifty-three thousand three hundred twenty-three' WHERE a=21956;\nUPDATE t2 SET c='ninety-three thousand three hundred forty-two' WHERE a=21957;\nUPDATE t2 SET c='ninety-three thousand two hundred thirteen' WHERE a=21958;\nUPDATE t2 SET c='twenty-three thousand ninety-five' WHERE a=21959;\nUPDATE t2 SET c='twenty-six thousand eight hundred ninety-six' WHERE a=21960;\nUPDATE t2 SET c='ninety-two thousand three hundred ninety-three' WHERE a=21961;\nUPDATE t2 SET c='eighty-three thousand twenty-seven' WHERE a=21962;\nUPDATE t2 SET c='seventy-one thousand two hundred thirty-six' WHERE a=21963;\nUPDATE t2 SET c='three thousand seven hundred thirty-two' WHERE a=21964;\nUPDATE t2 SET c='nine thousand two hundred twenty-nine' WHERE a=21965;\nUPDATE t2 SET c='seventy-two thousand eight hundred twenty-four' WHERE a=21966;\nUPDATE t2 SET c='forty-four thousand forty-five' WHERE a=21967;\nUPDATE t2 SET c='thirty-six thousand seven hundred sixty-one' WHERE a=21968;\nUPDATE t2 SET c='ninety-six thousand three hundred twenty-nine' WHERE a=21969;\nUPDATE t2 SET c='twenty-nine thousand four hundred ninety-two' WHERE a=21970;\nUPDATE t2 SET c='forty-eight thousand two hundred twelve' WHERE a=21971;\nUPDATE t2 SET c='seventy-eight thousand five hundred sixty-four' WHERE a=21972;\nUPDATE t2 SET c='fifty-eight thousand five hundred fifty' WHERE a=21973;\nUPDATE t2 SET c='sixty-six thousand eight hundred fifty-one' WHERE a=21974;\nUPDATE t2 SET c='sixty-three thousand eight hundred eighty-eight' WHERE a=21975;\nUPDATE t2 SET c='forty-nine thousand five hundred ninety-nine' WHERE a=21976;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty-two' WHERE a=21977;\nUPDATE t2 SET c='eighteen thousand five hundred fifty-eight' WHERE a=21978;\nUPDATE t2 SET c='fifty-nine thousand two hundred thirty-seven' WHERE a=21979;\nUPDATE t2 SET c='sixty-four thousand four hundred eleven' WHERE a=21980;\nUPDATE t2 SET c='thirty-nine thousand three hundred seventy-seven' WHERE a=21981;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-three' WHERE a=21982;\nUPDATE t2 SET c='sixty-four thousand seven hundred seventy-one' WHERE a=21983;\nUPDATE t2 SET c='ninety-nine thousand three hundred twenty-nine' WHERE a=21984;\nUPDATE t2 SET c='thirty-eight thousand one hundred ninety-six' WHERE a=21985;\nUPDATE t2 SET c='thirty-two thousand eight hundred fifty-two' WHERE a=21986;\nUPDATE t2 SET c='eighty thousand five hundred forty-eight' WHERE a=21987;\nUPDATE t2 SET c='seventy-eight thousand five hundred fifty-four' WHERE a=21988;\nUPDATE t2 SET c='forty-three thousand six hundred twenty-three' WHERE a=21989;\nUPDATE t2 SET c='thirty-two thousand two hundred eighty-five' WHERE a=21990;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventeen' WHERE a=21991;\nUPDATE t2 SET c='sixteen thousand nine hundred twenty' WHERE a=21992;\nUPDATE t2 SET c='fourteen thousand two hundred nineteen' WHERE a=21993;\nUPDATE t2 SET c='sixty-four thousand two hundred forty-one' WHERE a=21994;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-four' WHERE a=21995;\nUPDATE t2 SET c='eighty-four thousand four hundred three' WHERE a=21996;\nUPDATE t2 SET c='forty-four thousand eight hundred seventy-eight' WHERE a=21997;\nUPDATE t2 SET c='ninety-nine thousand four hundred thirty' WHERE a=21998;\nUPDATE t2 SET c='forty thousand ninety-seven' WHERE a=21999;\nUPDATE t2 SET c='fifty-two thousand forty-six' WHERE a=22000;\nUPDATE t2 SET c='ninety-one thousand nine hundred fifty-two' WHERE a=22001;\nUPDATE t2 SET c='thirty-three thousand fifty-three' WHERE a=22002;\nUPDATE t2 SET c='twenty-five thousand eight hundred ninety-four' WHERE a=22003;\nUPDATE t2 SET c='thirty-five thousand five hundred forty-two' WHERE a=22004;\nUPDATE t2 SET c='seventy thousand seven hundred seventy' WHERE a=22005;\nUPDATE t2 SET c='nine thousand seven hundred eighteen' WHERE a=22006;\nUPDATE t2 SET c='forty-four thousand two hundred sixteen' WHERE a=22007;\nUPDATE t2 SET c='twenty-nine thousand four hundred ninety-five' WHERE a=22008;\nUPDATE t2 SET c='twenty-eight thousand six hundred seventy-five' WHERE a=22009;\nUPDATE t2 SET c='six thousand eight hundred sixty-five' WHERE a=22010;\nUPDATE t2 SET c='seventeen thousand six hundred seventy-eight' WHERE a=22011;\nUPDATE t2 SET c='fifty thousand eight hundred seventy-one' WHERE a=22012;\nUPDATE t2 SET c='fifty-seven thousand four hundred eight' WHERE a=22013;\nUPDATE t2 SET c='four hundred twenty-five' WHERE a=22014;\nUPDATE t2 SET c='sixty-five thousand six' WHERE a=22015;\nUPDATE t2 SET c='twenty-four thousand fifty-two' WHERE a=22016;\nUPDATE t2 SET c='one thousand eight hundred' WHERE a=22017;\nUPDATE t2 SET c='thirteen thousand one hundred sixty-five' WHERE a=22018;\nUPDATE t2 SET c='eighty-eight thousand six hundred sixty-three' WHERE a=22019;\nUPDATE t2 SET c='nine thousand nine hundred ninety-two' WHERE a=22020;\nUPDATE t2 SET c='fifty-seven thousand four hundred fifty-six' WHERE a=22021;\nUPDATE t2 SET c='eighty-two thousand eight hundred seventy-nine' WHERE a=22022;\nUPDATE t2 SET c='eighty-eight thousand five hundred seventy-two' WHERE a=22023;\nUPDATE t2 SET c='ninety-four thousand four hundred eighty' WHERE a=22024;\nUPDATE t2 SET c='twenty thousand one hundred fifty-eight' WHERE a=22025;\nUPDATE t2 SET c='thirteen thousand one hundred forty-four' WHERE a=22026;\nUPDATE t2 SET c='thirty-six thousand eight hundred fifty-seven' WHERE a=22027;\nUPDATE t2 SET c='sixty-nine thousand three hundred ninety-eight' WHERE a=22028;\nUPDATE t2 SET c='sixty-six thousand four hundred forty-two' WHERE a=22029;\nUPDATE t2 SET c='fifty-three thousand eight hundred ninety-eight' WHERE a=22030;\nUPDATE t2 SET c='twenty-one thousand one hundred eighty-two' WHERE a=22031;\nUPDATE t2 SET c='thirty-six thousand five hundred fifteen' WHERE a=22032;\nUPDATE t2 SET c='seventy-four thousand eight hundred twenty-nine' WHERE a=22033;\nUPDATE t2 SET c='seventy-three thousand six hundred seventy-four' WHERE a=22034;\nUPDATE t2 SET c='seventeen thousand six hundred twenty-three' WHERE a=22035;\nUPDATE t2 SET c='sixty-seven thousand five hundred fifty-two' WHERE a=22036;\nUPDATE t2 SET c='six thousand two hundred forty-five' WHERE a=22037;\nUPDATE t2 SET c='one hundred five' WHERE a=22038;\nUPDATE t2 SET c='ninety-two thousand sixty-five' WHERE a=22039;\nUPDATE t2 SET c='sixty-two thousand eight hundred ninety-five' WHERE a=22040;\nUPDATE t2 SET c='sixty-three thousand four hundred eighty-three' WHERE a=22041;\nUPDATE t2 SET c='twenty-eight thousand seven hundred forty' WHERE a=22042;\nUPDATE t2 SET c='sixty-one thousand eight hundred sixty-five' WHERE a=22043;\nUPDATE t2 SET c='seventy thousand four hundred thirty' WHERE a=22044;\nUPDATE t2 SET c='twenty-eight thousand six hundred seventy-nine' WHERE a=22045;\nUPDATE t2 SET c='nineteen thousand two hundred ninety' WHERE a=22046;\nUPDATE t2 SET c='eighty-two thousand two hundred fifty-two' WHERE a=22047;\nUPDATE t2 SET c='twenty-eight thousand three hundred forty' WHERE a=22048;\nUPDATE t2 SET c='fifty-one thousand six hundred eighty-eight' WHERE a=22049;\nUPDATE t2 SET c='twelve thousand seven hundred ninety' WHERE a=22050;\nUPDATE t2 SET c='forty-five thousand four hundred thirty-eight' WHERE a=22051;\nUPDATE t2 SET c='twenty-four thousand four hundred eighty-two' WHERE a=22052;\nUPDATE t2 SET c='forty-two thousand eight hundred fifty-four' WHERE a=22053;\nUPDATE t2 SET c='forty-seven thousand four hundred eighty-two' WHERE a=22054;\nUPDATE t2 SET c='ninety-seven thousand five hundred six' WHERE a=22055;\nUPDATE t2 SET c='seventy thousand nine hundred ninety-seven' WHERE a=22056;\nUPDATE t2 SET c='ninety-seven thousand seven hundred sixty-one' WHERE a=22057;\nUPDATE t2 SET c='twenty-six thousand nine hundred fifty-six' WHERE a=22058;\nUPDATE t2 SET c='thirty-nine thousand one hundred eighty-six' WHERE a=22059;\nUPDATE t2 SET c='sixteen thousand two hundred two' WHERE a=22060;\nUPDATE t2 SET c='sixty-nine thousand eight hundred forty-two' WHERE a=22061;\nUPDATE t2 SET c='eighty-four thousand eight hundred forty' WHERE a=22062;\nUPDATE t2 SET c='four thousand seven hundred forty' WHERE a=22063;\nUPDATE t2 SET c='forty thousand four hundred seventy' WHERE a=22064;\nUPDATE t2 SET c='sixty-seven thousand three hundred thirty' WHERE a=22065;\nUPDATE t2 SET c='seventy-nine thousand four hundred fifty-seven' WHERE a=22066;\nUPDATE t2 SET c='twenty thousand four hundred eighty' WHERE a=22067;\nUPDATE t2 SET c='ten thousand four hundred ninety-three' WHERE a=22068;\nUPDATE t2 SET c='forty-eight thousand four hundred ninety' WHERE a=22069;\nUPDATE t2 SET c='seventy-one thousand seven hundred sixty' WHERE a=22070;\nUPDATE t2 SET c='seventy-three thousand nine hundred one' WHERE a=22071;\nUPDATE t2 SET c='thirteen thousand two hundred nineteen' WHERE a=22072;\nUPDATE t2 SET c='fifty-seven thousand five hundred ninety-four' WHERE a=22073;\nUPDATE t2 SET c='sixty-one thousand seven hundred eighty-eight' WHERE a=22074;\nUPDATE t2 SET c='nineteen thousand one hundred sixty-eight' WHERE a=22075;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty-nine' WHERE a=22076;\nUPDATE t2 SET c='fifty thousand five hundred sixty-eight' WHERE a=22077;\nUPDATE t2 SET c='seventy-four thousand sixty-eight' WHERE a=22078;\nUPDATE t2 SET c='ninety-two thousand five hundred seventy-six' WHERE a=22079;\nUPDATE t2 SET c='fifty-nine thousand four hundred eighty-five' WHERE a=22080;\nUPDATE t2 SET c='sixty-one thousand five hundred eighty-five' WHERE a=22081;\nUPDATE t2 SET c='eighty-two thousand six hundred seventy-eight' WHERE a=22082;\nUPDATE t2 SET c='one thousand sixty-one' WHERE a=22083;\nUPDATE t2 SET c='thirty-nine thousand four hundred seven' WHERE a=22084;\nUPDATE t2 SET c='twenty-two thousand six hundred seventy-seven' WHERE a=22085;\nUPDATE t2 SET c='fifty-seven thousand seven hundred forty-five' WHERE a=22086;\nUPDATE t2 SET c='eighty-seven thousand two hundred one' WHERE a=22087;\nUPDATE t2 SET c='ninety-one thousand nine hundred seventy-nine' WHERE a=22088;\nUPDATE t2 SET c='eighty-six thousand eight hundred ninety-seven' WHERE a=22089;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-seven' WHERE a=22090;\nUPDATE t2 SET c='twenty-one thousand six hundred six' WHERE a=22091;\nUPDATE t2 SET c='sixty-five thousand three hundred twenty-one' WHERE a=22092;\nUPDATE t2 SET c='sixty-three thousand five hundred thirty' WHERE a=22093;\nUPDATE t2 SET c='forty-two thousand seven hundred sixty-one' WHERE a=22094;\nUPDATE t2 SET c='seventy-eight thousand eight hundred eighty-three' WHERE a=22095;\nUPDATE t2 SET c='seventy-five thousand two hundred ninety-two' WHERE a=22096;\nUPDATE t2 SET c='fifty-six thousand three hundred eighty-three' WHERE a=22097;\nUPDATE t2 SET c='forty-six thousand six hundred sixty-two' WHERE a=22098;\nUPDATE t2 SET c='eighty-four thousand nine hundred sixty-seven' WHERE a=22099;\nUPDATE t2 SET c='eighty-eight thousand six hundred sixty-six' WHERE a=22100;\nUPDATE t2 SET c='twenty-eight thousand three hundred' WHERE a=22101;\nUPDATE t2 SET c='seventy-five thousand four hundred sixty-two' WHERE a=22102;\nUPDATE t2 SET c='sixty-nine thousand four hundred sixty' WHERE a=22103;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-six' WHERE a=22104;\nUPDATE t2 SET c='sixty-five thousand five hundred sixty-seven' WHERE a=22105;\nUPDATE t2 SET c='twenty-four thousand eighty-five' WHERE a=22106;\nUPDATE t2 SET c='ninety-seven thousand two hundred twelve' WHERE a=22107;\nUPDATE t2 SET c='sixty-seven thousand six hundred thirty-five' WHERE a=22108;\nUPDATE t2 SET c='three thousand eight hundred twenty-three' WHERE a=22109;\nUPDATE t2 SET c='fifty-three thousand six hundred thirty' WHERE a=22110;\nUPDATE t2 SET c='thirty-four thousand four hundred seventy-one' WHERE a=22111;\nUPDATE t2 SET c='thirty-three thousand six hundred seventy-seven' WHERE a=22112;\nUPDATE t2 SET c='forty thousand seven hundred fifty-two' WHERE a=22113;\nUPDATE t2 SET c='two thousand eight hundred eighty' WHERE a=22114;\nUPDATE t2 SET c='ninety-five thousand five hundred sixty' WHERE a=22115;\nUPDATE t2 SET c='six hundred seventy-four' WHERE a=22116;\nUPDATE t2 SET c='seventy-four thousand four hundred thirty-four' WHERE a=22117;\nUPDATE t2 SET c='fifty-two thousand five hundred twenty-three' WHERE a=22118;\nUPDATE t2 SET c='ninety-four thousand seven hundred seventy-nine' WHERE a=22119;\nUPDATE t2 SET c='eight thousand thirty-nine' WHERE a=22120;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-eight' WHERE a=22121;\nUPDATE t2 SET c='fifty-one thousand one hundred twenty-two' WHERE a=22122;\nUPDATE t2 SET c='forty-nine thousand one hundred fifty-three' WHERE a=22123;\nUPDATE t2 SET c='eighty-nine thousand eight hundred fifty-three' WHERE a=22124;\nUPDATE t2 SET c='fifty-two thousand nine hundred forty-five' WHERE a=22125;\nUPDATE t2 SET c='ninety-nine thousand two hundred fourteen' WHERE a=22126;\nUPDATE t2 SET c='sixty-eight thousand three hundred twenty-one' WHERE a=22127;\nUPDATE t2 SET c='one hundred seven' WHERE a=22128;\nUPDATE t2 SET c='thirty-two thousand four hundred thirty-six' WHERE a=22129;\nUPDATE t2 SET c='eleven thousand eight hundred eighty-two' WHERE a=22130;\nUPDATE t2 SET c='seventy-one thousand three hundred sixteen' WHERE a=22131;\nUPDATE t2 SET c='seventy-three thousand six hundred eighteen' WHERE a=22132;\nUPDATE t2 SET c='sixty-four thousand nine hundred ninety' WHERE a=22133;\nUPDATE t2 SET c='ninety-seven thousand eight hundred ninety-four' WHERE a=22134;\nUPDATE t2 SET c='eighty-eight thousand nine hundred ninety-eight' WHERE a=22135;\nUPDATE t2 SET c='seventeen thousand four hundred seventy-eight' WHERE a=22136;\nUPDATE t2 SET c='ninety-seven thousand seventy-two' WHERE a=22137;\nUPDATE t2 SET c='ninety-four thousand nine hundred one' WHERE a=22138;\nUPDATE t2 SET c='three thousand three hundred forty-six' WHERE a=22139;\nUPDATE t2 SET c='nine thousand two hundred seventy-five' WHERE a=22140;\nUPDATE t2 SET c='sixty-eight thousand one hundred forty-six' WHERE a=22141;\nUPDATE t2 SET c='forty-one thousand two hundred seventy-seven' WHERE a=22142;\nUPDATE t2 SET c='forty thousand four hundred six' WHERE a=22143;\nUPDATE t2 SET c='thirty-five thousand eight hundred eighty-one' WHERE a=22144;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixty-six' WHERE a=22145;\nUPDATE t2 SET c='forty-seven thousand two hundred ninety-nine' WHERE a=22146;\nUPDATE t2 SET c='sixty-six thousand nine hundred forty-eight' WHERE a=22147;\nUPDATE t2 SET c='eighty-eight thousand one hundred fifty-seven' WHERE a=22148;\nUPDATE t2 SET c='sixty-three thousand eight hundred three' WHERE a=22149;\nUPDATE t2 SET c='eighty-six thousand eight hundred twenty-five' WHERE a=22150;\nUPDATE t2 SET c='four thousand eight hundred ninety-four' WHERE a=22151;\nUPDATE t2 SET c='forty-nine thousand six hundred seventy-three' WHERE a=22152;\nUPDATE t2 SET c='four thousand two hundred eighty-four' WHERE a=22153;\nUPDATE t2 SET c='twenty-one thousand five hundred seventy-eight' WHERE a=22154;\nUPDATE t2 SET c='sixty-nine thousand six hundred eighty-three' WHERE a=22155;\nUPDATE t2 SET c='five hundred thirty-five' WHERE a=22156;\nUPDATE t2 SET c='thirty-four thousand five hundred fifty-nine' WHERE a=22157;\nUPDATE t2 SET c='forty thousand two hundred ninety-one' WHERE a=22158;\nUPDATE t2 SET c='six thousand eight hundred sixty-nine' WHERE a=22159;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-nine' WHERE a=22160;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty-seven' WHERE a=22161;\nUPDATE t2 SET c='ninety-eight thousand three hundred forty-one' WHERE a=22162;\nUPDATE t2 SET c='ninety thousand five hundred sixty-eight' WHERE a=22163;\nUPDATE t2 SET c='sixteen thousand eight hundred eighty-three' WHERE a=22164;\nUPDATE t2 SET c='fifteen thousand four hundred forty-four' WHERE a=22165;\nUPDATE t2 SET c='six thousand eight hundred one' WHERE a=22166;\nUPDATE t2 SET c='eighty-eight thousand one hundred eighty-three' WHERE a=22167;\nUPDATE t2 SET c='forty-seven thousand ninety-nine' WHERE a=22168;\nUPDATE t2 SET c='sixty-eight thousand one hundred ninety' WHERE a=22169;\nUPDATE t2 SET c='seven thousand six hundred seventy-eight' WHERE a=22170;\nUPDATE t2 SET c='fifty-seven thousand seven hundred four' WHERE a=22171;\nUPDATE t2 SET c='twenty-six thousand one hundred sixty-one' WHERE a=22172;\nUPDATE t2 SET c='seventy-six thousand six hundred forty-seven' WHERE a=22173;\nUPDATE t2 SET c='thirty-three thousand two hundred twenty-one' WHERE a=22174;\nUPDATE t2 SET c='eighty-six thousand fifty-five' WHERE a=22175;\nUPDATE t2 SET c='ninety-two thousand eight hundred thirty-nine' WHERE a=22176;\nUPDATE t2 SET c='ninety-two thousand seven hundred thirty-four' WHERE a=22177;\nUPDATE t2 SET c='ninety-three thousand forty-nine' WHERE a=22178;\nUPDATE t2 SET c='forty-nine thousand one hundred forty-five' WHERE a=22179;\nUPDATE t2 SET c='fourteen thousand forty-seven' WHERE a=22180;\nUPDATE t2 SET c='eleven thousand five hundred thirty-five' WHERE a=22181;\nUPDATE t2 SET c='fifty-two thousand nine hundred twenty-five' WHERE a=22182;\nUPDATE t2 SET c='sixty-nine thousand four hundred ninety-six' WHERE a=22183;\nUPDATE t2 SET c='ninety-four thousand one hundred thirty-six' WHERE a=22184;\nUPDATE t2 SET c='ninety-one thousand nine hundred thirteen' WHERE a=22185;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ninety-seven' WHERE a=22186;\nUPDATE t2 SET c='seventy-five thousand four hundred thirty-five' WHERE a=22187;\nUPDATE t2 SET c='seven thousand three hundred seventy-nine' WHERE a=22188;\nUPDATE t2 SET c='ninety-six thousand five hundred ninety-six' WHERE a=22189;\nUPDATE t2 SET c='four thousand seven hundred four' WHERE a=22190;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-one' WHERE a=22191;\nUPDATE t2 SET c='ninety-nine thousand six hundred sixty-seven' WHERE a=22192;\nUPDATE t2 SET c='ninety-seven thousand four hundred twelve' WHERE a=22193;\nUPDATE t2 SET c='sixteen thousand seven hundred eight' WHERE a=22194;\nUPDATE t2 SET c='twenty-three thousand two hundred seventy-seven' WHERE a=22195;\nUPDATE t2 SET c='forty-nine thousand six hundred thirty-eight' WHERE a=22196;\nUPDATE t2 SET c='sixty-eight thousand eight hundred forty-six' WHERE a=22197;\nUPDATE t2 SET c='eighty-two thousand three hundred eighty' WHERE a=22198;\nUPDATE t2 SET c='fifty-six thousand one hundred forty-nine' WHERE a=22199;\nUPDATE t2 SET c='eighty-seven thousand one hundred ten' WHERE a=22200;\nUPDATE t2 SET c='ninety-eight thousand five hundred ninety-seven' WHERE a=22201;\nUPDATE t2 SET c='thirty-eight thousand four hundred eighty-eight' WHERE a=22202;\nUPDATE t2 SET c='eighty-five thousand ninety-seven' WHERE a=22203;\nUPDATE t2 SET c='eleven thousand fifty-six' WHERE a=22204;\nUPDATE t2 SET c='fourteen thousand seven hundred seventy-six' WHERE a=22205;\nUPDATE t2 SET c='fifty-nine thousand thirty' WHERE a=22206;\nUPDATE t2 SET c='fifty-six thousand eight hundred ninety-two' WHERE a=22207;\nUPDATE t2 SET c='forty-six thousand six hundred eighty-eight' WHERE a=22208;\nUPDATE t2 SET c='eighteen thousand three hundred one' WHERE a=22209;\nUPDATE t2 SET c='ninety-six thousand seven hundred thirty-six' WHERE a=22210;\nUPDATE t2 SET c='twelve thousand' WHERE a=22211;\nUPDATE t2 SET c='ninety-nine thousand five hundred twenty' WHERE a=22212;\nUPDATE t2 SET c='eighteen thousand one hundred twenty-nine' WHERE a=22213;\nUPDATE t2 SET c='eighty-four thousand two hundred twenty-eight' WHERE a=22214;\nUPDATE t2 SET c='forty-seven thousand four hundred thirty-eight' WHERE a=22215;\nUPDATE t2 SET c='eighty-nine thousand seven hundred ninety-one' WHERE a=22216;\nUPDATE t2 SET c='twenty-one thousand six hundred eighty-one' WHERE a=22217;\nUPDATE t2 SET c='sixty-six thousand nine hundred ninety-six' WHERE a=22218;\nUPDATE t2 SET c='forty-five thousand one hundred thirty-one' WHERE a=22219;\nUPDATE t2 SET c='sixty-seven thousand eight hundred fifteen' WHERE a=22220;\nUPDATE t2 SET c='seventy-two thousand ninety-seven' WHERE a=22221;\nUPDATE t2 SET c='forty-nine thousand two hundred twenty' WHERE a=22222;\nUPDATE t2 SET c='nine thousand twenty-eight' WHERE a=22223;\nUPDATE t2 SET c='seventeen thousand four hundred seventy-six' WHERE a=22224;\nUPDATE t2 SET c='five hundred four' WHERE a=22225;\nUPDATE t2 SET c='ten thousand nine hundred nine' WHERE a=22226;\nUPDATE t2 SET c='seventy thousand three hundred six' WHERE a=22227;\nUPDATE t2 SET c='seventy-one thousand five hundred six' WHERE a=22228;\nUPDATE t2 SET c='sixty-four thousand one hundred sixty-eight' WHERE a=22229;\nUPDATE t2 SET c='thirteen thousand two hundred' WHERE a=22230;\nUPDATE t2 SET c='forty-seven thousand one hundred eleven' WHERE a=22231;\nUPDATE t2 SET c='twenty-nine thousand three hundred sixty-five' WHERE a=22232;\nUPDATE t2 SET c='sixty-six thousand three hundred ninety-one' WHERE a=22233;\nUPDATE t2 SET c='one thousand six hundred eighty' WHERE a=22234;\nUPDATE t2 SET c='twelve thousand three hundred thirty-two' WHERE a=22235;\nUPDATE t2 SET c='sixty-two thousand six hundred seventy-two' WHERE a=22236;\nUPDATE t2 SET c='twenty-four thousand two hundred seventy-four' WHERE a=22237;\nUPDATE t2 SET c='eight thousand seven hundred fourteen' WHERE a=22238;\nUPDATE t2 SET c='twenty-one thousand four hundred seventy-four' WHERE a=22239;\nUPDATE t2 SET c='fifty-two thousand two hundred thirty-nine' WHERE a=22240;\nUPDATE t2 SET c='ten thousand three hundred seventy-seven' WHERE a=22241;\nUPDATE t2 SET c='thirty-nine thousand six hundred six' WHERE a=22242;\nUPDATE t2 SET c='fifty-nine thousand seven hundred fifty-five' WHERE a=22243;\nUPDATE t2 SET c='seventy-one thousand six hundred thirty-eight' WHERE a=22244;\nUPDATE t2 SET c='eighty-five thousand six hundred twenty-seven' WHERE a=22245;\nUPDATE t2 SET c='twenty thousand seventy-one' WHERE a=22246;\nUPDATE t2 SET c='sixty-five thousand seven hundred five' WHERE a=22247;\nUPDATE t2 SET c='sixty-two thousand two hundred eighty-one' WHERE a=22248;\nUPDATE t2 SET c='seventy-one thousand nine hundred seventy' WHERE a=22249;\nUPDATE t2 SET c='thirty-four thousand three hundred seventy-six' WHERE a=22250;\nUPDATE t2 SET c='sixty-six thousand six hundred three' WHERE a=22251;\nUPDATE t2 SET c='twelve thousand five hundred seventy-one' WHERE a=22252;\nUPDATE t2 SET c='seventy thousand one hundred eighty-two' WHERE a=22253;\nUPDATE t2 SET c='eighty-five thousand three hundred seventy-two' WHERE a=22254;\nUPDATE t2 SET c='sixty-three thousand nine hundred eight' WHERE a=22255;\nUPDATE t2 SET c='eight thousand six hundred eighty-nine' WHERE a=22256;\nUPDATE t2 SET c='fifty thousand three hundred forty-three' WHERE a=22257;\nUPDATE t2 SET c='thirty-five thousand three hundred thirty-three' WHERE a=22258;\nUPDATE t2 SET c='forty-nine thousand nine hundred forty-eight' WHERE a=22259;\nUPDATE t2 SET c='fifteen thousand one hundred eighty-eight' WHERE a=22260;\nUPDATE t2 SET c='twenty-one thousand nine hundred forty' WHERE a=22261;\nUPDATE t2 SET c='forty-eight thousand one hundred fifty-nine' WHERE a=22262;\nUPDATE t2 SET c='nineteen thousand eight hundred seventy-four' WHERE a=22263;\nUPDATE t2 SET c='three thousand two hundred twenty-seven' WHERE a=22264;\nUPDATE t2 SET c='seventy-one thousand five hundred seventy-three' WHERE a=22265;\nUPDATE t2 SET c='twelve thousand two hundred eighty-five' WHERE a=22266;\nUPDATE t2 SET c='eighty-five thousand one hundred three' WHERE a=22267;\nUPDATE t2 SET c='thirty-seven thousand nine hundred fifteen' WHERE a=22268;\nUPDATE t2 SET c='seventy thousand six hundred twenty-eight' WHERE a=22269;\nUPDATE t2 SET c='seventy-one thousand seven hundred seventy-five' WHERE a=22270;\nUPDATE t2 SET c='seventy-four thousand seven hundred twenty-three' WHERE a=22271;\nUPDATE t2 SET c='twenty-nine thousand fifty-seven' WHERE a=22272;\nUPDATE t2 SET c='three thousand one hundred twenty-eight' WHERE a=22273;\nUPDATE t2 SET c='fifty-six thousand five hundred seven' WHERE a=22274;\nUPDATE t2 SET c='forty-four thousand one hundred sixty-one' WHERE a=22275;\nUPDATE t2 SET c='forty-three thousand six hundred fifty-seven' WHERE a=22276;\nUPDATE t2 SET c='eleven thousand two hundred seventy-nine' WHERE a=22277;\nUPDATE t2 SET c='eighty-six thousand five hundred ninety' WHERE a=22278;\nUPDATE t2 SET c='thirty-five thousand two' WHERE a=22279;\nUPDATE t2 SET c='sixty-two thousand eight hundred twenty-one' WHERE a=22280;\nUPDATE t2 SET c='fifty-two thousand seventy-two' WHERE a=22281;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty-seven' WHERE a=22282;\nUPDATE t2 SET c='sixty-four thousand seven hundred six' WHERE a=22283;\nUPDATE t2 SET c='seventy-three thousand ninety-seven' WHERE a=22284;\nUPDATE t2 SET c='ninety thousand two hundred seventy-two' WHERE a=22285;\nUPDATE t2 SET c='thirty-six thousand three hundred thirty-three' WHERE a=22286;\nUPDATE t2 SET c='fifteen thousand four hundred ninety-three' WHERE a=22287;\nUPDATE t2 SET c='forty-nine thousand six hundred seventy-three' WHERE a=22288;\nUPDATE t2 SET c='eighty-four thousand eight hundred sixty-three' WHERE a=22289;\nUPDATE t2 SET c='thirty thousand eighty-six' WHERE a=22290;\nUPDATE t2 SET c='eighty-eight thousand three hundred eighty-five' WHERE a=22291;\nUPDATE t2 SET c='seventeen thousand six hundred ninety-four' WHERE a=22292;\nUPDATE t2 SET c='forty-four thousand one hundred seventy-four' WHERE a=22293;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-four' WHERE a=22294;\nUPDATE t2 SET c='forty-five thousand eight hundred thirteen' WHERE a=22295;\nUPDATE t2 SET c='sixty-eight thousand five hundred eighty-six' WHERE a=22296;\nUPDATE t2 SET c='ninety-two thousand five hundred eleven' WHERE a=22297;\nUPDATE t2 SET c='seventy-nine thousand six hundred twenty' WHERE a=22298;\nUPDATE t2 SET c='thirty-two thousand four hundred twenty-nine' WHERE a=22299;\nUPDATE t2 SET c='five hundred fifty-eight' WHERE a=22300;\nUPDATE t2 SET c='ninety thousand seven hundred forty-six' WHERE a=22301;\nUPDATE t2 SET c='eleven thousand two hundred forty' WHERE a=22302;\nUPDATE t2 SET c='eighty thousand five hundred thirty-six' WHERE a=22303;\nUPDATE t2 SET c='twenty-seven thousand three hundred four' WHERE a=22304;\nUPDATE t2 SET c='sixteen thousand six hundred eighty-five' WHERE a=22305;\nUPDATE t2 SET c='ninety thousand five hundred ninety-one' WHERE a=22306;\nUPDATE t2 SET c='sixty-seven thousand seven hundred seventy-four' WHERE a=22307;\nUPDATE t2 SET c='forty-nine thousand nine hundred thirty-eight' WHERE a=22308;\nUPDATE t2 SET c='seventy-three thousand one hundred thirty-two' WHERE a=22309;\nUPDATE t2 SET c='twenty-one thousand three hundred fifty-nine' WHERE a=22310;\nUPDATE t2 SET c='eight thousand six hundred thirty-five' WHERE a=22311;\nUPDATE t2 SET c='fifty-one thousand seven hundred five' WHERE a=22312;\nUPDATE t2 SET c='seventy-eight thousand seven hundred eighty-two' WHERE a=22313;\nUPDATE t2 SET c='twenty-six thousand seven hundred ninety-three' WHERE a=22314;\nUPDATE t2 SET c='sixty-nine thousand one hundred twenty-five' WHERE a=22315;\nUPDATE t2 SET c='sixteen thousand one hundred twenty-one' WHERE a=22316;\nUPDATE t2 SET c='sixteen thousand eight hundred eighty-six' WHERE a=22317;\nUPDATE t2 SET c='eighty-five thousand nine hundred twenty-four' WHERE a=22318;\nUPDATE t2 SET c='ninety-four thousand three hundred thirty-five' WHERE a=22319;\nUPDATE t2 SET c='seventy-two thousand fifty-four' WHERE a=22320;\nUPDATE t2 SET c='twenty-five thousand six hundred two' WHERE a=22321;\nUPDATE t2 SET c='fifty-three thousand nine hundred twelve' WHERE a=22322;\nUPDATE t2 SET c='thirteen thousand three hundred' WHERE a=22323;\nUPDATE t2 SET c='forty-three thousand forty-four' WHERE a=22324;\nUPDATE t2 SET c='fifty-four thousand four hundred fifty-five' WHERE a=22325;\nUPDATE t2 SET c='forty-one thousand eight hundred forty-five' WHERE a=22326;\nUPDATE t2 SET c='forty-three thousand eight hundred twenty-two' WHERE a=22327;\nUPDATE t2 SET c='thirty-four thousand seven hundred seventy-four' WHERE a=22328;\nUPDATE t2 SET c='thirty-four thousand six hundred fourteen' WHERE a=22329;\nUPDATE t2 SET c='twenty-five thousand two hundred four' WHERE a=22330;\nUPDATE t2 SET c='forty-two thousand one hundred fifty-nine' WHERE a=22331;\nUPDATE t2 SET c='thirty thousand four hundred six' WHERE a=22332;\nUPDATE t2 SET c='ninety-eight thousand two hundred thirty-five' WHERE a=22333;\nUPDATE t2 SET c='twenty-four thousand one hundred thirty-two' WHERE a=22334;\nUPDATE t2 SET c='twenty-seven thousand two hundred twenty-four' WHERE a=22335;\nUPDATE t2 SET c='sixty-one thousand nine hundred sixty-seven' WHERE a=22336;\nUPDATE t2 SET c='forty-nine thousand five hundred seventy-three' WHERE a=22337;\nUPDATE t2 SET c='two thousand fifty-nine' WHERE a=22338;\nUPDATE t2 SET c='eighty-seven thousand five hundred sixty-seven' WHERE a=22339;\nUPDATE t2 SET c='sixty-eight thousand nine hundred seventeen' WHERE a=22340;\nUPDATE t2 SET c='seventy-one thousand nine hundred eighty-two' WHERE a=22341;\nUPDATE t2 SET c='two thousand six hundred forty-five' WHERE a=22342;\nUPDATE t2 SET c='twenty-six thousand nine' WHERE a=22343;\nUPDATE t2 SET c='ninety-one thousand eight hundred ninety-six' WHERE a=22344;\nUPDATE t2 SET c='seventeen thousand five hundred seventy-five' WHERE a=22345;\nUPDATE t2 SET c='ninety-six thousand five hundred ten' WHERE a=22346;\nUPDATE t2 SET c='seventy-nine thousand nine hundred forty-nine' WHERE a=22347;\nUPDATE t2 SET c='seventy-six thousand five hundred sixty-eight' WHERE a=22348;\nUPDATE t2 SET c='eighty-three thousand one hundred six' WHERE a=22349;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-eight' WHERE a=22350;\nUPDATE t2 SET c='thirty-seven thousand six hundred fourteen' WHERE a=22351;\nUPDATE t2 SET c='ninety-three thousand one hundred sixty-five' WHERE a=22352;\nUPDATE t2 SET c='seventy-seven thousand nine hundred fifty-nine' WHERE a=22353;\nUPDATE t2 SET c='thirty-seven thousand seven hundred eighty-two' WHERE a=22354;\nUPDATE t2 SET c='fifty-nine thousand eight hundred eighty-four' WHERE a=22355;\nUPDATE t2 SET c='forty thousand six hundred forty-one' WHERE a=22356;\nUPDATE t2 SET c='thirty-one thousand five hundred forty-five' WHERE a=22357;\nUPDATE t2 SET c='twenty-nine thousand three hundred twenty-nine' WHERE a=22358;\nUPDATE t2 SET c='twenty-one thousand two hundred seventy-eight' WHERE a=22359;\nUPDATE t2 SET c='ninety-two thousand eight hundred eighty-six' WHERE a=22360;\nUPDATE t2 SET c='five thousand one hundred twenty' WHERE a=22361;\nUPDATE t2 SET c='seventy thousand nine hundred fifty-five' WHERE a=22362;\nUPDATE t2 SET c='ninety-three thousand one hundred forty-nine' WHERE a=22363;\nUPDATE t2 SET c='fifty-six thousand five hundred fifty-one' WHERE a=22364;\nUPDATE t2 SET c='twenty-eight thousand six hundred forty-three' WHERE a=22365;\nUPDATE t2 SET c='eighty-seven thousand nine hundred forty-five' WHERE a=22366;\nUPDATE t2 SET c='eighty-nine thousand seven hundred twenty-five' WHERE a=22367;\nUPDATE t2 SET c='sixty-seven thousand five hundred two' WHERE a=22368;\nUPDATE t2 SET c='seventy-eight thousand four hundred fifty-one' WHERE a=22369;\nUPDATE t2 SET c='forty-nine thousand three hundred thirty-one' WHERE a=22370;\nUPDATE t2 SET c='eighty-six thousand seven hundred forty-three' WHERE a=22371;\nUPDATE t2 SET c='sixty-five thousand one hundred eighty-four' WHERE a=22372;\nUPDATE t2 SET c='forty-one thousand four hundred sixty-eight' WHERE a=22373;\nUPDATE t2 SET c='forty-seven thousand fifteen' WHERE a=22374;\nUPDATE t2 SET c='two thousand five hundred thirty-one' WHERE a=22375;\nUPDATE t2 SET c='nineteen thousand three hundred twenty-one' WHERE a=22376;\nUPDATE t2 SET c='forty-four thousand six hundred thirty-four' WHERE a=22377;\nUPDATE t2 SET c='ninety-six thousand nine hundred seventy-eight' WHERE a=22378;\nUPDATE t2 SET c='forty-one thousand six hundred ninety-two' WHERE a=22379;\nUPDATE t2 SET c='five thousand five hundred eighty-seven' WHERE a=22380;\nUPDATE t2 SET c='forty-five thousand three hundred eighty-four' WHERE a=22381;\nUPDATE t2 SET c='eighty-three thousand eight hundred seventy-four' WHERE a=22382;\nUPDATE t2 SET c='ninety-two thousand nine hundred two' WHERE a=22383;\nUPDATE t2 SET c='eight thousand fifty-nine' WHERE a=22384;\nUPDATE t2 SET c='five thousand four hundred eighty-six' WHERE a=22385;\nUPDATE t2 SET c='ninety-four thousand four hundred fifty-two' WHERE a=22386;\nUPDATE t2 SET c='twenty thousand one hundred' WHERE a=22387;\nUPDATE t2 SET c='eighteen thousand twelve' WHERE a=22388;\nUPDATE t2 SET c='twenty-eight thousand five hundred thirty-five' WHERE a=22389;\nUPDATE t2 SET c='seventy-one thousand three hundred twenty-nine' WHERE a=22390;\nUPDATE t2 SET c='sixty-three thousand two hundred thirty-seven' WHERE a=22391;\nUPDATE t2 SET c='thirty-three thousand six hundred five' WHERE a=22392;\nUPDATE t2 SET c='thirty-nine thousand twenty-seven' WHERE a=22393;\nUPDATE t2 SET c='twenty-one thousand forty-five' WHERE a=22394;\nUPDATE t2 SET c='fourteen thousand one hundred fifty-three' WHERE a=22395;\nUPDATE t2 SET c='fifty-three thousand five hundred ninety-eight' WHERE a=22396;\nUPDATE t2 SET c='thirty-seven thousand one hundred sixty-four' WHERE a=22397;\nUPDATE t2 SET c='sixty-six thousand two hundred thirty-four' WHERE a=22398;\nUPDATE t2 SET c='forty-five thousand nine hundred seventy-six' WHERE a=22399;\nUPDATE t2 SET c='thirty-three thousand ninety-one' WHERE a=22400;\nUPDATE t2 SET c='seventy-eight thousand eight hundred eighty' WHERE a=22401;\nUPDATE t2 SET c='forty-eight thousand five hundred ninety-three' WHERE a=22402;\nUPDATE t2 SET c='thirty thousand seven hundred ninety-three' WHERE a=22403;\nUPDATE t2 SET c='two thousand six hundred sixty-three' WHERE a=22404;\nUPDATE t2 SET c='forty-eight thousand one hundred eighteen' WHERE a=22405;\nUPDATE t2 SET c='twenty-two thousand nine hundred ninety' WHERE a=22406;\nUPDATE t2 SET c='twenty-five thousand six hundred seventy-seven' WHERE a=22407;\nUPDATE t2 SET c='ninety-two thousand one hundred thirty-four' WHERE a=22408;\nUPDATE t2 SET c='eight thousand nine hundred eighty-one' WHERE a=22409;\nUPDATE t2 SET c='forty-three thousand six hundred fifty' WHERE a=22410;\nUPDATE t2 SET c='twelve thousand four hundred eight' WHERE a=22411;\nUPDATE t2 SET c='forty-one thousand eight hundred eighteen' WHERE a=22412;\nUPDATE t2 SET c='seventy-one thousand seven hundred thirty-nine' WHERE a=22413;\nUPDATE t2 SET c='twenty-two thousand seven hundred fifty' WHERE a=22414;\nUPDATE t2 SET c='thirty-one thousand eight hundred ninety-four' WHERE a=22415;\nUPDATE t2 SET c='fifty-one thousand two hundred sixty-six' WHERE a=22416;\nUPDATE t2 SET c='sixty-eight thousand four hundred eighty' WHERE a=22417;\nUPDATE t2 SET c='thirty-seven thousand three hundred sixty-eight' WHERE a=22418;\nUPDATE t2 SET c='thirty-two thousand five hundred twenty-five' WHERE a=22419;\nUPDATE t2 SET c='thirty thousand seven hundred eighty-one' WHERE a=22420;\nUPDATE t2 SET c='fifty-nine thousand five hundred thirty-three' WHERE a=22421;\nUPDATE t2 SET c='twenty-nine thousand seven hundred fifty-four' WHERE a=22422;\nUPDATE t2 SET c='twenty-nine thousand three hundred fifty-six' WHERE a=22423;\nUPDATE t2 SET c='ninety-one thousand three hundred fifty-seven' WHERE a=22424;\nUPDATE t2 SET c='fifty-one thousand one hundred forty-two' WHERE a=22425;\nUPDATE t2 SET c='fifteen thousand four hundred ninety' WHERE a=22426;\nUPDATE t2 SET c='forty-four thousand five hundred forty-six' WHERE a=22427;\nUPDATE t2 SET c='eighty-nine thousand two hundred eighty-five' WHERE a=22428;\nUPDATE t2 SET c='sixty-one thousand two hundred forty-eight' WHERE a=22429;\nUPDATE t2 SET c='seventy-three thousand five hundred ninety-six' WHERE a=22430;\nUPDATE t2 SET c='two hundred eleven' WHERE a=22431;\nUPDATE t2 SET c='twenty-six thousand five hundred' WHERE a=22432;\nUPDATE t2 SET c='sixty-one thousand three hundred twenty-three' WHERE a=22433;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-eight' WHERE a=22434;\nUPDATE t2 SET c='thirty-three thousand seven hundred twenty-three' WHERE a=22435;\nUPDATE t2 SET c='eighty-six thousand six hundred sixty-one' WHERE a=22436;\nUPDATE t2 SET c='thirty-three thousand nine hundred six' WHERE a=22437;\nUPDATE t2 SET c='eighty-five thousand five hundred eighty-two' WHERE a=22438;\nUPDATE t2 SET c='seventeen thousand nine hundred fifty-four' WHERE a=22439;\nUPDATE t2 SET c='eighty-nine thousand six hundred thirty-seven' WHERE a=22440;\nUPDATE t2 SET c='thirty thousand six hundred seventeen' WHERE a=22441;\nUPDATE t2 SET c='eighty-two thousand four hundred ninety-seven' WHERE a=22442;\nUPDATE t2 SET c='sixty-five thousand five hundred fifteen' WHERE a=22443;\nUPDATE t2 SET c='sixty-two thousand ninety-nine' WHERE a=22444;\nUPDATE t2 SET c='fifteen thousand seven hundred twenty-one' WHERE a=22445;\nUPDATE t2 SET c='eighty-three thousand seven hundred twenty-six' WHERE a=22446;\nUPDATE t2 SET c='thirty-nine thousand twenty-seven' WHERE a=22447;\nUPDATE t2 SET c='sixty-four thousand five hundred ninety-four' WHERE a=22448;\nUPDATE t2 SET c='thirty-eight thousand one hundred fifty-nine' WHERE a=22449;\nUPDATE t2 SET c='forty-six thousand six hundred sixty-five' WHERE a=22450;\nUPDATE t2 SET c='ninety-seven thousand seven hundred fifty-eight' WHERE a=22451;\nUPDATE t2 SET c='ninety-seven thousand four hundred twenty-nine' WHERE a=22452;\nUPDATE t2 SET c='twenty-four thousand four hundred fifty-two' WHERE a=22453;\nUPDATE t2 SET c='forty-three thousand eight hundred seventy-four' WHERE a=22454;\nUPDATE t2 SET c='forty-four thousand six hundred seventy-four' WHERE a=22455;\nUPDATE t2 SET c='twenty thousand sixty-six' WHERE a=22456;\nUPDATE t2 SET c='ninety-two thousand seven hundred fifty-four' WHERE a=22457;\nUPDATE t2 SET c='seventy-six thousand four hundred six' WHERE a=22458;\nUPDATE t2 SET c='fifty-two thousand seven hundred forty-two' WHERE a=22459;\nUPDATE t2 SET c='thirty-four thousand eight hundred thirty' WHERE a=22460;\nUPDATE t2 SET c='ninety-two thousand five hundred twenty' WHERE a=22461;\nUPDATE t2 SET c='twelve thousand nine hundred ninety' WHERE a=22462;\nUPDATE t2 SET c='sixty-two thousand two hundred seventy-seven' WHERE a=22463;\nUPDATE t2 SET c='forty-two thousand eight hundred fourteen' WHERE a=22464;\nUPDATE t2 SET c='ninety-six thousand seven hundred sixty-one' WHERE a=22465;\nUPDATE t2 SET c='fifty-five thousand nine hundred fifty-three' WHERE a=22466;\nUPDATE t2 SET c='ten thousand four hundred ninety-seven' WHERE a=22467;\nUPDATE t2 SET c='ninety-three thousand one hundred seventy-six' WHERE a=22468;\nUPDATE t2 SET c='seventy-two thousand nine hundred ninety-six' WHERE a=22469;\nUPDATE t2 SET c='sixty-one thousand eight hundred fifty-six' WHERE a=22470;\nUPDATE t2 SET c='twenty-nine thousand eight hundred twenty-seven' WHERE a=22471;\nUPDATE t2 SET c='twenty-one thousand eight hundred twenty-nine' WHERE a=22472;\nUPDATE t2 SET c='nine thousand one hundred seventy-four' WHERE a=22473;\nUPDATE t2 SET c='nine thousand six hundred thirty' WHERE a=22474;\nUPDATE t2 SET c='thirty-three thousand one hundred seventy-six' WHERE a=22475;\nUPDATE t2 SET c='sixty-seven thousand four hundred thirty-five' WHERE a=22476;\nUPDATE t2 SET c='sixteen thousand sixty-six' WHERE a=22477;\nUPDATE t2 SET c='five thousand seventy-nine' WHERE a=22478;\nUPDATE t2 SET c='forty-seven thousand five hundred eighty-eight' WHERE a=22479;\nUPDATE t2 SET c='sixty-two thousand six hundred seventy-seven' WHERE a=22480;\nUPDATE t2 SET c='five thousand one hundred seventy-five' WHERE a=22481;\nUPDATE t2 SET c='three hundred sixty' WHERE a=22482;\nUPDATE t2 SET c='seventy-two thousand eight hundred ninety' WHERE a=22483;\nUPDATE t2 SET c='sixty-four thousand two hundred ninety-nine' WHERE a=22484;\nUPDATE t2 SET c='ninety-seven thousand ninety-four' WHERE a=22485;\nUPDATE t2 SET c='seventy-six thousand one hundred fifty-four' WHERE a=22486;\nUPDATE t2 SET c='fourteen thousand two hundred sixty-seven' WHERE a=22487;\nUPDATE t2 SET c='fifty-two thousand nine hundred five' WHERE a=22488;\nUPDATE t2 SET c='thirty-nine thousand six hundred fifty-three' WHERE a=22489;\nUPDATE t2 SET c='eighty-nine thousand two hundred ninety' WHERE a=22490;\nUPDATE t2 SET c='fifty-nine thousand five hundred eight' WHERE a=22491;\nUPDATE t2 SET c='fifty-nine thousand seven hundred ninety-seven' WHERE a=22492;\nUPDATE t2 SET c='six thousand four hundred sixty' WHERE a=22493;\nUPDATE t2 SET c='sixty-two thousand seven hundred' WHERE a=22494;\nUPDATE t2 SET c='eighty-five thousand two hundred seventy-seven' WHERE a=22495;\nUPDATE t2 SET c='seventy-six thousand nine hundred seventy-one' WHERE a=22496;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-nine' WHERE a=22497;\nUPDATE t2 SET c='ninety-four thousand nine hundred thirty-nine' WHERE a=22498;\nUPDATE t2 SET c='fifty-seven thousand nine hundred fifty-two' WHERE a=22499;\nUPDATE t2 SET c='thirty-seven thousand seven hundred ninety-nine' WHERE a=22500;\nUPDATE t2 SET c='fifty-eight thousand five hundred eighteen' WHERE a=22501;\nUPDATE t2 SET c='seventy-one thousand one hundred fifty' WHERE a=22502;\nUPDATE t2 SET c='seventy-one thousand three hundred forty-eight' WHERE a=22503;\nUPDATE t2 SET c='thirty-two thousand four hundred ninety-eight' WHERE a=22504;\nUPDATE t2 SET c='thirty-seven thousand nine hundred eighteen' WHERE a=22505;\nUPDATE t2 SET c='thirty-four thousand one hundred twenty-eight' WHERE a=22506;\nUPDATE t2 SET c='sixty-four thousand two hundred three' WHERE a=22507;\nUPDATE t2 SET c='thirteen thousand one hundred twenty' WHERE a=22508;\nUPDATE t2 SET c='twenty-one thousand five hundred eighty-one' WHERE a=22509;\nUPDATE t2 SET c='seventy-seven thousand fifty-one' WHERE a=22510;\nUPDATE t2 SET c='thirty thousand five hundred six' WHERE a=22511;\nUPDATE t2 SET c='twenty thousand nine hundred fifty-four' WHERE a=22512;\nUPDATE t2 SET c='six thousand eight hundred eighty-three' WHERE a=22513;\nUPDATE t2 SET c='eighty-three thousand seven hundred eight' WHERE a=22514;\nUPDATE t2 SET c='forty thousand five hundred seventy-two' WHERE a=22515;\nUPDATE t2 SET c='seventy-nine thousand eight hundred ninety-one' WHERE a=22516;\nUPDATE t2 SET c='eighty-seven thousand nine hundred seven' WHERE a=22517;\nUPDATE t2 SET c='forty thousand seventy-eight' WHERE a=22518;\nUPDATE t2 SET c='thirty-three thousand six hundred fifty-five' WHERE a=22519;\nUPDATE t2 SET c='eighty-seven thousand five hundred four' WHERE a=22520;\nUPDATE t2 SET c='forty-three thousand two hundred eighty-nine' WHERE a=22521;\nUPDATE t2 SET c='ninety-two thousand nine hundred twenty-five' WHERE a=22522;\nUPDATE t2 SET c='ninety-eight thousand eight hundred three' WHERE a=22523;\nUPDATE t2 SET c='fifty-nine thousand nine hundred fifty' WHERE a=22524;\nUPDATE t2 SET c='sixty thousand four hundred six' WHERE a=22525;\nUPDATE t2 SET c='fifteen thousand eight hundred three' WHERE a=22526;\nUPDATE t2 SET c='eighty-seven thousand two hundred fifty-seven' WHERE a=22527;\nUPDATE t2 SET c='seventy-one thousand three hundred nineteen' WHERE a=22528;\nUPDATE t2 SET c='two thousand nine hundred sixty-four' WHERE a=22529;\nUPDATE t2 SET c='twenty-one thousand fifty-six' WHERE a=22530;\nUPDATE t2 SET c='ninety thousand nine hundred ninety-three' WHERE a=22531;\nUPDATE t2 SET c='forty-six thousand nine hundred thirty' WHERE a=22532;\nUPDATE t2 SET c='ten thousand seven hundred ten' WHERE a=22533;\nUPDATE t2 SET c='twenty-eight thousand two hundred fifty-six' WHERE a=22534;\nUPDATE t2 SET c='fifty-five thousand five hundred thirty-two' WHERE a=22535;\nUPDATE t2 SET c='thirty-six thousand five hundred ninety-three' WHERE a=22536;\nUPDATE t2 SET c='forty-three thousand thirty-seven' WHERE a=22537;\nUPDATE t2 SET c='fifty thousand two hundred twenty-three' WHERE a=22538;\nUPDATE t2 SET c='sixty-five thousand three hundred seventy' WHERE a=22539;\nUPDATE t2 SET c='twenty-four thousand four hundred twenty-six' WHERE a=22540;\nUPDATE t2 SET c='ninety-five thousand six hundred twenty-one' WHERE a=22541;\nUPDATE t2 SET c='twenty-nine thousand nine hundred eighty-one' WHERE a=22542;\nUPDATE t2 SET c='ninety-seven thousand seven hundred forty-four' WHERE a=22543;\nUPDATE t2 SET c='eighty-two thousand five hundred ninety-two' WHERE a=22544;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ninety-two' WHERE a=22545;\nUPDATE t2 SET c='seventy-seven thousand seven hundred seventy-four' WHERE a=22546;\nUPDATE t2 SET c='seventy-three thousand four hundred fifty-nine' WHERE a=22547;\nUPDATE t2 SET c='seven thousand seven hundred ninety-six' WHERE a=22548;\nUPDATE t2 SET c='eighty-seven thousand two hundred five' WHERE a=22549;\nUPDATE t2 SET c='sixty thousand four hundred twenty-four' WHERE a=22550;\nUPDATE t2 SET c='twenty-nine thousand four hundred twenty-five' WHERE a=22551;\nUPDATE t2 SET c='seventy-seven thousand nine hundred eighty-five' WHERE a=22552;\nUPDATE t2 SET c='forty-three thousand six hundred fifty-two' WHERE a=22553;\nUPDATE t2 SET c='nine thousand five hundred fifty-two' WHERE a=22554;\nUPDATE t2 SET c='ninety-seven thousand sixty-two' WHERE a=22555;\nUPDATE t2 SET c='fifty-eight thousand seven hundred eighty-nine' WHERE a=22556;\nUPDATE t2 SET c='sixty-three thousand three hundred thirty-one' WHERE a=22557;\nUPDATE t2 SET c='thirty thousand six hundred eighty-three' WHERE a=22558;\nUPDATE t2 SET c='eighty-six thousand two hundred fifty-eight' WHERE a=22559;\nUPDATE t2 SET c='sixty-eight thousand seven hundred fifty-six' WHERE a=22560;\nUPDATE t2 SET c='seventy-eight thousand six hundred seventy-four' WHERE a=22561;\nUPDATE t2 SET c='twenty-seven thousand five hundred sixty-nine' WHERE a=22562;\nUPDATE t2 SET c='eighty thousand one hundred nine' WHERE a=22563;\nUPDATE t2 SET c='fifty-four thousand four hundred ninety-four' WHERE a=22564;\nUPDATE t2 SET c='five thousand three hundred thirty-seven' WHERE a=22565;\nUPDATE t2 SET c='sixty thousand three hundred ninety-one' WHERE a=22566;\nUPDATE t2 SET c='ninety-two thousand five hundred twenty-one' WHERE a=22567;\nUPDATE t2 SET c='twenty-three thousand four hundred eighty' WHERE a=22568;\nUPDATE t2 SET c='seventy-nine thousand one hundred seventy-seven' WHERE a=22569;\nUPDATE t2 SET c='ninety-four thousand nine hundred forty' WHERE a=22570;\nUPDATE t2 SET c='ten thousand six hundred nineteen' WHERE a=22571;\nUPDATE t2 SET c='eighty-eight thousand four hundred sixteen' WHERE a=22572;\nUPDATE t2 SET c='eighty-nine thousand nine hundred ninety' WHERE a=22573;\nUPDATE t2 SET c='nineteen thousand five hundred forty-one' WHERE a=22574;\nUPDATE t2 SET c='six thousand six hundred eight' WHERE a=22575;\nUPDATE t2 SET c='sixty-two thousand five hundred forty-four' WHERE a=22576;\nUPDATE t2 SET c='sixty-six thousand one hundred fifty-six' WHERE a=22577;\nUPDATE t2 SET c='five hundred sixty-nine' WHERE a=22578;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-six' WHERE a=22579;\nUPDATE t2 SET c='fifty thousand thirteen' WHERE a=22580;\nUPDATE t2 SET c='eighty-six thousand five hundred twenty-eight' WHERE a=22581;\nUPDATE t2 SET c='twenty-nine thousand four hundred seventy-seven' WHERE a=22582;\nUPDATE t2 SET c='sixty-three thousand seven hundred twenty-five' WHERE a=22583;\nUPDATE t2 SET c='twenty thousand one hundred seventy-two' WHERE a=22584;\nUPDATE t2 SET c='eighty-four thousand eight hundred fourteen' WHERE a=22585;\nUPDATE t2 SET c='three thousand eight hundred thirty-five' WHERE a=22586;\nUPDATE t2 SET c='eleven thousand six hundred twenty-eight' WHERE a=22587;\nUPDATE t2 SET c='seventy-eight thousand seven hundred fifty-eight' WHERE a=22588;\nUPDATE t2 SET c='eighty-five thousand twenty-three' WHERE a=22589;\nUPDATE t2 SET c='thirty-seven thousand seven hundred eighty-five' WHERE a=22590;\nUPDATE t2 SET c='forty thousand two hundred sixty-two' WHERE a=22591;\nUPDATE t2 SET c='twenty-one thousand five hundred fourteen' WHERE a=22592;\nUPDATE t2 SET c='fourteen thousand seven hundred ninety-three' WHERE a=22593;\nUPDATE t2 SET c='seventy-two thousand eight hundred ninety-nine' WHERE a=22594;\nUPDATE t2 SET c='twenty-seven thousand eight hundred seventeen' WHERE a=22595;\nUPDATE t2 SET c='fifty-six thousand two hundred twenty-five' WHERE a=22596;\nUPDATE t2 SET c='eighty-seven thousand six hundred fifty-three' WHERE a=22597;\nUPDATE t2 SET c='thirteen thousand four hundred seventy-eight' WHERE a=22598;\nUPDATE t2 SET c='ninety-eight thousand two hundred fifty-two' WHERE a=22599;\nUPDATE t2 SET c='nine hundred twenty-nine' WHERE a=22600;\nUPDATE t2 SET c='fifty-one thousand four hundred sixty-two' WHERE a=22601;\nUPDATE t2 SET c='seventy-three thousand eight hundred forty-two' WHERE a=22602;\nUPDATE t2 SET c='seventy-seven thousand four hundred eighty-eight' WHERE a=22603;\nUPDATE t2 SET c='eighty-three thousand two hundred one' WHERE a=22604;\nUPDATE t2 SET c='fifty-seven thousand three hundred sixty-six' WHERE a=22605;\nUPDATE t2 SET c='fifty-eight thousand fifty' WHERE a=22606;\nUPDATE t2 SET c='forty-seven thousand six hundred ninety-two' WHERE a=22607;\nUPDATE t2 SET c='ninety-two thousand four hundred twenty-seven' WHERE a=22608;\nUPDATE t2 SET c='sixteen thousand eight hundred seven' WHERE a=22609;\nUPDATE t2 SET c='seventeen thousand three hundred eighty-two' WHERE a=22610;\nUPDATE t2 SET c='forty-three thousand three hundred thirty-four' WHERE a=22611;\nUPDATE t2 SET c='seventy-three thousand one hundred thirty-one' WHERE a=22612;\nUPDATE t2 SET c='forty-nine thousand eight hundred forty-two' WHERE a=22613;\nUPDATE t2 SET c='ninety-nine thousand two hundred sixty-one' WHERE a=22614;\nUPDATE t2 SET c='forty-six thousand nine hundred twenty-one' WHERE a=22615;\nUPDATE t2 SET c='five thousand four hundred fifty-eight' WHERE a=22616;\nUPDATE t2 SET c='forty-five thousand two hundred three' WHERE a=22617;\nUPDATE t2 SET c='sixty-five thousand four hundred thirty-eight' WHERE a=22618;\nUPDATE t2 SET c='fifty-four thousand six hundred twenty-four' WHERE a=22619;\nUPDATE t2 SET c='sixty-eight thousand eight hundred sixty-eight' WHERE a=22620;\nUPDATE t2 SET c='forty-three thousand seven hundred fifty-three' WHERE a=22621;\nUPDATE t2 SET c='eleven thousand four hundred thirty-six' WHERE a=22622;\nUPDATE t2 SET c='sixty-four thousand fifty' WHERE a=22623;\nUPDATE t2 SET c='thirty-two thousand two hundred ninety' WHERE a=22624;\nUPDATE t2 SET c='seventy-nine thousand two hundred seventy-six' WHERE a=22625;\nUPDATE t2 SET c='fifty-four thousand two hundred fifty-eight' WHERE a=22626;\nUPDATE t2 SET c='thirty-eight thousand two hundred thirty-four' WHERE a=22627;\nUPDATE t2 SET c='sixty-eight thousand seven hundred seventy-four' WHERE a=22628;\nUPDATE t2 SET c='eighty-nine thousand six hundred seventy-six' WHERE a=22629;\nUPDATE t2 SET c='fifty-nine thousand six hundred sixty-seven' WHERE a=22630;\nUPDATE t2 SET c='six thousand nine hundred seventy-seven' WHERE a=22631;\nUPDATE t2 SET c='twelve thousand five hundred two' WHERE a=22632;\nUPDATE t2 SET c='sixty-one thousand one hundred thirteen' WHERE a=22633;\nUPDATE t2 SET c='nineteen thousand two hundred thirty-eight' WHERE a=22634;\nUPDATE t2 SET c='twenty-one thousand four hundred eighteen' WHERE a=22635;\nUPDATE t2 SET c='twenty-seven thousand eight hundred thirteen' WHERE a=22636;\nUPDATE t2 SET c='ninety-six thousand seven hundred eighty-nine' WHERE a=22637;\nUPDATE t2 SET c='twenty-four thousand two hundred twenty-five' WHERE a=22638;\nUPDATE t2 SET c='fifty-three thousand two hundred fifty-six' WHERE a=22639;\nUPDATE t2 SET c='thirty-two thousand ninety' WHERE a=22640;\nUPDATE t2 SET c='sixty-two thousand six hundred twenty' WHERE a=22641;\nUPDATE t2 SET c='forty-eight thousand nine hundred thirty-eight' WHERE a=22642;\nUPDATE t2 SET c='fifty-two thousand five hundred sixty-two' WHERE a=22643;\nUPDATE t2 SET c='eighty-five thousand ninety-two' WHERE a=22644;\nUPDATE t2 SET c='ninety-one thousand five hundred fifty-eight' WHERE a=22645;\nUPDATE t2 SET c='fifty-eight thousand one hundred thirty-three' WHERE a=22646;\nUPDATE t2 SET c='fifty-three thousand forty-seven' WHERE a=22647;\nUPDATE t2 SET c='ninety-four thousand seven hundred fifty-four' WHERE a=22648;\nUPDATE t2 SET c='fifty-nine thousand four hundred ninety-four' WHERE a=22649;\nUPDATE t2 SET c='seven hundred seventy-four' WHERE a=22650;\nUPDATE t2 SET c='eighty-four thousand seven hundred thirty-five' WHERE a=22651;\nUPDATE t2 SET c='fifty-two thousand one hundred thirteen' WHERE a=22652;\nUPDATE t2 SET c='eighty thousand nine hundred fifty-eight' WHERE a=22653;\nUPDATE t2 SET c='seventy-five thousand four hundred eighty-one' WHERE a=22654;\nUPDATE t2 SET c='sixty-nine thousand eight hundred forty-six' WHERE a=22655;\nUPDATE t2 SET c='sixty-six thousand five hundred ninety-five' WHERE a=22656;\nUPDATE t2 SET c='thirty-two thousand nine hundred eighty-eight' WHERE a=22657;\nUPDATE t2 SET c='twenty-six thousand two hundred ninety-seven' WHERE a=22658;\nUPDATE t2 SET c='ninety-one thousand six hundred sixty-one' WHERE a=22659;\nUPDATE t2 SET c='seventy-eight thousand six hundred twenty-nine' WHERE a=22660;\nUPDATE t2 SET c='eighty-nine thousand ninety-one' WHERE a=22661;\nUPDATE t2 SET c='seventy thousand eight hundred thirty-one' WHERE a=22662;\nUPDATE t2 SET c='eighty-one thousand five hundred sixty-four' WHERE a=22663;\nUPDATE t2 SET c='seventy-seven thousand five hundred twenty-nine' WHERE a=22664;\nUPDATE t2 SET c='twelve thousand three hundred ninety-three' WHERE a=22665;\nUPDATE t2 SET c='eighty-five thousand four hundred ninety-eight' WHERE a=22666;\nUPDATE t2 SET c='thirty-eight thousand three' WHERE a=22667;\nUPDATE t2 SET c='forty-one thousand nine hundred eighty-six' WHERE a=22668;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-five' WHERE a=22669;\nUPDATE t2 SET c='fifty-seven thousand three hundred fifty-seven' WHERE a=22670;\nUPDATE t2 SET c='twenty-five thousand seven hundred ten' WHERE a=22671;\nUPDATE t2 SET c='fifty-nine thousand four hundred seventy-seven' WHERE a=22672;\nUPDATE t2 SET c='thirty-seven thousand three hundred ninety-three' WHERE a=22673;\nUPDATE t2 SET c='seventy-seven thousand four hundred sixty-four' WHERE a=22674;\nUPDATE t2 SET c='forty-four thousand nine hundred eight' WHERE a=22675;\nUPDATE t2 SET c='fifty-seven thousand seven hundred fourteen' WHERE a=22676;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-eight' WHERE a=22677;\nUPDATE t2 SET c='forty-one thousand five hundred thirty' WHERE a=22678;\nUPDATE t2 SET c='sixty-five thousand eight hundred thirty-three' WHERE a=22679;\nUPDATE t2 SET c='ninety-nine thousand one hundred eighty-six' WHERE a=22680;\nUPDATE t2 SET c='twenty-five thousand sixty-three' WHERE a=22681;\nUPDATE t2 SET c='forty thousand two hundred seventy-five' WHERE a=22682;\nUPDATE t2 SET c='sixty-seven thousand forty-eight' WHERE a=22683;\nUPDATE t2 SET c='ninety-six thousand three hundred ninety-eight' WHERE a=22684;\nUPDATE t2 SET c='fourteen thousand six hundred thirty-three' WHERE a=22685;\nUPDATE t2 SET c='seventy-six thousand seven hundred eighty-one' WHERE a=22686;\nUPDATE t2 SET c='twelve thousand six hundred forty-three' WHERE a=22687;\nUPDATE t2 SET c='sixty-four thousand two hundred ninety-eight' WHERE a=22688;\nUPDATE t2 SET c='thirty-one thousand seventy-two' WHERE a=22689;\nUPDATE t2 SET c='sixty-five thousand six hundred ninety-one' WHERE a=22690;\nUPDATE t2 SET c='twenty-six thousand two hundred twenty-six' WHERE a=22691;\nUPDATE t2 SET c='seventy-four thousand one hundred twelve' WHERE a=22692;\nUPDATE t2 SET c='forty-one thousand five hundred thirteen' WHERE a=22693;\nUPDATE t2 SET c='thirty thousand eight hundred ten' WHERE a=22694;\nUPDATE t2 SET c='seventy-four thousand six hundred forty-six' WHERE a=22695;\nUPDATE t2 SET c='thirty-six thousand five hundred eighty-four' WHERE a=22696;\nUPDATE t2 SET c='thirty-five thousand three hundred seventy-nine' WHERE a=22697;\nUPDATE t2 SET c='thirty-five thousand seven hundred ninety' WHERE a=22698;\nUPDATE t2 SET c='thirteen thousand nine hundred thirty' WHERE a=22699;\nUPDATE t2 SET c='eighty-two thousand nine hundred thirty-six' WHERE a=22700;\nUPDATE t2 SET c='fifty-one thousand forty-two' WHERE a=22701;\nUPDATE t2 SET c='fifty-six thousand four hundred sixty' WHERE a=22702;\nUPDATE t2 SET c='eighteen thousand eight hundred ninety-six' WHERE a=22703;\nUPDATE t2 SET c='ninety-two thousand two hundred seventeen' WHERE a=22704;\nUPDATE t2 SET c='forty-five thousand one hundred eighty-one' WHERE a=22705;\nUPDATE t2 SET c='five thousand eight hundred eighty-two' WHERE a=22706;\nUPDATE t2 SET c='thirty-eight thousand two hundred ninety-nine' WHERE a=22707;\nUPDATE t2 SET c='twenty-nine thousand seven' WHERE a=22708;\nUPDATE t2 SET c='eighty-six thousand eight hundred thirty-two' WHERE a=22709;\nUPDATE t2 SET c='thirty-five thousand three hundred fifty-five' WHERE a=22710;\nUPDATE t2 SET c='thirty-one thousand six hundred ninety-three' WHERE a=22711;\nUPDATE t2 SET c='one thousand six hundred twelve' WHERE a=22712;\nUPDATE t2 SET c='thirty-eight thousand seven hundred sixty-three' WHERE a=22713;\nUPDATE t2 SET c='thirty-two thousand seven hundred nine' WHERE a=22714;\nUPDATE t2 SET c='eighty-four thousand nine hundred eighty-eight' WHERE a=22715;\nUPDATE t2 SET c='ninety-five thousand four hundred fifteen' WHERE a=22716;\nUPDATE t2 SET c='fifty thousand four hundred eighty-two' WHERE a=22717;\nUPDATE t2 SET c='two thousand seven hundred two' WHERE a=22718;\nUPDATE t2 SET c='nine thousand three hundred ninety-four' WHERE a=22719;\nUPDATE t2 SET c='thirty-two thousand nine' WHERE a=22720;\nUPDATE t2 SET c='one thousand eight hundred ninety-three' WHERE a=22721;\nUPDATE t2 SET c='sixty-one thousand two hundred four' WHERE a=22722;\nUPDATE t2 SET c='eighty-three thousand seven hundred sixty-nine' WHERE a=22723;\nUPDATE t2 SET c='twenty-four thousand six hundred forty-eight' WHERE a=22724;\nUPDATE t2 SET c='ninety-nine thousand two hundred fifty-five' WHERE a=22725;\nUPDATE t2 SET c='eighteen thousand three hundred thirty' WHERE a=22726;\nUPDATE t2 SET c='nineteen thousand six hundred forty-five' WHERE a=22727;\nUPDATE t2 SET c='ninety-four thousand four hundred eighty-one' WHERE a=22728;\nUPDATE t2 SET c='fifty-nine thousand eighty-six' WHERE a=22729;\nUPDATE t2 SET c='four thousand forty-eight' WHERE a=22730;\nUPDATE t2 SET c='seventy-five thousand eight hundred forty-eight' WHERE a=22731;\nUPDATE t2 SET c='ninety-two thousand two hundred twenty-one' WHERE a=22732;\nUPDATE t2 SET c='sixty-three thousand six hundred fifty-five' WHERE a=22733;\nUPDATE t2 SET c='fifty-two thousand four hundred ninety-eight' WHERE a=22734;\nUPDATE t2 SET c='fifty-six thousand seventy-two' WHERE a=22735;\nUPDATE t2 SET c='seventy-one thousand seven hundred thirteen' WHERE a=22736;\nUPDATE t2 SET c='sixty-six thousand two hundred fifteen' WHERE a=22737;\nUPDATE t2 SET c='forty-six thousand ten' WHERE a=22738;\nUPDATE t2 SET c='twenty thousand nine hundred' WHERE a=22739;\nUPDATE t2 SET c='twenty-three thousand three hundred thirty-six' WHERE a=22740;\nUPDATE t2 SET c='thirty-eight thousand eight hundred twenty-eight' WHERE a=22741;\nUPDATE t2 SET c='fifty thousand five hundred forty-nine' WHERE a=22742;\nUPDATE t2 SET c='two thousand four hundred two' WHERE a=22743;\nUPDATE t2 SET c='fifty-nine thousand seven hundred forty-three' WHERE a=22744;\nUPDATE t2 SET c='sixty-eight thousand six hundred thirty-four' WHERE a=22745;\nUPDATE t2 SET c='fifty-nine thousand seven hundred ninety-two' WHERE a=22746;\nUPDATE t2 SET c='twenty thousand six hundred six' WHERE a=22747;\nUPDATE t2 SET c='forty-three thousand six hundred seventy-seven' WHERE a=22748;\nUPDATE t2 SET c='ninety-four thousand three hundred twenty-seven' WHERE a=22749;\nUPDATE t2 SET c='fifty-nine thousand five hundred twenty-six' WHERE a=22750;\nUPDATE t2 SET c='sixty-nine thousand two hundred twenty-six' WHERE a=22751;\nUPDATE t2 SET c='eighty-six thousand three hundred eighty-six' WHERE a=22752;\nUPDATE t2 SET c='seventy-six thousand four hundred three' WHERE a=22753;\nUPDATE t2 SET c='four hundred twenty-five' WHERE a=22754;\nUPDATE t2 SET c='eighty thousand eight hundred eleven' WHERE a=22755;\nUPDATE t2 SET c='ninety-six thousand six hundred' WHERE a=22756;\nUPDATE t2 SET c='fifty thousand three hundred thirty-three' WHERE a=22757;\nUPDATE t2 SET c='thirty thousand three hundred twenty-nine' WHERE a=22758;\nUPDATE t2 SET c='seventy-eight thousand seven hundred seventeen' WHERE a=22759;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-eight' WHERE a=22760;\nUPDATE t2 SET c='fifty thousand three hundred fifty-eight' WHERE a=22761;\nUPDATE t2 SET c='sixty-eight thousand three hundred twenty-three' WHERE a=22762;\nUPDATE t2 SET c='fifty-four thousand six hundred sixty-nine' WHERE a=22763;\nUPDATE t2 SET c='forty-four thousand four hundred twenty-six' WHERE a=22764;\nUPDATE t2 SET c='thirty-five thousand four hundred fifty-seven' WHERE a=22765;\nUPDATE t2 SET c='ninety-four thousand three hundred fifty-one' WHERE a=22766;\nUPDATE t2 SET c='seventy thousand seven hundred three' WHERE a=22767;\nUPDATE t2 SET c='fifty-one thousand four hundred eighty-six' WHERE a=22768;\nUPDATE t2 SET c='twenty-one thousand four hundred sixteen' WHERE a=22769;\nUPDATE t2 SET c='fifty thousand six hundred twenty-two' WHERE a=22770;\nUPDATE t2 SET c='seventy-six thousand three hundred twenty-three' WHERE a=22771;\nUPDATE t2 SET c='fifty-two thousand one hundred thirty-two' WHERE a=22772;\nUPDATE t2 SET c='ninety-eight thousand one hundred sixty-two' WHERE a=22773;\nUPDATE t2 SET c='ninety-nine thousand three hundred fifty-five' WHERE a=22774;\nUPDATE t2 SET c='seventy-three thousand six hundred two' WHERE a=22775;\nUPDATE t2 SET c='eighty-nine thousand four hundred eighty-eight' WHERE a=22776;\nUPDATE t2 SET c='seventy-four thousand six hundred fifteen' WHERE a=22777;\nUPDATE t2 SET c='twenty-nine thousand three hundred thirty-six' WHERE a=22778;\nUPDATE t2 SET c='seventeen thousand eight hundred forty-five' WHERE a=22779;\nUPDATE t2 SET c='thirty-nine thousand sixty-six' WHERE a=22780;\nUPDATE t2 SET c='fifty-three thousand one' WHERE a=22781;\nUPDATE t2 SET c='thirty-two thousand eight hundred ninety-two' WHERE a=22782;\nUPDATE t2 SET c='ninety-four thousand six hundred eighty-six' WHERE a=22783;\nUPDATE t2 SET c='seventy-three thousand two hundred one' WHERE a=22784;\nUPDATE t2 SET c='thirty-three thousand four hundred twenty-three' WHERE a=22785;\nUPDATE t2 SET c='forty-six thousand nine hundred ninety-seven' WHERE a=22786;\nUPDATE t2 SET c='sixty-one thousand six hundred forty-seven' WHERE a=22787;\nUPDATE t2 SET c='seventy-two thousand five hundred seventy-eight' WHERE a=22788;\nUPDATE t2 SET c='fifty thousand three hundred sixty-three' WHERE a=22789;\nUPDATE t2 SET c='sixty-five thousand two hundred forty-six' WHERE a=22790;\nUPDATE t2 SET c='sixty-seven thousand one hundred twenty-nine' WHERE a=22791;\nUPDATE t2 SET c='ninety-four thousand three hundred forty-one' WHERE a=22792;\nUPDATE t2 SET c='ninety thousand eight hundred fifty-seven' WHERE a=22793;\nUPDATE t2 SET c='sixteen thousand five hundred six' WHERE a=22794;\nUPDATE t2 SET c='ninety-five thousand eight hundred thirty-three' WHERE a=22795;\nUPDATE t2 SET c='forty-three thousand seven hundred eighty-three' WHERE a=22796;\nUPDATE t2 SET c='forty-six thousand eight hundred eleven' WHERE a=22797;\nUPDATE t2 SET c='seventy-seven thousand four hundred thirty-eight' WHERE a=22798;\nUPDATE t2 SET c='thirty-seven thousand four hundred three' WHERE a=22799;\nUPDATE t2 SET c='nine thousand six hundred sixty-five' WHERE a=22800;\nUPDATE t2 SET c='sixty-nine thousand five hundred fifty-one' WHERE a=22801;\nUPDATE t2 SET c='thirty thousand four hundred thirty-seven' WHERE a=22802;\nUPDATE t2 SET c='seventy-nine thousand seven hundred forty-seven' WHERE a=22803;\nUPDATE t2 SET c='fifty-one thousand one hundred eighty-seven' WHERE a=22804;\nUPDATE t2 SET c='twenty-seven thousand one hundred forty' WHERE a=22805;\nUPDATE t2 SET c='thirty-eight thousand four hundred fifty-five' WHERE a=22806;\nUPDATE t2 SET c='eighty-seven thousand nine hundred fifty' WHERE a=22807;\nUPDATE t2 SET c='ninety-four thousand six hundred forty-one' WHERE a=22808;\nUPDATE t2 SET c='fifty-six thousand eight hundred twenty-five' WHERE a=22809;\nUPDATE t2 SET c='forty-two thousand fifteen' WHERE a=22810;\nUPDATE t2 SET c='two thousand six hundred ten' WHERE a=22811;\nUPDATE t2 SET c='twenty-two thousand six hundred seventy-six' WHERE a=22812;\nUPDATE t2 SET c='five thousand four' WHERE a=22813;\nUPDATE t2 SET c='thirty-five thousand six hundred seventy-four' WHERE a=22814;\nUPDATE t2 SET c='ninety-five thousand nine hundred twenty-one' WHERE a=22815;\nUPDATE t2 SET c='ninety-seven thousand two hundred sixty-two' WHERE a=22816;\nUPDATE t2 SET c='forty-two thousand seven hundred eighty-three' WHERE a=22817;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-three' WHERE a=22818;\nUPDATE t2 SET c='ninety-one thousand four hundred sixty-three' WHERE a=22819;\nUPDATE t2 SET c='seventy-four thousand six hundred sixteen' WHERE a=22820;\nUPDATE t2 SET c='thirty-eight thousand thirty' WHERE a=22821;\nUPDATE t2 SET c='fifty-one thousand eight hundred forty-six' WHERE a=22822;\nUPDATE t2 SET c='forty-nine thousand two hundred eighty-one' WHERE a=22823;\nUPDATE t2 SET c='sixty thousand five hundred fifty-one' WHERE a=22824;\nUPDATE t2 SET c='four thousand three hundred sixty-three' WHERE a=22825;\nUPDATE t2 SET c='fifty-six thousand three hundred fifty-five' WHERE a=22826;\nUPDATE t2 SET c='eighteen thousand four hundred' WHERE a=22827;\nUPDATE t2 SET c='thirty-eight thousand two hundred eighty-four' WHERE a=22828;\nUPDATE t2 SET c='fifty-seven thousand eight hundred eighty-eight' WHERE a=22829;\nUPDATE t2 SET c='eight thousand thirteen' WHERE a=22830;\nUPDATE t2 SET c='thirteen thousand two hundred ninety' WHERE a=22831;\nUPDATE t2 SET c='twenty-nine thousand nine hundred thirty-five' WHERE a=22832;\nUPDATE t2 SET c='twenty-one thousand five hundred ninety-five' WHERE a=22833;\nUPDATE t2 SET c='sixty-eight thousand six hundred five' WHERE a=22834;\nUPDATE t2 SET c='forty-nine thousand one hundred sixty-four' WHERE a=22835;\nUPDATE t2 SET c='seventy-seven thousand seven hundred seventy-nine' WHERE a=22836;\nUPDATE t2 SET c='fifty-four thousand three hundred twenty' WHERE a=22837;\nUPDATE t2 SET c='seventy-one thousand four hundred five' WHERE a=22838;\nUPDATE t2 SET c='forty thousand nine hundred eighty-four' WHERE a=22839;\nUPDATE t2 SET c='seventy-nine thousand six hundred seventy-eight' WHERE a=22840;\nUPDATE t2 SET c='twenty-seven thousand seven hundred eighty-four' WHERE a=22841;\nUPDATE t2 SET c='fifty-eight thousand two hundred thirty-four' WHERE a=22842;\nUPDATE t2 SET c='seventy-nine thousand three hundred ninety' WHERE a=22843;\nUPDATE t2 SET c='forty-five thousand five hundred twenty-six' WHERE a=22844;\nUPDATE t2 SET c='fifty-five thousand twenty-four' WHERE a=22845;\nUPDATE t2 SET c='seventy-four thousand three hundred sixty-eight' WHERE a=22846;\nUPDATE t2 SET c='eight hundred sixty' WHERE a=22847;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixty-four' WHERE a=22848;\nUPDATE t2 SET c='twenty-nine thousand two hundred fifteen' WHERE a=22849;\nUPDATE t2 SET c='thirty thousand five hundred thirty-one' WHERE a=22850;\nUPDATE t2 SET c='nineteen thousand four hundred twenty-eight' WHERE a=22851;\nUPDATE t2 SET c='forty-three thousand two hundred twenty-seven' WHERE a=22852;\nUPDATE t2 SET c='forty-four thousand six hundred ninety-eight' WHERE a=22853;\nUPDATE t2 SET c='eighty-eight thousand seven hundred ninety-six' WHERE a=22854;\nUPDATE t2 SET c='twelve thousand three hundred forty' WHERE a=22855;\nUPDATE t2 SET c='forty-two thousand three hundred ninety' WHERE a=22856;\nUPDATE t2 SET c='sixty-three thousand five hundred fifty-four' WHERE a=22857;\nUPDATE t2 SET c='forty-three thousand two hundred five' WHERE a=22858;\nUPDATE t2 SET c='fifty thousand seven hundred four' WHERE a=22859;\nUPDATE t2 SET c='fifty-seven thousand five hundred eighty-five' WHERE a=22860;\nUPDATE t2 SET c='forty-four thousand five hundred forty-three' WHERE a=22861;\nUPDATE t2 SET c='eighty-four thousand seven hundred twenty-six' WHERE a=22862;\nUPDATE t2 SET c='sixty-eight thousand five hundred ninety-seven' WHERE a=22863;\nUPDATE t2 SET c='ninety-seven thousand one hundred eighty-four' WHERE a=22864;\nUPDATE t2 SET c='ten thousand five hundred twenty-five' WHERE a=22865;\nUPDATE t2 SET c='forty-three thousand forty-four' WHERE a=22866;\nUPDATE t2 SET c='sixty-three thousand eight hundred eighty-nine' WHERE a=22867;\nUPDATE t2 SET c='eighteen thousand seven hundred fifteen' WHERE a=22868;\nUPDATE t2 SET c='forty-four thousand four hundred sixty-five' WHERE a=22869;\nUPDATE t2 SET c='eighty-eight thousand two hundred thirty' WHERE a=22870;\nUPDATE t2 SET c='seven thousand seventy' WHERE a=22871;\nUPDATE t2 SET c='ninety-three thousand five hundred ninety-three' WHERE a=22872;\nUPDATE t2 SET c='seven thousand one hundred forty-four' WHERE a=22873;\nUPDATE t2 SET c='thirty-six thousand five hundred fifty-three' WHERE a=22874;\nUPDATE t2 SET c='seventy-one thousand seven hundred twenty-eight' WHERE a=22875;\nUPDATE t2 SET c='ninety-five thousand one hundred seventy-nine' WHERE a=22876;\nUPDATE t2 SET c='sixty-two thousand five hundred fifteen' WHERE a=22877;\nUPDATE t2 SET c='one thousand seven hundred sixty-three' WHERE a=22878;\nUPDATE t2 SET c='seventy-six thousand eight hundred seventy' WHERE a=22879;\nUPDATE t2 SET c='thirty-one thousand two hundred ninety-four' WHERE a=22880;\nUPDATE t2 SET c='sixty-two thousand nine hundred nine' WHERE a=22881;\nUPDATE t2 SET c='thirteen thousand six hundred seventy-one' WHERE a=22882;\nUPDATE t2 SET c='ninety-nine thousand four hundred sixty-nine' WHERE a=22883;\nUPDATE t2 SET c='thirty thousand seven hundred nine' WHERE a=22884;\nUPDATE t2 SET c='twelve thousand four hundred sixty-seven' WHERE a=22885;\nUPDATE t2 SET c='twenty-five thousand one hundred four' WHERE a=22886;\nUPDATE t2 SET c='thirty-eight thousand' WHERE a=22887;\nUPDATE t2 SET c='five thousand three hundred ninety-seven' WHERE a=22888;\nUPDATE t2 SET c='two thousand twenty-three' WHERE a=22889;\nUPDATE t2 SET c='fifty-eight thousand seven hundred seventy' WHERE a=22890;\nUPDATE t2 SET c='fifty-seven thousand five hundred thirty-one' WHERE a=22891;\nUPDATE t2 SET c='fifty-three thousand three hundred twenty-six' WHERE a=22892;\nUPDATE t2 SET c='eighty-two thousand eight hundred' WHERE a=22893;\nUPDATE t2 SET c='seventeen thousand seventy-nine' WHERE a=22894;\nUPDATE t2 SET c='seventy-seven thousand one hundred sixty-two' WHERE a=22895;\nUPDATE t2 SET c='ninety-six thousand eight hundred eighty-three' WHERE a=22896;\nUPDATE t2 SET c='sixty-nine thousand nine hundred sixty-nine' WHERE a=22897;\nUPDATE t2 SET c='ninety-two thousand nine hundred eleven' WHERE a=22898;\nUPDATE t2 SET c='twenty-seven thousand six hundred sixty-two' WHERE a=22899;\nUPDATE t2 SET c='ninety-two thousand eight hundred seventy-seven' WHERE a=22900;\nUPDATE t2 SET c='twenty-six thousand seven hundred seventy-nine' WHERE a=22901;\nUPDATE t2 SET c='twenty-one thousand forty-four' WHERE a=22902;\nUPDATE t2 SET c='twenty thousand seven hundred seventy-one' WHERE a=22903;\nUPDATE t2 SET c='fifty-one thousand five hundred eighty-nine' WHERE a=22904;\nUPDATE t2 SET c='twenty-nine thousand one hundred eighty-five' WHERE a=22905;\nUPDATE t2 SET c='sixty-six thousand seven hundred sixty-six' WHERE a=22906;\nUPDATE t2 SET c='ten thousand two hundred six' WHERE a=22907;\nUPDATE t2 SET c='forty-five thousand ninety-two' WHERE a=22908;\nUPDATE t2 SET c='eighty-five thousand six hundred ninety-nine' WHERE a=22909;\nUPDATE t2 SET c='seventy-one thousand seven hundred eighty-two' WHERE a=22910;\nUPDATE t2 SET c='eighty-six thousand five hundred seven' WHERE a=22911;\nUPDATE t2 SET c='nineteen thousand seven hundred twenty-three' WHERE a=22912;\nUPDATE t2 SET c='five thousand seven hundred fifty-five' WHERE a=22913;\nUPDATE t2 SET c='ninety-three thousand nine hundred sixty-two' WHERE a=22914;\nUPDATE t2 SET c='ninety thousand four hundred forty-one' WHERE a=22915;\nUPDATE t2 SET c='eighty-six thousand one hundred eleven' WHERE a=22916;\nUPDATE t2 SET c='forty-six thousand four hundred eighty-nine' WHERE a=22917;\nUPDATE t2 SET c='two thousand three hundred fifty-one' WHERE a=22918;\nUPDATE t2 SET c='ninety-five thousand four hundred ninety-four' WHERE a=22919;\nUPDATE t2 SET c='six thousand five hundred fifty-seven' WHERE a=22920;\nUPDATE t2 SET c='thirty-eight thousand eight hundred nineteen' WHERE a=22921;\nUPDATE t2 SET c='fifty-six thousand two hundred twenty-eight' WHERE a=22922;\nUPDATE t2 SET c='twenty-three thousand nine hundred thirty-six' WHERE a=22923;\nUPDATE t2 SET c='ninety-two thousand ten' WHERE a=22924;\nUPDATE t2 SET c='fifty-nine thousand one hundred thirty-eight' WHERE a=22925;\nUPDATE t2 SET c='ninety-three thousand six hundred twenty-one' WHERE a=22926;\nUPDATE t2 SET c='twenty-two thousand three hundred thirteen' WHERE a=22927;\nUPDATE t2 SET c='sixty-one thousand six hundred twenty-four' WHERE a=22928;\nUPDATE t2 SET c='eighty-six' WHERE a=22929;\nUPDATE t2 SET c='thirty-one thousand five hundred sixty-seven' WHERE a=22930;\nUPDATE t2 SET c='fifty thousand five hundred eighty-three' WHERE a=22931;\nUPDATE t2 SET c='sixty-four thousand seven hundred twenty-eight' WHERE a=22932;\nUPDATE t2 SET c='forty-six thousand six hundred sixty-two' WHERE a=22933;\nUPDATE t2 SET c='ninety-four thousand six hundred seventy-three' WHERE a=22934;\nUPDATE t2 SET c='forty-one thousand nine hundred ninety-two' WHERE a=22935;\nUPDATE t2 SET c='fifty-two thousand three hundred ninety-eight' WHERE a=22936;\nUPDATE t2 SET c='sixty-one thousand six hundred thirty' WHERE a=22937;\nUPDATE t2 SET c='seven thousand ninety-one' WHERE a=22938;\nUPDATE t2 SET c='eighty-three thousand eight hundred seventy-three' WHERE a=22939;\nUPDATE t2 SET c='three' WHERE a=22940;\nUPDATE t2 SET c='four thousand two hundred sixty-one' WHERE a=22941;\nUPDATE t2 SET c='ten thousand six hundred eight' WHERE a=22942;\nUPDATE t2 SET c='sixty-four thousand seven hundred ninety-one' WHERE a=22943;\nUPDATE t2 SET c='eleven thousand four hundred seventy-two' WHERE a=22944;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-five' WHERE a=22945;\nUPDATE t2 SET c='twenty-six thousand two hundred eighteen' WHERE a=22946;\nUPDATE t2 SET c='one thousand two hundred sixteen' WHERE a=22947;\nUPDATE t2 SET c='eighty-one thousand eight hundred five' WHERE a=22948;\nUPDATE t2 SET c='fifty-three thousand seven hundred eighty' WHERE a=22949;\nUPDATE t2 SET c='ninety-five thousand nine hundred eleven' WHERE a=22950;\nUPDATE t2 SET c='fifty-three thousand four hundred fifty' WHERE a=22951;\nUPDATE t2 SET c='seventy thousand two hundred twelve' WHERE a=22952;\nUPDATE t2 SET c='thirty-seven thousand seventy-eight' WHERE a=22953;\nUPDATE t2 SET c='sixty-three thousand one hundred forty-five' WHERE a=22954;\nUPDATE t2 SET c='seven thousand three hundred thirty-eight' WHERE a=22955;\nUPDATE t2 SET c='nine thousand four hundred ninety-three' WHERE a=22956;\nUPDATE t2 SET c='twenty-nine thousand five hundred seventy' WHERE a=22957;\nUPDATE t2 SET c='thirty-seven thousand five hundred forty-four' WHERE a=22958;\nUPDATE t2 SET c='eighty-seven thousand six hundred one' WHERE a=22959;\nUPDATE t2 SET c='ninety-one thousand eight hundred' WHERE a=22960;\nUPDATE t2 SET c='ninety-seven thousand six hundred fifteen' WHERE a=22961;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-seven' WHERE a=22962;\nUPDATE t2 SET c='sixty-six thousand one hundred fifty-one' WHERE a=22963;\nUPDATE t2 SET c='sixteen thousand eight hundred ninety-two' WHERE a=22964;\nUPDATE t2 SET c='nine thousand nine hundred sixty-two' WHERE a=22965;\nUPDATE t2 SET c='forty-four thousand five hundred fifty' WHERE a=22966;\nUPDATE t2 SET c='seven thousand seven hundred twenty-seven' WHERE a=22967;\nUPDATE t2 SET c='fifty-three thousand five hundred seventy-four' WHERE a=22968;\nUPDATE t2 SET c='forty-five thousand nine hundred sixty-three' WHERE a=22969;\nUPDATE t2 SET c='eighty-four thousand fifty-eight' WHERE a=22970;\nUPDATE t2 SET c='fifty-four thousand seven hundred ninety-four' WHERE a=22971;\nUPDATE t2 SET c='forty-three thousand six hundred thirty-nine' WHERE a=22972;\nUPDATE t2 SET c='sixty-one thousand seven hundred one' WHERE a=22973;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-eight' WHERE a=22974;\nUPDATE t2 SET c='forty-eight thousand six hundred ten' WHERE a=22975;\nUPDATE t2 SET c='sixty-nine thousand six hundred nine' WHERE a=22976;\nUPDATE t2 SET c='fifty-eight thousand eight hundred one' WHERE a=22977;\nUPDATE t2 SET c='twenty-four thousand seven hundred four' WHERE a=22978;\nUPDATE t2 SET c='eighty-five thousand five hundred six' WHERE a=22979;\nUPDATE t2 SET c='twenty-six thousand two hundred fifty-four' WHERE a=22980;\nUPDATE t2 SET c='seventy-three thousand three hundred thirty-nine' WHERE a=22981;\nUPDATE t2 SET c='fifty thousand nine hundred sixty-one' WHERE a=22982;\nUPDATE t2 SET c='ninety-nine thousand six hundred ninety-eight' WHERE a=22983;\nUPDATE t2 SET c='thirty-eight thousand one hundred thirty-one' WHERE a=22984;\nUPDATE t2 SET c='seventy-eight thousand five hundred seventy-six' WHERE a=22985;\nUPDATE t2 SET c='forty-nine thousand one hundred seventy-two' WHERE a=22986;\nUPDATE t2 SET c='twenty-one thousand four hundred twenty-eight' WHERE a=22987;\nUPDATE t2 SET c='nine thousand seven hundred twelve' WHERE a=22988;\nUPDATE t2 SET c='forty-eight thousand seven hundred thirty' WHERE a=22989;\nUPDATE t2 SET c='eighty-one thousand one hundred fifty-four' WHERE a=22990;\nUPDATE t2 SET c='seventy-three thousand seven hundred ninety-two' WHERE a=22991;\nUPDATE t2 SET c='fifty-six thousand four hundred sixty-eight' WHERE a=22992;\nUPDATE t2 SET c='seventy-six thousand three hundred thirty-two' WHERE a=22993;\nUPDATE t2 SET c='fifty-one thousand twenty' WHERE a=22994;\nUPDATE t2 SET c='seventy-nine thousand four hundred eight' WHERE a=22995;\nUPDATE t2 SET c='twenty-four thousand seven hundred seventy-eight' WHERE a=22996;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-three' WHERE a=22997;\nUPDATE t2 SET c='ten thousand nine hundred forty-three' WHERE a=22998;\nUPDATE t2 SET c='seventeen thousand four hundred fifty-seven' WHERE a=22999;\nUPDATE t2 SET c='twenty-three thousand four hundred seven' WHERE a=23000;\nUPDATE t2 SET c='eleven thousand six hundred ninety-six' WHERE a=23001;\nUPDATE t2 SET c='twenty-six thousand two hundred forty-five' WHERE a=23002;\nUPDATE t2 SET c='ninety-five thousand four hundred seventy-six' WHERE a=23003;\nUPDATE t2 SET c='thirty-nine thousand three hundred sixty-six' WHERE a=23004;\nUPDATE t2 SET c='fifty-six thousand nine hundred ninety-nine' WHERE a=23005;\nUPDATE t2 SET c='seventy-eight thousand eight hundred seventy-five' WHERE a=23006;\nUPDATE t2 SET c='eighty-one thousand five hundred eighty-seven' WHERE a=23007;\nUPDATE t2 SET c='thirteen thousand three hundred twelve' WHERE a=23008;\nUPDATE t2 SET c='sixty thousand nine hundred ninety' WHERE a=23009;\nUPDATE t2 SET c='eighty-five thousand two hundred forty-three' WHERE a=23010;\nUPDATE t2 SET c='seventy-nine thousand eight hundred ninety-seven' WHERE a=23011;\nUPDATE t2 SET c='ten thousand six hundred fifty-two' WHERE a=23012;\nUPDATE t2 SET c='seventy-three thousand four hundred eleven' WHERE a=23013;\nUPDATE t2 SET c='eighty-two thousand four hundred fifty' WHERE a=23014;\nUPDATE t2 SET c='twelve thousand six hundred thirty-one' WHERE a=23015;\nUPDATE t2 SET c='nineteen thousand one hundred fifty-one' WHERE a=23016;\nUPDATE t2 SET c='forty-two thousand seven hundred nine' WHERE a=23017;\nUPDATE t2 SET c='three thousand seven hundred twenty-one' WHERE a=23018;\nUPDATE t2 SET c='sixty-seven thousand six hundred ninety-three' WHERE a=23019;\nUPDATE t2 SET c='thirty-five thousand two hundred fifty-eight' WHERE a=23020;\nUPDATE t2 SET c='fifty-five thousand two hundred twenty-six' WHERE a=23021;\nUPDATE t2 SET c='fifty-four thousand six hundred thirty-nine' WHERE a=23022;\nUPDATE t2 SET c='ninety-seven thousand six hundred thirteen' WHERE a=23023;\nUPDATE t2 SET c='twenty-seven thousand two hundred thirty-six' WHERE a=23024;\nUPDATE t2 SET c='forty-six thousand four hundred eleven' WHERE a=23025;\nUPDATE t2 SET c='six thousand five hundred twenty' WHERE a=23026;\nUPDATE t2 SET c='three thousand three hundred thirty-two' WHERE a=23027;\nUPDATE t2 SET c='ninety-two thousand forty-four' WHERE a=23028;\nUPDATE t2 SET c='thirty-one thousand sixty-seven' WHERE a=23029;\nUPDATE t2 SET c='fifty-five thousand one hundred seventy-one' WHERE a=23030;\nUPDATE t2 SET c='eighty-three thousand nine hundred' WHERE a=23031;\nUPDATE t2 SET c='forty-three thousand seven hundred sixty-nine' WHERE a=23032;\nUPDATE t2 SET c='seventy-four thousand three hundred six' WHERE a=23033;\nUPDATE t2 SET c='sixty-nine thousand eighty-five' WHERE a=23034;\nUPDATE t2 SET c='fifty thousand fifty-four' WHERE a=23035;\nUPDATE t2 SET c='eighty-five thousand two hundred thirty-six' WHERE a=23036;\nUPDATE t2 SET c='twenty-two thousand three hundred fifty-eight' WHERE a=23037;\nUPDATE t2 SET c='fifty-seven thousand nine hundred fifty-three' WHERE a=23038;\nUPDATE t2 SET c='sixty-eight thousand three hundred forty-two' WHERE a=23039;\nUPDATE t2 SET c='sixty-three thousand six hundred twenty-four' WHERE a=23040;\nUPDATE t2 SET c='fifty-two thousand one hundred ninety-one' WHERE a=23041;\nUPDATE t2 SET c='forty-five thousand seven hundred thirteen' WHERE a=23042;\nUPDATE t2 SET c='forty thousand fifteen' WHERE a=23043;\nUPDATE t2 SET c='fifty-three thousand one hundred eighty-two' WHERE a=23044;\nUPDATE t2 SET c='thirty-nine thousand eight hundred twenty-six' WHERE a=23045;\nUPDATE t2 SET c='fifty-eight thousand six hundred sixty-one' WHERE a=23046;\nUPDATE t2 SET c='twenty-three thousand eight hundred forty-two' WHERE a=23047;\nUPDATE t2 SET c='twenty-four thousand five hundred five' WHERE a=23048;\nUPDATE t2 SET c='fifty-four thousand one hundred twenty-nine' WHERE a=23049;\nUPDATE t2 SET c='sixty-eight thousand four hundred eighty' WHERE a=23050;\nUPDATE t2 SET c='twenty-nine thousand one hundred sixty-seven' WHERE a=23051;\nUPDATE t2 SET c='thirty-six thousand two hundred sixty-eight' WHERE a=23052;\nUPDATE t2 SET c='twenty-nine thousand seven hundred eight' WHERE a=23053;\nUPDATE t2 SET c='one thousand four hundred eleven' WHERE a=23054;\nUPDATE t2 SET c='seven thousand three hundred seventy-eight' WHERE a=23055;\nUPDATE t2 SET c='ninety-seven thousand two hundred two' WHERE a=23056;\nUPDATE t2 SET c='seventy-three thousand one hundred thirty-one' WHERE a=23057;\nUPDATE t2 SET c='sixty-two thousand three hundred forty-five' WHERE a=23058;\nUPDATE t2 SET c='sixty-five thousand eight hundred eight' WHERE a=23059;\nUPDATE t2 SET c='sixty-five thousand six hundred seventy-seven' WHERE a=23060;\nUPDATE t2 SET c='ninety-seven thousand five hundred six' WHERE a=23061;\nUPDATE t2 SET c='thirty-seven thousand one hundred nine' WHERE a=23062;\nUPDATE t2 SET c='ninety-nine thousand seven hundred six' WHERE a=23063;\nUPDATE t2 SET c='two thousand two hundred fifteen' WHERE a=23064;\nUPDATE t2 SET c='sixty thousand eight hundred ninety-five' WHERE a=23065;\nUPDATE t2 SET c='twenty-one thousand five hundred eighty' WHERE a=23066;\nUPDATE t2 SET c='twenty-five thousand nine hundred ninety-one' WHERE a=23067;\nUPDATE t2 SET c='seventy-one thousand one hundred sixty-two' WHERE a=23068;\nUPDATE t2 SET c='nineteen thousand two hundred eighty-six' WHERE a=23069;\nUPDATE t2 SET c='thirty-two thousand three hundred ninety-six' WHERE a=23070;\nUPDATE t2 SET c='twenty-one thousand three hundred nineteen' WHERE a=23071;\nUPDATE t2 SET c='fifty-three thousand seven hundred ninety-nine' WHERE a=23072;\nUPDATE t2 SET c='ninety-two thousand five hundred sixty-four' WHERE a=23073;\nUPDATE t2 SET c='ninety-five thousand ninety-five' WHERE a=23074;\nUPDATE t2 SET c='seventy-three thousand three hundred seventy-three' WHERE a=23075;\nUPDATE t2 SET c='forty-eight thousand two hundred ninety-nine' WHERE a=23076;\nUPDATE t2 SET c='twenty-five thousand nine hundred sixty-four' WHERE a=23077;\nUPDATE t2 SET c='seventy-three thousand six hundred sixty' WHERE a=23078;\nUPDATE t2 SET c='thirty-six thousand seven hundred thirty-five' WHERE a=23079;\nUPDATE t2 SET c='seven thousand five hundred seventy' WHERE a=23080;\nUPDATE t2 SET c='seven thousand two hundred thirty' WHERE a=23081;\nUPDATE t2 SET c='sixty-one thousand four hundred sixty-five' WHERE a=23082;\nUPDATE t2 SET c='forty-five thousand eight hundred thirty-three' WHERE a=23083;\nUPDATE t2 SET c='eighty-five thousand ninety-four' WHERE a=23084;\nUPDATE t2 SET c='seventy-six thousand five hundred ninety-six' WHERE a=23085;\nUPDATE t2 SET c='sixty-four thousand four hundred thirty-seven' WHERE a=23086;\nUPDATE t2 SET c='eighty thousand nine hundred sixty-five' WHERE a=23087;\nUPDATE t2 SET c='eighty-six thousand eight hundred twenty-one' WHERE a=23088;\nUPDATE t2 SET c='thirty-eight thousand one hundred eighty-seven' WHERE a=23089;\nUPDATE t2 SET c='sixteen thousand seventeen' WHERE a=23090;\nUPDATE t2 SET c='sixty thousand one hundred eighty-six' WHERE a=23091;\nUPDATE t2 SET c='fifty-four thousand one hundred fifty-four' WHERE a=23092;\nUPDATE t2 SET c='forty-three thousand four hundred seventy' WHERE a=23093;\nUPDATE t2 SET c='forty-six thousand seven hundred thirty-three' WHERE a=23094;\nUPDATE t2 SET c='fifty-six thousand nine hundred thirty-eight' WHERE a=23095;\nUPDATE t2 SET c='thirteen thousand four hundred forty-three' WHERE a=23096;\nUPDATE t2 SET c='sixty-three thousand seven hundred forty-two' WHERE a=23097;\nUPDATE t2 SET c='five thousand three hundred five' WHERE a=23098;\nUPDATE t2 SET c='fifty-three thousand nine hundred seventy-four' WHERE a=23099;\nUPDATE t2 SET c='sixty-two thousand thirty-eight' WHERE a=23100;\nUPDATE t2 SET c='ninety-four thousand four' WHERE a=23101;\nUPDATE t2 SET c='sixty-four thousand three hundred ninety-five' WHERE a=23102;\nUPDATE t2 SET c='nine thousand three hundred ninety-five' WHERE a=23103;\nUPDATE t2 SET c='thirty-three thousand seven hundred eighty-eight' WHERE a=23104;\nUPDATE t2 SET c='twenty-three thousand sixty-six' WHERE a=23105;\nUPDATE t2 SET c='eighty-two thousand five hundred thirty-six' WHERE a=23106;\nUPDATE t2 SET c='fifty-four thousand one hundred thirty-seven' WHERE a=23107;\nUPDATE t2 SET c='seventy thousand five hundred seventy-six' WHERE a=23108;\nUPDATE t2 SET c='fifty-nine thousand nine hundred ninety-seven' WHERE a=23109;\nUPDATE t2 SET c='thirty-seven thousand six hundred sixty-three' WHERE a=23110;\nUPDATE t2 SET c='fifty-seven thousand sixty-six' WHERE a=23111;\nUPDATE t2 SET c='eleven thousand three hundred thirty' WHERE a=23112;\nUPDATE t2 SET c='seventy-two thousand three hundred sixty-nine' WHERE a=23113;\nUPDATE t2 SET c='eighty-two thousand one hundred thirty-nine' WHERE a=23114;\nUPDATE t2 SET c='eighty-three thousand nine hundred thirty-one' WHERE a=23115;\nUPDATE t2 SET c='twenty-eight thousand three hundred ninety-six' WHERE a=23116;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-six' WHERE a=23117;\nUPDATE t2 SET c='seventy-five thousand three hundred sixty-three' WHERE a=23118;\nUPDATE t2 SET c='thirty-four thousand two hundred seventy-five' WHERE a=23119;\nUPDATE t2 SET c='sixty-four thousand one hundred ninety-two' WHERE a=23120;\nUPDATE t2 SET c='twelve thousand three hundred twenty-six' WHERE a=23121;\nUPDATE t2 SET c='fifty-five thousand two hundred three' WHERE a=23122;\nUPDATE t2 SET c='sixty-three thousand four hundred ten' WHERE a=23123;\nUPDATE t2 SET c='seventeen thousand eight hundred fifty-one' WHERE a=23124;\nUPDATE t2 SET c='forty thousand eighty-one' WHERE a=23125;\nUPDATE t2 SET c='one thousand three hundred twenty-five' WHERE a=23126;\nUPDATE t2 SET c='forty-four thousand five hundred nineteen' WHERE a=23127;\nUPDATE t2 SET c='twenty-three thousand nine hundred fifty-nine' WHERE a=23128;\nUPDATE t2 SET c='ninety-nine thousand six hundred eleven' WHERE a=23129;\nUPDATE t2 SET c='forty-two thousand four hundred fifty-five' WHERE a=23130;\nUPDATE t2 SET c='seventy-two thousand five hundred ninety' WHERE a=23131;\nUPDATE t2 SET c='sixty-eight thousand nine hundred ninety-nine' WHERE a=23132;\nUPDATE t2 SET c='thirty-two thousand five hundred eight' WHERE a=23133;\nUPDATE t2 SET c='forty-one thousand one hundred one' WHERE a=23134;\nUPDATE t2 SET c='twenty-five thousand eight hundred twenty-six' WHERE a=23135;\nUPDATE t2 SET c='thirty-nine thousand five hundred seventy-six' WHERE a=23136;\nUPDATE t2 SET c='twenty-six thousand fifteen' WHERE a=23137;\nUPDATE t2 SET c='forty-seven thousand nine hundred nineteen' WHERE a=23138;\nUPDATE t2 SET c='ninety-nine thousand six hundred eleven' WHERE a=23139;\nUPDATE t2 SET c='forty thousand seven hundred thirty-two' WHERE a=23140;\nUPDATE t2 SET c='thirty-three thousand five hundred fifteen' WHERE a=23141;\nUPDATE t2 SET c='ninety-one thousand seventy-eight' WHERE a=23142;\nUPDATE t2 SET c='fifteen thousand six hundred seventy-five' WHERE a=23143;\nUPDATE t2 SET c='ninety-eight thousand seventy-one' WHERE a=23144;\nUPDATE t2 SET c='forty-one thousand two hundred twenty-six' WHERE a=23145;\nUPDATE t2 SET c='ninety-five thousand five hundred sixty-seven' WHERE a=23146;\nUPDATE t2 SET c='twenty-five thousand nine hundred forty-two' WHERE a=23147;\nUPDATE t2 SET c='forty-four thousand five hundred ten' WHERE a=23148;\nUPDATE t2 SET c='seventy-five thousand two hundred sixty-seven' WHERE a=23149;\nUPDATE t2 SET c='twenty-five thousand two hundred forty-two' WHERE a=23150;\nUPDATE t2 SET c='twenty-one thousand seven hundred forty' WHERE a=23151;\nUPDATE t2 SET c='four thousand five hundred forty-nine' WHERE a=23152;\nUPDATE t2 SET c='twenty-seven thousand eight hundred sixty-one' WHERE a=23153;\nUPDATE t2 SET c='twenty-one thousand seven hundred seventy-one' WHERE a=23154;\nUPDATE t2 SET c='eight thousand five hundred ninety-six' WHERE a=23155;\nUPDATE t2 SET c='forty-three thousand six hundred twenty-four' WHERE a=23156;\nUPDATE t2 SET c='nine thousand five hundred nine' WHERE a=23157;\nUPDATE t2 SET c='twenty-two thousand six hundred forty-nine' WHERE a=23158;\nUPDATE t2 SET c='eight thousand three hundred eighteen' WHERE a=23159;\nUPDATE t2 SET c='fifty-two thousand four hundred eighty-nine' WHERE a=23160;\nUPDATE t2 SET c='thirty-four thousand nine hundred seventy-four' WHERE a=23161;\nUPDATE t2 SET c='forty-five thousand five hundred forty-three' WHERE a=23162;\nUPDATE t2 SET c='thirty-two thousand six hundred forty-four' WHERE a=23163;\nUPDATE t2 SET c='eighty-two thousand three hundred twenty-six' WHERE a=23164;\nUPDATE t2 SET c='twenty-six thousand thirty-four' WHERE a=23165;\nUPDATE t2 SET c='two thousand seven hundred forty-five' WHERE a=23166;\nUPDATE t2 SET c='thirty-five thousand nine hundred six' WHERE a=23167;\nUPDATE t2 SET c='eighty thousand six hundred eighty-five' WHERE a=23168;\nUPDATE t2 SET c='seven thousand seven hundred eleven' WHERE a=23169;\nUPDATE t2 SET c='ninety-eight thousand eight hundred seven' WHERE a=23170;\nUPDATE t2 SET c='eighty-five thousand two hundred forty-two' WHERE a=23171;\nUPDATE t2 SET c='forty-three thousand two hundred four' WHERE a=23172;\nUPDATE t2 SET c='twenty-one thousand two hundred eighty-nine' WHERE a=23173;\nUPDATE t2 SET c='ninety thousand six hundred sixteen' WHERE a=23174;\nUPDATE t2 SET c='ninety-eight thousand three hundred four' WHERE a=23175;\nUPDATE t2 SET c='twenty-four thousand seven hundred ninety-one' WHERE a=23176;\nUPDATE t2 SET c='four thousand two hundred sixty' WHERE a=23177;\nUPDATE t2 SET c='twenty-eight thousand three hundred forty-one' WHERE a=23178;\nUPDATE t2 SET c='two thousand eight hundred thirty-one' WHERE a=23179;\nUPDATE t2 SET c='ninety-five thousand thirty-five' WHERE a=23180;\nUPDATE t2 SET c='twenty-four thousand four hundred seventy-five' WHERE a=23181;\nUPDATE t2 SET c='eighty-six thousand six hundred one' WHERE a=23182;\nUPDATE t2 SET c='eight thousand six hundred eighty' WHERE a=23183;\nUPDATE t2 SET c='fifty-three thousand three hundred nineteen' WHERE a=23184;\nUPDATE t2 SET c='ninety-three thousand eight hundred twenty-three' WHERE a=23185;\nUPDATE t2 SET c='seventy-one thousand one hundred forty-six' WHERE a=23186;\nUPDATE t2 SET c='fifty-five thousand nine hundred ninety-eight' WHERE a=23187;\nUPDATE t2 SET c='nine thousand five hundred fifty-five' WHERE a=23188;\nUPDATE t2 SET c='seventy-six thousand eight hundred thirty-seven' WHERE a=23189;\nUPDATE t2 SET c='sixty thousand four hundred thirty-one' WHERE a=23190;\nUPDATE t2 SET c='forty-five thousand forty-three' WHERE a=23191;\nUPDATE t2 SET c='seventy-seven thousand nine hundred eighty-two' WHERE a=23192;\nUPDATE t2 SET c='sixty-five thousand eight hundred eleven' WHERE a=23193;\nUPDATE t2 SET c='seventy-five thousand three hundred seventeen' WHERE a=23194;\nUPDATE t2 SET c='twenty-three thousand six hundred eight' WHERE a=23195;\nUPDATE t2 SET c='sixty-four thousand two hundred forty-one' WHERE a=23196;\nUPDATE t2 SET c='eighty-five thousand three hundred twenty-eight' WHERE a=23197;\nUPDATE t2 SET c='thirty-eight thousand eight hundred thirteen' WHERE a=23198;\nUPDATE t2 SET c='fifty-four thousand two' WHERE a=23199;\nUPDATE t2 SET c='thirty-nine thousand ninety-eight' WHERE a=23200;\nUPDATE t2 SET c='eighty-nine thousand six hundred thirty-seven' WHERE a=23201;\nUPDATE t2 SET c='forty-eight thousand one hundred sixty-one' WHERE a=23202;\nUPDATE t2 SET c='fifty-four thousand one hundred twenty-eight' WHERE a=23203;\nUPDATE t2 SET c='seventy-nine thousand four hundred forty-three' WHERE a=23204;\nUPDATE t2 SET c='forty-seven thousand six hundred ten' WHERE a=23205;\nUPDATE t2 SET c='forty-two thousand fifty-nine' WHERE a=23206;\nUPDATE t2 SET c='twenty-five thousand nine hundred sixty' WHERE a=23207;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty' WHERE a=23208;\nUPDATE t2 SET c='seventy-eight thousand two hundred six' WHERE a=23209;\nUPDATE t2 SET c='fifty-five thousand three hundred eighty-four' WHERE a=23210;\nUPDATE t2 SET c='nineteen thousand one' WHERE a=23211;\nUPDATE t2 SET c='thirty-three thousand eight hundred one' WHERE a=23212;\nUPDATE t2 SET c='ninety-five thousand nine hundred eight' WHERE a=23213;\nUPDATE t2 SET c='seventy-three thousand eight hundred seventy-five' WHERE a=23214;\nUPDATE t2 SET c='sixty thousand eight hundred twelve' WHERE a=23215;\nUPDATE t2 SET c='one hundred fifty-one' WHERE a=23216;\nUPDATE t2 SET c='ninety-five thousand four hundred ninety-eight' WHERE a=23217;\nUPDATE t2 SET c='eighty-seven thousand five hundred ninety-eight' WHERE a=23218;\nUPDATE t2 SET c='eighty-seven thousand four hundred twenty-nine' WHERE a=23219;\nUPDATE t2 SET c='thirty-eight thousand seven hundred five' WHERE a=23220;\nUPDATE t2 SET c='sixty-three thousand one hundred seventy-one' WHERE a=23221;\nUPDATE t2 SET c='twenty-six thousand eighty-one' WHERE a=23222;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-four' WHERE a=23223;\nUPDATE t2 SET c='eighty thousand five hundred forty-five' WHERE a=23224;\nUPDATE t2 SET c='ninety thousand seven' WHERE a=23225;\nUPDATE t2 SET c='eighty-five thousand eight hundred eighty-seven' WHERE a=23226;\nUPDATE t2 SET c='twenty-eight thousand four hundred forty-seven' WHERE a=23227;\nUPDATE t2 SET c='sixty-nine thousand seven hundred seventy-seven' WHERE a=23228;\nUPDATE t2 SET c='three thousand two hundred sixty-eight' WHERE a=23229;\nUPDATE t2 SET c='twenty-three thousand five hundred thirty-four' WHERE a=23230;\nUPDATE t2 SET c='ninety-one thousand one hundred nine' WHERE a=23231;\nUPDATE t2 SET c='ninety-four thousand three hundred thirty-four' WHERE a=23232;\nUPDATE t2 SET c='forty-seven thousand three hundred one' WHERE a=23233;\nUPDATE t2 SET c='seventeen thousand seventeen' WHERE a=23234;\nUPDATE t2 SET c='sixty-three thousand five hundred forty-nine' WHERE a=23235;\nUPDATE t2 SET c='sixty-seven thousand eight hundred fifty-three' WHERE a=23236;\nUPDATE t2 SET c='fifty-two thousand five' WHERE a=23237;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-one' WHERE a=23238;\nUPDATE t2 SET c='thirty-one thousand one hundred seventy-three' WHERE a=23239;\nUPDATE t2 SET c='ninety-one thousand five hundred sixty-two' WHERE a=23240;\nUPDATE t2 SET c='sixty-six thousand five hundred fifty-two' WHERE a=23241;\nUPDATE t2 SET c='sixteen thousand eight hundred ninety-seven' WHERE a=23242;\nUPDATE t2 SET c='ninety-four thousand forty-one' WHERE a=23243;\nUPDATE t2 SET c='ninety-five thousand three hundred ninety-one' WHERE a=23244;\nUPDATE t2 SET c='nineteen thousand one hundred seven' WHERE a=23245;\nUPDATE t2 SET c='nine thousand six hundred twenty-three' WHERE a=23246;\nUPDATE t2 SET c='thirty-seven thousand eight hundred ninety-four' WHERE a=23247;\nUPDATE t2 SET c='ninety thousand nine hundred ninety-seven' WHERE a=23248;\nUPDATE t2 SET c='forty-four thousand nine hundred seventeen' WHERE a=23249;\nUPDATE t2 SET c='forty-three thousand seven hundred fifty-three' WHERE a=23250;\nUPDATE t2 SET c='fifty thousand one hundred thirty-seven' WHERE a=23251;\nUPDATE t2 SET c='seventy thousand five hundred forty-seven' WHERE a=23252;\nUPDATE t2 SET c='sixty-eight thousand six hundred ninety-three' WHERE a=23253;\nUPDATE t2 SET c='sixty-one thousand two hundred twenty-five' WHERE a=23254;\nUPDATE t2 SET c='one thousand seven hundred sixteen' WHERE a=23255;\nUPDATE t2 SET c='fifty-three thousand four hundred forty' WHERE a=23256;\nUPDATE t2 SET c='eighty-five thousand four hundred eighty-two' WHERE a=23257;\nUPDATE t2 SET c='fourteen thousand five hundred seventy-one' WHERE a=23258;\nUPDATE t2 SET c='seventy-one thousand two hundred sixty-four' WHERE a=23259;\nUPDATE t2 SET c='eighty-nine thousand two hundred eighty-seven' WHERE a=23260;\nUPDATE t2 SET c='twenty-six thousand two hundred six' WHERE a=23261;\nUPDATE t2 SET c='thirty-eight thousand eight hundred ninety-four' WHERE a=23262;\nUPDATE t2 SET c='fifty-six thousand six hundred sixty' WHERE a=23263;\nUPDATE t2 SET c='twenty-six thousand five hundred ninety-six' WHERE a=23264;\nUPDATE t2 SET c='forty-four thousand four hundred seven' WHERE a=23265;\nUPDATE t2 SET c='fifty-four thousand four hundred thirty' WHERE a=23266;\nUPDATE t2 SET c='eighty-one thousand three hundred forty' WHERE a=23267;\nUPDATE t2 SET c='eleven thousand ninety-eight' WHERE a=23268;\nUPDATE t2 SET c='fifty-seven thousand eight hundred eighty-six' WHERE a=23269;\nUPDATE t2 SET c='four thousand six hundred forty-two' WHERE a=23270;\nUPDATE t2 SET c='forty-six thousand five hundred eighteen' WHERE a=23271;\nUPDATE t2 SET c='sixty-seven thousand two hundred twenty-seven' WHERE a=23272;\nUPDATE t2 SET c='seventy-six thousand three hundred sixteen' WHERE a=23273;\nUPDATE t2 SET c='sixty-nine thousand six hundred thirty-seven' WHERE a=23274;\nUPDATE t2 SET c='eight thousand three hundred forty-two' WHERE a=23275;\nUPDATE t2 SET c='eighty-nine thousand seven hundred twenty-three' WHERE a=23276;\nUPDATE t2 SET c='thirteen thousand two hundred seven' WHERE a=23277;\nUPDATE t2 SET c='ten thousand five hundred fifty-four' WHERE a=23278;\nUPDATE t2 SET c='ninety-seven thousand two hundred forty-eight' WHERE a=23279;\nUPDATE t2 SET c='two thousand three hundred ninety-three' WHERE a=23280;\nUPDATE t2 SET c='twenty-three thousand one hundred two' WHERE a=23281;\nUPDATE t2 SET c='sixty-nine thousand four hundred eighty-eight' WHERE a=23282;\nUPDATE t2 SET c='seventy-seven thousand five hundred forty-five' WHERE a=23283;\nUPDATE t2 SET c='seventy thousand six hundred sixteen' WHERE a=23284;\nUPDATE t2 SET c='fifty-seven thousand eighty-two' WHERE a=23285;\nUPDATE t2 SET c='six thousand eight hundred eighty-two' WHERE a=23286;\nUPDATE t2 SET c='twenty-one thousand seven hundred twenty-one' WHERE a=23287;\nUPDATE t2 SET c='thirty-three thousand six hundred forty-two' WHERE a=23288;\nUPDATE t2 SET c='seventy-one thousand four hundred eighty-nine' WHERE a=23289;\nUPDATE t2 SET c='sixty-seven thousand seven hundred thirty-five' WHERE a=23290;\nUPDATE t2 SET c='fifty-three thousand two hundred forty-five' WHERE a=23291;\nUPDATE t2 SET c='ninety-eight thousand fourteen' WHERE a=23292;\nUPDATE t2 SET c='fifty-one thousand five hundred thirty-eight' WHERE a=23293;\nUPDATE t2 SET c='eighty-four thousand nine hundred fifty-five' WHERE a=23294;\nUPDATE t2 SET c='six thousand four hundred three' WHERE a=23295;\nUPDATE t2 SET c='seventy-three thousand four hundred twenty-one' WHERE a=23296;\nUPDATE t2 SET c='fifty-nine thousand nine hundred eighty-one' WHERE a=23297;\nUPDATE t2 SET c='seventy-two thousand five hundred fifty-eight' WHERE a=23298;\nUPDATE t2 SET c='seventy-nine thousand three hundred fifty-eight' WHERE a=23299;\nUPDATE t2 SET c='thirty-eight thousand five hundred eighty-seven' WHERE a=23300;\nUPDATE t2 SET c='seventy-eight thousand five hundred fifty-four' WHERE a=23301;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-six' WHERE a=23302;\nUPDATE t2 SET c='sixty-nine thousand two hundred thirty-seven' WHERE a=23303;\nUPDATE t2 SET c='fifty-two thousand two hundred ninety-eight' WHERE a=23304;\nUPDATE t2 SET c='three thousand eight hundred seven' WHERE a=23305;\nUPDATE t2 SET c='fifty thousand six hundred eighty-four' WHERE a=23306;\nUPDATE t2 SET c='eight hundred ninety-four' WHERE a=23307;\nUPDATE t2 SET c='thirty-five thousand nine hundred ninety-seven' WHERE a=23308;\nUPDATE t2 SET c='seventy-one thousand one hundred twenty-six' WHERE a=23309;\nUPDATE t2 SET c='sixty-three thousand eighty-seven' WHERE a=23310;\nUPDATE t2 SET c='seventy-three thousand eight hundred sixteen' WHERE a=23311;\nUPDATE t2 SET c='sixty-one thousand nine hundred eighty-eight' WHERE a=23312;\nUPDATE t2 SET c='eighty-seven thousand two hundred seventy' WHERE a=23313;\nUPDATE t2 SET c='sixty-four thousand six hundred ten' WHERE a=23314;\nUPDATE t2 SET c='twenty-nine thousand ten' WHERE a=23315;\nUPDATE t2 SET c='eighteen thousand one hundred thirty-two' WHERE a=23316;\nUPDATE t2 SET c='forty-one thousand two hundred eighty-three' WHERE a=23317;\nUPDATE t2 SET c='sixty-seven thousand one hundred fifty' WHERE a=23318;\nUPDATE t2 SET c='seventy-seven thousand nine hundred forty-nine' WHERE a=23319;\nUPDATE t2 SET c='twenty-one thousand nine hundred fourteen' WHERE a=23320;\nUPDATE t2 SET c='eighty-five thousand forty-one' WHERE a=23321;\nUPDATE t2 SET c='twenty-five thousand seven hundred thirty-nine' WHERE a=23322;\nUPDATE t2 SET c='twelve thousand ninety-five' WHERE a=23323;\nUPDATE t2 SET c='seventy-eight thousand two hundred eighty-two' WHERE a=23324;\nUPDATE t2 SET c='forty-seven thousand twenty-eight' WHERE a=23325;\nUPDATE t2 SET c='twenty-four thousand eight hundred twenty-five' WHERE a=23326;\nUPDATE t2 SET c='thirty thousand eight hundred eighteen' WHERE a=23327;\nUPDATE t2 SET c='seventy thousand eight hundred twenty-two' WHERE a=23328;\nUPDATE t2 SET c='nine thousand two hundred forty-one' WHERE a=23329;\nUPDATE t2 SET c='forty-four thousand four hundred forty-seven' WHERE a=23330;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixteen' WHERE a=23331;\nUPDATE t2 SET c='forty-three thousand two hundred thirty' WHERE a=23332;\nUPDATE t2 SET c='sixty-seven thousand two hundred fifty-nine' WHERE a=23333;\nUPDATE t2 SET c='ninety-four thousand four hundred fourteen' WHERE a=23334;\nUPDATE t2 SET c='seventy-three thousand eight hundred twenty-eight' WHERE a=23335;\nUPDATE t2 SET c='seventy-six thousand three hundred fifty' WHERE a=23336;\nUPDATE t2 SET c='twenty-four thousand two hundred fifty-eight' WHERE a=23337;\nUPDATE t2 SET c='sixty-three thousand nine hundred sixty-four' WHERE a=23338;\nUPDATE t2 SET c='sixty-two thousand six hundred seventy-nine' WHERE a=23339;\nUPDATE t2 SET c='sixty-one thousand four hundred eighty-one' WHERE a=23340;\nUPDATE t2 SET c='forty-seven thousand four' WHERE a=23341;\nUPDATE t2 SET c='ninety-one thousand four hundred twelve' WHERE a=23342;\nUPDATE t2 SET c='thirty-three thousand four hundred twenty' WHERE a=23343;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-eight' WHERE a=23344;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-three' WHERE a=23345;\nUPDATE t2 SET c='nine thousand one hundred seventy-four' WHERE a=23346;\nUPDATE t2 SET c='thirteen thousand sixty-two' WHERE a=23347;\nUPDATE t2 SET c='eighty-one thousand sixty-eight' WHERE a=23348;\nUPDATE t2 SET c='forty-nine thousand nine hundred twenty-seven' WHERE a=23349;\nUPDATE t2 SET c='thirty-five thousand twenty-four' WHERE a=23350;\nUPDATE t2 SET c='eighty-eight thousand three hundred' WHERE a=23351;\nUPDATE t2 SET c='forty-two thousand four hundred twenty-nine' WHERE a=23352;\nUPDATE t2 SET c='eighty-one thousand four hundred ninety-one' WHERE a=23353;\nUPDATE t2 SET c='five thousand seven hundred nine' WHERE a=23354;\nUPDATE t2 SET c='seventy thousand seven hundred two' WHERE a=23355;\nUPDATE t2 SET c='seventy-seven thousand six hundred forty-two' WHERE a=23356;\nUPDATE t2 SET c='sixteen thousand ninety-eight' WHERE a=23357;\nUPDATE t2 SET c='twenty-seven thousand seven hundred twenty-seven' WHERE a=23358;\nUPDATE t2 SET c='eighteen thousand seven hundred sixty-five' WHERE a=23359;\nUPDATE t2 SET c='twenty thousand seven hundred sixty-five' WHERE a=23360;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ninety-five' WHERE a=23361;\nUPDATE t2 SET c='eighty-four thousand eighty-six' WHERE a=23362;\nUPDATE t2 SET c='eighty-five thousand eight hundred twenty-two' WHERE a=23363;\nUPDATE t2 SET c='five thousand four hundred forty-eight' WHERE a=23364;\nUPDATE t2 SET c='fifty-eight thousand two hundred thirty' WHERE a=23365;\nUPDATE t2 SET c='thirty-six thousand eight hundred one' WHERE a=23366;\nUPDATE t2 SET c='twenty-two thousand six hundred seventy' WHERE a=23367;\nUPDATE t2 SET c='sixteen thousand three hundred seventy-seven' WHERE a=23368;\nUPDATE t2 SET c='thirty thousand one hundred seventy-three' WHERE a=23369;\nUPDATE t2 SET c='ninety-nine thousand four hundred seventy-seven' WHERE a=23370;\nUPDATE t2 SET c='forty-four thousand nine hundred sixty-one' WHERE a=23371;\nUPDATE t2 SET c='seventeen thousand eight hundred twenty-three' WHERE a=23372;\nUPDATE t2 SET c='sixty-one thousand eight hundred fifty-four' WHERE a=23373;\nUPDATE t2 SET c='fifty thousand eight hundred twenty-five' WHERE a=23374;\nUPDATE t2 SET c='forty-six thousand six hundred sixty-one' WHERE a=23375;\nUPDATE t2 SET c='eighty-one thousand forty-seven' WHERE a=23376;\nUPDATE t2 SET c='twenty-six thousand four hundred six' WHERE a=23377;\nUPDATE t2 SET c='sixty-nine thousand nine hundred fifty-one' WHERE a=23378;\nUPDATE t2 SET c='fifty-seven thousand four hundred four' WHERE a=23379;\nUPDATE t2 SET c='eighty-nine thousand one hundred sixty-four' WHERE a=23380;\nUPDATE t2 SET c='twelve thousand nine hundred eighty-eight' WHERE a=23381;\nUPDATE t2 SET c='ninety-seven thousand six hundred eighty-eight' WHERE a=23382;\nUPDATE t2 SET c='forty thousand seven hundred sixty-five' WHERE a=23383;\nUPDATE t2 SET c='thirteen thousand seven hundred ninety-nine' WHERE a=23384;\nUPDATE t2 SET c='fifty-nine thousand one hundred seventy-seven' WHERE a=23385;\nUPDATE t2 SET c='seventy-one thousand one hundred fifty-seven' WHERE a=23386;\nUPDATE t2 SET c='forty-one thousand five hundred eighty-four' WHERE a=23387;\nUPDATE t2 SET c='ninety-two thousand nine hundred forty-eight' WHERE a=23388;\nUPDATE t2 SET c='forty-eight thousand fifty-three' WHERE a=23389;\nUPDATE t2 SET c='ninety-nine thousand seven hundred fourteen' WHERE a=23390;\nUPDATE t2 SET c='ninety-one thousand eight hundred fifty-three' WHERE a=23391;\nUPDATE t2 SET c='forty-one thousand two hundred ninety-five' WHERE a=23392;\nUPDATE t2 SET c='three thousand eight hundred fifty-five' WHERE a=23393;\nUPDATE t2 SET c='twenty-seven thousand six hundred ten' WHERE a=23394;\nUPDATE t2 SET c='thirty-seven thousand twenty-eight' WHERE a=23395;\nUPDATE t2 SET c='eighty thousand nine hundred sixty-eight' WHERE a=23396;\nUPDATE t2 SET c='sixty-three thousand three hundred six' WHERE a=23397;\nUPDATE t2 SET c='fifty-six thousand five hundred thirty-two' WHERE a=23398;\nUPDATE t2 SET c='six thousand nine hundred thirty-four' WHERE a=23399;\nUPDATE t2 SET c='twenty-five thousand one hundred twenty-five' WHERE a=23400;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-five' WHERE a=23401;\nUPDATE t2 SET c='ninety-nine thousand seven hundred twenty' WHERE a=23402;\nUPDATE t2 SET c='sixty-two thousand seven hundred twenty-six' WHERE a=23403;\nUPDATE t2 SET c='thirty-nine thousand two hundred twenty-two' WHERE a=23404;\nUPDATE t2 SET c='sixty-five thousand one hundred two' WHERE a=23405;\nUPDATE t2 SET c='three thousand five hundred seventy-seven' WHERE a=23406;\nUPDATE t2 SET c='thirty-seven thousand six hundred ninety-three' WHERE a=23407;\nUPDATE t2 SET c='thirty-seven thousand fifty-three' WHERE a=23408;\nUPDATE t2 SET c='six thousand five hundred forty-two' WHERE a=23409;\nUPDATE t2 SET c='ninety-five thousand seven hundred fifty-nine' WHERE a=23410;\nUPDATE t2 SET c='one thousand five hundred forty-eight' WHERE a=23411;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-six' WHERE a=23412;\nUPDATE t2 SET c='thirty-nine thousand eight hundred eighty-one' WHERE a=23413;\nUPDATE t2 SET c='forty-five thousand six hundred seventy-one' WHERE a=23414;\nUPDATE t2 SET c='fifty-seven thousand one hundred twenty-one' WHERE a=23415;\nUPDATE t2 SET c='thirty thousand four hundred thirty-seven' WHERE a=23416;\nUPDATE t2 SET c='eight thousand eighteen' WHERE a=23417;\nUPDATE t2 SET c='fifty thousand three hundred seventy-four' WHERE a=23418;\nUPDATE t2 SET c='two thousand two hundred thirty-three' WHERE a=23419;\nUPDATE t2 SET c='twenty thousand forty-one' WHERE a=23420;\nUPDATE t2 SET c='fifty-two thousand one hundred sixty-six' WHERE a=23421;\nUPDATE t2 SET c='thirteen thousand two hundred seven' WHERE a=23422;\nUPDATE t2 SET c='seventy-nine thousand seven hundred seventy-nine' WHERE a=23423;\nUPDATE t2 SET c='thirty-five thousand eight hundred thirty-eight' WHERE a=23424;\nUPDATE t2 SET c='forty-three thousand six hundred fifty-nine' WHERE a=23425;\nUPDATE t2 SET c='fifty-six thousand seven hundred twenty' WHERE a=23426;\nUPDATE t2 SET c='fifty-one thousand four hundred thirty-three' WHERE a=23427;\nUPDATE t2 SET c='twenty-six thousand three hundred eighty-two' WHERE a=23428;\nUPDATE t2 SET c='eighty-three thousand three hundred sixty-nine' WHERE a=23429;\nUPDATE t2 SET c='sixty-one thousand six hundred fifty-four' WHERE a=23430;\nUPDATE t2 SET c='forty-nine thousand three hundred eighty-nine' WHERE a=23431;\nUPDATE t2 SET c='four thousand seven hundred forty-four' WHERE a=23432;\nUPDATE t2 SET c='sixty thousand seven' WHERE a=23433;\nUPDATE t2 SET c='sixty-six thousand seven hundred ninety' WHERE a=23434;\nUPDATE t2 SET c='fifty-two thousand three hundred forty-one' WHERE a=23435;\nUPDATE t2 SET c='sixty-two thousand eight hundred ninety' WHERE a=23436;\nUPDATE t2 SET c='forty-seven thousand three hundred ninety-eight' WHERE a=23437;\nUPDATE t2 SET c='twenty thousand four hundred seventy-two' WHERE a=23438;\nUPDATE t2 SET c='seventy-two thousand one hundred thirteen' WHERE a=23439;\nUPDATE t2 SET c='nine hundred sixty-five' WHERE a=23440;\nUPDATE t2 SET c='seventy-five thousand four' WHERE a=23441;\nUPDATE t2 SET c='sixty-seven thousand one hundred fifty-four' WHERE a=23442;\nUPDATE t2 SET c='sixty thousand eight hundred eight' WHERE a=23443;\nUPDATE t2 SET c='fifty-eight thousand four hundred seventy-seven' WHERE a=23444;\nUPDATE t2 SET c='thirty-nine thousand eight hundred eighty-one' WHERE a=23445;\nUPDATE t2 SET c='twenty-two thousand nine hundred eighty-four' WHERE a=23446;\nUPDATE t2 SET c='ninety-two thousand six hundred ninety-seven' WHERE a=23447;\nUPDATE t2 SET c='two thousand five hundred sixty-one' WHERE a=23448;\nUPDATE t2 SET c='eighty-one thousand two hundred forty-one' WHERE a=23449;\nUPDATE t2 SET c='sixty-four thousand eight hundred forty-eight' WHERE a=23450;\nUPDATE t2 SET c='forty-eight thousand six hundred eleven' WHERE a=23451;\nUPDATE t2 SET c='twenty-eight thousand seven hundred fifty-one' WHERE a=23452;\nUPDATE t2 SET c='nineteen thousand five hundred fifty-nine' WHERE a=23453;\nUPDATE t2 SET c='forty-nine thousand three hundred sixty-six' WHERE a=23454;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-three' WHERE a=23455;\nUPDATE t2 SET c='fifty-six thousand three hundred thirty-nine' WHERE a=23456;\nUPDATE t2 SET c='thirty-four thousand seven hundred fifty' WHERE a=23457;\nUPDATE t2 SET c='nine thousand six hundred twenty-five' WHERE a=23458;\nUPDATE t2 SET c='eighty-two thousand six hundred ninety-eight' WHERE a=23459;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-one' WHERE a=23460;\nUPDATE t2 SET c='forty-one thousand nine hundred forty-three' WHERE a=23461;\nUPDATE t2 SET c='thirty-nine thousand four hundred fifty-five' WHERE a=23462;\nUPDATE t2 SET c='fifty-one thousand nine hundred forty-five' WHERE a=23463;\nUPDATE t2 SET c='thirty-one thousand eight hundred twenty-three' WHERE a=23464;\nUPDATE t2 SET c='seventy-nine thousand four hundred thirteen' WHERE a=23465;\nUPDATE t2 SET c='ninety-nine thousand three hundred seventy-five' WHERE a=23466;\nUPDATE t2 SET c='ninety-four thousand seven hundred thirty-six' WHERE a=23467;\nUPDATE t2 SET c='four hundred sixty-nine' WHERE a=23468;\nUPDATE t2 SET c='seventy-two thousand twenty-one' WHERE a=23469;\nUPDATE t2 SET c='eighty-one thousand six hundred fifty-six' WHERE a=23470;\nUPDATE t2 SET c='ten thousand two hundred seventeen' WHERE a=23471;\nUPDATE t2 SET c='fifty-five thousand thirty-seven' WHERE a=23472;\nUPDATE t2 SET c='ninety thousand six hundred three' WHERE a=23473;\nUPDATE t2 SET c='ninety-four thousand three hundred ninety-three' WHERE a=23474;\nUPDATE t2 SET c='ninety-nine thousand eight' WHERE a=23475;\nUPDATE t2 SET c='eighty-seven thousand seven hundred sixty-eight' WHERE a=23476;\nUPDATE t2 SET c='fifty-two thousand four hundred thirty-five' WHERE a=23477;\nUPDATE t2 SET c='thirty-five thousand five hundred seventy-seven' WHERE a=23478;\nUPDATE t2 SET c='fifty-seven thousand one hundred two' WHERE a=23479;\nUPDATE t2 SET c='ninety-nine thousand six hundred seventy-seven' WHERE a=23480;\nUPDATE t2 SET c='three thousand two hundred three' WHERE a=23481;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-three' WHERE a=23482;\nUPDATE t2 SET c='seventy thousand three hundred thirty-two' WHERE a=23483;\nUPDATE t2 SET c='twenty-three thousand two hundred' WHERE a=23484;\nUPDATE t2 SET c='eighty-four thousand eight hundred eighty-one' WHERE a=23485;\nUPDATE t2 SET c='fifty-nine thousand nine hundred eighty-three' WHERE a=23486;\nUPDATE t2 SET c='ninety thousand five hundred thirty-five' WHERE a=23487;\nUPDATE t2 SET c='twenty-six thousand nine hundred sixty-five' WHERE a=23488;\nUPDATE t2 SET c='sixty-eight thousand six hundred ninety-nine' WHERE a=23489;\nUPDATE t2 SET c='thirty-eight thousand three hundred eighty-six' WHERE a=23490;\nUPDATE t2 SET c='thirty-one thousand eight hundred thirty-nine' WHERE a=23491;\nUPDATE t2 SET c='eighty-three thousand eight hundred seventy-six' WHERE a=23492;\nUPDATE t2 SET c='forty-nine thousand six hundred fifty-three' WHERE a=23493;\nUPDATE t2 SET c='fifty thousand five hundred seventy-three' WHERE a=23494;\nUPDATE t2 SET c='seventy-seven thousand three hundred eighty-seven' WHERE a=23495;\nUPDATE t2 SET c='sixteen thousand seven hundred twenty-five' WHERE a=23496;\nUPDATE t2 SET c='thirty-five thousand twenty-six' WHERE a=23497;\nUPDATE t2 SET c='eighty-six thousand five hundred eighty-six' WHERE a=23498;\nUPDATE t2 SET c='twenty-four thousand six hundred twenty-two' WHERE a=23499;\nUPDATE t2 SET c='two hundred fifty-five' WHERE a=23500;\nUPDATE t2 SET c='seventy-six thousand eight hundred seventy-six' WHERE a=23501;\nUPDATE t2 SET c='forty-five thousand two hundred two' WHERE a=23502;\nUPDATE t2 SET c='twenty thousand nine hundred fifteen' WHERE a=23503;\nUPDATE t2 SET c='six thousand six hundred ninety' WHERE a=23504;\nUPDATE t2 SET c='one thousand nine hundred fifty-three' WHERE a=23505;\nUPDATE t2 SET c='thirty-four thousand six hundred forty' WHERE a=23506;\nUPDATE t2 SET c='thirty-five thousand three hundred twenty-four' WHERE a=23507;\nUPDATE t2 SET c='eight thousand three hundred one' WHERE a=23508;\nUPDATE t2 SET c='eighty-four thousand fourteen' WHERE a=23509;\nUPDATE t2 SET c='eight thousand two hundred forty-five' WHERE a=23510;\nUPDATE t2 SET c='nineteen thousand six hundred ninety-two' WHERE a=23511;\nUPDATE t2 SET c='ninety-three thousand eight hundred nineteen' WHERE a=23512;\nUPDATE t2 SET c='seventy-six thousand seven hundred fifty-four' WHERE a=23513;\nUPDATE t2 SET c='ten thousand four hundred thirty-five' WHERE a=23514;\nUPDATE t2 SET c='fifty-seven thousand thirty-six' WHERE a=23515;\nUPDATE t2 SET c='eighty-nine thousand three hundred seventy-eight' WHERE a=23516;\nUPDATE t2 SET c='nine thousand nine hundred fifty-three' WHERE a=23517;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-two' WHERE a=23518;\nUPDATE t2 SET c='ninety thousand four hundred thirty-three' WHERE a=23519;\nUPDATE t2 SET c='one thousand two hundred twenty-one' WHERE a=23520;\nUPDATE t2 SET c='twenty-one thousand six hundred thirty-four' WHERE a=23521;\nUPDATE t2 SET c='eighty-five thousand five hundred ninety-six' WHERE a=23522;\nUPDATE t2 SET c='fifty-nine thousand four hundred thirty' WHERE a=23523;\nUPDATE t2 SET c='seventy thousand nine hundred four' WHERE a=23524;\nUPDATE t2 SET c='fifty-five thousand three hundred thirty-one' WHERE a=23525;\nUPDATE t2 SET c='thirty-eight thousand eighty-two' WHERE a=23526;\nUPDATE t2 SET c='forty-one thousand five hundred twenty-eight' WHERE a=23527;\nUPDATE t2 SET c='twenty-nine thousand five hundred sixty-six' WHERE a=23528;\nUPDATE t2 SET c='eighty-two thousand eight hundred forty-nine' WHERE a=23529;\nUPDATE t2 SET c='fifteen thousand seven hundred fifty-two' WHERE a=23530;\nUPDATE t2 SET c='twenty-one thousand three hundred fifteen' WHERE a=23531;\nUPDATE t2 SET c='eight thousand nine hundred seventy-one' WHERE a=23532;\nUPDATE t2 SET c='ninety-three thousand two hundred fifteen' WHERE a=23533;\nUPDATE t2 SET c='eighty-six thousand six hundred ninety-five' WHERE a=23534;\nUPDATE t2 SET c='twenty-six thousand two hundred ninety' WHERE a=23535;\nUPDATE t2 SET c='seven thousand five hundred forty-three' WHERE a=23536;\nUPDATE t2 SET c='ninety-five thousand two hundred ninety-one' WHERE a=23537;\nUPDATE t2 SET c='forty-two thousand forty-nine' WHERE a=23538;\nUPDATE t2 SET c='thirteen thousand eight hundred twenty-six' WHERE a=23539;\nUPDATE t2 SET c='thirty-three thousand two hundred seventeen' WHERE a=23540;\nUPDATE t2 SET c='seventy-six thousand seven hundred seventy-seven' WHERE a=23541;\nUPDATE t2 SET c='twenty-four thousand six hundred ninety-eight' WHERE a=23542;\nUPDATE t2 SET c='fifty-one thousand eight hundred ninety-one' WHERE a=23543;\nUPDATE t2 SET c='thirty-four thousand six hundred forty-four' WHERE a=23544;\nUPDATE t2 SET c='three thousand seven hundred twenty-six' WHERE a=23545;\nUPDATE t2 SET c='twenty-three thousand nine hundred ninety-three' WHERE a=23546;\nUPDATE t2 SET c='forty-eight thousand four hundred seventy-six' WHERE a=23547;\nUPDATE t2 SET c='seventy-four thousand two hundred forty-nine' WHERE a=23548;\nUPDATE t2 SET c='twenty-one thousand five hundred thirty-three' WHERE a=23549;\nUPDATE t2 SET c='fifty-two thousand nine hundred nineteen' WHERE a=23550;\nUPDATE t2 SET c='one thousand one hundred eighty-six' WHERE a=23551;\nUPDATE t2 SET c='seventeen thousand one hundred eighteen' WHERE a=23552;\nUPDATE t2 SET c='six thousand one hundred thirty-three' WHERE a=23553;\nUPDATE t2 SET c='three thousand six hundred twenty-one' WHERE a=23554;\nUPDATE t2 SET c='six thousand eight hundred sixty-one' WHERE a=23555;\nUPDATE t2 SET c='forty-five thousand five hundred forty-five' WHERE a=23556;\nUPDATE t2 SET c='eighty thousand two hundred forty-one' WHERE a=23557;\nUPDATE t2 SET c='seventy-eight thousand four hundred eighteen' WHERE a=23558;\nUPDATE t2 SET c='forty thousand nine hundred fifty-seven' WHERE a=23559;\nUPDATE t2 SET c='fourteen thousand four hundred two' WHERE a=23560;\nUPDATE t2 SET c='seventy-six thousand one hundred thirteen' WHERE a=23561;\nUPDATE t2 SET c='forty-four thousand nine hundred ninety-three' WHERE a=23562;\nUPDATE t2 SET c='thirty-eight thousand eight hundred fifty-three' WHERE a=23563;\nUPDATE t2 SET c='seventy-seven thousand seven hundred ninety-one' WHERE a=23564;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventeen' WHERE a=23565;\nUPDATE t2 SET c='forty-seven thousand two hundred forty-four' WHERE a=23566;\nUPDATE t2 SET c='fifteen thousand nine hundred eighty-eight' WHERE a=23567;\nUPDATE t2 SET c='eighty-eight thousand forty-two' WHERE a=23568;\nUPDATE t2 SET c='sixty-five thousand seven hundred ninety' WHERE a=23569;\nUPDATE t2 SET c='seventy-two thousand seven hundred twenty-three' WHERE a=23570;\nUPDATE t2 SET c='ninety-four thousand seven hundred' WHERE a=23571;\nUPDATE t2 SET c='sixty-six thousand three hundred eighty' WHERE a=23572;\nUPDATE t2 SET c='twenty thousand nineteen' WHERE a=23573;\nUPDATE t2 SET c='six hundred seventy-one' WHERE a=23574;\nUPDATE t2 SET c='ninety thousand nine hundred eighty' WHERE a=23575;\nUPDATE t2 SET c='seventy-five thousand four hundred sixty-six' WHERE a=23576;\nUPDATE t2 SET c='forty thousand seven hundred sixty-four' WHERE a=23577;\nUPDATE t2 SET c='thirty-six thousand eight hundred forty-seven' WHERE a=23578;\nUPDATE t2 SET c='eighty-eight thousand four hundred sixty-three' WHERE a=23579;\nUPDATE t2 SET c='thirty-nine thousand five hundred ninety-seven' WHERE a=23580;\nUPDATE t2 SET c='five hundred ninety-nine' WHERE a=23581;\nUPDATE t2 SET c='six thousand thirty-five' WHERE a=23582;\nUPDATE t2 SET c='six thousand four hundred twenty-eight' WHERE a=23583;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-one' WHERE a=23584;\nUPDATE t2 SET c='thirty-one thousand six hundred seventy-six' WHERE a=23585;\nUPDATE t2 SET c='fifty-eight thousand four hundred forty-two' WHERE a=23586;\nUPDATE t2 SET c='fifty thousand seven hundred twenty-two' WHERE a=23587;\nUPDATE t2 SET c='sixty-five thousand nine hundred fifty' WHERE a=23588;\nUPDATE t2 SET c='sixty-six thousand nine hundred seventy-six' WHERE a=23589;\nUPDATE t2 SET c='thirty-eight thousand one hundred forty-nine' WHERE a=23590;\nUPDATE t2 SET c='thirty-eight thousand two hundred ninety-six' WHERE a=23591;\nUPDATE t2 SET c='seventy-one thousand three hundred nine' WHERE a=23592;\nUPDATE t2 SET c='sixty-one thousand seven hundred sixty-two' WHERE a=23593;\nUPDATE t2 SET c='forty-five thousand six hundred twenty-three' WHERE a=23594;\nUPDATE t2 SET c='fifty-one thousand nine hundred thirty-six' WHERE a=23595;\nUPDATE t2 SET c='forty-one thousand two hundred forty-nine' WHERE a=23596;\nUPDATE t2 SET c='two thousand seven hundred eleven' WHERE a=23597;\nUPDATE t2 SET c='seventy-two thousand eight hundred sixty' WHERE a=23598;\nUPDATE t2 SET c='fourteen thousand five hundred thirty-one' WHERE a=23599;\nUPDATE t2 SET c='twenty thousand nine hundred fifty-nine' WHERE a=23600;\nUPDATE t2 SET c='eighty-nine thousand one hundred thirty-six' WHERE a=23601;\nUPDATE t2 SET c='forty-four thousand three hundred seventy-two' WHERE a=23602;\nUPDATE t2 SET c='sixty-six thousand nine hundred sixty-seven' WHERE a=23603;\nUPDATE t2 SET c='ninety-two thousand five hundred ninety-five' WHERE a=23604;\nUPDATE t2 SET c='eighty thousand forty-seven' WHERE a=23605;\nUPDATE t2 SET c='twenty-three thousand seven hundred fifty-five' WHERE a=23606;\nUPDATE t2 SET c='ninety-six thousand two hundred seventy-two' WHERE a=23607;\nUPDATE t2 SET c='six thousand four hundred fifteen' WHERE a=23608;\nUPDATE t2 SET c='sixty-three thousand four hundred' WHERE a=23609;\nUPDATE t2 SET c='eighty-eight thousand eight hundred fourteen' WHERE a=23610;\nUPDATE t2 SET c='sixty-seven thousand four hundred eighty-two' WHERE a=23611;\nUPDATE t2 SET c='sixty-four thousand sixty-eight' WHERE a=23612;\nUPDATE t2 SET c='twenty-nine thousand three hundred ninety-two' WHERE a=23613;\nUPDATE t2 SET c='ninety-nine thousand sixty-five' WHERE a=23614;\nUPDATE t2 SET c='twenty-eight thousand six hundred six' WHERE a=23615;\nUPDATE t2 SET c='ninety thousand five hundred ninety-nine' WHERE a=23616;\nUPDATE t2 SET c='five thousand five hundred fifty-six' WHERE a=23617;\nUPDATE t2 SET c='sixty-two thousand ninety-seven' WHERE a=23618;\nUPDATE t2 SET c='sixty-five thousand seven hundred sixty-nine' WHERE a=23619;\nUPDATE t2 SET c='eighty-seven thousand four hundred sixty-four' WHERE a=23620;\nUPDATE t2 SET c='fifty-seven thousand eight hundred seventy-seven' WHERE a=23621;\nUPDATE t2 SET c='twenty-one thousand one hundred forty-six' WHERE a=23622;\nUPDATE t2 SET c='thirteen thousand three hundred four' WHERE a=23623;\nUPDATE t2 SET c='one thousand seven hundred eighteen' WHERE a=23624;\nUPDATE t2 SET c='forty-five thousand seven hundred sixty-two' WHERE a=23625;\nUPDATE t2 SET c='thirty-nine thousand one hundred eight' WHERE a=23626;\nUPDATE t2 SET c='nine thousand two hundred thirty' WHERE a=23627;\nUPDATE t2 SET c='forty-six thousand nine hundred one' WHERE a=23628;\nUPDATE t2 SET c='seventy thousand nine hundred forty' WHERE a=23629;\nUPDATE t2 SET c='eleven thousand eight hundred twenty-eight' WHERE a=23630;\nUPDATE t2 SET c='sixty-one thousand five hundred thirty-eight' WHERE a=23631;\nUPDATE t2 SET c='seventy thousand two hundred eighty-five' WHERE a=23632;\nUPDATE t2 SET c='forty-seven thousand three hundred eighty-eight' WHERE a=23633;\nUPDATE t2 SET c='sixteen thousand three hundred forty-one' WHERE a=23634;\nUPDATE t2 SET c='thirty thousand three hundred seventeen' WHERE a=23635;\nUPDATE t2 SET c='thirty thousand seven hundred fifty-two' WHERE a=23636;\nUPDATE t2 SET c='thirty thousand eight hundred forty-seven' WHERE a=23637;\nUPDATE t2 SET c='twelve thousand seven hundred seventy-five' WHERE a=23638;\nUPDATE t2 SET c='twelve thousand one hundred ninety-five' WHERE a=23639;\nUPDATE t2 SET c='sixty-seven thousand nine hundred sixty' WHERE a=23640;\nUPDATE t2 SET c='fifty-four thousand one hundred ninety-nine' WHERE a=23641;\nUPDATE t2 SET c='seventeen thousand twenty' WHERE a=23642;\nUPDATE t2 SET c='seventy-one thousand four hundred eight' WHERE a=23643;\nUPDATE t2 SET c='fifty-eight thousand one hundred twenty-one' WHERE a=23644;\nUPDATE t2 SET c='sixty-eight thousand five hundred fifty' WHERE a=23645;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty-one' WHERE a=23646;\nUPDATE t2 SET c='fifty-one thousand two hundred sixty' WHERE a=23647;\nUPDATE t2 SET c='fifty-four thousand nine hundred thirty-six' WHERE a=23648;\nUPDATE t2 SET c='thirty thousand seven hundred fifty-four' WHERE a=23649;\nUPDATE t2 SET c='eighty-two thousand seven hundred nine' WHERE a=23650;\nUPDATE t2 SET c='thirty-five thousand ninety-six' WHERE a=23651;\nUPDATE t2 SET c='forty-four thousand one hundred sixty-one' WHERE a=23652;\nUPDATE t2 SET c='three thousand nine hundred thirty-seven' WHERE a=23653;\nUPDATE t2 SET c='thirty-seven thousand nine hundred fifty' WHERE a=23654;\nUPDATE t2 SET c='ninety-four thousand three hundred ninety-four' WHERE a=23655;\nUPDATE t2 SET c='four thousand two hundred two' WHERE a=23656;\nUPDATE t2 SET c='ninety-five thousand one hundred seventy-four' WHERE a=23657;\nUPDATE t2 SET c='ten thousand eighty-seven' WHERE a=23658;\nUPDATE t2 SET c='twenty-seven thousand three hundred six' WHERE a=23659;\nUPDATE t2 SET c='seven thousand seven hundred fifty-four' WHERE a=23660;\nUPDATE t2 SET c='forty-eight thousand two hundred eighty-four' WHERE a=23661;\nUPDATE t2 SET c='sixty-four thousand four hundred fifteen' WHERE a=23662;\nUPDATE t2 SET c='fifty-nine thousand seven hundred seventy-nine' WHERE a=23663;\nUPDATE t2 SET c='six hundred seventy-five' WHERE a=23664;\nUPDATE t2 SET c='sixty-one thousand nine hundred eighty-one' WHERE a=23665;\nUPDATE t2 SET c='eighty-three thousand six hundred nine' WHERE a=23666;\nUPDATE t2 SET c='forty-four thousand two hundred eighty-four' WHERE a=23667;\nUPDATE t2 SET c='twenty-three thousand nine hundred thirty-eight' WHERE a=23668;\nUPDATE t2 SET c='eighty-four thousand three hundred' WHERE a=23669;\nUPDATE t2 SET c='forty-four thousand nine hundred fifty-six' WHERE a=23670;\nUPDATE t2 SET c='sixty-three thousand eight hundred twelve' WHERE a=23671;\nUPDATE t2 SET c='ninety thousand four hundred fifty' WHERE a=23672;\nUPDATE t2 SET c='seventy-two thousand six hundred seventy-four' WHERE a=23673;\nUPDATE t2 SET c='thirty-nine thousand ninety-two' WHERE a=23674;\nUPDATE t2 SET c='one thousand three hundred eighty-five' WHERE a=23675;\nUPDATE t2 SET c='fifty-seven thousand nine hundred forty-eight' WHERE a=23676;\nUPDATE t2 SET c='ten thousand eight hundred thirty-two' WHERE a=23677;\nUPDATE t2 SET c='twenty-two thousand nine hundred twenty-three' WHERE a=23678;\nUPDATE t2 SET c='sixty-three thousand eight hundred fifteen' WHERE a=23679;\nUPDATE t2 SET c='ninety-three thousand eight hundred thirty-two' WHERE a=23680;\nUPDATE t2 SET c='sixty thousand seven hundred seventy-four' WHERE a=23681;\nUPDATE t2 SET c='sixty-two thousand nineteen' WHERE a=23682;\nUPDATE t2 SET c='forty-eight thousand seven hundred eighty' WHERE a=23683;\nUPDATE t2 SET c='fifteen thousand nine hundred ten' WHERE a=23684;\nUPDATE t2 SET c='seventy-nine thousand fifty-one' WHERE a=23685;\nUPDATE t2 SET c='fifty-three thousand six hundred seventy-four' WHERE a=23686;\nUPDATE t2 SET c='twenty-five thousand five hundred ten' WHERE a=23687;\nUPDATE t2 SET c='five thousand twelve' WHERE a=23688;\nUPDATE t2 SET c='forty-four thousand six hundred seventy-four' WHERE a=23689;\nUPDATE t2 SET c='twenty thousand one hundred thirteen' WHERE a=23690;\nUPDATE t2 SET c='seventy-six thousand sixty-eight' WHERE a=23691;\nUPDATE t2 SET c='ninety-four thousand nine hundred forty-two' WHERE a=23692;\nUPDATE t2 SET c='thirteen thousand five hundred sixty-four' WHERE a=23693;\nUPDATE t2 SET c='eighty thousand four hundred forty-eight' WHERE a=23694;\nUPDATE t2 SET c='five thousand six hundred eighty-four' WHERE a=23695;\nUPDATE t2 SET c='thirty-four thousand four hundred thirty-two' WHERE a=23696;\nUPDATE t2 SET c='sixty-five thousand one hundred thirty' WHERE a=23697;\nUPDATE t2 SET c='sixty-eight thousand seven hundred thirty-nine' WHERE a=23698;\nUPDATE t2 SET c='seventy-one thousand eight hundred forty-six' WHERE a=23699;\nUPDATE t2 SET c='fifty-nine thousand three hundred twenty-three' WHERE a=23700;\nUPDATE t2 SET c='two thousand forty-eight' WHERE a=23701;\nUPDATE t2 SET c='thirty-nine thousand seven hundred sixty-eight' WHERE a=23702;\nUPDATE t2 SET c='eighty-four thousand fifty-eight' WHERE a=23703;\nUPDATE t2 SET c='thirty-four thousand seven hundred' WHERE a=23704;\nUPDATE t2 SET c='thirty-eight thousand nine hundred seventy-five' WHERE a=23705;\nUPDATE t2 SET c='eighty-eight thousand six hundred seventy-one' WHERE a=23706;\nUPDATE t2 SET c='twenty-two thousand nine hundred thirty-eight' WHERE a=23707;\nUPDATE t2 SET c='twenty-nine thousand six hundred sixty-six' WHERE a=23708;\nUPDATE t2 SET c='nineteen thousand one hundred eighty-one' WHERE a=23709;\nUPDATE t2 SET c='sixty-nine thousand forty-nine' WHERE a=23710;\nUPDATE t2 SET c='seventy-one thousand ninety-seven' WHERE a=23711;\nUPDATE t2 SET c='three thousand two hundred thirty-four' WHERE a=23712;\nUPDATE t2 SET c='ninety-eight thousand eight hundred thirty-seven' WHERE a=23713;\nUPDATE t2 SET c='seventy-seven thousand five hundred eighty-one' WHERE a=23714;\nUPDATE t2 SET c='eighteen thousand seven hundred forty-three' WHERE a=23715;\nUPDATE t2 SET c='fifty-two thousand six hundred fifty-five' WHERE a=23716;\nUPDATE t2 SET c='twenty-six thousand two hundred sixty-eight' WHERE a=23717;\nUPDATE t2 SET c='fifty-two thousand five hundred forty-seven' WHERE a=23718;\nUPDATE t2 SET c='forty-one thousand five hundred two' WHERE a=23719;\nUPDATE t2 SET c='nine thousand thirty-one' WHERE a=23720;\nUPDATE t2 SET c='ninety-eight thousand four hundred twenty-three' WHERE a=23721;\nUPDATE t2 SET c='ninety-two thousand three hundred seventy-four' WHERE a=23722;\nUPDATE t2 SET c='seventy-two thousand four hundred twenty-three' WHERE a=23723;\nUPDATE t2 SET c='seventy-two thousand seventy-nine' WHERE a=23724;\nUPDATE t2 SET c='seventy-eight thousand one hundred eight' WHERE a=23725;\nUPDATE t2 SET c='sixty-four thousand five hundred seven' WHERE a=23726;\nUPDATE t2 SET c='sixty-six thousand seven hundred twenty-two' WHERE a=23727;\nUPDATE t2 SET c='one thousand seven hundred twelve' WHERE a=23728;\nUPDATE t2 SET c='twenty thousand seven hundred seventeen' WHERE a=23729;\nUPDATE t2 SET c='fifty-seven thousand nine hundred sixty-seven' WHERE a=23730;\nUPDATE t2 SET c='eighty-five thousand sixty' WHERE a=23731;\nUPDATE t2 SET c='forty-two thousand six hundred seven' WHERE a=23732;\nUPDATE t2 SET c='forty-nine thousand sixty-one' WHERE a=23733;\nUPDATE t2 SET c='thirty-four thousand five hundred seventy-two' WHERE a=23734;\nUPDATE t2 SET c='fifty-eight thousand nine hundred ninety-seven' WHERE a=23735;\nUPDATE t2 SET c='sixty-four thousand six hundred twelve' WHERE a=23736;\nUPDATE t2 SET c='fifty-four thousand seven hundred sixty-eight' WHERE a=23737;\nUPDATE t2 SET c='eighty-six thousand two hundred forty-five' WHERE a=23738;\nUPDATE t2 SET c='sixty-nine thousand four hundred sixty-three' WHERE a=23739;\nUPDATE t2 SET c='eighty-six thousand eight hundred fifty-one' WHERE a=23740;\nUPDATE t2 SET c='forty thousand nine hundred sixty-five' WHERE a=23741;\nUPDATE t2 SET c='ninety-five thousand seven hundred ninety-eight' WHERE a=23742;\nUPDATE t2 SET c='fifteen thousand nine hundred four' WHERE a=23743;\nUPDATE t2 SET c='forty-three thousand eight hundred forty-nine' WHERE a=23744;\nUPDATE t2 SET c='fifty-four thousand three' WHERE a=23745;\nUPDATE t2 SET c='eighty thousand twenty-three' WHERE a=23746;\nUPDATE t2 SET c='twelve thousand three hundred ninety-six' WHERE a=23747;\nUPDATE t2 SET c='forty-four thousand four hundred forty-four' WHERE a=23748;\nUPDATE t2 SET c='fifty-nine thousand eight hundred forty-five' WHERE a=23749;\nUPDATE t2 SET c='ninety-one thousand four hundred fifty-seven' WHERE a=23750;\nUPDATE t2 SET c='eighty-two thousand three hundred eighty-one' WHERE a=23751;\nUPDATE t2 SET c='seventy-five thousand three hundred eleven' WHERE a=23752;\nUPDATE t2 SET c='fifty-one thousand nine hundred thirty-six' WHERE a=23753;\nUPDATE t2 SET c='ninety-five thousand six hundred twenty-six' WHERE a=23754;\nUPDATE t2 SET c='sixty-five thousand nine hundred two' WHERE a=23755;\nUPDATE t2 SET c='seventeen thousand one hundred sixteen' WHERE a=23756;\nUPDATE t2 SET c='two hundred four' WHERE a=23757;\nUPDATE t2 SET c='sixty-one thousand nine hundred sixty' WHERE a=23758;\nUPDATE t2 SET c='forty-nine thousand four hundred sixty-nine' WHERE a=23759;\nUPDATE t2 SET c='twenty-two thousand two hundred forty' WHERE a=23760;\nUPDATE t2 SET c='thirty-six thousand three hundred sixty' WHERE a=23761;\nUPDATE t2 SET c='sixteen thousand eight hundred thirty' WHERE a=23762;\nUPDATE t2 SET c='nine hundred thirty-six' WHERE a=23763;\nUPDATE t2 SET c='fifty-eight thousand one hundred twenty-eight' WHERE a=23764;\nUPDATE t2 SET c='eighty-four thousand one hundred sixty-two' WHERE a=23765;\nUPDATE t2 SET c='seventy-one thousand two hundred fifty-two' WHERE a=23766;\nUPDATE t2 SET c='ninety-four thousand three hundred ninety-two' WHERE a=23767;\nUPDATE t2 SET c='eighty-two thousand twenty-seven' WHERE a=23768;\nUPDATE t2 SET c='twenty-seven thousand' WHERE a=23769;\nUPDATE t2 SET c='forty-nine thousand four' WHERE a=23770;\nUPDATE t2 SET c='sixty-six thousand fifty-two' WHERE a=23771;\nUPDATE t2 SET c='thirty-nine thousand nine hundred forty-one' WHERE a=23772;\nUPDATE t2 SET c='seven thousand six hundred eighty-six' WHERE a=23773;\nUPDATE t2 SET c='fifty thousand forty-four' WHERE a=23774;\nUPDATE t2 SET c='thirty-five thousand six hundred twenty' WHERE a=23775;\nUPDATE t2 SET c='eight thousand one hundred four' WHERE a=23776;\nUPDATE t2 SET c='seventy-five thousand five hundred ninety-three' WHERE a=23777;\nUPDATE t2 SET c='thirty-two thousand five hundred fifty-three' WHERE a=23778;\nUPDATE t2 SET c='ninety-four thousand six hundred ten' WHERE a=23779;\nUPDATE t2 SET c='eighty-five thousand seven hundred seventy-eight' WHERE a=23780;\nUPDATE t2 SET c='seventeen thousand four hundred forty-four' WHERE a=23781;\nUPDATE t2 SET c='twenty-eight thousand seven hundred sixty-five' WHERE a=23782;\nUPDATE t2 SET c='eighty-two thousand nine hundred seventy-six' WHERE a=23783;\nUPDATE t2 SET c='seventy-three thousand five' WHERE a=23784;\nUPDATE t2 SET c='eighty-five thousand six hundred sixty-six' WHERE a=23785;\nUPDATE t2 SET c='thirty thousand seven hundred two' WHERE a=23786;\nUPDATE t2 SET c='eighty-three thousand four hundred twenty-four' WHERE a=23787;\nUPDATE t2 SET c='ten thousand four hundred forty-two' WHERE a=23788;\nUPDATE t2 SET c='fifty-five thousand two hundred forty-six' WHERE a=23789;\nUPDATE t2 SET c='seventy-five thousand two hundred twenty-four' WHERE a=23790;\nUPDATE t2 SET c='ten thousand two hundred fifty-six' WHERE a=23791;\nUPDATE t2 SET c='ninety-four thousand two hundred ninety-nine' WHERE a=23792;\nUPDATE t2 SET c='fifty-eight thousand six hundred fifty-seven' WHERE a=23793;\nUPDATE t2 SET c='seventy-five thousand six hundred ninety-six' WHERE a=23794;\nUPDATE t2 SET c='fifty-one thousand five hundred ten' WHERE a=23795;\nUPDATE t2 SET c='sixty-seven thousand six hundred twenty-five' WHERE a=23796;\nUPDATE t2 SET c='thirty-nine thousand four hundred fifty-two' WHERE a=23797;\nUPDATE t2 SET c='four thousand six hundred seventeen' WHERE a=23798;\nUPDATE t2 SET c='ninety-six thousand eight hundred sixty-five' WHERE a=23799;\nUPDATE t2 SET c='nine thousand one hundred forty-seven' WHERE a=23800;\nUPDATE t2 SET c='ninety-seven thousand nine hundred thirty-nine' WHERE a=23801;\nUPDATE t2 SET c='twelve thousand nine hundred eighty-nine' WHERE a=23802;\nUPDATE t2 SET c='eighty-eight thousand six hundred sixty-six' WHERE a=23803;\nUPDATE t2 SET c='forty-eight thousand twenty-eight' WHERE a=23804;\nUPDATE t2 SET c='sixty-eight thousand seventy-three' WHERE a=23805;\nUPDATE t2 SET c='sixty-two thousand sixty-six' WHERE a=23806;\nUPDATE t2 SET c='nine thousand six hundred fourteen' WHERE a=23807;\nUPDATE t2 SET c='sixty-four thousand thirty-two' WHERE a=23808;\nUPDATE t2 SET c='thirty-two thousand six hundred eighty-one' WHERE a=23809;\nUPDATE t2 SET c='eighty-five thousand six hundred nineteen' WHERE a=23810;\nUPDATE t2 SET c='eighty-three thousand five hundred seventy-five' WHERE a=23811;\nUPDATE t2 SET c='eight thousand nine hundred twenty-seven' WHERE a=23812;\nUPDATE t2 SET c='two thousand one hundred forty-seven' WHERE a=23813;\nUPDATE t2 SET c='forty-eight thousand three hundred eighteen' WHERE a=23814;\nUPDATE t2 SET c='forty-six thousand five hundred five' WHERE a=23815;\nUPDATE t2 SET c='sixty-five thousand one hundred six' WHERE a=23816;\nUPDATE t2 SET c='fifty-eight thousand nine hundred fifteen' WHERE a=23817;\nUPDATE t2 SET c='fifty-eight thousand nine hundred seventy-four' WHERE a=23818;\nUPDATE t2 SET c='ten thousand six hundred fifteen' WHERE a=23819;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighty-two' WHERE a=23820;\nUPDATE t2 SET c='forty-seven thousand thirty-one' WHERE a=23821;\nUPDATE t2 SET c='ninety-three thousand six' WHERE a=23822;\nUPDATE t2 SET c='forty-one thousand five hundred sixty-seven' WHERE a=23823;\nUPDATE t2 SET c='ninety-nine thousand four hundred eighty-one' WHERE a=23824;\nUPDATE t2 SET c='eighty-six thousand seven hundred sixty-five' WHERE a=23825;\nUPDATE t2 SET c='fifty-three thousand one hundred seventy-five' WHERE a=23826;\nUPDATE t2 SET c='thirty-seven thousand one hundred eight' WHERE a=23827;\nUPDATE t2 SET c='six thousand nine hundred sixty-one' WHERE a=23828;\nUPDATE t2 SET c='eight thousand thirty' WHERE a=23829;\nUPDATE t2 SET c='sixty-three thousand eight hundred thirty-eight' WHERE a=23830;\nUPDATE t2 SET c='seventy-eight thousand one hundred twenty' WHERE a=23831;\nUPDATE t2 SET c='seventy-four thousand five hundred ninety-five' WHERE a=23832;\nUPDATE t2 SET c='nine thousand five hundred two' WHERE a=23833;\nUPDATE t2 SET c='sixty-seven thousand eighty-one' WHERE a=23834;\nUPDATE t2 SET c='fifty-one thousand nine hundred forty-two' WHERE a=23835;\nUPDATE t2 SET c='fifty-eight thousand six hundred' WHERE a=23836;\nUPDATE t2 SET c='seventy-two thousand two hundred forty-one' WHERE a=23837;\nUPDATE t2 SET c='nine thousand seven hundred fifteen' WHERE a=23838;\nUPDATE t2 SET c='thirty-one thousand four hundred fifty' WHERE a=23839;\nUPDATE t2 SET c='ten thousand forty-eight' WHERE a=23840;\nUPDATE t2 SET c='thirty-nine thousand eight hundred thirteen' WHERE a=23841;\nUPDATE t2 SET c='ninety-two thousand eleven' WHERE a=23842;\nUPDATE t2 SET c='fifteen thousand one hundred ninety-seven' WHERE a=23843;\nUPDATE t2 SET c='sixty-eight thousand five hundred eighty-four' WHERE a=23844;\nUPDATE t2 SET c='seventeen thousand two hundred twenty-seven' WHERE a=23845;\nUPDATE t2 SET c='four thousand nine hundred sixty-four' WHERE a=23846;\nUPDATE t2 SET c='ten thousand twenty-two' WHERE a=23847;\nUPDATE t2 SET c='fifty thousand three hundred fifty-eight' WHERE a=23848;\nUPDATE t2 SET c='seventeen thousand five hundred twenty-eight' WHERE a=23849;\nUPDATE t2 SET c='forty thousand eight hundred fifty-two' WHERE a=23850;\nUPDATE t2 SET c='five thousand three hundred twenty-one' WHERE a=23851;\nUPDATE t2 SET c='twenty-three thousand two hundred twenty-one' WHERE a=23852;\nUPDATE t2 SET c='thirty-one thousand one hundred fifty-eight' WHERE a=23853;\nUPDATE t2 SET c='two thousand six hundred seventy-three' WHERE a=23854;\nUPDATE t2 SET c='fifty-seven thousand six hundred seventeen' WHERE a=23855;\nUPDATE t2 SET c='ninety thousand nine hundred twenty-one' WHERE a=23856;\nUPDATE t2 SET c='forty-five thousand nine hundred fifty-five' WHERE a=23857;\nUPDATE t2 SET c='eighty-eight thousand three hundred fifty-three' WHERE a=23858;\nUPDATE t2 SET c='eighty-four thousand two hundred forty-two' WHERE a=23859;\nUPDATE t2 SET c='eighty-eight thousand five hundred four' WHERE a=23860;\nUPDATE t2 SET c='eighty-three thousand nine hundred nineteen' WHERE a=23861;\nUPDATE t2 SET c='thirty-three thousand two hundred twenty-nine' WHERE a=23862;\nUPDATE t2 SET c='twenty-nine thousand seven hundred thirty-two' WHERE a=23863;\nUPDATE t2 SET c='eighteen thousand six hundred ninety-two' WHERE a=23864;\nUPDATE t2 SET c='forty-three thousand four hundred twenty-one' WHERE a=23865;\nUPDATE t2 SET c='fifty-three thousand four hundred sixty-one' WHERE a=23866;\nUPDATE t2 SET c='eighty thousand five hundred fifty-seven' WHERE a=23867;\nUPDATE t2 SET c='sixty-eight thousand eight hundred twenty-seven' WHERE a=23868;\nUPDATE t2 SET c='forty-one thousand five hundred ninety-one' WHERE a=23869;\nUPDATE t2 SET c='ninety-two thousand six hundred ninety-eight' WHERE a=23870;\nUPDATE t2 SET c='fifty-four thousand three hundred twenty-two' WHERE a=23871;\nUPDATE t2 SET c='fifty-one thousand twenty-three' WHERE a=23872;\nUPDATE t2 SET c='ninety-seven thousand two hundred sixty-five' WHERE a=23873;\nUPDATE t2 SET c='twenty-three thousand three hundred forty-eight' WHERE a=23874;\nUPDATE t2 SET c='fourteen thousand six hundred thirty-six' WHERE a=23875;\nUPDATE t2 SET c='twenty-one thousand two hundred fifty-seven' WHERE a=23876;\nUPDATE t2 SET c='fifty-two thousand five hundred seventy' WHERE a=23877;\nUPDATE t2 SET c='seventeen thousand seven hundred twenty-nine' WHERE a=23878;\nUPDATE t2 SET c='forty-three thousand seven hundred three' WHERE a=23879;\nUPDATE t2 SET c='sixty-seven thousand three hundred seventy-six' WHERE a=23880;\nUPDATE t2 SET c='eighty-four thousand nine hundred four' WHERE a=23881;\nUPDATE t2 SET c='two thousand eight hundred ninety-two' WHERE a=23882;\nUPDATE t2 SET c='nineteen thousand six hundred eight' WHERE a=23883;\nUPDATE t2 SET c='twenty-eight thousand one hundred seventy-six' WHERE a=23884;\nUPDATE t2 SET c='sixty-three thousand seven hundred seventy-five' WHERE a=23885;\nUPDATE t2 SET c='forty thousand six hundred twenty-three' WHERE a=23886;\nUPDATE t2 SET c='ten thousand seven hundred ninety-two' WHERE a=23887;\nUPDATE t2 SET c='sixty-nine thousand two hundred seventy-two' WHERE a=23888;\nUPDATE t2 SET c='thirty-nine thousand two hundred thirty-one' WHERE a=23889;\nUPDATE t2 SET c='ninety-five thousand five hundred twenty-five' WHERE a=23890;\nUPDATE t2 SET c='ninety-six thousand four hundred sixty-nine' WHERE a=23891;\nUPDATE t2 SET c='thirteen thousand seven hundred ninety-one' WHERE a=23892;\nUPDATE t2 SET c='twenty-eight thousand one hundred twenty-four' WHERE a=23893;\nUPDATE t2 SET c='sixty-four thousand three hundred thirty-five' WHERE a=23894;\nUPDATE t2 SET c='sixty-four thousand five hundred five' WHERE a=23895;\nUPDATE t2 SET c='eighty-eight thousand five hundred ninety-six' WHERE a=23896;\nUPDATE t2 SET c='seven hundred sixty-eight' WHERE a=23897;\nUPDATE t2 SET c='thirty-four thousand one hundred ninety-three' WHERE a=23898;\nUPDATE t2 SET c='thirty-seven thousand seven hundred one' WHERE a=23899;\nUPDATE t2 SET c='twenty-one thousand three hundred ten' WHERE a=23900;\nUPDATE t2 SET c='eighteen thousand two hundred four' WHERE a=23901;\nUPDATE t2 SET c='sixty-seven thousand two hundred thirty-four' WHERE a=23902;\nUPDATE t2 SET c='sixty-eight thousand eight hundred sixty-four' WHERE a=23903;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-two' WHERE a=23904;\nUPDATE t2 SET c='eight thousand nine hundred seventy-four' WHERE a=23905;\nUPDATE t2 SET c='fifty-nine thousand one hundred ninety-one' WHERE a=23906;\nUPDATE t2 SET c='thirty-four thousand five hundred seventy-eight' WHERE a=23907;\nUPDATE t2 SET c='eighty-five thousand twenty-two' WHERE a=23908;\nUPDATE t2 SET c='sixty-nine thousand five hundred twenty-two' WHERE a=23909;\nUPDATE t2 SET c='ninety-three thousand sixty-eight' WHERE a=23910;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty-three' WHERE a=23911;\nUPDATE t2 SET c='seventy-seven thousand five hundred eighty-four' WHERE a=23912;\nUPDATE t2 SET c='seven thousand thirty-six' WHERE a=23913;\nUPDATE t2 SET c='thirty-five thousand nine hundred sixty-nine' WHERE a=23914;\nUPDATE t2 SET c='twenty-two thousand seven hundred one' WHERE a=23915;\nUPDATE t2 SET c='twenty-three thousand nine hundred ninety-three' WHERE a=23916;\nUPDATE t2 SET c='three thousand three hundred eighty' WHERE a=23917;\nUPDATE t2 SET c='forty-five thousand sixty-eight' WHERE a=23918;\nUPDATE t2 SET c='nine thousand one hundred thirty-five' WHERE a=23919;\nUPDATE t2 SET c='nineteen thousand four hundred sixty-one' WHERE a=23920;\nUPDATE t2 SET c='fifty thousand four hundred seventy-eight' WHERE a=23921;\nUPDATE t2 SET c='eighty-two thousand one hundred fifty-four' WHERE a=23922;\nUPDATE t2 SET c='ninety-nine thousand five hundred forty-five' WHERE a=23923;\nUPDATE t2 SET c='seventy-five thousand eighty-eight' WHERE a=23924;\nUPDATE t2 SET c='sixteen thousand nine hundred fourteen' WHERE a=23925;\nUPDATE t2 SET c='nineteen thousand eight hundred seventy-nine' WHERE a=23926;\nUPDATE t2 SET c='eleven thousand seven hundred twelve' WHERE a=23927;\nUPDATE t2 SET c='ninety-four thousand eight hundred thirty-nine' WHERE a=23928;\nUPDATE t2 SET c='thirty-two thousand one hundred forty-two' WHERE a=23929;\nUPDATE t2 SET c='eighty-six thousand one hundred thirty-one' WHERE a=23930;\nUPDATE t2 SET c='forty thousand eight hundred fifty-eight' WHERE a=23931;\nUPDATE t2 SET c='seventy-one thousand eight hundred thirty' WHERE a=23932;\nUPDATE t2 SET c='seventy-five thousand five hundred ninety-two' WHERE a=23933;\nUPDATE t2 SET c='ninety-one thousand seven hundred three' WHERE a=23934;\nUPDATE t2 SET c='forty-one thousand nine hundred fourteen' WHERE a=23935;\nUPDATE t2 SET c='twelve thousand six hundred twenty-one' WHERE a=23936;\nUPDATE t2 SET c='forty-three thousand three hundred sixty-one' WHERE a=23937;\nUPDATE t2 SET c='forty-one thousand six hundred five' WHERE a=23938;\nUPDATE t2 SET c='seventy-six thousand nine hundred thirty-seven' WHERE a=23939;\nUPDATE t2 SET c='eighty-three thousand five hundred eighteen' WHERE a=23940;\nUPDATE t2 SET c='seventeen thousand eight hundred eighty-one' WHERE a=23941;\nUPDATE t2 SET c='twenty-eight thousand two hundred seventy-one' WHERE a=23942;\nUPDATE t2 SET c='three thousand seven hundred fifty-eight' WHERE a=23943;\nUPDATE t2 SET c='forty-three thousand four hundred twenty-five' WHERE a=23944;\nUPDATE t2 SET c='two thousand five hundred forty-three' WHERE a=23945;\nUPDATE t2 SET c='seventy-one thousand seven hundred forty-four' WHERE a=23946;\nUPDATE t2 SET c='thirteen thousand eight hundred seventy-nine' WHERE a=23947;\nUPDATE t2 SET c='forty-one thousand sixty-five' WHERE a=23948;\nUPDATE t2 SET c='fifty-four thousand five hundred sixty-one' WHERE a=23949;\nUPDATE t2 SET c='fifty-five thousand nine hundred nineteen' WHERE a=23950;\nUPDATE t2 SET c='ninety-one thousand six hundred twelve' WHERE a=23951;\nUPDATE t2 SET c='eighty-eight thousand seven hundred forty-three' WHERE a=23952;\nUPDATE t2 SET c='fifty-two thousand three hundred thirty-five' WHERE a=23953;\nUPDATE t2 SET c='forty-two thousand eighty-two' WHERE a=23954;\nUPDATE t2 SET c='thirty-seven thousand three hundred eighty-eight' WHERE a=23955;\nUPDATE t2 SET c='forty-eight thousand six hundred forty-one' WHERE a=23956;\nUPDATE t2 SET c='seven thousand six hundred fifty-six' WHERE a=23957;\nUPDATE t2 SET c='twenty-three thousand three hundred fifty-six' WHERE a=23958;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-seven' WHERE a=23959;\nUPDATE t2 SET c='thirty-two thousand four hundred eighty-five' WHERE a=23960;\nUPDATE t2 SET c='sixty-six thousand seven hundred sixty-four' WHERE a=23961;\nUPDATE t2 SET c='eighty-two thousand nine hundred seven' WHERE a=23962;\nUPDATE t2 SET c='sixty-three thousand six hundred ninety-three' WHERE a=23963;\nUPDATE t2 SET c='eighty-seven thousand eight hundred seventy-three' WHERE a=23964;\nUPDATE t2 SET c='eighty-eight thousand four hundred thirty-four' WHERE a=23965;\nUPDATE t2 SET c='sixty-four thousand two hundred' WHERE a=23966;\nUPDATE t2 SET c='forty-four thousand one hundred seventy-three' WHERE a=23967;\nUPDATE t2 SET c='forty-seven thousand seven hundred twenty-five' WHERE a=23968;\nUPDATE t2 SET c='ten thousand forty-two' WHERE a=23969;\nUPDATE t2 SET c='twenty-nine thousand seven hundred sixty-five' WHERE a=23970;\nUPDATE t2 SET c='six thousand nine hundred seventy-three' WHERE a=23971;\nUPDATE t2 SET c='ninety-two thousand twenty-five' WHERE a=23972;\nUPDATE t2 SET c='ninety-one thousand seven hundred eighty-one' WHERE a=23973;\nUPDATE t2 SET c='twenty-four thousand two hundred sixty-six' WHERE a=23974;\nUPDATE t2 SET c='eighty-six thousand seven hundred thirty-nine' WHERE a=23975;\nUPDATE t2 SET c='six thousand nine hundred forty-four' WHERE a=23976;\nUPDATE t2 SET c='sixty-eight thousand four hundred forty-six' WHERE a=23977;\nUPDATE t2 SET c='forty-six thousand three hundred sixty' WHERE a=23978;\nUPDATE t2 SET c='eighty-five thousand five hundred eighty-one' WHERE a=23979;\nUPDATE t2 SET c='forty-one thousand three hundred sixty-nine' WHERE a=23980;\nUPDATE t2 SET c='ninety-six thousand six hundred sixty-two' WHERE a=23981;\nUPDATE t2 SET c='fourteen thousand two hundred seventy-six' WHERE a=23982;\nUPDATE t2 SET c='sixty-one thousand four hundred eighty-nine' WHERE a=23983;\nUPDATE t2 SET c='ninety-six thousand five hundred five' WHERE a=23984;\nUPDATE t2 SET c='fifteen thousand three hundred fifty-six' WHERE a=23985;\nUPDATE t2 SET c='eighty-five thousand five hundred ninety-two' WHERE a=23986;\nUPDATE t2 SET c='forty-seven thousand seven hundred seventy-nine' WHERE a=23987;\nUPDATE t2 SET c='thirty-eight thousand sixty-one' WHERE a=23988;\nUPDATE t2 SET c='ninety-two thousand five hundred sixty-seven' WHERE a=23989;\nUPDATE t2 SET c='eighteen thousand three hundred eighteen' WHERE a=23990;\nUPDATE t2 SET c='thirteen thousand nine hundred thirty-nine' WHERE a=23991;\nUPDATE t2 SET c='seventy-three thousand nine hundred thirty-four' WHERE a=23992;\nUPDATE t2 SET c='seventy-six thousand two hundred sixty-three' WHERE a=23993;\nUPDATE t2 SET c='forty-one thousand two hundred twenty-one' WHERE a=23994;\nUPDATE t2 SET c='eighty thousand one hundred one' WHERE a=23995;\nUPDATE t2 SET c='forty-one thousand two hundred fifty-seven' WHERE a=23996;\nUPDATE t2 SET c='sixty-four thousand three hundred sixty-one' WHERE a=23997;\nUPDATE t2 SET c='eighteen thousand eight hundred thirty-nine' WHERE a=23998;\nUPDATE t2 SET c='eighty-six thousand one hundred thirty-three' WHERE a=23999;\nUPDATE t2 SET c='twenty-three thousand nine hundred thirty-three' WHERE a=24000;\nUPDATE t2 SET c='sixty thousand one hundred fifteen' WHERE a=24001;\nUPDATE t2 SET c='thirty thousand seven hundred forty-five' WHERE a=24002;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifty-nine' WHERE a=24003;\nUPDATE t2 SET c='seventy-nine thousand five hundred fifty-seven' WHERE a=24004;\nUPDATE t2 SET c='twenty-five thousand one hundred thirty-one' WHERE a=24005;\nUPDATE t2 SET c='forty-five thousand one hundred twelve' WHERE a=24006;\nUPDATE t2 SET c='seventy-three thousand six' WHERE a=24007;\nUPDATE t2 SET c='twenty-nine thousand nine hundred thirty-eight' WHERE a=24008;\nUPDATE t2 SET c='ninety-eight thousand four hundred fifty-seven' WHERE a=24009;\nUPDATE t2 SET c='eighty thousand two hundred five' WHERE a=24010;\nUPDATE t2 SET c='twenty-five thousand six hundred ninety-five' WHERE a=24011;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-five' WHERE a=24012;\nUPDATE t2 SET c='fifty thousand four hundred forty-eight' WHERE a=24013;\nUPDATE t2 SET c='fifteen thousand twenty-nine' WHERE a=24014;\nUPDATE t2 SET c='thirty-one thousand nine hundred nine' WHERE a=24015;\nUPDATE t2 SET c='sixty-eight thousand two hundred fifteen' WHERE a=24016;\nUPDATE t2 SET c='twenty-eight thousand seven hundred forty-one' WHERE a=24017;\nUPDATE t2 SET c='fifty-one thousand nine hundred twenty-eight' WHERE a=24018;\nUPDATE t2 SET c='sixty-eight thousand seventy-four' WHERE a=24019;\nUPDATE t2 SET c='sixty-nine thousand nine hundred seventy-six' WHERE a=24020;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventy-six' WHERE a=24021;\nUPDATE t2 SET c='ninety-six thousand nine hundred seventy-five' WHERE a=24022;\nUPDATE t2 SET c='ninety-nine thousand six hundred forty-one' WHERE a=24023;\nUPDATE t2 SET c='fifty thousand three hundred thirty-five' WHERE a=24024;\nUPDATE t2 SET c='fifty-five thousand two hundred eighty-three' WHERE a=24025;\nUPDATE t2 SET c='fifty-eight thousand six hundred seventeen' WHERE a=24026;\nUPDATE t2 SET c='fifty-seven thousand four hundred fifty' WHERE a=24027;\nUPDATE t2 SET c='twenty-two thousand one hundred sixty-six' WHERE a=24028;\nUPDATE t2 SET c='three thousand seven hundred five' WHERE a=24029;\nUPDATE t2 SET c='sixteen thousand nine hundred sixteen' WHERE a=24030;\nUPDATE t2 SET c='ninety-seven thousand seven hundred seventy-seven' WHERE a=24031;\nUPDATE t2 SET c='fifty-seven thousand eight hundred three' WHERE a=24032;\nUPDATE t2 SET c='forty-seven thousand nine hundred sixteen' WHERE a=24033;\nUPDATE t2 SET c='ninety-one thousand three hundred seventy-five' WHERE a=24034;\nUPDATE t2 SET c='five thousand six hundred sixty-three' WHERE a=24035;\nUPDATE t2 SET c='eighty-three thousand nine hundred forty-eight' WHERE a=24036;\nUPDATE t2 SET c='twelve thousand five hundred fifty-two' WHERE a=24037;\nUPDATE t2 SET c='twenty-nine thousand six hundred sixty-three' WHERE a=24038;\nUPDATE t2 SET c='eleven thousand seven hundred sixty-eight' WHERE a=24039;\nUPDATE t2 SET c='twenty-nine thousand three hundred fifty-nine' WHERE a=24040;\nUPDATE t2 SET c='seventy-six thousand five hundred seventy-three' WHERE a=24041;\nUPDATE t2 SET c='seventy-eight thousand two hundred twenty-five' WHERE a=24042;\nUPDATE t2 SET c='twenty-three thousand eight hundred forty-seven' WHERE a=24043;\nUPDATE t2 SET c='sixty-six thousand seven hundred thirteen' WHERE a=24044;\nUPDATE t2 SET c='sixty-five thousand one hundred fifty-three' WHERE a=24045;\nUPDATE t2 SET c='thirty-six thousand seven hundred forty-four' WHERE a=24046;\nUPDATE t2 SET c='fifty-four thousand five hundred sixty-five' WHERE a=24047;\nUPDATE t2 SET c='fifty-seven thousand four hundred seventy-eight' WHERE a=24048;\nUPDATE t2 SET c='thirty thousand seventeen' WHERE a=24049;\nUPDATE t2 SET c='eighty-four thousand six hundred ninety-three' WHERE a=24050;\nUPDATE t2 SET c='seventy-four thousand five hundred eighty-five' WHERE a=24051;\nUPDATE t2 SET c='thirty-seven thousand eighty-three' WHERE a=24052;\nUPDATE t2 SET c='seventy-four thousand seven hundred eighty-one' WHERE a=24053;\nUPDATE t2 SET c='ten thousand one hundred sixty-four' WHERE a=24054;\nUPDATE t2 SET c='twenty-three thousand one hundred forty-four' WHERE a=24055;\nUPDATE t2 SET c='fifty-four thousand one hundred thirty' WHERE a=24056;\nUPDATE t2 SET c='seventy-nine thousand nine hundred thirty-six' WHERE a=24057;\nUPDATE t2 SET c='ninety-four thousand five hundred forty-seven' WHERE a=24058;\nUPDATE t2 SET c='fourteen thousand one hundred forty-six' WHERE a=24059;\nUPDATE t2 SET c='two thousand three hundred eighty-one' WHERE a=24060;\nUPDATE t2 SET c='six thousand eight hundred ninety-nine' WHERE a=24061;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-six' WHERE a=24062;\nUPDATE t2 SET c='thirteen thousand forty-six' WHERE a=24063;\nUPDATE t2 SET c='eight thousand four hundred eighty-three' WHERE a=24064;\nUPDATE t2 SET c='nine thousand six hundred seventy' WHERE a=24065;\nUPDATE t2 SET c='ninety-one thousand three hundred ninety-seven' WHERE a=24066;\nUPDATE t2 SET c='forty-three thousand nine hundred eighty-six' WHERE a=24067;\nUPDATE t2 SET c='seventy thousand four hundred forty-three' WHERE a=24068;\nUPDATE t2 SET c='ninety-six thousand nine hundred thirty-five' WHERE a=24069;\nUPDATE t2 SET c='ten thousand two hundred fifty-three' WHERE a=24070;\nUPDATE t2 SET c='forty-three thousand one hundred eighty-five' WHERE a=24071;\nUPDATE t2 SET c='thirty-seven thousand six hundred fifty-nine' WHERE a=24072;\nUPDATE t2 SET c='eight thousand three hundred ninety-one' WHERE a=24073;\nUPDATE t2 SET c='one thousand fourteen' WHERE a=24074;\nUPDATE t2 SET c='eighty-one thousand three' WHERE a=24075;\nUPDATE t2 SET c='thirty-six thousand five hundred twenty-nine' WHERE a=24076;\nUPDATE t2 SET c='sixty thousand six hundred twenty-nine' WHERE a=24077;\nUPDATE t2 SET c='thirty-seven thousand ninety-five' WHERE a=24078;\nUPDATE t2 SET c='eighty-three thousand seventy-seven' WHERE a=24079;\nUPDATE t2 SET c='fourteen thousand four hundred sixteen' WHERE a=24080;\nUPDATE t2 SET c='twenty-five thousand three hundred eighty-seven' WHERE a=24081;\nUPDATE t2 SET c='sixty-five thousand eight hundred nineteen' WHERE a=24082;\nUPDATE t2 SET c='thirty-five thousand eight hundred seventy-three' WHERE a=24083;\nUPDATE t2 SET c='thirty-five thousand three hundred seventy-two' WHERE a=24084;\nUPDATE t2 SET c='sixty-four thousand two hundred ninety-nine' WHERE a=24085;\nUPDATE t2 SET c='twenty-one thousand five hundred eighty-eight' WHERE a=24086;\nUPDATE t2 SET c='seventy-five thousand twelve' WHERE a=24087;\nUPDATE t2 SET c='eighty-three thousand three hundred twenty' WHERE a=24088;\nUPDATE t2 SET c='thirty-six thousand four hundred seventy-two' WHERE a=24089;\nUPDATE t2 SET c='eighty-three thousand five hundred nine' WHERE a=24090;\nUPDATE t2 SET c='twenty-four thousand seven hundred nineteen' WHERE a=24091;\nUPDATE t2 SET c='eighty-nine thousand three hundred twenty-eight' WHERE a=24092;\nUPDATE t2 SET c='thirty-nine thousand sixty-six' WHERE a=24093;\nUPDATE t2 SET c='sixty thousand one hundred twenty-seven' WHERE a=24094;\nUPDATE t2 SET c='thirteen thousand seven hundred twelve' WHERE a=24095;\nUPDATE t2 SET c='seventy-nine thousand four hundred seventy-four' WHERE a=24096;\nUPDATE t2 SET c='thirteen thousand one hundred forty-seven' WHERE a=24097;\nUPDATE t2 SET c='fifty-two thousand nine hundred twenty-three' WHERE a=24098;\nUPDATE t2 SET c='four thousand seven hundred sixty-two' WHERE a=24099;\nUPDATE t2 SET c='thirty-eight thousand seven hundred thirty' WHERE a=24100;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eighty' WHERE a=24101;\nUPDATE t2 SET c='eleven thousand sixteen' WHERE a=24102;\nUPDATE t2 SET c='fifty-six thousand one hundred five' WHERE a=24103;\nUPDATE t2 SET c='seven thousand three hundred eighty-six' WHERE a=24104;\nUPDATE t2 SET c='forty thousand five hundred eighty-nine' WHERE a=24105;\nUPDATE t2 SET c='eighty-seven thousand two hundred fifty-one' WHERE a=24106;\nUPDATE t2 SET c='sixty thousand two hundred seventy-two' WHERE a=24107;\nUPDATE t2 SET c='forty-four thousand four hundred seventy-seven' WHERE a=24108;\nUPDATE t2 SET c='fifty-eight thousand four hundred three' WHERE a=24109;\nUPDATE t2 SET c='thirty-three thousand eight hundred ninety-seven' WHERE a=24110;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-six' WHERE a=24111;\nUPDATE t2 SET c='three thousand three hundred seventy-four' WHERE a=24112;\nUPDATE t2 SET c='forty-five thousand sixty-two' WHERE a=24113;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-four' WHERE a=24114;\nUPDATE t2 SET c='twenty-four thousand two hundred forty-six' WHERE a=24115;\nUPDATE t2 SET c='thirty-two thousand six hundred sixty-two' WHERE a=24116;\nUPDATE t2 SET c='seventy-six thousand five hundred sixty-nine' WHERE a=24117;\nUPDATE t2 SET c='ninety-six thousand eighty-one' WHERE a=24118;\nUPDATE t2 SET c='twenty-five thousand four hundred twelve' WHERE a=24119;\nUPDATE t2 SET c='seventy-six thousand thirty-eight' WHERE a=24120;\nUPDATE t2 SET c='fifty-two thousand five hundred eighty-three' WHERE a=24121;\nUPDATE t2 SET c='forty-three thousand thirty' WHERE a=24122;\nUPDATE t2 SET c='five thousand two hundred eighty-eight' WHERE a=24123;\nUPDATE t2 SET c='ninety-seven thousand eight hundred eighty-seven' WHERE a=24124;\nUPDATE t2 SET c='forty-seven thousand two hundred thirty-six' WHERE a=24125;\nUPDATE t2 SET c='ninety-nine thousand six hundred two' WHERE a=24126;\nUPDATE t2 SET c='eight thousand nine hundred seventy-four' WHERE a=24127;\nUPDATE t2 SET c='forty-nine thousand five hundred four' WHERE a=24128;\nUPDATE t2 SET c='seventy-eight thousand two hundred thirty-eight' WHERE a=24129;\nUPDATE t2 SET c='ninety-two thousand eight hundred seventy' WHERE a=24130;\nUPDATE t2 SET c='fifty-two thousand five hundred seventy-six' WHERE a=24131;\nUPDATE t2 SET c='fifty-five thousand three hundred fourteen' WHERE a=24132;\nUPDATE t2 SET c='sixty-seven thousand three hundred thirty-nine' WHERE a=24133;\nUPDATE t2 SET c='fifty-five thousand one hundred ten' WHERE a=24134;\nUPDATE t2 SET c='sixty-five thousand nine hundred nine' WHERE a=24135;\nUPDATE t2 SET c='nineteen thousand two hundred eighty-seven' WHERE a=24136;\nUPDATE t2 SET c='thirty-two thousand two hundred seventy' WHERE a=24137;\nUPDATE t2 SET c='eight thousand six' WHERE a=24138;\nUPDATE t2 SET c='thirty-seven thousand eight hundred thirty-four' WHERE a=24139;\nUPDATE t2 SET c='thirty-three thousand seven hundred sixty-six' WHERE a=24140;\nUPDATE t2 SET c='ninety-one thousand seven hundred twenty-three' WHERE a=24141;\nUPDATE t2 SET c='fifty-eight thousand eight hundred twenty-six' WHERE a=24142;\nUPDATE t2 SET c='seventy-nine thousand ninety' WHERE a=24143;\nUPDATE t2 SET c='twenty-eight thousand ninety-four' WHERE a=24144;\nUPDATE t2 SET c='eighty-five thousand ninety-three' WHERE a=24145;\nUPDATE t2 SET c='forty-two thousand eight hundred forty-three' WHERE a=24146;\nUPDATE t2 SET c='sixty-six thousand five hundred forty-two' WHERE a=24147;\nUPDATE t2 SET c='fifty-seven thousand four hundred sixty-five' WHERE a=24148;\nUPDATE t2 SET c='thirty-one thousand seven hundred forty-seven' WHERE a=24149;\nUPDATE t2 SET c='eighty-seven thousand two hundred eighteen' WHERE a=24150;\nUPDATE t2 SET c='thirty-nine thousand six hundred seventy-three' WHERE a=24151;\nUPDATE t2 SET c='thirty-seven thousand eight hundred eighty-eight' WHERE a=24152;\nUPDATE t2 SET c='twenty-nine thousand five hundred ninety-six' WHERE a=24153;\nUPDATE t2 SET c='eighty-one thousand eight hundred forty-seven' WHERE a=24154;\nUPDATE t2 SET c='fifty-two thousand four hundred sixty-nine' WHERE a=24155;\nUPDATE t2 SET c='twenty-four thousand seven hundred forty-seven' WHERE a=24156;\nUPDATE t2 SET c='ninety-five thousand two hundred eighty-eight' WHERE a=24157;\nUPDATE t2 SET c='fourteen thousand one hundred sixty-one' WHERE a=24158;\nUPDATE t2 SET c='fifty-four thousand nine hundred three' WHERE a=24159;\nUPDATE t2 SET c='forty-four thousand two hundred forty-five' WHERE a=24160;\nUPDATE t2 SET c='eighteen thousand five hundred ninety-three' WHERE a=24161;\nUPDATE t2 SET c='eighty-five thousand nine hundred eighty-nine' WHERE a=24162;\nUPDATE t2 SET c='seventy-one thousand five hundred seventy-two' WHERE a=24163;\nUPDATE t2 SET c='forty-three thousand five hundred thirty-five' WHERE a=24164;\nUPDATE t2 SET c='sixteen thousand nine hundred seventeen' WHERE a=24165;\nUPDATE t2 SET c='two thousand seven hundred thirty-four' WHERE a=24166;\nUPDATE t2 SET c='twenty-three thousand four hundred seventy-one' WHERE a=24167;\nUPDATE t2 SET c='four thousand five hundred sixty-one' WHERE a=24168;\nUPDATE t2 SET c='thirty-three thousand seventy-seven' WHERE a=24169;\nUPDATE t2 SET c='thirty-nine thousand six hundred seventy-eight' WHERE a=24170;\nUPDATE t2 SET c='thirty-one thousand one hundred forty' WHERE a=24171;\nUPDATE t2 SET c='seventy-two thousand four hundred thirty-eight' WHERE a=24172;\nUPDATE t2 SET c='thirteen thousand one hundred thirty-eight' WHERE a=24173;\nUPDATE t2 SET c='thirty-nine thousand three' WHERE a=24174;\nUPDATE t2 SET c='one thousand three hundred twenty-two' WHERE a=24175;\nUPDATE t2 SET c='four thousand seven hundred eleven' WHERE a=24176;\nUPDATE t2 SET c='five thousand two hundred ninety-eight' WHERE a=24177;\nUPDATE t2 SET c='eighty-nine thousand two hundred ten' WHERE a=24178;\nUPDATE t2 SET c='eighty-nine thousand three hundred ninety-eight' WHERE a=24179;\nUPDATE t2 SET c='twenty-six thousand six hundred seventy-nine' WHERE a=24180;\nUPDATE t2 SET c='twenty-five thousand seven hundred twenty-seven' WHERE a=24181;\nUPDATE t2 SET c='nineteen thousand five hundred fifty-five' WHERE a=24182;\nUPDATE t2 SET c='seventy-seven thousand three hundred ninety-nine' WHERE a=24183;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty-eight' WHERE a=24184;\nUPDATE t2 SET c='eighty-one thousand three hundred ninety-nine' WHERE a=24185;\nUPDATE t2 SET c='fifty-one thousand two hundred forty-eight' WHERE a=24186;\nUPDATE t2 SET c='five thousand seven hundred sixty-nine' WHERE a=24187;\nUPDATE t2 SET c='forty-four thousand two hundred thirty-four' WHERE a=24188;\nUPDATE t2 SET c='twenty-eight thousand five hundred eighty-six' WHERE a=24189;\nUPDATE t2 SET c='eighty-nine thousand one hundred twenty-nine' WHERE a=24190;\nUPDATE t2 SET c='twenty-three thousand seven hundred twenty-four' WHERE a=24191;\nUPDATE t2 SET c='thirty-five thousand eight hundred seven' WHERE a=24192;\nUPDATE t2 SET c='seven thousand five hundred fifty-four' WHERE a=24193;\nUPDATE t2 SET c='twenty thousand eight hundred ninety-two' WHERE a=24194;\nUPDATE t2 SET c='sixty-one thousand nine hundred thirteen' WHERE a=24195;\nUPDATE t2 SET c='two thousand six hundred sixty-five' WHERE a=24196;\nUPDATE t2 SET c='seven thousand three hundred sixteen' WHERE a=24197;\nUPDATE t2 SET c='fifty-six thousand one hundred eleven' WHERE a=24198;\nUPDATE t2 SET c='twenty-one thousand seven hundred ninety' WHERE a=24199;\nUPDATE t2 SET c='fifty thousand two hundred five' WHERE a=24200;\nUPDATE t2 SET c='ninety-eight thousand four hundred' WHERE a=24201;\nUPDATE t2 SET c='thirty-two thousand nine hundred sixty-three' WHERE a=24202;\nUPDATE t2 SET c='forty-seven thousand two hundred seventy-eight' WHERE a=24203;\nUPDATE t2 SET c='sixty-one thousand six hundred one' WHERE a=24204;\nUPDATE t2 SET c='sixty-three thousand eight hundred forty-six' WHERE a=24205;\nUPDATE t2 SET c='twenty-six thousand five hundred sixty-eight' WHERE a=24206;\nUPDATE t2 SET c='twenty-eight thousand ninety-two' WHERE a=24207;\nUPDATE t2 SET c='twenty-seven thousand five hundred forty-one' WHERE a=24208;\nUPDATE t2 SET c='seventy-eight thousand three hundred seventy-six' WHERE a=24209;\nUPDATE t2 SET c='three thousand eight hundred forty-nine' WHERE a=24210;\nUPDATE t2 SET c='eighty-nine thousand seven hundred five' WHERE a=24211;\nUPDATE t2 SET c='ninety-eight thousand one hundred sixty-one' WHERE a=24212;\nUPDATE t2 SET c='six thousand eighty-two' WHERE a=24213;\nUPDATE t2 SET c='twenty-nine thousand seven hundred seventy-seven' WHERE a=24214;\nUPDATE t2 SET c='twenty-two thousand one hundred fifty-six' WHERE a=24215;\nUPDATE t2 SET c='forty-seven thousand nine hundred fifty-three' WHERE a=24216;\nUPDATE t2 SET c='forty-seven thousand four hundred forty-five' WHERE a=24217;\nUPDATE t2 SET c='seventy-nine thousand three hundred ninety-nine' WHERE a=24218;\nUPDATE t2 SET c='fourteen thousand two hundred seventy-four' WHERE a=24219;\nUPDATE t2 SET c='ninety-four thousand eight hundred twenty-five' WHERE a=24220;\nUPDATE t2 SET c='forty-three thousand three hundred sixty-six' WHERE a=24221;\nUPDATE t2 SET c='forty-four thousand eight hundred fifty-seven' WHERE a=24222;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty-five' WHERE a=24223;\nUPDATE t2 SET c='seven thousand six hundred twenty-three' WHERE a=24224;\nUPDATE t2 SET c='sixty-two thousand four hundred two' WHERE a=24225;\nUPDATE t2 SET c='sixty-one thousand four hundred ten' WHERE a=24226;\nUPDATE t2 SET c='forty thousand three hundred eighty-one' WHERE a=24227;\nUPDATE t2 SET c='eighty-one thousand three hundred forty-one' WHERE a=24228;\nUPDATE t2 SET c='twenty-four thousand seven hundred sixty-eight' WHERE a=24229;\nUPDATE t2 SET c='sixty-four thousand seven hundred forty-four' WHERE a=24230;\nUPDATE t2 SET c='forty-five thousand nine hundred eighty-five' WHERE a=24231;\nUPDATE t2 SET c='eighty-eight thousand two hundred eighty-three' WHERE a=24232;\nUPDATE t2 SET c='thirteen thousand nine hundred six' WHERE a=24233;\nUPDATE t2 SET c='three thousand four hundred fifty-five' WHERE a=24234;\nUPDATE t2 SET c='eighty thousand six hundred nine' WHERE a=24235;\nUPDATE t2 SET c='ninety-two thousand five hundred ninety-two' WHERE a=24236;\nUPDATE t2 SET c='forty-one thousand seven hundred fifty-four' WHERE a=24237;\nUPDATE t2 SET c='three hundred forty-two' WHERE a=24238;\nUPDATE t2 SET c='twenty-seven thousand two hundred sixty-six' WHERE a=24239;\nUPDATE t2 SET c='thirty-one thousand four hundred twenty-five' WHERE a=24240;\nUPDATE t2 SET c='eight thousand eight hundred seventy-four' WHERE a=24241;\nUPDATE t2 SET c='fifty-five thousand three hundred fifty-two' WHERE a=24242;\nUPDATE t2 SET c='twenty-five thousand two hundred seventy-four' WHERE a=24243;\nUPDATE t2 SET c='sixteen thousand eight hundred fifty-six' WHERE a=24244;\nUPDATE t2 SET c='eleven thousand nine hundred eighty-two' WHERE a=24245;\nUPDATE t2 SET c='five thousand eight hundred seventeen' WHERE a=24246;\nUPDATE t2 SET c='sixty-seven thousand five hundred' WHERE a=24247;\nUPDATE t2 SET c='twenty-seven thousand four hundred thirty-one' WHERE a=24248;\nUPDATE t2 SET c='ninety-three thousand nine hundred ninety-eight' WHERE a=24249;\nUPDATE t2 SET c='eighty-one thousand four hundred seventeen' WHERE a=24250;\nUPDATE t2 SET c='ninety-five thousand three hundred twelve' WHERE a=24251;\nUPDATE t2 SET c='forty-eight thousand seven' WHERE a=24252;\nUPDATE t2 SET c='sixty-eight thousand six hundred sixty-four' WHERE a=24253;\nUPDATE t2 SET c='forty-two thousand three hundred thirty-eight' WHERE a=24254;\nUPDATE t2 SET c='eighty-seven thousand two hundred sixty-three' WHERE a=24255;\nUPDATE t2 SET c='forty-three thousand three hundred eleven' WHERE a=24256;\nUPDATE t2 SET c='thirty-nine thousand two hundred fifty-five' WHERE a=24257;\nUPDATE t2 SET c='twenty-nine thousand one hundred ninety-two' WHERE a=24258;\nUPDATE t2 SET c='fifty thousand two hundred ninety-seven' WHERE a=24259;\nUPDATE t2 SET c='five hundred twenty-six' WHERE a=24260;\nUPDATE t2 SET c='five thousand one hundred seventy-two' WHERE a=24261;\nUPDATE t2 SET c='two thousand seven hundred forty-two' WHERE a=24262;\nUPDATE t2 SET c='ninety-eight thousand five hundred twelve' WHERE a=24263;\nUPDATE t2 SET c='sixty thousand six hundred fifty-one' WHERE a=24264;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-seven' WHERE a=24265;\nUPDATE t2 SET c='thirty-seven thousand six hundred fifty-two' WHERE a=24266;\nUPDATE t2 SET c='seventy thousand eight hundred forty-seven' WHERE a=24267;\nUPDATE t2 SET c='fifty-one thousand six hundred ninety-three' WHERE a=24268;\nUPDATE t2 SET c='eighty-one thousand one hundred eighty' WHERE a=24269;\nUPDATE t2 SET c='sixty-eight thousand six hundred sixty-two' WHERE a=24270;\nUPDATE t2 SET c='sixty-seven thousand five hundred twelve' WHERE a=24271;\nUPDATE t2 SET c='fifty-four thousand two hundred eighteen' WHERE a=24272;\nUPDATE t2 SET c='ninety-eight thousand four hundred seventy-seven' WHERE a=24273;\nUPDATE t2 SET c='thirty-three thousand nine hundred four' WHERE a=24274;\nUPDATE t2 SET c='six thousand nine hundred fifty-eight' WHERE a=24275;\nUPDATE t2 SET c='ten thousand forty-eight' WHERE a=24276;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventy-seven' WHERE a=24277;\nUPDATE t2 SET c='ninety thousand two hundred sixty-eight' WHERE a=24278;\nUPDATE t2 SET c='twenty-seven thousand one hundred three' WHERE a=24279;\nUPDATE t2 SET c='ninety-six thousand six hundred seventy-four' WHERE a=24280;\nUPDATE t2 SET c='sixty-seven thousand ninety' WHERE a=24281;\nUPDATE t2 SET c='twenty thousand four hundred twenty-one' WHERE a=24282;\nUPDATE t2 SET c='seventy-five thousand eight hundred ninety-nine' WHERE a=24283;\nUPDATE t2 SET c='ninety-nine thousand three hundred sixty-four' WHERE a=24284;\nUPDATE t2 SET c='one thousand six hundred thirty-nine' WHERE a=24285;\nUPDATE t2 SET c='sixteen thousand nine hundred eighty-one' WHERE a=24286;\nUPDATE t2 SET c='thirty-six thousand one hundred eighty-nine' WHERE a=24287;\nUPDATE t2 SET c='seven thousand nine hundred eighty-six' WHERE a=24288;\nUPDATE t2 SET c='eighty-five thousand two hundred twenty-seven' WHERE a=24289;\nUPDATE t2 SET c='thirty-eight thousand nine hundred seventy-nine' WHERE a=24290;\nUPDATE t2 SET c='ninety-six thousand six hundred eight' WHERE a=24291;\nUPDATE t2 SET c='fifty-six thousand four hundred fifty-eight' WHERE a=24292;\nUPDATE t2 SET c='eighty-one thousand seven hundred seventy-five' WHERE a=24293;\nUPDATE t2 SET c='twenty thousand one hundred thirty-four' WHERE a=24294;\nUPDATE t2 SET c='ninety-six thousand four hundred fifty-four' WHERE a=24295;\nUPDATE t2 SET c='eighty-three thousand four hundred twenty-four' WHERE a=24296;\nUPDATE t2 SET c='ninety-nine thousand five hundred ninety-six' WHERE a=24297;\nUPDATE t2 SET c='thirty-four thousand two hundred fifty-seven' WHERE a=24298;\nUPDATE t2 SET c='ninety-five thousand six hundred seven' WHERE a=24299;\nUPDATE t2 SET c='eighteen thousand ninety-four' WHERE a=24300;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ninety-five' WHERE a=24301;\nUPDATE t2 SET c='ninety-nine thousand one hundred eighty-six' WHERE a=24302;\nUPDATE t2 SET c='seventy-seven thousand three hundred sixty-eight' WHERE a=24303;\nUPDATE t2 SET c='eighty-three thousand four hundred thirty-seven' WHERE a=24304;\nUPDATE t2 SET c='forty-six thousand seven hundred twenty' WHERE a=24305;\nUPDATE t2 SET c='fifteen thousand nine hundred fifty-seven' WHERE a=24306;\nUPDATE t2 SET c='eighty-five thousand nine hundred ninety-nine' WHERE a=24307;\nUPDATE t2 SET c='nineteen thousand eight hundred ninety-four' WHERE a=24308;\nUPDATE t2 SET c='twelve thousand one hundred eighty-three' WHERE a=24309;\nUPDATE t2 SET c='thirty-two thousand four hundred ninety-eight' WHERE a=24310;\nUPDATE t2 SET c='seventy-eight thousand one hundred sixty' WHERE a=24311;\nUPDATE t2 SET c='seventy-three thousand two hundred forty' WHERE a=24312;\nUPDATE t2 SET c='forty-five thousand four hundred thirty-six' WHERE a=24313;\nUPDATE t2 SET c='thirty-three thousand nine hundred nineteen' WHERE a=24314;\nUPDATE t2 SET c='nineteen thousand four hundred eighty-four' WHERE a=24315;\nUPDATE t2 SET c='fifty-seven thousand one hundred sixty-eight' WHERE a=24316;\nUPDATE t2 SET c='thirty-three thousand seven hundred forty-one' WHERE a=24317;\nUPDATE t2 SET c='thirty-one thousand nine hundred twelve' WHERE a=24318;\nUPDATE t2 SET c='forty-nine thousand six hundred eighty-seven' WHERE a=24319;\nUPDATE t2 SET c='ninety-nine thousand nine hundred seventy-seven' WHERE a=24320;\nUPDATE t2 SET c='seventy thousand four hundred eighty-five' WHERE a=24321;\nUPDATE t2 SET c='seventy-nine thousand five hundred eighty-two' WHERE a=24322;\nUPDATE t2 SET c='sixteen thousand four hundred sixty-one' WHERE a=24323;\nUPDATE t2 SET c='fifty-seven thousand two hundred sixty-nine' WHERE a=24324;\nUPDATE t2 SET c='six thousand eighty-four' WHERE a=24325;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy-nine' WHERE a=24326;\nUPDATE t2 SET c='seventeen thousand ninety-one' WHERE a=24327;\nUPDATE t2 SET c='seventy-eight thousand two hundred eighty-three' WHERE a=24328;\nUPDATE t2 SET c='fifty-four thousand nine hundred eleven' WHERE a=24329;\nUPDATE t2 SET c='seven thousand five hundred ninety-five' WHERE a=24330;\nUPDATE t2 SET c='sixty-seven thousand two hundred ninety-eight' WHERE a=24331;\nUPDATE t2 SET c='forty-four thousand four hundred sixty-nine' WHERE a=24332;\nUPDATE t2 SET c='forty-seven thousand two hundred ninety-eight' WHERE a=24333;\nUPDATE t2 SET c='seventy thousand seven hundred seventeen' WHERE a=24334;\nUPDATE t2 SET c='nine thousand seven hundred thirty-one' WHERE a=24335;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty-four' WHERE a=24336;\nUPDATE t2 SET c='six thousand four hundred eighty-nine' WHERE a=24337;\nUPDATE t2 SET c='ninety-four thousand three hundred thirty-three' WHERE a=24338;\nUPDATE t2 SET c='thirty-nine thousand four hundred seven' WHERE a=24339;\nUPDATE t2 SET c='seventy-eight thousand one hundred twenty-two' WHERE a=24340;\nUPDATE t2 SET c='seventy thousand six hundred thirty-four' WHERE a=24341;\nUPDATE t2 SET c='thirty-two thousand nine hundred one' WHERE a=24342;\nUPDATE t2 SET c='eighty-six thousand ninety-eight' WHERE a=24343;\nUPDATE t2 SET c='sixty-two thousand five hundred eighty-seven' WHERE a=24344;\nUPDATE t2 SET c='sixty thousand seven hundred thirty-one' WHERE a=24345;\nUPDATE t2 SET c='eighteen thousand eight hundred forty-three' WHERE a=24346;\nUPDATE t2 SET c='forty-one thousand nine hundred thirty' WHERE a=24347;\nUPDATE t2 SET c='two thousand eight hundred fifty-four' WHERE a=24348;\nUPDATE t2 SET c='seventy-nine thousand five hundred nine' WHERE a=24349;\nUPDATE t2 SET c='thirty-six thousand four hundred thirty-six' WHERE a=24350;\nUPDATE t2 SET c='twenty-six thousand four hundred three' WHERE a=24351;\nUPDATE t2 SET c='one thousand five hundred twenty-one' WHERE a=24352;\nUPDATE t2 SET c='ninety-six thousand three hundred seventy-two' WHERE a=24353;\nUPDATE t2 SET c='fifty-four thousand three hundred ninety-five' WHERE a=24354;\nUPDATE t2 SET c='ninety thousand two hundred seventy-nine' WHERE a=24355;\nUPDATE t2 SET c='ninety-three thousand one hundred fifty-five' WHERE a=24356;\nUPDATE t2 SET c='ninety-four thousand three hundred two' WHERE a=24357;\nUPDATE t2 SET c='eleven thousand two hundred eighty-eight' WHERE a=24358;\nUPDATE t2 SET c='sixty-eight thousand four hundred forty-three' WHERE a=24359;\nUPDATE t2 SET c='fifty-one thousand nine hundred thirty-six' WHERE a=24360;\nUPDATE t2 SET c='fifty-nine thousand ninety' WHERE a=24361;\nUPDATE t2 SET c='fifty-four thousand five hundred ninety-five' WHERE a=24362;\nUPDATE t2 SET c='twenty-two thousand nine hundred eight' WHERE a=24363;\nUPDATE t2 SET c='twelve thousand eight hundred sixty-nine' WHERE a=24364;\nUPDATE t2 SET c='ninety-four thousand nine hundred seventy-nine' WHERE a=24365;\nUPDATE t2 SET c='fifty thousand four hundred six' WHERE a=24366;\nUPDATE t2 SET c='eighty-four thousand one hundred eighty-six' WHERE a=24367;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-five' WHERE a=24368;\nUPDATE t2 SET c='seventy-one thousand six hundred fifty-three' WHERE a=24369;\nUPDATE t2 SET c='seventy thousand six hundred eighty-nine' WHERE a=24370;\nUPDATE t2 SET c='thirty-four thousand nine hundred ninety' WHERE a=24371;\nUPDATE t2 SET c='thirty-four thousand five hundred fifty-six' WHERE a=24372;\nUPDATE t2 SET c='ninety-four thousand four hundred five' WHERE a=24373;\nUPDATE t2 SET c='ninety-eight thousand eighteen' WHERE a=24374;\nUPDATE t2 SET c='thirty-seven thousand sixty-eight' WHERE a=24375;\nUPDATE t2 SET c='thirty-two thousand nine hundred eighty-five' WHERE a=24376;\nUPDATE t2 SET c='twenty-eight thousand eight hundred thirty-six' WHERE a=24377;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-five' WHERE a=24378;\nUPDATE t2 SET c='eighty-one thousand four hundred ninety-six' WHERE a=24379;\nUPDATE t2 SET c='twenty-one thousand two hundred thirty-one' WHERE a=24380;\nUPDATE t2 SET c='twenty-two thousand one hundred sixty-six' WHERE a=24381;\nUPDATE t2 SET c='six hundred ninety' WHERE a=24382;\nUPDATE t2 SET c='forty-one thousand eight hundred eighty-four' WHERE a=24383;\nUPDATE t2 SET c='twenty-nine thousand one hundred forty-seven' WHERE a=24384;\nUPDATE t2 SET c='fifty-one thousand ten' WHERE a=24385;\nUPDATE t2 SET c='seventy thousand four hundred eighty-four' WHERE a=24386;\nUPDATE t2 SET c='ninety-two thousand four hundred twenty' WHERE a=24387;\nUPDATE t2 SET c='ninety-two thousand nine hundred eighty-six' WHERE a=24388;\nUPDATE t2 SET c='six thousand nine hundred twenty-two' WHERE a=24389;\nUPDATE t2 SET c='sixteen thousand two hundred fifty-two' WHERE a=24390;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-one' WHERE a=24391;\nUPDATE t2 SET c='thirty thousand seven hundred eighty-one' WHERE a=24392;\nUPDATE t2 SET c='thirty-three thousand four hundred fifty-six' WHERE a=24393;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty-four' WHERE a=24394;\nUPDATE t2 SET c='twenty-eight thousand three hundred ninety-two' WHERE a=24395;\nUPDATE t2 SET c='sixteen thousand three hundred thirty-four' WHERE a=24396;\nUPDATE t2 SET c='seventy-seven thousand one hundred seventy' WHERE a=24397;\nUPDATE t2 SET c='twenty-eight thousand four hundred twenty-five' WHERE a=24398;\nUPDATE t2 SET c='ninety-eight thousand sixty' WHERE a=24399;\nUPDATE t2 SET c='forty-four thousand four hundred sixty-nine' WHERE a=24400;\nUPDATE t2 SET c='eight thousand three hundred fifty-eight' WHERE a=24401;\nUPDATE t2 SET c='forty-eight thousand seven hundred thirty-five' WHERE a=24402;\nUPDATE t2 SET c='fifty-four thousand ninety-two' WHERE a=24403;\nUPDATE t2 SET c='three thousand four hundred thirty-five' WHERE a=24404;\nUPDATE t2 SET c='nine thousand six hundred eighty-seven' WHERE a=24405;\nUPDATE t2 SET c='twenty-five thousand nine hundred forty-nine' WHERE a=24406;\nUPDATE t2 SET c='ten thousand four hundred thirty-seven' WHERE a=24407;\nUPDATE t2 SET c='thirty-six thousand four hundred fifty' WHERE a=24408;\nUPDATE t2 SET c='seventy-eight thousand nine hundred thirty-four' WHERE a=24409;\nUPDATE t2 SET c='eighty-one thousand seven hundred five' WHERE a=24410;\nUPDATE t2 SET c='ninety-four thousand one hundred sixty' WHERE a=24411;\nUPDATE t2 SET c='eighty-one thousand five hundred eighty-seven' WHERE a=24412;\nUPDATE t2 SET c='sixty-three thousand two hundred eleven' WHERE a=24413;\nUPDATE t2 SET c='thirty-six thousand nine hundred twenty-one' WHERE a=24414;\nUPDATE t2 SET c='thirty-two thousand six hundred fifty-five' WHERE a=24415;\nUPDATE t2 SET c='twenty-nine thousand fifty' WHERE a=24416;\nUPDATE t2 SET c='forty-four thousand five hundred forty-five' WHERE a=24417;\nUPDATE t2 SET c='thirty-five thousand seven hundred forty-one' WHERE a=24418;\nUPDATE t2 SET c='forty-five thousand seven hundred seventy-five' WHERE a=24419;\nUPDATE t2 SET c='seventy thousand one hundred seventy-nine' WHERE a=24420;\nUPDATE t2 SET c='forty-five thousand sixty-six' WHERE a=24421;\nUPDATE t2 SET c='eighty-seven thousand one hundred four' WHERE a=24422;\nUPDATE t2 SET c='eighty-three thousand twenty-two' WHERE a=24423;\nUPDATE t2 SET c='twenty-four thousand eight hundred forty' WHERE a=24424;\nUPDATE t2 SET c='seventy thousand two hundred fifty-six' WHERE a=24425;\nUPDATE t2 SET c='thirty-one thousand six hundred ninety-seven' WHERE a=24426;\nUPDATE t2 SET c='twenty-six thousand three hundred twenty' WHERE a=24427;\nUPDATE t2 SET c='thirteen thousand seven hundred sixty-one' WHERE a=24428;\nUPDATE t2 SET c='two thousand eight hundred eighty-eight' WHERE a=24429;\nUPDATE t2 SET c='sixty-seven thousand four hundred eighty-five' WHERE a=24430;\nUPDATE t2 SET c='eighty thousand nine hundred sixty-eight' WHERE a=24431;\nUPDATE t2 SET c='eighty-one thousand five hundred seventy-nine' WHERE a=24432;\nUPDATE t2 SET c='thirty-five thousand one hundred forty-one' WHERE a=24433;\nUPDATE t2 SET c='eighty-nine thousand one hundred ninety-eight' WHERE a=24434;\nUPDATE t2 SET c='forty-five thousand five hundred eighty-four' WHERE a=24435;\nUPDATE t2 SET c='fifty thousand four hundred sixty-five' WHERE a=24436;\nUPDATE t2 SET c='one hundred thirty-four' WHERE a=24437;\nUPDATE t2 SET c='seventeen thousand two hundred eight' WHERE a=24438;\nUPDATE t2 SET c='ninety-two thousand nine hundred ninety-three' WHERE a=24439;\nUPDATE t2 SET c='thirty-six thousand eighty-four' WHERE a=24440;\nUPDATE t2 SET c='thirteen thousand five hundred thirty-four' WHERE a=24441;\nUPDATE t2 SET c='twenty-eight thousand one hundred forty' WHERE a=24442;\nUPDATE t2 SET c='eighty-six thousand seven hundred sixty-five' WHERE a=24443;\nUPDATE t2 SET c='sixty-one thousand five hundred seventy-seven' WHERE a=24444;\nUPDATE t2 SET c='fifty-seven thousand four hundred seventy-six' WHERE a=24445;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-six' WHERE a=24446;\nUPDATE t2 SET c='seventy-seven thousand three hundred eighty-three' WHERE a=24447;\nUPDATE t2 SET c='forty-six thousand seven hundred twenty-three' WHERE a=24448;\nUPDATE t2 SET c='thirty-two thousand three hundred forty-three' WHERE a=24449;\nUPDATE t2 SET c='seventeen thousand nine hundred sixty-four' WHERE a=24450;\nUPDATE t2 SET c='thirty-one thousand six' WHERE a=24451;\nUPDATE t2 SET c='thirty-nine thousand eight hundred five' WHERE a=24452;\nUPDATE t2 SET c='thirty-seven thousand six hundred seventy-one' WHERE a=24453;\nUPDATE t2 SET c='thirty-seven thousand one hundred twenty' WHERE a=24454;\nUPDATE t2 SET c='one thousand five hundred forty-three' WHERE a=24455;\nUPDATE t2 SET c='sixty-one thousand ninety' WHERE a=24456;\nUPDATE t2 SET c='ninety-one thousand eighty-six' WHERE a=24457;\nUPDATE t2 SET c='eighty-five thousand seventy-four' WHERE a=24458;\nUPDATE t2 SET c='eighty-seven thousand three hundred thirty-four' WHERE a=24459;\nUPDATE t2 SET c='twenty-eight thousand three hundred thirty-eight' WHERE a=24460;\nUPDATE t2 SET c='fifty-two thousand twenty-six' WHERE a=24461;\nUPDATE t2 SET c='seventy-three thousand nine hundred fifty-five' WHERE a=24462;\nUPDATE t2 SET c='seventy-one thousand thirteen' WHERE a=24463;\nUPDATE t2 SET c='forty-six thousand six hundred thirty-two' WHERE a=24464;\nUPDATE t2 SET c='fifty-nine thousand six hundred eighteen' WHERE a=24465;\nUPDATE t2 SET c='twenty-one thousand two hundred twenty-seven' WHERE a=24466;\nUPDATE t2 SET c='thirty thousand two hundred sixty-four' WHERE a=24467;\nUPDATE t2 SET c='sixteen thousand one hundred eleven' WHERE a=24468;\nUPDATE t2 SET c='ninety-seven thousand forty-three' WHERE a=24469;\nUPDATE t2 SET c='sixty-one thousand four hundred seven' WHERE a=24470;\nUPDATE t2 SET c='forty-seven thousand eight hundred forty-six' WHERE a=24471;\nUPDATE t2 SET c='seventy-six thousand fifty-seven' WHERE a=24472;\nUPDATE t2 SET c='seventy-one thousand eight hundred fifteen' WHERE a=24473;\nUPDATE t2 SET c='twelve thousand eight hundred thirty-nine' WHERE a=24474;\nUPDATE t2 SET c='ninety-eight thousand four hundred ninety-four' WHERE a=24475;\nUPDATE t2 SET c='sixty thousand one hundred fifty-seven' WHERE a=24476;\nUPDATE t2 SET c='eighty-four thousand seven hundred seventy-three' WHERE a=24477;\nUPDATE t2 SET c='forty-nine thousand four hundred thirty-two' WHERE a=24478;\nUPDATE t2 SET c='sixteen thousand thirty-two' WHERE a=24479;\nUPDATE t2 SET c='forty-six thousand five hundred eighty-six' WHERE a=24480;\nUPDATE t2 SET c='ninety-four thousand two hundred fifty-three' WHERE a=24481;\nUPDATE t2 SET c='eighty-eight thousand one hundred twenty-four' WHERE a=24482;\nUPDATE t2 SET c='ninety-five thousand eight hundred thirty-one' WHERE a=24483;\nUPDATE t2 SET c='thirty-four thousand four hundred sixty-eight' WHERE a=24484;\nUPDATE t2 SET c='forty-five thousand three hundred eighty-one' WHERE a=24485;\nUPDATE t2 SET c='six thousand seven hundred ninety-nine' WHERE a=24486;\nUPDATE t2 SET c='sixty-two thousand eight hundred forty-one' WHERE a=24487;\nUPDATE t2 SET c='twenty-two thousand six hundred eighteen' WHERE a=24488;\nUPDATE t2 SET c='sixty-four thousand eight hundred eighteen' WHERE a=24489;\nUPDATE t2 SET c='eighty-nine thousand three hundred fifty-three' WHERE a=24490;\nUPDATE t2 SET c='one thousand one hundred seventy-five' WHERE a=24491;\nUPDATE t2 SET c='fifty-five thousand three hundred thirty-six' WHERE a=24492;\nUPDATE t2 SET c='eighty-eight thousand eight hundred seventy-four' WHERE a=24493;\nUPDATE t2 SET c='thirty-five thousand one hundred thirty-nine' WHERE a=24494;\nUPDATE t2 SET c='ninety-eight thousand one hundred four' WHERE a=24495;\nUPDATE t2 SET c='ninety-five thousand four hundred fifty-six' WHERE a=24496;\nUPDATE t2 SET c='twenty-three thousand five hundred forty-seven' WHERE a=24497;\nUPDATE t2 SET c='fifty-three thousand four hundred ninety-nine' WHERE a=24498;\nUPDATE t2 SET c='eighty-four thousand three hundred forty-six' WHERE a=24499;\nUPDATE t2 SET c='sixty-nine thousand four hundred two' WHERE a=24500;\nUPDATE t2 SET c='thirty-one thousand six hundred seventy-six' WHERE a=24501;\nUPDATE t2 SET c='fifty-two thousand four hundred seventy-one' WHERE a=24502;\nUPDATE t2 SET c='ninety-four thousand one hundred twenty' WHERE a=24503;\nUPDATE t2 SET c='ninety-one thousand nine hundred thirty-five' WHERE a=24504;\nUPDATE t2 SET c='eight thousand six hundred nineteen' WHERE a=24505;\nUPDATE t2 SET c='sixty-six thousand one hundred thirty-eight' WHERE a=24506;\nUPDATE t2 SET c='fifty-four thousand nine hundred ninety-five' WHERE a=24507;\nUPDATE t2 SET c='eighty-one thousand four hundred seventy-two' WHERE a=24508;\nUPDATE t2 SET c='ninety thousand three hundred sixty-two' WHERE a=24509;\nUPDATE t2 SET c='nineteen thousand three hundred forty-five' WHERE a=24510;\nUPDATE t2 SET c='sixteen thousand three hundred fifty-nine' WHERE a=24511;\nUPDATE t2 SET c='fifty thousand nine hundred seventy-five' WHERE a=24512;\nUPDATE t2 SET c='sixty-nine thousand eight hundred sixty-seven' WHERE a=24513;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty-seven' WHERE a=24514;\nUPDATE t2 SET c='eighty-nine thousand three hundred six' WHERE a=24515;\nUPDATE t2 SET c='ninety-six thousand three hundred eighty-two' WHERE a=24516;\nUPDATE t2 SET c='twenty-six thousand seven hundred five' WHERE a=24517;\nUPDATE t2 SET c='sixty-four thousand four hundred thirty-three' WHERE a=24518;\nUPDATE t2 SET c='ninety-two thousand five hundred seventy' WHERE a=24519;\nUPDATE t2 SET c='forty-six thousand fifty-six' WHERE a=24520;\nUPDATE t2 SET c='eighteen thousand two hundred eighty-six' WHERE a=24521;\nUPDATE t2 SET c='thirty-two thousand ninety-seven' WHERE a=24522;\nUPDATE t2 SET c='fifty thousand nine hundred eighty-five' WHERE a=24523;\nUPDATE t2 SET c='ninety-seven thousand eight hundred thirty' WHERE a=24524;\nUPDATE t2 SET c='eighty-six thousand five hundred eighty-three' WHERE a=24525;\nUPDATE t2 SET c='fifty-nine thousand nine hundred twenty-one' WHERE a=24526;\nUPDATE t2 SET c='twenty-five thousand five hundred thirteen' WHERE a=24527;\nUPDATE t2 SET c='seventy-seven thousand one hundred thirty-five' WHERE a=24528;\nUPDATE t2 SET c='ten thousand one hundred twenty-six' WHERE a=24529;\nUPDATE t2 SET c='fifty-one thousand five hundred sixty-nine' WHERE a=24530;\nUPDATE t2 SET c='eighty-eight thousand nine hundred fifty-one' WHERE a=24531;\nUPDATE t2 SET c='ninety-one thousand one hundred seventeen' WHERE a=24532;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-one' WHERE a=24533;\nUPDATE t2 SET c='seventy-five thousand nine hundred seventy-four' WHERE a=24534;\nUPDATE t2 SET c='eighty-nine thousand nine hundred ninety-seven' WHERE a=24535;\nUPDATE t2 SET c='ninety thousand three hundred ninety-seven' WHERE a=24536;\nUPDATE t2 SET c='thirty-one thousand nine hundred thirty-nine' WHERE a=24537;\nUPDATE t2 SET c='fifty thousand five hundred twelve' WHERE a=24538;\nUPDATE t2 SET c='sixty-six thousand six hundred sixty-four' WHERE a=24539;\nUPDATE t2 SET c='fifty thousand two hundred sixteen' WHERE a=24540;\nUPDATE t2 SET c='seventy-nine thousand seven hundred eleven' WHERE a=24541;\nUPDATE t2 SET c='thirty-three thousand seven hundred twenty' WHERE a=24542;\nUPDATE t2 SET c='seventy-seven thousand nine hundred twenty-six' WHERE a=24543;\nUPDATE t2 SET c='eighteen thousand five hundred seventy' WHERE a=24544;\nUPDATE t2 SET c='eleven thousand nine hundred fifty-nine' WHERE a=24545;\nUPDATE t2 SET c='eight thousand six hundred twenty-six' WHERE a=24546;\nUPDATE t2 SET c='thirty-six thousand six hundred two' WHERE a=24547;\nUPDATE t2 SET c='thirty-nine thousand sixty' WHERE a=24548;\nUPDATE t2 SET c='ninety-six thousand seven hundred forty-nine' WHERE a=24549;\nUPDATE t2 SET c='eighty-seven thousand five hundred sixty-three' WHERE a=24550;\nUPDATE t2 SET c='sixty-eight thousand fifty-nine' WHERE a=24551;\nUPDATE t2 SET c='fifty-two thousand four hundred fifteen' WHERE a=24552;\nUPDATE t2 SET c='fifty thousand forty-one' WHERE a=24553;\nUPDATE t2 SET c='twenty-two thousand six hundred thirty-eight' WHERE a=24554;\nUPDATE t2 SET c='fifty-seven thousand four hundred six' WHERE a=24555;\nUPDATE t2 SET c='seven thousand seven hundred sixty-two' WHERE a=24556;\nUPDATE t2 SET c='fifty-eight thousand eight hundred fifty-eight' WHERE a=24557;\nUPDATE t2 SET c='fifty-nine thousand five hundred eighty-nine' WHERE a=24558;\nUPDATE t2 SET c='three thousand six hundred thirty-two' WHERE a=24559;\nUPDATE t2 SET c='sixty-nine thousand two hundred twenty-eight' WHERE a=24560;\nUPDATE t2 SET c='twelve thousand one hundred sixty-seven' WHERE a=24561;\nUPDATE t2 SET c='eighty-seven thousand three hundred two' WHERE a=24562;\nUPDATE t2 SET c='forty-six thousand seven hundred fifty-seven' WHERE a=24563;\nUPDATE t2 SET c='ninety-nine thousand eight hundred fifteen' WHERE a=24564;\nUPDATE t2 SET c='sixty-two thousand one hundred eighty-nine' WHERE a=24565;\nUPDATE t2 SET c='fifty-eight thousand forty-six' WHERE a=24566;\nUPDATE t2 SET c='thirty-five thousand two hundred seventy-three' WHERE a=24567;\nUPDATE t2 SET c='thirty-five thousand seven hundred fifty-three' WHERE a=24568;\nUPDATE t2 SET c='seventy-four thousand six hundred sixty-nine' WHERE a=24569;\nUPDATE t2 SET c='eighty-seven thousand four hundred ninety-nine' WHERE a=24570;\nUPDATE t2 SET c='thirty-six thousand fourteen' WHERE a=24571;\nUPDATE t2 SET c='eighty-four thousand eighty-one' WHERE a=24572;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-eight' WHERE a=24573;\nUPDATE t2 SET c='thirty thousand eighty-five' WHERE a=24574;\nUPDATE t2 SET c='forty-two thousand one hundred five' WHERE a=24575;\nUPDATE t2 SET c='eight thousand nine' WHERE a=24576;\nUPDATE t2 SET c='sixty-one thousand five hundred seventy-five' WHERE a=24577;\nUPDATE t2 SET c='eight thousand twenty-four' WHERE a=24578;\nUPDATE t2 SET c='thirty-one thousand two hundred ninety-six' WHERE a=24579;\nUPDATE t2 SET c='thirty-seven thousand five hundred fifty-eight' WHERE a=24580;\nUPDATE t2 SET c='seventy-nine thousand twenty-four' WHERE a=24581;\nUPDATE t2 SET c='twenty-two thousand nine hundred fifty-one' WHERE a=24582;\nUPDATE t2 SET c='five thousand nine hundred eighty-one' WHERE a=24583;\nUPDATE t2 SET c='sixty-seven thousand six hundred forty-nine' WHERE a=24584;\nUPDATE t2 SET c='fifty-one thousand two hundred eighty-five' WHERE a=24585;\nUPDATE t2 SET c='sixty-nine thousand five hundred eighty-three' WHERE a=24586;\nUPDATE t2 SET c='two thousand seven hundred sixty-five' WHERE a=24587;\nUPDATE t2 SET c='eighty-three thousand two hundred twelve' WHERE a=24588;\nUPDATE t2 SET c='fifty-three thousand one hundred eighty-six' WHERE a=24589;\nUPDATE t2 SET c='fifty-five thousand seven hundred fifty-four' WHERE a=24590;\nUPDATE t2 SET c='seventy-seven thousand eight hundred forty-five' WHERE a=24591;\nUPDATE t2 SET c='eighty-eight thousand nine hundred fifty-eight' WHERE a=24592;\nUPDATE t2 SET c='fifty-four thousand two hundred fifty-three' WHERE a=24593;\nUPDATE t2 SET c='forty thousand thirty-four' WHERE a=24594;\nUPDATE t2 SET c='eighty-eight thousand two hundred thirty' WHERE a=24595;\nUPDATE t2 SET c='thirty thousand eight hundred forty-two' WHERE a=24596;\nUPDATE t2 SET c='seventy-three thousand two hundred fifty-five' WHERE a=24597;\nUPDATE t2 SET c='five thousand three hundred thirty-three' WHERE a=24598;\nUPDATE t2 SET c='eighty-three thousand twenty-three' WHERE a=24599;\nUPDATE t2 SET c='sixty-nine thousand five hundred eleven' WHERE a=24600;\nUPDATE t2 SET c='forty thousand eight hundred twenty' WHERE a=24601;\nUPDATE t2 SET c='ninety-eight thousand sixty-one' WHERE a=24602;\nUPDATE t2 SET c='twenty-four thousand three hundred forty-one' WHERE a=24603;\nUPDATE t2 SET c='sixty-six thousand six hundred forty-four' WHERE a=24604;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-six' WHERE a=24605;\nUPDATE t2 SET c='sixty-four thousand four hundred twenty-eight' WHERE a=24606;\nUPDATE t2 SET c='eleven thousand two hundred fifty' WHERE a=24607;\nUPDATE t2 SET c='seventy-six thousand nine hundred sixty-four' WHERE a=24608;\nUPDATE t2 SET c='forty-four thousand' WHERE a=24609;\nUPDATE t2 SET c='ninety thousand one hundred two' WHERE a=24610;\nUPDATE t2 SET c='thirty-four thousand one hundred sixty-seven' WHERE a=24611;\nUPDATE t2 SET c='five thousand seven hundred two' WHERE a=24612;\nUPDATE t2 SET c='thirteen thousand nine hundred fifty-nine' WHERE a=24613;\nUPDATE t2 SET c='thirty-five thousand four hundred ten' WHERE a=24614;\nUPDATE t2 SET c='eighty-three thousand three hundred fifty' WHERE a=24615;\nUPDATE t2 SET c='sixty-six thousand eight hundred seventy-two' WHERE a=24616;\nUPDATE t2 SET c='seventy-six thousand two hundred fourteen' WHERE a=24617;\nUPDATE t2 SET c='twenty-five thousand ninety-five' WHERE a=24618;\nUPDATE t2 SET c='seventeen thousand one hundred thirty-five' WHERE a=24619;\nUPDATE t2 SET c='twenty-six thousand five hundred eighty-five' WHERE a=24620;\nUPDATE t2 SET c='nineteen thousand seven hundred eighteen' WHERE a=24621;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty-six' WHERE a=24622;\nUPDATE t2 SET c='eighty-two thousand six hundred sixty-three' WHERE a=24623;\nUPDATE t2 SET c='twenty-seven thousand two hundred nineteen' WHERE a=24624;\nUPDATE t2 SET c='eight thousand seventy-eight' WHERE a=24625;\nUPDATE t2 SET c='eight thousand three hundred sixty-five' WHERE a=24626;\nUPDATE t2 SET c='seventy-four thousand nine hundred twenty-eight' WHERE a=24627;\nUPDATE t2 SET c='seventy-eight thousand six hundred eight' WHERE a=24628;\nUPDATE t2 SET c='fifty-two thousand seventy-three' WHERE a=24629;\nUPDATE t2 SET c='thirty-six thousand three hundred seven' WHERE a=24630;\nUPDATE t2 SET c='sixty-one thousand eight hundred forty-four' WHERE a=24631;\nUPDATE t2 SET c='eighty-seven thousand seven hundred seventy-two' WHERE a=24632;\nUPDATE t2 SET c='twenty-five thousand three hundred sixty-two' WHERE a=24633;\nUPDATE t2 SET c='forty thousand three hundred fifteen' WHERE a=24634;\nUPDATE t2 SET c='ninety-three thousand two hundred forty-seven' WHERE a=24635;\nUPDATE t2 SET c='two thousand twenty-eight' WHERE a=24636;\nUPDATE t2 SET c='forty-two thousand six hundred thirty-eight' WHERE a=24637;\nUPDATE t2 SET c='sixty-four thousand five hundred one' WHERE a=24638;\nUPDATE t2 SET c='forty-two thousand four hundred twenty-four' WHERE a=24639;\nUPDATE t2 SET c='twenty-seven thousand three hundred ninety' WHERE a=24640;\nUPDATE t2 SET c='thirty-nine thousand seven hundred fifty-five' WHERE a=24641;\nUPDATE t2 SET c='thirty-seven thousand four hundred ten' WHERE a=24642;\nUPDATE t2 SET c='four thousand five hundred thirty-nine' WHERE a=24643;\nUPDATE t2 SET c='thirty-two thousand six hundred seventy-six' WHERE a=24644;\nUPDATE t2 SET c='eighty-eight thousand two hundred thirty' WHERE a=24645;\nUPDATE t2 SET c='fifty-two thousand seven hundred twenty-eight' WHERE a=24646;\nUPDATE t2 SET c='eighty-three thousand seven hundred eighty-four' WHERE a=24647;\nUPDATE t2 SET c='sixty-three thousand nine hundred eighty-six' WHERE a=24648;\nUPDATE t2 SET c='five thousand two' WHERE a=24649;\nUPDATE t2 SET c='sixty-one thousand three hundred thirty-two' WHERE a=24650;\nUPDATE t2 SET c='eighteen thousand five hundred fifty-eight' WHERE a=24651;\nUPDATE t2 SET c='sixty thousand seven hundred sixty-five' WHERE a=24652;\nUPDATE t2 SET c='nine thousand three hundred seventy-eight' WHERE a=24653;\nUPDATE t2 SET c='four thousand eight hundred fifty-six' WHERE a=24654;\nUPDATE t2 SET c='seventy thousand four hundred eighty-three' WHERE a=24655;\nUPDATE t2 SET c='fifty-three thousand two hundred seventy-seven' WHERE a=24656;\nUPDATE t2 SET c='sixty-eight thousand six hundred sixty-five' WHERE a=24657;\nUPDATE t2 SET c='eleven thousand three hundred seventeen' WHERE a=24658;\nUPDATE t2 SET c='seventy-one thousand one hundred forty-nine' WHERE a=24659;\nUPDATE t2 SET c='thirty-eight thousand two hundred sixty-seven' WHERE a=24660;\nUPDATE t2 SET c='fifty thousand one hundred thirty-three' WHERE a=24661;\nUPDATE t2 SET c='ninety-two thousand three hundred thirty-nine' WHERE a=24662;\nUPDATE t2 SET c='twenty-three thousand eight hundred sixty-eight' WHERE a=24663;\nUPDATE t2 SET c='two thousand five hundred eighty-six' WHERE a=24664;\nUPDATE t2 SET c='eight thousand six hundred ninety' WHERE a=24665;\nUPDATE t2 SET c='forty-seven thousand nine hundred ten' WHERE a=24666;\nUPDATE t2 SET c='eighty-six thousand six hundred sixty-one' WHERE a=24667;\nUPDATE t2 SET c='eighty-two thousand eight hundred fifty-nine' WHERE a=24668;\nUPDATE t2 SET c='ninety-five thousand three hundred ten' WHERE a=24669;\nUPDATE t2 SET c='seventy-four thousand one hundred fifty-two' WHERE a=24670;\nUPDATE t2 SET c='forty-six thousand seven hundred thirty-two' WHERE a=24671;\nUPDATE t2 SET c='twenty-two thousand eighty-five' WHERE a=24672;\nUPDATE t2 SET c='three hundred sixty-eight' WHERE a=24673;\nUPDATE t2 SET c='ninety thousand nine hundred sixty-eight' WHERE a=24674;\nUPDATE t2 SET c='eighty-four thousand two hundred seventeen' WHERE a=24675;\nUPDATE t2 SET c='nineteen thousand twenty-three' WHERE a=24676;\nUPDATE t2 SET c='fourteen thousand six hundred three' WHERE a=24677;\nUPDATE t2 SET c='seventy-four thousand seven hundred thirty-eight' WHERE a=24678;\nUPDATE t2 SET c='forty-seven thousand four hundred ninety-nine' WHERE a=24679;\nUPDATE t2 SET c='seventy-three thousand eight hundred ninety-eight' WHERE a=24680;\nUPDATE t2 SET c='sixty-four thousand nine hundred seventeen' WHERE a=24681;\nUPDATE t2 SET c='one thousand nine hundred eight' WHERE a=24682;\nUPDATE t2 SET c='fifty-five thousand two hundred twenty-nine' WHERE a=24683;\nUPDATE t2 SET c='ten thousand nine hundred thirty-two' WHERE a=24684;\nUPDATE t2 SET c='eighty-four thousand nine hundred six' WHERE a=24685;\nUPDATE t2 SET c='seventy-eight thousand four hundred two' WHERE a=24686;\nUPDATE t2 SET c='four thousand eight hundred fifteen' WHERE a=24687;\nUPDATE t2 SET c='twenty-three thousand four hundred seven' WHERE a=24688;\nUPDATE t2 SET c='seventy-six thousand nine hundred six' WHERE a=24689;\nUPDATE t2 SET c='seventy-four thousand seven hundred two' WHERE a=24690;\nUPDATE t2 SET c='eighty thousand nine hundred forty-four' WHERE a=24691;\nUPDATE t2 SET c='seventy-four thousand five hundred fifty-five' WHERE a=24692;\nUPDATE t2 SET c='seventy-one thousand two hundred twenty-seven' WHERE a=24693;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-four' WHERE a=24694;\nUPDATE t2 SET c='fifty-six thousand three hundred seventy-two' WHERE a=24695;\nUPDATE t2 SET c='ninety-eight thousand nine hundred forty-eight' WHERE a=24696;\nUPDATE t2 SET c='seven thousand six hundred eighty-two' WHERE a=24697;\nUPDATE t2 SET c='seven thousand one hundred seventeen' WHERE a=24698;\nUPDATE t2 SET c='seventy-eight thousand two hundred forty-five' WHERE a=24699;\nUPDATE t2 SET c='sixty-nine thousand six hundred ninety' WHERE a=24700;\nUPDATE t2 SET c='twenty-nine thousand three hundred eighty-five' WHERE a=24701;\nUPDATE t2 SET c='ninety-three thousand seven hundred ninety-three' WHERE a=24702;\nUPDATE t2 SET c='eighty-nine thousand six hundred twenty-three' WHERE a=24703;\nUPDATE t2 SET c='thirty-eight thousand five hundred seventy-three' WHERE a=24704;\nUPDATE t2 SET c='seventy-three thousand seventy-five' WHERE a=24705;\nUPDATE t2 SET c='sixty-eight thousand twenty-six' WHERE a=24706;\nUPDATE t2 SET c='thirty-one thousand six hundred sixty-five' WHERE a=24707;\nUPDATE t2 SET c='eighty thousand three hundred ninety-nine' WHERE a=24708;\nUPDATE t2 SET c='forty-two thousand three hundred fifty-three' WHERE a=24709;\nUPDATE t2 SET c='four thousand three hundred thirty' WHERE a=24710;\nUPDATE t2 SET c='fourteen thousand eight hundred ninety-one' WHERE a=24711;\nUPDATE t2 SET c='thirty-six thousand one hundred forty-eight' WHERE a=24712;\nUPDATE t2 SET c='seventy-one thousand six hundred twelve' WHERE a=24713;\nUPDATE t2 SET c='eight thousand one hundred ninety-three' WHERE a=24714;\nUPDATE t2 SET c='fifty-three thousand six hundred seventy-six' WHERE a=24715;\nUPDATE t2 SET c='seventy-two thousand five hundred ninety-seven' WHERE a=24716;\nUPDATE t2 SET c='fifty-nine thousand two hundred twenty-seven' WHERE a=24717;\nUPDATE t2 SET c='sixty-eight thousand six hundred thirty-three' WHERE a=24718;\nUPDATE t2 SET c='thirty-eight thousand eight hundred sixty-two' WHERE a=24719;\nUPDATE t2 SET c='one thousand one hundred ninety-eight' WHERE a=24720;\nUPDATE t2 SET c='seventy-four thousand one hundred seventy-seven' WHERE a=24721;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-seven' WHERE a=24722;\nUPDATE t2 SET c='forty-seven thousand nine hundred sixty-eight' WHERE a=24723;\nUPDATE t2 SET c='sixty thousand five hundred thirty-four' WHERE a=24724;\nUPDATE t2 SET c='twenty-six thousand four hundred twenty-nine' WHERE a=24725;\nUPDATE t2 SET c='seventy-eight thousand six hundred twenty-nine' WHERE a=24726;\nUPDATE t2 SET c='forty-eight thousand six hundred ninety-three' WHERE a=24727;\nUPDATE t2 SET c='fifty-seven thousand one hundred seventy-five' WHERE a=24728;\nUPDATE t2 SET c='seventy-eight thousand one hundred forty-seven' WHERE a=24729;\nUPDATE t2 SET c='one thousand five hundred forty-seven' WHERE a=24730;\nUPDATE t2 SET c='ninety thousand nine hundred ninety-six' WHERE a=24731;\nUPDATE t2 SET c='thirty-seven thousand six hundred sixteen' WHERE a=24732;\nUPDATE t2 SET c='eighty-six thousand six' WHERE a=24733;\nUPDATE t2 SET c='ten thousand two hundred twenty-three' WHERE a=24734;\nUPDATE t2 SET c='fifty-three thousand five hundred two' WHERE a=24735;\nUPDATE t2 SET c='eighty-four thousand six hundred seven' WHERE a=24736;\nUPDATE t2 SET c='fifty-one thousand two hundred eighty' WHERE a=24737;\nUPDATE t2 SET c='thirty-six thousand four hundred twenty-seven' WHERE a=24738;\nUPDATE t2 SET c='forty-four thousand four hundred fourteen' WHERE a=24739;\nUPDATE t2 SET c='forty-seven thousand one hundred forty-six' WHERE a=24740;\nUPDATE t2 SET c='nine thousand seven hundred thirty-three' WHERE a=24741;\nUPDATE t2 SET c='forty-three thousand six hundred fifty-two' WHERE a=24742;\nUPDATE t2 SET c='ninety-seven thousand seven hundred ten' WHERE a=24743;\nUPDATE t2 SET c='sixty-nine thousand five hundred two' WHERE a=24744;\nUPDATE t2 SET c='thirty-four thousand seven hundred fifty-four' WHERE a=24745;\nUPDATE t2 SET c='seventy-four thousand two hundred fifty-one' WHERE a=24746;\nUPDATE t2 SET c='sixty-one thousand seven hundred nineteen' WHERE a=24747;\nUPDATE t2 SET c='forty-eight thousand eight hundred eighty-four' WHERE a=24748;\nUPDATE t2 SET c='twenty thousand fifty-three' WHERE a=24749;\nUPDATE t2 SET c='fifty-six thousand two hundred forty' WHERE a=24750;\nUPDATE t2 SET c='eighty-two thousand ninety-eight' WHERE a=24751;\nUPDATE t2 SET c='ninety thousand seven hundred sixty-eight' WHERE a=24752;\nUPDATE t2 SET c='twenty-eight thousand one hundred nineteen' WHERE a=24753;\nUPDATE t2 SET c='eighty-one thousand eighty-eight' WHERE a=24754;\nUPDATE t2 SET c='ninety-two thousand six hundred thirty-eight' WHERE a=24755;\nUPDATE t2 SET c='ninety-two thousand nine hundred thirty-two' WHERE a=24756;\nUPDATE t2 SET c='twenty-four thousand two hundred thirty-eight' WHERE a=24757;\nUPDATE t2 SET c='eighty-seven thousand four hundred thirty-eight' WHERE a=24758;\nUPDATE t2 SET c='sixty-eight thousand eight hundred seventy-four' WHERE a=24759;\nUPDATE t2 SET c='fifty-three thousand three hundred sixty-one' WHERE a=24760;\nUPDATE t2 SET c='fifty thousand one hundred sixty-nine' WHERE a=24761;\nUPDATE t2 SET c='thirty-five thousand nine hundred ninety-two' WHERE a=24762;\nUPDATE t2 SET c='thirty-six thousand twenty-four' WHERE a=24763;\nUPDATE t2 SET c='sixty-two thousand one hundred sixty-three' WHERE a=24764;\nUPDATE t2 SET c='fifty-three thousand seven hundred forty-one' WHERE a=24765;\nUPDATE t2 SET c='thirty-one thousand one hundred eighty-six' WHERE a=24766;\nUPDATE t2 SET c='fifty-seven thousand five hundred twenty-three' WHERE a=24767;\nUPDATE t2 SET c='thirty-nine thousand one hundred sixty-five' WHERE a=24768;\nUPDATE t2 SET c='forty-six thousand one hundred sixty' WHERE a=24769;\nUPDATE t2 SET c='fourteen thousand nine hundred seventy-four' WHERE a=24770;\nUPDATE t2 SET c='fifty-seven thousand one hundred thirty-six' WHERE a=24771;\nUPDATE t2 SET c='ninety-nine thousand two hundred six' WHERE a=24772;\nUPDATE t2 SET c='seventy thousand one hundred fourteen' WHERE a=24773;\nUPDATE t2 SET c='ninety-eight thousand nine hundred forty-three' WHERE a=24774;\nUPDATE t2 SET c='eighty thousand ninety-four' WHERE a=24775;\nUPDATE t2 SET c='eight thousand two hundred seventy-eight' WHERE a=24776;\nUPDATE t2 SET c='eighty-four thousand five hundred thirty-seven' WHERE a=24777;\nUPDATE t2 SET c='twenty-eight thousand eight hundred seventy-five' WHERE a=24778;\nUPDATE t2 SET c='seventy-eight thousand four hundred sixty-four' WHERE a=24779;\nUPDATE t2 SET c='nine thousand six hundred thirty' WHERE a=24780;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty' WHERE a=24781;\nUPDATE t2 SET c='sixty-eight' WHERE a=24782;\nUPDATE t2 SET c='thirty-eight thousand seventy-three' WHERE a=24783;\nUPDATE t2 SET c='seventy-six thousand sixty-six' WHERE a=24784;\nUPDATE t2 SET c='thirty-two thousand nine hundred sixty-three' WHERE a=24785;\nUPDATE t2 SET c='seven thousand two hundred eighty-five' WHERE a=24786;\nUPDATE t2 SET c='nine thousand nine hundred one' WHERE a=24787;\nUPDATE t2 SET c='twelve thousand seven hundred' WHERE a=24788;\nUPDATE t2 SET c='ninety-three thousand six hundred eighty-four' WHERE a=24789;\nUPDATE t2 SET c='nine thousand four hundred twenty-five' WHERE a=24790;\nUPDATE t2 SET c='sixty-three thousand two hundred thirty-two' WHERE a=24791;\nUPDATE t2 SET c='twenty-six thousand two hundred sixty-nine' WHERE a=24792;\nUPDATE t2 SET c='ninety-eight thousand four hundred ninety-eight' WHERE a=24793;\nUPDATE t2 SET c='sixteen thousand nine' WHERE a=24794;\nUPDATE t2 SET c='one thousand two hundred seventy-seven' WHERE a=24795;\nUPDATE t2 SET c='eighteen thousand four hundred ninety-seven' WHERE a=24796;\nUPDATE t2 SET c='eighty-eight thousand nine hundred eighty-eight' WHERE a=24797;\nUPDATE t2 SET c='forty-four thousand nine hundred fifty-five' WHERE a=24798;\nUPDATE t2 SET c='fifty-five thousand twenty-three' WHERE a=24799;\nUPDATE t2 SET c='ninety-two thousand five hundred nineteen' WHERE a=24800;\nUPDATE t2 SET c='eleven thousand one hundred thirty' WHERE a=24801;\nUPDATE t2 SET c='thirty-seven thousand five hundred fifty-nine' WHERE a=24802;\nUPDATE t2 SET c='thirteen thousand three hundred twelve' WHERE a=24803;\nUPDATE t2 SET c='nine hundred seventy' WHERE a=24804;\nUPDATE t2 SET c='twenty-eight thousand three hundred sixty-three' WHERE a=24805;\nUPDATE t2 SET c='ninety-four thousand three hundred seventy-three' WHERE a=24806;\nUPDATE t2 SET c='twenty-nine thousand seven hundred eighty-four' WHERE a=24807;\nUPDATE t2 SET c='twenty-one thousand eighty-nine' WHERE a=24808;\nUPDATE t2 SET c='one thousand two hundred thirty-three' WHERE a=24809;\nUPDATE t2 SET c='ninety-three thousand three hundred four' WHERE a=24810;\nUPDATE t2 SET c='forty-one thousand five hundred ninety-one' WHERE a=24811;\nUPDATE t2 SET c='seventy-eight thousand nine hundred sixty' WHERE a=24812;\nUPDATE t2 SET c='fourteen thousand three hundred seventy-two' WHERE a=24813;\nUPDATE t2 SET c='thirty thousand nine hundred sixty' WHERE a=24814;\nUPDATE t2 SET c='thirty-six thousand nine hundred forty-eight' WHERE a=24815;\nUPDATE t2 SET c='ninety thousand one hundred twenty-four' WHERE a=24816;\nUPDATE t2 SET c='five thousand six hundred thirteen' WHERE a=24817;\nUPDATE t2 SET c='sixty-two thousand six hundred thirteen' WHERE a=24818;\nUPDATE t2 SET c='thirty-two thousand two hundred sixty-six' WHERE a=24819;\nUPDATE t2 SET c='seventeen thousand forty-six' WHERE a=24820;\nUPDATE t2 SET c='fifty-five thousand three hundred four' WHERE a=24821;\nUPDATE t2 SET c='ninety thousand five hundred eighty-five' WHERE a=24822;\nUPDATE t2 SET c='twenty-eight thousand one hundred ten' WHERE a=24823;\nUPDATE t2 SET c='fifty-eight thousand four hundred ninety' WHERE a=24824;\nUPDATE t2 SET c='thirty-eight thousand nine hundred eighty-seven' WHERE a=24825;\nUPDATE t2 SET c='ninety-nine thousand one hundred seventy-six' WHERE a=24826;\nUPDATE t2 SET c='twenty-six thousand four hundred sixty-one' WHERE a=24827;\nUPDATE t2 SET c='eighty-seven thousand seven hundred twenty' WHERE a=24828;\nUPDATE t2 SET c='eighteen thousand eight hundred ninety-eight' WHERE a=24829;\nUPDATE t2 SET c='forty-six thousand six hundred thirty-one' WHERE a=24830;\nUPDATE t2 SET c='seventy-five thousand seven hundred fifty-six' WHERE a=24831;\nUPDATE t2 SET c='ninety-nine thousand six hundred seventy-eight' WHERE a=24832;\nUPDATE t2 SET c='fifty-nine thousand six hundred sixty-nine' WHERE a=24833;\nUPDATE t2 SET c='twenty-nine thousand eight hundred twenty-four' WHERE a=24834;\nUPDATE t2 SET c='eighty-five thousand nine hundred seventy-two' WHERE a=24835;\nUPDATE t2 SET c='twelve thousand two hundred forty-one' WHERE a=24836;\nUPDATE t2 SET c='twenty-seven thousand four hundred sixty-one' WHERE a=24837;\nUPDATE t2 SET c='one thousand eight hundred thirty-six' WHERE a=24838;\nUPDATE t2 SET c='sixty-one thousand seven hundred twenty-six' WHERE a=24839;\nUPDATE t2 SET c='fifty-six thousand seven hundred twenty-eight' WHERE a=24840;\nUPDATE t2 SET c='nineteen thousand nine hundred thirty-three' WHERE a=24841;\nUPDATE t2 SET c='twenty-nine thousand six hundred' WHERE a=24842;\nUPDATE t2 SET c='forty-five thousand nine hundred ten' WHERE a=24843;\nUPDATE t2 SET c='thirty-seven thousand nine hundred ninety-three' WHERE a=24844;\nUPDATE t2 SET c='twenty-five thousand sixty-eight' WHERE a=24845;\nUPDATE t2 SET c='ninety-two thousand seven hundred twenty-one' WHERE a=24846;\nUPDATE t2 SET c='forty thousand seven hundred twenty-one' WHERE a=24847;\nUPDATE t2 SET c='forty-nine thousand seven hundred eighty-two' WHERE a=24848;\nUPDATE t2 SET c='ninety-five thousand five hundred ninety-seven' WHERE a=24849;\nUPDATE t2 SET c='ninety-one thousand nine hundred twenty-three' WHERE a=24850;\nUPDATE t2 SET c='seventy-seven thousand four hundred fifty-four' WHERE a=24851;\nUPDATE t2 SET c='fifteen thousand four hundred fifty' WHERE a=24852;\nUPDATE t2 SET c='eight thousand three hundred thirty-six' WHERE a=24853;\nUPDATE t2 SET c='seven thousand eight hundred twenty-one' WHERE a=24854;\nUPDATE t2 SET c='ninety-six thousand two hundred forty-five' WHERE a=24855;\nUPDATE t2 SET c='eighty thousand seven hundred sixteen' WHERE a=24856;\nUPDATE t2 SET c='twenty-three thousand five hundred four' WHERE a=24857;\nUPDATE t2 SET c='fifty thousand eight hundred thirty-one' WHERE a=24858;\nUPDATE t2 SET c='sixty-eight thousand five hundred fifty-three' WHERE a=24859;\nUPDATE t2 SET c='fifteen thousand six hundred eighty-three' WHERE a=24860;\nUPDATE t2 SET c='sixty-nine thousand one hundred thirty-three' WHERE a=24861;\nUPDATE t2 SET c='eighty-six thousand five hundred twenty-four' WHERE a=24862;\nUPDATE t2 SET c='ninety-three thousand eight hundred forty-nine' WHERE a=24863;\nUPDATE t2 SET c='seventy thousand sixteen' WHERE a=24864;\nUPDATE t2 SET c='eighteen thousand six hundred fifty-nine' WHERE a=24865;\nUPDATE t2 SET c='eighty-eight thousand eighty-one' WHERE a=24866;\nUPDATE t2 SET c='fifty-one thousand one hundred forty-two' WHERE a=24867;\nUPDATE t2 SET c='sixty-nine thousand seventy' WHERE a=24868;\nUPDATE t2 SET c='ten thousand four hundred twenty-three' WHERE a=24869;\nUPDATE t2 SET c='sixty-one thousand eight hundred twenty-two' WHERE a=24870;\nUPDATE t2 SET c='eighty-nine thousand nine hundred eighty' WHERE a=24871;\nUPDATE t2 SET c='forty-seven thousand three hundred thirty' WHERE a=24872;\nUPDATE t2 SET c='seventy-eight thousand five hundred twenty-five' WHERE a=24873;\nUPDATE t2 SET c='twenty-seven thousand four hundred six' WHERE a=24874;\nUPDATE t2 SET c='forty thousand eight hundred fifty' WHERE a=24875;\nUPDATE t2 SET c='fifty-six thousand one hundred sixty' WHERE a=24876;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-one' WHERE a=24877;\nUPDATE t2 SET c='sixty-one thousand two hundred fifty-seven' WHERE a=24878;\nUPDATE t2 SET c='ninety-eight thousand eight hundred six' WHERE a=24879;\nUPDATE t2 SET c='eighty-six thousand twenty-five' WHERE a=24880;\nUPDATE t2 SET c='thirty-nine thousand four hundred seventy-two' WHERE a=24881;\nUPDATE t2 SET c='eight hundred thirty-three' WHERE a=24882;\nUPDATE t2 SET c='six thousand eight hundred nine' WHERE a=24883;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventeen' WHERE a=24884;\nUPDATE t2 SET c='ninety-three thousand four hundred ninety-five' WHERE a=24885;\nUPDATE t2 SET c='twenty thousand two hundred twenty-four' WHERE a=24886;\nUPDATE t2 SET c='ninety-one thousand nine hundred thirty' WHERE a=24887;\nUPDATE t2 SET c='thirty-two thousand eight hundred seventy-three' WHERE a=24888;\nUPDATE t2 SET c='twenty-five thousand six hundred eighty-two' WHERE a=24889;\nUPDATE t2 SET c='fifty-eight thousand eight hundred thirty-three' WHERE a=24890;\nUPDATE t2 SET c='sixty-seven thousand four hundred eighty-six' WHERE a=24891;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-nine' WHERE a=24892;\nUPDATE t2 SET c='forty-three thousand five hundred twenty-one' WHERE a=24893;\nUPDATE t2 SET c='twenty thousand five hundred seventy-five' WHERE a=24894;\nUPDATE t2 SET c='seven thousand one hundred sixteen' WHERE a=24895;\nUPDATE t2 SET c='four hundred sixty-six' WHERE a=24896;\nUPDATE t2 SET c='ninety-two thousand forty' WHERE a=24897;\nUPDATE t2 SET c='forty-six thousand two hundred seventy-four' WHERE a=24898;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy-three' WHERE a=24899;\nUPDATE t2 SET c='thirteen thousand three hundred eighty-nine' WHERE a=24900;\nUPDATE t2 SET c='thirty-four thousand six hundred forty-three' WHERE a=24901;\nUPDATE t2 SET c='fifty-five thousand seven hundred twenty' WHERE a=24902;\nUPDATE t2 SET c='eighty-two thousand six hundred sixty' WHERE a=24903;\nUPDATE t2 SET c='twelve thousand eight hundred thirty-eight' WHERE a=24904;\nUPDATE t2 SET c='eighty-seven thousand eight hundred forty-four' WHERE a=24905;\nUPDATE t2 SET c='seventy thousand nine hundred nineteen' WHERE a=24906;\nUPDATE t2 SET c='seventeen thousand eight hundred twelve' WHERE a=24907;\nUPDATE t2 SET c='ninety-eight thousand eight hundred seventy-four' WHERE a=24908;\nUPDATE t2 SET c='seventeen thousand one hundred eighty-two' WHERE a=24909;\nUPDATE t2 SET c='eighty-one thousand seven hundred eighty-seven' WHERE a=24910;\nUPDATE t2 SET c='eighty-six thousand eight hundred twenty-three' WHERE a=24911;\nUPDATE t2 SET c='forty-four thousand four hundred seventeen' WHERE a=24912;\nUPDATE t2 SET c='fifteen thousand six hundred seventeen' WHERE a=24913;\nUPDATE t2 SET c='ninety-four thousand ninety-seven' WHERE a=24914;\nUPDATE t2 SET c='ninety-four thousand five hundred twelve' WHERE a=24915;\nUPDATE t2 SET c='thirty-three thousand two hundred sixty-eight' WHERE a=24916;\nUPDATE t2 SET c='sixty-eight thousand three hundred four' WHERE a=24917;\nUPDATE t2 SET c='ninety-one thousand eight hundred sixty' WHERE a=24918;\nUPDATE t2 SET c='twenty-eight thousand seven hundred eighty-seven' WHERE a=24919;\nUPDATE t2 SET c='seventy-eight thousand five hundred eighty-nine' WHERE a=24920;\nUPDATE t2 SET c='ninety-six thousand three hundred thirty-one' WHERE a=24921;\nUPDATE t2 SET c='eighty thousand six hundred four' WHERE a=24922;\nUPDATE t2 SET c='eleven thousand seven hundred twenty-nine' WHERE a=24923;\nUPDATE t2 SET c='twenty-four thousand nine hundred forty-eight' WHERE a=24924;\nUPDATE t2 SET c='seventy-two thousand three hundred twenty-four' WHERE a=24925;\nUPDATE t2 SET c='forty-seven thousand one hundred one' WHERE a=24926;\nUPDATE t2 SET c='eleven thousand seven hundred fifty' WHERE a=24927;\nUPDATE t2 SET c='twenty-six thousand eight hundred thirty-eight' WHERE a=24928;\nUPDATE t2 SET c='eighty-five thousand sixty-five' WHERE a=24929;\nUPDATE t2 SET c='fifty-six thousand three hundred ninety-five' WHERE a=24930;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty-eight' WHERE a=24931;\nUPDATE t2 SET c='ninety-seven thousand three hundred twenty-five' WHERE a=24932;\nUPDATE t2 SET c='eighty-five thousand three hundred four' WHERE a=24933;\nUPDATE t2 SET c='seventy thousand three hundred forty-three' WHERE a=24934;\nUPDATE t2 SET c='eighty thousand three hundred four' WHERE a=24935;\nUPDATE t2 SET c='forty-three thousand four hundred forty-six' WHERE a=24936;\nUPDATE t2 SET c='eighty-one thousand six hundred twelve' WHERE a=24937;\nUPDATE t2 SET c='sixty-five thousand six hundred fifty-six' WHERE a=24938;\nUPDATE t2 SET c='eighty-seven thousand four hundred forty' WHERE a=24939;\nUPDATE t2 SET c='seventy-eight thousand eight hundred ninety-two' WHERE a=24940;\nUPDATE t2 SET c='fifty-six thousand three hundred six' WHERE a=24941;\nUPDATE t2 SET c='forty-five thousand seven hundred seven' WHERE a=24942;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventy-three' WHERE a=24943;\nUPDATE t2 SET c='thirty-two thousand five hundred ninety-five' WHERE a=24944;\nUPDATE t2 SET c='forty-six thousand seven hundred ninety-five' WHERE a=24945;\nUPDATE t2 SET c='ninety-eight thousand two hundred fifty-one' WHERE a=24946;\nUPDATE t2 SET c='ninety thousand six hundred thirty-eight' WHERE a=24947;\nUPDATE t2 SET c='twenty thousand six hundred four' WHERE a=24948;\nUPDATE t2 SET c='ninety-two thousand seven hundred seventy' WHERE a=24949;\nUPDATE t2 SET c='sixty-one thousand eight hundred thirty-eight' WHERE a=24950;\nUPDATE t2 SET c='six thousand seven hundred sixty-three' WHERE a=24951;\nUPDATE t2 SET c='seventy-seven thousand two hundred sixty-eight' WHERE a=24952;\nUPDATE t2 SET c='sixty-four thousand nine hundred eighty-three' WHERE a=24953;\nUPDATE t2 SET c='seventeen thousand ninety' WHERE a=24954;\nUPDATE t2 SET c='six thousand two hundred fifty' WHERE a=24955;\nUPDATE t2 SET c='ninety-six thousand three hundred forty-six' WHERE a=24956;\nUPDATE t2 SET c='one thousand six hundred ninety-six' WHERE a=24957;\nUPDATE t2 SET c='sixty-nine thousand four hundred sixty-two' WHERE a=24958;\nUPDATE t2 SET c='three thousand five hundred fifty-two' WHERE a=24959;\nUPDATE t2 SET c='fifty-five thousand three hundred seventy-five' WHERE a=24960;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty-nine' WHERE a=24961;\nUPDATE t2 SET c='thirty thousand four hundred sixteen' WHERE a=24962;\nUPDATE t2 SET c='ninety-seven thousand four hundred fifty-four' WHERE a=24963;\nUPDATE t2 SET c='fifty-five thousand four hundred twelve' WHERE a=24964;\nUPDATE t2 SET c='seventy-three thousand six hundred fifty' WHERE a=24965;\nUPDATE t2 SET c='fifty-seven thousand fifty-eight' WHERE a=24966;\nUPDATE t2 SET c='forty-three thousand four hundred eighty' WHERE a=24967;\nUPDATE t2 SET c='six thousand nine hundred fifty-nine' WHERE a=24968;\nUPDATE t2 SET c='ninety-nine thousand four hundred twenty-four' WHERE a=24969;\nUPDATE t2 SET c='ninety-three thousand five hundred sixteen' WHERE a=24970;\nUPDATE t2 SET c='sixty-five thousand seven hundred thirty-one' WHERE a=24971;\nUPDATE t2 SET c='thirty-four thousand eight hundred' WHERE a=24972;\nUPDATE t2 SET c='forty-four thousand nine hundred sixty-two' WHERE a=24973;\nUPDATE t2 SET c='fifty thousand four hundred eighty-two' WHERE a=24974;\nUPDATE t2 SET c='twenty-six thousand four hundred twenty-one' WHERE a=24975;\nUPDATE t2 SET c='forty-six thousand three hundred one' WHERE a=24976;\nUPDATE t2 SET c='seventy-eight thousand five hundred seventy-seven' WHERE a=24977;\nUPDATE t2 SET c='fifty-two thousand five hundred forty-three' WHERE a=24978;\nUPDATE t2 SET c='eighteen thousand two hundred four' WHERE a=24979;\nUPDATE t2 SET c='seventy-six thousand one hundred seventy-four' WHERE a=24980;\nUPDATE t2 SET c='eight thousand six hundred twenty-four' WHERE a=24981;\nUPDATE t2 SET c='forty thousand nine hundred eighty-five' WHERE a=24982;\nUPDATE t2 SET c='seventy-seven thousand thirty-seven' WHERE a=24983;\nUPDATE t2 SET c='forty thousand seventy-eight' WHERE a=24984;\nUPDATE t2 SET c='thirty-eight thousand six hundred sixteen' WHERE a=24985;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventy' WHERE a=24986;\nUPDATE t2 SET c='seventy-six thousand eight hundred sixty-six' WHERE a=24987;\nUPDATE t2 SET c='ninety-six thousand ninety-two' WHERE a=24988;\nUPDATE t2 SET c='one thousand seven hundred eighty-six' WHERE a=24989;\nUPDATE t2 SET c='eighty-six thousand eight hundred eighty' WHERE a=24990;\nUPDATE t2 SET c='fifty-four thousand one hundred thirty-three' WHERE a=24991;\nUPDATE t2 SET c='three thousand two hundred seventy-five' WHERE a=24992;\nUPDATE t2 SET c='eighty-five thousand five hundred forty-five' WHERE a=24993;\nUPDATE t2 SET c='forty-two thousand four hundred forty-nine' WHERE a=24994;\nUPDATE t2 SET c='thirty-three thousand eight hundred eighty-one' WHERE a=24995;\nUPDATE t2 SET c='ninety-seven thousand seven hundred sixty' WHERE a=24996;\nUPDATE t2 SET c='eighty-seven thousand nine hundred eighty-two' WHERE a=24997;\nUPDATE t2 SET c='twenty-six thousand nine hundred forty' WHERE a=24998;\nUPDATE t2 SET c='eighty-one thousand fifty-eight' WHERE a=24999;\nUPDATE t2 SET c='sixty-one thousand one hundred fifteen' WHERE a=25000;\nCOMMIT;\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark11.sql",
    "content": "BEGIN;\nINSERT INTO t1 SELECT b,a,c FROM t2;\nINSERT INTO t2 SELECT b,a,c FROM t1;\nCOMMIT;\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark12.sql",
    "content": "DELETE FROM t2 WHERE c LIKE '%fifty%';\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark13.sql",
    "content": "DELETE FROM t2 WHERE a>10 AND a<20000;\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark14.sql",
    "content": "INSERT INTO t2 SELECT * FROM t1;\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark15.sql",
    "content": "BEGIN;\nDELETE FROM t1;\nINSERT INTO t1 VALUES(1, 69001, 'sixty-nine thousand one');\nINSERT INTO t1 VALUES(2, 14653, 'fourteen thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(3, 30574, 'thirty thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(4, 25718, 'twenty-five thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(5, 2863, 'two thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(6, 72899, 'seventy-two thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(7, 66050, 'sixty-six thousand fifty');\nINSERT INTO t1 VALUES(8, 73320, 'seventy-three thousand three hundred twenty');\nINSERT INTO t1 VALUES(9, 17829, 'seventeen thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(10, 21838, 'twenty-one thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(11, 36089, 'thirty-six thousand eighty-nine');\nINSERT INTO t1 VALUES(12, 54188, 'fifty-four thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(13, 90001, 'ninety thousand one');\nINSERT INTO t1 VALUES(14, 53754, 'fifty-three thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(15, 64370, 'sixty-four thousand three hundred seventy');\nINSERT INTO t1 VALUES(16, 12131, 'twelve thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(17, 946, 'nine hundred forty-six');\nINSERT INTO t1 VALUES(18, 62211, 'sixty-two thousand two hundred eleven');\nINSERT INTO t1 VALUES(19, 63063, 'sixty-three thousand sixty-three');\nINSERT INTO t1 VALUES(20, 30284, 'thirty thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(21, 5779, 'five thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(22, 53669, 'fifty-three thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(23, 11205, 'eleven thousand two hundred five');\nINSERT INTO t1 VALUES(24, 76512, 'seventy-six thousand five hundred twelve');\nINSERT INTO t1 VALUES(25, 45771, 'forty-five thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(26, 12290, 'twelve thousand two hundred ninety');\nINSERT INTO t1 VALUES(27, 15009, 'fifteen thousand nine');\nINSERT INTO t1 VALUES(28, 85391, 'eighty-five thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(29, 65676, 'sixty-five thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(30, 1170, 'one thousand one hundred seventy');\nINSERT INTO t1 VALUES(31, 45091, 'forty-five thousand ninety-one');\nINSERT INTO t1 VALUES(32, 13611, 'thirteen thousand six hundred eleven');\nINSERT INTO t1 VALUES(33, 46489, 'forty-six thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(34, 94980, 'ninety-four thousand nine hundred eighty');\nINSERT INTO t1 VALUES(35, 20777, 'twenty thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(36, 33664, 'thirty-three thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(37, 43647, 'forty-three thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(38, 73943, 'seventy-three thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(39, 56644, 'fifty-six thousand six hundred forty-four');\nINSERT INTO t1 VALUES(40, 5285, 'five thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(41, 88365, 'eighty-eight thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(42, 6335, 'six thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(43, 64757, 'sixty-four thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(44, 68039, 'sixty-eight thousand thirty-nine');\nINSERT INTO t1 VALUES(45, 12783, 'twelve thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(46, 95070, 'ninety-five thousand seventy');\nINSERT INTO t1 VALUES(47, 59393, 'fifty-nine thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(48, 26292, 'twenty-six thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(49, 66434, 'sixty-six thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(50, 32576, 'thirty-two thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(51, 15417, 'fifteen thousand four hundred seventeen');\nINSERT INTO t1 VALUES(52, 43974, 'forty-three thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(53, 81598, 'eighty-one thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(54, 78187, 'seventy-eight thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(55, 96628, 'ninety-six thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(56, 49006, 'forty-nine thousand six');\nINSERT INTO t1 VALUES(57, 12369, 'twelve thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(58, 64270, 'sixty-four thousand two hundred seventy');\nINSERT INTO t1 VALUES(59, 99754, 'ninety-nine thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(60, 94486, 'ninety-four thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(61, 58321, 'fifty-eight thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(62, 23071, 'twenty-three thousand seventy-one');\nINSERT INTO t1 VALUES(63, 42113, 'forty-two thousand one hundred thirteen');\nINSERT INTO t1 VALUES(64, 85726, 'eighty-five thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(65, 9111, 'nine thousand one hundred eleven');\nINSERT INTO t1 VALUES(66, 79820, 'seventy-nine thousand eight hundred twenty');\nINSERT INTO t1 VALUES(67, 84887, 'eighty-four thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(68, 86050, 'eighty-six thousand fifty');\nINSERT INTO t1 VALUES(69, 84385, 'eighty-four thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(70, 72979, 'seventy-two thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(71, 85471, 'eighty-five thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(72, 2460, 'two thousand four hundred sixty');\nINSERT INTO t1 VALUES(73, 50142, 'fifty thousand one hundred forty-two');\nINSERT INTO t1 VALUES(74, 41831, 'forty-one thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(75, 64085, 'sixty-four thousand eighty-five');\nINSERT INTO t1 VALUES(76, 50549, 'fifty thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(77, 8477, 'eight thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(78, 65346, 'sixty-five thousand three hundred forty-six');\nINSERT INTO t1 VALUES(79, 35600, 'thirty-five thousand six hundred');\nINSERT INTO t1 VALUES(80, 84509, 'eighty-four thousand five hundred nine');\nINSERT INTO t1 VALUES(81, 44272, 'forty-four thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(82, 40910, 'forty thousand nine hundred ten');\nINSERT INTO t1 VALUES(83, 68905, 'sixty-eight thousand nine hundred five');\nINSERT INTO t1 VALUES(84, 58308, 'fifty-eight thousand three hundred eight');\nINSERT INTO t1 VALUES(85, 98614, 'ninety-eight thousand six hundred fourteen');\nINSERT INTO t1 VALUES(86, 66893, 'sixty-six thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(87, 45259, 'forty-five thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(88, 45738, 'forty-five thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(89, 28790, 'twenty-eight thousand seven hundred ninety');\nINSERT INTO t1 VALUES(90, 15870, 'fifteen thousand eight hundred seventy');\nINSERT INTO t1 VALUES(91, 15553, 'fifteen thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(92, 18727, 'eighteen thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(93, 99780, 'ninety-nine thousand seven hundred eighty');\nINSERT INTO t1 VALUES(94, 20175, 'twenty thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(95, 37815, 'thirty-seven thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(96, 49076, 'forty-nine thousand seventy-six');\nINSERT INTO t1 VALUES(97, 91467, 'ninety-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(98, 12723, 'twelve thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(99, 20586, 'twenty thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(100, 98441, 'ninety-eight thousand four hundred forty-one');\nINSERT INTO t1 VALUES(101, 21269, 'twenty-one thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(102, 15851, 'fifteen thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(103, 23631, 'twenty-three thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(104, 37614, 'thirty-seven thousand six hundred fourteen');\nINSERT INTO t1 VALUES(105, 51841, 'fifty-one thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(106, 56415, 'fifty-six thousand four hundred fifteen');\nINSERT INTO t1 VALUES(107, 83629, 'eighty-three thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(108, 4149, 'four thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(109, 95878, 'ninety-five thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(110, 30052, 'thirty thousand fifty-two');\nINSERT INTO t1 VALUES(111, 42365, 'forty-two thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(112, 12243, 'twelve thousand two hundred forty-three');\nINSERT INTO t1 VALUES(113, 89704, 'eighty-nine thousand seven hundred four');\nINSERT INTO t1 VALUES(114, 15685, 'fifteen thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(115, 74876, 'seventy-four thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(116, 81982, 'eighty-one thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(117, 70408, 'seventy thousand four hundred eight');\nINSERT INTO t1 VALUES(118, 39118, 'thirty-nine thousand one hundred eighteen');\nINSERT INTO t1 VALUES(119, 7463, 'seven thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(120, 11126, 'eleven thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(121, 44536, 'forty-four thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(122, 23272, 'twenty-three thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(123, 62647, 'sixty-two thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(124, 77351, 'seventy-seven thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(125, 48704, 'forty-eight thousand seven hundred four');\nINSERT INTO t1 VALUES(126, 36835, 'thirty-six thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(127, 98373, 'ninety-eight thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(128, 40970, 'forty thousand nine hundred seventy');\nINSERT INTO t1 VALUES(129, 19215, 'nineteen thousand two hundred fifteen');\nINSERT INTO t1 VALUES(130, 82574, 'eighty-two thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(131, 71468, 'seventy-one thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(132, 48750, 'forty-eight thousand seven hundred fifty');\nINSERT INTO t1 VALUES(133, 53120, 'fifty-three thousand one hundred twenty');\nINSERT INTO t1 VALUES(134, 7206, 'seven thousand two hundred six');\nINSERT INTO t1 VALUES(135, 77245, 'seventy-seven thousand two hundred forty-five');\nINSERT INTO t1 VALUES(136, 27430, 'twenty-seven thousand four hundred thirty');\nINSERT INTO t1 VALUES(137, 38889, 'thirty-eight thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(138, 74000, 'seventy-four thousand');\nINSERT INTO t1 VALUES(139, 36740, 'thirty-six thousand seven hundred forty');\nINSERT INTO t1 VALUES(140, 66935, 'sixty-six thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(141, 37679, 'thirty-seven thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(142, 92517, 'ninety-two thousand five hundred seventeen');\nINSERT INTO t1 VALUES(143, 25292, 'twenty-five thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(144, 74710, 'seventy-four thousand seven hundred ten');\nINSERT INTO t1 VALUES(145, 88388, 'eighty-eight thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(146, 20074, 'twenty thousand seventy-four');\nINSERT INTO t1 VALUES(147, 17161, 'seventeen thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(148, 28976, 'twenty-eight thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(149, 52361, 'fifty-two thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(150, 25123, 'twenty-five thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(151, 40662, 'forty thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(152, 19958, 'nineteen thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(153, 14521, 'fourteen thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(154, 64516, 'sixty-four thousand five hundred sixteen');\nINSERT INTO t1 VALUES(155, 90893, 'ninety thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(156, 64617, 'sixty-four thousand six hundred seventeen');\nINSERT INTO t1 VALUES(157, 82000, 'eighty-two thousand');\nINSERT INTO t1 VALUES(158, 63053, 'sixty-three thousand fifty-three');\nINSERT INTO t1 VALUES(159, 23609, 'twenty-three thousand six hundred nine');\nINSERT INTO t1 VALUES(160, 37626, 'thirty-seven thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(161, 31628, 'thirty-one thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(162, 66488, 'sixty-six thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(163, 92157, 'ninety-two thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(164, 73816, 'seventy-three thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(165, 788, 'seven hundred eighty-eight');\nINSERT INTO t1 VALUES(166, 38704, 'thirty-eight thousand seven hundred four');\nINSERT INTO t1 VALUES(167, 13663, 'thirteen thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(168, 64363, 'sixty-four thousand three hundred sixty-three');\nINSERT INTO t1 VALUES(169, 17421, 'seventeen thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(170, 24719, 'twenty-four thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(171, 74905, 'seventy-four thousand nine hundred five');\nINSERT INTO t1 VALUES(172, 57491, 'fifty-seven thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(173, 83887, 'eighty-three thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(174, 53820, 'fifty-three thousand eight hundred twenty');\nINSERT INTO t1 VALUES(175, 99686, 'ninety-nine thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(176, 13566, 'thirteen thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(177, 84105, 'eighty-four thousand one hundred five');\nINSERT INTO t1 VALUES(178, 27865, 'twenty-seven thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(179, 65236, 'sixty-five thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(180, 68943, 'sixty-eight thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(181, 95512, 'ninety-five thousand five hundred twelve');\nINSERT INTO t1 VALUES(182, 37288, 'thirty-seven thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(183, 40598, 'forty thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(184, 95736, 'ninety-five thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(185, 36298, 'thirty-six thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(186, 88598, 'eighty-eight thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(187, 43804, 'forty-three thousand eight hundred four');\nINSERT INTO t1 VALUES(188, 43530, 'forty-three thousand five hundred thirty');\nINSERT INTO t1 VALUES(189, 11998, 'eleven thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(190, 78630, 'seventy-eight thousand six hundred thirty');\nINSERT INTO t1 VALUES(191, 33724, 'thirty-three thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(192, 65897, 'sixty-five thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(193, 52823, 'fifty-two thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(194, 85968, 'eighty-five thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(195, 27380, 'twenty-seven thousand three hundred eighty');\nINSERT INTO t1 VALUES(196, 29347, 'twenty-nine thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(197, 40056, 'forty thousand fifty-six');\nINSERT INTO t1 VALUES(198, 95155, 'ninety-five thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(199, 5809, 'five thousand eight hundred nine');\nINSERT INTO t1 VALUES(200, 36227, 'thirty-six thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(201, 41328, 'forty-one thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(202, 79952, 'seventy-nine thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(203, 4654, 'four thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(204, 72453, 'seventy-two thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(205, 50233, 'fifty thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(206, 40443, 'forty thousand four hundred forty-three');\nINSERT INTO t1 VALUES(207, 24410, 'twenty-four thousand four hundred ten');\nINSERT INTO t1 VALUES(208, 56928, 'fifty-six thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(209, 86493, 'eighty-six thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(210, 44012, 'forty-four thousand twelve');\nINSERT INTO t1 VALUES(211, 49968, 'forty-nine thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(212, 31076, 'thirty-one thousand seventy-six');\nINSERT INTO t1 VALUES(213, 11672, 'eleven thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(214, 49858, 'forty-nine thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(215, 91036, 'ninety-one thousand thirty-six');\nINSERT INTO t1 VALUES(216, 69225, 'sixty-nine thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(217, 72681, 'seventy-two thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(218, 88900, 'eighty-eight thousand nine hundred');\nINSERT INTO t1 VALUES(219, 23257, 'twenty-three thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(220, 69699, 'sixty-nine thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(221, 84544, 'eighty-four thousand five hundred forty-four');\nINSERT INTO t1 VALUES(222, 47903, 'forty-seven thousand nine hundred three');\nINSERT INTO t1 VALUES(223, 54368, 'fifty-four thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(224, 87640, 'eighty-seven thousand six hundred forty');\nINSERT INTO t1 VALUES(225, 85367, 'eighty-five thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(226, 26988, 'twenty-six thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(227, 45133, 'forty-five thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(228, 37005, 'thirty-seven thousand five');\nINSERT INTO t1 VALUES(229, 95846, 'ninety-five thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(230, 53925, 'fifty-three thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(231, 70273, 'seventy thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(232, 75295, 'seventy-five thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(233, 43952, 'forty-three thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(234, 83266, 'eighty-three thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(235, 22861, 'twenty-two thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(236, 58701, 'fifty-eight thousand seven hundred one');\nINSERT INTO t1 VALUES(237, 81079, 'eighty-one thousand seventy-nine');\nINSERT INTO t1 VALUES(238, 58821, 'fifty-eight thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(239, 51566, 'fifty-one thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(240, 31581, 'thirty-one thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(241, 84682, 'eighty-four thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(242, 67541, 'sixty-seven thousand five hundred forty-one');\nINSERT INTO t1 VALUES(243, 98676, 'ninety-eight thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(244, 61174, 'sixty-one thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(245, 47444, 'forty-seven thousand four hundred forty-four');\nINSERT INTO t1 VALUES(246, 13077, 'thirteen thousand seventy-seven');\nINSERT INTO t1 VALUES(247, 33058, 'thirty-three thousand fifty-eight');\nINSERT INTO t1 VALUES(248, 18047, 'eighteen thousand forty-seven');\nINSERT INTO t1 VALUES(249, 24666, 'twenty-four thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(250, 85339, 'eighty-five thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(251, 27349, 'twenty-seven thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(252, 48646, 'forty-eight thousand six hundred forty-six');\nINSERT INTO t1 VALUES(253, 87697, 'eighty-seven thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(254, 59028, 'fifty-nine thousand twenty-eight');\nINSERT INTO t1 VALUES(255, 90200, 'ninety thousand two hundred');\nINSERT INTO t1 VALUES(256, 22076, 'twenty-two thousand seventy-six');\nINSERT INTO t1 VALUES(257, 96572, 'ninety-six thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(258, 81344, 'eighty-one thousand three hundred forty-four');\nINSERT INTO t1 VALUES(259, 60728, 'sixty thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(260, 42784, 'forty-two thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(261, 67944, 'sixty-seven thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(262, 89078, 'eighty-nine thousand seventy-eight');\nINSERT INTO t1 VALUES(263, 27721, 'twenty-seven thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(264, 30300, 'thirty thousand three hundred');\nINSERT INTO t1 VALUES(265, 86377, 'eighty-six thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(266, 2769, 'two thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(267, 348, 'three hundred forty-eight');\nINSERT INTO t1 VALUES(268, 15645, 'fifteen thousand six hundred forty-five');\nINSERT INTO t1 VALUES(269, 46745, 'forty-six thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(270, 98874, 'ninety-eight thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(271, 8959, 'eight thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(272, 4662, 'four thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(273, 3031, 'three thousand thirty-one');\nINSERT INTO t1 VALUES(274, 14795, 'fourteen thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(275, 89615, 'eighty-nine thousand six hundred fifteen');\nINSERT INTO t1 VALUES(276, 38151, 'thirty-eight thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(277, 9577, 'nine thousand five hundred seventy-seven');\nINSERT INTO t1 VALUES(278, 21690, 'twenty-one thousand six hundred ninety');\nINSERT INTO t1 VALUES(279, 95976, 'ninety-five thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(280, 13228, 'thirteen thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(281, 56557, 'fifty-six thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(282, 34745, 'thirty-four thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(283, 88947, 'eighty-eight thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(284, 53802, 'fifty-three thousand eight hundred two');\nINSERT INTO t1 VALUES(285, 99862, 'ninety-nine thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(286, 43756, 'forty-three thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(287, 45904, 'forty-five thousand nine hundred four');\nINSERT INTO t1 VALUES(288, 86592, 'eighty-six thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(289, 63957, 'sixty-three thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(290, 73086, 'seventy-three thousand eighty-six');\nINSERT INTO t1 VALUES(291, 64839, 'sixty-four thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(292, 85481, 'eighty-five thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(293, 60233, 'sixty thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(294, 77494, 'seventy-seven thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(295, 13588, 'thirteen thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(296, 99448, 'ninety-nine thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(297, 12544, 'twelve thousand five hundred forty-four');\nINSERT INTO t1 VALUES(298, 86883, 'eighty-six thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(299, 25199, 'twenty-five thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(300, 4490, 'four thousand four hundred ninety');\nINSERT INTO t1 VALUES(301, 80345, 'eighty thousand three hundred forty-five');\nINSERT INTO t1 VALUES(302, 26880, 'twenty-six thousand eight hundred eighty');\nINSERT INTO t1 VALUES(303, 78029, 'seventy-eight thousand twenty-nine');\nINSERT INTO t1 VALUES(304, 81387, 'eighty-one thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(305, 73053, 'seventy-three thousand fifty-three');\nINSERT INTO t1 VALUES(306, 97799, 'ninety-seven thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(307, 93677, 'ninety-three thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(308, 37416, 'thirty-seven thousand four hundred sixteen');\nINSERT INTO t1 VALUES(309, 86296, 'eighty-six thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(310, 73078, 'seventy-three thousand seventy-eight');\nINSERT INTO t1 VALUES(311, 16249, 'sixteen thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(312, 91237, 'ninety-one thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(313, 60649, 'sixty thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(314, 44095, 'forty-four thousand ninety-five');\nINSERT INTO t1 VALUES(315, 86807, 'eighty-six thousand eight hundred seven');\nINSERT INTO t1 VALUES(316, 39392, 'thirty-nine thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(317, 14697, 'fourteen thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(318, 12005, 'twelve thousand five');\nINSERT INTO t1 VALUES(319, 2472, 'two thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(320, 50236, 'fifty thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(321, 83552, 'eighty-three thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(322, 73455, 'seventy-three thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(323, 41303, 'forty-one thousand three hundred three');\nINSERT INTO t1 VALUES(324, 59226, 'fifty-nine thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(325, 58564, 'fifty-eight thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(326, 16794, 'sixteen thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(327, 14497, 'fourteen thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(328, 16811, 'sixteen thousand eight hundred eleven');\nINSERT INTO t1 VALUES(329, 69921, 'sixty-nine thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(330, 2151, 'two thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(331, 60008, 'sixty thousand eight');\nINSERT INTO t1 VALUES(332, 72246, 'seventy-two thousand two hundred forty-six');\nINSERT INTO t1 VALUES(333, 38119, 'thirty-eight thousand one hundred nineteen');\nINSERT INTO t1 VALUES(334, 93975, 'ninety-three thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(335, 50570, 'fifty thousand five hundred seventy');\nINSERT INTO t1 VALUES(336, 32897, 'thirty-two thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(337, 89603, 'eighty-nine thousand six hundred three');\nINSERT INTO t1 VALUES(338, 63077, 'sixty-three thousand seventy-seven');\nINSERT INTO t1 VALUES(339, 54175, 'fifty-four thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(340, 76056, 'seventy-six thousand fifty-six');\nINSERT INTO t1 VALUES(341, 88771, 'eighty-eight thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(342, 82397, 'eighty-two thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(343, 68160, 'sixty-eight thousand one hundred sixty');\nINSERT INTO t1 VALUES(344, 73036, 'seventy-three thousand thirty-six');\nINSERT INTO t1 VALUES(345, 33628, 'thirty-three thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(346, 21487, 'twenty-one thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(347, 28885, 'twenty-eight thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(348, 15628, 'fifteen thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(349, 79726, 'seventy-nine thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(350, 58705, 'fifty-eight thousand seven hundred five');\nINSERT INTO t1 VALUES(351, 25717, 'twenty-five thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(352, 69374, 'sixty-nine thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(353, 2334, 'two thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(354, 99223, 'ninety-nine thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(355, 80823, 'eighty thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(356, 80820, 'eighty thousand eight hundred twenty');\nINSERT INTO t1 VALUES(357, 70859, 'seventy thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(358, 89991, 'eighty-nine thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(359, 35796, 'thirty-five thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(360, 30262, 'thirty thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(361, 96721, 'ninety-six thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(362, 84626, 'eighty-four thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(363, 83672, 'eighty-three thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(364, 84842, 'eighty-four thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(365, 79746, 'seventy-nine thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(366, 30735, 'thirty thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(367, 39894, 'thirty-nine thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(368, 42943, 'forty-two thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(369, 78551, 'seventy-eight thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(370, 22890, 'twenty-two thousand eight hundred ninety');\nINSERT INTO t1 VALUES(371, 26704, 'twenty-six thousand seven hundred four');\nINSERT INTO t1 VALUES(372, 13502, 'thirteen thousand five hundred two');\nINSERT INTO t1 VALUES(373, 52651, 'fifty-two thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(374, 85254, 'eighty-five thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(375, 38872, 'thirty-eight thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(376, 47510, 'forty-seven thousand five hundred ten');\nINSERT INTO t1 VALUES(377, 60713, 'sixty thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(378, 22697, 'twenty-two thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(379, 16563, 'sixteen thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(380, 62479, 'sixty-two thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(381, 16641, 'sixteen thousand six hundred forty-one');\nINSERT INTO t1 VALUES(382, 26910, 'twenty-six thousand nine hundred ten');\nINSERT INTO t1 VALUES(383, 37857, 'thirty-seven thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(384, 26669, 'twenty-six thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(385, 30689, 'thirty thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(386, 85353, 'eighty-five thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(387, 35963, 'thirty-five thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(388, 33507, 'thirty-three thousand five hundred seven');\nINSERT INTO t1 VALUES(389, 17324, 'seventeen thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(390, 72872, 'seventy-two thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(391, 66620, 'sixty-six thousand six hundred twenty');\nINSERT INTO t1 VALUES(392, 76756, 'seventy-six thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(393, 55018, 'fifty-five thousand eighteen');\nINSERT INTO t1 VALUES(394, 51718, 'fifty-one thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(395, 51859, 'fifty-one thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(396, 3087, 'three thousand eighty-seven');\nINSERT INTO t1 VALUES(397, 79425, 'seventy-nine thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(398, 75402, 'seventy-five thousand four hundred two');\nINSERT INTO t1 VALUES(399, 60540, 'sixty thousand five hundred forty');\nINSERT INTO t1 VALUES(400, 39580, 'thirty-nine thousand five hundred eighty');\nINSERT INTO t1 VALUES(401, 25385, 'twenty-five thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(402, 54214, 'fifty-four thousand two hundred fourteen');\nINSERT INTO t1 VALUES(403, 97098, 'ninety-seven thousand ninety-eight');\nINSERT INTO t1 VALUES(404, 16077, 'sixteen thousand seventy-seven');\nINSERT INTO t1 VALUES(405, 58284, 'fifty-eight thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(406, 86168, 'eighty-six thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(407, 7212, 'seven thousand two hundred twelve');\nINSERT INTO t1 VALUES(408, 71834, 'seventy-one thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(409, 96037, 'ninety-six thousand thirty-seven');\nINSERT INTO t1 VALUES(410, 86119, 'eighty-six thousand one hundred nineteen');\nINSERT INTO t1 VALUES(411, 64344, 'sixty-four thousand three hundred forty-four');\nINSERT INTO t1 VALUES(412, 27415, 'twenty-seven thousand four hundred fifteen');\nINSERT INTO t1 VALUES(413, 28712, 'twenty-eight thousand seven hundred twelve');\nINSERT INTO t1 VALUES(414, 76386, 'seventy-six thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(415, 60160, 'sixty thousand one hundred sixty');\nINSERT INTO t1 VALUES(416, 20616, 'twenty thousand six hundred sixteen');\nINSERT INTO t1 VALUES(417, 68129, 'sixty-eight thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(418, 39355, 'thirty-nine thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(419, 13220, 'thirteen thousand two hundred twenty');\nINSERT INTO t1 VALUES(420, 48729, 'forty-eight thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(421, 55172, 'fifty-five thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(422, 11682, 'eleven thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(423, 99481, 'ninety-nine thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(424, 15130, 'fifteen thousand one hundred thirty');\nINSERT INTO t1 VALUES(425, 45552, 'forty-five thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(426, 17206, 'seventeen thousand two hundred six');\nINSERT INTO t1 VALUES(427, 715, 'seven hundred fifteen');\nINSERT INTO t1 VALUES(428, 48541, 'forty-eight thousand five hundred forty-one');\nINSERT INTO t1 VALUES(429, 52774, 'fifty-two thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(430, 55686, 'fifty-five thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(431, 32891, 'thirty-two thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(432, 41219, 'forty-one thousand two hundred nineteen');\nINSERT INTO t1 VALUES(433, 8989, 'eight thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(434, 66011, 'sixty-six thousand eleven');\nINSERT INTO t1 VALUES(435, 81080, 'eighty-one thousand eighty');\nINSERT INTO t1 VALUES(436, 62563, 'sixty-two thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(437, 37710, 'thirty-seven thousand seven hundred ten');\nINSERT INTO t1 VALUES(438, 80535, 'eighty thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(439, 49267, 'forty-nine thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(440, 44842, 'forty-four thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(441, 63606, 'sixty-three thousand six hundred six');\nINSERT INTO t1 VALUES(442, 18279, 'eighteen thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(443, 94697, 'ninety-four thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(444, 38895, 'thirty-eight thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(445, 98821, 'ninety-eight thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(446, 10495, 'ten thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(447, 10575, 'ten thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(448, 43738, 'forty-three thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(449, 73200, 'seventy-three thousand two hundred');\nINSERT INTO t1 VALUES(450, 64676, 'sixty-four thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(451, 40917, 'forty thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(452, 68543, 'sixty-eight thousand five hundred forty-three');\nINSERT INTO t1 VALUES(453, 43751, 'forty-three thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(454, 31377, 'thirty-one thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(455, 31155, 'thirty-one thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(456, 4541, 'four thousand five hundred forty-one');\nINSERT INTO t1 VALUES(457, 47686, 'forty-seven thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(458, 1589, 'one thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(459, 79872, 'seventy-nine thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(460, 72459, 'seventy-two thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(461, 92986, 'ninety-two thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(462, 14387, 'fourteen thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(463, 76933, 'seventy-six thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(464, 75622, 'seventy-five thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(465, 80138, 'eighty thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(466, 91072, 'ninety-one thousand seventy-two');\nINSERT INTO t1 VALUES(467, 92256, 'ninety-two thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(468, 53384, 'fifty-three thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(469, 19663, 'nineteen thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(470, 55777, 'fifty-five thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(471, 19695, 'nineteen thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(472, 51634, 'fifty-one thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(473, 26528, 'twenty-six thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(474, 47875, 'forty-seven thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(475, 9239, 'nine thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(476, 47218, 'forty-seven thousand two hundred eighteen');\nINSERT INTO t1 VALUES(477, 93779, 'ninety-three thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(478, 2660, 'two thousand six hundred sixty');\nINSERT INTO t1 VALUES(479, 97406, 'ninety-seven thousand four hundred six');\nINSERT INTO t1 VALUES(480, 70348, 'seventy thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(481, 66034, 'sixty-six thousand thirty-four');\nINSERT INTO t1 VALUES(482, 37544, 'thirty-seven thousand five hundred forty-four');\nINSERT INTO t1 VALUES(483, 34129, 'thirty-four thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(484, 9952, 'nine thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(485, 65654, 'sixty-five thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(486, 81512, 'eighty-one thousand five hundred twelve');\nINSERT INTO t1 VALUES(487, 54746, 'fifty-four thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(488, 64936, 'sixty-four thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(489, 67581, 'sixty-seven thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(490, 83118, 'eighty-three thousand one hundred eighteen');\nINSERT INTO t1 VALUES(491, 38823, 'thirty-eight thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(492, 7042, 'seven thousand forty-two');\nINSERT INTO t1 VALUES(493, 11522, 'eleven thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(494, 8441, 'eight thousand four hundred forty-one');\nINSERT INTO t1 VALUES(495, 5120, 'five thousand one hundred twenty');\nINSERT INTO t1 VALUES(496, 96272, 'ninety-six thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(497, 53513, 'fifty-three thousand five hundred thirteen');\nINSERT INTO t1 VALUES(498, 33940, 'thirty-three thousand nine hundred forty');\nINSERT INTO t1 VALUES(499, 73734, 'seventy-three thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(500, 16177, 'sixteen thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(501, 86036, 'eighty-six thousand thirty-six');\nINSERT INTO t1 VALUES(502, 30530, 'thirty thousand five hundred thirty');\nINSERT INTO t1 VALUES(503, 16316, 'sixteen thousand three hundred sixteen');\nINSERT INTO t1 VALUES(504, 28560, 'twenty-eight thousand five hundred sixty');\nINSERT INTO t1 VALUES(505, 85929, 'eighty-five thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(506, 18503, 'eighteen thousand five hundred three');\nINSERT INTO t1 VALUES(507, 72281, 'seventy-two thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(508, 58618, 'fifty-eight thousand six hundred eighteen');\nINSERT INTO t1 VALUES(509, 7853, 'seven thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(510, 29964, 'twenty-nine thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(511, 24561, 'twenty-four thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(512, 95025, 'ninety-five thousand twenty-five');\nINSERT INTO t1 VALUES(513, 28269, 'twenty-eight thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(514, 8823, 'eight thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(515, 50469, 'fifty thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(516, 13585, 'thirteen thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(517, 25357, 'twenty-five thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(518, 78916, 'seventy-eight thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(519, 16824, 'sixteen thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(520, 56142, 'fifty-six thousand one hundred forty-two');\nINSERT INTO t1 VALUES(521, 56019, 'fifty-six thousand nineteen');\nINSERT INTO t1 VALUES(522, 43, 'forty-three');\nINSERT INTO t1 VALUES(523, 2397, 'two thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(524, 74672, 'seventy-four thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(525, 23212, 'twenty-three thousand two hundred twelve');\nINSERT INTO t1 VALUES(526, 86249, 'eighty-six thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(527, 13881, 'thirteen thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(528, 82726, 'eighty-two thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(529, 52533, 'fifty-two thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(530, 54536, 'fifty-four thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(531, 56314, 'fifty-six thousand three hundred fourteen');\nINSERT INTO t1 VALUES(532, 26385, 'twenty-six thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(533, 13221, 'thirteen thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(534, 9924, 'nine thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(535, 17334, 'seventeen thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(536, 42403, 'forty-two thousand four hundred three');\nINSERT INTO t1 VALUES(537, 94782, 'ninety-four thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(538, 36047, 'thirty-six thousand forty-seven');\nINSERT INTO t1 VALUES(539, 91977, 'ninety-one thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(540, 85296, 'eighty-five thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(541, 36403, 'thirty-six thousand four hundred three');\nINSERT INTO t1 VALUES(542, 45820, 'forty-five thousand eight hundred twenty');\nINSERT INTO t1 VALUES(543, 53225, 'fifty-three thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(544, 30463, 'thirty thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(545, 44203, 'forty-four thousand two hundred three');\nINSERT INTO t1 VALUES(546, 20268, 'twenty thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(547, 32351, 'thirty-two thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(548, 2830, 'two thousand eight hundred thirty');\nINSERT INTO t1 VALUES(549, 50370, 'fifty thousand three hundred seventy');\nINSERT INTO t1 VALUES(550, 19133, 'nineteen thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(551, 38784, 'thirty-eight thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(552, 97703, 'ninety-seven thousand seven hundred three');\nINSERT INTO t1 VALUES(553, 51086, 'fifty-one thousand eighty-six');\nINSERT INTO t1 VALUES(554, 86768, 'eighty-six thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(555, 11300, 'eleven thousand three hundred');\nINSERT INTO t1 VALUES(556, 46246, 'forty-six thousand two hundred forty-six');\nINSERT INTO t1 VALUES(557, 61115, 'sixty-one thousand one hundred fifteen');\nINSERT INTO t1 VALUES(558, 83157, 'eighty-three thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(559, 6944, 'six thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(560, 44423, 'forty-four thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(561, 76382, 'seventy-six thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(562, 45914, 'forty-five thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(563, 31095, 'thirty-one thousand ninety-five');\nINSERT INTO t1 VALUES(564, 82598, 'eighty-two thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(565, 50503, 'fifty thousand five hundred three');\nINSERT INTO t1 VALUES(566, 73840, 'seventy-three thousand eight hundred forty');\nINSERT INTO t1 VALUES(567, 93509, 'ninety-three thousand five hundred nine');\nINSERT INTO t1 VALUES(568, 14384, 'fourteen thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(569, 78275, 'seventy-eight thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(570, 41077, 'forty-one thousand seventy-seven');\nINSERT INTO t1 VALUES(571, 78723, 'seventy-eight thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(572, 61236, 'sixty-one thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(573, 51876, 'fifty-one thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(574, 34937, 'thirty-four thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(575, 61033, 'sixty-one thousand thirty-three');\nINSERT INTO t1 VALUES(576, 99302, 'ninety-nine thousand three hundred two');\nINSERT INTO t1 VALUES(577, 38302, 'thirty-eight thousand three hundred two');\nINSERT INTO t1 VALUES(578, 72896, 'seventy-two thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(579, 36628, 'thirty-six thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(580, 42704, 'forty-two thousand seven hundred four');\nINSERT INTO t1 VALUES(581, 64936, 'sixty-four thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(582, 89893, 'eighty-nine thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(583, 5897, 'five thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(584, 83645, 'eighty-three thousand six hundred forty-five');\nINSERT INTO t1 VALUES(585, 22698, 'twenty-two thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(586, 45782, 'forty-five thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(587, 69956, 'sixty-nine thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(588, 98635, 'ninety-eight thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(589, 91767, 'ninety-one thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(590, 43906, 'forty-three thousand nine hundred six');\nINSERT INTO t1 VALUES(591, 79011, 'seventy-nine thousand eleven');\nINSERT INTO t1 VALUES(592, 39700, 'thirty-nine thousand seven hundred');\nINSERT INTO t1 VALUES(593, 87166, 'eighty-seven thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(594, 48372, 'forty-eight thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(595, 8964, 'eight thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(596, 40048, 'forty thousand forty-eight');\nINSERT INTO t1 VALUES(597, 46283, 'forty-six thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(598, 40794, 'forty thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(599, 64970, 'sixty-four thousand nine hundred seventy');\nINSERT INTO t1 VALUES(600, 55199, 'fifty-five thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(601, 30775, 'thirty thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(602, 25746, 'twenty-five thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(603, 85247, 'eighty-five thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(604, 38705, 'thirty-eight thousand seven hundred five');\nINSERT INTO t1 VALUES(605, 93520, 'ninety-three thousand five hundred twenty');\nINSERT INTO t1 VALUES(606, 49552, 'forty-nine thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(607, 36015, 'thirty-six thousand fifteen');\nINSERT INTO t1 VALUES(608, 68523, 'sixty-eight thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(609, 38011, 'thirty-eight thousand eleven');\nINSERT INTO t1 VALUES(610, 45485, 'forty-five thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(611, 5878, 'five thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(612, 4661, 'four thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(613, 93542, 'ninety-three thousand five hundred forty-two');\nINSERT INTO t1 VALUES(614, 98403, 'ninety-eight thousand four hundred three');\nINSERT INTO t1 VALUES(615, 72480, 'seventy-two thousand four hundred eighty');\nINSERT INTO t1 VALUES(616, 44651, 'forty-four thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(617, 86431, 'eighty-six thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(618, 64298, 'sixty-four thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(619, 25967, 'twenty-five thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(620, 69815, 'sixty-nine thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(621, 81744, 'eighty-one thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(622, 7391, 'seven thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(623, 82812, 'eighty-two thousand eight hundred twelve');\nINSERT INTO t1 VALUES(624, 74354, 'seventy-four thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(625, 25717, 'twenty-five thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(626, 4708, 'four thousand seven hundred eight');\nINSERT INTO t1 VALUES(627, 68328, 'sixty-eight thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(628, 9503, 'nine thousand five hundred three');\nINSERT INTO t1 VALUES(629, 13169, 'thirteen thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(630, 45277, 'forty-five thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(631, 25998, 'twenty-five thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(632, 79413, 'seventy-nine thousand four hundred thirteen');\nINSERT INTO t1 VALUES(633, 48286, 'forty-eight thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(634, 51960, 'fifty-one thousand nine hundred sixty');\nINSERT INTO t1 VALUES(635, 85401, 'eighty-five thousand four hundred one');\nINSERT INTO t1 VALUES(636, 5474, 'five thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(637, 51779, 'fifty-one thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(638, 79740, 'seventy-nine thousand seven hundred forty');\nINSERT INTO t1 VALUES(639, 21339, 'twenty-one thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(640, 997, 'nine hundred ninety-seven');\nINSERT INTO t1 VALUES(641, 80349, 'eighty thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(642, 96611, 'ninety-six thousand six hundred eleven');\nINSERT INTO t1 VALUES(643, 43066, 'forty-three thousand sixty-six');\nINSERT INTO t1 VALUES(644, 22570, 'twenty-two thousand five hundred seventy');\nINSERT INTO t1 VALUES(645, 80297, 'eighty thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(646, 25962, 'twenty-five thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(647, 2557, 'two thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(648, 79141, 'seventy-nine thousand one hundred forty-one');\nINSERT INTO t1 VALUES(649, 78860, 'seventy-eight thousand eight hundred sixty');\nINSERT INTO t1 VALUES(650, 91460, 'ninety-one thousand four hundred sixty');\nINSERT INTO t1 VALUES(651, 83788, 'eighty-three thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(652, 52289, 'fifty-two thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(653, 59404, 'fifty-nine thousand four hundred four');\nINSERT INTO t1 VALUES(654, 71309, 'seventy-one thousand three hundred nine');\nINSERT INTO t1 VALUES(655, 50204, 'fifty thousand two hundred four');\nINSERT INTO t1 VALUES(656, 4763, 'four thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(657, 29232, 'twenty-nine thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(658, 89333, 'eighty-nine thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(659, 64784, 'sixty-four thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(660, 49553, 'forty-nine thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(661, 90976, 'ninety thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(662, 83265, 'eighty-three thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(663, 25572, 'twenty-five thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(664, 24938, 'twenty-four thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(665, 13432, 'thirteen thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(666, 34300, 'thirty-four thousand three hundred');\nINSERT INTO t1 VALUES(667, 33811, 'thirty-three thousand eight hundred eleven');\nINSERT INTO t1 VALUES(668, 50937, 'fifty thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(669, 74146, 'seventy-four thousand one hundred forty-six');\nINSERT INTO t1 VALUES(670, 69446, 'sixty-nine thousand four hundred forty-six');\nINSERT INTO t1 VALUES(671, 80654, 'eighty thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(672, 96777, 'ninety-six thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(673, 18023, 'eighteen thousand twenty-three');\nINSERT INTO t1 VALUES(674, 92904, 'ninety-two thousand nine hundred four');\nINSERT INTO t1 VALUES(675, 59712, 'fifty-nine thousand seven hundred twelve');\nINSERT INTO t1 VALUES(676, 36037, 'thirty-six thousand thirty-seven');\nINSERT INTO t1 VALUES(677, 48997, 'forty-eight thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(678, 60218, 'sixty thousand two hundred eighteen');\nINSERT INTO t1 VALUES(679, 82108, 'eighty-two thousand one hundred eight');\nINSERT INTO t1 VALUES(680, 69426, 'sixty-nine thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(681, 61325, 'sixty-one thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(682, 11668, 'eleven thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(683, 69572, 'sixty-nine thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(684, 8565, 'eight thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(685, 27600, 'twenty-seven thousand six hundred');\nINSERT INTO t1 VALUES(686, 45325, 'forty-five thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(687, 39031, 'thirty-nine thousand thirty-one');\nINSERT INTO t1 VALUES(688, 63396, 'sixty-three thousand three hundred ninety-six');\nINSERT INTO t1 VALUES(689, 67243, 'sixty-seven thousand two hundred forty-three');\nINSERT INTO t1 VALUES(690, 64709, 'sixty-four thousand seven hundred nine');\nINSERT INTO t1 VALUES(691, 16998, 'sixteen thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(692, 8963, 'eight thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(693, 13668, 'thirteen thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(694, 67794, 'sixty-seven thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(695, 8764, 'eight thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(696, 13190, 'thirteen thousand one hundred ninety');\nINSERT INTO t1 VALUES(697, 40131, 'forty thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(698, 51903, 'fifty-one thousand nine hundred three');\nINSERT INTO t1 VALUES(699, 36798, 'thirty-six thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(700, 72372, 'seventy-two thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(701, 14647, 'fourteen thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(702, 68723, 'sixty-eight thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(703, 35989, 'thirty-five thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(704, 90077, 'ninety thousand seventy-seven');\nINSERT INTO t1 VALUES(705, 38750, 'thirty-eight thousand seven hundred fifty');\nINSERT INTO t1 VALUES(706, 98516, 'ninety-eight thousand five hundred sixteen');\nINSERT INTO t1 VALUES(707, 57950, 'fifty-seven thousand nine hundred fifty');\nINSERT INTO t1 VALUES(708, 21024, 'twenty-one thousand twenty-four');\nINSERT INTO t1 VALUES(709, 86474, 'eighty-six thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(710, 93968, 'ninety-three thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(711, 55883, 'fifty-five thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(712, 93848, 'ninety-three thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(713, 34206, 'thirty-four thousand two hundred six');\nINSERT INTO t1 VALUES(714, 46397, 'forty-six thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(715, 59959, 'fifty-nine thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(716, 12097, 'twelve thousand ninety-seven');\nINSERT INTO t1 VALUES(717, 7797, 'seven thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(718, 70674, 'seventy thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(719, 85402, 'eighty-five thousand four hundred two');\nINSERT INTO t1 VALUES(720, 96486, 'ninety-six thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(721, 32790, 'thirty-two thousand seven hundred ninety');\nINSERT INTO t1 VALUES(722, 98920, 'ninety-eight thousand nine hundred twenty');\nINSERT INTO t1 VALUES(723, 35357, 'thirty-five thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(724, 41402, 'forty-one thousand four hundred two');\nINSERT INTO t1 VALUES(725, 34161, 'thirty-four thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(726, 30762, 'thirty thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(727, 32850, 'thirty-two thousand eight hundred fifty');\nINSERT INTO t1 VALUES(728, 646, 'six hundred forty-six');\nINSERT INTO t1 VALUES(729, 13543, 'thirteen thousand five hundred forty-three');\nINSERT INTO t1 VALUES(730, 46958, 'forty-six thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(731, 33021, 'thirty-three thousand twenty-one');\nINSERT INTO t1 VALUES(732, 66196, 'sixty-six thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(733, 13354, 'thirteen thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(734, 10676, 'ten thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(735, 73514, 'seventy-three thousand five hundred fourteen');\nINSERT INTO t1 VALUES(736, 92566, 'ninety-two thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(737, 64703, 'sixty-four thousand seven hundred three');\nINSERT INTO t1 VALUES(738, 47991, 'forty-seven thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(739, 27244, 'twenty-seven thousand two hundred forty-four');\nINSERT INTO t1 VALUES(740, 64520, 'sixty-four thousand five hundred twenty');\nINSERT INTO t1 VALUES(741, 69103, 'sixty-nine thousand one hundred three');\nINSERT INTO t1 VALUES(742, 65450, 'sixty-five thousand four hundred fifty');\nINSERT INTO t1 VALUES(743, 16922, 'sixteen thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(744, 17346, 'seventeen thousand three hundred forty-six');\nINSERT INTO t1 VALUES(745, 71356, 'seventy-one thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(746, 13993, 'thirteen thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(747, 93096, 'ninety-three thousand ninety-six');\nINSERT INTO t1 VALUES(748, 83864, 'eighty-three thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(749, 56082, 'fifty-six thousand eighty-two');\nINSERT INTO t1 VALUES(750, 71357, 'seventy-one thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(751, 20820, 'twenty thousand eight hundred twenty');\nINSERT INTO t1 VALUES(752, 35212, 'thirty-five thousand two hundred twelve');\nINSERT INTO t1 VALUES(753, 36869, 'thirty-six thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(754, 98308, 'ninety-eight thousand three hundred eight');\nINSERT INTO t1 VALUES(755, 28534, 'twenty-eight thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(756, 13449, 'thirteen thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(757, 50790, 'fifty thousand seven hundred ninety');\nINSERT INTO t1 VALUES(758, 72079, 'seventy-two thousand seventy-nine');\nINSERT INTO t1 VALUES(759, 50542, 'fifty thousand five hundred forty-two');\nINSERT INTO t1 VALUES(760, 93906, 'ninety-three thousand nine hundred six');\nINSERT INTO t1 VALUES(761, 40114, 'forty thousand one hundred fourteen');\nINSERT INTO t1 VALUES(762, 7438, 'seven thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(763, 35356, 'thirty-five thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(764, 5235, 'five thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(765, 89549, 'eighty-nine thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(766, 8986, 'eight thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(767, 1744, 'one thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(768, 52593, 'fifty-two thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(769, 60964, 'sixty thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(770, 33872, 'thirty-three thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(771, 38564, 'thirty-eight thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(772, 51829, 'fifty-one thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(773, 45497, 'forty-five thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(774, 39019, 'thirty-nine thousand nineteen');\nINSERT INTO t1 VALUES(775, 70227, 'seventy thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(776, 60554, 'sixty thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(777, 61434, 'sixty-one thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(778, 73964, 'seventy-three thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(779, 97432, 'ninety-seven thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(780, 36245, 'thirty-six thousand two hundred forty-five');\nINSERT INTO t1 VALUES(781, 56133, 'fifty-six thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(782, 92245, 'ninety-two thousand two hundred forty-five');\nINSERT INTO t1 VALUES(783, 53788, 'fifty-three thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(784, 50188, 'fifty thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(785, 56809, 'fifty-six thousand eight hundred nine');\nINSERT INTO t1 VALUES(786, 36260, 'thirty-six thousand two hundred sixty');\nINSERT INTO t1 VALUES(787, 95979, 'ninety-five thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(788, 9796, 'nine thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(789, 44337, 'forty-four thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(790, 66951, 'sixty-six thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(791, 65628, 'sixty-five thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(792, 25087, 'twenty-five thousand eighty-seven');\nINSERT INTO t1 VALUES(793, 81266, 'eighty-one thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(794, 39828, 'thirty-nine thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(795, 23770, 'twenty-three thousand seven hundred seventy');\nINSERT INTO t1 VALUES(796, 53435, 'fifty-three thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(797, 7766, 'seven thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(798, 32226, 'thirty-two thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(799, 974, 'nine hundred seventy-four');\nINSERT INTO t1 VALUES(800, 1063, 'one thousand sixty-three');\nINSERT INTO t1 VALUES(801, 9700, 'nine thousand seven hundred');\nINSERT INTO t1 VALUES(802, 49439, 'forty-nine thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(803, 6791, 'six thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(804, 17430, 'seventeen thousand four hundred thirty');\nINSERT INTO t1 VALUES(805, 19477, 'nineteen thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(806, 53160, 'fifty-three thousand one hundred sixty');\nINSERT INTO t1 VALUES(807, 73531, 'seventy-three thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(808, 41027, 'forty-one thousand twenty-seven');\nINSERT INTO t1 VALUES(809, 3556, 'three thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(810, 3779, 'three thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(811, 81233, 'eighty-one thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(812, 28200, 'twenty-eight thousand two hundred');\nINSERT INTO t1 VALUES(813, 34574, 'thirty-four thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(814, 21899, 'twenty-one thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(815, 26123, 'twenty-six thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(816, 54056, 'fifty-four thousand fifty-six');\nINSERT INTO t1 VALUES(817, 51709, 'fifty-one thousand seven hundred nine');\nINSERT INTO t1 VALUES(818, 83040, 'eighty-three thousand forty');\nINSERT INTO t1 VALUES(819, 51595, 'fifty-one thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(820, 47567, 'forty-seven thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(821, 79810, 'seventy-nine thousand eight hundred ten');\nINSERT INTO t1 VALUES(822, 95156, 'ninety-five thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(823, 21070, 'twenty-one thousand seventy');\nINSERT INTO t1 VALUES(824, 21005, 'twenty-one thousand five');\nINSERT INTO t1 VALUES(825, 62049, 'sixty-two thousand forty-nine');\nINSERT INTO t1 VALUES(826, 40500, 'forty thousand five hundred');\nINSERT INTO t1 VALUES(827, 8986, 'eight thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(828, 97050, 'ninety-seven thousand fifty');\nINSERT INTO t1 VALUES(829, 1342, 'one thousand three hundred forty-two');\nINSERT INTO t1 VALUES(830, 70601, 'seventy thousand six hundred one');\nINSERT INTO t1 VALUES(831, 47967, 'forty-seven thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(832, 17857, 'seventeen thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(833, 29476, 'twenty-nine thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(834, 71793, 'seventy-one thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(835, 90082, 'ninety thousand eighty-two');\nINSERT INTO t1 VALUES(836, 71437, 'seventy-one thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(837, 83075, 'eighty-three thousand seventy-five');\nINSERT INTO t1 VALUES(838, 76758, 'seventy-six thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(839, 64646, 'sixty-four thousand six hundred forty-six');\nINSERT INTO t1 VALUES(840, 3252, 'three thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(841, 40949, 'forty thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(842, 74652, 'seventy-four thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(843, 82824, 'eighty-two thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(844, 25339, 'twenty-five thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(845, 89079, 'eighty-nine thousand seventy-nine');\nINSERT INTO t1 VALUES(846, 31116, 'thirty-one thousand one hundred sixteen');\nINSERT INTO t1 VALUES(847, 60449, 'sixty thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(848, 54968, 'fifty-four thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(849, 82844, 'eighty-two thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(850, 51994, 'fifty-one thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(851, 92512, 'ninety-two thousand five hundred twelve');\nINSERT INTO t1 VALUES(852, 84151, 'eighty-four thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(853, 94764, 'ninety-four thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(854, 1566, 'one thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(855, 40287, 'forty thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(856, 87550, 'eighty-seven thousand five hundred fifty');\nINSERT INTO t1 VALUES(857, 85822, 'eighty-five thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(858, 50252, 'fifty thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(859, 26462, 'twenty-six thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(860, 43816, 'forty-three thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(861, 4236, 'four thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(862, 46969, 'forty-six thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(863, 10906, 'ten thousand nine hundred six');\nINSERT INTO t1 VALUES(864, 59491, 'fifty-nine thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(865, 41550, 'forty-one thousand five hundred fifty');\nINSERT INTO t1 VALUES(866, 6385, 'six thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(867, 45666, 'forty-five thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(868, 31625, 'thirty-one thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(869, 75575, 'seventy-five thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(870, 74483, 'seventy-four thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(871, 65764, 'sixty-five thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(872, 67932, 'sixty-seven thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(873, 48500, 'forty-eight thousand five hundred');\nINSERT INTO t1 VALUES(874, 79822, 'seventy-nine thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(875, 93046, 'ninety-three thousand forty-six');\nINSERT INTO t1 VALUES(876, 59820, 'fifty-nine thousand eight hundred twenty');\nINSERT INTO t1 VALUES(877, 95523, 'ninety-five thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(878, 87558, 'eighty-seven thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(879, 16264, 'sixteen thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(880, 82456, 'eighty-two thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(881, 32313, 'thirty-two thousand three hundred thirteen');\nINSERT INTO t1 VALUES(882, 43641, 'forty-three thousand six hundred forty-one');\nINSERT INTO t1 VALUES(883, 79366, 'seventy-nine thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(884, 414, 'four hundred fourteen');\nINSERT INTO t1 VALUES(885, 24604, 'twenty-four thousand six hundred four');\nINSERT INTO t1 VALUES(886, 58904, 'fifty-eight thousand nine hundred four');\nINSERT INTO t1 VALUES(887, 55867, 'fifty-five thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(888, 38123, 'thirty-eight thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(889, 69259, 'sixty-nine thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(890, 16693, 'sixteen thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(891, 41404, 'forty-one thousand four hundred four');\nINSERT INTO t1 VALUES(892, 51409, 'fifty-one thousand four hundred nine');\nINSERT INTO t1 VALUES(893, 48734, 'forty-eight thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(894, 14495, 'fourteen thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(895, 40190, 'forty thousand one hundred ninety');\nINSERT INTO t1 VALUES(896, 28596, 'twenty-eight thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(897, 75923, 'seventy-five thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(898, 40860, 'forty thousand eight hundred sixty');\nINSERT INTO t1 VALUES(899, 88234, 'eighty-eight thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(900, 9134, 'nine thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(901, 68814, 'sixty-eight thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(902, 57773, 'fifty-seven thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(903, 7138, 'seven thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(904, 98866, 'ninety-eight thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(905, 1995, 'one thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(906, 45812, 'forty-five thousand eight hundred twelve');\nINSERT INTO t1 VALUES(907, 89770, 'eighty-nine thousand seven hundred seventy');\nINSERT INTO t1 VALUES(908, 67915, 'sixty-seven thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(909, 84256, 'eighty-four thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(910, 76864, 'seventy-six thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(911, 63411, 'sixty-three thousand four hundred eleven');\nINSERT INTO t1 VALUES(912, 23383, 'twenty-three thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(913, 7053, 'seven thousand fifty-three');\nINSERT INTO t1 VALUES(914, 9991, 'nine thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(915, 6123, 'six thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(916, 66232, 'sixty-six thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(917, 82454, 'eighty-two thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(918, 34767, 'thirty-four thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(919, 56716, 'fifty-six thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(920, 7389, 'seven thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(921, 4115, 'four thousand one hundred fifteen');\nINSERT INTO t1 VALUES(922, 66506, 'sixty-six thousand five hundred six');\nINSERT INTO t1 VALUES(923, 13775, 'thirteen thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(924, 95452, 'ninety-five thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(925, 34817, 'thirty-four thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(926, 30686, 'thirty thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(927, 84709, 'eighty-four thousand seven hundred nine');\nINSERT INTO t1 VALUES(928, 69884, 'sixty-nine thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(929, 71066, 'seventy-one thousand sixty-six');\nINSERT INTO t1 VALUES(930, 33781, 'thirty-three thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(931, 4034, 'four thousand thirty-four');\nINSERT INTO t1 VALUES(932, 95633, 'ninety-five thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(933, 62549, 'sixty-two thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(934, 68079, 'sixty-eight thousand seventy-nine');\nINSERT INTO t1 VALUES(935, 65589, 'sixty-five thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(936, 80329, 'eighty thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(937, 20603, 'twenty thousand six hundred three');\nINSERT INTO t1 VALUES(938, 27765, 'twenty-seven thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(939, 96323, 'ninety-six thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(940, 31742, 'thirty-one thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(941, 90777, 'ninety thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(942, 57423, 'fifty-seven thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(943, 10588, 'ten thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(944, 47411, 'forty-seven thousand four hundred eleven');\nINSERT INTO t1 VALUES(945, 42419, 'forty-two thousand four hundred nineteen');\nINSERT INTO t1 VALUES(946, 57111, 'fifty-seven thousand one hundred eleven');\nINSERT INTO t1 VALUES(947, 27962, 'twenty-seven thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(948, 78437, 'seventy-eight thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(949, 40388, 'forty thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(950, 90827, 'ninety thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(951, 82664, 'eighty-two thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(952, 54684, 'fifty-four thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(953, 67228, 'sixty-seven thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(954, 1266, 'one thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(955, 1305, 'one thousand three hundred five');\nINSERT INTO t1 VALUES(956, 61947, 'sixty-one thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(957, 69565, 'sixty-nine thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(958, 81703, 'eighty-one thousand seven hundred three');\nINSERT INTO t1 VALUES(959, 8201, 'eight thousand two hundred one');\nINSERT INTO t1 VALUES(960, 13521, 'thirteen thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(961, 10637, 'ten thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(962, 84495, 'eighty-four thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(963, 72043, 'seventy-two thousand forty-three');\nINSERT INTO t1 VALUES(964, 10124, 'ten thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(965, 9875, 'nine thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(966, 49117, 'forty-nine thousand one hundred seventeen');\nINSERT INTO t1 VALUES(967, 59177, 'fifty-nine thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(968, 53854, 'fifty-three thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(969, 38398, 'thirty-eight thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(970, 32550, 'thirty-two thousand five hundred fifty');\nINSERT INTO t1 VALUES(971, 79118, 'seventy-nine thousand one hundred eighteen');\nINSERT INTO t1 VALUES(972, 76090, 'seventy-six thousand ninety');\nINSERT INTO t1 VALUES(973, 75142, 'seventy-five thousand one hundred forty-two');\nINSERT INTO t1 VALUES(974, 43773, 'forty-three thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(975, 66901, 'sixty-six thousand nine hundred one');\nINSERT INTO t1 VALUES(976, 94257, 'ninety-four thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(977, 39347, 'thirty-nine thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(978, 77594, 'seventy-seven thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(979, 33525, 'thirty-three thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(980, 79212, 'seventy-nine thousand two hundred twelve');\nINSERT INTO t1 VALUES(981, 1805, 'one thousand eight hundred five');\nINSERT INTO t1 VALUES(982, 14938, 'fourteen thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(983, 57138, 'fifty-seven thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(984, 34579, 'thirty-four thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(985, 17027, 'seventeen thousand twenty-seven');\nINSERT INTO t1 VALUES(986, 22915, 'twenty-two thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(987, 97214, 'ninety-seven thousand two hundred fourteen');\nINSERT INTO t1 VALUES(988, 10395, 'ten thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(989, 98923, 'ninety-eight thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(990, 7613, 'seven thousand six hundred thirteen');\nINSERT INTO t1 VALUES(991, 99863, 'ninety-nine thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(992, 51952, 'fifty-one thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(993, 4740, 'four thousand seven hundred forty');\nINSERT INTO t1 VALUES(994, 67441, 'sixty-seven thousand four hundred forty-one');\nINSERT INTO t1 VALUES(995, 90701, 'ninety thousand seven hundred one');\nINSERT INTO t1 VALUES(996, 44195, 'forty-four thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(997, 84299, 'eighty-four thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(998, 53113, 'fifty-three thousand one hundred thirteen');\nINSERT INTO t1 VALUES(999, 89010, 'eighty-nine thousand ten');\nINSERT INTO t1 VALUES(1000, 93931, 'ninety-three thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(1001, 75968, 'seventy-five thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(1002, 5182, 'five thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(1003, 3994, 'three thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(1004, 65305, 'sixty-five thousand three hundred five');\nINSERT INTO t1 VALUES(1005, 10401, 'ten thousand four hundred one');\nINSERT INTO t1 VALUES(1006, 60562, 'sixty thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(1007, 64022, 'sixty-four thousand twenty-two');\nINSERT INTO t1 VALUES(1008, 75893, 'seventy-five thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(1009, 60988, 'sixty thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(1010, 31092, 'thirty-one thousand ninety-two');\nINSERT INTO t1 VALUES(1011, 80331, 'eighty thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(1012, 42566, 'forty-two thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(1013, 90884, 'ninety thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(1014, 82790, 'eighty-two thousand seven hundred ninety');\nINSERT INTO t1 VALUES(1015, 5621, 'five thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(1016, 57010, 'fifty-seven thousand ten');\nINSERT INTO t1 VALUES(1017, 28824, 'twenty-eight thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(1018, 87748, 'eighty-seven thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(1019, 87131, 'eighty-seven thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(1020, 3287, 'three thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(1021, 62892, 'sixty-two thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(1022, 29267, 'twenty-nine thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(1023, 15422, 'fifteen thousand four hundred twenty-two');\nINSERT INTO t1 VALUES(1024, 22232, 'twenty-two thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(1025, 96723, 'ninety-six thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(1026, 17235, 'seventeen thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(1027, 12560, 'twelve thousand five hundred sixty');\nINSERT INTO t1 VALUES(1028, 21851, 'twenty-one thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(1029, 41401, 'forty-one thousand four hundred one');\nINSERT INTO t1 VALUES(1030, 67863, 'sixty-seven thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(1031, 41683, 'forty-one thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(1032, 28988, 'twenty-eight thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(1033, 89966, 'eighty-nine thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(1034, 83669, 'eighty-three thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(1035, 70889, 'seventy thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(1036, 58793, 'fifty-eight thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(1037, 63210, 'sixty-three thousand two hundred ten');\nINSERT INTO t1 VALUES(1038, 77126, 'seventy-seven thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(1039, 91350, 'ninety-one thousand three hundred fifty');\nINSERT INTO t1 VALUES(1040, 28055, 'twenty-eight thousand fifty-five');\nINSERT INTO t1 VALUES(1041, 76934, 'seventy-six thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(1042, 38451, 'thirty-eight thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(1043, 83721, 'eighty-three thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(1044, 25962, 'twenty-five thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(1045, 12028, 'twelve thousand twenty-eight');\nINSERT INTO t1 VALUES(1046, 23245, 'twenty-three thousand two hundred forty-five');\nINSERT INTO t1 VALUES(1047, 95866, 'ninety-five thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(1048, 87645, 'eighty-seven thousand six hundred forty-five');\nINSERT INTO t1 VALUES(1049, 64286, 'sixty-four thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(1050, 73068, 'seventy-three thousand sixty-eight');\nINSERT INTO t1 VALUES(1051, 55171, 'fifty-five thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(1052, 62047, 'sixty-two thousand forty-seven');\nINSERT INTO t1 VALUES(1053, 51973, 'fifty-one thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(1054, 76047, 'seventy-six thousand forty-seven');\nINSERT INTO t1 VALUES(1055, 65795, 'sixty-five thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(1056, 56032, 'fifty-six thousand thirty-two');\nINSERT INTO t1 VALUES(1057, 18604, 'eighteen thousand six hundred four');\nINSERT INTO t1 VALUES(1058, 10981, 'ten thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(1059, 83747, 'eighty-three thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(1060, 346, 'three hundred forty-six');\nINSERT INTO t1 VALUES(1061, 50469, 'fifty thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(1062, 99539, 'ninety-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(1063, 18327, 'eighteen thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(1064, 349, 'three hundred forty-nine');\nINSERT INTO t1 VALUES(1065, 83768, 'eighty-three thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(1066, 66974, 'sixty-six thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(1067, 38925, 'thirty-eight thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(1068, 98314, 'ninety-eight thousand three hundred fourteen');\nINSERT INTO t1 VALUES(1069, 34266, 'thirty-four thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(1070, 35612, 'thirty-five thousand six hundred twelve');\nINSERT INTO t1 VALUES(1071, 73180, 'seventy-three thousand one hundred eighty');\nINSERT INTO t1 VALUES(1072, 41930, 'forty-one thousand nine hundred thirty');\nINSERT INTO t1 VALUES(1073, 98465, 'ninety-eight thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(1074, 72506, 'seventy-two thousand five hundred six');\nINSERT INTO t1 VALUES(1075, 42168, 'forty-two thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(1076, 75024, 'seventy-five thousand twenty-four');\nINSERT INTO t1 VALUES(1077, 50490, 'fifty thousand four hundred ninety');\nINSERT INTO t1 VALUES(1078, 23332, 'twenty-three thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(1079, 11046, 'eleven thousand forty-six');\nINSERT INTO t1 VALUES(1080, 95391, 'ninety-five thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(1081, 75055, 'seventy-five thousand fifty-five');\nINSERT INTO t1 VALUES(1082, 39666, 'thirty-nine thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(1083, 48828, 'forty-eight thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(1084, 77965, 'seventy-seven thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(1085, 21286, 'twenty-one thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(1086, 92539, 'ninety-two thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(1087, 64635, 'sixty-four thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(1088, 47441, 'forty-seven thousand four hundred forty-one');\nINSERT INTO t1 VALUES(1089, 64320, 'sixty-four thousand three hundred twenty');\nINSERT INTO t1 VALUES(1090, 18676, 'eighteen thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(1091, 64990, 'sixty-four thousand nine hundred ninety');\nINSERT INTO t1 VALUES(1092, 289, 'two hundred eighty-nine');\nINSERT INTO t1 VALUES(1093, 54512, 'fifty-four thousand five hundred twelve');\nINSERT INTO t1 VALUES(1094, 63137, 'sixty-three thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(1095, 78129, 'seventy-eight thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(1096, 27982, 'twenty-seven thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(1097, 12938, 'twelve thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(1098, 9803, 'nine thousand eight hundred three');\nINSERT INTO t1 VALUES(1099, 68481, 'sixty-eight thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(1100, 67614, 'sixty-seven thousand six hundred fourteen');\nINSERT INTO t1 VALUES(1101, 34307, 'thirty-four thousand three hundred seven');\nINSERT INTO t1 VALUES(1102, 64936, 'sixty-four thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(1103, 82314, 'eighty-two thousand three hundred fourteen');\nINSERT INTO t1 VALUES(1104, 98999, 'ninety-eight thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(1105, 64637, 'sixty-four thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(1106, 70711, 'seventy thousand seven hundred eleven');\nINSERT INTO t1 VALUES(1107, 86613, 'eighty-six thousand six hundred thirteen');\nINSERT INTO t1 VALUES(1108, 30688, 'thirty thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(1109, 21158, 'twenty-one thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(1110, 16295, 'sixteen thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(1111, 79161, 'seventy-nine thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(1112, 30757, 'thirty thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(1113, 53063, 'fifty-three thousand sixty-three');\nINSERT INTO t1 VALUES(1114, 78104, 'seventy-eight thousand one hundred four');\nINSERT INTO t1 VALUES(1115, 47919, 'forty-seven thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(1116, 17366, 'seventeen thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(1117, 32565, 'thirty-two thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(1118, 67647, 'sixty-seven thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(1119, 85455, 'eighty-five thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(1120, 54565, 'fifty-four thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(1121, 45993, 'forty-five thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(1122, 71129, 'seventy-one thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(1123, 52005, 'fifty-two thousand five');\nINSERT INTO t1 VALUES(1124, 56636, 'fifty-six thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(1125, 14262, 'fourteen thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(1126, 63328, 'sixty-three thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(1127, 39842, 'thirty-nine thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(1128, 30389, 'thirty thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(1129, 41368, 'forty-one thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(1130, 76613, 'seventy-six thousand six hundred thirteen');\nINSERT INTO t1 VALUES(1131, 16393, 'sixteen thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(1132, 87529, 'eighty-seven thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(1133, 727, 'seven hundred twenty-seven');\nINSERT INTO t1 VALUES(1134, 2055, 'two thousand fifty-five');\nINSERT INTO t1 VALUES(1135, 14036, 'fourteen thousand thirty-six');\nINSERT INTO t1 VALUES(1136, 69027, 'sixty-nine thousand twenty-seven');\nINSERT INTO t1 VALUES(1137, 82423, 'eighty-two thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(1138, 25443, 'twenty-five thousand four hundred forty-three');\nINSERT INTO t1 VALUES(1139, 90311, 'ninety thousand three hundred eleven');\nINSERT INTO t1 VALUES(1140, 25146, 'twenty-five thousand one hundred forty-six');\nINSERT INTO t1 VALUES(1141, 33067, 'thirty-three thousand sixty-seven');\nINSERT INTO t1 VALUES(1142, 51121, 'fifty-one thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(1143, 63335, 'sixty-three thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(1144, 17321, 'seventeen thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(1145, 54956, 'fifty-four thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(1146, 7730, 'seven thousand seven hundred thirty');\nINSERT INTO t1 VALUES(1147, 85084, 'eighty-five thousand eighty-four');\nINSERT INTO t1 VALUES(1148, 86686, 'eighty-six thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(1149, 38280, 'thirty-eight thousand two hundred eighty');\nINSERT INTO t1 VALUES(1150, 56373, 'fifty-six thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(1151, 40082, 'forty thousand eighty-two');\nINSERT INTO t1 VALUES(1152, 6940, 'six thousand nine hundred forty');\nINSERT INTO t1 VALUES(1153, 223, 'two hundred twenty-three');\nINSERT INTO t1 VALUES(1154, 21513, 'twenty-one thousand five hundred thirteen');\nINSERT INTO t1 VALUES(1155, 15087, 'fifteen thousand eighty-seven');\nINSERT INTO t1 VALUES(1156, 8921, 'eight thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(1157, 46702, 'forty-six thousand seven hundred two');\nINSERT INTO t1 VALUES(1158, 48921, 'forty-eight thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(1159, 41111, 'forty-one thousand one hundred eleven');\nINSERT INTO t1 VALUES(1160, 74326, 'seventy-four thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(1161, 93401, 'ninety-three thousand four hundred one');\nINSERT INTO t1 VALUES(1162, 17272, 'seventeen thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(1163, 19175, 'nineteen thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(1164, 54120, 'fifty-four thousand one hundred twenty');\nINSERT INTO t1 VALUES(1165, 57677, 'fifty-seven thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(1166, 68915, 'sixty-eight thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(1167, 67434, 'sixty-seven thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(1168, 33753, 'thirty-three thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(1169, 35123, 'thirty-five thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(1170, 5643, 'five thousand six hundred forty-three');\nINSERT INTO t1 VALUES(1171, 27402, 'twenty-seven thousand four hundred two');\nINSERT INTO t1 VALUES(1172, 84802, 'eighty-four thousand eight hundred two');\nINSERT INTO t1 VALUES(1173, 38809, 'thirty-eight thousand eight hundred nine');\nINSERT INTO t1 VALUES(1174, 20172, 'twenty thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(1175, 39854, 'thirty-nine thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(1176, 44163, 'forty-four thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(1177, 53204, 'fifty-three thousand two hundred four');\nINSERT INTO t1 VALUES(1178, 76636, 'seventy-six thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(1179, 27192, 'twenty-seven thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(1180, 27381, 'twenty-seven thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(1181, 10210, 'ten thousand two hundred ten');\nINSERT INTO t1 VALUES(1182, 25796, 'twenty-five thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(1183, 87185, 'eighty-seven thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(1184, 36170, 'thirty-six thousand one hundred seventy');\nINSERT INTO t1 VALUES(1185, 41295, 'forty-one thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(1186, 32682, 'thirty-two thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(1187, 25693, 'twenty-five thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(1188, 37767, 'thirty-seven thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(1189, 55266, 'fifty-five thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(1190, 24371, 'twenty-four thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(1191, 53697, 'fifty-three thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(1192, 78967, 'seventy-eight thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(1193, 58686, 'fifty-eight thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(1194, 18073, 'eighteen thousand seventy-three');\nINSERT INTO t1 VALUES(1195, 89438, 'eighty-nine thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(1196, 92679, 'ninety-two thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(1197, 80583, 'eighty thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(1198, 80414, 'eighty thousand four hundred fourteen');\nINSERT INTO t1 VALUES(1199, 74413, 'seventy-four thousand four hundred thirteen');\nINSERT INTO t1 VALUES(1200, 20122, 'twenty thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(1201, 90855, 'ninety thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(1202, 63311, 'sixty-three thousand three hundred eleven');\nINSERT INTO t1 VALUES(1203, 81256, 'eighty-one thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(1204, 19169, 'nineteen thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(1205, 84675, 'eighty-four thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(1206, 58373, 'fifty-eight thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(1207, 98068, 'ninety-eight thousand sixty-eight');\nINSERT INTO t1 VALUES(1208, 76448, 'seventy-six thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(1209, 32473, 'thirty-two thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(1210, 36681, 'thirty-six thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(1211, 26755, 'twenty-six thousand seven hundred fifty-five');\nINSERT INTO t1 VALUES(1212, 82448, 'eighty-two thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(1213, 76199, 'seventy-six thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(1214, 7197, 'seven thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(1215, 81504, 'eighty-one thousand five hundred four');\nINSERT INTO t1 VALUES(1216, 46182, 'forty-six thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(1217, 15628, 'fifteen thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(1218, 34195, 'thirty-four thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(1219, 5076, 'five thousand seventy-six');\nINSERT INTO t1 VALUES(1220, 57253, 'fifty-seven thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(1221, 59468, 'fifty-nine thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(1222, 78458, 'seventy-eight thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(1223, 73497, 'seventy-three thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(1224, 54924, 'fifty-four thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(1225, 74790, 'seventy-four thousand seven hundred ninety');\nINSERT INTO t1 VALUES(1226, 63128, 'sixty-three thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(1227, 28389, 'twenty-eight thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(1228, 27746, 'twenty-seven thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(1229, 28365, 'twenty-eight thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(1230, 44899, 'forty-four thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(1231, 61726, 'sixty-one thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(1232, 37850, 'thirty-seven thousand eight hundred fifty');\nINSERT INTO t1 VALUES(1233, 56293, 'fifty-six thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(1234, 33646, 'thirty-three thousand six hundred forty-six');\nINSERT INTO t1 VALUES(1235, 98212, 'ninety-eight thousand two hundred twelve');\nINSERT INTO t1 VALUES(1236, 60961, 'sixty thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(1237, 62851, 'sixty-two thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(1238, 96187, 'ninety-six thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(1239, 65862, 'sixty-five thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(1240, 28055, 'twenty-eight thousand fifty-five');\nINSERT INTO t1 VALUES(1241, 23400, 'twenty-three thousand four hundred');\nINSERT INTO t1 VALUES(1242, 55366, 'fifty-five thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(1243, 88651, 'eighty-eight thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(1244, 32724, 'thirty-two thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(1245, 905, 'nine hundred five');\nINSERT INTO t1 VALUES(1246, 21749, 'twenty-one thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(1247, 79024, 'seventy-nine thousand twenty-four');\nINSERT INTO t1 VALUES(1248, 33250, 'thirty-three thousand two hundred fifty');\nINSERT INTO t1 VALUES(1249, 71822, 'seventy-one thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(1250, 32012, 'thirty-two thousand twelve');\nINSERT INTO t1 VALUES(1251, 43030, 'forty-three thousand thirty');\nINSERT INTO t1 VALUES(1252, 84637, 'eighty-four thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(1253, 48203, 'forty-eight thousand two hundred three');\nINSERT INTO t1 VALUES(1254, 80495, 'eighty thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(1255, 45881, 'forty-five thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(1256, 23387, 'twenty-three thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(1257, 63538, 'sixty-three thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(1258, 14902, 'fourteen thousand nine hundred two');\nINSERT INTO t1 VALUES(1259, 71635, 'seventy-one thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(1260, 47196, 'forty-seven thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(1261, 31675, 'thirty-one thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(1262, 45972, 'forty-five thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(1263, 43248, 'forty-three thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(1264, 68219, 'sixty-eight thousand two hundred nineteen');\nINSERT INTO t1 VALUES(1265, 98494, 'ninety-eight thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(1266, 2760, 'two thousand seven hundred sixty');\nINSERT INTO t1 VALUES(1267, 43973, 'forty-three thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(1268, 63102, 'sixty-three thousand one hundred two');\nINSERT INTO t1 VALUES(1269, 14851, 'fourteen thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(1270, 32167, 'thirty-two thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(1271, 62848, 'sixty-two thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(1272, 40008, 'forty thousand eight');\nINSERT INTO t1 VALUES(1273, 99325, 'ninety-nine thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(1274, 38094, 'thirty-eight thousand ninety-four');\nINSERT INTO t1 VALUES(1275, 59735, 'fifty-nine thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(1276, 52340, 'fifty-two thousand three hundred forty');\nINSERT INTO t1 VALUES(1277, 32041, 'thirty-two thousand forty-one');\nINSERT INTO t1 VALUES(1278, 44215, 'forty-four thousand two hundred fifteen');\nINSERT INTO t1 VALUES(1279, 95811, 'ninety-five thousand eight hundred eleven');\nINSERT INTO t1 VALUES(1280, 17929, 'seventeen thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(1281, 87600, 'eighty-seven thousand six hundred');\nINSERT INTO t1 VALUES(1282, 36214, 'thirty-six thousand two hundred fourteen');\nINSERT INTO t1 VALUES(1283, 22282, 'twenty-two thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(1284, 18276, 'eighteen thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(1285, 2567, 'two thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(1286, 62066, 'sixty-two thousand sixty-six');\nINSERT INTO t1 VALUES(1287, 82273, 'eighty-two thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(1288, 13998, 'thirteen thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(1289, 31280, 'thirty-one thousand two hundred eighty');\nINSERT INTO t1 VALUES(1290, 8891, 'eight thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(1291, 56928, 'fifty-six thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(1292, 97091, 'ninety-seven thousand ninety-one');\nINSERT INTO t1 VALUES(1293, 66935, 'sixty-six thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(1294, 178, 'one hundred seventy-eight');\nINSERT INTO t1 VALUES(1295, 9743, 'nine thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(1296, 16903, 'sixteen thousand nine hundred three');\nINSERT INTO t1 VALUES(1297, 83847, 'eighty-three thousand eight hundred forty-seven');\nINSERT INTO t1 VALUES(1298, 95790, 'ninety-five thousand seven hundred ninety');\nINSERT INTO t1 VALUES(1299, 91305, 'ninety-one thousand three hundred five');\nINSERT INTO t1 VALUES(1300, 24392, 'twenty-four thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(1301, 33704, 'thirty-three thousand seven hundred four');\nINSERT INTO t1 VALUES(1302, 39323, 'thirty-nine thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(1303, 74734, 'seventy-four thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(1304, 76309, 'seventy-six thousand three hundred nine');\nINSERT INTO t1 VALUES(1305, 45284, 'forty-five thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(1306, 24844, 'twenty-four thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(1307, 94274, 'ninety-four thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(1308, 19953, 'nineteen thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(1309, 61085, 'sixty-one thousand eighty-five');\nINSERT INTO t1 VALUES(1310, 76202, 'seventy-six thousand two hundred two');\nINSERT INTO t1 VALUES(1311, 40759, 'forty thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(1312, 77565, 'seventy-seven thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(1313, 75589, 'seventy-five thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(1314, 86242, 'eighty-six thousand two hundred forty-two');\nINSERT INTO t1 VALUES(1315, 60704, 'sixty thousand seven hundred four');\nINSERT INTO t1 VALUES(1316, 27604, 'twenty-seven thousand six hundred four');\nINSERT INTO t1 VALUES(1317, 86116, 'eighty-six thousand one hundred sixteen');\nINSERT INTO t1 VALUES(1318, 45427, 'forty-five thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(1319, 40465, 'forty thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(1320, 64749, 'sixty-four thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(1321, 95094, 'ninety-five thousand ninety-four');\nINSERT INTO t1 VALUES(1322, 51852, 'fifty-one thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(1323, 61326, 'sixty-one thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(1324, 69336, 'sixty-nine thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(1325, 20531, 'twenty thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(1326, 78258, 'seventy-eight thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(1327, 40848, 'forty thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(1328, 97949, 'ninety-seven thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(1329, 40361, 'forty thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(1330, 17811, 'seventeen thousand eight hundred eleven');\nINSERT INTO t1 VALUES(1331, 55027, 'fifty-five thousand twenty-seven');\nINSERT INTO t1 VALUES(1332, 81760, 'eighty-one thousand seven hundred sixty');\nINSERT INTO t1 VALUES(1333, 5234, 'five thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(1334, 35011, 'thirty-five thousand eleven');\nINSERT INTO t1 VALUES(1335, 78742, 'seventy-eight thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(1336, 42629, 'forty-two thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(1337, 89161, 'eighty-nine thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(1338, 62137, 'sixty-two thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(1339, 56304, 'fifty-six thousand three hundred four');\nINSERT INTO t1 VALUES(1340, 67110, 'sixty-seven thousand one hundred ten');\nINSERT INTO t1 VALUES(1341, 54915, 'fifty-four thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(1342, 91158, 'ninety-one thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(1343, 23487, 'twenty-three thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(1344, 29746, 'twenty-nine thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(1345, 97876, 'ninety-seven thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(1346, 45139, 'forty-five thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(1347, 14608, 'fourteen thousand six hundred eight');\nINSERT INTO t1 VALUES(1348, 81022, 'eighty-one thousand twenty-two');\nINSERT INTO t1 VALUES(1349, 74749, 'seventy-four thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(1350, 60195, 'sixty thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(1351, 8196, 'eight thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(1352, 36154, 'thirty-six thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(1353, 96873, 'ninety-six thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(1354, 1081, 'one thousand eighty-one');\nINSERT INTO t1 VALUES(1355, 5271, 'five thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(1356, 85257, 'eighty-five thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(1357, 88774, 'eighty-eight thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(1358, 89559, 'eighty-nine thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(1359, 90614, 'ninety thousand six hundred fourteen');\nINSERT INTO t1 VALUES(1360, 4820, 'four thousand eight hundred twenty');\nINSERT INTO t1 VALUES(1361, 88051, 'eighty-eight thousand fifty-one');\nINSERT INTO t1 VALUES(1362, 36491, 'thirty-six thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(1363, 40990, 'forty thousand nine hundred ninety');\nINSERT INTO t1 VALUES(1364, 85648, 'eighty-five thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(1365, 1656, 'one thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(1366, 47140, 'forty-seven thousand one hundred forty');\nINSERT INTO t1 VALUES(1367, 6461, 'six thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(1368, 45435, 'forty-five thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(1369, 61893, 'sixty-one thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(1370, 342, 'three hundred forty-two');\nINSERT INTO t1 VALUES(1371, 41797, 'forty-one thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(1372, 65684, 'sixty-five thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(1373, 60988, 'sixty thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(1374, 83437, 'eighty-three thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(1375, 17605, 'seventeen thousand six hundred five');\nINSERT INTO t1 VALUES(1376, 95590, 'ninety-five thousand five hundred ninety');\nINSERT INTO t1 VALUES(1377, 97023, 'ninety-seven thousand twenty-three');\nINSERT INTO t1 VALUES(1378, 21381, 'twenty-one thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(1379, 28901, 'twenty-eight thousand nine hundred one');\nINSERT INTO t1 VALUES(1380, 82225, 'eighty-two thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(1381, 16878, 'sixteen thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(1382, 82227, 'eighty-two thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(1383, 75157, 'seventy-five thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(1384, 4927, 'four thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(1385, 28969, 'twenty-eight thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(1386, 14412, 'fourteen thousand four hundred twelve');\nINSERT INTO t1 VALUES(1387, 56796, 'fifty-six thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(1388, 48661, 'forty-eight thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(1389, 73412, 'seventy-three thousand four hundred twelve');\nINSERT INTO t1 VALUES(1390, 31185, 'thirty-one thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(1391, 29057, 'twenty-nine thousand fifty-seven');\nINSERT INTO t1 VALUES(1392, 10009, 'ten thousand nine');\nINSERT INTO t1 VALUES(1393, 48977, 'forty-eight thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(1394, 97505, 'ninety-seven thousand five hundred five');\nINSERT INTO t1 VALUES(1395, 9751, 'nine thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(1396, 49959, 'forty-nine thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(1397, 95747, 'ninety-five thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(1398, 93785, 'ninety-three thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(1399, 7378, 'seven thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(1400, 95521, 'ninety-five thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(1401, 70573, 'seventy thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(1402, 80074, 'eighty thousand seventy-four');\nINSERT INTO t1 VALUES(1403, 27728, 'twenty-seven thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(1404, 55773, 'fifty-five thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(1405, 15262, 'fifteen thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(1406, 82088, 'eighty-two thousand eighty-eight');\nINSERT INTO t1 VALUES(1407, 37928, 'thirty-seven thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(1408, 59951, 'fifty-nine thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(1409, 99327, 'ninety-nine thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(1410, 79202, 'seventy-nine thousand two hundred two');\nINSERT INTO t1 VALUES(1411, 11067, 'eleven thousand sixty-seven');\nINSERT INTO t1 VALUES(1412, 97937, 'ninety-seven thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(1413, 54568, 'fifty-four thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(1414, 58684, 'fifty-eight thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(1415, 41266, 'forty-one thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(1416, 75078, 'seventy-five thousand seventy-eight');\nINSERT INTO t1 VALUES(1417, 27706, 'twenty-seven thousand seven hundred six');\nINSERT INTO t1 VALUES(1418, 39628, 'thirty-nine thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(1419, 76178, 'seventy-six thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(1420, 16385, 'sixteen thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(1421, 78470, 'seventy-eight thousand four hundred seventy');\nINSERT INTO t1 VALUES(1422, 38499, 'thirty-eight thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(1423, 63833, 'sixty-three thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(1424, 61168, 'sixty-one thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(1425, 98593, 'ninety-eight thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(1426, 53160, 'fifty-three thousand one hundred sixty');\nINSERT INTO t1 VALUES(1427, 91503, 'ninety-one thousand five hundred three');\nINSERT INTO t1 VALUES(1428, 55010, 'fifty-five thousand ten');\nINSERT INTO t1 VALUES(1429, 97440, 'ninety-seven thousand four hundred forty');\nINSERT INTO t1 VALUES(1430, 42636, 'forty-two thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(1431, 45348, 'forty-five thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(1432, 32381, 'thirty-two thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(1433, 38140, 'thirty-eight thousand one hundred forty');\nINSERT INTO t1 VALUES(1434, 50617, 'fifty thousand six hundred seventeen');\nINSERT INTO t1 VALUES(1435, 81603, 'eighty-one thousand six hundred three');\nINSERT INTO t1 VALUES(1436, 68985, 'sixty-eight thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(1437, 38963, 'thirty-eight thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(1438, 65324, 'sixty-five thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(1439, 94702, 'ninety-four thousand seven hundred two');\nINSERT INTO t1 VALUES(1440, 34503, 'thirty-four thousand five hundred three');\nINSERT INTO t1 VALUES(1441, 87332, 'eighty-seven thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(1442, 59926, 'fifty-nine thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(1443, 25393, 'twenty-five thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(1444, 4805, 'four thousand eight hundred five');\nINSERT INTO t1 VALUES(1445, 70875, 'seventy thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(1446, 23786, 'twenty-three thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(1447, 18319, 'eighteen thousand three hundred nineteen');\nINSERT INTO t1 VALUES(1448, 12002, 'twelve thousand two');\nINSERT INTO t1 VALUES(1449, 62715, 'sixty-two thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(1450, 72966, 'seventy-two thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(1451, 72896, 'seventy-two thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(1452, 69840, 'sixty-nine thousand eight hundred forty');\nINSERT INTO t1 VALUES(1453, 6858, 'six thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(1454, 83415, 'eighty-three thousand four hundred fifteen');\nINSERT INTO t1 VALUES(1455, 5825, 'five thousand eight hundred twenty-five');\nINSERT INTO t1 VALUES(1456, 46957, 'forty-six thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(1457, 9940, 'nine thousand nine hundred forty');\nINSERT INTO t1 VALUES(1458, 4625, 'four thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(1459, 9148, 'nine thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(1460, 6165, 'six thousand one hundred sixty-five');\nINSERT INTO t1 VALUES(1461, 73595, 'seventy-three thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(1462, 98558, 'ninety-eight thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(1463, 52901, 'fifty-two thousand nine hundred one');\nINSERT INTO t1 VALUES(1464, 9851, 'nine thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(1465, 39171, 'thirty-nine thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(1466, 34398, 'thirty-four thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(1467, 14163, 'fourteen thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(1468, 19701, 'nineteen thousand seven hundred one');\nINSERT INTO t1 VALUES(1469, 36281, 'thirty-six thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(1470, 37750, 'thirty-seven thousand seven hundred fifty');\nINSERT INTO t1 VALUES(1471, 21601, 'twenty-one thousand six hundred one');\nINSERT INTO t1 VALUES(1472, 10590, 'ten thousand five hundred ninety');\nINSERT INTO t1 VALUES(1473, 5320, 'five thousand three hundred twenty');\nINSERT INTO t1 VALUES(1474, 59452, 'fifty-nine thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(1475, 10728, 'ten thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(1476, 51689, 'fifty-one thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(1477, 70680, 'seventy thousand six hundred eighty');\nINSERT INTO t1 VALUES(1478, 11635, 'eleven thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(1479, 68663, 'sixty-eight thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(1480, 42737, 'forty-two thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(1481, 37339, 'thirty-seven thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(1482, 73285, 'seventy-three thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(1483, 55449, 'fifty-five thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(1484, 74455, 'seventy-four thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(1485, 70586, 'seventy thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(1486, 25810, 'twenty-five thousand eight hundred ten');\nINSERT INTO t1 VALUES(1487, 77751, 'seventy-seven thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(1488, 49211, 'forty-nine thousand two hundred eleven');\nINSERT INTO t1 VALUES(1489, 90234, 'ninety thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(1490, 77175, 'seventy-seven thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(1491, 86168, 'eighty-six thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(1492, 74535, 'seventy-four thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(1493, 81700, 'eighty-one thousand seven hundred');\nINSERT INTO t1 VALUES(1494, 84430, 'eighty-four thousand four hundred thirty');\nINSERT INTO t1 VALUES(1495, 48657, 'forty-eight thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(1496, 21472, 'twenty-one thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(1497, 35453, 'thirty-five thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(1498, 59208, 'fifty-nine thousand two hundred eight');\nINSERT INTO t1 VALUES(1499, 31814, 'thirty-one thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(1500, 57975, 'fifty-seven thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(1501, 61591, 'sixty-one thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(1502, 42695, 'forty-two thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(1503, 10375, 'ten thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(1504, 40087, 'forty thousand eighty-seven');\nINSERT INTO t1 VALUES(1505, 37360, 'thirty-seven thousand three hundred sixty');\nINSERT INTO t1 VALUES(1506, 68368, 'sixty-eight thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(1507, 13340, 'thirteen thousand three hundred forty');\nINSERT INTO t1 VALUES(1508, 59285, 'fifty-nine thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(1509, 26311, 'twenty-six thousand three hundred eleven');\nINSERT INTO t1 VALUES(1510, 28651, 'twenty-eight thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(1511, 82723, 'eighty-two thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(1512, 69236, 'sixty-nine thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(1513, 57600, 'fifty-seven thousand six hundred');\nINSERT INTO t1 VALUES(1514, 43613, 'forty-three thousand six hundred thirteen');\nINSERT INTO t1 VALUES(1515, 26671, 'twenty-six thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(1516, 48854, 'forty-eight thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(1517, 85630, 'eighty-five thousand six hundred thirty');\nINSERT INTO t1 VALUES(1518, 86864, 'eighty-six thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(1519, 44087, 'forty-four thousand eighty-seven');\nINSERT INTO t1 VALUES(1520, 40044, 'forty thousand forty-four');\nINSERT INTO t1 VALUES(1521, 48950, 'forty-eight thousand nine hundred fifty');\nINSERT INTO t1 VALUES(1522, 12355, 'twelve thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(1523, 82602, 'eighty-two thousand six hundred two');\nINSERT INTO t1 VALUES(1524, 93060, 'ninety-three thousand sixty');\nINSERT INTO t1 VALUES(1525, 56443, 'fifty-six thousand four hundred forty-three');\nINSERT INTO t1 VALUES(1526, 69581, 'sixty-nine thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(1527, 71625, 'seventy-one thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(1528, 92068, 'ninety-two thousand sixty-eight');\nINSERT INTO t1 VALUES(1529, 75395, 'seventy-five thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(1530, 7940, 'seven thousand nine hundred forty');\nINSERT INTO t1 VALUES(1531, 29719, 'twenty-nine thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(1532, 35805, 'thirty-five thousand eight hundred five');\nINSERT INTO t1 VALUES(1533, 68117, 'sixty-eight thousand one hundred seventeen');\nINSERT INTO t1 VALUES(1534, 57168, 'fifty-seven thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(1535, 98358, 'ninety-eight thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(1536, 71532, 'seventy-one thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(1537, 48309, 'forty-eight thousand three hundred nine');\nINSERT INTO t1 VALUES(1538, 74722, 'seventy-four thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(1539, 17839, 'seventeen thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(1540, 12787, 'twelve thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(1541, 90045, 'ninety thousand forty-five');\nINSERT INTO t1 VALUES(1542, 9178, 'nine thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(1543, 9391, 'nine thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(1544, 58506, 'fifty-eight thousand five hundred six');\nINSERT INTO t1 VALUES(1545, 86190, 'eighty-six thousand one hundred ninety');\nINSERT INTO t1 VALUES(1546, 28223, 'twenty-eight thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(1547, 9528, 'nine thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(1548, 54651, 'fifty-four thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(1549, 10794, 'ten thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(1550, 72428, 'seventy-two thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(1551, 55768, 'fifty-five thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(1552, 96914, 'ninety-six thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(1553, 16735, 'sixteen thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(1554, 431, 'four hundred thirty-one');\nINSERT INTO t1 VALUES(1555, 90512, 'ninety thousand five hundred twelve');\nINSERT INTO t1 VALUES(1556, 29474, 'twenty-nine thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(1557, 93569, 'ninety-three thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(1558, 32842, 'thirty-two thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(1559, 21793, 'twenty-one thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(1560, 8455, 'eight thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(1561, 34655, 'thirty-four thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(1562, 14744, 'fourteen thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(1563, 46026, 'forty-six thousand twenty-six');\nINSERT INTO t1 VALUES(1564, 83991, 'eighty-three thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(1565, 43905, 'forty-three thousand nine hundred five');\nINSERT INTO t1 VALUES(1566, 65850, 'sixty-five thousand eight hundred fifty');\nINSERT INTO t1 VALUES(1567, 61725, 'sixty-one thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(1568, 7893, 'seven thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(1569, 32559, 'thirty-two thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(1570, 73248, 'seventy-three thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(1571, 33498, 'thirty-three thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(1572, 62169, 'sixty-two thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(1573, 10144, 'ten thousand one hundred forty-four');\nINSERT INTO t1 VALUES(1574, 57479, 'fifty-seven thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(1575, 30830, 'thirty thousand eight hundred thirty');\nINSERT INTO t1 VALUES(1576, 4473, 'four thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(1577, 40152, 'forty thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(1578, 91680, 'ninety-one thousand six hundred eighty');\nINSERT INTO t1 VALUES(1579, 80625, 'eighty thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(1580, 48508, 'forty-eight thousand five hundred eight');\nINSERT INTO t1 VALUES(1581, 84645, 'eighty-four thousand six hundred forty-five');\nINSERT INTO t1 VALUES(1582, 38114, 'thirty-eight thousand one hundred fourteen');\nINSERT INTO t1 VALUES(1583, 5121, 'five thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(1584, 72895, 'seventy-two thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(1585, 58555, 'fifty-eight thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(1586, 16845, 'sixteen thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(1587, 48136, 'forty-eight thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(1588, 66489, 'sixty-six thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(1589, 91182, 'ninety-one thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(1590, 50703, 'fifty thousand seven hundred three');\nINSERT INTO t1 VALUES(1591, 39088, 'thirty-nine thousand eighty-eight');\nINSERT INTO t1 VALUES(1592, 47003, 'forty-seven thousand three');\nINSERT INTO t1 VALUES(1593, 1739, 'one thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(1594, 48712, 'forty-eight thousand seven hundred twelve');\nINSERT INTO t1 VALUES(1595, 17030, 'seventeen thousand thirty');\nINSERT INTO t1 VALUES(1596, 22062, 'twenty-two thousand sixty-two');\nINSERT INTO t1 VALUES(1597, 1578, 'one thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(1598, 65199, 'sixty-five thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(1599, 95174, 'ninety-five thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(1600, 78596, 'seventy-eight thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(1601, 13062, 'thirteen thousand sixty-two');\nINSERT INTO t1 VALUES(1602, 26386, 'twenty-six thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(1603, 94073, 'ninety-four thousand seventy-three');\nINSERT INTO t1 VALUES(1604, 81970, 'eighty-one thousand nine hundred seventy');\nINSERT INTO t1 VALUES(1605, 34749, 'thirty-four thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(1606, 19997, 'nineteen thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(1607, 98468, 'ninety-eight thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(1608, 90078, 'ninety thousand seventy-eight');\nINSERT INTO t1 VALUES(1609, 60321, 'sixty thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(1610, 64275, 'sixty-four thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(1611, 34209, 'thirty-four thousand two hundred nine');\nINSERT INTO t1 VALUES(1612, 82059, 'eighty-two thousand fifty-nine');\nINSERT INTO t1 VALUES(1613, 31226, 'thirty-one thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(1614, 31328, 'thirty-one thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(1615, 37746, 'thirty-seven thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(1616, 46557, 'forty-six thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(1617, 63517, 'sixty-three thousand five hundred seventeen');\nINSERT INTO t1 VALUES(1618, 26815, 'twenty-six thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(1619, 78096, 'seventy-eight thousand ninety-six');\nINSERT INTO t1 VALUES(1620, 86941, 'eighty-six thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(1621, 42608, 'forty-two thousand six hundred eight');\nINSERT INTO t1 VALUES(1622, 3767, 'three thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(1623, 45485, 'forty-five thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(1624, 62042, 'sixty-two thousand forty-two');\nINSERT INTO t1 VALUES(1625, 43107, 'forty-three thousand one hundred seven');\nINSERT INTO t1 VALUES(1626, 21740, 'twenty-one thousand seven hundred forty');\nINSERT INTO t1 VALUES(1627, 34872, 'thirty-four thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(1628, 40468, 'forty thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(1629, 9300, 'nine thousand three hundred');\nINSERT INTO t1 VALUES(1630, 2721, 'two thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(1631, 28527, 'twenty-eight thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(1632, 69303, 'sixty-nine thousand three hundred three');\nINSERT INTO t1 VALUES(1633, 46776, 'forty-six thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(1634, 55745, 'fifty-five thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(1635, 85356, 'eighty-five thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(1636, 46657, 'forty-six thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(1637, 61515, 'sixty-one thousand five hundred fifteen');\nINSERT INTO t1 VALUES(1638, 18104, 'eighteen thousand one hundred four');\nINSERT INTO t1 VALUES(1639, 28206, 'twenty-eight thousand two hundred six');\nINSERT INTO t1 VALUES(1640, 35172, 'thirty-five thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(1641, 10098, 'ten thousand ninety-eight');\nINSERT INTO t1 VALUES(1642, 6093, 'six thousand ninety-three');\nINSERT INTO t1 VALUES(1643, 74079, 'seventy-four thousand seventy-nine');\nINSERT INTO t1 VALUES(1644, 36008, 'thirty-six thousand eight');\nINSERT INTO t1 VALUES(1645, 88532, 'eighty-eight thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(1646, 30095, 'thirty thousand ninety-five');\nINSERT INTO t1 VALUES(1647, 85521, 'eighty-five thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(1648, 21414, 'twenty-one thousand four hundred fourteen');\nINSERT INTO t1 VALUES(1649, 84230, 'eighty-four thousand two hundred thirty');\nINSERT INTO t1 VALUES(1650, 70085, 'seventy thousand eighty-five');\nINSERT INTO t1 VALUES(1651, 6210, 'six thousand two hundred ten');\nINSERT INTO t1 VALUES(1652, 64104, 'sixty-four thousand one hundred four');\nINSERT INTO t1 VALUES(1653, 84896, 'eighty-four thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(1654, 65618, 'sixty-five thousand six hundred eighteen');\nINSERT INTO t1 VALUES(1655, 15320, 'fifteen thousand three hundred twenty');\nINSERT INTO t1 VALUES(1656, 79301, 'seventy-nine thousand three hundred one');\nINSERT INTO t1 VALUES(1657, 69641, 'sixty-nine thousand six hundred forty-one');\nINSERT INTO t1 VALUES(1658, 65595, 'sixty-five thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(1659, 99704, 'ninety-nine thousand seven hundred four');\nINSERT INTO t1 VALUES(1660, 94028, 'ninety-four thousand twenty-eight');\nINSERT INTO t1 VALUES(1661, 72689, 'seventy-two thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(1662, 29717, 'twenty-nine thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(1663, 78386, 'seventy-eight thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(1664, 2158, 'two thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(1665, 36050, 'thirty-six thousand fifty');\nINSERT INTO t1 VALUES(1666, 27600, 'twenty-seven thousand six hundred');\nINSERT INTO t1 VALUES(1667, 11202, 'eleven thousand two hundred two');\nINSERT INTO t1 VALUES(1668, 86246, 'eighty-six thousand two hundred forty-six');\nINSERT INTO t1 VALUES(1669, 5256, 'five thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(1670, 5150, 'five thousand one hundred fifty');\nINSERT INTO t1 VALUES(1671, 83778, 'eighty-three thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(1672, 97804, 'ninety-seven thousand eight hundred four');\nINSERT INTO t1 VALUES(1673, 64152, 'sixty-four thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(1674, 1627, 'one thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(1675, 81024, 'eighty-one thousand twenty-four');\nINSERT INTO t1 VALUES(1676, 67636, 'sixty-seven thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(1677, 33212, 'thirty-three thousand two hundred twelve');\nINSERT INTO t1 VALUES(1678, 53921, 'fifty-three thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(1679, 94767, 'ninety-four thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(1680, 5053, 'five thousand fifty-three');\nINSERT INTO t1 VALUES(1681, 58089, 'fifty-eight thousand eighty-nine');\nINSERT INTO t1 VALUES(1682, 11991, 'eleven thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(1683, 68740, 'sixty-eight thousand seven hundred forty');\nINSERT INTO t1 VALUES(1684, 78604, 'seventy-eight thousand six hundred four');\nINSERT INTO t1 VALUES(1685, 89361, 'eighty-nine thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(1686, 21448, 'twenty-one thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(1687, 74483, 'seventy-four thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(1688, 89243, 'eighty-nine thousand two hundred forty-three');\nINSERT INTO t1 VALUES(1689, 40559, 'forty thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(1690, 6857, 'six thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(1691, 22570, 'twenty-two thousand five hundred seventy');\nINSERT INTO t1 VALUES(1692, 23883, 'twenty-three thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(1693, 72213, 'seventy-two thousand two hundred thirteen');\nINSERT INTO t1 VALUES(1694, 89863, 'eighty-nine thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(1695, 18748, 'eighteen thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(1696, 39371, 'thirty-nine thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(1697, 9109, 'nine thousand one hundred nine');\nINSERT INTO t1 VALUES(1698, 38787, 'thirty-eight thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(1699, 60954, 'sixty thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(1700, 8161, 'eight thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(1701, 47766, 'forty-seven thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(1702, 5225, 'five thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(1703, 75772, 'seventy-five thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(1704, 18269, 'eighteen thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(1705, 31498, 'thirty-one thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(1706, 60137, 'sixty thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(1707, 27054, 'twenty-seven thousand fifty-four');\nINSERT INTO t1 VALUES(1708, 94474, 'ninety-four thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(1709, 39799, 'thirty-nine thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(1710, 42212, 'forty-two thousand two hundred twelve');\nINSERT INTO t1 VALUES(1711, 26403, 'twenty-six thousand four hundred three');\nINSERT INTO t1 VALUES(1712, 62233, 'sixty-two thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(1713, 35236, 'thirty-five thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(1714, 80188, 'eighty thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(1715, 10229, 'ten thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(1716, 62085, 'sixty-two thousand eighty-five');\nINSERT INTO t1 VALUES(1717, 44713, 'forty-four thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(1718, 41726, 'forty-one thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(1719, 94768, 'ninety-four thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(1720, 5591, 'five thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(1721, 14462, 'fourteen thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(1722, 8633, 'eight thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(1723, 57, 'fifty-seven');\nINSERT INTO t1 VALUES(1724, 36452, 'thirty-six thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(1725, 89036, 'eighty-nine thousand thirty-six');\nINSERT INTO t1 VALUES(1726, 89477, 'eighty-nine thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(1727, 68247, 'sixty-eight thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(1728, 89001, 'eighty-nine thousand one');\nINSERT INTO t1 VALUES(1729, 54145, 'fifty-four thousand one hundred forty-five');\nINSERT INTO t1 VALUES(1730, 77480, 'seventy-seven thousand four hundred eighty');\nINSERT INTO t1 VALUES(1731, 50906, 'fifty thousand nine hundred six');\nINSERT INTO t1 VALUES(1732, 41648, 'forty-one thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(1733, 11316, 'eleven thousand three hundred sixteen');\nINSERT INTO t1 VALUES(1734, 61340, 'sixty-one thousand three hundred forty');\nINSERT INTO t1 VALUES(1735, 20526, 'twenty thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(1736, 91134, 'ninety-one thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(1737, 20976, 'twenty thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(1738, 66519, 'sixty-six thousand five hundred nineteen');\nINSERT INTO t1 VALUES(1739, 88318, 'eighty-eight thousand three hundred eighteen');\nINSERT INTO t1 VALUES(1740, 54108, 'fifty-four thousand one hundred eight');\nINSERT INTO t1 VALUES(1741, 54031, 'fifty-four thousand thirty-one');\nINSERT INTO t1 VALUES(1742, 77937, 'seventy-seven thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(1743, 10328, 'ten thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(1744, 80516, 'eighty thousand five hundred sixteen');\nINSERT INTO t1 VALUES(1745, 44261, 'forty-four thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(1746, 88250, 'eighty-eight thousand two hundred fifty');\nINSERT INTO t1 VALUES(1747, 52866, 'fifty-two thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(1748, 25892, 'twenty-five thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(1749, 98953, 'ninety-eight thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(1750, 12415, 'twelve thousand four hundred fifteen');\nINSERT INTO t1 VALUES(1751, 36805, 'thirty-six thousand eight hundred five');\nINSERT INTO t1 VALUES(1752, 58382, 'fifty-eight thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(1753, 84382, 'eighty-four thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(1754, 40274, 'forty thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(1755, 90010, 'ninety thousand ten');\nINSERT INTO t1 VALUES(1756, 10509, 'ten thousand five hundred nine');\nINSERT INTO t1 VALUES(1757, 5295, 'five thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(1758, 58724, 'fifty-eight thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(1759, 99125, 'ninety-nine thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(1760, 78321, 'seventy-eight thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(1761, 38452, 'thirty-eight thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(1762, 5918, 'five thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(1763, 61900, 'sixty-one thousand nine hundred');\nINSERT INTO t1 VALUES(1764, 31892, 'thirty-one thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(1765, 73349, 'seventy-three thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(1766, 48571, 'forty-eight thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(1767, 49212, 'forty-nine thousand two hundred twelve');\nINSERT INTO t1 VALUES(1768, 65580, 'sixty-five thousand five hundred eighty');\nINSERT INTO t1 VALUES(1769, 39343, 'thirty-nine thousand three hundred forty-three');\nINSERT INTO t1 VALUES(1770, 37263, 'thirty-seven thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(1771, 33790, 'thirty-three thousand seven hundred ninety');\nINSERT INTO t1 VALUES(1772, 23592, 'twenty-three thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(1773, 54691, 'fifty-four thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(1774, 40873, 'forty thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(1775, 40649, 'forty thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(1776, 28114, 'twenty-eight thousand one hundred fourteen');\nINSERT INTO t1 VALUES(1777, 5551, 'five thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(1778, 96865, 'ninety-six thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(1779, 94893, 'ninety-four thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(1780, 15957, 'fifteen thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(1781, 32194, 'thirty-two thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(1782, 57324, 'fifty-seven thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(1783, 73691, 'seventy-three thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(1784, 69747, 'sixty-nine thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(1785, 91679, 'ninety-one thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(1786, 12838, 'twelve thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(1787, 17389, 'seventeen thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(1788, 61883, 'sixty-one thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(1789, 85070, 'eighty-five thousand seventy');\nINSERT INTO t1 VALUES(1790, 13363, 'thirteen thousand three hundred sixty-three');\nINSERT INTO t1 VALUES(1791, 39398, 'thirty-nine thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(1792, 53565, 'fifty-three thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(1793, 69195, 'sixty-nine thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(1794, 50823, 'fifty thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(1795, 15412, 'fifteen thousand four hundred twelve');\nINSERT INTO t1 VALUES(1796, 93980, 'ninety-three thousand nine hundred eighty');\nINSERT INTO t1 VALUES(1797, 30817, 'thirty thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(1798, 99528, 'ninety-nine thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(1799, 57790, 'fifty-seven thousand seven hundred ninety');\nINSERT INTO t1 VALUES(1800, 40668, 'forty thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(1801, 96517, 'ninety-six thousand five hundred seventeen');\nINSERT INTO t1 VALUES(1802, 72152, 'seventy-two thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(1803, 17814, 'seventeen thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(1804, 6834, 'six thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(1805, 15496, 'fifteen thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(1806, 64645, 'sixty-four thousand six hundred forty-five');\nINSERT INTO t1 VALUES(1807, 40955, 'forty thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(1808, 29600, 'twenty-nine thousand six hundred');\nINSERT INTO t1 VALUES(1809, 93154, 'ninety-three thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(1810, 21117, 'twenty-one thousand one hundred seventeen');\nINSERT INTO t1 VALUES(1811, 25709, 'twenty-five thousand seven hundred nine');\nINSERT INTO t1 VALUES(1812, 8146, 'eight thousand one hundred forty-six');\nINSERT INTO t1 VALUES(1813, 63481, 'sixty-three thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(1814, 5127, 'five thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(1815, 34339, 'thirty-four thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(1816, 99471, 'ninety-nine thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(1817, 25571, 'twenty-five thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(1818, 95394, 'ninety-five thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(1819, 11895, 'eleven thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(1820, 53310, 'fifty-three thousand three hundred ten');\nINSERT INTO t1 VALUES(1821, 15409, 'fifteen thousand four hundred nine');\nINSERT INTO t1 VALUES(1822, 13068, 'thirteen thousand sixty-eight');\nINSERT INTO t1 VALUES(1823, 60977, 'sixty thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(1824, 85696, 'eighty-five thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(1825, 75185, 'seventy-five thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(1826, 33008, 'thirty-three thousand eight');\nINSERT INTO t1 VALUES(1827, 35765, 'thirty-five thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(1828, 39078, 'thirty-nine thousand seventy-eight');\nINSERT INTO t1 VALUES(1829, 75754, 'seventy-five thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(1830, 66605, 'sixty-six thousand six hundred five');\nINSERT INTO t1 VALUES(1831, 50018, 'fifty thousand eighteen');\nINSERT INTO t1 VALUES(1832, 53, 'fifty-three');\nINSERT INTO t1 VALUES(1833, 36222, 'thirty-six thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(1834, 23617, 'twenty-three thousand six hundred seventeen');\nINSERT INTO t1 VALUES(1835, 65346, 'sixty-five thousand three hundred forty-six');\nINSERT INTO t1 VALUES(1836, 89373, 'eighty-nine thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(1837, 82247, 'eighty-two thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(1838, 56783, 'fifty-six thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(1839, 31699, 'thirty-one thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(1840, 90500, 'ninety thousand five hundred');\nINSERT INTO t1 VALUES(1841, 5814, 'five thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(1842, 70783, 'seventy thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(1843, 56289, 'fifty-six thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(1844, 54563, 'fifty-four thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(1845, 9581, 'nine thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(1846, 16333, 'sixteen thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(1847, 53931, 'fifty-three thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(1848, 42614, 'forty-two thousand six hundred fourteen');\nINSERT INTO t1 VALUES(1849, 33934, 'thirty-three thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(1850, 12692, 'twelve thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(1851, 99199, 'ninety-nine thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(1852, 55981, 'fifty-five thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(1853, 75956, 'seventy-five thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(1854, 58650, 'fifty-eight thousand six hundred fifty');\nINSERT INTO t1 VALUES(1855, 52334, 'fifty-two thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(1856, 38002, 'thirty-eight thousand two');\nINSERT INTO t1 VALUES(1857, 24622, 'twenty-four thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(1858, 44374, 'forty-four thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(1859, 58616, 'fifty-eight thousand six hundred sixteen');\nINSERT INTO t1 VALUES(1860, 71514, 'seventy-one thousand five hundred fourteen');\nINSERT INTO t1 VALUES(1861, 66250, 'sixty-six thousand two hundred fifty');\nINSERT INTO t1 VALUES(1862, 42565, 'forty-two thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(1863, 99175, 'ninety-nine thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(1864, 35068, 'thirty-five thousand sixty-eight');\nINSERT INTO t1 VALUES(1865, 62625, 'sixty-two thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(1866, 68705, 'sixty-eight thousand seven hundred five');\nINSERT INTO t1 VALUES(1867, 23790, 'twenty-three thousand seven hundred ninety');\nINSERT INTO t1 VALUES(1868, 67381, 'sixty-seven thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(1869, 37053, 'thirty-seven thousand fifty-three');\nINSERT INTO t1 VALUES(1870, 69299, 'sixty-nine thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(1871, 96784, 'ninety-six thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(1872, 6265, 'six thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(1873, 47283, 'forty-seven thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(1874, 69166, 'sixty-nine thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(1875, 92163, 'ninety-two thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(1876, 63622, 'sixty-three thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(1877, 98593, 'ninety-eight thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(1878, 15073, 'fifteen thousand seventy-three');\nINSERT INTO t1 VALUES(1879, 33287, 'thirty-three thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(1880, 26037, 'twenty-six thousand thirty-seven');\nINSERT INTO t1 VALUES(1881, 32387, 'thirty-two thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(1882, 53669, 'fifty-three thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(1883, 5823, 'five thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(1884, 95759, 'ninety-five thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(1885, 53420, 'fifty-three thousand four hundred twenty');\nINSERT INTO t1 VALUES(1886, 89223, 'eighty-nine thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(1887, 4678, 'four thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(1888, 75335, 'seventy-five thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(1889, 50793, 'fifty thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(1890, 74766, 'seventy-four thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(1891, 11605, 'eleven thousand six hundred five');\nINSERT INTO t1 VALUES(1892, 67438, 'sixty-seven thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(1893, 45553, 'forty-five thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(1894, 35335, 'thirty-five thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(1895, 61390, 'sixty-one thousand three hundred ninety');\nINSERT INTO t1 VALUES(1896, 94733, 'ninety-four thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(1897, 16900, 'sixteen thousand nine hundred');\nINSERT INTO t1 VALUES(1898, 35421, 'thirty-five thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(1899, 18961, 'eighteen thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(1900, 48884, 'forty-eight thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(1901, 28538, 'twenty-eight thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(1902, 94230, 'ninety-four thousand two hundred thirty');\nINSERT INTO t1 VALUES(1903, 46487, 'forty-six thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(1904, 27449, 'twenty-seven thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(1905, 26838, 'twenty-six thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(1906, 49891, 'forty-nine thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(1907, 10235, 'ten thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(1908, 98015, 'ninety-eight thousand fifteen');\nINSERT INTO t1 VALUES(1909, 91019, 'ninety-one thousand nineteen');\nINSERT INTO t1 VALUES(1910, 65565, 'sixty-five thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(1911, 49051, 'forty-nine thousand fifty-one');\nINSERT INTO t1 VALUES(1912, 57788, 'fifty-seven thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(1913, 36436, 'thirty-six thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(1914, 64349, 'sixty-four thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(1915, 90040, 'ninety thousand forty');\nINSERT INTO t1 VALUES(1916, 50196, 'fifty thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(1917, 97652, 'ninety-seven thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(1918, 73380, 'seventy-three thousand three hundred eighty');\nINSERT INTO t1 VALUES(1919, 2058, 'two thousand fifty-eight');\nINSERT INTO t1 VALUES(1920, 13469, 'thirteen thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(1921, 4344, 'four thousand three hundred forty-four');\nINSERT INTO t1 VALUES(1922, 27203, 'twenty-seven thousand two hundred three');\nINSERT INTO t1 VALUES(1923, 42999, 'forty-two thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(1924, 8211, 'eight thousand two hundred eleven');\nINSERT INTO t1 VALUES(1925, 1322, 'one thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(1926, 39539, 'thirty-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(1927, 86855, 'eighty-six thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(1928, 83286, 'eighty-three thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(1929, 24826, 'twenty-four thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(1930, 66020, 'sixty-six thousand twenty');\nINSERT INTO t1 VALUES(1931, 2534, 'two thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(1932, 9301, 'nine thousand three hundred one');\nINSERT INTO t1 VALUES(1933, 52233, 'fifty-two thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(1934, 41527, 'forty-one thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(1935, 57077, 'fifty-seven thousand seventy-seven');\nINSERT INTO t1 VALUES(1936, 23554, 'twenty-three thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(1937, 65439, 'sixty-five thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(1938, 98003, 'ninety-eight thousand three');\nINSERT INTO t1 VALUES(1939, 29890, 'twenty-nine thousand eight hundred ninety');\nINSERT INTO t1 VALUES(1940, 63910, 'sixty-three thousand nine hundred ten');\nINSERT INTO t1 VALUES(1941, 26234, 'twenty-six thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(1942, 64618, 'sixty-four thousand six hundred eighteen');\nINSERT INTO t1 VALUES(1943, 74275, 'seventy-four thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(1944, 54969, 'fifty-four thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(1945, 46927, 'forty-six thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(1946, 91259, 'ninety-one thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(1947, 79802, 'seventy-nine thousand eight hundred two');\nINSERT INTO t1 VALUES(1948, 70990, 'seventy thousand nine hundred ninety');\nINSERT INTO t1 VALUES(1949, 62246, 'sixty-two thousand two hundred forty-six');\nINSERT INTO t1 VALUES(1950, 78112, 'seventy-eight thousand one hundred twelve');\nINSERT INTO t1 VALUES(1951, 1090, 'one thousand ninety');\nINSERT INTO t1 VALUES(1952, 5196, 'five thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(1953, 53868, 'fifty-three thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(1954, 65249, 'sixty-five thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(1955, 18779, 'eighteen thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(1956, 1451, 'one thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(1957, 97039, 'ninety-seven thousand thirty-nine');\nINSERT INTO t1 VALUES(1958, 38436, 'thirty-eight thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(1959, 47354, 'forty-seven thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(1960, 73907, 'seventy-three thousand nine hundred seven');\nINSERT INTO t1 VALUES(1961, 38768, 'thirty-eight thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(1962, 81604, 'eighty-one thousand six hundred four');\nINSERT INTO t1 VALUES(1963, 39665, 'thirty-nine thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(1964, 14586, 'fourteen thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(1965, 94552, 'ninety-four thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(1966, 27538, 'twenty-seven thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(1967, 61650, 'sixty-one thousand six hundred fifty');\nINSERT INTO t1 VALUES(1968, 49645, 'forty-nine thousand six hundred forty-five');\nINSERT INTO t1 VALUES(1969, 90898, 'ninety thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(1970, 65710, 'sixty-five thousand seven hundred ten');\nINSERT INTO t1 VALUES(1971, 44712, 'forty-four thousand seven hundred twelve');\nINSERT INTO t1 VALUES(1972, 27578, 'twenty-seven thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(1973, 96240, 'ninety-six thousand two hundred forty');\nINSERT INTO t1 VALUES(1974, 77263, 'seventy-seven thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(1975, 75560, 'seventy-five thousand five hundred sixty');\nINSERT INTO t1 VALUES(1976, 26053, 'twenty-six thousand fifty-three');\nINSERT INTO t1 VALUES(1977, 62047, 'sixty-two thousand forty-seven');\nINSERT INTO t1 VALUES(1978, 71099, 'seventy-one thousand ninety-nine');\nINSERT INTO t1 VALUES(1979, 77506, 'seventy-seven thousand five hundred six');\nINSERT INTO t1 VALUES(1980, 15059, 'fifteen thousand fifty-nine');\nINSERT INTO t1 VALUES(1981, 21642, 'twenty-one thousand six hundred forty-two');\nINSERT INTO t1 VALUES(1982, 18236, 'eighteen thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(1983, 21430, 'twenty-one thousand four hundred thirty');\nINSERT INTO t1 VALUES(1984, 83281, 'eighty-three thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(1985, 65713, 'sixty-five thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(1986, 33900, 'thirty-three thousand nine hundred');\nINSERT INTO t1 VALUES(1987, 60594, 'sixty thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(1988, 19507, 'nineteen thousand five hundred seven');\nINSERT INTO t1 VALUES(1989, 11432, 'eleven thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(1990, 82606, 'eighty-two thousand six hundred six');\nINSERT INTO t1 VALUES(1991, 96461, 'ninety-six thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(1992, 81533, 'eighty-one thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(1993, 26143, 'twenty-six thousand one hundred forty-three');\nINSERT INTO t1 VALUES(1994, 38308, 'thirty-eight thousand three hundred eight');\nINSERT INTO t1 VALUES(1995, 50209, 'fifty thousand two hundred nine');\nINSERT INTO t1 VALUES(1996, 67682, 'sixty-seven thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(1997, 22627, 'twenty-two thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(1998, 27213, 'twenty-seven thousand two hundred thirteen');\nINSERT INTO t1 VALUES(1999, 43147, 'forty-three thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(2000, 84338, 'eighty-four thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(2001, 32584, 'thirty-two thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(2002, 24006, 'twenty-four thousand six');\nINSERT INTO t1 VALUES(2003, 77889, 'seventy-seven thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(2004, 2718, 'two thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(2005, 47237, 'forty-seven thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(2006, 49734, 'forty-nine thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(2007, 32911, 'thirty-two thousand nine hundred eleven');\nINSERT INTO t1 VALUES(2008, 37698, 'thirty-seven thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(2009, 3983, 'three thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(2010, 58862, 'fifty-eight thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(2011, 97073, 'ninety-seven thousand seventy-three');\nINSERT INTO t1 VALUES(2012, 23589, 'twenty-three thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(2013, 57491, 'fifty-seven thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(2014, 34374, 'thirty-four thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(2015, 42560, 'forty-two thousand five hundred sixty');\nINSERT INTO t1 VALUES(2016, 67335, 'sixty-seven thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(2017, 17451, 'seventeen thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(2018, 32142, 'thirty-two thousand one hundred forty-two');\nINSERT INTO t1 VALUES(2019, 67189, 'sixty-seven thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(2020, 1272, 'one thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(2021, 22322, 'twenty-two thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(2022, 30653, 'thirty thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(2023, 88768, 'eighty-eight thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(2024, 36977, 'thirty-six thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(2025, 12562, 'twelve thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(2026, 5519, 'five thousand five hundred nineteen');\nINSERT INTO t1 VALUES(2027, 28448, 'twenty-eight thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(2028, 6405, 'six thousand four hundred five');\nINSERT INTO t1 VALUES(2029, 13197, 'thirteen thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(2030, 82940, 'eighty-two thousand nine hundred forty');\nINSERT INTO t1 VALUES(2031, 62586, 'sixty-two thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(2032, 8333, 'eight thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(2033, 62408, 'sixty-two thousand four hundred eight');\nINSERT INTO t1 VALUES(2034, 18597, 'eighteen thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(2035, 57935, 'fifty-seven thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(2036, 33700, 'thirty-three thousand seven hundred');\nINSERT INTO t1 VALUES(2037, 17884, 'seventeen thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(2038, 819, 'eight hundred nineteen');\nINSERT INTO t1 VALUES(2039, 50886, 'fifty thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(2040, 63433, 'sixty-three thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(2041, 31774, 'thirty-one thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(2042, 89091, 'eighty-nine thousand ninety-one');\nINSERT INTO t1 VALUES(2043, 47676, 'forty-seven thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(2044, 17505, 'seventeen thousand five hundred five');\nINSERT INTO t1 VALUES(2045, 14303, 'fourteen thousand three hundred three');\nINSERT INTO t1 VALUES(2046, 47820, 'forty-seven thousand eight hundred twenty');\nINSERT INTO t1 VALUES(2047, 34030, 'thirty-four thousand thirty');\nINSERT INTO t1 VALUES(2048, 53344, 'fifty-three thousand three hundred forty-four');\nINSERT INTO t1 VALUES(2049, 87145, 'eighty-seven thousand one hundred forty-five');\nINSERT INTO t1 VALUES(2050, 19823, 'nineteen thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(2051, 60898, 'sixty thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(2052, 1048, 'one thousand forty-eight');\nINSERT INTO t1 VALUES(2053, 14591, 'fourteen thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(2054, 72134, 'seventy-two thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(2055, 26114, 'twenty-six thousand one hundred fourteen');\nINSERT INTO t1 VALUES(2056, 16760, 'sixteen thousand seven hundred sixty');\nINSERT INTO t1 VALUES(2057, 33551, 'thirty-three thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(2058, 62061, 'sixty-two thousand sixty-one');\nINSERT INTO t1 VALUES(2059, 20614, 'twenty thousand six hundred fourteen');\nINSERT INTO t1 VALUES(2060, 29190, 'twenty-nine thousand one hundred ninety');\nINSERT INTO t1 VALUES(2061, 6402, 'six thousand four hundred two');\nINSERT INTO t1 VALUES(2062, 86573, 'eighty-six thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(2063, 72194, 'seventy-two thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(2064, 97366, 'ninety-seven thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(2065, 77278, 'seventy-seven thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(2066, 99389, 'ninety-nine thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(2067, 90879, 'ninety thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(2068, 12989, 'twelve thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(2069, 57347, 'fifty-seven thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(2070, 83419, 'eighty-three thousand four hundred nineteen');\nINSERT INTO t1 VALUES(2071, 95879, 'ninety-five thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(2072, 58171, 'fifty-eight thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(2073, 80507, 'eighty thousand five hundred seven');\nINSERT INTO t1 VALUES(2074, 85772, 'eighty-five thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(2075, 36005, 'thirty-six thousand five');\nINSERT INTO t1 VALUES(2076, 823, 'eight hundred twenty-three');\nINSERT INTO t1 VALUES(2077, 86932, 'eighty-six thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(2078, 45283, 'forty-five thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(2079, 90744, 'ninety thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(2080, 93349, 'ninety-three thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(2081, 25191, 'twenty-five thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(2082, 7245, 'seven thousand two hundred forty-five');\nINSERT INTO t1 VALUES(2083, 69413, 'sixty-nine thousand four hundred thirteen');\nINSERT INTO t1 VALUES(2084, 59792, 'fifty-nine thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(2085, 29047, 'twenty-nine thousand forty-seven');\nINSERT INTO t1 VALUES(2086, 47074, 'forty-seven thousand seventy-four');\nINSERT INTO t1 VALUES(2087, 99312, 'ninety-nine thousand three hundred twelve');\nINSERT INTO t1 VALUES(2088, 8974, 'eight thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(2089, 8943, 'eight thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(2090, 9909, 'nine thousand nine hundred nine');\nINSERT INTO t1 VALUES(2091, 43966, 'forty-three thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(2092, 31968, 'thirty-one thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(2093, 13409, 'thirteen thousand four hundred nine');\nINSERT INTO t1 VALUES(2094, 92395, 'ninety-two thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(2095, 43059, 'forty-three thousand fifty-nine');\nINSERT INTO t1 VALUES(2096, 65877, 'sixty-five thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(2097, 5618, 'five thousand six hundred eighteen');\nINSERT INTO t1 VALUES(2098, 92161, 'ninety-two thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(2099, 77692, 'seventy-seven thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(2100, 99492, 'ninety-nine thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(2101, 19443, 'nineteen thousand four hundred forty-three');\nINSERT INTO t1 VALUES(2102, 41080, 'forty-one thousand eighty');\nINSERT INTO t1 VALUES(2103, 93944, 'ninety-three thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(2104, 24834, 'twenty-four thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(2105, 47394, 'forty-seven thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(2106, 65459, 'sixty-five thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(2107, 16311, 'sixteen thousand three hundred eleven');\nINSERT INTO t1 VALUES(2108, 65066, 'sixty-five thousand sixty-six');\nINSERT INTO t1 VALUES(2109, 60027, 'sixty thousand twenty-seven');\nINSERT INTO t1 VALUES(2110, 94432, 'ninety-four thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(2111, 89314, 'eighty-nine thousand three hundred fourteen');\nINSERT INTO t1 VALUES(2112, 69025, 'sixty-nine thousand twenty-five');\nINSERT INTO t1 VALUES(2113, 19117, 'nineteen thousand one hundred seventeen');\nINSERT INTO t1 VALUES(2114, 43262, 'forty-three thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(2115, 17253, 'seventeen thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(2116, 12387, 'twelve thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(2117, 53532, 'fifty-three thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(2118, 99325, 'ninety-nine thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(2119, 12697, 'twelve thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(2120, 52006, 'fifty-two thousand six');\nINSERT INTO t1 VALUES(2121, 71910, 'seventy-one thousand nine hundred ten');\nINSERT INTO t1 VALUES(2122, 94517, 'ninety-four thousand five hundred seventeen');\nINSERT INTO t1 VALUES(2123, 16697, 'sixteen thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(2124, 37519, 'thirty-seven thousand five hundred nineteen');\nINSERT INTO t1 VALUES(2125, 56287, 'fifty-six thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(2126, 40000, 'forty thousand');\nINSERT INTO t1 VALUES(2127, 47209, 'forty-seven thousand two hundred nine');\nINSERT INTO t1 VALUES(2128, 42196, 'forty-two thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(2129, 70059, 'seventy thousand fifty-nine');\nINSERT INTO t1 VALUES(2130, 72656, 'seventy-two thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(2131, 17395, 'seventeen thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(2132, 66416, 'sixty-six thousand four hundred sixteen');\nINSERT INTO t1 VALUES(2133, 56705, 'fifty-six thousand seven hundred five');\nINSERT INTO t1 VALUES(2134, 51940, 'fifty-one thousand nine hundred forty');\nINSERT INTO t1 VALUES(2135, 60665, 'sixty thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(2136, 13269, 'thirteen thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(2137, 60818, 'sixty thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(2138, 46280, 'forty-six thousand two hundred eighty');\nINSERT INTO t1 VALUES(2139, 42486, 'forty-two thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(2140, 95618, 'ninety-five thousand six hundred eighteen');\nINSERT INTO t1 VALUES(2141, 41888, 'forty-one thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(2142, 4821, 'four thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(2143, 95997, 'ninety-five thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(2144, 13602, 'thirteen thousand six hundred two');\nINSERT INTO t1 VALUES(2145, 13524, 'thirteen thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(2146, 80737, 'eighty thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(2147, 87644, 'eighty-seven thousand six hundred forty-four');\nINSERT INTO t1 VALUES(2148, 61870, 'sixty-one thousand eight hundred seventy');\nINSERT INTO t1 VALUES(2149, 1495, 'one thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(2150, 33877, 'thirty-three thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(2151, 70578, 'seventy thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(2152, 40349, 'forty thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(2153, 30217, 'thirty thousand two hundred seventeen');\nINSERT INTO t1 VALUES(2154, 12710, 'twelve thousand seven hundred ten');\nINSERT INTO t1 VALUES(2155, 37047, 'thirty-seven thousand forty-seven');\nINSERT INTO t1 VALUES(2156, 92862, 'ninety-two thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(2157, 89794, 'eighty-nine thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(2158, 14549, 'fourteen thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(2159, 3124, 'three thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(2160, 67600, 'sixty-seven thousand six hundred');\nINSERT INTO t1 VALUES(2161, 75734, 'seventy-five thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(2162, 61384, 'sixty-one thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(2163, 61911, 'sixty-one thousand nine hundred eleven');\nINSERT INTO t1 VALUES(2164, 99488, 'ninety-nine thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(2165, 81318, 'eighty-one thousand three hundred eighteen');\nINSERT INTO t1 VALUES(2166, 90286, 'ninety thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(2167, 57603, 'fifty-seven thousand six hundred three');\nINSERT INTO t1 VALUES(2168, 79432, 'seventy-nine thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(2169, 88218, 'eighty-eight thousand two hundred eighteen');\nINSERT INTO t1 VALUES(2170, 54452, 'fifty-four thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(2171, 36526, 'thirty-six thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(2172, 66329, 'sixty-six thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(2173, 10991, 'ten thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(2174, 80541, 'eighty thousand five hundred forty-one');\nINSERT INTO t1 VALUES(2175, 20445, 'twenty thousand four hundred forty-five');\nINSERT INTO t1 VALUES(2176, 44857, 'forty-four thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(2177, 57780, 'fifty-seven thousand seven hundred eighty');\nINSERT INTO t1 VALUES(2178, 27865, 'twenty-seven thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(2179, 15842, 'fifteen thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(2180, 40558, 'forty thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(2181, 31458, 'thirty-one thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(2182, 96974, 'ninety-six thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(2183, 83410, 'eighty-three thousand four hundred ten');\nINSERT INTO t1 VALUES(2184, 94541, 'ninety-four thousand five hundred forty-one');\nINSERT INTO t1 VALUES(2185, 24669, 'twenty-four thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(2186, 60160, 'sixty thousand one hundred sixty');\nINSERT INTO t1 VALUES(2187, 66278, 'sixty-six thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(2188, 56964, 'fifty-six thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(2189, 16275, 'sixteen thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(2190, 88168, 'eighty-eight thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(2191, 98545, 'ninety-eight thousand five hundred forty-five');\nINSERT INTO t1 VALUES(2192, 79183, 'seventy-nine thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(2193, 81682, 'eighty-one thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(2194, 57766, 'fifty-seven thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(2195, 13950, 'thirteen thousand nine hundred fifty');\nINSERT INTO t1 VALUES(2196, 87696, 'eighty-seven thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(2197, 86376, 'eighty-six thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(2198, 37683, 'thirty-seven thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(2199, 74103, 'seventy-four thousand one hundred three');\nINSERT INTO t1 VALUES(2200, 10257, 'ten thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(2201, 28343, 'twenty-eight thousand three hundred forty-three');\nINSERT INTO t1 VALUES(2202, 60849, 'sixty thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(2203, 9361, 'nine thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(2204, 54976, 'fifty-four thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(2205, 7990, 'seven thousand nine hundred ninety');\nINSERT INTO t1 VALUES(2206, 53392, 'fifty-three thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(2207, 90975, 'ninety thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(2208, 47139, 'forty-seven thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(2209, 89696, 'eighty-nine thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(2210, 58779, 'fifty-eight thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(2211, 64207, 'sixty-four thousand two hundred seven');\nINSERT INTO t1 VALUES(2212, 57842, 'fifty-seven thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(2213, 27915, 'twenty-seven thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(2214, 95494, 'ninety-five thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(2215, 42037, 'forty-two thousand thirty-seven');\nINSERT INTO t1 VALUES(2216, 15944, 'fifteen thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(2217, 26023, 'twenty-six thousand twenty-three');\nINSERT INTO t1 VALUES(2218, 19083, 'nineteen thousand eighty-three');\nINSERT INTO t1 VALUES(2219, 29411, 'twenty-nine thousand four hundred eleven');\nINSERT INTO t1 VALUES(2220, 20499, 'twenty thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(2221, 34570, 'thirty-four thousand five hundred seventy');\nINSERT INTO t1 VALUES(2222, 69873, 'sixty-nine thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(2223, 87765, 'eighty-seven thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(2224, 10477, 'ten thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(2225, 32400, 'thirty-two thousand four hundred');\nINSERT INTO t1 VALUES(2226, 39016, 'thirty-nine thousand sixteen');\nINSERT INTO t1 VALUES(2227, 93999, 'ninety-three thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(2228, 97828, 'ninety-seven thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(2229, 65883, 'sixty-five thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(2230, 62744, 'sixty-two thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(2231, 81946, 'eighty-one thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(2232, 12893, 'twelve thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(2233, 85908, 'eighty-five thousand nine hundred eight');\nINSERT INTO t1 VALUES(2234, 6408, 'six thousand four hundred eight');\nINSERT INTO t1 VALUES(2235, 79758, 'seventy-nine thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(2236, 41544, 'forty-one thousand five hundred forty-four');\nINSERT INTO t1 VALUES(2237, 58853, 'fifty-eight thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(2238, 55209, 'fifty-five thousand two hundred nine');\nINSERT INTO t1 VALUES(2239, 1465, 'one thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(2240, 84837, 'eighty-four thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(2241, 63355, 'sixty-three thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(2242, 19415, 'nineteen thousand four hundred fifteen');\nINSERT INTO t1 VALUES(2243, 31516, 'thirty-one thousand five hundred sixteen');\nINSERT INTO t1 VALUES(2244, 33610, 'thirty-three thousand six hundred ten');\nINSERT INTO t1 VALUES(2245, 93950, 'ninety-three thousand nine hundred fifty');\nINSERT INTO t1 VALUES(2246, 21999, 'twenty-one thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(2247, 8940, 'eight thousand nine hundred forty');\nINSERT INTO t1 VALUES(2248, 74503, 'seventy-four thousand five hundred three');\nINSERT INTO t1 VALUES(2249, 2932, 'two thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(2250, 70455, 'seventy thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(2251, 62804, 'sixty-two thousand eight hundred four');\nINSERT INTO t1 VALUES(2252, 16963, 'sixteen thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(2253, 1770, 'one thousand seven hundred seventy');\nINSERT INTO t1 VALUES(2254, 67716, 'sixty-seven thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(2255, 94196, 'ninety-four thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(2256, 68072, 'sixty-eight thousand seventy-two');\nINSERT INTO t1 VALUES(2257, 67302, 'sixty-seven thousand three hundred two');\nINSERT INTO t1 VALUES(2258, 97465, 'ninety-seven thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(2259, 45332, 'forty-five thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(2260, 65071, 'sixty-five thousand seventy-one');\nINSERT INTO t1 VALUES(2261, 69613, 'sixty-nine thousand six hundred thirteen');\nINSERT INTO t1 VALUES(2262, 37572, 'thirty-seven thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(2263, 2542, 'two thousand five hundred forty-two');\nINSERT INTO t1 VALUES(2264, 61825, 'sixty-one thousand eight hundred twenty-five');\nINSERT INTO t1 VALUES(2265, 73221, 'seventy-three thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(2266, 22978, 'twenty-two thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(2267, 13086, 'thirteen thousand eighty-six');\nINSERT INTO t1 VALUES(2268, 20686, 'twenty thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(2269, 8004, 'eight thousand four');\nINSERT INTO t1 VALUES(2270, 90431, 'ninety thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(2271, 58, 'fifty-eight');\nINSERT INTO t1 VALUES(2272, 20304, 'twenty thousand three hundred four');\nINSERT INTO t1 VALUES(2273, 22125, 'twenty-two thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(2274, 94549, 'ninety-four thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(2275, 97808, 'ninety-seven thousand eight hundred eight');\nINSERT INTO t1 VALUES(2276, 71594, 'seventy-one thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(2277, 43354, 'forty-three thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(2278, 49271, 'forty-nine thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(2279, 60907, 'sixty thousand nine hundred seven');\nINSERT INTO t1 VALUES(2280, 2904, 'two thousand nine hundred four');\nINSERT INTO t1 VALUES(2281, 97229, 'ninety-seven thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(2282, 14421, 'fourteen thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(2283, 55245, 'fifty-five thousand two hundred forty-five');\nINSERT INTO t1 VALUES(2284, 69892, 'sixty-nine thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(2285, 5737, 'five thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(2286, 25062, 'twenty-five thousand sixty-two');\nINSERT INTO t1 VALUES(2287, 50889, 'fifty thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(2288, 28869, 'twenty-eight thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(2289, 82860, 'eighty-two thousand eight hundred sixty');\nINSERT INTO t1 VALUES(2290, 89283, 'eighty-nine thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(2291, 99621, 'ninety-nine thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(2292, 39946, 'thirty-nine thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(2293, 19391, 'nineteen thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(2294, 3698, 'three thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(2295, 78749, 'seventy-eight thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(2296, 2650, 'two thousand six hundred fifty');\nINSERT INTO t1 VALUES(2297, 18805, 'eighteen thousand eight hundred five');\nINSERT INTO t1 VALUES(2298, 11225, 'eleven thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(2299, 17736, 'seventeen thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(2300, 73225, 'seventy-three thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(2301, 58326, 'fifty-eight thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(2302, 3980, 'three thousand nine hundred eighty');\nINSERT INTO t1 VALUES(2303, 57258, 'fifty-seven thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(2304, 52450, 'fifty-two thousand four hundred fifty');\nINSERT INTO t1 VALUES(2305, 47560, 'forty-seven thousand five hundred sixty');\nINSERT INTO t1 VALUES(2306, 13561, 'thirteen thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(2307, 62661, 'sixty-two thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(2308, 37651, 'thirty-seven thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(2309, 60017, 'sixty thousand seventeen');\nINSERT INTO t1 VALUES(2310, 17392, 'seventeen thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(2311, 26290, 'twenty-six thousand two hundred ninety');\nINSERT INTO t1 VALUES(2312, 22235, 'twenty-two thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(2313, 66270, 'sixty-six thousand two hundred seventy');\nINSERT INTO t1 VALUES(2314, 20680, 'twenty thousand six hundred eighty');\nINSERT INTO t1 VALUES(2315, 10520, 'ten thousand five hundred twenty');\nINSERT INTO t1 VALUES(2316, 58415, 'fifty-eight thousand four hundred fifteen');\nINSERT INTO t1 VALUES(2317, 82197, 'eighty-two thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(2318, 29506, 'twenty-nine thousand five hundred six');\nINSERT INTO t1 VALUES(2319, 72964, 'seventy-two thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(2320, 90567, 'ninety thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(2321, 45760, 'forty-five thousand seven hundred sixty');\nINSERT INTO t1 VALUES(2322, 71739, 'seventy-one thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(2323, 9592, 'nine thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(2324, 27415, 'twenty-seven thousand four hundred fifteen');\nINSERT INTO t1 VALUES(2325, 62337, 'sixty-two thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(2326, 81689, 'eighty-one thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(2327, 45573, 'forty-five thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(2328, 68144, 'sixty-eight thousand one hundred forty-four');\nINSERT INTO t1 VALUES(2329, 32860, 'thirty-two thousand eight hundred sixty');\nINSERT INTO t1 VALUES(2330, 56517, 'fifty-six thousand five hundred seventeen');\nINSERT INTO t1 VALUES(2331, 68861, 'sixty-eight thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(2332, 41858, 'forty-one thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(2333, 78410, 'seventy-eight thousand four hundred ten');\nINSERT INTO t1 VALUES(2334, 28237, 'twenty-eight thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(2335, 8088, 'eight thousand eighty-eight');\nINSERT INTO t1 VALUES(2336, 42499, 'forty-two thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(2337, 7713, 'seven thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(2338, 20191, 'twenty thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(2339, 1775, 'one thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(2340, 7129, 'seven thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(2341, 11178, 'eleven thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(2342, 49892, 'forty-nine thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(2343, 33058, 'thirty-three thousand fifty-eight');\nINSERT INTO t1 VALUES(2344, 67220, 'sixty-seven thousand two hundred twenty');\nINSERT INTO t1 VALUES(2345, 58015, 'fifty-eight thousand fifteen');\nINSERT INTO t1 VALUES(2346, 38057, 'thirty-eight thousand fifty-seven');\nINSERT INTO t1 VALUES(2347, 4161, 'four thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(2348, 25537, 'twenty-five thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(2349, 41878, 'forty-one thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(2350, 83886, 'eighty-three thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(2351, 98891, 'ninety-eight thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(2352, 47779, 'forty-seven thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(2353, 58461, 'fifty-eight thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(2354, 30455, 'thirty thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(2355, 27043, 'twenty-seven thousand forty-three');\nINSERT INTO t1 VALUES(2356, 59128, 'fifty-nine thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(2357, 97822, 'ninety-seven thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(2358, 77581, 'seventy-seven thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(2359, 4331, 'four thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(2360, 8507, 'eight thousand five hundred seven');\nINSERT INTO t1 VALUES(2361, 99399, 'ninety-nine thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(2362, 51476, 'fifty-one thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(2363, 53200, 'fifty-three thousand two hundred');\nINSERT INTO t1 VALUES(2364, 13266, 'thirteen thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(2365, 15702, 'fifteen thousand seven hundred two');\nINSERT INTO t1 VALUES(2366, 11484, 'eleven thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(2367, 900, 'nine hundred');\nINSERT INTO t1 VALUES(2368, 16150, 'sixteen thousand one hundred fifty');\nINSERT INTO t1 VALUES(2369, 93615, 'ninety-three thousand six hundred fifteen');\nINSERT INTO t1 VALUES(2370, 1615, 'one thousand six hundred fifteen');\nINSERT INTO t1 VALUES(2371, 28996, 'twenty-eight thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(2372, 56584, 'fifty-six thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(2373, 11800, 'eleven thousand eight hundred');\nINSERT INTO t1 VALUES(2374, 37889, 'thirty-seven thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(2375, 72762, 'seventy-two thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(2376, 7831, 'seven thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(2377, 35280, 'thirty-five thousand two hundred eighty');\nINSERT INTO t1 VALUES(2378, 50068, 'fifty thousand sixty-eight');\nINSERT INTO t1 VALUES(2379, 83693, 'eighty-three thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(2380, 59865, 'fifty-nine thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(2381, 10358, 'ten thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(2382, 16362, 'sixteen thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(2383, 84725, 'eighty-four thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(2384, 35300, 'thirty-five thousand three hundred');\nINSERT INTO t1 VALUES(2385, 74518, 'seventy-four thousand five hundred eighteen');\nINSERT INTO t1 VALUES(2386, 61006, 'sixty-one thousand six');\nINSERT INTO t1 VALUES(2387, 12851, 'twelve thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(2388, 24086, 'twenty-four thousand eighty-six');\nINSERT INTO t1 VALUES(2389, 22433, 'twenty-two thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(2390, 15308, 'fifteen thousand three hundred eight');\nINSERT INTO t1 VALUES(2391, 79011, 'seventy-nine thousand eleven');\nINSERT INTO t1 VALUES(2392, 10864, 'ten thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(2393, 18549, 'eighteen thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(2394, 17322, 'seventeen thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(2395, 29213, 'twenty-nine thousand two hundred thirteen');\nINSERT INTO t1 VALUES(2396, 1653, 'one thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(2397, 95919, 'ninety-five thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(2398, 26201, 'twenty-six thousand two hundred one');\nINSERT INTO t1 VALUES(2399, 73906, 'seventy-three thousand nine hundred six');\nINSERT INTO t1 VALUES(2400, 15889, 'fifteen thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(2401, 15530, 'fifteen thousand five hundred thirty');\nINSERT INTO t1 VALUES(2402, 34907, 'thirty-four thousand nine hundred seven');\nINSERT INTO t1 VALUES(2403, 22382, 'twenty-two thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(2404, 14112, 'fourteen thousand one hundred twelve');\nINSERT INTO t1 VALUES(2405, 64721, 'sixty-four thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(2406, 3153, 'three thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(2407, 3035, 'three thousand thirty-five');\nINSERT INTO t1 VALUES(2408, 55440, 'fifty-five thousand four hundred forty');\nINSERT INTO t1 VALUES(2409, 69326, 'sixty-nine thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(2410, 23841, 'twenty-three thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(2411, 15007, 'fifteen thousand seven');\nINSERT INTO t1 VALUES(2412, 19219, 'nineteen thousand two hundred nineteen');\nINSERT INTO t1 VALUES(2413, 51376, 'fifty-one thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(2414, 35692, 'thirty-five thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(2415, 55305, 'fifty-five thousand three hundred five');\nINSERT INTO t1 VALUES(2416, 97024, 'ninety-seven thousand twenty-four');\nINSERT INTO t1 VALUES(2417, 12411, 'twelve thousand four hundred eleven');\nINSERT INTO t1 VALUES(2418, 39889, 'thirty-nine thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(2419, 5699, 'five thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(2420, 84155, 'eighty-four thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(2421, 90607, 'ninety thousand six hundred seven');\nINSERT INTO t1 VALUES(2422, 69467, 'sixty-nine thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(2423, 58013, 'fifty-eight thousand thirteen');\nINSERT INTO t1 VALUES(2424, 3519, 'three thousand five hundred nineteen');\nINSERT INTO t1 VALUES(2425, 96453, 'ninety-six thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(2426, 87649, 'eighty-seven thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(2427, 83414, 'eighty-three thousand four hundred fourteen');\nINSERT INTO t1 VALUES(2428, 92843, 'ninety-two thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(2429, 32042, 'thirty-two thousand forty-two');\nINSERT INTO t1 VALUES(2430, 12308, 'twelve thousand three hundred eight');\nINSERT INTO t1 VALUES(2431, 54515, 'fifty-four thousand five hundred fifteen');\nINSERT INTO t1 VALUES(2432, 2344, 'two thousand three hundred forty-four');\nINSERT INTO t1 VALUES(2433, 2867, 'two thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(2434, 96731, 'ninety-six thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(2435, 30907, 'thirty thousand nine hundred seven');\nINSERT INTO t1 VALUES(2436, 15286, 'fifteen thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(2437, 11164, 'eleven thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(2438, 31873, 'thirty-one thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(2439, 78681, 'seventy-eight thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(2440, 4509, 'four thousand five hundred nine');\nINSERT INTO t1 VALUES(2441, 45499, 'forty-five thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(2442, 49464, 'forty-nine thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(2443, 91260, 'ninety-one thousand two hundred sixty');\nINSERT INTO t1 VALUES(2444, 30905, 'thirty thousand nine hundred five');\nINSERT INTO t1 VALUES(2445, 86356, 'eighty-six thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(2446, 86433, 'eighty-six thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(2447, 48148, 'forty-eight thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(2448, 89993, 'eighty-nine thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(2449, 56655, 'fifty-six thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(2450, 81280, 'eighty-one thousand two hundred eighty');\nINSERT INTO t1 VALUES(2451, 79133, 'seventy-nine thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(2452, 75462, 'seventy-five thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(2453, 10338, 'ten thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(2454, 23459, 'twenty-three thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(2455, 51911, 'fifty-one thousand nine hundred eleven');\nINSERT INTO t1 VALUES(2456, 17794, 'seventeen thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(2457, 89526, 'eighty-nine thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(2458, 33314, 'thirty-three thousand three hundred fourteen');\nINSERT INTO t1 VALUES(2459, 52183, 'fifty-two thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(2460, 16504, 'sixteen thousand five hundred four');\nINSERT INTO t1 VALUES(2461, 70874, 'seventy thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(2462, 96805, 'ninety-six thousand eight hundred five');\nINSERT INTO t1 VALUES(2463, 56528, 'fifty-six thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(2464, 85960, 'eighty-five thousand nine hundred sixty');\nINSERT INTO t1 VALUES(2465, 72538, 'seventy-two thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(2466, 62462, 'sixty-two thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(2467, 49864, 'forty-nine thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(2468, 61035, 'sixty-one thousand thirty-five');\nINSERT INTO t1 VALUES(2469, 49017, 'forty-nine thousand seventeen');\nINSERT INTO t1 VALUES(2470, 71323, 'seventy-one thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(2471, 55874, 'fifty-five thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(2472, 10485, 'ten thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(2473, 9879, 'nine thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(2474, 80428, 'eighty thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(2475, 14950, 'fourteen thousand nine hundred fifty');\nINSERT INTO t1 VALUES(2476, 79110, 'seventy-nine thousand one hundred ten');\nINSERT INTO t1 VALUES(2477, 12431, 'twelve thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(2478, 7210, 'seven thousand two hundred ten');\nINSERT INTO t1 VALUES(2479, 54432, 'fifty-four thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(2480, 79469, 'seventy-nine thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(2481, 91597, 'ninety-one thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(2482, 66429, 'sixty-six thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(2483, 59248, 'fifty-nine thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(2484, 64539, 'sixty-four thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(2485, 87603, 'eighty-seven thousand six hundred three');\nINSERT INTO t1 VALUES(2486, 27231, 'twenty-seven thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(2487, 59204, 'fifty-nine thousand two hundred four');\nINSERT INTO t1 VALUES(2488, 28515, 'twenty-eight thousand five hundred fifteen');\nINSERT INTO t1 VALUES(2489, 50385, 'fifty thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(2490, 62834, 'sixty-two thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(2491, 13068, 'thirteen thousand sixty-eight');\nINSERT INTO t1 VALUES(2492, 63254, 'sixty-three thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(2493, 27861, 'twenty-seven thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(2494, 6889, 'six thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(2495, 12416, 'twelve thousand four hundred sixteen');\nINSERT INTO t1 VALUES(2496, 48031, 'forty-eight thousand thirty-one');\nINSERT INTO t1 VALUES(2497, 19282, 'nineteen thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(2498, 16693, 'sixteen thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(2499, 74076, 'seventy-four thousand seventy-six');\nINSERT INTO t1 VALUES(2500, 88162, 'eighty-eight thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(2501, 78640, 'seventy-eight thousand six hundred forty');\nINSERT INTO t1 VALUES(2502, 81022, 'eighty-one thousand twenty-two');\nINSERT INTO t1 VALUES(2503, 99539, 'ninety-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(2504, 9874, 'nine thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(2505, 73968, 'seventy-three thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(2506, 13400, 'thirteen thousand four hundred');\nINSERT INTO t1 VALUES(2507, 66477, 'sixty-six thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(2508, 533, 'five hundred thirty-three');\nINSERT INTO t1 VALUES(2509, 48806, 'forty-eight thousand eight hundred six');\nINSERT INTO t1 VALUES(2510, 83847, 'eighty-three thousand eight hundred forty-seven');\nINSERT INTO t1 VALUES(2511, 54325, 'fifty-four thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(2512, 88430, 'eighty-eight thousand four hundred thirty');\nINSERT INTO t1 VALUES(2513, 12820, 'twelve thousand eight hundred twenty');\nINSERT INTO t1 VALUES(2514, 78692, 'seventy-eight thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(2515, 80277, 'eighty thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(2516, 16435, 'sixteen thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(2517, 48009, 'forty-eight thousand nine');\nINSERT INTO t1 VALUES(2518, 84351, 'eighty-four thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(2519, 86561, 'eighty-six thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(2520, 55963, 'fifty-five thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(2521, 78525, 'seventy-eight thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(2522, 80180, 'eighty thousand one hundred eighty');\nINSERT INTO t1 VALUES(2523, 55281, 'fifty-five thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(2524, 47920, 'forty-seven thousand nine hundred twenty');\nINSERT INTO t1 VALUES(2525, 71791, 'seventy-one thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(2526, 88415, 'eighty-eight thousand four hundred fifteen');\nINSERT INTO t1 VALUES(2527, 98768, 'ninety-eight thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(2528, 13409, 'thirteen thousand four hundred nine');\nINSERT INTO t1 VALUES(2529, 79920, 'seventy-nine thousand nine hundred twenty');\nINSERT INTO t1 VALUES(2530, 58758, 'fifty-eight thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(2531, 35392, 'thirty-five thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(2532, 31261, 'thirty-one thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(2533, 78315, 'seventy-eight thousand three hundred fifteen');\nINSERT INTO t1 VALUES(2534, 7461, 'seven thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(2535, 33520, 'thirty-three thousand five hundred twenty');\nINSERT INTO t1 VALUES(2536, 49764, 'forty-nine thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(2537, 37906, 'thirty-seven thousand nine hundred six');\nINSERT INTO t1 VALUES(2538, 6997, 'six thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(2539, 81872, 'eighty-one thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(2540, 74836, 'seventy-four thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(2541, 92051, 'ninety-two thousand fifty-one');\nINSERT INTO t1 VALUES(2542, 40503, 'forty thousand five hundred three');\nINSERT INTO t1 VALUES(2543, 46298, 'forty-six thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(2544, 27617, 'twenty-seven thousand six hundred seventeen');\nINSERT INTO t1 VALUES(2545, 29551, 'twenty-nine thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(2546, 7529, 'seven thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(2547, 56522, 'fifty-six thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(2548, 5626, 'five thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(2549, 2254, 'two thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(2550, 46069, 'forty-six thousand sixty-nine');\nINSERT INTO t1 VALUES(2551, 9090, 'nine thousand ninety');\nINSERT INTO t1 VALUES(2552, 86773, 'eighty-six thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(2553, 99205, 'ninety-nine thousand two hundred five');\nINSERT INTO t1 VALUES(2554, 20579, 'twenty thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(2555, 64280, 'sixty-four thousand two hundred eighty');\nINSERT INTO t1 VALUES(2556, 87563, 'eighty-seven thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(2557, 4312, 'four thousand three hundred twelve');\nINSERT INTO t1 VALUES(2558, 6025, 'six thousand twenty-five');\nINSERT INTO t1 VALUES(2559, 78763, 'seventy-eight thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(2560, 26154, 'twenty-six thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(2561, 72939, 'seventy-two thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(2562, 99853, 'ninety-nine thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(2563, 65317, 'sixty-five thousand three hundred seventeen');\nINSERT INTO t1 VALUES(2564, 57917, 'fifty-seven thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(2565, 77517, 'seventy-seven thousand five hundred seventeen');\nINSERT INTO t1 VALUES(2566, 73037, 'seventy-three thousand thirty-seven');\nINSERT INTO t1 VALUES(2567, 38481, 'thirty-eight thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(2568, 22911, 'twenty-two thousand nine hundred eleven');\nINSERT INTO t1 VALUES(2569, 63676, 'sixty-three thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(2570, 56928, 'fifty-six thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(2571, 36467, 'thirty-six thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(2572, 44792, 'forty-four thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(2573, 92596, 'ninety-two thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(2574, 17935, 'seventeen thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(2575, 97359, 'ninety-seven thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(2576, 91776, 'ninety-one thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(2577, 31009, 'thirty-one thousand nine');\nINSERT INTO t1 VALUES(2578, 72743, 'seventy-two thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(2579, 69918, 'sixty-nine thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(2580, 83414, 'eighty-three thousand four hundred fourteen');\nINSERT INTO t1 VALUES(2581, 92738, 'ninety-two thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(2582, 72964, 'seventy-two thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(2583, 88476, 'eighty-eight thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(2584, 67391, 'sixty-seven thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(2585, 56497, 'fifty-six thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(2586, 60464, 'sixty thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(2587, 37357, 'thirty-seven thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(2588, 41958, 'forty-one thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(2589, 25032, 'twenty-five thousand thirty-two');\nINSERT INTO t1 VALUES(2590, 83740, 'eighty-three thousand seven hundred forty');\nINSERT INTO t1 VALUES(2591, 53590, 'fifty-three thousand five hundred ninety');\nINSERT INTO t1 VALUES(2592, 71491, 'seventy-one thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(2593, 14785, 'fourteen thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(2594, 41600, 'forty-one thousand six hundred');\nINSERT INTO t1 VALUES(2595, 38531, 'thirty-eight thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(2596, 71601, 'seventy-one thousand six hundred one');\nINSERT INTO t1 VALUES(2597, 96837, 'ninety-six thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(2598, 3363, 'three thousand three hundred sixty-three');\nINSERT INTO t1 VALUES(2599, 64002, 'sixty-four thousand two');\nINSERT INTO t1 VALUES(2600, 89915, 'eighty-nine thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(2601, 95469, 'ninety-five thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(2602, 44288, 'forty-four thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(2603, 85965, 'eighty-five thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(2604, 91882, 'ninety-one thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(2605, 513, 'five hundred thirteen');\nINSERT INTO t1 VALUES(2606, 5732, 'five thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(2607, 96851, 'ninety-six thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(2608, 91170, 'ninety-one thousand one hundred seventy');\nINSERT INTO t1 VALUES(2609, 1228, 'one thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(2610, 82357, 'eighty-two thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(2611, 6670, 'six thousand six hundred seventy');\nINSERT INTO t1 VALUES(2612, 26586, 'twenty-six thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(2613, 79482, 'seventy-nine thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(2614, 55343, 'fifty-five thousand three hundred forty-three');\nINSERT INTO t1 VALUES(2615, 20144, 'twenty thousand one hundred forty-four');\nINSERT INTO t1 VALUES(2616, 11751, 'eleven thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(2617, 60610, 'sixty thousand six hundred ten');\nINSERT INTO t1 VALUES(2618, 56404, 'fifty-six thousand four hundred four');\nINSERT INTO t1 VALUES(2619, 80658, 'eighty thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(2620, 8435, 'eight thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(2621, 46351, 'forty-six thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(2622, 99832, 'ninety-nine thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(2623, 6900, 'six thousand nine hundred');\nINSERT INTO t1 VALUES(2624, 7675, 'seven thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(2625, 55956, 'fifty-five thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(2626, 37113, 'thirty-seven thousand one hundred thirteen');\nINSERT INTO t1 VALUES(2627, 4972, 'four thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(2628, 18256, 'eighteen thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(2629, 40221, 'forty thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(2630, 95172, 'ninety-five thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(2631, 92335, 'ninety-two thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(2632, 84250, 'eighty-four thousand two hundred fifty');\nINSERT INTO t1 VALUES(2633, 62240, 'sixty-two thousand two hundred forty');\nINSERT INTO t1 VALUES(2634, 83961, 'eighty-three thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(2635, 43912, 'forty-three thousand nine hundred twelve');\nINSERT INTO t1 VALUES(2636, 7170, 'seven thousand one hundred seventy');\nINSERT INTO t1 VALUES(2637, 73714, 'seventy-three thousand seven hundred fourteen');\nINSERT INTO t1 VALUES(2638, 53959, 'fifty-three thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(2639, 61730, 'sixty-one thousand seven hundred thirty');\nINSERT INTO t1 VALUES(2640, 39655, 'thirty-nine thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(2641, 93862, 'ninety-three thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(2642, 45652, 'forty-five thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(2643, 7056, 'seven thousand fifty-six');\nINSERT INTO t1 VALUES(2644, 1046, 'one thousand forty-six');\nINSERT INTO t1 VALUES(2645, 95743, 'ninety-five thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(2646, 70708, 'seventy thousand seven hundred eight');\nINSERT INTO t1 VALUES(2647, 76902, 'seventy-six thousand nine hundred two');\nINSERT INTO t1 VALUES(2648, 3525, 'three thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(2649, 65048, 'sixty-five thousand forty-eight');\nINSERT INTO t1 VALUES(2650, 91880, 'ninety-one thousand eight hundred eighty');\nINSERT INTO t1 VALUES(2651, 80301, 'eighty thousand three hundred one');\nINSERT INTO t1 VALUES(2652, 25464, 'twenty-five thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(2653, 90215, 'ninety thousand two hundred fifteen');\nINSERT INTO t1 VALUES(2654, 88511, 'eighty-eight thousand five hundred eleven');\nINSERT INTO t1 VALUES(2655, 55773, 'fifty-five thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(2656, 29924, 'twenty-nine thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(2657, 53921, 'fifty-three thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(2658, 90428, 'ninety thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(2659, 88357, 'eighty-eight thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(2660, 59997, 'fifty-nine thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(2661, 17591, 'seventeen thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(2662, 54844, 'fifty-four thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(2663, 35516, 'thirty-five thousand five hundred sixteen');\nINSERT INTO t1 VALUES(2664, 5025, 'five thousand twenty-five');\nINSERT INTO t1 VALUES(2665, 54406, 'fifty-four thousand four hundred six');\nINSERT INTO t1 VALUES(2666, 69939, 'sixty-nine thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(2667, 92861, 'ninety-two thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(2668, 11765, 'eleven thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(2669, 59087, 'fifty-nine thousand eighty-seven');\nINSERT INTO t1 VALUES(2670, 70269, 'seventy thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(2671, 80231, 'eighty thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(2672, 35475, 'thirty-five thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(2673, 82681, 'eighty-two thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(2674, 2067, 'two thousand sixty-seven');\nINSERT INTO t1 VALUES(2675, 49348, 'forty-nine thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(2676, 36543, 'thirty-six thousand five hundred forty-three');\nINSERT INTO t1 VALUES(2677, 86308, 'eighty-six thousand three hundred eight');\nINSERT INTO t1 VALUES(2678, 43122, 'forty-three thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(2679, 81938, 'eighty-one thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(2680, 24728, 'twenty-four thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(2681, 91959, 'ninety-one thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(2682, 74241, 'seventy-four thousand two hundred forty-one');\nINSERT INTO t1 VALUES(2683, 48075, 'forty-eight thousand seventy-five');\nINSERT INTO t1 VALUES(2684, 72660, 'seventy-two thousand six hundred sixty');\nINSERT INTO t1 VALUES(2685, 33248, 'thirty-three thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(2686, 4872, 'four thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(2687, 31241, 'thirty-one thousand two hundred forty-one');\nINSERT INTO t1 VALUES(2688, 34133, 'thirty-four thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(2689, 60159, 'sixty thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(2690, 7162, 'seven thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(2691, 78309, 'seventy-eight thousand three hundred nine');\nINSERT INTO t1 VALUES(2692, 50699, 'fifty thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(2693, 6471, 'six thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(2694, 90614, 'ninety thousand six hundred fourteen');\nINSERT INTO t1 VALUES(2695, 82933, 'eighty-two thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(2696, 82273, 'eighty-two thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(2697, 25635, 'twenty-five thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(2698, 35610, 'thirty-five thousand six hundred ten');\nINSERT INTO t1 VALUES(2699, 98912, 'ninety-eight thousand nine hundred twelve');\nINSERT INTO t1 VALUES(2700, 91444, 'ninety-one thousand four hundred forty-four');\nINSERT INTO t1 VALUES(2701, 1914, 'one thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(2702, 10589, 'ten thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(2703, 34346, 'thirty-four thousand three hundred forty-six');\nINSERT INTO t1 VALUES(2704, 7228, 'seven thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(2705, 1019, 'one thousand nineteen');\nINSERT INTO t1 VALUES(2706, 26110, 'twenty-six thousand one hundred ten');\nINSERT INTO t1 VALUES(2707, 97745, 'ninety-seven thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(2708, 57434, 'fifty-seven thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(2709, 65242, 'sixty-five thousand two hundred forty-two');\nINSERT INTO t1 VALUES(2710, 65699, 'sixty-five thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(2711, 19845, 'nineteen thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(2712, 57512, 'fifty-seven thousand five hundred twelve');\nINSERT INTO t1 VALUES(2713, 14301, 'fourteen thousand three hundred one');\nINSERT INTO t1 VALUES(2714, 23734, 'twenty-three thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(2715, 14007, 'fourteen thousand seven');\nINSERT INTO t1 VALUES(2716, 70178, 'seventy thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(2717, 4880, 'four thousand eight hundred eighty');\nINSERT INTO t1 VALUES(2718, 86278, 'eighty-six thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(2719, 53940, 'fifty-three thousand nine hundred forty');\nINSERT INTO t1 VALUES(2720, 18788, 'eighteen thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(2721, 90716, 'ninety thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(2722, 54836, 'fifty-four thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(2723, 11911, 'eleven thousand nine hundred eleven');\nINSERT INTO t1 VALUES(2724, 39450, 'thirty-nine thousand four hundred fifty');\nINSERT INTO t1 VALUES(2725, 84291, 'eighty-four thousand two hundred ninety-one');\nINSERT INTO t1 VALUES(2726, 72900, 'seventy-two thousand nine hundred');\nINSERT INTO t1 VALUES(2727, 27958, 'twenty-seven thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(2728, 54297, 'fifty-four thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(2729, 11001, 'eleven thousand one');\nINSERT INTO t1 VALUES(2730, 58346, 'fifty-eight thousand three hundred forty-six');\nINSERT INTO t1 VALUES(2731, 11777, 'eleven thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(2732, 46942, 'forty-six thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(2733, 54566, 'fifty-four thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(2734, 70837, 'seventy thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(2735, 63581, 'sixty-three thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(2736, 37599, 'thirty-seven thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(2737, 44741, 'forty-four thousand seven hundred forty-one');\nINSERT INTO t1 VALUES(2738, 84546, 'eighty-four thousand five hundred forty-six');\nINSERT INTO t1 VALUES(2739, 23859, 'twenty-three thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(2740, 85683, 'eighty-five thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(2741, 13524, 'thirteen thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(2742, 34650, 'thirty-four thousand six hundred fifty');\nINSERT INTO t1 VALUES(2743, 62314, 'sixty-two thousand three hundred fourteen');\nINSERT INTO t1 VALUES(2744, 91312, 'ninety-one thousand three hundred twelve');\nINSERT INTO t1 VALUES(2745, 64279, 'sixty-four thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(2746, 87514, 'eighty-seven thousand five hundred fourteen');\nINSERT INTO t1 VALUES(2747, 30318, 'thirty thousand three hundred eighteen');\nINSERT INTO t1 VALUES(2748, 22735, 'twenty-two thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(2749, 29545, 'twenty-nine thousand five hundred forty-five');\nINSERT INTO t1 VALUES(2750, 73394, 'seventy-three thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(2751, 80392, 'eighty thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(2752, 1304, 'one thousand three hundred four');\nINSERT INTO t1 VALUES(2753, 1972, 'one thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(2754, 33235, 'thirty-three thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(2755, 18744, 'eighteen thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(2756, 77012, 'seventy-seven thousand twelve');\nINSERT INTO t1 VALUES(2757, 56610, 'fifty-six thousand six hundred ten');\nINSERT INTO t1 VALUES(2758, 58529, 'fifty-eight thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(2759, 57360, 'fifty-seven thousand three hundred sixty');\nINSERT INTO t1 VALUES(2760, 44061, 'forty-four thousand sixty-one');\nINSERT INTO t1 VALUES(2761, 66237, 'sixty-six thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(2762, 6784, 'six thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(2763, 61316, 'sixty-one thousand three hundred sixteen');\nINSERT INTO t1 VALUES(2764, 20221, 'twenty thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(2765, 36549, 'thirty-six thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(2766, 64468, 'sixty-four thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(2767, 43869, 'forty-three thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(2768, 15308, 'fifteen thousand three hundred eight');\nINSERT INTO t1 VALUES(2769, 24506, 'twenty-four thousand five hundred six');\nINSERT INTO t1 VALUES(2770, 69527, 'sixty-nine thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(2771, 44500, 'forty-four thousand five hundred');\nINSERT INTO t1 VALUES(2772, 59079, 'fifty-nine thousand seventy-nine');\nINSERT INTO t1 VALUES(2773, 20781, 'twenty thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(2774, 68744, 'sixty-eight thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(2775, 10978, 'ten thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(2776, 8299, 'eight thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(2777, 91620, 'ninety-one thousand six hundred twenty');\nINSERT INTO t1 VALUES(2778, 41435, 'forty-one thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(2779, 99436, 'ninety-nine thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(2780, 36081, 'thirty-six thousand eighty-one');\nINSERT INTO t1 VALUES(2781, 24092, 'twenty-four thousand ninety-two');\nINSERT INTO t1 VALUES(2782, 90655, 'ninety thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(2783, 28667, 'twenty-eight thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(2784, 81617, 'eighty-one thousand six hundred seventeen');\nINSERT INTO t1 VALUES(2785, 28545, 'twenty-eight thousand five hundred forty-five');\nINSERT INTO t1 VALUES(2786, 47984, 'forty-seven thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(2787, 77335, 'seventy-seven thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(2788, 62412, 'sixty-two thousand four hundred twelve');\nINSERT INTO t1 VALUES(2789, 26254, 'twenty-six thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(2790, 41027, 'forty-one thousand twenty-seven');\nINSERT INTO t1 VALUES(2791, 57068, 'fifty-seven thousand sixty-eight');\nINSERT INTO t1 VALUES(2792, 39997, 'thirty-nine thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(2793, 70968, 'seventy thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(2794, 25796, 'twenty-five thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(2795, 10287, 'ten thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(2796, 51979, 'fifty-one thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(2797, 68364, 'sixty-eight thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(2798, 48556, 'forty-eight thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(2799, 26209, 'twenty-six thousand two hundred nine');\nINSERT INTO t1 VALUES(2800, 93800, 'ninety-three thousand eight hundred');\nINSERT INTO t1 VALUES(2801, 73846, 'seventy-three thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(2802, 80377, 'eighty thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(2803, 61989, 'sixty-one thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(2804, 94283, 'ninety-four thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(2805, 88022, 'eighty-eight thousand twenty-two');\nINSERT INTO t1 VALUES(2806, 25041, 'twenty-five thousand forty-one');\nINSERT INTO t1 VALUES(2807, 83727, 'eighty-three thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(2808, 93859, 'ninety-three thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(2809, 98330, 'ninety-eight thousand three hundred thirty');\nINSERT INTO t1 VALUES(2810, 37232, 'thirty-seven thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(2811, 20612, 'twenty thousand six hundred twelve');\nINSERT INTO t1 VALUES(2812, 35622, 'thirty-five thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(2813, 54498, 'fifty-four thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(2814, 56241, 'fifty-six thousand two hundred forty-one');\nINSERT INTO t1 VALUES(2815, 69539, 'sixty-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(2816, 34584, 'thirty-four thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(2817, 21286, 'twenty-one thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(2818, 81867, 'eighty-one thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(2819, 92549, 'ninety-two thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(2820, 34761, 'thirty-four thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(2821, 23623, 'twenty-three thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(2822, 54534, 'fifty-four thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(2823, 88209, 'eighty-eight thousand two hundred nine');\nINSERT INTO t1 VALUES(2824, 4275, 'four thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(2825, 21697, 'twenty-one thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(2826, 44522, 'forty-four thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(2827, 96997, 'ninety-six thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(2828, 38797, 'thirty-eight thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(2829, 13909, 'thirteen thousand nine hundred nine');\nINSERT INTO t1 VALUES(2830, 31124, 'thirty-one thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(2831, 47155, 'forty-seven thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(2832, 55159, 'fifty-five thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(2833, 30840, 'thirty thousand eight hundred forty');\nINSERT INTO t1 VALUES(2834, 14832, 'fourteen thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(2835, 33261, 'thirty-three thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(2836, 1953, 'one thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(2837, 47056, 'forty-seven thousand fifty-six');\nINSERT INTO t1 VALUES(2838, 39865, 'thirty-nine thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(2839, 67819, 'sixty-seven thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(2840, 83042, 'eighty-three thousand forty-two');\nINSERT INTO t1 VALUES(2841, 5950, 'five thousand nine hundred fifty');\nINSERT INTO t1 VALUES(2842, 46491, 'forty-six thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(2843, 44768, 'forty-four thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(2844, 32746, 'thirty-two thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(2845, 69329, 'sixty-nine thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(2846, 77198, 'seventy-seven thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(2847, 30662, 'thirty thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(2848, 17307, 'seventeen thousand three hundred seven');\nINSERT INTO t1 VALUES(2849, 87105, 'eighty-seven thousand one hundred five');\nINSERT INTO t1 VALUES(2850, 87224, 'eighty-seven thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(2851, 61913, 'sixty-one thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(2852, 97151, 'ninety-seven thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(2853, 46319, 'forty-six thousand three hundred nineteen');\nINSERT INTO t1 VALUES(2854, 76826, 'seventy-six thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(2855, 32773, 'thirty-two thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(2856, 96352, 'ninety-six thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(2857, 59592, 'fifty-nine thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(2858, 11789, 'eleven thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(2859, 87608, 'eighty-seven thousand six hundred eight');\nINSERT INTO t1 VALUES(2860, 32504, 'thirty-two thousand five hundred four');\nINSERT INTO t1 VALUES(2861, 52224, 'fifty-two thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(2862, 13033, 'thirteen thousand thirty-three');\nINSERT INTO t1 VALUES(2863, 18130, 'eighteen thousand one hundred thirty');\nINSERT INTO t1 VALUES(2864, 43981, 'forty-three thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(2865, 31694, 'thirty-one thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(2866, 27764, 'twenty-seven thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(2867, 25600, 'twenty-five thousand six hundred');\nINSERT INTO t1 VALUES(2868, 83350, 'eighty-three thousand three hundred fifty');\nINSERT INTO t1 VALUES(2869, 8467, 'eight thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(2870, 22, 'twenty-two');\nINSERT INTO t1 VALUES(2871, 97092, 'ninety-seven thousand ninety-two');\nINSERT INTO t1 VALUES(2872, 92897, 'ninety-two thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(2873, 24860, 'twenty-four thousand eight hundred sixty');\nINSERT INTO t1 VALUES(2874, 76684, 'seventy-six thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(2875, 14056, 'fourteen thousand fifty-six');\nINSERT INTO t1 VALUES(2876, 58288, 'fifty-eight thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(2877, 5310, 'five thousand three hundred ten');\nINSERT INTO t1 VALUES(2878, 72025, 'seventy-two thousand twenty-five');\nINSERT INTO t1 VALUES(2879, 19352, 'nineteen thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(2880, 47895, 'forty-seven thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(2881, 38089, 'thirty-eight thousand eighty-nine');\nINSERT INTO t1 VALUES(2882, 31143, 'thirty-one thousand one hundred forty-three');\nINSERT INTO t1 VALUES(2883, 98275, 'ninety-eight thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(2884, 91614, 'ninety-one thousand six hundred fourteen');\nINSERT INTO t1 VALUES(2885, 82264, 'eighty-two thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(2886, 88966, 'eighty-eight thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(2887, 75719, 'seventy-five thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(2888, 53874, 'fifty-three thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(2889, 46067, 'forty-six thousand sixty-seven');\nINSERT INTO t1 VALUES(2890, 48904, 'forty-eight thousand nine hundred four');\nINSERT INTO t1 VALUES(2891, 62892, 'sixty-two thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(2892, 20560, 'twenty thousand five hundred sixty');\nINSERT INTO t1 VALUES(2893, 41420, 'forty-one thousand four hundred twenty');\nINSERT INTO t1 VALUES(2894, 97845, 'ninety-seven thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(2895, 54534, 'fifty-four thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(2896, 87467, 'eighty-seven thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(2897, 61667, 'sixty-one thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(2898, 56118, 'fifty-six thousand one hundred eighteen');\nINSERT INTO t1 VALUES(2899, 85435, 'eighty-five thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(2900, 80995, 'eighty thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(2901, 44896, 'forty-four thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(2902, 99980, 'ninety-nine thousand nine hundred eighty');\nINSERT INTO t1 VALUES(2903, 35394, 'thirty-five thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(2904, 1946, 'one thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(2905, 3588, 'three thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(2906, 27511, 'twenty-seven thousand five hundred eleven');\nINSERT INTO t1 VALUES(2907, 48663, 'forty-eight thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(2908, 17795, 'seventeen thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(2909, 85873, 'eighty-five thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(2910, 6776, 'six thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(2911, 46707, 'forty-six thousand seven hundred seven');\nINSERT INTO t1 VALUES(2912, 40473, 'forty thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(2913, 8859, 'eight thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(2914, 69505, 'sixty-nine thousand five hundred five');\nINSERT INTO t1 VALUES(2915, 74686, 'seventy-four thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(2916, 42648, 'forty-two thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(2917, 7773, 'seven thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(2918, 8441, 'eight thousand four hundred forty-one');\nINSERT INTO t1 VALUES(2919, 22345, 'twenty-two thousand three hundred forty-five');\nINSERT INTO t1 VALUES(2920, 53029, 'fifty-three thousand twenty-nine');\nINSERT INTO t1 VALUES(2921, 89687, 'eighty-nine thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(2922, 64761, 'sixty-four thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(2923, 56337, 'fifty-six thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(2924, 42688, 'forty-two thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(2925, 25035, 'twenty-five thousand thirty-five');\nINSERT INTO t1 VALUES(2926, 78707, 'seventy-eight thousand seven hundred seven');\nINSERT INTO t1 VALUES(2927, 38759, 'thirty-eight thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(2928, 14575, 'fourteen thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(2929, 91323, 'ninety-one thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(2930, 95449, 'ninety-five thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(2931, 76876, 'seventy-six thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(2932, 88156, 'eighty-eight thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(2933, 96638, 'ninety-six thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(2934, 25247, 'twenty-five thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(2935, 58527, 'fifty-eight thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(2936, 33099, 'thirty-three thousand ninety-nine');\nINSERT INTO t1 VALUES(2937, 74964, 'seventy-four thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(2938, 8084, 'eight thousand eighty-four');\nINSERT INTO t1 VALUES(2939, 39368, 'thirty-nine thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(2940, 40174, 'forty thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(2941, 80136, 'eighty thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(2942, 60471, 'sixty thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(2943, 26008, 'twenty-six thousand eight');\nINSERT INTO t1 VALUES(2944, 51248, 'fifty-one thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(2945, 66944, 'sixty-six thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(2946, 92287, 'ninety-two thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(2947, 82791, 'eighty-two thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(2948, 98422, 'ninety-eight thousand four hundred twenty-two');\nINSERT INTO t1 VALUES(2949, 33222, 'thirty-three thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(2950, 14882, 'fourteen thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(2951, 21403, 'twenty-one thousand four hundred three');\nINSERT INTO t1 VALUES(2952, 63308, 'sixty-three thousand three hundred eight');\nINSERT INTO t1 VALUES(2953, 40656, 'forty thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(2954, 11428, 'eleven thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(2955, 83807, 'eighty-three thousand eight hundred seven');\nINSERT INTO t1 VALUES(2956, 60876, 'sixty thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(2957, 56542, 'fifty-six thousand five hundred forty-two');\nINSERT INTO t1 VALUES(2958, 71539, 'seventy-one thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(2959, 10641, 'ten thousand six hundred forty-one');\nINSERT INTO t1 VALUES(2960, 88819, 'eighty-eight thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(2961, 69239, 'sixty-nine thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(2962, 68126, 'sixty-eight thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(2963, 66820, 'sixty-six thousand eight hundred twenty');\nINSERT INTO t1 VALUES(2964, 64866, 'sixty-four thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(2965, 26325, 'twenty-six thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(2966, 86336, 'eighty-six thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(2967, 10420, 'ten thousand four hundred twenty');\nINSERT INTO t1 VALUES(2968, 9553, 'nine thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(2969, 21637, 'twenty-one thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(2970, 41903, 'forty-one thousand nine hundred three');\nINSERT INTO t1 VALUES(2971, 99962, 'ninety-nine thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(2972, 75769, 'seventy-five thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(2973, 60806, 'sixty thousand eight hundred six');\nINSERT INTO t1 VALUES(2974, 26107, 'twenty-six thousand one hundred seven');\nINSERT INTO t1 VALUES(2975, 29254, 'twenty-nine thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(2976, 17183, 'seventeen thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(2977, 47675, 'forty-seven thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(2978, 13767, 'thirteen thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(2979, 79748, 'seventy-nine thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(2980, 41941, 'forty-one thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(2981, 40239, 'forty thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(2982, 70511, 'seventy thousand five hundred eleven');\nINSERT INTO t1 VALUES(2983, 9352, 'nine thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(2984, 11430, 'eleven thousand four hundred thirty');\nINSERT INTO t1 VALUES(2985, 64300, 'sixty-four thousand three hundred');\nINSERT INTO t1 VALUES(2986, 95191, 'ninety-five thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(2987, 83780, 'eighty-three thousand seven hundred eighty');\nINSERT INTO t1 VALUES(2988, 55447, 'fifty-five thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(2989, 50702, 'fifty thousand seven hundred two');\nINSERT INTO t1 VALUES(2990, 84622, 'eighty-four thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(2991, 86558, 'eighty-six thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(2992, 52598, 'fifty-two thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(2993, 83168, 'eighty-three thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(2994, 35718, 'thirty-five thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(2995, 62553, 'sixty-two thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(2996, 19984, 'nineteen thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(2997, 41692, 'forty-one thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(2998, 84583, 'eighty-four thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(2999, 33234, 'thirty-three thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(3000, 75997, 'seventy-five thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(3001, 47808, 'forty-seven thousand eight hundred eight');\nINSERT INTO t1 VALUES(3002, 32353, 'thirty-two thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(3003, 36056, 'thirty-six thousand fifty-six');\nINSERT INTO t1 VALUES(3004, 21900, 'twenty-one thousand nine hundred');\nINSERT INTO t1 VALUES(3005, 47434, 'forty-seven thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(3006, 68451, 'sixty-eight thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(3007, 17542, 'seventeen thousand five hundred forty-two');\nINSERT INTO t1 VALUES(3008, 93774, 'ninety-three thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(3009, 20947, 'twenty thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(3010, 43629, 'forty-three thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(3011, 52941, 'fifty-two thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(3012, 22904, 'twenty-two thousand nine hundred four');\nINSERT INTO t1 VALUES(3013, 18116, 'eighteen thousand one hundred sixteen');\nINSERT INTO t1 VALUES(3014, 10455, 'ten thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(3015, 61233, 'sixty-one thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(3016, 35715, 'thirty-five thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(3017, 99297, 'ninety-nine thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(3018, 82878, 'eighty-two thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(3019, 36965, 'thirty-six thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(3020, 84661, 'eighty-four thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(3021, 90683, 'ninety thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(3022, 93476, 'ninety-three thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(3023, 66661, 'sixty-six thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(3024, 25817, 'twenty-five thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(3025, 67874, 'sixty-seven thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(3026, 85845, 'eighty-five thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(3027, 99071, 'ninety-nine thousand seventy-one');\nINSERT INTO t1 VALUES(3028, 82884, 'eighty-two thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(3029, 14816, 'fourteen thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(3030, 96057, 'ninety-six thousand fifty-seven');\nINSERT INTO t1 VALUES(3031, 15376, 'fifteen thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(3032, 30500, 'thirty thousand five hundred');\nINSERT INTO t1 VALUES(3033, 75412, 'seventy-five thousand four hundred twelve');\nINSERT INTO t1 VALUES(3034, 67258, 'sixty-seven thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(3035, 49653, 'forty-nine thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(3036, 28921, 'twenty-eight thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(3037, 18314, 'eighteen thousand three hundred fourteen');\nINSERT INTO t1 VALUES(3038, 63981, 'sixty-three thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(3039, 40320, 'forty thousand three hundred twenty');\nINSERT INTO t1 VALUES(3040, 6617, 'six thousand six hundred seventeen');\nINSERT INTO t1 VALUES(3041, 30613, 'thirty thousand six hundred thirteen');\nINSERT INTO t1 VALUES(3042, 40217, 'forty thousand two hundred seventeen');\nINSERT INTO t1 VALUES(3043, 56853, 'fifty-six thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(3044, 67935, 'sixty-seven thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(3045, 86914, 'eighty-six thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(3046, 60896, 'sixty thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(3047, 5764, 'five thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(3048, 50239, 'fifty thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(3049, 31528, 'thirty-one thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(3050, 91567, 'ninety-one thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(3051, 53082, 'fifty-three thousand eighty-two');\nINSERT INTO t1 VALUES(3052, 42954, 'forty-two thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(3053, 90770, 'ninety thousand seven hundred seventy');\nINSERT INTO t1 VALUES(3054, 67266, 'sixty-seven thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(3055, 86880, 'eighty-six thousand eight hundred eighty');\nINSERT INTO t1 VALUES(3056, 66743, 'sixty-six thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(3057, 82115, 'eighty-two thousand one hundred fifteen');\nINSERT INTO t1 VALUES(3058, 59203, 'fifty-nine thousand two hundred three');\nINSERT INTO t1 VALUES(3059, 40400, 'forty thousand four hundred');\nINSERT INTO t1 VALUES(3060, 65877, 'sixty-five thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(3061, 37296, 'thirty-seven thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(3062, 67067, 'sixty-seven thousand sixty-seven');\nINSERT INTO t1 VALUES(3063, 75397, 'seventy-five thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(3064, 33167, 'thirty-three thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(3065, 47408, 'forty-seven thousand four hundred eight');\nINSERT INTO t1 VALUES(3066, 89159, 'eighty-nine thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(3067, 12855, 'twelve thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(3068, 40880, 'forty thousand eight hundred eighty');\nINSERT INTO t1 VALUES(3069, 2975, 'two thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(3070, 14010, 'fourteen thousand ten');\nINSERT INTO t1 VALUES(3071, 82149, 'eighty-two thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(3072, 56607, 'fifty-six thousand six hundred seven');\nINSERT INTO t1 VALUES(3073, 41564, 'forty-one thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(3074, 8509, 'eight thousand five hundred nine');\nINSERT INTO t1 VALUES(3075, 6809, 'six thousand eight hundred nine');\nINSERT INTO t1 VALUES(3076, 15028, 'fifteen thousand twenty-eight');\nINSERT INTO t1 VALUES(3077, 48596, 'forty-eight thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(3078, 2828, 'two thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(3079, 60184, 'sixty thousand one hundred eighty-four');\nINSERT INTO t1 VALUES(3080, 80079, 'eighty thousand seventy-nine');\nINSERT INTO t1 VALUES(3081, 48943, 'forty-eight thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(3082, 78677, 'seventy-eight thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(3083, 34640, 'thirty-four thousand six hundred forty');\nINSERT INTO t1 VALUES(3084, 46938, 'forty-six thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(3085, 88620, 'eighty-eight thousand six hundred twenty');\nINSERT INTO t1 VALUES(3086, 15941, 'fifteen thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(3087, 21580, 'twenty-one thousand five hundred eighty');\nINSERT INTO t1 VALUES(3088, 84194, 'eighty-four thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(3089, 62923, 'sixty-two thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(3090, 79482, 'seventy-nine thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(3091, 63100, 'sixty-three thousand one hundred');\nINSERT INTO t1 VALUES(3092, 57057, 'fifty-seven thousand fifty-seven');\nINSERT INTO t1 VALUES(3093, 31116, 'thirty-one thousand one hundred sixteen');\nINSERT INTO t1 VALUES(3094, 35886, 'thirty-five thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(3095, 24575, 'twenty-four thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(3096, 97873, 'ninety-seven thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(3097, 47151, 'forty-seven thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(3098, 30725, 'thirty thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(3099, 14514, 'fourteen thousand five hundred fourteen');\nINSERT INTO t1 VALUES(3100, 84870, 'eighty-four thousand eight hundred seventy');\nINSERT INTO t1 VALUES(3101, 10070, 'ten thousand seventy');\nINSERT INTO t1 VALUES(3102, 80557, 'eighty thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(3103, 24250, 'twenty-four thousand two hundred fifty');\nINSERT INTO t1 VALUES(3104, 93539, 'ninety-three thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(3105, 46195, 'forty-six thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(3106, 79024, 'seventy-nine thousand twenty-four');\nINSERT INTO t1 VALUES(3107, 22519, 'twenty-two thousand five hundred nineteen');\nINSERT INTO t1 VALUES(3108, 65780, 'sixty-five thousand seven hundred eighty');\nINSERT INTO t1 VALUES(3109, 74557, 'seventy-four thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(3110, 90927, 'ninety thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(3111, 64063, 'sixty-four thousand sixty-three');\nINSERT INTO t1 VALUES(3112, 46922, 'forty-six thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(3113, 35351, 'thirty-five thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(3114, 92382, 'ninety-two thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(3115, 85375, 'eighty-five thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(3116, 19029, 'nineteen thousand twenty-nine');\nINSERT INTO t1 VALUES(3117, 1584, 'one thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(3118, 3349, 'three thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(3119, 25467, 'twenty-five thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(3120, 96029, 'ninety-six thousand twenty-nine');\nINSERT INTO t1 VALUES(3121, 87012, 'eighty-seven thousand twelve');\nINSERT INTO t1 VALUES(3122, 98017, 'ninety-eight thousand seventeen');\nINSERT INTO t1 VALUES(3123, 48174, 'forty-eight thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(3124, 784, 'seven hundred eighty-four');\nINSERT INTO t1 VALUES(3125, 13437, 'thirteen thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(3126, 4802, 'four thousand eight hundred two');\nINSERT INTO t1 VALUES(3127, 47465, 'forty-seven thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(3128, 24874, 'twenty-four thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(3129, 97082, 'ninety-seven thousand eighty-two');\nINSERT INTO t1 VALUES(3130, 60764, 'sixty thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(3131, 93810, 'ninety-three thousand eight hundred ten');\nINSERT INTO t1 VALUES(3132, 30233, 'thirty thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(3133, 19698, 'nineteen thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(3134, 41100, 'forty-one thousand one hundred');\nINSERT INTO t1 VALUES(3135, 43118, 'forty-three thousand one hundred eighteen');\nINSERT INTO t1 VALUES(3136, 69106, 'sixty-nine thousand one hundred six');\nINSERT INTO t1 VALUES(3137, 86737, 'eighty-six thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(3138, 64907, 'sixty-four thousand nine hundred seven');\nINSERT INTO t1 VALUES(3139, 39652, 'thirty-nine thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(3140, 88407, 'eighty-eight thousand four hundred seven');\nINSERT INTO t1 VALUES(3141, 65893, 'sixty-five thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(3142, 19841, 'nineteen thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(3143, 83030, 'eighty-three thousand thirty');\nINSERT INTO t1 VALUES(3144, 24256, 'twenty-four thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(3145, 75877, 'seventy-five thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(3146, 56330, 'fifty-six thousand three hundred thirty');\nINSERT INTO t1 VALUES(3147, 42869, 'forty-two thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(3148, 10993, 'ten thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(3149, 84509, 'eighty-four thousand five hundred nine');\nINSERT INTO t1 VALUES(3150, 88843, 'eighty-eight thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(3151, 96659, 'ninety-six thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(3152, 65105, 'sixty-five thousand one hundred five');\nINSERT INTO t1 VALUES(3153, 84452, 'eighty-four thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(3154, 8090, 'eight thousand ninety');\nINSERT INTO t1 VALUES(3155, 28271, 'twenty-eight thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(3156, 93653, 'ninety-three thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(3157, 9775, 'nine thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(3158, 54940, 'fifty-four thousand nine hundred forty');\nINSERT INTO t1 VALUES(3159, 34295, 'thirty-four thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(3160, 16142, 'sixteen thousand one hundred forty-two');\nINSERT INTO t1 VALUES(3161, 63747, 'sixty-three thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(3162, 82209, 'eighty-two thousand two hundred nine');\nINSERT INTO t1 VALUES(3163, 21817, 'twenty-one thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(3164, 77795, 'seventy-seven thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(3165, 16802, 'sixteen thousand eight hundred two');\nINSERT INTO t1 VALUES(3166, 42390, 'forty-two thousand three hundred ninety');\nINSERT INTO t1 VALUES(3167, 82059, 'eighty-two thousand fifty-nine');\nINSERT INTO t1 VALUES(3168, 23070, 'twenty-three thousand seventy');\nINSERT INTO t1 VALUES(3169, 15667, 'fifteen thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(3170, 96879, 'ninety-six thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(3171, 28685, 'twenty-eight thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(3172, 82046, 'eighty-two thousand forty-six');\nINSERT INTO t1 VALUES(3173, 72871, 'seventy-two thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(3174, 73287, 'seventy-three thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(3175, 91098, 'ninety-one thousand ninety-eight');\nINSERT INTO t1 VALUES(3176, 43797, 'forty-three thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(3177, 49050, 'forty-nine thousand fifty');\nINSERT INTO t1 VALUES(3178, 78068, 'seventy-eight thousand sixty-eight');\nINSERT INTO t1 VALUES(3179, 73195, 'seventy-three thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(3180, 46730, 'forty-six thousand seven hundred thirty');\nINSERT INTO t1 VALUES(3181, 7481, 'seven thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(3182, 85843, 'eighty-five thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(3183, 86586, 'eighty-six thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(3184, 77436, 'seventy-seven thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(3185, 44135, 'forty-four thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(3186, 4301, 'four thousand three hundred one');\nINSERT INTO t1 VALUES(3187, 76236, 'seventy-six thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(3188, 10528, 'ten thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(3189, 74893, 'seventy-four thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(3190, 19451, 'nineteen thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(3191, 27544, 'twenty-seven thousand five hundred forty-four');\nINSERT INTO t1 VALUES(3192, 25370, 'twenty-five thousand three hundred seventy');\nINSERT INTO t1 VALUES(3193, 43252, 'forty-three thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(3194, 85879, 'eighty-five thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(3195, 67253, 'sixty-seven thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(3196, 44421, 'forty-four thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(3197, 43665, 'forty-three thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(3198, 35270, 'thirty-five thousand two hundred seventy');\nINSERT INTO t1 VALUES(3199, 19089, 'nineteen thousand eighty-nine');\nINSERT INTO t1 VALUES(3200, 72370, 'seventy-two thousand three hundred seventy');\nINSERT INTO t1 VALUES(3201, 34666, 'thirty-four thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(3202, 66935, 'sixty-six thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(3203, 62881, 'sixty-two thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(3204, 538, 'five hundred thirty-eight');\nINSERT INTO t1 VALUES(3205, 49153, 'forty-nine thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(3206, 1871, 'one thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(3207, 37905, 'thirty-seven thousand nine hundred five');\nINSERT INTO t1 VALUES(3208, 42232, 'forty-two thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(3209, 76830, 'seventy-six thousand eight hundred thirty');\nINSERT INTO t1 VALUES(3210, 70467, 'seventy thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(3211, 12588, 'twelve thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(3212, 11668, 'eleven thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(3213, 39713, 'thirty-nine thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(3214, 78721, 'seventy-eight thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(3215, 50068, 'fifty thousand sixty-eight');\nINSERT INTO t1 VALUES(3216, 3328, 'three thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(3217, 9160, 'nine thousand one hundred sixty');\nINSERT INTO t1 VALUES(3218, 74984, 'seventy-four thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(3219, 78278, 'seventy-eight thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(3220, 14282, 'fourteen thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(3221, 72683, 'seventy-two thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(3222, 2944, 'two thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(3223, 85336, 'eighty-five thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(3224, 57001, 'fifty-seven thousand one');\nINSERT INTO t1 VALUES(3225, 98301, 'ninety-eight thousand three hundred one');\nINSERT INTO t1 VALUES(3226, 34782, 'thirty-four thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(3227, 47155, 'forty-seven thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(3228, 31358, 'thirty-one thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(3229, 5655, 'five thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(3230, 9677, 'nine thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(3231, 42393, 'forty-two thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(3232, 80760, 'eighty thousand seven hundred sixty');\nINSERT INTO t1 VALUES(3233, 81758, 'eighty-one thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(3234, 17908, 'seventeen thousand nine hundred eight');\nINSERT INTO t1 VALUES(3235, 62863, 'sixty-two thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(3236, 41218, 'forty-one thousand two hundred eighteen');\nINSERT INTO t1 VALUES(3237, 11342, 'eleven thousand three hundred forty-two');\nINSERT INTO t1 VALUES(3238, 178, 'one hundred seventy-eight');\nINSERT INTO t1 VALUES(3239, 25681, 'twenty-five thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(3240, 58424, 'fifty-eight thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(3241, 23585, 'twenty-three thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(3242, 94981, 'ninety-four thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(3243, 34880, 'thirty-four thousand eight hundred eighty');\nINSERT INTO t1 VALUES(3244, 19587, 'nineteen thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(3245, 72507, 'seventy-two thousand five hundred seven');\nINSERT INTO t1 VALUES(3246, 66336, 'sixty-six thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(3247, 47506, 'forty-seven thousand five hundred six');\nINSERT INTO t1 VALUES(3248, 97686, 'ninety-seven thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(3249, 79039, 'seventy-nine thousand thirty-nine');\nINSERT INTO t1 VALUES(3250, 43273, 'forty-three thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(3251, 97583, 'ninety-seven thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(3252, 10405, 'ten thousand four hundred five');\nINSERT INTO t1 VALUES(3253, 59441, 'fifty-nine thousand four hundred forty-one');\nINSERT INTO t1 VALUES(3254, 83488, 'eighty-three thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(3255, 78494, 'seventy-eight thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(3256, 78642, 'seventy-eight thousand six hundred forty-two');\nINSERT INTO t1 VALUES(3257, 74886, 'seventy-four thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(3258, 81862, 'eighty-one thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(3259, 6075, 'six thousand seventy-five');\nINSERT INTO t1 VALUES(3260, 58949, 'fifty-eight thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(3261, 41956, 'forty-one thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(3262, 42446, 'forty-two thousand four hundred forty-six');\nINSERT INTO t1 VALUES(3263, 16543, 'sixteen thousand five hundred forty-three');\nINSERT INTO t1 VALUES(3264, 28332, 'twenty-eight thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(3265, 75283, 'seventy-five thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(3266, 96124, 'ninety-six thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(3267, 55060, 'fifty-five thousand sixty');\nINSERT INTO t1 VALUES(3268, 12881, 'twelve thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(3269, 676, 'six hundred seventy-six');\nINSERT INTO t1 VALUES(3270, 1937, 'one thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(3271, 49105, 'forty-nine thousand one hundred five');\nINSERT INTO t1 VALUES(3272, 15200, 'fifteen thousand two hundred');\nINSERT INTO t1 VALUES(3273, 55309, 'fifty-five thousand three hundred nine');\nINSERT INTO t1 VALUES(3274, 12893, 'twelve thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(3275, 41628, 'forty-one thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(3276, 92467, 'ninety-two thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(3277, 19911, 'nineteen thousand nine hundred eleven');\nINSERT INTO t1 VALUES(3278, 78450, 'seventy-eight thousand four hundred fifty');\nINSERT INTO t1 VALUES(3279, 78134, 'seventy-eight thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(3280, 77976, 'seventy-seven thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(3281, 10489, 'ten thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(3282, 96844, 'ninety-six thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(3283, 65952, 'sixty-five thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(3284, 14191, 'fourteen thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(3285, 31821, 'thirty-one thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(3286, 3076, 'three thousand seventy-six');\nINSERT INTO t1 VALUES(3287, 48558, 'forty-eight thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(3288, 50251, 'fifty thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(3289, 83398, 'eighty-three thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(3290, 74889, 'seventy-four thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(3291, 88662, 'eighty-eight thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(3292, 70299, 'seventy thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(3293, 40425, 'forty thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(3294, 79513, 'seventy-nine thousand five hundred thirteen');\nINSERT INTO t1 VALUES(3295, 65317, 'sixty-five thousand three hundred seventeen');\nINSERT INTO t1 VALUES(3296, 36912, 'thirty-six thousand nine hundred twelve');\nINSERT INTO t1 VALUES(3297, 72499, 'seventy-two thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(3298, 60991, 'sixty thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(3299, 92861, 'ninety-two thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(3300, 61866, 'sixty-one thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(3301, 73770, 'seventy-three thousand seven hundred seventy');\nINSERT INTO t1 VALUES(3302, 61724, 'sixty-one thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(3303, 29578, 'twenty-nine thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(3304, 53689, 'fifty-three thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(3305, 99045, 'ninety-nine thousand forty-five');\nINSERT INTO t1 VALUES(3306, 79832, 'seventy-nine thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(3307, 38177, 'thirty-eight thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(3308, 31284, 'thirty-one thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(3309, 15936, 'fifteen thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(3310, 92342, 'ninety-two thousand three hundred forty-two');\nINSERT INTO t1 VALUES(3311, 4251, 'four thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(3312, 54240, 'fifty-four thousand two hundred forty');\nINSERT INTO t1 VALUES(3313, 60521, 'sixty thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(3314, 23592, 'twenty-three thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(3315, 45747, 'forty-five thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(3316, 96996, 'ninety-six thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(3317, 58196, 'fifty-eight thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(3318, 98326, 'ninety-eight thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(3319, 86788, 'eighty-six thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(3320, 38114, 'thirty-eight thousand one hundred fourteen');\nINSERT INTO t1 VALUES(3321, 14081, 'fourteen thousand eighty-one');\nINSERT INTO t1 VALUES(3322, 78028, 'seventy-eight thousand twenty-eight');\nINSERT INTO t1 VALUES(3323, 78248, 'seventy-eight thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(3324, 71417, 'seventy-one thousand four hundred seventeen');\nINSERT INTO t1 VALUES(3325, 27411, 'twenty-seven thousand four hundred eleven');\nINSERT INTO t1 VALUES(3326, 47435, 'forty-seven thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(3327, 34767, 'thirty-four thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(3328, 45870, 'forty-five thousand eight hundred seventy');\nINSERT INTO t1 VALUES(3329, 68909, 'sixty-eight thousand nine hundred nine');\nINSERT INTO t1 VALUES(3330, 76696, 'seventy-six thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(3331, 66028, 'sixty-six thousand twenty-eight');\nINSERT INTO t1 VALUES(3332, 84600, 'eighty-four thousand six hundred');\nINSERT INTO t1 VALUES(3333, 61933, 'sixty-one thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(3334, 91441, 'ninety-one thousand four hundred forty-one');\nINSERT INTO t1 VALUES(3335, 28191, 'twenty-eight thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(3336, 45747, 'forty-five thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(3337, 31122, 'thirty-one thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(3338, 5654, 'five thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(3339, 88621, 'eighty-eight thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(3340, 28983, 'twenty-eight thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(3341, 50776, 'fifty thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(3342, 77415, 'seventy-seven thousand four hundred fifteen');\nINSERT INTO t1 VALUES(3343, 25949, 'twenty-five thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(3344, 70884, 'seventy thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(3345, 84768, 'eighty-four thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(3346, 30961, 'thirty thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(3347, 16110, 'sixteen thousand one hundred ten');\nINSERT INTO t1 VALUES(3348, 5669, 'five thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(3349, 20752, 'twenty thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(3350, 3709, 'three thousand seven hundred nine');\nINSERT INTO t1 VALUES(3351, 30138, 'thirty thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(3352, 44341, 'forty-four thousand three hundred forty-one');\nINSERT INTO t1 VALUES(3353, 60236, 'sixty thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(3354, 67050, 'sixty-seven thousand fifty');\nINSERT INTO t1 VALUES(3355, 56343, 'fifty-six thousand three hundred forty-three');\nINSERT INTO t1 VALUES(3356, 35298, 'thirty-five thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(3357, 97323, 'ninety-seven thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(3358, 75158, 'seventy-five thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(3359, 90702, 'ninety thousand seven hundred two');\nINSERT INTO t1 VALUES(3360, 98797, 'ninety-eight thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(3361, 14239, 'fourteen thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(3362, 95991, 'ninety-five thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(3363, 90933, 'ninety thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(3364, 30880, 'thirty thousand eight hundred eighty');\nINSERT INTO t1 VALUES(3365, 5169, 'five thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(3366, 46161, 'forty-six thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(3367, 34495, 'thirty-four thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(3368, 23645, 'twenty-three thousand six hundred forty-five');\nINSERT INTO t1 VALUES(3369, 83659, 'eighty-three thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(3370, 38991, 'thirty-eight thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(3371, 58732, 'fifty-eight thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(3372, 30569, 'thirty thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(3373, 5543, 'five thousand five hundred forty-three');\nINSERT INTO t1 VALUES(3374, 67345, 'sixty-seven thousand three hundred forty-five');\nINSERT INTO t1 VALUES(3375, 35259, 'thirty-five thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(3376, 71009, 'seventy-one thousand nine');\nINSERT INTO t1 VALUES(3377, 37758, 'thirty-seven thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(3378, 85733, 'eighty-five thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(3379, 25073, 'twenty-five thousand seventy-three');\nINSERT INTO t1 VALUES(3380, 93375, 'ninety-three thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(3381, 49302, 'forty-nine thousand three hundred two');\nINSERT INTO t1 VALUES(3382, 8986, 'eight thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(3383, 93449, 'ninety-three thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(3384, 48289, 'forty-eight thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(3385, 80643, 'eighty thousand six hundred forty-three');\nINSERT INTO t1 VALUES(3386, 53697, 'fifty-three thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(3387, 98489, 'ninety-eight thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(3388, 88491, 'eighty-eight thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(3389, 82287, 'eighty-two thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(3390, 49530, 'forty-nine thousand five hundred thirty');\nINSERT INTO t1 VALUES(3391, 44003, 'forty-four thousand three');\nINSERT INTO t1 VALUES(3392, 8214, 'eight thousand two hundred fourteen');\nINSERT INTO t1 VALUES(3393, 40674, 'forty thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(3394, 85615, 'eighty-five thousand six hundred fifteen');\nINSERT INTO t1 VALUES(3395, 32567, 'thirty-two thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(3396, 59596, 'fifty-nine thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(3397, 71633, 'seventy-one thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(3398, 6595, 'six thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(3399, 75459, 'seventy-five thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(3400, 72713, 'seventy-two thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(3401, 39477, 'thirty-nine thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(3402, 99563, 'ninety-nine thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(3403, 28812, 'twenty-eight thousand eight hundred twelve');\nINSERT INTO t1 VALUES(3404, 25089, 'twenty-five thousand eighty-nine');\nINSERT INTO t1 VALUES(3405, 92253, 'ninety-two thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(3406, 81083, 'eighty-one thousand eighty-three');\nINSERT INTO t1 VALUES(3407, 31893, 'thirty-one thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(3408, 84728, 'eighty-four thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(3409, 19163, 'nineteen thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(3410, 7230, 'seven thousand two hundred thirty');\nINSERT INTO t1 VALUES(3411, 49939, 'forty-nine thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(3412, 27860, 'twenty-seven thousand eight hundred sixty');\nINSERT INTO t1 VALUES(3413, 92447, 'ninety-two thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(3414, 84178, 'eighty-four thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(3415, 61754, 'sixty-one thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(3416, 78282, 'seventy-eight thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(3417, 63850, 'sixty-three thousand eight hundred fifty');\nINSERT INTO t1 VALUES(3418, 17253, 'seventeen thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(3419, 87010, 'eighty-seven thousand ten');\nINSERT INTO t1 VALUES(3420, 74022, 'seventy-four thousand twenty-two');\nINSERT INTO t1 VALUES(3421, 44797, 'forty-four thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(3422, 51804, 'fifty-one thousand eight hundred four');\nINSERT INTO t1 VALUES(3423, 85325, 'eighty-five thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(3424, 21189, 'twenty-one thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(3425, 27904, 'twenty-seven thousand nine hundred four');\nINSERT INTO t1 VALUES(3426, 55844, 'fifty-five thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(3427, 63648, 'sixty-three thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(3428, 4047, 'four thousand forty-seven');\nINSERT INTO t1 VALUES(3429, 72570, 'seventy-two thousand five hundred seventy');\nINSERT INTO t1 VALUES(3430, 45295, 'forty-five thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(3431, 61773, 'sixty-one thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(3432, 94199, 'ninety-four thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(3433, 29669, 'twenty-nine thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(3434, 82102, 'eighty-two thousand one hundred two');\nINSERT INTO t1 VALUES(3435, 94716, 'ninety-four thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(3436, 35673, 'thirty-five thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(3437, 85975, 'eighty-five thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(3438, 69316, 'sixty-nine thousand three hundred sixteen');\nINSERT INTO t1 VALUES(3439, 9446, 'nine thousand four hundred forty-six');\nINSERT INTO t1 VALUES(3440, 9722, 'nine thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(3441, 69913, 'sixty-nine thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(3442, 54317, 'fifty-four thousand three hundred seventeen');\nINSERT INTO t1 VALUES(3443, 58912, 'fifty-eight thousand nine hundred twelve');\nINSERT INTO t1 VALUES(3444, 79074, 'seventy-nine thousand seventy-four');\nINSERT INTO t1 VALUES(3445, 15186, 'fifteen thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(3446, 24757, 'twenty-four thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(3447, 94590, 'ninety-four thousand five hundred ninety');\nINSERT INTO t1 VALUES(3448, 276, 'two hundred seventy-six');\nINSERT INTO t1 VALUES(3449, 64879, 'sixty-four thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(3450, 30214, 'thirty thousand two hundred fourteen');\nINSERT INTO t1 VALUES(3451, 85267, 'eighty-five thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(3452, 50211, 'fifty thousand two hundred eleven');\nINSERT INTO t1 VALUES(3453, 79991, 'seventy-nine thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(3454, 70979, 'seventy thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(3455, 55887, 'fifty-five thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(3456, 83692, 'eighty-three thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(3457, 54229, 'fifty-four thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(3458, 54089, 'fifty-four thousand eighty-nine');\nINSERT INTO t1 VALUES(3459, 43578, 'forty-three thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(3460, 48295, 'forty-eight thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(3461, 51031, 'fifty-one thousand thirty-one');\nINSERT INTO t1 VALUES(3462, 33872, 'thirty-three thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(3463, 67272, 'sixty-seven thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(3464, 70086, 'seventy thousand eighty-six');\nINSERT INTO t1 VALUES(3465, 63018, 'sixty-three thousand eighteen');\nINSERT INTO t1 VALUES(3466, 10581, 'ten thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(3467, 46454, 'forty-six thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(3468, 11132, 'eleven thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(3469, 33111, 'thirty-three thousand one hundred eleven');\nINSERT INTO t1 VALUES(3470, 16668, 'sixteen thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(3471, 72521, 'seventy-two thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(3472, 43065, 'forty-three thousand sixty-five');\nINSERT INTO t1 VALUES(3473, 71537, 'seventy-one thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(3474, 51880, 'fifty-one thousand eight hundred eighty');\nINSERT INTO t1 VALUES(3475, 68797, 'sixty-eight thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(3476, 57128, 'fifty-seven thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(3477, 54003, 'fifty-four thousand three');\nINSERT INTO t1 VALUES(3478, 49220, 'forty-nine thousand two hundred twenty');\nINSERT INTO t1 VALUES(3479, 89649, 'eighty-nine thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(3480, 17907, 'seventeen thousand nine hundred seven');\nINSERT INTO t1 VALUES(3481, 29451, 'twenty-nine thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(3482, 64727, 'sixty-four thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(3483, 10114, 'ten thousand one hundred fourteen');\nINSERT INTO t1 VALUES(3484, 71567, 'seventy-one thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(3485, 53170, 'fifty-three thousand one hundred seventy');\nINSERT INTO t1 VALUES(3486, 19336, 'nineteen thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(3487, 40571, 'forty thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(3488, 88261, 'eighty-eight thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(3489, 68540, 'sixty-eight thousand five hundred forty');\nINSERT INTO t1 VALUES(3490, 18984, 'eighteen thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(3491, 22699, 'twenty-two thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(3492, 54484, 'fifty-four thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(3493, 66750, 'sixty-six thousand seven hundred fifty');\nINSERT INTO t1 VALUES(3494, 98458, 'ninety-eight thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(3495, 93237, 'ninety-three thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(3496, 39619, 'thirty-nine thousand six hundred nineteen');\nINSERT INTO t1 VALUES(3497, 69475, 'sixty-nine thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(3498, 70653, 'seventy thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(3499, 5374, 'five thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(3500, 48200, 'forty-eight thousand two hundred');\nINSERT INTO t1 VALUES(3501, 44142, 'forty-four thousand one hundred forty-two');\nINSERT INTO t1 VALUES(3502, 10484, 'ten thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(3503, 83686, 'eighty-three thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(3504, 7298, 'seven thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(3505, 57358, 'fifty-seven thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(3506, 16449, 'sixteen thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(3507, 38249, 'thirty-eight thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(3508, 52669, 'fifty-two thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(3509, 19362, 'nineteen thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(3510, 87258, 'eighty-seven thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(3511, 74383, 'seventy-four thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(3512, 91323, 'ninety-one thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(3513, 86443, 'eighty-six thousand four hundred forty-three');\nINSERT INTO t1 VALUES(3514, 73229, 'seventy-three thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(3515, 66686, 'sixty-six thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(3516, 40986, 'forty thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(3517, 16521, 'sixteen thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(3518, 63887, 'sixty-three thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(3519, 85121, 'eighty-five thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(3520, 54691, 'fifty-four thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(3521, 85333, 'eighty-five thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(3522, 9057, 'nine thousand fifty-seven');\nINSERT INTO t1 VALUES(3523, 96869, 'ninety-six thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(3524, 9075, 'nine thousand seventy-five');\nINSERT INTO t1 VALUES(3525, 69043, 'sixty-nine thousand forty-three');\nINSERT INTO t1 VALUES(3526, 51152, 'fifty-one thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(3527, 99884, 'ninety-nine thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(3528, 53461, 'fifty-three thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(3529, 92518, 'ninety-two thousand five hundred eighteen');\nINSERT INTO t1 VALUES(3530, 62740, 'sixty-two thousand seven hundred forty');\nINSERT INTO t1 VALUES(3531, 71185, 'seventy-one thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(3532, 18628, 'eighteen thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(3533, 66515, 'sixty-six thousand five hundred fifteen');\nINSERT INTO t1 VALUES(3534, 74021, 'seventy-four thousand twenty-one');\nINSERT INTO t1 VALUES(3535, 75886, 'seventy-five thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(3536, 57132, 'fifty-seven thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(3537, 6709, 'six thousand seven hundred nine');\nINSERT INTO t1 VALUES(3538, 55091, 'fifty-five thousand ninety-one');\nINSERT INTO t1 VALUES(3539, 61254, 'sixty-one thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(3540, 1136, 'one thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(3541, 86817, 'eighty-six thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(3542, 93826, 'ninety-three thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(3543, 88069, 'eighty-eight thousand sixty-nine');\nINSERT INTO t1 VALUES(3544, 94648, 'ninety-four thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(3545, 84084, 'eighty-four thousand eighty-four');\nINSERT INTO t1 VALUES(3546, 67524, 'sixty-seven thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(3547, 53417, 'fifty-three thousand four hundred seventeen');\nINSERT INTO t1 VALUES(3548, 46253, 'forty-six thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(3549, 50763, 'fifty thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(3550, 5913, 'five thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(3551, 26997, 'twenty-six thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(3552, 35964, 'thirty-five thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(3553, 87707, 'eighty-seven thousand seven hundred seven');\nINSERT INTO t1 VALUES(3554, 80208, 'eighty thousand two hundred eight');\nINSERT INTO t1 VALUES(3555, 32626, 'thirty-two thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(3556, 52770, 'fifty-two thousand seven hundred seventy');\nINSERT INTO t1 VALUES(3557, 2305, 'two thousand three hundred five');\nINSERT INTO t1 VALUES(3558, 64429, 'sixty-four thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(3559, 71560, 'seventy-one thousand five hundred sixty');\nINSERT INTO t1 VALUES(3560, 65166, 'sixty-five thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(3561, 4812, 'four thousand eight hundred twelve');\nINSERT INTO t1 VALUES(3562, 58365, 'fifty-eight thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(3563, 3622, 'three thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(3564, 58404, 'fifty-eight thousand four hundred four');\nINSERT INTO t1 VALUES(3565, 40019, 'forty thousand nineteen');\nINSERT INTO t1 VALUES(3566, 39745, 'thirty-nine thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(3567, 94936, 'ninety-four thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(3568, 60432, 'sixty thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(3569, 93294, 'ninety-three thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(3570, 5175, 'five thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(3571, 85802, 'eighty-five thousand eight hundred two');\nINSERT INTO t1 VALUES(3572, 71331, 'seventy-one thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(3573, 92447, 'ninety-two thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(3574, 72742, 'seventy-two thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(3575, 10050, 'ten thousand fifty');\nINSERT INTO t1 VALUES(3576, 38627, 'thirty-eight thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(3577, 25953, 'twenty-five thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(3578, 75038, 'seventy-five thousand thirty-eight');\nINSERT INTO t1 VALUES(3579, 97052, 'ninety-seven thousand fifty-two');\nINSERT INTO t1 VALUES(3580, 73930, 'seventy-three thousand nine hundred thirty');\nINSERT INTO t1 VALUES(3581, 98131, 'ninety-eight thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(3582, 72161, 'seventy-two thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(3583, 1978, 'one thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(3584, 7380, 'seven thousand three hundred eighty');\nINSERT INTO t1 VALUES(3585, 9198, 'nine thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(3586, 15560, 'fifteen thousand five hundred sixty');\nINSERT INTO t1 VALUES(3587, 46657, 'forty-six thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(3588, 68550, 'sixty-eight thousand five hundred fifty');\nINSERT INTO t1 VALUES(3589, 88762, 'eighty-eight thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(3590, 76341, 'seventy-six thousand three hundred forty-one');\nINSERT INTO t1 VALUES(3591, 40775, 'forty thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(3592, 18253, 'eighteen thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(3593, 75507, 'seventy-five thousand five hundred seven');\nINSERT INTO t1 VALUES(3594, 87913, 'eighty-seven thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(3595, 9442, 'nine thousand four hundred forty-two');\nINSERT INTO t1 VALUES(3596, 63377, 'sixty-three thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(3597, 12883, 'twelve thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(3598, 98246, 'ninety-eight thousand two hundred forty-six');\nINSERT INTO t1 VALUES(3599, 7995, 'seven thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(3600, 85017, 'eighty-five thousand seventeen');\nINSERT INTO t1 VALUES(3601, 10531, 'ten thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(3602, 20296, 'twenty thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(3603, 406, 'four hundred six');\nINSERT INTO t1 VALUES(3604, 16530, 'sixteen thousand five hundred thirty');\nINSERT INTO t1 VALUES(3605, 49126, 'forty-nine thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(3606, 57267, 'fifty-seven thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(3607, 16854, 'sixteen thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(3608, 8808, 'eight thousand eight hundred eight');\nINSERT INTO t1 VALUES(3609, 78634, 'seventy-eight thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(3610, 3456, 'three thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(3611, 97350, 'ninety-seven thousand three hundred fifty');\nINSERT INTO t1 VALUES(3612, 2076, 'two thousand seventy-six');\nINSERT INTO t1 VALUES(3613, 88430, 'eighty-eight thousand four hundred thirty');\nINSERT INTO t1 VALUES(3614, 26418, 'twenty-six thousand four hundred eighteen');\nINSERT INTO t1 VALUES(3615, 97082, 'ninety-seven thousand eighty-two');\nINSERT INTO t1 VALUES(3616, 16754, 'sixteen thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(3617, 22342, 'twenty-two thousand three hundred forty-two');\nINSERT INTO t1 VALUES(3618, 66168, 'sixty-six thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(3619, 79729, 'seventy-nine thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(3620, 34641, 'thirty-four thousand six hundred forty-one');\nINSERT INTO t1 VALUES(3621, 96338, 'ninety-six thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(3622, 10599, 'ten thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(3623, 92583, 'ninety-two thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(3624, 30460, 'thirty thousand four hundred sixty');\nINSERT INTO t1 VALUES(3625, 23825, 'twenty-three thousand eight hundred twenty-five');\nINSERT INTO t1 VALUES(3626, 99470, 'ninety-nine thousand four hundred seventy');\nINSERT INTO t1 VALUES(3627, 96190, 'ninety-six thousand one hundred ninety');\nINSERT INTO t1 VALUES(3628, 41373, 'forty-one thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(3629, 88482, 'eighty-eight thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(3630, 11556, 'eleven thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(3631, 39384, 'thirty-nine thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(3632, 22015, 'twenty-two thousand fifteen');\nINSERT INTO t1 VALUES(3633, 96697, 'ninety-six thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(3634, 32796, 'thirty-two thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(3635, 5571, 'five thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(3636, 74100, 'seventy-four thousand one hundred');\nINSERT INTO t1 VALUES(3637, 89589, 'eighty-nine thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(3638, 99706, 'ninety-nine thousand seven hundred six');\nINSERT INTO t1 VALUES(3639, 81302, 'eighty-one thousand three hundred two');\nINSERT INTO t1 VALUES(3640, 35320, 'thirty-five thousand three hundred twenty');\nINSERT INTO t1 VALUES(3641, 47824, 'forty-seven thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(3642, 59349, 'fifty-nine thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(3643, 15570, 'fifteen thousand five hundred seventy');\nINSERT INTO t1 VALUES(3644, 19240, 'nineteen thousand two hundred forty');\nINSERT INTO t1 VALUES(3645, 47306, 'forty-seven thousand three hundred six');\nINSERT INTO t1 VALUES(3646, 68125, 'sixty-eight thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(3647, 88722, 'eighty-eight thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(3648, 4336, 'four thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(3649, 21975, 'twenty-one thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(3650, 43104, 'forty-three thousand one hundred four');\nINSERT INTO t1 VALUES(3651, 84111, 'eighty-four thousand one hundred eleven');\nINSERT INTO t1 VALUES(3652, 75749, 'seventy-five thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(3653, 54822, 'fifty-four thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(3654, 61346, 'sixty-one thousand three hundred forty-six');\nINSERT INTO t1 VALUES(3655, 73400, 'seventy-three thousand four hundred');\nINSERT INTO t1 VALUES(3656, 7553, 'seven thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(3657, 35092, 'thirty-five thousand ninety-two');\nINSERT INTO t1 VALUES(3658, 85416, 'eighty-five thousand four hundred sixteen');\nINSERT INTO t1 VALUES(3659, 44519, 'forty-four thousand five hundred nineteen');\nINSERT INTO t1 VALUES(3660, 41417, 'forty-one thousand four hundred seventeen');\nINSERT INTO t1 VALUES(3661, 60587, 'sixty thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(3662, 13889, 'thirteen thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(3663, 36758, 'thirty-six thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(3664, 95910, 'ninety-five thousand nine hundred ten');\nINSERT INTO t1 VALUES(3665, 34885, 'thirty-four thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(3666, 5469, 'five thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(3667, 11637, 'eleven thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(3668, 76038, 'seventy-six thousand thirty-eight');\nINSERT INTO t1 VALUES(3669, 88486, 'eighty-eight thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(3670, 38987, 'thirty-eight thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(3671, 76626, 'seventy-six thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(3672, 52445, 'fifty-two thousand four hundred forty-five');\nINSERT INTO t1 VALUES(3673, 24826, 'twenty-four thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(3674, 66373, 'sixty-six thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(3675, 43204, 'forty-three thousand two hundred four');\nINSERT INTO t1 VALUES(3676, 39931, 'thirty-nine thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(3677, 17375, 'seventeen thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(3678, 33980, 'thirty-three thousand nine hundred eighty');\nINSERT INTO t1 VALUES(3679, 34893, 'thirty-four thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(3680, 36865, 'thirty-six thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(3681, 96791, 'ninety-six thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(3682, 70551, 'seventy thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(3683, 76775, 'seventy-six thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(3684, 87909, 'eighty-seven thousand nine hundred nine');\nINSERT INTO t1 VALUES(3685, 14582, 'fourteen thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(3686, 28672, 'twenty-eight thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(3687, 26989, 'twenty-six thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(3688, 6049, 'six thousand forty-nine');\nINSERT INTO t1 VALUES(3689, 244, 'two hundred forty-four');\nINSERT INTO t1 VALUES(3690, 50771, 'fifty thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(3691, 57169, 'fifty-seven thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(3692, 72147, 'seventy-two thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(3693, 48910, 'forty-eight thousand nine hundred ten');\nINSERT INTO t1 VALUES(3694, 83530, 'eighty-three thousand five hundred thirty');\nINSERT INTO t1 VALUES(3695, 45095, 'forty-five thousand ninety-five');\nINSERT INTO t1 VALUES(3696, 58276, 'fifty-eight thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(3697, 21972, 'twenty-one thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(3698, 45492, 'forty-five thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(3699, 45993, 'forty-five thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(3700, 90582, 'ninety thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(3701, 67204, 'sixty-seven thousand two hundred four');\nINSERT INTO t1 VALUES(3702, 27461, 'twenty-seven thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(3703, 61821, 'sixty-one thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(3704, 66373, 'sixty-six thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(3705, 76432, 'seventy-six thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(3706, 81453, 'eighty-one thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(3707, 71699, 'seventy-one thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(3708, 42182, 'forty-two thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(3709, 37730, 'thirty-seven thousand seven hundred thirty');\nINSERT INTO t1 VALUES(3710, 17144, 'seventeen thousand one hundred forty-four');\nINSERT INTO t1 VALUES(3711, 13889, 'thirteen thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(3712, 55151, 'fifty-five thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(3713, 25628, 'twenty-five thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(3714, 98841, 'ninety-eight thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(3715, 87153, 'eighty-seven thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(3716, 33290, 'thirty-three thousand two hundred ninety');\nINSERT INTO t1 VALUES(3717, 18642, 'eighteen thousand six hundred forty-two');\nINSERT INTO t1 VALUES(3718, 18252, 'eighteen thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(3719, 4371, 'four thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(3720, 79917, 'seventy-nine thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(3721, 40887, 'forty thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(3722, 34266, 'thirty-four thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(3723, 29519, 'twenty-nine thousand five hundred nineteen');\nINSERT INTO t1 VALUES(3724, 20867, 'twenty thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(3725, 6934, 'six thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(3726, 33751, 'thirty-three thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(3727, 69072, 'sixty-nine thousand seventy-two');\nINSERT INTO t1 VALUES(3728, 19523, 'nineteen thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(3729, 82867, 'eighty-two thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(3730, 95105, 'ninety-five thousand one hundred five');\nINSERT INTO t1 VALUES(3731, 87187, 'eighty-seven thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(3732, 76611, 'seventy-six thousand six hundred eleven');\nINSERT INTO t1 VALUES(3733, 50749, 'fifty thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(3734, 2472, 'two thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(3735, 40229, 'forty thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(3736, 65688, 'sixty-five thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(3737, 83565, 'eighty-three thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(3738, 8275, 'eight thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(3739, 95541, 'ninety-five thousand five hundred forty-one');\nINSERT INTO t1 VALUES(3740, 1721, 'one thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(3741, 73048, 'seventy-three thousand forty-eight');\nINSERT INTO t1 VALUES(3742, 98700, 'ninety-eight thousand seven hundred');\nINSERT INTO t1 VALUES(3743, 98380, 'ninety-eight thousand three hundred eighty');\nINSERT INTO t1 VALUES(3744, 73366, 'seventy-three thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(3745, 97869, 'ninety-seven thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(3746, 18618, 'eighteen thousand six hundred eighteen');\nINSERT INTO t1 VALUES(3747, 32492, 'thirty-two thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(3748, 33038, 'thirty-three thousand thirty-eight');\nINSERT INTO t1 VALUES(3749, 74261, 'seventy-four thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(3750, 10378, 'ten thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(3751, 32253, 'thirty-two thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(3752, 87863, 'eighty-seven thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(3753, 77776, 'seventy-seven thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(3754, 96427, 'ninety-six thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(3755, 95686, 'ninety-five thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(3756, 65710, 'sixty-five thousand seven hundred ten');\nINSERT INTO t1 VALUES(3757, 40498, 'forty thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(3758, 2908, 'two thousand nine hundred eight');\nINSERT INTO t1 VALUES(3759, 43754, 'forty-three thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(3760, 24501, 'twenty-four thousand five hundred one');\nINSERT INTO t1 VALUES(3761, 77713, 'seventy-seven thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(3762, 7907, 'seven thousand nine hundred seven');\nINSERT INTO t1 VALUES(3763, 16321, 'sixteen thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(3764, 44975, 'forty-four thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(3765, 71917, 'seventy-one thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(3766, 49197, 'forty-nine thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(3767, 44553, 'forty-four thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(3768, 84494, 'eighty-four thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(3769, 42371, 'forty-two thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(3770, 37592, 'thirty-seven thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(3771, 37682, 'thirty-seven thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(3772, 23114, 'twenty-three thousand one hundred fourteen');\nINSERT INTO t1 VALUES(3773, 96232, 'ninety-six thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(3774, 95005, 'ninety-five thousand five');\nINSERT INTO t1 VALUES(3775, 14889, 'fourteen thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(3776, 53204, 'fifty-three thousand two hundred four');\nINSERT INTO t1 VALUES(3777, 26821, 'twenty-six thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(3778, 64702, 'sixty-four thousand seven hundred two');\nINSERT INTO t1 VALUES(3779, 42833, 'forty-two thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(3780, 8734, 'eight thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(3781, 45818, 'forty-five thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(3782, 52254, 'fifty-two thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(3783, 46673, 'forty-six thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(3784, 50764, 'fifty thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(3785, 9513, 'nine thousand five hundred thirteen');\nINSERT INTO t1 VALUES(3786, 90642, 'ninety thousand six hundred forty-two');\nINSERT INTO t1 VALUES(3787, 26521, 'twenty-six thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(3788, 93096, 'ninety-three thousand ninety-six');\nINSERT INTO t1 VALUES(3789, 94350, 'ninety-four thousand three hundred fifty');\nINSERT INTO t1 VALUES(3790, 76050, 'seventy-six thousand fifty');\nINSERT INTO t1 VALUES(3791, 12200, 'twelve thousand two hundred');\nINSERT INTO t1 VALUES(3792, 67788, 'sixty-seven thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(3793, 45786, 'forty-five thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(3794, 99042, 'ninety-nine thousand forty-two');\nINSERT INTO t1 VALUES(3795, 1102, 'one thousand one hundred two');\nINSERT INTO t1 VALUES(3796, 10317, 'ten thousand three hundred seventeen');\nINSERT INTO t1 VALUES(3797, 83766, 'eighty-three thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(3798, 32196, 'thirty-two thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(3799, 11859, 'eleven thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(3800, 11220, 'eleven thousand two hundred twenty');\nINSERT INTO t1 VALUES(3801, 5435, 'five thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(3802, 79244, 'seventy-nine thousand two hundred forty-four');\nINSERT INTO t1 VALUES(3803, 86440, 'eighty-six thousand four hundred forty');\nINSERT INTO t1 VALUES(3804, 58007, 'fifty-eight thousand seven');\nINSERT INTO t1 VALUES(3805, 59879, 'fifty-nine thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(3806, 93073, 'ninety-three thousand seventy-three');\nINSERT INTO t1 VALUES(3807, 41395, 'forty-one thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(3808, 70064, 'seventy thousand sixty-four');\nINSERT INTO t1 VALUES(3809, 76480, 'seventy-six thousand four hundred eighty');\nINSERT INTO t1 VALUES(3810, 89053, 'eighty-nine thousand fifty-three');\nINSERT INTO t1 VALUES(3811, 61298, 'sixty-one thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(3812, 62268, 'sixty-two thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(3813, 86474, 'eighty-six thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(3814, 99767, 'ninety-nine thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(3815, 25087, 'twenty-five thousand eighty-seven');\nINSERT INTO t1 VALUES(3816, 89484, 'eighty-nine thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(3817, 28193, 'twenty-eight thousand one hundred ninety-three');\nINSERT INTO t1 VALUES(3818, 88213, 'eighty-eight thousand two hundred thirteen');\nINSERT INTO t1 VALUES(3819, 69567, 'sixty-nine thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(3820, 61386, 'sixty-one thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(3821, 6122, 'six thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(3822, 29237, 'twenty-nine thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(3823, 34504, 'thirty-four thousand five hundred four');\nINSERT INTO t1 VALUES(3824, 2433, 'two thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(3825, 79539, 'seventy-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(3826, 11990, 'eleven thousand nine hundred ninety');\nINSERT INTO t1 VALUES(3827, 48797, 'forty-eight thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(3828, 1352, 'one thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(3829, 92368, 'ninety-two thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(3830, 98175, 'ninety-eight thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(3831, 23105, 'twenty-three thousand one hundred five');\nINSERT INTO t1 VALUES(3832, 6065, 'six thousand sixty-five');\nINSERT INTO t1 VALUES(3833, 75885, 'seventy-five thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(3834, 63862, 'sixty-three thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(3835, 78082, 'seventy-eight thousand eighty-two');\nINSERT INTO t1 VALUES(3836, 12056, 'twelve thousand fifty-six');\nINSERT INTO t1 VALUES(3837, 58543, 'fifty-eight thousand five hundred forty-three');\nINSERT INTO t1 VALUES(3838, 52812, 'fifty-two thousand eight hundred twelve');\nINSERT INTO t1 VALUES(3839, 38551, 'thirty-eight thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(3840, 61350, 'sixty-one thousand three hundred fifty');\nINSERT INTO t1 VALUES(3841, 30937, 'thirty thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(3842, 39616, 'thirty-nine thousand six hundred sixteen');\nINSERT INTO t1 VALUES(3843, 73450, 'seventy-three thousand four hundred fifty');\nINSERT INTO t1 VALUES(3844, 98408, 'ninety-eight thousand four hundred eight');\nINSERT INTO t1 VALUES(3845, 15848, 'fifteen thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(3846, 81390, 'eighty-one thousand three hundred ninety');\nINSERT INTO t1 VALUES(3847, 26513, 'twenty-six thousand five hundred thirteen');\nINSERT INTO t1 VALUES(3848, 93768, 'ninety-three thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(3849, 14302, 'fourteen thousand three hundred two');\nINSERT INTO t1 VALUES(3850, 11752, 'eleven thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(3851, 6683, 'six thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(3852, 31395, 'thirty-one thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(3853, 6996, 'six thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(3854, 87076, 'eighty-seven thousand seventy-six');\nINSERT INTO t1 VALUES(3855, 94709, 'ninety-four thousand seven hundred nine');\nINSERT INTO t1 VALUES(3856, 45364, 'forty-five thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(3857, 40264, 'forty thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(3858, 19242, 'nineteen thousand two hundred forty-two');\nINSERT INTO t1 VALUES(3859, 45883, 'forty-five thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(3860, 23784, 'twenty-three thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(3861, 22366, 'twenty-two thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(3862, 38613, 'thirty-eight thousand six hundred thirteen');\nINSERT INTO t1 VALUES(3863, 54181, 'fifty-four thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(3864, 82679, 'eighty-two thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(3865, 93600, 'ninety-three thousand six hundred');\nINSERT INTO t1 VALUES(3866, 79423, 'seventy-nine thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(3867, 96218, 'ninety-six thousand two hundred eighteen');\nINSERT INTO t1 VALUES(3868, 16609, 'sixteen thousand six hundred nine');\nINSERT INTO t1 VALUES(3869, 13585, 'thirteen thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(3870, 74276, 'seventy-four thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(3871, 41745, 'forty-one thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(3872, 11664, 'eleven thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(3873, 46187, 'forty-six thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(3874, 6788, 'six thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(3875, 10959, 'ten thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(3876, 3395, 'three thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(3877, 95884, 'ninety-five thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(3878, 10793, 'ten thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(3879, 82977, 'eighty-two thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(3880, 87467, 'eighty-seven thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(3881, 15275, 'fifteen thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(3882, 17124, 'seventeen thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(3883, 49913, 'forty-nine thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(3884, 47050, 'forty-seven thousand fifty');\nINSERT INTO t1 VALUES(3885, 32441, 'thirty-two thousand four hundred forty-one');\nINSERT INTO t1 VALUES(3886, 93266, 'ninety-three thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(3887, 91864, 'ninety-one thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(3888, 313, 'three hundred thirteen');\nINSERT INTO t1 VALUES(3889, 47011, 'forty-seven thousand eleven');\nINSERT INTO t1 VALUES(3890, 20944, 'twenty thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(3891, 23221, 'twenty-three thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(3892, 34869, 'thirty-four thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(3893, 28664, 'twenty-eight thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(3894, 72174, 'seventy-two thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(3895, 58160, 'fifty-eight thousand one hundred sixty');\nINSERT INTO t1 VALUES(3896, 70441, 'seventy thousand four hundred forty-one');\nINSERT INTO t1 VALUES(3897, 41607, 'forty-one thousand six hundred seven');\nINSERT INTO t1 VALUES(3898, 97240, 'ninety-seven thousand two hundred forty');\nINSERT INTO t1 VALUES(3899, 17742, 'seventeen thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(3900, 79007, 'seventy-nine thousand seven');\nINSERT INTO t1 VALUES(3901, 20146, 'twenty thousand one hundred forty-six');\nINSERT INTO t1 VALUES(3902, 31531, 'thirty-one thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(3903, 8368, 'eight thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(3904, 61917, 'sixty-one thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(3905, 47507, 'forty-seven thousand five hundred seven');\nINSERT INTO t1 VALUES(3906, 37292, 'thirty-seven thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(3907, 80704, 'eighty thousand seven hundred four');\nINSERT INTO t1 VALUES(3908, 46364, 'forty-six thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(3909, 50174, 'fifty thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(3910, 48855, 'forty-eight thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(3911, 94444, 'ninety-four thousand four hundred forty-four');\nINSERT INTO t1 VALUES(3912, 15294, 'fifteen thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(3913, 36813, 'thirty-six thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(3914, 60220, 'sixty thousand two hundred twenty');\nINSERT INTO t1 VALUES(3915, 57386, 'fifty-seven thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(3916, 77141, 'seventy-seven thousand one hundred forty-one');\nINSERT INTO t1 VALUES(3917, 559, 'five hundred fifty-nine');\nINSERT INTO t1 VALUES(3918, 72758, 'seventy-two thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(3919, 55010, 'fifty-five thousand ten');\nINSERT INTO t1 VALUES(3920, 98236, 'ninety-eight thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(3921, 85551, 'eighty-five thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(3922, 27679, 'twenty-seven thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(3923, 52905, 'fifty-two thousand nine hundred five');\nINSERT INTO t1 VALUES(3924, 31239, 'thirty-one thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(3925, 21107, 'twenty-one thousand one hundred seven');\nINSERT INTO t1 VALUES(3926, 63530, 'sixty-three thousand five hundred thirty');\nINSERT INTO t1 VALUES(3927, 5246, 'five thousand two hundred forty-six');\nINSERT INTO t1 VALUES(3928, 56199, 'fifty-six thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(3929, 7548, 'seven thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(3930, 39631, 'thirty-nine thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(3931, 8389, 'eight thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(3932, 34049, 'thirty-four thousand forty-nine');\nINSERT INTO t1 VALUES(3933, 38445, 'thirty-eight thousand four hundred forty-five');\nINSERT INTO t1 VALUES(3934, 4271, 'four thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(3935, 9796, 'nine thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(3936, 44287, 'forty-four thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(3937, 35235, 'thirty-five thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(3938, 59785, 'fifty-nine thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(3939, 36910, 'thirty-six thousand nine hundred ten');\nINSERT INTO t1 VALUES(3940, 60146, 'sixty thousand one hundred forty-six');\nINSERT INTO t1 VALUES(3941, 92606, 'ninety-two thousand six hundred six');\nINSERT INTO t1 VALUES(3942, 76387, 'seventy-six thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(3943, 84524, 'eighty-four thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(3944, 11560, 'eleven thousand five hundred sixty');\nINSERT INTO t1 VALUES(3945, 67325, 'sixty-seven thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(3946, 28251, 'twenty-eight thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(3947, 61252, 'sixty-one thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(3948, 52744, 'fifty-two thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(3949, 35597, 'thirty-five thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(3950, 86414, 'eighty-six thousand four hundred fourteen');\nINSERT INTO t1 VALUES(3951, 1992, 'one thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(3952, 16743, 'sixteen thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(3953, 66188, 'sixty-six thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(3954, 72228, 'seventy-two thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(3955, 35606, 'thirty-five thousand six hundred six');\nINSERT INTO t1 VALUES(3956, 14231, 'fourteen thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(3957, 95307, 'ninety-five thousand three hundred seven');\nINSERT INTO t1 VALUES(3958, 9511, 'nine thousand five hundred eleven');\nINSERT INTO t1 VALUES(3959, 58014, 'fifty-eight thousand fourteen');\nINSERT INTO t1 VALUES(3960, 60048, 'sixty thousand forty-eight');\nINSERT INTO t1 VALUES(3961, 93098, 'ninety-three thousand ninety-eight');\nINSERT INTO t1 VALUES(3962, 52218, 'fifty-two thousand two hundred eighteen');\nINSERT INTO t1 VALUES(3963, 90026, 'ninety thousand twenty-six');\nINSERT INTO t1 VALUES(3964, 91869, 'ninety-one thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(3965, 52881, 'fifty-two thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(3966, 54067, 'fifty-four thousand sixty-seven');\nINSERT INTO t1 VALUES(3967, 51007, 'fifty-one thousand seven');\nINSERT INTO t1 VALUES(3968, 55328, 'fifty-five thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(3969, 39037, 'thirty-nine thousand thirty-seven');\nINSERT INTO t1 VALUES(3970, 80020, 'eighty thousand twenty');\nINSERT INTO t1 VALUES(3971, 61629, 'sixty-one thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(3972, 53503, 'fifty-three thousand five hundred three');\nINSERT INTO t1 VALUES(3973, 82824, 'eighty-two thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(3974, 86512, 'eighty-six thousand five hundred twelve');\nINSERT INTO t1 VALUES(3975, 40457, 'forty thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(3976, 56502, 'fifty-six thousand five hundred two');\nINSERT INTO t1 VALUES(3977, 43073, 'forty-three thousand seventy-three');\nINSERT INTO t1 VALUES(3978, 46270, 'forty-six thousand two hundred seventy');\nINSERT INTO t1 VALUES(3979, 10861, 'ten thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(3980, 33890, 'thirty-three thousand eight hundred ninety');\nINSERT INTO t1 VALUES(3981, 55937, 'fifty-five thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(3982, 68673, 'sixty-eight thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(3983, 45273, 'forty-five thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(3984, 6645, 'six thousand six hundred forty-five');\nINSERT INTO t1 VALUES(3985, 70307, 'seventy thousand three hundred seven');\nINSERT INTO t1 VALUES(3986, 25268, 'twenty-five thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(3987, 2266, 'two thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(3988, 28591, 'twenty-eight thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(3989, 29696, 'twenty-nine thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(3990, 44161, 'forty-four thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(3991, 33114, 'thirty-three thousand one hundred fourteen');\nINSERT INTO t1 VALUES(3992, 8356, 'eight thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(3993, 12246, 'twelve thousand two hundred forty-six');\nINSERT INTO t1 VALUES(3994, 30703, 'thirty thousand seven hundred three');\nINSERT INTO t1 VALUES(3995, 56298, 'fifty-six thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(3996, 5587, 'five thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(3997, 32706, 'thirty-two thousand seven hundred six');\nINSERT INTO t1 VALUES(3998, 90396, 'ninety thousand three hundred ninety-six');\nINSERT INTO t1 VALUES(3999, 53049, 'fifty-three thousand forty-nine');\nINSERT INTO t1 VALUES(4000, 72794, 'seventy-two thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(4001, 19099, 'nineteen thousand ninety-nine');\nINSERT INTO t1 VALUES(4002, 64021, 'sixty-four thousand twenty-one');\nINSERT INTO t1 VALUES(4003, 45367, 'forty-five thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(4004, 43689, 'forty-three thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(4005, 17675, 'seventeen thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(4006, 89877, 'eighty-nine thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(4007, 42947, 'forty-two thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(4008, 39770, 'thirty-nine thousand seven hundred seventy');\nINSERT INTO t1 VALUES(4009, 7643, 'seven thousand six hundred forty-three');\nINSERT INTO t1 VALUES(4010, 34297, 'thirty-four thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(4011, 99996, 'ninety-nine thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(4012, 68507, 'sixty-eight thousand five hundred seven');\nINSERT INTO t1 VALUES(4013, 64399, 'sixty-four thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(4014, 69246, 'sixty-nine thousand two hundred forty-six');\nINSERT INTO t1 VALUES(4015, 38551, 'thirty-eight thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(4016, 79503, 'seventy-nine thousand five hundred three');\nINSERT INTO t1 VALUES(4017, 66588, 'sixty-six thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(4018, 44339, 'forty-four thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(4019, 21838, 'twenty-one thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(4020, 6660, 'six thousand six hundred sixty');\nINSERT INTO t1 VALUES(4021, 53215, 'fifty-three thousand two hundred fifteen');\nINSERT INTO t1 VALUES(4022, 5994, 'five thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(4023, 64280, 'sixty-four thousand two hundred eighty');\nINSERT INTO t1 VALUES(4024, 63415, 'sixty-three thousand four hundred fifteen');\nINSERT INTO t1 VALUES(4025, 30487, 'thirty thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(4026, 483, 'four hundred eighty-three');\nINSERT INTO t1 VALUES(4027, 1493, 'one thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(4028, 35379, 'thirty-five thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(4029, 74311, 'seventy-four thousand three hundred eleven');\nINSERT INTO t1 VALUES(4030, 80133, 'eighty thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(4031, 36637, 'thirty-six thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(4032, 55419, 'fifty-five thousand four hundred nineteen');\nINSERT INTO t1 VALUES(4033, 68446, 'sixty-eight thousand four hundred forty-six');\nINSERT INTO t1 VALUES(4034, 38054, 'thirty-eight thousand fifty-four');\nINSERT INTO t1 VALUES(4035, 96766, 'ninety-six thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(4036, 91361, 'ninety-one thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(4037, 33672, 'thirty-three thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(4038, 91103, 'ninety-one thousand one hundred three');\nINSERT INTO t1 VALUES(4039, 93229, 'ninety-three thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(4040, 92728, 'ninety-two thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(4041, 85829, 'eighty-five thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(4042, 27828, 'twenty-seven thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(4043, 26112, 'twenty-six thousand one hundred twelve');\nINSERT INTO t1 VALUES(4044, 26029, 'twenty-six thousand twenty-nine');\nINSERT INTO t1 VALUES(4045, 53492, 'fifty-three thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(4046, 75896, 'seventy-five thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(4047, 64940, 'sixty-four thousand nine hundred forty');\nINSERT INTO t1 VALUES(4048, 34726, 'thirty-four thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(4049, 89928, 'eighty-nine thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(4050, 80576, 'eighty thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(4051, 12355, 'twelve thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(4052, 56383, 'fifty-six thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(4053, 6186, 'six thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(4054, 41800, 'forty-one thousand eight hundred');\nINSERT INTO t1 VALUES(4055, 90071, 'ninety thousand seventy-one');\nINSERT INTO t1 VALUES(4056, 58885, 'fifty-eight thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(4057, 1045, 'one thousand forty-five');\nINSERT INTO t1 VALUES(4058, 79904, 'seventy-nine thousand nine hundred four');\nINSERT INTO t1 VALUES(4059, 95617, 'ninety-five thousand six hundred seventeen');\nINSERT INTO t1 VALUES(4060, 34976, 'thirty-four thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(4061, 19889, 'nineteen thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(4062, 4739, 'four thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(4063, 15935, 'fifteen thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(4064, 13908, 'thirteen thousand nine hundred eight');\nINSERT INTO t1 VALUES(4065, 59215, 'fifty-nine thousand two hundred fifteen');\nINSERT INTO t1 VALUES(4066, 40588, 'forty thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(4067, 52777, 'fifty-two thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(4068, 59150, 'fifty-nine thousand one hundred fifty');\nINSERT INTO t1 VALUES(4069, 91694, 'ninety-one thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(4070, 33531, 'thirty-three thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(4071, 2505, 'two thousand five hundred five');\nINSERT INTO t1 VALUES(4072, 44276, 'forty-four thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(4073, 6488, 'six thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(4074, 15160, 'fifteen thousand one hundred sixty');\nINSERT INTO t1 VALUES(4075, 30114, 'thirty thousand one hundred fourteen');\nINSERT INTO t1 VALUES(4076, 66501, 'sixty-six thousand five hundred one');\nINSERT INTO t1 VALUES(4077, 86192, 'eighty-six thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(4078, 65688, 'sixty-five thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(4079, 96085, 'ninety-six thousand eighty-five');\nINSERT INTO t1 VALUES(4080, 71384, 'seventy-one thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(4081, 27124, 'twenty-seven thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(4082, 55394, 'fifty-five thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(4083, 24491, 'twenty-four thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(4084, 14783, 'fourteen thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(4085, 29011, 'twenty-nine thousand eleven');\nINSERT INTO t1 VALUES(4086, 88954, 'eighty-eight thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(4087, 44956, 'forty-four thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(4088, 53429, 'fifty-three thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(4089, 74359, 'seventy-four thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(4090, 52001, 'fifty-two thousand one');\nINSERT INTO t1 VALUES(4091, 45565, 'forty-five thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(4092, 93628, 'ninety-three thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(4093, 94867, 'ninety-four thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(4094, 27584, 'twenty-seven thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(4095, 58674, 'fifty-eight thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(4096, 82871, 'eighty-two thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(4097, 55035, 'fifty-five thousand thirty-five');\nINSERT INTO t1 VALUES(4098, 28628, 'twenty-eight thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(4099, 36986, 'thirty-six thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(4100, 32452, 'thirty-two thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(4101, 27003, 'twenty-seven thousand three');\nINSERT INTO t1 VALUES(4102, 22597, 'twenty-two thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(4103, 58324, 'fifty-eight thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(4104, 42426, 'forty-two thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(4105, 5336, 'five thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(4106, 23093, 'twenty-three thousand ninety-three');\nINSERT INTO t1 VALUES(4107, 64670, 'sixty-four thousand six hundred seventy');\nINSERT INTO t1 VALUES(4108, 25965, 'twenty-five thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(4109, 29919, 'twenty-nine thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(4110, 25017, 'twenty-five thousand seventeen');\nINSERT INTO t1 VALUES(4111, 45366, 'forty-five thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(4112, 30028, 'thirty thousand twenty-eight');\nINSERT INTO t1 VALUES(4113, 50047, 'fifty thousand forty-seven');\nINSERT INTO t1 VALUES(4114, 58958, 'fifty-eight thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(4115, 14204, 'fourteen thousand two hundred four');\nINSERT INTO t1 VALUES(4116, 94989, 'ninety-four thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(4117, 21657, 'twenty-one thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(4118, 20769, 'twenty thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(4119, 56826, 'fifty-six thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(4120, 50027, 'fifty thousand twenty-seven');\nINSERT INTO t1 VALUES(4121, 47258, 'forty-seven thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(4122, 88219, 'eighty-eight thousand two hundred nineteen');\nINSERT INTO t1 VALUES(4123, 2329, 'two thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(4124, 51963, 'fifty-one thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(4125, 98153, 'ninety-eight thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(4126, 82115, 'eighty-two thousand one hundred fifteen');\nINSERT INTO t1 VALUES(4127, 15846, 'fifteen thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(4128, 58304, 'fifty-eight thousand three hundred four');\nINSERT INTO t1 VALUES(4129, 9239, 'nine thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(4130, 2227, 'two thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(4131, 59539, 'fifty-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(4132, 8854, 'eight thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(4133, 55999, 'fifty-five thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(4134, 35504, 'thirty-five thousand five hundred four');\nINSERT INTO t1 VALUES(4135, 32550, 'thirty-two thousand five hundred fifty');\nINSERT INTO t1 VALUES(4136, 49099, 'forty-nine thousand ninety-nine');\nINSERT INTO t1 VALUES(4137, 36557, 'thirty-six thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(4138, 42436, 'forty-two thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(4139, 60640, 'sixty thousand six hundred forty');\nINSERT INTO t1 VALUES(4140, 31467, 'thirty-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(4141, 40086, 'forty thousand eighty-six');\nINSERT INTO t1 VALUES(4142, 50544, 'fifty thousand five hundred forty-four');\nINSERT INTO t1 VALUES(4143, 6241, 'six thousand two hundred forty-one');\nINSERT INTO t1 VALUES(4144, 43125, 'forty-three thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(4145, 62070, 'sixty-two thousand seventy');\nINSERT INTO t1 VALUES(4146, 94535, 'ninety-four thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(4147, 17132, 'seventeen thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(4148, 28845, 'twenty-eight thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(4149, 69194, 'sixty-nine thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(4150, 82946, 'eighty-two thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(4151, 10326, 'ten thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(4152, 63692, 'sixty-three thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(4153, 50261, 'fifty thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(4154, 9239, 'nine thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(4155, 29463, 'twenty-nine thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(4156, 46890, 'forty-six thousand eight hundred ninety');\nINSERT INTO t1 VALUES(4157, 62820, 'sixty-two thousand eight hundred twenty');\nINSERT INTO t1 VALUES(4158, 96262, 'ninety-six thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(4159, 85822, 'eighty-five thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(4160, 94653, 'ninety-four thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(4161, 38565, 'thirty-eight thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(4162, 96935, 'ninety-six thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(4163, 81090, 'eighty-one thousand ninety');\nINSERT INTO t1 VALUES(4164, 33915, 'thirty-three thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(4165, 29239, 'twenty-nine thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(4166, 93164, 'ninety-three thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(4167, 82025, 'eighty-two thousand twenty-five');\nINSERT INTO t1 VALUES(4168, 64441, 'sixty-four thousand four hundred forty-one');\nINSERT INTO t1 VALUES(4169, 81406, 'eighty-one thousand four hundred six');\nINSERT INTO t1 VALUES(4170, 7045, 'seven thousand forty-five');\nINSERT INTO t1 VALUES(4171, 59161, 'fifty-nine thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(4172, 86645, 'eighty-six thousand six hundred forty-five');\nINSERT INTO t1 VALUES(4173, 59085, 'fifty-nine thousand eighty-five');\nINSERT INTO t1 VALUES(4174, 53939, 'fifty-three thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(4175, 99922, 'ninety-nine thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(4176, 86029, 'eighty-six thousand twenty-nine');\nINSERT INTO t1 VALUES(4177, 17185, 'seventeen thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(4178, 29103, 'twenty-nine thousand one hundred three');\nINSERT INTO t1 VALUES(4179, 14187, 'fourteen thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(4180, 3859, 'three thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(4181, 22155, 'twenty-two thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(4182, 27042, 'twenty-seven thousand forty-two');\nINSERT INTO t1 VALUES(4183, 58539, 'fifty-eight thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(4184, 50035, 'fifty thousand thirty-five');\nINSERT INTO t1 VALUES(4185, 73434, 'seventy-three thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(4186, 28363, 'twenty-eight thousand three hundred sixty-three');\nINSERT INTO t1 VALUES(4187, 68010, 'sixty-eight thousand ten');\nINSERT INTO t1 VALUES(4188, 42998, 'forty-two thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(4189, 80662, 'eighty thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(4190, 45700, 'forty-five thousand seven hundred');\nINSERT INTO t1 VALUES(4191, 27793, 'twenty-seven thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(4192, 33960, 'thirty-three thousand nine hundred sixty');\nINSERT INTO t1 VALUES(4193, 20549, 'twenty thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(4194, 89154, 'eighty-nine thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(4195, 48103, 'forty-eight thousand one hundred three');\nINSERT INTO t1 VALUES(4196, 46782, 'forty-six thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(4197, 72262, 'seventy-two thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(4198, 44155, 'forty-four thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(4199, 2181, 'two thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(4200, 28457, 'twenty-eight thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(4201, 29236, 'twenty-nine thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(4202, 19784, 'nineteen thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(4203, 61641, 'sixty-one thousand six hundred forty-one');\nINSERT INTO t1 VALUES(4204, 55742, 'fifty-five thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(4205, 52304, 'fifty-two thousand three hundred four');\nINSERT INTO t1 VALUES(4206, 68541, 'sixty-eight thousand five hundred forty-one');\nINSERT INTO t1 VALUES(4207, 95835, 'ninety-five thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(4208, 79239, 'seventy-nine thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(4209, 40946, 'forty thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(4210, 84513, 'eighty-four thousand five hundred thirteen');\nINSERT INTO t1 VALUES(4211, 85329, 'eighty-five thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(4212, 30659, 'thirty thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(4213, 16052, 'sixteen thousand fifty-two');\nINSERT INTO t1 VALUES(4214, 19055, 'nineteen thousand fifty-five');\nINSERT INTO t1 VALUES(4215, 598, 'five hundred ninety-eight');\nINSERT INTO t1 VALUES(4216, 3169, 'three thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(4217, 13705, 'thirteen thousand seven hundred five');\nINSERT INTO t1 VALUES(4218, 95443, 'ninety-five thousand four hundred forty-three');\nINSERT INTO t1 VALUES(4219, 89960, 'eighty-nine thousand nine hundred sixty');\nINSERT INTO t1 VALUES(4220, 63568, 'sixty-three thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(4221, 46141, 'forty-six thousand one hundred forty-one');\nINSERT INTO t1 VALUES(4222, 82680, 'eighty-two thousand six hundred eighty');\nINSERT INTO t1 VALUES(4223, 82333, 'eighty-two thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(4224, 14323, 'fourteen thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(4225, 72289, 'seventy-two thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(4226, 86238, 'eighty-six thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(4227, 96415, 'ninety-six thousand four hundred fifteen');\nINSERT INTO t1 VALUES(4228, 38834, 'thirty-eight thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(4229, 98813, 'ninety-eight thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(4230, 20106, 'twenty thousand one hundred six');\nINSERT INTO t1 VALUES(4231, 22091, 'twenty-two thousand ninety-one');\nINSERT INTO t1 VALUES(4232, 26988, 'twenty-six thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(4233, 38952, 'thirty-eight thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(4234, 5253, 'five thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(4235, 25050, 'twenty-five thousand fifty');\nINSERT INTO t1 VALUES(4236, 18805, 'eighteen thousand eight hundred five');\nINSERT INTO t1 VALUES(4237, 71255, 'seventy-one thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(4238, 85105, 'eighty-five thousand one hundred five');\nINSERT INTO t1 VALUES(4239, 74322, 'seventy-four thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(4240, 98482, 'ninety-eight thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(4241, 1166, 'one thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(4242, 36583, 'thirty-six thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(4243, 71721, 'seventy-one thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(4244, 29543, 'twenty-nine thousand five hundred forty-three');\nINSERT INTO t1 VALUES(4245, 63775, 'sixty-three thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(4246, 43592, 'forty-three thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(4247, 92237, 'ninety-two thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(4248, 38777, 'thirty-eight thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(4249, 67410, 'sixty-seven thousand four hundred ten');\nINSERT INTO t1 VALUES(4250, 36, 'thirty-six');\nINSERT INTO t1 VALUES(4251, 55098, 'fifty-five thousand ninety-eight');\nINSERT INTO t1 VALUES(4252, 34929, 'thirty-four thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(4253, 98308, 'ninety-eight thousand three hundred eight');\nINSERT INTO t1 VALUES(4254, 18340, 'eighteen thousand three hundred forty');\nINSERT INTO t1 VALUES(4255, 5189, 'five thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(4256, 2783, 'two thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(4257, 80018, 'eighty thousand eighteen');\nINSERT INTO t1 VALUES(4258, 94190, 'ninety-four thousand one hundred ninety');\nINSERT INTO t1 VALUES(4259, 69253, 'sixty-nine thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(4260, 75187, 'seventy-five thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(4261, 90625, 'ninety thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(4262, 87388, 'eighty-seven thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(4263, 67421, 'sixty-seven thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(4264, 12501, 'twelve thousand five hundred one');\nINSERT INTO t1 VALUES(4265, 28907, 'twenty-eight thousand nine hundred seven');\nINSERT INTO t1 VALUES(4266, 77210, 'seventy-seven thousand two hundred ten');\nINSERT INTO t1 VALUES(4267, 23134, 'twenty-three thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(4268, 89194, 'eighty-nine thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(4269, 21975, 'twenty-one thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(4270, 95679, 'ninety-five thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(4271, 38493, 'thirty-eight thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(4272, 26446, 'twenty-six thousand four hundred forty-six');\nINSERT INTO t1 VALUES(4273, 36844, 'thirty-six thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(4274, 13726, 'thirteen thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(4275, 53052, 'fifty-three thousand fifty-two');\nINSERT INTO t1 VALUES(4276, 52230, 'fifty-two thousand two hundred thirty');\nINSERT INTO t1 VALUES(4277, 34535, 'thirty-four thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(4278, 44100, 'forty-four thousand one hundred');\nINSERT INTO t1 VALUES(4279, 36111, 'thirty-six thousand one hundred eleven');\nINSERT INTO t1 VALUES(4280, 62595, 'sixty-two thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(4281, 5046, 'five thousand forty-six');\nINSERT INTO t1 VALUES(4282, 3729, 'three thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(4283, 66487, 'sixty-six thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(4284, 82991, 'eighty-two thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(4285, 77239, 'seventy-seven thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(4286, 37550, 'thirty-seven thousand five hundred fifty');\nINSERT INTO t1 VALUES(4287, 38215, 'thirty-eight thousand two hundred fifteen');\nINSERT INTO t1 VALUES(4288, 28528, 'twenty-eight thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(4289, 83387, 'eighty-three thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(4290, 50686, 'fifty thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(4291, 8811, 'eight thousand eight hundred eleven');\nINSERT INTO t1 VALUES(4292, 64877, 'sixty-four thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(4293, 9235, 'nine thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(4294, 29722, 'twenty-nine thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(4295, 61695, 'sixty-one thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(4296, 70822, 'seventy thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(4297, 78917, 'seventy-eight thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(4298, 77630, 'seventy-seven thousand six hundred thirty');\nINSERT INTO t1 VALUES(4299, 8531, 'eight thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(4300, 16640, 'sixteen thousand six hundred forty');\nINSERT INTO t1 VALUES(4301, 12329, 'twelve thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(4302, 44621, 'forty-four thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(4303, 96599, 'ninety-six thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(4304, 54798, 'fifty-four thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(4305, 32616, 'thirty-two thousand six hundred sixteen');\nINSERT INTO t1 VALUES(4306, 83306, 'eighty-three thousand three hundred six');\nINSERT INTO t1 VALUES(4307, 34071, 'thirty-four thousand seventy-one');\nINSERT INTO t1 VALUES(4308, 32482, 'thirty-two thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(4309, 81242, 'eighty-one thousand two hundred forty-two');\nINSERT INTO t1 VALUES(4310, 71814, 'seventy-one thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(4311, 91235, 'ninety-one thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(4312, 92963, 'ninety-two thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(4313, 86072, 'eighty-six thousand seventy-two');\nINSERT INTO t1 VALUES(4314, 30940, 'thirty thousand nine hundred forty');\nINSERT INTO t1 VALUES(4315, 85638, 'eighty-five thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(4316, 81292, 'eighty-one thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(4317, 13385, 'thirteen thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(4318, 438, 'four hundred thirty-eight');\nINSERT INTO t1 VALUES(4319, 24786, 'twenty-four thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(4320, 63989, 'sixty-three thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(4321, 69795, 'sixty-nine thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(4322, 52973, 'fifty-two thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(4323, 34977, 'thirty-four thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(4324, 61889, 'sixty-one thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(4325, 50111, 'fifty thousand one hundred eleven');\nINSERT INTO t1 VALUES(4326, 35659, 'thirty-five thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(4327, 99502, 'ninety-nine thousand five hundred two');\nINSERT INTO t1 VALUES(4328, 67187, 'sixty-seven thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(4329, 58822, 'fifty-eight thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(4330, 76737, 'seventy-six thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(4331, 73627, 'seventy-three thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(4332, 52084, 'fifty-two thousand eighty-four');\nINSERT INTO t1 VALUES(4333, 88570, 'eighty-eight thousand five hundred seventy');\nINSERT INTO t1 VALUES(4334, 94844, 'ninety-four thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(4335, 8684, 'eight thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(4336, 34319, 'thirty-four thousand three hundred nineteen');\nINSERT INTO t1 VALUES(4337, 54419, 'fifty-four thousand four hundred nineteen');\nINSERT INTO t1 VALUES(4338, 35967, 'thirty-five thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(4339, 77660, 'seventy-seven thousand six hundred sixty');\nINSERT INTO t1 VALUES(4340, 19005, 'nineteen thousand five');\nINSERT INTO t1 VALUES(4341, 41393, 'forty-one thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(4342, 72678, 'seventy-two thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(4343, 34693, 'thirty-four thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(4344, 50871, 'fifty thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(4345, 39347, 'thirty-nine thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(4346, 86855, 'eighty-six thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(4347, 73145, 'seventy-three thousand one hundred forty-five');\nINSERT INTO t1 VALUES(4348, 2576, 'two thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(4349, 8295, 'eight thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(4350, 46147, 'forty-six thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(4351, 55977, 'fifty-five thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(4352, 3372, 'three thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(4353, 87364, 'eighty-seven thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(4354, 56269, 'fifty-six thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(4355, 48197, 'forty-eight thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(4356, 13313, 'thirteen thousand three hundred thirteen');\nINSERT INTO t1 VALUES(4357, 2170, 'two thousand one hundred seventy');\nINSERT INTO t1 VALUES(4358, 38951, 'thirty-eight thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(4359, 5197, 'five thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(4360, 76118, 'seventy-six thousand one hundred eighteen');\nINSERT INTO t1 VALUES(4361, 15494, 'fifteen thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(4362, 4522, 'four thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(4363, 12091, 'twelve thousand ninety-one');\nINSERT INTO t1 VALUES(4364, 38854, 'thirty-eight thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(4365, 90046, 'ninety thousand forty-six');\nINSERT INTO t1 VALUES(4366, 73735, 'seventy-three thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(4367, 39442, 'thirty-nine thousand four hundred forty-two');\nINSERT INTO t1 VALUES(4368, 36449, 'thirty-six thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(4369, 11302, 'eleven thousand three hundred two');\nINSERT INTO t1 VALUES(4370, 81366, 'eighty-one thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(4371, 13594, 'thirteen thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(4372, 76789, 'seventy-six thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(4373, 71480, 'seventy-one thousand four hundred eighty');\nINSERT INTO t1 VALUES(4374, 21890, 'twenty-one thousand eight hundred ninety');\nINSERT INTO t1 VALUES(4375, 90100, 'ninety thousand one hundred');\nINSERT INTO t1 VALUES(4376, 71914, 'seventy-one thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(4377, 34220, 'thirty-four thousand two hundred twenty');\nINSERT INTO t1 VALUES(4378, 16556, 'sixteen thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(4379, 13244, 'thirteen thousand two hundred forty-four');\nINSERT INTO t1 VALUES(4380, 84931, 'eighty-four thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(4381, 73567, 'seventy-three thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(4382, 40108, 'forty thousand one hundred eight');\nINSERT INTO t1 VALUES(4383, 47243, 'forty-seven thousand two hundred forty-three');\nINSERT INTO t1 VALUES(4384, 39816, 'thirty-nine thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(4385, 25208, 'twenty-five thousand two hundred eight');\nINSERT INTO t1 VALUES(4386, 93969, 'ninety-three thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(4387, 11719, 'eleven thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(4388, 52673, 'fifty-two thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(4389, 55600, 'fifty-five thousand six hundred');\nINSERT INTO t1 VALUES(4390, 47182, 'forty-seven thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(4391, 60823, 'sixty thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(4392, 14800, 'fourteen thousand eight hundred');\nINSERT INTO t1 VALUES(4393, 77955, 'seventy-seven thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(4394, 85926, 'eighty-five thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(4395, 20814, 'twenty thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(4396, 25011, 'twenty-five thousand eleven');\nINSERT INTO t1 VALUES(4397, 55664, 'fifty-five thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(4398, 81687, 'eighty-one thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(4399, 17646, 'seventeen thousand six hundred forty-six');\nINSERT INTO t1 VALUES(4400, 73010, 'seventy-three thousand ten');\nINSERT INTO t1 VALUES(4401, 63769, 'sixty-three thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(4402, 90297, 'ninety thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(4403, 13448, 'thirteen thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(4404, 42409, 'forty-two thousand four hundred nine');\nINSERT INTO t1 VALUES(4405, 81932, 'eighty-one thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(4406, 42948, 'forty-two thousand nine hundred forty-eight');\nINSERT INTO t1 VALUES(4407, 61673, 'sixty-one thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(4408, 38646, 'thirty-eight thousand six hundred forty-six');\nINSERT INTO t1 VALUES(4409, 16276, 'sixteen thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(4410, 40691, 'forty thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(4411, 30221, 'thirty thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(4412, 21102, 'twenty-one thousand one hundred two');\nINSERT INTO t1 VALUES(4413, 97986, 'ninety-seven thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(4414, 82405, 'eighty-two thousand four hundred five');\nINSERT INTO t1 VALUES(4415, 78001, 'seventy-eight thousand one');\nINSERT INTO t1 VALUES(4416, 2903, 'two thousand nine hundred three');\nINSERT INTO t1 VALUES(4417, 78695, 'seventy-eight thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(4418, 86867, 'eighty-six thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(4419, 4375, 'four thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(4420, 79719, 'seventy-nine thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(4421, 4516, 'four thousand five hundred sixteen');\nINSERT INTO t1 VALUES(4422, 35265, 'thirty-five thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(4423, 90507, 'ninety thousand five hundred seven');\nINSERT INTO t1 VALUES(4424, 84900, 'eighty-four thousand nine hundred');\nINSERT INTO t1 VALUES(4425, 64481, 'sixty-four thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(4426, 80870, 'eighty thousand eight hundred seventy');\nINSERT INTO t1 VALUES(4427, 91275, 'ninety-one thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(4428, 52462, 'fifty-two thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(4429, 70255, 'seventy thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(4430, 18420, 'eighteen thousand four hundred twenty');\nINSERT INTO t1 VALUES(4431, 33198, 'thirty-three thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(4432, 92050, 'ninety-two thousand fifty');\nINSERT INTO t1 VALUES(4433, 23095, 'twenty-three thousand ninety-five');\nINSERT INTO t1 VALUES(4434, 72199, 'seventy-two thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(4435, 12190, 'twelve thousand one hundred ninety');\nINSERT INTO t1 VALUES(4436, 97464, 'ninety-seven thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(4437, 69, 'sixty-nine');\nINSERT INTO t1 VALUES(4438, 73361, 'seventy-three thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(4439, 16275, 'sixteen thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(4440, 89769, 'eighty-nine thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(4441, 89812, 'eighty-nine thousand eight hundred twelve');\nINSERT INTO t1 VALUES(4442, 73627, 'seventy-three thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(4443, 11675, 'eleven thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(4444, 32894, 'thirty-two thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(4445, 13355, 'thirteen thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(4446, 37206, 'thirty-seven thousand two hundred six');\nINSERT INTO t1 VALUES(4447, 61885, 'sixty-one thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(4448, 2590, 'two thousand five hundred ninety');\nINSERT INTO t1 VALUES(4449, 69986, 'sixty-nine thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(4450, 15123, 'fifteen thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(4451, 61831, 'sixty-one thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(4452, 4007, 'four thousand seven');\nINSERT INTO t1 VALUES(4453, 2412, 'two thousand four hundred twelve');\nINSERT INTO t1 VALUES(4454, 58568, 'fifty-eight thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(4455, 96392, 'ninety-six thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(4456, 59677, 'fifty-nine thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(4457, 24514, 'twenty-four thousand five hundred fourteen');\nINSERT INTO t1 VALUES(4458, 83574, 'eighty-three thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(4459, 74774, 'seventy-four thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(4460, 79095, 'seventy-nine thousand ninety-five');\nINSERT INTO t1 VALUES(4461, 77764, 'seventy-seven thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(4462, 23168, 'twenty-three thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(4463, 90361, 'ninety thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(4464, 81735, 'eighty-one thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(4465, 3721, 'three thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(4466, 62533, 'sixty-two thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(4467, 10416, 'ten thousand four hundred sixteen');\nINSERT INTO t1 VALUES(4468, 16354, 'sixteen thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(4469, 84543, 'eighty-four thousand five hundred forty-three');\nINSERT INTO t1 VALUES(4470, 21518, 'twenty-one thousand five hundred eighteen');\nINSERT INTO t1 VALUES(4471, 64956, 'sixty-four thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(4472, 33205, 'thirty-three thousand two hundred five');\nINSERT INTO t1 VALUES(4473, 41371, 'forty-one thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(4474, 3890, 'three thousand eight hundred ninety');\nINSERT INTO t1 VALUES(4475, 66162, 'sixty-six thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(4476, 57649, 'fifty-seven thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(4477, 31883, 'thirty-one thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(4478, 89096, 'eighty-nine thousand ninety-six');\nINSERT INTO t1 VALUES(4479, 52144, 'fifty-two thousand one hundred forty-four');\nINSERT INTO t1 VALUES(4480, 62885, 'sixty-two thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(4481, 5440, 'five thousand four hundred forty');\nINSERT INTO t1 VALUES(4482, 72046, 'seventy-two thousand forty-six');\nINSERT INTO t1 VALUES(4483, 49796, 'forty-nine thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(4484, 16292, 'sixteen thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(4485, 4381, 'four thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(4486, 16949, 'sixteen thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(4487, 58059, 'fifty-eight thousand fifty-nine');\nINSERT INTO t1 VALUES(4488, 37479, 'thirty-seven thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(4489, 83312, 'eighty-three thousand three hundred twelve');\nINSERT INTO t1 VALUES(4490, 73488, 'seventy-three thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(4491, 2998, 'two thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(4492, 37564, 'thirty-seven thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(4493, 99338, 'ninety-nine thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(4494, 76682, 'seventy-six thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(4495, 50335, 'fifty thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(4496, 94127, 'ninety-four thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(4497, 23942, 'twenty-three thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(4498, 94934, 'ninety-four thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(4499, 17030, 'seventeen thousand thirty');\nINSERT INTO t1 VALUES(4500, 85613, 'eighty-five thousand six hundred thirteen');\nINSERT INTO t1 VALUES(4501, 42121, 'forty-two thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(4502, 25182, 'twenty-five thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(4503, 62630, 'sixty-two thousand six hundred thirty');\nINSERT INTO t1 VALUES(4504, 32441, 'thirty-two thousand four hundred forty-one');\nINSERT INTO t1 VALUES(4505, 46001, 'forty-six thousand one');\nINSERT INTO t1 VALUES(4506, 50930, 'fifty thousand nine hundred thirty');\nINSERT INTO t1 VALUES(4507, 16463, 'sixteen thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(4508, 37730, 'thirty-seven thousand seven hundred thirty');\nINSERT INTO t1 VALUES(4509, 30040, 'thirty thousand forty');\nINSERT INTO t1 VALUES(4510, 62319, 'sixty-two thousand three hundred nineteen');\nINSERT INTO t1 VALUES(4511, 85559, 'eighty-five thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(4512, 89263, 'eighty-nine thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(4513, 86400, 'eighty-six thousand four hundred');\nINSERT INTO t1 VALUES(4514, 37894, 'thirty-seven thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(4515, 88711, 'eighty-eight thousand seven hundred eleven');\nINSERT INTO t1 VALUES(4516, 81284, 'eighty-one thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(4517, 72256, 'seventy-two thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(4518, 29560, 'twenty-nine thousand five hundred sixty');\nINSERT INTO t1 VALUES(4519, 43800, 'forty-three thousand eight hundred');\nINSERT INTO t1 VALUES(4520, 32476, 'thirty-two thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(4521, 2745, 'two thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(4522, 7305, 'seven thousand three hundred five');\nINSERT INTO t1 VALUES(4523, 43356, 'forty-three thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(4524, 2617, 'two thousand six hundred seventeen');\nINSERT INTO t1 VALUES(4525, 6228, 'six thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(4526, 22054, 'twenty-two thousand fifty-four');\nINSERT INTO t1 VALUES(4527, 57053, 'fifty-seven thousand fifty-three');\nINSERT INTO t1 VALUES(4528, 25028, 'twenty-five thousand twenty-eight');\nINSERT INTO t1 VALUES(4529, 82324, 'eighty-two thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(4530, 55502, 'fifty-five thousand five hundred two');\nINSERT INTO t1 VALUES(4531, 32469, 'thirty-two thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(4532, 14283, 'fourteen thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(4533, 27467, 'twenty-seven thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(4534, 79652, 'seventy-nine thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(4535, 45547, 'forty-five thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(4536, 26496, 'twenty-six thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(4537, 3460, 'three thousand four hundred sixty');\nINSERT INTO t1 VALUES(4538, 298, 'two hundred ninety-eight');\nINSERT INTO t1 VALUES(4539, 19180, 'nineteen thousand one hundred eighty');\nINSERT INTO t1 VALUES(4540, 96567, 'ninety-six thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(4541, 77127, 'seventy-seven thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(4542, 45628, 'forty-five thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(4543, 48647, 'forty-eight thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(4544, 93104, 'ninety-three thousand one hundred four');\nINSERT INTO t1 VALUES(4545, 28688, 'twenty-eight thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(4546, 89201, 'eighty-nine thousand two hundred one');\nINSERT INTO t1 VALUES(4547, 96062, 'ninety-six thousand sixty-two');\nINSERT INTO t1 VALUES(4548, 49085, 'forty-nine thousand eighty-five');\nINSERT INTO t1 VALUES(4549, 24101, 'twenty-four thousand one hundred one');\nINSERT INTO t1 VALUES(4550, 74842, 'seventy-four thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(4551, 80749, 'eighty thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(4552, 52575, 'fifty-two thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(4553, 34814, 'thirty-four thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(4554, 63019, 'sixty-three thousand nineteen');\nINSERT INTO t1 VALUES(4555, 96764, 'ninety-six thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(4556, 87075, 'eighty-seven thousand seventy-five');\nINSERT INTO t1 VALUES(4557, 72945, 'seventy-two thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(4558, 19887, 'nineteen thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(4559, 39030, 'thirty-nine thousand thirty');\nINSERT INTO t1 VALUES(4560, 80749, 'eighty thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(4561, 96556, 'ninety-six thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(4562, 37537, 'thirty-seven thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(4563, 11115, 'eleven thousand one hundred fifteen');\nINSERT INTO t1 VALUES(4564, 20674, 'twenty thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(4565, 45543, 'forty-five thousand five hundred forty-three');\nINSERT INTO t1 VALUES(4566, 55336, 'fifty-five thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(4567, 28075, 'twenty-eight thousand seventy-five');\nINSERT INTO t1 VALUES(4568, 45745, 'forty-five thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(4569, 46591, 'forty-six thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(4570, 19822, 'nineteen thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(4571, 72821, 'seventy-two thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(4572, 12415, 'twelve thousand four hundred fifteen');\nINSERT INTO t1 VALUES(4573, 44877, 'forty-four thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(4574, 14748, 'fourteen thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(4575, 70451, 'seventy thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(4576, 81424, 'eighty-one thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(4577, 9178, 'nine thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(4578, 16823, 'sixteen thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(4579, 86125, 'eighty-six thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(4580, 58448, 'fifty-eight thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(4581, 28433, 'twenty-eight thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(4582, 24244, 'twenty-four thousand two hundred forty-four');\nINSERT INTO t1 VALUES(4583, 8086, 'eight thousand eighty-six');\nINSERT INTO t1 VALUES(4584, 64280, 'sixty-four thousand two hundred eighty');\nINSERT INTO t1 VALUES(4585, 27482, 'twenty-seven thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(4586, 77782, 'seventy-seven thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(4587, 38899, 'thirty-eight thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(4588, 36738, 'thirty-six thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(4589, 36054, 'thirty-six thousand fifty-four');\nINSERT INTO t1 VALUES(4590, 112, 'one hundred twelve');\nINSERT INTO t1 VALUES(4591, 17643, 'seventeen thousand six hundred forty-three');\nINSERT INTO t1 VALUES(4592, 45540, 'forty-five thousand five hundred forty');\nINSERT INTO t1 VALUES(4593, 29120, 'twenty-nine thousand one hundred twenty');\nINSERT INTO t1 VALUES(4594, 77869, 'seventy-seven thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(4595, 35860, 'thirty-five thousand eight hundred sixty');\nINSERT INTO t1 VALUES(4596, 33832, 'thirty-three thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(4597, 56234, 'fifty-six thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(4598, 22523, 'twenty-two thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(4599, 60255, 'sixty thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(4600, 61027, 'sixty-one thousand twenty-seven');\nINSERT INTO t1 VALUES(4601, 73489, 'seventy-three thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(4602, 16787, 'sixteen thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(4603, 3642, 'three thousand six hundred forty-two');\nINSERT INTO t1 VALUES(4604, 7213, 'seven thousand two hundred thirteen');\nINSERT INTO t1 VALUES(4605, 26343, 'twenty-six thousand three hundred forty-three');\nINSERT INTO t1 VALUES(4606, 63004, 'sixty-three thousand four');\nINSERT INTO t1 VALUES(4607, 15594, 'fifteen thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(4608, 98127, 'ninety-eight thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(4609, 18302, 'eighteen thousand three hundred two');\nINSERT INTO t1 VALUES(4610, 74228, 'seventy-four thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(4611, 11072, 'eleven thousand seventy-two');\nINSERT INTO t1 VALUES(4612, 24214, 'twenty-four thousand two hundred fourteen');\nINSERT INTO t1 VALUES(4613, 13481, 'thirteen thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(4614, 19585, 'nineteen thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(4615, 55560, 'fifty-five thousand five hundred sixty');\nINSERT INTO t1 VALUES(4616, 26028, 'twenty-six thousand twenty-eight');\nINSERT INTO t1 VALUES(4617, 26325, 'twenty-six thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(4618, 5183, 'five thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(4619, 12754, 'twelve thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(4620, 52704, 'fifty-two thousand seven hundred four');\nINSERT INTO t1 VALUES(4621, 20287, 'twenty thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(4622, 33712, 'thirty-three thousand seven hundred twelve');\nINSERT INTO t1 VALUES(4623, 15237, 'fifteen thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(4624, 63214, 'sixty-three thousand two hundred fourteen');\nINSERT INTO t1 VALUES(4625, 59761, 'fifty-nine thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(4626, 25881, 'twenty-five thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(4627, 26416, 'twenty-six thousand four hundred sixteen');\nINSERT INTO t1 VALUES(4628, 69923, 'sixty-nine thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(4629, 23787, 'twenty-three thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(4630, 30968, 'thirty thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(4631, 22540, 'twenty-two thousand five hundred forty');\nINSERT INTO t1 VALUES(4632, 95694, 'ninety-five thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(4633, 5333, 'five thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(4634, 38454, 'thirty-eight thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(4635, 71328, 'seventy-one thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(4636, 79506, 'seventy-nine thousand five hundred six');\nINSERT INTO t1 VALUES(4637, 43506, 'forty-three thousand five hundred six');\nINSERT INTO t1 VALUES(4638, 92516, 'ninety-two thousand five hundred sixteen');\nINSERT INTO t1 VALUES(4639, 34411, 'thirty-four thousand four hundred eleven');\nINSERT INTO t1 VALUES(4640, 17383, 'seventeen thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(4641, 93608, 'ninety-three thousand six hundred eight');\nINSERT INTO t1 VALUES(4642, 19688, 'nineteen thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(4643, 66823, 'sixty-six thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(4644, 41191, 'forty-one thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(4645, 39651, 'thirty-nine thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(4646, 29956, 'twenty-nine thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(4647, 26691, 'twenty-six thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(4648, 60453, 'sixty thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(4649, 31389, 'thirty-one thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(4650, 71557, 'seventy-one thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(4651, 87148, 'eighty-seven thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(4652, 47039, 'forty-seven thousand thirty-nine');\nINSERT INTO t1 VALUES(4653, 67529, 'sixty-seven thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(4654, 52880, 'fifty-two thousand eight hundred eighty');\nINSERT INTO t1 VALUES(4655, 2214, 'two thousand two hundred fourteen');\nINSERT INTO t1 VALUES(4656, 223, 'two hundred twenty-three');\nINSERT INTO t1 VALUES(4657, 46272, 'forty-six thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(4658, 62649, 'sixty-two thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(4659, 3029, 'three thousand twenty-nine');\nINSERT INTO t1 VALUES(4660, 51517, 'fifty-one thousand five hundred seventeen');\nINSERT INTO t1 VALUES(4661, 50101, 'fifty thousand one hundred one');\nINSERT INTO t1 VALUES(4662, 82730, 'eighty-two thousand seven hundred thirty');\nINSERT INTO t1 VALUES(4663, 44195, 'forty-four thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(4664, 87695, 'eighty-seven thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(4665, 18000, 'eighteen thousand');\nINSERT INTO t1 VALUES(4666, 62865, 'sixty-two thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(4667, 81884, 'eighty-one thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(4668, 54719, 'fifty-four thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(4669, 48270, 'forty-eight thousand two hundred seventy');\nINSERT INTO t1 VALUES(4670, 29229, 'twenty-nine thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(4671, 41942, 'forty-one thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(4672, 19455, 'nineteen thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(4673, 12275, 'twelve thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(4674, 43812, 'forty-three thousand eight hundred twelve');\nINSERT INTO t1 VALUES(4675, 94906, 'ninety-four thousand nine hundred six');\nINSERT INTO t1 VALUES(4676, 28963, 'twenty-eight thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(4677, 97041, 'ninety-seven thousand forty-one');\nINSERT INTO t1 VALUES(4678, 51525, 'fifty-one thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(4679, 20175, 'twenty thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(4680, 54637, 'fifty-four thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(4681, 60318, 'sixty thousand three hundred eighteen');\nINSERT INTO t1 VALUES(4682, 83591, 'eighty-three thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(4683, 78304, 'seventy-eight thousand three hundred four');\nINSERT INTO t1 VALUES(4684, 87038, 'eighty-seven thousand thirty-eight');\nINSERT INTO t1 VALUES(4685, 93463, 'ninety-three thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(4686, 57922, 'fifty-seven thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(4687, 90454, 'ninety thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(4688, 67887, 'sixty-seven thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(4689, 94992, 'ninety-four thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(4690, 30092, 'thirty thousand ninety-two');\nINSERT INTO t1 VALUES(4691, 39925, 'thirty-nine thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(4692, 98894, 'ninety-eight thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(4693, 22185, 'twenty-two thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(4694, 55467, 'fifty-five thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(4695, 30974, 'thirty thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(4696, 13329, 'thirteen thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(4697, 42245, 'forty-two thousand two hundred forty-five');\nINSERT INTO t1 VALUES(4698, 73620, 'seventy-three thousand six hundred twenty');\nINSERT INTO t1 VALUES(4699, 55895, 'fifty-five thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(4700, 38992, 'thirty-eight thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(4701, 31429, 'thirty-one thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(4702, 78689, 'seventy-eight thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(4703, 7182, 'seven thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(4704, 92551, 'ninety-two thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(4705, 8034, 'eight thousand thirty-four');\nINSERT INTO t1 VALUES(4706, 14160, 'fourteen thousand one hundred sixty');\nINSERT INTO t1 VALUES(4707, 7982, 'seven thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(4708, 69649, 'sixty-nine thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(4709, 24814, 'twenty-four thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(4710, 35534, 'thirty-five thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(4711, 65803, 'sixty-five thousand eight hundred three');\nINSERT INTO t1 VALUES(4712, 53290, 'fifty-three thousand two hundred ninety');\nINSERT INTO t1 VALUES(4713, 84382, 'eighty-four thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(4714, 81647, 'eighty-one thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(4715, 95052, 'ninety-five thousand fifty-two');\nINSERT INTO t1 VALUES(4716, 83463, 'eighty-three thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(4717, 45832, 'forty-five thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(4718, 58904, 'fifty-eight thousand nine hundred four');\nINSERT INTO t1 VALUES(4719, 90946, 'ninety thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(4720, 5559, 'five thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(4721, 70094, 'seventy thousand ninety-four');\nINSERT INTO t1 VALUES(4722, 75315, 'seventy-five thousand three hundred fifteen');\nINSERT INTO t1 VALUES(4723, 95182, 'ninety-five thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(4724, 27181, 'twenty-seven thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(4725, 87266, 'eighty-seven thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(4726, 97152, 'ninety-seven thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(4727, 73108, 'seventy-three thousand one hundred eight');\nINSERT INTO t1 VALUES(4728, 81790, 'eighty-one thousand seven hundred ninety');\nINSERT INTO t1 VALUES(4729, 23506, 'twenty-three thousand five hundred six');\nINSERT INTO t1 VALUES(4730, 11411, 'eleven thousand four hundred eleven');\nINSERT INTO t1 VALUES(4731, 19269, 'nineteen thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(4732, 88849, 'eighty-eight thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(4733, 89848, 'eighty-nine thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(4734, 57216, 'fifty-seven thousand two hundred sixteen');\nINSERT INTO t1 VALUES(4735, 99567, 'ninety-nine thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(4736, 60854, 'sixty thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(4737, 8480, 'eight thousand four hundred eighty');\nINSERT INTO t1 VALUES(4738, 62542, 'sixty-two thousand five hundred forty-two');\nINSERT INTO t1 VALUES(4739, 53815, 'fifty-three thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(4740, 92189, 'ninety-two thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(4741, 33155, 'thirty-three thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(4742, 29081, 'twenty-nine thousand eighty-one');\nINSERT INTO t1 VALUES(4743, 72184, 'seventy-two thousand one hundred eighty-four');\nINSERT INTO t1 VALUES(4744, 87359, 'eighty-seven thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(4745, 60716, 'sixty thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(4746, 55877, 'fifty-five thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(4747, 98929, 'ninety-eight thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(4748, 76459, 'seventy-six thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(4749, 85503, 'eighty-five thousand five hundred three');\nINSERT INTO t1 VALUES(4750, 4674, 'four thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(4751, 52772, 'fifty-two thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(4752, 29261, 'twenty-nine thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(4753, 94405, 'ninety-four thousand four hundred five');\nINSERT INTO t1 VALUES(4754, 75367, 'seventy-five thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(4755, 63012, 'sixty-three thousand twelve');\nINSERT INTO t1 VALUES(4756, 76829, 'seventy-six thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(4757, 74750, 'seventy-four thousand seven hundred fifty');\nINSERT INTO t1 VALUES(4758, 58123, 'fifty-eight thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(4759, 99842, 'ninety-nine thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(4760, 3245, 'three thousand two hundred forty-five');\nINSERT INTO t1 VALUES(4761, 11922, 'eleven thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(4762, 74128, 'seventy-four thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(4763, 76166, 'seventy-six thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(4764, 81014, 'eighty-one thousand fourteen');\nINSERT INTO t1 VALUES(4765, 40155, 'forty thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(4766, 73621, 'seventy-three thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(4767, 56684, 'fifty-six thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(4768, 16762, 'sixteen thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(4769, 70218, 'seventy thousand two hundred eighteen');\nINSERT INTO t1 VALUES(4770, 38033, 'thirty-eight thousand thirty-three');\nINSERT INTO t1 VALUES(4771, 54826, 'fifty-four thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(4772, 5337, 'five thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(4773, 42832, 'forty-two thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(4774, 6213, 'six thousand two hundred thirteen');\nINSERT INTO t1 VALUES(4775, 79273, 'seventy-nine thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(4776, 86024, 'eighty-six thousand twenty-four');\nINSERT INTO t1 VALUES(4777, 39177, 'thirty-nine thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(4778, 4183, 'four thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(4779, 5785, 'five thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(4780, 86512, 'eighty-six thousand five hundred twelve');\nINSERT INTO t1 VALUES(4781, 74248, 'seventy-four thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(4782, 53540, 'fifty-three thousand five hundred forty');\nINSERT INTO t1 VALUES(4783, 55751, 'fifty-five thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(4784, 86292, 'eighty-six thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(4785, 82125, 'eighty-two thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(4786, 23481, 'twenty-three thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(4787, 1380, 'one thousand three hundred eighty');\nINSERT INTO t1 VALUES(4788, 43547, 'forty-three thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(4789, 12525, 'twelve thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(4790, 78352, 'seventy-eight thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(4791, 93662, 'ninety-three thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(4792, 45011, 'forty-five thousand eleven');\nINSERT INTO t1 VALUES(4793, 79472, 'seventy-nine thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(4794, 70947, 'seventy thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(4795, 99507, 'ninety-nine thousand five hundred seven');\nINSERT INTO t1 VALUES(4796, 95225, 'ninety-five thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(4797, 82065, 'eighty-two thousand sixty-five');\nINSERT INTO t1 VALUES(4798, 64953, 'sixty-four thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(4799, 65642, 'sixty-five thousand six hundred forty-two');\nINSERT INTO t1 VALUES(4800, 23437, 'twenty-three thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(4801, 77763, 'seventy-seven thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(4802, 50917, 'fifty thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(4803, 34383, 'thirty-four thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(4804, 94515, 'ninety-four thousand five hundred fifteen');\nINSERT INTO t1 VALUES(4805, 30107, 'thirty thousand one hundred seven');\nINSERT INTO t1 VALUES(4806, 64486, 'sixty-four thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(4807, 94781, 'ninety-four thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(4808, 79292, 'seventy-nine thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(4809, 62750, 'sixty-two thousand seven hundred fifty');\nINSERT INTO t1 VALUES(4810, 85780, 'eighty-five thousand seven hundred eighty');\nINSERT INTO t1 VALUES(4811, 17220, 'seventeen thousand two hundred twenty');\nINSERT INTO t1 VALUES(4812, 78299, 'seventy-eight thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(4813, 37094, 'thirty-seven thousand ninety-four');\nINSERT INTO t1 VALUES(4814, 50726, 'fifty thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(4815, 22276, 'twenty-two thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(4816, 65786, 'sixty-five thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(4817, 63124, 'sixty-three thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(4818, 82648, 'eighty-two thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(4819, 22243, 'twenty-two thousand two hundred forty-three');\nINSERT INTO t1 VALUES(4820, 47823, 'forty-seven thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(4821, 14155, 'fourteen thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(4822, 14939, 'fourteen thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(4823, 24501, 'twenty-four thousand five hundred one');\nINSERT INTO t1 VALUES(4824, 96636, 'ninety-six thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(4825, 66089, 'sixty-six thousand eighty-nine');\nINSERT INTO t1 VALUES(4826, 62383, 'sixty-two thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(4827, 79947, 'seventy-nine thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(4828, 66649, 'sixty-six thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(4829, 34257, 'thirty-four thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(4830, 98383, 'ninety-eight thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(4831, 51891, 'fifty-one thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(4832, 33082, 'thirty-three thousand eighty-two');\nINSERT INTO t1 VALUES(4833, 76087, 'seventy-six thousand eighty-seven');\nINSERT INTO t1 VALUES(4834, 57695, 'fifty-seven thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(4835, 2954, 'two thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(4836, 24087, 'twenty-four thousand eighty-seven');\nINSERT INTO t1 VALUES(4837, 15764, 'fifteen thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(4838, 11409, 'eleven thousand four hundred nine');\nINSERT INTO t1 VALUES(4839, 71831, 'seventy-one thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(4840, 98522, 'ninety-eight thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(4841, 60169, 'sixty thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(4842, 97832, 'ninety-seven thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(4843, 99592, 'ninety-nine thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(4844, 25798, 'twenty-five thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(4845, 12152, 'twelve thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(4846, 78138, 'seventy-eight thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(4847, 25771, 'twenty-five thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(4848, 90210, 'ninety thousand two hundred ten');\nINSERT INTO t1 VALUES(4849, 37288, 'thirty-seven thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(4850, 92811, 'ninety-two thousand eight hundred eleven');\nINSERT INTO t1 VALUES(4851, 43802, 'forty-three thousand eight hundred two');\nINSERT INTO t1 VALUES(4852, 21473, 'twenty-one thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(4853, 62432, 'sixty-two thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(4854, 40722, 'forty thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(4855, 65167, 'sixty-five thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(4856, 17437, 'seventeen thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(4857, 36541, 'thirty-six thousand five hundred forty-one');\nINSERT INTO t1 VALUES(4858, 97480, 'ninety-seven thousand four hundred eighty');\nINSERT INTO t1 VALUES(4859, 49377, 'forty-nine thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(4860, 28958, 'twenty-eight thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(4861, 43310, 'forty-three thousand three hundred ten');\nINSERT INTO t1 VALUES(4862, 16391, 'sixteen thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(4863, 67625, 'sixty-seven thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(4864, 34527, 'thirty-four thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(4865, 56647, 'fifty-six thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(4866, 73526, 'seventy-three thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(4867, 16145, 'sixteen thousand one hundred forty-five');\nINSERT INTO t1 VALUES(4868, 89559, 'eighty-nine thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(4869, 78318, 'seventy-eight thousand three hundred eighteen');\nINSERT INTO t1 VALUES(4870, 84615, 'eighty-four thousand six hundred fifteen');\nINSERT INTO t1 VALUES(4871, 27418, 'twenty-seven thousand four hundred eighteen');\nINSERT INTO t1 VALUES(4872, 11750, 'eleven thousand seven hundred fifty');\nINSERT INTO t1 VALUES(4873, 84545, 'eighty-four thousand five hundred forty-five');\nINSERT INTO t1 VALUES(4874, 92760, 'ninety-two thousand seven hundred sixty');\nINSERT INTO t1 VALUES(4875, 3374, 'three thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(4876, 53723, 'fifty-three thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(4877, 39422, 'thirty-nine thousand four hundred twenty-two');\nINSERT INTO t1 VALUES(4878, 95276, 'ninety-five thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(4879, 66620, 'sixty-six thousand six hundred twenty');\nINSERT INTO t1 VALUES(4880, 85432, 'eighty-five thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(4881, 6362, 'six thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(4882, 62071, 'sixty-two thousand seventy-one');\nINSERT INTO t1 VALUES(4883, 70669, 'seventy thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(4884, 56076, 'fifty-six thousand seventy-six');\nINSERT INTO t1 VALUES(4885, 36689, 'thirty-six thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(4886, 14768, 'fourteen thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(4887, 21692, 'twenty-one thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(4888, 14078, 'fourteen thousand seventy-eight');\nINSERT INTO t1 VALUES(4889, 60308, 'sixty thousand three hundred eight');\nINSERT INTO t1 VALUES(4890, 682, 'six hundred eighty-two');\nINSERT INTO t1 VALUES(4891, 11, 'eleven');\nINSERT INTO t1 VALUES(4892, 78599, 'seventy-eight thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(4893, 6511, 'six thousand five hundred eleven');\nINSERT INTO t1 VALUES(4894, 91329, 'ninety-one thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(4895, 49767, 'forty-nine thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(4896, 86325, 'eighty-six thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(4897, 42924, 'forty-two thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(4898, 65871, 'sixty-five thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(4899, 34569, 'thirty-four thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(4900, 66317, 'sixty-six thousand three hundred seventeen');\nINSERT INTO t1 VALUES(4901, 1648, 'one thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(4902, 22486, 'twenty-two thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(4903, 12243, 'twelve thousand two hundred forty-three');\nINSERT INTO t1 VALUES(4904, 90102, 'ninety thousand one hundred two');\nINSERT INTO t1 VALUES(4905, 6406, 'six thousand four hundred six');\nINSERT INTO t1 VALUES(4906, 85824, 'eighty-five thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(4907, 55138, 'fifty-five thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(4908, 82534, 'eighty-two thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(4909, 3539, 'three thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(4910, 85659, 'eighty-five thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(4911, 35053, 'thirty-five thousand fifty-three');\nINSERT INTO t1 VALUES(4912, 98270, 'ninety-eight thousand two hundred seventy');\nINSERT INTO t1 VALUES(4913, 25920, 'twenty-five thousand nine hundred twenty');\nINSERT INTO t1 VALUES(4914, 65751, 'sixty-five thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(4915, 77804, 'seventy-seven thousand eight hundred four');\nINSERT INTO t1 VALUES(4916, 79740, 'seventy-nine thousand seven hundred forty');\nINSERT INTO t1 VALUES(4917, 88145, 'eighty-eight thousand one hundred forty-five');\nINSERT INTO t1 VALUES(4918, 14251, 'fourteen thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(4919, 3766, 'three thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(4920, 68871, 'sixty-eight thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(4921, 14671, 'fourteen thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(4922, 81320, 'eighty-one thousand three hundred twenty');\nINSERT INTO t1 VALUES(4923, 62408, 'sixty-two thousand four hundred eight');\nINSERT INTO t1 VALUES(4924, 60393, 'sixty thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(4925, 44022, 'forty-four thousand twenty-two');\nINSERT INTO t1 VALUES(4926, 34718, 'thirty-four thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(4927, 80929, 'eighty thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(4928, 87547, 'eighty-seven thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(4929, 58435, 'fifty-eight thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(4930, 96859, 'ninety-six thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(4931, 76584, 'seventy-six thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(4932, 70798, 'seventy thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(4933, 76727, 'seventy-six thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(4934, 10316, 'ten thousand three hundred sixteen');\nINSERT INTO t1 VALUES(4935, 58254, 'fifty-eight thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(4936, 74206, 'seventy-four thousand two hundred six');\nINSERT INTO t1 VALUES(4937, 72797, 'seventy-two thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(4938, 85501, 'eighty-five thousand five hundred one');\nINSERT INTO t1 VALUES(4939, 90040, 'ninety thousand forty');\nINSERT INTO t1 VALUES(4940, 69312, 'sixty-nine thousand three hundred twelve');\nINSERT INTO t1 VALUES(4941, 36159, 'thirty-six thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(4942, 41774, 'forty-one thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(4943, 89927, 'eighty-nine thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(4944, 13645, 'thirteen thousand six hundred forty-five');\nINSERT INTO t1 VALUES(4945, 28333, 'twenty-eight thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(4946, 75441, 'seventy-five thousand four hundred forty-one');\nINSERT INTO t1 VALUES(4947, 25143, 'twenty-five thousand one hundred forty-three');\nINSERT INTO t1 VALUES(4948, 80632, 'eighty thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(4949, 47896, 'forty-seven thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(4950, 43277, 'forty-three thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(4951, 88171, 'eighty-eight thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(4952, 85482, 'eighty-five thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(4953, 33910, 'thirty-three thousand nine hundred ten');\nINSERT INTO t1 VALUES(4954, 8168, 'eight thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(4955, 7870, 'seven thousand eight hundred seventy');\nINSERT INTO t1 VALUES(4956, 60041, 'sixty thousand forty-one');\nINSERT INTO t1 VALUES(4957, 70341, 'seventy thousand three hundred forty-one');\nINSERT INTO t1 VALUES(4958, 19890, 'nineteen thousand eight hundred ninety');\nINSERT INTO t1 VALUES(4959, 47365, 'forty-seven thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(4960, 28798, 'twenty-eight thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(4961, 9892, 'nine thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(4962, 67196, 'sixty-seven thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(4963, 16818, 'sixteen thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(4964, 49219, 'forty-nine thousand two hundred nineteen');\nINSERT INTO t1 VALUES(4965, 31667, 'thirty-one thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(4966, 44330, 'forty-four thousand three hundred thirty');\nINSERT INTO t1 VALUES(4967, 89853, 'eighty-nine thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(4968, 39582, 'thirty-nine thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(4969, 52560, 'fifty-two thousand five hundred sixty');\nINSERT INTO t1 VALUES(4970, 32308, 'thirty-two thousand three hundred eight');\nINSERT INTO t1 VALUES(4971, 34148, 'thirty-four thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(4972, 57437, 'fifty-seven thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(4973, 62652, 'sixty-two thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(4974, 7403, 'seven thousand four hundred three');\nINSERT INTO t1 VALUES(4975, 52464, 'fifty-two thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(4976, 89152, 'eighty-nine thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(4977, 68671, 'sixty-eight thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(4978, 38004, 'thirty-eight thousand four');\nINSERT INTO t1 VALUES(4979, 61875, 'sixty-one thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(4980, 31952, 'thirty-one thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(4981, 12227, 'twelve thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(4982, 65683, 'sixty-five thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(4983, 2622, 'two thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(4984, 20773, 'twenty thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(4985, 23588, 'twenty-three thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(4986, 15388, 'fifteen thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(4987, 16975, 'sixteen thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(4988, 25573, 'twenty-five thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(4989, 9375, 'nine thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(4990, 54697, 'fifty-four thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(4991, 19726, 'nineteen thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(4992, 95603, 'ninety-five thousand six hundred three');\nINSERT INTO t1 VALUES(4993, 10589, 'ten thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(4994, 12452, 'twelve thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(4995, 6133, 'six thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(4996, 98070, 'ninety-eight thousand seventy');\nINSERT INTO t1 VALUES(4997, 32980, 'thirty-two thousand nine hundred eighty');\nINSERT INTO t1 VALUES(4998, 88641, 'eighty-eight thousand six hundred forty-one');\nINSERT INTO t1 VALUES(4999, 40778, 'forty thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(5000, 51575, 'fifty-one thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(5001, 69865, 'sixty-nine thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(5002, 48774, 'forty-eight thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(5003, 95451, 'ninety-five thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(5004, 31998, 'thirty-one thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(5005, 86302, 'eighty-six thousand three hundred two');\nINSERT INTO t1 VALUES(5006, 4809, 'four thousand eight hundred nine');\nINSERT INTO t1 VALUES(5007, 14546, 'fourteen thousand five hundred forty-six');\nINSERT INTO t1 VALUES(5008, 4046, 'four thousand forty-six');\nINSERT INTO t1 VALUES(5009, 75233, 'seventy-five thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(5010, 65068, 'sixty-five thousand sixty-eight');\nINSERT INTO t1 VALUES(5011, 29651, 'twenty-nine thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(5012, 8108, 'eight thousand one hundred eight');\nINSERT INTO t1 VALUES(5013, 60364, 'sixty thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(5014, 62997, 'sixty-two thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(5015, 56287, 'fifty-six thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(5016, 17458, 'seventeen thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(5017, 88216, 'eighty-eight thousand two hundred sixteen');\nINSERT INTO t1 VALUES(5018, 58866, 'fifty-eight thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(5019, 2951, 'two thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(5020, 93139, 'ninety-three thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(5021, 40373, 'forty thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(5022, 84735, 'eighty-four thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(5023, 82945, 'eighty-two thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(5024, 6997, 'six thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(5025, 38114, 'thirty-eight thousand one hundred fourteen');\nINSERT INTO t1 VALUES(5026, 65230, 'sixty-five thousand two hundred thirty');\nINSERT INTO t1 VALUES(5027, 51181, 'fifty-one thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(5028, 66602, 'sixty-six thousand six hundred two');\nINSERT INTO t1 VALUES(5029, 86067, 'eighty-six thousand sixty-seven');\nINSERT INTO t1 VALUES(5030, 83722, 'eighty-three thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(5031, 22709, 'twenty-two thousand seven hundred nine');\nINSERT INTO t1 VALUES(5032, 35923, 'thirty-five thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(5033, 49564, 'forty-nine thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(5034, 27234, 'twenty-seven thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(5035, 84707, 'eighty-four thousand seven hundred seven');\nINSERT INTO t1 VALUES(5036, 99719, 'ninety-nine thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(5037, 73704, 'seventy-three thousand seven hundred four');\nINSERT INTO t1 VALUES(5038, 71460, 'seventy-one thousand four hundred sixty');\nINSERT INTO t1 VALUES(5039, 59374, 'fifty-nine thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(5040, 71162, 'seventy-one thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(5041, 51665, 'fifty-one thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(5042, 27428, 'twenty-seven thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(5043, 658, 'six hundred fifty-eight');\nINSERT INTO t1 VALUES(5044, 78850, 'seventy-eight thousand eight hundred fifty');\nINSERT INTO t1 VALUES(5045, 66534, 'sixty-six thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(5046, 30081, 'thirty thousand eighty-one');\nINSERT INTO t1 VALUES(5047, 69557, 'sixty-nine thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(5048, 13266, 'thirteen thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(5049, 48059, 'forty-eight thousand fifty-nine');\nINSERT INTO t1 VALUES(5050, 62586, 'sixty-two thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(5051, 50146, 'fifty thousand one hundred forty-six');\nINSERT INTO t1 VALUES(5052, 9104, 'nine thousand one hundred four');\nINSERT INTO t1 VALUES(5053, 27503, 'twenty-seven thousand five hundred three');\nINSERT INTO t1 VALUES(5054, 20790, 'twenty thousand seven hundred ninety');\nINSERT INTO t1 VALUES(5055, 37953, 'thirty-seven thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(5056, 51305, 'fifty-one thousand three hundred five');\nINSERT INTO t1 VALUES(5057, 21697, 'twenty-one thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(5058, 9731, 'nine thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(5059, 1057, 'one thousand fifty-seven');\nINSERT INTO t1 VALUES(5060, 34236, 'thirty-four thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(5061, 96761, 'ninety-six thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(5062, 7220, 'seven thousand two hundred twenty');\nINSERT INTO t1 VALUES(5063, 34744, 'thirty-four thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(5064, 79573, 'seventy-nine thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(5065, 51553, 'fifty-one thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(5066, 7497, 'seven thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(5067, 81295, 'eighty-one thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(5068, 83888, 'eighty-three thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(5069, 80030, 'eighty thousand thirty');\nINSERT INTO t1 VALUES(5070, 28902, 'twenty-eight thousand nine hundred two');\nINSERT INTO t1 VALUES(5071, 44805, 'forty-four thousand eight hundred five');\nINSERT INTO t1 VALUES(5072, 4211, 'four thousand two hundred eleven');\nINSERT INTO t1 VALUES(5073, 66600, 'sixty-six thousand six hundred');\nINSERT INTO t1 VALUES(5074, 78220, 'seventy-eight thousand two hundred twenty');\nINSERT INTO t1 VALUES(5075, 10624, 'ten thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(5076, 9604, 'nine thousand six hundred four');\nINSERT INTO t1 VALUES(5077, 40490, 'forty thousand four hundred ninety');\nINSERT INTO t1 VALUES(5078, 76195, 'seventy-six thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(5079, 56267, 'fifty-six thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(5080, 65411, 'sixty-five thousand four hundred eleven');\nINSERT INTO t1 VALUES(5081, 55363, 'fifty-five thousand three hundred sixty-three');\nINSERT INTO t1 VALUES(5082, 51661, 'fifty-one thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(5083, 52824, 'fifty-two thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(5084, 23877, 'twenty-three thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(5085, 7395, 'seven thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(5086, 25891, 'twenty-five thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(5087, 32062, 'thirty-two thousand sixty-two');\nINSERT INTO t1 VALUES(5088, 39662, 'thirty-nine thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(5089, 79311, 'seventy-nine thousand three hundred eleven');\nINSERT INTO t1 VALUES(5090, 88399, 'eighty-eight thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(5091, 14445, 'fourteen thousand four hundred forty-five');\nINSERT INTO t1 VALUES(5092, 18140, 'eighteen thousand one hundred forty');\nINSERT INTO t1 VALUES(5093, 2654, 'two thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(5094, 1396, 'one thousand three hundred ninety-six');\nINSERT INTO t1 VALUES(5095, 83328, 'eighty-three thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(5096, 71659, 'seventy-one thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(5097, 84065, 'eighty-four thousand sixty-five');\nINSERT INTO t1 VALUES(5098, 78765, 'seventy-eight thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(5099, 47416, 'forty-seven thousand four hundred sixteen');\nINSERT INTO t1 VALUES(5100, 38247, 'thirty-eight thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(5101, 66326, 'sixty-six thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(5102, 15537, 'fifteen thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(5103, 20176, 'twenty thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(5104, 8227, 'eight thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(5105, 68007, 'sixty-eight thousand seven');\nINSERT INTO t1 VALUES(5106, 83462, 'eighty-three thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(5107, 28891, 'twenty-eight thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(5108, 78083, 'seventy-eight thousand eighty-three');\nINSERT INTO t1 VALUES(5109, 13749, 'thirteen thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(5110, 17575, 'seventeen thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(5111, 99771, 'ninety-nine thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(5112, 72786, 'seventy-two thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(5113, 62452, 'sixty-two thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(5114, 24689, 'twenty-four thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(5115, 75122, 'seventy-five thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(5116, 55950, 'fifty-five thousand nine hundred fifty');\nINSERT INTO t1 VALUES(5117, 68275, 'sixty-eight thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(5118, 96199, 'ninety-six thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(5119, 80579, 'eighty thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(5120, 60822, 'sixty thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(5121, 34086, 'thirty-four thousand eighty-six');\nINSERT INTO t1 VALUES(5122, 9588, 'nine thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(5123, 45708, 'forty-five thousand seven hundred eight');\nINSERT INTO t1 VALUES(5124, 24138, 'twenty-four thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(5125, 20121, 'twenty thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(5126, 38219, 'thirty-eight thousand two hundred nineteen');\nINSERT INTO t1 VALUES(5127, 90510, 'ninety thousand five hundred ten');\nINSERT INTO t1 VALUES(5128, 34525, 'thirty-four thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(5129, 71507, 'seventy-one thousand five hundred seven');\nINSERT INTO t1 VALUES(5130, 10045, 'ten thousand forty-five');\nINSERT INTO t1 VALUES(5131, 22274, 'twenty-two thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(5132, 80483, 'eighty thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(5133, 98654, 'ninety-eight thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(5134, 46867, 'forty-six thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(5135, 36598, 'thirty-six thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(5136, 57689, 'fifty-seven thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(5137, 87356, 'eighty-seven thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(5138, 71671, 'seventy-one thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(5139, 35453, 'thirty-five thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(5140, 23566, 'twenty-three thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(5141, 37818, 'thirty-seven thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(5142, 74329, 'seventy-four thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(5143, 49253, 'forty-nine thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(5144, 80901, 'eighty thousand nine hundred one');\nINSERT INTO t1 VALUES(5145, 57262, 'fifty-seven thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(5146, 14743, 'fourteen thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(5147, 5143, 'five thousand one hundred forty-three');\nINSERT INTO t1 VALUES(5148, 11346, 'eleven thousand three hundred forty-six');\nINSERT INTO t1 VALUES(5149, 17987, 'seventeen thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(5150, 66734, 'sixty-six thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(5151, 60407, 'sixty thousand four hundred seven');\nINSERT INTO t1 VALUES(5152, 25696, 'twenty-five thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(5153, 86109, 'eighty-six thousand one hundred nine');\nINSERT INTO t1 VALUES(5154, 19290, 'nineteen thousand two hundred ninety');\nINSERT INTO t1 VALUES(5155, 19630, 'nineteen thousand six hundred thirty');\nINSERT INTO t1 VALUES(5156, 38358, 'thirty-eight thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(5157, 57446, 'fifty-seven thousand four hundred forty-six');\nINSERT INTO t1 VALUES(5158, 88152, 'eighty-eight thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(5159, 86018, 'eighty-six thousand eighteen');\nINSERT INTO t1 VALUES(5160, 62771, 'sixty-two thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(5161, 12777, 'twelve thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(5162, 19538, 'nineteen thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(5163, 64507, 'sixty-four thousand five hundred seven');\nINSERT INTO t1 VALUES(5164, 244, 'two hundred forty-four');\nINSERT INTO t1 VALUES(5165, 30075, 'thirty thousand seventy-five');\nINSERT INTO t1 VALUES(5166, 8807, 'eight thousand eight hundred seven');\nINSERT INTO t1 VALUES(5167, 57832, 'fifty-seven thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(5168, 72229, 'seventy-two thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(5169, 99913, 'ninety-nine thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(5170, 40863, 'forty thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(5171, 70246, 'seventy thousand two hundred forty-six');\nINSERT INTO t1 VALUES(5172, 22588, 'twenty-two thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(5173, 53832, 'fifty-three thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(5174, 48056, 'forty-eight thousand fifty-six');\nINSERT INTO t1 VALUES(5175, 11009, 'eleven thousand nine');\nINSERT INTO t1 VALUES(5176, 84965, 'eighty-four thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(5177, 21867, 'twenty-one thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(5178, 74869, 'seventy-four thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(5179, 60210, 'sixty thousand two hundred ten');\nINSERT INTO t1 VALUES(5180, 39054, 'thirty-nine thousand fifty-four');\nINSERT INTO t1 VALUES(5181, 38326, 'thirty-eight thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(5182, 36443, 'thirty-six thousand four hundred forty-three');\nINSERT INTO t1 VALUES(5183, 48476, 'forty-eight thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(5184, 83269, 'eighty-three thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(5185, 97864, 'ninety-seven thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(5186, 51454, 'fifty-one thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(5187, 76008, 'seventy-six thousand eight');\nINSERT INTO t1 VALUES(5188, 7244, 'seven thousand two hundred forty-four');\nINSERT INTO t1 VALUES(5189, 23234, 'twenty-three thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(5190, 48739, 'forty-eight thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(5191, 40019, 'forty thousand nineteen');\nINSERT INTO t1 VALUES(5192, 14220, 'fourteen thousand two hundred twenty');\nINSERT INTO t1 VALUES(5193, 29048, 'twenty-nine thousand forty-eight');\nINSERT INTO t1 VALUES(5194, 19599, 'nineteen thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(5195, 24007, 'twenty-four thousand seven');\nINSERT INTO t1 VALUES(5196, 73456, 'seventy-three thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(5197, 97145, 'ninety-seven thousand one hundred forty-five');\nINSERT INTO t1 VALUES(5198, 10401, 'ten thousand four hundred one');\nINSERT INTO t1 VALUES(5199, 46511, 'forty-six thousand five hundred eleven');\nINSERT INTO t1 VALUES(5200, 17746, 'seventeen thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(5201, 89757, 'eighty-nine thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(5202, 63317, 'sixty-three thousand three hundred seventeen');\nINSERT INTO t1 VALUES(5203, 35979, 'thirty-five thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(5204, 49984, 'forty-nine thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(5205, 80772, 'eighty thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(5206, 97065, 'ninety-seven thousand sixty-five');\nINSERT INTO t1 VALUES(5207, 34855, 'thirty-four thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(5208, 48612, 'forty-eight thousand six hundred twelve');\nINSERT INTO t1 VALUES(5209, 81997, 'eighty-one thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(5210, 28739, 'twenty-eight thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(5211, 49554, 'forty-nine thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(5212, 45237, 'forty-five thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(5213, 68553, 'sixty-eight thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(5214, 84721, 'eighty-four thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(5215, 92537, 'ninety-two thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(5216, 78187, 'seventy-eight thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(5217, 1787, 'one thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(5218, 1215, 'one thousand two hundred fifteen');\nINSERT INTO t1 VALUES(5219, 34684, 'thirty-four thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(5220, 40014, 'forty thousand fourteen');\nINSERT INTO t1 VALUES(5221, 63718, 'sixty-three thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(5222, 98041, 'ninety-eight thousand forty-one');\nINSERT INTO t1 VALUES(5223, 17058, 'seventeen thousand fifty-eight');\nINSERT INTO t1 VALUES(5224, 59580, 'fifty-nine thousand five hundred eighty');\nINSERT INTO t1 VALUES(5225, 16947, 'sixteen thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(5226, 37058, 'thirty-seven thousand fifty-eight');\nINSERT INTO t1 VALUES(5227, 17530, 'seventeen thousand five hundred thirty');\nINSERT INTO t1 VALUES(5228, 7657, 'seven thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(5229, 78127, 'seventy-eight thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(5230, 29000, 'twenty-nine thousand');\nINSERT INTO t1 VALUES(5231, 47986, 'forty-seven thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(5232, 853, 'eight hundred fifty-three');\nINSERT INTO t1 VALUES(5233, 10357, 'ten thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(5234, 38598, 'thirty-eight thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(5235, 43329, 'forty-three thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(5236, 70858, 'seventy thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(5237, 97113, 'ninety-seven thousand one hundred thirteen');\nINSERT INTO t1 VALUES(5238, 45132, 'forty-five thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(5239, 36809, 'thirty-six thousand eight hundred nine');\nINSERT INTO t1 VALUES(5240, 23955, 'twenty-three thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(5241, 90875, 'ninety thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(5242, 84505, 'eighty-four thousand five hundred five');\nINSERT INTO t1 VALUES(5243, 95529, 'ninety-five thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(5244, 43616, 'forty-three thousand six hundred sixteen');\nINSERT INTO t1 VALUES(5245, 2450, 'two thousand four hundred fifty');\nINSERT INTO t1 VALUES(5246, 48027, 'forty-eight thousand twenty-seven');\nINSERT INTO t1 VALUES(5247, 29365, 'twenty-nine thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(5248, 66737, 'sixty-six thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(5249, 1907, 'one thousand nine hundred seven');\nINSERT INTO t1 VALUES(5250, 6535, 'six thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(5251, 8896, 'eight thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(5252, 51925, 'fifty-one thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(5253, 4490, 'four thousand four hundred ninety');\nINSERT INTO t1 VALUES(5254, 35342, 'thirty-five thousand three hundred forty-two');\nINSERT INTO t1 VALUES(5255, 71467, 'seventy-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(5256, 72074, 'seventy-two thousand seventy-four');\nINSERT INTO t1 VALUES(5257, 33367, 'thirty-three thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(5258, 68786, 'sixty-eight thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(5259, 49625, 'forty-nine thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(5260, 74418, 'seventy-four thousand four hundred eighteen');\nINSERT INTO t1 VALUES(5261, 74442, 'seventy-four thousand four hundred forty-two');\nINSERT INTO t1 VALUES(5262, 22950, 'twenty-two thousand nine hundred fifty');\nINSERT INTO t1 VALUES(5263, 6802, 'six thousand eight hundred two');\nINSERT INTO t1 VALUES(5264, 87028, 'eighty-seven thousand twenty-eight');\nINSERT INTO t1 VALUES(5265, 10523, 'ten thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(5266, 64483, 'sixty-four thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(5267, 3044, 'three thousand forty-four');\nINSERT INTO t1 VALUES(5268, 76344, 'seventy-six thousand three hundred forty-four');\nINSERT INTO t1 VALUES(5269, 20726, 'twenty thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(5270, 20551, 'twenty thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(5271, 84525, 'eighty-four thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(5272, 16248, 'sixteen thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(5273, 95862, 'ninety-five thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(5274, 35622, 'thirty-five thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(5275, 46731, 'forty-six thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(5276, 93383, 'ninety-three thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(5277, 1777, 'one thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(5278, 74638, 'seventy-four thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(5279, 74335, 'seventy-four thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(5280, 31913, 'thirty-one thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(5281, 34160, 'thirty-four thousand one hundred sixty');\nINSERT INTO t1 VALUES(5282, 31120, 'thirty-one thousand one hundred twenty');\nINSERT INTO t1 VALUES(5283, 83750, 'eighty-three thousand seven hundred fifty');\nINSERT INTO t1 VALUES(5284, 67754, 'sixty-seven thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(5285, 44313, 'forty-four thousand three hundred thirteen');\nINSERT INTO t1 VALUES(5286, 40435, 'forty thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(5287, 27914, 'twenty-seven thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(5288, 40734, 'forty thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(5289, 92944, 'ninety-two thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(5290, 26482, 'twenty-six thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(5291, 49816, 'forty-nine thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(5292, 12548, 'twelve thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(5293, 89241, 'eighty-nine thousand two hundred forty-one');\nINSERT INTO t1 VALUES(5294, 70605, 'seventy thousand six hundred five');\nINSERT INTO t1 VALUES(5295, 43728, 'forty-three thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(5296, 94159, 'ninety-four thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(5297, 25763, 'twenty-five thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(5298, 446, 'four hundred forty-six');\nINSERT INTO t1 VALUES(5299, 91250, 'ninety-one thousand two hundred fifty');\nINSERT INTO t1 VALUES(5300, 19711, 'nineteen thousand seven hundred eleven');\nINSERT INTO t1 VALUES(5301, 47149, 'forty-seven thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(5302, 90439, 'ninety thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(5303, 80312, 'eighty thousand three hundred twelve');\nINSERT INTO t1 VALUES(5304, 90807, 'ninety thousand eight hundred seven');\nINSERT INTO t1 VALUES(5305, 97383, 'ninety-seven thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(5306, 80599, 'eighty thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(5307, 74922, 'seventy-four thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(5308, 98275, 'ninety-eight thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(5309, 97645, 'ninety-seven thousand six hundred forty-five');\nINSERT INTO t1 VALUES(5310, 26133, 'twenty-six thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(5311, 25834, 'twenty-five thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(5312, 97280, 'ninety-seven thousand two hundred eighty');\nINSERT INTO t1 VALUES(5313, 38098, 'thirty-eight thousand ninety-eight');\nINSERT INTO t1 VALUES(5314, 29623, 'twenty-nine thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(5315, 28408, 'twenty-eight thousand four hundred eight');\nINSERT INTO t1 VALUES(5316, 93247, 'ninety-three thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(5317, 85070, 'eighty-five thousand seventy');\nINSERT INTO t1 VALUES(5318, 93212, 'ninety-three thousand two hundred twelve');\nINSERT INTO t1 VALUES(5319, 66169, 'sixty-six thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(5320, 65027, 'sixty-five thousand twenty-seven');\nINSERT INTO t1 VALUES(5321, 94772, 'ninety-four thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(5322, 49550, 'forty-nine thousand five hundred fifty');\nINSERT INTO t1 VALUES(5323, 15605, 'fifteen thousand six hundred five');\nINSERT INTO t1 VALUES(5324, 38278, 'thirty-eight thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(5325, 56156, 'fifty-six thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(5326, 45261, 'forty-five thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(5327, 19385, 'nineteen thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(5328, 25974, 'twenty-five thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(5329, 43346, 'forty-three thousand three hundred forty-six');\nINSERT INTO t1 VALUES(5330, 97638, 'ninety-seven thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(5331, 69588, 'sixty-nine thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(5332, 21059, 'twenty-one thousand fifty-nine');\nINSERT INTO t1 VALUES(5333, 61640, 'sixty-one thousand six hundred forty');\nINSERT INTO t1 VALUES(5334, 9277, 'nine thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(5335, 85835, 'eighty-five thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(5336, 12179, 'twelve thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(5337, 74706, 'seventy-four thousand seven hundred six');\nINSERT INTO t1 VALUES(5338, 21378, 'twenty-one thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(5339, 41977, 'forty-one thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(5340, 77515, 'seventy-seven thousand five hundred fifteen');\nINSERT INTO t1 VALUES(5341, 15893, 'fifteen thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(5342, 95405, 'ninety-five thousand four hundred five');\nINSERT INTO t1 VALUES(5343, 44602, 'forty-four thousand six hundred two');\nINSERT INTO t1 VALUES(5344, 92597, 'ninety-two thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(5345, 19588, 'nineteen thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(5346, 17296, 'seventeen thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(5347, 83249, 'eighty-three thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(5348, 32634, 'thirty-two thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(5349, 53609, 'fifty-three thousand six hundred nine');\nINSERT INTO t1 VALUES(5350, 88230, 'eighty-eight thousand two hundred thirty');\nINSERT INTO t1 VALUES(5351, 32442, 'thirty-two thousand four hundred forty-two');\nINSERT INTO t1 VALUES(5352, 62650, 'sixty-two thousand six hundred fifty');\nINSERT INTO t1 VALUES(5353, 23287, 'twenty-three thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(5354, 10008, 'ten thousand eight');\nINSERT INTO t1 VALUES(5355, 80306, 'eighty thousand three hundred six');\nINSERT INTO t1 VALUES(5356, 96197, 'ninety-six thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(5357, 36652, 'thirty-six thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(5358, 80706, 'eighty thousand seven hundred six');\nINSERT INTO t1 VALUES(5359, 72088, 'seventy-two thousand eighty-eight');\nINSERT INTO t1 VALUES(5360, 95164, 'ninety-five thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(5361, 21307, 'twenty-one thousand three hundred seven');\nINSERT INTO t1 VALUES(5362, 35743, 'thirty-five thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(5363, 45921, 'forty-five thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(5364, 38737, 'thirty-eight thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(5365, 20446, 'twenty thousand four hundred forty-six');\nINSERT INTO t1 VALUES(5366, 19163, 'nineteen thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(5367, 11558, 'eleven thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(5368, 69518, 'sixty-nine thousand five hundred eighteen');\nINSERT INTO t1 VALUES(5369, 94315, 'ninety-four thousand three hundred fifteen');\nINSERT INTO t1 VALUES(5370, 70216, 'seventy thousand two hundred sixteen');\nINSERT INTO t1 VALUES(5371, 41896, 'forty-one thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(5372, 4615, 'four thousand six hundred fifteen');\nINSERT INTO t1 VALUES(5373, 72540, 'seventy-two thousand five hundred forty');\nINSERT INTO t1 VALUES(5374, 29464, 'twenty-nine thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(5375, 99238, 'ninety-nine thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(5376, 60681, 'sixty thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(5377, 28034, 'twenty-eight thousand thirty-four');\nINSERT INTO t1 VALUES(5378, 73955, 'seventy-three thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(5379, 88061, 'eighty-eight thousand sixty-one');\nINSERT INTO t1 VALUES(5380, 7109, 'seven thousand one hundred nine');\nINSERT INTO t1 VALUES(5381, 21191, 'twenty-one thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(5382, 3771, 'three thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(5383, 59023, 'fifty-nine thousand twenty-three');\nINSERT INTO t1 VALUES(5384, 87643, 'eighty-seven thousand six hundred forty-three');\nINSERT INTO t1 VALUES(5385, 52087, 'fifty-two thousand eighty-seven');\nINSERT INTO t1 VALUES(5386, 98301, 'ninety-eight thousand three hundred one');\nINSERT INTO t1 VALUES(5387, 55786, 'fifty-five thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(5388, 43939, 'forty-three thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(5389, 60657, 'sixty thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(5390, 91684, 'ninety-one thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(5391, 69887, 'sixty-nine thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(5392, 48410, 'forty-eight thousand four hundred ten');\nINSERT INTO t1 VALUES(5393, 90888, 'ninety thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(5394, 81541, 'eighty-one thousand five hundred forty-one');\nINSERT INTO t1 VALUES(5395, 98466, 'ninety-eight thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(5396, 70817, 'seventy thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(5397, 97778, 'ninety-seven thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(5398, 45738, 'forty-five thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(5399, 49340, 'forty-nine thousand three hundred forty');\nINSERT INTO t1 VALUES(5400, 32693, 'thirty-two thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(5401, 82151, 'eighty-two thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(5402, 14495, 'fourteen thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(5403, 15433, 'fifteen thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(5404, 22016, 'twenty-two thousand sixteen');\nINSERT INTO t1 VALUES(5405, 97753, 'ninety-seven thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(5406, 49434, 'forty-nine thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(5407, 17703, 'seventeen thousand seven hundred three');\nINSERT INTO t1 VALUES(5408, 46359, 'forty-six thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(5409, 74868, 'seventy-four thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(5410, 69575, 'sixty-nine thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(5411, 52337, 'fifty-two thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(5412, 21467, 'twenty-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(5413, 62892, 'sixty-two thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(5414, 91107, 'ninety-one thousand one hundred seven');\nINSERT INTO t1 VALUES(5415, 14440, 'fourteen thousand four hundred forty');\nINSERT INTO t1 VALUES(5416, 71356, 'seventy-one thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(5417, 51475, 'fifty-one thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(5418, 11863, 'eleven thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(5419, 66029, 'sixty-six thousand twenty-nine');\nINSERT INTO t1 VALUES(5420, 42354, 'forty-two thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(5421, 78716, 'seventy-eight thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(5422, 35345, 'thirty-five thousand three hundred forty-five');\nINSERT INTO t1 VALUES(5423, 37015, 'thirty-seven thousand fifteen');\nINSERT INTO t1 VALUES(5424, 16755, 'sixteen thousand seven hundred fifty-five');\nINSERT INTO t1 VALUES(5425, 30783, 'thirty thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(5426, 41601, 'forty-one thousand six hundred one');\nINSERT INTO t1 VALUES(5427, 11415, 'eleven thousand four hundred fifteen');\nINSERT INTO t1 VALUES(5428, 78800, 'seventy-eight thousand eight hundred');\nINSERT INTO t1 VALUES(5429, 60440, 'sixty thousand four hundred forty');\nINSERT INTO t1 VALUES(5430, 84845, 'eighty-four thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(5431, 74931, 'seventy-four thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(5432, 40451, 'forty thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(5433, 71845, 'seventy-one thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(5434, 205, 'two hundred five');\nINSERT INTO t1 VALUES(5435, 74773, 'seventy-four thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(5436, 19866, 'nineteen thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(5437, 78785, 'seventy-eight thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(5438, 54561, 'fifty-four thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(5439, 6605, 'six thousand six hundred five');\nINSERT INTO t1 VALUES(5440, 2759, 'two thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(5441, 81216, 'eighty-one thousand two hundred sixteen');\nINSERT INTO t1 VALUES(5442, 36985, 'thirty-six thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(5443, 88923, 'eighty-eight thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(5444, 42549, 'forty-two thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(5445, 85077, 'eighty-five thousand seventy-seven');\nINSERT INTO t1 VALUES(5446, 18111, 'eighteen thousand one hundred eleven');\nINSERT INTO t1 VALUES(5447, 74463, 'seventy-four thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(5448, 31752, 'thirty-one thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(5449, 18366, 'eighteen thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(5450, 38472, 'thirty-eight thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(5451, 29625, 'twenty-nine thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(5452, 41308, 'forty-one thousand three hundred eight');\nINSERT INTO t1 VALUES(5453, 2162, 'two thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(5454, 4085, 'four thousand eighty-five');\nINSERT INTO t1 VALUES(5455, 262, 'two hundred sixty-two');\nINSERT INTO t1 VALUES(5456, 10431, 'ten thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(5457, 43551, 'forty-three thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(5458, 17731, 'seventeen thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(5459, 39632, 'thirty-nine thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(5460, 22502, 'twenty-two thousand five hundred two');\nINSERT INTO t1 VALUES(5461, 66542, 'sixty-six thousand five hundred forty-two');\nINSERT INTO t1 VALUES(5462, 80545, 'eighty thousand five hundred forty-five');\nINSERT INTO t1 VALUES(5463, 9167, 'nine thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(5464, 55918, 'fifty-five thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(5465, 42421, 'forty-two thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(5466, 20843, 'twenty thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(5467, 38356, 'thirty-eight thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(5468, 82527, 'eighty-two thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(5469, 2550, 'two thousand five hundred fifty');\nINSERT INTO t1 VALUES(5470, 48739, 'forty-eight thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(5471, 3237, 'three thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(5472, 18202, 'eighteen thousand two hundred two');\nINSERT INTO t1 VALUES(5473, 94318, 'ninety-four thousand three hundred eighteen');\nINSERT INTO t1 VALUES(5474, 96206, 'ninety-six thousand two hundred six');\nINSERT INTO t1 VALUES(5475, 45664, 'forty-five thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(5476, 11775, 'eleven thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(5477, 513, 'five hundred thirteen');\nINSERT INTO t1 VALUES(5478, 6587, 'six thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(5479, 26273, 'twenty-six thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(5480, 73718, 'seventy-three thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(5481, 44291, 'forty-four thousand two hundred ninety-one');\nINSERT INTO t1 VALUES(5482, 8929, 'eight thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(5483, 34821, 'thirty-four thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(5484, 64340, 'sixty-four thousand three hundred forty');\nINSERT INTO t1 VALUES(5485, 27786, 'twenty-seven thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(5486, 30530, 'thirty thousand five hundred thirty');\nINSERT INTO t1 VALUES(5487, 98214, 'ninety-eight thousand two hundred fourteen');\nINSERT INTO t1 VALUES(5488, 91978, 'ninety-one thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(5489, 43994, 'forty-three thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(5490, 34644, 'thirty-four thousand six hundred forty-four');\nINSERT INTO t1 VALUES(5491, 60642, 'sixty thousand six hundred forty-two');\nINSERT INTO t1 VALUES(5492, 66027, 'sixty-six thousand twenty-seven');\nINSERT INTO t1 VALUES(5493, 47118, 'forty-seven thousand one hundred eighteen');\nINSERT INTO t1 VALUES(5494, 24353, 'twenty-four thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(5495, 58211, 'fifty-eight thousand two hundred eleven');\nINSERT INTO t1 VALUES(5496, 21369, 'twenty-one thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(5497, 98622, 'ninety-eight thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(5498, 77506, 'seventy-seven thousand five hundred six');\nINSERT INTO t1 VALUES(5499, 70878, 'seventy thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(5500, 85655, 'eighty-five thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(5501, 83787, 'eighty-three thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(5502, 41741, 'forty-one thousand seven hundred forty-one');\nINSERT INTO t1 VALUES(5503, 20399, 'twenty thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(5504, 15618, 'fifteen thousand six hundred eighteen');\nINSERT INTO t1 VALUES(5505, 17350, 'seventeen thousand three hundred fifty');\nINSERT INTO t1 VALUES(5506, 64324, 'sixty-four thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(5507, 50256, 'fifty thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(5508, 89430, 'eighty-nine thousand four hundred thirty');\nINSERT INTO t1 VALUES(5509, 27599, 'twenty-seven thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(5510, 71573, 'seventy-one thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(5511, 74777, 'seventy-four thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(5512, 38648, 'thirty-eight thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(5513, 90731, 'ninety thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(5514, 53076, 'fifty-three thousand seventy-six');\nINSERT INTO t1 VALUES(5515, 17177, 'seventeen thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(5516, 96864, 'ninety-six thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(5517, 49187, 'forty-nine thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(5518, 68902, 'sixty-eight thousand nine hundred two');\nINSERT INTO t1 VALUES(5519, 40078, 'forty thousand seventy-eight');\nINSERT INTO t1 VALUES(5520, 72986, 'seventy-two thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(5521, 80415, 'eighty thousand four hundred fifteen');\nINSERT INTO t1 VALUES(5522, 3479, 'three thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(5523, 70323, 'seventy thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(5524, 85951, 'eighty-five thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(5525, 43709, 'forty-three thousand seven hundred nine');\nINSERT INTO t1 VALUES(5526, 31804, 'thirty-one thousand eight hundred four');\nINSERT INTO t1 VALUES(5527, 39015, 'thirty-nine thousand fifteen');\nINSERT INTO t1 VALUES(5528, 28670, 'twenty-eight thousand six hundred seventy');\nINSERT INTO t1 VALUES(5529, 73435, 'seventy-three thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(5530, 88947, 'eighty-eight thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(5531, 52100, 'fifty-two thousand one hundred');\nINSERT INTO t1 VALUES(5532, 76249, 'seventy-six thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(5533, 93671, 'ninety-three thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(5534, 49442, 'forty-nine thousand four hundred forty-two');\nINSERT INTO t1 VALUES(5535, 95159, 'ninety-five thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(5536, 84184, 'eighty-four thousand one hundred eighty-four');\nINSERT INTO t1 VALUES(5537, 98817, 'ninety-eight thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(5538, 51111, 'fifty-one thousand one hundred eleven');\nINSERT INTO t1 VALUES(5539, 79618, 'seventy-nine thousand six hundred eighteen');\nINSERT INTO t1 VALUES(5540, 64488, 'sixty-four thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(5541, 57074, 'fifty-seven thousand seventy-four');\nINSERT INTO t1 VALUES(5542, 21645, 'twenty-one thousand six hundred forty-five');\nINSERT INTO t1 VALUES(5543, 64044, 'sixty-four thousand forty-four');\nINSERT INTO t1 VALUES(5544, 8971, 'eight thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(5545, 29467, 'twenty-nine thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(5546, 29207, 'twenty-nine thousand two hundred seven');\nINSERT INTO t1 VALUES(5547, 25192, 'twenty-five thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(5548, 8007, 'eight thousand seven');\nINSERT INTO t1 VALUES(5549, 42535, 'forty-two thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(5550, 78341, 'seventy-eight thousand three hundred forty-one');\nINSERT INTO t1 VALUES(5551, 53104, 'fifty-three thousand one hundred four');\nINSERT INTO t1 VALUES(5552, 68496, 'sixty-eight thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(5553, 64745, 'sixty-four thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(5554, 4371, 'four thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(5555, 57023, 'fifty-seven thousand twenty-three');\nINSERT INTO t1 VALUES(5556, 91674, 'ninety-one thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(5557, 78209, 'seventy-eight thousand two hundred nine');\nINSERT INTO t1 VALUES(5558, 97254, 'ninety-seven thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(5559, 52713, 'fifty-two thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(5560, 68183, 'sixty-eight thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(5561, 81237, 'eighty-one thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(5562, 16998, 'sixteen thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(5563, 14016, 'fourteen thousand sixteen');\nINSERT INTO t1 VALUES(5564, 35912, 'thirty-five thousand nine hundred twelve');\nINSERT INTO t1 VALUES(5565, 56794, 'fifty-six thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(5566, 98410, 'ninety-eight thousand four hundred ten');\nINSERT INTO t1 VALUES(5567, 8257, 'eight thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(5568, 20988, 'twenty thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(5569, 74009, 'seventy-four thousand nine');\nINSERT INTO t1 VALUES(5570, 92863, 'ninety-two thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(5571, 1337, 'one thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(5572, 76648, 'seventy-six thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(5573, 4084, 'four thousand eighty-four');\nINSERT INTO t1 VALUES(5574, 27799, 'twenty-seven thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(5575, 99326, 'ninety-nine thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(5576, 68139, 'sixty-eight thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(5577, 75563, 'seventy-five thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(5578, 31575, 'thirty-one thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(5579, 22952, 'twenty-two thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(5580, 5128, 'five thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(5581, 45587, 'forty-five thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(5582, 94159, 'ninety-four thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(5583, 77072, 'seventy-seven thousand seventy-two');\nINSERT INTO t1 VALUES(5584, 56548, 'fifty-six thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(5585, 76585, 'seventy-six thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(5586, 72619, 'seventy-two thousand six hundred nineteen');\nINSERT INTO t1 VALUES(5587, 40990, 'forty thousand nine hundred ninety');\nINSERT INTO t1 VALUES(5588, 97437, 'ninety-seven thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(5589, 66076, 'sixty-six thousand seventy-six');\nINSERT INTO t1 VALUES(5590, 18241, 'eighteen thousand two hundred forty-one');\nINSERT INTO t1 VALUES(5591, 33531, 'thirty-three thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(5592, 88429, 'eighty-eight thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(5593, 66903, 'sixty-six thousand nine hundred three');\nINSERT INTO t1 VALUES(5594, 86467, 'eighty-six thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(5595, 23137, 'twenty-three thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(5596, 95197, 'ninety-five thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(5597, 68822, 'sixty-eight thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(5598, 32693, 'thirty-two thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(5599, 26893, 'twenty-six thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(5600, 10034, 'ten thousand thirty-four');\nINSERT INTO t1 VALUES(5601, 98230, 'ninety-eight thousand two hundred thirty');\nINSERT INTO t1 VALUES(5602, 64757, 'sixty-four thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(5603, 26147, 'twenty-six thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(5604, 90889, 'ninety thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(5605, 80579, 'eighty thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(5606, 41960, 'forty-one thousand nine hundred sixty');\nINSERT INTO t1 VALUES(5607, 73136, 'seventy-three thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(5608, 95952, 'ninety-five thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(5609, 76791, 'seventy-six thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(5610, 18989, 'eighteen thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(5611, 94904, 'ninety-four thousand nine hundred four');\nINSERT INTO t1 VALUES(5612, 62297, 'sixty-two thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(5613, 30490, 'thirty thousand four hundred ninety');\nINSERT INTO t1 VALUES(5614, 30618, 'thirty thousand six hundred eighteen');\nINSERT INTO t1 VALUES(5615, 68714, 'sixty-eight thousand seven hundred fourteen');\nINSERT INTO t1 VALUES(5616, 41986, 'forty-one thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(5617, 99329, 'ninety-nine thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(5618, 98580, 'ninety-eight thousand five hundred eighty');\nINSERT INTO t1 VALUES(5619, 50725, 'fifty thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(5620, 34862, 'thirty-four thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(5621, 17047, 'seventeen thousand forty-seven');\nINSERT INTO t1 VALUES(5622, 84050, 'eighty-four thousand fifty');\nINSERT INTO t1 VALUES(5623, 53880, 'fifty-three thousand eight hundred eighty');\nINSERT INTO t1 VALUES(5624, 89549, 'eighty-nine thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(5625, 52214, 'fifty-two thousand two hundred fourteen');\nINSERT INTO t1 VALUES(5626, 32066, 'thirty-two thousand sixty-six');\nINSERT INTO t1 VALUES(5627, 60392, 'sixty thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(5628, 35454, 'thirty-five thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(5629, 58568, 'fifty-eight thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(5630, 44061, 'forty-four thousand sixty-one');\nINSERT INTO t1 VALUES(5631, 17614, 'seventeen thousand six hundred fourteen');\nINSERT INTO t1 VALUES(5632, 48854, 'forty-eight thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(5633, 45106, 'forty-five thousand one hundred six');\nINSERT INTO t1 VALUES(5634, 93491, 'ninety-three thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(5635, 98583, 'ninety-eight thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(5636, 92492, 'ninety-two thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(5637, 70878, 'seventy thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(5638, 47213, 'forty-seven thousand two hundred thirteen');\nINSERT INTO t1 VALUES(5639, 9911, 'nine thousand nine hundred eleven');\nINSERT INTO t1 VALUES(5640, 19737, 'nineteen thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(5641, 13554, 'thirteen thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(5642, 92538, 'ninety-two thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(5643, 74524, 'seventy-four thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(5644, 5987, 'five thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(5645, 80587, 'eighty thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(5646, 6999, 'six thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(5647, 80190, 'eighty thousand one hundred ninety');\nINSERT INTO t1 VALUES(5648, 53861, 'fifty-three thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(5649, 19438, 'nineteen thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(5650, 92963, 'ninety-two thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(5651, 76961, 'seventy-six thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(5652, 72169, 'seventy-two thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(5653, 87552, 'eighty-seven thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(5654, 21967, 'twenty-one thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(5655, 85454, 'eighty-five thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(5656, 73888, 'seventy-three thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(5657, 31784, 'thirty-one thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(5658, 17233, 'seventeen thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(5659, 92596, 'ninety-two thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(5660, 94905, 'ninety-four thousand nine hundred five');\nINSERT INTO t1 VALUES(5661, 87031, 'eighty-seven thousand thirty-one');\nINSERT INTO t1 VALUES(5662, 79555, 'seventy-nine thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(5663, 36560, 'thirty-six thousand five hundred sixty');\nINSERT INTO t1 VALUES(5664, 72343, 'seventy-two thousand three hundred forty-three');\nINSERT INTO t1 VALUES(5665, 71650, 'seventy-one thousand six hundred fifty');\nINSERT INTO t1 VALUES(5666, 49455, 'forty-nine thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(5667, 87902, 'eighty-seven thousand nine hundred two');\nINSERT INTO t1 VALUES(5668, 27882, 'twenty-seven thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(5669, 4541, 'four thousand five hundred forty-one');\nINSERT INTO t1 VALUES(5670, 75580, 'seventy-five thousand five hundred eighty');\nINSERT INTO t1 VALUES(5671, 17774, 'seventeen thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(5672, 69836, 'sixty-nine thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(5673, 75315, 'seventy-five thousand three hundred fifteen');\nINSERT INTO t1 VALUES(5674, 16218, 'sixteen thousand two hundred eighteen');\nINSERT INTO t1 VALUES(5675, 47559, 'forty-seven thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(5676, 94727, 'ninety-four thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(5677, 37362, 'thirty-seven thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(5678, 60104, 'sixty thousand one hundred four');\nINSERT INTO t1 VALUES(5679, 92402, 'ninety-two thousand four hundred two');\nINSERT INTO t1 VALUES(5680, 6270, 'six thousand two hundred seventy');\nINSERT INTO t1 VALUES(5681, 34485, 'thirty-four thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(5682, 92314, 'ninety-two thousand three hundred fourteen');\nINSERT INTO t1 VALUES(5683, 91176, 'ninety-one thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(5684, 67405, 'sixty-seven thousand four hundred five');\nINSERT INTO t1 VALUES(5685, 14482, 'fourteen thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(5686, 83107, 'eighty-three thousand one hundred seven');\nINSERT INTO t1 VALUES(5687, 38007, 'thirty-eight thousand seven');\nINSERT INTO t1 VALUES(5688, 98783, 'ninety-eight thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(5689, 67657, 'sixty-seven thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(5690, 74801, 'seventy-four thousand eight hundred one');\nINSERT INTO t1 VALUES(5691, 43063, 'forty-three thousand sixty-three');\nINSERT INTO t1 VALUES(5692, 11538, 'eleven thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(5693, 86556, 'eighty-six thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(5694, 65510, 'sixty-five thousand five hundred ten');\nINSERT INTO t1 VALUES(5695, 96911, 'ninety-six thousand nine hundred eleven');\nINSERT INTO t1 VALUES(5696, 27795, 'twenty-seven thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(5697, 7042, 'seven thousand forty-two');\nINSERT INTO t1 VALUES(5698, 99822, 'ninety-nine thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(5699, 87012, 'eighty-seven thousand twelve');\nINSERT INTO t1 VALUES(5700, 45290, 'forty-five thousand two hundred ninety');\nINSERT INTO t1 VALUES(5701, 83006, 'eighty-three thousand six');\nINSERT INTO t1 VALUES(5702, 10222, 'ten thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(5703, 6442, 'six thousand four hundred forty-two');\nINSERT INTO t1 VALUES(5704, 81649, 'eighty-one thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(5705, 57814, 'fifty-seven thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(5706, 53236, 'fifty-three thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(5707, 66815, 'sixty-six thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(5708, 88686, 'eighty-eight thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(5709, 42752, 'forty-two thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(5710, 9113, 'nine thousand one hundred thirteen');\nINSERT INTO t1 VALUES(5711, 59997, 'fifty-nine thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(5712, 33651, 'thirty-three thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(5713, 15618, 'fifteen thousand six hundred eighteen');\nINSERT INTO t1 VALUES(5714, 31107, 'thirty-one thousand one hundred seven');\nINSERT INTO t1 VALUES(5715, 79690, 'seventy-nine thousand six hundred ninety');\nINSERT INTO t1 VALUES(5716, 96344, 'ninety-six thousand three hundred forty-four');\nINSERT INTO t1 VALUES(5717, 99978, 'ninety-nine thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(5718, 37548, 'thirty-seven thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(5719, 60506, 'sixty thousand five hundred six');\nINSERT INTO t1 VALUES(5720, 58542, 'fifty-eight thousand five hundred forty-two');\nINSERT INTO t1 VALUES(5721, 87064, 'eighty-seven thousand sixty-four');\nINSERT INTO t1 VALUES(5722, 46094, 'forty-six thousand ninety-four');\nINSERT INTO t1 VALUES(5723, 40624, 'forty thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(5724, 28041, 'twenty-eight thousand forty-one');\nINSERT INTO t1 VALUES(5725, 42748, 'forty-two thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(5726, 15974, 'fifteen thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(5727, 39812, 'thirty-nine thousand eight hundred twelve');\nINSERT INTO t1 VALUES(5728, 32233, 'thirty-two thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(5729, 83463, 'eighty-three thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(5730, 22463, 'twenty-two thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(5731, 71074, 'seventy-one thousand seventy-four');\nINSERT INTO t1 VALUES(5732, 40039, 'forty thousand thirty-nine');\nINSERT INTO t1 VALUES(5733, 92469, 'ninety-two thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(5734, 58535, 'fifty-eight thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(5735, 2928, 'two thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(5736, 94781, 'ninety-four thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(5737, 32663, 'thirty-two thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(5738, 81166, 'eighty-one thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(5739, 1094, 'one thousand ninety-four');\nINSERT INTO t1 VALUES(5740, 58086, 'fifty-eight thousand eighty-six');\nINSERT INTO t1 VALUES(5741, 3272, 'three thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(5742, 8343, 'eight thousand three hundred forty-three');\nINSERT INTO t1 VALUES(5743, 85473, 'eighty-five thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(5744, 68499, 'sixty-eight thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(5745, 43043, 'forty-three thousand forty-three');\nINSERT INTO t1 VALUES(5746, 28723, 'twenty-eight thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(5747, 12120, 'twelve thousand one hundred twenty');\nINSERT INTO t1 VALUES(5748, 8850, 'eight thousand eight hundred fifty');\nINSERT INTO t1 VALUES(5749, 3675, 'three thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(5750, 81481, 'eighty-one thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(5751, 85136, 'eighty-five thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(5752, 6472, 'six thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(5753, 64652, 'sixty-four thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(5754, 81159, 'eighty-one thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(5755, 75610, 'seventy-five thousand six hundred ten');\nINSERT INTO t1 VALUES(5756, 67401, 'sixty-seven thousand four hundred one');\nINSERT INTO t1 VALUES(5757, 69523, 'sixty-nine thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(5758, 85736, 'eighty-five thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(5759, 53681, 'fifty-three thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(5760, 33289, 'thirty-three thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(5761, 40711, 'forty thousand seven hundred eleven');\nINSERT INTO t1 VALUES(5762, 20302, 'twenty thousand three hundred two');\nINSERT INTO t1 VALUES(5763, 30482, 'thirty thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(5764, 4800, 'four thousand eight hundred');\nINSERT INTO t1 VALUES(5765, 81936, 'eighty-one thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(5766, 71653, 'seventy-one thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(5767, 30258, 'thirty thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(5768, 85616, 'eighty-five thousand six hundred sixteen');\nINSERT INTO t1 VALUES(5769, 44991, 'forty-four thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(5770, 22149, 'twenty-two thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(5771, 13754, 'thirteen thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(5772, 42754, 'forty-two thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(5773, 70601, 'seventy thousand six hundred one');\nINSERT INTO t1 VALUES(5774, 44493, 'forty-four thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(5775, 12271, 'twelve thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(5776, 26137, 'twenty-six thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(5777, 63221, 'sixty-three thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(5778, 7043, 'seven thousand forty-three');\nINSERT INTO t1 VALUES(5779, 83697, 'eighty-three thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(5780, 29932, 'twenty-nine thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(5781, 35298, 'thirty-five thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(5782, 55702, 'fifty-five thousand seven hundred two');\nINSERT INTO t1 VALUES(5783, 1258, 'one thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(5784, 11842, 'eleven thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(5785, 49140, 'forty-nine thousand one hundred forty');\nINSERT INTO t1 VALUES(5786, 25541, 'twenty-five thousand five hundred forty-one');\nINSERT INTO t1 VALUES(5787, 27019, 'twenty-seven thousand nineteen');\nINSERT INTO t1 VALUES(5788, 14142, 'fourteen thousand one hundred forty-two');\nINSERT INTO t1 VALUES(5789, 91385, 'ninety-one thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(5790, 3933, 'three thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(5791, 21359, 'twenty-one thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(5792, 53896, 'fifty-three thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(5793, 29044, 'twenty-nine thousand forty-four');\nINSERT INTO t1 VALUES(5794, 57830, 'fifty-seven thousand eight hundred thirty');\nINSERT INTO t1 VALUES(5795, 18193, 'eighteen thousand one hundred ninety-three');\nINSERT INTO t1 VALUES(5796, 65368, 'sixty-five thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(5797, 27648, 'twenty-seven thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(5798, 734, 'seven hundred thirty-four');\nINSERT INTO t1 VALUES(5799, 20535, 'twenty thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(5800, 3805, 'three thousand eight hundred five');\nINSERT INTO t1 VALUES(5801, 31448, 'thirty-one thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(5802, 88702, 'eighty-eight thousand seven hundred two');\nINSERT INTO t1 VALUES(5803, 81491, 'eighty-one thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(5804, 46089, 'forty-six thousand eighty-nine');\nINSERT INTO t1 VALUES(5805, 33040, 'thirty-three thousand forty');\nINSERT INTO t1 VALUES(5806, 94878, 'ninety-four thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(5807, 2521, 'two thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(5808, 87685, 'eighty-seven thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(5809, 41326, 'forty-one thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(5810, 77005, 'seventy-seven thousand five');\nINSERT INTO t1 VALUES(5811, 7252, 'seven thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(5812, 26851, 'twenty-six thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(5813, 66603, 'sixty-six thousand six hundred three');\nINSERT INTO t1 VALUES(5814, 3236, 'three thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(5815, 59904, 'fifty-nine thousand nine hundred four');\nINSERT INTO t1 VALUES(5816, 96659, 'ninety-six thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(5817, 61576, 'sixty-one thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(5818, 2728, 'two thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(5819, 99234, 'ninety-nine thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(5820, 61764, 'sixty-one thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(5821, 73233, 'seventy-three thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(5822, 81710, 'eighty-one thousand seven hundred ten');\nINSERT INTO t1 VALUES(5823, 10605, 'ten thousand six hundred five');\nINSERT INTO t1 VALUES(5824, 64995, 'sixty-four thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(5825, 71043, 'seventy-one thousand forty-three');\nINSERT INTO t1 VALUES(5826, 64243, 'sixty-four thousand two hundred forty-three');\nINSERT INTO t1 VALUES(5827, 34252, 'thirty-four thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(5828, 431, 'four hundred thirty-one');\nINSERT INTO t1 VALUES(5829, 50226, 'fifty thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(5830, 18354, 'eighteen thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(5831, 38039, 'thirty-eight thousand thirty-nine');\nINSERT INTO t1 VALUES(5832, 92518, 'ninety-two thousand five hundred eighteen');\nINSERT INTO t1 VALUES(5833, 39072, 'thirty-nine thousand seventy-two');\nINSERT INTO t1 VALUES(5834, 51273, 'fifty-one thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(5835, 97456, 'ninety-seven thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(5836, 72655, 'seventy-two thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(5837, 43573, 'forty-three thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(5838, 9227, 'nine thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(5839, 5296, 'five thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(5840, 19926, 'nineteen thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(5841, 40602, 'forty thousand six hundred two');\nINSERT INTO t1 VALUES(5842, 35750, 'thirty-five thousand seven hundred fifty');\nINSERT INTO t1 VALUES(5843, 1254, 'one thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(5844, 11105, 'eleven thousand one hundred five');\nINSERT INTO t1 VALUES(5845, 84522, 'eighty-four thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(5846, 52503, 'fifty-two thousand five hundred three');\nINSERT INTO t1 VALUES(5847, 23768, 'twenty-three thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(5848, 44935, 'forty-four thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(5849, 58539, 'fifty-eight thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(5850, 63287, 'sixty-three thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(5851, 82201, 'eighty-two thousand two hundred one');\nINSERT INTO t1 VALUES(5852, 43953, 'forty-three thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(5853, 61674, 'sixty-one thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(5854, 16824, 'sixteen thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(5855, 90093, 'ninety thousand ninety-three');\nINSERT INTO t1 VALUES(5856, 77519, 'seventy-seven thousand five hundred nineteen');\nINSERT INTO t1 VALUES(5857, 32366, 'thirty-two thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(5858, 40815, 'forty thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(5859, 2676, 'two thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(5860, 35397, 'thirty-five thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(5861, 27085, 'twenty-seven thousand eighty-five');\nINSERT INTO t1 VALUES(5862, 66129, 'sixty-six thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(5863, 25262, 'twenty-five thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(5864, 39086, 'thirty-nine thousand eighty-six');\nINSERT INTO t1 VALUES(5865, 81046, 'eighty-one thousand forty-six');\nINSERT INTO t1 VALUES(5866, 99430, 'ninety-nine thousand four hundred thirty');\nINSERT INTO t1 VALUES(5867, 11568, 'eleven thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(5868, 73204, 'seventy-three thousand two hundred four');\nINSERT INTO t1 VALUES(5869, 69914, 'sixty-nine thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(5870, 69845, 'sixty-nine thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(5871, 60839, 'sixty thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(5872, 28815, 'twenty-eight thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(5873, 50053, 'fifty thousand fifty-three');\nINSERT INTO t1 VALUES(5874, 30974, 'thirty thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(5875, 62048, 'sixty-two thousand forty-eight');\nINSERT INTO t1 VALUES(5876, 95174, 'ninety-five thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(5877, 64972, 'sixty-four thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(5878, 31425, 'thirty-one thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(5879, 73904, 'seventy-three thousand nine hundred four');\nINSERT INTO t1 VALUES(5880, 65827, 'sixty-five thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(5881, 37404, 'thirty-seven thousand four hundred four');\nINSERT INTO t1 VALUES(5882, 50319, 'fifty thousand three hundred nineteen');\nINSERT INTO t1 VALUES(5883, 4247, 'four thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(5884, 5747, 'five thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(5885, 29179, 'twenty-nine thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(5886, 14924, 'fourteen thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(5887, 11564, 'eleven thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(5888, 58511, 'fifty-eight thousand five hundred eleven');\nINSERT INTO t1 VALUES(5889, 5053, 'five thousand fifty-three');\nINSERT INTO t1 VALUES(5890, 3785, 'three thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(5891, 5222, 'five thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(5892, 51671, 'fifty-one thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(5893, 24783, 'twenty-four thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(5894, 43234, 'forty-three thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(5895, 15401, 'fifteen thousand four hundred one');\nINSERT INTO t1 VALUES(5896, 40933, 'forty thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(5897, 73857, 'seventy-three thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(5898, 98388, 'ninety-eight thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(5899, 71023, 'seventy-one thousand twenty-three');\nINSERT INTO t1 VALUES(5900, 79414, 'seventy-nine thousand four hundred fourteen');\nINSERT INTO t1 VALUES(5901, 71149, 'seventy-one thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(5902, 89705, 'eighty-nine thousand seven hundred five');\nINSERT INTO t1 VALUES(5903, 73221, 'seventy-three thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(5904, 93693, 'ninety-three thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(5905, 72165, 'seventy-two thousand one hundred sixty-five');\nINSERT INTO t1 VALUES(5906, 81222, 'eighty-one thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(5907, 82277, 'eighty-two thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(5908, 78684, 'seventy-eight thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(5909, 50509, 'fifty thousand five hundred nine');\nINSERT INTO t1 VALUES(5910, 9728, 'nine thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(5911, 87942, 'eighty-seven thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(5912, 3477, 'three thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(5913, 64149, 'sixty-four thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(5914, 20249, 'twenty thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(5915, 38612, 'thirty-eight thousand six hundred twelve');\nINSERT INTO t1 VALUES(5916, 56075, 'fifty-six thousand seventy-five');\nINSERT INTO t1 VALUES(5917, 96198, 'ninety-six thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(5918, 43894, 'forty-three thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(5919, 80481, 'eighty thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(5920, 85461, 'eighty-five thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(5921, 99175, 'ninety-nine thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(5922, 9165, 'nine thousand one hundred sixty-five');\nINSERT INTO t1 VALUES(5923, 2694, 'two thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(5924, 3922, 'three thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(5925, 55446, 'fifty-five thousand four hundred forty-six');\nINSERT INTO t1 VALUES(5926, 72038, 'seventy-two thousand thirty-eight');\nINSERT INTO t1 VALUES(5927, 47878, 'forty-seven thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(5928, 21717, 'twenty-one thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(5929, 51243, 'fifty-one thousand two hundred forty-three');\nINSERT INTO t1 VALUES(5930, 27692, 'twenty-seven thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(5931, 86212, 'eighty-six thousand two hundred twelve');\nINSERT INTO t1 VALUES(5932, 98678, 'ninety-eight thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(5933, 41784, 'forty-one thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(5934, 21406, 'twenty-one thousand four hundred six');\nINSERT INTO t1 VALUES(5935, 7330, 'seven thousand three hundred thirty');\nINSERT INTO t1 VALUES(5936, 51208, 'fifty-one thousand two hundred eight');\nINSERT INTO t1 VALUES(5937, 5709, 'five thousand seven hundred nine');\nINSERT INTO t1 VALUES(5938, 34464, 'thirty-four thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(5939, 29285, 'twenty-nine thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(5940, 45320, 'forty-five thousand three hundred twenty');\nINSERT INTO t1 VALUES(5941, 62972, 'sixty-two thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(5942, 30880, 'thirty thousand eight hundred eighty');\nINSERT INTO t1 VALUES(5943, 52617, 'fifty-two thousand six hundred seventeen');\nINSERT INTO t1 VALUES(5944, 96712, 'ninety-six thousand seven hundred twelve');\nINSERT INTO t1 VALUES(5945, 14169, 'fourteen thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(5946, 89655, 'eighty-nine thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(5947, 27272, 'twenty-seven thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(5948, 14824, 'fourteen thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(5949, 51837, 'fifty-one thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(5950, 80379, 'eighty thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(5951, 58811, 'fifty-eight thousand eight hundred eleven');\nINSERT INTO t1 VALUES(5952, 97797, 'ninety-seven thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(5953, 40518, 'forty thousand five hundred eighteen');\nINSERT INTO t1 VALUES(5954, 26873, 'twenty-six thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(5955, 28708, 'twenty-eight thousand seven hundred eight');\nINSERT INTO t1 VALUES(5956, 80909, 'eighty thousand nine hundred nine');\nINSERT INTO t1 VALUES(5957, 22620, 'twenty-two thousand six hundred twenty');\nINSERT INTO t1 VALUES(5958, 41438, 'forty-one thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(5959, 75973, 'seventy-five thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(5960, 93302, 'ninety-three thousand three hundred two');\nINSERT INTO t1 VALUES(5961, 13520, 'thirteen thousand five hundred twenty');\nINSERT INTO t1 VALUES(5962, 86795, 'eighty-six thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(5963, 15084, 'fifteen thousand eighty-four');\nINSERT INTO t1 VALUES(5964, 61267, 'sixty-one thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(5965, 92818, 'ninety-two thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(5966, 31362, 'thirty-one thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(5967, 81944, 'eighty-one thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(5968, 12683, 'twelve thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(5969, 84910, 'eighty-four thousand nine hundred ten');\nINSERT INTO t1 VALUES(5970, 61059, 'sixty-one thousand fifty-nine');\nINSERT INTO t1 VALUES(5971, 32942, 'thirty-two thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(5972, 12882, 'twelve thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(5973, 86006, 'eighty-six thousand six');\nINSERT INTO t1 VALUES(5974, 105, 'one hundred five');\nINSERT INTO t1 VALUES(5975, 37199, 'thirty-seven thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(5976, 58310, 'fifty-eight thousand three hundred ten');\nINSERT INTO t1 VALUES(5977, 50047, 'fifty thousand forty-seven');\nINSERT INTO t1 VALUES(5978, 21168, 'twenty-one thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(5979, 78266, 'seventy-eight thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(5980, 67576, 'sixty-seven thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(5981, 20865, 'twenty thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(5982, 66162, 'sixty-six thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(5983, 72289, 'seventy-two thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(5984, 89728, 'eighty-nine thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(5985, 45418, 'forty-five thousand four hundred eighteen');\nINSERT INTO t1 VALUES(5986, 40699, 'forty thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(5987, 93583, 'ninety-three thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(5988, 80833, 'eighty thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(5989, 81458, 'eighty-one thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(5990, 42151, 'forty-two thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(5991, 16424, 'sixteen thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(5992, 40866, 'forty thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(5993, 71944, 'seventy-one thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(5994, 80048, 'eighty thousand forty-eight');\nINSERT INTO t1 VALUES(5995, 66604, 'sixty-six thousand six hundred four');\nINSERT INTO t1 VALUES(5996, 5613, 'five thousand six hundred thirteen');\nINSERT INTO t1 VALUES(5997, 14891, 'fourteen thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(5998, 90251, 'ninety thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(5999, 54381, 'fifty-four thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(6000, 97762, 'ninety-seven thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(6001, 66556, 'sixty-six thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(6002, 16944, 'sixteen thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(6003, 30116, 'thirty thousand one hundred sixteen');\nINSERT INTO t1 VALUES(6004, 97666, 'ninety-seven thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(6005, 67246, 'sixty-seven thousand two hundred forty-six');\nINSERT INTO t1 VALUES(6006, 99417, 'ninety-nine thousand four hundred seventeen');\nINSERT INTO t1 VALUES(6007, 20018, 'twenty thousand eighteen');\nINSERT INTO t1 VALUES(6008, 34792, 'thirty-four thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(6009, 74569, 'seventy-four thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(6010, 60832, 'sixty thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(6011, 31523, 'thirty-one thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(6012, 12575, 'twelve thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(6013, 66799, 'sixty-six thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(6014, 46037, 'forty-six thousand thirty-seven');\nINSERT INTO t1 VALUES(6015, 71299, 'seventy-one thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(6016, 89117, 'eighty-nine thousand one hundred seventeen');\nINSERT INTO t1 VALUES(6017, 31704, 'thirty-one thousand seven hundred four');\nINSERT INTO t1 VALUES(6018, 48649, 'forty-eight thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(6019, 32353, 'thirty-two thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(6020, 15818, 'fifteen thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(6021, 23521, 'twenty-three thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(6022, 1551, 'one thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(6023, 39528, 'thirty-nine thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(6024, 88778, 'eighty-eight thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(6025, 16705, 'sixteen thousand seven hundred five');\nINSERT INTO t1 VALUES(6026, 45429, 'forty-five thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(6027, 81045, 'eighty-one thousand forty-five');\nINSERT INTO t1 VALUES(6028, 40213, 'forty thousand two hundred thirteen');\nINSERT INTO t1 VALUES(6029, 60661, 'sixty thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(6030, 19689, 'nineteen thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(6031, 9676, 'nine thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(6032, 44984, 'forty-four thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(6033, 34965, 'thirty-four thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(6034, 19035, 'nineteen thousand thirty-five');\nINSERT INTO t1 VALUES(6035, 42687, 'forty-two thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(6036, 68840, 'sixty-eight thousand eight hundred forty');\nINSERT INTO t1 VALUES(6037, 51366, 'fifty-one thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(6038, 6740, 'six thousand seven hundred forty');\nINSERT INTO t1 VALUES(6039, 77008, 'seventy-seven thousand eight');\nINSERT INTO t1 VALUES(6040, 13699, 'thirteen thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(6041, 58893, 'fifty-eight thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(6042, 69989, 'sixty-nine thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(6043, 86143, 'eighty-six thousand one hundred forty-three');\nINSERT INTO t1 VALUES(6044, 71431, 'seventy-one thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(6045, 6232, 'six thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(6046, 43674, 'forty-three thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(6047, 68344, 'sixty-eight thousand three hundred forty-four');\nINSERT INTO t1 VALUES(6048, 53156, 'fifty-three thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(6049, 62021, 'sixty-two thousand twenty-one');\nINSERT INTO t1 VALUES(6050, 83692, 'eighty-three thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(6051, 52651, 'fifty-two thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(6052, 22981, 'twenty-two thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(6053, 5349, 'five thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(6054, 51710, 'fifty-one thousand seven hundred ten');\nINSERT INTO t1 VALUES(6055, 97423, 'ninety-seven thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(6056, 2635, 'two thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(6057, 50331, 'fifty thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(6058, 16875, 'sixteen thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(6059, 37338, 'thirty-seven thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(6060, 41883, 'forty-one thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(6061, 33015, 'thirty-three thousand fifteen');\nINSERT INTO t1 VALUES(6062, 54505, 'fifty-four thousand five hundred five');\nINSERT INTO t1 VALUES(6063, 92048, 'ninety-two thousand forty-eight');\nINSERT INTO t1 VALUES(6064, 82076, 'eighty-two thousand seventy-six');\nINSERT INTO t1 VALUES(6065, 29564, 'twenty-nine thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(6066, 68518, 'sixty-eight thousand five hundred eighteen');\nINSERT INTO t1 VALUES(6067, 64960, 'sixty-four thousand nine hundred sixty');\nINSERT INTO t1 VALUES(6068, 23509, 'twenty-three thousand five hundred nine');\nINSERT INTO t1 VALUES(6069, 91806, 'ninety-one thousand eight hundred six');\nINSERT INTO t1 VALUES(6070, 64944, 'sixty-four thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(6071, 31651, 'thirty-one thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(6072, 68832, 'sixty-eight thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(6073, 93102, 'ninety-three thousand one hundred two');\nINSERT INTO t1 VALUES(6074, 27179, 'twenty-seven thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(6075, 19259, 'nineteen thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(6076, 21112, 'twenty-one thousand one hundred twelve');\nINSERT INTO t1 VALUES(6077, 26288, 'twenty-six thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(6078, 83736, 'eighty-three thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(6079, 53608, 'fifty-three thousand six hundred eight');\nINSERT INTO t1 VALUES(6080, 53383, 'fifty-three thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(6081, 1086, 'one thousand eighty-six');\nINSERT INTO t1 VALUES(6082, 21942, 'twenty-one thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(6083, 27373, 'twenty-seven thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(6084, 96883, 'ninety-six thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(6085, 54164, 'fifty-four thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(6086, 34958, 'thirty-four thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(6087, 40300, 'forty thousand three hundred');\nINSERT INTO t1 VALUES(6088, 10401, 'ten thousand four hundred one');\nINSERT INTO t1 VALUES(6089, 47354, 'forty-seven thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(6090, 63759, 'sixty-three thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(6091, 75959, 'seventy-five thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(6092, 18867, 'eighteen thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(6093, 95507, 'ninety-five thousand five hundred seven');\nINSERT INTO t1 VALUES(6094, 50438, 'fifty thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(6095, 54159, 'fifty-four thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(6096, 13209, 'thirteen thousand two hundred nine');\nINSERT INTO t1 VALUES(6097, 79747, 'seventy-nine thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(6098, 73853, 'seventy-three thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(6099, 21777, 'twenty-one thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(6100, 56092, 'fifty-six thousand ninety-two');\nINSERT INTO t1 VALUES(6101, 20085, 'twenty thousand eighty-five');\nINSERT INTO t1 VALUES(6102, 70417, 'seventy thousand four hundred seventeen');\nINSERT INTO t1 VALUES(6103, 59212, 'fifty-nine thousand two hundred twelve');\nINSERT INTO t1 VALUES(6104, 41400, 'forty-one thousand four hundred');\nINSERT INTO t1 VALUES(6105, 24815, 'twenty-four thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(6106, 86893, 'eighty-six thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(6107, 96794, 'ninety-six thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(6108, 27929, 'twenty-seven thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(6109, 83698, 'eighty-three thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(6110, 11692, 'eleven thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(6111, 24572, 'twenty-four thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(6112, 73593, 'seventy-three thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(6113, 6989, 'six thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(6114, 98645, 'ninety-eight thousand six hundred forty-five');\nINSERT INTO t1 VALUES(6115, 64270, 'sixty-four thousand two hundred seventy');\nINSERT INTO t1 VALUES(6116, 85749, 'eighty-five thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(6117, 22917, 'twenty-two thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(6118, 43775, 'forty-three thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(6119, 57312, 'fifty-seven thousand three hundred twelve');\nINSERT INTO t1 VALUES(6120, 16387, 'sixteen thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(6121, 84179, 'eighty-four thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(6122, 11781, 'eleven thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(6123, 86140, 'eighty-six thousand one hundred forty');\nINSERT INTO t1 VALUES(6124, 71551, 'seventy-one thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(6125, 63201, 'sixty-three thousand two hundred one');\nINSERT INTO t1 VALUES(6126, 66011, 'sixty-six thousand eleven');\nINSERT INTO t1 VALUES(6127, 61103, 'sixty-one thousand one hundred three');\nINSERT INTO t1 VALUES(6128, 89958, 'eighty-nine thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(6129, 26686, 'twenty-six thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(6130, 12519, 'twelve thousand five hundred nineteen');\nINSERT INTO t1 VALUES(6131, 4787, 'four thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(6132, 96030, 'ninety-six thousand thirty');\nINSERT INTO t1 VALUES(6133, 73207, 'seventy-three thousand two hundred seven');\nINSERT INTO t1 VALUES(6134, 48277, 'forty-eight thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(6135, 96032, 'ninety-six thousand thirty-two');\nINSERT INTO t1 VALUES(6136, 63056, 'sixty-three thousand fifty-six');\nINSERT INTO t1 VALUES(6137, 42075, 'forty-two thousand seventy-five');\nINSERT INTO t1 VALUES(6138, 63940, 'sixty-three thousand nine hundred forty');\nINSERT INTO t1 VALUES(6139, 62171, 'sixty-two thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(6140, 26680, 'twenty-six thousand six hundred eighty');\nINSERT INTO t1 VALUES(6141, 75611, 'seventy-five thousand six hundred eleven');\nINSERT INTO t1 VALUES(6142, 93199, 'ninety-three thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(6143, 4280, 'four thousand two hundred eighty');\nINSERT INTO t1 VALUES(6144, 26074, 'twenty-six thousand seventy-four');\nINSERT INTO t1 VALUES(6145, 83317, 'eighty-three thousand three hundred seventeen');\nINSERT INTO t1 VALUES(6146, 12529, 'twelve thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(6147, 4828, 'four thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(6148, 79041, 'seventy-nine thousand forty-one');\nINSERT INTO t1 VALUES(6149, 83821, 'eighty-three thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(6150, 17753, 'seventeen thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(6151, 74826, 'seventy-four thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(6152, 54661, 'fifty-four thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(6153, 6076, 'six thousand seventy-six');\nINSERT INTO t1 VALUES(6154, 89661, 'eighty-nine thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(6155, 21980, 'twenty-one thousand nine hundred eighty');\nINSERT INTO t1 VALUES(6156, 94673, 'ninety-four thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(6157, 33265, 'thirty-three thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(6158, 97246, 'ninety-seven thousand two hundred forty-six');\nINSERT INTO t1 VALUES(6159, 35723, 'thirty-five thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(6160, 13267, 'thirteen thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(6161, 96071, 'ninety-six thousand seventy-one');\nINSERT INTO t1 VALUES(6162, 15046, 'fifteen thousand forty-six');\nINSERT INTO t1 VALUES(6163, 51026, 'fifty-one thousand twenty-six');\nINSERT INTO t1 VALUES(6164, 1256, 'one thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(6165, 48559, 'forty-eight thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(6166, 63589, 'sixty-three thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(6167, 1092, 'one thousand ninety-two');\nINSERT INTO t1 VALUES(6168, 83036, 'eighty-three thousand thirty-six');\nINSERT INTO t1 VALUES(6169, 77264, 'seventy-seven thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(6170, 98494, 'ninety-eight thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(6171, 58314, 'fifty-eight thousand three hundred fourteen');\nINSERT INTO t1 VALUES(6172, 6026, 'six thousand twenty-six');\nINSERT INTO t1 VALUES(6173, 55715, 'fifty-five thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(6174, 84094, 'eighty-four thousand ninety-four');\nINSERT INTO t1 VALUES(6175, 90636, 'ninety thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(6176, 74295, 'seventy-four thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(6177, 44656, 'forty-four thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(6178, 54405, 'fifty-four thousand four hundred five');\nINSERT INTO t1 VALUES(6179, 99590, 'ninety-nine thousand five hundred ninety');\nINSERT INTO t1 VALUES(6180, 48529, 'forty-eight thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(6181, 21598, 'twenty-one thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(6182, 58610, 'fifty-eight thousand six hundred ten');\nINSERT INTO t1 VALUES(6183, 75107, 'seventy-five thousand one hundred seven');\nINSERT INTO t1 VALUES(6184, 781, 'seven hundred eighty-one');\nINSERT INTO t1 VALUES(6185, 68474, 'sixty-eight thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(6186, 92810, 'ninety-two thousand eight hundred ten');\nINSERT INTO t1 VALUES(6187, 81935, 'eighty-one thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(6188, 33035, 'thirty-three thousand thirty-five');\nINSERT INTO t1 VALUES(6189, 54285, 'fifty-four thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(6190, 63510, 'sixty-three thousand five hundred ten');\nINSERT INTO t1 VALUES(6191, 15595, 'fifteen thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(6192, 89303, 'eighty-nine thousand three hundred three');\nINSERT INTO t1 VALUES(6193, 53523, 'fifty-three thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(6194, 31742, 'thirty-one thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(6195, 18746, 'eighteen thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(6196, 34052, 'thirty-four thousand fifty-two');\nINSERT INTO t1 VALUES(6197, 12911, 'twelve thousand nine hundred eleven');\nINSERT INTO t1 VALUES(6198, 44513, 'forty-four thousand five hundred thirteen');\nINSERT INTO t1 VALUES(6199, 42664, 'forty-two thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(6200, 82983, 'eighty-two thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(6201, 13599, 'thirteen thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(6202, 47210, 'forty-seven thousand two hundred ten');\nINSERT INTO t1 VALUES(6203, 68625, 'sixty-eight thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(6204, 75926, 'seventy-five thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(6205, 39770, 'thirty-nine thousand seven hundred seventy');\nINSERT INTO t1 VALUES(6206, 8537, 'eight thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(6207, 68772, 'sixty-eight thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(6208, 36439, 'thirty-six thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(6209, 41050, 'forty-one thousand fifty');\nINSERT INTO t1 VALUES(6210, 6853, 'six thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(6211, 89078, 'eighty-nine thousand seventy-eight');\nINSERT INTO t1 VALUES(6212, 23674, 'twenty-three thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(6213, 73817, 'seventy-three thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(6214, 71850, 'seventy-one thousand eight hundred fifty');\nINSERT INTO t1 VALUES(6215, 74717, 'seventy-four thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(6216, 73431, 'seventy-three thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(6217, 14021, 'fourteen thousand twenty-one');\nINSERT INTO t1 VALUES(6218, 3575, 'three thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(6219, 44774, 'forty-four thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(6220, 69778, 'sixty-nine thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(6221, 63566, 'sixty-three thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(6222, 80173, 'eighty thousand one hundred seventy-three');\nINSERT INTO t1 VALUES(6223, 70378, 'seventy thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(6224, 47493, 'forty-seven thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(6225, 34644, 'thirty-four thousand six hundred forty-four');\nINSERT INTO t1 VALUES(6226, 27823, 'twenty-seven thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(6227, 3114, 'three thousand one hundred fourteen');\nINSERT INTO t1 VALUES(6228, 32122, 'thirty-two thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(6229, 97322, 'ninety-seven thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(6230, 97281, 'ninety-seven thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(6231, 75664, 'seventy-five thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(6232, 29293, 'twenty-nine thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(6233, 59723, 'fifty-nine thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(6234, 80197, 'eighty thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(6235, 68278, 'sixty-eight thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(6236, 56468, 'fifty-six thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(6237, 5715, 'five thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(6238, 5624, 'five thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(6239, 88140, 'eighty-eight thousand one hundred forty');\nINSERT INTO t1 VALUES(6240, 74496, 'seventy-four thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(6241, 75097, 'seventy-five thousand ninety-seven');\nINSERT INTO t1 VALUES(6242, 34885, 'thirty-four thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(6243, 30664, 'thirty thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(6244, 84770, 'eighty-four thousand seven hundred seventy');\nINSERT INTO t1 VALUES(6245, 58350, 'fifty-eight thousand three hundred fifty');\nINSERT INTO t1 VALUES(6246, 56008, 'fifty-six thousand eight');\nINSERT INTO t1 VALUES(6247, 38588, 'thirty-eight thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(6248, 6611, 'six thousand six hundred eleven');\nINSERT INTO t1 VALUES(6249, 85751, 'eighty-five thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(6250, 64241, 'sixty-four thousand two hundred forty-one');\nINSERT INTO t1 VALUES(6251, 72257, 'seventy-two thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(6252, 69116, 'sixty-nine thousand one hundred sixteen');\nINSERT INTO t1 VALUES(6253, 80438, 'eighty thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(6254, 20441, 'twenty thousand four hundred forty-one');\nINSERT INTO t1 VALUES(6255, 83620, 'eighty-three thousand six hundred twenty');\nINSERT INTO t1 VALUES(6256, 90621, 'ninety thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(6257, 39262, 'thirty-nine thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(6258, 74012, 'seventy-four thousand twelve');\nINSERT INTO t1 VALUES(6259, 78372, 'seventy-eight thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(6260, 37579, 'thirty-seven thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(6261, 83801, 'eighty-three thousand eight hundred one');\nINSERT INTO t1 VALUES(6262, 34122, 'thirty-four thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(6263, 34250, 'thirty-four thousand two hundred fifty');\nINSERT INTO t1 VALUES(6264, 54760, 'fifty-four thousand seven hundred sixty');\nINSERT INTO t1 VALUES(6265, 65580, 'sixty-five thousand five hundred eighty');\nINSERT INTO t1 VALUES(6266, 51092, 'fifty-one thousand ninety-two');\nINSERT INTO t1 VALUES(6267, 84895, 'eighty-four thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(6268, 5341, 'five thousand three hundred forty-one');\nINSERT INTO t1 VALUES(6269, 26667, 'twenty-six thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(6270, 83989, 'eighty-three thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(6271, 78345, 'seventy-eight thousand three hundred forty-five');\nINSERT INTO t1 VALUES(6272, 91624, 'ninety-one thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(6273, 54510, 'fifty-four thousand five hundred ten');\nINSERT INTO t1 VALUES(6274, 2041, 'two thousand forty-one');\nINSERT INTO t1 VALUES(6275, 8249, 'eight thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(6276, 16815, 'sixteen thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(6277, 57435, 'fifty-seven thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(6278, 56575, 'fifty-six thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(6279, 90981, 'ninety thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(6280, 51459, 'fifty-one thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(6281, 62660, 'sixty-two thousand six hundred sixty');\nINSERT INTO t1 VALUES(6282, 3397, 'three thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(6283, 24584, 'twenty-four thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(6284, 41612, 'forty-one thousand six hundred twelve');\nINSERT INTO t1 VALUES(6285, 31556, 'thirty-one thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(6286, 96549, 'ninety-six thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(6287, 43389, 'forty-three thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(6288, 64564, 'sixty-four thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(6289, 77378, 'seventy-seven thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(6290, 36201, 'thirty-six thousand two hundred one');\nINSERT INTO t1 VALUES(6291, 89181, 'eighty-nine thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(6292, 67644, 'sixty-seven thousand six hundred forty-four');\nINSERT INTO t1 VALUES(6293, 91084, 'ninety-one thousand eighty-four');\nINSERT INTO t1 VALUES(6294, 44396, 'forty-four thousand three hundred ninety-six');\nINSERT INTO t1 VALUES(6295, 36642, 'thirty-six thousand six hundred forty-two');\nINSERT INTO t1 VALUES(6296, 50372, 'fifty thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(6297, 52752, 'fifty-two thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(6298, 46968, 'forty-six thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(6299, 78286, 'seventy-eight thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(6300, 65662, 'sixty-five thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(6301, 9889, 'nine thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(6302, 25144, 'twenty-five thousand one hundred forty-four');\nINSERT INTO t1 VALUES(6303, 38696, 'thirty-eight thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(6304, 69362, 'sixty-nine thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(6305, 67404, 'sixty-seven thousand four hundred four');\nINSERT INTO t1 VALUES(6306, 40800, 'forty thousand eight hundred');\nINSERT INTO t1 VALUES(6307, 59099, 'fifty-nine thousand ninety-nine');\nINSERT INTO t1 VALUES(6308, 76688, 'seventy-six thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(6309, 26867, 'twenty-six thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(6310, 76874, 'seventy-six thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(6311, 76946, 'seventy-six thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(6312, 76693, 'seventy-six thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(6313, 18074, 'eighteen thousand seventy-four');\nINSERT INTO t1 VALUES(6314, 91064, 'ninety-one thousand sixty-four');\nINSERT INTO t1 VALUES(6315, 28648, 'twenty-eight thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(6316, 38027, 'thirty-eight thousand twenty-seven');\nINSERT INTO t1 VALUES(6317, 63057, 'sixty-three thousand fifty-seven');\nINSERT INTO t1 VALUES(6318, 92263, 'ninety-two thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(6319, 25696, 'twenty-five thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(6320, 35529, 'thirty-five thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(6321, 75167, 'seventy-five thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(6322, 47213, 'forty-seven thousand two hundred thirteen');\nINSERT INTO t1 VALUES(6323, 78732, 'seventy-eight thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(6324, 19689, 'nineteen thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(6325, 22617, 'twenty-two thousand six hundred seventeen');\nINSERT INTO t1 VALUES(6326, 69900, 'sixty-nine thousand nine hundred');\nINSERT INTO t1 VALUES(6327, 73652, 'seventy-three thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(6328, 76415, 'seventy-six thousand four hundred fifteen');\nINSERT INTO t1 VALUES(6329, 87877, 'eighty-seven thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(6330, 78207, 'seventy-eight thousand two hundred seven');\nINSERT INTO t1 VALUES(6331, 58335, 'fifty-eight thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(6332, 54124, 'fifty-four thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(6333, 22703, 'twenty-two thousand seven hundred three');\nINSERT INTO t1 VALUES(6334, 97491, 'ninety-seven thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(6335, 11295, 'eleven thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(6336, 29256, 'twenty-nine thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(6337, 38698, 'thirty-eight thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(6338, 73044, 'seventy-three thousand forty-four');\nINSERT INTO t1 VALUES(6339, 99765, 'ninety-nine thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(6340, 88301, 'eighty-eight thousand three hundred one');\nINSERT INTO t1 VALUES(6341, 30244, 'thirty thousand two hundred forty-four');\nINSERT INTO t1 VALUES(6342, 79749, 'seventy-nine thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(6343, 71802, 'seventy-one thousand eight hundred two');\nINSERT INTO t1 VALUES(6344, 30418, 'thirty thousand four hundred eighteen');\nINSERT INTO t1 VALUES(6345, 49616, 'forty-nine thousand six hundred sixteen');\nINSERT INTO t1 VALUES(6346, 49300, 'forty-nine thousand three hundred');\nINSERT INTO t1 VALUES(6347, 44312, 'forty-four thousand three hundred twelve');\nINSERT INTO t1 VALUES(6348, 53302, 'fifty-three thousand three hundred two');\nINSERT INTO t1 VALUES(6349, 79200, 'seventy-nine thousand two hundred');\nINSERT INTO t1 VALUES(6350, 35702, 'thirty-five thousand seven hundred two');\nINSERT INTO t1 VALUES(6351, 99592, 'ninety-nine thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(6352, 64522, 'sixty-four thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(6353, 86, 'eighty-six');\nINSERT INTO t1 VALUES(6354, 80876, 'eighty thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(6355, 99168, 'ninety-nine thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(6356, 46811, 'forty-six thousand eight hundred eleven');\nINSERT INTO t1 VALUES(6357, 1072, 'one thousand seventy-two');\nINSERT INTO t1 VALUES(6358, 8278, 'eight thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(6359, 55607, 'fifty-five thousand six hundred seven');\nINSERT INTO t1 VALUES(6360, 36504, 'thirty-six thousand five hundred four');\nINSERT INTO t1 VALUES(6361, 59909, 'fifty-nine thousand nine hundred nine');\nINSERT INTO t1 VALUES(6362, 57992, 'fifty-seven thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(6363, 23613, 'twenty-three thousand six hundred thirteen');\nINSERT INTO t1 VALUES(6364, 92633, 'ninety-two thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(6365, 72904, 'seventy-two thousand nine hundred four');\nINSERT INTO t1 VALUES(6366, 7705, 'seven thousand seven hundred five');\nINSERT INTO t1 VALUES(6367, 39207, 'thirty-nine thousand two hundred seven');\nINSERT INTO t1 VALUES(6368, 73654, 'seventy-three thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(6369, 90698, 'ninety thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(6370, 87976, 'eighty-seven thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(6371, 98859, 'ninety-eight thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(6372, 41861, 'forty-one thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(6373, 41215, 'forty-one thousand two hundred fifteen');\nINSERT INTO t1 VALUES(6374, 73473, 'seventy-three thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(6375, 44368, 'forty-four thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(6376, 62850, 'sixty-two thousand eight hundred fifty');\nINSERT INTO t1 VALUES(6377, 61458, 'sixty-one thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(6378, 86293, 'eighty-six thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(6379, 39747, 'thirty-nine thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(6380, 75183, 'seventy-five thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(6381, 60161, 'sixty thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(6382, 70506, 'seventy thousand five hundred six');\nINSERT INTO t1 VALUES(6383, 60941, 'sixty thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(6384, 39578, 'thirty-nine thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(6385, 70609, 'seventy thousand six hundred nine');\nINSERT INTO t1 VALUES(6386, 85484, 'eighty-five thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(6387, 47789, 'forty-seven thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(6388, 21144, 'twenty-one thousand one hundred forty-four');\nINSERT INTO t1 VALUES(6389, 78442, 'seventy-eight thousand four hundred forty-two');\nINSERT INTO t1 VALUES(6390, 85009, 'eighty-five thousand nine');\nINSERT INTO t1 VALUES(6391, 69987, 'sixty-nine thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(6392, 19247, 'nineteen thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(6393, 57089, 'fifty-seven thousand eighty-nine');\nINSERT INTO t1 VALUES(6394, 4956, 'four thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(6395, 25327, 'twenty-five thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(6396, 13866, 'thirteen thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(6397, 64720, 'sixty-four thousand seven hundred twenty');\nINSERT INTO t1 VALUES(6398, 30202, 'thirty thousand two hundred two');\nINSERT INTO t1 VALUES(6399, 87269, 'eighty-seven thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(6400, 19421, 'nineteen thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(6401, 62345, 'sixty-two thousand three hundred forty-five');\nINSERT INTO t1 VALUES(6402, 61738, 'sixty-one thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(6403, 25837, 'twenty-five thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(6404, 76888, 'seventy-six thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(6405, 77261, 'seventy-seven thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(6406, 77246, 'seventy-seven thousand two hundred forty-six');\nINSERT INTO t1 VALUES(6407, 45044, 'forty-five thousand forty-four');\nINSERT INTO t1 VALUES(6408, 46395, 'forty-six thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(6409, 22073, 'twenty-two thousand seventy-three');\nINSERT INTO t1 VALUES(6410, 45647, 'forty-five thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(6411, 98782, 'ninety-eight thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(6412, 95995, 'ninety-five thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(6413, 90916, 'ninety thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(6414, 67805, 'sixty-seven thousand eight hundred five');\nINSERT INTO t1 VALUES(6415, 24900, 'twenty-four thousand nine hundred');\nINSERT INTO t1 VALUES(6416, 75181, 'seventy-five thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(6417, 77366, 'seventy-seven thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(6418, 20206, 'twenty thousand two hundred six');\nINSERT INTO t1 VALUES(6419, 15870, 'fifteen thousand eight hundred seventy');\nINSERT INTO t1 VALUES(6420, 35851, 'thirty-five thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(6421, 22581, 'twenty-two thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(6422, 42718, 'forty-two thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(6423, 1868, 'one thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(6424, 93042, 'ninety-three thousand forty-two');\nINSERT INTO t1 VALUES(6425, 581, 'five hundred eighty-one');\nINSERT INTO t1 VALUES(6426, 45311, 'forty-five thousand three hundred eleven');\nINSERT INTO t1 VALUES(6427, 24105, 'twenty-four thousand one hundred five');\nINSERT INTO t1 VALUES(6428, 36553, 'thirty-six thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(6429, 3533, 'three thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(6430, 5500, 'five thousand five hundred');\nINSERT INTO t1 VALUES(6431, 88211, 'eighty-eight thousand two hundred eleven');\nINSERT INTO t1 VALUES(6432, 86845, 'eighty-six thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(6433, 46179, 'forty-six thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(6434, 89033, 'eighty-nine thousand thirty-three');\nINSERT INTO t1 VALUES(6435, 83573, 'eighty-three thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(6436, 97826, 'ninety-seven thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(6437, 75421, 'seventy-five thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(6438, 15705, 'fifteen thousand seven hundred five');\nINSERT INTO t1 VALUES(6439, 88535, 'eighty-eight thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(6440, 40410, 'forty thousand four hundred ten');\nINSERT INTO t1 VALUES(6441, 849, 'eight hundred forty-nine');\nINSERT INTO t1 VALUES(6442, 95486, 'ninety-five thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(6443, 52442, 'fifty-two thousand four hundred forty-two');\nINSERT INTO t1 VALUES(6444, 40228, 'forty thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(6445, 37958, 'thirty-seven thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(6446, 43012, 'forty-three thousand twelve');\nINSERT INTO t1 VALUES(6447, 77587, 'seventy-seven thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(6448, 68786, 'sixty-eight thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(6449, 77629, 'seventy-seven thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(6450, 28032, 'twenty-eight thousand thirty-two');\nINSERT INTO t1 VALUES(6451, 18697, 'eighteen thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(6452, 36216, 'thirty-six thousand two hundred sixteen');\nINSERT INTO t1 VALUES(6453, 26239, 'twenty-six thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(6454, 96458, 'ninety-six thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(6455, 46662, 'forty-six thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(6456, 53114, 'fifty-three thousand one hundred fourteen');\nINSERT INTO t1 VALUES(6457, 40794, 'forty thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(6458, 83221, 'eighty-three thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(6459, 80435, 'eighty thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(6460, 65039, 'sixty-five thousand thirty-nine');\nINSERT INTO t1 VALUES(6461, 7447, 'seven thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(6462, 49944, 'forty-nine thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(6463, 92960, 'ninety-two thousand nine hundred sixty');\nINSERT INTO t1 VALUES(6464, 47047, 'forty-seven thousand forty-seven');\nINSERT INTO t1 VALUES(6465, 6292, 'six thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(6466, 2166, 'two thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(6467, 75009, 'seventy-five thousand nine');\nINSERT INTO t1 VALUES(6468, 35621, 'thirty-five thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(6469, 77908, 'seventy-seven thousand nine hundred eight');\nINSERT INTO t1 VALUES(6470, 35457, 'thirty-five thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(6471, 31798, 'thirty-one thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(6472, 23772, 'twenty-three thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(6473, 44888, 'forty-four thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(6474, 6788, 'six thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(6475, 19365, 'nineteen thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(6476, 84668, 'eighty-four thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(6477, 95262, 'ninety-five thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(6478, 14317, 'fourteen thousand three hundred seventeen');\nINSERT INTO t1 VALUES(6479, 62977, 'sixty-two thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(6480, 36967, 'thirty-six thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(6481, 63706, 'sixty-three thousand seven hundred six');\nINSERT INTO t1 VALUES(6482, 58164, 'fifty-eight thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(6483, 31521, 'thirty-one thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(6484, 32644, 'thirty-two thousand six hundred forty-four');\nINSERT INTO t1 VALUES(6485, 60359, 'sixty thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(6486, 4826, 'four thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(6487, 18041, 'eighteen thousand forty-one');\nINSERT INTO t1 VALUES(6488, 17276, 'seventeen thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(6489, 11314, 'eleven thousand three hundred fourteen');\nINSERT INTO t1 VALUES(6490, 79672, 'seventy-nine thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(6491, 48971, 'forty-eight thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(6492, 9315, 'nine thousand three hundred fifteen');\nINSERT INTO t1 VALUES(6493, 54703, 'fifty-four thousand seven hundred three');\nINSERT INTO t1 VALUES(6494, 69359, 'sixty-nine thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(6495, 80707, 'eighty thousand seven hundred seven');\nINSERT INTO t1 VALUES(6496, 83672, 'eighty-three thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(6497, 15006, 'fifteen thousand six');\nINSERT INTO t1 VALUES(6498, 10292, 'ten thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(6499, 18836, 'eighteen thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(6500, 84300, 'eighty-four thousand three hundred');\nINSERT INTO t1 VALUES(6501, 59324, 'fifty-nine thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(6502, 45438, 'forty-five thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(6503, 32454, 'thirty-two thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(6504, 26878, 'twenty-six thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(6505, 28508, 'twenty-eight thousand five hundred eight');\nINSERT INTO t1 VALUES(6506, 65092, 'sixty-five thousand ninety-two');\nINSERT INTO t1 VALUES(6507, 71646, 'seventy-one thousand six hundred forty-six');\nINSERT INTO t1 VALUES(6508, 33868, 'thirty-three thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(6509, 19281, 'nineteen thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(6510, 297, 'two hundred ninety-seven');\nINSERT INTO t1 VALUES(6511, 43375, 'forty-three thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(6512, 87831, 'eighty-seven thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(6513, 70988, 'seventy thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(6514, 68450, 'sixty-eight thousand four hundred fifty');\nINSERT INTO t1 VALUES(6515, 45136, 'forty-five thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(6516, 1303, 'one thousand three hundred three');\nINSERT INTO t1 VALUES(6517, 33621, 'thirty-three thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(6518, 27665, 'twenty-seven thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(6519, 22898, 'twenty-two thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(6520, 74371, 'seventy-four thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(6521, 3596, 'three thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(6522, 74725, 'seventy-four thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(6523, 26039, 'twenty-six thousand thirty-nine');\nINSERT INTO t1 VALUES(6524, 97083, 'ninety-seven thousand eighty-three');\nINSERT INTO t1 VALUES(6525, 58167, 'fifty-eight thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(6526, 97469, 'ninety-seven thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(6527, 40010, 'forty thousand ten');\nINSERT INTO t1 VALUES(6528, 73913, 'seventy-three thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(6529, 23600, 'twenty-three thousand six hundred');\nINSERT INTO t1 VALUES(6530, 15064, 'fifteen thousand sixty-four');\nINSERT INTO t1 VALUES(6531, 90309, 'ninety thousand three hundred nine');\nINSERT INTO t1 VALUES(6532, 38533, 'thirty-eight thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(6533, 66822, 'sixty-six thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(6534, 80416, 'eighty thousand four hundred sixteen');\nINSERT INTO t1 VALUES(6535, 56181, 'fifty-six thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(6536, 44722, 'forty-four thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(6537, 3306, 'three thousand three hundred six');\nINSERT INTO t1 VALUES(6538, 40989, 'forty thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(6539, 27387, 'twenty-seven thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(6540, 49399, 'forty-nine thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(6541, 24086, 'twenty-four thousand eighty-six');\nINSERT INTO t1 VALUES(6542, 7191, 'seven thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(6543, 97214, 'ninety-seven thousand two hundred fourteen');\nINSERT INTO t1 VALUES(6544, 99188, 'ninety-nine thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(6545, 85495, 'eighty-five thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(6546, 32045, 'thirty-two thousand forty-five');\nINSERT INTO t1 VALUES(6547, 1781, 'one thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(6548, 58101, 'fifty-eight thousand one hundred one');\nINSERT INTO t1 VALUES(6549, 25033, 'twenty-five thousand thirty-three');\nINSERT INTO t1 VALUES(6550, 80704, 'eighty thousand seven hundred four');\nINSERT INTO t1 VALUES(6551, 73679, 'seventy-three thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(6552, 28028, 'twenty-eight thousand twenty-eight');\nINSERT INTO t1 VALUES(6553, 51823, 'fifty-one thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(6554, 42387, 'forty-two thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(6555, 34599, 'thirty-four thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(6556, 16896, 'sixteen thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(6557, 77857, 'seventy-seven thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(6558, 83547, 'eighty-three thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(6559, 62749, 'sixty-two thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(6560, 99924, 'ninety-nine thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(6561, 82951, 'eighty-two thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(6562, 81022, 'eighty-one thousand twenty-two');\nINSERT INTO t1 VALUES(6563, 22793, 'twenty-two thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(6564, 63088, 'sixty-three thousand eighty-eight');\nINSERT INTO t1 VALUES(6565, 61980, 'sixty-one thousand nine hundred eighty');\nINSERT INTO t1 VALUES(6566, 96013, 'ninety-six thousand thirteen');\nINSERT INTO t1 VALUES(6567, 88398, 'eighty-eight thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(6568, 63388, 'sixty-three thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(6569, 9882, 'nine thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(6570, 41889, 'forty-one thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(6571, 59308, 'fifty-nine thousand three hundred eight');\nINSERT INTO t1 VALUES(6572, 27642, 'twenty-seven thousand six hundred forty-two');\nINSERT INTO t1 VALUES(6573, 26151, 'twenty-six thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(6574, 91991, 'ninety-one thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(6575, 95809, 'ninety-five thousand eight hundred nine');\nINSERT INTO t1 VALUES(6576, 75274, 'seventy-five thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(6577, 52402, 'fifty-two thousand four hundred two');\nINSERT INTO t1 VALUES(6578, 43439, 'forty-three thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(6579, 49921, 'forty-nine thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(6580, 93898, 'ninety-three thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(6581, 72237, 'seventy-two thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(6582, 38350, 'thirty-eight thousand three hundred fifty');\nINSERT INTO t1 VALUES(6583, 28211, 'twenty-eight thousand two hundred eleven');\nINSERT INTO t1 VALUES(6584, 99818, 'ninety-nine thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(6585, 55546, 'fifty-five thousand five hundred forty-six');\nINSERT INTO t1 VALUES(6586, 27559, 'twenty-seven thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(6587, 39119, 'thirty-nine thousand one hundred nineteen');\nINSERT INTO t1 VALUES(6588, 25306, 'twenty-five thousand three hundred six');\nINSERT INTO t1 VALUES(6589, 22652, 'twenty-two thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(6590, 15046, 'fifteen thousand forty-six');\nINSERT INTO t1 VALUES(6591, 93370, 'ninety-three thousand three hundred seventy');\nINSERT INTO t1 VALUES(6592, 7582, 'seven thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(6593, 78790, 'seventy-eight thousand seven hundred ninety');\nINSERT INTO t1 VALUES(6594, 61837, 'sixty-one thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(6595, 38786, 'thirty-eight thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(6596, 7510, 'seven thousand five hundred ten');\nINSERT INTO t1 VALUES(6597, 60252, 'sixty thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(6598, 10062, 'ten thousand sixty-two');\nINSERT INTO t1 VALUES(6599, 81328, 'eighty-one thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(6600, 1358, 'one thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(6601, 16956, 'sixteen thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(6602, 52383, 'fifty-two thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(6603, 15488, 'fifteen thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(6604, 1589, 'one thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(6605, 43239, 'forty-three thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(6606, 87270, 'eighty-seven thousand two hundred seventy');\nINSERT INTO t1 VALUES(6607, 39605, 'thirty-nine thousand six hundred five');\nINSERT INTO t1 VALUES(6608, 1163, 'one thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(6609, 35468, 'thirty-five thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(6610, 43003, 'forty-three thousand three');\nINSERT INTO t1 VALUES(6611, 76320, 'seventy-six thousand three hundred twenty');\nINSERT INTO t1 VALUES(6612, 37563, 'thirty-seven thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(6613, 77687, 'seventy-seven thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(6614, 23590, 'twenty-three thousand five hundred ninety');\nINSERT INTO t1 VALUES(6615, 50736, 'fifty thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(6616, 2835, 'two thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(6617, 90042, 'ninety thousand forty-two');\nINSERT INTO t1 VALUES(6618, 40747, 'forty thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(6619, 70187, 'seventy thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(6620, 44024, 'forty-four thousand twenty-four');\nINSERT INTO t1 VALUES(6621, 64027, 'sixty-four thousand twenty-seven');\nINSERT INTO t1 VALUES(6622, 73420, 'seventy-three thousand four hundred twenty');\nINSERT INTO t1 VALUES(6623, 76138, 'seventy-six thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(6624, 26516, 'twenty-six thousand five hundred sixteen');\nINSERT INTO t1 VALUES(6625, 35069, 'thirty-five thousand sixty-nine');\nINSERT INTO t1 VALUES(6626, 54356, 'fifty-four thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(6627, 78623, 'seventy-eight thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(6628, 31258, 'thirty-one thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(6629, 55607, 'fifty-five thousand six hundred seven');\nINSERT INTO t1 VALUES(6630, 42885, 'forty-two thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(6631, 80744, 'eighty thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(6632, 75472, 'seventy-five thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(6633, 4357, 'four thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(6634, 51745, 'fifty-one thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(6635, 2119, 'two thousand one hundred nineteen');\nINSERT INTO t1 VALUES(6636, 91843, 'ninety-one thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(6637, 77120, 'seventy-seven thousand one hundred twenty');\nINSERT INTO t1 VALUES(6638, 20656, 'twenty thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(6639, 83190, 'eighty-three thousand one hundred ninety');\nINSERT INTO t1 VALUES(6640, 58605, 'fifty-eight thousand six hundred five');\nINSERT INTO t1 VALUES(6641, 99800, 'ninety-nine thousand eight hundred');\nINSERT INTO t1 VALUES(6642, 22719, 'twenty-two thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(6643, 12605, 'twelve thousand six hundred five');\nINSERT INTO t1 VALUES(6644, 50509, 'fifty thousand five hundred nine');\nINSERT INTO t1 VALUES(6645, 59507, 'fifty-nine thousand five hundred seven');\nINSERT INTO t1 VALUES(6646, 12212, 'twelve thousand two hundred twelve');\nINSERT INTO t1 VALUES(6647, 95667, 'ninety-five thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(6648, 4977, 'four thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(6649, 84136, 'eighty-four thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(6650, 47118, 'forty-seven thousand one hundred eighteen');\nINSERT INTO t1 VALUES(6651, 8262, 'eight thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(6652, 94544, 'ninety-four thousand five hundred forty-four');\nINSERT INTO t1 VALUES(6653, 16261, 'sixteen thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(6654, 51769, 'fifty-one thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(6655, 94679, 'ninety-four thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(6656, 65739, 'sixty-five thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(6657, 29667, 'twenty-nine thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(6658, 76059, 'seventy-six thousand fifty-nine');\nINSERT INTO t1 VALUES(6659, 96960, 'ninety-six thousand nine hundred sixty');\nINSERT INTO t1 VALUES(6660, 37265, 'thirty-seven thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(6661, 1375, 'one thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(6662, 47146, 'forty-seven thousand one hundred forty-six');\nINSERT INTO t1 VALUES(6663, 81358, 'eighty-one thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(6664, 38558, 'thirty-eight thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(6665, 59850, 'fifty-nine thousand eight hundred fifty');\nINSERT INTO t1 VALUES(6666, 21563, 'twenty-one thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(6667, 14524, 'fourteen thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(6668, 4709, 'four thousand seven hundred nine');\nINSERT INTO t1 VALUES(6669, 47618, 'forty-seven thousand six hundred eighteen');\nINSERT INTO t1 VALUES(6670, 85344, 'eighty-five thousand three hundred forty-four');\nINSERT INTO t1 VALUES(6671, 79383, 'seventy-nine thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(6672, 13211, 'thirteen thousand two hundred eleven');\nINSERT INTO t1 VALUES(6673, 53671, 'fifty-three thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(6674, 97563, 'ninety-seven thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(6675, 74112, 'seventy-four thousand one hundred twelve');\nINSERT INTO t1 VALUES(6676, 35578, 'thirty-five thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(6677, 24187, 'twenty-four thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(6678, 7024, 'seven thousand twenty-four');\nINSERT INTO t1 VALUES(6679, 7580, 'seven thousand five hundred eighty');\nINSERT INTO t1 VALUES(6680, 56577, 'fifty-six thousand five hundred seventy-seven');\nINSERT INTO t1 VALUES(6681, 71019, 'seventy-one thousand nineteen');\nINSERT INTO t1 VALUES(6682, 10817, 'ten thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(6683, 94962, 'ninety-four thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(6684, 27166, 'twenty-seven thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(6685, 15055, 'fifteen thousand fifty-five');\nINSERT INTO t1 VALUES(6686, 46750, 'forty-six thousand seven hundred fifty');\nINSERT INTO t1 VALUES(6687, 90858, 'ninety thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(6688, 78813, 'seventy-eight thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(6689, 70094, 'seventy thousand ninety-four');\nINSERT INTO t1 VALUES(6690, 58568, 'fifty-eight thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(6691, 97629, 'ninety-seven thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(6692, 53349, 'fifty-three thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(6693, 43161, 'forty-three thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(6694, 80330, 'eighty thousand three hundred thirty');\nINSERT INTO t1 VALUES(6695, 58268, 'fifty-eight thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(6696, 53390, 'fifty-three thousand three hundred ninety');\nINSERT INTO t1 VALUES(6697, 75945, 'seventy-five thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(6698, 28482, 'twenty-eight thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(6699, 32204, 'thirty-two thousand two hundred four');\nINSERT INTO t1 VALUES(6700, 89729, 'eighty-nine thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(6701, 32177, 'thirty-two thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(6702, 58153, 'fifty-eight thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(6703, 10353, 'ten thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(6704, 1205, 'one thousand two hundred five');\nINSERT INTO t1 VALUES(6705, 24323, 'twenty-four thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(6706, 20289, 'twenty thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(6707, 19444, 'nineteen thousand four hundred forty-four');\nINSERT INTO t1 VALUES(6708, 54325, 'fifty-four thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(6709, 64779, 'sixty-four thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(6710, 43438, 'forty-three thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(6711, 91721, 'ninety-one thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(6712, 67641, 'sixty-seven thousand six hundred forty-one');\nINSERT INTO t1 VALUES(6713, 72716, 'seventy-two thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(6714, 22118, 'twenty-two thousand one hundred eighteen');\nINSERT INTO t1 VALUES(6715, 93224, 'ninety-three thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(6716, 13697, 'thirteen thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(6717, 54709, 'fifty-four thousand seven hundred nine');\nINSERT INTO t1 VALUES(6718, 82002, 'eighty-two thousand two');\nINSERT INTO t1 VALUES(6719, 30292, 'thirty thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(6720, 29501, 'twenty-nine thousand five hundred one');\nINSERT INTO t1 VALUES(6721, 44960, 'forty-four thousand nine hundred sixty');\nINSERT INTO t1 VALUES(6722, 51642, 'fifty-one thousand six hundred forty-two');\nINSERT INTO t1 VALUES(6723, 12618, 'twelve thousand six hundred eighteen');\nINSERT INTO t1 VALUES(6724, 6787, 'six thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(6725, 39158, 'thirty-nine thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(6726, 55538, 'fifty-five thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(6727, 30141, 'thirty thousand one hundred forty-one');\nINSERT INTO t1 VALUES(6728, 34252, 'thirty-four thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(6729, 24907, 'twenty-four thousand nine hundred seven');\nINSERT INTO t1 VALUES(6730, 49098, 'forty-nine thousand ninety-eight');\nINSERT INTO t1 VALUES(6731, 65423, 'sixty-five thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(6732, 78541, 'seventy-eight thousand five hundred forty-one');\nINSERT INTO t1 VALUES(6733, 17061, 'seventeen thousand sixty-one');\nINSERT INTO t1 VALUES(6734, 10479, 'ten thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(6735, 53892, 'fifty-three thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(6736, 72766, 'seventy-two thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(6737, 3554, 'three thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(6738, 69312, 'sixty-nine thousand three hundred twelve');\nINSERT INTO t1 VALUES(6739, 38210, 'thirty-eight thousand two hundred ten');\nINSERT INTO t1 VALUES(6740, 26569, 'twenty-six thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(6741, 31859, 'thirty-one thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(6742, 83701, 'eighty-three thousand seven hundred one');\nINSERT INTO t1 VALUES(6743, 37555, 'thirty-seven thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(6744, 29849, 'twenty-nine thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(6745, 23944, 'twenty-three thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(6746, 76995, 'seventy-six thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(6747, 99633, 'ninety-nine thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(6748, 30368, 'thirty thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(6749, 86748, 'eighty-six thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(6750, 98313, 'ninety-eight thousand three hundred thirteen');\nINSERT INTO t1 VALUES(6751, 68542, 'sixty-eight thousand five hundred forty-two');\nINSERT INTO t1 VALUES(6752, 72674, 'seventy-two thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(6753, 88948, 'eighty-eight thousand nine hundred forty-eight');\nINSERT INTO t1 VALUES(6754, 8125, 'eight thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(6755, 67538, 'sixty-seven thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(6756, 65630, 'sixty-five thousand six hundred thirty');\nINSERT INTO t1 VALUES(6757, 82634, 'eighty-two thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(6758, 22706, 'twenty-two thousand seven hundred six');\nINSERT INTO t1 VALUES(6759, 50630, 'fifty thousand six hundred thirty');\nINSERT INTO t1 VALUES(6760, 28110, 'twenty-eight thousand one hundred ten');\nINSERT INTO t1 VALUES(6761, 3211, 'three thousand two hundred eleven');\nINSERT INTO t1 VALUES(6762, 36122, 'thirty-six thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(6763, 71851, 'seventy-one thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(6764, 35323, 'thirty-five thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(6765, 15588, 'fifteen thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(6766, 87098, 'eighty-seven thousand ninety-eight');\nINSERT INTO t1 VALUES(6767, 57819, 'fifty-seven thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(6768, 55472, 'fifty-five thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(6769, 31226, 'thirty-one thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(6770, 24937, 'twenty-four thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(6771, 64166, 'sixty-four thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(6772, 7179, 'seven thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(6773, 96764, 'ninety-six thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(6774, 65799, 'sixty-five thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(6775, 21617, 'twenty-one thousand six hundred seventeen');\nINSERT INTO t1 VALUES(6776, 62459, 'sixty-two thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(6777, 51876, 'fifty-one thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(6778, 63688, 'sixty-three thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(6779, 6326, 'six thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(6780, 25839, 'twenty-five thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(6781, 45071, 'forty-five thousand seventy-one');\nINSERT INTO t1 VALUES(6782, 45887, 'forty-five thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(6783, 70383, 'seventy thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(6784, 89372, 'eighty-nine thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(6785, 42549, 'forty-two thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(6786, 95111, 'ninety-five thousand one hundred eleven');\nINSERT INTO t1 VALUES(6787, 46990, 'forty-six thousand nine hundred ninety');\nINSERT INTO t1 VALUES(6788, 64382, 'sixty-four thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(6789, 2110, 'two thousand one hundred ten');\nINSERT INTO t1 VALUES(6790, 821, 'eight hundred twenty-one');\nINSERT INTO t1 VALUES(6791, 12838, 'twelve thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(6792, 70215, 'seventy thousand two hundred fifteen');\nINSERT INTO t1 VALUES(6793, 37883, 'thirty-seven thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(6794, 36922, 'thirty-six thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(6795, 99574, 'ninety-nine thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(6796, 90968, 'ninety thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(6797, 89336, 'eighty-nine thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(6798, 87759, 'eighty-seven thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(6799, 78523, 'seventy-eight thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(6800, 78593, 'seventy-eight thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(6801, 17498, 'seventeen thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(6802, 61353, 'sixty-one thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(6803, 81414, 'eighty-one thousand four hundred fourteen');\nINSERT INTO t1 VALUES(6804, 22284, 'twenty-two thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(6805, 92279, 'ninety-two thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(6806, 85181, 'eighty-five thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(6807, 67754, 'sixty-seven thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(6808, 57097, 'fifty-seven thousand ninety-seven');\nINSERT INTO t1 VALUES(6809, 93930, 'ninety-three thousand nine hundred thirty');\nINSERT INTO t1 VALUES(6810, 21190, 'twenty-one thousand one hundred ninety');\nINSERT INTO t1 VALUES(6811, 95057, 'ninety-five thousand fifty-seven');\nINSERT INTO t1 VALUES(6812, 44563, 'forty-four thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(6813, 19216, 'nineteen thousand two hundred sixteen');\nINSERT INTO t1 VALUES(6814, 36215, 'thirty-six thousand two hundred fifteen');\nINSERT INTO t1 VALUES(6815, 40643, 'forty thousand six hundred forty-three');\nINSERT INTO t1 VALUES(6816, 11662, 'eleven thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(6817, 73384, 'seventy-three thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(6818, 92198, 'ninety-two thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(6819, 84971, 'eighty-four thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(6820, 48060, 'forty-eight thousand sixty');\nINSERT INTO t1 VALUES(6821, 49523, 'forty-nine thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(6822, 52716, 'fifty-two thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(6823, 59742, 'fifty-nine thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(6824, 39936, 'thirty-nine thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(6825, 28728, 'twenty-eight thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(6826, 87649, 'eighty-seven thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(6827, 32313, 'thirty-two thousand three hundred thirteen');\nINSERT INTO t1 VALUES(6828, 77819, 'seventy-seven thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(6829, 9094, 'nine thousand ninety-four');\nINSERT INTO t1 VALUES(6830, 78662, 'seventy-eight thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(6831, 6159, 'six thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(6832, 52796, 'fifty-two thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(6833, 12459, 'twelve thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(6834, 39884, 'thirty-nine thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(6835, 74910, 'seventy-four thousand nine hundred ten');\nINSERT INTO t1 VALUES(6836, 55808, 'fifty-five thousand eight hundred eight');\nINSERT INTO t1 VALUES(6837, 18408, 'eighteen thousand four hundred eight');\nINSERT INTO t1 VALUES(6838, 74842, 'seventy-four thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(6839, 73162, 'seventy-three thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(6840, 26433, 'twenty-six thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(6841, 630, 'six hundred thirty');\nINSERT INTO t1 VALUES(6842, 29287, 'twenty-nine thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(6843, 3033, 'three thousand thirty-three');\nINSERT INTO t1 VALUES(6844, 5537, 'five thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(6845, 11561, 'eleven thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(6846, 9436, 'nine thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(6847, 19405, 'nineteen thousand four hundred five');\nINSERT INTO t1 VALUES(6848, 85120, 'eighty-five thousand one hundred twenty');\nINSERT INTO t1 VALUES(6849, 6654, 'six thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(6850, 17880, 'seventeen thousand eight hundred eighty');\nINSERT INTO t1 VALUES(6851, 83326, 'eighty-three thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(6852, 58398, 'fifty-eight thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(6853, 71431, 'seventy-one thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(6854, 53333, 'fifty-three thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(6855, 8634, 'eight thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(6856, 50417, 'fifty thousand four hundred seventeen');\nINSERT INTO t1 VALUES(6857, 70080, 'seventy thousand eighty');\nINSERT INTO t1 VALUES(6858, 75388, 'seventy-five thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(6859, 44879, 'forty-four thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(6860, 93071, 'ninety-three thousand seventy-one');\nINSERT INTO t1 VALUES(6861, 84253, 'eighty-four thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(6862, 49375, 'forty-nine thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(6863, 98533, 'ninety-eight thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(6864, 37207, 'thirty-seven thousand two hundred seven');\nINSERT INTO t1 VALUES(6865, 90814, 'ninety thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(6866, 43139, 'forty-three thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(6867, 57896, 'fifty-seven thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(6868, 57613, 'fifty-seven thousand six hundred thirteen');\nINSERT INTO t1 VALUES(6869, 28841, 'twenty-eight thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(6870, 67039, 'sixty-seven thousand thirty-nine');\nINSERT INTO t1 VALUES(6871, 50296, 'fifty thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(6872, 51421, 'fifty-one thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(6873, 4360, 'four thousand three hundred sixty');\nINSERT INTO t1 VALUES(6874, 27162, 'twenty-seven thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(6875, 4951, 'four thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(6876, 66115, 'sixty-six thousand one hundred fifteen');\nINSERT INTO t1 VALUES(6877, 39134, 'thirty-nine thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(6878, 88194, 'eighty-eight thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(6879, 6052, 'six thousand fifty-two');\nINSERT INTO t1 VALUES(6880, 77924, 'seventy-seven thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(6881, 9569, 'nine thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(6882, 52064, 'fifty-two thousand sixty-four');\nINSERT INTO t1 VALUES(6883, 45777, 'forty-five thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(6884, 55166, 'fifty-five thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(6885, 72978, 'seventy-two thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(6886, 56114, 'fifty-six thousand one hundred fourteen');\nINSERT INTO t1 VALUES(6887, 27004, 'twenty-seven thousand four');\nINSERT INTO t1 VALUES(6888, 78789, 'seventy-eight thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(6889, 95061, 'ninety-five thousand sixty-one');\nINSERT INTO t1 VALUES(6890, 60819, 'sixty thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(6891, 39046, 'thirty-nine thousand forty-six');\nINSERT INTO t1 VALUES(6892, 9837, 'nine thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(6893, 42409, 'forty-two thousand four hundred nine');\nINSERT INTO t1 VALUES(6894, 73726, 'seventy-three thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(6895, 90259, 'ninety thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(6896, 24288, 'twenty-four thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(6897, 79446, 'seventy-nine thousand four hundred forty-six');\nINSERT INTO t1 VALUES(6898, 10047, 'ten thousand forty-seven');\nINSERT INTO t1 VALUES(6899, 27702, 'twenty-seven thousand seven hundred two');\nINSERT INTO t1 VALUES(6900, 90746, 'ninety thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(6901, 74781, 'seventy-four thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(6902, 81133, 'eighty-one thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(6903, 94386, 'ninety-four thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(6904, 68842, 'sixty-eight thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(6905, 41623, 'forty-one thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(6906, 33473, 'thirty-three thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(6907, 52116, 'fifty-two thousand one hundred sixteen');\nINSERT INTO t1 VALUES(6908, 39270, 'thirty-nine thousand two hundred seventy');\nINSERT INTO t1 VALUES(6909, 74631, 'seventy-four thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(6910, 74800, 'seventy-four thousand eight hundred');\nINSERT INTO t1 VALUES(6911, 53573, 'fifty-three thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(6912, 38899, 'thirty-eight thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(6913, 91968, 'ninety-one thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(6914, 19260, 'nineteen thousand two hundred sixty');\nINSERT INTO t1 VALUES(6915, 95021, 'ninety-five thousand twenty-one');\nINSERT INTO t1 VALUES(6916, 92229, 'ninety-two thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(6917, 98586, 'ninety-eight thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(6918, 15114, 'fifteen thousand one hundred fourteen');\nINSERT INTO t1 VALUES(6919, 18424, 'eighteen thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(6920, 33115, 'thirty-three thousand one hundred fifteen');\nINSERT INTO t1 VALUES(6921, 79149, 'seventy-nine thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(6922, 35707, 'thirty-five thousand seven hundred seven');\nINSERT INTO t1 VALUES(6923, 53181, 'fifty-three thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(6924, 55152, 'fifty-five thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(6925, 59889, 'fifty-nine thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(6926, 36371, 'thirty-six thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(6927, 34855, 'thirty-four thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(6928, 45769, 'forty-five thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(6929, 12207, 'twelve thousand two hundred seven');\nINSERT INTO t1 VALUES(6930, 48313, 'forty-eight thousand three hundred thirteen');\nINSERT INTO t1 VALUES(6931, 47830, 'forty-seven thousand eight hundred thirty');\nINSERT INTO t1 VALUES(6932, 36390, 'thirty-six thousand three hundred ninety');\nINSERT INTO t1 VALUES(6933, 33510, 'thirty-three thousand five hundred ten');\nINSERT INTO t1 VALUES(6934, 38816, 'thirty-eight thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(6935, 7221, 'seven thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(6936, 34183, 'thirty-four thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(6937, 30500, 'thirty thousand five hundred');\nINSERT INTO t1 VALUES(6938, 86099, 'eighty-six thousand ninety-nine');\nINSERT INTO t1 VALUES(6939, 92760, 'ninety-two thousand seven hundred sixty');\nINSERT INTO t1 VALUES(6940, 54986, 'fifty-four thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(6941, 86065, 'eighty-six thousand sixty-five');\nINSERT INTO t1 VALUES(6942, 65675, 'sixty-five thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(6943, 47637, 'forty-seven thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(6944, 95916, 'ninety-five thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(6945, 82599, 'eighty-two thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(6946, 87124, 'eighty-seven thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(6947, 47867, 'forty-seven thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(6948, 68932, 'sixty-eight thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(6949, 99060, 'ninety-nine thousand sixty');\nINSERT INTO t1 VALUES(6950, 8079, 'eight thousand seventy-nine');\nINSERT INTO t1 VALUES(6951, 98688, 'ninety-eight thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(6952, 23264, 'twenty-three thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(6953, 21861, 'twenty-one thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(6954, 15723, 'fifteen thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(6955, 54246, 'fifty-four thousand two hundred forty-six');\nINSERT INTO t1 VALUES(6956, 4449, 'four thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(6957, 43330, 'forty-three thousand three hundred thirty');\nINSERT INTO t1 VALUES(6958, 55037, 'fifty-five thousand thirty-seven');\nINSERT INTO t1 VALUES(6959, 62970, 'sixty-two thousand nine hundred seventy');\nINSERT INTO t1 VALUES(6960, 18791, 'eighteen thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(6961, 90982, 'ninety thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(6962, 98414, 'ninety-eight thousand four hundred fourteen');\nINSERT INTO t1 VALUES(6963, 74839, 'seventy-four thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(6964, 25538, 'twenty-five thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(6965, 49139, 'forty-nine thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(6966, 61282, 'sixty-one thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(6967, 20645, 'twenty thousand six hundred forty-five');\nINSERT INTO t1 VALUES(6968, 68356, 'sixty-eight thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(6969, 46392, 'forty-six thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(6970, 4648, 'four thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(6971, 93824, 'ninety-three thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(6972, 95668, 'ninety-five thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(6973, 2198, 'two thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(6974, 82064, 'eighty-two thousand sixty-four');\nINSERT INTO t1 VALUES(6975, 37286, 'thirty-seven thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(6976, 121, 'one hundred twenty-one');\nINSERT INTO t1 VALUES(6977, 2019, 'two thousand nineteen');\nINSERT INTO t1 VALUES(6978, 42863, 'forty-two thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(6979, 71907, 'seventy-one thousand nine hundred seven');\nINSERT INTO t1 VALUES(6980, 19172, 'nineteen thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(6981, 7343, 'seven thousand three hundred forty-three');\nINSERT INTO t1 VALUES(6982, 85226, 'eighty-five thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(6983, 73500, 'seventy-three thousand five hundred');\nINSERT INTO t1 VALUES(6984, 18428, 'eighteen thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(6985, 88879, 'eighty-eight thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(6986, 28151, 'twenty-eight thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(6987, 55671, 'fifty-five thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(6988, 32604, 'thirty-two thousand six hundred four');\nINSERT INTO t1 VALUES(6989, 22021, 'twenty-two thousand twenty-one');\nINSERT INTO t1 VALUES(6990, 84456, 'eighty-four thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(6991, 88354, 'eighty-eight thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(6992, 41882, 'forty-one thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(6993, 55635, 'fifty-five thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(6994, 26020, 'twenty-six thousand twenty');\nINSERT INTO t1 VALUES(6995, 64164, 'sixty-four thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(6996, 9256, 'nine thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(6997, 26108, 'twenty-six thousand one hundred eight');\nINSERT INTO t1 VALUES(6998, 35526, 'thirty-five thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(6999, 23377, 'twenty-three thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(7000, 43242, 'forty-three thousand two hundred forty-two');\nINSERT INTO t1 VALUES(7001, 89326, 'eighty-nine thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(7002, 15986, 'fifteen thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(7003, 39220, 'thirty-nine thousand two hundred twenty');\nINSERT INTO t1 VALUES(7004, 48765, 'forty-eight thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(7005, 61844, 'sixty-one thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(7006, 25492, 'twenty-five thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(7007, 10653, 'ten thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(7008, 15146, 'fifteen thousand one hundred forty-six');\nINSERT INTO t1 VALUES(7009, 71673, 'seventy-one thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(7010, 43122, 'forty-three thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(7011, 69009, 'sixty-nine thousand nine');\nINSERT INTO t1 VALUES(7012, 45939, 'forty-five thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(7013, 64018, 'sixty-four thousand eighteen');\nINSERT INTO t1 VALUES(7014, 52343, 'fifty-two thousand three hundred forty-three');\nINSERT INTO t1 VALUES(7015, 29574, 'twenty-nine thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(7016, 42764, 'forty-two thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(7017, 9496, 'nine thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(7018, 93770, 'ninety-three thousand seven hundred seventy');\nINSERT INTO t1 VALUES(7019, 99334, 'ninety-nine thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(7020, 45434, 'forty-five thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(7021, 73681, 'seventy-three thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(7022, 40642, 'forty thousand six hundred forty-two');\nINSERT INTO t1 VALUES(7023, 73020, 'seventy-three thousand twenty');\nINSERT INTO t1 VALUES(7024, 79617, 'seventy-nine thousand six hundred seventeen');\nINSERT INTO t1 VALUES(7025, 32215, 'thirty-two thousand two hundred fifteen');\nINSERT INTO t1 VALUES(7026, 74617, 'seventy-four thousand six hundred seventeen');\nINSERT INTO t1 VALUES(7027, 12934, 'twelve thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(7028, 31779, 'thirty-one thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(7029, 46623, 'forty-six thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(7030, 3312, 'three thousand three hundred twelve');\nINSERT INTO t1 VALUES(7031, 79775, 'seventy-nine thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(7032, 84027, 'eighty-four thousand twenty-seven');\nINSERT INTO t1 VALUES(7033, 92004, 'ninety-two thousand four');\nINSERT INTO t1 VALUES(7034, 14671, 'fourteen thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(7035, 68045, 'sixty-eight thousand forty-five');\nINSERT INTO t1 VALUES(7036, 44043, 'forty-four thousand forty-three');\nINSERT INTO t1 VALUES(7037, 10474, 'ten thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(7038, 95447, 'ninety-five thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(7039, 28801, 'twenty-eight thousand eight hundred one');\nINSERT INTO t1 VALUES(7040, 179, 'one hundred seventy-nine');\nINSERT INTO t1 VALUES(7041, 67562, 'sixty-seven thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(7042, 80776, 'eighty thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(7043, 69712, 'sixty-nine thousand seven hundred twelve');\nINSERT INTO t1 VALUES(7044, 75407, 'seventy-five thousand four hundred seven');\nINSERT INTO t1 VALUES(7045, 46166, 'forty-six thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(7046, 58588, 'fifty-eight thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(7047, 43718, 'forty-three thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(7048, 30121, 'thirty thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(7049, 81710, 'eighty-one thousand seven hundred ten');\nINSERT INTO t1 VALUES(7050, 44905, 'forty-four thousand nine hundred five');\nINSERT INTO t1 VALUES(7051, 42136, 'forty-two thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(7052, 68554, 'sixty-eight thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(7053, 34161, 'thirty-four thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(7054, 36953, 'thirty-six thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(7055, 90564, 'ninety thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(7056, 43198, 'forty-three thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(7057, 30675, 'thirty thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(7058, 60912, 'sixty thousand nine hundred twelve');\nINSERT INTO t1 VALUES(7059, 79521, 'seventy-nine thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(7060, 66485, 'sixty-six thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(7061, 50561, 'fifty thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(7062, 47433, 'forty-seven thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(7063, 33569, 'thirty-three thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(7064, 19729, 'nineteen thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(7065, 27836, 'twenty-seven thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(7066, 94287, 'ninety-four thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(7067, 23115, 'twenty-three thousand one hundred fifteen');\nINSERT INTO t1 VALUES(7068, 87840, 'eighty-seven thousand eight hundred forty');\nINSERT INTO t1 VALUES(7069, 34100, 'thirty-four thousand one hundred');\nINSERT INTO t1 VALUES(7070, 34332, 'thirty-four thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(7071, 38941, 'thirty-eight thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(7072, 91367, 'ninety-one thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(7073, 53933, 'fifty-three thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(7074, 48223, 'forty-eight thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(7075, 55787, 'fifty-five thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(7076, 94453, 'ninety-four thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(7077, 82216, 'eighty-two thousand two hundred sixteen');\nINSERT INTO t1 VALUES(7078, 17912, 'seventeen thousand nine hundred twelve');\nINSERT INTO t1 VALUES(7079, 13616, 'thirteen thousand six hundred sixteen');\nINSERT INTO t1 VALUES(7080, 46718, 'forty-six thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(7081, 60695, 'sixty thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(7082, 26089, 'twenty-six thousand eighty-nine');\nINSERT INTO t1 VALUES(7083, 7672, 'seven thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(7084, 27994, 'twenty-seven thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(7085, 62653, 'sixty-two thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(7086, 60597, 'sixty thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(7087, 62851, 'sixty-two thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(7088, 25918, 'twenty-five thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(7089, 13109, 'thirteen thousand one hundred nine');\nINSERT INTO t1 VALUES(7090, 16308, 'sixteen thousand three hundred eight');\nINSERT INTO t1 VALUES(7091, 73261, 'seventy-three thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(7092, 80907, 'eighty thousand nine hundred seven');\nINSERT INTO t1 VALUES(7093, 13550, 'thirteen thousand five hundred fifty');\nINSERT INTO t1 VALUES(7094, 73770, 'seventy-three thousand seven hundred seventy');\nINSERT INTO t1 VALUES(7095, 99471, 'ninety-nine thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(7096, 50033, 'fifty thousand thirty-three');\nINSERT INTO t1 VALUES(7097, 59912, 'fifty-nine thousand nine hundred twelve');\nINSERT INTO t1 VALUES(7098, 98932, 'ninety-eight thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(7099, 63933, 'sixty-three thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(7100, 26495, 'twenty-six thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(7101, 8686, 'eight thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(7102, 77159, 'seventy-seven thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(7103, 79891, 'seventy-nine thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(7104, 79883, 'seventy-nine thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(7105, 56301, 'fifty-six thousand three hundred one');\nINSERT INTO t1 VALUES(7106, 18543, 'eighteen thousand five hundred forty-three');\nINSERT INTO t1 VALUES(7107, 76106, 'seventy-six thousand one hundred six');\nINSERT INTO t1 VALUES(7108, 8420, 'eight thousand four hundred twenty');\nINSERT INTO t1 VALUES(7109, 65310, 'sixty-five thousand three hundred ten');\nINSERT INTO t1 VALUES(7110, 86316, 'eighty-six thousand three hundred sixteen');\nINSERT INTO t1 VALUES(7111, 80414, 'eighty thousand four hundred fourteen');\nINSERT INTO t1 VALUES(7112, 5593, 'five thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(7113, 79955, 'seventy-nine thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(7114, 70454, 'seventy thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(7115, 31408, 'thirty-one thousand four hundred eight');\nINSERT INTO t1 VALUES(7116, 35948, 'thirty-five thousand nine hundred forty-eight');\nINSERT INTO t1 VALUES(7117, 62936, 'sixty-two thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(7118, 17335, 'seventeen thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(7119, 11683, 'eleven thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(7120, 66028, 'sixty-six thousand twenty-eight');\nINSERT INTO t1 VALUES(7121, 89986, 'eighty-nine thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(7122, 56224, 'fifty-six thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(7123, 73077, 'seventy-three thousand seventy-seven');\nINSERT INTO t1 VALUES(7124, 68408, 'sixty-eight thousand four hundred eight');\nINSERT INTO t1 VALUES(7125, 89996, 'eighty-nine thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(7126, 58081, 'fifty-eight thousand eighty-one');\nINSERT INTO t1 VALUES(7127, 29390, 'twenty-nine thousand three hundred ninety');\nINSERT INTO t1 VALUES(7128, 7504, 'seven thousand five hundred four');\nINSERT INTO t1 VALUES(7129, 62857, 'sixty-two thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(7130, 46988, 'forty-six thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(7131, 86728, 'eighty-six thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(7132, 35805, 'thirty-five thousand eight hundred five');\nINSERT INTO t1 VALUES(7133, 11333, 'eleven thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(7134, 9987, 'nine thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(7135, 84633, 'eighty-four thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(7136, 50649, 'fifty thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(7137, 6508, 'six thousand five hundred eight');\nINSERT INTO t1 VALUES(7138, 2137, 'two thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(7139, 33917, 'thirty-three thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(7140, 38405, 'thirty-eight thousand four hundred five');\nINSERT INTO t1 VALUES(7141, 12813, 'twelve thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(7142, 76439, 'seventy-six thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(7143, 16410, 'sixteen thousand four hundred ten');\nINSERT INTO t1 VALUES(7144, 20476, 'twenty thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(7145, 71596, 'seventy-one thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(7146, 88474, 'eighty-eight thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(7147, 45988, 'forty-five thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(7148, 705, 'seven hundred five');\nINSERT INTO t1 VALUES(7149, 35623, 'thirty-five thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(7150, 18974, 'eighteen thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(7151, 31458, 'thirty-one thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(7152, 14888, 'fourteen thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(7153, 17587, 'seventeen thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(7154, 27595, 'twenty-seven thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(7155, 8106, 'eight thousand one hundred six');\nINSERT INTO t1 VALUES(7156, 13240, 'thirteen thousand two hundred forty');\nINSERT INTO t1 VALUES(7157, 55504, 'fifty-five thousand five hundred four');\nINSERT INTO t1 VALUES(7158, 53717, 'fifty-three thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(7159, 74827, 'seventy-four thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(7160, 81954, 'eighty-one thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(7161, 83333, 'eighty-three thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(7162, 95068, 'ninety-five thousand sixty-eight');\nINSERT INTO t1 VALUES(7163, 14466, 'fourteen thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(7164, 65831, 'sixty-five thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(7165, 94966, 'ninety-four thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(7166, 47802, 'forty-seven thousand eight hundred two');\nINSERT INTO t1 VALUES(7167, 53228, 'fifty-three thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(7168, 81156, 'eighty-one thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(7169, 95883, 'ninety-five thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(7170, 26167, 'twenty-six thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(7171, 99575, 'ninety-nine thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(7172, 61617, 'sixty-one thousand six hundred seventeen');\nINSERT INTO t1 VALUES(7173, 21467, 'twenty-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(7174, 53907, 'fifty-three thousand nine hundred seven');\nINSERT INTO t1 VALUES(7175, 17209, 'seventeen thousand two hundred nine');\nINSERT INTO t1 VALUES(7176, 56077, 'fifty-six thousand seventy-seven');\nINSERT INTO t1 VALUES(7177, 41600, 'forty-one thousand six hundred');\nINSERT INTO t1 VALUES(7178, 74434, 'seventy-four thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(7179, 74927, 'seventy-four thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(7180, 23701, 'twenty-three thousand seven hundred one');\nINSERT INTO t1 VALUES(7181, 18960, 'eighteen thousand nine hundred sixty');\nINSERT INTO t1 VALUES(7182, 60417, 'sixty thousand four hundred seventeen');\nINSERT INTO t1 VALUES(7183, 21258, 'twenty-one thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(7184, 77405, 'seventy-seven thousand four hundred five');\nINSERT INTO t1 VALUES(7185, 93159, 'ninety-three thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(7186, 6331, 'six thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(7187, 62302, 'sixty-two thousand three hundred two');\nINSERT INTO t1 VALUES(7188, 19954, 'nineteen thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(7189, 71974, 'seventy-one thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(7190, 5855, 'five thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(7191, 7850, 'seven thousand eight hundred fifty');\nINSERT INTO t1 VALUES(7192, 97764, 'ninety-seven thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(7193, 83222, 'eighty-three thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(7194, 99708, 'ninety-nine thousand seven hundred eight');\nINSERT INTO t1 VALUES(7195, 79723, 'seventy-nine thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(7196, 73922, 'seventy-three thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(7197, 81158, 'eighty-one thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(7198, 68513, 'sixty-eight thousand five hundred thirteen');\nINSERT INTO t1 VALUES(7199, 31779, 'thirty-one thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(7200, 62374, 'sixty-two thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(7201, 29750, 'twenty-nine thousand seven hundred fifty');\nINSERT INTO t1 VALUES(7202, 26112, 'twenty-six thousand one hundred twelve');\nINSERT INTO t1 VALUES(7203, 42054, 'forty-two thousand fifty-four');\nINSERT INTO t1 VALUES(7204, 49429, 'forty-nine thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(7205, 54725, 'fifty-four thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(7206, 62162, 'sixty-two thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(7207, 79014, 'seventy-nine thousand fourteen');\nINSERT INTO t1 VALUES(7208, 62519, 'sixty-two thousand five hundred nineteen');\nINSERT INTO t1 VALUES(7209, 55054, 'fifty-five thousand fifty-four');\nINSERT INTO t1 VALUES(7210, 45171, 'forty-five thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(7211, 18103, 'eighteen thousand one hundred three');\nINSERT INTO t1 VALUES(7212, 60978, 'sixty thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(7213, 41846, 'forty-one thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(7214, 62113, 'sixty-two thousand one hundred thirteen');\nINSERT INTO t1 VALUES(7215, 54430, 'fifty-four thousand four hundred thirty');\nINSERT INTO t1 VALUES(7216, 7644, 'seven thousand six hundred forty-four');\nINSERT INTO t1 VALUES(7217, 15536, 'fifteen thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(7218, 36538, 'thirty-six thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(7219, 16581, 'sixteen thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(7220, 49906, 'forty-nine thousand nine hundred six');\nINSERT INTO t1 VALUES(7221, 52131, 'fifty-two thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(7222, 7873, 'seven thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(7223, 25798, 'twenty-five thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(7224, 18312, 'eighteen thousand three hundred twelve');\nINSERT INTO t1 VALUES(7225, 21322, 'twenty-one thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(7226, 47391, 'forty-seven thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(7227, 8472, 'eight thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(7228, 2555, 'two thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(7229, 13930, 'thirteen thousand nine hundred thirty');\nINSERT INTO t1 VALUES(7230, 84289, 'eighty-four thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(7231, 83741, 'eighty-three thousand seven hundred forty-one');\nINSERT INTO t1 VALUES(7232, 84653, 'eighty-four thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(7233, 42671, 'forty-two thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(7234, 672, 'six hundred seventy-two');\nINSERT INTO t1 VALUES(7235, 94579, 'ninety-four thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(7236, 69020, 'sixty-nine thousand twenty');\nINSERT INTO t1 VALUES(7237, 95586, 'ninety-five thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(7238, 6851, 'six thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(7239, 30607, 'thirty thousand six hundred seven');\nINSERT INTO t1 VALUES(7240, 46380, 'forty-six thousand three hundred eighty');\nINSERT INTO t1 VALUES(7241, 50651, 'fifty thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(7242, 6083, 'six thousand eighty-three');\nINSERT INTO t1 VALUES(7243, 77603, 'seventy-seven thousand six hundred three');\nINSERT INTO t1 VALUES(7244, 76572, 'seventy-six thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(7245, 8688, 'eight thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(7246, 82117, 'eighty-two thousand one hundred seventeen');\nINSERT INTO t1 VALUES(7247, 17768, 'seventeen thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(7248, 49806, 'forty-nine thousand eight hundred six');\nINSERT INTO t1 VALUES(7249, 51631, 'fifty-one thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(7250, 24773, 'twenty-four thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(7251, 57567, 'fifty-seven thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(7252, 70557, 'seventy thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(7253, 63932, 'sixty-three thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(7254, 51336, 'fifty-one thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(7255, 72683, 'seventy-two thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(7256, 1635, 'one thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(7257, 50423, 'fifty thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(7258, 80955, 'eighty thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(7259, 96432, 'ninety-six thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(7260, 95473, 'ninety-five thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(7261, 93594, 'ninety-three thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(7262, 58481, 'fifty-eight thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(7263, 1007, 'one thousand seven');\nINSERT INTO t1 VALUES(7264, 18550, 'eighteen thousand five hundred fifty');\nINSERT INTO t1 VALUES(7265, 87364, 'eighty-seven thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(7266, 35999, 'thirty-five thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(7267, 6634, 'six thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(7268, 56120, 'fifty-six thousand one hundred twenty');\nINSERT INTO t1 VALUES(7269, 79273, 'seventy-nine thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(7270, 56007, 'fifty-six thousand seven');\nINSERT INTO t1 VALUES(7271, 5408, 'five thousand four hundred eight');\nINSERT INTO t1 VALUES(7272, 84537, 'eighty-four thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(7273, 90179, 'ninety thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(7274, 85796, 'eighty-five thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(7275, 87525, 'eighty-seven thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(7276, 46263, 'forty-six thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(7277, 94421, 'ninety-four thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(7278, 56210, 'fifty-six thousand two hundred ten');\nINSERT INTO t1 VALUES(7279, 25962, 'twenty-five thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(7280, 45198, 'forty-five thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(7281, 92526, 'ninety-two thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(7282, 28067, 'twenty-eight thousand sixty-seven');\nINSERT INTO t1 VALUES(7283, 30228, 'thirty thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(7284, 55532, 'fifty-five thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(7285, 48123, 'forty-eight thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(7286, 79431, 'seventy-nine thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(7287, 33769, 'thirty-three thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(7288, 77785, 'seventy-seven thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(7289, 23842, 'twenty-three thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(7290, 23223, 'twenty-three thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(7291, 33242, 'thirty-three thousand two hundred forty-two');\nINSERT INTO t1 VALUES(7292, 17052, 'seventeen thousand fifty-two');\nINSERT INTO t1 VALUES(7293, 2660, 'two thousand six hundred sixty');\nINSERT INTO t1 VALUES(7294, 15976, 'fifteen thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(7295, 24588, 'twenty-four thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(7296, 75667, 'seventy-five thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(7297, 88516, 'eighty-eight thousand five hundred sixteen');\nINSERT INTO t1 VALUES(7298, 54849, 'fifty-four thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(7299, 84588, 'eighty-four thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(7300, 82111, 'eighty-two thousand one hundred eleven');\nINSERT INTO t1 VALUES(7301, 89035, 'eighty-nine thousand thirty-five');\nINSERT INTO t1 VALUES(7302, 17230, 'seventeen thousand two hundred thirty');\nINSERT INTO t1 VALUES(7303, 70949, 'seventy thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(7304, 61705, 'sixty-one thousand seven hundred five');\nINSERT INTO t1 VALUES(7305, 96689, 'ninety-six thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(7306, 60559, 'sixty thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(7307, 69191, 'sixty-nine thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(7308, 40483, 'forty thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(7309, 16053, 'sixteen thousand fifty-three');\nINSERT INTO t1 VALUES(7310, 85466, 'eighty-five thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(7311, 78546, 'seventy-eight thousand five hundred forty-six');\nINSERT INTO t1 VALUES(7312, 32731, 'thirty-two thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(7313, 25143, 'twenty-five thousand one hundred forty-three');\nINSERT INTO t1 VALUES(7314, 17306, 'seventeen thousand three hundred six');\nINSERT INTO t1 VALUES(7315, 54136, 'fifty-four thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(7316, 90275, 'ninety thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(7317, 4848, 'four thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(7318, 17630, 'seventeen thousand six hundred thirty');\nINSERT INTO t1 VALUES(7319, 56699, 'fifty-six thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(7320, 46570, 'forty-six thousand five hundred seventy');\nINSERT INTO t1 VALUES(7321, 53933, 'fifty-three thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(7322, 32684, 'thirty-two thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(7323, 24280, 'twenty-four thousand two hundred eighty');\nINSERT INTO t1 VALUES(7324, 76206, 'seventy-six thousand two hundred six');\nINSERT INTO t1 VALUES(7325, 66327, 'sixty-six thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(7326, 64029, 'sixty-four thousand twenty-nine');\nINSERT INTO t1 VALUES(7327, 55156, 'fifty-five thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(7328, 43786, 'forty-three thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(7329, 44238, 'forty-four thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(7330, 48915, 'forty-eight thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(7331, 50677, 'fifty thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(7332, 87305, 'eighty-seven thousand three hundred five');\nINSERT INTO t1 VALUES(7333, 93253, 'ninety-three thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(7334, 86313, 'eighty-six thousand three hundred thirteen');\nINSERT INTO t1 VALUES(7335, 38673, 'thirty-eight thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(7336, 61736, 'sixty-one thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(7337, 65243, 'sixty-five thousand two hundred forty-three');\nINSERT INTO t1 VALUES(7338, 32982, 'thirty-two thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(7339, 91285, 'ninety-one thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(7340, 50713, 'fifty thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(7341, 7280, 'seven thousand two hundred eighty');\nINSERT INTO t1 VALUES(7342, 99273, 'ninety-nine thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(7343, 6018, 'six thousand eighteen');\nINSERT INTO t1 VALUES(7344, 99, 'ninety-nine');\nINSERT INTO t1 VALUES(7345, 62094, 'sixty-two thousand ninety-four');\nINSERT INTO t1 VALUES(7346, 13079, 'thirteen thousand seventy-nine');\nINSERT INTO t1 VALUES(7347, 22284, 'twenty-two thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(7348, 42082, 'forty-two thousand eighty-two');\nINSERT INTO t1 VALUES(7349, 64061, 'sixty-four thousand sixty-one');\nINSERT INTO t1 VALUES(7350, 11897, 'eleven thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(7351, 35388, 'thirty-five thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(7352, 11829, 'eleven thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(7353, 36809, 'thirty-six thousand eight hundred nine');\nINSERT INTO t1 VALUES(7354, 65539, 'sixty-five thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(7355, 79054, 'seventy-nine thousand fifty-four');\nINSERT INTO t1 VALUES(7356, 44317, 'forty-four thousand three hundred seventeen');\nINSERT INTO t1 VALUES(7357, 24825, 'twenty-four thousand eight hundred twenty-five');\nINSERT INTO t1 VALUES(7358, 62143, 'sixty-two thousand one hundred forty-three');\nINSERT INTO t1 VALUES(7359, 83150, 'eighty-three thousand one hundred fifty');\nINSERT INTO t1 VALUES(7360, 49689, 'forty-nine thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(7361, 98022, 'ninety-eight thousand twenty-two');\nINSERT INTO t1 VALUES(7362, 6739, 'six thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(7363, 87872, 'eighty-seven thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(7364, 57346, 'fifty-seven thousand three hundred forty-six');\nINSERT INTO t1 VALUES(7365, 49761, 'forty-nine thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(7366, 62, 'sixty-two');\nINSERT INTO t1 VALUES(7367, 33337, 'thirty-three thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(7368, 99440, 'ninety-nine thousand four hundred forty');\nINSERT INTO t1 VALUES(7369, 65844, 'sixty-five thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(7370, 13449, 'thirteen thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(7371, 7289, 'seven thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(7372, 68549, 'sixty-eight thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(7373, 55423, 'fifty-five thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(7374, 17079, 'seventeen thousand seventy-nine');\nINSERT INTO t1 VALUES(7375, 68338, 'sixty-eight thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(7376, 71234, 'seventy-one thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(7377, 46659, 'forty-six thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(7378, 5933, 'five thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(7379, 26086, 'twenty-six thousand eighty-six');\nINSERT INTO t1 VALUES(7380, 91029, 'ninety-one thousand twenty-nine');\nINSERT INTO t1 VALUES(7381, 24920, 'twenty-four thousand nine hundred twenty');\nINSERT INTO t1 VALUES(7382, 83583, 'eighty-three thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(7383, 38731, 'thirty-eight thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(7384, 30317, 'thirty thousand three hundred seventeen');\nINSERT INTO t1 VALUES(7385, 48466, 'forty-eight thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(7386, 80255, 'eighty thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(7387, 80871, 'eighty thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(7388, 50007, 'fifty thousand seven');\nINSERT INTO t1 VALUES(7389, 55429, 'fifty-five thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(7390, 21518, 'twenty-one thousand five hundred eighteen');\nINSERT INTO t1 VALUES(7391, 73480, 'seventy-three thousand four hundred eighty');\nINSERT INTO t1 VALUES(7392, 70286, 'seventy thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(7393, 22061, 'twenty-two thousand sixty-one');\nINSERT INTO t1 VALUES(7394, 75626, 'seventy-five thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(7395, 17842, 'seventeen thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(7396, 93107, 'ninety-three thousand one hundred seven');\nINSERT INTO t1 VALUES(7397, 93105, 'ninety-three thousand one hundred five');\nINSERT INTO t1 VALUES(7398, 79558, 'seventy-nine thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(7399, 17672, 'seventeen thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(7400, 45485, 'forty-five thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(7401, 14871, 'fourteen thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(7402, 39590, 'thirty-nine thousand five hundred ninety');\nINSERT INTO t1 VALUES(7403, 40501, 'forty thousand five hundred one');\nINSERT INTO t1 VALUES(7404, 82286, 'eighty-two thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(7405, 47086, 'forty-seven thousand eighty-six');\nINSERT INTO t1 VALUES(7406, 85673, 'eighty-five thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(7407, 50086, 'fifty thousand eighty-six');\nINSERT INTO t1 VALUES(7408, 76306, 'seventy-six thousand three hundred six');\nINSERT INTO t1 VALUES(7409, 98444, 'ninety-eight thousand four hundred forty-four');\nINSERT INTO t1 VALUES(7410, 85812, 'eighty-five thousand eight hundred twelve');\nINSERT INTO t1 VALUES(7411, 83769, 'eighty-three thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(7412, 54456, 'fifty-four thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(7413, 35560, 'thirty-five thousand five hundred sixty');\nINSERT INTO t1 VALUES(7414, 77697, 'seventy-seven thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(7415, 58966, 'fifty-eight thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(7416, 56609, 'fifty-six thousand six hundred nine');\nINSERT INTO t1 VALUES(7417, 13976, 'thirteen thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(7418, 64392, 'sixty-four thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(7419, 59241, 'fifty-nine thousand two hundred forty-one');\nINSERT INTO t1 VALUES(7420, 62010, 'sixty-two thousand ten');\nINSERT INTO t1 VALUES(7421, 44949, 'forty-four thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(7422, 76879, 'seventy-six thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(7423, 86988, 'eighty-six thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(7424, 64215, 'sixty-four thousand two hundred fifteen');\nINSERT INTO t1 VALUES(7425, 15242, 'fifteen thousand two hundred forty-two');\nINSERT INTO t1 VALUES(7426, 25939, 'twenty-five thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(7427, 66042, 'sixty-six thousand forty-two');\nINSERT INTO t1 VALUES(7428, 74761, 'seventy-four thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(7429, 69746, 'sixty-nine thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(7430, 28761, 'twenty-eight thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(7431, 11255, 'eleven thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(7432, 94283, 'ninety-four thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(7433, 10442, 'ten thousand four hundred forty-two');\nINSERT INTO t1 VALUES(7434, 44615, 'forty-four thousand six hundred fifteen');\nINSERT INTO t1 VALUES(7435, 65623, 'sixty-five thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(7436, 72292, 'seventy-two thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(7437, 27106, 'twenty-seven thousand one hundred six');\nINSERT INTO t1 VALUES(7438, 35067, 'thirty-five thousand sixty-seven');\nINSERT INTO t1 VALUES(7439, 86790, 'eighty-six thousand seven hundred ninety');\nINSERT INTO t1 VALUES(7440, 19325, 'nineteen thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(7441, 97927, 'ninety-seven thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(7442, 62677, 'sixty-two thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(7443, 59657, 'fifty-nine thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(7444, 59713, 'fifty-nine thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(7445, 11810, 'eleven thousand eight hundred ten');\nINSERT INTO t1 VALUES(7446, 14985, 'fourteen thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(7447, 36893, 'thirty-six thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(7448, 4346, 'four thousand three hundred forty-six');\nINSERT INTO t1 VALUES(7449, 57859, 'fifty-seven thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(7450, 7536, 'seven thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(7451, 38671, 'thirty-eight thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(7452, 66160, 'sixty-six thousand one hundred sixty');\nINSERT INTO t1 VALUES(7453, 21122, 'twenty-one thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(7454, 35073, 'thirty-five thousand seventy-three');\nINSERT INTO t1 VALUES(7455, 5510, 'five thousand five hundred ten');\nINSERT INTO t1 VALUES(7456, 33410, 'thirty-three thousand four hundred ten');\nINSERT INTO t1 VALUES(7457, 38101, 'thirty-eight thousand one hundred one');\nINSERT INTO t1 VALUES(7458, 311, 'three hundred eleven');\nINSERT INTO t1 VALUES(7459, 74692, 'seventy-four thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(7460, 45472, 'forty-five thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(7461, 40478, 'forty thousand four hundred seventy-eight');\nINSERT INTO t1 VALUES(7462, 12615, 'twelve thousand six hundred fifteen');\nINSERT INTO t1 VALUES(7463, 82513, 'eighty-two thousand five hundred thirteen');\nINSERT INTO t1 VALUES(7464, 28187, 'twenty-eight thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(7465, 57512, 'fifty-seven thousand five hundred twelve');\nINSERT INTO t1 VALUES(7466, 67035, 'sixty-seven thousand thirty-five');\nINSERT INTO t1 VALUES(7467, 29218, 'twenty-nine thousand two hundred eighteen');\nINSERT INTO t1 VALUES(7468, 95584, 'ninety-five thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(7469, 90874, 'ninety thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(7470, 3045, 'three thousand forty-five');\nINSERT INTO t1 VALUES(7471, 57104, 'fifty-seven thousand one hundred four');\nINSERT INTO t1 VALUES(7472, 67212, 'sixty-seven thousand two hundred twelve');\nINSERT INTO t1 VALUES(7473, 50482, 'fifty thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(7474, 68746, 'sixty-eight thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(7475, 78221, 'seventy-eight thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(7476, 20660, 'twenty thousand six hundred sixty');\nINSERT INTO t1 VALUES(7477, 66091, 'sixty-six thousand ninety-one');\nINSERT INTO t1 VALUES(7478, 62771, 'sixty-two thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(7479, 38726, 'thirty-eight thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(7480, 30762, 'thirty thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(7481, 40890, 'forty thousand eight hundred ninety');\nINSERT INTO t1 VALUES(7482, 7002, 'seven thousand two');\nINSERT INTO t1 VALUES(7483, 5637, 'five thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(7484, 17241, 'seventeen thousand two hundred forty-one');\nINSERT INTO t1 VALUES(7485, 76364, 'seventy-six thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(7486, 85136, 'eighty-five thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(7487, 58799, 'fifty-eight thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(7488, 39808, 'thirty-nine thousand eight hundred eight');\nINSERT INTO t1 VALUES(7489, 6252, 'six thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(7490, 69887, 'sixty-nine thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(7491, 72803, 'seventy-two thousand eight hundred three');\nINSERT INTO t1 VALUES(7492, 53538, 'fifty-three thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(7493, 25566, 'twenty-five thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(7494, 37120, 'thirty-seven thousand one hundred twenty');\nINSERT INTO t1 VALUES(7495, 5060, 'five thousand sixty');\nINSERT INTO t1 VALUES(7496, 73166, 'seventy-three thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(7497, 87501, 'eighty-seven thousand five hundred one');\nINSERT INTO t1 VALUES(7498, 90689, 'ninety thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(7499, 78264, 'seventy-eight thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(7500, 4393, 'four thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(7501, 16035, 'sixteen thousand thirty-five');\nINSERT INTO t1 VALUES(7502, 22260, 'twenty-two thousand two hundred sixty');\nINSERT INTO t1 VALUES(7503, 91200, 'ninety-one thousand two hundred');\nINSERT INTO t1 VALUES(7504, 9628, 'nine thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(7505, 17438, 'seventeen thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(7506, 81612, 'eighty-one thousand six hundred twelve');\nINSERT INTO t1 VALUES(7507, 67205, 'sixty-seven thousand two hundred five');\nINSERT INTO t1 VALUES(7508, 91433, 'ninety-one thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(7509, 63937, 'sixty-three thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(7510, 97400, 'ninety-seven thousand four hundred');\nINSERT INTO t1 VALUES(7511, 76842, 'seventy-six thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(7512, 50163, 'fifty thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(7513, 82125, 'eighty-two thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(7514, 13242, 'thirteen thousand two hundred forty-two');\nINSERT INTO t1 VALUES(7515, 89430, 'eighty-nine thousand four hundred thirty');\nINSERT INTO t1 VALUES(7516, 58578, 'fifty-eight thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(7517, 19159, 'nineteen thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(7518, 58537, 'fifty-eight thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(7519, 33785, 'thirty-three thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(7520, 38658, 'thirty-eight thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(7521, 24698, 'twenty-four thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(7522, 16935, 'sixteen thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(7523, 44927, 'forty-four thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(7524, 14910, 'fourteen thousand nine hundred ten');\nINSERT INTO t1 VALUES(7525, 43467, 'forty-three thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(7526, 66148, 'sixty-six thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(7527, 6289, 'six thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(7528, 68381, 'sixty-eight thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(7529, 79528, 'seventy-nine thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(7530, 95498, 'ninety-five thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(7531, 86692, 'eighty-six thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(7532, 68567, 'sixty-eight thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(7533, 63261, 'sixty-three thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(7534, 67247, 'sixty-seven thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(7535, 24308, 'twenty-four thousand three hundred eight');\nINSERT INTO t1 VALUES(7536, 25766, 'twenty-five thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(7537, 16137, 'sixteen thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(7538, 50406, 'fifty thousand four hundred six');\nINSERT INTO t1 VALUES(7539, 97307, 'ninety-seven thousand three hundred seven');\nINSERT INTO t1 VALUES(7540, 34732, 'thirty-four thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(7541, 81656, 'eighty-one thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(7542, 17939, 'seventeen thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(7543, 97271, 'ninety-seven thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(7544, 70735, 'seventy thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(7545, 73030, 'seventy-three thousand thirty');\nINSERT INTO t1 VALUES(7546, 60500, 'sixty thousand five hundred');\nINSERT INTO t1 VALUES(7547, 54813, 'fifty-four thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(7548, 25919, 'twenty-five thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(7549, 1925, 'one thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(7550, 15740, 'fifteen thousand seven hundred forty');\nINSERT INTO t1 VALUES(7551, 12760, 'twelve thousand seven hundred sixty');\nINSERT INTO t1 VALUES(7552, 79798, 'seventy-nine thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(7553, 64465, 'sixty-four thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(7554, 17188, 'seventeen thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(7555, 92463, 'ninety-two thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(7556, 58518, 'fifty-eight thousand five hundred eighteen');\nINSERT INTO t1 VALUES(7557, 76551, 'seventy-six thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(7558, 295, 'two hundred ninety-five');\nINSERT INTO t1 VALUES(7559, 46420, 'forty-six thousand four hundred twenty');\nINSERT INTO t1 VALUES(7560, 35756, 'thirty-five thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(7561, 6211, 'six thousand two hundred eleven');\nINSERT INTO t1 VALUES(7562, 68203, 'sixty-eight thousand two hundred three');\nINSERT INTO t1 VALUES(7563, 20461, 'twenty thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(7564, 664, 'six hundred sixty-four');\nINSERT INTO t1 VALUES(7565, 31162, 'thirty-one thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(7566, 25874, 'twenty-five thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(7567, 12640, 'twelve thousand six hundred forty');\nINSERT INTO t1 VALUES(7568, 87304, 'eighty-seven thousand three hundred four');\nINSERT INTO t1 VALUES(7569, 18407, 'eighteen thousand four hundred seven');\nINSERT INTO t1 VALUES(7570, 51897, 'fifty-one thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(7571, 98302, 'ninety-eight thousand three hundred two');\nINSERT INTO t1 VALUES(7572, 4087, 'four thousand eighty-seven');\nINSERT INTO t1 VALUES(7573, 85190, 'eighty-five thousand one hundred ninety');\nINSERT INTO t1 VALUES(7574, 30344, 'thirty thousand three hundred forty-four');\nINSERT INTO t1 VALUES(7575, 38656, 'thirty-eight thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(7576, 21238, 'twenty-one thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(7577, 71490, 'seventy-one thousand four hundred ninety');\nINSERT INTO t1 VALUES(7578, 69567, 'sixty-nine thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(7579, 35644, 'thirty-five thousand six hundred forty-four');\nINSERT INTO t1 VALUES(7580, 35508, 'thirty-five thousand five hundred eight');\nINSERT INTO t1 VALUES(7581, 49311, 'forty-nine thousand three hundred eleven');\nINSERT INTO t1 VALUES(7582, 70030, 'seventy thousand thirty');\nINSERT INTO t1 VALUES(7583, 29356, 'twenty-nine thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(7584, 12051, 'twelve thousand fifty-one');\nINSERT INTO t1 VALUES(7585, 82812, 'eighty-two thousand eight hundred twelve');\nINSERT INTO t1 VALUES(7586, 98539, 'ninety-eight thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(7587, 87049, 'eighty-seven thousand forty-nine');\nINSERT INTO t1 VALUES(7588, 98444, 'ninety-eight thousand four hundred forty-four');\nINSERT INTO t1 VALUES(7589, 3381, 'three thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(7590, 58523, 'fifty-eight thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(7591, 57795, 'fifty-seven thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(7592, 70507, 'seventy thousand five hundred seven');\nINSERT INTO t1 VALUES(7593, 94728, 'ninety-four thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(7594, 29934, 'twenty-nine thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(7595, 18296, 'eighteen thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(7596, 99528, 'ninety-nine thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(7597, 87258, 'eighty-seven thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(7598, 51705, 'fifty-one thousand seven hundred five');\nINSERT INTO t1 VALUES(7599, 90329, 'ninety thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(7600, 60080, 'sixty thousand eighty');\nINSERT INTO t1 VALUES(7601, 75801, 'seventy-five thousand eight hundred one');\nINSERT INTO t1 VALUES(7602, 97316, 'ninety-seven thousand three hundred sixteen');\nINSERT INTO t1 VALUES(7603, 55233, 'fifty-five thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(7604, 53382, 'fifty-three thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(7605, 31786, 'thirty-one thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(7606, 95515, 'ninety-five thousand five hundred fifteen');\nINSERT INTO t1 VALUES(7607, 68921, 'sixty-eight thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(7608, 99027, 'ninety-nine thousand twenty-seven');\nINSERT INTO t1 VALUES(7609, 66252, 'sixty-six thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(7610, 95703, 'ninety-five thousand seven hundred three');\nINSERT INTO t1 VALUES(7611, 33353, 'thirty-three thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(7612, 2870, 'two thousand eight hundred seventy');\nINSERT INTO t1 VALUES(7613, 35153, 'thirty-five thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(7614, 79641, 'seventy-nine thousand six hundred forty-one');\nINSERT INTO t1 VALUES(7615, 73092, 'seventy-three thousand ninety-two');\nINSERT INTO t1 VALUES(7616, 74053, 'seventy-four thousand fifty-three');\nINSERT INTO t1 VALUES(7617, 40768, 'forty thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(7618, 79311, 'seventy-nine thousand three hundred eleven');\nINSERT INTO t1 VALUES(7619, 10853, 'ten thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(7620, 17438, 'seventeen thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(7621, 3937, 'three thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(7622, 96374, 'ninety-six thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(7623, 17645, 'seventeen thousand six hundred forty-five');\nINSERT INTO t1 VALUES(7624, 86127, 'eighty-six thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(7625, 21093, 'twenty-one thousand ninety-three');\nINSERT INTO t1 VALUES(7626, 504, 'five hundred four');\nINSERT INTO t1 VALUES(7627, 50083, 'fifty thousand eighty-three');\nINSERT INTO t1 VALUES(7628, 4942, 'four thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(7629, 76593, 'seventy-six thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(7630, 73431, 'seventy-three thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(7631, 89644, 'eighty-nine thousand six hundred forty-four');\nINSERT INTO t1 VALUES(7632, 63719, 'sixty-three thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(7633, 53845, 'fifty-three thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(7634, 60793, 'sixty thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(7635, 26368, 'twenty-six thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(7636, 65016, 'sixty-five thousand sixteen');\nINSERT INTO t1 VALUES(7637, 18848, 'eighteen thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(7638, 35677, 'thirty-five thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(7639, 40292, 'forty thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(7640, 5875, 'five thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(7641, 64678, 'sixty-four thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(7642, 3133, 'three thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(7643, 39265, 'thirty-nine thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(7644, 14410, 'fourteen thousand four hundred ten');\nINSERT INTO t1 VALUES(7645, 93195, 'ninety-three thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(7646, 19384, 'nineteen thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(7647, 80017, 'eighty thousand seventeen');\nINSERT INTO t1 VALUES(7648, 82477, 'eighty-two thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(7649, 83457, 'eighty-three thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(7650, 97491, 'ninety-seven thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(7651, 29203, 'twenty-nine thousand two hundred three');\nINSERT INTO t1 VALUES(7652, 27307, 'twenty-seven thousand three hundred seven');\nINSERT INTO t1 VALUES(7653, 50170, 'fifty thousand one hundred seventy');\nINSERT INTO t1 VALUES(7654, 71793, 'seventy-one thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(7655, 21055, 'twenty-one thousand fifty-five');\nINSERT INTO t1 VALUES(7656, 44504, 'forty-four thousand five hundred four');\nINSERT INTO t1 VALUES(7657, 6462, 'six thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(7658, 82617, 'eighty-two thousand six hundred seventeen');\nINSERT INTO t1 VALUES(7659, 74690, 'seventy-four thousand six hundred ninety');\nINSERT INTO t1 VALUES(7660, 72421, 'seventy-two thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(7661, 5896, 'five thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(7662, 1054, 'one thousand fifty-four');\nINSERT INTO t1 VALUES(7663, 66433, 'sixty-six thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(7664, 7665, 'seven thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(7665, 31581, 'thirty-one thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(7666, 87559, 'eighty-seven thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(7667, 14011, 'fourteen thousand eleven');\nINSERT INTO t1 VALUES(7668, 12526, 'twelve thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(7669, 62648, 'sixty-two thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(7670, 65496, 'sixty-five thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(7671, 2328, 'two thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(7672, 53613, 'fifty-three thousand six hundred thirteen');\nINSERT INTO t1 VALUES(7673, 74137, 'seventy-four thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(7674, 76232, 'seventy-six thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(7675, 93851, 'ninety-three thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(7676, 18011, 'eighteen thousand eleven');\nINSERT INTO t1 VALUES(7677, 20150, 'twenty thousand one hundred fifty');\nINSERT INTO t1 VALUES(7678, 18932, 'eighteen thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(7679, 3560, 'three thousand five hundred sixty');\nINSERT INTO t1 VALUES(7680, 43177, 'forty-three thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(7681, 61897, 'sixty-one thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(7682, 73001, 'seventy-three thousand one');\nINSERT INTO t1 VALUES(7683, 31468, 'thirty-one thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(7684, 14065, 'fourteen thousand sixty-five');\nINSERT INTO t1 VALUES(7685, 5212, 'five thousand two hundred twelve');\nINSERT INTO t1 VALUES(7686, 63061, 'sixty-three thousand sixty-one');\nINSERT INTO t1 VALUES(7687, 16719, 'sixteen thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(7688, 77480, 'seventy-seven thousand four hundred eighty');\nINSERT INTO t1 VALUES(7689, 15936, 'fifteen thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(7690, 35694, 'thirty-five thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(7691, 50114, 'fifty thousand one hundred fourteen');\nINSERT INTO t1 VALUES(7692, 64119, 'sixty-four thousand one hundred nineteen');\nINSERT INTO t1 VALUES(7693, 30243, 'thirty thousand two hundred forty-three');\nINSERT INTO t1 VALUES(7694, 59480, 'fifty-nine thousand four hundred eighty');\nINSERT INTO t1 VALUES(7695, 47054, 'forty-seven thousand fifty-four');\nINSERT INTO t1 VALUES(7696, 39344, 'thirty-nine thousand three hundred forty-four');\nINSERT INTO t1 VALUES(7697, 91877, 'ninety-one thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(7698, 87910, 'eighty-seven thousand nine hundred ten');\nINSERT INTO t1 VALUES(7699, 74942, 'seventy-four thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(7700, 13879, 'thirteen thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(7701, 90580, 'ninety thousand five hundred eighty');\nINSERT INTO t1 VALUES(7702, 35384, 'thirty-five thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(7703, 53967, 'fifty-three thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(7704, 9459, 'nine thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(7705, 79039, 'seventy-nine thousand thirty-nine');\nINSERT INTO t1 VALUES(7706, 96565, 'ninety-six thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(7707, 91890, 'ninety-one thousand eight hundred ninety');\nINSERT INTO t1 VALUES(7708, 87945, 'eighty-seven thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(7709, 71133, 'seventy-one thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(7710, 87725, 'eighty-seven thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(7711, 36407, 'thirty-six thousand four hundred seven');\nINSERT INTO t1 VALUES(7712, 12856, 'twelve thousand eight hundred fifty-six');\nINSERT INTO t1 VALUES(7713, 48429, 'forty-eight thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(7714, 95661, 'ninety-five thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(7715, 52338, 'fifty-two thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(7716, 17316, 'seventeen thousand three hundred sixteen');\nINSERT INTO t1 VALUES(7717, 51407, 'fifty-one thousand four hundred seven');\nINSERT INTO t1 VALUES(7718, 2597, 'two thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(7719, 97643, 'ninety-seven thousand six hundred forty-three');\nINSERT INTO t1 VALUES(7720, 36752, 'thirty-six thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(7721, 13680, 'thirteen thousand six hundred eighty');\nINSERT INTO t1 VALUES(7722, 4909, 'four thousand nine hundred nine');\nINSERT INTO t1 VALUES(7723, 84796, 'eighty-four thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(7724, 73543, 'seventy-three thousand five hundred forty-three');\nINSERT INTO t1 VALUES(7725, 1916, 'one thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(7726, 31493, 'thirty-one thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(7727, 69357, 'sixty-nine thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(7728, 75427, 'seventy-five thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(7729, 51036, 'fifty-one thousand thirty-six');\nINSERT INTO t1 VALUES(7730, 93792, 'ninety-three thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(7731, 90679, 'ninety thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(7732, 9298, 'nine thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(7733, 29484, 'twenty-nine thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(7734, 54312, 'fifty-four thousand three hundred twelve');\nINSERT INTO t1 VALUES(7735, 87150, 'eighty-seven thousand one hundred fifty');\nINSERT INTO t1 VALUES(7736, 99157, 'ninety-nine thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(7737, 15157, 'fifteen thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(7738, 91560, 'ninety-one thousand five hundred sixty');\nINSERT INTO t1 VALUES(7739, 18148, 'eighteen thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(7740, 8142, 'eight thousand one hundred forty-two');\nINSERT INTO t1 VALUES(7741, 73128, 'seventy-three thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(7742, 49695, 'forty-nine thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(7743, 89198, 'eighty-nine thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(7744, 71116, 'seventy-one thousand one hundred sixteen');\nINSERT INTO t1 VALUES(7745, 13461, 'thirteen thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(7746, 83560, 'eighty-three thousand five hundred sixty');\nINSERT INTO t1 VALUES(7747, 67718, 'sixty-seven thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(7748, 35253, 'thirty-five thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(7749, 4621, 'four thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(7750, 16037, 'sixteen thousand thirty-seven');\nINSERT INTO t1 VALUES(7751, 5376, 'five thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(7752, 88995, 'eighty-eight thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(7753, 67791, 'sixty-seven thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(7754, 858, 'eight hundred fifty-eight');\nINSERT INTO t1 VALUES(7755, 98985, 'ninety-eight thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(7756, 52136, 'fifty-two thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(7757, 44069, 'forty-four thousand sixty-nine');\nINSERT INTO t1 VALUES(7758, 69723, 'sixty-nine thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(7759, 23410, 'twenty-three thousand four hundred ten');\nINSERT INTO t1 VALUES(7760, 55639, 'fifty-five thousand six hundred thirty-nine');\nINSERT INTO t1 VALUES(7761, 82748, 'eighty-two thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(7762, 87806, 'eighty-seven thousand eight hundred six');\nINSERT INTO t1 VALUES(7763, 1792, 'one thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(7764, 33515, 'thirty-three thousand five hundred fifteen');\nINSERT INTO t1 VALUES(7765, 656, 'six hundred fifty-six');\nINSERT INTO t1 VALUES(7766, 9853, 'nine thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(7767, 81056, 'eighty-one thousand fifty-six');\nINSERT INTO t1 VALUES(7768, 97223, 'ninety-seven thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(7769, 15290, 'fifteen thousand two hundred ninety');\nINSERT INTO t1 VALUES(7770, 37851, 'thirty-seven thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(7771, 90678, 'ninety thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(7772, 47996, 'forty-seven thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(7773, 61678, 'sixty-one thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(7774, 21658, 'twenty-one thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(7775, 67975, 'sixty-seven thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(7776, 15683, 'fifteen thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(7777, 68528, 'sixty-eight thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(7778, 3643, 'three thousand six hundred forty-three');\nINSERT INTO t1 VALUES(7779, 16183, 'sixteen thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(7780, 83349, 'eighty-three thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(7781, 46050, 'forty-six thousand fifty');\nINSERT INTO t1 VALUES(7782, 72416, 'seventy-two thousand four hundred sixteen');\nINSERT INTO t1 VALUES(7783, 25081, 'twenty-five thousand eighty-one');\nINSERT INTO t1 VALUES(7784, 60598, 'sixty thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(7785, 35348, 'thirty-five thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(7786, 67248, 'sixty-seven thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(7787, 36660, 'thirty-six thousand six hundred sixty');\nINSERT INTO t1 VALUES(7788, 80794, 'eighty thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(7789, 12586, 'twelve thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(7790, 1660, 'one thousand six hundred sixty');\nINSERT INTO t1 VALUES(7791, 31369, 'thirty-one thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(7792, 88500, 'eighty-eight thousand five hundred');\nINSERT INTO t1 VALUES(7793, 98688, 'ninety-eight thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(7794, 22037, 'twenty-two thousand thirty-seven');\nINSERT INTO t1 VALUES(7795, 96477, 'ninety-six thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(7796, 7480, 'seven thousand four hundred eighty');\nINSERT INTO t1 VALUES(7797, 35142, 'thirty-five thousand one hundred forty-two');\nINSERT INTO t1 VALUES(7798, 22661, 'twenty-two thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(7799, 76209, 'seventy-six thousand two hundred nine');\nINSERT INTO t1 VALUES(7800, 81625, 'eighty-one thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(7801, 49886, 'forty-nine thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(7802, 99323, 'ninety-nine thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(7803, 96735, 'ninety-six thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(7804, 45311, 'forty-five thousand three hundred eleven');\nINSERT INTO t1 VALUES(7805, 263, 'two hundred sixty-three');\nINSERT INTO t1 VALUES(7806, 37862, 'thirty-seven thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(7807, 80939, 'eighty thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(7808, 77349, 'seventy-seven thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(7809, 38321, 'thirty-eight thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(7810, 83634, 'eighty-three thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(7811, 28604, 'twenty-eight thousand six hundred four');\nINSERT INTO t1 VALUES(7812, 39822, 'thirty-nine thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(7813, 18580, 'eighteen thousand five hundred eighty');\nINSERT INTO t1 VALUES(7814, 56784, 'fifty-six thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(7815, 9627, 'nine thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(7816, 99774, 'ninety-nine thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(7817, 53956, 'fifty-three thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(7818, 87268, 'eighty-seven thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(7819, 20098, 'twenty thousand ninety-eight');\nINSERT INTO t1 VALUES(7820, 24106, 'twenty-four thousand one hundred six');\nINSERT INTO t1 VALUES(7821, 20464, 'twenty thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(7822, 90602, 'ninety thousand six hundred two');\nINSERT INTO t1 VALUES(7823, 97695, 'ninety-seven thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(7824, 86171, 'eighty-six thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(7825, 97571, 'ninety-seven thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(7826, 8801, 'eight thousand eight hundred one');\nINSERT INTO t1 VALUES(7827, 5800, 'five thousand eight hundred');\nINSERT INTO t1 VALUES(7828, 28723, 'twenty-eight thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(7829, 52550, 'fifty-two thousand five hundred fifty');\nINSERT INTO t1 VALUES(7830, 16270, 'sixteen thousand two hundred seventy');\nINSERT INTO t1 VALUES(7831, 14306, 'fourteen thousand three hundred six');\nINSERT INTO t1 VALUES(7832, 94463, 'ninety-four thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(7833, 23441, 'twenty-three thousand four hundred forty-one');\nINSERT INTO t1 VALUES(7834, 41139, 'forty-one thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(7835, 25688, 'twenty-five thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(7836, 47882, 'forty-seven thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(7837, 2242, 'two thousand two hundred forty-two');\nINSERT INTO t1 VALUES(7838, 74744, 'seventy-four thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(7839, 21882, 'twenty-one thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(7840, 5128, 'five thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(7841, 63, 'sixty-three');\nINSERT INTO t1 VALUES(7842, 43051, 'forty-three thousand fifty-one');\nINSERT INTO t1 VALUES(7843, 59497, 'fifty-nine thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(7844, 35250, 'thirty-five thousand two hundred fifty');\nINSERT INTO t1 VALUES(7845, 14067, 'fourteen thousand sixty-seven');\nINSERT INTO t1 VALUES(7846, 98471, 'ninety-eight thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(7847, 32404, 'thirty-two thousand four hundred four');\nINSERT INTO t1 VALUES(7848, 59310, 'fifty-nine thousand three hundred ten');\nINSERT INTO t1 VALUES(7849, 13532, 'thirteen thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(7850, 15986, 'fifteen thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(7851, 39829, 'thirty-nine thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(7852, 89539, 'eighty-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(7853, 89694, 'eighty-nine thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(7854, 20933, 'twenty thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(7855, 73731, 'seventy-three thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(7856, 96558, 'ninety-six thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(7857, 19964, 'nineteen thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(7858, 8060, 'eight thousand sixty');\nINSERT INTO t1 VALUES(7859, 87017, 'eighty-seven thousand seventeen');\nINSERT INTO t1 VALUES(7860, 13616, 'thirteen thousand six hundred sixteen');\nINSERT INTO t1 VALUES(7861, 15159, 'fifteen thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(7862, 79783, 'seventy-nine thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(7863, 95370, 'ninety-five thousand three hundred seventy');\nINSERT INTO t1 VALUES(7864, 30656, 'thirty thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(7865, 66753, 'sixty-six thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(7866, 91805, 'ninety-one thousand eight hundred five');\nINSERT INTO t1 VALUES(7867, 83405, 'eighty-three thousand four hundred five');\nINSERT INTO t1 VALUES(7868, 83025, 'eighty-three thousand twenty-five');\nINSERT INTO t1 VALUES(7869, 2923, 'two thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(7870, 74455, 'seventy-four thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(7871, 43200, 'forty-three thousand two hundred');\nINSERT INTO t1 VALUES(7872, 31782, 'thirty-one thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(7873, 44085, 'forty-four thousand eighty-five');\nINSERT INTO t1 VALUES(7874, 15054, 'fifteen thousand fifty-four');\nINSERT INTO t1 VALUES(7875, 73665, 'seventy-three thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(7876, 56082, 'fifty-six thousand eighty-two');\nINSERT INTO t1 VALUES(7877, 23782, 'twenty-three thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(7878, 36310, 'thirty-six thousand three hundred ten');\nINSERT INTO t1 VALUES(7879, 83309, 'eighty-three thousand three hundred nine');\nINSERT INTO t1 VALUES(7880, 16310, 'sixteen thousand three hundred ten');\nINSERT INTO t1 VALUES(7881, 541, 'five hundred forty-one');\nINSERT INTO t1 VALUES(7882, 83512, 'eighty-three thousand five hundred twelve');\nINSERT INTO t1 VALUES(7883, 19515, 'nineteen thousand five hundred fifteen');\nINSERT INTO t1 VALUES(7884, 91044, 'ninety-one thousand forty-four');\nINSERT INTO t1 VALUES(7885, 66953, 'sixty-six thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(7886, 36995, 'thirty-six thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(7887, 90127, 'ninety thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(7888, 41269, 'forty-one thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(7889, 63071, 'sixty-three thousand seventy-one');\nINSERT INTO t1 VALUES(7890, 39034, 'thirty-nine thousand thirty-four');\nINSERT INTO t1 VALUES(7891, 45572, 'forty-five thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(7892, 49164, 'forty-nine thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(7893, 37147, 'thirty-seven thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(7894, 23657, 'twenty-three thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(7895, 78537, 'seventy-eight thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(7896, 52347, 'fifty-two thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(7897, 92819, 'ninety-two thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(7898, 31124, 'thirty-one thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(7899, 77575, 'seventy-seven thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(7900, 22526, 'twenty-two thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(7901, 90254, 'ninety thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(7902, 68394, 'sixty-eight thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(7903, 69752, 'sixty-nine thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(7904, 96221, 'ninety-six thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(7905, 25934, 'twenty-five thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(7906, 39689, 'thirty-nine thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(7907, 59582, 'fifty-nine thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(7908, 94145, 'ninety-four thousand one hundred forty-five');\nINSERT INTO t1 VALUES(7909, 71324, 'seventy-one thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(7910, 79960, 'seventy-nine thousand nine hundred sixty');\nINSERT INTO t1 VALUES(7911, 77850, 'seventy-seven thousand eight hundred fifty');\nINSERT INTO t1 VALUES(7912, 48143, 'forty-eight thousand one hundred forty-three');\nINSERT INTO t1 VALUES(7913, 83930, 'eighty-three thousand nine hundred thirty');\nINSERT INTO t1 VALUES(7914, 77135, 'seventy-seven thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(7915, 27851, 'twenty-seven thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(7916, 67434, 'sixty-seven thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(7917, 74035, 'seventy-four thousand thirty-five');\nINSERT INTO t1 VALUES(7918, 36646, 'thirty-six thousand six hundred forty-six');\nINSERT INTO t1 VALUES(7919, 81402, 'eighty-one thousand four hundred two');\nINSERT INTO t1 VALUES(7920, 5874, 'five thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(7921, 86496, 'eighty-six thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(7922, 63333, 'sixty-three thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(7923, 82408, 'eighty-two thousand four hundred eight');\nINSERT INTO t1 VALUES(7924, 88239, 'eighty-eight thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(7925, 14141, 'fourteen thousand one hundred forty-one');\nINSERT INTO t1 VALUES(7926, 60345, 'sixty thousand three hundred forty-five');\nINSERT INTO t1 VALUES(7927, 57719, 'fifty-seven thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(7928, 20454, 'twenty thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(7929, 34861, 'thirty-four thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(7930, 14822, 'fourteen thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(7931, 27307, 'twenty-seven thousand three hundred seven');\nINSERT INTO t1 VALUES(7932, 1746, 'one thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(7933, 19942, 'nineteen thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(7934, 49539, 'forty-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(7935, 87971, 'eighty-seven thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(7936, 56975, 'fifty-six thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(7937, 47733, 'forty-seven thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(7938, 29546, 'twenty-nine thousand five hundred forty-six');\nINSERT INTO t1 VALUES(7939, 94395, 'ninety-four thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(7940, 83058, 'eighty-three thousand fifty-eight');\nINSERT INTO t1 VALUES(7941, 80565, 'eighty thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(7942, 5824, 'five thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(7943, 56150, 'fifty-six thousand one hundred fifty');\nINSERT INTO t1 VALUES(7944, 88673, 'eighty-eight thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(7945, 30043, 'thirty thousand forty-three');\nINSERT INTO t1 VALUES(7946, 84917, 'eighty-four thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(7947, 44179, 'forty-four thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(7948, 36742, 'thirty-six thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(7949, 49639, 'forty-nine thousand six hundred thirty-nine');\nINSERT INTO t1 VALUES(7950, 48249, 'forty-eight thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(7951, 49026, 'forty-nine thousand twenty-six');\nINSERT INTO t1 VALUES(7952, 66869, 'sixty-six thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(7953, 20582, 'twenty thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(7954, 42286, 'forty-two thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(7955, 98513, 'ninety-eight thousand five hundred thirteen');\nINSERT INTO t1 VALUES(7956, 97681, 'ninety-seven thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(7957, 15705, 'fifteen thousand seven hundred five');\nINSERT INTO t1 VALUES(7958, 76411, 'seventy-six thousand four hundred eleven');\nINSERT INTO t1 VALUES(7959, 14285, 'fourteen thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(7960, 3895, 'three thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(7961, 20176, 'twenty thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(7962, 77559, 'seventy-seven thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(7963, 42868, 'forty-two thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(7964, 50398, 'fifty thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(7965, 81553, 'eighty-one thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(7966, 73859, 'seventy-three thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(7967, 15726, 'fifteen thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(7968, 47727, 'forty-seven thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(7969, 62444, 'sixty-two thousand four hundred forty-four');\nINSERT INTO t1 VALUES(7970, 55007, 'fifty-five thousand seven');\nINSERT INTO t1 VALUES(7971, 24046, 'twenty-four thousand forty-six');\nINSERT INTO t1 VALUES(7972, 95041, 'ninety-five thousand forty-one');\nINSERT INTO t1 VALUES(7973, 77834, 'seventy-seven thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(7974, 35735, 'thirty-five thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(7975, 3263, 'three thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(7976, 75482, 'seventy-five thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(7977, 70443, 'seventy thousand four hundred forty-three');\nINSERT INTO t1 VALUES(7978, 32993, 'thirty-two thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(7979, 59841, 'fifty-nine thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(7980, 41827, 'forty-one thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(7981, 60918, 'sixty thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(7982, 6281, 'six thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(7983, 4485, 'four thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(7984, 57724, 'fifty-seven thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(7985, 57353, 'fifty-seven thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(7986, 66186, 'sixty-six thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(7987, 82465, 'eighty-two thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(7988, 83719, 'eighty-three thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(7989, 70733, 'seventy thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(7990, 65495, 'sixty-five thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(7991, 35268, 'thirty-five thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(7992, 21098, 'twenty-one thousand ninety-eight');\nINSERT INTO t1 VALUES(7993, 17625, 'seventeen thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(7994, 11433, 'eleven thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(7995, 26519, 'twenty-six thousand five hundred nineteen');\nINSERT INTO t1 VALUES(7996, 59470, 'fifty-nine thousand four hundred seventy');\nINSERT INTO t1 VALUES(7997, 36434, 'thirty-six thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(7998, 3032, 'three thousand thirty-two');\nINSERT INTO t1 VALUES(7999, 73646, 'seventy-three thousand six hundred forty-six');\nINSERT INTO t1 VALUES(8000, 25010, 'twenty-five thousand ten');\nINSERT INTO t1 VALUES(8001, 27479, 'twenty-seven thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(8002, 58626, 'fifty-eight thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(8003, 13285, 'thirteen thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(8004, 20698, 'twenty thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(8005, 40559, 'forty thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(8006, 59640, 'fifty-nine thousand six hundred forty');\nINSERT INTO t1 VALUES(8007, 18698, 'eighteen thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(8008, 73630, 'seventy-three thousand six hundred thirty');\nINSERT INTO t1 VALUES(8009, 55143, 'fifty-five thousand one hundred forty-three');\nINSERT INTO t1 VALUES(8010, 71496, 'seventy-one thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(8011, 84709, 'eighty-four thousand seven hundred nine');\nINSERT INTO t1 VALUES(8012, 93121, 'ninety-three thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(8013, 67089, 'sixty-seven thousand eighty-nine');\nINSERT INTO t1 VALUES(8014, 52407, 'fifty-two thousand four hundred seven');\nINSERT INTO t1 VALUES(8015, 2119, 'two thousand one hundred nineteen');\nINSERT INTO t1 VALUES(8016, 37773, 'thirty-seven thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(8017, 82286, 'eighty-two thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(8018, 39997, 'thirty-nine thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(8019, 63074, 'sixty-three thousand seventy-four');\nINSERT INTO t1 VALUES(8020, 24179, 'twenty-four thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(8021, 88468, 'eighty-eight thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(8022, 81676, 'eighty-one thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(8023, 93060, 'ninety-three thousand sixty');\nINSERT INTO t1 VALUES(8024, 6599, 'six thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(8025, 31521, 'thirty-one thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(8026, 80668, 'eighty thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(8027, 71713, 'seventy-one thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(8028, 71062, 'seventy-one thousand sixty-two');\nINSERT INTO t1 VALUES(8029, 49171, 'forty-nine thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(8030, 89752, 'eighty-nine thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(8031, 8361, 'eight thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(8032, 89016, 'eighty-nine thousand sixteen');\nINSERT INTO t1 VALUES(8033, 50123, 'fifty thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(8034, 93717, 'ninety-three thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(8035, 56769, 'fifty-six thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(8036, 53986, 'fifty-three thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(8037, 741, 'seven hundred forty-one');\nINSERT INTO t1 VALUES(8038, 43063, 'forty-three thousand sixty-three');\nINSERT INTO t1 VALUES(8039, 37717, 'thirty-seven thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(8040, 95326, 'ninety-five thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(8041, 87882, 'eighty-seven thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(8042, 30085, 'thirty thousand eighty-five');\nINSERT INTO t1 VALUES(8043, 2980, 'two thousand nine hundred eighty');\nINSERT INTO t1 VALUES(8044, 99031, 'ninety-nine thousand thirty-one');\nINSERT INTO t1 VALUES(8045, 1955, 'one thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(8046, 71800, 'seventy-one thousand eight hundred');\nINSERT INTO t1 VALUES(8047, 80845, 'eighty thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(8048, 3969, 'three thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(8049, 72095, 'seventy-two thousand ninety-five');\nINSERT INTO t1 VALUES(8050, 83061, 'eighty-three thousand sixty-one');\nINSERT INTO t1 VALUES(8051, 40526, 'forty thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(8052, 26143, 'twenty-six thousand one hundred forty-three');\nINSERT INTO t1 VALUES(8053, 62515, 'sixty-two thousand five hundred fifteen');\nINSERT INTO t1 VALUES(8054, 13173, 'thirteen thousand one hundred seventy-three');\nINSERT INTO t1 VALUES(8055, 71132, 'seventy-one thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(8056, 86793, 'eighty-six thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(8057, 69009, 'sixty-nine thousand nine');\nINSERT INTO t1 VALUES(8058, 28250, 'twenty-eight thousand two hundred fifty');\nINSERT INTO t1 VALUES(8059, 79276, 'seventy-nine thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(8060, 58463, 'fifty-eight thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(8061, 92913, 'ninety-two thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(8062, 49764, 'forty-nine thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(8063, 5579, 'five thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(8064, 54549, 'fifty-four thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(8065, 1128, 'one thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(8066, 29276, 'twenty-nine thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(8067, 57029, 'fifty-seven thousand twenty-nine');\nINSERT INTO t1 VALUES(8068, 3571, 'three thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(8069, 55778, 'fifty-five thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(8070, 48777, 'forty-eight thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(8071, 76438, 'seventy-six thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(8072, 78484, 'seventy-eight thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(8073, 99758, 'ninety-nine thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(8074, 2206, 'two thousand two hundred six');\nINSERT INTO t1 VALUES(8075, 19978, 'nineteen thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(8076, 1249, 'one thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(8077, 18160, 'eighteen thousand one hundred sixty');\nINSERT INTO t1 VALUES(8078, 18196, 'eighteen thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(8079, 80732, 'eighty thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(8080, 47100, 'forty-seven thousand one hundred');\nINSERT INTO t1 VALUES(8081, 9033, 'nine thousand thirty-three');\nINSERT INTO t1 VALUES(8082, 96273, 'ninety-six thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(8083, 90507, 'ninety thousand five hundred seven');\nINSERT INTO t1 VALUES(8084, 13791, 'thirteen thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(8085, 16674, 'sixteen thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(8086, 30330, 'thirty thousand three hundred thirty');\nINSERT INTO t1 VALUES(8087, 42272, 'forty-two thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(8088, 98098, 'ninety-eight thousand ninety-eight');\nINSERT INTO t1 VALUES(8089, 80916, 'eighty thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(8090, 95718, 'ninety-five thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(8091, 85629, 'eighty-five thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(8092, 41360, 'forty-one thousand three hundred sixty');\nINSERT INTO t1 VALUES(8093, 60360, 'sixty thousand three hundred sixty');\nINSERT INTO t1 VALUES(8094, 73361, 'seventy-three thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(8095, 59057, 'fifty-nine thousand fifty-seven');\nINSERT INTO t1 VALUES(8096, 35336, 'thirty-five thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(8097, 22816, 'twenty-two thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(8098, 36922, 'thirty-six thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(8099, 29250, 'twenty-nine thousand two hundred fifty');\nINSERT INTO t1 VALUES(8100, 40915, 'forty thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(8101, 50961, 'fifty thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(8102, 56267, 'fifty-six thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(8103, 50557, 'fifty thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(8104, 98933, 'ninety-eight thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(8105, 69073, 'sixty-nine thousand seventy-three');\nINSERT INTO t1 VALUES(8106, 32107, 'thirty-two thousand one hundred seven');\nINSERT INTO t1 VALUES(8107, 18324, 'eighteen thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(8108, 78521, 'seventy-eight thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(8109, 64469, 'sixty-four thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(8110, 59797, 'fifty-nine thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(8111, 2652, 'two thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(8112, 59663, 'fifty-nine thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(8113, 18215, 'eighteen thousand two hundred fifteen');\nINSERT INTO t1 VALUES(8114, 13864, 'thirteen thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(8115, 64953, 'sixty-four thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(8116, 12249, 'twelve thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(8117, 34458, 'thirty-four thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(8118, 11876, 'eleven thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(8119, 76788, 'seventy-six thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(8120, 80100, 'eighty thousand one hundred');\nINSERT INTO t1 VALUES(8121, 60522, 'sixty thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(8122, 69370, 'sixty-nine thousand three hundred seventy');\nINSERT INTO t1 VALUES(8123, 95232, 'ninety-five thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(8124, 59484, 'fifty-nine thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(8125, 52341, 'fifty-two thousand three hundred forty-one');\nINSERT INTO t1 VALUES(8126, 358, 'three hundred fifty-eight');\nINSERT INTO t1 VALUES(8127, 72762, 'seventy-two thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(8128, 99191, 'ninety-nine thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(8129, 77103, 'seventy-seven thousand one hundred three');\nINSERT INTO t1 VALUES(8130, 89140, 'eighty-nine thousand one hundred forty');\nINSERT INTO t1 VALUES(8131, 39047, 'thirty-nine thousand forty-seven');\nINSERT INTO t1 VALUES(8132, 29803, 'twenty-nine thousand eight hundred three');\nINSERT INTO t1 VALUES(8133, 53574, 'fifty-three thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(8134, 29183, 'twenty-nine thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(8135, 63237, 'sixty-three thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(8136, 64365, 'sixty-four thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(8137, 98023, 'ninety-eight thousand twenty-three');\nINSERT INTO t1 VALUES(8138, 25085, 'twenty-five thousand eighty-five');\nINSERT INTO t1 VALUES(8139, 95610, 'ninety-five thousand six hundred ten');\nINSERT INTO t1 VALUES(8140, 67879, 'sixty-seven thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(8141, 1354, 'one thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(8142, 11017, 'eleven thousand seventeen');\nINSERT INTO t1 VALUES(8143, 45440, 'forty-five thousand four hundred forty');\nINSERT INTO t1 VALUES(8144, 97792, 'ninety-seven thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(8145, 39693, 'thirty-nine thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(8146, 58430, 'fifty-eight thousand four hundred thirty');\nINSERT INTO t1 VALUES(8147, 24424, 'twenty-four thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(8148, 88843, 'eighty-eight thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(8149, 32146, 'thirty-two thousand one hundred forty-six');\nINSERT INTO t1 VALUES(8150, 45589, 'forty-five thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(8151, 30705, 'thirty thousand seven hundred five');\nINSERT INTO t1 VALUES(8152, 28845, 'twenty-eight thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(8153, 9572, 'nine thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(8154, 37012, 'thirty-seven thousand twelve');\nINSERT INTO t1 VALUES(8155, 58391, 'fifty-eight thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(8156, 91537, 'ninety-one thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(8157, 13257, 'thirteen thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(8158, 86861, 'eighty-six thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(8159, 48064, 'forty-eight thousand sixty-four');\nINSERT INTO t1 VALUES(8160, 12917, 'twelve thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(8161, 91388, 'ninety-one thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(8162, 30229, 'thirty thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(8163, 58201, 'fifty-eight thousand two hundred one');\nINSERT INTO t1 VALUES(8164, 22229, 'twenty-two thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(8165, 14691, 'fourteen thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(8166, 32572, 'thirty-two thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(8167, 86147, 'eighty-six thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(8168, 49150, 'forty-nine thousand one hundred fifty');\nINSERT INTO t1 VALUES(8169, 80925, 'eighty thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(8170, 43991, 'forty-three thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(8171, 67285, 'sixty-seven thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(8172, 56602, 'fifty-six thousand six hundred two');\nINSERT INTO t1 VALUES(8173, 33979, 'thirty-three thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(8174, 15087, 'fifteen thousand eighty-seven');\nINSERT INTO t1 VALUES(8175, 34198, 'thirty-four thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(8176, 82781, 'eighty-two thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(8177, 14971, 'fourteen thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(8178, 25257, 'twenty-five thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(8179, 71874, 'seventy-one thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(8180, 92105, 'ninety-two thousand one hundred five');\nINSERT INTO t1 VALUES(8181, 3233, 'three thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(8182, 48317, 'forty-eight thousand three hundred seventeen');\nINSERT INTO t1 VALUES(8183, 67485, 'sixty-seven thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(8184, 31547, 'thirty-one thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(8185, 20316, 'twenty thousand three hundred sixteen');\nINSERT INTO t1 VALUES(8186, 58491, 'fifty-eight thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(8187, 21100, 'twenty-one thousand one hundred');\nINSERT INTO t1 VALUES(8188, 51450, 'fifty-one thousand four hundred fifty');\nINSERT INTO t1 VALUES(8189, 98068, 'ninety-eight thousand sixty-eight');\nINSERT INTO t1 VALUES(8190, 87771, 'eighty-seven thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(8191, 85224, 'eighty-five thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(8192, 63199, 'sixty-three thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(8193, 17141, 'seventeen thousand one hundred forty-one');\nINSERT INTO t1 VALUES(8194, 31880, 'thirty-one thousand eight hundred eighty');\nINSERT INTO t1 VALUES(8195, 58125, 'fifty-eight thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(8196, 73194, 'seventy-three thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(8197, 90851, 'ninety thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(8198, 8138, 'eight thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(8199, 4316, 'four thousand three hundred sixteen');\nINSERT INTO t1 VALUES(8200, 87558, 'eighty-seven thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(8201, 95961, 'ninety-five thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(8202, 57143, 'fifty-seven thousand one hundred forty-three');\nINSERT INTO t1 VALUES(8203, 48156, 'forty-eight thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(8204, 37862, 'thirty-seven thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(8205, 33609, 'thirty-three thousand six hundred nine');\nINSERT INTO t1 VALUES(8206, 12195, 'twelve thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(8207, 39055, 'thirty-nine thousand fifty-five');\nINSERT INTO t1 VALUES(8208, 11540, 'eleven thousand five hundred forty');\nINSERT INTO t1 VALUES(8209, 35532, 'thirty-five thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(8210, 39705, 'thirty-nine thousand seven hundred five');\nINSERT INTO t1 VALUES(8211, 89223, 'eighty-nine thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(8212, 14391, 'fourteen thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(8213, 60858, 'sixty thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(8214, 92117, 'ninety-two thousand one hundred seventeen');\nINSERT INTO t1 VALUES(8215, 83752, 'eighty-three thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(8216, 35438, 'thirty-five thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(8217, 55024, 'fifty-five thousand twenty-four');\nINSERT INTO t1 VALUES(8218, 88639, 'eighty-eight thousand six hundred thirty-nine');\nINSERT INTO t1 VALUES(8219, 36972, 'thirty-six thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(8220, 83163, 'eighty-three thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(8221, 40225, 'forty thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(8222, 89060, 'eighty-nine thousand sixty');\nINSERT INTO t1 VALUES(8223, 67419, 'sixty-seven thousand four hundred nineteen');\nINSERT INTO t1 VALUES(8224, 14016, 'fourteen thousand sixteen');\nINSERT INTO t1 VALUES(8225, 33963, 'thirty-three thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(8226, 42430, 'forty-two thousand four hundred thirty');\nINSERT INTO t1 VALUES(8227, 81366, 'eighty-one thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(8228, 23719, 'twenty-three thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(8229, 41672, 'forty-one thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(8230, 50145, 'fifty thousand one hundred forty-five');\nINSERT INTO t1 VALUES(8231, 19515, 'nineteen thousand five hundred fifteen');\nINSERT INTO t1 VALUES(8232, 53266, 'fifty-three thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(8233, 31624, 'thirty-one thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(8234, 5164, 'five thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(8235, 72246, 'seventy-two thousand two hundred forty-six');\nINSERT INTO t1 VALUES(8236, 90694, 'ninety thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(8237, 62075, 'sixty-two thousand seventy-five');\nINSERT INTO t1 VALUES(8238, 53502, 'fifty-three thousand five hundred two');\nINSERT INTO t1 VALUES(8239, 73434, 'seventy-three thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(8240, 28967, 'twenty-eight thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(8241, 2530, 'two thousand five hundred thirty');\nINSERT INTO t1 VALUES(8242, 38201, 'thirty-eight thousand two hundred one');\nINSERT INTO t1 VALUES(8243, 43561, 'forty-three thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(8244, 45811, 'forty-five thousand eight hundred eleven');\nINSERT INTO t1 VALUES(8245, 54679, 'fifty-four thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(8246, 55199, 'fifty-five thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(8247, 94154, 'ninety-four thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(8248, 98890, 'ninety-eight thousand eight hundred ninety');\nINSERT INTO t1 VALUES(8249, 61816, 'sixty-one thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(8250, 32545, 'thirty-two thousand five hundred forty-five');\nINSERT INTO t1 VALUES(8251, 42024, 'forty-two thousand twenty-four');\nINSERT INTO t1 VALUES(8252, 43155, 'forty-three thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(8253, 79995, 'seventy-nine thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(8254, 42594, 'forty-two thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(8255, 96849, 'ninety-six thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(8256, 66568, 'sixty-six thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(8257, 41343, 'forty-one thousand three hundred forty-three');\nINSERT INTO t1 VALUES(8258, 52623, 'fifty-two thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(8259, 33997, 'thirty-three thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(8260, 93000, 'ninety-three thousand');\nINSERT INTO t1 VALUES(8261, 36529, 'thirty-six thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(8262, 67420, 'sixty-seven thousand four hundred twenty');\nINSERT INTO t1 VALUES(8263, 74806, 'seventy-four thousand eight hundred six');\nINSERT INTO t1 VALUES(8264, 54750, 'fifty-four thousand seven hundred fifty');\nINSERT INTO t1 VALUES(8265, 13239, 'thirteen thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(8266, 83927, 'eighty-three thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(8267, 17761, 'seventeen thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(8268, 2368, 'two thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(8269, 7316, 'seven thousand three hundred sixteen');\nINSERT INTO t1 VALUES(8270, 68027, 'sixty-eight thousand twenty-seven');\nINSERT INTO t1 VALUES(8271, 68207, 'sixty-eight thousand two hundred seven');\nINSERT INTO t1 VALUES(8272, 45245, 'forty-five thousand two hundred forty-five');\nINSERT INTO t1 VALUES(8273, 48436, 'forty-eight thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(8274, 32047, 'thirty-two thousand forty-seven');\nINSERT INTO t1 VALUES(8275, 85648, 'eighty-five thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(8276, 87489, 'eighty-seven thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(8277, 97079, 'ninety-seven thousand seventy-nine');\nINSERT INTO t1 VALUES(8278, 24294, 'twenty-four thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(8279, 1127, 'one thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(8280, 57911, 'fifty-seven thousand nine hundred eleven');\nINSERT INTO t1 VALUES(8281, 53131, 'fifty-three thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(8282, 15784, 'fifteen thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(8283, 6518, 'six thousand five hundred eighteen');\nINSERT INTO t1 VALUES(8284, 47301, 'forty-seven thousand three hundred one');\nINSERT INTO t1 VALUES(8285, 88470, 'eighty-eight thousand four hundred seventy');\nINSERT INTO t1 VALUES(8286, 96186, 'ninety-six thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(8287, 78511, 'seventy-eight thousand five hundred eleven');\nINSERT INTO t1 VALUES(8288, 52601, 'fifty-two thousand six hundred one');\nINSERT INTO t1 VALUES(8289, 39772, 'thirty-nine thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(8290, 86958, 'eighty-six thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(8291, 62096, 'sixty-two thousand ninety-six');\nINSERT INTO t1 VALUES(8292, 46616, 'forty-six thousand six hundred sixteen');\nINSERT INTO t1 VALUES(8293, 16013, 'sixteen thousand thirteen');\nINSERT INTO t1 VALUES(8294, 57437, 'fifty-seven thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(8295, 52945, 'fifty-two thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(8296, 7504, 'seven thousand five hundred four');\nINSERT INTO t1 VALUES(8297, 66359, 'sixty-six thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(8298, 21848, 'twenty-one thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(8299, 9834, 'nine thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(8300, 19907, 'nineteen thousand nine hundred seven');\nINSERT INTO t1 VALUES(8301, 36662, 'thirty-six thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(8302, 20527, 'twenty thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(8303, 75486, 'seventy-five thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(8304, 99439, 'ninety-nine thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(8305, 5150, 'five thousand one hundred fifty');\nINSERT INTO t1 VALUES(8306, 7427, 'seven thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(8307, 6568, 'six thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(8308, 1671, 'one thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(8309, 91293, 'ninety-one thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(8310, 30754, 'thirty thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(8311, 17548, 'seventeen thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(8312, 32255, 'thirty-two thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(8313, 3009, 'three thousand nine');\nINSERT INTO t1 VALUES(8314, 19068, 'nineteen thousand sixty-eight');\nINSERT INTO t1 VALUES(8315, 98494, 'ninety-eight thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(8316, 3725, 'three thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(8317, 506, 'five hundred six');\nINSERT INTO t1 VALUES(8318, 20558, 'twenty thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(8319, 9801, 'nine thousand eight hundred one');\nINSERT INTO t1 VALUES(8320, 94764, 'ninety-four thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(8321, 83226, 'eighty-three thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(8322, 46633, 'forty-six thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(8323, 13944, 'thirteen thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(8324, 82733, 'eighty-two thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(8325, 2155, 'two thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(8326, 36675, 'thirty-six thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(8327, 56733, 'fifty-six thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(8328, 73771, 'seventy-three thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(8329, 55822, 'fifty-five thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(8330, 84190, 'eighty-four thousand one hundred ninety');\nINSERT INTO t1 VALUES(8331, 10899, 'ten thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(8332, 74670, 'seventy-four thousand six hundred seventy');\nINSERT INTO t1 VALUES(8333, 41502, 'forty-one thousand five hundred two');\nINSERT INTO t1 VALUES(8334, 76649, 'seventy-six thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(8335, 60368, 'sixty thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(8336, 3265, 'three thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(8337, 86270, 'eighty-six thousand two hundred seventy');\nINSERT INTO t1 VALUES(8338, 15450, 'fifteen thousand four hundred fifty');\nINSERT INTO t1 VALUES(8339, 4271, 'four thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(8340, 94266, 'ninety-four thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(8341, 7172, 'seven thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(8342, 97104, 'ninety-seven thousand one hundred four');\nINSERT INTO t1 VALUES(8343, 96606, 'ninety-six thousand six hundred six');\nINSERT INTO t1 VALUES(8344, 35820, 'thirty-five thousand eight hundred twenty');\nINSERT INTO t1 VALUES(8345, 97848, 'ninety-seven thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(8346, 37904, 'thirty-seven thousand nine hundred four');\nINSERT INTO t1 VALUES(8347, 80083, 'eighty thousand eighty-three');\nINSERT INTO t1 VALUES(8348, 71444, 'seventy-one thousand four hundred forty-four');\nINSERT INTO t1 VALUES(8349, 11778, 'eleven thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(8350, 41361, 'forty-one thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(8351, 51522, 'fifty-one thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(8352, 83954, 'eighty-three thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(8353, 4422, 'four thousand four hundred twenty-two');\nINSERT INTO t1 VALUES(8354, 36420, 'thirty-six thousand four hundred twenty');\nINSERT INTO t1 VALUES(8355, 95149, 'ninety-five thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(8356, 782, 'seven hundred eighty-two');\nINSERT INTO t1 VALUES(8357, 88695, 'eighty-eight thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(8358, 99699, 'ninety-nine thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(8359, 86103, 'eighty-six thousand one hundred three');\nINSERT INTO t1 VALUES(8360, 6403, 'six thousand four hundred three');\nINSERT INTO t1 VALUES(8361, 13147, 'thirteen thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(8362, 48280, 'forty-eight thousand two hundred eighty');\nINSERT INTO t1 VALUES(8363, 90283, 'ninety thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(8364, 21126, 'twenty-one thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(8365, 51269, 'fifty-one thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(8366, 88061, 'eighty-eight thousand sixty-one');\nINSERT INTO t1 VALUES(8367, 38589, 'thirty-eight thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(8368, 46768, 'forty-six thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(8369, 69339, 'sixty-nine thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(8370, 62819, 'sixty-two thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(8371, 39063, 'thirty-nine thousand sixty-three');\nINSERT INTO t1 VALUES(8372, 51602, 'fifty-one thousand six hundred two');\nINSERT INTO t1 VALUES(8373, 5882, 'five thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(8374, 99932, 'ninety-nine thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(8375, 11937, 'eleven thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(8376, 63343, 'sixty-three thousand three hundred forty-three');\nINSERT INTO t1 VALUES(8377, 38759, 'thirty-eight thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(8378, 93921, 'ninety-three thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(8379, 58802, 'fifty-eight thousand eight hundred two');\nINSERT INTO t1 VALUES(8380, 67137, 'sixty-seven thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(8381, 20290, 'twenty thousand two hundred ninety');\nINSERT INTO t1 VALUES(8382, 40506, 'forty thousand five hundred six');\nINSERT INTO t1 VALUES(8383, 36085, 'thirty-six thousand eighty-five');\nINSERT INTO t1 VALUES(8384, 10702, 'ten thousand seven hundred two');\nINSERT INTO t1 VALUES(8385, 7659, 'seven thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(8386, 92872, 'ninety-two thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(8387, 49744, 'forty-nine thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(8388, 29784, 'twenty-nine thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(8389, 45485, 'forty-five thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(8390, 68716, 'sixty-eight thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(8391, 19142, 'nineteen thousand one hundred forty-two');\nINSERT INTO t1 VALUES(8392, 78824, 'seventy-eight thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(8393, 29334, 'twenty-nine thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(8394, 20476, 'twenty thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(8395, 61604, 'sixty-one thousand six hundred four');\nINSERT INTO t1 VALUES(8396, 9696, 'nine thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(8397, 20637, 'twenty thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(8398, 55984, 'fifty-five thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(8399, 1593, 'one thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(8400, 65413, 'sixty-five thousand four hundred thirteen');\nINSERT INTO t1 VALUES(8401, 12533, 'twelve thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(8402, 73306, 'seventy-three thousand three hundred six');\nINSERT INTO t1 VALUES(8403, 11304, 'eleven thousand three hundred four');\nINSERT INTO t1 VALUES(8404, 56972, 'fifty-six thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(8405, 84215, 'eighty-four thousand two hundred fifteen');\nINSERT INTO t1 VALUES(8406, 34196, 'thirty-four thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(8407, 25609, 'twenty-five thousand six hundred nine');\nINSERT INTO t1 VALUES(8408, 45688, 'forty-five thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(8409, 59901, 'fifty-nine thousand nine hundred one');\nINSERT INTO t1 VALUES(8410, 17081, 'seventeen thousand eighty-one');\nINSERT INTO t1 VALUES(8411, 36096, 'thirty-six thousand ninety-six');\nINSERT INTO t1 VALUES(8412, 35695, 'thirty-five thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(8413, 17152, 'seventeen thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(8414, 25704, 'twenty-five thousand seven hundred four');\nINSERT INTO t1 VALUES(8415, 42572, 'forty-two thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(8416, 27259, 'twenty-seven thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(8417, 90836, 'ninety thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(8418, 6939, 'six thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(8419, 38347, 'thirty-eight thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(8420, 73678, 'seventy-three thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(8421, 95019, 'ninety-five thousand nineteen');\nINSERT INTO t1 VALUES(8422, 47953, 'forty-seven thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(8423, 62524, 'sixty-two thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(8424, 82729, 'eighty-two thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(8425, 60257, 'sixty thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(8426, 81872, 'eighty-one thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(8427, 39926, 'thirty-nine thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(8428, 84094, 'eighty-four thousand ninety-four');\nINSERT INTO t1 VALUES(8429, 80123, 'eighty thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(8430, 16654, 'sixteen thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(8431, 38493, 'thirty-eight thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(8432, 98483, 'ninety-eight thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(8433, 84254, 'eighty-four thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(8434, 62035, 'sixty-two thousand thirty-five');\nINSERT INTO t1 VALUES(8435, 87616, 'eighty-seven thousand six hundred sixteen');\nINSERT INTO t1 VALUES(8436, 66715, 'sixty-six thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(8437, 10531, 'ten thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(8438, 42974, 'forty-two thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(8439, 1198, 'one thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(8440, 7613, 'seven thousand six hundred thirteen');\nINSERT INTO t1 VALUES(8441, 43155, 'forty-three thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(8442, 5799, 'five thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(8443, 84987, 'eighty-four thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(8444, 76510, 'seventy-six thousand five hundred ten');\nINSERT INTO t1 VALUES(8445, 42076, 'forty-two thousand seventy-six');\nINSERT INTO t1 VALUES(8446, 4392, 'four thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(8447, 55916, 'fifty-five thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(8448, 19890, 'nineteen thousand eight hundred ninety');\nINSERT INTO t1 VALUES(8449, 20145, 'twenty thousand one hundred forty-five');\nINSERT INTO t1 VALUES(8450, 58067, 'fifty-eight thousand sixty-seven');\nINSERT INTO t1 VALUES(8451, 38718, 'thirty-eight thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(8452, 31072, 'thirty-one thousand seventy-two');\nINSERT INTO t1 VALUES(8453, 30400, 'thirty thousand four hundred');\nINSERT INTO t1 VALUES(8454, 80134, 'eighty thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(8455, 91973, 'ninety-one thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(8456, 25886, 'twenty-five thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(8457, 47270, 'forty-seven thousand two hundred seventy');\nINSERT INTO t1 VALUES(8458, 74943, 'seventy-four thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(8459, 78060, 'seventy-eight thousand sixty');\nINSERT INTO t1 VALUES(8460, 83421, 'eighty-three thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(8461, 37348, 'thirty-seven thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(8462, 15366, 'fifteen thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(8463, 14315, 'fourteen thousand three hundred fifteen');\nINSERT INTO t1 VALUES(8464, 75937, 'seventy-five thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(8465, 12600, 'twelve thousand six hundred');\nINSERT INTO t1 VALUES(8466, 41227, 'forty-one thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(8467, 21381, 'twenty-one thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(8468, 1134, 'one thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(8469, 89927, 'eighty-nine thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(8470, 12476, 'twelve thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(8471, 78344, 'seventy-eight thousand three hundred forty-four');\nINSERT INTO t1 VALUES(8472, 64908, 'sixty-four thousand nine hundred eight');\nINSERT INTO t1 VALUES(8473, 52197, 'fifty-two thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(8474, 39000, 'thirty-nine thousand');\nINSERT INTO t1 VALUES(8475, 70741, 'seventy thousand seven hundred forty-one');\nINSERT INTO t1 VALUES(8476, 9345, 'nine thousand three hundred forty-five');\nINSERT INTO t1 VALUES(8477, 50062, 'fifty thousand sixty-two');\nINSERT INTO t1 VALUES(8478, 59347, 'fifty-nine thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(8479, 31107, 'thirty-one thousand one hundred seven');\nINSERT INTO t1 VALUES(8480, 46342, 'forty-six thousand three hundred forty-two');\nINSERT INTO t1 VALUES(8481, 58200, 'fifty-eight thousand two hundred');\nINSERT INTO t1 VALUES(8482, 5517, 'five thousand five hundred seventeen');\nINSERT INTO t1 VALUES(8483, 31657, 'thirty-one thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(8484, 621, 'six hundred twenty-one');\nINSERT INTO t1 VALUES(8485, 71080, 'seventy-one thousand eighty');\nINSERT INTO t1 VALUES(8486, 65225, 'sixty-five thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(8487, 1599, 'one thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(8488, 95615, 'ninety-five thousand six hundred fifteen');\nINSERT INTO t1 VALUES(8489, 40631, 'forty thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(8490, 94073, 'ninety-four thousand seventy-three');\nINSERT INTO t1 VALUES(8491, 42794, 'forty-two thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(8492, 67162, 'sixty-seven thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(8493, 61880, 'sixty-one thousand eight hundred eighty');\nINSERT INTO t1 VALUES(8494, 96308, 'ninety-six thousand three hundred eight');\nINSERT INTO t1 VALUES(8495, 64078, 'sixty-four thousand seventy-eight');\nINSERT INTO t1 VALUES(8496, 27669, 'twenty-seven thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(8497, 70764, 'seventy thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(8498, 79881, 'seventy-nine thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(8499, 15720, 'fifteen thousand seven hundred twenty');\nINSERT INTO t1 VALUES(8500, 57996, 'fifty-seven thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(8501, 98998, 'ninety-eight thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(8502, 97406, 'ninety-seven thousand four hundred six');\nINSERT INTO t1 VALUES(8503, 27060, 'twenty-seven thousand sixty');\nINSERT INTO t1 VALUES(8504, 70491, 'seventy thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(8505, 93371, 'ninety-three thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(8506, 65482, 'sixty-five thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(8507, 32026, 'thirty-two thousand twenty-six');\nINSERT INTO t1 VALUES(8508, 6613, 'six thousand six hundred thirteen');\nINSERT INTO t1 VALUES(8509, 11039, 'eleven thousand thirty-nine');\nINSERT INTO t1 VALUES(8510, 65925, 'sixty-five thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(8511, 58508, 'fifty-eight thousand five hundred eight');\nINSERT INTO t1 VALUES(8512, 282, 'two hundred eighty-two');\nINSERT INTO t1 VALUES(8513, 27240, 'twenty-seven thousand two hundred forty');\nINSERT INTO t1 VALUES(8514, 26041, 'twenty-six thousand forty-one');\nINSERT INTO t1 VALUES(8515, 52351, 'fifty-two thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(8516, 73920, 'seventy-three thousand nine hundred twenty');\nINSERT INTO t1 VALUES(8517, 82633, 'eighty-two thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(8518, 16675, 'sixteen thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(8519, 75676, 'seventy-five thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(8520, 80878, 'eighty thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(8521, 72784, 'seventy-two thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(8522, 79174, 'seventy-nine thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(8523, 32684, 'thirty-two thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(8524, 2628, 'two thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(8525, 96878, 'ninety-six thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(8526, 4622, 'four thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(8527, 17707, 'seventeen thousand seven hundred seven');\nINSERT INTO t1 VALUES(8528, 35898, 'thirty-five thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(8529, 72117, 'seventy-two thousand one hundred seventeen');\nINSERT INTO t1 VALUES(8530, 66538, 'sixty-six thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(8531, 71761, 'seventy-one thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(8532, 64682, 'sixty-four thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(8533, 76545, 'seventy-six thousand five hundred forty-five');\nINSERT INTO t1 VALUES(8534, 92698, 'ninety-two thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(8535, 67358, 'sixty-seven thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(8536, 38385, 'thirty-eight thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(8537, 93687, 'ninety-three thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(8538, 4009, 'four thousand nine');\nINSERT INTO t1 VALUES(8539, 61389, 'sixty-one thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(8540, 62311, 'sixty-two thousand three hundred eleven');\nINSERT INTO t1 VALUES(8541, 85369, 'eighty-five thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(8542, 1946, 'one thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(8543, 34446, 'thirty-four thousand four hundred forty-six');\nINSERT INTO t1 VALUES(8544, 14799, 'fourteen thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(8545, 68194, 'sixty-eight thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(8546, 83622, 'eighty-three thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(8547, 93622, 'ninety-three thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(8548, 55555, 'fifty-five thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(8549, 9431, 'nine thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(8550, 63543, 'sixty-three thousand five hundred forty-three');\nINSERT INTO t1 VALUES(8551, 91414, 'ninety-one thousand four hundred fourteen');\nINSERT INTO t1 VALUES(8552, 83234, 'eighty-three thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(8553, 2897, 'two thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(8554, 49155, 'forty-nine thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(8555, 3452, 'three thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(8556, 66640, 'sixty-six thousand six hundred forty');\nINSERT INTO t1 VALUES(8557, 1718, 'one thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(8558, 16776, 'sixteen thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(8559, 25667, 'twenty-five thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(8560, 25612, 'twenty-five thousand six hundred twelve');\nINSERT INTO t1 VALUES(8561, 75755, 'seventy-five thousand seven hundred fifty-five');\nINSERT INTO t1 VALUES(8562, 904, 'nine hundred four');\nINSERT INTO t1 VALUES(8563, 26901, 'twenty-six thousand nine hundred one');\nINSERT INTO t1 VALUES(8564, 15031, 'fifteen thousand thirty-one');\nINSERT INTO t1 VALUES(8565, 64921, 'sixty-four thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(8566, 8664, 'eight thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(8567, 81842, 'eighty-one thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(8568, 46878, 'forty-six thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(8569, 25906, 'twenty-five thousand nine hundred six');\nINSERT INTO t1 VALUES(8570, 8072, 'eight thousand seventy-two');\nINSERT INTO t1 VALUES(8571, 48290, 'forty-eight thousand two hundred ninety');\nINSERT INTO t1 VALUES(8572, 45233, 'forty-five thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(8573, 56852, 'fifty-six thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(8574, 61015, 'sixty-one thousand fifteen');\nINSERT INTO t1 VALUES(8575, 26241, 'twenty-six thousand two hundred forty-one');\nINSERT INTO t1 VALUES(8576, 16009, 'sixteen thousand nine');\nINSERT INTO t1 VALUES(8577, 49416, 'forty-nine thousand four hundred sixteen');\nINSERT INTO t1 VALUES(8578, 55326, 'fifty-five thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(8579, 19009, 'nineteen thousand nine');\nINSERT INTO t1 VALUES(8580, 40436, 'forty thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(8581, 75391, 'seventy-five thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(8582, 43693, 'forty-three thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(8583, 29349, 'twenty-nine thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(8584, 75536, 'seventy-five thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(8585, 13748, 'thirteen thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(8586, 37649, 'thirty-seven thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(8587, 32811, 'thirty-two thousand eight hundred eleven');\nINSERT INTO t1 VALUES(8588, 89805, 'eighty-nine thousand eight hundred five');\nINSERT INTO t1 VALUES(8589, 10963, 'ten thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(8590, 83431, 'eighty-three thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(8591, 83364, 'eighty-three thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(8592, 56609, 'fifty-six thousand six hundred nine');\nINSERT INTO t1 VALUES(8593, 33225, 'thirty-three thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(8594, 30865, 'thirty thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(8595, 68031, 'sixty-eight thousand thirty-one');\nINSERT INTO t1 VALUES(8596, 40547, 'forty thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(8597, 41094, 'forty-one thousand ninety-four');\nINSERT INTO t1 VALUES(8598, 55991, 'fifty-five thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(8599, 70823, 'seventy thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(8600, 94694, 'ninety-four thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(8601, 76537, 'seventy-six thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(8602, 73641, 'seventy-three thousand six hundred forty-one');\nINSERT INTO t1 VALUES(8603, 27127, 'twenty-seven thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(8604, 4127, 'four thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(8605, 53606, 'fifty-three thousand six hundred six');\nINSERT INTO t1 VALUES(8606, 80417, 'eighty thousand four hundred seventeen');\nINSERT INTO t1 VALUES(8607, 15446, 'fifteen thousand four hundred forty-six');\nINSERT INTO t1 VALUES(8608, 73223, 'seventy-three thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(8609, 45691, 'forty-five thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(8610, 68767, 'sixty-eight thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(8611, 49386, 'forty-nine thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(8612, 26270, 'twenty-six thousand two hundred seventy');\nINSERT INTO t1 VALUES(8613, 86756, 'eighty-six thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(8614, 37418, 'thirty-seven thousand four hundred eighteen');\nINSERT INTO t1 VALUES(8615, 41824, 'forty-one thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(8616, 84530, 'eighty-four thousand five hundred thirty');\nINSERT INTO t1 VALUES(8617, 25874, 'twenty-five thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(8618, 32567, 'thirty-two thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(8619, 32515, 'thirty-two thousand five hundred fifteen');\nINSERT INTO t1 VALUES(8620, 33600, 'thirty-three thousand six hundred');\nINSERT INTO t1 VALUES(8621, 73741, 'seventy-three thousand seven hundred forty-one');\nINSERT INTO t1 VALUES(8622, 26971, 'twenty-six thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(8623, 11610, 'eleven thousand six hundred ten');\nINSERT INTO t1 VALUES(8624, 61357, 'sixty-one thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(8625, 32783, 'thirty-two thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(8626, 13960, 'thirteen thousand nine hundred sixty');\nINSERT INTO t1 VALUES(8627, 14267, 'fourteen thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(8628, 48587, 'forty-eight thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(8629, 34884, 'thirty-four thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(8630, 15222, 'fifteen thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(8631, 87880, 'eighty-seven thousand eight hundred eighty');\nINSERT INTO t1 VALUES(8632, 64396, 'sixty-four thousand three hundred ninety-six');\nINSERT INTO t1 VALUES(8633, 71618, 'seventy-one thousand six hundred eighteen');\nINSERT INTO t1 VALUES(8634, 89371, 'eighty-nine thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(8635, 19655, 'nineteen thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(8636, 31051, 'thirty-one thousand fifty-one');\nINSERT INTO t1 VALUES(8637, 48566, 'forty-eight thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(8638, 97369, 'ninety-seven thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(8639, 98382, 'ninety-eight thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(8640, 56524, 'fifty-six thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(8641, 92346, 'ninety-two thousand three hundred forty-six');\nINSERT INTO t1 VALUES(8642, 24398, 'twenty-four thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(8643, 62719, 'sixty-two thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(8644, 78673, 'seventy-eight thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(8645, 85012, 'eighty-five thousand twelve');\nINSERT INTO t1 VALUES(8646, 882, 'eight hundred eighty-two');\nINSERT INTO t1 VALUES(8647, 31729, 'thirty-one thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(8648, 81870, 'eighty-one thousand eight hundred seventy');\nINSERT INTO t1 VALUES(8649, 69970, 'sixty-nine thousand nine hundred seventy');\nINSERT INTO t1 VALUES(8650, 22099, 'twenty-two thousand ninety-nine');\nINSERT INTO t1 VALUES(8651, 72459, 'seventy-two thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(8652, 7886, 'seven thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(8653, 47714, 'forty-seven thousand seven hundred fourteen');\nINSERT INTO t1 VALUES(8654, 31019, 'thirty-one thousand nineteen');\nINSERT INTO t1 VALUES(8655, 85498, 'eighty-five thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(8656, 45376, 'forty-five thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(8657, 38233, 'thirty-eight thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(8658, 53408, 'fifty-three thousand four hundred eight');\nINSERT INTO t1 VALUES(8659, 57827, 'fifty-seven thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(8660, 80599, 'eighty thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(8661, 87019, 'eighty-seven thousand nineteen');\nINSERT INTO t1 VALUES(8662, 89214, 'eighty-nine thousand two hundred fourteen');\nINSERT INTO t1 VALUES(8663, 15743, 'fifteen thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(8664, 78152, 'seventy-eight thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(8665, 18657, 'eighteen thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(8666, 72702, 'seventy-two thousand seven hundred two');\nINSERT INTO t1 VALUES(8667, 41441, 'forty-one thousand four hundred forty-one');\nINSERT INTO t1 VALUES(8668, 20121, 'twenty thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(8669, 69314, 'sixty-nine thousand three hundred fourteen');\nINSERT INTO t1 VALUES(8670, 47219, 'forty-seven thousand two hundred nineteen');\nINSERT INTO t1 VALUES(8671, 25109, 'twenty-five thousand one hundred nine');\nINSERT INTO t1 VALUES(8672, 26825, 'twenty-six thousand eight hundred twenty-five');\nINSERT INTO t1 VALUES(8673, 70221, 'seventy thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(8674, 38936, 'thirty-eight thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(8675, 5865, 'five thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(8676, 85839, 'eighty-five thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(8677, 14046, 'fourteen thousand forty-six');\nINSERT INTO t1 VALUES(8678, 39217, 'thirty-nine thousand two hundred seventeen');\nINSERT INTO t1 VALUES(8679, 52099, 'fifty-two thousand ninety-nine');\nINSERT INTO t1 VALUES(8680, 82628, 'eighty-two thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(8681, 3573, 'three thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(8682, 69047, 'sixty-nine thousand forty-seven');\nINSERT INTO t1 VALUES(8683, 45750, 'forty-five thousand seven hundred fifty');\nINSERT INTO t1 VALUES(8684, 69158, 'sixty-nine thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(8685, 79437, 'seventy-nine thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(8686, 75415, 'seventy-five thousand four hundred fifteen');\nINSERT INTO t1 VALUES(8687, 88418, 'eighty-eight thousand four hundred eighteen');\nINSERT INTO t1 VALUES(8688, 86518, 'eighty-six thousand five hundred eighteen');\nINSERT INTO t1 VALUES(8689, 86474, 'eighty-six thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(8690, 25703, 'twenty-five thousand seven hundred three');\nINSERT INTO t1 VALUES(8691, 57655, 'fifty-seven thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(8692, 66491, 'sixty-six thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(8693, 96370, 'ninety-six thousand three hundred seventy');\nINSERT INTO t1 VALUES(8694, 50589, 'fifty thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(8695, 63020, 'sixty-three thousand twenty');\nINSERT INTO t1 VALUES(8696, 57858, 'fifty-seven thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(8697, 11788, 'eleven thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(8698, 31690, 'thirty-one thousand six hundred ninety');\nINSERT INTO t1 VALUES(8699, 61600, 'sixty-one thousand six hundred');\nINSERT INTO t1 VALUES(8700, 48597, 'forty-eight thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(8701, 40679, 'forty thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(8702, 59265, 'fifty-nine thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(8703, 75873, 'seventy-five thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(8704, 44527, 'forty-four thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(8705, 69765, 'sixty-nine thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(8706, 96973, 'ninety-six thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(8707, 53747, 'fifty-three thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(8708, 54431, 'fifty-four thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(8709, 10026, 'ten thousand twenty-six');\nINSERT INTO t1 VALUES(8710, 53208, 'fifty-three thousand two hundred eight');\nINSERT INTO t1 VALUES(8711, 10339, 'ten thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(8712, 14835, 'fourteen thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(8713, 68463, 'sixty-eight thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(8714, 83520, 'eighty-three thousand five hundred twenty');\nINSERT INTO t1 VALUES(8715, 95294, 'ninety-five thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(8716, 30982, 'thirty thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(8717, 9889, 'nine thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(8718, 61939, 'sixty-one thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(8719, 42544, 'forty-two thousand five hundred forty-four');\nINSERT INTO t1 VALUES(8720, 91852, 'ninety-one thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(8721, 65872, 'sixty-five thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(8722, 96842, 'ninety-six thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(8723, 78749, 'seventy-eight thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(8724, 37733, 'thirty-seven thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(8725, 57498, 'fifty-seven thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(8726, 94314, 'ninety-four thousand three hundred fourteen');\nINSERT INTO t1 VALUES(8727, 75159, 'seventy-five thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(8728, 50083, 'fifty thousand eighty-three');\nINSERT INTO t1 VALUES(8729, 34706, 'thirty-four thousand seven hundred six');\nINSERT INTO t1 VALUES(8730, 11032, 'eleven thousand thirty-two');\nINSERT INTO t1 VALUES(8731, 2999, 'two thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(8732, 92259, 'ninety-two thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(8733, 47808, 'forty-seven thousand eight hundred eight');\nINSERT INTO t1 VALUES(8734, 74638, 'seventy-four thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(8735, 47624, 'forty-seven thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(8736, 7692, 'seven thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(8737, 18359, 'eighteen thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(8738, 57751, 'fifty-seven thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(8739, 40324, 'forty thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(8740, 26688, 'twenty-six thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(8741, 2184, 'two thousand one hundred eighty-four');\nINSERT INTO t1 VALUES(8742, 87713, 'eighty-seven thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(8743, 98200, 'ninety-eight thousand two hundred');\nINSERT INTO t1 VALUES(8744, 62643, 'sixty-two thousand six hundred forty-three');\nINSERT INTO t1 VALUES(8745, 58770, 'fifty-eight thousand seven hundred seventy');\nINSERT INTO t1 VALUES(8746, 25753, 'twenty-five thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(8747, 4907, 'four thousand nine hundred seven');\nINSERT INTO t1 VALUES(8748, 35200, 'thirty-five thousand two hundred');\nINSERT INTO t1 VALUES(8749, 11141, 'eleven thousand one hundred forty-one');\nINSERT INTO t1 VALUES(8750, 64256, 'sixty-four thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(8751, 42537, 'forty-two thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(8752, 48904, 'forty-eight thousand nine hundred four');\nINSERT INTO t1 VALUES(8753, 68681, 'sixty-eight thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(8754, 94961, 'ninety-four thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(8755, 39700, 'thirty-nine thousand seven hundred');\nINSERT INTO t1 VALUES(8756, 20941, 'twenty thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(8757, 85464, 'eighty-five thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(8758, 85147, 'eighty-five thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(8759, 35672, 'thirty-five thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(8760, 68155, 'sixty-eight thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(8761, 59749, 'fifty-nine thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(8762, 76977, 'seventy-six thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(8763, 33485, 'thirty-three thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(8764, 78253, 'seventy-eight thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(8765, 51673, 'fifty-one thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(8766, 28183, 'twenty-eight thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(8767, 33160, 'thirty-three thousand one hundred sixty');\nINSERT INTO t1 VALUES(8768, 90551, 'ninety thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(8769, 95160, 'ninety-five thousand one hundred sixty');\nINSERT INTO t1 VALUES(8770, 28305, 'twenty-eight thousand three hundred five');\nINSERT INTO t1 VALUES(8771, 76924, 'seventy-six thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(8772, 26574, 'twenty-six thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(8773, 4549, 'four thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(8774, 701, 'seven hundred one');\nINSERT INTO t1 VALUES(8775, 32740, 'thirty-two thousand seven hundred forty');\nINSERT INTO t1 VALUES(8776, 49294, 'forty-nine thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(8777, 85439, 'eighty-five thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(8778, 46889, 'forty-six thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(8779, 14110, 'fourteen thousand one hundred ten');\nINSERT INTO t1 VALUES(8780, 51231, 'fifty-one thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(8781, 78981, 'seventy-eight thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(8782, 71960, 'seventy-one thousand nine hundred sixty');\nINSERT INTO t1 VALUES(8783, 80518, 'eighty thousand five hundred eighteen');\nINSERT INTO t1 VALUES(8784, 55691, 'fifty-five thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(8785, 24598, 'twenty-four thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(8786, 34686, 'thirty-four thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(8787, 91541, 'ninety-one thousand five hundred forty-one');\nINSERT INTO t1 VALUES(8788, 71566, 'seventy-one thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(8789, 94934, 'ninety-four thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(8790, 8406, 'eight thousand four hundred six');\nINSERT INTO t1 VALUES(8791, 10144, 'ten thousand one hundred forty-four');\nINSERT INTO t1 VALUES(8792, 64286, 'sixty-four thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(8793, 40614, 'forty thousand six hundred fourteen');\nINSERT INTO t1 VALUES(8794, 99109, 'ninety-nine thousand one hundred nine');\nINSERT INTO t1 VALUES(8795, 53610, 'fifty-three thousand six hundred ten');\nINSERT INTO t1 VALUES(8796, 11270, 'eleven thousand two hundred seventy');\nINSERT INTO t1 VALUES(8797, 12663, 'twelve thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(8798, 48236, 'forty-eight thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(8799, 19399, 'nineteen thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(8800, 71957, 'seventy-one thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(8801, 52223, 'fifty-two thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(8802, 44368, 'forty-four thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(8803, 86149, 'eighty-six thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(8804, 68326, 'sixty-eight thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(8805, 1830, 'one thousand eight hundred thirty');\nINSERT INTO t1 VALUES(8806, 57308, 'fifty-seven thousand three hundred eight');\nINSERT INTO t1 VALUES(8807, 36276, 'thirty-six thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(8808, 55631, 'fifty-five thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(8809, 9015, 'nine thousand fifteen');\nINSERT INTO t1 VALUES(8810, 72513, 'seventy-two thousand five hundred thirteen');\nINSERT INTO t1 VALUES(8811, 29675, 'twenty-nine thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(8812, 52515, 'fifty-two thousand five hundred fifteen');\nINSERT INTO t1 VALUES(8813, 22657, 'twenty-two thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(8814, 57285, 'fifty-seven thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(8815, 53314, 'fifty-three thousand three hundred fourteen');\nINSERT INTO t1 VALUES(8816, 28590, 'twenty-eight thousand five hundred ninety');\nINSERT INTO t1 VALUES(8817, 20613, 'twenty thousand six hundred thirteen');\nINSERT INTO t1 VALUES(8818, 99497, 'ninety-nine thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(8819, 61554, 'sixty-one thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(8820, 34483, 'thirty-four thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(8821, 96089, 'ninety-six thousand eighty-nine');\nINSERT INTO t1 VALUES(8822, 37177, 'thirty-seven thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(8823, 880, 'eight hundred eighty');\nINSERT INTO t1 VALUES(8824, 18842, 'eighteen thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(8825, 83168, 'eighty-three thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(8826, 14575, 'fourteen thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(8827, 68838, 'sixty-eight thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(8828, 7458, 'seven thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(8829, 58699, 'fifty-eight thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(8830, 88276, 'eighty-eight thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(8831, 93750, 'ninety-three thousand seven hundred fifty');\nINSERT INTO t1 VALUES(8832, 35251, 'thirty-five thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(8833, 210, 'two hundred ten');\nINSERT INTO t1 VALUES(8834, 78018, 'seventy-eight thousand eighteen');\nINSERT INTO t1 VALUES(8835, 6966, 'six thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(8836, 16429, 'sixteen thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(8837, 14358, 'fourteen thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(8838, 26015, 'twenty-six thousand fifteen');\nINSERT INTO t1 VALUES(8839, 39842, 'thirty-nine thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(8840, 68189, 'sixty-eight thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(8841, 80812, 'eighty thousand eight hundred twelve');\nINSERT INTO t1 VALUES(8842, 67240, 'sixty-seven thousand two hundred forty');\nINSERT INTO t1 VALUES(8843, 94285, 'ninety-four thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(8844, 55384, 'fifty-five thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(8845, 98392, 'ninety-eight thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(8846, 82299, 'eighty-two thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(8847, 35718, 'thirty-five thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(8848, 62221, 'sixty-two thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(8849, 19205, 'nineteen thousand two hundred five');\nINSERT INTO t1 VALUES(8850, 88084, 'eighty-eight thousand eighty-four');\nINSERT INTO t1 VALUES(8851, 74561, 'seventy-four thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(8852, 85752, 'eighty-five thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(8853, 56172, 'fifty-six thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(8854, 61917, 'sixty-one thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(8855, 11929, 'eleven thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(8856, 69536, 'sixty-nine thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(8857, 55579, 'fifty-five thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(8858, 66126, 'sixty-six thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(8859, 2556, 'two thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(8860, 89574, 'eighty-nine thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(8861, 88471, 'eighty-eight thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(8862, 36197, 'thirty-six thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(8863, 81733, 'eighty-one thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(8864, 34762, 'thirty-four thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(8865, 84358, 'eighty-four thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(8866, 69644, 'sixty-nine thousand six hundred forty-four');\nINSERT INTO t1 VALUES(8867, 6933, 'six thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(8868, 73878, 'seventy-three thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(8869, 22783, 'twenty-two thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(8870, 90731, 'ninety thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(8871, 59474, 'fifty-nine thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(8872, 54650, 'fifty-four thousand six hundred fifty');\nINSERT INTO t1 VALUES(8873, 48841, 'forty-eight thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(8874, 58843, 'fifty-eight thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(8875, 52220, 'fifty-two thousand two hundred twenty');\nINSERT INTO t1 VALUES(8876, 70624, 'seventy thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(8877, 20497, 'twenty thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(8878, 49487, 'forty-nine thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(8879, 51597, 'fifty-one thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(8880, 3604, 'three thousand six hundred four');\nINSERT INTO t1 VALUES(8881, 88484, 'eighty-eight thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(8882, 89301, 'eighty-nine thousand three hundred one');\nINSERT INTO t1 VALUES(8883, 82644, 'eighty-two thousand six hundred forty-four');\nINSERT INTO t1 VALUES(8884, 82481, 'eighty-two thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(8885, 31614, 'thirty-one thousand six hundred fourteen');\nINSERT INTO t1 VALUES(8886, 21406, 'twenty-one thousand four hundred six');\nINSERT INTO t1 VALUES(8887, 53165, 'fifty-three thousand one hundred sixty-five');\nINSERT INTO t1 VALUES(8888, 58747, 'fifty-eight thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(8889, 94031, 'ninety-four thousand thirty-one');\nINSERT INTO t1 VALUES(8890, 83803, 'eighty-three thousand eight hundred three');\nINSERT INTO t1 VALUES(8891, 11730, 'eleven thousand seven hundred thirty');\nINSERT INTO t1 VALUES(8892, 85537, 'eighty-five thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(8893, 99226, 'ninety-nine thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(8894, 65156, 'sixty-five thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(8895, 30206, 'thirty thousand two hundred six');\nINSERT INTO t1 VALUES(8896, 39619, 'thirty-nine thousand six hundred nineteen');\nINSERT INTO t1 VALUES(8897, 98731, 'ninety-eight thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(8898, 3652, 'three thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(8899, 43619, 'forty-three thousand six hundred nineteen');\nINSERT INTO t1 VALUES(8900, 34954, 'thirty-four thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(8901, 4934, 'four thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(8902, 3003, 'three thousand three');\nINSERT INTO t1 VALUES(8903, 37261, 'thirty-seven thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(8904, 98834, 'ninety-eight thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(8905, 90488, 'ninety thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(8906, 2589, 'two thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(8907, 26091, 'twenty-six thousand ninety-one');\nINSERT INTO t1 VALUES(8908, 69473, 'sixty-nine thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(8909, 29453, 'twenty-nine thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(8910, 92714, 'ninety-two thousand seven hundred fourteen');\nINSERT INTO t1 VALUES(8911, 88619, 'eighty-eight thousand six hundred nineteen');\nINSERT INTO t1 VALUES(8912, 47777, 'forty-seven thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(8913, 58762, 'fifty-eight thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(8914, 63883, 'sixty-three thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(8915, 47167, 'forty-seven thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(8916, 69351, 'sixty-nine thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(8917, 425, 'four hundred twenty-five');\nINSERT INTO t1 VALUES(8918, 96008, 'ninety-six thousand eight');\nINSERT INTO t1 VALUES(8919, 53852, 'fifty-three thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(8920, 78781, 'seventy-eight thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(8921, 56693, 'fifty-six thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(8922, 17364, 'seventeen thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(8923, 9964, 'nine thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(8924, 48135, 'forty-eight thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(8925, 81819, 'eighty-one thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(8926, 96110, 'ninety-six thousand one hundred ten');\nINSERT INTO t1 VALUES(8927, 27779, 'twenty-seven thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(8928, 97967, 'ninety-seven thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(8929, 79495, 'seventy-nine thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(8930, 71892, 'seventy-one thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(8931, 12272, 'twelve thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(8932, 3993, 'three thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(8933, 77629, 'seventy-seven thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(8934, 86994, 'eighty-six thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(8935, 42421, 'forty-two thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(8936, 57377, 'fifty-seven thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(8937, 67224, 'sixty-seven thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(8938, 60444, 'sixty thousand four hundred forty-four');\nINSERT INTO t1 VALUES(8939, 3457, 'three thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(8940, 86250, 'eighty-six thousand two hundred fifty');\nINSERT INTO t1 VALUES(8941, 96085, 'ninety-six thousand eighty-five');\nINSERT INTO t1 VALUES(8942, 66866, 'sixty-six thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(8943, 55275, 'fifty-five thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(8944, 79807, 'seventy-nine thousand eight hundred seven');\nINSERT INTO t1 VALUES(8945, 37799, 'thirty-seven thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(8946, 77676, 'seventy-seven thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(8947, 61377, 'sixty-one thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(8948, 78452, 'seventy-eight thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(8949, 77354, 'seventy-seven thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(8950, 23296, 'twenty-three thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(8951, 67611, 'sixty-seven thousand six hundred eleven');\nINSERT INTO t1 VALUES(8952, 8856, 'eight thousand eight hundred fifty-six');\nINSERT INTO t1 VALUES(8953, 85301, 'eighty-five thousand three hundred one');\nINSERT INTO t1 VALUES(8954, 45603, 'forty-five thousand six hundred three');\nINSERT INTO t1 VALUES(8955, 83552, 'eighty-three thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(8956, 67500, 'sixty-seven thousand five hundred');\nINSERT INTO t1 VALUES(8957, 70408, 'seventy thousand four hundred eight');\nINSERT INTO t1 VALUES(8958, 66487, 'sixty-six thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(8959, 89129, 'eighty-nine thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(8960, 52042, 'fifty-two thousand forty-two');\nINSERT INTO t1 VALUES(8961, 97591, 'ninety-seven thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(8962, 6453, 'six thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(8963, 87536, 'eighty-seven thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(8964, 74148, 'seventy-four thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(8965, 60595, 'sixty thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(8966, 50917, 'fifty thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(8967, 43198, 'forty-three thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(8968, 28830, 'twenty-eight thousand eight hundred thirty');\nINSERT INTO t1 VALUES(8969, 95466, 'ninety-five thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(8970, 84053, 'eighty-four thousand fifty-three');\nINSERT INTO t1 VALUES(8971, 4692, 'four thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(8972, 49695, 'forty-nine thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(8973, 13298, 'thirteen thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(8974, 44981, 'forty-four thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(8975, 41475, 'forty-one thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(8976, 71260, 'seventy-one thousand two hundred sixty');\nINSERT INTO t1 VALUES(8977, 78493, 'seventy-eight thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(8978, 46212, 'forty-six thousand two hundred twelve');\nINSERT INTO t1 VALUES(8979, 48142, 'forty-eight thousand one hundred forty-two');\nINSERT INTO t1 VALUES(8980, 58211, 'fifty-eight thousand two hundred eleven');\nINSERT INTO t1 VALUES(8981, 13142, 'thirteen thousand one hundred forty-two');\nINSERT INTO t1 VALUES(8982, 93488, 'ninety-three thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(8983, 77180, 'seventy-seven thousand one hundred eighty');\nINSERT INTO t1 VALUES(8984, 99589, 'ninety-nine thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(8985, 4102, 'four thousand one hundred two');\nINSERT INTO t1 VALUES(8986, 99449, 'ninety-nine thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(8987, 29479, 'twenty-nine thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(8988, 10558, 'ten thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(8989, 1320, 'one thousand three hundred twenty');\nINSERT INTO t1 VALUES(8990, 92412, 'ninety-two thousand four hundred twelve');\nINSERT INTO t1 VALUES(8991, 90984, 'ninety thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(8992, 97962, 'ninety-seven thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(8993, 50, 'fifty');\nINSERT INTO t1 VALUES(8994, 56346, 'fifty-six thousand three hundred forty-six');\nINSERT INTO t1 VALUES(8995, 97462, 'ninety-seven thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(8996, 6764, 'six thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(8997, 64431, 'sixty-four thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(8998, 91146, 'ninety-one thousand one hundred forty-six');\nINSERT INTO t1 VALUES(8999, 34599, 'thirty-four thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(9000, 25283, 'twenty-five thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(9001, 31615, 'thirty-one thousand six hundred fifteen');\nINSERT INTO t1 VALUES(9002, 21853, 'twenty-one thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(9003, 95123, 'ninety-five thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(9004, 67677, 'sixty-seven thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(9005, 35087, 'thirty-five thousand eighty-seven');\nINSERT INTO t1 VALUES(9006, 79790, 'seventy-nine thousand seven hundred ninety');\nINSERT INTO t1 VALUES(9007, 24021, 'twenty-four thousand twenty-one');\nINSERT INTO t1 VALUES(9008, 46498, 'forty-six thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(9009, 41891, 'forty-one thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(9010, 49721, 'forty-nine thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(9011, 55596, 'fifty-five thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(9012, 93659, 'ninety-three thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(9013, 80420, 'eighty thousand four hundred twenty');\nINSERT INTO t1 VALUES(9014, 29544, 'twenty-nine thousand five hundred forty-four');\nINSERT INTO t1 VALUES(9015, 63464, 'sixty-three thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(9016, 79533, 'seventy-nine thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(9017, 65348, 'sixty-five thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(9018, 66977, 'sixty-six thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(9019, 14163, 'fourteen thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(9020, 91206, 'ninety-one thousand two hundred six');\nINSERT INTO t1 VALUES(9021, 49224, 'forty-nine thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(9022, 79543, 'seventy-nine thousand five hundred forty-three');\nINSERT INTO t1 VALUES(9023, 37417, 'thirty-seven thousand four hundred seventeen');\nINSERT INTO t1 VALUES(9024, 16324, 'sixteen thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(9025, 2763, 'two thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(9026, 75228, 'seventy-five thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(9027, 94151, 'ninety-four thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(9028, 60686, 'sixty thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(9029, 62740, 'sixty-two thousand seven hundred forty');\nINSERT INTO t1 VALUES(9030, 73968, 'seventy-three thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(9031, 54685, 'fifty-four thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(9032, 37135, 'thirty-seven thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(9033, 87186, 'eighty-seven thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(9034, 10705, 'ten thousand seven hundred five');\nINSERT INTO t1 VALUES(9035, 11630, 'eleven thousand six hundred thirty');\nINSERT INTO t1 VALUES(9036, 52779, 'fifty-two thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(9037, 43195, 'forty-three thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(9038, 21498, 'twenty-one thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(9039, 81707, 'eighty-one thousand seven hundred seven');\nINSERT INTO t1 VALUES(9040, 61777, 'sixty-one thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(9041, 95233, 'ninety-five thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(9042, 72200, 'seventy-two thousand two hundred');\nINSERT INTO t1 VALUES(9043, 52924, 'fifty-two thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(9044, 33318, 'thirty-three thousand three hundred eighteen');\nINSERT INTO t1 VALUES(9045, 49694, 'forty-nine thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(9046, 6234, 'six thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(9047, 50370, 'fifty thousand three hundred seventy');\nINSERT INTO t1 VALUES(9048, 65729, 'sixty-five thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(9049, 14306, 'fourteen thousand three hundred six');\nINSERT INTO t1 VALUES(9050, 8983, 'eight thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(9051, 21977, 'twenty-one thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(9052, 22754, 'twenty-two thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(9053, 64444, 'sixty-four thousand four hundred forty-four');\nINSERT INTO t1 VALUES(9054, 46440, 'forty-six thousand four hundred forty');\nINSERT INTO t1 VALUES(9055, 36223, 'thirty-six thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(9056, 8934, 'eight thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(9057, 7680, 'seven thousand six hundred eighty');\nINSERT INTO t1 VALUES(9058, 17683, 'seventeen thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(9059, 52572, 'fifty-two thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(9060, 87574, 'eighty-seven thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(9061, 34111, 'thirty-four thousand one hundred eleven');\nINSERT INTO t1 VALUES(9062, 18909, 'eighteen thousand nine hundred nine');\nINSERT INTO t1 VALUES(9063, 86215, 'eighty-six thousand two hundred fifteen');\nINSERT INTO t1 VALUES(9064, 84824, 'eighty-four thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(9065, 49276, 'forty-nine thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(9066, 26668, 'twenty-six thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(9067, 75857, 'seventy-five thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(9068, 99456, 'ninety-nine thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(9069, 57375, 'fifty-seven thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(9070, 26330, 'twenty-six thousand three hundred thirty');\nINSERT INTO t1 VALUES(9071, 26790, 'twenty-six thousand seven hundred ninety');\nINSERT INTO t1 VALUES(9072, 15334, 'fifteen thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(9073, 42690, 'forty-two thousand six hundred ninety');\nINSERT INTO t1 VALUES(9074, 26198, 'twenty-six thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(9075, 87505, 'eighty-seven thousand five hundred five');\nINSERT INTO t1 VALUES(9076, 6196, 'six thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(9077, 75123, 'seventy-five thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(9078, 70223, 'seventy thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(9079, 40170, 'forty thousand one hundred seventy');\nINSERT INTO t1 VALUES(9080, 30460, 'thirty thousand four hundred sixty');\nINSERT INTO t1 VALUES(9081, 76895, 'seventy-six thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(9082, 33435, 'thirty-three thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(9083, 26389, 'twenty-six thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(9084, 60095, 'sixty thousand ninety-five');\nINSERT INTO t1 VALUES(9085, 58670, 'fifty-eight thousand six hundred seventy');\nINSERT INTO t1 VALUES(9086, 68817, 'sixty-eight thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(9087, 48188, 'forty-eight thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(9088, 28911, 'twenty-eight thousand nine hundred eleven');\nINSERT INTO t1 VALUES(9089, 67075, 'sixty-seven thousand seventy-five');\nINSERT INTO t1 VALUES(9090, 11433, 'eleven thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(9091, 62938, 'sixty-two thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(9092, 54750, 'fifty-four thousand seven hundred fifty');\nINSERT INTO t1 VALUES(9093, 14236, 'fourteen thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(9094, 15781, 'fifteen thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(9095, 25575, 'twenty-five thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(9096, 28818, 'twenty-eight thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(9097, 9151, 'nine thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(9098, 59512, 'fifty-nine thousand five hundred twelve');\nINSERT INTO t1 VALUES(9099, 74106, 'seventy-four thousand one hundred six');\nINSERT INTO t1 VALUES(9100, 82669, 'eighty-two thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(9101, 61015, 'sixty-one thousand fifteen');\nINSERT INTO t1 VALUES(9102, 28128, 'twenty-eight thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(9103, 75150, 'seventy-five thousand one hundred fifty');\nINSERT INTO t1 VALUES(9104, 9027, 'nine thousand twenty-seven');\nINSERT INTO t1 VALUES(9105, 23880, 'twenty-three thousand eight hundred eighty');\nINSERT INTO t1 VALUES(9106, 40274, 'forty thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(9107, 73115, 'seventy-three thousand one hundred fifteen');\nINSERT INTO t1 VALUES(9108, 61485, 'sixty-one thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(9109, 25420, 'twenty-five thousand four hundred twenty');\nINSERT INTO t1 VALUES(9110, 66954, 'sixty-six thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(9111, 34886, 'thirty-four thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(9112, 91315, 'ninety-one thousand three hundred fifteen');\nINSERT INTO t1 VALUES(9113, 71897, 'seventy-one thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(9114, 20908, 'twenty thousand nine hundred eight');\nINSERT INTO t1 VALUES(9115, 71760, 'seventy-one thousand seven hundred sixty');\nINSERT INTO t1 VALUES(9116, 91845, 'ninety-one thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(9117, 50211, 'fifty thousand two hundred eleven');\nINSERT INTO t1 VALUES(9118, 70079, 'seventy thousand seventy-nine');\nINSERT INTO t1 VALUES(9119, 10289, 'ten thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(9120, 51887, 'fifty-one thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(9121, 83097, 'eighty-three thousand ninety-seven');\nINSERT INTO t1 VALUES(9122, 26234, 'twenty-six thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(9123, 20601, 'twenty thousand six hundred one');\nINSERT INTO t1 VALUES(9124, 30266, 'thirty thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(9125, 98571, 'ninety-eight thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(9126, 40822, 'forty thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(9127, 1802, 'one thousand eight hundred two');\nINSERT INTO t1 VALUES(9128, 89150, 'eighty-nine thousand one hundred fifty');\nINSERT INTO t1 VALUES(9129, 70715, 'seventy thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(9130, 43967, 'forty-three thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(9131, 88634, 'eighty-eight thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(9132, 10904, 'ten thousand nine hundred four');\nINSERT INTO t1 VALUES(9133, 39091, 'thirty-nine thousand ninety-one');\nINSERT INTO t1 VALUES(9134, 9817, 'nine thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(9135, 99261, 'ninety-nine thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(9136, 22716, 'twenty-two thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(9137, 5329, 'five thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(9138, 94621, 'ninety-four thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(9139, 98860, 'ninety-eight thousand eight hundred sixty');\nINSERT INTO t1 VALUES(9140, 48049, 'forty-eight thousand forty-nine');\nINSERT INTO t1 VALUES(9141, 97811, 'ninety-seven thousand eight hundred eleven');\nINSERT INTO t1 VALUES(9142, 63630, 'sixty-three thousand six hundred thirty');\nINSERT INTO t1 VALUES(9143, 62542, 'sixty-two thousand five hundred forty-two');\nINSERT INTO t1 VALUES(9144, 62895, 'sixty-two thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(9145, 93466, 'ninety-three thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(9146, 69876, 'sixty-nine thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(9147, 3926, 'three thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(9148, 7599, 'seven thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(9149, 10103, 'ten thousand one hundred three');\nINSERT INTO t1 VALUES(9150, 53163, 'fifty-three thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(9151, 2708, 'two thousand seven hundred eight');\nINSERT INTO t1 VALUES(9152, 78197, 'seventy-eight thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(9153, 91219, 'ninety-one thousand two hundred nineteen');\nINSERT INTO t1 VALUES(9154, 77660, 'seventy-seven thousand six hundred sixty');\nINSERT INTO t1 VALUES(9155, 28410, 'twenty-eight thousand four hundred ten');\nINSERT INTO t1 VALUES(9156, 28616, 'twenty-eight thousand six hundred sixteen');\nINSERT INTO t1 VALUES(9157, 74226, 'seventy-four thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(9158, 78214, 'seventy-eight thousand two hundred fourteen');\nINSERT INTO t1 VALUES(9159, 76972, 'seventy-six thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(9160, 33301, 'thirty-three thousand three hundred one');\nINSERT INTO t1 VALUES(9161, 11350, 'eleven thousand three hundred fifty');\nINSERT INTO t1 VALUES(9162, 75938, 'seventy-five thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(9163, 38335, 'thirty-eight thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(9164, 25562, 'twenty-five thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(9165, 64909, 'sixty-four thousand nine hundred nine');\nINSERT INTO t1 VALUES(9166, 12391, 'twelve thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(9167, 9745, 'nine thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(9168, 85491, 'eighty-five thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(9169, 39665, 'thirty-nine thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(9170, 38121, 'thirty-eight thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(9171, 18911, 'eighteen thousand nine hundred eleven');\nINSERT INTO t1 VALUES(9172, 49948, 'forty-nine thousand nine hundred forty-eight');\nINSERT INTO t1 VALUES(9173, 34231, 'thirty-four thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(9174, 17303, 'seventeen thousand three hundred three');\nINSERT INTO t1 VALUES(9175, 92880, 'ninety-two thousand eight hundred eighty');\nINSERT INTO t1 VALUES(9176, 12373, 'twelve thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(9177, 42849, 'forty-two thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(9178, 65940, 'sixty-five thousand nine hundred forty');\nINSERT INTO t1 VALUES(9179, 25496, 'twenty-five thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(9180, 22427, 'twenty-two thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(9181, 62492, 'sixty-two thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(9182, 51703, 'fifty-one thousand seven hundred three');\nINSERT INTO t1 VALUES(9183, 28441, 'twenty-eight thousand four hundred forty-one');\nINSERT INTO t1 VALUES(9184, 41392, 'forty-one thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(9185, 23998, 'twenty-three thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(9186, 23465, 'twenty-three thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(9187, 86701, 'eighty-six thousand seven hundred one');\nINSERT INTO t1 VALUES(9188, 3386, 'three thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(9189, 18479, 'eighteen thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(9190, 41028, 'forty-one thousand twenty-eight');\nINSERT INTO t1 VALUES(9191, 43534, 'forty-three thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(9192, 56910, 'fifty-six thousand nine hundred ten');\nINSERT INTO t1 VALUES(9193, 50972, 'fifty thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(9194, 52735, 'fifty-two thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(9195, 83260, 'eighty-three thousand two hundred sixty');\nINSERT INTO t1 VALUES(9196, 28559, 'twenty-eight thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(9197, 53247, 'fifty-three thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(9198, 50403, 'fifty thousand four hundred three');\nINSERT INTO t1 VALUES(9199, 13782, 'thirteen thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(9200, 78983, 'seventy-eight thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(9201, 62662, 'sixty-two thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(9202, 56112, 'fifty-six thousand one hundred twelve');\nINSERT INTO t1 VALUES(9203, 53341, 'fifty-three thousand three hundred forty-one');\nINSERT INTO t1 VALUES(9204, 56046, 'fifty-six thousand forty-six');\nINSERT INTO t1 VALUES(9205, 39859, 'thirty-nine thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(9206, 39345, 'thirty-nine thousand three hundred forty-five');\nINSERT INTO t1 VALUES(9207, 29125, 'twenty-nine thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(9208, 71383, 'seventy-one thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(9209, 21209, 'twenty-one thousand two hundred nine');\nINSERT INTO t1 VALUES(9210, 28644, 'twenty-eight thousand six hundred forty-four');\nINSERT INTO t1 VALUES(9211, 2056, 'two thousand fifty-six');\nINSERT INTO t1 VALUES(9212, 53504, 'fifty-three thousand five hundred four');\nINSERT INTO t1 VALUES(9213, 81688, 'eighty-one thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(9214, 13042, 'thirteen thousand forty-two');\nINSERT INTO t1 VALUES(9215, 74513, 'seventy-four thousand five hundred thirteen');\nINSERT INTO t1 VALUES(9216, 7582, 'seven thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(9217, 76992, 'seventy-six thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(9218, 91703, 'ninety-one thousand seven hundred three');\nINSERT INTO t1 VALUES(9219, 88015, 'eighty-eight thousand fifteen');\nINSERT INTO t1 VALUES(9220, 77106, 'seventy-seven thousand one hundred six');\nINSERT INTO t1 VALUES(9221, 86493, 'eighty-six thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(9222, 63645, 'sixty-three thousand six hundred forty-five');\nINSERT INTO t1 VALUES(9223, 86859, 'eighty-six thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(9224, 10078, 'ten thousand seventy-eight');\nINSERT INTO t1 VALUES(9225, 43217, 'forty-three thousand two hundred seventeen');\nINSERT INTO t1 VALUES(9226, 76779, 'seventy-six thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(9227, 5600, 'five thousand six hundred');\nINSERT INTO t1 VALUES(9228, 55313, 'fifty-five thousand three hundred thirteen');\nINSERT INTO t1 VALUES(9229, 52936, 'fifty-two thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(9230, 92046, 'ninety-two thousand forty-six');\nINSERT INTO t1 VALUES(9231, 79926, 'seventy-nine thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(9232, 73271, 'seventy-three thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(9233, 57064, 'fifty-seven thousand sixty-four');\nINSERT INTO t1 VALUES(9234, 90770, 'ninety thousand seven hundred seventy');\nINSERT INTO t1 VALUES(9235, 19694, 'nineteen thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(9236, 46097, 'forty-six thousand ninety-seven');\nINSERT INTO t1 VALUES(9237, 13161, 'thirteen thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(9238, 66883, 'sixty-six thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(9239, 50249, 'fifty thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(9240, 3271, 'three thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(9241, 77250, 'seventy-seven thousand two hundred fifty');\nINSERT INTO t1 VALUES(9242, 95729, 'ninety-five thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(9243, 24615, 'twenty-four thousand six hundred fifteen');\nINSERT INTO t1 VALUES(9244, 75406, 'seventy-five thousand four hundred six');\nINSERT INTO t1 VALUES(9245, 80657, 'eighty thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(9246, 45909, 'forty-five thousand nine hundred nine');\nINSERT INTO t1 VALUES(9247, 51913, 'fifty-one thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(9248, 56399, 'fifty-six thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(9249, 40598, 'forty thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(9250, 2367, 'two thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(9251, 40913, 'forty thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(9252, 45408, 'forty-five thousand four hundred eight');\nINSERT INTO t1 VALUES(9253, 72276, 'seventy-two thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(9254, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t1 VALUES(9255, 92166, 'ninety-two thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(9256, 96531, 'ninety-six thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(9257, 5978, 'five thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(9258, 12250, 'twelve thousand two hundred fifty');\nINSERT INTO t1 VALUES(9259, 35918, 'thirty-five thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(9260, 13437, 'thirteen thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(9261, 90089, 'ninety thousand eighty-nine');\nINSERT INTO t1 VALUES(9262, 47178, 'forty-seven thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(9263, 55228, 'fifty-five thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(9264, 52049, 'fifty-two thousand forty-nine');\nINSERT INTO t1 VALUES(9265, 83196, 'eighty-three thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(9266, 8132, 'eight thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(9267, 66328, 'sixty-six thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(9268, 30816, 'thirty thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(9269, 4207, 'four thousand two hundred seven');\nINSERT INTO t1 VALUES(9270, 66573, 'sixty-six thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(9271, 12247, 'twelve thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(9272, 54159, 'fifty-four thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(9273, 82359, 'eighty-two thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(9274, 11625, 'eleven thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(9275, 30885, 'thirty thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(9276, 67427, 'sixty-seven thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(9277, 4007, 'four thousand seven');\nINSERT INTO t1 VALUES(9278, 97631, 'ninety-seven thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(9279, 44260, 'forty-four thousand two hundred sixty');\nINSERT INTO t1 VALUES(9280, 55135, 'fifty-five thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(9281, 81190, 'eighty-one thousand one hundred ninety');\nINSERT INTO t1 VALUES(9282, 66839, 'sixty-six thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(9283, 27934, 'twenty-seven thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(9284, 18731, 'eighteen thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(9285, 94208, 'ninety-four thousand two hundred eight');\nINSERT INTO t1 VALUES(9286, 52814, 'fifty-two thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(9287, 98644, 'ninety-eight thousand six hundred forty-four');\nINSERT INTO t1 VALUES(9288, 57381, 'fifty-seven thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(9289, 17086, 'seventeen thousand eighty-six');\nINSERT INTO t1 VALUES(9290, 44729, 'forty-four thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(9291, 2639, 'two thousand six hundred thirty-nine');\nINSERT INTO t1 VALUES(9292, 50145, 'fifty thousand one hundred forty-five');\nINSERT INTO t1 VALUES(9293, 33091, 'thirty-three thousand ninety-one');\nINSERT INTO t1 VALUES(9294, 45556, 'forty-five thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(9295, 77650, 'seventy-seven thousand six hundred fifty');\nINSERT INTO t1 VALUES(9296, 47839, 'forty-seven thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(9297, 93115, 'ninety-three thousand one hundred fifteen');\nINSERT INTO t1 VALUES(9298, 70265, 'seventy thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(9299, 61641, 'sixty-one thousand six hundred forty-one');\nINSERT INTO t1 VALUES(9300, 85550, 'eighty-five thousand five hundred fifty');\nINSERT INTO t1 VALUES(9301, 83776, 'eighty-three thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(9302, 32505, 'thirty-two thousand five hundred five');\nINSERT INTO t1 VALUES(9303, 9765, 'nine thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(9304, 27872, 'twenty-seven thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(9305, 79922, 'seventy-nine thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(9306, 98100, 'ninety-eight thousand one hundred');\nINSERT INTO t1 VALUES(9307, 78679, 'seventy-eight thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(9308, 95257, 'ninety-five thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(9309, 19705, 'nineteen thousand seven hundred five');\nINSERT INTO t1 VALUES(9310, 64997, 'sixty-four thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(9311, 9415, 'nine thousand four hundred fifteen');\nINSERT INTO t1 VALUES(9312, 71354, 'seventy-one thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(9313, 44233, 'forty-four thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(9314, 40455, 'forty thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(9315, 98999, 'ninety-eight thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(9316, 6639, 'six thousand six hundred thirty-nine');\nINSERT INTO t1 VALUES(9317, 79675, 'seventy-nine thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(9318, 59829, 'fifty-nine thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(9319, 16217, 'sixteen thousand two hundred seventeen');\nINSERT INTO t1 VALUES(9320, 42887, 'forty-two thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(9321, 34873, 'thirty-four thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(9322, 72473, 'seventy-two thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(9323, 63394, 'sixty-three thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(9324, 97477, 'ninety-seven thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(9325, 12286, 'twelve thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(9326, 99485, 'ninety-nine thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(9327, 39123, 'thirty-nine thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(9328, 68293, 'sixty-eight thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(9329, 43766, 'forty-three thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(9330, 83239, 'eighty-three thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(9331, 97581, 'ninety-seven thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(9332, 43944, 'forty-three thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(9333, 93403, 'ninety-three thousand four hundred three');\nINSERT INTO t1 VALUES(9334, 45278, 'forty-five thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(9335, 19337, 'nineteen thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(9336, 31930, 'thirty-one thousand nine hundred thirty');\nINSERT INTO t1 VALUES(9337, 42437, 'forty-two thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(9338, 78536, 'seventy-eight thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(9339, 81281, 'eighty-one thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(9340, 80627, 'eighty thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(9341, 9316, 'nine thousand three hundred sixteen');\nINSERT INTO t1 VALUES(9342, 31067, 'thirty-one thousand sixty-seven');\nINSERT INTO t1 VALUES(9343, 78795, 'seventy-eight thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(9344, 48606, 'forty-eight thousand six hundred six');\nINSERT INTO t1 VALUES(9345, 45890, 'forty-five thousand eight hundred ninety');\nINSERT INTO t1 VALUES(9346, 67929, 'sixty-seven thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(9347, 65859, 'sixty-five thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(9348, 14214, 'fourteen thousand two hundred fourteen');\nINSERT INTO t1 VALUES(9349, 33244, 'thirty-three thousand two hundred forty-four');\nINSERT INTO t1 VALUES(9350, 24156, 'twenty-four thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(9351, 66176, 'sixty-six thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(9352, 93753, 'ninety-three thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(9353, 94059, 'ninety-four thousand fifty-nine');\nINSERT INTO t1 VALUES(9354, 76543, 'seventy-six thousand five hundred forty-three');\nINSERT INTO t1 VALUES(9355, 34897, 'thirty-four thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(9356, 87700, 'eighty-seven thousand seven hundred');\nINSERT INTO t1 VALUES(9357, 89599, 'eighty-nine thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(9358, 69225, 'sixty-nine thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(9359, 54500, 'fifty-four thousand five hundred');\nINSERT INTO t1 VALUES(9360, 89860, 'eighty-nine thousand eight hundred sixty');\nINSERT INTO t1 VALUES(9361, 73904, 'seventy-three thousand nine hundred four');\nINSERT INTO t1 VALUES(9362, 41617, 'forty-one thousand six hundred seventeen');\nINSERT INTO t1 VALUES(9363, 63878, 'sixty-three thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(9364, 56104, 'fifty-six thousand one hundred four');\nINSERT INTO t1 VALUES(9365, 3965, 'three thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(9366, 56764, 'fifty-six thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(9367, 2117, 'two thousand one hundred seventeen');\nINSERT INTO t1 VALUES(9368, 23297, 'twenty-three thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(9369, 12023, 'twelve thousand twenty-three');\nINSERT INTO t1 VALUES(9370, 18963, 'eighteen thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(9371, 17062, 'seventeen thousand sixty-two');\nINSERT INTO t1 VALUES(9372, 49555, 'forty-nine thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(9373, 67359, 'sixty-seven thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(9374, 39756, 'thirty-nine thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(9375, 47012, 'forty-seven thousand twelve');\nINSERT INTO t1 VALUES(9376, 76255, 'seventy-six thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(9377, 40509, 'forty thousand five hundred nine');\nINSERT INTO t1 VALUES(9378, 74199, 'seventy-four thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(9379, 3703, 'three thousand seven hundred three');\nINSERT INTO t1 VALUES(9380, 11186, 'eleven thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(9381, 86532, 'eighty-six thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(9382, 8227, 'eight thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(9383, 73547, 'seventy-three thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(9384, 29366, 'twenty-nine thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(9385, 80713, 'eighty thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(9386, 49622, 'forty-nine thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(9387, 3727, 'three thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(9388, 98788, 'ninety-eight thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(9389, 27701, 'twenty-seven thousand seven hundred one');\nINSERT INTO t1 VALUES(9390, 86569, 'eighty-six thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(9391, 9451, 'nine thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(9392, 91019, 'ninety-one thousand nineteen');\nINSERT INTO t1 VALUES(9393, 78862, 'seventy-eight thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(9394, 35893, 'thirty-five thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(9395, 61336, 'sixty-one thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(9396, 7478, 'seven thousand four hundred seventy-eight');\nINSERT INTO t1 VALUES(9397, 19012, 'nineteen thousand twelve');\nINSERT INTO t1 VALUES(9398, 22175, 'twenty-two thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(9399, 6981, 'six thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(9400, 93561, 'ninety-three thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(9401, 75376, 'seventy-five thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(9402, 4840, 'four thousand eight hundred forty');\nINSERT INTO t1 VALUES(9403, 55815, 'fifty-five thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(9404, 50935, 'fifty thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(9405, 43307, 'forty-three thousand three hundred seven');\nINSERT INTO t1 VALUES(9406, 79838, 'seventy-nine thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(9407, 30091, 'thirty thousand ninety-one');\nINSERT INTO t1 VALUES(9408, 5500, 'five thousand five hundred');\nINSERT INTO t1 VALUES(9409, 51471, 'fifty-one thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(9410, 66900, 'sixty-six thousand nine hundred');\nINSERT INTO t1 VALUES(9411, 77259, 'seventy-seven thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(9412, 49807, 'forty-nine thousand eight hundred seven');\nINSERT INTO t1 VALUES(9413, 75864, 'seventy-five thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(9414, 84536, 'eighty-four thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(9415, 44604, 'forty-four thousand six hundred four');\nINSERT INTO t1 VALUES(9416, 83410, 'eighty-three thousand four hundred ten');\nINSERT INTO t1 VALUES(9417, 23198, 'twenty-three thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(9418, 19745, 'nineteen thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(9419, 35586, 'thirty-five thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(9420, 1654, 'one thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(9421, 31246, 'thirty-one thousand two hundred forty-six');\nINSERT INTO t1 VALUES(9422, 22938, 'twenty-two thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(9423, 69002, 'sixty-nine thousand two');\nINSERT INTO t1 VALUES(9424, 179, 'one hundred seventy-nine');\nINSERT INTO t1 VALUES(9425, 18497, 'eighteen thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(9426, 46079, 'forty-six thousand seventy-nine');\nINSERT INTO t1 VALUES(9427, 92223, 'ninety-two thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(9428, 49971, 'forty-nine thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(9429, 78232, 'seventy-eight thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(9430, 94465, 'ninety-four thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(9431, 11170, 'eleven thousand one hundred seventy');\nINSERT INTO t1 VALUES(9432, 28811, 'twenty-eight thousand eight hundred eleven');\nINSERT INTO t1 VALUES(9433, 45681, 'forty-five thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(9434, 63206, 'sixty-three thousand two hundred six');\nINSERT INTO t1 VALUES(9435, 83758, 'eighty-three thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(9436, 8232, 'eight thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(9437, 99831, 'ninety-nine thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(9438, 55476, 'fifty-five thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(9439, 72280, 'seventy-two thousand two hundred eighty');\nINSERT INTO t1 VALUES(9440, 20748, 'twenty thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(9441, 18852, 'eighteen thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(9442, 30881, 'thirty thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(9443, 56045, 'fifty-six thousand forty-five');\nINSERT INTO t1 VALUES(9444, 13070, 'thirteen thousand seventy');\nINSERT INTO t1 VALUES(9445, 32560, 'thirty-two thousand five hundred sixty');\nINSERT INTO t1 VALUES(9446, 5456, 'five thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(9447, 42040, 'forty-two thousand forty');\nINSERT INTO t1 VALUES(9448, 2284, 'two thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(9449, 50338, 'fifty thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(9450, 56849, 'fifty-six thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(9451, 30909, 'thirty thousand nine hundred nine');\nINSERT INTO t1 VALUES(9452, 4475, 'four thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(9453, 45276, 'forty-five thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(9454, 20354, 'twenty thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(9455, 47206, 'forty-seven thousand two hundred six');\nINSERT INTO t1 VALUES(9456, 69317, 'sixty-nine thousand three hundred seventeen');\nINSERT INTO t1 VALUES(9457, 50022, 'fifty thousand twenty-two');\nINSERT INTO t1 VALUES(9458, 69982, 'sixty-nine thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(9459, 53998, 'fifty-three thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(9460, 79095, 'seventy-nine thousand ninety-five');\nINSERT INTO t1 VALUES(9461, 97331, 'ninety-seven thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(9462, 13043, 'thirteen thousand forty-three');\nINSERT INTO t1 VALUES(9463, 77188, 'seventy-seven thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(9464, 66309, 'sixty-six thousand three hundred nine');\nINSERT INTO t1 VALUES(9465, 95429, 'ninety-five thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(9466, 99073, 'ninety-nine thousand seventy-three');\nINSERT INTO t1 VALUES(9467, 63559, 'sixty-three thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(9468, 84590, 'eighty-four thousand five hundred ninety');\nINSERT INTO t1 VALUES(9469, 80002, 'eighty thousand two');\nINSERT INTO t1 VALUES(9470, 67501, 'sixty-seven thousand five hundred one');\nINSERT INTO t1 VALUES(9471, 88645, 'eighty-eight thousand six hundred forty-five');\nINSERT INTO t1 VALUES(9472, 96629, 'ninety-six thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(9473, 36165, 'thirty-six thousand one hundred sixty-five');\nINSERT INTO t1 VALUES(9474, 58357, 'fifty-eight thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(9475, 5289, 'five thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(9476, 4103, 'four thousand one hundred three');\nINSERT INTO t1 VALUES(9477, 29215, 'twenty-nine thousand two hundred fifteen');\nINSERT INTO t1 VALUES(9478, 92987, 'ninety-two thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(9479, 71216, 'seventy-one thousand two hundred sixteen');\nINSERT INTO t1 VALUES(9480, 12373, 'twelve thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(9481, 3267, 'three thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(9482, 2509, 'two thousand five hundred nine');\nINSERT INTO t1 VALUES(9483, 83554, 'eighty-three thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(9484, 78637, 'seventy-eight thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(9485, 86912, 'eighty-six thousand nine hundred twelve');\nINSERT INTO t1 VALUES(9486, 89189, 'eighty-nine thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(9487, 28084, 'twenty-eight thousand eighty-four');\nINSERT INTO t1 VALUES(9488, 8057, 'eight thousand fifty-seven');\nINSERT INTO t1 VALUES(9489, 70881, 'seventy thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(9490, 21330, 'twenty-one thousand three hundred thirty');\nINSERT INTO t1 VALUES(9491, 46777, 'forty-six thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(9492, 34006, 'thirty-four thousand six');\nINSERT INTO t1 VALUES(9493, 50965, 'fifty thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(9494, 39325, 'thirty-nine thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(9495, 35847, 'thirty-five thousand eight hundred forty-seven');\nINSERT INTO t1 VALUES(9496, 41449, 'forty-one thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(9497, 69499, 'sixty-nine thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(9498, 52680, 'fifty-two thousand six hundred eighty');\nINSERT INTO t1 VALUES(9499, 64440, 'sixty-four thousand four hundred forty');\nINSERT INTO t1 VALUES(9500, 98200, 'ninety-eight thousand two hundred');\nINSERT INTO t1 VALUES(9501, 25818, 'twenty-five thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(9502, 40038, 'forty thousand thirty-eight');\nINSERT INTO t1 VALUES(9503, 77465, 'seventy-seven thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(9504, 70732, 'seventy thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(9505, 33742, 'thirty-three thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(9506, 90515, 'ninety thousand five hundred fifteen');\nINSERT INTO t1 VALUES(9507, 35282, 'thirty-five thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(9508, 83962, 'eighty-three thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(9509, 88228, 'eighty-eight thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(9510, 84681, 'eighty-four thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(9511, 35287, 'thirty-five thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(9512, 60247, 'sixty thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(9513, 73962, 'seventy-three thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(9514, 40602, 'forty thousand six hundred two');\nINSERT INTO t1 VALUES(9515, 30809, 'thirty thousand eight hundred nine');\nINSERT INTO t1 VALUES(9516, 22403, 'twenty-two thousand four hundred three');\nINSERT INTO t1 VALUES(9517, 59752, 'fifty-nine thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(9518, 40996, 'forty thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(9519, 54891, 'fifty-four thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(9520, 60149, 'sixty thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(9521, 16348, 'sixteen thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(9522, 45748, 'forty-five thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(9523, 40, 'forty');\nINSERT INTO t1 VALUES(9524, 23659, 'twenty-three thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(9525, 91786, 'ninety-one thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(9526, 82075, 'eighty-two thousand seventy-five');\nINSERT INTO t1 VALUES(9527, 59704, 'fifty-nine thousand seven hundred four');\nINSERT INTO t1 VALUES(9528, 83616, 'eighty-three thousand six hundred sixteen');\nINSERT INTO t1 VALUES(9529, 17172, 'seventeen thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(9530, 4069, 'four thousand sixty-nine');\nINSERT INTO t1 VALUES(9531, 4280, 'four thousand two hundred eighty');\nINSERT INTO t1 VALUES(9532, 38503, 'thirty-eight thousand five hundred three');\nINSERT INTO t1 VALUES(9533, 9917, 'nine thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(9534, 4953, 'four thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(9535, 83782, 'eighty-three thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(9536, 64900, 'sixty-four thousand nine hundred');\nINSERT INTO t1 VALUES(9537, 81295, 'eighty-one thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(9538, 7224, 'seven thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(9539, 418, 'four hundred eighteen');\nINSERT INTO t1 VALUES(9540, 5089, 'five thousand eighty-nine');\nINSERT INTO t1 VALUES(9541, 45905, 'forty-five thousand nine hundred five');\nINSERT INTO t1 VALUES(9542, 46698, 'forty-six thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(9543, 89483, 'eighty-nine thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(9544, 12059, 'twelve thousand fifty-nine');\nINSERT INTO t1 VALUES(9545, 98660, 'ninety-eight thousand six hundred sixty');\nINSERT INTO t1 VALUES(9546, 32101, 'thirty-two thousand one hundred one');\nINSERT INTO t1 VALUES(9547, 60349, 'sixty thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(9548, 39466, 'thirty-nine thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(9549, 16691, 'sixteen thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(9550, 38585, 'thirty-eight thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(9551, 42716, 'forty-two thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(9552, 84364, 'eighty-four thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(9553, 4876, 'four thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(9554, 62498, 'sixty-two thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(9555, 21676, 'twenty-one thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(9556, 77154, 'seventy-seven thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(9557, 32940, 'thirty-two thousand nine hundred forty');\nINSERT INTO t1 VALUES(9558, 35425, 'thirty-five thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(9559, 53295, 'fifty-three thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(9560, 26035, 'twenty-six thousand thirty-five');\nINSERT INTO t1 VALUES(9561, 2130, 'two thousand one hundred thirty');\nINSERT INTO t1 VALUES(9562, 96029, 'ninety-six thousand twenty-nine');\nINSERT INTO t1 VALUES(9563, 29311, 'twenty-nine thousand three hundred eleven');\nINSERT INTO t1 VALUES(9564, 26191, 'twenty-six thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(9565, 20112, 'twenty thousand one hundred twelve');\nINSERT INTO t1 VALUES(9566, 38312, 'thirty-eight thousand three hundred twelve');\nINSERT INTO t1 VALUES(9567, 27868, 'twenty-seven thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(9568, 9459, 'nine thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(9569, 65492, 'sixty-five thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(9570, 57066, 'fifty-seven thousand sixty-six');\nINSERT INTO t1 VALUES(9571, 46196, 'forty-six thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(9572, 14623, 'fourteen thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(9573, 29895, 'twenty-nine thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(9574, 10761, 'ten thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(9575, 72712, 'seventy-two thousand seven hundred twelve');\nINSERT INTO t1 VALUES(9576, 13899, 'thirteen thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(9577, 53440, 'fifty-three thousand four hundred forty');\nINSERT INTO t1 VALUES(9578, 2889, 'two thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(9579, 99221, 'ninety-nine thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(9580, 27159, 'twenty-seven thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(9581, 35291, 'thirty-five thousand two hundred ninety-one');\nINSERT INTO t1 VALUES(9582, 90308, 'ninety thousand three hundred eight');\nINSERT INTO t1 VALUES(9583, 98736, 'ninety-eight thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(9584, 63442, 'sixty-three thousand four hundred forty-two');\nINSERT INTO t1 VALUES(9585, 39244, 'thirty-nine thousand two hundred forty-four');\nINSERT INTO t1 VALUES(9586, 64126, 'sixty-four thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(9587, 43618, 'forty-three thousand six hundred eighteen');\nINSERT INTO t1 VALUES(9588, 83054, 'eighty-three thousand fifty-four');\nINSERT INTO t1 VALUES(9589, 24785, 'twenty-four thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(9590, 83076, 'eighty-three thousand seventy-six');\nINSERT INTO t1 VALUES(9591, 99755, 'ninety-nine thousand seven hundred fifty-five');\nINSERT INTO t1 VALUES(9592, 50850, 'fifty thousand eight hundred fifty');\nINSERT INTO t1 VALUES(9593, 78176, 'seventy-eight thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(9594, 63792, 'sixty-three thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(9595, 79387, 'seventy-nine thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(9596, 80683, 'eighty thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(9597, 85036, 'eighty-five thousand thirty-six');\nINSERT INTO t1 VALUES(9598, 62907, 'sixty-two thousand nine hundred seven');\nINSERT INTO t1 VALUES(9599, 15119, 'fifteen thousand one hundred nineteen');\nINSERT INTO t1 VALUES(9600, 24617, 'twenty-four thousand six hundred seventeen');\nINSERT INTO t1 VALUES(9601, 34380, 'thirty-four thousand three hundred eighty');\nINSERT INTO t1 VALUES(9602, 52683, 'fifty-two thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(9603, 41957, 'forty-one thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(9604, 48936, 'forty-eight thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(9605, 78674, 'seventy-eight thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(9606, 39568, 'thirty-nine thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(9607, 43493, 'forty-three thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(9608, 28946, 'twenty-eight thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(9609, 37873, 'thirty-seven thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(9610, 24698, 'twenty-four thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(9611, 29593, 'twenty-nine thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(9612, 12105, 'twelve thousand one hundred five');\nINSERT INTO t1 VALUES(9613, 16413, 'sixteen thousand four hundred thirteen');\nINSERT INTO t1 VALUES(9614, 18037, 'eighteen thousand thirty-seven');\nINSERT INTO t1 VALUES(9615, 23957, 'twenty-three thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(9616, 54178, 'fifty-four thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(9617, 29512, 'twenty-nine thousand five hundred twelve');\nINSERT INTO t1 VALUES(9618, 7511, 'seven thousand five hundred eleven');\nINSERT INTO t1 VALUES(9619, 51463, 'fifty-one thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(9620, 77163, 'seventy-seven thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(9621, 46953, 'forty-six thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(9622, 6980, 'six thousand nine hundred eighty');\nINSERT INTO t1 VALUES(9623, 76965, 'seventy-six thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(9624, 57666, 'fifty-seven thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(9625, 81270, 'eighty-one thousand two hundred seventy');\nINSERT INTO t1 VALUES(9626, 83196, 'eighty-three thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(9627, 88840, 'eighty-eight thousand eight hundred forty');\nINSERT INTO t1 VALUES(9628, 51684, 'fifty-one thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(9629, 88963, 'eighty-eight thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(9630, 16822, 'sixteen thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(9631, 67318, 'sixty-seven thousand three hundred eighteen');\nINSERT INTO t1 VALUES(9632, 3172, 'three thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(9633, 30177, 'thirty thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(9634, 53803, 'fifty-three thousand eight hundred three');\nINSERT INTO t1 VALUES(9635, 36650, 'thirty-six thousand six hundred fifty');\nINSERT INTO t1 VALUES(9636, 99247, 'ninety-nine thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(9637, 21878, 'twenty-one thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(9638, 32815, 'thirty-two thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(9639, 6953, 'six thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(9640, 86505, 'eighty-six thousand five hundred five');\nINSERT INTO t1 VALUES(9641, 16869, 'sixteen thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(9642, 88940, 'eighty-eight thousand nine hundred forty');\nINSERT INTO t1 VALUES(9643, 90919, 'ninety thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(9644, 81340, 'eighty-one thousand three hundred forty');\nINSERT INTO t1 VALUES(9645, 65498, 'sixty-five thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(9646, 25830, 'twenty-five thousand eight hundred thirty');\nINSERT INTO t1 VALUES(9647, 59027, 'fifty-nine thousand twenty-seven');\nINSERT INTO t1 VALUES(9648, 7665, 'seven thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(9649, 81972, 'eighty-one thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(9650, 70908, 'seventy thousand nine hundred eight');\nINSERT INTO t1 VALUES(9651, 35813, 'thirty-five thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(9652, 80417, 'eighty thousand four hundred seventeen');\nINSERT INTO t1 VALUES(9653, 23801, 'twenty-three thousand eight hundred one');\nINSERT INTO t1 VALUES(9654, 3157, 'three thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(9655, 60192, 'sixty thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(9656, 95860, 'ninety-five thousand eight hundred sixty');\nINSERT INTO t1 VALUES(9657, 81153, 'eighty-one thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(9658, 37506, 'thirty-seven thousand five hundred six');\nINSERT INTO t1 VALUES(9659, 6260, 'six thousand two hundred sixty');\nINSERT INTO t1 VALUES(9660, 52240, 'fifty-two thousand two hundred forty');\nINSERT INTO t1 VALUES(9661, 37434, 'thirty-seven thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(9662, 33634, 'thirty-three thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(9663, 96510, 'ninety-six thousand five hundred ten');\nINSERT INTO t1 VALUES(9664, 84615, 'eighty-four thousand six hundred fifteen');\nINSERT INTO t1 VALUES(9665, 6534, 'six thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(9666, 12746, 'twelve thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(9667, 3422, 'three thousand four hundred twenty-two');\nINSERT INTO t1 VALUES(9668, 30851, 'thirty thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(9669, 31767, 'thirty-one thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(9670, 2245, 'two thousand two hundred forty-five');\nINSERT INTO t1 VALUES(9671, 23508, 'twenty-three thousand five hundred eight');\nINSERT INTO t1 VALUES(9672, 45628, 'forty-five thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(9673, 93301, 'ninety-three thousand three hundred one');\nINSERT INTO t1 VALUES(9674, 70820, 'seventy thousand eight hundred twenty');\nINSERT INTO t1 VALUES(9675, 67353, 'sixty-seven thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(9676, 85377, 'eighty-five thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(9677, 80139, 'eighty thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(9678, 54208, 'fifty-four thousand two hundred eight');\nINSERT INTO t1 VALUES(9679, 4245, 'four thousand two hundred forty-five');\nINSERT INTO t1 VALUES(9680, 57834, 'fifty-seven thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(9681, 12863, 'twelve thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(9682, 9224, 'nine thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(9683, 91273, 'ninety-one thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(9684, 11757, 'eleven thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(9685, 22355, 'twenty-two thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(9686, 20892, 'twenty thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(9687, 84447, 'eighty-four thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(9688, 80503, 'eighty thousand five hundred three');\nINSERT INTO t1 VALUES(9689, 27445, 'twenty-seven thousand four hundred forty-five');\nINSERT INTO t1 VALUES(9690, 15732, 'fifteen thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(9691, 52647, 'fifty-two thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(9692, 41999, 'forty-one thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(9693, 32297, 'thirty-two thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(9694, 63352, 'sixty-three thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(9695, 36485, 'thirty-six thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(9696, 68776, 'sixty-eight thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(9697, 59569, 'fifty-nine thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(9698, 94210, 'ninety-four thousand two hundred ten');\nINSERT INTO t1 VALUES(9699, 11185, 'eleven thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(9700, 67635, 'sixty-seven thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(9701, 42891, 'forty-two thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(9702, 72127, 'seventy-two thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(9703, 21619, 'twenty-one thousand six hundred nineteen');\nINSERT INTO t1 VALUES(9704, 8748, 'eight thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(9705, 94983, 'ninety-four thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(9706, 66603, 'sixty-six thousand six hundred three');\nINSERT INTO t1 VALUES(9707, 2762, 'two thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(9708, 94945, 'ninety-four thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(9709, 85576, 'eighty-five thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(9710, 92871, 'ninety-two thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(9711, 51140, 'fifty-one thousand one hundred forty');\nINSERT INTO t1 VALUES(9712, 65691, 'sixty-five thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(9713, 72961, 'seventy-two thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(9714, 60063, 'sixty thousand sixty-three');\nINSERT INTO t1 VALUES(9715, 36331, 'thirty-six thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(9716, 31518, 'thirty-one thousand five hundred eighteen');\nINSERT INTO t1 VALUES(9717, 11379, 'eleven thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(9718, 45798, 'forty-five thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(9719, 24758, 'twenty-four thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(9720, 12686, 'twelve thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(9721, 94051, 'ninety-four thousand fifty-one');\nINSERT INTO t1 VALUES(9722, 58716, 'fifty-eight thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(9723, 4174, 'four thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(9724, 10796, 'ten thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(9725, 56663, 'fifty-six thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(9726, 83766, 'eighty-three thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(9727, 64225, 'sixty-four thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(9728, 67780, 'sixty-seven thousand seven hundred eighty');\nINSERT INTO t1 VALUES(9729, 38118, 'thirty-eight thousand one hundred eighteen');\nINSERT INTO t1 VALUES(9730, 97542, 'ninety-seven thousand five hundred forty-two');\nINSERT INTO t1 VALUES(9731, 37156, 'thirty-seven thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(9732, 17962, 'seventeen thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(9733, 77317, 'seventy-seven thousand three hundred seventeen');\nINSERT INTO t1 VALUES(9734, 89128, 'eighty-nine thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(9735, 55790, 'fifty-five thousand seven hundred ninety');\nINSERT INTO t1 VALUES(9736, 55634, 'fifty-five thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(9737, 65786, 'sixty-five thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(9738, 87845, 'eighty-seven thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(9739, 80509, 'eighty thousand five hundred nine');\nINSERT INTO t1 VALUES(9740, 21447, 'twenty-one thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(9741, 45432, 'forty-five thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(9742, 14622, 'fourteen thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(9743, 23110, 'twenty-three thousand one hundred ten');\nINSERT INTO t1 VALUES(9744, 40920, 'forty thousand nine hundred twenty');\nINSERT INTO t1 VALUES(9745, 82340, 'eighty-two thousand three hundred forty');\nINSERT INTO t1 VALUES(9746, 92975, 'ninety-two thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(9747, 27087, 'twenty-seven thousand eighty-seven');\nINSERT INTO t1 VALUES(9748, 55368, 'fifty-five thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(9749, 36509, 'thirty-six thousand five hundred nine');\nINSERT INTO t1 VALUES(9750, 89587, 'eighty-nine thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(9751, 58998, 'fifty-eight thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(9752, 54575, 'fifty-four thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(9753, 26273, 'twenty-six thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(9754, 83243, 'eighty-three thousand two hundred forty-three');\nINSERT INTO t1 VALUES(9755, 54387, 'fifty-four thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(9756, 82971, 'eighty-two thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(9757, 42062, 'forty-two thousand sixty-two');\nINSERT INTO t1 VALUES(9758, 6269, 'six thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(9759, 39875, 'thirty-nine thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(9760, 73179, 'seventy-three thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(9761, 43935, 'forty-three thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(9762, 91571, 'ninety-one thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(9763, 41516, 'forty-one thousand five hundred sixteen');\nINSERT INTO t1 VALUES(9764, 73393, 'seventy-three thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(9765, 65174, 'sixty-five thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(9766, 67178, 'sixty-seven thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(9767, 37180, 'thirty-seven thousand one hundred eighty');\nINSERT INTO t1 VALUES(9768, 92776, 'ninety-two thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(9769, 31653, 'thirty-one thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(9770, 7795, 'seven thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(9771, 4060, 'four thousand sixty');\nINSERT INTO t1 VALUES(9772, 74872, 'seventy-four thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(9773, 26304, 'twenty-six thousand three hundred four');\nINSERT INTO t1 VALUES(9774, 43355, 'forty-three thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(9775, 85353, 'eighty-five thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(9776, 56818, 'fifty-six thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(9777, 33758, 'thirty-three thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(9778, 89922, 'eighty-nine thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(9779, 24181, 'twenty-four thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(9780, 47551, 'forty-seven thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(9781, 20085, 'twenty thousand eighty-five');\nINSERT INTO t1 VALUES(9782, 21109, 'twenty-one thousand one hundred nine');\nINSERT INTO t1 VALUES(9783, 36703, 'thirty-six thousand seven hundred three');\nINSERT INTO t1 VALUES(9784, 61594, 'sixty-one thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(9785, 13773, 'thirteen thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(9786, 50366, 'fifty thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(9787, 5459, 'five thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(9788, 21213, 'twenty-one thousand two hundred thirteen');\nINSERT INTO t1 VALUES(9789, 90704, 'ninety thousand seven hundred four');\nINSERT INTO t1 VALUES(9790, 49232, 'forty-nine thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(9791, 59226, 'fifty-nine thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(9792, 38703, 'thirty-eight thousand seven hundred three');\nINSERT INTO t1 VALUES(9793, 96298, 'ninety-six thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(9794, 87642, 'eighty-seven thousand six hundred forty-two');\nINSERT INTO t1 VALUES(9795, 51473, 'fifty-one thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(9796, 51685, 'fifty-one thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(9797, 92066, 'ninety-two thousand sixty-six');\nINSERT INTO t1 VALUES(9798, 53985, 'fifty-three thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(9799, 93306, 'ninety-three thousand three hundred six');\nINSERT INTO t1 VALUES(9800, 77972, 'seventy-seven thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(9801, 24531, 'twenty-four thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(9802, 86554, 'eighty-six thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(9803, 98112, 'ninety-eight thousand one hundred twelve');\nINSERT INTO t1 VALUES(9804, 54495, 'fifty-four thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(9805, 29302, 'twenty-nine thousand three hundred two');\nINSERT INTO t1 VALUES(9806, 99772, 'ninety-nine thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(9807, 42232, 'forty-two thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(9808, 68349, 'sixty-eight thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(9809, 94392, 'ninety-four thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(9810, 10157, 'ten thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(9811, 71080, 'seventy-one thousand eighty');\nINSERT INTO t1 VALUES(9812, 73226, 'seventy-three thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(9813, 60897, 'sixty thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(9814, 26393, 'twenty-six thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(9815, 62913, 'sixty-two thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(9816, 89066, 'eighty-nine thousand sixty-six');\nINSERT INTO t1 VALUES(9817, 55629, 'fifty-five thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(9818, 27627, 'twenty-seven thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(9819, 22508, 'twenty-two thousand five hundred eight');\nINSERT INTO t1 VALUES(9820, 8964, 'eight thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(9821, 23513, 'twenty-three thousand five hundred thirteen');\nINSERT INTO t1 VALUES(9822, 38119, 'thirty-eight thousand one hundred nineteen');\nINSERT INTO t1 VALUES(9823, 92204, 'ninety-two thousand two hundred four');\nINSERT INTO t1 VALUES(9824, 1576, 'one thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(9825, 19726, 'nineteen thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(9826, 6421, 'six thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(9827, 66726, 'sixty-six thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(9828, 26871, 'twenty-six thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(9829, 60610, 'sixty thousand six hundred ten');\nINSERT INTO t1 VALUES(9830, 89954, 'eighty-nine thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(9831, 39883, 'thirty-nine thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(9832, 85973, 'eighty-five thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(9833, 2859, 'two thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(9834, 5456, 'five thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(9835, 72301, 'seventy-two thousand three hundred one');\nINSERT INTO t1 VALUES(9836, 15554, 'fifteen thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(9837, 12711, 'twelve thousand seven hundred eleven');\nINSERT INTO t1 VALUES(9838, 31616, 'thirty-one thousand six hundred sixteen');\nINSERT INTO t1 VALUES(9839, 83097, 'eighty-three thousand ninety-seven');\nINSERT INTO t1 VALUES(9840, 82875, 'eighty-two thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(9841, 74579, 'seventy-four thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(9842, 68520, 'sixty-eight thousand five hundred twenty');\nINSERT INTO t1 VALUES(9843, 80651, 'eighty thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(9844, 55638, 'fifty-five thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(9845, 9277, 'nine thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(9846, 85684, 'eighty-five thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(9847, 10985, 'ten thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(9848, 24529, 'twenty-four thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(9849, 6071, 'six thousand seventy-one');\nINSERT INTO t1 VALUES(9850, 24013, 'twenty-four thousand thirteen');\nINSERT INTO t1 VALUES(9851, 83606, 'eighty-three thousand six hundred six');\nINSERT INTO t1 VALUES(9852, 95176, 'ninety-five thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(9853, 2198, 'two thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(9854, 78615, 'seventy-eight thousand six hundred fifteen');\nINSERT INTO t1 VALUES(9855, 94004, 'ninety-four thousand four');\nINSERT INTO t1 VALUES(9856, 66566, 'sixty-six thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(9857, 56705, 'fifty-six thousand seven hundred five');\nINSERT INTO t1 VALUES(9858, 83027, 'eighty-three thousand twenty-seven');\nINSERT INTO t1 VALUES(9859, 23781, 'twenty-three thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(9860, 6072, 'six thousand seventy-two');\nINSERT INTO t1 VALUES(9861, 46327, 'forty-six thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(9862, 78566, 'seventy-eight thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(9863, 14342, 'fourteen thousand three hundred forty-two');\nINSERT INTO t1 VALUES(9864, 97233, 'ninety-seven thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(9865, 43141, 'forty-three thousand one hundred forty-one');\nINSERT INTO t1 VALUES(9866, 561, 'five hundred sixty-one');\nINSERT INTO t1 VALUES(9867, 75663, 'seventy-five thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(9868, 62005, 'sixty-two thousand five');\nINSERT INTO t1 VALUES(9869, 40615, 'forty thousand six hundred fifteen');\nINSERT INTO t1 VALUES(9870, 20206, 'twenty thousand two hundred six');\nINSERT INTO t1 VALUES(9871, 72940, 'seventy-two thousand nine hundred forty');\nINSERT INTO t1 VALUES(9872, 55737, 'fifty-five thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(9873, 69134, 'sixty-nine thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(9874, 41445, 'forty-one thousand four hundred forty-five');\nINSERT INTO t1 VALUES(9875, 14334, 'fourteen thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(9876, 10517, 'ten thousand five hundred seventeen');\nINSERT INTO t1 VALUES(9877, 63368, 'sixty-three thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(9878, 67356, 'sixty-seven thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(9879, 56581, 'fifty-six thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(9880, 47439, 'forty-seven thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(9881, 3819, 'three thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(9882, 704, 'seven hundred four');\nINSERT INTO t1 VALUES(9883, 83922, 'eighty-three thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(9884, 97132, 'ninety-seven thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(9885, 91851, 'ninety-one thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(9886, 76362, 'seventy-six thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(9887, 47556, 'forty-seven thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(9888, 15826, 'fifteen thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(9889, 94199, 'ninety-four thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(9890, 54520, 'fifty-four thousand five hundred twenty');\nINSERT INTO t1 VALUES(9891, 70694, 'seventy thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(9892, 97316, 'ninety-seven thousand three hundred sixteen');\nINSERT INTO t1 VALUES(9893, 20959, 'twenty thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(9894, 8710, 'eight thousand seven hundred ten');\nINSERT INTO t1 VALUES(9895, 44463, 'forty-four thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(9896, 1275, 'one thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(9897, 27084, 'twenty-seven thousand eighty-four');\nINSERT INTO t1 VALUES(9898, 33785, 'thirty-three thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(9899, 30957, 'thirty thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(9900, 88833, 'eighty-eight thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(9901, 14807, 'fourteen thousand eight hundred seven');\nINSERT INTO t1 VALUES(9902, 72700, 'seventy-two thousand seven hundred');\nINSERT INTO t1 VALUES(9903, 69743, 'sixty-nine thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(9904, 2459, 'two thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(9905, 54034, 'fifty-four thousand thirty-four');\nINSERT INTO t1 VALUES(9906, 58952, 'fifty-eight thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(9907, 46490, 'forty-six thousand four hundred ninety');\nINSERT INTO t1 VALUES(9908, 21880, 'twenty-one thousand eight hundred eighty');\nINSERT INTO t1 VALUES(9909, 7209, 'seven thousand two hundred nine');\nINSERT INTO t1 VALUES(9910, 65591, 'sixty-five thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(9911, 45763, 'forty-five thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(9912, 56739, 'fifty-six thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(9913, 52222, 'fifty-two thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(9914, 40998, 'forty thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(9915, 22936, 'twenty-two thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(9916, 46530, 'forty-six thousand five hundred thirty');\nINSERT INTO t1 VALUES(9917, 20329, 'twenty thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(9918, 91798, 'ninety-one thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(9919, 4067, 'four thousand sixty-seven');\nINSERT INTO t1 VALUES(9920, 74979, 'seventy-four thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(9921, 57275, 'fifty-seven thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(9922, 40818, 'forty thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(9923, 88264, 'eighty-eight thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(9924, 48362, 'forty-eight thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(9925, 47804, 'forty-seven thousand eight hundred four');\nINSERT INTO t1 VALUES(9926, 87158, 'eighty-seven thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(9927, 19450, 'nineteen thousand four hundred fifty');\nINSERT INTO t1 VALUES(9928, 51937, 'fifty-one thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(9929, 6451, 'six thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(9930, 62574, 'sixty-two thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(9931, 44975, 'forty-four thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(9932, 58840, 'fifty-eight thousand eight hundred forty');\nINSERT INTO t1 VALUES(9933, 40333, 'forty thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(9934, 79142, 'seventy-nine thousand one hundred forty-two');\nINSERT INTO t1 VALUES(9935, 76413, 'seventy-six thousand four hundred thirteen');\nINSERT INTO t1 VALUES(9936, 57459, 'fifty-seven thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(9937, 12727, 'twelve thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(9938, 29379, 'twenty-nine thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(9939, 35456, 'thirty-five thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(9940, 81209, 'eighty-one thousand two hundred nine');\nINSERT INTO t1 VALUES(9941, 6732, 'six thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(9942, 24724, 'twenty-four thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(9943, 80148, 'eighty thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(9944, 56972, 'fifty-six thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(9945, 76133, 'seventy-six thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(9946, 13135, 'thirteen thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(9947, 93395, 'ninety-three thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(9948, 44495, 'forty-four thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(9949, 59494, 'fifty-nine thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(9950, 13698, 'thirteen thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(9951, 69785, 'sixty-nine thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(9952, 50605, 'fifty thousand six hundred five');\nINSERT INTO t1 VALUES(9953, 84121, 'eighty-four thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(9954, 76498, 'seventy-six thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(9955, 49555, 'forty-nine thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(9956, 2819, 'two thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(9957, 22093, 'twenty-two thousand ninety-three');\nINSERT INTO t1 VALUES(9958, 97649, 'ninety-seven thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(9959, 18159, 'eighteen thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(9960, 96365, 'ninety-six thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(9961, 67591, 'sixty-seven thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(9962, 30445, 'thirty thousand four hundred forty-five');\nINSERT INTO t1 VALUES(9963, 36875, 'thirty-six thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(9964, 21519, 'twenty-one thousand five hundred nineteen');\nINSERT INTO t1 VALUES(9965, 40290, 'forty thousand two hundred ninety');\nINSERT INTO t1 VALUES(9966, 50321, 'fifty thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(9967, 8325, 'eight thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(9968, 1993, 'one thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(9969, 53468, 'fifty-three thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(9970, 59265, 'fifty-nine thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(9971, 2758, 'two thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(9972, 13146, 'thirteen thousand one hundred forty-six');\nINSERT INTO t1 VALUES(9973, 4252, 'four thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(9974, 76634, 'seventy-six thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(9975, 26490, 'twenty-six thousand four hundred ninety');\nINSERT INTO t1 VALUES(9976, 24384, 'twenty-four thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(9977, 60768, 'sixty thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(9978, 804, 'eight hundred four');\nINSERT INTO t1 VALUES(9979, 99231, 'ninety-nine thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(9980, 28841, 'twenty-eight thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(9981, 85216, 'eighty-five thousand two hundred sixteen');\nINSERT INTO t1 VALUES(9982, 12386, 'twelve thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(9983, 49354, 'forty-nine thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(9984, 23671, 'twenty-three thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(9985, 5116, 'five thousand one hundred sixteen');\nINSERT INTO t1 VALUES(9986, 67851, 'sixty-seven thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(9987, 60562, 'sixty thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(9988, 81810, 'eighty-one thousand eight hundred ten');\nINSERT INTO t1 VALUES(9989, 40925, 'forty thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(9990, 59586, 'fifty-nine thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(9991, 63382, 'sixty-three thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(9992, 42021, 'forty-two thousand twenty-one');\nINSERT INTO t1 VALUES(9993, 47348, 'forty-seven thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(9994, 57430, 'fifty-seven thousand four hundred thirty');\nINSERT INTO t1 VALUES(9995, 37541, 'thirty-seven thousand five hundred forty-one');\nINSERT INTO t1 VALUES(9996, 65272, 'sixty-five thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(9997, 39400, 'thirty-nine thousand four hundred');\nINSERT INTO t1 VALUES(9998, 72589, 'seventy-two thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(9999, 51694, 'fifty-one thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(10000, 57194, 'fifty-seven thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(10001, 28580, 'twenty-eight thousand five hundred eighty');\nINSERT INTO t1 VALUES(10002, 98999, 'ninety-eight thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(10003, 46499, 'forty-six thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(10004, 63555, 'sixty-three thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(10005, 36291, 'thirty-six thousand two hundred ninety-one');\nINSERT INTO t1 VALUES(10006, 80800, 'eighty thousand eight hundred');\nINSERT INTO t1 VALUES(10007, 24823, 'twenty-four thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(10008, 89003, 'eighty-nine thousand three');\nINSERT INTO t1 VALUES(10009, 82565, 'eighty-two thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(10010, 88536, 'eighty-eight thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(10011, 75442, 'seventy-five thousand four hundred forty-two');\nINSERT INTO t1 VALUES(10012, 20028, 'twenty thousand twenty-eight');\nINSERT INTO t1 VALUES(10013, 68276, 'sixty-eight thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(10014, 43001, 'forty-three thousand one');\nINSERT INTO t1 VALUES(10015, 45766, 'forty-five thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(10016, 8541, 'eight thousand five hundred forty-one');\nINSERT INTO t1 VALUES(10017, 29296, 'twenty-nine thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(10018, 19756, 'nineteen thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(10019, 60176, 'sixty thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(10020, 56495, 'fifty-six thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(10021, 9153, 'nine thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(10022, 91011, 'ninety-one thousand eleven');\nINSERT INTO t1 VALUES(10023, 84750, 'eighty-four thousand seven hundred fifty');\nINSERT INTO t1 VALUES(10024, 41320, 'forty-one thousand three hundred twenty');\nINSERT INTO t1 VALUES(10025, 50819, 'fifty thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(10026, 75447, 'seventy-five thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(10027, 77695, 'seventy-seven thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(10028, 52457, 'fifty-two thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(10029, 17090, 'seventeen thousand ninety');\nINSERT INTO t1 VALUES(10030, 81484, 'eighty-one thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(10031, 2647, 'two thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(10032, 6892, 'six thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(10033, 55577, 'fifty-five thousand five hundred seventy-seven');\nINSERT INTO t1 VALUES(10034, 7455, 'seven thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(10035, 96193, 'ninety-six thousand one hundred ninety-three');\nINSERT INTO t1 VALUES(10036, 26509, 'twenty-six thousand five hundred nine');\nINSERT INTO t1 VALUES(10037, 94776, 'ninety-four thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(10038, 21490, 'twenty-one thousand four hundred ninety');\nINSERT INTO t1 VALUES(10039, 73739, 'seventy-three thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(10040, 81806, 'eighty-one thousand eight hundred six');\nINSERT INTO t1 VALUES(10041, 32416, 'thirty-two thousand four hundred sixteen');\nINSERT INTO t1 VALUES(10042, 51042, 'fifty-one thousand forty-two');\nINSERT INTO t1 VALUES(10043, 88758, 'eighty-eight thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(10044, 95855, 'ninety-five thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(10045, 15272, 'fifteen thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(10046, 96757, 'ninety-six thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(10047, 55574, 'fifty-five thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(10048, 95823, 'ninety-five thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(10049, 3601, 'three thousand six hundred one');\nINSERT INTO t1 VALUES(10050, 70265, 'seventy thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(10051, 73503, 'seventy-three thousand five hundred three');\nINSERT INTO t1 VALUES(10052, 91613, 'ninety-one thousand six hundred thirteen');\nINSERT INTO t1 VALUES(10053, 15043, 'fifteen thousand forty-three');\nINSERT INTO t1 VALUES(10054, 85894, 'eighty-five thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(10055, 89779, 'eighty-nine thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(10056, 77794, 'seventy-seven thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(10057, 61258, 'sixty-one thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(10058, 2541, 'two thousand five hundred forty-one');\nINSERT INTO t1 VALUES(10059, 58088, 'fifty-eight thousand eighty-eight');\nINSERT INTO t1 VALUES(10060, 51801, 'fifty-one thousand eight hundred one');\nINSERT INTO t1 VALUES(10061, 29904, 'twenty-nine thousand nine hundred four');\nINSERT INTO t1 VALUES(10062, 50362, 'fifty thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(10063, 76205, 'seventy-six thousand two hundred five');\nINSERT INTO t1 VALUES(10064, 63424, 'sixty-three thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(10065, 37718, 'thirty-seven thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(10066, 62795, 'sixty-two thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(10067, 76525, 'seventy-six thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(10068, 34600, 'thirty-four thousand six hundred');\nINSERT INTO t1 VALUES(10069, 39727, 'thirty-nine thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(10070, 57148, 'fifty-seven thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(10071, 78652, 'seventy-eight thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(10072, 46387, 'forty-six thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(10073, 59941, 'fifty-nine thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(10074, 94266, 'ninety-four thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(10075, 26744, 'twenty-six thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(10076, 8327, 'eight thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(10077, 85602, 'eighty-five thousand six hundred two');\nINSERT INTO t1 VALUES(10078, 12122, 'twelve thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(10079, 69154, 'sixty-nine thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(10080, 60199, 'sixty thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(10081, 75686, 'seventy-five thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(10082, 89254, 'eighty-nine thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(10083, 65182, 'sixty-five thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(10084, 23815, 'twenty-three thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(10085, 3411, 'three thousand four hundred eleven');\nINSERT INTO t1 VALUES(10086, 3280, 'three thousand two hundred eighty');\nINSERT INTO t1 VALUES(10087, 20235, 'twenty thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(10088, 10895, 'ten thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(10089, 40300, 'forty thousand three hundred');\nINSERT INTO t1 VALUES(10090, 15307, 'fifteen thousand three hundred seven');\nINSERT INTO t1 VALUES(10091, 8064, 'eight thousand sixty-four');\nINSERT INTO t1 VALUES(10092, 23321, 'twenty-three thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(10093, 49406, 'forty-nine thousand four hundred six');\nINSERT INTO t1 VALUES(10094, 41423, 'forty-one thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(10095, 34449, 'thirty-four thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(10096, 91896, 'ninety-one thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(10097, 42891, 'forty-two thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(10098, 61229, 'sixty-one thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(10099, 15323, 'fifteen thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(10100, 7543, 'seven thousand five hundred forty-three');\nINSERT INTO t1 VALUES(10101, 61801, 'sixty-one thousand eight hundred one');\nINSERT INTO t1 VALUES(10102, 57777, 'fifty-seven thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(10103, 86290, 'eighty-six thousand two hundred ninety');\nINSERT INTO t1 VALUES(10104, 9823, 'nine thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(10105, 22520, 'twenty-two thousand five hundred twenty');\nINSERT INTO t1 VALUES(10106, 66775, 'sixty-six thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(10107, 25164, 'twenty-five thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(10108, 63767, 'sixty-three thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(10109, 36076, 'thirty-six thousand seventy-six');\nINSERT INTO t1 VALUES(10110, 94297, 'ninety-four thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(10111, 31929, 'thirty-one thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(10112, 90809, 'ninety thousand eight hundred nine');\nINSERT INTO t1 VALUES(10113, 39018, 'thirty-nine thousand eighteen');\nINSERT INTO t1 VALUES(10114, 19022, 'nineteen thousand twenty-two');\nINSERT INTO t1 VALUES(10115, 9128, 'nine thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(10116, 6236, 'six thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(10117, 52614, 'fifty-two thousand six hundred fourteen');\nINSERT INTO t1 VALUES(10118, 28249, 'twenty-eight thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(10119, 56973, 'fifty-six thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(10120, 93966, 'ninety-three thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(10121, 13506, 'thirteen thousand five hundred six');\nINSERT INTO t1 VALUES(10122, 5696, 'five thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(10123, 18710, 'eighteen thousand seven hundred ten');\nINSERT INTO t1 VALUES(10124, 37897, 'thirty-seven thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(10125, 18930, 'eighteen thousand nine hundred thirty');\nINSERT INTO t1 VALUES(10126, 89104, 'eighty-nine thousand one hundred four');\nINSERT INTO t1 VALUES(10127, 59042, 'fifty-nine thousand forty-two');\nINSERT INTO t1 VALUES(10128, 64883, 'sixty-four thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(10129, 61154, 'sixty-one thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(10130, 73956, 'seventy-three thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(10131, 52660, 'fifty-two thousand six hundred sixty');\nINSERT INTO t1 VALUES(10132, 64302, 'sixty-four thousand three hundred two');\nINSERT INTO t1 VALUES(10133, 92789, 'ninety-two thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(10134, 29706, 'twenty-nine thousand seven hundred six');\nINSERT INTO t1 VALUES(10135, 68090, 'sixty-eight thousand ninety');\nINSERT INTO t1 VALUES(10136, 11498, 'eleven thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(10137, 22801, 'twenty-two thousand eight hundred one');\nINSERT INTO t1 VALUES(10138, 63985, 'sixty-three thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(10139, 75713, 'seventy-five thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(10140, 9506, 'nine thousand five hundred six');\nINSERT INTO t1 VALUES(10141, 33583, 'thirty-three thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(10142, 93518, 'ninety-three thousand five hundred eighteen');\nINSERT INTO t1 VALUES(10143, 29463, 'twenty-nine thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(10144, 35445, 'thirty-five thousand four hundred forty-five');\nINSERT INTO t1 VALUES(10145, 49154, 'forty-nine thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(10146, 38295, 'thirty-eight thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(10147, 2623, 'two thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(10148, 41012, 'forty-one thousand twelve');\nINSERT INTO t1 VALUES(10149, 83579, 'eighty-three thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(10150, 55163, 'fifty-five thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(10151, 76301, 'seventy-six thousand three hundred one');\nINSERT INTO t1 VALUES(10152, 76991, 'seventy-six thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(10153, 82057, 'eighty-two thousand fifty-seven');\nINSERT INTO t1 VALUES(10154, 91873, 'ninety-one thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(10155, 65795, 'sixty-five thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(10156, 20846, 'twenty thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(10157, 17514, 'seventeen thousand five hundred fourteen');\nINSERT INTO t1 VALUES(10158, 31920, 'thirty-one thousand nine hundred twenty');\nINSERT INTO t1 VALUES(10159, 16528, 'sixteen thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(10160, 69793, 'sixty-nine thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(10161, 16046, 'sixteen thousand forty-six');\nINSERT INTO t1 VALUES(10162, 91577, 'ninety-one thousand five hundred seventy-seven');\nINSERT INTO t1 VALUES(10163, 71440, 'seventy-one thousand four hundred forty');\nINSERT INTO t1 VALUES(10164, 25918, 'twenty-five thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(10165, 20327, 'twenty thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(10166, 90374, 'ninety thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(10167, 2899, 'two thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(10168, 4924, 'four thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(10169, 74927, 'seventy-four thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(10170, 89584, 'eighty-nine thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(10171, 9848, 'nine thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(10172, 81725, 'eighty-one thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(10173, 88071, 'eighty-eight thousand seventy-one');\nINSERT INTO t1 VALUES(10174, 26424, 'twenty-six thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(10175, 53354, 'fifty-three thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(10176, 64200, 'sixty-four thousand two hundred');\nINSERT INTO t1 VALUES(10177, 80868, 'eighty thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(10178, 96766, 'ninety-six thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(10179, 35539, 'thirty-five thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(10180, 33332, 'thirty-three thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(10181, 85953, 'eighty-five thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(10182, 3624, 'three thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(10183, 35317, 'thirty-five thousand three hundred seventeen');\nINSERT INTO t1 VALUES(10184, 86568, 'eighty-six thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(10185, 45880, 'forty-five thousand eight hundred eighty');\nINSERT INTO t1 VALUES(10186, 94871, 'ninety-four thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(10187, 99046, 'ninety-nine thousand forty-six');\nINSERT INTO t1 VALUES(10188, 68161, 'sixty-eight thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(10189, 43527, 'forty-three thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(10190, 81651, 'eighty-one thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(10191, 74527, 'seventy-four thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(10192, 48132, 'forty-eight thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(10193, 86688, 'eighty-six thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(10194, 91036, 'ninety-one thousand thirty-six');\nINSERT INTO t1 VALUES(10195, 76252, 'seventy-six thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(10196, 11262, 'eleven thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(10197, 8736, 'eight thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(10198, 37044, 'thirty-seven thousand forty-four');\nINSERT INTO t1 VALUES(10199, 67075, 'sixty-seven thousand seventy-five');\nINSERT INTO t1 VALUES(10200, 85263, 'eighty-five thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(10201, 90863, 'ninety thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(10202, 55277, 'fifty-five thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(10203, 11663, 'eleven thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(10204, 5778, 'five thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(10205, 58214, 'fifty-eight thousand two hundred fourteen');\nINSERT INTO t1 VALUES(10206, 82653, 'eighty-two thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(10207, 42029, 'forty-two thousand twenty-nine');\nINSERT INTO t1 VALUES(10208, 14646, 'fourteen thousand six hundred forty-six');\nINSERT INTO t1 VALUES(10209, 66993, 'sixty-six thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(10210, 26993, 'twenty-six thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(10211, 77946, 'seventy-seven thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(10212, 49080, 'forty-nine thousand eighty');\nINSERT INTO t1 VALUES(10213, 48901, 'forty-eight thousand nine hundred one');\nINSERT INTO t1 VALUES(10214, 59287, 'fifty-nine thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(10215, 53441, 'fifty-three thousand four hundred forty-one');\nINSERT INTO t1 VALUES(10216, 54853, 'fifty-four thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(10217, 43943, 'forty-three thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(10218, 69650, 'sixty-nine thousand six hundred fifty');\nINSERT INTO t1 VALUES(10219, 21502, 'twenty-one thousand five hundred two');\nINSERT INTO t1 VALUES(10220, 25604, 'twenty-five thousand six hundred four');\nINSERT INTO t1 VALUES(10221, 51366, 'fifty-one thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(10222, 1156, 'one thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(10223, 76665, 'seventy-six thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(10224, 18797, 'eighteen thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(10225, 52437, 'fifty-two thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(10226, 70485, 'seventy thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(10227, 64098, 'sixty-four thousand ninety-eight');\nINSERT INTO t1 VALUES(10228, 1107, 'one thousand one hundred seven');\nINSERT INTO t1 VALUES(10229, 73053, 'seventy-three thousand fifty-three');\nINSERT INTO t1 VALUES(10230, 79165, 'seventy-nine thousand one hundred sixty-five');\nINSERT INTO t1 VALUES(10231, 17260, 'seventeen thousand two hundred sixty');\nINSERT INTO t1 VALUES(10232, 35006, 'thirty-five thousand six');\nINSERT INTO t1 VALUES(10233, 38845, 'thirty-eight thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(10234, 85912, 'eighty-five thousand nine hundred twelve');\nINSERT INTO t1 VALUES(10235, 1836, 'one thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(10236, 94516, 'ninety-four thousand five hundred sixteen');\nINSERT INTO t1 VALUES(10237, 4729, 'four thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(10238, 20651, 'twenty thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(10239, 38138, 'thirty-eight thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(10240, 97711, 'ninety-seven thousand seven hundred eleven');\nINSERT INTO t1 VALUES(10241, 16962, 'sixteen thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(10242, 54518, 'fifty-four thousand five hundred eighteen');\nINSERT INTO t1 VALUES(10243, 27963, 'twenty-seven thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(10244, 95447, 'ninety-five thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(10245, 66642, 'sixty-six thousand six hundred forty-two');\nINSERT INTO t1 VALUES(10246, 5530, 'five thousand five hundred thirty');\nINSERT INTO t1 VALUES(10247, 41723, 'forty-one thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(10248, 19708, 'nineteen thousand seven hundred eight');\nINSERT INTO t1 VALUES(10249, 62034, 'sixty-two thousand thirty-four');\nINSERT INTO t1 VALUES(10250, 4254, 'four thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(10251, 47412, 'forty-seven thousand four hundred twelve');\nINSERT INTO t1 VALUES(10252, 19453, 'nineteen thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(10253, 98954, 'ninety-eight thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(10254, 64405, 'sixty-four thousand four hundred five');\nINSERT INTO t1 VALUES(10255, 25043, 'twenty-five thousand forty-three');\nINSERT INTO t1 VALUES(10256, 64360, 'sixty-four thousand three hundred sixty');\nINSERT INTO t1 VALUES(10257, 86126, 'eighty-six thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(10258, 23294, 'twenty-three thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(10259, 37521, 'thirty-seven thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(10260, 25456, 'twenty-five thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(10261, 84692, 'eighty-four thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(10262, 19737, 'nineteen thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(10263, 96108, 'ninety-six thousand one hundred eight');\nINSERT INTO t1 VALUES(10264, 55154, 'fifty-five thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(10265, 71731, 'seventy-one thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(10266, 25585, 'twenty-five thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(10267, 31239, 'thirty-one thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(10268, 67362, 'sixty-seven thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(10269, 30132, 'thirty thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(10270, 67831, 'sixty-seven thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(10271, 16107, 'sixteen thousand one hundred seven');\nINSERT INTO t1 VALUES(10272, 25975, 'twenty-five thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(10273, 43551, 'forty-three thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(10274, 91783, 'ninety-one thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(10275, 41531, 'forty-one thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(10276, 51106, 'fifty-one thousand one hundred six');\nINSERT INTO t1 VALUES(10277, 26828, 'twenty-six thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(10278, 31376, 'thirty-one thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(10279, 2328, 'two thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(10280, 51134, 'fifty-one thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(10281, 75384, 'seventy-five thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(10282, 17388, 'seventeen thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(10283, 74997, 'seventy-four thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(10284, 17623, 'seventeen thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(10285, 18840, 'eighteen thousand eight hundred forty');\nINSERT INTO t1 VALUES(10286, 79267, 'seventy-nine thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(10287, 28382, 'twenty-eight thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(10288, 16023, 'sixteen thousand twenty-three');\nINSERT INTO t1 VALUES(10289, 65091, 'sixty-five thousand ninety-one');\nINSERT INTO t1 VALUES(10290, 49944, 'forty-nine thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(10291, 15680, 'fifteen thousand six hundred eighty');\nINSERT INTO t1 VALUES(10292, 60778, 'sixty thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(10293, 15506, 'fifteen thousand five hundred six');\nINSERT INTO t1 VALUES(10294, 63423, 'sixty-three thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(10295, 85145, 'eighty-five thousand one hundred forty-five');\nINSERT INTO t1 VALUES(10296, 84967, 'eighty-four thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(10297, 60504, 'sixty thousand five hundred four');\nINSERT INTO t1 VALUES(10298, 43952, 'forty-three thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(10299, 23237, 'twenty-three thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(10300, 23794, 'twenty-three thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(10301, 91715, 'ninety-one thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(10302, 16562, 'sixteen thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(10303, 65194, 'sixty-five thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(10304, 91698, 'ninety-one thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(10305, 36082, 'thirty-six thousand eighty-two');\nINSERT INTO t1 VALUES(10306, 44924, 'forty-four thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(10307, 94178, 'ninety-four thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(10308, 38496, 'thirty-eight thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(10309, 32508, 'thirty-two thousand five hundred eight');\nINSERT INTO t1 VALUES(10310, 54508, 'fifty-four thousand five hundred eight');\nINSERT INTO t1 VALUES(10311, 10640, 'ten thousand six hundred forty');\nINSERT INTO t1 VALUES(10312, 41328, 'forty-one thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(10313, 61921, 'sixty-one thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(10314, 47874, 'forty-seven thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(10315, 49153, 'forty-nine thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(10316, 51596, 'fifty-one thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(10317, 47376, 'forty-seven thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(10318, 83406, 'eighty-three thousand four hundred six');\nINSERT INTO t1 VALUES(10319, 27863, 'twenty-seven thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(10320, 97309, 'ninety-seven thousand three hundred nine');\nINSERT INTO t1 VALUES(10321, 77693, 'seventy-seven thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(10322, 28906, 'twenty-eight thousand nine hundred six');\nINSERT INTO t1 VALUES(10323, 47546, 'forty-seven thousand five hundred forty-six');\nINSERT INTO t1 VALUES(10324, 23817, 'twenty-three thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(10325, 12198, 'twelve thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(10326, 23143, 'twenty-three thousand one hundred forty-three');\nINSERT INTO t1 VALUES(10327, 25752, 'twenty-five thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(10328, 15647, 'fifteen thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(10329, 70968, 'seventy thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(10330, 45562, 'forty-five thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(10331, 37453, 'thirty-seven thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(10332, 66900, 'sixty-six thousand nine hundred');\nINSERT INTO t1 VALUES(10333, 55870, 'fifty-five thousand eight hundred seventy');\nINSERT INTO t1 VALUES(10334, 73736, 'seventy-three thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(10335, 77024, 'seventy-seven thousand twenty-four');\nINSERT INTO t1 VALUES(10336, 51343, 'fifty-one thousand three hundred forty-three');\nINSERT INTO t1 VALUES(10337, 82486, 'eighty-two thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(10338, 77619, 'seventy-seven thousand six hundred nineteen');\nINSERT INTO t1 VALUES(10339, 29365, 'twenty-nine thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(10340, 86693, 'eighty-six thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(10341, 43691, 'forty-three thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(10342, 67516, 'sixty-seven thousand five hundred sixteen');\nINSERT INTO t1 VALUES(10343, 14068, 'fourteen thousand sixty-eight');\nINSERT INTO t1 VALUES(10344, 93200, 'ninety-three thousand two hundred');\nINSERT INTO t1 VALUES(10345, 2248, 'two thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(10346, 72332, 'seventy-two thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(10347, 22141, 'twenty-two thousand one hundred forty-one');\nINSERT INTO t1 VALUES(10348, 14075, 'fourteen thousand seventy-five');\nINSERT INTO t1 VALUES(10349, 32936, 'thirty-two thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(10350, 59309, 'fifty-nine thousand three hundred nine');\nINSERT INTO t1 VALUES(10351, 62421, 'sixty-two thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(10352, 51537, 'fifty-one thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(10353, 28848, 'twenty-eight thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(10354, 84297, 'eighty-four thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(10355, 48595, 'forty-eight thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(10356, 45285, 'forty-five thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(10357, 97769, 'ninety-seven thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(10358, 37815, 'thirty-seven thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(10359, 96884, 'ninety-six thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(10360, 15556, 'fifteen thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(10361, 63878, 'sixty-three thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(10362, 70839, 'seventy thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(10363, 7318, 'seven thousand three hundred eighteen');\nINSERT INTO t1 VALUES(10364, 50533, 'fifty thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(10365, 66235, 'sixty-six thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(10366, 60264, 'sixty thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(10367, 54821, 'fifty-four thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(10368, 67241, 'sixty-seven thousand two hundred forty-one');\nINSERT INTO t1 VALUES(10369, 95206, 'ninety-five thousand two hundred six');\nINSERT INTO t1 VALUES(10370, 58735, 'fifty-eight thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(10371, 25093, 'twenty-five thousand ninety-three');\nINSERT INTO t1 VALUES(10372, 54443, 'fifty-four thousand four hundred forty-three');\nINSERT INTO t1 VALUES(10373, 11148, 'eleven thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(10374, 14458, 'fourteen thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(10375, 96766, 'ninety-six thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(10376, 62192, 'sixty-two thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(10377, 15384, 'fifteen thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(10378, 10774, 'ten thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(10379, 43846, 'forty-three thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(10380, 90408, 'ninety thousand four hundred eight');\nINSERT INTO t1 VALUES(10381, 34831, 'thirty-four thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(10382, 67463, 'sixty-seven thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(10383, 9257, 'nine thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(10384, 37198, 'thirty-seven thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(10385, 54097, 'fifty-four thousand ninety-seven');\nINSERT INTO t1 VALUES(10386, 39129, 'thirty-nine thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(10387, 25806, 'twenty-five thousand eight hundred six');\nINSERT INTO t1 VALUES(10388, 19522, 'nineteen thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(10389, 84394, 'eighty-four thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(10390, 13809, 'thirteen thousand eight hundred nine');\nINSERT INTO t1 VALUES(10391, 31225, 'thirty-one thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(10392, 19386, 'nineteen thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(10393, 61266, 'sixty-one thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(10394, 55360, 'fifty-five thousand three hundred sixty');\nINSERT INTO t1 VALUES(10395, 62296, 'sixty-two thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(10396, 69554, 'sixty-nine thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(10397, 30144, 'thirty thousand one hundred forty-four');\nINSERT INTO t1 VALUES(10398, 57621, 'fifty-seven thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(10399, 33877, 'thirty-three thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(10400, 32296, 'thirty-two thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(10401, 85369, 'eighty-five thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(10402, 24684, 'twenty-four thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(10403, 41318, 'forty-one thousand three hundred eighteen');\nINSERT INTO t1 VALUES(10404, 66252, 'sixty-six thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(10405, 54327, 'fifty-four thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(10406, 93728, 'ninety-three thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(10407, 52451, 'fifty-two thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(10408, 32252, 'thirty-two thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(10409, 26802, 'twenty-six thousand eight hundred two');\nINSERT INTO t1 VALUES(10410, 35783, 'thirty-five thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(10411, 42663, 'forty-two thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(10412, 89903, 'eighty-nine thousand nine hundred three');\nINSERT INTO t1 VALUES(10413, 56939, 'fifty-six thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(10414, 58108, 'fifty-eight thousand one hundred eight');\nINSERT INTO t1 VALUES(10415, 70713, 'seventy thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(10416, 28364, 'twenty-eight thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(10417, 78343, 'seventy-eight thousand three hundred forty-three');\nINSERT INTO t1 VALUES(10418, 56858, 'fifty-six thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(10419, 28223, 'twenty-eight thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(10420, 39344, 'thirty-nine thousand three hundred forty-four');\nINSERT INTO t1 VALUES(10421, 56000, 'fifty-six thousand');\nINSERT INTO t1 VALUES(10422, 57200, 'fifty-seven thousand two hundred');\nINSERT INTO t1 VALUES(10423, 54000, 'fifty-four thousand');\nINSERT INTO t1 VALUES(10424, 90374, 'ninety thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(10425, 87241, 'eighty-seven thousand two hundred forty-one');\nINSERT INTO t1 VALUES(10426, 91041, 'ninety-one thousand forty-one');\nINSERT INTO t1 VALUES(10427, 20283, 'twenty thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(10428, 20709, 'twenty thousand seven hundred nine');\nINSERT INTO t1 VALUES(10429, 78829, 'seventy-eight thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(10430, 4372, 'four thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(10431, 49099, 'forty-nine thousand ninety-nine');\nINSERT INTO t1 VALUES(10432, 93065, 'ninety-three thousand sixty-five');\nINSERT INTO t1 VALUES(10433, 71171, 'seventy-one thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(10434, 42549, 'forty-two thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(10435, 27017, 'twenty-seven thousand seventeen');\nINSERT INTO t1 VALUES(10436, 86751, 'eighty-six thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(10437, 27138, 'twenty-seven thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(10438, 82559, 'eighty-two thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(10439, 47489, 'forty-seven thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(10440, 84153, 'eighty-four thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(10441, 39475, 'thirty-nine thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(10442, 91342, 'ninety-one thousand three hundred forty-two');\nINSERT INTO t1 VALUES(10443, 57742, 'fifty-seven thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(10444, 76093, 'seventy-six thousand ninety-three');\nINSERT INTO t1 VALUES(10445, 14533, 'fourteen thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(10446, 41692, 'forty-one thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(10447, 76409, 'seventy-six thousand four hundred nine');\nINSERT INTO t1 VALUES(10448, 25259, 'twenty-five thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(10449, 28015, 'twenty-eight thousand fifteen');\nINSERT INTO t1 VALUES(10450, 46882, 'forty-six thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(10451, 62125, 'sixty-two thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(10452, 39498, 'thirty-nine thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(10453, 16375, 'sixteen thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(10454, 366, 'three hundred sixty-six');\nINSERT INTO t1 VALUES(10455, 49826, 'forty-nine thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(10456, 16615, 'sixteen thousand six hundred fifteen');\nINSERT INTO t1 VALUES(10457, 70810, 'seventy thousand eight hundred ten');\nINSERT INTO t1 VALUES(10458, 22783, 'twenty-two thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(10459, 81536, 'eighty-one thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(10460, 46889, 'forty-six thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(10461, 81677, 'eighty-one thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(10462, 92648, 'ninety-two thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(10463, 16548, 'sixteen thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(10464, 91720, 'ninety-one thousand seven hundred twenty');\nINSERT INTO t1 VALUES(10465, 32478, 'thirty-two thousand four hundred seventy-eight');\nINSERT INTO t1 VALUES(10466, 51342, 'fifty-one thousand three hundred forty-two');\nINSERT INTO t1 VALUES(10467, 90295, 'ninety thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(10468, 91895, 'ninety-one thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(10469, 75656, 'seventy-five thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(10470, 84634, 'eighty-four thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(10471, 63427, 'sixty-three thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(10472, 4723, 'four thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(10473, 74548, 'seventy-four thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(10474, 49181, 'forty-nine thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(10475, 23757, 'twenty-three thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(10476, 97934, 'ninety-seven thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(10477, 26872, 'twenty-six thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(10478, 37034, 'thirty-seven thousand thirty-four');\nINSERT INTO t1 VALUES(10479, 53436, 'fifty-three thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(10480, 1302, 'one thousand three hundred two');\nINSERT INTO t1 VALUES(10481, 62290, 'sixty-two thousand two hundred ninety');\nINSERT INTO t1 VALUES(10482, 1358, 'one thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(10483, 65278, 'sixty-five thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(10484, 7980, 'seven thousand nine hundred eighty');\nINSERT INTO t1 VALUES(10485, 33790, 'thirty-three thousand seven hundred ninety');\nINSERT INTO t1 VALUES(10486, 32248, 'thirty-two thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(10487, 38282, 'thirty-eight thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(10488, 6176, 'six thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(10489, 93747, 'ninety-three thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(10490, 56242, 'fifty-six thousand two hundred forty-two');\nINSERT INTO t1 VALUES(10491, 94295, 'ninety-four thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(10492, 68486, 'sixty-eight thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(10493, 34229, 'thirty-four thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(10494, 3293, 'three thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(10495, 4504, 'four thousand five hundred four');\nINSERT INTO t1 VALUES(10496, 28632, 'twenty-eight thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(10497, 38790, 'thirty-eight thousand seven hundred ninety');\nINSERT INTO t1 VALUES(10498, 87035, 'eighty-seven thousand thirty-five');\nINSERT INTO t1 VALUES(10499, 36651, 'thirty-six thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(10500, 19730, 'nineteen thousand seven hundred thirty');\nINSERT INTO t1 VALUES(10501, 16718, 'sixteen thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(10502, 78722, 'seventy-eight thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(10503, 83953, 'eighty-three thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(10504, 63382, 'sixty-three thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(10505, 25135, 'twenty-five thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(10506, 29109, 'twenty-nine thousand one hundred nine');\nINSERT INTO t1 VALUES(10507, 39209, 'thirty-nine thousand two hundred nine');\nINSERT INTO t1 VALUES(10508, 15915, 'fifteen thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(10509, 33403, 'thirty-three thousand four hundred three');\nINSERT INTO t1 VALUES(10510, 78326, 'seventy-eight thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(10511, 59390, 'fifty-nine thousand three hundred ninety');\nINSERT INTO t1 VALUES(10512, 13292, 'thirteen thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(10513, 2416, 'two thousand four hundred sixteen');\nINSERT INTO t1 VALUES(10514, 10734, 'ten thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(10515, 69376, 'sixty-nine thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(10516, 33638, 'thirty-three thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(10517, 62176, 'sixty-two thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(10518, 48737, 'forty-eight thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(10519, 6038, 'six thousand thirty-eight');\nINSERT INTO t1 VALUES(10520, 98846, 'ninety-eight thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(10521, 67560, 'sixty-seven thousand five hundred sixty');\nINSERT INTO t1 VALUES(10522, 21302, 'twenty-one thousand three hundred two');\nINSERT INTO t1 VALUES(10523, 32884, 'thirty-two thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(10524, 83442, 'eighty-three thousand four hundred forty-two');\nINSERT INTO t1 VALUES(10525, 99394, 'ninety-nine thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(10526, 30752, 'thirty thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(10527, 24327, 'twenty-four thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(10528, 12300, 'twelve thousand three hundred');\nINSERT INTO t1 VALUES(10529, 7667, 'seven thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(10530, 75168, 'seventy-five thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(10531, 83186, 'eighty-three thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(10532, 55805, 'fifty-five thousand eight hundred five');\nINSERT INTO t1 VALUES(10533, 14512, 'fourteen thousand five hundred twelve');\nINSERT INTO t1 VALUES(10534, 29250, 'twenty-nine thousand two hundred fifty');\nINSERT INTO t1 VALUES(10535, 17088, 'seventeen thousand eighty-eight');\nINSERT INTO t1 VALUES(10536, 29702, 'twenty-nine thousand seven hundred two');\nINSERT INTO t1 VALUES(10537, 33326, 'thirty-three thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(10538, 45640, 'forty-five thousand six hundred forty');\nINSERT INTO t1 VALUES(10539, 43281, 'forty-three thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(10540, 28638, 'twenty-eight thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(10541, 7248, 'seven thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(10542, 22783, 'twenty-two thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(10543, 97585, 'ninety-seven thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(10544, 34460, 'thirty-four thousand four hundred sixty');\nINSERT INTO t1 VALUES(10545, 59723, 'fifty-nine thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(10546, 98634, 'ninety-eight thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(10547, 87620, 'eighty-seven thousand six hundred twenty');\nINSERT INTO t1 VALUES(10548, 27883, 'twenty-seven thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(10549, 54861, 'fifty-four thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(10550, 32368, 'thirty-two thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(10551, 17685, 'seventeen thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(10552, 37192, 'thirty-seven thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(10553, 44316, 'forty-four thousand three hundred sixteen');\nINSERT INTO t1 VALUES(10554, 43834, 'forty-three thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(10555, 49891, 'forty-nine thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(10556, 78843, 'seventy-eight thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(10557, 9979, 'nine thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(10558, 67425, 'sixty-seven thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(10559, 47584, 'forty-seven thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(10560, 68505, 'sixty-eight thousand five hundred five');\nINSERT INTO t1 VALUES(10561, 75266, 'seventy-five thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(10562, 45621, 'forty-five thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(10563, 55232, 'fifty-five thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(10564, 86211, 'eighty-six thousand two hundred eleven');\nINSERT INTO t1 VALUES(10565, 1088, 'one thousand eighty-eight');\nINSERT INTO t1 VALUES(10566, 32840, 'thirty-two thousand eight hundred forty');\nINSERT INTO t1 VALUES(10567, 5792, 'five thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(10568, 62030, 'sixty-two thousand thirty');\nINSERT INTO t1 VALUES(10569, 6802, 'six thousand eight hundred two');\nINSERT INTO t1 VALUES(10570, 46502, 'forty-six thousand five hundred two');\nINSERT INTO t1 VALUES(10571, 14090, 'fourteen thousand ninety');\nINSERT INTO t1 VALUES(10572, 95526, 'ninety-five thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(10573, 6289, 'six thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(10574, 23207, 'twenty-three thousand two hundred seven');\nINSERT INTO t1 VALUES(10575, 15063, 'fifteen thousand sixty-three');\nINSERT INTO t1 VALUES(10576, 90094, 'ninety thousand ninety-four');\nINSERT INTO t1 VALUES(10577, 85139, 'eighty-five thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(10578, 63464, 'sixty-three thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(10579, 28583, 'twenty-eight thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(10580, 87721, 'eighty-seven thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(10581, 4356, 'four thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(10582, 24643, 'twenty-four thousand six hundred forty-three');\nINSERT INTO t1 VALUES(10583, 90945, 'ninety thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(10584, 69791, 'sixty-nine thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(10585, 2383, 'two thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(10586, 52937, 'fifty-two thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(10587, 91666, 'ninety-one thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(10588, 54807, 'fifty-four thousand eight hundred seven');\nINSERT INTO t1 VALUES(10589, 32736, 'thirty-two thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(10590, 72013, 'seventy-two thousand thirteen');\nINSERT INTO t1 VALUES(10591, 10578, 'ten thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(10592, 60126, 'sixty thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(10593, 50458, 'fifty thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(10594, 13667, 'thirteen thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(10595, 61625, 'sixty-one thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(10596, 30657, 'thirty thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(10597, 42087, 'forty-two thousand eighty-seven');\nINSERT INTO t1 VALUES(10598, 53681, 'fifty-three thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(10599, 89124, 'eighty-nine thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(10600, 86320, 'eighty-six thousand three hundred twenty');\nINSERT INTO t1 VALUES(10601, 32275, 'thirty-two thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(10602, 57065, 'fifty-seven thousand sixty-five');\nINSERT INTO t1 VALUES(10603, 98090, 'ninety-eight thousand ninety');\nINSERT INTO t1 VALUES(10604, 43847, 'forty-three thousand eight hundred forty-seven');\nINSERT INTO t1 VALUES(10605, 29163, 'twenty-nine thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(10606, 7137, 'seven thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(10607, 91483, 'ninety-one thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(10608, 3969, 'three thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(10609, 10768, 'ten thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(10610, 81279, 'eighty-one thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(10611, 25460, 'twenty-five thousand four hundred sixty');\nINSERT INTO t1 VALUES(10612, 89829, 'eighty-nine thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(10613, 89214, 'eighty-nine thousand two hundred fourteen');\nINSERT INTO t1 VALUES(10614, 52349, 'fifty-two thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(10615, 17904, 'seventeen thousand nine hundred four');\nINSERT INTO t1 VALUES(10616, 55110, 'fifty-five thousand one hundred ten');\nINSERT INTO t1 VALUES(10617, 81556, 'eighty-one thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(10618, 15796, 'fifteen thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(10619, 3036, 'three thousand thirty-six');\nINSERT INTO t1 VALUES(10620, 80473, 'eighty thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(10621, 12116, 'twelve thousand one hundred sixteen');\nINSERT INTO t1 VALUES(10622, 4885, 'four thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(10623, 39420, 'thirty-nine thousand four hundred twenty');\nINSERT INTO t1 VALUES(10624, 26840, 'twenty-six thousand eight hundred forty');\nINSERT INTO t1 VALUES(10625, 41718, 'forty-one thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(10626, 64353, 'sixty-four thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(10627, 32877, 'thirty-two thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(10628, 18902, 'eighteen thousand nine hundred two');\nINSERT INTO t1 VALUES(10629, 64933, 'sixty-four thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(10630, 35253, 'thirty-five thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(10631, 39960, 'thirty-nine thousand nine hundred sixty');\nINSERT INTO t1 VALUES(10632, 69788, 'sixty-nine thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(10633, 82471, 'eighty-two thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(10634, 23299, 'twenty-three thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(10635, 44518, 'forty-four thousand five hundred eighteen');\nINSERT INTO t1 VALUES(10636, 83289, 'eighty-three thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(10637, 12959, 'twelve thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(10638, 62508, 'sixty-two thousand five hundred eight');\nINSERT INTO t1 VALUES(10639, 35183, 'thirty-five thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(10640, 69241, 'sixty-nine thousand two hundred forty-one');\nINSERT INTO t1 VALUES(10641, 36152, 'thirty-six thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(10642, 52952, 'fifty-two thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(10643, 8415, 'eight thousand four hundred fifteen');\nINSERT INTO t1 VALUES(10644, 75389, 'seventy-five thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(10645, 3164, 'three thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(10646, 63037, 'sixty-three thousand thirty-seven');\nINSERT INTO t1 VALUES(10647, 93929, 'ninety-three thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(10648, 81547, 'eighty-one thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(10649, 5456, 'five thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(10650, 82321, 'eighty-two thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(10651, 92415, 'ninety-two thousand four hundred fifteen');\nINSERT INTO t1 VALUES(10652, 54122, 'fifty-four thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(10653, 84559, 'eighty-four thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(10654, 77833, 'seventy-seven thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(10655, 96560, 'ninety-six thousand five hundred sixty');\nINSERT INTO t1 VALUES(10656, 34949, 'thirty-four thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(10657, 12036, 'twelve thousand thirty-six');\nINSERT INTO t1 VALUES(10658, 27239, 'twenty-seven thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(10659, 84824, 'eighty-four thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(10660, 77815, 'seventy-seven thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(10661, 31557, 'thirty-one thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(10662, 22811, 'twenty-two thousand eight hundred eleven');\nINSERT INTO t1 VALUES(10663, 9110, 'nine thousand one hundred ten');\nINSERT INTO t1 VALUES(10664, 95956, 'ninety-five thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(10665, 21138, 'twenty-one thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(10666, 94187, 'ninety-four thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(10667, 11080, 'eleven thousand eighty');\nINSERT INTO t1 VALUES(10668, 19071, 'nineteen thousand seventy-one');\nINSERT INTO t1 VALUES(10669, 95137, 'ninety-five thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(10670, 79742, 'seventy-nine thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(10671, 83178, 'eighty-three thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(10672, 92831, 'ninety-two thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(10673, 88885, 'eighty-eight thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(10674, 28689, 'twenty-eight thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(10675, 41738, 'forty-one thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(10676, 97645, 'ninety-seven thousand six hundred forty-five');\nINSERT INTO t1 VALUES(10677, 68315, 'sixty-eight thousand three hundred fifteen');\nINSERT INTO t1 VALUES(10678, 20855, 'twenty thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(10679, 95266, 'ninety-five thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(10680, 46889, 'forty-six thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(10681, 59085, 'fifty-nine thousand eighty-five');\nINSERT INTO t1 VALUES(10682, 27817, 'twenty-seven thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(10683, 99627, 'ninety-nine thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(10684, 25279, 'twenty-five thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(10685, 32212, 'thirty-two thousand two hundred twelve');\nINSERT INTO t1 VALUES(10686, 57434, 'fifty-seven thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(10687, 20739, 'twenty thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(10688, 4313, 'four thousand three hundred thirteen');\nINSERT INTO t1 VALUES(10689, 53402, 'fifty-three thousand four hundred two');\nINSERT INTO t1 VALUES(10690, 59917, 'fifty-nine thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(10691, 46716, 'forty-six thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(10692, 41271, 'forty-one thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(10693, 13051, 'thirteen thousand fifty-one');\nINSERT INTO t1 VALUES(10694, 70878, 'seventy thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(10695, 73383, 'seventy-three thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(10696, 26048, 'twenty-six thousand forty-eight');\nINSERT INTO t1 VALUES(10697, 18998, 'eighteen thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(10698, 10264, 'ten thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(10699, 62846, 'sixty-two thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(10700, 14514, 'fourteen thousand five hundred fourteen');\nINSERT INTO t1 VALUES(10701, 22221, 'twenty-two thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(10702, 74900, 'seventy-four thousand nine hundred');\nINSERT INTO t1 VALUES(10703, 10563, 'ten thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(10704, 18949, 'eighteen thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(10705, 95105, 'ninety-five thousand one hundred five');\nINSERT INTO t1 VALUES(10706, 5983, 'five thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(10707, 24749, 'twenty-four thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(10708, 84493, 'eighty-four thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(10709, 86999, 'eighty-six thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(10710, 53698, 'fifty-three thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(10711, 86644, 'eighty-six thousand six hundred forty-four');\nINSERT INTO t1 VALUES(10712, 57683, 'fifty-seven thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(10713, 43516, 'forty-three thousand five hundred sixteen');\nINSERT INTO t1 VALUES(10714, 50879, 'fifty thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(10715, 1550, 'one thousand five hundred fifty');\nINSERT INTO t1 VALUES(10716, 37513, 'thirty-seven thousand five hundred thirteen');\nINSERT INTO t1 VALUES(10717, 51405, 'fifty-one thousand four hundred five');\nINSERT INTO t1 VALUES(10718, 12167, 'twelve thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(10719, 64332, 'sixty-four thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(10720, 82332, 'eighty-two thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(10721, 51731, 'fifty-one thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(10722, 72888, 'seventy-two thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(10723, 20215, 'twenty thousand two hundred fifteen');\nINSERT INTO t1 VALUES(10724, 62782, 'sixty-two thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(10725, 16241, 'sixteen thousand two hundred forty-one');\nINSERT INTO t1 VALUES(10726, 96359, 'ninety-six thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(10727, 98429, 'ninety-eight thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(10728, 56311, 'fifty-six thousand three hundred eleven');\nINSERT INTO t1 VALUES(10729, 49114, 'forty-nine thousand one hundred fourteen');\nINSERT INTO t1 VALUES(10730, 99936, 'ninety-nine thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(10731, 32643, 'thirty-two thousand six hundred forty-three');\nINSERT INTO t1 VALUES(10732, 90813, 'ninety thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(10733, 74799, 'seventy-four thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(10734, 4500, 'four thousand five hundred');\nINSERT INTO t1 VALUES(10735, 15242, 'fifteen thousand two hundred forty-two');\nINSERT INTO t1 VALUES(10736, 42398, 'forty-two thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(10737, 76599, 'seventy-six thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(10738, 96217, 'ninety-six thousand two hundred seventeen');\nINSERT INTO t1 VALUES(10739, 80722, 'eighty thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(10740, 15274, 'fifteen thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(10741, 90567, 'ninety thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(10742, 11330, 'eleven thousand three hundred thirty');\nINSERT INTO t1 VALUES(10743, 31315, 'thirty-one thousand three hundred fifteen');\nINSERT INTO t1 VALUES(10744, 45306, 'forty-five thousand three hundred six');\nINSERT INTO t1 VALUES(10745, 41262, 'forty-one thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(10746, 57074, 'fifty-seven thousand seventy-four');\nINSERT INTO t1 VALUES(10747, 52000, 'fifty-two thousand');\nINSERT INTO t1 VALUES(10748, 61762, 'sixty-one thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(10749, 25799, 'twenty-five thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(10750, 70916, 'seventy thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(10751, 89090, 'eighty-nine thousand ninety');\nINSERT INTO t1 VALUES(10752, 66904, 'sixty-six thousand nine hundred four');\nINSERT INTO t1 VALUES(10753, 60036, 'sixty thousand thirty-six');\nINSERT INTO t1 VALUES(10754, 49730, 'forty-nine thousand seven hundred thirty');\nINSERT INTO t1 VALUES(10755, 59397, 'fifty-nine thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(10756, 66385, 'sixty-six thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(10757, 59896, 'fifty-nine thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(10758, 87689, 'eighty-seven thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(10759, 71379, 'seventy-one thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(10760, 64816, 'sixty-four thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(10761, 12503, 'twelve thousand five hundred three');\nINSERT INTO t1 VALUES(10762, 78389, 'seventy-eight thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(10763, 78353, 'seventy-eight thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(10764, 9354, 'nine thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(10765, 64345, 'sixty-four thousand three hundred forty-five');\nINSERT INTO t1 VALUES(10766, 11837, 'eleven thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(10767, 21734, 'twenty-one thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(10768, 94695, 'ninety-four thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(10769, 48144, 'forty-eight thousand one hundred forty-four');\nINSERT INTO t1 VALUES(10770, 48526, 'forty-eight thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(10771, 9288, 'nine thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(10772, 29729, 'twenty-nine thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(10773, 23390, 'twenty-three thousand three hundred ninety');\nINSERT INTO t1 VALUES(10774, 96093, 'ninety-six thousand ninety-three');\nINSERT INTO t1 VALUES(10775, 96955, 'ninety-six thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(10776, 46608, 'forty-six thousand six hundred eight');\nINSERT INTO t1 VALUES(10777, 81580, 'eighty-one thousand five hundred eighty');\nINSERT INTO t1 VALUES(10778, 39547, 'thirty-nine thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(10779, 63311, 'sixty-three thousand three hundred eleven');\nINSERT INTO t1 VALUES(10780, 69091, 'sixty-nine thousand ninety-one');\nINSERT INTO t1 VALUES(10781, 14018, 'fourteen thousand eighteen');\nINSERT INTO t1 VALUES(10782, 8312, 'eight thousand three hundred twelve');\nINSERT INTO t1 VALUES(10783, 33064, 'thirty-three thousand sixty-four');\nINSERT INTO t1 VALUES(10784, 61080, 'sixty-one thousand eighty');\nINSERT INTO t1 VALUES(10785, 68978, 'sixty-eight thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(10786, 58771, 'fifty-eight thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(10787, 11867, 'eleven thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(10788, 2191, 'two thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(10789, 63469, 'sixty-three thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(10790, 96149, 'ninety-six thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(10791, 22426, 'twenty-two thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(10792, 66869, 'sixty-six thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(10793, 47522, 'forty-seven thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(10794, 62202, 'sixty-two thousand two hundred two');\nINSERT INTO t1 VALUES(10795, 22152, 'twenty-two thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(10796, 96885, 'ninety-six thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(10797, 88877, 'eighty-eight thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(10798, 33183, 'thirty-three thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(10799, 33194, 'thirty-three thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(10800, 38503, 'thirty-eight thousand five hundred three');\nINSERT INTO t1 VALUES(10801, 23378, 'twenty-three thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(10802, 65338, 'sixty-five thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(10803, 49623, 'forty-nine thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(10804, 53627, 'fifty-three thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(10805, 96028, 'ninety-six thousand twenty-eight');\nINSERT INTO t1 VALUES(10806, 12055, 'twelve thousand fifty-five');\nINSERT INTO t1 VALUES(10807, 23547, 'twenty-three thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(10808, 90071, 'ninety thousand seventy-one');\nINSERT INTO t1 VALUES(10809, 93342, 'ninety-three thousand three hundred forty-two');\nINSERT INTO t1 VALUES(10810, 20092, 'twenty thousand ninety-two');\nINSERT INTO t1 VALUES(10811, 49996, 'forty-nine thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(10812, 11784, 'eleven thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(10813, 64869, 'sixty-four thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(10814, 33483, 'thirty-three thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(10815, 91058, 'ninety-one thousand fifty-eight');\nINSERT INTO t1 VALUES(10816, 32646, 'thirty-two thousand six hundred forty-six');\nINSERT INTO t1 VALUES(10817, 17269, 'seventeen thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(10818, 82328, 'eighty-two thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(10819, 9053, 'nine thousand fifty-three');\nINSERT INTO t1 VALUES(10820, 1815, 'one thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(10821, 76024, 'seventy-six thousand twenty-four');\nINSERT INTO t1 VALUES(10822, 45566, 'forty-five thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(10823, 7681, 'seven thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(10824, 75631, 'seventy-five thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(10825, 19416, 'nineteen thousand four hundred sixteen');\nINSERT INTO t1 VALUES(10826, 34508, 'thirty-four thousand five hundred eight');\nINSERT INTO t1 VALUES(10827, 86188, 'eighty-six thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(10828, 57730, 'fifty-seven thousand seven hundred thirty');\nINSERT INTO t1 VALUES(10829, 78122, 'seventy-eight thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(10830, 57658, 'fifty-seven thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(10831, 23935, 'twenty-three thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(10832, 8509, 'eight thousand five hundred nine');\nINSERT INTO t1 VALUES(10833, 41998, 'forty-one thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(10834, 22443, 'twenty-two thousand four hundred forty-three');\nINSERT INTO t1 VALUES(10835, 34240, 'thirty-four thousand two hundred forty');\nINSERT INTO t1 VALUES(10836, 58526, 'fifty-eight thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(10837, 4787, 'four thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(10838, 67129, 'sixty-seven thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(10839, 62453, 'sixty-two thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(10840, 79586, 'seventy-nine thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(10841, 7493, 'seven thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(10842, 12259, 'twelve thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(10843, 52059, 'fifty-two thousand fifty-nine');\nINSERT INTO t1 VALUES(10844, 83337, 'eighty-three thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(10845, 32091, 'thirty-two thousand ninety-one');\nINSERT INTO t1 VALUES(10846, 11790, 'eleven thousand seven hundred ninety');\nINSERT INTO t1 VALUES(10847, 98420, 'ninety-eight thousand four hundred twenty');\nINSERT INTO t1 VALUES(10848, 45711, 'forty-five thousand seven hundred eleven');\nINSERT INTO t1 VALUES(10849, 51695, 'fifty-one thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(10850, 96850, 'ninety-six thousand eight hundred fifty');\nINSERT INTO t1 VALUES(10851, 98458, 'ninety-eight thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(10852, 35011, 'thirty-five thousand eleven');\nINSERT INTO t1 VALUES(10853, 14683, 'fourteen thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(10854, 96888, 'ninety-six thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(10855, 82426, 'eighty-two thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(10856, 11234, 'eleven thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(10857, 85034, 'eighty-five thousand thirty-four');\nINSERT INTO t1 VALUES(10858, 81274, 'eighty-one thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(10859, 82230, 'eighty-two thousand two hundred thirty');\nINSERT INTO t1 VALUES(10860, 85989, 'eighty-five thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(10861, 66536, 'sixty-six thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(10862, 33191, 'thirty-three thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(10863, 23539, 'twenty-three thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(10864, 74767, 'seventy-four thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(10865, 88593, 'eighty-eight thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(10866, 93031, 'ninety-three thousand thirty-one');\nINSERT INTO t1 VALUES(10867, 67221, 'sixty-seven thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(10868, 69105, 'sixty-nine thousand one hundred five');\nINSERT INTO t1 VALUES(10869, 79347, 'seventy-nine thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(10870, 27148, 'twenty-seven thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(10871, 39436, 'thirty-nine thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(10872, 14979, 'fourteen thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(10873, 95073, 'ninety-five thousand seventy-three');\nINSERT INTO t1 VALUES(10874, 22359, 'twenty-two thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(10875, 65326, 'sixty-five thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(10876, 38853, 'thirty-eight thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(10877, 40785, 'forty thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(10878, 76787, 'seventy-six thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(10879, 23233, 'twenty-three thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(10880, 88496, 'eighty-eight thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(10881, 96468, 'ninety-six thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(10882, 50236, 'fifty thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(10883, 27193, 'twenty-seven thousand one hundred ninety-three');\nINSERT INTO t1 VALUES(10884, 461, 'four hundred sixty-one');\nINSERT INTO t1 VALUES(10885, 51517, 'fifty-one thousand five hundred seventeen');\nINSERT INTO t1 VALUES(10886, 66530, 'sixty-six thousand five hundred thirty');\nINSERT INTO t1 VALUES(10887, 97728, 'ninety-seven thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(10888, 66902, 'sixty-six thousand nine hundred two');\nINSERT INTO t1 VALUES(10889, 85268, 'eighty-five thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(10890, 46403, 'forty-six thousand four hundred three');\nINSERT INTO t1 VALUES(10891, 252, 'two hundred fifty-two');\nINSERT INTO t1 VALUES(10892, 54126, 'fifty-four thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(10893, 79876, 'seventy-nine thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(10894, 14464, 'fourteen thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(10895, 28362, 'twenty-eight thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(10896, 19447, 'nineteen thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(10897, 13730, 'thirteen thousand seven hundred thirty');\nINSERT INTO t1 VALUES(10898, 97977, 'ninety-seven thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(10899, 59453, 'fifty-nine thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(10900, 27139, 'twenty-seven thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(10901, 17937, 'seventeen thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(10902, 51267, 'fifty-one thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(10903, 85070, 'eighty-five thousand seventy');\nINSERT INTO t1 VALUES(10904, 29780, 'twenty-nine thousand seven hundred eighty');\nINSERT INTO t1 VALUES(10905, 25436, 'twenty-five thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(10906, 8806, 'eight thousand eight hundred six');\nINSERT INTO t1 VALUES(10907, 35180, 'thirty-five thousand one hundred eighty');\nINSERT INTO t1 VALUES(10908, 3701, 'three thousand seven hundred one');\nINSERT INTO t1 VALUES(10909, 97212, 'ninety-seven thousand two hundred twelve');\nINSERT INTO t1 VALUES(10910, 47810, 'forty-seven thousand eight hundred ten');\nINSERT INTO t1 VALUES(10911, 82542, 'eighty-two thousand five hundred forty-two');\nINSERT INTO t1 VALUES(10912, 76595, 'seventy-six thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(10913, 50943, 'fifty thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(10914, 42271, 'forty-two thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(10915, 50961, 'fifty thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(10916, 5271, 'five thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(10917, 66449, 'sixty-six thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(10918, 24572, 'twenty-four thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(10919, 87200, 'eighty-seven thousand two hundred');\nINSERT INTO t1 VALUES(10920, 75613, 'seventy-five thousand six hundred thirteen');\nINSERT INTO t1 VALUES(10921, 48748, 'forty-eight thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(10922, 1894, 'one thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(10923, 61788, 'sixty-one thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(10924, 12099, 'twelve thousand ninety-nine');\nINSERT INTO t1 VALUES(10925, 6783, 'six thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(10926, 87198, 'eighty-seven thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(10927, 59719, 'fifty-nine thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(10928, 66019, 'sixty-six thousand nineteen');\nINSERT INTO t1 VALUES(10929, 4352, 'four thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(10930, 969, 'nine hundred sixty-nine');\nINSERT INTO t1 VALUES(10931, 54391, 'fifty-four thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(10932, 94703, 'ninety-four thousand seven hundred three');\nINSERT INTO t1 VALUES(10933, 75766, 'seventy-five thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(10934, 55712, 'fifty-five thousand seven hundred twelve');\nINSERT INTO t1 VALUES(10935, 86909, 'eighty-six thousand nine hundred nine');\nINSERT INTO t1 VALUES(10936, 42893, 'forty-two thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(10937, 81367, 'eighty-one thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(10938, 37186, 'thirty-seven thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(10939, 34100, 'thirty-four thousand one hundred');\nINSERT INTO t1 VALUES(10940, 49485, 'forty-nine thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(10941, 5064, 'five thousand sixty-four');\nINSERT INTO t1 VALUES(10942, 63099, 'sixty-three thousand ninety-nine');\nINSERT INTO t1 VALUES(10943, 13226, 'thirteen thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(10944, 38736, 'thirty-eight thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(10945, 45664, 'forty-five thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(10946, 16973, 'sixteen thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(10947, 79317, 'seventy-nine thousand three hundred seventeen');\nINSERT INTO t1 VALUES(10948, 63226, 'sixty-three thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(10949, 13040, 'thirteen thousand forty');\nINSERT INTO t1 VALUES(10950, 80284, 'eighty thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(10951, 92496, 'ninety-two thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(10952, 58750, 'fifty-eight thousand seven hundred fifty');\nINSERT INTO t1 VALUES(10953, 27269, 'twenty-seven thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(10954, 49101, 'forty-nine thousand one hundred one');\nINSERT INTO t1 VALUES(10955, 79100, 'seventy-nine thousand one hundred');\nINSERT INTO t1 VALUES(10956, 48054, 'forty-eight thousand fifty-four');\nINSERT INTO t1 VALUES(10957, 99619, 'ninety-nine thousand six hundred nineteen');\nINSERT INTO t1 VALUES(10958, 57618, 'fifty-seven thousand six hundred eighteen');\nINSERT INTO t1 VALUES(10959, 48220, 'forty-eight thousand two hundred twenty');\nINSERT INTO t1 VALUES(10960, 63450, 'sixty-three thousand four hundred fifty');\nINSERT INTO t1 VALUES(10961, 76115, 'seventy-six thousand one hundred fifteen');\nINSERT INTO t1 VALUES(10962, 46025, 'forty-six thousand twenty-five');\nINSERT INTO t1 VALUES(10963, 12317, 'twelve thousand three hundred seventeen');\nINSERT INTO t1 VALUES(10964, 43814, 'forty-three thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(10965, 62183, 'sixty-two thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(10966, 82202, 'eighty-two thousand two hundred two');\nINSERT INTO t1 VALUES(10967, 55776, 'fifty-five thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(10968, 19038, 'nineteen thousand thirty-eight');\nINSERT INTO t1 VALUES(10969, 22939, 'twenty-two thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(10970, 35172, 'thirty-five thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(10971, 54479, 'fifty-four thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(10972, 55441, 'fifty-five thousand four hundred forty-one');\nINSERT INTO t1 VALUES(10973, 60209, 'sixty thousand two hundred nine');\nINSERT INTO t1 VALUES(10974, 1515, 'one thousand five hundred fifteen');\nINSERT INTO t1 VALUES(10975, 41346, 'forty-one thousand three hundred forty-six');\nINSERT INTO t1 VALUES(10976, 92456, 'ninety-two thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(10977, 27830, 'twenty-seven thousand eight hundred thirty');\nINSERT INTO t1 VALUES(10978, 94089, 'ninety-four thousand eighty-nine');\nINSERT INTO t1 VALUES(10979, 16491, 'sixteen thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(10980, 21499, 'twenty-one thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(10981, 60678, 'sixty thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(10982, 62826, 'sixty-two thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(10983, 98474, 'ninety-eight thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(10984, 28801, 'twenty-eight thousand eight hundred one');\nINSERT INTO t1 VALUES(10985, 30519, 'thirty thousand five hundred nineteen');\nINSERT INTO t1 VALUES(10986, 92445, 'ninety-two thousand four hundred forty-five');\nINSERT INTO t1 VALUES(10987, 7658, 'seven thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(10988, 12762, 'twelve thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(10989, 8920, 'eight thousand nine hundred twenty');\nINSERT INTO t1 VALUES(10990, 31854, 'thirty-one thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(10991, 36357, 'thirty-six thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(10992, 67440, 'sixty-seven thousand four hundred forty');\nINSERT INTO t1 VALUES(10993, 13413, 'thirteen thousand four hundred thirteen');\nINSERT INTO t1 VALUES(10994, 3276, 'three thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(10995, 48137, 'forty-eight thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(10996, 27490, 'twenty-seven thousand four hundred ninety');\nINSERT INTO t1 VALUES(10997, 94859, 'ninety-four thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(10998, 64664, 'sixty-four thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(10999, 35550, 'thirty-five thousand five hundred fifty');\nINSERT INTO t1 VALUES(11000, 64527, 'sixty-four thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(11001, 92779, 'ninety-two thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(11002, 38952, 'thirty-eight thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(11003, 27774, 'twenty-seven thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(11004, 9149, 'nine thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(11005, 67899, 'sixty-seven thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(11006, 27931, 'twenty-seven thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(11007, 25388, 'twenty-five thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(11008, 68080, 'sixty-eight thousand eighty');\nINSERT INTO t1 VALUES(11009, 95064, 'ninety-five thousand sixty-four');\nINSERT INTO t1 VALUES(11010, 32327, 'thirty-two thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(11011, 18776, 'eighteen thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(11012, 95096, 'ninety-five thousand ninety-six');\nINSERT INTO t1 VALUES(11013, 377, 'three hundred seventy-seven');\nINSERT INTO t1 VALUES(11014, 21544, 'twenty-one thousand five hundred forty-four');\nINSERT INTO t1 VALUES(11015, 6459, 'six thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(11016, 81544, 'eighty-one thousand five hundred forty-four');\nINSERT INTO t1 VALUES(11017, 48047, 'forty-eight thousand forty-seven');\nINSERT INTO t1 VALUES(11018, 113, 'one hundred thirteen');\nINSERT INTO t1 VALUES(11019, 27967, 'twenty-seven thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(11020, 26009, 'twenty-six thousand nine');\nINSERT INTO t1 VALUES(11021, 30205, 'thirty thousand two hundred five');\nINSERT INTO t1 VALUES(11022, 15382, 'fifteen thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(11023, 53473, 'fifty-three thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(11024, 58483, 'fifty-eight thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(11025, 1061, 'one thousand sixty-one');\nINSERT INTO t1 VALUES(11026, 9042, 'nine thousand forty-two');\nINSERT INTO t1 VALUES(11027, 68476, 'sixty-eight thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(11028, 95718, 'ninety-five thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(11029, 14828, 'fourteen thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(11030, 55449, 'fifty-five thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(11031, 96586, 'ninety-six thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(11032, 55448, 'fifty-five thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(11033, 32906, 'thirty-two thousand nine hundred six');\nINSERT INTO t1 VALUES(11034, 88672, 'eighty-eight thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(11035, 80220, 'eighty thousand two hundred twenty');\nINSERT INTO t1 VALUES(11036, 33798, 'thirty-three thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(11037, 79217, 'seventy-nine thousand two hundred seventeen');\nINSERT INTO t1 VALUES(11038, 8086, 'eight thousand eighty-six');\nINSERT INTO t1 VALUES(11039, 19442, 'nineteen thousand four hundred forty-two');\nINSERT INTO t1 VALUES(11040, 9619, 'nine thousand six hundred nineteen');\nINSERT INTO t1 VALUES(11041, 7271, 'seven thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(11042, 3628, 'three thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(11043, 47131, 'forty-seven thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(11044, 96042, 'ninety-six thousand forty-two');\nINSERT INTO t1 VALUES(11045, 52186, 'fifty-two thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(11046, 93855, 'ninety-three thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(11047, 26403, 'twenty-six thousand four hundred three');\nINSERT INTO t1 VALUES(11048, 25784, 'twenty-five thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(11049, 8047, 'eight thousand forty-seven');\nINSERT INTO t1 VALUES(11050, 35213, 'thirty-five thousand two hundred thirteen');\nINSERT INTO t1 VALUES(11051, 84534, 'eighty-four thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(11052, 79475, 'seventy-nine thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(11053, 80274, 'eighty thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(11054, 80154, 'eighty thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(11055, 54022, 'fifty-four thousand twenty-two');\nINSERT INTO t1 VALUES(11056, 44275, 'forty-four thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(11057, 37656, 'thirty-seven thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(11058, 53886, 'fifty-three thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(11059, 75561, 'seventy-five thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(11060, 47730, 'forty-seven thousand seven hundred thirty');\nINSERT INTO t1 VALUES(11061, 7811, 'seven thousand eight hundred eleven');\nINSERT INTO t1 VALUES(11062, 65177, 'sixty-five thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(11063, 86952, 'eighty-six thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(11064, 90950, 'ninety thousand nine hundred fifty');\nINSERT INTO t1 VALUES(11065, 98933, 'ninety-eight thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(11066, 62714, 'sixty-two thousand seven hundred fourteen');\nINSERT INTO t1 VALUES(11067, 82637, 'eighty-two thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(11068, 84277, 'eighty-four thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(11069, 82932, 'eighty-two thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(11070, 4205, 'four thousand two hundred five');\nINSERT INTO t1 VALUES(11071, 90041, 'ninety thousand forty-one');\nINSERT INTO t1 VALUES(11072, 19620, 'nineteen thousand six hundred twenty');\nINSERT INTO t1 VALUES(11073, 94636, 'ninety-four thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(11074, 70807, 'seventy thousand eight hundred seven');\nINSERT INTO t1 VALUES(11075, 53635, 'fifty-three thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(11076, 7729, 'seven thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(11077, 7132, 'seven thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(11078, 11962, 'eleven thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(11079, 67382, 'sixty-seven thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(11080, 14206, 'fourteen thousand two hundred six');\nINSERT INTO t1 VALUES(11081, 85308, 'eighty-five thousand three hundred eight');\nINSERT INTO t1 VALUES(11082, 36767, 'thirty-six thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(11083, 13691, 'thirteen thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(11084, 34864, 'thirty-four thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(11085, 97248, 'ninety-seven thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(11086, 88400, 'eighty-eight thousand four hundred');\nINSERT INTO t1 VALUES(11087, 12959, 'twelve thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(11088, 86057, 'eighty-six thousand fifty-seven');\nINSERT INTO t1 VALUES(11089, 99573, 'ninety-nine thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(11090, 28867, 'twenty-eight thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(11091, 77255, 'seventy-seven thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(11092, 99923, 'ninety-nine thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(11093, 17555, 'seventeen thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(11094, 24207, 'twenty-four thousand two hundred seven');\nINSERT INTO t1 VALUES(11095, 32197, 'thirty-two thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(11096, 70874, 'seventy thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(11097, 91243, 'ninety-one thousand two hundred forty-three');\nINSERT INTO t1 VALUES(11098, 94226, 'ninety-four thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(11099, 41678, 'forty-one thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(11100, 32744, 'thirty-two thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(11101, 76940, 'seventy-six thousand nine hundred forty');\nINSERT INTO t1 VALUES(11102, 24246, 'twenty-four thousand two hundred forty-six');\nINSERT INTO t1 VALUES(11103, 24799, 'twenty-four thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(11104, 82278, 'eighty-two thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(11105, 8810, 'eight thousand eight hundred ten');\nINSERT INTO t1 VALUES(11106, 21033, 'twenty-one thousand thirty-three');\nINSERT INTO t1 VALUES(11107, 49279, 'forty-nine thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(11108, 53894, 'fifty-three thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(11109, 13935, 'thirteen thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(11110, 90779, 'ninety thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(11111, 49789, 'forty-nine thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(11112, 27533, 'twenty-seven thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(11113, 31991, 'thirty-one thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(11114, 92086, 'ninety-two thousand eighty-six');\nINSERT INTO t1 VALUES(11115, 17907, 'seventeen thousand nine hundred seven');\nINSERT INTO t1 VALUES(11116, 40760, 'forty thousand seven hundred sixty');\nINSERT INTO t1 VALUES(11117, 46154, 'forty-six thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(11118, 44028, 'forty-four thousand twenty-eight');\nINSERT INTO t1 VALUES(11119, 82322, 'eighty-two thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(11120, 7652, 'seven thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(11121, 25012, 'twenty-five thousand twelve');\nINSERT INTO t1 VALUES(11122, 62346, 'sixty-two thousand three hundred forty-six');\nINSERT INTO t1 VALUES(11123, 18036, 'eighteen thousand thirty-six');\nINSERT INTO t1 VALUES(11124, 63989, 'sixty-three thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(11125, 25977, 'twenty-five thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(11126, 39881, 'thirty-nine thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(11127, 53450, 'fifty-three thousand four hundred fifty');\nINSERT INTO t1 VALUES(11128, 14366, 'fourteen thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(11129, 45033, 'forty-five thousand thirty-three');\nINSERT INTO t1 VALUES(11130, 84124, 'eighty-four thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(11131, 88830, 'eighty-eight thousand eight hundred thirty');\nINSERT INTO t1 VALUES(11132, 23251, 'twenty-three thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(11133, 60609, 'sixty thousand six hundred nine');\nINSERT INTO t1 VALUES(11134, 22197, 'twenty-two thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(11135, 88007, 'eighty-eight thousand seven');\nINSERT INTO t1 VALUES(11136, 9551, 'nine thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(11137, 974, 'nine hundred seventy-four');\nINSERT INTO t1 VALUES(11138, 26064, 'twenty-six thousand sixty-four');\nINSERT INTO t1 VALUES(11139, 58260, 'fifty-eight thousand two hundred sixty');\nINSERT INTO t1 VALUES(11140, 2924, 'two thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(11141, 18991, 'eighteen thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(11142, 45192, 'forty-five thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(11143, 56707, 'fifty-six thousand seven hundred seven');\nINSERT INTO t1 VALUES(11144, 47479, 'forty-seven thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(11145, 5210, 'five thousand two hundred ten');\nINSERT INTO t1 VALUES(11146, 67744, 'sixty-seven thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(11147, 25182, 'twenty-five thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(11148, 26254, 'twenty-six thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(11149, 10598, 'ten thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(11150, 17093, 'seventeen thousand ninety-three');\nINSERT INTO t1 VALUES(11151, 57792, 'fifty-seven thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(11152, 44167, 'forty-four thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(11153, 39885, 'thirty-nine thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(11154, 95249, 'ninety-five thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(11155, 58791, 'fifty-eight thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(11156, 88122, 'eighty-eight thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(11157, 17152, 'seventeen thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(11158, 61458, 'sixty-one thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(11159, 99723, 'ninety-nine thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(11160, 68189, 'sixty-eight thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(11161, 2453, 'two thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(11162, 25468, 'twenty-five thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(11163, 88041, 'eighty-eight thousand forty-one');\nINSERT INTO t1 VALUES(11164, 58299, 'fifty-eight thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(11165, 55464, 'fifty-five thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(11166, 56279, 'fifty-six thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(11167, 75704, 'seventy-five thousand seven hundred four');\nINSERT INTO t1 VALUES(11168, 67092, 'sixty-seven thousand ninety-two');\nINSERT INTO t1 VALUES(11169, 55477, 'fifty-five thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(11170, 40019, 'forty thousand nineteen');\nINSERT INTO t1 VALUES(11171, 20332, 'twenty thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(11172, 59219, 'fifty-nine thousand two hundred nineteen');\nINSERT INTO t1 VALUES(11173, 56986, 'fifty-six thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(11174, 58139, 'fifty-eight thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(11175, 79036, 'seventy-nine thousand thirty-six');\nINSERT INTO t1 VALUES(11176, 68196, 'sixty-eight thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(11177, 84276, 'eighty-four thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(11178, 21341, 'twenty-one thousand three hundred forty-one');\nINSERT INTO t1 VALUES(11179, 8146, 'eight thousand one hundred forty-six');\nINSERT INTO t1 VALUES(11180, 69459, 'sixty-nine thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(11181, 41270, 'forty-one thousand two hundred seventy');\nINSERT INTO t1 VALUES(11182, 6734, 'six thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(11183, 76693, 'seventy-six thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(11184, 66688, 'sixty-six thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(11185, 22279, 'twenty-two thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(11186, 69937, 'sixty-nine thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(11187, 29281, 'twenty-nine thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(11188, 28208, 'twenty-eight thousand two hundred eight');\nINSERT INTO t1 VALUES(11189, 50921, 'fifty thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(11190, 2817, 'two thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(11191, 83555, 'eighty-three thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(11192, 97852, 'ninety-seven thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(11193, 19221, 'nineteen thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(11194, 88185, 'eighty-eight thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(11195, 81275, 'eighty-one thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(11196, 21630, 'twenty-one thousand six hundred thirty');\nINSERT INTO t1 VALUES(11197, 30455, 'thirty thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(11198, 33726, 'thirty-three thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(11199, 67058, 'sixty-seven thousand fifty-eight');\nINSERT INTO t1 VALUES(11200, 53257, 'fifty-three thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(11201, 87683, 'eighty-seven thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(11202, 11480, 'eleven thousand four hundred eighty');\nINSERT INTO t1 VALUES(11203, 97866, 'ninety-seven thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(11204, 81268, 'eighty-one thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(11205, 56356, 'fifty-six thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(11206, 38733, 'thirty-eight thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(11207, 8611, 'eight thousand six hundred eleven');\nINSERT INTO t1 VALUES(11208, 67829, 'sixty-seven thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(11209, 24565, 'twenty-four thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(11210, 26110, 'twenty-six thousand one hundred ten');\nINSERT INTO t1 VALUES(11211, 60827, 'sixty thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(11212, 6979, 'six thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(11213, 74898, 'seventy-four thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(11214, 21032, 'twenty-one thousand thirty-two');\nINSERT INTO t1 VALUES(11215, 18131, 'eighteen thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(11216, 36306, 'thirty-six thousand three hundred six');\nINSERT INTO t1 VALUES(11217, 88068, 'eighty-eight thousand sixty-eight');\nINSERT INTO t1 VALUES(11218, 25037, 'twenty-five thousand thirty-seven');\nINSERT INTO t1 VALUES(11219, 58925, 'fifty-eight thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(11220, 14552, 'fourteen thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(11221, 35686, 'thirty-five thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(11222, 50496, 'fifty thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(11223, 53685, 'fifty-three thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(11224, 916, 'nine hundred sixteen');\nINSERT INTO t1 VALUES(11225, 59429, 'fifty-nine thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(11226, 36731, 'thirty-six thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(11227, 77527, 'seventy-seven thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(11228, 80800, 'eighty thousand eight hundred');\nINSERT INTO t1 VALUES(11229, 44052, 'forty-four thousand fifty-two');\nINSERT INTO t1 VALUES(11230, 46179, 'forty-six thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(11231, 94669, 'ninety-four thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(11232, 61298, 'sixty-one thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(11233, 63076, 'sixty-three thousand seventy-six');\nINSERT INTO t1 VALUES(11234, 57765, 'fifty-seven thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(11235, 86540, 'eighty-six thousand five hundred forty');\nINSERT INTO t1 VALUES(11236, 6967, 'six thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(11237, 70697, 'seventy thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(11238, 44963, 'forty-four thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(11239, 22702, 'twenty-two thousand seven hundred two');\nINSERT INTO t1 VALUES(11240, 29578, 'twenty-nine thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(11241, 39063, 'thirty-nine thousand sixty-three');\nINSERT INTO t1 VALUES(11242, 69544, 'sixty-nine thousand five hundred forty-four');\nINSERT INTO t1 VALUES(11243, 76435, 'seventy-six thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(11244, 35693, 'thirty-five thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(11245, 45797, 'forty-five thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(11246, 7289, 'seven thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(11247, 75048, 'seventy-five thousand forty-eight');\nINSERT INTO t1 VALUES(11248, 53234, 'fifty-three thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(11249, 26498, 'twenty-six thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(11250, 8314, 'eight thousand three hundred fourteen');\nINSERT INTO t1 VALUES(11251, 39494, 'thirty-nine thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(11252, 9863, 'nine thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(11253, 86654, 'eighty-six thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(11254, 85632, 'eighty-five thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(11255, 29995, 'twenty-nine thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(11256, 52106, 'fifty-two thousand one hundred six');\nINSERT INTO t1 VALUES(11257, 93719, 'ninety-three thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(11258, 18466, 'eighteen thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(11259, 50611, 'fifty thousand six hundred eleven');\nINSERT INTO t1 VALUES(11260, 72546, 'seventy-two thousand five hundred forty-six');\nINSERT INTO t1 VALUES(11261, 30987, 'thirty thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(11262, 38773, 'thirty-eight thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(11263, 84911, 'eighty-four thousand nine hundred eleven');\nINSERT INTO t1 VALUES(11264, 66668, 'sixty-six thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(11265, 24231, 'twenty-four thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(11266, 52248, 'fifty-two thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(11267, 96804, 'ninety-six thousand eight hundred four');\nINSERT INTO t1 VALUES(11268, 94729, 'ninety-four thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(11269, 68182, 'sixty-eight thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(11270, 90220, 'ninety thousand two hundred twenty');\nINSERT INTO t1 VALUES(11271, 54073, 'fifty-four thousand seventy-three');\nINSERT INTO t1 VALUES(11272, 38128, 'thirty-eight thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(11273, 24565, 'twenty-four thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(11274, 41922, 'forty-one thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(11275, 29049, 'twenty-nine thousand forty-nine');\nINSERT INTO t1 VALUES(11276, 45803, 'forty-five thousand eight hundred three');\nINSERT INTO t1 VALUES(11277, 48136, 'forty-eight thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(11278, 90524, 'ninety thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(11279, 45114, 'forty-five thousand one hundred fourteen');\nINSERT INTO t1 VALUES(11280, 18867, 'eighteen thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(11281, 122, 'one hundred twenty-two');\nINSERT INTO t1 VALUES(11282, 10418, 'ten thousand four hundred eighteen');\nINSERT INTO t1 VALUES(11283, 45662, 'forty-five thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(11284, 50657, 'fifty thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(11285, 14268, 'fourteen thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(11286, 86030, 'eighty-six thousand thirty');\nINSERT INTO t1 VALUES(11287, 73389, 'seventy-three thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(11288, 532, 'five hundred thirty-two');\nINSERT INTO t1 VALUES(11289, 94098, 'ninety-four thousand ninety-eight');\nINSERT INTO t1 VALUES(11290, 46527, 'forty-six thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(11291, 74486, 'seventy-four thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(11292, 66766, 'sixty-six thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(11293, 39703, 'thirty-nine thousand seven hundred three');\nINSERT INTO t1 VALUES(11294, 39625, 'thirty-nine thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(11295, 15673, 'fifteen thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(11296, 68759, 'sixty-eight thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(11297, 49583, 'forty-nine thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(11298, 35809, 'thirty-five thousand eight hundred nine');\nINSERT INTO t1 VALUES(11299, 14353, 'fourteen thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(11300, 70960, 'seventy thousand nine hundred sixty');\nINSERT INTO t1 VALUES(11301, 99706, 'ninety-nine thousand seven hundred six');\nINSERT INTO t1 VALUES(11302, 83540, 'eighty-three thousand five hundred forty');\nINSERT INTO t1 VALUES(11303, 85107, 'eighty-five thousand one hundred seven');\nINSERT INTO t1 VALUES(11304, 52445, 'fifty-two thousand four hundred forty-five');\nINSERT INTO t1 VALUES(11305, 27404, 'twenty-seven thousand four hundred four');\nINSERT INTO t1 VALUES(11306, 6878, 'six thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(11307, 6654, 'six thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(11308, 35232, 'thirty-five thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(11309, 71325, 'seventy-one thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(11310, 92010, 'ninety-two thousand ten');\nINSERT INTO t1 VALUES(11311, 10799, 'ten thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(11312, 37006, 'thirty-seven thousand six');\nINSERT INTO t1 VALUES(11313, 56285, 'fifty-six thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(11314, 37034, 'thirty-seven thousand thirty-four');\nINSERT INTO t1 VALUES(11315, 70311, 'seventy thousand three hundred eleven');\nINSERT INTO t1 VALUES(11316, 57065, 'fifty-seven thousand sixty-five');\nINSERT INTO t1 VALUES(11317, 2826, 'two thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(11318, 30897, 'thirty thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(11319, 26769, 'twenty-six thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(11320, 56432, 'fifty-six thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(11321, 38457, 'thirty-eight thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(11322, 30443, 'thirty thousand four hundred forty-three');\nINSERT INTO t1 VALUES(11323, 78854, 'seventy-eight thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(11324, 59563, 'fifty-nine thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(11325, 14198, 'fourteen thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(11326, 8543, 'eight thousand five hundred forty-three');\nINSERT INTO t1 VALUES(11327, 69920, 'sixty-nine thousand nine hundred twenty');\nINSERT INTO t1 VALUES(11328, 23888, 'twenty-three thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(11329, 9638, 'nine thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(11330, 90132, 'ninety thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(11331, 25419, 'twenty-five thousand four hundred nineteen');\nINSERT INTO t1 VALUES(11332, 53976, 'fifty-three thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(11333, 52034, 'fifty-two thousand thirty-four');\nINSERT INTO t1 VALUES(11334, 75859, 'seventy-five thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(11335, 1936, 'one thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(11336, 72251, 'seventy-two thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(11337, 21530, 'twenty-one thousand five hundred thirty');\nINSERT INTO t1 VALUES(11338, 70530, 'seventy thousand five hundred thirty');\nINSERT INTO t1 VALUES(11339, 49688, 'forty-nine thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(11340, 1628, 'one thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(11341, 64276, 'sixty-four thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(11342, 51818, 'fifty-one thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(11343, 48572, 'forty-eight thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(11344, 14345, 'fourteen thousand three hundred forty-five');\nINSERT INTO t1 VALUES(11345, 4234, 'four thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(11346, 40658, 'forty thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(11347, 61932, 'sixty-one thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(11348, 74747, 'seventy-four thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(11349, 70021, 'seventy thousand twenty-one');\nINSERT INTO t1 VALUES(11350, 5594, 'five thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(11351, 34113, 'thirty-four thousand one hundred thirteen');\nINSERT INTO t1 VALUES(11352, 39684, 'thirty-nine thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(11353, 69685, 'sixty-nine thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(11354, 31765, 'thirty-one thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(11355, 91401, 'ninety-one thousand four hundred one');\nINSERT INTO t1 VALUES(11356, 48040, 'forty-eight thousand forty');\nINSERT INTO t1 VALUES(11357, 48058, 'forty-eight thousand fifty-eight');\nINSERT INTO t1 VALUES(11358, 87304, 'eighty-seven thousand three hundred four');\nINSERT INTO t1 VALUES(11359, 61471, 'sixty-one thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(11360, 20749, 'twenty thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(11361, 75116, 'seventy-five thousand one hundred sixteen');\nINSERT INTO t1 VALUES(11362, 94764, 'ninety-four thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(11363, 23688, 'twenty-three thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(11364, 82519, 'eighty-two thousand five hundred nineteen');\nINSERT INTO t1 VALUES(11365, 32313, 'thirty-two thousand three hundred thirteen');\nINSERT INTO t1 VALUES(11366, 37648, 'thirty-seven thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(11367, 37018, 'thirty-seven thousand eighteen');\nINSERT INTO t1 VALUES(11368, 75152, 'seventy-five thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(11369, 6854, 'six thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(11370, 23796, 'twenty-three thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(11371, 64460, 'sixty-four thousand four hundred sixty');\nINSERT INTO t1 VALUES(11372, 48082, 'forty-eight thousand eighty-two');\nINSERT INTO t1 VALUES(11373, 77255, 'seventy-seven thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(11374, 33198, 'thirty-three thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(11375, 55713, 'fifty-five thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(11376, 71965, 'seventy-one thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(11377, 13317, 'thirteen thousand three hundred seventeen');\nINSERT INTO t1 VALUES(11378, 38610, 'thirty-eight thousand six hundred ten');\nINSERT INTO t1 VALUES(11379, 49209, 'forty-nine thousand two hundred nine');\nINSERT INTO t1 VALUES(11380, 79296, 'seventy-nine thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(11381, 1991, 'one thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(11382, 45703, 'forty-five thousand seven hundred three');\nINSERT INTO t1 VALUES(11383, 35133, 'thirty-five thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(11384, 13307, 'thirteen thousand three hundred seven');\nINSERT INTO t1 VALUES(11385, 19790, 'nineteen thousand seven hundred ninety');\nINSERT INTO t1 VALUES(11386, 23735, 'twenty-three thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(11387, 81734, 'eighty-one thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(11388, 4992, 'four thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(11389, 39340, 'thirty-nine thousand three hundred forty');\nINSERT INTO t1 VALUES(11390, 76767, 'seventy-six thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(11391, 12744, 'twelve thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(11392, 80887, 'eighty thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(11393, 39213, 'thirty-nine thousand two hundred thirteen');\nINSERT INTO t1 VALUES(11394, 82761, 'eighty-two thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(11395, 49998, 'forty-nine thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(11396, 26146, 'twenty-six thousand one hundred forty-six');\nINSERT INTO t1 VALUES(11397, 99544, 'ninety-nine thousand five hundred forty-four');\nINSERT INTO t1 VALUES(11398, 59132, 'fifty-nine thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(11399, 87410, 'eighty-seven thousand four hundred ten');\nINSERT INTO t1 VALUES(11400, 7477, 'seven thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(11401, 32551, 'thirty-two thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(11402, 24587, 'twenty-four thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(11403, 23366, 'twenty-three thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(11404, 6506, 'six thousand five hundred six');\nINSERT INTO t1 VALUES(11405, 17234, 'seventeen thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(11406, 60802, 'sixty thousand eight hundred two');\nINSERT INTO t1 VALUES(11407, 8453, 'eight thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(11408, 92668, 'ninety-two thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(11409, 13407, 'thirteen thousand four hundred seven');\nINSERT INTO t1 VALUES(11410, 49076, 'forty-nine thousand seventy-six');\nINSERT INTO t1 VALUES(11411, 44356, 'forty-four thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(11412, 67733, 'sixty-seven thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(11413, 5214, 'five thousand two hundred fourteen');\nINSERT INTO t1 VALUES(11414, 19748, 'nineteen thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(11415, 26896, 'twenty-six thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(11416, 80998, 'eighty thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(11417, 73725, 'seventy-three thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(11418, 26, 'twenty-six');\nINSERT INTO t1 VALUES(11419, 81561, 'eighty-one thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(11420, 55457, 'fifty-five thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(11421, 1432, 'one thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(11422, 24299, 'twenty-four thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(11423, 86061, 'eighty-six thousand sixty-one');\nINSERT INTO t1 VALUES(11424, 6949, 'six thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(11425, 3537, 'three thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(11426, 71141, 'seventy-one thousand one hundred forty-one');\nINSERT INTO t1 VALUES(11427, 36650, 'thirty-six thousand six hundred fifty');\nINSERT INTO t1 VALUES(11428, 48794, 'forty-eight thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(11429, 81832, 'eighty-one thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(11430, 15264, 'fifteen thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(11431, 99742, 'ninety-nine thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(11432, 31428, 'thirty-one thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(11433, 69500, 'sixty-nine thousand five hundred');\nINSERT INTO t1 VALUES(11434, 50474, 'fifty thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(11435, 75871, 'seventy-five thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(11436, 98799, 'ninety-eight thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(11437, 96598, 'ninety-six thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(11438, 70277, 'seventy thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(11439, 24196, 'twenty-four thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(11440, 2448, 'two thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(11441, 2189, 'two thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(11442, 77681, 'seventy-seven thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(11443, 33368, 'thirty-three thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(11444, 89467, 'eighty-nine thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(11445, 66757, 'sixty-six thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(11446, 68843, 'sixty-eight thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(11447, 75712, 'seventy-five thousand seven hundred twelve');\nINSERT INTO t1 VALUES(11448, 93789, 'ninety-three thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(11449, 91785, 'ninety-one thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(11450, 55437, 'fifty-five thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(11451, 64913, 'sixty-four thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(11452, 61058, 'sixty-one thousand fifty-eight');\nINSERT INTO t1 VALUES(11453, 72586, 'seventy-two thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(11454, 54008, 'fifty-four thousand eight');\nINSERT INTO t1 VALUES(11455, 79964, 'seventy-nine thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(11456, 65329, 'sixty-five thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(11457, 11278, 'eleven thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(11458, 81079, 'eighty-one thousand seventy-nine');\nINSERT INTO t1 VALUES(11459, 11423, 'eleven thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(11460, 78609, 'seventy-eight thousand six hundred nine');\nINSERT INTO t1 VALUES(11461, 81322, 'eighty-one thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(11462, 83008, 'eighty-three thousand eight');\nINSERT INTO t1 VALUES(11463, 62030, 'sixty-two thousand thirty');\nINSERT INTO t1 VALUES(11464, 76211, 'seventy-six thousand two hundred eleven');\nINSERT INTO t1 VALUES(11465, 44940, 'forty-four thousand nine hundred forty');\nINSERT INTO t1 VALUES(11466, 31132, 'thirty-one thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(11467, 451, 'four hundred fifty-one');\nINSERT INTO t1 VALUES(11468, 34813, 'thirty-four thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(11469, 51525, 'fifty-one thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(11470, 19797, 'nineteen thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(11471, 30615, 'thirty thousand six hundred fifteen');\nINSERT INTO t1 VALUES(11472, 87043, 'eighty-seven thousand forty-three');\nINSERT INTO t1 VALUES(11473, 18596, 'eighteen thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(11474, 58507, 'fifty-eight thousand five hundred seven');\nINSERT INTO t1 VALUES(11475, 98613, 'ninety-eight thousand six hundred thirteen');\nINSERT INTO t1 VALUES(11476, 92373, 'ninety-two thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(11477, 11573, 'eleven thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(11478, 83438, 'eighty-three thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(11479, 52226, 'fifty-two thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(11480, 78213, 'seventy-eight thousand two hundred thirteen');\nINSERT INTO t1 VALUES(11481, 65564, 'sixty-five thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(11482, 56712, 'fifty-six thousand seven hundred twelve');\nINSERT INTO t1 VALUES(11483, 9341, 'nine thousand three hundred forty-one');\nINSERT INTO t1 VALUES(11484, 8238, 'eight thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(11485, 34339, 'thirty-four thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(11486, 41117, 'forty-one thousand one hundred seventeen');\nINSERT INTO t1 VALUES(11487, 38491, 'thirty-eight thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(11488, 71427, 'seventy-one thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(11489, 12832, 'twelve thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(11490, 69566, 'sixty-nine thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(11491, 99369, 'ninety-nine thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(11492, 36972, 'thirty-six thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(11493, 13793, 'thirteen thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(11494, 67336, 'sixty-seven thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(11495, 77008, 'seventy-seven thousand eight');\nINSERT INTO t1 VALUES(11496, 84880, 'eighty-four thousand eight hundred eighty');\nINSERT INTO t1 VALUES(11497, 67593, 'sixty-seven thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(11498, 96003, 'ninety-six thousand three');\nINSERT INTO t1 VALUES(11499, 22676, 'twenty-two thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(11500, 45875, 'forty-five thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(11501, 29428, 'twenty-nine thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(11502, 71253, 'seventy-one thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(11503, 92119, 'ninety-two thousand one hundred nineteen');\nINSERT INTO t1 VALUES(11504, 87647, 'eighty-seven thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(11505, 64004, 'sixty-four thousand four');\nINSERT INTO t1 VALUES(11506, 22936, 'twenty-two thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(11507, 86547, 'eighty-six thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(11508, 24638, 'twenty-four thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(11509, 14829, 'fourteen thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(11510, 2581, 'two thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(11511, 42525, 'forty-two thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(11512, 88603, 'eighty-eight thousand six hundred three');\nINSERT INTO t1 VALUES(11513, 83540, 'eighty-three thousand five hundred forty');\nINSERT INTO t1 VALUES(11514, 63643, 'sixty-three thousand six hundred forty-three');\nINSERT INTO t1 VALUES(11515, 68500, 'sixty-eight thousand five hundred');\nINSERT INTO t1 VALUES(11516, 20593, 'twenty thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(11517, 46867, 'forty-six thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(11518, 85328, 'eighty-five thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(11519, 70571, 'seventy thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(11520, 86969, 'eighty-six thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(11521, 59122, 'fifty-nine thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(11522, 36888, 'thirty-six thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(11523, 18246, 'eighteen thousand two hundred forty-six');\nINSERT INTO t1 VALUES(11524, 5735, 'five thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(11525, 46945, 'forty-six thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(11526, 87180, 'eighty-seven thousand one hundred eighty');\nINSERT INTO t1 VALUES(11527, 63162, 'sixty-three thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(11528, 3557, 'three thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(11529, 1143, 'one thousand one hundred forty-three');\nINSERT INTO t1 VALUES(11530, 80347, 'eighty thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(11531, 96489, 'ninety-six thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(11532, 13135, 'thirteen thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(11533, 81471, 'eighty-one thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(11534, 36025, 'thirty-six thousand twenty-five');\nINSERT INTO t1 VALUES(11535, 36734, 'thirty-six thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(11536, 19779, 'nineteen thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(11537, 91936, 'ninety-one thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(11538, 64100, 'sixty-four thousand one hundred');\nINSERT INTO t1 VALUES(11539, 62978, 'sixty-two thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(11540, 33214, 'thirty-three thousand two hundred fourteen');\nINSERT INTO t1 VALUES(11541, 8158, 'eight thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(11542, 60898, 'sixty thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(11543, 96915, 'ninety-six thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(11544, 38058, 'thirty-eight thousand fifty-eight');\nINSERT INTO t1 VALUES(11545, 24141, 'twenty-four thousand one hundred forty-one');\nINSERT INTO t1 VALUES(11546, 51175, 'fifty-one thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(11547, 79766, 'seventy-nine thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(11548, 52678, 'fifty-two thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(11549, 37936, 'thirty-seven thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(11550, 67188, 'sixty-seven thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(11551, 44936, 'forty-four thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(11552, 12388, 'twelve thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(11553, 56516, 'fifty-six thousand five hundred sixteen');\nINSERT INTO t1 VALUES(11554, 88663, 'eighty-eight thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(11555, 91183, 'ninety-one thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(11556, 95709, 'ninety-five thousand seven hundred nine');\nINSERT INTO t1 VALUES(11557, 92700, 'ninety-two thousand seven hundred');\nINSERT INTO t1 VALUES(11558, 74523, 'seventy-four thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(11559, 67663, 'sixty-seven thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(11560, 63533, 'sixty-three thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(11561, 60725, 'sixty thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(11562, 41505, 'forty-one thousand five hundred five');\nINSERT INTO t1 VALUES(11563, 34241, 'thirty-four thousand two hundred forty-one');\nINSERT INTO t1 VALUES(11564, 49949, 'forty-nine thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(11565, 48754, 'forty-eight thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(11566, 35379, 'thirty-five thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(11567, 33976, 'thirty-three thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(11568, 89912, 'eighty-nine thousand nine hundred twelve');\nINSERT INTO t1 VALUES(11569, 99511, 'ninety-nine thousand five hundred eleven');\nINSERT INTO t1 VALUES(11570, 68737, 'sixty-eight thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(11571, 31723, 'thirty-one thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(11572, 77376, 'seventy-seven thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(11573, 74354, 'seventy-four thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(11574, 30626, 'thirty thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(11575, 90152, 'ninety thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(11576, 66834, 'sixty-six thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(11577, 76481, 'seventy-six thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(11578, 87749, 'eighty-seven thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(11579, 87278, 'eighty-seven thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(11580, 2521, 'two thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(11581, 73369, 'seventy-three thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(11582, 47184, 'forty-seven thousand one hundred eighty-four');\nINSERT INTO t1 VALUES(11583, 78645, 'seventy-eight thousand six hundred forty-five');\nINSERT INTO t1 VALUES(11584, 25019, 'twenty-five thousand nineteen');\nINSERT INTO t1 VALUES(11585, 9841, 'nine thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(11586, 597, 'five hundred ninety-seven');\nINSERT INTO t1 VALUES(11587, 93004, 'ninety-three thousand four');\nINSERT INTO t1 VALUES(11588, 37139, 'thirty-seven thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(11589, 80086, 'eighty thousand eighty-six');\nINSERT INTO t1 VALUES(11590, 85399, 'eighty-five thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(11591, 80460, 'eighty thousand four hundred sixty');\nINSERT INTO t1 VALUES(11592, 11698, 'eleven thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(11593, 86908, 'eighty-six thousand nine hundred eight');\nINSERT INTO t1 VALUES(11594, 60824, 'sixty thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(11595, 46088, 'forty-six thousand eighty-eight');\nINSERT INTO t1 VALUES(11596, 64796, 'sixty-four thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(11597, 34624, 'thirty-four thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(11598, 53869, 'fifty-three thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(11599, 79049, 'seventy-nine thousand forty-nine');\nINSERT INTO t1 VALUES(11600, 91212, 'ninety-one thousand two hundred twelve');\nINSERT INTO t1 VALUES(11601, 8297, 'eight thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(11602, 52256, 'fifty-two thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(11603, 52650, 'fifty-two thousand six hundred fifty');\nINSERT INTO t1 VALUES(11604, 62546, 'sixty-two thousand five hundred forty-six');\nINSERT INTO t1 VALUES(11605, 80398, 'eighty thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(11606, 65382, 'sixty-five thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(11607, 64578, 'sixty-four thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(11608, 58563, 'fifty-eight thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(11609, 74098, 'seventy-four thousand ninety-eight');\nINSERT INTO t1 VALUES(11610, 71064, 'seventy-one thousand sixty-four');\nINSERT INTO t1 VALUES(11611, 14240, 'fourteen thousand two hundred forty');\nINSERT INTO t1 VALUES(11612, 95356, 'ninety-five thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(11613, 48377, 'forty-eight thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(11614, 66848, 'sixty-six thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(11615, 87064, 'eighty-seven thousand sixty-four');\nINSERT INTO t1 VALUES(11616, 44848, 'forty-four thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(11617, 56562, 'fifty-six thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(11618, 5526, 'five thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(11619, 3169, 'three thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(11620, 37076, 'thirty-seven thousand seventy-six');\nINSERT INTO t1 VALUES(11621, 64712, 'sixty-four thousand seven hundred twelve');\nINSERT INTO t1 VALUES(11622, 34748, 'thirty-four thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(11623, 78880, 'seventy-eight thousand eight hundred eighty');\nINSERT INTO t1 VALUES(11624, 75589, 'seventy-five thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(11625, 68060, 'sixty-eight thousand sixty');\nINSERT INTO t1 VALUES(11626, 15868, 'fifteen thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(11627, 91852, 'ninety-one thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(11628, 47224, 'forty-seven thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(11629, 550, 'five hundred fifty');\nINSERT INTO t1 VALUES(11630, 69950, 'sixty-nine thousand nine hundred fifty');\nINSERT INTO t1 VALUES(11631, 82055, 'eighty-two thousand fifty-five');\nINSERT INTO t1 VALUES(11632, 31665, 'thirty-one thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(11633, 37940, 'thirty-seven thousand nine hundred forty');\nINSERT INTO t1 VALUES(11634, 39839, 'thirty-nine thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(11635, 47627, 'forty-seven thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(11636, 8199, 'eight thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(11637, 98279, 'ninety-eight thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(11638, 21606, 'twenty-one thousand six hundred six');\nINSERT INTO t1 VALUES(11639, 47614, 'forty-seven thousand six hundred fourteen');\nINSERT INTO t1 VALUES(11640, 72258, 'seventy-two thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(11641, 78537, 'seventy-eight thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(11642, 77635, 'seventy-seven thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(11643, 34736, 'thirty-four thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(11644, 42728, 'forty-two thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(11645, 43965, 'forty-three thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(11646, 94366, 'ninety-four thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(11647, 57106, 'fifty-seven thousand one hundred six');\nINSERT INTO t1 VALUES(11648, 14029, 'fourteen thousand twenty-nine');\nINSERT INTO t1 VALUES(11649, 27271, 'twenty-seven thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(11650, 77395, 'seventy-seven thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(11651, 27877, 'twenty-seven thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(11652, 36754, 'thirty-six thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(11653, 44673, 'forty-four thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(11654, 13235, 'thirteen thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(11655, 22977, 'twenty-two thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(11656, 39829, 'thirty-nine thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(11657, 72989, 'seventy-two thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(11658, 8694, 'eight thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(11659, 70089, 'seventy thousand eighty-nine');\nINSERT INTO t1 VALUES(11660, 95286, 'ninety-five thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(11661, 41050, 'forty-one thousand fifty');\nINSERT INTO t1 VALUES(11662, 44886, 'forty-four thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(11663, 1543, 'one thousand five hundred forty-three');\nINSERT INTO t1 VALUES(11664, 99237, 'ninety-nine thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(11665, 26915, 'twenty-six thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(11666, 6181, 'six thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(11667, 95521, 'ninety-five thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(11668, 25137, 'twenty-five thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(11669, 1596, 'one thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(11670, 79320, 'seventy-nine thousand three hundred twenty');\nINSERT INTO t1 VALUES(11671, 4732, 'four thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(11672, 81621, 'eighty-one thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(11673, 63022, 'sixty-three thousand twenty-two');\nINSERT INTO t1 VALUES(11674, 61122, 'sixty-one thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(11675, 70956, 'seventy thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(11676, 8217, 'eight thousand two hundred seventeen');\nINSERT INTO t1 VALUES(11677, 10677, 'ten thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(11678, 574, 'five hundred seventy-four');\nINSERT INTO t1 VALUES(11679, 84658, 'eighty-four thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(11680, 84748, 'eighty-four thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(11681, 80802, 'eighty thousand eight hundred two');\nINSERT INTO t1 VALUES(11682, 2491, 'two thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(11683, 68200, 'sixty-eight thousand two hundred');\nINSERT INTO t1 VALUES(11684, 65450, 'sixty-five thousand four hundred fifty');\nINSERT INTO t1 VALUES(11685, 84151, 'eighty-four thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(11686, 47815, 'forty-seven thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(11687, 56587, 'fifty-six thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(11688, 56738, 'fifty-six thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(11689, 23860, 'twenty-three thousand eight hundred sixty');\nINSERT INTO t1 VALUES(11690, 99587, 'ninety-nine thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(11691, 52856, 'fifty-two thousand eight hundred fifty-six');\nINSERT INTO t1 VALUES(11692, 6717, 'six thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(11693, 52258, 'fifty-two thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(11694, 64634, 'sixty-four thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(11695, 46217, 'forty-six thousand two hundred seventeen');\nINSERT INTO t1 VALUES(11696, 50877, 'fifty thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(11697, 1147, 'one thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(11698, 22156, 'twenty-two thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(11699, 62653, 'sixty-two thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(11700, 37198, 'thirty-seven thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(11701, 5749, 'five thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(11702, 42329, 'forty-two thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(11703, 27628, 'twenty-seven thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(11704, 45001, 'forty-five thousand one');\nINSERT INTO t1 VALUES(11705, 48883, 'forty-eight thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(11706, 94320, 'ninety-four thousand three hundred twenty');\nINSERT INTO t1 VALUES(11707, 88991, 'eighty-eight thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(11708, 74019, 'seventy-four thousand nineteen');\nINSERT INTO t1 VALUES(11709, 10346, 'ten thousand three hundred forty-six');\nINSERT INTO t1 VALUES(11710, 34424, 'thirty-four thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(11711, 13089, 'thirteen thousand eighty-nine');\nINSERT INTO t1 VALUES(11712, 2674, 'two thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(11713, 76123, 'seventy-six thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(11714, 51283, 'fifty-one thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(11715, 3746, 'three thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(11716, 72574, 'seventy-two thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(11717, 88798, 'eighty-eight thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(11718, 73575, 'seventy-three thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(11719, 92114, 'ninety-two thousand one hundred fourteen');\nINSERT INTO t1 VALUES(11720, 75394, 'seventy-five thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(11721, 36040, 'thirty-six thousand forty');\nINSERT INTO t1 VALUES(11722, 71503, 'seventy-one thousand five hundred three');\nINSERT INTO t1 VALUES(11723, 2315, 'two thousand three hundred fifteen');\nINSERT INTO t1 VALUES(11724, 73894, 'seventy-three thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(11725, 16991, 'sixteen thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(11726, 14695, 'fourteen thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(11727, 55954, 'fifty-five thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(11728, 14680, 'fourteen thousand six hundred eighty');\nINSERT INTO t1 VALUES(11729, 88922, 'eighty-eight thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(11730, 35046, 'thirty-five thousand forty-six');\nINSERT INTO t1 VALUES(11731, 94898, 'ninety-four thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(11732, 18410, 'eighteen thousand four hundred ten');\nINSERT INTO t1 VALUES(11733, 34263, 'thirty-four thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(11734, 35943, 'thirty-five thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(11735, 48366, 'forty-eight thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(11736, 43585, 'forty-three thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(11737, 26031, 'twenty-six thousand thirty-one');\nINSERT INTO t1 VALUES(11738, 94746, 'ninety-four thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(11739, 44929, 'forty-four thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(11740, 80619, 'eighty thousand six hundred nineteen');\nINSERT INTO t1 VALUES(11741, 664, 'six hundred sixty-four');\nINSERT INTO t1 VALUES(11742, 88235, 'eighty-eight thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(11743, 55894, 'fifty-five thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(11744, 39705, 'thirty-nine thousand seven hundred five');\nINSERT INTO t1 VALUES(11745, 23060, 'twenty-three thousand sixty');\nINSERT INTO t1 VALUES(11746, 83123, 'eighty-three thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(11747, 24248, 'twenty-four thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(11748, 91878, 'ninety-one thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(11749, 14082, 'fourteen thousand eighty-two');\nINSERT INTO t1 VALUES(11750, 41756, 'forty-one thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(11751, 71410, 'seventy-one thousand four hundred ten');\nINSERT INTO t1 VALUES(11752, 42801, 'forty-two thousand eight hundred one');\nINSERT INTO t1 VALUES(11753, 25844, 'twenty-five thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(11754, 60856, 'sixty thousand eight hundred fifty-six');\nINSERT INTO t1 VALUES(11755, 187, 'one hundred eighty-seven');\nINSERT INTO t1 VALUES(11756, 59427, 'fifty-nine thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(11757, 90246, 'ninety thousand two hundred forty-six');\nINSERT INTO t1 VALUES(11758, 35185, 'thirty-five thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(11759, 88747, 'eighty-eight thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(11760, 46324, 'forty-six thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(11761, 17689, 'seventeen thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(11762, 89573, 'eighty-nine thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(11763, 52264, 'fifty-two thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(11764, 71319, 'seventy-one thousand three hundred nineteen');\nINSERT INTO t1 VALUES(11765, 67934, 'sixty-seven thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(11766, 12071, 'twelve thousand seventy-one');\nINSERT INTO t1 VALUES(11767, 48225, 'forty-eight thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(11768, 93426, 'ninety-three thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(11769, 8373, 'eight thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(11770, 5961, 'five thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(11771, 45291, 'forty-five thousand two hundred ninety-one');\nINSERT INTO t1 VALUES(11772, 36412, 'thirty-six thousand four hundred twelve');\nINSERT INTO t1 VALUES(11773, 72929, 'seventy-two thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(11774, 47030, 'forty-seven thousand thirty');\nINSERT INTO t1 VALUES(11775, 95706, 'ninety-five thousand seven hundred six');\nINSERT INTO t1 VALUES(11776, 49847, 'forty-nine thousand eight hundred forty-seven');\nINSERT INTO t1 VALUES(11777, 96438, 'ninety-six thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(11778, 91216, 'ninety-one thousand two hundred sixteen');\nINSERT INTO t1 VALUES(11779, 97092, 'ninety-seven thousand ninety-two');\nINSERT INTO t1 VALUES(11780, 20907, 'twenty thousand nine hundred seven');\nINSERT INTO t1 VALUES(11781, 58401, 'fifty-eight thousand four hundred one');\nINSERT INTO t1 VALUES(11782, 78263, 'seventy-eight thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(11783, 5241, 'five thousand two hundred forty-one');\nINSERT INTO t1 VALUES(11784, 61638, 'sixty-one thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(11785, 58920, 'fifty-eight thousand nine hundred twenty');\nINSERT INTO t1 VALUES(11786, 99261, 'ninety-nine thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(11787, 84327, 'eighty-four thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(11788, 83127, 'eighty-three thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(11789, 75563, 'seventy-five thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(11790, 3685, 'three thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(11791, 24055, 'twenty-four thousand fifty-five');\nINSERT INTO t1 VALUES(11792, 85315, 'eighty-five thousand three hundred fifteen');\nINSERT INTO t1 VALUES(11793, 56755, 'fifty-six thousand seven hundred fifty-five');\nINSERT INTO t1 VALUES(11794, 62733, 'sixty-two thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(11795, 15894, 'fifteen thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(11796, 30237, 'thirty thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(11797, 68439, 'sixty-eight thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(11798, 34543, 'thirty-four thousand five hundred forty-three');\nINSERT INTO t1 VALUES(11799, 53488, 'fifty-three thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(11800, 5527, 'five thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(11801, 92320, 'ninety-two thousand three hundred twenty');\nINSERT INTO t1 VALUES(11802, 86043, 'eighty-six thousand forty-three');\nINSERT INTO t1 VALUES(11803, 52679, 'fifty-two thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(11804, 72616, 'seventy-two thousand six hundred sixteen');\nINSERT INTO t1 VALUES(11805, 4901, 'four thousand nine hundred one');\nINSERT INTO t1 VALUES(11806, 63430, 'sixty-three thousand four hundred thirty');\nINSERT INTO t1 VALUES(11807, 83548, 'eighty-three thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(11808, 78796, 'seventy-eight thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(11809, 11955, 'eleven thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(11810, 13405, 'thirteen thousand four hundred five');\nINSERT INTO t1 VALUES(11811, 80790, 'eighty thousand seven hundred ninety');\nINSERT INTO t1 VALUES(11812, 94547, 'ninety-four thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(11813, 76038, 'seventy-six thousand thirty-eight');\nINSERT INTO t1 VALUES(11814, 52697, 'fifty-two thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(11815, 63858, 'sixty-three thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(11816, 42431, 'forty-two thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(11817, 57930, 'fifty-seven thousand nine hundred thirty');\nINSERT INTO t1 VALUES(11818, 93806, 'ninety-three thousand eight hundred six');\nINSERT INTO t1 VALUES(11819, 39813, 'thirty-nine thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(11820, 17321, 'seventeen thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(11821, 29719, 'twenty-nine thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(11822, 62650, 'sixty-two thousand six hundred fifty');\nINSERT INTO t1 VALUES(11823, 56982, 'fifty-six thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(11824, 54992, 'fifty-four thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(11825, 48327, 'forty-eight thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(11826, 30682, 'thirty thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(11827, 64819, 'sixty-four thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(11828, 34732, 'thirty-four thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(11829, 53963, 'fifty-three thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(11830, 61752, 'sixty-one thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(11831, 30232, 'thirty thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(11832, 82568, 'eighty-two thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(11833, 68428, 'sixty-eight thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(11834, 46637, 'forty-six thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(11835, 63321, 'sixty-three thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(11836, 71764, 'seventy-one thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(11837, 62650, 'sixty-two thousand six hundred fifty');\nINSERT INTO t1 VALUES(11838, 78696, 'seventy-eight thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(11839, 67760, 'sixty-seven thousand seven hundred sixty');\nINSERT INTO t1 VALUES(11840, 64832, 'sixty-four thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(11841, 63525, 'sixty-three thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(11842, 2622, 'two thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(11843, 87122, 'eighty-seven thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(11844, 27807, 'twenty-seven thousand eight hundred seven');\nINSERT INTO t1 VALUES(11845, 94541, 'ninety-four thousand five hundred forty-one');\nINSERT INTO t1 VALUES(11846, 7425, 'seven thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(11847, 29537, 'twenty-nine thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(11848, 41706, 'forty-one thousand seven hundred six');\nINSERT INTO t1 VALUES(11849, 50695, 'fifty thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(11850, 66898, 'sixty-six thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(11851, 52966, 'fifty-two thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(11852, 29049, 'twenty-nine thousand forty-nine');\nINSERT INTO t1 VALUES(11853, 66466, 'sixty-six thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(11854, 8541, 'eight thousand five hundred forty-one');\nINSERT INTO t1 VALUES(11855, 87335, 'eighty-seven thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(11856, 1678, 'one thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(11857, 11325, 'eleven thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(11858, 22612, 'twenty-two thousand six hundred twelve');\nINSERT INTO t1 VALUES(11859, 98720, 'ninety-eight thousand seven hundred twenty');\nINSERT INTO t1 VALUES(11860, 27605, 'twenty-seven thousand six hundred five');\nINSERT INTO t1 VALUES(11861, 83302, 'eighty-three thousand three hundred two');\nINSERT INTO t1 VALUES(11862, 84117, 'eighty-four thousand one hundred seventeen');\nINSERT INTO t1 VALUES(11863, 44386, 'forty-four thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(11864, 32160, 'thirty-two thousand one hundred sixty');\nINSERT INTO t1 VALUES(11865, 57855, 'fifty-seven thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(11866, 37094, 'thirty-seven thousand ninety-four');\nINSERT INTO t1 VALUES(11867, 49387, 'forty-nine thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(11868, 10526, 'ten thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(11869, 60399, 'sixty thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(11870, 89618, 'eighty-nine thousand six hundred eighteen');\nINSERT INTO t1 VALUES(11871, 51011, 'fifty-one thousand eleven');\nINSERT INTO t1 VALUES(11872, 72085, 'seventy-two thousand eighty-five');\nINSERT INTO t1 VALUES(11873, 17522, 'seventeen thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(11874, 9794, 'nine thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(11875, 16657, 'sixteen thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(11876, 60667, 'sixty thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(11877, 81047, 'eighty-one thousand forty-seven');\nINSERT INTO t1 VALUES(11878, 44833, 'forty-four thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(11879, 24224, 'twenty-four thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(11880, 5238, 'five thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(11881, 15933, 'fifteen thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(11882, 8026, 'eight thousand twenty-six');\nINSERT INTO t1 VALUES(11883, 2968, 'two thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(11884, 51613, 'fifty-one thousand six hundred thirteen');\nINSERT INTO t1 VALUES(11885, 28550, 'twenty-eight thousand five hundred fifty');\nINSERT INTO t1 VALUES(11886, 87159, 'eighty-seven thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(11887, 47648, 'forty-seven thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(11888, 8929, 'eight thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(11889, 55313, 'fifty-five thousand three hundred thirteen');\nINSERT INTO t1 VALUES(11890, 95906, 'ninety-five thousand nine hundred six');\nINSERT INTO t1 VALUES(11891, 44953, 'forty-four thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(11892, 37587, 'thirty-seven thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(11893, 28542, 'twenty-eight thousand five hundred forty-two');\nINSERT INTO t1 VALUES(11894, 5310, 'five thousand three hundred ten');\nINSERT INTO t1 VALUES(11895, 72235, 'seventy-two thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(11896, 18426, 'eighteen thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(11897, 27889, 'twenty-seven thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(11898, 90495, 'ninety thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(11899, 55942, 'fifty-five thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(11900, 52916, 'fifty-two thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(11901, 60890, 'sixty thousand eight hundred ninety');\nINSERT INTO t1 VALUES(11902, 1851, 'one thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(11903, 51889, 'fifty-one thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(11904, 89174, 'eighty-nine thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(11905, 72454, 'seventy-two thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(11906, 126, 'one hundred twenty-six');\nINSERT INTO t1 VALUES(11907, 42333, 'forty-two thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(11908, 93471, 'ninety-three thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(11909, 7928, 'seven thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(11910, 56746, 'fifty-six thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(11911, 69550, 'sixty-nine thousand five hundred fifty');\nINSERT INTO t1 VALUES(11912, 5707, 'five thousand seven hundred seven');\nINSERT INTO t1 VALUES(11913, 3704, 'three thousand seven hundred four');\nINSERT INTO t1 VALUES(11914, 98586, 'ninety-eight thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(11915, 19052, 'nineteen thousand fifty-two');\nINSERT INTO t1 VALUES(11916, 75628, 'seventy-five thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(11917, 92925, 'ninety-two thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(11918, 67032, 'sixty-seven thousand thirty-two');\nINSERT INTO t1 VALUES(11919, 35948, 'thirty-five thousand nine hundred forty-eight');\nINSERT INTO t1 VALUES(11920, 67641, 'sixty-seven thousand six hundred forty-one');\nINSERT INTO t1 VALUES(11921, 33974, 'thirty-three thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(11922, 8672, 'eight thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(11923, 28849, 'twenty-eight thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(11924, 33303, 'thirty-three thousand three hundred three');\nINSERT INTO t1 VALUES(11925, 4867, 'four thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(11926, 804, 'eight hundred four');\nINSERT INTO t1 VALUES(11927, 45611, 'forty-five thousand six hundred eleven');\nINSERT INTO t1 VALUES(11928, 96447, 'ninety-six thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(11929, 65358, 'sixty-five thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(11930, 95849, 'ninety-five thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(11931, 63071, 'sixty-three thousand seventy-one');\nINSERT INTO t1 VALUES(11932, 41250, 'forty-one thousand two hundred fifty');\nINSERT INTO t1 VALUES(11933, 90107, 'ninety thousand one hundred seven');\nINSERT INTO t1 VALUES(11934, 71830, 'seventy-one thousand eight hundred thirty');\nINSERT INTO t1 VALUES(11935, 19829, 'nineteen thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(11936, 77454, 'seventy-seven thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(11937, 87350, 'eighty-seven thousand three hundred fifty');\nINSERT INTO t1 VALUES(11938, 29357, 'twenty-nine thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(11939, 66264, 'sixty-six thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(11940, 48050, 'forty-eight thousand fifty');\nINSERT INTO t1 VALUES(11941, 42879, 'forty-two thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(11942, 63347, 'sixty-three thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(11943, 87374, 'eighty-seven thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(11944, 52867, 'fifty-two thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(11945, 26887, 'twenty-six thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(11946, 33935, 'thirty-three thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(11947, 2726, 'two thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(11948, 1034, 'one thousand thirty-four');\nINSERT INTO t1 VALUES(11949, 19102, 'nineteen thousand one hundred two');\nINSERT INTO t1 VALUES(11950, 61401, 'sixty-one thousand four hundred one');\nINSERT INTO t1 VALUES(11951, 30823, 'thirty thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(11952, 71869, 'seventy-one thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(11953, 58422, 'fifty-eight thousand four hundred twenty-two');\nINSERT INTO t1 VALUES(11954, 93573, 'ninety-three thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(11955, 5147, 'five thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(11956, 10338, 'ten thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(11957, 20946, 'twenty thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(11958, 61577, 'sixty-one thousand five hundred seventy-seven');\nINSERT INTO t1 VALUES(11959, 20631, 'twenty thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(11960, 21317, 'twenty-one thousand three hundred seventeen');\nINSERT INTO t1 VALUES(11961, 19033, 'nineteen thousand thirty-three');\nINSERT INTO t1 VALUES(11962, 7981, 'seven thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(11963, 74832, 'seventy-four thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(11964, 14805, 'fourteen thousand eight hundred five');\nINSERT INTO t1 VALUES(11965, 77751, 'seventy-seven thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(11966, 35682, 'thirty-five thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(11967, 89082, 'eighty-nine thousand eighty-two');\nINSERT INTO t1 VALUES(11968, 94988, 'ninety-four thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(11969, 60020, 'sixty thousand twenty');\nINSERT INTO t1 VALUES(11970, 77027, 'seventy-seven thousand twenty-seven');\nINSERT INTO t1 VALUES(11971, 2549, 'two thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(11972, 29916, 'twenty-nine thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(11973, 40946, 'forty thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(11974, 29975, 'twenty-nine thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(11975, 97687, 'ninety-seven thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(11976, 491, 'four hundred ninety-one');\nINSERT INTO t1 VALUES(11977, 13073, 'thirteen thousand seventy-three');\nINSERT INTO t1 VALUES(11978, 41042, 'forty-one thousand forty-two');\nINSERT INTO t1 VALUES(11979, 88538, 'eighty-eight thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(11980, 69388, 'sixty-nine thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(11981, 76158, 'seventy-six thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(11982, 22654, 'twenty-two thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(11983, 31131, 'thirty-one thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(11984, 70333, 'seventy thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(11985, 76208, 'seventy-six thousand two hundred eight');\nINSERT INTO t1 VALUES(11986, 85041, 'eighty-five thousand forty-one');\nINSERT INTO t1 VALUES(11987, 53416, 'fifty-three thousand four hundred sixteen');\nINSERT INTO t1 VALUES(11988, 22833, 'twenty-two thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(11989, 72025, 'seventy-two thousand twenty-five');\nINSERT INTO t1 VALUES(11990, 374, 'three hundred seventy-four');\nINSERT INTO t1 VALUES(11991, 86772, 'eighty-six thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(11992, 79006, 'seventy-nine thousand six');\nINSERT INTO t1 VALUES(11993, 14691, 'fourteen thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(11994, 90790, 'ninety thousand seven hundred ninety');\nINSERT INTO t1 VALUES(11995, 31367, 'thirty-one thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(11996, 42736, 'forty-two thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(11997, 53203, 'fifty-three thousand two hundred three');\nINSERT INTO t1 VALUES(11998, 19835, 'nineteen thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(11999, 30334, 'thirty thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(12000, 48086, 'forty-eight thousand eighty-six');\nCOMMIT;\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark16.sql",
    "content": "DROP TABLE t1;\nDROP TABLE t2;\nDROP TABLE t3;\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark2.sql",
    "content": "BEGIN;\nCREATE TABLE t2(a INTEGER, b INTEGER, c VARCHAR(100));\nINSERT INTO t2 VALUES(1, 90584, 'ninety thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(2, 42558, 'forty-two thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(3, 5904, 'five thousand nine hundred four');\nINSERT INTO t2 VALUES(4, 27011, 'twenty-seven thousand eleven');\nINSERT INTO t2 VALUES(5, 97728, 'ninety-seven thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(6, 46615, 'forty-six thousand six hundred fifteen');\nINSERT INTO t2 VALUES(7, 28853, 'twenty-eight thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(8, 94539, 'ninety-four thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(9, 84536, 'eighty-four thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(10, 72680, 'seventy-two thousand six hundred eighty');\nINSERT INTO t2 VALUES(11, 93381, 'ninety-three thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(12, 17138, 'seventeen thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(13, 29965, 'twenty-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(14, 69407, 'sixty-nine thousand four hundred seven');\nINSERT INTO t2 VALUES(15, 61421, 'sixty-one thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(16, 81239, 'eighty-one thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(17, 59865, 'fifty-nine thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(18, 588, 'five hundred eighty-eight');\nINSERT INTO t2 VALUES(19, 84152, 'eighty-four thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(20, 84124, 'eighty-four thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(21, 12969, 'twelve thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(22, 7253, 'seven thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(23, 42485, 'forty-two thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(24, 3762, 'three thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(25, 78100, 'seventy-eight thousand one hundred');\nINSERT INTO t2 VALUES(26, 84160, 'eighty-four thousand one hundred sixty');\nINSERT INTO t2 VALUES(27, 43453, 'forty-three thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(28, 71890, 'seventy-one thousand eight hundred ninety');\nINSERT INTO t2 VALUES(29, 33038, 'thirty-three thousand thirty-eight');\nINSERT INTO t2 VALUES(30, 49437, 'forty-nine thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(31, 96549, 'ninety-six thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(32, 23171, 'twenty-three thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(33, 62381, 'sixty-two thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(34, 90815, 'ninety thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(35, 26487, 'twenty-six thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(36, 43321, 'forty-three thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(37, 89020, 'eighty-nine thousand twenty');\nINSERT INTO t2 VALUES(38, 33474, 'thirty-three thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(39, 72198, 'seventy-two thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(40, 71417, 'seventy-one thousand four hundred seventeen');\nINSERT INTO t2 VALUES(41, 89777, 'eighty-nine thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(42, 97169, 'ninety-seven thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(43, 55191, 'fifty-five thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(44, 73842, 'seventy-three thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(45, 70227, 'seventy thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(46, 65573, 'sixty-five thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(47, 73518, 'seventy-three thousand five hundred eighteen');\nINSERT INTO t2 VALUES(48, 68505, 'sixty-eight thousand five hundred five');\nINSERT INTO t2 VALUES(49, 57185, 'fifty-seven thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(50, 23871, 'twenty-three thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(51, 89925, 'eighty-nine thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(52, 2387, 'two thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(53, 17526, 'seventeen thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(54, 13016, 'thirteen thousand sixteen');\nINSERT INTO t2 VALUES(55, 74881, 'seventy-four thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(56, 59286, 'fifty-nine thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(57, 19244, 'nineteen thousand two hundred forty-four');\nINSERT INTO t2 VALUES(58, 4267, 'four thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(59, 94748, 'ninety-four thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(60, 75557, 'seventy-five thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(61, 48280, 'forty-eight thousand two hundred eighty');\nINSERT INTO t2 VALUES(62, 42957, 'forty-two thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(63, 87398, 'eighty-seven thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(64, 58372, 'fifty-eight thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(65, 53877, 'fifty-three thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(66, 37922, 'thirty-seven thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(67, 19265, 'nineteen thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(68, 44548, 'forty-four thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(69, 90517, 'ninety thousand five hundred seventeen');\nINSERT INTO t2 VALUES(70, 49280, 'forty-nine thousand two hundred eighty');\nINSERT INTO t2 VALUES(71, 78587, 'seventy-eight thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(72, 50027, 'fifty thousand twenty-seven');\nINSERT INTO t2 VALUES(73, 17279, 'seventeen thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(74, 81786, 'eighty-one thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(75, 59408, 'fifty-nine thousand four hundred eight');\nINSERT INTO t2 VALUES(76, 12302, 'twelve thousand three hundred two');\nINSERT INTO t2 VALUES(77, 19245, 'nineteen thousand two hundred forty-five');\nINSERT INTO t2 VALUES(78, 79712, 'seventy-nine thousand seven hundred twelve');\nINSERT INTO t2 VALUES(79, 39038, 'thirty-nine thousand thirty-eight');\nINSERT INTO t2 VALUES(80, 54293, 'fifty-four thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(81, 38489, 'thirty-eight thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(82, 76089, 'seventy-six thousand eighty-nine');\nINSERT INTO t2 VALUES(83, 77661, 'seventy-seven thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(84, 47148, 'forty-seven thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(85, 11042, 'eleven thousand forty-two');\nINSERT INTO t2 VALUES(86, 56823, 'fifty-six thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(87, 45667, 'forty-five thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(88, 85403, 'eighty-five thousand four hundred three');\nINSERT INTO t2 VALUES(89, 70399, 'seventy thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(90, 70436, 'seventy thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(91, 83893, 'eighty-three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(92, 47320, 'forty-seven thousand three hundred twenty');\nINSERT INTO t2 VALUES(93, 99216, 'ninety-nine thousand two hundred sixteen');\nINSERT INTO t2 VALUES(94, 90347, 'ninety thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(95, 63626, 'sixty-three thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(96, 28133, 'twenty-eight thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(97, 10588, 'ten thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(98, 93243, 'ninety-three thousand two hundred forty-three');\nINSERT INTO t2 VALUES(99, 52352, 'fifty-two thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(100, 66472, 'sixty-six thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(101, 70637, 'seventy thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(102, 99984, 'ninety-nine thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(103, 55281, 'fifty-five thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(104, 57112, 'fifty-seven thousand one hundred twelve');\nINSERT INTO t2 VALUES(105, 69335, 'sixty-nine thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(106, 76289, 'seventy-six thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(107, 58904, 'fifty-eight thousand nine hundred four');\nINSERT INTO t2 VALUES(108, 83931, 'eighty-three thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(109, 96752, 'ninety-six thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(110, 93887, 'ninety-three thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(111, 53694, 'fifty-three thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(112, 59470, 'fifty-nine thousand four hundred seventy');\nINSERT INTO t2 VALUES(113, 72610, 'seventy-two thousand six hundred ten');\nINSERT INTO t2 VALUES(114, 4752, 'four thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(115, 79581, 'seventy-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(116, 10668, 'ten thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(117, 56097, 'fifty-six thousand ninety-seven');\nINSERT INTO t2 VALUES(118, 97324, 'ninety-seven thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(119, 28333, 'twenty-eight thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(120, 79763, 'seventy-nine thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(121, 73271, 'seventy-three thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(122, 19112, 'nineteen thousand one hundred twelve');\nINSERT INTO t2 VALUES(123, 40795, 'forty thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(124, 88896, 'eighty-eight thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(125, 18106, 'eighteen thousand one hundred six');\nINSERT INTO t2 VALUES(126, 35583, 'thirty-five thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(127, 74961, 'seventy-four thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(128, 39442, 'thirty-nine thousand four hundred forty-two');\nINSERT INTO t2 VALUES(129, 29082, 'twenty-nine thousand eighty-two');\nINSERT INTO t2 VALUES(130, 91292, 'ninety-one thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(131, 99874, 'ninety-nine thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(132, 21091, 'twenty-one thousand ninety-one');\nINSERT INTO t2 VALUES(133, 38291, 'thirty-eight thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(134, 16583, 'sixteen thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(135, 28219, 'twenty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(136, 26561, 'twenty-six thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(137, 96379, 'ninety-six thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(138, 86575, 'eighty-six thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(139, 3153, 'three thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(140, 19351, 'nineteen thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(141, 27410, 'twenty-seven thousand four hundred ten');\nINSERT INTO t2 VALUES(142, 48253, 'forty-eight thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(143, 73697, 'seventy-three thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(144, 72343, 'seventy-two thousand three hundred forty-three');\nINSERT INTO t2 VALUES(145, 36637, 'thirty-six thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(146, 95428, 'ninety-five thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(147, 82618, 'eighty-two thousand six hundred eighteen');\nINSERT INTO t2 VALUES(148, 21906, 'twenty-one thousand nine hundred six');\nINSERT INTO t2 VALUES(149, 42253, 'forty-two thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(150, 27764, 'twenty-seven thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(151, 39773, 'thirty-nine thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(152, 59859, 'fifty-nine thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(153, 53478, 'fifty-three thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(154, 67737, 'sixty-seven thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(155, 11285, 'eleven thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(156, 16564, 'sixteen thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(157, 60721, 'sixty thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(158, 41942, 'forty-one thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(159, 54386, 'fifty-four thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(160, 31102, 'thirty-one thousand one hundred two');\nINSERT INTO t2 VALUES(161, 21277, 'twenty-one thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(162, 13172, 'thirteen thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(163, 19591, 'nineteen thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(164, 14293, 'fourteen thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(165, 40877, 'forty thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(166, 79358, 'seventy-nine thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(167, 20675, 'twenty thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(168, 1769, 'one thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(169, 1677, 'one thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(170, 32205, 'thirty-two thousand two hundred five');\nINSERT INTO t2 VALUES(171, 81540, 'eighty-one thousand five hundred forty');\nINSERT INTO t2 VALUES(172, 5710, 'five thousand seven hundred ten');\nINSERT INTO t2 VALUES(173, 62299, 'sixty-two thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(174, 85032, 'eighty-five thousand thirty-two');\nINSERT INTO t2 VALUES(175, 3662, 'three thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(176, 58615, 'fifty-eight thousand six hundred fifteen');\nINSERT INTO t2 VALUES(177, 13614, 'thirteen thousand six hundred fourteen');\nINSERT INTO t2 VALUES(178, 62699, 'sixty-two thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(179, 71236, 'seventy-one thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(180, 88169, 'eighty-eight thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(181, 65385, 'sixty-five thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(182, 99267, 'ninety-nine thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(183, 12606, 'twelve thousand six hundred six');\nINSERT INTO t2 VALUES(184, 30770, 'thirty thousand seven hundred seventy');\nINSERT INTO t2 VALUES(185, 62402, 'sixty-two thousand four hundred two');\nINSERT INTO t2 VALUES(186, 31565, 'thirty-one thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(187, 3692, 'three thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(188, 7186, 'seven thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(189, 99676, 'ninety-nine thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(190, 76164, 'seventy-six thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(191, 9515, 'nine thousand five hundred fifteen');\nINSERT INTO t2 VALUES(192, 45987, 'forty-five thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(193, 82888, 'eighty-two thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(194, 6768, 'six thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(195, 40789, 'forty thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(196, 10644, 'ten thousand six hundred forty-four');\nINSERT INTO t2 VALUES(197, 64882, 'sixty-four thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(198, 89204, 'eighty-nine thousand two hundred four');\nINSERT INTO t2 VALUES(199, 31531, 'thirty-one thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(200, 84135, 'eighty-four thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(201, 40452, 'forty thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(202, 65812, 'sixty-five thousand eight hundred twelve');\nINSERT INTO t2 VALUES(203, 87428, 'eighty-seven thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(204, 81611, 'eighty-one thousand six hundred eleven');\nINSERT INTO t2 VALUES(205, 35606, 'thirty-five thousand six hundred six');\nINSERT INTO t2 VALUES(206, 44800, 'forty-four thousand eight hundred');\nINSERT INTO t2 VALUES(207, 90307, 'ninety thousand three hundred seven');\nINSERT INTO t2 VALUES(208, 49767, 'forty-nine thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(209, 63135, 'sixty-three thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(210, 7874, 'seven thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(211, 56052, 'fifty-six thousand fifty-two');\nINSERT INTO t2 VALUES(212, 14101, 'fourteen thousand one hundred one');\nINSERT INTO t2 VALUES(213, 73904, 'seventy-three thousand nine hundred four');\nINSERT INTO t2 VALUES(214, 82013, 'eighty-two thousand thirteen');\nINSERT INTO t2 VALUES(215, 30917, 'thirty thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(216, 43369, 'forty-three thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(217, 85482, 'eighty-five thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(218, 74531, 'seventy-four thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(219, 68304, 'sixty-eight thousand three hundred four');\nINSERT INTO t2 VALUES(220, 3826, 'three thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(221, 47165, 'forty-seven thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(222, 92990, 'ninety-two thousand nine hundred ninety');\nINSERT INTO t2 VALUES(223, 79000, 'seventy-nine thousand');\nINSERT INTO t2 VALUES(224, 58652, 'fifty-eight thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(225, 48526, 'forty-eight thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(226, 43307, 'forty-three thousand three hundred seven');\nINSERT INTO t2 VALUES(227, 23772, 'twenty-three thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(228, 58846, 'fifty-eight thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(229, 87291, 'eighty-seven thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(230, 83004, 'eighty-three thousand four');\nINSERT INTO t2 VALUES(231, 42004, 'forty-two thousand four');\nINSERT INTO t2 VALUES(232, 49969, 'forty-nine thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(233, 23476, 'twenty-three thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(234, 79448, 'seventy-nine thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(235, 50218, 'fifty thousand two hundred eighteen');\nINSERT INTO t2 VALUES(236, 77955, 'seventy-seven thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(237, 38504, 'thirty-eight thousand five hundred four');\nINSERT INTO t2 VALUES(238, 15753, 'fifteen thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(239, 6575, 'six thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(240, 55802, 'fifty-five thousand eight hundred two');\nINSERT INTO t2 VALUES(241, 80168, 'eighty thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(242, 92770, 'ninety-two thousand seven hundred seventy');\nINSERT INTO t2 VALUES(243, 55401, 'fifty-five thousand four hundred one');\nINSERT INTO t2 VALUES(244, 78571, 'seventy-eight thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(245, 35837, 'thirty-five thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(246, 31224, 'thirty-one thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(247, 89769, 'eighty-nine thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(248, 20314, 'twenty thousand three hundred fourteen');\nINSERT INTO t2 VALUES(249, 71697, 'seventy-one thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(250, 22149, 'twenty-two thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(251, 23262, 'twenty-three thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(252, 7116, 'seven thousand one hundred sixteen');\nINSERT INTO t2 VALUES(253, 25847, 'twenty-five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(254, 91292, 'ninety-one thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(255, 7915, 'seven thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(256, 85245, 'eighty-five thousand two hundred forty-five');\nINSERT INTO t2 VALUES(257, 94332, 'ninety-four thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(258, 39481, 'thirty-nine thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(259, 5269, 'five thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(260, 22338, 'twenty-two thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(261, 74180, 'seventy-four thousand one hundred eighty');\nINSERT INTO t2 VALUES(262, 49430, 'forty-nine thousand four hundred thirty');\nINSERT INTO t2 VALUES(263, 51365, 'fifty-one thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(264, 54313, 'fifty-four thousand three hundred thirteen');\nINSERT INTO t2 VALUES(265, 13136, 'thirteen thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(266, 83576, 'eighty-three thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(267, 78663, 'seventy-eight thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(268, 47700, 'forty-seven thousand seven hundred');\nINSERT INTO t2 VALUES(269, 34175, 'thirty-four thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(270, 83792, 'eighty-three thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(271, 24469, 'twenty-four thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(272, 79780, 'seventy-nine thousand seven hundred eighty');\nINSERT INTO t2 VALUES(273, 68160, 'sixty-eight thousand one hundred sixty');\nINSERT INTO t2 VALUES(274, 24719, 'twenty-four thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(275, 90627, 'ninety thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(276, 68384, 'sixty-eight thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(277, 2097, 'two thousand ninety-seven');\nINSERT INTO t2 VALUES(278, 91419, 'ninety-one thousand four hundred nineteen');\nINSERT INTO t2 VALUES(279, 490, 'four hundred ninety');\nINSERT INTO t2 VALUES(280, 41320, 'forty-one thousand three hundred twenty');\nINSERT INTO t2 VALUES(281, 85136, 'eighty-five thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(282, 58013, 'fifty-eight thousand thirteen');\nINSERT INTO t2 VALUES(283, 64490, 'sixty-four thousand four hundred ninety');\nINSERT INTO t2 VALUES(284, 14584, 'fourteen thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(285, 45558, 'forty-five thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(286, 36464, 'thirty-six thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(287, 9044, 'nine thousand forty-four');\nINSERT INTO t2 VALUES(288, 50280, 'fifty thousand two hundred eighty');\nINSERT INTO t2 VALUES(289, 18306, 'eighteen thousand three hundred six');\nINSERT INTO t2 VALUES(290, 78730, 'seventy-eight thousand seven hundred thirty');\nINSERT INTO t2 VALUES(291, 44272, 'forty-four thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(292, 43960, 'forty-three thousand nine hundred sixty');\nINSERT INTO t2 VALUES(293, 3488, 'three thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(294, 80135, 'eighty thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(295, 74156, 'seventy-four thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(296, 2359, 'two thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(297, 18621, 'eighteen thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(298, 93144, 'ninety-three thousand one hundred forty-four');\nINSERT INTO t2 VALUES(299, 57458, 'fifty-seven thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(300, 72223, 'seventy-two thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(301, 73494, 'seventy-three thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(302, 24982, 'twenty-four thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(303, 17264, 'seventeen thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(304, 41967, 'forty-one thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(305, 97163, 'ninety-seven thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(306, 89452, 'eighty-nine thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(307, 20167, 'twenty thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(308, 39685, 'thirty-nine thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(309, 93786, 'ninety-three thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(310, 1083, 'one thousand eighty-three');\nINSERT INTO t2 VALUES(311, 91893, 'ninety-one thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(312, 73800, 'seventy-three thousand eight hundred');\nINSERT INTO t2 VALUES(313, 24798, 'twenty-four thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(314, 48791, 'forty-eight thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(315, 90826, 'ninety thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(316, 99175, 'ninety-nine thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(317, 24893, 'twenty-four thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(318, 43840, 'forty-three thousand eight hundred forty');\nINSERT INTO t2 VALUES(319, 98875, 'ninety-eight thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(320, 63936, 'sixty-three thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(321, 42855, 'forty-two thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(322, 47833, 'forty-seven thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(323, 36163, 'thirty-six thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(324, 49870, 'forty-nine thousand eight hundred seventy');\nINSERT INTO t2 VALUES(325, 81463, 'eighty-one thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(326, 29346, 'twenty-nine thousand three hundred forty-six');\nINSERT INTO t2 VALUES(327, 66164, 'sixty-six thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(328, 13407, 'thirteen thousand four hundred seven');\nINSERT INTO t2 VALUES(329, 3831, 'three thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(330, 47325, 'forty-seven thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(331, 55698, 'fifty-five thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(332, 78457, 'seventy-eight thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(333, 42971, 'forty-two thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(334, 23741, 'twenty-three thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(335, 5185, 'five thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(336, 5746, 'five thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(337, 25097, 'twenty-five thousand ninety-seven');\nINSERT INTO t2 VALUES(338, 95283, 'ninety-five thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(339, 96875, 'ninety-six thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(340, 98629, 'ninety-eight thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(341, 41267, 'forty-one thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(342, 98055, 'ninety-eight thousand fifty-five');\nINSERT INTO t2 VALUES(343, 73830, 'seventy-three thousand eight hundred thirty');\nINSERT INTO t2 VALUES(344, 34985, 'thirty-four thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(345, 24661, 'twenty-four thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(346, 44424, 'forty-four thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(347, 74252, 'seventy-four thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(348, 9490, 'nine thousand four hundred ninety');\nINSERT INTO t2 VALUES(349, 8125, 'eight thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(350, 39204, 'thirty-nine thousand two hundred four');\nINSERT INTO t2 VALUES(351, 43098, 'forty-three thousand ninety-eight');\nINSERT INTO t2 VALUES(352, 96899, 'ninety-six thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(353, 80442, 'eighty thousand four hundred forty-two');\nINSERT INTO t2 VALUES(354, 7697, 'seven thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(355, 92162, 'ninety-two thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(356, 79651, 'seventy-nine thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(357, 81206, 'eighty-one thousand two hundred six');\nINSERT INTO t2 VALUES(358, 6508, 'six thousand five hundred eight');\nINSERT INTO t2 VALUES(359, 3635, 'three thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(360, 66733, 'sixty-six thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(361, 13695, 'thirteen thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(362, 17014, 'seventeen thousand fourteen');\nINSERT INTO t2 VALUES(363, 57870, 'fifty-seven thousand eight hundred seventy');\nINSERT INTO t2 VALUES(364, 23851, 'twenty-three thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(365, 69139, 'sixty-nine thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(366, 14381, 'fourteen thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(367, 39789, 'thirty-nine thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(368, 54204, 'fifty-four thousand two hundred four');\nINSERT INTO t2 VALUES(369, 31110, 'thirty-one thousand one hundred ten');\nINSERT INTO t2 VALUES(370, 30301, 'thirty thousand three hundred one');\nINSERT INTO t2 VALUES(371, 96378, 'ninety-six thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(372, 30520, 'thirty thousand five hundred twenty');\nINSERT INTO t2 VALUES(373, 49432, 'forty-nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(374, 11167, 'eleven thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(375, 23567, 'twenty-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(376, 39142, 'thirty-nine thousand one hundred forty-two');\nINSERT INTO t2 VALUES(377, 45535, 'forty-five thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(378, 60086, 'sixty thousand eighty-six');\nINSERT INTO t2 VALUES(379, 96700, 'ninety-six thousand seven hundred');\nINSERT INTO t2 VALUES(380, 51609, 'fifty-one thousand six hundred nine');\nINSERT INTO t2 VALUES(381, 19465, 'nineteen thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(382, 97496, 'ninety-seven thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(383, 40693, 'forty thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(384, 90384, 'ninety thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(385, 37018, 'thirty-seven thousand eighteen');\nINSERT INTO t2 VALUES(386, 33373, 'thirty-three thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(387, 18129, 'eighteen thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(388, 87088, 'eighty-seven thousand eighty-eight');\nINSERT INTO t2 VALUES(389, 38982, 'thirty-eight thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(390, 68852, 'sixty-eight thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(391, 67805, 'sixty-seven thousand eight hundred five');\nINSERT INTO t2 VALUES(392, 85035, 'eighty-five thousand thirty-five');\nINSERT INTO t2 VALUES(393, 83196, 'eighty-three thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(394, 66916, 'sixty-six thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(395, 62729, 'sixty-two thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(396, 40572, 'forty thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(397, 99281, 'ninety-nine thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(398, 13442, 'thirteen thousand four hundred forty-two');\nINSERT INTO t2 VALUES(399, 62851, 'sixty-two thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(400, 88668, 'eighty-eight thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(401, 39319, 'thirty-nine thousand three hundred nineteen');\nINSERT INTO t2 VALUES(402, 54573, 'fifty-four thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(403, 69094, 'sixty-nine thousand ninety-four');\nINSERT INTO t2 VALUES(404, 22750, 'twenty-two thousand seven hundred fifty');\nINSERT INTO t2 VALUES(405, 958, 'nine hundred fifty-eight');\nINSERT INTO t2 VALUES(406, 37812, 'thirty-seven thousand eight hundred twelve');\nINSERT INTO t2 VALUES(407, 27408, 'twenty-seven thousand four hundred eight');\nINSERT INTO t2 VALUES(408, 102, 'one hundred two');\nINSERT INTO t2 VALUES(409, 98842, 'ninety-eight thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(410, 46101, 'forty-six thousand one hundred one');\nINSERT INTO t2 VALUES(411, 47116, 'forty-seven thousand one hundred sixteen');\nINSERT INTO t2 VALUES(412, 83820, 'eighty-three thousand eight hundred twenty');\nINSERT INTO t2 VALUES(413, 11037, 'eleven thousand thirty-seven');\nINSERT INTO t2 VALUES(414, 63954, 'sixty-three thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(415, 4143, 'four thousand one hundred forty-three');\nINSERT INTO t2 VALUES(416, 92284, 'ninety-two thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(417, 13726, 'thirteen thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(418, 19093, 'nineteen thousand ninety-three');\nINSERT INTO t2 VALUES(419, 5647, 'five thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(420, 59306, 'fifty-nine thousand three hundred six');\nINSERT INTO t2 VALUES(421, 74912, 'seventy-four thousand nine hundred twelve');\nINSERT INTO t2 VALUES(422, 57291, 'fifty-seven thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(423, 88070, 'eighty-eight thousand seventy');\nINSERT INTO t2 VALUES(424, 17250, 'seventeen thousand two hundred fifty');\nINSERT INTO t2 VALUES(425, 33763, 'thirty-three thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(426, 92165, 'ninety-two thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(427, 71691, 'seventy-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(428, 15409, 'fifteen thousand four hundred nine');\nINSERT INTO t2 VALUES(429, 78545, 'seventy-eight thousand five hundred forty-five');\nINSERT INTO t2 VALUES(430, 35754, 'thirty-five thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(431, 11936, 'eleven thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(432, 5900, 'five thousand nine hundred');\nINSERT INTO t2 VALUES(433, 74035, 'seventy-four thousand thirty-five');\nINSERT INTO t2 VALUES(434, 79581, 'seventy-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(435, 75744, 'seventy-five thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(436, 63940, 'sixty-three thousand nine hundred forty');\nINSERT INTO t2 VALUES(437, 23980, 'twenty-three thousand nine hundred eighty');\nINSERT INTO t2 VALUES(438, 22051, 'twenty-two thousand fifty-one');\nINSERT INTO t2 VALUES(439, 93445, 'ninety-three thousand four hundred forty-five');\nINSERT INTO t2 VALUES(440, 34736, 'thirty-four thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(441, 31454, 'thirty-one thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(442, 40844, 'forty thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(443, 70304, 'seventy thousand three hundred four');\nINSERT INTO t2 VALUES(444, 10837, 'ten thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(445, 99631, 'ninety-nine thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(446, 72804, 'seventy-two thousand eight hundred four');\nINSERT INTO t2 VALUES(447, 92850, 'ninety-two thousand eight hundred fifty');\nINSERT INTO t2 VALUES(448, 63508, 'sixty-three thousand five hundred eight');\nINSERT INTO t2 VALUES(449, 25706, 'twenty-five thousand seven hundred six');\nINSERT INTO t2 VALUES(450, 87944, 'eighty-seven thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(451, 23517, 'twenty-three thousand five hundred seventeen');\nINSERT INTO t2 VALUES(452, 68961, 'sixty-eight thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(453, 74788, 'seventy-four thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(454, 16124, 'sixteen thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(455, 93887, 'ninety-three thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(456, 85421, 'eighty-five thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(457, 91515, 'ninety-one thousand five hundred fifteen');\nINSERT INTO t2 VALUES(458, 15437, 'fifteen thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(459, 37400, 'thirty-seven thousand four hundred');\nINSERT INTO t2 VALUES(460, 5002, 'five thousand two');\nINSERT INTO t2 VALUES(461, 79204, 'seventy-nine thousand two hundred four');\nINSERT INTO t2 VALUES(462, 39588, 'thirty-nine thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(463, 19821, 'nineteen thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(464, 23933, 'twenty-three thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(465, 17986, 'seventeen thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(466, 34801, 'thirty-four thousand eight hundred one');\nINSERT INTO t2 VALUES(467, 63154, 'sixty-three thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(468, 76240, 'seventy-six thousand two hundred forty');\nINSERT INTO t2 VALUES(469, 92334, 'ninety-two thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(470, 32094, 'thirty-two thousand ninety-four');\nINSERT INTO t2 VALUES(471, 52504, 'fifty-two thousand five hundred four');\nINSERT INTO t2 VALUES(472, 89226, 'eighty-nine thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(473, 32433, 'thirty-two thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(474, 68219, 'sixty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(475, 22845, 'twenty-two thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(476, 9138, 'nine thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(477, 56540, 'fifty-six thousand five hundred forty');\nINSERT INTO t2 VALUES(478, 60269, 'sixty thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(479, 62693, 'sixty-two thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(480, 31550, 'thirty-one thousand five hundred fifty');\nINSERT INTO t2 VALUES(481, 23224, 'twenty-three thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(482, 37671, 'thirty-seven thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(483, 60275, 'sixty thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(484, 89470, 'eighty-nine thousand four hundred seventy');\nINSERT INTO t2 VALUES(485, 67806, 'sixty-seven thousand eight hundred six');\nINSERT INTO t2 VALUES(486, 45933, 'forty-five thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(487, 34486, 'thirty-four thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(488, 32311, 'thirty-two thousand three hundred eleven');\nINSERT INTO t2 VALUES(489, 27956, 'twenty-seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(490, 3525, 'three thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(491, 97535, 'ninety-seven thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(492, 25332, 'twenty-five thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(493, 32005, 'thirty-two thousand five');\nINSERT INTO t2 VALUES(494, 62842, 'sixty-two thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(495, 97388, 'ninety-seven thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(496, 9955, 'nine thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(497, 16659, 'sixteen thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(498, 36808, 'thirty-six thousand eight hundred eight');\nINSERT INTO t2 VALUES(499, 96556, 'ninety-six thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(500, 97611, 'ninety-seven thousand six hundred eleven');\nINSERT INTO t2 VALUES(501, 94797, 'ninety-four thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(502, 55526, 'fifty-five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(503, 67993, 'sixty-seven thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(504, 9578, 'nine thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(505, 66639, 'sixty-six thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(506, 34736, 'thirty-four thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(507, 99062, 'ninety-nine thousand sixty-two');\nINSERT INTO t2 VALUES(508, 34421, 'thirty-four thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(509, 2808, 'two thousand eight hundred eight');\nINSERT INTO t2 VALUES(510, 95578, 'ninety-five thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(511, 59698, 'fifty-nine thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(512, 48398, 'forty-eight thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(513, 70979, 'seventy thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(514, 78429, 'seventy-eight thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(515, 54267, 'fifty-four thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(516, 23592, 'twenty-three thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(517, 54855, 'fifty-four thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(518, 84027, 'eighty-four thousand twenty-seven');\nINSERT INTO t2 VALUES(519, 65748, 'sixty-five thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(520, 41536, 'forty-one thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(521, 18689, 'eighteen thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(522, 95009, 'ninety-five thousand nine');\nINSERT INTO t2 VALUES(523, 67827, 'sixty-seven thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(524, 73315, 'seventy-three thousand three hundred fifteen');\nINSERT INTO t2 VALUES(525, 69894, 'sixty-nine thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(526, 31763, 'thirty-one thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(527, 95172, 'ninety-five thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(528, 66494, 'sixty-six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(529, 22046, 'twenty-two thousand forty-six');\nINSERT INTO t2 VALUES(530, 88566, 'eighty-eight thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(531, 67887, 'sixty-seven thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(532, 40199, 'forty thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(533, 59247, 'fifty-nine thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(534, 68531, 'sixty-eight thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(535, 28157, 'twenty-eight thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(536, 40723, 'forty thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(537, 99214, 'ninety-nine thousand two hundred fourteen');\nINSERT INTO t2 VALUES(538, 3380, 'three thousand three hundred eighty');\nINSERT INTO t2 VALUES(539, 71751, 'seventy-one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(540, 71340, 'seventy-one thousand three hundred forty');\nINSERT INTO t2 VALUES(541, 96992, 'ninety-six thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(542, 89052, 'eighty-nine thousand fifty-two');\nINSERT INTO t2 VALUES(543, 60936, 'sixty thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(544, 75893, 'seventy-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(545, 48708, 'forty-eight thousand seven hundred eight');\nINSERT INTO t2 VALUES(546, 14104, 'fourteen thousand one hundred four');\nINSERT INTO t2 VALUES(547, 45315, 'forty-five thousand three hundred fifteen');\nINSERT INTO t2 VALUES(548, 95566, 'ninety-five thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(549, 35437, 'thirty-five thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(550, 25022, 'twenty-five thousand twenty-two');\nINSERT INTO t2 VALUES(551, 79698, 'seventy-nine thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(552, 35072, 'thirty-five thousand seventy-two');\nINSERT INTO t2 VALUES(553, 45001, 'forty-five thousand one');\nINSERT INTO t2 VALUES(554, 34803, 'thirty-four thousand eight hundred three');\nINSERT INTO t2 VALUES(555, 26429, 'twenty-six thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(556, 59919, 'fifty-nine thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(557, 74425, 'seventy-four thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(558, 71306, 'seventy-one thousand three hundred six');\nINSERT INTO t2 VALUES(559, 70169, 'seventy thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(560, 45716, 'forty-five thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(561, 47751, 'forty-seven thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(562, 69698, 'sixty-nine thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(563, 40521, 'forty thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(564, 73632, 'seventy-three thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(565, 31778, 'thirty-one thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(566, 78531, 'seventy-eight thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(567, 44561, 'forty-four thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(568, 60621, 'sixty thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(569, 34958, 'thirty-four thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(570, 12259, 'twelve thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(571, 65727, 'sixty-five thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(572, 95688, 'ninety-five thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(573, 81733, 'eighty-one thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(574, 74957, 'seventy-four thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(575, 72542, 'seventy-two thousand five hundred forty-two');\nINSERT INTO t2 VALUES(576, 89103, 'eighty-nine thousand one hundred three');\nINSERT INTO t2 VALUES(577, 86180, 'eighty-six thousand one hundred eighty');\nINSERT INTO t2 VALUES(578, 37290, 'thirty-seven thousand two hundred ninety');\nINSERT INTO t2 VALUES(579, 21170, 'twenty-one thousand one hundred seventy');\nINSERT INTO t2 VALUES(580, 82597, 'eighty-two thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(581, 84482, 'eighty-four thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(582, 37952, 'thirty-seven thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(583, 86729, 'eighty-six thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(584, 94676, 'ninety-four thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(585, 73021, 'seventy-three thousand twenty-one');\nINSERT INTO t2 VALUES(586, 48024, 'forty-eight thousand twenty-four');\nINSERT INTO t2 VALUES(587, 13143, 'thirteen thousand one hundred forty-three');\nINSERT INTO t2 VALUES(588, 38531, 'thirty-eight thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(589, 2489, 'two thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(590, 73416, 'seventy-three thousand four hundred sixteen');\nINSERT INTO t2 VALUES(591, 73717, 'seventy-three thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(592, 34965, 'thirty-four thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(593, 62107, 'sixty-two thousand one hundred seven');\nINSERT INTO t2 VALUES(594, 56695, 'fifty-six thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(595, 9354, 'nine thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(596, 85230, 'eighty-five thousand two hundred thirty');\nINSERT INTO t2 VALUES(597, 74110, 'seventy-four thousand one hundred ten');\nINSERT INTO t2 VALUES(598, 11003, 'eleven thousand three');\nINSERT INTO t2 VALUES(599, 78616, 'seventy-eight thousand six hundred sixteen');\nINSERT INTO t2 VALUES(600, 94802, 'ninety-four thousand eight hundred two');\nINSERT INTO t2 VALUES(601, 82730, 'eighty-two thousand seven hundred thirty');\nINSERT INTO t2 VALUES(602, 8566, 'eight thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(603, 99148, 'ninety-nine thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(604, 3426, 'three thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(605, 18875, 'eighteen thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(606, 60437, 'sixty thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(607, 54616, 'fifty-four thousand six hundred sixteen');\nINSERT INTO t2 VALUES(608, 9202, 'nine thousand two hundred two');\nINSERT INTO t2 VALUES(609, 59573, 'fifty-nine thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(610, 89791, 'eighty-nine thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(611, 55268, 'fifty-five thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(612, 98308, 'ninety-eight thousand three hundred eight');\nINSERT INTO t2 VALUES(613, 17680, 'seventeen thousand six hundred eighty');\nINSERT INTO t2 VALUES(614, 55025, 'fifty-five thousand twenty-five');\nINSERT INTO t2 VALUES(615, 77294, 'seventy-seven thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(616, 81062, 'eighty-one thousand sixty-two');\nINSERT INTO t2 VALUES(617, 13052, 'thirteen thousand fifty-two');\nINSERT INTO t2 VALUES(618, 91235, 'ninety-one thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(619, 66678, 'sixty-six thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(620, 56918, 'fifty-six thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(621, 60166, 'sixty thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(622, 75728, 'seventy-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(623, 51475, 'fifty-one thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(624, 18607, 'eighteen thousand six hundred seven');\nINSERT INTO t2 VALUES(625, 70530, 'seventy thousand five hundred thirty');\nINSERT INTO t2 VALUES(626, 99088, 'ninety-nine thousand eighty-eight');\nINSERT INTO t2 VALUES(627, 27360, 'twenty-seven thousand three hundred sixty');\nINSERT INTO t2 VALUES(628, 14766, 'fourteen thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(629, 38102, 'thirty-eight thousand one hundred two');\nINSERT INTO t2 VALUES(630, 6368, 'six thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(631, 44679, 'forty-four thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(632, 83040, 'eighty-three thousand forty');\nINSERT INTO t2 VALUES(633, 51321, 'fifty-one thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(634, 98071, 'ninety-eight thousand seventy-one');\nINSERT INTO t2 VALUES(635, 90424, 'ninety thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(636, 70779, 'seventy thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(637, 30261, 'thirty thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(638, 96814, 'ninety-six thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(639, 64637, 'sixty-four thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(640, 21467, 'twenty-one thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(641, 49675, 'forty-nine thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(642, 49154, 'forty-nine thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(643, 31544, 'thirty-one thousand five hundred forty-four');\nINSERT INTO t2 VALUES(644, 71290, 'seventy-one thousand two hundred ninety');\nINSERT INTO t2 VALUES(645, 8215, 'eight thousand two hundred fifteen');\nINSERT INTO t2 VALUES(646, 15898, 'fifteen thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(647, 42066, 'forty-two thousand sixty-six');\nINSERT INTO t2 VALUES(648, 35652, 'thirty-five thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(649, 31326, 'thirty-one thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(650, 63793, 'sixty-three thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(651, 67657, 'sixty-seven thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(652, 39223, 'thirty-nine thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(653, 13251, 'thirteen thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(654, 21579, 'twenty-one thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(655, 83396, 'eighty-three thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(656, 99715, 'ninety-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(657, 16217, 'sixteen thousand two hundred seventeen');\nINSERT INTO t2 VALUES(658, 66339, 'sixty-six thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(659, 57575, 'fifty-seven thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(660, 70206, 'seventy thousand two hundred six');\nINSERT INTO t2 VALUES(661, 87963, 'eighty-seven thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(662, 17579, 'seventeen thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(663, 87565, 'eighty-seven thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(664, 86056, 'eighty-six thousand fifty-six');\nINSERT INTO t2 VALUES(665, 2494, 'two thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(666, 91906, 'ninety-one thousand nine hundred six');\nINSERT INTO t2 VALUES(667, 89821, 'eighty-nine thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(668, 30479, 'thirty thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(669, 73187, 'seventy-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(670, 16142, 'sixteen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(671, 81278, 'eighty-one thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(672, 74626, 'seventy-four thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(673, 11136, 'eleven thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(674, 77760, 'seventy-seven thousand seven hundred sixty');\nINSERT INTO t2 VALUES(675, 40761, 'forty thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(676, 77786, 'seventy-seven thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(677, 78878, 'seventy-eight thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(678, 82966, 'eighty-two thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(679, 38243, 'thirty-eight thousand two hundred forty-three');\nINSERT INTO t2 VALUES(680, 18097, 'eighteen thousand ninety-seven');\nINSERT INTO t2 VALUES(681, 61339, 'sixty-one thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(682, 27517, 'twenty-seven thousand five hundred seventeen');\nINSERT INTO t2 VALUES(683, 40926, 'forty thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(684, 90996, 'ninety thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(685, 51691, 'fifty-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(686, 2081, 'two thousand eighty-one');\nINSERT INTO t2 VALUES(687, 95518, 'ninety-five thousand five hundred eighteen');\nINSERT INTO t2 VALUES(688, 84035, 'eighty-four thousand thirty-five');\nINSERT INTO t2 VALUES(689, 61083, 'sixty-one thousand eighty-three');\nINSERT INTO t2 VALUES(690, 66953, 'sixty-six thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(691, 48888, 'forty-eight thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(692, 3728, 'three thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(693, 88539, 'eighty-eight thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(694, 24939, 'twenty-four thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(695, 12290, 'twelve thousand two hundred ninety');\nINSERT INTO t2 VALUES(696, 99242, 'ninety-nine thousand two hundred forty-two');\nINSERT INTO t2 VALUES(697, 32165, 'thirty-two thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(698, 47862, 'forty-seven thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(699, 64618, 'sixty-four thousand six hundred eighteen');\nINSERT INTO t2 VALUES(700, 2534, 'two thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(701, 43705, 'forty-three thousand seven hundred five');\nINSERT INTO t2 VALUES(702, 86086, 'eighty-six thousand eighty-six');\nINSERT INTO t2 VALUES(703, 78321, 'seventy-eight thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(704, 30355, 'thirty thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(705, 78108, 'seventy-eight thousand one hundred eight');\nINSERT INTO t2 VALUES(706, 32327, 'thirty-two thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(707, 66279, 'sixty-six thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(708, 99518, 'ninety-nine thousand five hundred eighteen');\nINSERT INTO t2 VALUES(709, 70079, 'seventy thousand seventy-nine');\nINSERT INTO t2 VALUES(710, 36441, 'thirty-six thousand four hundred forty-one');\nINSERT INTO t2 VALUES(711, 2341, 'two thousand three hundred forty-one');\nINSERT INTO t2 VALUES(712, 29186, 'twenty-nine thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(713, 43661, 'forty-three thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(714, 87058, 'eighty-seven thousand fifty-eight');\nINSERT INTO t2 VALUES(715, 99743, 'ninety-nine thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(716, 89460, 'eighty-nine thousand four hundred sixty');\nINSERT INTO t2 VALUES(717, 6777, 'six thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(718, 12820, 'twelve thousand eight hundred twenty');\nINSERT INTO t2 VALUES(719, 1827, 'one thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(720, 5091, 'five thousand ninety-one');\nINSERT INTO t2 VALUES(721, 78763, 'seventy-eight thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(722, 56599, 'fifty-six thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(723, 80592, 'eighty thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(724, 30909, 'thirty thousand nine hundred nine');\nINSERT INTO t2 VALUES(725, 19797, 'nineteen thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(726, 62768, 'sixty-two thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(727, 94376, 'ninety-four thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(728, 83601, 'eighty-three thousand six hundred one');\nINSERT INTO t2 VALUES(729, 42990, 'forty-two thousand nine hundred ninety');\nINSERT INTO t2 VALUES(730, 7502, 'seven thousand five hundred two');\nINSERT INTO t2 VALUES(731, 53674, 'fifty-three thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(732, 23843, 'twenty-three thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(733, 4838, 'four thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(734, 4619, 'four thousand six hundred nineteen');\nINSERT INTO t2 VALUES(735, 59210, 'fifty-nine thousand two hundred ten');\nINSERT INTO t2 VALUES(736, 66035, 'sixty-six thousand thirty-five');\nINSERT INTO t2 VALUES(737, 45307, 'forty-five thousand three hundred seven');\nINSERT INTO t2 VALUES(738, 3816, 'three thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(739, 57908, 'fifty-seven thousand nine hundred eight');\nINSERT INTO t2 VALUES(740, 63148, 'sixty-three thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(741, 62717, 'sixty-two thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(742, 71595, 'seventy-one thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(743, 44054, 'forty-four thousand fifty-four');\nINSERT INTO t2 VALUES(744, 69909, 'sixty-nine thousand nine hundred nine');\nINSERT INTO t2 VALUES(745, 91551, 'ninety-one thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(746, 98216, 'ninety-eight thousand two hundred sixteen');\nINSERT INTO t2 VALUES(747, 48437, 'forty-eight thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(748, 15086, 'fifteen thousand eighty-six');\nINSERT INTO t2 VALUES(749, 63624, 'sixty-three thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(750, 57772, 'fifty-seven thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(751, 44176, 'forty-four thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(752, 45849, 'forty-five thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(753, 99996, 'ninety-nine thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(754, 95877, 'ninety-five thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(755, 2437, 'two thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(756, 20052, 'twenty thousand fifty-two');\nINSERT INTO t2 VALUES(757, 71853, 'seventy-one thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(758, 29391, 'twenty-nine thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(759, 44050, 'forty-four thousand fifty');\nINSERT INTO t2 VALUES(760, 99141, 'ninety-nine thousand one hundred forty-one');\nINSERT INTO t2 VALUES(761, 23689, 'twenty-three thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(762, 11569, 'eleven thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(763, 24481, 'twenty-four thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(764, 78451, 'seventy-eight thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(765, 76265, 'seventy-six thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(766, 88798, 'eighty-eight thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(767, 88853, 'eighty-eight thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(768, 38634, 'thirty-eight thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(769, 68397, 'sixty-eight thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(770, 68598, 'sixty-eight thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(771, 83836, 'eighty-three thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(772, 40637, 'forty thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(773, 19114, 'nineteen thousand one hundred fourteen');\nINSERT INTO t2 VALUES(774, 37463, 'thirty-seven thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(775, 97655, 'ninety-seven thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(776, 95507, 'ninety-five thousand five hundred seven');\nINSERT INTO t2 VALUES(777, 11003, 'eleven thousand three');\nINSERT INTO t2 VALUES(778, 69608, 'sixty-nine thousand six hundred eight');\nINSERT INTO t2 VALUES(779, 51461, 'fifty-one thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(780, 20959, 'twenty thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(781, 76235, 'seventy-six thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(782, 95620, 'ninety-five thousand six hundred twenty');\nINSERT INTO t2 VALUES(783, 29170, 'twenty-nine thousand one hundred seventy');\nINSERT INTO t2 VALUES(784, 22082, 'twenty-two thousand eighty-two');\nINSERT INTO t2 VALUES(785, 68667, 'sixty-eight thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(786, 33338, 'thirty-three thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(787, 90234, 'ninety thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(788, 65669, 'sixty-five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(789, 38078, 'thirty-eight thousand seventy-eight');\nINSERT INTO t2 VALUES(790, 87264, 'eighty-seven thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(791, 97614, 'ninety-seven thousand six hundred fourteen');\nINSERT INTO t2 VALUES(792, 59817, 'fifty-nine thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(793, 5196, 'five thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(794, 42525, 'forty-two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(795, 75267, 'seventy-five thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(796, 59459, 'fifty-nine thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(797, 17927, 'seventeen thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(798, 23710, 'twenty-three thousand seven hundred ten');\nINSERT INTO t2 VALUES(799, 23131, 'twenty-three thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(800, 98268, 'ninety-eight thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(801, 52084, 'fifty-two thousand eighty-four');\nINSERT INTO t2 VALUES(802, 6664, 'six thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(803, 18164, 'eighteen thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(804, 15805, 'fifteen thousand eight hundred five');\nINSERT INTO t2 VALUES(805, 60170, 'sixty thousand one hundred seventy');\nINSERT INTO t2 VALUES(806, 38797, 'thirty-eight thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(807, 6962, 'six thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(808, 54909, 'fifty-four thousand nine hundred nine');\nINSERT INTO t2 VALUES(809, 81064, 'eighty-one thousand sixty-four');\nINSERT INTO t2 VALUES(810, 75341, 'seventy-five thousand three hundred forty-one');\nINSERT INTO t2 VALUES(811, 3138, 'three thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(812, 37465, 'thirty-seven thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(813, 20556, 'twenty thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(814, 9894, 'nine thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(815, 45227, 'forty-five thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(816, 47065, 'forty-seven thousand sixty-five');\nINSERT INTO t2 VALUES(817, 48475, 'forty-eight thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(818, 87766, 'eighty-seven thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(819, 32488, 'thirty-two thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(820, 80760, 'eighty thousand seven hundred sixty');\nINSERT INTO t2 VALUES(821, 72788, 'seventy-two thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(822, 27462, 'twenty-seven thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(823, 95835, 'ninety-five thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(824, 52238, 'fifty-two thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(825, 83682, 'eighty-three thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(826, 71799, 'seventy-one thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(827, 2127, 'two thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(828, 75416, 'seventy-five thousand four hundred sixteen');\nINSERT INTO t2 VALUES(829, 76242, 'seventy-six thousand two hundred forty-two');\nINSERT INTO t2 VALUES(830, 76930, 'seventy-six thousand nine hundred thirty');\nINSERT INTO t2 VALUES(831, 46819, 'forty-six thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(832, 59100, 'fifty-nine thousand one hundred');\nINSERT INTO t2 VALUES(833, 8369, 'eight thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(834, 97501, 'ninety-seven thousand five hundred one');\nINSERT INTO t2 VALUES(835, 47736, 'forty-seven thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(836, 15478, 'fifteen thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(837, 14813, 'fourteen thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(838, 94605, 'ninety-four thousand six hundred five');\nINSERT INTO t2 VALUES(839, 13218, 'thirteen thousand two hundred eighteen');\nINSERT INTO t2 VALUES(840, 41949, 'forty-one thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(841, 21369, 'twenty-one thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(842, 78744, 'seventy-eight thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(843, 8213, 'eight thousand two hundred thirteen');\nINSERT INTO t2 VALUES(844, 8523, 'eight thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(845, 68301, 'sixty-eight thousand three hundred one');\nINSERT INTO t2 VALUES(846, 9328, 'nine thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(847, 25488, 'twenty-five thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(848, 2392, 'two thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(849, 10572, 'ten thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(850, 93297, 'ninety-three thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(851, 31561, 'thirty-one thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(852, 48403, 'forty-eight thousand four hundred three');\nINSERT INTO t2 VALUES(853, 43405, 'forty-three thousand four hundred five');\nINSERT INTO t2 VALUES(854, 52536, 'fifty-two thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(855, 99828, 'ninety-nine thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(856, 43458, 'forty-three thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(857, 10517, 'ten thousand five hundred seventeen');\nINSERT INTO t2 VALUES(858, 38607, 'thirty-eight thousand six hundred seven');\nINSERT INTO t2 VALUES(859, 81719, 'eighty-one thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(860, 95780, 'ninety-five thousand seven hundred eighty');\nINSERT INTO t2 VALUES(861, 1119, 'one thousand one hundred nineteen');\nINSERT INTO t2 VALUES(862, 42558, 'forty-two thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(863, 43669, 'forty-three thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(864, 89209, 'eighty-nine thousand two hundred nine');\nINSERT INTO t2 VALUES(865, 33358, 'thirty-three thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(866, 59069, 'fifty-nine thousand sixty-nine');\nINSERT INTO t2 VALUES(867, 13210, 'thirteen thousand two hundred ten');\nINSERT INTO t2 VALUES(868, 72938, 'seventy-two thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(869, 99845, 'ninety-nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(870, 92956, 'ninety-two thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(871, 54213, 'fifty-four thousand two hundred thirteen');\nINSERT INTO t2 VALUES(872, 9395, 'nine thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(873, 80128, 'eighty thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(874, 57995, 'fifty-seven thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(875, 6483, 'six thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(876, 3506, 'three thousand five hundred six');\nINSERT INTO t2 VALUES(877, 1641, 'one thousand six hundred forty-one');\nINSERT INTO t2 VALUES(878, 13790, 'thirteen thousand seven hundred ninety');\nINSERT INTO t2 VALUES(879, 18154, 'eighteen thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(880, 24625, 'twenty-four thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(881, 5708, 'five thousand seven hundred eight');\nINSERT INTO t2 VALUES(882, 1038, 'one thousand thirty-eight');\nINSERT INTO t2 VALUES(883, 33150, 'thirty-three thousand one hundred fifty');\nINSERT INTO t2 VALUES(884, 43327, 'forty-three thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(885, 53736, 'fifty-three thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(886, 24084, 'twenty-four thousand eighty-four');\nINSERT INTO t2 VALUES(887, 23309, 'twenty-three thousand three hundred nine');\nINSERT INTO t2 VALUES(888, 85039, 'eighty-five thousand thirty-nine');\nINSERT INTO t2 VALUES(889, 18294, 'eighteen thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(890, 79266, 'seventy-nine thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(891, 14951, 'fourteen thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(892, 99565, 'ninety-nine thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(893, 45968, 'forty-five thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(894, 65624, 'sixty-five thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(895, 89551, 'eighty-nine thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(896, 25780, 'twenty-five thousand seven hundred eighty');\nINSERT INTO t2 VALUES(897, 39132, 'thirty-nine thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(898, 82475, 'eighty-two thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(899, 44023, 'forty-four thousand twenty-three');\nINSERT INTO t2 VALUES(900, 79229, 'seventy-nine thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(901, 36320, 'thirty-six thousand three hundred twenty');\nINSERT INTO t2 VALUES(902, 99536, 'ninety-nine thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(903, 92326, 'ninety-two thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(904, 53945, 'fifty-three thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(905, 84917, 'eighty-four thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(906, 53411, 'fifty-three thousand four hundred eleven');\nINSERT INTO t2 VALUES(907, 67719, 'sixty-seven thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(908, 72065, 'seventy-two thousand sixty-five');\nINSERT INTO t2 VALUES(909, 6847, 'six thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(910, 48807, 'forty-eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(911, 478, 'four hundred seventy-eight');\nINSERT INTO t2 VALUES(912, 90285, 'ninety thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(913, 60170, 'sixty thousand one hundred seventy');\nINSERT INTO t2 VALUES(914, 64492, 'sixty-four thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(915, 21371, 'twenty-one thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(916, 77422, 'seventy-seven thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(917, 62537, 'sixty-two thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(918, 82323, 'eighty-two thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(919, 79842, 'seventy-nine thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(920, 84346, 'eighty-four thousand three hundred forty-six');\nINSERT INTO t2 VALUES(921, 43102, 'forty-three thousand one hundred two');\nINSERT INTO t2 VALUES(922, 88617, 'eighty-eight thousand six hundred seventeen');\nINSERT INTO t2 VALUES(923, 53762, 'fifty-three thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(924, 46121, 'forty-six thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(925, 41029, 'forty-one thousand twenty-nine');\nINSERT INTO t2 VALUES(926, 39186, 'thirty-nine thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(927, 50573, 'fifty thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(928, 13263, 'thirteen thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(929, 2703, 'two thousand seven hundred three');\nINSERT INTO t2 VALUES(930, 34926, 'thirty-four thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(931, 46293, 'forty-six thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(932, 64806, 'sixty-four thousand eight hundred six');\nINSERT INTO t2 VALUES(933, 97369, 'ninety-seven thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(934, 61719, 'sixty-one thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(935, 6760, 'six thousand seven hundred sixty');\nINSERT INTO t2 VALUES(936, 77065, 'seventy-seven thousand sixty-five');\nINSERT INTO t2 VALUES(937, 32514, 'thirty-two thousand five hundred fourteen');\nINSERT INTO t2 VALUES(938, 33417, 'thirty-three thousand four hundred seventeen');\nINSERT INTO t2 VALUES(939, 59607, 'fifty-nine thousand six hundred seven');\nINSERT INTO t2 VALUES(940, 26987, 'twenty-six thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(941, 78753, 'seventy-eight thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(942, 15316, 'fifteen thousand three hundred sixteen');\nINSERT INTO t2 VALUES(943, 27249, 'twenty-seven thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(944, 33011, 'thirty-three thousand eleven');\nINSERT INTO t2 VALUES(945, 30349, 'thirty thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(946, 16474, 'sixteen thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(947, 91550, 'ninety-one thousand five hundred fifty');\nINSERT INTO t2 VALUES(948, 7229, 'seven thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(949, 55591, 'fifty-five thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(950, 6494, 'six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(951, 61726, 'sixty-one thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(952, 43401, 'forty-three thousand four hundred one');\nINSERT INTO t2 VALUES(953, 35417, 'thirty-five thousand four hundred seventeen');\nINSERT INTO t2 VALUES(954, 81064, 'eighty-one thousand sixty-four');\nINSERT INTO t2 VALUES(955, 98029, 'ninety-eight thousand twenty-nine');\nINSERT INTO t2 VALUES(956, 99459, 'ninety-nine thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(957, 47659, 'forty-seven thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(958, 90562, 'ninety thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(959, 98996, 'ninety-eight thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(960, 36814, 'thirty-six thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(961, 41743, 'forty-one thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(962, 49352, 'forty-nine thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(963, 2867, 'two thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(964, 77404, 'seventy-seven thousand four hundred four');\nINSERT INTO t2 VALUES(965, 52039, 'fifty-two thousand thirty-nine');\nINSERT INTO t2 VALUES(966, 50787, 'fifty thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(967, 72745, 'seventy-two thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(968, 38373, 'thirty-eight thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(969, 9880, 'nine thousand eight hundred eighty');\nINSERT INTO t2 VALUES(970, 23368, 'twenty-three thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(971, 21878, 'twenty-one thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(972, 24879, 'twenty-four thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(973, 85139, 'eighty-five thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(974, 92663, 'ninety-two thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(975, 80314, 'eighty thousand three hundred fourteen');\nINSERT INTO t2 VALUES(976, 68791, 'sixty-eight thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(977, 86587, 'eighty-six thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(978, 84276, 'eighty-four thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(979, 2611, 'two thousand six hundred eleven');\nINSERT INTO t2 VALUES(980, 51394, 'fifty-one thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(981, 41718, 'forty-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(982, 74790, 'seventy-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(983, 3722, 'three thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(984, 51099, 'fifty-one thousand ninety-nine');\nINSERT INTO t2 VALUES(985, 43465, 'forty-three thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(986, 80609, 'eighty thousand six hundred nine');\nINSERT INTO t2 VALUES(987, 10740, 'ten thousand seven hundred forty');\nINSERT INTO t2 VALUES(988, 46965, 'forty-six thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(989, 69448, 'sixty-nine thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(990, 7629, 'seven thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(991, 32001, 'thirty-two thousand one');\nINSERT INTO t2 VALUES(992, 97403, 'ninety-seven thousand four hundred three');\nINSERT INTO t2 VALUES(993, 38424, 'thirty-eight thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(994, 91197, 'ninety-one thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(995, 18954, 'eighteen thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(996, 63716, 'sixty-three thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(997, 47127, 'forty-seven thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(998, 35979, 'thirty-five thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(999, 73385, 'seventy-three thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(1000, 22356, 'twenty-two thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(1001, 55538, 'fifty-five thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(1002, 81376, 'eighty-one thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(1003, 86313, 'eighty-six thousand three hundred thirteen');\nINSERT INTO t2 VALUES(1004, 49542, 'forty-nine thousand five hundred forty-two');\nINSERT INTO t2 VALUES(1005, 74987, 'seventy-four thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(1006, 80722, 'eighty thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(1007, 62298, 'sixty-two thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(1008, 93119, 'ninety-three thousand one hundred nineteen');\nINSERT INTO t2 VALUES(1009, 37378, 'thirty-seven thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(1010, 80392, 'eighty thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(1011, 47524, 'forty-seven thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(1012, 68714, 'sixty-eight thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(1013, 95384, 'ninety-five thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(1014, 79821, 'seventy-nine thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(1015, 65915, 'sixty-five thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(1016, 89567, 'eighty-nine thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(1017, 6173, 'six thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(1018, 78190, 'seventy-eight thousand one hundred ninety');\nINSERT INTO t2 VALUES(1019, 49620, 'forty-nine thousand six hundred twenty');\nINSERT INTO t2 VALUES(1020, 314, 'three hundred fourteen');\nINSERT INTO t2 VALUES(1021, 77071, 'seventy-seven thousand seventy-one');\nINSERT INTO t2 VALUES(1022, 34897, 'thirty-four thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(1023, 50194, 'fifty thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(1024, 3962, 'three thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(1025, 12995, 'twelve thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(1026, 16574, 'sixteen thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(1027, 13011, 'thirteen thousand eleven');\nINSERT INTO t2 VALUES(1028, 26129, 'twenty-six thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(1029, 25946, 'twenty-five thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(1030, 48646, 'forty-eight thousand six hundred forty-six');\nINSERT INTO t2 VALUES(1031, 12877, 'twelve thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(1032, 54792, 'fifty-four thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(1033, 16323, 'sixteen thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(1034, 96597, 'ninety-six thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(1035, 12817, 'twelve thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(1036, 17757, 'seventeen thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(1037, 20670, 'twenty thousand six hundred seventy');\nINSERT INTO t2 VALUES(1038, 43032, 'forty-three thousand thirty-two');\nINSERT INTO t2 VALUES(1039, 20753, 'twenty thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(1040, 34704, 'thirty-four thousand seven hundred four');\nINSERT INTO t2 VALUES(1041, 59068, 'fifty-nine thousand sixty-eight');\nINSERT INTO t2 VALUES(1042, 92839, 'ninety-two thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(1043, 63337, 'sixty-three thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(1044, 13702, 'thirteen thousand seven hundred two');\nINSERT INTO t2 VALUES(1045, 8161, 'eight thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(1046, 36141, 'thirty-six thousand one hundred forty-one');\nINSERT INTO t2 VALUES(1047, 74493, 'seventy-four thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(1048, 93265, 'ninety-three thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(1049, 40870, 'forty thousand eight hundred seventy');\nINSERT INTO t2 VALUES(1050, 90720, 'ninety thousand seven hundred twenty');\nINSERT INTO t2 VALUES(1051, 37822, 'thirty-seven thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(1052, 37372, 'thirty-seven thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(1053, 83340, 'eighty-three thousand three hundred forty');\nINSERT INTO t2 VALUES(1054, 65993, 'sixty-five thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(1055, 63063, 'sixty-three thousand sixty-three');\nINSERT INTO t2 VALUES(1056, 96964, 'ninety-six thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(1057, 12363, 'twelve thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(1058, 76130, 'seventy-six thousand one hundred thirty');\nINSERT INTO t2 VALUES(1059, 74871, 'seventy-four thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(1060, 72127, 'seventy-two thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(1061, 58419, 'fifty-eight thousand four hundred nineteen');\nINSERT INTO t2 VALUES(1062, 55160, 'fifty-five thousand one hundred sixty');\nINSERT INTO t2 VALUES(1063, 12066, 'twelve thousand sixty-six');\nINSERT INTO t2 VALUES(1064, 60646, 'sixty thousand six hundred forty-six');\nINSERT INTO t2 VALUES(1065, 38295, 'thirty-eight thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(1066, 89409, 'eighty-nine thousand four hundred nine');\nINSERT INTO t2 VALUES(1067, 65373, 'sixty-five thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(1068, 30345, 'thirty thousand three hundred forty-five');\nINSERT INTO t2 VALUES(1069, 2527, 'two thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(1070, 19833, 'nineteen thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(1071, 22166, 'twenty-two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(1072, 45403, 'forty-five thousand four hundred three');\nINSERT INTO t2 VALUES(1073, 13171, 'thirteen thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(1074, 36873, 'thirty-six thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(1075, 50278, 'fifty thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(1076, 61903, 'sixty-one thousand nine hundred three');\nINSERT INTO t2 VALUES(1077, 9080, 'nine thousand eighty');\nINSERT INTO t2 VALUES(1078, 27901, 'twenty-seven thousand nine hundred one');\nINSERT INTO t2 VALUES(1079, 49117, 'forty-nine thousand one hundred seventeen');\nINSERT INTO t2 VALUES(1080, 22201, 'twenty-two thousand two hundred one');\nINSERT INTO t2 VALUES(1081, 32329, 'thirty-two thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(1082, 54240, 'fifty-four thousand two hundred forty');\nINSERT INTO t2 VALUES(1083, 86819, 'eighty-six thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(1084, 46365, 'forty-six thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(1085, 78771, 'seventy-eight thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(1086, 17448, 'seventeen thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(1087, 31391, 'thirty-one thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(1088, 29459, 'twenty-nine thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(1089, 71702, 'seventy-one thousand seven hundred two');\nINSERT INTO t2 VALUES(1090, 61800, 'sixty-one thousand eight hundred');\nINSERT INTO t2 VALUES(1091, 63785, 'sixty-three thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(1092, 77760, 'seventy-seven thousand seven hundred sixty');\nINSERT INTO t2 VALUES(1093, 41542, 'forty-one thousand five hundred forty-two');\nINSERT INTO t2 VALUES(1094, 90620, 'ninety thousand six hundred twenty');\nINSERT INTO t2 VALUES(1095, 28478, 'twenty-eight thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(1096, 91651, 'ninety-one thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(1097, 65602, 'sixty-five thousand six hundred two');\nINSERT INTO t2 VALUES(1098, 78515, 'seventy-eight thousand five hundred fifteen');\nINSERT INTO t2 VALUES(1099, 88720, 'eighty-eight thousand seven hundred twenty');\nINSERT INTO t2 VALUES(1100, 28984, 'twenty-eight thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(1101, 1688, 'one thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(1102, 12137, 'twelve thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(1103, 5562, 'five thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(1104, 79483, 'seventy-nine thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(1105, 82573, 'eighty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(1106, 9763, 'nine thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(1107, 32211, 'thirty-two thousand two hundred eleven');\nINSERT INTO t2 VALUES(1108, 4207, 'four thousand two hundred seven');\nINSERT INTO t2 VALUES(1109, 81396, 'eighty-one thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(1110, 43204, 'forty-three thousand two hundred four');\nINSERT INTO t2 VALUES(1111, 44071, 'forty-four thousand seventy-one');\nINSERT INTO t2 VALUES(1112, 43680, 'forty-three thousand six hundred eighty');\nINSERT INTO t2 VALUES(1113, 17553, 'seventeen thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(1114, 8265, 'eight thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(1115, 77411, 'seventy-seven thousand four hundred eleven');\nINSERT INTO t2 VALUES(1116, 40530, 'forty thousand five hundred thirty');\nINSERT INTO t2 VALUES(1117, 38298, 'thirty-eight thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(1118, 77618, 'seventy-seven thousand six hundred eighteen');\nINSERT INTO t2 VALUES(1119, 78116, 'seventy-eight thousand one hundred sixteen');\nINSERT INTO t2 VALUES(1120, 71376, 'seventy-one thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(1121, 24103, 'twenty-four thousand one hundred three');\nINSERT INTO t2 VALUES(1122, 54423, 'fifty-four thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(1123, 68801, 'sixty-eight thousand eight hundred one');\nINSERT INTO t2 VALUES(1124, 15256, 'fifteen thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(1125, 20268, 'twenty thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(1126, 16855, 'sixteen thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(1127, 70035, 'seventy thousand thirty-five');\nINSERT INTO t2 VALUES(1128, 89172, 'eighty-nine thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(1129, 98060, 'ninety-eight thousand sixty');\nINSERT INTO t2 VALUES(1130, 54557, 'fifty-four thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(1131, 68504, 'sixty-eight thousand five hundred four');\nINSERT INTO t2 VALUES(1132, 55531, 'fifty-five thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(1133, 50161, 'fifty thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(1134, 97767, 'ninety-seven thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(1135, 35200, 'thirty-five thousand two hundred');\nINSERT INTO t2 VALUES(1136, 43320, 'forty-three thousand three hundred twenty');\nINSERT INTO t2 VALUES(1137, 49341, 'forty-nine thousand three hundred forty-one');\nINSERT INTO t2 VALUES(1138, 97800, 'ninety-seven thousand eight hundred');\nINSERT INTO t2 VALUES(1139, 12026, 'twelve thousand twenty-six');\nINSERT INTO t2 VALUES(1140, 40365, 'forty thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(1141, 78130, 'seventy-eight thousand one hundred thirty');\nINSERT INTO t2 VALUES(1142, 71407, 'seventy-one thousand four hundred seven');\nINSERT INTO t2 VALUES(1143, 88110, 'eighty-eight thousand one hundred ten');\nINSERT INTO t2 VALUES(1144, 70075, 'seventy thousand seventy-five');\nINSERT INTO t2 VALUES(1145, 39803, 'thirty-nine thousand eight hundred three');\nINSERT INTO t2 VALUES(1146, 36025, 'thirty-six thousand twenty-five');\nINSERT INTO t2 VALUES(1147, 95120, 'ninety-five thousand one hundred twenty');\nINSERT INTO t2 VALUES(1148, 61068, 'sixty-one thousand sixty-eight');\nINSERT INTO t2 VALUES(1149, 96036, 'ninety-six thousand thirty-six');\nINSERT INTO t2 VALUES(1150, 63963, 'sixty-three thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(1151, 94898, 'ninety-four thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(1152, 49063, 'forty-nine thousand sixty-three');\nINSERT INTO t2 VALUES(1153, 33733, 'thirty-three thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(1154, 584, 'five hundred eighty-four');\nINSERT INTO t2 VALUES(1155, 6973, 'six thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(1156, 70539, 'seventy thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(1157, 56452, 'fifty-six thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(1158, 5590, 'five thousand five hundred ninety');\nINSERT INTO t2 VALUES(1159, 15730, 'fifteen thousand seven hundred thirty');\nINSERT INTO t2 VALUES(1160, 77308, 'seventy-seven thousand three hundred eight');\nINSERT INTO t2 VALUES(1161, 86753, 'eighty-six thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(1162, 38210, 'thirty-eight thousand two hundred ten');\nINSERT INTO t2 VALUES(1163, 77635, 'seventy-seven thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(1164, 14535, 'fourteen thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(1165, 68957, 'sixty-eight thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(1166, 19623, 'nineteen thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(1167, 5643, 'five thousand six hundred forty-three');\nINSERT INTO t2 VALUES(1168, 77798, 'seventy-seven thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(1169, 69501, 'sixty-nine thousand five hundred one');\nINSERT INTO t2 VALUES(1170, 61192, 'sixty-one thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(1171, 83736, 'eighty-three thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(1172, 82633, 'eighty-two thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(1173, 50539, 'fifty thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(1174, 87416, 'eighty-seven thousand four hundred sixteen');\nINSERT INTO t2 VALUES(1175, 56737, 'fifty-six thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(1176, 33997, 'thirty-three thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(1177, 37921, 'thirty-seven thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(1178, 10244, 'ten thousand two hundred forty-four');\nINSERT INTO t2 VALUES(1179, 9407, 'nine thousand four hundred seven');\nINSERT INTO t2 VALUES(1180, 70784, 'seventy thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(1181, 47705, 'forty-seven thousand seven hundred five');\nINSERT INTO t2 VALUES(1182, 20852, 'twenty thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(1183, 78176, 'seventy-eight thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(1184, 32410, 'thirty-two thousand four hundred ten');\nINSERT INTO t2 VALUES(1185, 39737, 'thirty-nine thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(1186, 5142, 'five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(1187, 35867, 'thirty-five thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(1188, 52773, 'fifty-two thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(1189, 29699, 'twenty-nine thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(1190, 38185, 'thirty-eight thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(1191, 17648, 'seventeen thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(1192, 31242, 'thirty-one thousand two hundred forty-two');\nINSERT INTO t2 VALUES(1193, 61161, 'sixty-one thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(1194, 1135, 'one thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(1195, 61402, 'sixty-one thousand four hundred two');\nINSERT INTO t2 VALUES(1196, 44607, 'forty-four thousand six hundred seven');\nINSERT INTO t2 VALUES(1197, 66253, 'sixty-six thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(1198, 53684, 'fifty-three thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(1199, 81819, 'eighty-one thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(1200, 56896, 'fifty-six thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(1201, 24164, 'twenty-four thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(1202, 15088, 'fifteen thousand eighty-eight');\nINSERT INTO t2 VALUES(1203, 52962, 'fifty-two thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(1204, 200, 'two hundred');\nINSERT INTO t2 VALUES(1205, 26958, 'twenty-six thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(1206, 91112, 'ninety-one thousand one hundred twelve');\nINSERT INTO t2 VALUES(1207, 48779, 'forty-eight thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(1208, 55622, 'fifty-five thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(1209, 34562, 'thirty-four thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(1210, 88798, 'eighty-eight thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(1211, 84915, 'eighty-four thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(1212, 33609, 'thirty-three thousand six hundred nine');\nINSERT INTO t2 VALUES(1213, 37211, 'thirty-seven thousand two hundred eleven');\nINSERT INTO t2 VALUES(1214, 55843, 'fifty-five thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(1215, 53764, 'fifty-three thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(1216, 88733, 'eighty-eight thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(1217, 5799, 'five thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(1218, 92517, 'ninety-two thousand five hundred seventeen');\nINSERT INTO t2 VALUES(1219, 91708, 'ninety-one thousand seven hundred eight');\nINSERT INTO t2 VALUES(1220, 19304, 'nineteen thousand three hundred four');\nINSERT INTO t2 VALUES(1221, 5130, 'five thousand one hundred thirty');\nINSERT INTO t2 VALUES(1222, 20649, 'twenty thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(1223, 56010, 'fifty-six thousand ten');\nINSERT INTO t2 VALUES(1224, 61798, 'sixty-one thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(1225, 65913, 'sixty-five thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(1226, 81863, 'eighty-one thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(1227, 43903, 'forty-three thousand nine hundred three');\nINSERT INTO t2 VALUES(1228, 2201, 'two thousand two hundred one');\nINSERT INTO t2 VALUES(1229, 74772, 'seventy-four thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(1230, 60641, 'sixty thousand six hundred forty-one');\nINSERT INTO t2 VALUES(1231, 59217, 'fifty-nine thousand two hundred seventeen');\nINSERT INTO t2 VALUES(1232, 47443, 'forty-seven thousand four hundred forty-three');\nINSERT INTO t2 VALUES(1233, 62292, 'sixty-two thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(1234, 51084, 'fifty-one thousand eighty-four');\nINSERT INTO t2 VALUES(1235, 34890, 'thirty-four thousand eight hundred ninety');\nINSERT INTO t2 VALUES(1236, 66948, 'sixty-six thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(1237, 7314, 'seven thousand three hundred fourteen');\nINSERT INTO t2 VALUES(1238, 7328, 'seven thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(1239, 50586, 'fifty thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(1240, 81060, 'eighty-one thousand sixty');\nINSERT INTO t2 VALUES(1241, 11213, 'eleven thousand two hundred thirteen');\nINSERT INTO t2 VALUES(1242, 80152, 'eighty thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(1243, 89587, 'eighty-nine thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(1244, 83826, 'eighty-three thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(1245, 64098, 'sixty-four thousand ninety-eight');\nINSERT INTO t2 VALUES(1246, 77926, 'seventy-seven thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(1247, 47897, 'forty-seven thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(1248, 98123, 'ninety-eight thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(1249, 33848, 'thirty-three thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(1250, 35650, 'thirty-five thousand six hundred fifty');\nINSERT INTO t2 VALUES(1251, 3746, 'three thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(1252, 23209, 'twenty-three thousand two hundred nine');\nINSERT INTO t2 VALUES(1253, 92159, 'ninety-two thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(1254, 16517, 'sixteen thousand five hundred seventeen');\nINSERT INTO t2 VALUES(1255, 51307, 'fifty-one thousand three hundred seven');\nINSERT INTO t2 VALUES(1256, 52257, 'fifty-two thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(1257, 35091, 'thirty-five thousand ninety-one');\nINSERT INTO t2 VALUES(1258, 75176, 'seventy-five thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(1259, 13954, 'thirteen thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(1260, 25101, 'twenty-five thousand one hundred one');\nINSERT INTO t2 VALUES(1261, 36297, 'thirty-six thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(1262, 6364, 'six thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(1263, 2388, 'two thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(1264, 30295, 'thirty thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(1265, 42865, 'forty-two thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(1266, 9279, 'nine thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(1267, 60930, 'sixty thousand nine hundred thirty');\nINSERT INTO t2 VALUES(1268, 36524, 'thirty-six thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(1269, 24362, 'twenty-four thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(1270, 17401, 'seventeen thousand four hundred one');\nINSERT INTO t2 VALUES(1271, 71411, 'seventy-one thousand four hundred eleven');\nINSERT INTO t2 VALUES(1272, 31655, 'thirty-one thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(1273, 5122, 'five thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(1274, 52284, 'fifty-two thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(1275, 19329, 'nineteen thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(1276, 13660, 'thirteen thousand six hundred sixty');\nINSERT INTO t2 VALUES(1277, 1131, 'one thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(1278, 25081, 'twenty-five thousand eighty-one');\nINSERT INTO t2 VALUES(1279, 55153, 'fifty-five thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(1280, 8973, 'eight thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(1281, 58069, 'fifty-eight thousand sixty-nine');\nINSERT INTO t2 VALUES(1282, 79100, 'seventy-nine thousand one hundred');\nINSERT INTO t2 VALUES(1283, 48768, 'forty-eight thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(1284, 60150, 'sixty thousand one hundred fifty');\nINSERT INTO t2 VALUES(1285, 66552, 'sixty-six thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(1286, 23579, 'twenty-three thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(1287, 18058, 'eighteen thousand fifty-eight');\nINSERT INTO t2 VALUES(1288, 61810, 'sixty-one thousand eight hundred ten');\nINSERT INTO t2 VALUES(1289, 75622, 'seventy-five thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(1290, 5557, 'five thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(1291, 90854, 'ninety thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(1292, 87039, 'eighty-seven thousand thirty-nine');\nINSERT INTO t2 VALUES(1293, 8757, 'eight thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(1294, 76493, 'seventy-six thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(1295, 33508, 'thirty-three thousand five hundred eight');\nINSERT INTO t2 VALUES(1296, 15425, 'fifteen thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(1297, 10447, 'ten thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(1298, 93718, 'ninety-three thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(1299, 60922, 'sixty thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(1300, 11712, 'eleven thousand seven hundred twelve');\nINSERT INTO t2 VALUES(1301, 56828, 'fifty-six thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(1302, 91211, 'ninety-one thousand two hundred eleven');\nINSERT INTO t2 VALUES(1303, 3637, 'three thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(1304, 8958, 'eight thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(1305, 88592, 'eighty-eight thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(1306, 7217, 'seven thousand two hundred seventeen');\nINSERT INTO t2 VALUES(1307, 58735, 'fifty-eight thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(1308, 95778, 'ninety-five thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(1309, 48851, 'forty-eight thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(1310, 69104, 'sixty-nine thousand one hundred four');\nINSERT INTO t2 VALUES(1311, 41151, 'forty-one thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(1312, 92769, 'ninety-two thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(1313, 23517, 'twenty-three thousand five hundred seventeen');\nINSERT INTO t2 VALUES(1314, 3893, 'three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(1315, 60575, 'sixty thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(1316, 7296, 'seven thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(1317, 70279, 'seventy thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(1318, 49134, 'forty-nine thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(1319, 72590, 'seventy-two thousand five hundred ninety');\nINSERT INTO t2 VALUES(1320, 81718, 'eighty-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(1321, 94520, 'ninety-four thousand five hundred twenty');\nINSERT INTO t2 VALUES(1322, 90116, 'ninety thousand one hundred sixteen');\nINSERT INTO t2 VALUES(1323, 21056, 'twenty-one thousand fifty-six');\nINSERT INTO t2 VALUES(1324, 97610, 'ninety-seven thousand six hundred ten');\nINSERT INTO t2 VALUES(1325, 2826, 'two thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(1326, 14063, 'fourteen thousand sixty-three');\nINSERT INTO t2 VALUES(1327, 6031, 'six thousand thirty-one');\nINSERT INTO t2 VALUES(1328, 65228, 'sixty-five thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(1329, 83287, 'eighty-three thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(1330, 11688, 'eleven thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(1331, 75854, 'seventy-five thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(1332, 4682, 'four thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(1333, 26055, 'twenty-six thousand fifty-five');\nINSERT INTO t2 VALUES(1334, 73188, 'seventy-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(1335, 92308, 'ninety-two thousand three hundred eight');\nINSERT INTO t2 VALUES(1336, 21226, 'twenty-one thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(1337, 67369, 'sixty-seven thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(1338, 59051, 'fifty-nine thousand fifty-one');\nINSERT INTO t2 VALUES(1339, 69586, 'sixty-nine thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(1340, 74749, 'seventy-four thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(1341, 93121, 'ninety-three thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(1342, 16000, 'sixteen thousand');\nINSERT INTO t2 VALUES(1343, 44870, 'forty-four thousand eight hundred seventy');\nINSERT INTO t2 VALUES(1344, 5040, 'five thousand forty');\nINSERT INTO t2 VALUES(1345, 33434, 'thirty-three thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(1346, 47321, 'forty-seven thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(1347, 55639, 'fifty-five thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(1348, 22157, 'twenty-two thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(1349, 17189, 'seventeen thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(1350, 77408, 'seventy-seven thousand four hundred eight');\nINSERT INTO t2 VALUES(1351, 41344, 'forty-one thousand three hundred forty-four');\nINSERT INTO t2 VALUES(1352, 67958, 'sixty-seven thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(1353, 48189, 'forty-eight thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(1354, 6938, 'six thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(1355, 36616, 'thirty-six thousand six hundred sixteen');\nINSERT INTO t2 VALUES(1356, 23947, 'twenty-three thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(1357, 16580, 'sixteen thousand five hundred eighty');\nINSERT INTO t2 VALUES(1358, 33653, 'thirty-three thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(1359, 86494, 'eighty-six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(1360, 8035, 'eight thousand thirty-five');\nINSERT INTO t2 VALUES(1361, 81163, 'eighty-one thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(1362, 39688, 'thirty-nine thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(1363, 23191, 'twenty-three thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(1364, 30756, 'thirty thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(1365, 60955, 'sixty thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(1366, 37666, 'thirty-seven thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(1367, 32124, 'thirty-two thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(1368, 37601, 'thirty-seven thousand six hundred one');\nINSERT INTO t2 VALUES(1369, 31697, 'thirty-one thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(1370, 70414, 'seventy thousand four hundred fourteen');\nINSERT INTO t2 VALUES(1371, 83186, 'eighty-three thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(1372, 43212, 'forty-three thousand two hundred twelve');\nINSERT INTO t2 VALUES(1373, 43706, 'forty-three thousand seven hundred six');\nINSERT INTO t2 VALUES(1374, 74425, 'seventy-four thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(1375, 30805, 'thirty thousand eight hundred five');\nINSERT INTO t2 VALUES(1376, 50862, 'fifty thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(1377, 78835, 'seventy-eight thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(1378, 13974, 'thirteen thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(1379, 9088, 'nine thousand eighty-eight');\nINSERT INTO t2 VALUES(1380, 83685, 'eighty-three thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(1381, 42925, 'forty-two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(1382, 52684, 'fifty-two thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(1383, 51846, 'fifty-one thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(1384, 54278, 'fifty-four thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(1385, 15094, 'fifteen thousand ninety-four');\nINSERT INTO t2 VALUES(1386, 10119, 'ten thousand one hundred nineteen');\nINSERT INTO t2 VALUES(1387, 65471, 'sixty-five thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(1388, 94045, 'ninety-four thousand forty-five');\nINSERT INTO t2 VALUES(1389, 64522, 'sixty-four thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(1390, 16108, 'sixteen thousand one hundred eight');\nINSERT INTO t2 VALUES(1391, 98475, 'ninety-eight thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(1392, 14889, 'fourteen thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(1393, 85081, 'eighty-five thousand eighty-one');\nINSERT INTO t2 VALUES(1394, 18339, 'eighteen thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(1395, 55412, 'fifty-five thousand four hundred twelve');\nINSERT INTO t2 VALUES(1396, 67410, 'sixty-seven thousand four hundred ten');\nINSERT INTO t2 VALUES(1397, 59049, 'fifty-nine thousand forty-nine');\nINSERT INTO t2 VALUES(1398, 42667, 'forty-two thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(1399, 81480, 'eighty-one thousand four hundred eighty');\nINSERT INTO t2 VALUES(1400, 44376, 'forty-four thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(1401, 17086, 'seventeen thousand eighty-six');\nINSERT INTO t2 VALUES(1402, 42743, 'forty-two thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(1403, 82977, 'eighty-two thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(1404, 89291, 'eighty-nine thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(1405, 91647, 'ninety-one thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(1406, 42961, 'forty-two thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(1407, 93206, 'ninety-three thousand two hundred six');\nINSERT INTO t2 VALUES(1408, 2809, 'two thousand eight hundred nine');\nINSERT INTO t2 VALUES(1409, 33098, 'thirty-three thousand ninety-eight');\nINSERT INTO t2 VALUES(1410, 4394, 'four thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(1411, 27538, 'twenty-seven thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(1412, 70688, 'seventy thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(1413, 1847, 'one thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(1414, 64114, 'sixty-four thousand one hundred fourteen');\nINSERT INTO t2 VALUES(1415, 23317, 'twenty-three thousand three hundred seventeen');\nINSERT INTO t2 VALUES(1416, 74072, 'seventy-four thousand seventy-two');\nINSERT INTO t2 VALUES(1417, 43940, 'forty-three thousand nine hundred forty');\nINSERT INTO t2 VALUES(1418, 81265, 'eighty-one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(1419, 23520, 'twenty-three thousand five hundred twenty');\nINSERT INTO t2 VALUES(1420, 42393, 'forty-two thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(1421, 69297, 'sixty-nine thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(1422, 30522, 'thirty thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(1423, 19990, 'nineteen thousand nine hundred ninety');\nINSERT INTO t2 VALUES(1424, 21630, 'twenty-one thousand six hundred thirty');\nINSERT INTO t2 VALUES(1425, 27250, 'twenty-seven thousand two hundred fifty');\nINSERT INTO t2 VALUES(1426, 30634, 'thirty thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(1427, 40678, 'forty thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(1428, 7137, 'seven thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(1429, 31894, 'thirty-one thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(1430, 33397, 'thirty-three thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(1431, 82540, 'eighty-two thousand five hundred forty');\nINSERT INTO t2 VALUES(1432, 58521, 'fifty-eight thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(1433, 86494, 'eighty-six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(1434, 21138, 'twenty-one thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(1435, 4279, 'four thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(1436, 87476, 'eighty-seven thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(1437, 2346, 'two thousand three hundred forty-six');\nINSERT INTO t2 VALUES(1438, 55613, 'fifty-five thousand six hundred thirteen');\nINSERT INTO t2 VALUES(1439, 62273, 'sixty-two thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(1440, 89495, 'eighty-nine thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(1441, 36912, 'thirty-six thousand nine hundred twelve');\nINSERT INTO t2 VALUES(1442, 97370, 'ninety-seven thousand three hundred seventy');\nINSERT INTO t2 VALUES(1443, 99718, 'ninety-nine thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(1444, 22755, 'twenty-two thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(1445, 25884, 'twenty-five thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(1446, 60650, 'sixty thousand six hundred fifty');\nINSERT INTO t2 VALUES(1447, 63431, 'sixty-three thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(1448, 99037, 'ninety-nine thousand thirty-seven');\nINSERT INTO t2 VALUES(1449, 46683, 'forty-six thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(1450, 18230, 'eighteen thousand two hundred thirty');\nINSERT INTO t2 VALUES(1451, 6169, 'six thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(1452, 93756, 'ninety-three thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(1453, 82602, 'eighty-two thousand six hundred two');\nINSERT INTO t2 VALUES(1454, 91464, 'ninety-one thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(1455, 6999, 'six thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(1456, 62243, 'sixty-two thousand two hundred forty-three');\nINSERT INTO t2 VALUES(1457, 76853, 'seventy-six thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(1458, 34140, 'thirty-four thousand one hundred forty');\nINSERT INTO t2 VALUES(1459, 66544, 'sixty-six thousand five hundred forty-four');\nINSERT INTO t2 VALUES(1460, 28978, 'twenty-eight thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(1461, 60082, 'sixty thousand eighty-two');\nINSERT INTO t2 VALUES(1462, 3594, 'three thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(1463, 98376, 'ninety-eight thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(1464, 74838, 'seventy-four thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(1465, 67943, 'sixty-seven thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(1466, 46797, 'forty-six thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(1467, 65802, 'sixty-five thousand eight hundred two');\nINSERT INTO t2 VALUES(1468, 16924, 'sixteen thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(1469, 20053, 'twenty thousand fifty-three');\nINSERT INTO t2 VALUES(1470, 79931, 'seventy-nine thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(1471, 49998, 'forty-nine thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(1472, 14258, 'fourteen thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(1473, 51696, 'fifty-one thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(1474, 87223, 'eighty-seven thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(1475, 55248, 'fifty-five thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(1476, 40943, 'forty thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(1477, 70434, 'seventy thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(1478, 80312, 'eighty thousand three hundred twelve');\nINSERT INTO t2 VALUES(1479, 69166, 'sixty-nine thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(1480, 30197, 'thirty thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(1481, 25526, 'twenty-five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(1482, 20189, 'twenty thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(1483, 32036, 'thirty-two thousand thirty-six');\nINSERT INTO t2 VALUES(1484, 86152, 'eighty-six thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(1485, 35840, 'thirty-five thousand eight hundred forty');\nINSERT INTO t2 VALUES(1486, 3784, 'three thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(1487, 30652, 'thirty thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(1488, 76979, 'seventy-six thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(1489, 51493, 'fifty-one thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(1490, 78349, 'seventy-eight thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(1491, 99378, 'ninety-nine thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(1492, 9773, 'nine thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(1493, 15186, 'fifteen thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(1494, 47773, 'forty-seven thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(1495, 56151, 'fifty-six thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(1496, 15131, 'fifteen thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(1497, 84587, 'eighty-four thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(1498, 66398, 'sixty-six thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(1499, 32783, 'thirty-two thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(1500, 52117, 'fifty-two thousand one hundred seventeen');\nINSERT INTO t2 VALUES(1501, 72385, 'seventy-two thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(1502, 583, 'five hundred eighty-three');\nINSERT INTO t2 VALUES(1503, 46991, 'forty-six thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(1504, 70432, 'seventy thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(1505, 29874, 'twenty-nine thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(1506, 80205, 'eighty thousand two hundred five');\nINSERT INTO t2 VALUES(1507, 74951, 'seventy-four thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(1508, 20681, 'twenty thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(1509, 8802, 'eight thousand eight hundred two');\nINSERT INTO t2 VALUES(1510, 56901, 'fifty-six thousand nine hundred one');\nINSERT INTO t2 VALUES(1511, 78776, 'seventy-eight thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(1512, 61720, 'sixty-one thousand seven hundred twenty');\nINSERT INTO t2 VALUES(1513, 46839, 'forty-six thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(1514, 60429, 'sixty thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(1515, 6138, 'six thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(1516, 2198, 'two thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(1517, 14553, 'fourteen thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(1518, 9480, 'nine thousand four hundred eighty');\nINSERT INTO t2 VALUES(1519, 22985, 'twenty-two thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(1520, 66863, 'sixty-six thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(1521, 22034, 'twenty-two thousand thirty-four');\nINSERT INTO t2 VALUES(1522, 86911, 'eighty-six thousand nine hundred eleven');\nINSERT INTO t2 VALUES(1523, 23221, 'twenty-three thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(1524, 96124, 'ninety-six thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(1525, 13993, 'thirteen thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(1526, 97899, 'ninety-seven thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(1527, 15403, 'fifteen thousand four hundred three');\nINSERT INTO t2 VALUES(1528, 36095, 'thirty-six thousand ninety-five');\nINSERT INTO t2 VALUES(1529, 42817, 'forty-two thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(1530, 42984, 'forty-two thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(1531, 68757, 'sixty-eight thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(1532, 55896, 'fifty-five thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(1533, 53311, 'fifty-three thousand three hundred eleven');\nINSERT INTO t2 VALUES(1534, 30057, 'thirty thousand fifty-seven');\nINSERT INTO t2 VALUES(1535, 703, 'seven hundred three');\nINSERT INTO t2 VALUES(1536, 70141, 'seventy thousand one hundred forty-one');\nINSERT INTO t2 VALUES(1537, 3513, 'three thousand five hundred thirteen');\nINSERT INTO t2 VALUES(1538, 96348, 'ninety-six thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(1539, 90443, 'ninety thousand four hundred forty-three');\nINSERT INTO t2 VALUES(1540, 98539, 'ninety-eight thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(1541, 34909, 'thirty-four thousand nine hundred nine');\nINSERT INTO t2 VALUES(1542, 10888, 'ten thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(1543, 22597, 'twenty-two thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(1544, 72622, 'seventy-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(1545, 8099, 'eight thousand ninety-nine');\nINSERT INTO t2 VALUES(1546, 8945, 'eight thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(1547, 85120, 'eighty-five thousand one hundred twenty');\nINSERT INTO t2 VALUES(1548, 3750, 'three thousand seven hundred fifty');\nINSERT INTO t2 VALUES(1549, 98350, 'ninety-eight thousand three hundred fifty');\nINSERT INTO t2 VALUES(1550, 50321, 'fifty thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(1551, 20989, 'twenty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(1552, 74006, 'seventy-four thousand six');\nINSERT INTO t2 VALUES(1553, 53809, 'fifty-three thousand eight hundred nine');\nINSERT INTO t2 VALUES(1554, 95808, 'ninety-five thousand eight hundred eight');\nINSERT INTO t2 VALUES(1555, 19023, 'nineteen thousand twenty-three');\nINSERT INTO t2 VALUES(1556, 94637, 'ninety-four thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(1557, 34282, 'thirty-four thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(1558, 76004, 'seventy-six thousand four');\nINSERT INTO t2 VALUES(1559, 41024, 'forty-one thousand twenty-four');\nINSERT INTO t2 VALUES(1560, 83730, 'eighty-three thousand seven hundred thirty');\nINSERT INTO t2 VALUES(1561, 42788, 'forty-two thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(1562, 98008, 'ninety-eight thousand eight');\nINSERT INTO t2 VALUES(1563, 81276, 'eighty-one thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(1564, 46661, 'forty-six thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(1565, 41606, 'forty-one thousand six hundred six');\nINSERT INTO t2 VALUES(1566, 71937, 'seventy-one thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(1567, 64977, 'sixty-four thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(1568, 717, 'seven hundred seventeen');\nINSERT INTO t2 VALUES(1569, 79266, 'seventy-nine thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(1570, 2784, 'two thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(1571, 64149, 'sixty-four thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(1572, 46225, 'forty-six thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(1573, 54485, 'fifty-four thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(1574, 834, 'eight hundred thirty-four');\nINSERT INTO t2 VALUES(1575, 87256, 'eighty-seven thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(1576, 50253, 'fifty thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(1577, 8079, 'eight thousand seventy-nine');\nINSERT INTO t2 VALUES(1578, 13348, 'thirteen thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(1579, 96299, 'ninety-six thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(1580, 11791, 'eleven thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(1581, 52010, 'fifty-two thousand ten');\nINSERT INTO t2 VALUES(1582, 75972, 'seventy-five thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(1583, 48694, 'forty-eight thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(1584, 47825, 'forty-seven thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(1585, 16316, 'sixteen thousand three hundred sixteen');\nINSERT INTO t2 VALUES(1586, 36091, 'thirty-six thousand ninety-one');\nINSERT INTO t2 VALUES(1587, 12935, 'twelve thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(1588, 73502, 'seventy-three thousand five hundred two');\nINSERT INTO t2 VALUES(1589, 95386, 'ninety-five thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(1590, 40717, 'forty thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(1591, 64368, 'sixty-four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(1592, 13031, 'thirteen thousand thirty-one');\nINSERT INTO t2 VALUES(1593, 20833, 'twenty thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(1594, 42830, 'forty-two thousand eight hundred thirty');\nINSERT INTO t2 VALUES(1595, 48552, 'forty-eight thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(1596, 25080, 'twenty-five thousand eighty');\nINSERT INTO t2 VALUES(1597, 82047, 'eighty-two thousand forty-seven');\nINSERT INTO t2 VALUES(1598, 17153, 'seventeen thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(1599, 11760, 'eleven thousand seven hundred sixty');\nINSERT INTO t2 VALUES(1600, 77741, 'seventy-seven thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(1601, 33160, 'thirty-three thousand one hundred sixty');\nINSERT INTO t2 VALUES(1602, 59277, 'fifty-nine thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(1603, 46466, 'forty-six thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(1604, 30377, 'thirty thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(1605, 56, 'fifty-six');\nINSERT INTO t2 VALUES(1606, 7002, 'seven thousand two');\nINSERT INTO t2 VALUES(1607, 42546, 'forty-two thousand five hundred forty-six');\nINSERT INTO t2 VALUES(1608, 74812, 'seventy-four thousand eight hundred twelve');\nINSERT INTO t2 VALUES(1609, 34393, 'thirty-four thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(1610, 17906, 'seventeen thousand nine hundred six');\nINSERT INTO t2 VALUES(1611, 88345, 'eighty-eight thousand three hundred forty-five');\nINSERT INTO t2 VALUES(1612, 89151, 'eighty-nine thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(1613, 61801, 'sixty-one thousand eight hundred one');\nINSERT INTO t2 VALUES(1614, 91028, 'ninety-one thousand twenty-eight');\nINSERT INTO t2 VALUES(1615, 21377, 'twenty-one thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(1616, 28960, 'twenty-eight thousand nine hundred sixty');\nINSERT INTO t2 VALUES(1617, 19222, 'nineteen thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(1618, 57618, 'fifty-seven thousand six hundred eighteen');\nINSERT INTO t2 VALUES(1619, 76240, 'seventy-six thousand two hundred forty');\nINSERT INTO t2 VALUES(1620, 20780, 'twenty thousand seven hundred eighty');\nINSERT INTO t2 VALUES(1621, 8716, 'eight thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(1622, 46543, 'forty-six thousand five hundred forty-three');\nINSERT INTO t2 VALUES(1623, 10892, 'ten thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(1624, 17440, 'seventeen thousand four hundred forty');\nINSERT INTO t2 VALUES(1625, 56921, 'fifty-six thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(1626, 1696, 'one thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(1627, 16761, 'sixteen thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(1628, 37810, 'thirty-seven thousand eight hundred ten');\nINSERT INTO t2 VALUES(1629, 44518, 'forty-four thousand five hundred eighteen');\nINSERT INTO t2 VALUES(1630, 67520, 'sixty-seven thousand five hundred twenty');\nINSERT INTO t2 VALUES(1631, 40923, 'forty thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(1632, 18314, 'eighteen thousand three hundred fourteen');\nINSERT INTO t2 VALUES(1633, 90127, 'ninety thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(1634, 79059, 'seventy-nine thousand fifty-nine');\nINSERT INTO t2 VALUES(1635, 626, 'six hundred twenty-six');\nINSERT INTO t2 VALUES(1636, 80537, 'eighty thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(1637, 83954, 'eighty-three thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(1638, 17794, 'seventeen thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(1639, 68525, 'sixty-eight thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(1640, 61471, 'sixty-one thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(1641, 39712, 'thirty-nine thousand seven hundred twelve');\nINSERT INTO t2 VALUES(1642, 60313, 'sixty thousand three hundred thirteen');\nINSERT INTO t2 VALUES(1643, 90492, 'ninety thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(1644, 1376, 'one thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(1645, 99046, 'ninety-nine thousand forty-six');\nINSERT INTO t2 VALUES(1646, 50354, 'fifty thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(1647, 79651, 'seventy-nine thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(1648, 46094, 'forty-six thousand ninety-four');\nINSERT INTO t2 VALUES(1649, 42593, 'forty-two thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(1650, 98973, 'ninety-eight thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(1651, 53889, 'fifty-three thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(1652, 930, 'nine hundred thirty');\nINSERT INTO t2 VALUES(1653, 49895, 'forty-nine thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(1654, 82975, 'eighty-two thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(1655, 7731, 'seven thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(1656, 12858, 'twelve thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(1657, 26697, 'twenty-six thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(1658, 86891, 'eighty-six thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(1659, 19521, 'nineteen thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(1660, 95678, 'ninety-five thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(1661, 59728, 'fifty-nine thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(1662, 68585, 'sixty-eight thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(1663, 75485, 'seventy-five thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(1664, 11566, 'eleven thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(1665, 23271, 'twenty-three thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(1666, 9462, 'nine thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(1667, 8978, 'eight thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(1668, 39776, 'thirty-nine thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(1669, 19840, 'nineteen thousand eight hundred forty');\nINSERT INTO t2 VALUES(1670, 50040, 'fifty thousand forty');\nINSERT INTO t2 VALUES(1671, 81105, 'eighty-one thousand one hundred five');\nINSERT INTO t2 VALUES(1672, 81690, 'eighty-one thousand six hundred ninety');\nINSERT INTO t2 VALUES(1673, 47205, 'forty-seven thousand two hundred five');\nINSERT INTO t2 VALUES(1674, 26859, 'twenty-six thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(1675, 27273, 'twenty-seven thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(1676, 3770, 'three thousand seven hundred seventy');\nINSERT INTO t2 VALUES(1677, 57118, 'fifty-seven thousand one hundred eighteen');\nINSERT INTO t2 VALUES(1678, 5830, 'five thousand eight hundred thirty');\nINSERT INTO t2 VALUES(1679, 44010, 'forty-four thousand ten');\nINSERT INTO t2 VALUES(1680, 107, 'one hundred seven');\nINSERT INTO t2 VALUES(1681, 54866, 'fifty-four thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(1682, 45623, 'forty-five thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(1683, 12938, 'twelve thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(1684, 84644, 'eighty-four thousand six hundred forty-four');\nINSERT INTO t2 VALUES(1685, 81116, 'eighty-one thousand one hundred sixteen');\nINSERT INTO t2 VALUES(1686, 6557, 'six thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(1687, 504, 'five hundred four');\nINSERT INTO t2 VALUES(1688, 41242, 'forty-one thousand two hundred forty-two');\nINSERT INTO t2 VALUES(1689, 40898, 'forty thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(1690, 37987, 'thirty-seven thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(1691, 91906, 'ninety-one thousand nine hundred six');\nINSERT INTO t2 VALUES(1692, 74068, 'seventy-four thousand sixty-eight');\nINSERT INTO t2 VALUES(1693, 47393, 'forty-seven thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(1694, 70527, 'seventy thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(1695, 91711, 'ninety-one thousand seven hundred eleven');\nINSERT INTO t2 VALUES(1696, 85846, 'eighty-five thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(1697, 49866, 'forty-nine thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(1698, 78048, 'seventy-eight thousand forty-eight');\nINSERT INTO t2 VALUES(1699, 46897, 'forty-six thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(1700, 43123, 'forty-three thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(1701, 83377, 'eighty-three thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(1702, 84298, 'eighty-four thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(1703, 13970, 'thirteen thousand nine hundred seventy');\nINSERT INTO t2 VALUES(1704, 57265, 'fifty-seven thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(1705, 67777, 'sixty-seven thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(1706, 616, 'six hundred sixteen');\nINSERT INTO t2 VALUES(1707, 40764, 'forty thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(1708, 85767, 'eighty-five thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(1709, 41836, 'forty-one thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(1710, 79865, 'seventy-nine thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(1711, 96742, 'ninety-six thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(1712, 80228, 'eighty thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(1713, 44642, 'forty-four thousand six hundred forty-two');\nINSERT INTO t2 VALUES(1714, 70499, 'seventy thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(1715, 80722, 'eighty thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(1716, 84267, 'eighty-four thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(1717, 99256, 'ninety-nine thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(1718, 50812, 'fifty thousand eight hundred twelve');\nINSERT INTO t2 VALUES(1719, 30175, 'thirty thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(1720, 94760, 'ninety-four thousand seven hundred sixty');\nINSERT INTO t2 VALUES(1721, 43410, 'forty-three thousand four hundred ten');\nINSERT INTO t2 VALUES(1722, 67951, 'sixty-seven thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(1723, 46523, 'forty-six thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(1724, 23389, 'twenty-three thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(1725, 14110, 'fourteen thousand one hundred ten');\nINSERT INTO t2 VALUES(1726, 45909, 'forty-five thousand nine hundred nine');\nINSERT INTO t2 VALUES(1727, 65009, 'sixty-five thousand nine');\nINSERT INTO t2 VALUES(1728, 8080, 'eight thousand eighty');\nINSERT INTO t2 VALUES(1729, 86931, 'eighty-six thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(1730, 85738, 'eighty-five thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(1731, 16610, 'sixteen thousand six hundred ten');\nINSERT INTO t2 VALUES(1732, 6929, 'six thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(1733, 47186, 'forty-seven thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(1734, 91792, 'ninety-one thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(1735, 96935, 'ninety-six thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(1736, 71196, 'seventy-one thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(1737, 23429, 'twenty-three thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(1738, 72247, 'seventy-two thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(1739, 44134, 'forty-four thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(1740, 52925, 'fifty-two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(1741, 23227, 'twenty-three thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(1742, 6111, 'six thousand one hundred eleven');\nINSERT INTO t2 VALUES(1743, 51254, 'fifty-one thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(1744, 39973, 'thirty-nine thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(1745, 46941, 'forty-six thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(1746, 82749, 'eighty-two thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(1747, 27151, 'twenty-seven thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(1748, 51344, 'fifty-one thousand three hundred forty-four');\nINSERT INTO t2 VALUES(1749, 62547, 'sixty-two thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(1750, 397, 'three hundred ninety-seven');\nINSERT INTO t2 VALUES(1751, 65470, 'sixty-five thousand four hundred seventy');\nINSERT INTO t2 VALUES(1752, 66363, 'sixty-six thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(1753, 40795, 'forty thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(1754, 67431, 'sixty-seven thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(1755, 41954, 'forty-one thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(1756, 39502, 'thirty-nine thousand five hundred two');\nINSERT INTO t2 VALUES(1757, 39775, 'thirty-nine thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(1758, 90717, 'ninety thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(1759, 35053, 'thirty-five thousand fifty-three');\nINSERT INTO t2 VALUES(1760, 11842, 'eleven thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(1761, 81134, 'eighty-one thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(1762, 75647, 'seventy-five thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(1763, 48715, 'forty-eight thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(1764, 50246, 'fifty thousand two hundred forty-six');\nINSERT INTO t2 VALUES(1765, 74361, 'seventy-four thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(1766, 26463, 'twenty-six thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(1767, 85668, 'eighty-five thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(1768, 65693, 'sixty-five thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(1769, 62536, 'sixty-two thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(1770, 95905, 'ninety-five thousand nine hundred five');\nINSERT INTO t2 VALUES(1771, 73166, 'seventy-three thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(1772, 59477, 'fifty-nine thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(1773, 1476, 'one thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(1774, 66052, 'sixty-six thousand fifty-two');\nINSERT INTO t2 VALUES(1775, 62223, 'sixty-two thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(1776, 22572, 'twenty-two thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(1777, 15621, 'fifteen thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(1778, 92966, 'ninety-two thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(1779, 52093, 'fifty-two thousand ninety-three');\nINSERT INTO t2 VALUES(1780, 5553, 'five thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(1781, 10448, 'ten thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(1782, 98571, 'ninety-eight thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(1783, 74699, 'seventy-four thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(1784, 98871, 'ninety-eight thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(1785, 94583, 'ninety-four thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(1786, 43498, 'forty-three thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(1787, 23619, 'twenty-three thousand six hundred nineteen');\nINSERT INTO t2 VALUES(1788, 54118, 'fifty-four thousand one hundred eighteen');\nINSERT INTO t2 VALUES(1789, 16473, 'sixteen thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(1790, 50287, 'fifty thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(1791, 31482, 'thirty-one thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(1792, 17518, 'seventeen thousand five hundred eighteen');\nINSERT INTO t2 VALUES(1793, 67865, 'sixty-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(1794, 89160, 'eighty-nine thousand one hundred sixty');\nINSERT INTO t2 VALUES(1795, 36122, 'thirty-six thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(1796, 93188, 'ninety-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(1797, 44637, 'forty-four thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(1798, 89043, 'eighty-nine thousand forty-three');\nINSERT INTO t2 VALUES(1799, 6372, 'six thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(1800, 93720, 'ninety-three thousand seven hundred twenty');\nINSERT INTO t2 VALUES(1801, 29153, 'twenty-nine thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(1802, 50586, 'fifty thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(1803, 92688, 'ninety-two thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(1804, 56748, 'fifty-six thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(1805, 50236, 'fifty thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(1806, 57142, 'fifty-seven thousand one hundred forty-two');\nINSERT INTO t2 VALUES(1807, 37675, 'thirty-seven thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(1808, 84293, 'eighty-four thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(1809, 60980, 'sixty thousand nine hundred eighty');\nINSERT INTO t2 VALUES(1810, 60251, 'sixty thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(1811, 59472, 'fifty-nine thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(1812, 64149, 'sixty-four thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(1813, 77768, 'seventy-seven thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(1814, 98618, 'ninety-eight thousand six hundred eighteen');\nINSERT INTO t2 VALUES(1815, 56268, 'fifty-six thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(1816, 62427, 'sixty-two thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(1817, 28993, 'twenty-eight thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(1818, 61428, 'sixty-one thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(1819, 49443, 'forty-nine thousand four hundred forty-three');\nINSERT INTO t2 VALUES(1820, 58730, 'fifty-eight thousand seven hundred thirty');\nINSERT INTO t2 VALUES(1821, 40898, 'forty thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(1822, 12437, 'twelve thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(1823, 72890, 'seventy-two thousand eight hundred ninety');\nINSERT INTO t2 VALUES(1824, 8711, 'eight thousand seven hundred eleven');\nINSERT INTO t2 VALUES(1825, 59677, 'fifty-nine thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(1826, 80103, 'eighty thousand one hundred three');\nINSERT INTO t2 VALUES(1827, 40508, 'forty thousand five hundred eight');\nINSERT INTO t2 VALUES(1828, 97476, 'ninety-seven thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(1829, 43339, 'forty-three thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(1830, 14865, 'fourteen thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(1831, 81064, 'eighty-one thousand sixty-four');\nINSERT INTO t2 VALUES(1832, 48666, 'forty-eight thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(1833, 81245, 'eighty-one thousand two hundred forty-five');\nINSERT INTO t2 VALUES(1834, 74794, 'seventy-four thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(1835, 31588, 'thirty-one thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(1836, 22954, 'twenty-two thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(1837, 39485, 'thirty-nine thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(1838, 51863, 'fifty-one thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(1839, 6271, 'six thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(1840, 58099, 'fifty-eight thousand ninety-nine');\nINSERT INTO t2 VALUES(1841, 47285, 'forty-seven thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(1842, 69965, 'sixty-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(1843, 69698, 'sixty-nine thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(1844, 94547, 'ninety-four thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(1845, 4271, 'four thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(1846, 68855, 'sixty-eight thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(1847, 66926, 'sixty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(1848, 36352, 'thirty-six thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(1849, 81428, 'eighty-one thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(1850, 96278, 'ninety-six thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(1851, 77034, 'seventy-seven thousand thirty-four');\nINSERT INTO t2 VALUES(1852, 63118, 'sixty-three thousand one hundred eighteen');\nINSERT INTO t2 VALUES(1853, 79693, 'seventy-nine thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(1854, 95874, 'ninety-five thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(1855, 97169, 'ninety-seven thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(1856, 81843, 'eighty-one thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(1857, 33201, 'thirty-three thousand two hundred one');\nINSERT INTO t2 VALUES(1858, 88509, 'eighty-eight thousand five hundred nine');\nINSERT INTO t2 VALUES(1859, 77410, 'seventy-seven thousand four hundred ten');\nINSERT INTO t2 VALUES(1860, 52629, 'fifty-two thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(1861, 57234, 'fifty-seven thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(1862, 11373, 'eleven thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(1863, 83775, 'eighty-three thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(1864, 22455, 'twenty-two thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(1865, 99903, 'ninety-nine thousand nine hundred three');\nINSERT INTO t2 VALUES(1866, 67182, 'sixty-seven thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(1867, 79194, 'seventy-nine thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(1868, 38445, 'thirty-eight thousand four hundred forty-five');\nINSERT INTO t2 VALUES(1869, 3916, 'three thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(1870, 77123, 'seventy-seven thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(1871, 39560, 'thirty-nine thousand five hundred sixty');\nINSERT INTO t2 VALUES(1872, 72667, 'seventy-two thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(1873, 69460, 'sixty-nine thousand four hundred sixty');\nINSERT INTO t2 VALUES(1874, 86336, 'eighty-six thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(1875, 54783, 'fifty-four thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(1876, 34851, 'thirty-four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(1877, 12818, 'twelve thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(1878, 42534, 'forty-two thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(1879, 90531, 'ninety thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(1880, 83545, 'eighty-three thousand five hundred forty-five');\nINSERT INTO t2 VALUES(1881, 41895, 'forty-one thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(1882, 16357, 'sixteen thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(1883, 48074, 'forty-eight thousand seventy-four');\nINSERT INTO t2 VALUES(1884, 65554, 'sixty-five thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(1885, 19168, 'nineteen thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(1886, 20457, 'twenty thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(1887, 67074, 'sixty-seven thousand seventy-four');\nINSERT INTO t2 VALUES(1888, 60826, 'sixty thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(1889, 89749, 'eighty-nine thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(1890, 87651, 'eighty-seven thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(1891, 53525, 'fifty-three thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(1892, 63667, 'sixty-three thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(1893, 34728, 'thirty-four thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(1894, 30650, 'thirty thousand six hundred fifty');\nINSERT INTO t2 VALUES(1895, 38017, 'thirty-eight thousand seventeen');\nINSERT INTO t2 VALUES(1896, 15204, 'fifteen thousand two hundred four');\nINSERT INTO t2 VALUES(1897, 89639, 'eighty-nine thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(1898, 57891, 'fifty-seven thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(1899, 47672, 'forty-seven thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(1900, 35597, 'thirty-five thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(1901, 75875, 'seventy-five thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(1902, 25536, 'twenty-five thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(1903, 39855, 'thirty-nine thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(1904, 36141, 'thirty-six thousand one hundred forty-one');\nINSERT INTO t2 VALUES(1905, 72263, 'seventy-two thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(1906, 61262, 'sixty-one thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(1907, 90989, 'ninety thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(1908, 7384, 'seven thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(1909, 97486, 'ninety-seven thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(1910, 63833, 'sixty-three thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(1911, 84418, 'eighty-four thousand four hundred eighteen');\nINSERT INTO t2 VALUES(1912, 1412, 'one thousand four hundred twelve');\nINSERT INTO t2 VALUES(1913, 70670, 'seventy thousand six hundred seventy');\nINSERT INTO t2 VALUES(1914, 69714, 'sixty-nine thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(1915, 9088, 'nine thousand eighty-eight');\nINSERT INTO t2 VALUES(1916, 78087, 'seventy-eight thousand eighty-seven');\nINSERT INTO t2 VALUES(1917, 63997, 'sixty-three thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(1918, 46926, 'forty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(1919, 20635, 'twenty thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(1920, 83870, 'eighty-three thousand eight hundred seventy');\nINSERT INTO t2 VALUES(1921, 64450, 'sixty-four thousand four hundred fifty');\nINSERT INTO t2 VALUES(1922, 52555, 'fifty-two thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(1923, 82175, 'eighty-two thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(1924, 55189, 'fifty-five thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(1925, 76696, 'seventy-six thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(1926, 32209, 'thirty-two thousand two hundred nine');\nINSERT INTO t2 VALUES(1927, 72411, 'seventy-two thousand four hundred eleven');\nINSERT INTO t2 VALUES(1928, 70851, 'seventy thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(1929, 60118, 'sixty thousand one hundred eighteen');\nINSERT INTO t2 VALUES(1930, 2840, 'two thousand eight hundred forty');\nINSERT INTO t2 VALUES(1931, 24262, 'twenty-four thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(1932, 79709, 'seventy-nine thousand seven hundred nine');\nINSERT INTO t2 VALUES(1933, 80918, 'eighty thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(1934, 74325, 'seventy-four thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(1935, 80878, 'eighty thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(1936, 65269, 'sixty-five thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(1937, 35093, 'thirty-five thousand ninety-three');\nINSERT INTO t2 VALUES(1938, 75048, 'seventy-five thousand forty-eight');\nINSERT INTO t2 VALUES(1939, 98306, 'ninety-eight thousand three hundred six');\nINSERT INTO t2 VALUES(1940, 70784, 'seventy thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(1941, 63270, 'sixty-three thousand two hundred seventy');\nINSERT INTO t2 VALUES(1942, 30152, 'thirty thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(1943, 19394, 'nineteen thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(1944, 55571, 'fifty-five thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(1945, 73532, 'seventy-three thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(1946, 26695, 'twenty-six thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(1947, 51444, 'fifty-one thousand four hundred forty-four');\nINSERT INTO t2 VALUES(1948, 90130, 'ninety thousand one hundred thirty');\nINSERT INTO t2 VALUES(1949, 26980, 'twenty-six thousand nine hundred eighty');\nINSERT INTO t2 VALUES(1950, 80759, 'eighty thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(1951, 35243, 'thirty-five thousand two hundred forty-three');\nINSERT INTO t2 VALUES(1952, 40496, 'forty thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(1953, 13009, 'thirteen thousand nine');\nINSERT INTO t2 VALUES(1954, 84010, 'eighty-four thousand ten');\nINSERT INTO t2 VALUES(1955, 42338, 'forty-two thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(1956, 74408, 'seventy-four thousand four hundred eight');\nINSERT INTO t2 VALUES(1957, 7379, 'seven thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(1958, 53430, 'fifty-three thousand four hundred thirty');\nINSERT INTO t2 VALUES(1959, 12777, 'twelve thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(1960, 46692, 'forty-six thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(1961, 2252, 'two thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(1962, 53478, 'fifty-three thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(1963, 36601, 'thirty-six thousand six hundred one');\nINSERT INTO t2 VALUES(1964, 78479, 'seventy-eight thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(1965, 95051, 'ninety-five thousand fifty-one');\nINSERT INTO t2 VALUES(1966, 50334, 'fifty thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(1967, 11478, 'eleven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(1968, 6230, 'six thousand two hundred thirty');\nINSERT INTO t2 VALUES(1969, 9474, 'nine thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(1970, 22551, 'twenty-two thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(1971, 18731, 'eighteen thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(1972, 87356, 'eighty-seven thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(1973, 31204, 'thirty-one thousand two hundred four');\nINSERT INTO t2 VALUES(1974, 70236, 'seventy thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(1975, 90756, 'ninety thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(1976, 31003, 'thirty-one thousand three');\nINSERT INTO t2 VALUES(1977, 72791, 'seventy-two thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(1978, 71381, 'seventy-one thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(1979, 95904, 'ninety-five thousand nine hundred four');\nINSERT INTO t2 VALUES(1980, 8694, 'eight thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(1981, 6275, 'six thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(1982, 59694, 'fifty-nine thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(1983, 47519, 'forty-seven thousand five hundred nineteen');\nINSERT INTO t2 VALUES(1984, 94880, 'ninety-four thousand eight hundred eighty');\nINSERT INTO t2 VALUES(1985, 40892, 'forty thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(1986, 71479, 'seventy-one thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(1987, 64232, 'sixty-four thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(1988, 32742, 'thirty-two thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(1989, 90228, 'ninety thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(1990, 70201, 'seventy thousand two hundred one');\nINSERT INTO t2 VALUES(1991, 6076, 'six thousand seventy-six');\nINSERT INTO t2 VALUES(1992, 73314, 'seventy-three thousand three hundred fourteen');\nINSERT INTO t2 VALUES(1993, 98832, 'ninety-eight thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(1994, 71299, 'seventy-one thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(1995, 53494, 'fifty-three thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(1996, 90494, 'ninety thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(1997, 20872, 'twenty thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(1998, 57121, 'fifty-seven thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(1999, 69191, 'sixty-nine thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(2000, 86770, 'eighty-six thousand seven hundred seventy');\nINSERT INTO t2 VALUES(2001, 3752, 'three thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(2002, 96753, 'ninety-six thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(2003, 89259, 'eighty-nine thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(2004, 87880, 'eighty-seven thousand eight hundred eighty');\nINSERT INTO t2 VALUES(2005, 3264, 'three thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(2006, 12245, 'twelve thousand two hundred forty-five');\nINSERT INTO t2 VALUES(2007, 20809, 'twenty thousand eight hundred nine');\nINSERT INTO t2 VALUES(2008, 90643, 'ninety thousand six hundred forty-three');\nINSERT INTO t2 VALUES(2009, 27602, 'twenty-seven thousand six hundred two');\nINSERT INTO t2 VALUES(2010, 44882, 'forty-four thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(2011, 85915, 'eighty-five thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(2012, 4239, 'four thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(2013, 23915, 'twenty-three thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(2014, 50728, 'fifty thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(2015, 56336, 'fifty-six thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(2016, 35419, 'thirty-five thousand four hundred nineteen');\nINSERT INTO t2 VALUES(2017, 31335, 'thirty-one thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(2018, 44501, 'forty-four thousand five hundred one');\nINSERT INTO t2 VALUES(2019, 85963, 'eighty-five thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(2020, 32132, 'thirty-two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(2021, 58756, 'fifty-eight thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(2022, 72895, 'seventy-two thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(2023, 61577, 'sixty-one thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(2024, 60470, 'sixty thousand four hundred seventy');\nINSERT INTO t2 VALUES(2025, 13247, 'thirteen thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(2026, 80738, 'eighty thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(2027, 47364, 'forty-seven thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(2028, 71398, 'seventy-one thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(2029, 11309, 'eleven thousand three hundred nine');\nINSERT INTO t2 VALUES(2030, 22150, 'twenty-two thousand one hundred fifty');\nINSERT INTO t2 VALUES(2031, 32179, 'thirty-two thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(2032, 56661, 'fifty-six thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(2033, 64991, 'sixty-four thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(2034, 61813, 'sixty-one thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(2035, 58145, 'fifty-eight thousand one hundred forty-five');\nINSERT INTO t2 VALUES(2036, 24919, 'twenty-four thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(2037, 88079, 'eighty-eight thousand seventy-nine');\nINSERT INTO t2 VALUES(2038, 87582, 'eighty-seven thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(2039, 68372, 'sixty-eight thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(2040, 43188, 'forty-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(2041, 9546, 'nine thousand five hundred forty-six');\nINSERT INTO t2 VALUES(2042, 91577, 'ninety-one thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(2043, 80437, 'eighty thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(2044, 44514, 'forty-four thousand five hundred fourteen');\nINSERT INTO t2 VALUES(2045, 64110, 'sixty-four thousand one hundred ten');\nINSERT INTO t2 VALUES(2046, 66779, 'sixty-six thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(2047, 29449, 'twenty-nine thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(2048, 27665, 'twenty-seven thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(2049, 43531, 'forty-three thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(2050, 34298, 'thirty-four thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(2051, 18662, 'eighteen thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(2052, 7015, 'seven thousand fifteen');\nINSERT INTO t2 VALUES(2053, 20067, 'twenty thousand sixty-seven');\nINSERT INTO t2 VALUES(2054, 55314, 'fifty-five thousand three hundred fourteen');\nINSERT INTO t2 VALUES(2055, 39696, 'thirty-nine thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(2056, 63429, 'sixty-three thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(2057, 38900, 'thirty-eight thousand nine hundred');\nINSERT INTO t2 VALUES(2058, 30312, 'thirty thousand three hundred twelve');\nINSERT INTO t2 VALUES(2059, 39502, 'thirty-nine thousand five hundred two');\nINSERT INTO t2 VALUES(2060, 60364, 'sixty thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(2061, 51299, 'fifty-one thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(2062, 37865, 'thirty-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(2063, 7407, 'seven thousand four hundred seven');\nINSERT INTO t2 VALUES(2064, 9582, 'nine thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(2065, 58152, 'fifty-eight thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(2066, 79602, 'seventy-nine thousand six hundred two');\nINSERT INTO t2 VALUES(2067, 90566, 'ninety thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(2068, 41424, 'forty-one thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(2069, 67171, 'sixty-seven thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(2070, 52445, 'fifty-two thousand four hundred forty-five');\nINSERT INTO t2 VALUES(2071, 81457, 'eighty-one thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(2072, 85944, 'eighty-five thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(2073, 99560, 'ninety-nine thousand five hundred sixty');\nINSERT INTO t2 VALUES(2074, 1276, 'one thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(2075, 72906, 'seventy-two thousand nine hundred six');\nINSERT INTO t2 VALUES(2076, 24124, 'twenty-four thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(2077, 14401, 'fourteen thousand four hundred one');\nINSERT INTO t2 VALUES(2078, 18253, 'eighteen thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(2079, 35572, 'thirty-five thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(2080, 71690, 'seventy-one thousand six hundred ninety');\nINSERT INTO t2 VALUES(2081, 39705, 'thirty-nine thousand seven hundred five');\nINSERT INTO t2 VALUES(2082, 82133, 'eighty-two thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(2083, 86963, 'eighty-six thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(2084, 42539, 'forty-two thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(2085, 85308, 'eighty-five thousand three hundred eight');\nINSERT INTO t2 VALUES(2086, 6880, 'six thousand eight hundred eighty');\nINSERT INTO t2 VALUES(2087, 71638, 'seventy-one thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(2088, 49157, 'forty-nine thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(2089, 60099, 'sixty thousand ninety-nine');\nINSERT INTO t2 VALUES(2090, 35743, 'thirty-five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(2091, 45104, 'forty-five thousand one hundred four');\nINSERT INTO t2 VALUES(2092, 77407, 'seventy-seven thousand four hundred seven');\nINSERT INTO t2 VALUES(2093, 1195, 'one thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(2094, 26211, 'twenty-six thousand two hundred eleven');\nINSERT INTO t2 VALUES(2095, 54913, 'fifty-four thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(2096, 3, 'three');\nINSERT INTO t2 VALUES(2097, 18998, 'eighteen thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(2098, 20280, 'twenty thousand two hundred eighty');\nINSERT INTO t2 VALUES(2099, 57239, 'fifty-seven thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(2100, 90306, 'ninety thousand three hundred six');\nINSERT INTO t2 VALUES(2101, 10035, 'ten thousand thirty-five');\nINSERT INTO t2 VALUES(2102, 69872, 'sixty-nine thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(2103, 88639, 'eighty-eight thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(2104, 58066, 'fifty-eight thousand sixty-six');\nINSERT INTO t2 VALUES(2105, 93758, 'ninety-three thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(2106, 87206, 'eighty-seven thousand two hundred six');\nINSERT INTO t2 VALUES(2107, 24001, 'twenty-four thousand one');\nINSERT INTO t2 VALUES(2108, 69318, 'sixty-nine thousand three hundred eighteen');\nINSERT INTO t2 VALUES(2109, 67822, 'sixty-seven thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(2110, 89055, 'eighty-nine thousand fifty-five');\nINSERT INTO t2 VALUES(2111, 2312, 'two thousand three hundred twelve');\nINSERT INTO t2 VALUES(2112, 67472, 'sixty-seven thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(2113, 2197, 'two thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(2114, 51272, 'fifty-one thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(2115, 10536, 'ten thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(2116, 36248, 'thirty-six thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(2117, 74010, 'seventy-four thousand ten');\nINSERT INTO t2 VALUES(2118, 67864, 'sixty-seven thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(2119, 83737, 'eighty-three thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(2120, 47560, 'forty-seven thousand five hundred sixty');\nINSERT INTO t2 VALUES(2121, 93387, 'ninety-three thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(2122, 70188, 'seventy thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(2123, 91976, 'ninety-one thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(2124, 69804, 'sixty-nine thousand eight hundred four');\nINSERT INTO t2 VALUES(2125, 6141, 'six thousand one hundred forty-one');\nINSERT INTO t2 VALUES(2126, 41284, 'forty-one thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(2127, 89238, 'eighty-nine thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(2128, 5069, 'five thousand sixty-nine');\nINSERT INTO t2 VALUES(2129, 40242, 'forty thousand two hundred forty-two');\nINSERT INTO t2 VALUES(2130, 82623, 'eighty-two thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(2131, 21387, 'twenty-one thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(2132, 13746, 'thirteen thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(2133, 61939, 'sixty-one thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(2134, 64398, 'sixty-four thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(2135, 21549, 'twenty-one thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(2136, 97911, 'ninety-seven thousand nine hundred eleven');\nINSERT INTO t2 VALUES(2137, 35818, 'thirty-five thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(2138, 51233, 'fifty-one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(2139, 33356, 'thirty-three thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(2140, 38959, 'thirty-eight thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(2141, 58251, 'fifty-eight thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(2142, 9259, 'nine thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(2143, 53169, 'fifty-three thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(2144, 49251, 'forty-nine thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(2145, 43461, 'forty-three thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(2146, 34150, 'thirty-four thousand one hundred fifty');\nINSERT INTO t2 VALUES(2147, 55577, 'fifty-five thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(2148, 63376, 'sixty-three thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(2149, 25029, 'twenty-five thousand twenty-nine');\nINSERT INTO t2 VALUES(2150, 28149, 'twenty-eight thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(2151, 28311, 'twenty-eight thousand three hundred eleven');\nINSERT INTO t2 VALUES(2152, 5249, 'five thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(2153, 85526, 'eighty-five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(2154, 43414, 'forty-three thousand four hundred fourteen');\nINSERT INTO t2 VALUES(2155, 47719, 'forty-seven thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(2156, 39694, 'thirty-nine thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(2157, 32096, 'thirty-two thousand ninety-six');\nINSERT INTO t2 VALUES(2158, 27455, 'twenty-seven thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(2159, 61155, 'sixty-one thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(2160, 9475, 'nine thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(2161, 43672, 'forty-three thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(2162, 56556, 'fifty-six thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(2163, 36973, 'thirty-six thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(2164, 85094, 'eighty-five thousand ninety-four');\nINSERT INTO t2 VALUES(2165, 68290, 'sixty-eight thousand two hundred ninety');\nINSERT INTO t2 VALUES(2166, 27193, 'twenty-seven thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(2167, 31592, 'thirty-one thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(2168, 51130, 'fifty-one thousand one hundred thirty');\nINSERT INTO t2 VALUES(2169, 74563, 'seventy-four thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(2170, 15013, 'fifteen thousand thirteen');\nINSERT INTO t2 VALUES(2171, 80523, 'eighty thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(2172, 22, 'twenty-two');\nINSERT INTO t2 VALUES(2173, 95473, 'ninety-five thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(2174, 93807, 'ninety-three thousand eight hundred seven');\nINSERT INTO t2 VALUES(2175, 42106, 'forty-two thousand one hundred six');\nINSERT INTO t2 VALUES(2176, 78199, 'seventy-eight thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(2177, 5356, 'five thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(2178, 19195, 'nineteen thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(2179, 80433, 'eighty thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(2180, 62456, 'sixty-two thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(2181, 85223, 'eighty-five thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(2182, 72599, 'seventy-two thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(2183, 97420, 'ninety-seven thousand four hundred twenty');\nINSERT INTO t2 VALUES(2184, 27856, 'twenty-seven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(2185, 95101, 'ninety-five thousand one hundred one');\nINSERT INTO t2 VALUES(2186, 8371, 'eight thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(2187, 14046, 'fourteen thousand forty-six');\nINSERT INTO t2 VALUES(2188, 6270, 'six thousand two hundred seventy');\nINSERT INTO t2 VALUES(2189, 46201, 'forty-six thousand two hundred one');\nINSERT INTO t2 VALUES(2190, 78681, 'seventy-eight thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(2191, 32539, 'thirty-two thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(2192, 95630, 'ninety-five thousand six hundred thirty');\nINSERT INTO t2 VALUES(2193, 99263, 'ninety-nine thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(2194, 80471, 'eighty thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(2195, 36378, 'thirty-six thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(2196, 36099, 'thirty-six thousand ninety-nine');\nINSERT INTO t2 VALUES(2197, 64056, 'sixty-four thousand fifty-six');\nINSERT INTO t2 VALUES(2198, 7431, 'seven thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(2199, 48623, 'forty-eight thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(2200, 29058, 'twenty-nine thousand fifty-eight');\nINSERT INTO t2 VALUES(2201, 24829, 'twenty-four thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(2202, 65681, 'sixty-five thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(2203, 33971, 'thirty-three thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(2204, 57254, 'fifty-seven thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(2205, 96450, 'ninety-six thousand four hundred fifty');\nINSERT INTO t2 VALUES(2206, 71274, 'seventy-one thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(2207, 61255, 'sixty-one thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(2208, 86567, 'eighty-six thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(2209, 26341, 'twenty-six thousand three hundred forty-one');\nINSERT INTO t2 VALUES(2210, 35651, 'thirty-five thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(2211, 29930, 'twenty-nine thousand nine hundred thirty');\nINSERT INTO t2 VALUES(2212, 8986, 'eight thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(2213, 70650, 'seventy thousand six hundred fifty');\nINSERT INTO t2 VALUES(2214, 25365, 'twenty-five thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(2215, 50253, 'fifty thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(2216, 22647, 'twenty-two thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(2217, 5939, 'five thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(2218, 21467, 'twenty-one thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(2219, 60173, 'sixty thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(2220, 65345, 'sixty-five thousand three hundred forty-five');\nINSERT INTO t2 VALUES(2221, 17820, 'seventeen thousand eight hundred twenty');\nINSERT INTO t2 VALUES(2222, 65933, 'sixty-five thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(2223, 10228, 'ten thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(2224, 32722, 'thirty-two thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(2225, 19795, 'nineteen thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(2226, 41464, 'forty-one thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(2227, 65388, 'sixty-five thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(2228, 19735, 'nineteen thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(2229, 45011, 'forty-five thousand eleven');\nINSERT INTO t2 VALUES(2230, 37315, 'thirty-seven thousand three hundred fifteen');\nINSERT INTO t2 VALUES(2231, 53420, 'fifty-three thousand four hundred twenty');\nINSERT INTO t2 VALUES(2232, 13137, 'thirteen thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(2233, 89350, 'eighty-nine thousand three hundred fifty');\nINSERT INTO t2 VALUES(2234, 11233, 'eleven thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(2235, 64599, 'sixty-four thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(2236, 22046, 'twenty-two thousand forty-six');\nINSERT INTO t2 VALUES(2237, 98274, 'ninety-eight thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(2238, 72470, 'seventy-two thousand four hundred seventy');\nINSERT INTO t2 VALUES(2239, 587, 'five hundred eighty-seven');\nINSERT INTO t2 VALUES(2240, 75875, 'seventy-five thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(2241, 29684, 'twenty-nine thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(2242, 89957, 'eighty-nine thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(2243, 37141, 'thirty-seven thousand one hundred forty-one');\nINSERT INTO t2 VALUES(2244, 42203, 'forty-two thousand two hundred three');\nINSERT INTO t2 VALUES(2245, 7109, 'seven thousand one hundred nine');\nINSERT INTO t2 VALUES(2246, 3368, 'three thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(2247, 12747, 'twelve thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(2248, 3344, 'three thousand three hundred forty-four');\nINSERT INTO t2 VALUES(2249, 70493, 'seventy thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(2250, 74214, 'seventy-four thousand two hundred fourteen');\nINSERT INTO t2 VALUES(2251, 36198, 'thirty-six thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(2252, 86536, 'eighty-six thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(2253, 15696, 'fifteen thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(2254, 35018, 'thirty-five thousand eighteen');\nINSERT INTO t2 VALUES(2255, 67545, 'sixty-seven thousand five hundred forty-five');\nINSERT INTO t2 VALUES(2256, 31493, 'thirty-one thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(2257, 98082, 'ninety-eight thousand eighty-two');\nINSERT INTO t2 VALUES(2258, 19480, 'nineteen thousand four hundred eighty');\nINSERT INTO t2 VALUES(2259, 64459, 'sixty-four thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(2260, 56855, 'fifty-six thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(2261, 90207, 'ninety thousand two hundred seven');\nINSERT INTO t2 VALUES(2262, 33924, 'thirty-three thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(2263, 97787, 'ninety-seven thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(2264, 9831, 'nine thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(2265, 96341, 'ninety-six thousand three hundred forty-one');\nINSERT INTO t2 VALUES(2266, 94285, 'ninety-four thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(2267, 38535, 'thirty-eight thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(2268, 18406, 'eighteen thousand four hundred six');\nINSERT INTO t2 VALUES(2269, 41884, 'forty-one thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(2270, 27215, 'twenty-seven thousand two hundred fifteen');\nINSERT INTO t2 VALUES(2271, 78374, 'seventy-eight thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(2272, 70693, 'seventy thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(2273, 96026, 'ninety-six thousand twenty-six');\nINSERT INTO t2 VALUES(2274, 87994, 'eighty-seven thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(2275, 45819, 'forty-five thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(2276, 52336, 'fifty-two thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(2277, 37564, 'thirty-seven thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(2278, 90518, 'ninety thousand five hundred eighteen');\nINSERT INTO t2 VALUES(2279, 6198, 'six thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(2280, 64602, 'sixty-four thousand six hundred two');\nINSERT INTO t2 VALUES(2281, 74861, 'seventy-four thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(2282, 99850, 'ninety-nine thousand eight hundred fifty');\nINSERT INTO t2 VALUES(2283, 93344, 'ninety-three thousand three hundred forty-four');\nINSERT INTO t2 VALUES(2284, 83943, 'eighty-three thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(2285, 89998, 'eighty-nine thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(2286, 27925, 'twenty-seven thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(2287, 78320, 'seventy-eight thousand three hundred twenty');\nINSERT INTO t2 VALUES(2288, 6201, 'six thousand two hundred one');\nINSERT INTO t2 VALUES(2289, 41579, 'forty-one thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(2290, 70654, 'seventy thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(2291, 44328, 'forty-four thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(2292, 70637, 'seventy thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(2293, 51584, 'fifty-one thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(2294, 40019, 'forty thousand nineteen');\nINSERT INTO t2 VALUES(2295, 4733, 'four thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(2296, 63893, 'sixty-three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(2297, 21551, 'twenty-one thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(2298, 72776, 'seventy-two thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(2299, 73771, 'seventy-three thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(2300, 26461, 'twenty-six thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(2301, 51916, 'fifty-one thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(2302, 7470, 'seven thousand four hundred seventy');\nINSERT INTO t2 VALUES(2303, 26176, 'twenty-six thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(2304, 28194, 'twenty-eight thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(2305, 71326, 'seventy-one thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(2306, 19033, 'nineteen thousand thirty-three');\nINSERT INTO t2 VALUES(2307, 10179, 'ten thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(2308, 51575, 'fifty-one thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(2309, 37690, 'thirty-seven thousand six hundred ninety');\nINSERT INTO t2 VALUES(2310, 15021, 'fifteen thousand twenty-one');\nINSERT INTO t2 VALUES(2311, 47954, 'forty-seven thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(2312, 99373, 'ninety-nine thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(2313, 60636, 'sixty thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(2314, 40008, 'forty thousand eight');\nINSERT INTO t2 VALUES(2315, 23115, 'twenty-three thousand one hundred fifteen');\nINSERT INTO t2 VALUES(2316, 83784, 'eighty-three thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(2317, 97564, 'ninety-seven thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(2318, 23192, 'twenty-three thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(2319, 35700, 'thirty-five thousand seven hundred');\nINSERT INTO t2 VALUES(2320, 23968, 'twenty-three thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(2321, 30846, 'thirty thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(2322, 97968, 'ninety-seven thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(2323, 15842, 'fifteen thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(2324, 13572, 'thirteen thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(2325, 17630, 'seventeen thousand six hundred thirty');\nINSERT INTO t2 VALUES(2326, 74055, 'seventy-four thousand fifty-five');\nINSERT INTO t2 VALUES(2327, 25273, 'twenty-five thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(2328, 39041, 'thirty-nine thousand forty-one');\nINSERT INTO t2 VALUES(2329, 11972, 'eleven thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(2330, 33519, 'thirty-three thousand five hundred nineteen');\nINSERT INTO t2 VALUES(2331, 35065, 'thirty-five thousand sixty-five');\nINSERT INTO t2 VALUES(2332, 65148, 'sixty-five thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(2333, 60959, 'sixty thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(2334, 96394, 'ninety-six thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(2335, 64307, 'sixty-four thousand three hundred seven');\nINSERT INTO t2 VALUES(2336, 45596, 'forty-five thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(2337, 94741, 'ninety-four thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(2338, 315, 'three hundred fifteen');\nINSERT INTO t2 VALUES(2339, 92997, 'ninety-two thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(2340, 61307, 'sixty-one thousand three hundred seven');\nINSERT INTO t2 VALUES(2341, 25247, 'twenty-five thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(2342, 43658, 'forty-three thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(2343, 76134, 'seventy-six thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(2344, 8727, 'eight thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(2345, 82124, 'eighty-two thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(2346, 94208, 'ninety-four thousand two hundred eight');\nINSERT INTO t2 VALUES(2347, 83546, 'eighty-three thousand five hundred forty-six');\nINSERT INTO t2 VALUES(2348, 80575, 'eighty thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(2349, 96566, 'ninety-six thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(2350, 52045, 'fifty-two thousand forty-five');\nINSERT INTO t2 VALUES(2351, 37304, 'thirty-seven thousand three hundred four');\nINSERT INTO t2 VALUES(2352, 53861, 'fifty-three thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(2353, 40200, 'forty thousand two hundred');\nINSERT INTO t2 VALUES(2354, 67604, 'sixty-seven thousand six hundred four');\nINSERT INTO t2 VALUES(2355, 72285, 'seventy-two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(2356, 60117, 'sixty thousand one hundred seventeen');\nINSERT INTO t2 VALUES(2357, 28125, 'twenty-eight thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(2358, 97088, 'ninety-seven thousand eighty-eight');\nINSERT INTO t2 VALUES(2359, 73809, 'seventy-three thousand eight hundred nine');\nINSERT INTO t2 VALUES(2360, 89593, 'eighty-nine thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(2361, 80981, 'eighty thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(2362, 38214, 'thirty-eight thousand two hundred fourteen');\nINSERT INTO t2 VALUES(2363, 63465, 'sixty-three thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(2364, 46151, 'forty-six thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(2365, 66353, 'sixty-six thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(2366, 27544, 'twenty-seven thousand five hundred forty-four');\nINSERT INTO t2 VALUES(2367, 13517, 'thirteen thousand five hundred seventeen');\nINSERT INTO t2 VALUES(2368, 43298, 'forty-three thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(2369, 3013, 'three thousand thirteen');\nINSERT INTO t2 VALUES(2370, 43673, 'forty-three thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(2371, 89406, 'eighty-nine thousand four hundred six');\nINSERT INTO t2 VALUES(2372, 16649, 'sixteen thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(2373, 58159, 'fifty-eight thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(2374, 72424, 'seventy-two thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(2375, 28780, 'twenty-eight thousand seven hundred eighty');\nINSERT INTO t2 VALUES(2376, 15716, 'fifteen thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(2377, 91549, 'ninety-one thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(2378, 83986, 'eighty-three thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(2379, 29747, 'twenty-nine thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(2380, 82477, 'eighty-two thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(2381, 80074, 'eighty thousand seventy-four');\nINSERT INTO t2 VALUES(2382, 96058, 'ninety-six thousand fifty-eight');\nINSERT INTO t2 VALUES(2383, 89571, 'eighty-nine thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(2384, 26561, 'twenty-six thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(2385, 32468, 'thirty-two thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(2386, 16669, 'sixteen thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(2387, 41302, 'forty-one thousand three hundred two');\nINSERT INTO t2 VALUES(2388, 75807, 'seventy-five thousand eight hundred seven');\nINSERT INTO t2 VALUES(2389, 28804, 'twenty-eight thousand eight hundred four');\nINSERT INTO t2 VALUES(2390, 36879, 'thirty-six thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(2391, 96669, 'ninety-six thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(2392, 90342, 'ninety thousand three hundred forty-two');\nINSERT INTO t2 VALUES(2393, 7542, 'seven thousand five hundred forty-two');\nINSERT INTO t2 VALUES(2394, 47970, 'forty-seven thousand nine hundred seventy');\nINSERT INTO t2 VALUES(2395, 92076, 'ninety-two thousand seventy-six');\nINSERT INTO t2 VALUES(2396, 39852, 'thirty-nine thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(2397, 38803, 'thirty-eight thousand eight hundred three');\nINSERT INTO t2 VALUES(2398, 19442, 'nineteen thousand four hundred forty-two');\nINSERT INTO t2 VALUES(2399, 78578, 'seventy-eight thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(2400, 74903, 'seventy-four thousand nine hundred three');\nINSERT INTO t2 VALUES(2401, 87725, 'eighty-seven thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(2402, 87059, 'eighty-seven thousand fifty-nine');\nINSERT INTO t2 VALUES(2403, 15772, 'fifteen thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(2404, 17631, 'seventeen thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(2405, 15798, 'fifteen thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(2406, 43104, 'forty-three thousand one hundred four');\nINSERT INTO t2 VALUES(2407, 1195, 'one thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(2408, 43211, 'forty-three thousand two hundred eleven');\nINSERT INTO t2 VALUES(2409, 73078, 'seventy-three thousand seventy-eight');\nINSERT INTO t2 VALUES(2410, 23976, 'twenty-three thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(2411, 63319, 'sixty-three thousand three hundred nineteen');\nINSERT INTO t2 VALUES(2412, 89991, 'eighty-nine thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(2413, 71907, 'seventy-one thousand nine hundred seven');\nINSERT INTO t2 VALUES(2414, 45419, 'forty-five thousand four hundred nineteen');\nINSERT INTO t2 VALUES(2415, 51615, 'fifty-one thousand six hundred fifteen');\nINSERT INTO t2 VALUES(2416, 28240, 'twenty-eight thousand two hundred forty');\nINSERT INTO t2 VALUES(2417, 55834, 'fifty-five thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(2418, 77916, 'seventy-seven thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(2419, 81683, 'eighty-one thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(2420, 56127, 'fifty-six thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(2421, 11304, 'eleven thousand three hundred four');\nINSERT INTO t2 VALUES(2422, 48279, 'forty-eight thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(2423, 93430, 'ninety-three thousand four hundred thirty');\nINSERT INTO t2 VALUES(2424, 85293, 'eighty-five thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(2425, 71015, 'seventy-one thousand fifteen');\nINSERT INTO t2 VALUES(2426, 69462, 'sixty-nine thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(2427, 27337, 'twenty-seven thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(2428, 12663, 'twelve thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(2429, 20226, 'twenty thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(2430, 52823, 'fifty-two thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(2431, 13894, 'thirteen thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(2432, 15928, 'fifteen thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(2433, 98981, 'ninety-eight thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(2434, 90676, 'ninety thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(2435, 42296, 'forty-two thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(2436, 22083, 'twenty-two thousand eighty-three');\nINSERT INTO t2 VALUES(2437, 75853, 'seventy-five thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(2438, 18942, 'eighteen thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(2439, 81482, 'eighty-one thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(2440, 1246, 'one thousand two hundred forty-six');\nINSERT INTO t2 VALUES(2441, 61614, 'sixty-one thousand six hundred fourteen');\nINSERT INTO t2 VALUES(2442, 31021, 'thirty-one thousand twenty-one');\nINSERT INTO t2 VALUES(2443, 98151, 'ninety-eight thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(2444, 6676, 'six thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(2445, 45247, 'forty-five thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(2446, 54998, 'fifty-four thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(2447, 16592, 'sixteen thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(2448, 35662, 'thirty-five thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(2449, 76092, 'seventy-six thousand ninety-two');\nINSERT INTO t2 VALUES(2450, 52, 'fifty-two');\nINSERT INTO t2 VALUES(2451, 29506, 'twenty-nine thousand five hundred six');\nINSERT INTO t2 VALUES(2452, 851, 'eight hundred fifty-one');\nINSERT INTO t2 VALUES(2453, 40062, 'forty thousand sixty-two');\nINSERT INTO t2 VALUES(2454, 28317, 'twenty-eight thousand three hundred seventeen');\nINSERT INTO t2 VALUES(2455, 37254, 'thirty-seven thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(2456, 36890, 'thirty-six thousand eight hundred ninety');\nINSERT INTO t2 VALUES(2457, 19283, 'nineteen thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(2458, 36251, 'thirty-six thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(2459, 67984, 'sixty-seven thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(2460, 67460, 'sixty-seven thousand four hundred sixty');\nINSERT INTO t2 VALUES(2461, 76465, 'seventy-six thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(2462, 50543, 'fifty thousand five hundred forty-three');\nINSERT INTO t2 VALUES(2463, 51509, 'fifty-one thousand five hundred nine');\nINSERT INTO t2 VALUES(2464, 98584, 'ninety-eight thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(2465, 4214, 'four thousand two hundred fourteen');\nINSERT INTO t2 VALUES(2466, 93388, 'ninety-three thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(2467, 62723, 'sixty-two thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(2468, 59784, 'fifty-nine thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(2469, 39638, 'thirty-nine thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(2470, 15730, 'fifteen thousand seven hundred thirty');\nINSERT INTO t2 VALUES(2471, 96301, 'ninety-six thousand three hundred one');\nINSERT INTO t2 VALUES(2472, 22050, 'twenty-two thousand fifty');\nINSERT INTO t2 VALUES(2473, 1017, 'one thousand seventeen');\nINSERT INTO t2 VALUES(2474, 24030, 'twenty-four thousand thirty');\nINSERT INTO t2 VALUES(2475, 38099, 'thirty-eight thousand ninety-nine');\nINSERT INTO t2 VALUES(2476, 32218, 'thirty-two thousand two hundred eighteen');\nINSERT INTO t2 VALUES(2477, 20023, 'twenty thousand twenty-three');\nINSERT INTO t2 VALUES(2478, 44951, 'forty-four thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(2479, 72567, 'seventy-two thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(2480, 31626, 'thirty-one thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(2481, 72593, 'seventy-two thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(2482, 54291, 'fifty-four thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(2483, 83063, 'eighty-three thousand sixty-three');\nINSERT INTO t2 VALUES(2484, 13836, 'thirteen thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(2485, 41860, 'forty-one thousand eight hundred sixty');\nINSERT INTO t2 VALUES(2486, 89723, 'eighty-nine thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(2487, 14732, 'fourteen thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(2488, 15002, 'fifteen thousand two');\nINSERT INTO t2 VALUES(2489, 92065, 'ninety-two thousand sixty-five');\nINSERT INTO t2 VALUES(2490, 40067, 'forty thousand sixty-seven');\nINSERT INTO t2 VALUES(2491, 57828, 'fifty-seven thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(2492, 85335, 'eighty-five thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(2493, 10602, 'ten thousand six hundred two');\nINSERT INTO t2 VALUES(2494, 1476, 'one thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(2495, 93934, 'ninety-three thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(2496, 78768, 'seventy-eight thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(2497, 71835, 'seventy-one thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(2498, 55943, 'fifty-five thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(2499, 33941, 'thirty-three thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(2500, 94279, 'ninety-four thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(2501, 15291, 'fifteen thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(2502, 41682, 'forty-one thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(2503, 81048, 'eighty-one thousand forty-eight');\nINSERT INTO t2 VALUES(2504, 87177, 'eighty-seven thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(2505, 6726, 'six thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(2506, 75433, 'seventy-five thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(2507, 50001, 'fifty thousand one');\nINSERT INTO t2 VALUES(2508, 65321, 'sixty-five thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(2509, 95932, 'ninety-five thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(2510, 50745, 'fifty thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(2511, 44178, 'forty-four thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(2512, 4666, 'four thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(2513, 86217, 'eighty-six thousand two hundred seventeen');\nINSERT INTO t2 VALUES(2514, 29911, 'twenty-nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(2515, 32937, 'thirty-two thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(2516, 53630, 'fifty-three thousand six hundred thirty');\nINSERT INTO t2 VALUES(2517, 2615, 'two thousand six hundred fifteen');\nINSERT INTO t2 VALUES(2518, 2368, 'two thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(2519, 29127, 'twenty-nine thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(2520, 5200, 'five thousand two hundred');\nINSERT INTO t2 VALUES(2521, 59612, 'fifty-nine thousand six hundred twelve');\nINSERT INTO t2 VALUES(2522, 28958, 'twenty-eight thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(2523, 5703, 'five thousand seven hundred three');\nINSERT INTO t2 VALUES(2524, 80642, 'eighty thousand six hundred forty-two');\nINSERT INTO t2 VALUES(2525, 45690, 'forty-five thousand six hundred ninety');\nINSERT INTO t2 VALUES(2526, 49569, 'forty-nine thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(2527, 7904, 'seven thousand nine hundred four');\nINSERT INTO t2 VALUES(2528, 11110, 'eleven thousand one hundred ten');\nINSERT INTO t2 VALUES(2529, 98775, 'ninety-eight thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(2530, 20170, 'twenty thousand one hundred seventy');\nINSERT INTO t2 VALUES(2531, 17019, 'seventeen thousand nineteen');\nINSERT INTO t2 VALUES(2532, 96331, 'ninety-six thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(2533, 65337, 'sixty-five thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(2534, 38354, 'thirty-eight thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(2535, 60268, 'sixty thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(2536, 30622, 'thirty thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(2537, 32805, 'thirty-two thousand eight hundred five');\nINSERT INTO t2 VALUES(2538, 49165, 'forty-nine thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(2539, 84538, 'eighty-four thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(2540, 32316, 'thirty-two thousand three hundred sixteen');\nINSERT INTO t2 VALUES(2541, 57707, 'fifty-seven thousand seven hundred seven');\nINSERT INTO t2 VALUES(2542, 95842, 'ninety-five thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(2543, 14067, 'fourteen thousand sixty-seven');\nINSERT INTO t2 VALUES(2544, 45424, 'forty-five thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(2545, 13272, 'thirteen thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(2546, 94806, 'ninety-four thousand eight hundred six');\nINSERT INTO t2 VALUES(2547, 56695, 'fifty-six thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(2548, 41079, 'forty-one thousand seventy-nine');\nINSERT INTO t2 VALUES(2549, 73507, 'seventy-three thousand five hundred seven');\nINSERT INTO t2 VALUES(2550, 49289, 'forty-nine thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(2551, 16669, 'sixteen thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(2552, 53495, 'fifty-three thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(2553, 33072, 'thirty-three thousand seventy-two');\nINSERT INTO t2 VALUES(2554, 6951, 'six thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(2555, 77249, 'seventy-seven thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(2556, 33756, 'thirty-three thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(2557, 95757, 'ninety-five thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(2558, 60092, 'sixty thousand ninety-two');\nINSERT INTO t2 VALUES(2559, 61249, 'sixty-one thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(2560, 34995, 'thirty-four thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(2561, 83682, 'eighty-three thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(2562, 57389, 'fifty-seven thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(2563, 12038, 'twelve thousand thirty-eight');\nINSERT INTO t2 VALUES(2564, 25346, 'twenty-five thousand three hundred forty-six');\nINSERT INTO t2 VALUES(2565, 21634, 'twenty-one thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(2566, 90352, 'ninety thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(2567, 908, 'nine hundred eight');\nINSERT INTO t2 VALUES(2568, 29124, 'twenty-nine thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(2569, 13884, 'thirteen thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(2570, 53757, 'fifty-three thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(2571, 76121, 'seventy-six thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(2572, 71727, 'seventy-one thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(2573, 45927, 'forty-five thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(2574, 28338, 'twenty-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(2575, 89504, 'eighty-nine thousand five hundred four');\nINSERT INTO t2 VALUES(2576, 73450, 'seventy-three thousand four hundred fifty');\nINSERT INTO t2 VALUES(2577, 19716, 'nineteen thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(2578, 99347, 'ninety-nine thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(2579, 22889, 'twenty-two thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(2580, 68280, 'sixty-eight thousand two hundred eighty');\nINSERT INTO t2 VALUES(2581, 13069, 'thirteen thousand sixty-nine');\nINSERT INTO t2 VALUES(2582, 13040, 'thirteen thousand forty');\nINSERT INTO t2 VALUES(2583, 24883, 'twenty-four thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(2584, 84595, 'eighty-four thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(2585, 42369, 'forty-two thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(2586, 32863, 'thirty-two thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(2587, 61898, 'sixty-one thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(2588, 80829, 'eighty thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(2589, 17682, 'seventeen thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(2590, 83951, 'eighty-three thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(2591, 97139, 'ninety-seven thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(2592, 62950, 'sixty-two thousand nine hundred fifty');\nINSERT INTO t2 VALUES(2593, 39594, 'thirty-nine thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(2594, 64139, 'sixty-four thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(2595, 8325, 'eight thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(2596, 71097, 'seventy-one thousand ninety-seven');\nINSERT INTO t2 VALUES(2597, 49802, 'forty-nine thousand eight hundred two');\nINSERT INTO t2 VALUES(2598, 23014, 'twenty-three thousand fourteen');\nINSERT INTO t2 VALUES(2599, 39450, 'thirty-nine thousand four hundred fifty');\nINSERT INTO t2 VALUES(2600, 23316, 'twenty-three thousand three hundred sixteen');\nINSERT INTO t2 VALUES(2601, 44319, 'forty-four thousand three hundred nineteen');\nINSERT INTO t2 VALUES(2602, 82480, 'eighty-two thousand four hundred eighty');\nINSERT INTO t2 VALUES(2603, 35403, 'thirty-five thousand four hundred three');\nINSERT INTO t2 VALUES(2604, 13285, 'thirteen thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(2605, 6978, 'six thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(2606, 85095, 'eighty-five thousand ninety-five');\nINSERT INTO t2 VALUES(2607, 33866, 'thirty-three thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(2608, 30115, 'thirty thousand one hundred fifteen');\nINSERT INTO t2 VALUES(2609, 92129, 'ninety-two thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(2610, 32864, 'thirty-two thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(2611, 29670, 'twenty-nine thousand six hundred seventy');\nINSERT INTO t2 VALUES(2612, 75952, 'seventy-five thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(2613, 70948, 'seventy thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(2614, 36324, 'thirty-six thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(2615, 61684, 'sixty-one thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(2616, 85960, 'eighty-five thousand nine hundred sixty');\nINSERT INTO t2 VALUES(2617, 42441, 'forty-two thousand four hundred forty-one');\nINSERT INTO t2 VALUES(2618, 87302, 'eighty-seven thousand three hundred two');\nINSERT INTO t2 VALUES(2619, 72994, 'seventy-two thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(2620, 86981, 'eighty-six thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(2621, 67309, 'sixty-seven thousand three hundred nine');\nINSERT INTO t2 VALUES(2622, 22682, 'twenty-two thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(2623, 91063, 'ninety-one thousand sixty-three');\nINSERT INTO t2 VALUES(2624, 42158, 'forty-two thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(2625, 6380, 'six thousand three hundred eighty');\nINSERT INTO t2 VALUES(2626, 83922, 'eighty-three thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(2627, 44702, 'forty-four thousand seven hundred two');\nINSERT INTO t2 VALUES(2628, 45893, 'forty-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(2629, 91811, 'ninety-one thousand eight hundred eleven');\nINSERT INTO t2 VALUES(2630, 79655, 'seventy-nine thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(2631, 96322, 'ninety-six thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(2632, 48453, 'forty-eight thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(2633, 37766, 'thirty-seven thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(2634, 66372, 'sixty-six thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(2635, 43911, 'forty-three thousand nine hundred eleven');\nINSERT INTO t2 VALUES(2636, 82376, 'eighty-two thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(2637, 74097, 'seventy-four thousand ninety-seven');\nINSERT INTO t2 VALUES(2638, 98451, 'ninety-eight thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(2639, 56275, 'fifty-six thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(2640, 58468, 'fifty-eight thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(2641, 41716, 'forty-one thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(2642, 29306, 'twenty-nine thousand three hundred six');\nINSERT INTO t2 VALUES(2643, 9307, 'nine thousand three hundred seven');\nINSERT INTO t2 VALUES(2644, 96633, 'ninety-six thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(2645, 25678, 'twenty-five thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(2646, 58125, 'fifty-eight thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(2647, 36684, 'thirty-six thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(2648, 63443, 'sixty-three thousand four hundred forty-three');\nINSERT INTO t2 VALUES(2649, 95563, 'ninety-five thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(2650, 88490, 'eighty-eight thousand four hundred ninety');\nINSERT INTO t2 VALUES(2651, 83347, 'eighty-three thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(2652, 18205, 'eighteen thousand two hundred five');\nINSERT INTO t2 VALUES(2653, 86323, 'eighty-six thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(2654, 49008, 'forty-nine thousand eight');\nINSERT INTO t2 VALUES(2655, 75828, 'seventy-five thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(2656, 92087, 'ninety-two thousand eighty-seven');\nINSERT INTO t2 VALUES(2657, 91487, 'ninety-one thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(2658, 19227, 'nineteen thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(2659, 78893, 'seventy-eight thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(2660, 89026, 'eighty-nine thousand twenty-six');\nINSERT INTO t2 VALUES(2661, 21292, 'twenty-one thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(2662, 77487, 'seventy-seven thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(2663, 30740, 'thirty thousand seven hundred forty');\nINSERT INTO t2 VALUES(2664, 46554, 'forty-six thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(2665, 23977, 'twenty-three thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(2666, 41773, 'forty-one thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(2667, 76832, 'seventy-six thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(2668, 26031, 'twenty-six thousand thirty-one');\nINSERT INTO t2 VALUES(2669, 9187, 'nine thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(2670, 79422, 'seventy-nine thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(2671, 43130, 'forty-three thousand one hundred thirty');\nINSERT INTO t2 VALUES(2672, 98721, 'ninety-eight thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(2673, 43493, 'forty-three thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(2674, 59120, 'fifty-nine thousand one hundred twenty');\nINSERT INTO t2 VALUES(2675, 34743, 'thirty-four thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(2676, 5477, 'five thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(2677, 95338, 'ninety-five thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(2678, 29313, 'twenty-nine thousand three hundred thirteen');\nINSERT INTO t2 VALUES(2679, 25089, 'twenty-five thousand eighty-nine');\nINSERT INTO t2 VALUES(2680, 97859, 'ninety-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(2681, 54424, 'fifty-four thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(2682, 51457, 'fifty-one thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(2683, 33256, 'thirty-three thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(2684, 801, 'eight hundred one');\nINSERT INTO t2 VALUES(2685, 31887, 'thirty-one thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(2686, 69467, 'sixty-nine thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(2687, 1670, 'one thousand six hundred seventy');\nINSERT INTO t2 VALUES(2688, 52565, 'fifty-two thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(2689, 53710, 'fifty-three thousand seven hundred ten');\nINSERT INTO t2 VALUES(2690, 59890, 'fifty-nine thousand eight hundred ninety');\nINSERT INTO t2 VALUES(2691, 58219, 'fifty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(2692, 32988, 'thirty-two thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(2693, 94147, 'ninety-four thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(2694, 12093, 'twelve thousand ninety-three');\nINSERT INTO t2 VALUES(2695, 35191, 'thirty-five thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(2696, 99851, 'ninety-nine thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(2697, 80461, 'eighty thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(2698, 16576, 'sixteen thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(2699, 41877, 'forty-one thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(2700, 2675, 'two thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(2701, 1536, 'one thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(2702, 37067, 'thirty-seven thousand sixty-seven');\nINSERT INTO t2 VALUES(2703, 30725, 'thirty thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(2704, 94221, 'ninety-four thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(2705, 88398, 'eighty-eight thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(2706, 22793, 'twenty-two thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(2707, 7612, 'seven thousand six hundred twelve');\nINSERT INTO t2 VALUES(2708, 58746, 'fifty-eight thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(2709, 33773, 'thirty-three thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(2710, 99090, 'ninety-nine thousand ninety');\nINSERT INTO t2 VALUES(2711, 47291, 'forty-seven thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(2712, 883, 'eight hundred eighty-three');\nINSERT INTO t2 VALUES(2713, 65894, 'sixty-five thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(2714, 83157, 'eighty-three thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(2715, 48742, 'forty-eight thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(2716, 49917, 'forty-nine thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(2717, 86447, 'eighty-six thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(2718, 65548, 'sixty-five thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(2719, 3034, 'three thousand thirty-four');\nINSERT INTO t2 VALUES(2720, 6189, 'six thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(2721, 57782, 'fifty-seven thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(2722, 67960, 'sixty-seven thousand nine hundred sixty');\nINSERT INTO t2 VALUES(2723, 10192, 'ten thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(2724, 56062, 'fifty-six thousand sixty-two');\nINSERT INTO t2 VALUES(2725, 9848, 'nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(2726, 64339, 'sixty-four thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(2727, 50834, 'fifty thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(2728, 14544, 'fourteen thousand five hundred forty-four');\nINSERT INTO t2 VALUES(2729, 8374, 'eight thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(2730, 93240, 'ninety-three thousand two hundred forty');\nINSERT INTO t2 VALUES(2731, 36156, 'thirty-six thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(2732, 41744, 'forty-one thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(2733, 94738, 'ninety-four thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(2734, 17004, 'seventeen thousand four');\nINSERT INTO t2 VALUES(2735, 85268, 'eighty-five thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(2736, 84170, 'eighty-four thousand one hundred seventy');\nINSERT INTO t2 VALUES(2737, 45120, 'forty-five thousand one hundred twenty');\nINSERT INTO t2 VALUES(2738, 92340, 'ninety-two thousand three hundred forty');\nINSERT INTO t2 VALUES(2739, 47942, 'forty-seven thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(2740, 70442, 'seventy thousand four hundred forty-two');\nINSERT INTO t2 VALUES(2741, 86519, 'eighty-six thousand five hundred nineteen');\nINSERT INTO t2 VALUES(2742, 56135, 'fifty-six thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(2743, 12326, 'twelve thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(2744, 50839, 'fifty thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(2745, 43007, 'forty-three thousand seven');\nINSERT INTO t2 VALUES(2746, 97445, 'ninety-seven thousand four hundred forty-five');\nINSERT INTO t2 VALUES(2747, 29497, 'twenty-nine thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(2748, 90283, 'ninety thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(2749, 62830, 'sixty-two thousand eight hundred thirty');\nINSERT INTO t2 VALUES(2750, 12938, 'twelve thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(2751, 38030, 'thirty-eight thousand thirty');\nINSERT INTO t2 VALUES(2752, 58329, 'fifty-eight thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(2753, 62846, 'sixty-two thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(2754, 63402, 'sixty-three thousand four hundred two');\nINSERT INTO t2 VALUES(2755, 61888, 'sixty-one thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(2756, 30259, 'thirty thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(2757, 78508, 'seventy-eight thousand five hundred eight');\nINSERT INTO t2 VALUES(2758, 19596, 'nineteen thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(2759, 95602, 'ninety-five thousand six hundred two');\nINSERT INTO t2 VALUES(2760, 50707, 'fifty thousand seven hundred seven');\nINSERT INTO t2 VALUES(2761, 20331, 'twenty thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(2762, 59725, 'fifty-nine thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(2763, 84974, 'eighty-four thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(2764, 83930, 'eighty-three thousand nine hundred thirty');\nINSERT INTO t2 VALUES(2765, 2319, 'two thousand three hundred nineteen');\nINSERT INTO t2 VALUES(2766, 35416, 'thirty-five thousand four hundred sixteen');\nINSERT INTO t2 VALUES(2767, 79852, 'seventy-nine thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(2768, 28726, 'twenty-eight thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(2769, 82891, 'eighty-two thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(2770, 56494, 'fifty-six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(2771, 12517, 'twelve thousand five hundred seventeen');\nINSERT INTO t2 VALUES(2772, 55267, 'fifty-five thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(2773, 49822, 'forty-nine thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(2774, 23222, 'twenty-three thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(2775, 62918, 'sixty-two thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(2776, 74851, 'seventy-four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(2777, 59567, 'fifty-nine thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(2778, 63039, 'sixty-three thousand thirty-nine');\nINSERT INTO t2 VALUES(2779, 20437, 'twenty thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(2780, 28309, 'twenty-eight thousand three hundred nine');\nINSERT INTO t2 VALUES(2781, 7846, 'seven thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(2782, 69927, 'sixty-nine thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(2783, 40390, 'forty thousand three hundred ninety');\nINSERT INTO t2 VALUES(2784, 12522, 'twelve thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(2785, 26130, 'twenty-six thousand one hundred thirty');\nINSERT INTO t2 VALUES(2786, 90941, 'ninety thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(2787, 84617, 'eighty-four thousand six hundred seventeen');\nINSERT INTO t2 VALUES(2788, 74245, 'seventy-four thousand two hundred forty-five');\nINSERT INTO t2 VALUES(2789, 71727, 'seventy-one thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(2790, 97787, 'ninety-seven thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(2791, 54779, 'fifty-four thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(2792, 5189, 'five thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(2793, 79474, 'seventy-nine thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(2794, 39272, 'thirty-nine thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(2795, 98320, 'ninety-eight thousand three hundred twenty');\nINSERT INTO t2 VALUES(2796, 82818, 'eighty-two thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(2797, 24549, 'twenty-four thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(2798, 11815, 'eleven thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(2799, 86821, 'eighty-six thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(2800, 38136, 'thirty-eight thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(2801, 84869, 'eighty-four thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(2802, 59161, 'fifty-nine thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(2803, 41018, 'forty-one thousand eighteen');\nINSERT INTO t2 VALUES(2804, 676, 'six hundred seventy-six');\nINSERT INTO t2 VALUES(2805, 13822, 'thirteen thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(2806, 58913, 'fifty-eight thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(2807, 74789, 'seventy-four thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(2808, 82984, 'eighty-two thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(2809, 61949, 'sixty-one thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(2810, 81568, 'eighty-one thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(2811, 46679, 'forty-six thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(2812, 95766, 'ninety-five thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(2813, 86952, 'eighty-six thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(2814, 87132, 'eighty-seven thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(2815, 36084, 'thirty-six thousand eighty-four');\nINSERT INTO t2 VALUES(2816, 7501, 'seven thousand five hundred one');\nINSERT INTO t2 VALUES(2817, 70059, 'seventy thousand fifty-nine');\nINSERT INTO t2 VALUES(2818, 65378, 'sixty-five thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(2819, 97106, 'ninety-seven thousand one hundred six');\nINSERT INTO t2 VALUES(2820, 22396, 'twenty-two thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(2821, 61705, 'sixty-one thousand seven hundred five');\nINSERT INTO t2 VALUES(2822, 75344, 'seventy-five thousand three hundred forty-four');\nINSERT INTO t2 VALUES(2823, 89444, 'eighty-nine thousand four hundred forty-four');\nINSERT INTO t2 VALUES(2824, 74330, 'seventy-four thousand three hundred thirty');\nINSERT INTO t2 VALUES(2825, 22938, 'twenty-two thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(2826, 30324, 'thirty thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(2827, 53687, 'fifty-three thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(2828, 26628, 'twenty-six thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(2829, 62886, 'sixty-two thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(2830, 4714, 'four thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(2831, 31562, 'thirty-one thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(2832, 75798, 'seventy-five thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(2833, 30888, 'thirty thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(2834, 27929, 'twenty-seven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(2835, 76758, 'seventy-six thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(2836, 23586, 'twenty-three thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(2837, 22704, 'twenty-two thousand seven hundred four');\nINSERT INTO t2 VALUES(2838, 88191, 'eighty-eight thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(2839, 96482, 'ninety-six thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(2840, 51547, 'fifty-one thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(2841, 95984, 'ninety-five thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(2842, 64342, 'sixty-four thousand three hundred forty-two');\nINSERT INTO t2 VALUES(2843, 89357, 'eighty-nine thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(2844, 14916, 'fourteen thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(2845, 95624, 'ninety-five thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(2846, 54191, 'fifty-four thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(2847, 52927, 'fifty-two thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(2848, 13841, 'thirteen thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(2849, 63983, 'sixty-three thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(2850, 49712, 'forty-nine thousand seven hundred twelve');\nINSERT INTO t2 VALUES(2851, 40343, 'forty thousand three hundred forty-three');\nINSERT INTO t2 VALUES(2852, 11081, 'eleven thousand eighty-one');\nINSERT INTO t2 VALUES(2853, 70945, 'seventy thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(2854, 34152, 'thirty-four thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(2855, 25394, 'twenty-five thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(2856, 75268, 'seventy-five thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(2857, 91244, 'ninety-one thousand two hundred forty-four');\nINSERT INTO t2 VALUES(2858, 55951, 'fifty-five thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(2859, 69088, 'sixty-nine thousand eighty-eight');\nINSERT INTO t2 VALUES(2860, 56537, 'fifty-six thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(2861, 30024, 'thirty thousand twenty-four');\nINSERT INTO t2 VALUES(2862, 9283, 'nine thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(2863, 92553, 'ninety-two thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(2864, 59970, 'fifty-nine thousand nine hundred seventy');\nINSERT INTO t2 VALUES(2865, 99232, 'ninety-nine thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(2866, 82397, 'eighty-two thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(2867, 95482, 'ninety-five thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(2868, 10275, 'ten thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(2869, 36196, 'thirty-six thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(2870, 11444, 'eleven thousand four hundred forty-four');\nINSERT INTO t2 VALUES(2871, 83835, 'eighty-three thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(2872, 74554, 'seventy-four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(2873, 64832, 'sixty-four thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(2874, 17103, 'seventeen thousand one hundred three');\nINSERT INTO t2 VALUES(2875, 69875, 'sixty-nine thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(2876, 28025, 'twenty-eight thousand twenty-five');\nINSERT INTO t2 VALUES(2877, 7865, 'seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(2878, 65144, 'sixty-five thousand one hundred forty-four');\nINSERT INTO t2 VALUES(2879, 87598, 'eighty-seven thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(2880, 20568, 'twenty thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(2881, 94521, 'ninety-four thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(2882, 64094, 'sixty-four thousand ninety-four');\nINSERT INTO t2 VALUES(2883, 98433, 'ninety-eight thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(2884, 41316, 'forty-one thousand three hundred sixteen');\nINSERT INTO t2 VALUES(2885, 7100, 'seven thousand one hundred');\nINSERT INTO t2 VALUES(2886, 47901, 'forty-seven thousand nine hundred one');\nINSERT INTO t2 VALUES(2887, 30308, 'thirty thousand three hundred eight');\nINSERT INTO t2 VALUES(2888, 79929, 'seventy-nine thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(2889, 56038, 'fifty-six thousand thirty-eight');\nINSERT INTO t2 VALUES(2890, 95473, 'ninety-five thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(2891, 45780, 'forty-five thousand seven hundred eighty');\nINSERT INTO t2 VALUES(2892, 69065, 'sixty-nine thousand sixty-five');\nINSERT INTO t2 VALUES(2893, 66273, 'sixty-six thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(2894, 44563, 'forty-four thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(2895, 58999, 'fifty-eight thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(2896, 5527, 'five thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(2897, 45586, 'forty-five thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(2898, 89539, 'eighty-nine thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(2899, 30454, 'thirty thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(2900, 6674, 'six thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(2901, 92605, 'ninety-two thousand six hundred five');\nINSERT INTO t2 VALUES(2902, 55570, 'fifty-five thousand five hundred seventy');\nINSERT INTO t2 VALUES(2903, 6162, 'six thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(2904, 10969, 'ten thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(2905, 89354, 'eighty-nine thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(2906, 25114, 'twenty-five thousand one hundred fourteen');\nINSERT INTO t2 VALUES(2907, 69084, 'sixty-nine thousand eighty-four');\nINSERT INTO t2 VALUES(2908, 56522, 'fifty-six thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(2909, 86596, 'eighty-six thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(2910, 26888, 'twenty-six thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(2911, 66491, 'sixty-six thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(2912, 92173, 'ninety-two thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(2913, 99166, 'ninety-nine thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(2914, 48223, 'forty-eight thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(2915, 79492, 'seventy-nine thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(2916, 86920, 'eighty-six thousand nine hundred twenty');\nINSERT INTO t2 VALUES(2917, 19417, 'nineteen thousand four hundred seventeen');\nINSERT INTO t2 VALUES(2918, 69327, 'sixty-nine thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(2919, 93837, 'ninety-three thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(2920, 1199, 'one thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(2921, 5761, 'five thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(2922, 34693, 'thirty-four thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(2923, 88188, 'eighty-eight thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(2924, 81504, 'eighty-one thousand five hundred four');\nINSERT INTO t2 VALUES(2925, 15327, 'fifteen thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(2926, 68540, 'sixty-eight thousand five hundred forty');\nINSERT INTO t2 VALUES(2927, 41482, 'forty-one thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(2928, 82895, 'eighty-two thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(2929, 7391, 'seven thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(2930, 47800, 'forty-seven thousand eight hundred');\nINSERT INTO t2 VALUES(2931, 7269, 'seven thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(2932, 3707, 'three thousand seven hundred seven');\nINSERT INTO t2 VALUES(2933, 50181, 'fifty thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(2934, 52643, 'fifty-two thousand six hundred forty-three');\nINSERT INTO t2 VALUES(2935, 9980, 'nine thousand nine hundred eighty');\nINSERT INTO t2 VALUES(2936, 92621, 'ninety-two thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(2937, 26730, 'twenty-six thousand seven hundred thirty');\nINSERT INTO t2 VALUES(2938, 12252, 'twelve thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(2939, 70921, 'seventy thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(2940, 66155, 'sixty-six thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(2941, 89187, 'eighty-nine thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(2942, 15042, 'fifteen thousand forty-two');\nINSERT INTO t2 VALUES(2943, 1324, 'one thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(2944, 6341, 'six thousand three hundred forty-one');\nINSERT INTO t2 VALUES(2945, 70686, 'seventy thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(2946, 84209, 'eighty-four thousand two hundred nine');\nINSERT INTO t2 VALUES(2947, 62032, 'sixty-two thousand thirty-two');\nINSERT INTO t2 VALUES(2948, 70316, 'seventy thousand three hundred sixteen');\nINSERT INTO t2 VALUES(2949, 63932, 'sixty-three thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(2950, 64623, 'sixty-four thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(2951, 30333, 'thirty thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(2952, 54556, 'fifty-four thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(2953, 64679, 'sixty-four thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(2954, 73401, 'seventy-three thousand four hundred one');\nINSERT INTO t2 VALUES(2955, 79027, 'seventy-nine thousand twenty-seven');\nINSERT INTO t2 VALUES(2956, 53565, 'fifty-three thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(2957, 77525, 'seventy-seven thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(2958, 45042, 'forty-five thousand forty-two');\nINSERT INTO t2 VALUES(2959, 440, 'four hundred forty');\nINSERT INTO t2 VALUES(2960, 75038, 'seventy-five thousand thirty-eight');\nINSERT INTO t2 VALUES(2961, 90967, 'ninety thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(2962, 69347, 'sixty-nine thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(2963, 59055, 'fifty-nine thousand fifty-five');\nINSERT INTO t2 VALUES(2964, 40643, 'forty thousand six hundred forty-three');\nINSERT INTO t2 VALUES(2965, 14252, 'fourteen thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(2966, 75808, 'seventy-five thousand eight hundred eight');\nINSERT INTO t2 VALUES(2967, 85630, 'eighty-five thousand six hundred thirty');\nINSERT INTO t2 VALUES(2968, 46255, 'forty-six thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(2969, 35625, 'thirty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(2970, 89525, 'eighty-nine thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(2971, 44141, 'forty-four thousand one hundred forty-one');\nINSERT INTO t2 VALUES(2972, 42816, 'forty-two thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(2973, 87184, 'eighty-seven thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(2974, 56002, 'fifty-six thousand two');\nINSERT INTO t2 VALUES(2975, 68367, 'sixty-eight thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(2976, 44941, 'forty-four thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(2977, 2644, 'two thousand six hundred forty-four');\nINSERT INTO t2 VALUES(2978, 56330, 'fifty-six thousand three hundred thirty');\nINSERT INTO t2 VALUES(2979, 5202, 'five thousand two hundred two');\nINSERT INTO t2 VALUES(2980, 33139, 'thirty-three thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(2981, 51009, 'fifty-one thousand nine');\nINSERT INTO t2 VALUES(2982, 47630, 'forty-seven thousand six hundred thirty');\nINSERT INTO t2 VALUES(2983, 7461, 'seven thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(2984, 22446, 'twenty-two thousand four hundred forty-six');\nINSERT INTO t2 VALUES(2985, 18427, 'eighteen thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(2986, 37025, 'thirty-seven thousand twenty-five');\nINSERT INTO t2 VALUES(2987, 18904, 'eighteen thousand nine hundred four');\nINSERT INTO t2 VALUES(2988, 44794, 'forty-four thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(2989, 88618, 'eighty-eight thousand six hundred eighteen');\nINSERT INTO t2 VALUES(2990, 88401, 'eighty-eight thousand four hundred one');\nINSERT INTO t2 VALUES(2991, 30781, 'thirty thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(2992, 92289, 'ninety-two thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(2993, 58959, 'fifty-eight thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(2994, 69620, 'sixty-nine thousand six hundred twenty');\nINSERT INTO t2 VALUES(2995, 29403, 'twenty-nine thousand four hundred three');\nINSERT INTO t2 VALUES(2996, 41951, 'forty-one thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(2997, 60509, 'sixty thousand five hundred nine');\nINSERT INTO t2 VALUES(2998, 73380, 'seventy-three thousand three hundred eighty');\nINSERT INTO t2 VALUES(2999, 99343, 'ninety-nine thousand three hundred forty-three');\nINSERT INTO t2 VALUES(3000, 75507, 'seventy-five thousand five hundred seven');\nINSERT INTO t2 VALUES(3001, 84133, 'eighty-four thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(3002, 32238, 'thirty-two thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(3003, 30080, 'thirty thousand eighty');\nINSERT INTO t2 VALUES(3004, 57926, 'fifty-seven thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(3005, 65770, 'sixty-five thousand seven hundred seventy');\nINSERT INTO t2 VALUES(3006, 53641, 'fifty-three thousand six hundred forty-one');\nINSERT INTO t2 VALUES(3007, 17279, 'seventeen thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(3008, 69016, 'sixty-nine thousand sixteen');\nINSERT INTO t2 VALUES(3009, 16784, 'sixteen thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(3010, 22297, 'twenty-two thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(3011, 5860, 'five thousand eight hundred sixty');\nINSERT INTO t2 VALUES(3012, 26805, 'twenty-six thousand eight hundred five');\nINSERT INTO t2 VALUES(3013, 98280, 'ninety-eight thousand two hundred eighty');\nINSERT INTO t2 VALUES(3014, 78983, 'seventy-eight thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(3015, 92493, 'ninety-two thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(3016, 26180, 'twenty-six thousand one hundred eighty');\nINSERT INTO t2 VALUES(3017, 17372, 'seventeen thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(3018, 70053, 'seventy thousand fifty-three');\nINSERT INTO t2 VALUES(3019, 28581, 'twenty-eight thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(3020, 72946, 'seventy-two thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(3021, 89803, 'eighty-nine thousand eight hundred three');\nINSERT INTO t2 VALUES(3022, 31505, 'thirty-one thousand five hundred five');\nINSERT INTO t2 VALUES(3023, 98659, 'ninety-eight thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(3024, 63328, 'sixty-three thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(3025, 94483, 'ninety-four thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(3026, 40984, 'forty thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(3027, 38871, 'thirty-eight thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(3028, 44975, 'forty-four thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(3029, 51287, 'fifty-one thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(3030, 37854, 'thirty-seven thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(3031, 47663, 'forty-seven thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(3032, 42409, 'forty-two thousand four hundred nine');\nINSERT INTO t2 VALUES(3033, 1586, 'one thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(3034, 35078, 'thirty-five thousand seventy-eight');\nINSERT INTO t2 VALUES(3035, 83651, 'eighty-three thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(3036, 92991, 'ninety-two thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(3037, 26555, 'twenty-six thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(3038, 93330, 'ninety-three thousand three hundred thirty');\nINSERT INTO t2 VALUES(3039, 46824, 'forty-six thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(3040, 99657, 'ninety-nine thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(3041, 72179, 'seventy-two thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(3042, 80628, 'eighty thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(3043, 86982, 'eighty-six thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(3044, 12544, 'twelve thousand five hundred forty-four');\nINSERT INTO t2 VALUES(3045, 10801, 'ten thousand eight hundred one');\nINSERT INTO t2 VALUES(3046, 98160, 'ninety-eight thousand one hundred sixty');\nINSERT INTO t2 VALUES(3047, 3930, 'three thousand nine hundred thirty');\nINSERT INTO t2 VALUES(3048, 61187, 'sixty-one thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(3049, 27569, 'twenty-seven thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(3050, 39982, 'thirty-nine thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(3051, 97139, 'ninety-seven thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(3052, 70663, 'seventy thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(3053, 53889, 'fifty-three thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(3054, 3199, 'three thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(3055, 52922, 'fifty-two thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(3056, 96163, 'ninety-six thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(3057, 40751, 'forty thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(3058, 77300, 'seventy-seven thousand three hundred');\nINSERT INTO t2 VALUES(3059, 80671, 'eighty thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(3060, 78230, 'seventy-eight thousand two hundred thirty');\nINSERT INTO t2 VALUES(3061, 76552, 'seventy-six thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(3062, 25175, 'twenty-five thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(3063, 5669, 'five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(3064, 11043, 'eleven thousand forty-three');\nINSERT INTO t2 VALUES(3065, 87093, 'eighty-seven thousand ninety-three');\nINSERT INTO t2 VALUES(3066, 30506, 'thirty thousand five hundred six');\nINSERT INTO t2 VALUES(3067, 59005, 'fifty-nine thousand five');\nINSERT INTO t2 VALUES(3068, 18562, 'eighteen thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(3069, 52926, 'fifty-two thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(3070, 6, 'six');\nINSERT INTO t2 VALUES(3071, 77330, 'seventy-seven thousand three hundred thirty');\nINSERT INTO t2 VALUES(3072, 37520, 'thirty-seven thousand five hundred twenty');\nINSERT INTO t2 VALUES(3073, 36346, 'thirty-six thousand three hundred forty-six');\nINSERT INTO t2 VALUES(3074, 18466, 'eighteen thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(3075, 69047, 'sixty-nine thousand forty-seven');\nINSERT INTO t2 VALUES(3076, 34696, 'thirty-four thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(3077, 40382, 'forty thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(3078, 2283, 'two thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(3079, 19846, 'nineteen thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(3080, 44554, 'forty-four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(3081, 34252, 'thirty-four thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(3082, 56518, 'fifty-six thousand five hundred eighteen');\nINSERT INTO t2 VALUES(3083, 22294, 'twenty-two thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(3084, 38897, 'thirty-eight thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(3085, 85535, 'eighty-five thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(3086, 14707, 'fourteen thousand seven hundred seven');\nINSERT INTO t2 VALUES(3087, 54579, 'fifty-four thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(3088, 12030, 'twelve thousand thirty');\nINSERT INTO t2 VALUES(3089, 38198, 'thirty-eight thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(3090, 75697, 'seventy-five thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(3091, 15160, 'fifteen thousand one hundred sixty');\nINSERT INTO t2 VALUES(3092, 33849, 'thirty-three thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(3093, 84634, 'eighty-four thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(3094, 83961, 'eighty-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(3095, 14431, 'fourteen thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(3096, 69460, 'sixty-nine thousand four hundred sixty');\nINSERT INTO t2 VALUES(3097, 35173, 'thirty-five thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(3098, 23838, 'twenty-three thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(3099, 64731, 'sixty-four thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(3100, 42935, 'forty-two thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(3101, 5462, 'five thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(3102, 15907, 'fifteen thousand nine hundred seven');\nINSERT INTO t2 VALUES(3103, 83848, 'eighty-three thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(3104, 55149, 'fifty-five thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(3105, 61711, 'sixty-one thousand seven hundred eleven');\nINSERT INTO t2 VALUES(3106, 10361, 'ten thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(3107, 85958, 'eighty-five thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(3108, 4348, 'four thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(3109, 20926, 'twenty thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(3110, 2992, 'two thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(3111, 90897, 'ninety thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(3112, 77547, 'seventy-seven thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(3113, 74027, 'seventy-four thousand twenty-seven');\nINSERT INTO t2 VALUES(3114, 97541, 'ninety-seven thousand five hundred forty-one');\nINSERT INTO t2 VALUES(3115, 25939, 'twenty-five thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(3116, 83636, 'eighty-three thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(3117, 82314, 'eighty-two thousand three hundred fourteen');\nINSERT INTO t2 VALUES(3118, 20680, 'twenty thousand six hundred eighty');\nINSERT INTO t2 VALUES(3119, 64535, 'sixty-four thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(3120, 21480, 'twenty-one thousand four hundred eighty');\nINSERT INTO t2 VALUES(3121, 31413, 'thirty-one thousand four hundred thirteen');\nINSERT INTO t2 VALUES(3122, 71463, 'seventy-one thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(3123, 93353, 'ninety-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(3124, 42717, 'forty-two thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(3125, 42315, 'forty-two thousand three hundred fifteen');\nINSERT INTO t2 VALUES(3126, 65749, 'sixty-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(3127, 50512, 'fifty thousand five hundred twelve');\nINSERT INTO t2 VALUES(3128, 49159, 'forty-nine thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(3129, 5456, 'five thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(3130, 44222, 'forty-four thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(3131, 52032, 'fifty-two thousand thirty-two');\nINSERT INTO t2 VALUES(3132, 46042, 'forty-six thousand forty-two');\nINSERT INTO t2 VALUES(3133, 33728, 'thirty-three thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(3134, 74991, 'seventy-four thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(3135, 38135, 'thirty-eight thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(3136, 28199, 'twenty-eight thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(3137, 79806, 'seventy-nine thousand eight hundred six');\nINSERT INTO t2 VALUES(3138, 22552, 'twenty-two thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(3139, 20039, 'twenty thousand thirty-nine');\nINSERT INTO t2 VALUES(3140, 70719, 'seventy thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(3141, 43840, 'forty-three thousand eight hundred forty');\nINSERT INTO t2 VALUES(3142, 49135, 'forty-nine thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(3143, 24607, 'twenty-four thousand six hundred seven');\nINSERT INTO t2 VALUES(3144, 40095, 'forty thousand ninety-five');\nINSERT INTO t2 VALUES(3145, 8362, 'eight thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(3146, 69275, 'sixty-nine thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(3147, 58609, 'fifty-eight thousand six hundred nine');\nINSERT INTO t2 VALUES(3148, 96202, 'ninety-six thousand two hundred two');\nINSERT INTO t2 VALUES(3149, 59445, 'fifty-nine thousand four hundred forty-five');\nINSERT INTO t2 VALUES(3150, 4348, 'four thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(3151, 87408, 'eighty-seven thousand four hundred eight');\nINSERT INTO t2 VALUES(3152, 11956, 'eleven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(3153, 14715, 'fourteen thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(3154, 22321, 'twenty-two thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(3155, 29757, 'twenty-nine thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(3156, 91314, 'ninety-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(3157, 332, 'three hundred thirty-two');\nINSERT INTO t2 VALUES(3158, 54578, 'fifty-four thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(3159, 58943, 'fifty-eight thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(3160, 87984, 'eighty-seven thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(3161, 92178, 'ninety-two thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(3162, 70526, 'seventy thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(3163, 25602, 'twenty-five thousand six hundred two');\nINSERT INTO t2 VALUES(3164, 54693, 'fifty-four thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(3165, 56334, 'fifty-six thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(3166, 6777, 'six thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(3167, 91040, 'ninety-one thousand forty');\nINSERT INTO t2 VALUES(3168, 84644, 'eighty-four thousand six hundred forty-four');\nINSERT INTO t2 VALUES(3169, 25150, 'twenty-five thousand one hundred fifty');\nINSERT INTO t2 VALUES(3170, 81363, 'eighty-one thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(3171, 4907, 'four thousand nine hundred seven');\nINSERT INTO t2 VALUES(3172, 94868, 'ninety-four thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(3173, 68858, 'sixty-eight thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(3174, 64623, 'sixty-four thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(3175, 64151, 'sixty-four thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(3176, 32160, 'thirty-two thousand one hundred sixty');\nINSERT INTO t2 VALUES(3177, 8549, 'eight thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(3178, 53017, 'fifty-three thousand seventeen');\nINSERT INTO t2 VALUES(3179, 86194, 'eighty-six thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(3180, 74458, 'seventy-four thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(3181, 69101, 'sixty-nine thousand one hundred one');\nINSERT INTO t2 VALUES(3182, 13817, 'thirteen thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(3183, 64824, 'sixty-four thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(3184, 91744, 'ninety-one thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(3185, 35990, 'thirty-five thousand nine hundred ninety');\nINSERT INTO t2 VALUES(3186, 1836, 'one thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(3187, 25180, 'twenty-five thousand one hundred eighty');\nINSERT INTO t2 VALUES(3188, 78297, 'seventy-eight thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(3189, 82526, 'eighty-two thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(3190, 76726, 'seventy-six thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(3191, 18740, 'eighteen thousand seven hundred forty');\nINSERT INTO t2 VALUES(3192, 7650, 'seven thousand six hundred fifty');\nINSERT INTO t2 VALUES(3193, 76060, 'seventy-six thousand sixty');\nINSERT INTO t2 VALUES(3194, 79196, 'seventy-nine thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(3195, 8022, 'eight thousand twenty-two');\nINSERT INTO t2 VALUES(3196, 78197, 'seventy-eight thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(3197, 32855, 'thirty-two thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(3198, 80157, 'eighty thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(3199, 75220, 'seventy-five thousand two hundred twenty');\nINSERT INTO t2 VALUES(3200, 18488, 'eighteen thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(3201, 52992, 'fifty-two thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(3202, 58682, 'fifty-eight thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(3203, 14531, 'fourteen thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(3204, 95036, 'ninety-five thousand thirty-six');\nINSERT INTO t2 VALUES(3205, 42685, 'forty-two thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(3206, 64953, 'sixty-four thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(3207, 80737, 'eighty thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(3208, 85672, 'eighty-five thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(3209, 93810, 'ninety-three thousand eight hundred ten');\nINSERT INTO t2 VALUES(3210, 74829, 'seventy-four thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(3211, 12889, 'twelve thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(3212, 65140, 'sixty-five thousand one hundred forty');\nINSERT INTO t2 VALUES(3213, 17447, 'seventeen thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(3214, 90925, 'ninety thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(3215, 53014, 'fifty-three thousand fourteen');\nINSERT INTO t2 VALUES(3216, 10052, 'ten thousand fifty-two');\nINSERT INTO t2 VALUES(3217, 14944, 'fourteen thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(3218, 36298, 'thirty-six thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(3219, 40955, 'forty thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(3220, 13435, 'thirteen thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(3221, 91099, 'ninety-one thousand ninety-nine');\nINSERT INTO t2 VALUES(3222, 18679, 'eighteen thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(3223, 87088, 'eighty-seven thousand eighty-eight');\nINSERT INTO t2 VALUES(3224, 17448, 'seventeen thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(3225, 19020, 'nineteen thousand twenty');\nINSERT INTO t2 VALUES(3226, 94901, 'ninety-four thousand nine hundred one');\nINSERT INTO t2 VALUES(3227, 22106, 'twenty-two thousand one hundred six');\nINSERT INTO t2 VALUES(3228, 10683, 'ten thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(3229, 51197, 'fifty-one thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(3230, 70796, 'seventy thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(3231, 11292, 'eleven thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(3232, 53471, 'fifty-three thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(3233, 47398, 'forty-seven thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(3234, 70134, 'seventy thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(3235, 294, 'two hundred ninety-four');\nINSERT INTO t2 VALUES(3236, 90271, 'ninety thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(3237, 58215, 'fifty-eight thousand two hundred fifteen');\nINSERT INTO t2 VALUES(3238, 17441, 'seventeen thousand four hundred forty-one');\nINSERT INTO t2 VALUES(3239, 6216, 'six thousand two hundred sixteen');\nINSERT INTO t2 VALUES(3240, 88339, 'eighty-eight thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(3241, 75132, 'seventy-five thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(3242, 44848, 'forty-four thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(3243, 95979, 'ninety-five thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(3244, 43187, 'forty-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(3245, 39437, 'thirty-nine thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(3246, 59833, 'fifty-nine thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(3247, 72946, 'seventy-two thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(3248, 76610, 'seventy-six thousand six hundred ten');\nINSERT INTO t2 VALUES(3249, 81396, 'eighty-one thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(3250, 29025, 'twenty-nine thousand twenty-five');\nINSERT INTO t2 VALUES(3251, 10017, 'ten thousand seventeen');\nINSERT INTO t2 VALUES(3252, 34055, 'thirty-four thousand fifty-five');\nINSERT INTO t2 VALUES(3253, 55077, 'fifty-five thousand seventy-seven');\nINSERT INTO t2 VALUES(3254, 49354, 'forty-nine thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(3255, 71539, 'seventy-one thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(3256, 24996, 'twenty-four thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(3257, 6157, 'six thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(3258, 99514, 'ninety-nine thousand five hundred fourteen');\nINSERT INTO t2 VALUES(3259, 22638, 'twenty-two thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(3260, 56997, 'fifty-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(3261, 58242, 'fifty-eight thousand two hundred forty-two');\nINSERT INTO t2 VALUES(3262, 70538, 'seventy thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(3263, 93371, 'ninety-three thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(3264, 22382, 'twenty-two thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(3265, 6486, 'six thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(3266, 15838, 'fifteen thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(3267, 87220, 'eighty-seven thousand two hundred twenty');\nINSERT INTO t2 VALUES(3268, 99892, 'ninety-nine thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(3269, 77807, 'seventy-seven thousand eight hundred seven');\nINSERT INTO t2 VALUES(3270, 14234, 'fourteen thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(3271, 21101, 'twenty-one thousand one hundred one');\nINSERT INTO t2 VALUES(3272, 78289, 'seventy-eight thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(3273, 823, 'eight hundred twenty-three');\nINSERT INTO t2 VALUES(3274, 73770, 'seventy-three thousand seven hundred seventy');\nINSERT INTO t2 VALUES(3275, 93721, 'ninety-three thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(3276, 18846, 'eighteen thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(3277, 56669, 'fifty-six thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(3278, 62504, 'sixty-two thousand five hundred four');\nINSERT INTO t2 VALUES(3279, 69776, 'sixty-nine thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(3280, 97518, 'ninety-seven thousand five hundred eighteen');\nINSERT INTO t2 VALUES(3281, 64344, 'sixty-four thousand three hundred forty-four');\nINSERT INTO t2 VALUES(3282, 99638, 'ninety-nine thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(3283, 7818, 'seven thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(3284, 80077, 'eighty thousand seventy-seven');\nINSERT INTO t2 VALUES(3285, 94195, 'ninety-four thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(3286, 47036, 'forty-seven thousand thirty-six');\nINSERT INTO t2 VALUES(3287, 33729, 'thirty-three thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(3288, 29939, 'twenty-nine thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(3289, 9016, 'nine thousand sixteen');\nINSERT INTO t2 VALUES(3290, 1702, 'one thousand seven hundred two');\nINSERT INTO t2 VALUES(3291, 71645, 'seventy-one thousand six hundred forty-five');\nINSERT INTO t2 VALUES(3292, 64433, 'sixty-four thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(3293, 37502, 'thirty-seven thousand five hundred two');\nINSERT INTO t2 VALUES(3294, 44939, 'forty-four thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(3295, 68966, 'sixty-eight thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(3296, 72482, 'seventy-two thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(3297, 56929, 'fifty-six thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(3298, 97779, 'ninety-seven thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(3299, 73940, 'seventy-three thousand nine hundred forty');\nINSERT INTO t2 VALUES(3300, 31320, 'thirty-one thousand three hundred twenty');\nINSERT INTO t2 VALUES(3301, 15230, 'fifteen thousand two hundred thirty');\nINSERT INTO t2 VALUES(3302, 63929, 'sixty-three thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(3303, 66155, 'sixty-six thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(3304, 3099, 'three thousand ninety-nine');\nINSERT INTO t2 VALUES(3305, 71533, 'seventy-one thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(3306, 34756, 'thirty-four thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(3307, 15255, 'fifteen thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(3308, 11272, 'eleven thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(3309, 54549, 'fifty-four thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(3310, 28813, 'twenty-eight thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(3311, 94288, 'ninety-four thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(3312, 92516, 'ninety-two thousand five hundred sixteen');\nINSERT INTO t2 VALUES(3313, 70699, 'seventy thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(3314, 46623, 'forty-six thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(3315, 67829, 'sixty-seven thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(3316, 45110, 'forty-five thousand one hundred ten');\nINSERT INTO t2 VALUES(3317, 58246, 'fifty-eight thousand two hundred forty-six');\nINSERT INTO t2 VALUES(3318, 6254, 'six thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(3319, 17050, 'seventeen thousand fifty');\nINSERT INTO t2 VALUES(3320, 20710, 'twenty thousand seven hundred ten');\nINSERT INTO t2 VALUES(3321, 23871, 'twenty-three thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(3322, 98969, 'ninety-eight thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(3323, 25440, 'twenty-five thousand four hundred forty');\nINSERT INTO t2 VALUES(3324, 56060, 'fifty-six thousand sixty');\nINSERT INTO t2 VALUES(3325, 59720, 'fifty-nine thousand seven hundred twenty');\nINSERT INTO t2 VALUES(3326, 87148, 'eighty-seven thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(3327, 60483, 'sixty thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(3328, 21966, 'twenty-one thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(3329, 84787, 'eighty-four thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(3330, 79780, 'seventy-nine thousand seven hundred eighty');\nINSERT INTO t2 VALUES(3331, 96765, 'ninety-six thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(3332, 22987, 'twenty-two thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(3333, 53518, 'fifty-three thousand five hundred eighteen');\nINSERT INTO t2 VALUES(3334, 62843, 'sixty-two thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(3335, 25933, 'twenty-five thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(3336, 41646, 'forty-one thousand six hundred forty-six');\nINSERT INTO t2 VALUES(3337, 45237, 'forty-five thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(3338, 54961, 'fifty-four thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(3339, 85423, 'eighty-five thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(3340, 68927, 'sixty-eight thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(3341, 64734, 'sixty-four thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(3342, 92499, 'ninety-two thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(3343, 26274, 'twenty-six thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(3344, 58419, 'fifty-eight thousand four hundred nineteen');\nINSERT INTO t2 VALUES(3345, 36959, 'thirty-six thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(3346, 72623, 'seventy-two thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(3347, 98876, 'ninety-eight thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(3348, 94411, 'ninety-four thousand four hundred eleven');\nINSERT INTO t2 VALUES(3349, 69304, 'sixty-nine thousand three hundred four');\nINSERT INTO t2 VALUES(3350, 13652, 'thirteen thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(3351, 39250, 'thirty-nine thousand two hundred fifty');\nINSERT INTO t2 VALUES(3352, 19459, 'nineteen thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(3353, 66835, 'sixty-six thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(3354, 95903, 'ninety-five thousand nine hundred three');\nINSERT INTO t2 VALUES(3355, 70163, 'seventy thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(3356, 44244, 'forty-four thousand two hundred forty-four');\nINSERT INTO t2 VALUES(3357, 3362, 'three thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(3358, 738, 'seven hundred thirty-eight');\nINSERT INTO t2 VALUES(3359, 51169, 'fifty-one thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(3360, 28504, 'twenty-eight thousand five hundred four');\nINSERT INTO t2 VALUES(3361, 67979, 'sixty-seven thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(3362, 99613, 'ninety-nine thousand six hundred thirteen');\nINSERT INTO t2 VALUES(3363, 36511, 'thirty-six thousand five hundred eleven');\nINSERT INTO t2 VALUES(3364, 68904, 'sixty-eight thousand nine hundred four');\nINSERT INTO t2 VALUES(3365, 95165, 'ninety-five thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(3366, 86502, 'eighty-six thousand five hundred two');\nINSERT INTO t2 VALUES(3367, 55373, 'fifty-five thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(3368, 12702, 'twelve thousand seven hundred two');\nINSERT INTO t2 VALUES(3369, 51094, 'fifty-one thousand ninety-four');\nINSERT INTO t2 VALUES(3370, 50423, 'fifty thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(3371, 41766, 'forty-one thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(3372, 25246, 'twenty-five thousand two hundred forty-six');\nINSERT INTO t2 VALUES(3373, 40366, 'forty thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(3374, 29845, 'twenty-nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(3375, 32808, 'thirty-two thousand eight hundred eight');\nINSERT INTO t2 VALUES(3376, 52345, 'fifty-two thousand three hundred forty-five');\nINSERT INTO t2 VALUES(3377, 54055, 'fifty-four thousand fifty-five');\nINSERT INTO t2 VALUES(3378, 97214, 'ninety-seven thousand two hundred fourteen');\nINSERT INTO t2 VALUES(3379, 81031, 'eighty-one thousand thirty-one');\nINSERT INTO t2 VALUES(3380, 78559, 'seventy-eight thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(3381, 28423, 'twenty-eight thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(3382, 47909, 'forty-seven thousand nine hundred nine');\nINSERT INTO t2 VALUES(3383, 31237, 'thirty-one thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(3384, 56385, 'fifty-six thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(3385, 74721, 'seventy-four thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(3386, 82882, 'eighty-two thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(3387, 99646, 'ninety-nine thousand six hundred forty-six');\nINSERT INTO t2 VALUES(3388, 96020, 'ninety-six thousand twenty');\nINSERT INTO t2 VALUES(3389, 59349, 'fifty-nine thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(3390, 46739, 'forty-six thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(3391, 91953, 'ninety-one thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(3392, 33637, 'thirty-three thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(3393, 10572, 'ten thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(3394, 53714, 'fifty-three thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(3395, 99581, 'ninety-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(3396, 6327, 'six thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(3397, 79238, 'seventy-nine thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(3398, 38798, 'thirty-eight thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(3399, 4125, 'four thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(3400, 20030, 'twenty thousand thirty');\nINSERT INTO t2 VALUES(3401, 31162, 'thirty-one thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(3402, 47698, 'forty-seven thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(3403, 77363, 'seventy-seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(3404, 76115, 'seventy-six thousand one hundred fifteen');\nINSERT INTO t2 VALUES(3405, 9146, 'nine thousand one hundred forty-six');\nINSERT INTO t2 VALUES(3406, 36983, 'thirty-six thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(3407, 52519, 'fifty-two thousand five hundred nineteen');\nINSERT INTO t2 VALUES(3408, 7031, 'seven thousand thirty-one');\nINSERT INTO t2 VALUES(3409, 80875, 'eighty thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(3410, 16111, 'sixteen thousand one hundred eleven');\nINSERT INTO t2 VALUES(3411, 47006, 'forty-seven thousand six');\nINSERT INTO t2 VALUES(3412, 14351, 'fourteen thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(3413, 16713, 'sixteen thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(3414, 23506, 'twenty-three thousand five hundred six');\nINSERT INTO t2 VALUES(3415, 22926, 'twenty-two thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(3416, 21751, 'twenty-one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(3417, 79164, 'seventy-nine thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(3418, 79122, 'seventy-nine thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(3419, 29793, 'twenty-nine thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(3420, 70882, 'seventy thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(3421, 58331, 'fifty-eight thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(3422, 77125, 'seventy-seven thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(3423, 57176, 'fifty-seven thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(3424, 55246, 'fifty-five thousand two hundred forty-six');\nINSERT INTO t2 VALUES(3425, 42733, 'forty-two thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(3426, 43354, 'forty-three thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(3427, 66353, 'sixty-six thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(3428, 61320, 'sixty-one thousand three hundred twenty');\nINSERT INTO t2 VALUES(3429, 17328, 'seventeen thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(3430, 59504, 'fifty-nine thousand five hundred four');\nINSERT INTO t2 VALUES(3431, 77446, 'seventy-seven thousand four hundred forty-six');\nINSERT INTO t2 VALUES(3432, 78882, 'seventy-eight thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(3433, 19092, 'nineteen thousand ninety-two');\nINSERT INTO t2 VALUES(3434, 29837, 'twenty-nine thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(3435, 97048, 'ninety-seven thousand forty-eight');\nINSERT INTO t2 VALUES(3436, 3261, 'three thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(3437, 93304, 'ninety-three thousand three hundred four');\nINSERT INTO t2 VALUES(3438, 39311, 'thirty-nine thousand three hundred eleven');\nINSERT INTO t2 VALUES(3439, 51098, 'fifty-one thousand ninety-eight');\nINSERT INTO t2 VALUES(3440, 59576, 'fifty-nine thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(3441, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t2 VALUES(3442, 70141, 'seventy thousand one hundred forty-one');\nINSERT INTO t2 VALUES(3443, 80022, 'eighty thousand twenty-two');\nINSERT INTO t2 VALUES(3444, 18465, 'eighteen thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(3445, 96572, 'ninety-six thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(3446, 40804, 'forty thousand eight hundred four');\nINSERT INTO t2 VALUES(3447, 37781, 'thirty-seven thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(3448, 48292, 'forty-eight thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(3449, 8752, 'eight thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(3450, 92676, 'ninety-two thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(3451, 43207, 'forty-three thousand two hundred seven');\nINSERT INTO t2 VALUES(3452, 613, 'six hundred thirteen');\nINSERT INTO t2 VALUES(3453, 67358, 'sixty-seven thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(3454, 57843, 'fifty-seven thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(3455, 65505, 'sixty-five thousand five hundred five');\nINSERT INTO t2 VALUES(3456, 40131, 'forty thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(3457, 23259, 'twenty-three thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(3458, 59068, 'fifty-nine thousand sixty-eight');\nINSERT INTO t2 VALUES(3459, 18623, 'eighteen thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(3460, 39532, 'thirty-nine thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(3461, 56300, 'fifty-six thousand three hundred');\nINSERT INTO t2 VALUES(3462, 16806, 'sixteen thousand eight hundred six');\nINSERT INTO t2 VALUES(3463, 79329, 'seventy-nine thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(3464, 80980, 'eighty thousand nine hundred eighty');\nINSERT INTO t2 VALUES(3465, 33166, 'thirty-three thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(3466, 63230, 'sixty-three thousand two hundred thirty');\nINSERT INTO t2 VALUES(3467, 77583, 'seventy-seven thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(3468, 94025, 'ninety-four thousand twenty-five');\nINSERT INTO t2 VALUES(3469, 89483, 'eighty-nine thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(3470, 91304, 'ninety-one thousand three hundred four');\nINSERT INTO t2 VALUES(3471, 18692, 'eighteen thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(3472, 67993, 'sixty-seven thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(3473, 19362, 'nineteen thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(3474, 64142, 'sixty-four thousand one hundred forty-two');\nINSERT INTO t2 VALUES(3475, 31830, 'thirty-one thousand eight hundred thirty');\nINSERT INTO t2 VALUES(3476, 89311, 'eighty-nine thousand three hundred eleven');\nINSERT INTO t2 VALUES(3477, 17025, 'seventeen thousand twenty-five');\nINSERT INTO t2 VALUES(3478, 91668, 'ninety-one thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(3479, 18688, 'eighteen thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(3480, 4247, 'four thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(3481, 50185, 'fifty thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(3482, 52285, 'fifty-two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(3483, 3777, 'three thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(3484, 80295, 'eighty thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(3485, 90562, 'ninety thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(3486, 10098, 'ten thousand ninety-eight');\nINSERT INTO t2 VALUES(3487, 40706, 'forty thousand seven hundred six');\nINSERT INTO t2 VALUES(3488, 39369, 'thirty-nine thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(3489, 4547, 'four thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(3490, 10985, 'ten thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(3491, 47247, 'forty-seven thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(3492, 36993, 'thirty-six thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(3493, 60076, 'sixty thousand seventy-six');\nINSERT INTO t2 VALUES(3494, 59469, 'fifty-nine thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(3495, 31562, 'thirty-one thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(3496, 61847, 'sixty-one thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(3497, 37215, 'thirty-seven thousand two hundred fifteen');\nINSERT INTO t2 VALUES(3498, 76642, 'seventy-six thousand six hundred forty-two');\nINSERT INTO t2 VALUES(3499, 92402, 'ninety-two thousand four hundred two');\nINSERT INTO t2 VALUES(3500, 41986, 'forty-one thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(3501, 2680, 'two thousand six hundred eighty');\nINSERT INTO t2 VALUES(3502, 72800, 'seventy-two thousand eight hundred');\nINSERT INTO t2 VALUES(3503, 98335, 'ninety-eight thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(3504, 71051, 'seventy-one thousand fifty-one');\nINSERT INTO t2 VALUES(3505, 46202, 'forty-six thousand two hundred two');\nINSERT INTO t2 VALUES(3506, 63475, 'sixty-three thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(3507, 71129, 'seventy-one thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(3508, 7246, 'seven thousand two hundred forty-six');\nINSERT INTO t2 VALUES(3509, 64159, 'sixty-four thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(3510, 73764, 'seventy-three thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(3511, 13414, 'thirteen thousand four hundred fourteen');\nINSERT INTO t2 VALUES(3512, 94177, 'ninety-four thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(3513, 56445, 'fifty-six thousand four hundred forty-five');\nINSERT INTO t2 VALUES(3514, 11530, 'eleven thousand five hundred thirty');\nINSERT INTO t2 VALUES(3515, 39867, 'thirty-nine thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(3516, 37914, 'thirty-seven thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(3517, 62936, 'sixty-two thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(3518, 83949, 'eighty-three thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(3519, 12285, 'twelve thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(3520, 84970, 'eighty-four thousand nine hundred seventy');\nINSERT INTO t2 VALUES(3521, 94285, 'ninety-four thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(3522, 94582, 'ninety-four thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(3523, 77138, 'seventy-seven thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(3524, 96699, 'ninety-six thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(3525, 92895, 'ninety-two thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(3526, 46923, 'forty-six thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(3527, 45937, 'forty-five thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(3528, 72410, 'seventy-two thousand four hundred ten');\nINSERT INTO t2 VALUES(3529, 6020, 'six thousand twenty');\nINSERT INTO t2 VALUES(3530, 954, 'nine hundred fifty-four');\nINSERT INTO t2 VALUES(3531, 62276, 'sixty-two thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(3532, 30830, 'thirty thousand eight hundred thirty');\nINSERT INTO t2 VALUES(3533, 15042, 'fifteen thousand forty-two');\nINSERT INTO t2 VALUES(3534, 95069, 'ninety-five thousand sixty-nine');\nINSERT INTO t2 VALUES(3535, 55683, 'fifty-five thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(3536, 55488, 'fifty-five thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(3537, 64828, 'sixty-four thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(3538, 24790, 'twenty-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(3539, 19429, 'nineteen thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(3540, 34785, 'thirty-four thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(3541, 21011, 'twenty-one thousand eleven');\nINSERT INTO t2 VALUES(3542, 30700, 'thirty thousand seven hundred');\nINSERT INTO t2 VALUES(3543, 75483, 'seventy-five thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(3544, 52547, 'fifty-two thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(3545, 31185, 'thirty-one thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(3546, 70808, 'seventy thousand eight hundred eight');\nINSERT INTO t2 VALUES(3547, 30730, 'thirty thousand seven hundred thirty');\nINSERT INTO t2 VALUES(3548, 81751, 'eighty-one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(3549, 59115, 'fifty-nine thousand one hundred fifteen');\nINSERT INTO t2 VALUES(3550, 5455, 'five thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(3551, 75921, 'seventy-five thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(3552, 58632, 'fifty-eight thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(3553, 7828, 'seven thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(3554, 15520, 'fifteen thousand five hundred twenty');\nINSERT INTO t2 VALUES(3555, 1749, 'one thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(3556, 4642, 'four thousand six hundred forty-two');\nINSERT INTO t2 VALUES(3557, 4770, 'four thousand seven hundred seventy');\nINSERT INTO t2 VALUES(3558, 54431, 'fifty-four thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(3559, 20855, 'twenty thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(3560, 69105, 'sixty-nine thousand one hundred five');\nINSERT INTO t2 VALUES(3561, 40008, 'forty thousand eight');\nINSERT INTO t2 VALUES(3562, 95681, 'ninety-five thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(3563, 75699, 'seventy-five thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(3564, 43610, 'forty-three thousand six hundred ten');\nINSERT INTO t2 VALUES(3565, 55614, 'fifty-five thousand six hundred fourteen');\nINSERT INTO t2 VALUES(3566, 34354, 'thirty-four thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(3567, 920, 'nine hundred twenty');\nINSERT INTO t2 VALUES(3568, 47582, 'forty-seven thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(3569, 1028, 'one thousand twenty-eight');\nINSERT INTO t2 VALUES(3570, 30341, 'thirty thousand three hundred forty-one');\nINSERT INTO t2 VALUES(3571, 29131, 'twenty-nine thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(3572, 97796, 'ninety-seven thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(3573, 86793, 'eighty-six thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(3574, 5320, 'five thousand three hundred twenty');\nINSERT INTO t2 VALUES(3575, 94072, 'ninety-four thousand seventy-two');\nINSERT INTO t2 VALUES(3576, 24303, 'twenty-four thousand three hundred three');\nINSERT INTO t2 VALUES(3577, 93820, 'ninety-three thousand eight hundred twenty');\nINSERT INTO t2 VALUES(3578, 62865, 'sixty-two thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(3579, 38733, 'thirty-eight thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(3580, 42334, 'forty-two thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(3581, 79400, 'seventy-nine thousand four hundred');\nINSERT INTO t2 VALUES(3582, 40253, 'forty thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(3583, 69136, 'sixty-nine thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(3584, 54164, 'fifty-four thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(3585, 62394, 'sixty-two thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(3586, 68173, 'sixty-eight thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(3587, 70208, 'seventy thousand two hundred eight');\nINSERT INTO t2 VALUES(3588, 88806, 'eighty-eight thousand eight hundred six');\nINSERT INTO t2 VALUES(3589, 3430, 'three thousand four hundred thirty');\nINSERT INTO t2 VALUES(3590, 91534, 'ninety-one thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(3591, 7192, 'seven thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(3592, 44758, 'forty-four thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(3593, 57347, 'fifty-seven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(3594, 72945, 'seventy-two thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(3595, 8275, 'eight thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(3596, 35801, 'thirty-five thousand eight hundred one');\nINSERT INTO t2 VALUES(3597, 38557, 'thirty-eight thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(3598, 49555, 'forty-nine thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(3599, 14262, 'fourteen thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(3600, 43515, 'forty-three thousand five hundred fifteen');\nINSERT INTO t2 VALUES(3601, 71059, 'seventy-one thousand fifty-nine');\nINSERT INTO t2 VALUES(3602, 3819, 'three thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(3603, 19583, 'nineteen thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(3604, 34751, 'thirty-four thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(3605, 34237, 'thirty-four thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(3606, 33187, 'thirty-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(3607, 8186, 'eight thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(3608, 68143, 'sixty-eight thousand one hundred forty-three');\nINSERT INTO t2 VALUES(3609, 92843, 'ninety-two thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(3610, 82475, 'eighty-two thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(3611, 51131, 'fifty-one thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(3612, 62839, 'sixty-two thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(3613, 65849, 'sixty-five thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(3614, 69164, 'sixty-nine thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(3615, 90354, 'ninety thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(3616, 35248, 'thirty-five thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(3617, 8706, 'eight thousand seven hundred six');\nINSERT INTO t2 VALUES(3618, 53867, 'fifty-three thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(3619, 28201, 'twenty-eight thousand two hundred one');\nINSERT INTO t2 VALUES(3620, 38230, 'thirty-eight thousand two hundred thirty');\nINSERT INTO t2 VALUES(3621, 96085, 'ninety-six thousand eighty-five');\nINSERT INTO t2 VALUES(3622, 22493, 'twenty-two thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(3623, 11328, 'eleven thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(3624, 78635, 'seventy-eight thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(3625, 17955, 'seventeen thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(3626, 62422, 'sixty-two thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(3627, 39236, 'thirty-nine thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(3628, 1788, 'one thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(3629, 71202, 'seventy-one thousand two hundred two');\nINSERT INTO t2 VALUES(3630, 33719, 'thirty-three thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(3631, 66093, 'sixty-six thousand ninety-three');\nINSERT INTO t2 VALUES(3632, 69927, 'sixty-nine thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(3633, 46523, 'forty-six thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(3634, 19984, 'nineteen thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(3635, 19454, 'nineteen thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(3636, 47699, 'forty-seven thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(3637, 45834, 'forty-five thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(3638, 14846, 'fourteen thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(3639, 20487, 'twenty thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(3640, 57392, 'fifty-seven thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(3641, 88772, 'eighty-eight thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(3642, 73118, 'seventy-three thousand one hundred eighteen');\nINSERT INTO t2 VALUES(3643, 29918, 'twenty-nine thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(3644, 82863, 'eighty-two thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(3645, 5393, 'five thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(3646, 30713, 'thirty thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(3647, 19325, 'nineteen thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(3648, 11926, 'eleven thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(3649, 28917, 'twenty-eight thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(3650, 63194, 'sixty-three thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(3651, 94885, 'ninety-four thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(3652, 26602, 'twenty-six thousand six hundred two');\nINSERT INTO t2 VALUES(3653, 40673, 'forty thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(3654, 70009, 'seventy thousand nine');\nINSERT INTO t2 VALUES(3655, 12997, 'twelve thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(3656, 79751, 'seventy-nine thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(3657, 55886, 'fifty-five thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(3658, 25845, 'twenty-five thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(3659, 23357, 'twenty-three thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(3660, 76086, 'seventy-six thousand eighty-six');\nINSERT INTO t2 VALUES(3661, 48247, 'forty-eight thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(3662, 61115, 'sixty-one thousand one hundred fifteen');\nINSERT INTO t2 VALUES(3663, 77283, 'seventy-seven thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(3664, 4435, 'four thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(3665, 96617, 'ninety-six thousand six hundred seventeen');\nINSERT INTO t2 VALUES(3666, 8807, 'eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(3667, 90492, 'ninety thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(3668, 27321, 'twenty-seven thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(3669, 73247, 'seventy-three thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(3670, 44684, 'forty-four thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(3671, 59641, 'fifty-nine thousand six hundred forty-one');\nINSERT INTO t2 VALUES(3672, 32592, 'thirty-two thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(3673, 90266, 'ninety thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(3674, 15418, 'fifteen thousand four hundred eighteen');\nINSERT INTO t2 VALUES(3675, 5464, 'five thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(3676, 19066, 'nineteen thousand sixty-six');\nINSERT INTO t2 VALUES(3677, 70762, 'seventy thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(3678, 7286, 'seven thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(3679, 54476, 'fifty-four thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(3680, 87819, 'eighty-seven thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(3681, 13560, 'thirteen thousand five hundred sixty');\nINSERT INTO t2 VALUES(3682, 2906, 'two thousand nine hundred six');\nINSERT INTO t2 VALUES(3683, 35785, 'thirty-five thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(3684, 46144, 'forty-six thousand one hundred forty-four');\nINSERT INTO t2 VALUES(3685, 83097, 'eighty-three thousand ninety-seven');\nINSERT INTO t2 VALUES(3686, 61297, 'sixty-one thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(3687, 38225, 'thirty-eight thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(3688, 72518, 'seventy-two thousand five hundred eighteen');\nINSERT INTO t2 VALUES(3689, 81165, 'eighty-one thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(3690, 93299, 'ninety-three thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(3691, 67364, 'sixty-seven thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(3692, 43724, 'forty-three thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(3693, 64556, 'sixty-four thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(3694, 91597, 'ninety-one thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(3695, 5257, 'five thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(3696, 67126, 'sixty-seven thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(3697, 53896, 'fifty-three thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(3698, 99048, 'ninety-nine thousand forty-eight');\nINSERT INTO t2 VALUES(3699, 29883, 'twenty-nine thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(3700, 41000, 'forty-one thousand');\nINSERT INTO t2 VALUES(3701, 98635, 'ninety-eight thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(3702, 29392, 'twenty-nine thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(3703, 10692, 'ten thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(3704, 94217, 'ninety-four thousand two hundred seventeen');\nINSERT INTO t2 VALUES(3705, 75692, 'seventy-five thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(3706, 86601, 'eighty-six thousand six hundred one');\nINSERT INTO t2 VALUES(3707, 73873, 'seventy-three thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(3708, 54818, 'fifty-four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(3709, 25877, 'twenty-five thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(3710, 16828, 'sixteen thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(3711, 8547, 'eight thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(3712, 53747, 'fifty-three thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(3713, 17889, 'seventeen thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(3714, 73856, 'seventy-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(3715, 85289, 'eighty-five thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(3716, 15643, 'fifteen thousand six hundred forty-three');\nINSERT INTO t2 VALUES(3717, 8609, 'eight thousand six hundred nine');\nINSERT INTO t2 VALUES(3718, 48670, 'forty-eight thousand six hundred seventy');\nINSERT INTO t2 VALUES(3719, 54886, 'fifty-four thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(3720, 87184, 'eighty-seven thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(3721, 44125, 'forty-four thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(3722, 81507, 'eighty-one thousand five hundred seven');\nINSERT INTO t2 VALUES(3723, 93093, 'ninety-three thousand ninety-three');\nINSERT INTO t2 VALUES(3724, 88383, 'eighty-eight thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(3725, 69022, 'sixty-nine thousand twenty-two');\nINSERT INTO t2 VALUES(3726, 65629, 'sixty-five thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(3727, 67196, 'sixty-seven thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(3728, 84243, 'eighty-four thousand two hundred forty-three');\nINSERT INTO t2 VALUES(3729, 42058, 'forty-two thousand fifty-eight');\nINSERT INTO t2 VALUES(3730, 63197, 'sixty-three thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(3731, 22264, 'twenty-two thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(3732, 58744, 'fifty-eight thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(3733, 61203, 'sixty-one thousand two hundred three');\nINSERT INTO t2 VALUES(3734, 57984, 'fifty-seven thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(3735, 26082, 'twenty-six thousand eighty-two');\nINSERT INTO t2 VALUES(3736, 80371, 'eighty thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(3737, 63320, 'sixty-three thousand three hundred twenty');\nINSERT INTO t2 VALUES(3738, 62875, 'sixty-two thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(3739, 49996, 'forty-nine thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(3740, 14711, 'fourteen thousand seven hundred eleven');\nINSERT INTO t2 VALUES(3741, 69546, 'sixty-nine thousand five hundred forty-six');\nINSERT INTO t2 VALUES(3742, 55878, 'fifty-five thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(3743, 32801, 'thirty-two thousand eight hundred one');\nINSERT INTO t2 VALUES(3744, 67356, 'sixty-seven thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(3745, 86036, 'eighty-six thousand thirty-six');\nINSERT INTO t2 VALUES(3746, 24650, 'twenty-four thousand six hundred fifty');\nINSERT INTO t2 VALUES(3747, 83466, 'eighty-three thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(3748, 56492, 'fifty-six thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(3749, 36693, 'thirty-six thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(3750, 66565, 'sixty-six thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(3751, 34868, 'thirty-four thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(3752, 8102, 'eight thousand one hundred two');\nINSERT INTO t2 VALUES(3753, 40664, 'forty thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(3754, 36053, 'thirty-six thousand fifty-three');\nINSERT INTO t2 VALUES(3755, 13391, 'thirteen thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(3756, 58838, 'fifty-eight thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(3757, 11765, 'eleven thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(3758, 56726, 'fifty-six thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(3759, 94366, 'ninety-four thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(3760, 74777, 'seventy-four thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(3761, 63537, 'sixty-three thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(3762, 82316, 'eighty-two thousand three hundred sixteen');\nINSERT INTO t2 VALUES(3763, 23294, 'twenty-three thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(3764, 68941, 'sixty-eight thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(3765, 81687, 'eighty-one thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(3766, 95960, 'ninety-five thousand nine hundred sixty');\nINSERT INTO t2 VALUES(3767, 89093, 'eighty-nine thousand ninety-three');\nINSERT INTO t2 VALUES(3768, 71373, 'seventy-one thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(3769, 67005, 'sixty-seven thousand five');\nINSERT INTO t2 VALUES(3770, 16053, 'sixteen thousand fifty-three');\nINSERT INTO t2 VALUES(3771, 80585, 'eighty thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(3772, 35969, 'thirty-five thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(3773, 38560, 'thirty-eight thousand five hundred sixty');\nINSERT INTO t2 VALUES(3774, 47373, 'forty-seven thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(3775, 45263, 'forty-five thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(3776, 46904, 'forty-six thousand nine hundred four');\nINSERT INTO t2 VALUES(3777, 11243, 'eleven thousand two hundred forty-three');\nINSERT INTO t2 VALUES(3778, 51491, 'fifty-one thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(3779, 68380, 'sixty-eight thousand three hundred eighty');\nINSERT INTO t2 VALUES(3780, 93130, 'ninety-three thousand one hundred thirty');\nINSERT INTO t2 VALUES(3781, 58991, 'fifty-eight thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(3782, 95778, 'ninety-five thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(3783, 97498, 'ninety-seven thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(3784, 60503, 'sixty thousand five hundred three');\nINSERT INTO t2 VALUES(3785, 4096, 'four thousand ninety-six');\nINSERT INTO t2 VALUES(3786, 66463, 'sixty-six thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(3787, 22228, 'twenty-two thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(3788, 33099, 'thirty-three thousand ninety-nine');\nINSERT INTO t2 VALUES(3789, 39462, 'thirty-nine thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(3790, 76850, 'seventy-six thousand eight hundred fifty');\nINSERT INTO t2 VALUES(3791, 62149, 'sixty-two thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(3792, 85451, 'eighty-five thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(3793, 62002, 'sixty-two thousand two');\nINSERT INTO t2 VALUES(3794, 21938, 'twenty-one thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(3795, 11246, 'eleven thousand two hundred forty-six');\nINSERT INTO t2 VALUES(3796, 43544, 'forty-three thousand five hundred forty-four');\nINSERT INTO t2 VALUES(3797, 60711, 'sixty thousand seven hundred eleven');\nINSERT INTO t2 VALUES(3798, 10079, 'ten thousand seventy-nine');\nINSERT INTO t2 VALUES(3799, 48214, 'forty-eight thousand two hundred fourteen');\nINSERT INTO t2 VALUES(3800, 99392, 'ninety-nine thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(3801, 35166, 'thirty-five thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(3802, 9562, 'nine thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(3803, 46966, 'forty-six thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(3804, 55642, 'fifty-five thousand six hundred forty-two');\nINSERT INTO t2 VALUES(3805, 55483, 'fifty-five thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(3806, 17111, 'seventeen thousand one hundred eleven');\nINSERT INTO t2 VALUES(3807, 27591, 'twenty-seven thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(3808, 87309, 'eighty-seven thousand three hundred nine');\nINSERT INTO t2 VALUES(3809, 34334, 'thirty-four thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(3810, 60029, 'sixty thousand twenty-nine');\nINSERT INTO t2 VALUES(3811, 52959, 'fifty-two thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(3812, 79293, 'seventy-nine thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(3813, 6312, 'six thousand three hundred twelve');\nINSERT INTO t2 VALUES(3814, 85613, 'eighty-five thousand six hundred thirteen');\nINSERT INTO t2 VALUES(3815, 26533, 'twenty-six thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(3816, 67859, 'sixty-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(3817, 34969, 'thirty-four thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(3818, 84178, 'eighty-four thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(3819, 63392, 'sixty-three thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(3820, 17888, 'seventeen thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(3821, 63319, 'sixty-three thousand three hundred nineteen');\nINSERT INTO t2 VALUES(3822, 22573, 'twenty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(3823, 40494, 'forty thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(3824, 87258, 'eighty-seven thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(3825, 41353, 'forty-one thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(3826, 16221, 'sixteen thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(3827, 47954, 'forty-seven thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(3828, 67341, 'sixty-seven thousand three hundred forty-one');\nINSERT INTO t2 VALUES(3829, 42031, 'forty-two thousand thirty-one');\nINSERT INTO t2 VALUES(3830, 91612, 'ninety-one thousand six hundred twelve');\nINSERT INTO t2 VALUES(3831, 1916, 'one thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(3832, 67772, 'sixty-seven thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(3833, 71298, 'seventy-one thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(3834, 45935, 'forty-five thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(3835, 46271, 'forty-six thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(3836, 44317, 'forty-four thousand three hundred seventeen');\nINSERT INTO t2 VALUES(3837, 19746, 'nineteen thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(3838, 63509, 'sixty-three thousand five hundred nine');\nINSERT INTO t2 VALUES(3839, 75428, 'seventy-five thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(3840, 65418, 'sixty-five thousand four hundred eighteen');\nINSERT INTO t2 VALUES(3841, 99711, 'ninety-nine thousand seven hundred eleven');\nINSERT INTO t2 VALUES(3842, 84912, 'eighty-four thousand nine hundred twelve');\nINSERT INTO t2 VALUES(3843, 91437, 'ninety-one thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(3844, 94740, 'ninety-four thousand seven hundred forty');\nINSERT INTO t2 VALUES(3845, 90516, 'ninety thousand five hundred sixteen');\nINSERT INTO t2 VALUES(3846, 67898, 'sixty-seven thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(3847, 85588, 'eighty-five thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(3848, 32780, 'thirty-two thousand seven hundred eighty');\nINSERT INTO t2 VALUES(3849, 58006, 'fifty-eight thousand six');\nINSERT INTO t2 VALUES(3850, 75005, 'seventy-five thousand five');\nINSERT INTO t2 VALUES(3851, 75615, 'seventy-five thousand six hundred fifteen');\nINSERT INTO t2 VALUES(3852, 76377, 'seventy-six thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(3853, 968, 'nine hundred sixty-eight');\nINSERT INTO t2 VALUES(3854, 9238, 'nine thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(3855, 49070, 'forty-nine thousand seventy');\nINSERT INTO t2 VALUES(3856, 96741, 'ninety-six thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(3857, 86333, 'eighty-six thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(3858, 95337, 'ninety-five thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(3859, 52917, 'fifty-two thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(3860, 54334, 'fifty-four thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(3861, 56139, 'fifty-six thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(3862, 93200, 'ninety-three thousand two hundred');\nINSERT INTO t2 VALUES(3863, 19690, 'nineteen thousand six hundred ninety');\nINSERT INTO t2 VALUES(3864, 52828, 'fifty-two thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(3865, 98402, 'ninety-eight thousand four hundred two');\nINSERT INTO t2 VALUES(3866, 2100, 'two thousand one hundred');\nINSERT INTO t2 VALUES(3867, 43675, 'forty-three thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(3868, 10024, 'ten thousand twenty-four');\nINSERT INTO t2 VALUES(3869, 31538, 'thirty-one thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(3870, 21797, 'twenty-one thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(3871, 4973, 'four thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(3872, 61882, 'sixty-one thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(3873, 65290, 'sixty-five thousand two hundred ninety');\nINSERT INTO t2 VALUES(3874, 1100, 'one thousand one hundred');\nINSERT INTO t2 VALUES(3875, 71229, 'seventy-one thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(3876, 40275, 'forty thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(3877, 55184, 'fifty-five thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(3878, 99269, 'ninety-nine thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(3879, 12733, 'twelve thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(3880, 62441, 'sixty-two thousand four hundred forty-one');\nINSERT INTO t2 VALUES(3881, 40129, 'forty thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(3882, 83255, 'eighty-three thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(3883, 27820, 'twenty-seven thousand eight hundred twenty');\nINSERT INTO t2 VALUES(3884, 79113, 'seventy-nine thousand one hundred thirteen');\nINSERT INTO t2 VALUES(3885, 14528, 'fourteen thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(3886, 20056, 'twenty thousand fifty-six');\nINSERT INTO t2 VALUES(3887, 18646, 'eighteen thousand six hundred forty-six');\nINSERT INTO t2 VALUES(3888, 87438, 'eighty-seven thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(3889, 9494, 'nine thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(3890, 50518, 'fifty thousand five hundred eighteen');\nINSERT INTO t2 VALUES(3891, 86714, 'eighty-six thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(3892, 36556, 'thirty-six thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(3893, 75431, 'seventy-five thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(3894, 55646, 'fifty-five thousand six hundred forty-six');\nINSERT INTO t2 VALUES(3895, 37113, 'thirty-seven thousand one hundred thirteen');\nINSERT INTO t2 VALUES(3896, 23366, 'twenty-three thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(3897, 61458, 'sixty-one thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(3898, 94562, 'ninety-four thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(3899, 37519, 'thirty-seven thousand five hundred nineteen');\nINSERT INTO t2 VALUES(3900, 17632, 'seventeen thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(3901, 38403, 'thirty-eight thousand four hundred three');\nINSERT INTO t2 VALUES(3902, 94568, 'ninety-four thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(3903, 45163, 'forty-five thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(3904, 43773, 'forty-three thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(3905, 48630, 'forty-eight thousand six hundred thirty');\nINSERT INTO t2 VALUES(3906, 22134, 'twenty-two thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(3907, 95176, 'ninety-five thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(3908, 87972, 'eighty-seven thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(3909, 71001, 'seventy-one thousand one');\nINSERT INTO t2 VALUES(3910, 52710, 'fifty-two thousand seven hundred ten');\nINSERT INTO t2 VALUES(3911, 40332, 'forty thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(3912, 75461, 'seventy-five thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(3913, 69119, 'sixty-nine thousand one hundred nineteen');\nINSERT INTO t2 VALUES(3914, 3350, 'three thousand three hundred fifty');\nINSERT INTO t2 VALUES(3915, 15054, 'fifteen thousand fifty-four');\nINSERT INTO t2 VALUES(3916, 34744, 'thirty-four thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(3917, 17681, 'seventeen thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(3918, 6707, 'six thousand seven hundred seven');\nINSERT INTO t2 VALUES(3919, 39451, 'thirty-nine thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(3920, 18487, 'eighteen thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(3921, 70543, 'seventy thousand five hundred forty-three');\nINSERT INTO t2 VALUES(3922, 12007, 'twelve thousand seven');\nINSERT INTO t2 VALUES(3923, 96737, 'ninety-six thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(3924, 12895, 'twelve thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(3925, 96657, 'ninety-six thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(3926, 38542, 'thirty-eight thousand five hundred forty-two');\nINSERT INTO t2 VALUES(3927, 51115, 'fifty-one thousand one hundred fifteen');\nINSERT INTO t2 VALUES(3928, 81595, 'eighty-one thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(3929, 12185, 'twelve thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(3930, 4835, 'four thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(3931, 61419, 'sixty-one thousand four hundred nineteen');\nINSERT INTO t2 VALUES(3932, 91269, 'ninety-one thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(3933, 52630, 'fifty-two thousand six hundred thirty');\nINSERT INTO t2 VALUES(3934, 93973, 'ninety-three thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(3935, 44786, 'forty-four thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(3936, 27317, 'twenty-seven thousand three hundred seventeen');\nINSERT INTO t2 VALUES(3937, 91548, 'ninety-one thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(3938, 1328, 'one thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(3939, 71652, 'seventy-one thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(3940, 80418, 'eighty thousand four hundred eighteen');\nINSERT INTO t2 VALUES(3941, 23967, 'twenty-three thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(3942, 9332, 'nine thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(3943, 75044, 'seventy-five thousand forty-four');\nINSERT INTO t2 VALUES(3944, 64751, 'sixty-four thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(3945, 77527, 'seventy-seven thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(3946, 7631, 'seven thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(3947, 96320, 'ninety-six thousand three hundred twenty');\nINSERT INTO t2 VALUES(3948, 30337, 'thirty thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(3949, 22733, 'twenty-two thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(3950, 20506, 'twenty thousand five hundred six');\nINSERT INTO t2 VALUES(3951, 83774, 'eighty-three thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(3952, 80109, 'eighty thousand one hundred nine');\nINSERT INTO t2 VALUES(3953, 5008, 'five thousand eight');\nINSERT INTO t2 VALUES(3954, 3949, 'three thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(3955, 62418, 'sixty-two thousand four hundred eighteen');\nINSERT INTO t2 VALUES(3956, 54088, 'fifty-four thousand eighty-eight');\nINSERT INTO t2 VALUES(3957, 36788, 'thirty-six thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(3958, 24950, 'twenty-four thousand nine hundred fifty');\nINSERT INTO t2 VALUES(3959, 37859, 'thirty-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(3960, 67928, 'sixty-seven thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(3961, 65292, 'sixty-five thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(3962, 40668, 'forty thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(3963, 46409, 'forty-six thousand four hundred nine');\nINSERT INTO t2 VALUES(3964, 111, 'one hundred eleven');\nINSERT INTO t2 VALUES(3965, 64791, 'sixty-four thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(3966, 84418, 'eighty-four thousand four hundred eighteen');\nINSERT INTO t2 VALUES(3967, 29140, 'twenty-nine thousand one hundred forty');\nINSERT INTO t2 VALUES(3968, 48763, 'forty-eight thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(3969, 32590, 'thirty-two thousand five hundred ninety');\nINSERT INTO t2 VALUES(3970, 31298, 'thirty-one thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(3971, 76630, 'seventy-six thousand six hundred thirty');\nINSERT INTO t2 VALUES(3972, 32916, 'thirty-two thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(3973, 23346, 'twenty-three thousand three hundred forty-six');\nINSERT INTO t2 VALUES(3974, 80830, 'eighty thousand eight hundred thirty');\nINSERT INTO t2 VALUES(3975, 84532, 'eighty-four thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(3976, 59437, 'fifty-nine thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(3977, 69224, 'sixty-nine thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(3978, 69787, 'sixty-nine thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(3979, 85294, 'eighty-five thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(3980, 28056, 'twenty-eight thousand fifty-six');\nINSERT INTO t2 VALUES(3981, 45672, 'forty-five thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(3982, 57591, 'fifty-seven thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(3983, 15427, 'fifteen thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(3984, 79946, 'seventy-nine thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(3985, 9897, 'nine thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(3986, 10501, 'ten thousand five hundred one');\nINSERT INTO t2 VALUES(3987, 36033, 'thirty-six thousand thirty-three');\nINSERT INTO t2 VALUES(3988, 62130, 'sixty-two thousand one hundred thirty');\nINSERT INTO t2 VALUES(3989, 9579, 'nine thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(3990, 20713, 'twenty thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(3991, 59247, 'fifty-nine thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(3992, 36997, 'thirty-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(3993, 69292, 'sixty-nine thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(3994, 36219, 'thirty-six thousand two hundred nineteen');\nINSERT INTO t2 VALUES(3995, 20939, 'twenty thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(3996, 17032, 'seventeen thousand thirty-two');\nINSERT INTO t2 VALUES(3997, 6416, 'six thousand four hundred sixteen');\nINSERT INTO t2 VALUES(3998, 97039, 'ninety-seven thousand thirty-nine');\nINSERT INTO t2 VALUES(3999, 28349, 'twenty-eight thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(4000, 85245, 'eighty-five thousand two hundred forty-five');\nINSERT INTO t2 VALUES(4001, 83826, 'eighty-three thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(4002, 94231, 'ninety-four thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(4003, 58912, 'fifty-eight thousand nine hundred twelve');\nINSERT INTO t2 VALUES(4004, 781, 'seven hundred eighty-one');\nINSERT INTO t2 VALUES(4005, 13913, 'thirteen thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(4006, 27851, 'twenty-seven thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(4007, 19911, 'nineteen thousand nine hundred eleven');\nINSERT INTO t2 VALUES(4008, 48974, 'forty-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(4009, 70757, 'seventy thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(4010, 87343, 'eighty-seven thousand three hundred forty-three');\nINSERT INTO t2 VALUES(4011, 23398, 'twenty-three thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(4012, 70196, 'seventy thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(4013, 49130, 'forty-nine thousand one hundred thirty');\nINSERT INTO t2 VALUES(4014, 96997, 'ninety-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(4015, 72451, 'seventy-two thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(4016, 32489, 'thirty-two thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(4017, 68117, 'sixty-eight thousand one hundred seventeen');\nINSERT INTO t2 VALUES(4018, 6930, 'six thousand nine hundred thirty');\nINSERT INTO t2 VALUES(4019, 48308, 'forty-eight thousand three hundred eight');\nINSERT INTO t2 VALUES(4020, 82773, 'eighty-two thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(4021, 67732, 'sixty-seven thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(4022, 44346, 'forty-four thousand three hundred forty-six');\nINSERT INTO t2 VALUES(4023, 70109, 'seventy thousand one hundred nine');\nINSERT INTO t2 VALUES(4024, 46332, 'forty-six thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(4025, 19376, 'nineteen thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(4026, 72044, 'seventy-two thousand forty-four');\nINSERT INTO t2 VALUES(4027, 91391, 'ninety-one thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(4028, 89435, 'eighty-nine thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(4029, 61157, 'sixty-one thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(4030, 67596, 'sixty-seven thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(4031, 29183, 'twenty-nine thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(4032, 73872, 'seventy-three thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(4033, 19767, 'nineteen thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(4034, 55028, 'fifty-five thousand twenty-eight');\nINSERT INTO t2 VALUES(4035, 70173, 'seventy thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(4036, 91983, 'ninety-one thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(4037, 77067, 'seventy-seven thousand sixty-seven');\nINSERT INTO t2 VALUES(4038, 63202, 'sixty-three thousand two hundred two');\nINSERT INTO t2 VALUES(4039, 80705, 'eighty thousand seven hundred five');\nINSERT INTO t2 VALUES(4040, 18086, 'eighteen thousand eighty-six');\nINSERT INTO t2 VALUES(4041, 85624, 'eighty-five thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(4042, 1454, 'one thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(4043, 71581, 'seventy-one thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(4044, 32723, 'thirty-two thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(4045, 39370, 'thirty-nine thousand three hundred seventy');\nINSERT INTO t2 VALUES(4046, 46108, 'forty-six thousand one hundred eight');\nINSERT INTO t2 VALUES(4047, 97070, 'ninety-seven thousand seventy');\nINSERT INTO t2 VALUES(4048, 49315, 'forty-nine thousand three hundred fifteen');\nINSERT INTO t2 VALUES(4049, 31128, 'thirty-one thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(4050, 39050, 'thirty-nine thousand fifty');\nINSERT INTO t2 VALUES(4051, 3030, 'three thousand thirty');\nINSERT INTO t2 VALUES(4052, 85921, 'eighty-five thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(4053, 81196, 'eighty-one thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(4054, 25754, 'twenty-five thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(4055, 4502, 'four thousand five hundred two');\nINSERT INTO t2 VALUES(4056, 57215, 'fifty-seven thousand two hundred fifteen');\nINSERT INTO t2 VALUES(4057, 1265, 'one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(4058, 32390, 'thirty-two thousand three hundred ninety');\nINSERT INTO t2 VALUES(4059, 78528, 'seventy-eight thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(4060, 17892, 'seventeen thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(4061, 73434, 'seventy-three thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(4062, 89191, 'eighty-nine thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(4063, 75876, 'seventy-five thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(4064, 6388, 'six thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(4065, 74466, 'seventy-four thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(4066, 32602, 'thirty-two thousand six hundred two');\nINSERT INTO t2 VALUES(4067, 67555, 'sixty-seven thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(4068, 42344, 'forty-two thousand three hundred forty-four');\nINSERT INTO t2 VALUES(4069, 41226, 'forty-one thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(4070, 19032, 'nineteen thousand thirty-two');\nINSERT INTO t2 VALUES(4071, 63846, 'sixty-three thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(4072, 11858, 'eleven thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(4073, 27380, 'twenty-seven thousand three hundred eighty');\nINSERT INTO t2 VALUES(4074, 79446, 'seventy-nine thousand four hundred forty-six');\nINSERT INTO t2 VALUES(4075, 90992, 'ninety thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(4076, 56203, 'fifty-six thousand two hundred three');\nINSERT INTO t2 VALUES(4077, 82096, 'eighty-two thousand ninety-six');\nINSERT INTO t2 VALUES(4078, 13686, 'thirteen thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(4079, 88216, 'eighty-eight thousand two hundred sixteen');\nINSERT INTO t2 VALUES(4080, 59528, 'fifty-nine thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(4081, 26392, 'twenty-six thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(4082, 16413, 'sixteen thousand four hundred thirteen');\nINSERT INTO t2 VALUES(4083, 89480, 'eighty-nine thousand four hundred eighty');\nINSERT INTO t2 VALUES(4084, 98345, 'ninety-eight thousand three hundred forty-five');\nINSERT INTO t2 VALUES(4085, 43473, 'forty-three thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(4086, 72370, 'seventy-two thousand three hundred seventy');\nINSERT INTO t2 VALUES(4087, 619, 'six hundred nineteen');\nINSERT INTO t2 VALUES(4088, 87026, 'eighty-seven thousand twenty-six');\nINSERT INTO t2 VALUES(4089, 17928, 'seventeen thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(4090, 34135, 'thirty-four thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(4091, 19336, 'nineteen thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(4092, 2809, 'two thousand eight hundred nine');\nINSERT INTO t2 VALUES(4093, 40999, 'forty thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(4094, 50937, 'fifty thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(4095, 83436, 'eighty-three thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(4096, 32871, 'thirty-two thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(4097, 13520, 'thirteen thousand five hundred twenty');\nINSERT INTO t2 VALUES(4098, 43081, 'forty-three thousand eighty-one');\nINSERT INTO t2 VALUES(4099, 59338, 'fifty-nine thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(4100, 26710, 'twenty-six thousand seven hundred ten');\nINSERT INTO t2 VALUES(4101, 65518, 'sixty-five thousand five hundred eighteen');\nINSERT INTO t2 VALUES(4102, 44580, 'forty-four thousand five hundred eighty');\nINSERT INTO t2 VALUES(4103, 89932, 'eighty-nine thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(4104, 75034, 'seventy-five thousand thirty-four');\nINSERT INTO t2 VALUES(4105, 79956, 'seventy-nine thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(4106, 13335, 'thirteen thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(4107, 69733, 'sixty-nine thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(4108, 54576, 'fifty-four thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(4109, 43262, 'forty-three thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(4110, 37057, 'thirty-seven thousand fifty-seven');\nINSERT INTO t2 VALUES(4111, 41140, 'forty-one thousand one hundred forty');\nINSERT INTO t2 VALUES(4112, 193, 'one hundred ninety-three');\nINSERT INTO t2 VALUES(4113, 96651, 'ninety-six thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(4114, 82748, 'eighty-two thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(4115, 40507, 'forty thousand five hundred seven');\nINSERT INTO t2 VALUES(4116, 30983, 'thirty thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(4117, 91685, 'ninety-one thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(4118, 82567, 'eighty-two thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(4119, 95834, 'ninety-five thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(4120, 90247, 'ninety thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(4121, 95929, 'ninety-five thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(4122, 65483, 'sixty-five thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(4123, 40857, 'forty thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(4124, 311, 'three hundred eleven');\nINSERT INTO t2 VALUES(4125, 94631, 'ninety-four thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(4126, 43534, 'forty-three thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(4127, 61926, 'sixty-one thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(4128, 89554, 'eighty-nine thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(4129, 96150, 'ninety-six thousand one hundred fifty');\nINSERT INTO t2 VALUES(4130, 22874, 'twenty-two thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(4131, 83759, 'eighty-three thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(4132, 21142, 'twenty-one thousand one hundred forty-two');\nINSERT INTO t2 VALUES(4133, 39229, 'thirty-nine thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(4134, 69965, 'sixty-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(4135, 55660, 'fifty-five thousand six hundred sixty');\nINSERT INTO t2 VALUES(4136, 64609, 'sixty-four thousand six hundred nine');\nINSERT INTO t2 VALUES(4137, 18269, 'eighteen thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(4138, 39081, 'thirty-nine thousand eighty-one');\nINSERT INTO t2 VALUES(4139, 19721, 'nineteen thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(4140, 46810, 'forty-six thousand eight hundred ten');\nINSERT INTO t2 VALUES(4141, 86435, 'eighty-six thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(4142, 48824, 'forty-eight thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(4143, 70499, 'seventy thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(4144, 5703, 'five thousand seven hundred three');\nINSERT INTO t2 VALUES(4145, 89264, 'eighty-nine thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(4146, 97829, 'ninety-seven thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(4147, 32185, 'thirty-two thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(4148, 29858, 'twenty-nine thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(4149, 23594, 'twenty-three thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(4150, 41353, 'forty-one thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(4151, 80253, 'eighty thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(4152, 54283, 'fifty-four thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(4153, 7819, 'seven thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(4154, 45330, 'forty-five thousand three hundred thirty');\nINSERT INTO t2 VALUES(4155, 28019, 'twenty-eight thousand nineteen');\nINSERT INTO t2 VALUES(4156, 88974, 'eighty-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(4157, 14929, 'fourteen thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(4158, 32563, 'thirty-two thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(4159, 23270, 'twenty-three thousand two hundred seventy');\nINSERT INTO t2 VALUES(4160, 94515, 'ninety-four thousand five hundred fifteen');\nINSERT INTO t2 VALUES(4161, 10611, 'ten thousand six hundred eleven');\nINSERT INTO t2 VALUES(4162, 64006, 'sixty-four thousand six');\nINSERT INTO t2 VALUES(4163, 54926, 'fifty-four thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(4164, 4946, 'four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(4165, 97283, 'ninety-seven thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(4166, 82690, 'eighty-two thousand six hundred ninety');\nINSERT INTO t2 VALUES(4167, 22634, 'twenty-two thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(4168, 36046, 'thirty-six thousand forty-six');\nINSERT INTO t2 VALUES(4169, 10869, 'ten thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(4170, 78937, 'seventy-eight thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(4171, 11669, 'eleven thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(4172, 73633, 'seventy-three thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(4173, 79652, 'seventy-nine thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(4174, 50908, 'fifty thousand nine hundred eight');\nINSERT INTO t2 VALUES(4175, 64444, 'sixty-four thousand four hundred forty-four');\nINSERT INTO t2 VALUES(4176, 93448, 'ninety-three thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(4177, 59940, 'fifty-nine thousand nine hundred forty');\nINSERT INTO t2 VALUES(4178, 40447, 'forty thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(4179, 15826, 'fifteen thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(4180, 91633, 'ninety-one thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(4181, 47018, 'forty-seven thousand eighteen');\nINSERT INTO t2 VALUES(4182, 5185, 'five thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(4183, 21179, 'twenty-one thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(4184, 68871, 'sixty-eight thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(4185, 27139, 'twenty-seven thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(4186, 86825, 'eighty-six thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(4187, 92794, 'ninety-two thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(4188, 60662, 'sixty thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(4189, 81598, 'eighty-one thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(4190, 41653, 'forty-one thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(4191, 17355, 'seventeen thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(4192, 44720, 'forty-four thousand seven hundred twenty');\nINSERT INTO t2 VALUES(4193, 62909, 'sixty-two thousand nine hundred nine');\nINSERT INTO t2 VALUES(4194, 31575, 'thirty-one thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(4195, 14296, 'fourteen thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(4196, 4185, 'four thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(4197, 45823, 'forty-five thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(4198, 28534, 'twenty-eight thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(4199, 3434, 'three thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(4200, 37538, 'thirty-seven thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(4201, 26790, 'twenty-six thousand seven hundred ninety');\nINSERT INTO t2 VALUES(4202, 26480, 'twenty-six thousand four hundred eighty');\nINSERT INTO t2 VALUES(4203, 36255, 'thirty-six thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(4204, 85790, 'eighty-five thousand seven hundred ninety');\nINSERT INTO t2 VALUES(4205, 11435, 'eleven thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(4206, 86740, 'eighty-six thousand seven hundred forty');\nINSERT INTO t2 VALUES(4207, 56856, 'fifty-six thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(4208, 88237, 'eighty-eight thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(4209, 99331, 'ninety-nine thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(4210, 66586, 'sixty-six thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(4211, 62160, 'sixty-two thousand one hundred sixty');\nINSERT INTO t2 VALUES(4212, 37501, 'thirty-seven thousand five hundred one');\nINSERT INTO t2 VALUES(4213, 77064, 'seventy-seven thousand sixty-four');\nINSERT INTO t2 VALUES(4214, 7117, 'seven thousand one hundred seventeen');\nINSERT INTO t2 VALUES(4215, 40749, 'forty thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(4216, 78269, 'seventy-eight thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(4217, 96591, 'ninety-six thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(4218, 41621, 'forty-one thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(4219, 30701, 'thirty thousand seven hundred one');\nINSERT INTO t2 VALUES(4220, 18857, 'eighteen thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(4221, 33627, 'thirty-three thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(4222, 6785, 'six thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(4223, 35737, 'thirty-five thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(4224, 95335, 'ninety-five thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(4225, 27708, 'twenty-seven thousand seven hundred eight');\nINSERT INTO t2 VALUES(4226, 53785, 'fifty-three thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(4227, 80291, 'eighty thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(4228, 24737, 'twenty-four thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(4229, 34695, 'thirty-four thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(4230, 73582, 'seventy-three thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(4231, 62687, 'sixty-two thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(4232, 88414, 'eighty-eight thousand four hundred fourteen');\nINSERT INTO t2 VALUES(4233, 2739, 'two thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(4234, 35654, 'thirty-five thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(4235, 20842, 'twenty thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(4236, 71388, 'seventy-one thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(4237, 86025, 'eighty-six thousand twenty-five');\nINSERT INTO t2 VALUES(4238, 12725, 'twelve thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(4239, 81079, 'eighty-one thousand seventy-nine');\nINSERT INTO t2 VALUES(4240, 22652, 'twenty-two thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(4241, 66224, 'sixty-six thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(4242, 94099, 'ninety-four thousand ninety-nine');\nINSERT INTO t2 VALUES(4243, 42084, 'forty-two thousand eighty-four');\nINSERT INTO t2 VALUES(4244, 52525, 'fifty-two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(4245, 11860, 'eleven thousand eight hundred sixty');\nINSERT INTO t2 VALUES(4246, 58446, 'fifty-eight thousand four hundred forty-six');\nINSERT INTO t2 VALUES(4247, 93814, 'ninety-three thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(4248, 77379, 'seventy-seven thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(4249, 84313, 'eighty-four thousand three hundred thirteen');\nINSERT INTO t2 VALUES(4250, 27472, 'twenty-seven thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(4251, 79639, 'seventy-nine thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(4252, 62504, 'sixty-two thousand five hundred four');\nINSERT INTO t2 VALUES(4253, 86553, 'eighty-six thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(4254, 59234, 'fifty-nine thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(4255, 22433, 'twenty-two thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(4256, 99964, 'ninety-nine thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(4257, 19492, 'nineteen thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(4258, 44370, 'forty-four thousand three hundred seventy');\nINSERT INTO t2 VALUES(4259, 39734, 'thirty-nine thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(4260, 21789, 'twenty-one thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(4261, 3396, 'three thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(4262, 76944, 'seventy-six thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(4263, 65316, 'sixty-five thousand three hundred sixteen');\nINSERT INTO t2 VALUES(4264, 33849, 'thirty-three thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(4265, 96104, 'ninety-six thousand one hundred four');\nINSERT INTO t2 VALUES(4266, 57630, 'fifty-seven thousand six hundred thirty');\nINSERT INTO t2 VALUES(4267, 70522, 'seventy thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(4268, 42601, 'forty-two thousand six hundred one');\nINSERT INTO t2 VALUES(4269, 92053, 'ninety-two thousand fifty-three');\nINSERT INTO t2 VALUES(4270, 45183, 'forty-five thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(4271, 57170, 'fifty-seven thousand one hundred seventy');\nINSERT INTO t2 VALUES(4272, 15831, 'fifteen thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(4273, 38588, 'thirty-eight thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(4274, 80470, 'eighty thousand four hundred seventy');\nINSERT INTO t2 VALUES(4275, 25962, 'twenty-five thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(4276, 42779, 'forty-two thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(4277, 11918, 'eleven thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(4278, 56420, 'fifty-six thousand four hundred twenty');\nINSERT INTO t2 VALUES(4279, 74416, 'seventy-four thousand four hundred sixteen');\nINSERT INTO t2 VALUES(4280, 58235, 'fifty-eight thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(4281, 87856, 'eighty-seven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(4282, 13448, 'thirteen thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(4283, 28916, 'twenty-eight thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(4284, 27490, 'twenty-seven thousand four hundred ninety');\nINSERT INTO t2 VALUES(4285, 83616, 'eighty-three thousand six hundred sixteen');\nINSERT INTO t2 VALUES(4286, 82299, 'eighty-two thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(4287, 83745, 'eighty-three thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(4288, 58854, 'fifty-eight thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(4289, 712, 'seven hundred twelve');\nINSERT INTO t2 VALUES(4290, 7943, 'seven thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(4291, 80867, 'eighty thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(4292, 61075, 'sixty-one thousand seventy-five');\nINSERT INTO t2 VALUES(4293, 19266, 'nineteen thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(4294, 87747, 'eighty-seven thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(4295, 59620, 'fifty-nine thousand six hundred twenty');\nINSERT INTO t2 VALUES(4296, 85069, 'eighty-five thousand sixty-nine');\nINSERT INTO t2 VALUES(4297, 3023, 'three thousand twenty-three');\nINSERT INTO t2 VALUES(4298, 3285, 'three thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(4299, 52482, 'fifty-two thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(4300, 28307, 'twenty-eight thousand three hundred seven');\nINSERT INTO t2 VALUES(4301, 6063, 'six thousand sixty-three');\nINSERT INTO t2 VALUES(4302, 29100, 'twenty-nine thousand one hundred');\nINSERT INTO t2 VALUES(4303, 24071, 'twenty-four thousand seventy-one');\nINSERT INTO t2 VALUES(4304, 7781, 'seven thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(4305, 91968, 'ninety-one thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(4306, 83326, 'eighty-three thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(4307, 77121, 'seventy-seven thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(4308, 11898, 'eleven thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(4309, 16455, 'sixteen thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(4310, 21402, 'twenty-one thousand four hundred two');\nINSERT INTO t2 VALUES(4311, 92170, 'ninety-two thousand one hundred seventy');\nINSERT INTO t2 VALUES(4312, 25538, 'twenty-five thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(4313, 57641, 'fifty-seven thousand six hundred forty-one');\nINSERT INTO t2 VALUES(4314, 20659, 'twenty thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(4315, 49460, 'forty-nine thousand four hundred sixty');\nINSERT INTO t2 VALUES(4316, 52615, 'fifty-two thousand six hundred fifteen');\nINSERT INTO t2 VALUES(4317, 29520, 'twenty-nine thousand five hundred twenty');\nINSERT INTO t2 VALUES(4318, 44000, 'forty-four thousand');\nINSERT INTO t2 VALUES(4319, 31006, 'thirty-one thousand six');\nINSERT INTO t2 VALUES(4320, 75457, 'seventy-five thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(4321, 19739, 'nineteen thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(4322, 46344, 'forty-six thousand three hundred forty-four');\nINSERT INTO t2 VALUES(4323, 83965, 'eighty-three thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(4324, 19996, 'nineteen thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(4325, 452, 'four hundred fifty-two');\nINSERT INTO t2 VALUES(4326, 13382, 'thirteen thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(4327, 14471, 'fourteen thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(4328, 79069, 'seventy-nine thousand sixty-nine');\nINSERT INTO t2 VALUES(4329, 16526, 'sixteen thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(4330, 29052, 'twenty-nine thousand fifty-two');\nINSERT INTO t2 VALUES(4331, 46977, 'forty-six thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(4332, 73327, 'seventy-three thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(4333, 44419, 'forty-four thousand four hundred nineteen');\nINSERT INTO t2 VALUES(4334, 4944, 'four thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(4335, 22380, 'twenty-two thousand three hundred eighty');\nINSERT INTO t2 VALUES(4336, 25638, 'twenty-five thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(4337, 7784, 'seven thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(4338, 65425, 'sixty-five thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(4339, 90983, 'ninety thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(4340, 58570, 'fifty-eight thousand five hundred seventy');\nINSERT INTO t2 VALUES(4341, 2038, 'two thousand thirty-eight');\nINSERT INTO t2 VALUES(4342, 63935, 'sixty-three thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(4343, 17875, 'seventeen thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(4344, 15919, 'fifteen thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(4345, 96091, 'ninety-six thousand ninety-one');\nINSERT INTO t2 VALUES(4346, 80985, 'eighty thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(4347, 72594, 'seventy-two thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(4348, 7545, 'seven thousand five hundred forty-five');\nINSERT INTO t2 VALUES(4349, 96620, 'ninety-six thousand six hundred twenty');\nINSERT INTO t2 VALUES(4350, 29074, 'twenty-nine thousand seventy-four');\nINSERT INTO t2 VALUES(4351, 86868, 'eighty-six thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(4352, 32658, 'thirty-two thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(4353, 87750, 'eighty-seven thousand seven hundred fifty');\nINSERT INTO t2 VALUES(4354, 57784, 'fifty-seven thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(4355, 77227, 'seventy-seven thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(4356, 56270, 'fifty-six thousand two hundred seventy');\nINSERT INTO t2 VALUES(4357, 78163, 'seventy-eight thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(4358, 35, 'thirty-five');\nINSERT INTO t2 VALUES(4359, 99191, 'ninety-nine thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(4360, 72811, 'seventy-two thousand eight hundred eleven');\nINSERT INTO t2 VALUES(4361, 56053, 'fifty-six thousand fifty-three');\nINSERT INTO t2 VALUES(4362, 74813, 'seventy-four thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(4363, 83316, 'eighty-three thousand three hundred sixteen');\nINSERT INTO t2 VALUES(4364, 98263, 'ninety-eight thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(4365, 65848, 'sixty-five thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(4366, 10213, 'ten thousand two hundred thirteen');\nINSERT INTO t2 VALUES(4367, 98246, 'ninety-eight thousand two hundred forty-six');\nINSERT INTO t2 VALUES(4368, 62245, 'sixty-two thousand two hundred forty-five');\nINSERT INTO t2 VALUES(4369, 93505, 'ninety-three thousand five hundred five');\nINSERT INTO t2 VALUES(4370, 8959, 'eight thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(4371, 37532, 'thirty-seven thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(4372, 5761, 'five thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(4373, 74102, 'seventy-four thousand one hundred two');\nINSERT INTO t2 VALUES(4374, 34528, 'thirty-four thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(4375, 98738, 'ninety-eight thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(4376, 55141, 'fifty-five thousand one hundred forty-one');\nINSERT INTO t2 VALUES(4377, 72199, 'seventy-two thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(4378, 89523, 'eighty-nine thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(4379, 80123, 'eighty thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(4380, 50641, 'fifty thousand six hundred forty-one');\nINSERT INTO t2 VALUES(4381, 48796, 'forty-eight thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(4382, 95851, 'ninety-five thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(4383, 10712, 'ten thousand seven hundred twelve');\nINSERT INTO t2 VALUES(4384, 40887, 'forty thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(4385, 99523, 'ninety-nine thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(4386, 70303, 'seventy thousand three hundred three');\nINSERT INTO t2 VALUES(4387, 32752, 'thirty-two thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(4388, 31712, 'thirty-one thousand seven hundred twelve');\nINSERT INTO t2 VALUES(4389, 60206, 'sixty thousand two hundred six');\nINSERT INTO t2 VALUES(4390, 9127, 'nine thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(4391, 23416, 'twenty-three thousand four hundred sixteen');\nINSERT INTO t2 VALUES(4392, 91711, 'ninety-one thousand seven hundred eleven');\nINSERT INTO t2 VALUES(4393, 77730, 'seventy-seven thousand seven hundred thirty');\nINSERT INTO t2 VALUES(4394, 7848, 'seven thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(4395, 99348, 'ninety-nine thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(4396, 8076, 'eight thousand seventy-six');\nINSERT INTO t2 VALUES(4397, 66494, 'sixty-six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(4398, 27738, 'twenty-seven thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(4399, 41187, 'forty-one thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(4400, 28345, 'twenty-eight thousand three hundred forty-five');\nINSERT INTO t2 VALUES(4401, 63280, 'sixty-three thousand two hundred eighty');\nINSERT INTO t2 VALUES(4402, 67785, 'sixty-seven thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(4403, 94473, 'ninety-four thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(4404, 94817, 'ninety-four thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(4405, 12443, 'twelve thousand four hundred forty-three');\nINSERT INTO t2 VALUES(4406, 2285, 'two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(4407, 51400, 'fifty-one thousand four hundred');\nINSERT INTO t2 VALUES(4408, 74752, 'seventy-four thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(4409, 75142, 'seventy-five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(4410, 800, 'eight hundred');\nINSERT INTO t2 VALUES(4411, 43478, 'forty-three thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(4412, 49832, 'forty-nine thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(4413, 11799, 'eleven thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(4414, 82029, 'eighty-two thousand twenty-nine');\nINSERT INTO t2 VALUES(4415, 15467, 'fifteen thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(4416, 81691, 'eighty-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(4417, 98280, 'ninety-eight thousand two hundred eighty');\nINSERT INTO t2 VALUES(4418, 47788, 'forty-seven thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(4419, 71283, 'seventy-one thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(4420, 37584, 'thirty-seven thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(4421, 9510, 'nine thousand five hundred ten');\nINSERT INTO t2 VALUES(4422, 85829, 'eighty-five thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(4423, 61528, 'sixty-one thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(4424, 17006, 'seventeen thousand six');\nINSERT INTO t2 VALUES(4425, 7205, 'seven thousand two hundred five');\nINSERT INTO t2 VALUES(4426, 18266, 'eighteen thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(4427, 10165, 'ten thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(4428, 96592, 'ninety-six thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(4429, 52225, 'fifty-two thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(4430, 18297, 'eighteen thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(4431, 80152, 'eighty thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(4432, 54747, 'fifty-four thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(4433, 7097, 'seven thousand ninety-seven');\nINSERT INTO t2 VALUES(4434, 72780, 'seventy-two thousand seven hundred eighty');\nINSERT INTO t2 VALUES(4435, 3665, 'three thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(4436, 63624, 'sixty-three thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(4437, 88424, 'eighty-eight thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(4438, 18709, 'eighteen thousand seven hundred nine');\nINSERT INTO t2 VALUES(4439, 14555, 'fourteen thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(4440, 95879, 'ninety-five thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(4441, 61798, 'sixty-one thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(4442, 49075, 'forty-nine thousand seventy-five');\nINSERT INTO t2 VALUES(4443, 76517, 'seventy-six thousand five hundred seventeen');\nINSERT INTO t2 VALUES(4444, 71524, 'seventy-one thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(4445, 79718, 'seventy-nine thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(4446, 35387, 'thirty-five thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(4447, 2913, 'two thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(4448, 15569, 'fifteen thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(4449, 10143, 'ten thousand one hundred forty-three');\nINSERT INTO t2 VALUES(4450, 3681, 'three thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(4451, 62628, 'sixty-two thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(4452, 55345, 'fifty-five thousand three hundred forty-five');\nINSERT INTO t2 VALUES(4453, 74335, 'seventy-four thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(4454, 87541, 'eighty-seven thousand five hundred forty-one');\nINSERT INTO t2 VALUES(4455, 79989, 'seventy-nine thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(4456, 15788, 'fifteen thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(4457, 45203, 'forty-five thousand two hundred three');\nINSERT INTO t2 VALUES(4458, 15077, 'fifteen thousand seventy-seven');\nINSERT INTO t2 VALUES(4459, 95049, 'ninety-five thousand forty-nine');\nINSERT INTO t2 VALUES(4460, 61922, 'sixty-one thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(4461, 75353, 'seventy-five thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(4462, 90282, 'ninety thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(4463, 86563, 'eighty-six thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(4464, 9224, 'nine thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(4465, 33026, 'thirty-three thousand twenty-six');\nINSERT INTO t2 VALUES(4466, 30553, 'thirty thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(4467, 61393, 'sixty-one thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(4468, 90975, 'ninety thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(4469, 61005, 'sixty-one thousand five');\nINSERT INTO t2 VALUES(4470, 6497, 'six thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(4471, 66224, 'sixty-six thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(4472, 798, 'seven hundred ninety-eight');\nINSERT INTO t2 VALUES(4473, 41513, 'forty-one thousand five hundred thirteen');\nINSERT INTO t2 VALUES(4474, 69469, 'sixty-nine thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(4475, 21, 'twenty-one');\nINSERT INTO t2 VALUES(4476, 88103, 'eighty-eight thousand one hundred three');\nINSERT INTO t2 VALUES(4477, 75495, 'seventy-five thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(4478, 98801, 'ninety-eight thousand eight hundred one');\nINSERT INTO t2 VALUES(4479, 67165, 'sixty-seven thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(4480, 9413, 'nine thousand four hundred thirteen');\nINSERT INTO t2 VALUES(4481, 50214, 'fifty thousand two hundred fourteen');\nINSERT INTO t2 VALUES(4482, 37033, 'thirty-seven thousand thirty-three');\nINSERT INTO t2 VALUES(4483, 25036, 'twenty-five thousand thirty-six');\nINSERT INTO t2 VALUES(4484, 56330, 'fifty-six thousand three hundred thirty');\nINSERT INTO t2 VALUES(4485, 81512, 'eighty-one thousand five hundred twelve');\nINSERT INTO t2 VALUES(4486, 75582, 'seventy-five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(4487, 86710, 'eighty-six thousand seven hundred ten');\nINSERT INTO t2 VALUES(4488, 76854, 'seventy-six thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(4489, 27538, 'twenty-seven thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(4490, 38898, 'thirty-eight thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(4491, 82087, 'eighty-two thousand eighty-seven');\nINSERT INTO t2 VALUES(4492, 91525, 'ninety-one thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(4493, 69575, 'sixty-nine thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(4494, 46944, 'forty-six thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(4495, 770, 'seven hundred seventy');\nINSERT INTO t2 VALUES(4496, 77589, 'seventy-seven thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(4497, 46484, 'forty-six thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(4498, 26049, 'twenty-six thousand forty-nine');\nINSERT INTO t2 VALUES(4499, 48002, 'forty-eight thousand two');\nINSERT INTO t2 VALUES(4500, 81084, 'eighty-one thousand eighty-four');\nINSERT INTO t2 VALUES(4501, 1240, 'one thousand two hundred forty');\nINSERT INTO t2 VALUES(4502, 2925, 'two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(4503, 24746, 'twenty-four thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(4504, 81521, 'eighty-one thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(4505, 16707, 'sixteen thousand seven hundred seven');\nINSERT INTO t2 VALUES(4506, 96559, 'ninety-six thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(4507, 36314, 'thirty-six thousand three hundred fourteen');\nINSERT INTO t2 VALUES(4508, 84985, 'eighty-four thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(4509, 41122, 'forty-one thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(4510, 54909, 'fifty-four thousand nine hundred nine');\nINSERT INTO t2 VALUES(4511, 25504, 'twenty-five thousand five hundred four');\nINSERT INTO t2 VALUES(4512, 11813, 'eleven thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(4513, 51895, 'fifty-one thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(4514, 93965, 'ninety-three thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(4515, 33573, 'thirty-three thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(4516, 77515, 'seventy-seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(4517, 35612, 'thirty-five thousand six hundred twelve');\nINSERT INTO t2 VALUES(4518, 93610, 'ninety-three thousand six hundred ten');\nINSERT INTO t2 VALUES(4519, 75004, 'seventy-five thousand four');\nINSERT INTO t2 VALUES(4520, 97891, 'ninety-seven thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(4521, 14779, 'fourteen thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(4522, 32754, 'thirty-two thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(4523, 86256, 'eighty-six thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(4524, 90436, 'ninety thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(4525, 38187, 'thirty-eight thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(4526, 50949, 'fifty thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(4527, 18355, 'eighteen thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(4528, 63070, 'sixty-three thousand seventy');\nINSERT INTO t2 VALUES(4529, 59655, 'fifty-nine thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(4530, 33976, 'thirty-three thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(4531, 29394, 'twenty-nine thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(4532, 3645, 'three thousand six hundred forty-five');\nINSERT INTO t2 VALUES(4533, 21838, 'twenty-one thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(4534, 95695, 'ninety-five thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(4535, 87327, 'eighty-seven thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(4536, 54228, 'fifty-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(4537, 3927, 'three thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(4538, 93132, 'ninety-three thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(4539, 39703, 'thirty-nine thousand seven hundred three');\nINSERT INTO t2 VALUES(4540, 36547, 'thirty-six thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(4541, 69841, 'sixty-nine thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(4542, 29401, 'twenty-nine thousand four hundred one');\nINSERT INTO t2 VALUES(4543, 73235, 'seventy-three thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(4544, 25054, 'twenty-five thousand fifty-four');\nINSERT INTO t2 VALUES(4545, 93813, 'ninety-three thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(4546, 50627, 'fifty thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(4547, 69063, 'sixty-nine thousand sixty-three');\nINSERT INTO t2 VALUES(4548, 34191, 'thirty-four thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(4549, 81898, 'eighty-one thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(4550, 53809, 'fifty-three thousand eight hundred nine');\nINSERT INTO t2 VALUES(4551, 40278, 'forty thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(4552, 25498, 'twenty-five thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(4553, 85055, 'eighty-five thousand fifty-five');\nINSERT INTO t2 VALUES(4554, 35845, 'thirty-five thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(4555, 64533, 'sixty-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(4556, 28673, 'twenty-eight thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(4557, 13782, 'thirteen thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(4558, 35281, 'thirty-five thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(4559, 28515, 'twenty-eight thousand five hundred fifteen');\nINSERT INTO t2 VALUES(4560, 87363, 'eighty-seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(4561, 83666, 'eighty-three thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(4562, 11621, 'eleven thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(4563, 3641, 'three thousand six hundred forty-one');\nINSERT INTO t2 VALUES(4564, 16857, 'sixteen thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(4565, 5991, 'five thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(4566, 3074, 'three thousand seventy-four');\nINSERT INTO t2 VALUES(4567, 24474, 'twenty-four thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(4568, 75954, 'seventy-five thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(4569, 88426, 'eighty-eight thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(4570, 79581, 'seventy-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(4571, 56822, 'fifty-six thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(4572, 61539, 'sixty-one thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(4573, 55173, 'fifty-five thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(4574, 46823, 'forty-six thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(4575, 57063, 'fifty-seven thousand sixty-three');\nINSERT INTO t2 VALUES(4576, 61109, 'sixty-one thousand one hundred nine');\nINSERT INTO t2 VALUES(4577, 85461, 'eighty-five thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(4578, 84474, 'eighty-four thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(4579, 67682, 'sixty-seven thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(4580, 93659, 'ninety-three thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(4581, 1504, 'one thousand five hundred four');\nINSERT INTO t2 VALUES(4582, 58717, 'fifty-eight thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(4583, 35761, 'thirty-five thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(4584, 66392, 'sixty-six thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(4585, 5477, 'five thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(4586, 77005, 'seventy-seven thousand five');\nINSERT INTO t2 VALUES(4587, 66107, 'sixty-six thousand one hundred seven');\nINSERT INTO t2 VALUES(4588, 25747, 'twenty-five thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(4589, 62765, 'sixty-two thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(4590, 83802, 'eighty-three thousand eight hundred two');\nINSERT INTO t2 VALUES(4591, 14872, 'fourteen thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(4592, 75654, 'seventy-five thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(4593, 6280, 'six thousand two hundred eighty');\nINSERT INTO t2 VALUES(4594, 25753, 'twenty-five thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(4595, 14555, 'fourteen thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(4596, 76324, 'seventy-six thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(4597, 94278, 'ninety-four thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(4598, 45729, 'forty-five thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(4599, 49554, 'forty-nine thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(4600, 57459, 'fifty-seven thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(4601, 90993, 'ninety thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(4602, 46528, 'forty-six thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(4603, 31265, 'thirty-one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(4604, 90098, 'ninety thousand ninety-eight');\nINSERT INTO t2 VALUES(4605, 26781, 'twenty-six thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(4606, 49781, 'forty-nine thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(4607, 4595, 'four thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(4608, 89477, 'eighty-nine thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(4609, 96900, 'ninety-six thousand nine hundred');\nINSERT INTO t2 VALUES(4610, 60656, 'sixty thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(4611, 54272, 'fifty-four thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(4612, 41189, 'forty-one thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(4613, 56243, 'fifty-six thousand two hundred forty-three');\nINSERT INTO t2 VALUES(4614, 52142, 'fifty-two thousand one hundred forty-two');\nINSERT INTO t2 VALUES(4615, 24729, 'twenty-four thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(4616, 31438, 'thirty-one thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(4617, 89875, 'eighty-nine thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(4618, 75762, 'seventy-five thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(4619, 22397, 'twenty-two thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(4620, 49736, 'forty-nine thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(4621, 69296, 'sixty-nine thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(4622, 25552, 'twenty-five thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(4623, 21628, 'twenty-one thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(4624, 52433, 'fifty-two thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(4625, 85636, 'eighty-five thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(4626, 61410, 'sixty-one thousand four hundred ten');\nINSERT INTO t2 VALUES(4627, 80073, 'eighty thousand seventy-three');\nINSERT INTO t2 VALUES(4628, 82404, 'eighty-two thousand four hundred four');\nINSERT INTO t2 VALUES(4629, 82304, 'eighty-two thousand three hundred four');\nINSERT INTO t2 VALUES(4630, 29735, 'twenty-nine thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(4631, 48451, 'forty-eight thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(4632, 62223, 'sixty-two thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(4633, 147, 'one hundred forty-seven');\nINSERT INTO t2 VALUES(4634, 6878, 'six thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(4635, 52925, 'fifty-two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(4636, 56386, 'fifty-six thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(4637, 86400, 'eighty-six thousand four hundred');\nINSERT INTO t2 VALUES(4638, 86982, 'eighty-six thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(4639, 67607, 'sixty-seven thousand six hundred seven');\nINSERT INTO t2 VALUES(4640, 2173, 'two thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(4641, 21617, 'twenty-one thousand six hundred seventeen');\nINSERT INTO t2 VALUES(4642, 41225, 'forty-one thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(4643, 34699, 'thirty-four thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(4644, 2195, 'two thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(4645, 80084, 'eighty thousand eighty-four');\nINSERT INTO t2 VALUES(4646, 43347, 'forty-three thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(4647, 41637, 'forty-one thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(4648, 6485, 'six thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(4649, 34080, 'thirty-four thousand eighty');\nINSERT INTO t2 VALUES(4650, 64636, 'sixty-four thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(4651, 54189, 'fifty-four thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(4652, 16087, 'sixteen thousand eighty-seven');\nINSERT INTO t2 VALUES(4653, 69549, 'sixty-nine thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(4654, 14602, 'fourteen thousand six hundred two');\nINSERT INTO t2 VALUES(4655, 30139, 'thirty thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(4656, 10911, 'ten thousand nine hundred eleven');\nINSERT INTO t2 VALUES(4657, 57195, 'fifty-seven thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(4658, 84212, 'eighty-four thousand two hundred twelve');\nINSERT INTO t2 VALUES(4659, 87960, 'eighty-seven thousand nine hundred sixty');\nINSERT INTO t2 VALUES(4660, 72679, 'seventy-two thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(4661, 48629, 'forty-eight thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(4662, 74208, 'seventy-four thousand two hundred eight');\nINSERT INTO t2 VALUES(4663, 34809, 'thirty-four thousand eight hundred nine');\nINSERT INTO t2 VALUES(4664, 25138, 'twenty-five thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(4665, 88467, 'eighty-eight thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(4666, 37859, 'thirty-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(4667, 86442, 'eighty-six thousand four hundred forty-two');\nINSERT INTO t2 VALUES(4668, 47276, 'forty-seven thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(4669, 91827, 'ninety-one thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(4670, 97530, 'ninety-seven thousand five hundred thirty');\nINSERT INTO t2 VALUES(4671, 81356, 'eighty-one thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(4672, 12399, 'twelve thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(4673, 48910, 'forty-eight thousand nine hundred ten');\nINSERT INTO t2 VALUES(4674, 55625, 'fifty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(4675, 63024, 'sixty-three thousand twenty-four');\nINSERT INTO t2 VALUES(4676, 46165, 'forty-six thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(4677, 7778, 'seven thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(4678, 27255, 'twenty-seven thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(4679, 31664, 'thirty-one thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(4680, 59626, 'fifty-nine thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(4681, 35045, 'thirty-five thousand forty-five');\nINSERT INTO t2 VALUES(4682, 58962, 'fifty-eight thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(4683, 79613, 'seventy-nine thousand six hundred thirteen');\nINSERT INTO t2 VALUES(4684, 85752, 'eighty-five thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(4685, 15033, 'fifteen thousand thirty-three');\nINSERT INTO t2 VALUES(4686, 96883, 'ninety-six thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(4687, 21002, 'twenty-one thousand two');\nINSERT INTO t2 VALUES(4688, 37469, 'thirty-seven thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(4689, 16726, 'sixteen thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(4690, 70997, 'seventy thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(4691, 82097, 'eighty-two thousand ninety-seven');\nINSERT INTO t2 VALUES(4692, 6697, 'six thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(4693, 16948, 'sixteen thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(4694, 11934, 'eleven thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(4695, 53419, 'fifty-three thousand four hundred nineteen');\nINSERT INTO t2 VALUES(4696, 75955, 'seventy-five thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(4697, 14845, 'fourteen thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(4698, 15826, 'fifteen thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(4699, 61614, 'sixty-one thousand six hundred fourteen');\nINSERT INTO t2 VALUES(4700, 70358, 'seventy thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(4701, 7950, 'seven thousand nine hundred fifty');\nINSERT INTO t2 VALUES(4702, 72071, 'seventy-two thousand seventy-one');\nINSERT INTO t2 VALUES(4703, 41427, 'forty-one thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(4704, 5793, 'five thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(4705, 99509, 'ninety-nine thousand five hundred nine');\nINSERT INTO t2 VALUES(4706, 66725, 'sixty-six thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(4707, 80187, 'eighty thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(4708, 87891, 'eighty-seven thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(4709, 56902, 'fifty-six thousand nine hundred two');\nINSERT INTO t2 VALUES(4710, 7062, 'seven thousand sixty-two');\nINSERT INTO t2 VALUES(4711, 55492, 'fifty-five thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(4712, 81473, 'eighty-one thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(4713, 58945, 'fifty-eight thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(4714, 37392, 'thirty-seven thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(4715, 52085, 'fifty-two thousand eighty-five');\nINSERT INTO t2 VALUES(4716, 77280, 'seventy-seven thousand two hundred eighty');\nINSERT INTO t2 VALUES(4717, 12164, 'twelve thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(4718, 39604, 'thirty-nine thousand six hundred four');\nINSERT INTO t2 VALUES(4719, 56620, 'fifty-six thousand six hundred twenty');\nINSERT INTO t2 VALUES(4720, 80749, 'eighty thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(4721, 29119, 'twenty-nine thousand one hundred nineteen');\nINSERT INTO t2 VALUES(4722, 8157, 'eight thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(4723, 72769, 'seventy-two thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(4724, 91723, 'ninety-one thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(4725, 91965, 'ninety-one thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(4726, 52001, 'fifty-two thousand one');\nINSERT INTO t2 VALUES(4727, 42827, 'forty-two thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(4728, 17563, 'seventeen thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(4729, 28505, 'twenty-eight thousand five hundred five');\nINSERT INTO t2 VALUES(4730, 69035, 'sixty-nine thousand thirty-five');\nINSERT INTO t2 VALUES(4731, 7523, 'seven thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(4732, 61903, 'sixty-one thousand nine hundred three');\nINSERT INTO t2 VALUES(4733, 82398, 'eighty-two thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(4734, 85492, 'eighty-five thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(4735, 2186, 'two thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(4736, 99572, 'ninety-nine thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(4737, 29294, 'twenty-nine thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(4738, 3750, 'three thousand seven hundred fifty');\nINSERT INTO t2 VALUES(4739, 56326, 'fifty-six thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(4740, 52409, 'fifty-two thousand four hundred nine');\nINSERT INTO t2 VALUES(4741, 19675, 'nineteen thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(4742, 47832, 'forty-seven thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(4743, 82499, 'eighty-two thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(4744, 48009, 'forty-eight thousand nine');\nINSERT INTO t2 VALUES(4745, 9329, 'nine thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(4746, 32273, 'thirty-two thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(4747, 24342, 'twenty-four thousand three hundred forty-two');\nINSERT INTO t2 VALUES(4748, 53164, 'fifty-three thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(4749, 38214, 'thirty-eight thousand two hundred fourteen');\nINSERT INTO t2 VALUES(4750, 24790, 'twenty-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(4751, 51209, 'fifty-one thousand two hundred nine');\nINSERT INTO t2 VALUES(4752, 31913, 'thirty-one thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(4753, 5221, 'five thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(4754, 24833, 'twenty-four thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(4755, 63212, 'sixty-three thousand two hundred twelve');\nINSERT INTO t2 VALUES(4756, 86686, 'eighty-six thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(4757, 49829, 'forty-nine thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(4758, 45560, 'forty-five thousand five hundred sixty');\nINSERT INTO t2 VALUES(4759, 83083, 'eighty-three thousand eighty-three');\nINSERT INTO t2 VALUES(4760, 30804, 'thirty thousand eight hundred four');\nINSERT INTO t2 VALUES(4761, 83416, 'eighty-three thousand four hundred sixteen');\nINSERT INTO t2 VALUES(4762, 13225, 'thirteen thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(4763, 78037, 'seventy-eight thousand thirty-seven');\nINSERT INTO t2 VALUES(4764, 91227, 'ninety-one thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(4765, 51755, 'fifty-one thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(4766, 22163, 'twenty-two thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(4767, 70509, 'seventy thousand five hundred nine');\nINSERT INTO t2 VALUES(4768, 79537, 'seventy-nine thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(4769, 44627, 'forty-four thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(4770, 92844, 'ninety-two thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(4771, 20804, 'twenty thousand eight hundred four');\nINSERT INTO t2 VALUES(4772, 53296, 'fifty-three thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(4773, 98831, 'ninety-eight thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(4774, 22003, 'twenty-two thousand three');\nINSERT INTO t2 VALUES(4775, 17198, 'seventeen thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(4776, 48790, 'forty-eight thousand seven hundred ninety');\nINSERT INTO t2 VALUES(4777, 10162, 'ten thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(4778, 77362, 'seventy-seven thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(4779, 4143, 'four thousand one hundred forty-three');\nINSERT INTO t2 VALUES(4780, 42531, 'forty-two thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(4781, 33238, 'thirty-three thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(4782, 65677, 'sixty-five thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(4783, 94766, 'ninety-four thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(4784, 85655, 'eighty-five thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(4785, 72849, 'seventy-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(4786, 59333, 'fifty-nine thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(4787, 84413, 'eighty-four thousand four hundred thirteen');\nINSERT INTO t2 VALUES(4788, 60015, 'sixty thousand fifteen');\nINSERT INTO t2 VALUES(4789, 77987, 'seventy-seven thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(4790, 49079, 'forty-nine thousand seventy-nine');\nINSERT INTO t2 VALUES(4791, 16080, 'sixteen thousand eighty');\nINSERT INTO t2 VALUES(4792, 64104, 'sixty-four thousand one hundred four');\nINSERT INTO t2 VALUES(4793, 93471, 'ninety-three thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(4794, 38891, 'thirty-eight thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(4795, 91732, 'ninety-one thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(4796, 37815, 'thirty-seven thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(4797, 62190, 'sixty-two thousand one hundred ninety');\nINSERT INTO t2 VALUES(4798, 48543, 'forty-eight thousand five hundred forty-three');\nINSERT INTO t2 VALUES(4799, 97640, 'ninety-seven thousand six hundred forty');\nINSERT INTO t2 VALUES(4800, 28116, 'twenty-eight thousand one hundred sixteen');\nINSERT INTO t2 VALUES(4801, 58220, 'fifty-eight thousand two hundred twenty');\nINSERT INTO t2 VALUES(4802, 55682, 'fifty-five thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(4803, 79669, 'seventy-nine thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(4804, 875, 'eight hundred seventy-five');\nINSERT INTO t2 VALUES(4805, 37484, 'thirty-seven thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(4806, 60499, 'sixty thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(4807, 39708, 'thirty-nine thousand seven hundred eight');\nINSERT INTO t2 VALUES(4808, 42126, 'forty-two thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(4809, 44099, 'forty-four thousand ninety-nine');\nINSERT INTO t2 VALUES(4810, 22129, 'twenty-two thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(4811, 28170, 'twenty-eight thousand one hundred seventy');\nINSERT INTO t2 VALUES(4812, 44039, 'forty-four thousand thirty-nine');\nINSERT INTO t2 VALUES(4813, 15200, 'fifteen thousand two hundred');\nINSERT INTO t2 VALUES(4814, 76217, 'seventy-six thousand two hundred seventeen');\nINSERT INTO t2 VALUES(4815, 1680, 'one thousand six hundred eighty');\nINSERT INTO t2 VALUES(4816, 24500, 'twenty-four thousand five hundred');\nINSERT INTO t2 VALUES(4817, 41140, 'forty-one thousand one hundred forty');\nINSERT INTO t2 VALUES(4818, 26863, 'twenty-six thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(4819, 97029, 'ninety-seven thousand twenty-nine');\nINSERT INTO t2 VALUES(4820, 10602, 'ten thousand six hundred two');\nINSERT INTO t2 VALUES(4821, 42379, 'forty-two thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(4822, 14969, 'fourteen thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(4823, 76245, 'seventy-six thousand two hundred forty-five');\nINSERT INTO t2 VALUES(4824, 66360, 'sixty-six thousand three hundred sixty');\nINSERT INTO t2 VALUES(4825, 75475, 'seventy-five thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(4826, 34858, 'thirty-four thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(4827, 74993, 'seventy-four thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(4828, 19014, 'nineteen thousand fourteen');\nINSERT INTO t2 VALUES(4829, 80289, 'eighty thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(4830, 23267, 'twenty-three thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(4831, 3825, 'three thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(4832, 52691, 'fifty-two thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(4833, 94716, 'ninety-four thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(4834, 37475, 'thirty-seven thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(4835, 10097, 'ten thousand ninety-seven');\nINSERT INTO t2 VALUES(4836, 34612, 'thirty-four thousand six hundred twelve');\nINSERT INTO t2 VALUES(4837, 6177, 'six thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(4838, 79949, 'seventy-nine thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(4839, 2101, 'two thousand one hundred one');\nINSERT INTO t2 VALUES(4840, 92602, 'ninety-two thousand six hundred two');\nINSERT INTO t2 VALUES(4841, 86662, 'eighty-six thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(4842, 4550, 'four thousand five hundred fifty');\nINSERT INTO t2 VALUES(4843, 19952, 'nineteen thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(4844, 85057, 'eighty-five thousand fifty-seven');\nINSERT INTO t2 VALUES(4845, 89932, 'eighty-nine thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(4846, 88702, 'eighty-eight thousand seven hundred two');\nINSERT INTO t2 VALUES(4847, 6053, 'six thousand fifty-three');\nINSERT INTO t2 VALUES(4848, 14956, 'fourteen thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(4849, 82044, 'eighty-two thousand forty-four');\nINSERT INTO t2 VALUES(4850, 40502, 'forty thousand five hundred two');\nINSERT INTO t2 VALUES(4851, 66270, 'sixty-six thousand two hundred seventy');\nINSERT INTO t2 VALUES(4852, 67502, 'sixty-seven thousand five hundred two');\nINSERT INTO t2 VALUES(4853, 16700, 'sixteen thousand seven hundred');\nINSERT INTO t2 VALUES(4854, 3480, 'three thousand four hundred eighty');\nINSERT INTO t2 VALUES(4855, 54407, 'fifty-four thousand four hundred seven');\nINSERT INTO t2 VALUES(4856, 17013, 'seventeen thousand thirteen');\nINSERT INTO t2 VALUES(4857, 58564, 'fifty-eight thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(4858, 12000, 'twelve thousand');\nINSERT INTO t2 VALUES(4859, 80035, 'eighty thousand thirty-five');\nINSERT INTO t2 VALUES(4860, 49411, 'forty-nine thousand four hundred eleven');\nINSERT INTO t2 VALUES(4861, 6612, 'six thousand six hundred twelve');\nINSERT INTO t2 VALUES(4862, 35349, 'thirty-five thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(4863, 78876, 'seventy-eight thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(4864, 15385, 'fifteen thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(4865, 67216, 'sixty-seven thousand two hundred sixteen');\nINSERT INTO t2 VALUES(4866, 20820, 'twenty thousand eight hundred twenty');\nINSERT INTO t2 VALUES(4867, 57372, 'fifty-seven thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(4868, 92182, 'ninety-two thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(4869, 11215, 'eleven thousand two hundred fifteen');\nINSERT INTO t2 VALUES(4870, 71712, 'seventy-one thousand seven hundred twelve');\nINSERT INTO t2 VALUES(4871, 96324, 'ninety-six thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(4872, 59297, 'fifty-nine thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(4873, 41951, 'forty-one thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(4874, 94949, 'ninety-four thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(4875, 89547, 'eighty-nine thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(4876, 62632, 'sixty-two thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(4877, 73077, 'seventy-three thousand seventy-seven');\nINSERT INTO t2 VALUES(4878, 92981, 'ninety-two thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(4879, 6659, 'six thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(4880, 70080, 'seventy thousand eighty');\nINSERT INTO t2 VALUES(4881, 46383, 'forty-six thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(4882, 46585, 'forty-six thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(4883, 18286, 'eighteen thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(4884, 54538, 'fifty-four thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(4885, 36581, 'thirty-six thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(4886, 98167, 'ninety-eight thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(4887, 88869, 'eighty-eight thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(4888, 25749, 'twenty-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(4889, 63033, 'sixty-three thousand thirty-three');\nINSERT INTO t2 VALUES(4890, 35900, 'thirty-five thousand nine hundred');\nINSERT INTO t2 VALUES(4891, 7486, 'seven thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(4892, 94932, 'ninety-four thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(4893, 3554, 'three thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(4894, 30294, 'thirty thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(4895, 83844, 'eighty-three thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(4896, 38278, 'thirty-eight thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(4897, 39034, 'thirty-nine thousand thirty-four');\nINSERT INTO t2 VALUES(4898, 27746, 'twenty-seven thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(4899, 43092, 'forty-three thousand ninety-two');\nINSERT INTO t2 VALUES(4900, 21265, 'twenty-one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(4901, 63625, 'sixty-three thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(4902, 5078, 'five thousand seventy-eight');\nINSERT INTO t2 VALUES(4903, 52275, 'fifty-two thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(4904, 46559, 'forty-six thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(4905, 96165, 'ninety-six thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(4906, 64208, 'sixty-four thousand two hundred eight');\nINSERT INTO t2 VALUES(4907, 92308, 'ninety-two thousand three hundred eight');\nINSERT INTO t2 VALUES(4908, 12430, 'twelve thousand four hundred thirty');\nINSERT INTO t2 VALUES(4909, 15531, 'fifteen thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(4910, 24735, 'twenty-four thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(4911, 67909, 'sixty-seven thousand nine hundred nine');\nINSERT INTO t2 VALUES(4912, 82301, 'eighty-two thousand three hundred one');\nINSERT INTO t2 VALUES(4913, 92672, 'ninety-two thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(4914, 85586, 'eighty-five thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(4915, 28340, 'twenty-eight thousand three hundred forty');\nINSERT INTO t2 VALUES(4916, 61592, 'sixty-one thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(4917, 19250, 'nineteen thousand two hundred fifty');\nINSERT INTO t2 VALUES(4918, 23888, 'twenty-three thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(4919, 2292, 'two thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(4920, 95415, 'ninety-five thousand four hundred fifteen');\nINSERT INTO t2 VALUES(4921, 41490, 'forty-one thousand four hundred ninety');\nINSERT INTO t2 VALUES(4922, 68044, 'sixty-eight thousand forty-four');\nINSERT INTO t2 VALUES(4923, 71962, 'seventy-one thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(4924, 26763, 'twenty-six thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(4925, 99728, 'ninety-nine thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(4926, 61207, 'sixty-one thousand two hundred seven');\nINSERT INTO t2 VALUES(4927, 45953, 'forty-five thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(4928, 99391, 'ninety-nine thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(4929, 9812, 'nine thousand eight hundred twelve');\nINSERT INTO t2 VALUES(4930, 17705, 'seventeen thousand seven hundred five');\nINSERT INTO t2 VALUES(4931, 27902, 'twenty-seven thousand nine hundred two');\nINSERT INTO t2 VALUES(4932, 95210, 'ninety-five thousand two hundred ten');\nINSERT INTO t2 VALUES(4933, 49364, 'forty-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(4934, 52670, 'fifty-two thousand six hundred seventy');\nINSERT INTO t2 VALUES(4935, 92511, 'ninety-two thousand five hundred eleven');\nINSERT INTO t2 VALUES(4936, 97673, 'ninety-seven thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(4937, 54223, 'fifty-four thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(4938, 79805, 'seventy-nine thousand eight hundred five');\nINSERT INTO t2 VALUES(4939, 21130, 'twenty-one thousand one hundred thirty');\nINSERT INTO t2 VALUES(4940, 35937, 'thirty-five thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(4941, 77114, 'seventy-seven thousand one hundred fourteen');\nINSERT INTO t2 VALUES(4942, 67387, 'sixty-seven thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(4943, 37801, 'thirty-seven thousand eight hundred one');\nINSERT INTO t2 VALUES(4944, 77073, 'seventy-seven thousand seventy-three');\nINSERT INTO t2 VALUES(4945, 30190, 'thirty thousand one hundred ninety');\nINSERT INTO t2 VALUES(4946, 95547, 'ninety-five thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(4947, 38975, 'thirty-eight thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(4948, 68527, 'sixty-eight thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(4949, 20626, 'twenty thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(4950, 2671, 'two thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(4951, 46834, 'forty-six thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(4952, 70999, 'seventy thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(4953, 39790, 'thirty-nine thousand seven hundred ninety');\nINSERT INTO t2 VALUES(4954, 25000, 'twenty-five thousand');\nINSERT INTO t2 VALUES(4955, 1183, 'one thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(4956, 68473, 'sixty-eight thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(4957, 7251, 'seven thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(4958, 43609, 'forty-three thousand six hundred nine');\nINSERT INTO t2 VALUES(4959, 5859, 'five thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(4960, 48938, 'forty-eight thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(4961, 70491, 'seventy thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(4962, 36344, 'thirty-six thousand three hundred forty-four');\nINSERT INTO t2 VALUES(4963, 25136, 'twenty-five thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(4964, 5483, 'five thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(4965, 59782, 'fifty-nine thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(4966, 83360, 'eighty-three thousand three hundred sixty');\nINSERT INTO t2 VALUES(4967, 23464, 'twenty-three thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(4968, 44027, 'forty-four thousand twenty-seven');\nINSERT INTO t2 VALUES(4969, 43114, 'forty-three thousand one hundred fourteen');\nINSERT INTO t2 VALUES(4970, 21173, 'twenty-one thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(4971, 73577, 'seventy-three thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(4972, 25946, 'twenty-five thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(4973, 80055, 'eighty thousand fifty-five');\nINSERT INTO t2 VALUES(4974, 74693, 'seventy-four thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(4975, 72656, 'seventy-two thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(4976, 10775, 'ten thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(4977, 50830, 'fifty thousand eight hundred thirty');\nINSERT INTO t2 VALUES(4978, 22257, 'twenty-two thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(4979, 22434, 'twenty-two thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(4980, 44815, 'forty-four thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(4981, 74790, 'seventy-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(4982, 26020, 'twenty-six thousand twenty');\nINSERT INTO t2 VALUES(4983, 74226, 'seventy-four thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(4984, 4612, 'four thousand six hundred twelve');\nINSERT INTO t2 VALUES(4985, 15622, 'fifteen thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(4986, 40404, 'forty thousand four hundred four');\nINSERT INTO t2 VALUES(4987, 57422, 'fifty-seven thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(4988, 29900, 'twenty-nine thousand nine hundred');\nINSERT INTO t2 VALUES(4989, 76359, 'seventy-six thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(4990, 55289, 'fifty-five thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(4991, 47993, 'forty-seven thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(4992, 66117, 'sixty-six thousand one hundred seventeen');\nINSERT INTO t2 VALUES(4993, 54833, 'fifty-four thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(4994, 54347, 'fifty-four thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(4995, 48578, 'forty-eight thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(4996, 21743, 'twenty-one thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(4997, 65712, 'sixty-five thousand seven hundred twelve');\nINSERT INTO t2 VALUES(4998, 99309, 'ninety-nine thousand three hundred nine');\nINSERT INTO t2 VALUES(4999, 56777, 'fifty-six thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(5000, 76006, 'seventy-six thousand six');\nINSERT INTO t2 VALUES(5001, 54584, 'fifty-four thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(5002, 39790, 'thirty-nine thousand seven hundred ninety');\nINSERT INTO t2 VALUES(5003, 76793, 'seventy-six thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(5004, 38354, 'thirty-eight thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(5005, 17321, 'seventeen thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(5006, 35674, 'thirty-five thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(5007, 69052, 'sixty-nine thousand fifty-two');\nINSERT INTO t2 VALUES(5008, 37592, 'thirty-seven thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(5009, 19592, 'nineteen thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(5010, 41696, 'forty-one thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(5011, 46847, 'forty-six thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(5012, 5559, 'five thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(5013, 13973, 'thirteen thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(5014, 85494, 'eighty-five thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5015, 10036, 'ten thousand thirty-six');\nINSERT INTO t2 VALUES(5016, 3631, 'three thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(5017, 4271, 'four thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(5018, 15463, 'fifteen thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(5019, 90687, 'ninety thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(5020, 84615, 'eighty-four thousand six hundred fifteen');\nINSERT INTO t2 VALUES(5021, 13213, 'thirteen thousand two hundred thirteen');\nINSERT INTO t2 VALUES(5022, 71979, 'seventy-one thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(5023, 20880, 'twenty thousand eight hundred eighty');\nINSERT INTO t2 VALUES(5024, 33689, 'thirty-three thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(5025, 2246, 'two thousand two hundred forty-six');\nINSERT INTO t2 VALUES(5026, 53994, 'fifty-three thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(5027, 5916, 'five thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(5028, 43769, 'forty-three thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(5029, 23461, 'twenty-three thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(5030, 29527, 'twenty-nine thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(5031, 25637, 'twenty-five thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(5032, 23596, 'twenty-three thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(5033, 58673, 'fifty-eight thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(5034, 56218, 'fifty-six thousand two hundred eighteen');\nINSERT INTO t2 VALUES(5035, 15854, 'fifteen thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(5036, 13049, 'thirteen thousand forty-nine');\nINSERT INTO t2 VALUES(5037, 11890, 'eleven thousand eight hundred ninety');\nINSERT INTO t2 VALUES(5038, 90603, 'ninety thousand six hundred three');\nINSERT INTO t2 VALUES(5039, 7377, 'seven thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(5040, 81798, 'eighty-one thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(5041, 45721, 'forty-five thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(5042, 76444, 'seventy-six thousand four hundred forty-four');\nINSERT INTO t2 VALUES(5043, 59561, 'fifty-nine thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(5044, 56704, 'fifty-six thousand seven hundred four');\nINSERT INTO t2 VALUES(5045, 23426, 'twenty-three thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(5046, 83766, 'eighty-three thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(5047, 85627, 'eighty-five thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(5048, 89080, 'eighty-nine thousand eighty');\nINSERT INTO t2 VALUES(5049, 78973, 'seventy-eight thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(5050, 83165, 'eighty-three thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(5051, 69505, 'sixty-nine thousand five hundred five');\nINSERT INTO t2 VALUES(5052, 10825, 'ten thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(5053, 84581, 'eighty-four thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(5054, 60573, 'sixty thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(5055, 66580, 'sixty-six thousand five hundred eighty');\nINSERT INTO t2 VALUES(5056, 21178, 'twenty-one thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(5057, 55881, 'fifty-five thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(5058, 65284, 'sixty-five thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(5059, 75245, 'seventy-five thousand two hundred forty-five');\nINSERT INTO t2 VALUES(5060, 97129, 'ninety-seven thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(5061, 51314, 'fifty-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(5062, 56590, 'fifty-six thousand five hundred ninety');\nINSERT INTO t2 VALUES(5063, 80409, 'eighty thousand four hundred nine');\nINSERT INTO t2 VALUES(5064, 90545, 'ninety thousand five hundred forty-five');\nINSERT INTO t2 VALUES(5065, 11948, 'eleven thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(5066, 75688, 'seventy-five thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(5067, 42655, 'forty-two thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(5068, 48614, 'forty-eight thousand six hundred fourteen');\nINSERT INTO t2 VALUES(5069, 86866, 'eighty-six thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(5070, 17972, 'seventeen thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(5071, 92293, 'ninety-two thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(5072, 26566, 'twenty-six thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(5073, 67710, 'sixty-seven thousand seven hundred ten');\nINSERT INTO t2 VALUES(5074, 40950, 'forty thousand nine hundred fifty');\nINSERT INTO t2 VALUES(5075, 67035, 'sixty-seven thousand thirty-five');\nINSERT INTO t2 VALUES(5076, 30157, 'thirty thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(5077, 90995, 'ninety thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(5078, 23306, 'twenty-three thousand three hundred six');\nINSERT INTO t2 VALUES(5079, 23727, 'twenty-three thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(5080, 28854, 'twenty-eight thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(5081, 5609, 'five thousand six hundred nine');\nINSERT INTO t2 VALUES(5082, 69635, 'sixty-nine thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(5083, 75082, 'seventy-five thousand eighty-two');\nINSERT INTO t2 VALUES(5084, 61201, 'sixty-one thousand two hundred one');\nINSERT INTO t2 VALUES(5085, 64915, 'sixty-four thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(5086, 34554, 'thirty-four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(5087, 39827, 'thirty-nine thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(5088, 36853, 'thirty-six thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(5089, 25298, 'twenty-five thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(5090, 47949, 'forty-seven thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(5091, 55069, 'fifty-five thousand sixty-nine');\nINSERT INTO t2 VALUES(5092, 41503, 'forty-one thousand five hundred three');\nINSERT INTO t2 VALUES(5093, 561, 'five hundred sixty-one');\nINSERT INTO t2 VALUES(5094, 13146, 'thirteen thousand one hundred forty-six');\nINSERT INTO t2 VALUES(5095, 51192, 'fifty-one thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(5096, 19, 'nineteen');\nINSERT INTO t2 VALUES(5097, 23490, 'twenty-three thousand four hundred ninety');\nINSERT INTO t2 VALUES(5098, 18597, 'eighteen thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(5099, 53051, 'fifty-three thousand fifty-one');\nINSERT INTO t2 VALUES(5100, 97504, 'ninety-seven thousand five hundred four');\nINSERT INTO t2 VALUES(5101, 53810, 'fifty-three thousand eight hundred ten');\nINSERT INTO t2 VALUES(5102, 38016, 'thirty-eight thousand sixteen');\nINSERT INTO t2 VALUES(5103, 94589, 'ninety-four thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(5104, 64425, 'sixty-four thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(5105, 77528, 'seventy-seven thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(5106, 97225, 'ninety-seven thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(5107, 98349, 'ninety-eight thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(5108, 80922, 'eighty thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(5109, 17451, 'seventeen thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(5110, 70869, 'seventy thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(5111, 41319, 'forty-one thousand three hundred nineteen');\nINSERT INTO t2 VALUES(5112, 31242, 'thirty-one thousand two hundred forty-two');\nINSERT INTO t2 VALUES(5113, 31776, 'thirty-one thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(5114, 93588, 'ninety-three thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(5115, 67748, 'sixty-seven thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(5116, 84330, 'eighty-four thousand three hundred thirty');\nINSERT INTO t2 VALUES(5117, 80165, 'eighty thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(5118, 83666, 'eighty-three thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(5119, 62516, 'sixty-two thousand five hundred sixteen');\nINSERT INTO t2 VALUES(5120, 24093, 'twenty-four thousand ninety-three');\nINSERT INTO t2 VALUES(5121, 33489, 'thirty-three thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(5122, 38940, 'thirty-eight thousand nine hundred forty');\nINSERT INTO t2 VALUES(5123, 36679, 'thirty-six thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(5124, 42106, 'forty-two thousand one hundred six');\nINSERT INTO t2 VALUES(5125, 51646, 'fifty-one thousand six hundred forty-six');\nINSERT INTO t2 VALUES(5126, 91814, 'ninety-one thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(5127, 59360, 'fifty-nine thousand three hundred sixty');\nINSERT INTO t2 VALUES(5128, 17219, 'seventeen thousand two hundred nineteen');\nINSERT INTO t2 VALUES(5129, 54693, 'fifty-four thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(5130, 88067, 'eighty-eight thousand sixty-seven');\nINSERT INTO t2 VALUES(5131, 78746, 'seventy-eight thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(5132, 40542, 'forty thousand five hundred forty-two');\nINSERT INTO t2 VALUES(5133, 82944, 'eighty-two thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(5134, 36885, 'thirty-six thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(5135, 6810, 'six thousand eight hundred ten');\nINSERT INTO t2 VALUES(5136, 2586, 'two thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(5137, 26637, 'twenty-six thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(5138, 27621, 'twenty-seven thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(5139, 8355, 'eight thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(5140, 84173, 'eighty-four thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(5141, 36366, 'thirty-six thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(5142, 91644, 'ninety-one thousand six hundred forty-four');\nINSERT INTO t2 VALUES(5143, 87484, 'eighty-seven thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(5144, 46132, 'forty-six thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(5145, 60494, 'sixty thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5146, 76727, 'seventy-six thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(5147, 50231, 'fifty thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(5148, 58520, 'fifty-eight thousand five hundred twenty');\nINSERT INTO t2 VALUES(5149, 87954, 'eighty-seven thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(5150, 79266, 'seventy-nine thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(5151, 79677, 'seventy-nine thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(5152, 93605, 'ninety-three thousand six hundred five');\nINSERT INTO t2 VALUES(5153, 56204, 'fifty-six thousand two hundred four');\nINSERT INTO t2 VALUES(5154, 21078, 'twenty-one thousand seventy-eight');\nINSERT INTO t2 VALUES(5155, 73086, 'seventy-three thousand eighty-six');\nINSERT INTO t2 VALUES(5156, 78933, 'seventy-eight thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(5157, 79104, 'seventy-nine thousand one hundred four');\nINSERT INTO t2 VALUES(5158, 9544, 'nine thousand five hundred forty-four');\nINSERT INTO t2 VALUES(5159, 49912, 'forty-nine thousand nine hundred twelve');\nINSERT INTO t2 VALUES(5160, 93064, 'ninety-three thousand sixty-four');\nINSERT INTO t2 VALUES(5161, 35041, 'thirty-five thousand forty-one');\nINSERT INTO t2 VALUES(5162, 5671, 'five thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(5163, 52072, 'fifty-two thousand seventy-two');\nINSERT INTO t2 VALUES(5164, 6455, 'six thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(5165, 42472, 'forty-two thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(5166, 47328, 'forty-seven thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(5167, 69741, 'sixty-nine thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(5168, 83016, 'eighty-three thousand sixteen');\nINSERT INTO t2 VALUES(5169, 74810, 'seventy-four thousand eight hundred ten');\nINSERT INTO t2 VALUES(5170, 18469, 'eighteen thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(5171, 32678, 'thirty-two thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(5172, 87525, 'eighty-seven thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(5173, 17571, 'seventeen thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(5174, 81233, 'eighty-one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(5175, 92721, 'ninety-two thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(5176, 89026, 'eighty-nine thousand twenty-six');\nINSERT INTO t2 VALUES(5177, 77797, 'seventy-seven thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(5178, 38063, 'thirty-eight thousand sixty-three');\nINSERT INTO t2 VALUES(5179, 5244, 'five thousand two hundred forty-four');\nINSERT INTO t2 VALUES(5180, 67173, 'sixty-seven thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(5181, 65154, 'sixty-five thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(5182, 79458, 'seventy-nine thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(5183, 24147, 'twenty-four thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(5184, 8676, 'eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(5185, 73329, 'seventy-three thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(5186, 2066, 'two thousand sixty-six');\nINSERT INTO t2 VALUES(5187, 76724, 'seventy-six thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(5188, 44702, 'forty-four thousand seven hundred two');\nINSERT INTO t2 VALUES(5189, 41851, 'forty-one thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(5190, 48920, 'forty-eight thousand nine hundred twenty');\nINSERT INTO t2 VALUES(5191, 15050, 'fifteen thousand fifty');\nINSERT INTO t2 VALUES(5192, 54443, 'fifty-four thousand four hundred forty-three');\nINSERT INTO t2 VALUES(5193, 53268, 'fifty-three thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(5194, 8007, 'eight thousand seven');\nINSERT INTO t2 VALUES(5195, 28339, 'twenty-eight thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(5196, 10340, 'ten thousand three hundred forty');\nINSERT INTO t2 VALUES(5197, 84652, 'eighty-four thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(5198, 86770, 'eighty-six thousand seven hundred seventy');\nINSERT INTO t2 VALUES(5199, 71747, 'seventy-one thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(5200, 35653, 'thirty-five thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(5201, 97934, 'ninety-seven thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(5202, 76458, 'seventy-six thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(5203, 61364, 'sixty-one thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(5204, 39435, 'thirty-nine thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(5205, 9286, 'nine thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(5206, 32518, 'thirty-two thousand five hundred eighteen');\nINSERT INTO t2 VALUES(5207, 88687, 'eighty-eight thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(5208, 13900, 'thirteen thousand nine hundred');\nINSERT INTO t2 VALUES(5209, 87256, 'eighty-seven thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(5210, 31493, 'thirty-one thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(5211, 28515, 'twenty-eight thousand five hundred fifteen');\nINSERT INTO t2 VALUES(5212, 13386, 'thirteen thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(5213, 81764, 'eighty-one thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(5214, 32266, 'thirty-two thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(5215, 51612, 'fifty-one thousand six hundred twelve');\nINSERT INTO t2 VALUES(5216, 89157, 'eighty-nine thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(5217, 55315, 'fifty-five thousand three hundred fifteen');\nINSERT INTO t2 VALUES(5218, 92005, 'ninety-two thousand five');\nINSERT INTO t2 VALUES(5219, 27552, 'twenty-seven thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(5220, 92540, 'ninety-two thousand five hundred forty');\nINSERT INTO t2 VALUES(5221, 70516, 'seventy thousand five hundred sixteen');\nINSERT INTO t2 VALUES(5222, 85849, 'eighty-five thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(5223, 97216, 'ninety-seven thousand two hundred sixteen');\nINSERT INTO t2 VALUES(5224, 30165, 'thirty thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(5225, 40762, 'forty thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(5226, 56910, 'fifty-six thousand nine hundred ten');\nINSERT INTO t2 VALUES(5227, 54585, 'fifty-four thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(5228, 13498, 'thirteen thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(5229, 97417, 'ninety-seven thousand four hundred seventeen');\nINSERT INTO t2 VALUES(5230, 42402, 'forty-two thousand four hundred two');\nINSERT INTO t2 VALUES(5231, 18751, 'eighteen thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(5232, 42342, 'forty-two thousand three hundred forty-two');\nINSERT INTO t2 VALUES(5233, 86201, 'eighty-six thousand two hundred one');\nINSERT INTO t2 VALUES(5234, 10814, 'ten thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(5235, 72891, 'seventy-two thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(5236, 86595, 'eighty-six thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(5237, 2117, 'two thousand one hundred seventeen');\nINSERT INTO t2 VALUES(5238, 80556, 'eighty thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(5239, 16822, 'sixteen thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(5240, 28227, 'twenty-eight thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(5241, 86732, 'eighty-six thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(5242, 27483, 'twenty-seven thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(5243, 90741, 'ninety thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(5244, 76751, 'seventy-six thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(5245, 51783, 'fifty-one thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(5246, 71838, 'seventy-one thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(5247, 38091, 'thirty-eight thousand ninety-one');\nINSERT INTO t2 VALUES(5248, 17093, 'seventeen thousand ninety-three');\nINSERT INTO t2 VALUES(5249, 93920, 'ninety-three thousand nine hundred twenty');\nINSERT INTO t2 VALUES(5250, 52613, 'fifty-two thousand six hundred thirteen');\nINSERT INTO t2 VALUES(5251, 86579, 'eighty-six thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(5252, 56256, 'fifty-six thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(5253, 98577, 'ninety-eight thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(5254, 89371, 'eighty-nine thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(5255, 24810, 'twenty-four thousand eight hundred ten');\nINSERT INTO t2 VALUES(5256, 6151, 'six thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(5257, 75612, 'seventy-five thousand six hundred twelve');\nINSERT INTO t2 VALUES(5258, 85805, 'eighty-five thousand eight hundred five');\nINSERT INTO t2 VALUES(5259, 56894, 'fifty-six thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(5260, 35404, 'thirty-five thousand four hundred four');\nINSERT INTO t2 VALUES(5261, 88306, 'eighty-eight thousand three hundred six');\nINSERT INTO t2 VALUES(5262, 15494, 'fifteen thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5263, 74473, 'seventy-four thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(5264, 12515, 'twelve thousand five hundred fifteen');\nINSERT INTO t2 VALUES(5265, 52947, 'fifty-two thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(5266, 15232, 'fifteen thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(5267, 49211, 'forty-nine thousand two hundred eleven');\nINSERT INTO t2 VALUES(5268, 56245, 'fifty-six thousand two hundred forty-five');\nINSERT INTO t2 VALUES(5269, 17399, 'seventeen thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(5270, 91665, 'ninety-one thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(5271, 25665, 'twenty-five thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(5272, 13642, 'thirteen thousand six hundred forty-two');\nINSERT INTO t2 VALUES(5273, 48906, 'forty-eight thousand nine hundred six');\nINSERT INTO t2 VALUES(5274, 98863, 'ninety-eight thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(5275, 70699, 'seventy thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(5276, 95159, 'ninety-five thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(5277, 46816, 'forty-six thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(5278, 29965, 'twenty-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(5279, 38079, 'thirty-eight thousand seventy-nine');\nINSERT INTO t2 VALUES(5280, 78684, 'seventy-eight thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(5281, 98015, 'ninety-eight thousand fifteen');\nINSERT INTO t2 VALUES(5282, 84140, 'eighty-four thousand one hundred forty');\nINSERT INTO t2 VALUES(5283, 67008, 'sixty-seven thousand eight');\nINSERT INTO t2 VALUES(5284, 31002, 'thirty-one thousand two');\nINSERT INTO t2 VALUES(5285, 46896, 'forty-six thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(5286, 36661, 'thirty-six thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(5287, 20725, 'twenty thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(5288, 71532, 'seventy-one thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(5289, 3593, 'three thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(5290, 50285, 'fifty thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(5291, 58550, 'fifty-eight thousand five hundred fifty');\nINSERT INTO t2 VALUES(5292, 71421, 'seventy-one thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(5293, 96097, 'ninety-six thousand ninety-seven');\nINSERT INTO t2 VALUES(5294, 4435, 'four thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(5295, 3892, 'three thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(5296, 51210, 'fifty-one thousand two hundred ten');\nINSERT INTO t2 VALUES(5297, 53839, 'fifty-three thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(5298, 87236, 'eighty-seven thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(5299, 16280, 'sixteen thousand two hundred eighty');\nINSERT INTO t2 VALUES(5300, 52159, 'fifty-two thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(5301, 82213, 'eighty-two thousand two hundred thirteen');\nINSERT INTO t2 VALUES(5302, 26845, 'twenty-six thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(5303, 61810, 'sixty-one thousand eight hundred ten');\nINSERT INTO t2 VALUES(5304, 9123, 'nine thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(5305, 81912, 'eighty-one thousand nine hundred twelve');\nINSERT INTO t2 VALUES(5306, 76933, 'seventy-six thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(5307, 59179, 'fifty-nine thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(5308, 5154, 'five thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(5309, 15991, 'fifteen thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(5310, 26294, 'twenty-six thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(5311, 63443, 'sixty-three thousand four hundred forty-three');\nINSERT INTO t2 VALUES(5312, 66173, 'sixty-six thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(5313, 92104, 'ninety-two thousand one hundred four');\nINSERT INTO t2 VALUES(5314, 10510, 'ten thousand five hundred ten');\nINSERT INTO t2 VALUES(5315, 16649, 'sixteen thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(5316, 43854, 'forty-three thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(5317, 19392, 'nineteen thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(5318, 21171, 'twenty-one thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(5319, 25855, 'twenty-five thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(5320, 95460, 'ninety-five thousand four hundred sixty');\nINSERT INTO t2 VALUES(5321, 47633, 'forty-seven thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(5322, 18779, 'eighteen thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(5323, 84801, 'eighty-four thousand eight hundred one');\nINSERT INTO t2 VALUES(5324, 22188, 'twenty-two thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(5325, 6775, 'six thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(5326, 81569, 'eighty-one thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(5327, 6448, 'six thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(5328, 48952, 'forty-eight thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(5329, 46673, 'forty-six thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(5330, 89818, 'eighty-nine thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(5331, 26596, 'twenty-six thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(5332, 75812, 'seventy-five thousand eight hundred twelve');\nINSERT INTO t2 VALUES(5333, 10302, 'ten thousand three hundred two');\nINSERT INTO t2 VALUES(5334, 10591, 'ten thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(5335, 61893, 'sixty-one thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(5336, 38316, 'thirty-eight thousand three hundred sixteen');\nINSERT INTO t2 VALUES(5337, 61177, 'sixty-one thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(5338, 10551, 'ten thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(5339, 42025, 'forty-two thousand twenty-five');\nINSERT INTO t2 VALUES(5340, 87494, 'eighty-seven thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5341, 4547, 'four thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(5342, 46428, 'forty-six thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(5343, 79016, 'seventy-nine thousand sixteen');\nINSERT INTO t2 VALUES(5344, 92130, 'ninety-two thousand one hundred thirty');\nINSERT INTO t2 VALUES(5345, 79710, 'seventy-nine thousand seven hundred ten');\nINSERT INTO t2 VALUES(5346, 22620, 'twenty-two thousand six hundred twenty');\nINSERT INTO t2 VALUES(5347, 27008, 'twenty-seven thousand eight');\nINSERT INTO t2 VALUES(5348, 57971, 'fifty-seven thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(5349, 80720, 'eighty thousand seven hundred twenty');\nINSERT INTO t2 VALUES(5350, 70781, 'seventy thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(5351, 75601, 'seventy-five thousand six hundred one');\nINSERT INTO t2 VALUES(5352, 53397, 'fifty-three thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(5353, 88942, 'eighty-eight thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(5354, 94640, 'ninety-four thousand six hundred forty');\nINSERT INTO t2 VALUES(5355, 11939, 'eleven thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(5356, 40217, 'forty thousand two hundred seventeen');\nINSERT INTO t2 VALUES(5357, 6737, 'six thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(5358, 4726, 'four thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(5359, 81980, 'eighty-one thousand nine hundred eighty');\nINSERT INTO t2 VALUES(5360, 60457, 'sixty thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(5361, 18045, 'eighteen thousand forty-five');\nINSERT INTO t2 VALUES(5362, 29445, 'twenty-nine thousand four hundred forty-five');\nINSERT INTO t2 VALUES(5363, 91888, 'ninety-one thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(5364, 88004, 'eighty-eight thousand four');\nINSERT INTO t2 VALUES(5365, 57146, 'fifty-seven thousand one hundred forty-six');\nINSERT INTO t2 VALUES(5366, 37922, 'thirty-seven thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(5367, 88257, 'eighty-eight thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(5368, 30211, 'thirty thousand two hundred eleven');\nINSERT INTO t2 VALUES(5369, 10159, 'ten thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(5370, 4876, 'four thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(5371, 43935, 'forty-three thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(5372, 12446, 'twelve thousand four hundred forty-six');\nINSERT INTO t2 VALUES(5373, 64890, 'sixty-four thousand eight hundred ninety');\nINSERT INTO t2 VALUES(5374, 80042, 'eighty thousand forty-two');\nINSERT INTO t2 VALUES(5375, 14013, 'fourteen thousand thirteen');\nINSERT INTO t2 VALUES(5376, 29042, 'twenty-nine thousand forty-two');\nINSERT INTO t2 VALUES(5377, 29986, 'twenty-nine thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(5378, 84562, 'eighty-four thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(5379, 82043, 'eighty-two thousand forty-three');\nINSERT INTO t2 VALUES(5380, 31130, 'thirty-one thousand one hundred thirty');\nINSERT INTO t2 VALUES(5381, 13528, 'thirteen thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(5382, 14565, 'fourteen thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(5383, 6903, 'six thousand nine hundred three');\nINSERT INTO t2 VALUES(5384, 93742, 'ninety-three thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(5385, 11882, 'eleven thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(5386, 21475, 'twenty-one thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(5387, 49950, 'forty-nine thousand nine hundred fifty');\nINSERT INTO t2 VALUES(5388, 57661, 'fifty-seven thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(5389, 7120, 'seven thousand one hundred twenty');\nINSERT INTO t2 VALUES(5390, 43494, 'forty-three thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5391, 18687, 'eighteen thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(5392, 44254, 'forty-four thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(5393, 65021, 'sixty-five thousand twenty-one');\nINSERT INTO t2 VALUES(5394, 94232, 'ninety-four thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(5395, 94726, 'ninety-four thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(5396, 60279, 'sixty thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(5397, 21576, 'twenty-one thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(5398, 52825, 'fifty-two thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(5399, 79015, 'seventy-nine thousand fifteen');\nINSERT INTO t2 VALUES(5400, 66967, 'sixty-six thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(5401, 24511, 'twenty-four thousand five hundred eleven');\nINSERT INTO t2 VALUES(5402, 48642, 'forty-eight thousand six hundred forty-two');\nINSERT INTO t2 VALUES(5403, 53963, 'fifty-three thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(5404, 87270, 'eighty-seven thousand two hundred seventy');\nINSERT INTO t2 VALUES(5405, 58494, 'fifty-eight thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5406, 19483, 'nineteen thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(5407, 72540, 'seventy-two thousand five hundred forty');\nINSERT INTO t2 VALUES(5408, 11120, 'eleven thousand one hundred twenty');\nINSERT INTO t2 VALUES(5409, 13105, 'thirteen thousand one hundred five');\nINSERT INTO t2 VALUES(5410, 57833, 'fifty-seven thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(5411, 62579, 'sixty-two thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(5412, 58150, 'fifty-eight thousand one hundred fifty');\nINSERT INTO t2 VALUES(5413, 48699, 'forty-eight thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(5414, 51358, 'fifty-one thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(5415, 64428, 'sixty-four thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(5416, 66843, 'sixty-six thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(5417, 78413, 'seventy-eight thousand four hundred thirteen');\nINSERT INTO t2 VALUES(5418, 11829, 'eleven thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(5419, 15371, 'fifteen thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(5420, 15426, 'fifteen thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(5421, 31964, 'thirty-one thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(5422, 48974, 'forty-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(5423, 62210, 'sixty-two thousand two hundred ten');\nINSERT INTO t2 VALUES(5424, 65849, 'sixty-five thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(5425, 50671, 'fifty thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(5426, 3958, 'three thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(5427, 86753, 'eighty-six thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(5428, 2371, 'two thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(5429, 40468, 'forty thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(5430, 58504, 'fifty-eight thousand five hundred four');\nINSERT INTO t2 VALUES(5431, 57238, 'fifty-seven thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(5432, 31687, 'thirty-one thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(5433, 24129, 'twenty-four thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(5434, 64691, 'sixty-four thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(5435, 18869, 'eighteen thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(5436, 26724, 'twenty-six thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(5437, 36431, 'thirty-six thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(5438, 42625, 'forty-two thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(5439, 57801, 'fifty-seven thousand eight hundred one');\nINSERT INTO t2 VALUES(5440, 99459, 'ninety-nine thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(5441, 49376, 'forty-nine thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(5442, 96477, 'ninety-six thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(5443, 77880, 'seventy-seven thousand eight hundred eighty');\nINSERT INTO t2 VALUES(5444, 86640, 'eighty-six thousand six hundred forty');\nINSERT INTO t2 VALUES(5445, 73522, 'seventy-three thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(5446, 42879, 'forty-two thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(5447, 68835, 'sixty-eight thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(5448, 88990, 'eighty-eight thousand nine hundred ninety');\nINSERT INTO t2 VALUES(5449, 63962, 'sixty-three thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(5450, 55163, 'fifty-five thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(5451, 87425, 'eighty-seven thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(5452, 29853, 'twenty-nine thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(5453, 37715, 'thirty-seven thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(5454, 44952, 'forty-four thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(5455, 65607, 'sixty-five thousand six hundred seven');\nINSERT INTO t2 VALUES(5456, 6073, 'six thousand seventy-three');\nINSERT INTO t2 VALUES(5457, 9230, 'nine thousand two hundred thirty');\nINSERT INTO t2 VALUES(5458, 46462, 'forty-six thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(5459, 59262, 'fifty-nine thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(5460, 94289, 'ninety-four thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(5461, 98634, 'ninety-eight thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(5462, 23407, 'twenty-three thousand four hundred seven');\nINSERT INTO t2 VALUES(5463, 40593, 'forty thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(5464, 20043, 'twenty thousand forty-three');\nINSERT INTO t2 VALUES(5465, 49286, 'forty-nine thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(5466, 95838, 'ninety-five thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(5467, 54130, 'fifty-four thousand one hundred thirty');\nINSERT INTO t2 VALUES(5468, 48392, 'forty-eight thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(5469, 20104, 'twenty thousand one hundred four');\nINSERT INTO t2 VALUES(5470, 30773, 'thirty thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(5471, 4376, 'four thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(5472, 77786, 'seventy-seven thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(5473, 76515, 'seventy-six thousand five hundred fifteen');\nINSERT INTO t2 VALUES(5474, 68599, 'sixty-eight thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(5475, 63128, 'sixty-three thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(5476, 90837, 'ninety thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(5477, 88521, 'eighty-eight thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(5478, 87382, 'eighty-seven thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(5479, 70390, 'seventy thousand three hundred ninety');\nINSERT INTO t2 VALUES(5480, 36387, 'thirty-six thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(5481, 59666, 'fifty-nine thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(5482, 47147, 'forty-seven thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(5483, 19549, 'nineteen thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(5484, 95069, 'ninety-five thousand sixty-nine');\nINSERT INTO t2 VALUES(5485, 17021, 'seventeen thousand twenty-one');\nINSERT INTO t2 VALUES(5486, 77406, 'seventy-seven thousand four hundred six');\nINSERT INTO t2 VALUES(5487, 73802, 'seventy-three thousand eight hundred two');\nINSERT INTO t2 VALUES(5488, 14418, 'fourteen thousand four hundred eighteen');\nINSERT INTO t2 VALUES(5489, 88608, 'eighty-eight thousand six hundred eight');\nINSERT INTO t2 VALUES(5490, 29278, 'twenty-nine thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(5491, 88753, 'eighty-eight thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(5492, 50061, 'fifty thousand sixty-one');\nINSERT INTO t2 VALUES(5493, 17050, 'seventeen thousand fifty');\nINSERT INTO t2 VALUES(5494, 95011, 'ninety-five thousand eleven');\nINSERT INTO t2 VALUES(5495, 51750, 'fifty-one thousand seven hundred fifty');\nINSERT INTO t2 VALUES(5496, 80705, 'eighty thousand seven hundred five');\nINSERT INTO t2 VALUES(5497, 44345, 'forty-four thousand three hundred forty-five');\nINSERT INTO t2 VALUES(5498, 38521, 'thirty-eight thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(5499, 72242, 'seventy-two thousand two hundred forty-two');\nINSERT INTO t2 VALUES(5500, 3791, 'three thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(5501, 79979, 'seventy-nine thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(5502, 34828, 'thirty-four thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(5503, 59868, 'fifty-nine thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(5504, 71739, 'seventy-one thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(5505, 15740, 'fifteen thousand seven hundred forty');\nINSERT INTO t2 VALUES(5506, 76279, 'seventy-six thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(5507, 31368, 'thirty-one thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(5508, 81182, 'eighty-one thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(5509, 84862, 'eighty-four thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(5510, 46421, 'forty-six thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(5511, 74788, 'seventy-four thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(5512, 84992, 'eighty-four thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(5513, 88537, 'eighty-eight thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(5514, 2609, 'two thousand six hundred nine');\nINSERT INTO t2 VALUES(5515, 34928, 'thirty-four thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(5516, 82221, 'eighty-two thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(5517, 52138, 'fifty-two thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(5518, 73310, 'seventy-three thousand three hundred ten');\nINSERT INTO t2 VALUES(5519, 89282, 'eighty-nine thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(5520, 33292, 'thirty-three thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(5521, 88606, 'eighty-eight thousand six hundred six');\nINSERT INTO t2 VALUES(5522, 35217, 'thirty-five thousand two hundred seventeen');\nINSERT INTO t2 VALUES(5523, 18997, 'eighteen thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(5524, 53975, 'fifty-three thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(5525, 66917, 'sixty-six thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(5526, 11438, 'eleven thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(5527, 94326, 'ninety-four thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(5528, 62255, 'sixty-two thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(5529, 21, 'twenty-one');\nINSERT INTO t2 VALUES(5530, 38807, 'thirty-eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(5531, 96504, 'ninety-six thousand five hundred four');\nINSERT INTO t2 VALUES(5532, 30282, 'thirty thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(5533, 38200, 'thirty-eight thousand two hundred');\nINSERT INTO t2 VALUES(5534, 75241, 'seventy-five thousand two hundred forty-one');\nINSERT INTO t2 VALUES(5535, 12441, 'twelve thousand four hundred forty-one');\nINSERT INTO t2 VALUES(5536, 7669, 'seven thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(5537, 54797, 'fifty-four thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(5538, 97746, 'ninety-seven thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(5539, 3746, 'three thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(5540, 83599, 'eighty-three thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(5541, 85428, 'eighty-five thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(5542, 30066, 'thirty thousand sixty-six');\nINSERT INTO t2 VALUES(5543, 17243, 'seventeen thousand two hundred forty-three');\nINSERT INTO t2 VALUES(5544, 75160, 'seventy-five thousand one hundred sixty');\nINSERT INTO t2 VALUES(5545, 55203, 'fifty-five thousand two hundred three');\nINSERT INTO t2 VALUES(5546, 42604, 'forty-two thousand six hundred four');\nINSERT INTO t2 VALUES(5547, 47921, 'forty-seven thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(5548, 16561, 'sixteen thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(5549, 35959, 'thirty-five thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(5550, 82256, 'eighty-two thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(5551, 32316, 'thirty-two thousand three hundred sixteen');\nINSERT INTO t2 VALUES(5552, 48684, 'forty-eight thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(5553, 94375, 'ninety-four thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(5554, 2530, 'two thousand five hundred thirty');\nINSERT INTO t2 VALUES(5555, 34569, 'thirty-four thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(5556, 69306, 'sixty-nine thousand three hundred six');\nINSERT INTO t2 VALUES(5557, 76109, 'seventy-six thousand one hundred nine');\nINSERT INTO t2 VALUES(5558, 34619, 'thirty-four thousand six hundred nineteen');\nINSERT INTO t2 VALUES(5559, 55537, 'fifty-five thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(5560, 9274, 'nine thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(5561, 80654, 'eighty thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(5562, 88660, 'eighty-eight thousand six hundred sixty');\nINSERT INTO t2 VALUES(5563, 86713, 'eighty-six thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(5564, 26428, 'twenty-six thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(5565, 30644, 'thirty thousand six hundred forty-four');\nINSERT INTO t2 VALUES(5566, 79211, 'seventy-nine thousand two hundred eleven');\nINSERT INTO t2 VALUES(5567, 2184, 'two thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(5568, 13264, 'thirteen thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(5569, 21110, 'twenty-one thousand one hundred ten');\nINSERT INTO t2 VALUES(5570, 30463, 'thirty thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(5571, 43812, 'forty-three thousand eight hundred twelve');\nINSERT INTO t2 VALUES(5572, 74889, 'seventy-four thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(5573, 77347, 'seventy-seven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(5574, 75806, 'seventy-five thousand eight hundred six');\nINSERT INTO t2 VALUES(5575, 35751, 'thirty-five thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(5576, 98489, 'ninety-eight thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(5577, 20337, 'twenty thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(5578, 59570, 'fifty-nine thousand five hundred seventy');\nINSERT INTO t2 VALUES(5579, 67132, 'sixty-seven thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(5580, 64587, 'sixty-four thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(5581, 57435, 'fifty-seven thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(5582, 52733, 'fifty-two thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(5583, 10025, 'ten thousand twenty-five');\nINSERT INTO t2 VALUES(5584, 14289, 'fourteen thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(5585, 25234, 'twenty-five thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(5586, 47838, 'forty-seven thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(5587, 6962, 'six thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(5588, 64479, 'sixty-four thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(5589, 92528, 'ninety-two thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(5590, 21696, 'twenty-one thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(5591, 48013, 'forty-eight thousand thirteen');\nINSERT INTO t2 VALUES(5592, 14313, 'fourteen thousand three hundred thirteen');\nINSERT INTO t2 VALUES(5593, 62297, 'sixty-two thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(5594, 19885, 'nineteen thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(5595, 17912, 'seventeen thousand nine hundred twelve');\nINSERT INTO t2 VALUES(5596, 72982, 'seventy-two thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(5597, 64728, 'sixty-four thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(5598, 42807, 'forty-two thousand eight hundred seven');\nINSERT INTO t2 VALUES(5599, 6279, 'six thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(5600, 83004, 'eighty-three thousand four');\nINSERT INTO t2 VALUES(5601, 94580, 'ninety-four thousand five hundred eighty');\nINSERT INTO t2 VALUES(5602, 2075, 'two thousand seventy-five');\nINSERT INTO t2 VALUES(5603, 86052, 'eighty-six thousand fifty-two');\nINSERT INTO t2 VALUES(5604, 88043, 'eighty-eight thousand forty-three');\nINSERT INTO t2 VALUES(5605, 61411, 'sixty-one thousand four hundred eleven');\nINSERT INTO t2 VALUES(5606, 39811, 'thirty-nine thousand eight hundred eleven');\nINSERT INTO t2 VALUES(5607, 1233, 'one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(5608, 51964, 'fifty-one thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(5609, 27144, 'twenty-seven thousand one hundred forty-four');\nINSERT INTO t2 VALUES(5610, 84692, 'eighty-four thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(5611, 71114, 'seventy-one thousand one hundred fourteen');\nINSERT INTO t2 VALUES(5612, 72220, 'seventy-two thousand two hundred twenty');\nINSERT INTO t2 VALUES(5613, 8548, 'eight thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(5614, 52494, 'fifty-two thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5615, 73369, 'seventy-three thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(5616, 50877, 'fifty thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(5617, 26020, 'twenty-six thousand twenty');\nINSERT INTO t2 VALUES(5618, 35550, 'thirty-five thousand five hundred fifty');\nINSERT INTO t2 VALUES(5619, 75390, 'seventy-five thousand three hundred ninety');\nINSERT INTO t2 VALUES(5620, 89370, 'eighty-nine thousand three hundred seventy');\nINSERT INTO t2 VALUES(5621, 51799, 'fifty-one thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(5622, 27167, 'twenty-seven thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(5623, 5311, 'five thousand three hundred eleven');\nINSERT INTO t2 VALUES(5624, 82590, 'eighty-two thousand five hundred ninety');\nINSERT INTO t2 VALUES(5625, 92976, 'ninety-two thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(5626, 29196, 'twenty-nine thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(5627, 90019, 'ninety thousand nineteen');\nINSERT INTO t2 VALUES(5628, 62474, 'sixty-two thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(5629, 47399, 'forty-seven thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(5630, 37931, 'thirty-seven thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(5631, 28533, 'twenty-eight thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(5632, 12769, 'twelve thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(5633, 28849, 'twenty-eight thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(5634, 91354, 'ninety-one thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(5635, 91866, 'ninety-one thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(5636, 56549, 'fifty-six thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(5637, 5482, 'five thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(5638, 40913, 'forty thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(5639, 47215, 'forty-seven thousand two hundred fifteen');\nINSERT INTO t2 VALUES(5640, 94146, 'ninety-four thousand one hundred forty-six');\nINSERT INTO t2 VALUES(5641, 13639, 'thirteen thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(5642, 62598, 'sixty-two thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(5643, 94310, 'ninety-four thousand three hundred ten');\nINSERT INTO t2 VALUES(5644, 94628, 'ninety-four thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(5645, 15036, 'fifteen thousand thirty-six');\nINSERT INTO t2 VALUES(5646, 42773, 'forty-two thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(5647, 7253, 'seven thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(5648, 39697, 'thirty-nine thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(5649, 9149, 'nine thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(5650, 76585, 'seventy-six thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(5651, 82012, 'eighty-two thousand twelve');\nINSERT INTO t2 VALUES(5652, 70626, 'seventy thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(5653, 54755, 'fifty-four thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(5654, 61226, 'sixty-one thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(5655, 87628, 'eighty-seven thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(5656, 29111, 'twenty-nine thousand one hundred eleven');\nINSERT INTO t2 VALUES(5657, 64680, 'sixty-four thousand six hundred eighty');\nINSERT INTO t2 VALUES(5658, 51856, 'fifty-one thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(5659, 9707, 'nine thousand seven hundred seven');\nINSERT INTO t2 VALUES(5660, 19498, 'nineteen thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(5661, 50049, 'fifty thousand forty-nine');\nINSERT INTO t2 VALUES(5662, 49736, 'forty-nine thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(5663, 51997, 'fifty-one thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(5664, 8382, 'eight thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(5665, 90227, 'ninety thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(5666, 42003, 'forty-two thousand three');\nINSERT INTO t2 VALUES(5667, 19768, 'nineteen thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(5668, 82300, 'eighty-two thousand three hundred');\nINSERT INTO t2 VALUES(5669, 88870, 'eighty-eight thousand eight hundred seventy');\nINSERT INTO t2 VALUES(5670, 8585, 'eight thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(5671, 17982, 'seventeen thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(5672, 10390, 'ten thousand three hundred ninety');\nINSERT INTO t2 VALUES(5673, 19909, 'nineteen thousand nine hundred nine');\nINSERT INTO t2 VALUES(5674, 13185, 'thirteen thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(5675, 83473, 'eighty-three thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(5676, 59359, 'fifty-nine thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(5677, 17032, 'seventeen thousand thirty-two');\nINSERT INTO t2 VALUES(5678, 41473, 'forty-one thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(5679, 23169, 'twenty-three thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(5680, 10812, 'ten thousand eight hundred twelve');\nINSERT INTO t2 VALUES(5681, 70626, 'seventy thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(5682, 7388, 'seven thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(5683, 47260, 'forty-seven thousand two hundred sixty');\nINSERT INTO t2 VALUES(5684, 51023, 'fifty-one thousand twenty-three');\nINSERT INTO t2 VALUES(5685, 42904, 'forty-two thousand nine hundred four');\nINSERT INTO t2 VALUES(5686, 10625, 'ten thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(5687, 36720, 'thirty-six thousand seven hundred twenty');\nINSERT INTO t2 VALUES(5688, 87672, 'eighty-seven thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(5689, 14110, 'fourteen thousand one hundred ten');\nINSERT INTO t2 VALUES(5690, 10534, 'ten thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(5691, 73056, 'seventy-three thousand fifty-six');\nINSERT INTO t2 VALUES(5692, 58175, 'fifty-eight thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(5693, 12859, 'twelve thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(5694, 48898, 'forty-eight thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(5695, 86126, 'eighty-six thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(5696, 23356, 'twenty-three thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(5697, 51453, 'fifty-one thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(5698, 59643, 'fifty-nine thousand six hundred forty-three');\nINSERT INTO t2 VALUES(5699, 27465, 'twenty-seven thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(5700, 19676, 'nineteen thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(5701, 31987, 'thirty-one thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(5702, 27708, 'twenty-seven thousand seven hundred eight');\nINSERT INTO t2 VALUES(5703, 10652, 'ten thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(5704, 16723, 'sixteen thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(5705, 14371, 'fourteen thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(5706, 50190, 'fifty thousand one hundred ninety');\nINSERT INTO t2 VALUES(5707, 9026, 'nine thousand twenty-six');\nINSERT INTO t2 VALUES(5708, 941, 'nine hundred forty-one');\nINSERT INTO t2 VALUES(5709, 41496, 'forty-one thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(5710, 52655, 'fifty-two thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(5711, 2334, 'two thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(5712, 80961, 'eighty thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(5713, 96316, 'ninety-six thousand three hundred sixteen');\nINSERT INTO t2 VALUES(5714, 1632, 'one thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(5715, 71922, 'seventy-one thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(5716, 1507, 'one thousand five hundred seven');\nINSERT INTO t2 VALUES(5717, 22565, 'twenty-two thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(5718, 67371, 'sixty-seven thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(5719, 84523, 'eighty-four thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(5720, 29016, 'twenty-nine thousand sixteen');\nINSERT INTO t2 VALUES(5721, 81168, 'eighty-one thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(5722, 49427, 'forty-nine thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(5723, 53836, 'fifty-three thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(5724, 84933, 'eighty-four thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(5725, 63137, 'sixty-three thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(5726, 7373, 'seven thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(5727, 79127, 'seventy-nine thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(5728, 39734, 'thirty-nine thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(5729, 10029, 'ten thousand twenty-nine');\nINSERT INTO t2 VALUES(5730, 78553, 'seventy-eight thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(5731, 70221, 'seventy thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(5732, 63243, 'sixty-three thousand two hundred forty-three');\nINSERT INTO t2 VALUES(5733, 52157, 'fifty-two thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(5734, 3629, 'three thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(5735, 31609, 'thirty-one thousand six hundred nine');\nINSERT INTO t2 VALUES(5736, 69956, 'sixty-nine thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(5737, 97363, 'ninety-seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(5738, 59052, 'fifty-nine thousand fifty-two');\nINSERT INTO t2 VALUES(5739, 46851, 'forty-six thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(5740, 14338, 'fourteen thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(5741, 82874, 'eighty-two thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(5742, 91348, 'ninety-one thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(5743, 27262, 'twenty-seven thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(5744, 68926, 'sixty-eight thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(5745, 36886, 'thirty-six thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(5746, 97824, 'ninety-seven thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(5747, 85933, 'eighty-five thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(5748, 40448, 'forty thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(5749, 846, 'eight hundred forty-six');\nINSERT INTO t2 VALUES(5750, 67578, 'sixty-seven thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(5751, 15841, 'fifteen thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(5752, 57787, 'fifty-seven thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(5753, 44717, 'forty-four thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(5754, 51403, 'fifty-one thousand four hundred three');\nINSERT INTO t2 VALUES(5755, 13002, 'thirteen thousand two');\nINSERT INTO t2 VALUES(5756, 44434, 'forty-four thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(5757, 69179, 'sixty-nine thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(5758, 77078, 'seventy-seven thousand seventy-eight');\nINSERT INTO t2 VALUES(5759, 82419, 'eighty-two thousand four hundred nineteen');\nINSERT INTO t2 VALUES(5760, 46290, 'forty-six thousand two hundred ninety');\nINSERT INTO t2 VALUES(5761, 60816, 'sixty thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(5762, 99965, 'ninety-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(5763, 74132, 'seventy-four thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(5764, 33057, 'thirty-three thousand fifty-seven');\nINSERT INTO t2 VALUES(5765, 45990, 'forty-five thousand nine hundred ninety');\nINSERT INTO t2 VALUES(5766, 26984, 'twenty-six thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(5767, 81966, 'eighty-one thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(5768, 45035, 'forty-five thousand thirty-five');\nINSERT INTO t2 VALUES(5769, 86738, 'eighty-six thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(5770, 63919, 'sixty-three thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(5771, 42917, 'forty-two thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(5772, 27805, 'twenty-seven thousand eight hundred five');\nINSERT INTO t2 VALUES(5773, 86436, 'eighty-six thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(5774, 32285, 'thirty-two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(5775, 36315, 'thirty-six thousand three hundred fifteen');\nINSERT INTO t2 VALUES(5776, 90019, 'ninety thousand nineteen');\nINSERT INTO t2 VALUES(5777, 98523, 'ninety-eight thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(5778, 56126, 'fifty-six thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(5779, 78930, 'seventy-eight thousand nine hundred thirty');\nINSERT INTO t2 VALUES(5780, 75669, 'seventy-five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(5781, 4198, 'four thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(5782, 72105, 'seventy-two thousand one hundred five');\nINSERT INTO t2 VALUES(5783, 39464, 'thirty-nine thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(5784, 28769, 'twenty-eight thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(5785, 7472, 'seven thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(5786, 60441, 'sixty thousand four hundred forty-one');\nINSERT INTO t2 VALUES(5787, 24585, 'twenty-four thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(5788, 31623, 'thirty-one thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(5789, 85058, 'eighty-five thousand fifty-eight');\nINSERT INTO t2 VALUES(5790, 85102, 'eighty-five thousand one hundred two');\nINSERT INTO t2 VALUES(5791, 97914, 'ninety-seven thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(5792, 90224, 'ninety thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(5793, 79027, 'seventy-nine thousand twenty-seven');\nINSERT INTO t2 VALUES(5794, 30402, 'thirty thousand four hundred two');\nINSERT INTO t2 VALUES(5795, 11111, 'eleven thousand one hundred eleven');\nINSERT INTO t2 VALUES(5796, 99857, 'ninety-nine thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(5797, 48669, 'forty-eight thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(5798, 36480, 'thirty-six thousand four hundred eighty');\nINSERT INTO t2 VALUES(5799, 30138, 'thirty thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(5800, 872, 'eight hundred seventy-two');\nINSERT INTO t2 VALUES(5801, 89029, 'eighty-nine thousand twenty-nine');\nINSERT INTO t2 VALUES(5802, 76871, 'seventy-six thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(5803, 80311, 'eighty thousand three hundred eleven');\nINSERT INTO t2 VALUES(5804, 98490, 'ninety-eight thousand four hundred ninety');\nINSERT INTO t2 VALUES(5805, 73212, 'seventy-three thousand two hundred twelve');\nINSERT INTO t2 VALUES(5806, 64838, 'sixty-four thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(5807, 45609, 'forty-five thousand six hundred nine');\nINSERT INTO t2 VALUES(5808, 65790, 'sixty-five thousand seven hundred ninety');\nINSERT INTO t2 VALUES(5809, 83912, 'eighty-three thousand nine hundred twelve');\nINSERT INTO t2 VALUES(5810, 32688, 'thirty-two thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(5811, 22842, 'twenty-two thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(5812, 26301, 'twenty-six thousand three hundred one');\nINSERT INTO t2 VALUES(5813, 22177, 'twenty-two thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(5814, 45336, 'forty-five thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(5815, 29344, 'twenty-nine thousand three hundred forty-four');\nINSERT INTO t2 VALUES(5816, 70758, 'seventy thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(5817, 84901, 'eighty-four thousand nine hundred one');\nINSERT INTO t2 VALUES(5818, 5045, 'five thousand forty-five');\nINSERT INTO t2 VALUES(5819, 56709, 'fifty-six thousand seven hundred nine');\nINSERT INTO t2 VALUES(5820, 99891, 'ninety-nine thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(5821, 31764, 'thirty-one thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(5822, 11183, 'eleven thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(5823, 56719, 'fifty-six thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(5824, 62526, 'sixty-two thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(5825, 54338, 'fifty-four thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(5826, 14141, 'fourteen thousand one hundred forty-one');\nINSERT INTO t2 VALUES(5827, 51837, 'fifty-one thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(5828, 94641, 'ninety-four thousand six hundred forty-one');\nINSERT INTO t2 VALUES(5829, 87078, 'eighty-seven thousand seventy-eight');\nINSERT INTO t2 VALUES(5830, 99739, 'ninety-nine thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(5831, 71819, 'seventy-one thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(5832, 74240, 'seventy-four thousand two hundred forty');\nINSERT INTO t2 VALUES(5833, 94852, 'ninety-four thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(5834, 33726, 'thirty-three thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(5835, 44672, 'forty-four thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(5836, 11904, 'eleven thousand nine hundred four');\nINSERT INTO t2 VALUES(5837, 89703, 'eighty-nine thousand seven hundred three');\nINSERT INTO t2 VALUES(5838, 16338, 'sixteen thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(5839, 41804, 'forty-one thousand eight hundred four');\nINSERT INTO t2 VALUES(5840, 40911, 'forty thousand nine hundred eleven');\nINSERT INTO t2 VALUES(5841, 15050, 'fifteen thousand fifty');\nINSERT INTO t2 VALUES(5842, 85635, 'eighty-five thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(5843, 35557, 'thirty-five thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(5844, 65950, 'sixty-five thousand nine hundred fifty');\nINSERT INTO t2 VALUES(5845, 56027, 'fifty-six thousand twenty-seven');\nINSERT INTO t2 VALUES(5846, 68922, 'sixty-eight thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(5847, 30224, 'thirty thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(5848, 98817, 'ninety-eight thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(5849, 19188, 'nineteen thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(5850, 931, 'nine hundred thirty-one');\nINSERT INTO t2 VALUES(5851, 12938, 'twelve thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(5852, 23261, 'twenty-three thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(5853, 28415, 'twenty-eight thousand four hundred fifteen');\nINSERT INTO t2 VALUES(5854, 64072, 'sixty-four thousand seventy-two');\nINSERT INTO t2 VALUES(5855, 89865, 'eighty-nine thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(5856, 73778, 'seventy-three thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(5857, 60778, 'sixty thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(5858, 57636, 'fifty-seven thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(5859, 42387, 'forty-two thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(5860, 66398, 'sixty-six thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(5861, 69836, 'sixty-nine thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(5862, 37132, 'thirty-seven thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(5863, 17041, 'seventeen thousand forty-one');\nINSERT INTO t2 VALUES(5864, 77915, 'seventy-seven thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(5865, 52053, 'fifty-two thousand fifty-three');\nINSERT INTO t2 VALUES(5866, 66430, 'sixty-six thousand four hundred thirty');\nINSERT INTO t2 VALUES(5867, 15972, 'fifteen thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(5868, 90493, 'ninety thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(5869, 23068, 'twenty-three thousand sixty-eight');\nINSERT INTO t2 VALUES(5870, 18255, 'eighteen thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(5871, 81621, 'eighty-one thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(5872, 31045, 'thirty-one thousand forty-five');\nINSERT INTO t2 VALUES(5873, 8164, 'eight thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(5874, 41047, 'forty-one thousand forty-seven');\nINSERT INTO t2 VALUES(5875, 348, 'three hundred forty-eight');\nINSERT INTO t2 VALUES(5876, 34285, 'thirty-four thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(5877, 77993, 'seventy-seven thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(5878, 68007, 'sixty-eight thousand seven');\nINSERT INTO t2 VALUES(5879, 35477, 'thirty-five thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(5880, 70752, 'seventy thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(5881, 88070, 'eighty-eight thousand seventy');\nINSERT INTO t2 VALUES(5882, 24859, 'twenty-four thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(5883, 50863, 'fifty thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(5884, 48723, 'forty-eight thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(5885, 27659, 'twenty-seven thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(5886, 76093, 'seventy-six thousand ninety-three');\nINSERT INTO t2 VALUES(5887, 78651, 'seventy-eight thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(5888, 2010, 'two thousand ten');\nINSERT INTO t2 VALUES(5889, 84802, 'eighty-four thousand eight hundred two');\nINSERT INTO t2 VALUES(5890, 72872, 'seventy-two thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(5891, 20255, 'twenty thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(5892, 40719, 'forty thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(5893, 21383, 'twenty-one thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(5894, 32610, 'thirty-two thousand six hundred ten');\nINSERT INTO t2 VALUES(5895, 77054, 'seventy-seven thousand fifty-four');\nINSERT INTO t2 VALUES(5896, 14270, 'fourteen thousand two hundred seventy');\nINSERT INTO t2 VALUES(5897, 4693, 'four thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(5898, 14193, 'fourteen thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(5899, 51630, 'fifty-one thousand six hundred thirty');\nINSERT INTO t2 VALUES(5900, 55445, 'fifty-five thousand four hundred forty-five');\nINSERT INTO t2 VALUES(5901, 25083, 'twenty-five thousand eighty-three');\nINSERT INTO t2 VALUES(5902, 77234, 'seventy-seven thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(5903, 55286, 'fifty-five thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(5904, 78967, 'seventy-eight thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(5905, 47180, 'forty-seven thousand one hundred eighty');\nINSERT INTO t2 VALUES(5906, 10379, 'ten thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(5907, 25455, 'twenty-five thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(5908, 83985, 'eighty-three thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(5909, 94826, 'ninety-four thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(5910, 28744, 'twenty-eight thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(5911, 75957, 'seventy-five thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(5912, 67724, 'sixty-seven thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(5913, 29467, 'twenty-nine thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(5914, 66281, 'sixty-six thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(5915, 68890, 'sixty-eight thousand eight hundred ninety');\nINSERT INTO t2 VALUES(5916, 49025, 'forty-nine thousand twenty-five');\nINSERT INTO t2 VALUES(5917, 82293, 'eighty-two thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(5918, 39840, 'thirty-nine thousand eight hundred forty');\nINSERT INTO t2 VALUES(5919, 66006, 'sixty-six thousand six');\nINSERT INTO t2 VALUES(5920, 61281, 'sixty-one thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(5921, 84817, 'eighty-four thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(5922, 89674, 'eighty-nine thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(5923, 69492, 'sixty-nine thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(5924, 7219, 'seven thousand two hundred nineteen');\nINSERT INTO t2 VALUES(5925, 68104, 'sixty-eight thousand one hundred four');\nINSERT INTO t2 VALUES(5926, 34043, 'thirty-four thousand forty-three');\nINSERT INTO t2 VALUES(5927, 13408, 'thirteen thousand four hundred eight');\nINSERT INTO t2 VALUES(5928, 23392, 'twenty-three thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(5929, 67417, 'sixty-seven thousand four hundred seventeen');\nINSERT INTO t2 VALUES(5930, 46930, 'forty-six thousand nine hundred thirty');\nINSERT INTO t2 VALUES(5931, 20384, 'twenty thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(5932, 61278, 'sixty-one thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(5933, 6445, 'six thousand four hundred forty-five');\nINSERT INTO t2 VALUES(5934, 56211, 'fifty-six thousand two hundred eleven');\nINSERT INTO t2 VALUES(5935, 66186, 'sixty-six thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(5936, 31908, 'thirty-one thousand nine hundred eight');\nINSERT INTO t2 VALUES(5937, 95878, 'ninety-five thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(5938, 72616, 'seventy-two thousand six hundred sixteen');\nINSERT INTO t2 VALUES(5939, 96212, 'ninety-six thousand two hundred twelve');\nINSERT INTO t2 VALUES(5940, 28866, 'twenty-eight thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(5941, 26146, 'twenty-six thousand one hundred forty-six');\nINSERT INTO t2 VALUES(5942, 95562, 'ninety-five thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(5943, 11929, 'eleven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(5944, 59658, 'fifty-nine thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(5945, 83779, 'eighty-three thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(5946, 16381, 'sixteen thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(5947, 29106, 'twenty-nine thousand one hundred six');\nINSERT INTO t2 VALUES(5948, 65974, 'sixty-five thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(5949, 99460, 'ninety-nine thousand four hundred sixty');\nINSERT INTO t2 VALUES(5950, 15546, 'fifteen thousand five hundred forty-six');\nINSERT INTO t2 VALUES(5951, 41211, 'forty-one thousand two hundred eleven');\nINSERT INTO t2 VALUES(5952, 74537, 'seventy-four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(5953, 63166, 'sixty-three thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(5954, 82473, 'eighty-two thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(5955, 48878, 'forty-eight thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(5956, 45189, 'forty-five thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(5957, 77752, 'seventy-seven thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(5958, 87932, 'eighty-seven thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(5959, 86277, 'eighty-six thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(5960, 20980, 'twenty thousand nine hundred eighty');\nINSERT INTO t2 VALUES(5961, 37265, 'thirty-seven thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(5962, 81942, 'eighty-one thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(5963, 4031, 'four thousand thirty-one');\nINSERT INTO t2 VALUES(5964, 86426, 'eighty-six thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(5965, 80515, 'eighty thousand five hundred fifteen');\nINSERT INTO t2 VALUES(5966, 73665, 'seventy-three thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(5967, 85035, 'eighty-five thousand thirty-five');\nINSERT INTO t2 VALUES(5968, 26935, 'twenty-six thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(5969, 9950, 'nine thousand nine hundred fifty');\nINSERT INTO t2 VALUES(5970, 42306, 'forty-two thousand three hundred six');\nINSERT INTO t2 VALUES(5971, 45431, 'forty-five thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(5972, 79241, 'seventy-nine thousand two hundred forty-one');\nINSERT INTO t2 VALUES(5973, 87674, 'eighty-seven thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(5974, 70856, 'seventy thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(5975, 56129, 'fifty-six thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(5976, 85673, 'eighty-five thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(5977, 91795, 'ninety-one thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(5978, 67317, 'sixty-seven thousand three hundred seventeen');\nINSERT INTO t2 VALUES(5979, 22747, 'twenty-two thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(5980, 96091, 'ninety-six thousand ninety-one');\nINSERT INTO t2 VALUES(5981, 61118, 'sixty-one thousand one hundred eighteen');\nINSERT INTO t2 VALUES(5982, 84339, 'eighty-four thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(5983, 99440, 'ninety-nine thousand four hundred forty');\nINSERT INTO t2 VALUES(5984, 98795, 'ninety-eight thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(5985, 62418, 'sixty-two thousand four hundred eighteen');\nINSERT INTO t2 VALUES(5986, 99509, 'ninety-nine thousand five hundred nine');\nINSERT INTO t2 VALUES(5987, 23436, 'twenty-three thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(5988, 27488, 'twenty-seven thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(5989, 96075, 'ninety-six thousand seventy-five');\nINSERT INTO t2 VALUES(5990, 28324, 'twenty-eight thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(5991, 28772, 'twenty-eight thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(5992, 20689, 'twenty thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(5993, 81518, 'eighty-one thousand five hundred eighteen');\nINSERT INTO t2 VALUES(5994, 34810, 'thirty-four thousand eight hundred ten');\nINSERT INTO t2 VALUES(5995, 39866, 'thirty-nine thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(5996, 68643, 'sixty-eight thousand six hundred forty-three');\nINSERT INTO t2 VALUES(5997, 99629, 'ninety-nine thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(5998, 43539, 'forty-three thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(5999, 14163, 'fourteen thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(6000, 24293, 'twenty-four thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(6001, 9911, 'nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(6002, 32820, 'thirty-two thousand eight hundred twenty');\nINSERT INTO t2 VALUES(6003, 33855, 'thirty-three thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(6004, 32863, 'thirty-two thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(6005, 10257, 'ten thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(6006, 17293, 'seventeen thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(6007, 25948, 'twenty-five thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(6008, 76148, 'seventy-six thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(6009, 80989, 'eighty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(6010, 13138, 'thirteen thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(6011, 18117, 'eighteen thousand one hundred seventeen');\nINSERT INTO t2 VALUES(6012, 37625, 'thirty-seven thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(6013, 11651, 'eleven thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(6014, 4414, 'four thousand four hundred fourteen');\nINSERT INTO t2 VALUES(6015, 96168, 'ninety-six thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(6016, 30176, 'thirty thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(6017, 16592, 'sixteen thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(6018, 19934, 'nineteen thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(6019, 61088, 'sixty-one thousand eighty-eight');\nINSERT INTO t2 VALUES(6020, 41073, 'forty-one thousand seventy-three');\nINSERT INTO t2 VALUES(6021, 10321, 'ten thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(6022, 42882, 'forty-two thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(6023, 38439, 'thirty-eight thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(6024, 67141, 'sixty-seven thousand one hundred forty-one');\nINSERT INTO t2 VALUES(6025, 29710, 'twenty-nine thousand seven hundred ten');\nINSERT INTO t2 VALUES(6026, 7026, 'seven thousand twenty-six');\nINSERT INTO t2 VALUES(6027, 64730, 'sixty-four thousand seven hundred thirty');\nINSERT INTO t2 VALUES(6028, 982, 'nine hundred eighty-two');\nINSERT INTO t2 VALUES(6029, 54154, 'fifty-four thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(6030, 79999, 'seventy-nine thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(6031, 20139, 'twenty thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(6032, 20049, 'twenty thousand forty-nine');\nINSERT INTO t2 VALUES(6033, 61382, 'sixty-one thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(6034, 27733, 'twenty-seven thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(6035, 30448, 'thirty thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(6036, 85772, 'eighty-five thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(6037, 84090, 'eighty-four thousand ninety');\nINSERT INTO t2 VALUES(6038, 64591, 'sixty-four thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(6039, 95903, 'ninety-five thousand nine hundred three');\nINSERT INTO t2 VALUES(6040, 31880, 'thirty-one thousand eight hundred eighty');\nINSERT INTO t2 VALUES(6041, 81271, 'eighty-one thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(6042, 38059, 'thirty-eight thousand fifty-nine');\nINSERT INTO t2 VALUES(6043, 31397, 'thirty-one thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(6044, 32793, 'thirty-two thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(6045, 72215, 'seventy-two thousand two hundred fifteen');\nINSERT INTO t2 VALUES(6046, 79398, 'seventy-nine thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(6047, 53081, 'fifty-three thousand eighty-one');\nINSERT INTO t2 VALUES(6048, 43060, 'forty-three thousand sixty');\nINSERT INTO t2 VALUES(6049, 71821, 'seventy-one thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(6050, 70482, 'seventy thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(6051, 84735, 'eighty-four thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(6052, 98167, 'ninety-eight thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(6053, 5447, 'five thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(6054, 18422, 'eighteen thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(6055, 806, 'eight hundred six');\nINSERT INTO t2 VALUES(6056, 65999, 'sixty-five thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(6057, 71788, 'seventy-one thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(6058, 45743, 'forty-five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(6059, 26377, 'twenty-six thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(6060, 34155, 'thirty-four thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(6061, 11997, 'eleven thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(6062, 88909, 'eighty-eight thousand nine hundred nine');\nINSERT INTO t2 VALUES(6063, 39965, 'thirty-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(6064, 39701, 'thirty-nine thousand seven hundred one');\nINSERT INTO t2 VALUES(6065, 7664, 'seven thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(6066, 11472, 'eleven thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(6067, 17373, 'seventeen thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(6068, 91597, 'ninety-one thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(6069, 43682, 'forty-three thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(6070, 40818, 'forty thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(6071, 8498, 'eight thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(6072, 6551, 'six thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(6073, 99301, 'ninety-nine thousand three hundred one');\nINSERT INTO t2 VALUES(6074, 75171, 'seventy-five thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(6075, 58286, 'fifty-eight thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(6076, 33634, 'thirty-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(6077, 50119, 'fifty thousand one hundred nineteen');\nINSERT INTO t2 VALUES(6078, 20595, 'twenty thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(6079, 91569, 'ninety-one thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(6080, 30325, 'thirty thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(6081, 14633, 'fourteen thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(6082, 95828, 'ninety-five thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(6083, 12233, 'twelve thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(6084, 56433, 'fifty-six thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(6085, 94134, 'ninety-four thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(6086, 63406, 'sixty-three thousand four hundred six');\nINSERT INTO t2 VALUES(6087, 9358, 'nine thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(6088, 88736, 'eighty-eight thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(6089, 37829, 'thirty-seven thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(6090, 58055, 'fifty-eight thousand fifty-five');\nINSERT INTO t2 VALUES(6091, 19211, 'nineteen thousand two hundred eleven');\nINSERT INTO t2 VALUES(6092, 9621, 'nine thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(6093, 43331, 'forty-three thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(6094, 3025, 'three thousand twenty-five');\nINSERT INTO t2 VALUES(6095, 65156, 'sixty-five thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(6096, 89529, 'eighty-nine thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(6097, 44712, 'forty-four thousand seven hundred twelve');\nINSERT INTO t2 VALUES(6098, 60314, 'sixty thousand three hundred fourteen');\nINSERT INTO t2 VALUES(6099, 98299, 'ninety-eight thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(6100, 84243, 'eighty-four thousand two hundred forty-three');\nINSERT INTO t2 VALUES(6101, 74533, 'seventy-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(6102, 10785, 'ten thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(6103, 74129, 'seventy-four thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(6104, 8076, 'eight thousand seventy-six');\nINSERT INTO t2 VALUES(6105, 16801, 'sixteen thousand eight hundred one');\nINSERT INTO t2 VALUES(6106, 11420, 'eleven thousand four hundred twenty');\nINSERT INTO t2 VALUES(6107, 62746, 'sixty-two thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(6108, 47304, 'forty-seven thousand three hundred four');\nINSERT INTO t2 VALUES(6109, 11714, 'eleven thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(6110, 97748, 'ninety-seven thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(6111, 82057, 'eighty-two thousand fifty-seven');\nINSERT INTO t2 VALUES(6112, 44645, 'forty-four thousand six hundred forty-five');\nINSERT INTO t2 VALUES(6113, 49904, 'forty-nine thousand nine hundred four');\nINSERT INTO t2 VALUES(6114, 17530, 'seventeen thousand five hundred thirty');\nINSERT INTO t2 VALUES(6115, 12746, 'twelve thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(6116, 27698, 'twenty-seven thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(6117, 1333, 'one thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(6118, 93574, 'ninety-three thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(6119, 81450, 'eighty-one thousand four hundred fifty');\nINSERT INTO t2 VALUES(6120, 75877, 'seventy-five thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(6121, 60516, 'sixty thousand five hundred sixteen');\nINSERT INTO t2 VALUES(6122, 30442, 'thirty thousand four hundred forty-two');\nINSERT INTO t2 VALUES(6123, 27029, 'twenty-seven thousand twenty-nine');\nINSERT INTO t2 VALUES(6124, 12630, 'twelve thousand six hundred thirty');\nINSERT INTO t2 VALUES(6125, 3017, 'three thousand seventeen');\nINSERT INTO t2 VALUES(6126, 12658, 'twelve thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(6127, 96183, 'ninety-six thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(6128, 99065, 'ninety-nine thousand sixty-five');\nINSERT INTO t2 VALUES(6129, 66995, 'sixty-six thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(6130, 5298, 'five thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(6131, 64425, 'sixty-four thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(6132, 844, 'eight hundred forty-four');\nINSERT INTO t2 VALUES(6133, 21930, 'twenty-one thousand nine hundred thirty');\nINSERT INTO t2 VALUES(6134, 23684, 'twenty-three thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(6135, 35982, 'thirty-five thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(6136, 11008, 'eleven thousand eight');\nINSERT INTO t2 VALUES(6137, 19763, 'nineteen thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(6138, 60512, 'sixty thousand five hundred twelve');\nINSERT INTO t2 VALUES(6139, 21885, 'twenty-one thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(6140, 83640, 'eighty-three thousand six hundred forty');\nINSERT INTO t2 VALUES(6141, 94539, 'ninety-four thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(6142, 52823, 'fifty-two thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(6143, 6389, 'six thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(6144, 19177, 'nineteen thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(6145, 89475, 'eighty-nine thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(6146, 20380, 'twenty thousand three hundred eighty');\nINSERT INTO t2 VALUES(6147, 87303, 'eighty-seven thousand three hundred three');\nINSERT INTO t2 VALUES(6148, 52516, 'fifty-two thousand five hundred sixteen');\nINSERT INTO t2 VALUES(6149, 14393, 'fourteen thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(6150, 68834, 'sixty-eight thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(6151, 85944, 'eighty-five thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(6152, 78341, 'seventy-eight thousand three hundred forty-one');\nINSERT INTO t2 VALUES(6153, 82521, 'eighty-two thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(6154, 48666, 'forty-eight thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(6155, 57268, 'fifty-seven thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(6156, 29428, 'twenty-nine thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(6157, 91941, 'ninety-one thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(6158, 55696, 'fifty-five thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(6159, 10591, 'ten thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(6160, 73189, 'seventy-three thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(6161, 5545, 'five thousand five hundred forty-five');\nINSERT INTO t2 VALUES(6162, 71766, 'seventy-one thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(6163, 60261, 'sixty thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(6164, 6771, 'six thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(6165, 61833, 'sixty-one thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(6166, 42807, 'forty-two thousand eight hundred seven');\nINSERT INTO t2 VALUES(6167, 12021, 'twelve thousand twenty-one');\nINSERT INTO t2 VALUES(6168, 47884, 'forty-seven thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(6169, 24662, 'twenty-four thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(6170, 98069, 'ninety-eight thousand sixty-nine');\nINSERT INTO t2 VALUES(6171, 2270, 'two thousand two hundred seventy');\nINSERT INTO t2 VALUES(6172, 26039, 'twenty-six thousand thirty-nine');\nINSERT INTO t2 VALUES(6173, 65640, 'sixty-five thousand six hundred forty');\nINSERT INTO t2 VALUES(6174, 46988, 'forty-six thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(6175, 88153, 'eighty-eight thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(6176, 89564, 'eighty-nine thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(6177, 25319, 'twenty-five thousand three hundred nineteen');\nINSERT INTO t2 VALUES(6178, 12171, 'twelve thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(6179, 27465, 'twenty-seven thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(6180, 36456, 'thirty-six thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(6181, 70611, 'seventy thousand six hundred eleven');\nINSERT INTO t2 VALUES(6182, 43880, 'forty-three thousand eight hundred eighty');\nINSERT INTO t2 VALUES(6183, 62758, 'sixty-two thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(6184, 38437, 'thirty-eight thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(6185, 43518, 'forty-three thousand five hundred eighteen');\nINSERT INTO t2 VALUES(6186, 44228, 'forty-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(6187, 17698, 'seventeen thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(6188, 77514, 'seventy-seven thousand five hundred fourteen');\nINSERT INTO t2 VALUES(6189, 32407, 'thirty-two thousand four hundred seven');\nINSERT INTO t2 VALUES(6190, 19508, 'nineteen thousand five hundred eight');\nINSERT INTO t2 VALUES(6191, 25144, 'twenty-five thousand one hundred forty-four');\nINSERT INTO t2 VALUES(6192, 40712, 'forty thousand seven hundred twelve');\nINSERT INTO t2 VALUES(6193, 80425, 'eighty thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(6194, 11179, 'eleven thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(6195, 27124, 'twenty-seven thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(6196, 15279, 'fifteen thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(6197, 42399, 'forty-two thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(6198, 726, 'seven hundred twenty-six');\nINSERT INTO t2 VALUES(6199, 80053, 'eighty thousand fifty-three');\nINSERT INTO t2 VALUES(6200, 37164, 'thirty-seven thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(6201, 1416, 'one thousand four hundred sixteen');\nINSERT INTO t2 VALUES(6202, 86978, 'eighty-six thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(6203, 74014, 'seventy-four thousand fourteen');\nINSERT INTO t2 VALUES(6204, 88463, 'eighty-eight thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(6205, 45408, 'forty-five thousand four hundred eight');\nINSERT INTO t2 VALUES(6206, 92533, 'ninety-two thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(6207, 83478, 'eighty-three thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(6208, 53937, 'fifty-three thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(6209, 79527, 'seventy-nine thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(6210, 70018, 'seventy thousand eighteen');\nINSERT INTO t2 VALUES(6211, 55734, 'fifty-five thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(6212, 45979, 'forty-five thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(6213, 35933, 'thirty-five thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(6214, 32057, 'thirty-two thousand fifty-seven');\nINSERT INTO t2 VALUES(6215, 81084, 'eighty-one thousand eighty-four');\nINSERT INTO t2 VALUES(6216, 48355, 'forty-eight thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(6217, 95606, 'ninety-five thousand six hundred six');\nINSERT INTO t2 VALUES(6218, 81945, 'eighty-one thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(6219, 84258, 'eighty-four thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(6220, 40989, 'forty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(6221, 54235, 'fifty-four thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(6222, 28354, 'twenty-eight thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(6223, 23029, 'twenty-three thousand twenty-nine');\nINSERT INTO t2 VALUES(6224, 28527, 'twenty-eight thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(6225, 54782, 'fifty-four thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(6226, 63834, 'sixty-three thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(6227, 31714, 'thirty-one thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(6228, 1076, 'one thousand seventy-six');\nINSERT INTO t2 VALUES(6229, 72732, 'seventy-two thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(6230, 98839, 'ninety-eight thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(6231, 87124, 'eighty-seven thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(6232, 66213, 'sixty-six thousand two hundred thirteen');\nINSERT INTO t2 VALUES(6233, 23091, 'twenty-three thousand ninety-one');\nINSERT INTO t2 VALUES(6234, 43627, 'forty-three thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(6235, 76741, 'seventy-six thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(6236, 86983, 'eighty-six thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(6237, 66646, 'sixty-six thousand six hundred forty-six');\nINSERT INTO t2 VALUES(6238, 4490, 'four thousand four hundred ninety');\nINSERT INTO t2 VALUES(6239, 72257, 'seventy-two thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(6240, 89622, 'eighty-nine thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(6241, 13763, 'thirteen thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(6242, 65227, 'sixty-five thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(6243, 25420, 'twenty-five thousand four hundred twenty');\nINSERT INTO t2 VALUES(6244, 32765, 'thirty-two thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(6245, 87872, 'eighty-seven thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(6246, 33704, 'thirty-three thousand seven hundred four');\nINSERT INTO t2 VALUES(6247, 92939, 'ninety-two thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(6248, 5830, 'five thousand eight hundred thirty');\nINSERT INTO t2 VALUES(6249, 12851, 'twelve thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(6250, 42166, 'forty-two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(6251, 55694, 'fifty-five thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(6252, 14530, 'fourteen thousand five hundred thirty');\nINSERT INTO t2 VALUES(6253, 56005, 'fifty-six thousand five');\nINSERT INTO t2 VALUES(6254, 76667, 'seventy-six thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(6255, 47309, 'forty-seven thousand three hundred nine');\nINSERT INTO t2 VALUES(6256, 60041, 'sixty thousand forty-one');\nINSERT INTO t2 VALUES(6257, 98988, 'ninety-eight thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(6258, 87103, 'eighty-seven thousand one hundred three');\nINSERT INTO t2 VALUES(6259, 43646, 'forty-three thousand six hundred forty-six');\nINSERT INTO t2 VALUES(6260, 58177, 'fifty-eight thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(6261, 10901, 'ten thousand nine hundred one');\nINSERT INTO t2 VALUES(6262, 97988, 'ninety-seven thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(6263, 15056, 'fifteen thousand fifty-six');\nINSERT INTO t2 VALUES(6264, 57504, 'fifty-seven thousand five hundred four');\nINSERT INTO t2 VALUES(6265, 49228, 'forty-nine thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(6266, 13081, 'thirteen thousand eighty-one');\nINSERT INTO t2 VALUES(6267, 42925, 'forty-two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(6268, 89450, 'eighty-nine thousand four hundred fifty');\nINSERT INTO t2 VALUES(6269, 28088, 'twenty-eight thousand eighty-eight');\nINSERT INTO t2 VALUES(6270, 13883, 'thirteen thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(6271, 62491, 'sixty-two thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(6272, 54510, 'fifty-four thousand five hundred ten');\nINSERT INTO t2 VALUES(6273, 25477, 'twenty-five thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(6274, 36892, 'thirty-six thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(6275, 44686, 'forty-four thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(6276, 623, 'six hundred twenty-three');\nINSERT INTO t2 VALUES(6277, 74026, 'seventy-four thousand twenty-six');\nINSERT INTO t2 VALUES(6278, 6620, 'six thousand six hundred twenty');\nINSERT INTO t2 VALUES(6279, 97614, 'ninety-seven thousand six hundred fourteen');\nINSERT INTO t2 VALUES(6280, 87690, 'eighty-seven thousand six hundred ninety');\nINSERT INTO t2 VALUES(6281, 37529, 'thirty-seven thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(6282, 61052, 'sixty-one thousand fifty-two');\nINSERT INTO t2 VALUES(6283, 33322, 'thirty-three thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(6284, 14694, 'fourteen thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(6285, 68015, 'sixty-eight thousand fifteen');\nINSERT INTO t2 VALUES(6286, 247, 'two hundred forty-seven');\nINSERT INTO t2 VALUES(6287, 33736, 'thirty-three thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(6288, 86318, 'eighty-six thousand three hundred eighteen');\nINSERT INTO t2 VALUES(6289, 67992, 'sixty-seven thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(6290, 2689, 'two thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(6291, 73700, 'seventy-three thousand seven hundred');\nINSERT INTO t2 VALUES(6292, 50034, 'fifty thousand thirty-four');\nINSERT INTO t2 VALUES(6293, 26225, 'twenty-six thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(6294, 3238, 'three thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(6295, 82917, 'eighty-two thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(6296, 88035, 'eighty-eight thousand thirty-five');\nINSERT INTO t2 VALUES(6297, 31791, 'thirty-one thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(6298, 90092, 'ninety thousand ninety-two');\nINSERT INTO t2 VALUES(6299, 80174, 'eighty thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(6300, 4836, 'four thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(6301, 53563, 'fifty-three thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(6302, 39432, 'thirty-nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(6303, 29551, 'twenty-nine thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(6304, 75845, 'seventy-five thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(6305, 38821, 'thirty-eight thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(6306, 56215, 'fifty-six thousand two hundred fifteen');\nINSERT INTO t2 VALUES(6307, 59089, 'fifty-nine thousand eighty-nine');\nINSERT INTO t2 VALUES(6308, 96917, 'ninety-six thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(6309, 28136, 'twenty-eight thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(6310, 62247, 'sixty-two thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(6311, 92031, 'ninety-two thousand thirty-one');\nINSERT INTO t2 VALUES(6312, 22252, 'twenty-two thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(6313, 14414, 'fourteen thousand four hundred fourteen');\nINSERT INTO t2 VALUES(6314, 88576, 'eighty-eight thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(6315, 42941, 'forty-two thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(6316, 80753, 'eighty thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(6317, 63991, 'sixty-three thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(6318, 81264, 'eighty-one thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(6319, 21916, 'twenty-one thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(6320, 78785, 'seventy-eight thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(6321, 9211, 'nine thousand two hundred eleven');\nINSERT INTO t2 VALUES(6322, 60477, 'sixty thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(6323, 11677, 'eleven thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(6324, 99402, 'ninety-nine thousand four hundred two');\nINSERT INTO t2 VALUES(6325, 45164, 'forty-five thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(6326, 2457, 'two thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(6327, 4987, 'four thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(6328, 99422, 'ninety-nine thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(6329, 84484, 'eighty-four thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(6330, 96512, 'ninety-six thousand five hundred twelve');\nINSERT INTO t2 VALUES(6331, 74147, 'seventy-four thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(6332, 46153, 'forty-six thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(6333, 48853, 'forty-eight thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(6334, 65540, 'sixty-five thousand five hundred forty');\nINSERT INTO t2 VALUES(6335, 28107, 'twenty-eight thousand one hundred seven');\nINSERT INTO t2 VALUES(6336, 29441, 'twenty-nine thousand four hundred forty-one');\nINSERT INTO t2 VALUES(6337, 53313, 'fifty-three thousand three hundred thirteen');\nINSERT INTO t2 VALUES(6338, 79738, 'seventy-nine thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(6339, 69030, 'sixty-nine thousand thirty');\nINSERT INTO t2 VALUES(6340, 95058, 'ninety-five thousand fifty-eight');\nINSERT INTO t2 VALUES(6341, 40977, 'forty thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(6342, 93352, 'ninety-three thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(6343, 59833, 'fifty-nine thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(6344, 45957, 'forty-five thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(6345, 96727, 'ninety-six thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(6346, 34117, 'thirty-four thousand one hundred seventeen');\nINSERT INTO t2 VALUES(6347, 99900, 'ninety-nine thousand nine hundred');\nINSERT INTO t2 VALUES(6348, 22656, 'twenty-two thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(6349, 36404, 'thirty-six thousand four hundred four');\nINSERT INTO t2 VALUES(6350, 80787, 'eighty thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(6351, 96035, 'ninety-six thousand thirty-five');\nINSERT INTO t2 VALUES(6352, 697, 'six hundred ninety-seven');\nINSERT INTO t2 VALUES(6353, 7210, 'seven thousand two hundred ten');\nINSERT INTO t2 VALUES(6354, 14584, 'fourteen thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(6355, 15248, 'fifteen thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(6356, 159, 'one hundred fifty-nine');\nINSERT INTO t2 VALUES(6357, 39531, 'thirty-nine thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(6358, 29322, 'twenty-nine thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(6359, 52603, 'fifty-two thousand six hundred three');\nINSERT INTO t2 VALUES(6360, 16485, 'sixteen thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(6361, 51069, 'fifty-one thousand sixty-nine');\nINSERT INTO t2 VALUES(6362, 86442, 'eighty-six thousand four hundred forty-two');\nINSERT INTO t2 VALUES(6363, 40547, 'forty thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(6364, 8011, 'eight thousand eleven');\nINSERT INTO t2 VALUES(6365, 15798, 'fifteen thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(6366, 8431, 'eight thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(6367, 54606, 'fifty-four thousand six hundred six');\nINSERT INTO t2 VALUES(6368, 6730, 'six thousand seven hundred thirty');\nINSERT INTO t2 VALUES(6369, 74250, 'seventy-four thousand two hundred fifty');\nINSERT INTO t2 VALUES(6370, 98563, 'ninety-eight thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(6371, 23258, 'twenty-three thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(6372, 79820, 'seventy-nine thousand eight hundred twenty');\nINSERT INTO t2 VALUES(6373, 66722, 'sixty-six thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(6374, 32083, 'thirty-two thousand eighty-three');\nINSERT INTO t2 VALUES(6375, 38101, 'thirty-eight thousand one hundred one');\nINSERT INTO t2 VALUES(6376, 97170, 'ninety-seven thousand one hundred seventy');\nINSERT INTO t2 VALUES(6377, 62549, 'sixty-two thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(6378, 10450, 'ten thousand four hundred fifty');\nINSERT INTO t2 VALUES(6379, 2058, 'two thousand fifty-eight');\nINSERT INTO t2 VALUES(6380, 63483, 'sixty-three thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(6381, 76032, 'seventy-six thousand thirty-two');\nINSERT INTO t2 VALUES(6382, 65603, 'sixty-five thousand six hundred three');\nINSERT INTO t2 VALUES(6383, 32631, 'thirty-two thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(6384, 86527, 'eighty-six thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(6385, 42345, 'forty-two thousand three hundred forty-five');\nINSERT INTO t2 VALUES(6386, 76644, 'seventy-six thousand six hundred forty-four');\nINSERT INTO t2 VALUES(6387, 8509, 'eight thousand five hundred nine');\nINSERT INTO t2 VALUES(6388, 48035, 'forty-eight thousand thirty-five');\nINSERT INTO t2 VALUES(6389, 40802, 'forty thousand eight hundred two');\nINSERT INTO t2 VALUES(6390, 2238, 'two thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(6391, 66518, 'sixty-six thousand five hundred eighteen');\nINSERT INTO t2 VALUES(6392, 42723, 'forty-two thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(6393, 411, 'four hundred eleven');\nINSERT INTO t2 VALUES(6394, 71064, 'seventy-one thousand sixty-four');\nINSERT INTO t2 VALUES(6395, 75111, 'seventy-five thousand one hundred eleven');\nINSERT INTO t2 VALUES(6396, 29646, 'twenty-nine thousand six hundred forty-six');\nINSERT INTO t2 VALUES(6397, 25777, 'twenty-five thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(6398, 95760, 'ninety-five thousand seven hundred sixty');\nINSERT INTO t2 VALUES(6399, 26311, 'twenty-six thousand three hundred eleven');\nINSERT INTO t2 VALUES(6400, 68057, 'sixty-eight thousand fifty-seven');\nINSERT INTO t2 VALUES(6401, 86442, 'eighty-six thousand four hundred forty-two');\nINSERT INTO t2 VALUES(6402, 56758, 'fifty-six thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(6403, 98766, 'ninety-eight thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(6404, 85045, 'eighty-five thousand forty-five');\nINSERT INTO t2 VALUES(6405, 38693, 'thirty-eight thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(6406, 88482, 'eighty-eight thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(6407, 27747, 'twenty-seven thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(6408, 85182, 'eighty-five thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(6409, 32398, 'thirty-two thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(6410, 55913, 'fifty-five thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(6411, 31702, 'thirty-one thousand seven hundred two');\nINSERT INTO t2 VALUES(6412, 98943, 'ninety-eight thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(6413, 70579, 'seventy thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(6414, 90523, 'ninety thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(6415, 81321, 'eighty-one thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(6416, 93603, 'ninety-three thousand six hundred three');\nINSERT INTO t2 VALUES(6417, 84198, 'eighty-four thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(6418, 19537, 'nineteen thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(6419, 72503, 'seventy-two thousand five hundred three');\nINSERT INTO t2 VALUES(6420, 91695, 'ninety-one thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(6421, 70579, 'seventy thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(6422, 14607, 'fourteen thousand six hundred seven');\nINSERT INTO t2 VALUES(6423, 22638, 'twenty-two thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(6424, 70894, 'seventy thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(6425, 87045, 'eighty-seven thousand forty-five');\nINSERT INTO t2 VALUES(6426, 90446, 'ninety thousand four hundred forty-six');\nINSERT INTO t2 VALUES(6427, 9012, 'nine thousand twelve');\nINSERT INTO t2 VALUES(6428, 32693, 'thirty-two thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(6429, 16281, 'sixteen thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(6430, 86034, 'eighty-six thousand thirty-four');\nINSERT INTO t2 VALUES(6431, 81060, 'eighty-one thousand sixty');\nINSERT INTO t2 VALUES(6432, 81880, 'eighty-one thousand eight hundred eighty');\nINSERT INTO t2 VALUES(6433, 69098, 'sixty-nine thousand ninety-eight');\nINSERT INTO t2 VALUES(6434, 96616, 'ninety-six thousand six hundred sixteen');\nINSERT INTO t2 VALUES(6435, 17714, 'seventeen thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(6436, 96329, 'ninety-six thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(6437, 21702, 'twenty-one thousand seven hundred two');\nINSERT INTO t2 VALUES(6438, 65357, 'sixty-five thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(6439, 53554, 'fifty-three thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(6440, 84396, 'eighty-four thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(6441, 98027, 'ninety-eight thousand twenty-seven');\nINSERT INTO t2 VALUES(6442, 58883, 'fifty-eight thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(6443, 86208, 'eighty-six thousand two hundred eight');\nINSERT INTO t2 VALUES(6444, 10831, 'ten thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(6445, 22454, 'twenty-two thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(6446, 24336, 'twenty-four thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(6447, 94127, 'ninety-four thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(6448, 77752, 'seventy-seven thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(6449, 30211, 'thirty thousand two hundred eleven');\nINSERT INTO t2 VALUES(6450, 72104, 'seventy-two thousand one hundred four');\nINSERT INTO t2 VALUES(6451, 14312, 'fourteen thousand three hundred twelve');\nINSERT INTO t2 VALUES(6452, 30821, 'thirty thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(6453, 88440, 'eighty-eight thousand four hundred forty');\nINSERT INTO t2 VALUES(6454, 80336, 'eighty thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(6455, 17921, 'seventeen thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(6456, 72075, 'seventy-two thousand seventy-five');\nINSERT INTO t2 VALUES(6457, 68952, 'sixty-eight thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(6458, 50976, 'fifty thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(6459, 17339, 'seventeen thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(6460, 76275, 'seventy-six thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(6461, 5063, 'five thousand sixty-three');\nINSERT INTO t2 VALUES(6462, 56282, 'fifty-six thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(6463, 58924, 'fifty-eight thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(6464, 61997, 'sixty-one thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(6465, 6748, 'six thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(6466, 2445, 'two thousand four hundred forty-five');\nINSERT INTO t2 VALUES(6467, 95279, 'ninety-five thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(6468, 58370, 'fifty-eight thousand three hundred seventy');\nINSERT INTO t2 VALUES(6469, 79648, 'seventy-nine thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(6470, 19836, 'nineteen thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(6471, 26488, 'twenty-six thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(6472, 46300, 'forty-six thousand three hundred');\nINSERT INTO t2 VALUES(6473, 59242, 'fifty-nine thousand two hundred forty-two');\nINSERT INTO t2 VALUES(6474, 94537, 'ninety-four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(6475, 48770, 'forty-eight thousand seven hundred seventy');\nINSERT INTO t2 VALUES(6476, 73293, 'seventy-three thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(6477, 71587, 'seventy-one thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(6478, 34578, 'thirty-four thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(6479, 395, 'three hundred ninety-five');\nINSERT INTO t2 VALUES(6480, 49738, 'forty-nine thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(6481, 39372, 'thirty-nine thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(6482, 58806, 'fifty-eight thousand eight hundred six');\nINSERT INTO t2 VALUES(6483, 81494, 'eighty-one thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(6484, 50298, 'fifty thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(6485, 91193, 'ninety-one thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(6486, 84418, 'eighty-four thousand four hundred eighteen');\nINSERT INTO t2 VALUES(6487, 43246, 'forty-three thousand two hundred forty-six');\nINSERT INTO t2 VALUES(6488, 99111, 'ninety-nine thousand one hundred eleven');\nINSERT INTO t2 VALUES(6489, 87337, 'eighty-seven thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(6490, 353, 'three hundred fifty-three');\nINSERT INTO t2 VALUES(6491, 20434, 'twenty thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(6492, 63428, 'sixty-three thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(6493, 33969, 'thirty-three thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(6494, 3224, 'three thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(6495, 64553, 'sixty-four thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(6496, 950, 'nine hundred fifty');\nINSERT INTO t2 VALUES(6497, 47927, 'forty-seven thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(6498, 5149, 'five thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(6499, 30719, 'thirty thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(6500, 50162, 'fifty thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(6501, 76386, 'seventy-six thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(6502, 5514, 'five thousand five hundred fourteen');\nINSERT INTO t2 VALUES(6503, 98674, 'ninety-eight thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(6504, 7134, 'seven thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(6505, 43648, 'forty-three thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(6506, 63879, 'sixty-three thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(6507, 5557, 'five thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(6508, 48890, 'forty-eight thousand eight hundred ninety');\nINSERT INTO t2 VALUES(6509, 18033, 'eighteen thousand thirty-three');\nINSERT INTO t2 VALUES(6510, 72800, 'seventy-two thousand eight hundred');\nINSERT INTO t2 VALUES(6511, 45062, 'forty-five thousand sixty-two');\nINSERT INTO t2 VALUES(6512, 89541, 'eighty-nine thousand five hundred forty-one');\nINSERT INTO t2 VALUES(6513, 337, 'three hundred thirty-seven');\nINSERT INTO t2 VALUES(6514, 42970, 'forty-two thousand nine hundred seventy');\nINSERT INTO t2 VALUES(6515, 5347, 'five thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(6516, 13576, 'thirteen thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(6517, 69606, 'sixty-nine thousand six hundred six');\nINSERT INTO t2 VALUES(6518, 52446, 'fifty-two thousand four hundred forty-six');\nINSERT INTO t2 VALUES(6519, 36405, 'thirty-six thousand four hundred five');\nINSERT INTO t2 VALUES(6520, 35661, 'thirty-five thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(6521, 46459, 'forty-six thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(6522, 77111, 'seventy-seven thousand one hundred eleven');\nINSERT INTO t2 VALUES(6523, 12640, 'twelve thousand six hundred forty');\nINSERT INTO t2 VALUES(6524, 90869, 'ninety thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(6525, 71557, 'seventy-one thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(6526, 714, 'seven hundred fourteen');\nINSERT INTO t2 VALUES(6527, 95355, 'ninety-five thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(6528, 10730, 'ten thousand seven hundred thirty');\nINSERT INTO t2 VALUES(6529, 6696, 'six thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(6530, 96869, 'ninety-six thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(6531, 68136, 'sixty-eight thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(6532, 67764, 'sixty-seven thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(6533, 12977, 'twelve thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(6534, 64121, 'sixty-four thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(6535, 29262, 'twenty-nine thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(6536, 8828, 'eight thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(6537, 11408, 'eleven thousand four hundred eight');\nINSERT INTO t2 VALUES(6538, 98612, 'ninety-eight thousand six hundred twelve');\nINSERT INTO t2 VALUES(6539, 42095, 'forty-two thousand ninety-five');\nINSERT INTO t2 VALUES(6540, 58308, 'fifty-eight thousand three hundred eight');\nINSERT INTO t2 VALUES(6541, 17618, 'seventeen thousand six hundred eighteen');\nINSERT INTO t2 VALUES(6542, 91229, 'ninety-one thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(6543, 93349, 'ninety-three thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(6544, 40588, 'forty thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(6545, 93831, 'ninety-three thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(6546, 83235, 'eighty-three thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(6547, 98016, 'ninety-eight thousand sixteen');\nINSERT INTO t2 VALUES(6548, 78127, 'seventy-eight thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(6549, 65915, 'sixty-five thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(6550, 35927, 'thirty-five thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(6551, 81793, 'eighty-one thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(6552, 4105, 'four thousand one hundred five');\nINSERT INTO t2 VALUES(6553, 98613, 'ninety-eight thousand six hundred thirteen');\nINSERT INTO t2 VALUES(6554, 31952, 'thirty-one thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(6555, 18668, 'eighteen thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(6556, 70762, 'seventy thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(6557, 37556, 'thirty-seven thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(6558, 64423, 'sixty-four thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(6559, 61176, 'sixty-one thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(6560, 27820, 'twenty-seven thousand eight hundred twenty');\nINSERT INTO t2 VALUES(6561, 29432, 'twenty-nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(6562, 67897, 'sixty-seven thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(6563, 75938, 'seventy-five thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(6564, 35003, 'thirty-five thousand three');\nINSERT INTO t2 VALUES(6565, 21286, 'twenty-one thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(6566, 12470, 'twelve thousand four hundred seventy');\nINSERT INTO t2 VALUES(6567, 71891, 'seventy-one thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(6568, 2784, 'two thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(6569, 22162, 'twenty-two thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(6570, 52367, 'fifty-two thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(6571, 50157, 'fifty thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(6572, 20175, 'twenty thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(6573, 25136, 'twenty-five thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(6574, 67773, 'sixty-seven thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(6575, 22905, 'twenty-two thousand nine hundred five');\nINSERT INTO t2 VALUES(6576, 7527, 'seven thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(6577, 99972, 'ninety-nine thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(6578, 26244, 'twenty-six thousand two hundred forty-four');\nINSERT INTO t2 VALUES(6579, 3988, 'three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(6580, 78093, 'seventy-eight thousand ninety-three');\nINSERT INTO t2 VALUES(6581, 51433, 'fifty-one thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(6582, 46328, 'forty-six thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(6583, 86139, 'eighty-six thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(6584, 4370, 'four thousand three hundred seventy');\nINSERT INTO t2 VALUES(6585, 6155, 'six thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(6586, 44537, 'forty-four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(6587, 61247, 'sixty-one thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(6588, 81676, 'eighty-one thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(6589, 82034, 'eighty-two thousand thirty-four');\nINSERT INTO t2 VALUES(6590, 51474, 'fifty-one thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(6591, 57140, 'fifty-seven thousand one hundred forty');\nINSERT INTO t2 VALUES(6592, 77032, 'seventy-seven thousand thirty-two');\nINSERT INTO t2 VALUES(6593, 85202, 'eighty-five thousand two hundred two');\nINSERT INTO t2 VALUES(6594, 97387, 'ninety-seven thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(6595, 36699, 'thirty-six thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(6596, 95494, 'ninety-five thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(6597, 60862, 'sixty thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(6598, 12721, 'twelve thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(6599, 46185, 'forty-six thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(6600, 5960, 'five thousand nine hundred sixty');\nINSERT INTO t2 VALUES(6601, 59841, 'fifty-nine thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(6602, 20040, 'twenty thousand forty');\nINSERT INTO t2 VALUES(6603, 52851, 'fifty-two thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(6604, 98369, 'ninety-eight thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(6605, 47209, 'forty-seven thousand two hundred nine');\nINSERT INTO t2 VALUES(6606, 1166, 'one thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(6607, 94770, 'ninety-four thousand seven hundred seventy');\nINSERT INTO t2 VALUES(6608, 89349, 'eighty-nine thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(6609, 7611, 'seven thousand six hundred eleven');\nINSERT INTO t2 VALUES(6610, 12467, 'twelve thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(6611, 93893, 'ninety-three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(6612, 59941, 'fifty-nine thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(6613, 42902, 'forty-two thousand nine hundred two');\nINSERT INTO t2 VALUES(6614, 57172, 'fifty-seven thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(6615, 61256, 'sixty-one thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(6616, 38110, 'thirty-eight thousand one hundred ten');\nINSERT INTO t2 VALUES(6617, 35078, 'thirty-five thousand seventy-eight');\nINSERT INTO t2 VALUES(6618, 57155, 'fifty-seven thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(6619, 29333, 'twenty-nine thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(6620, 3543, 'three thousand five hundred forty-three');\nINSERT INTO t2 VALUES(6621, 55935, 'fifty-five thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(6622, 28858, 'twenty-eight thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(6623, 94101, 'ninety-four thousand one hundred one');\nINSERT INTO t2 VALUES(6624, 91360, 'ninety-one thousand three hundred sixty');\nINSERT INTO t2 VALUES(6625, 79815, 'seventy-nine thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(6626, 14822, 'fourteen thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(6627, 23427, 'twenty-three thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(6628, 51242, 'fifty-one thousand two hundred forty-two');\nINSERT INTO t2 VALUES(6629, 7058, 'seven thousand fifty-eight');\nINSERT INTO t2 VALUES(6630, 89467, 'eighty-nine thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(6631, 79717, 'seventy-nine thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(6632, 16821, 'sixteen thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(6633, 33223, 'thirty-three thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(6634, 96635, 'ninety-six thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(6635, 19409, 'nineteen thousand four hundred nine');\nINSERT INTO t2 VALUES(6636, 45622, 'forty-five thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(6637, 70150, 'seventy thousand one hundred fifty');\nINSERT INTO t2 VALUES(6638, 17916, 'seventeen thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(6639, 84015, 'eighty-four thousand fifteen');\nINSERT INTO t2 VALUES(6640, 52708, 'fifty-two thousand seven hundred eight');\nINSERT INTO t2 VALUES(6641, 79712, 'seventy-nine thousand seven hundred twelve');\nINSERT INTO t2 VALUES(6642, 52733, 'fifty-two thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(6643, 10721, 'ten thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(6644, 63701, 'sixty-three thousand seven hundred one');\nINSERT INTO t2 VALUES(6645, 71130, 'seventy-one thousand one hundred thirty');\nINSERT INTO t2 VALUES(6646, 99480, 'ninety-nine thousand four hundred eighty');\nINSERT INTO t2 VALUES(6647, 92378, 'ninety-two thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(6648, 26104, 'twenty-six thousand one hundred four');\nINSERT INTO t2 VALUES(6649, 9611, 'nine thousand six hundred eleven');\nINSERT INTO t2 VALUES(6650, 55174, 'fifty-five thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(6651, 5313, 'five thousand three hundred thirteen');\nINSERT INTO t2 VALUES(6652, 73525, 'seventy-three thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(6653, 76530, 'seventy-six thousand five hundred thirty');\nINSERT INTO t2 VALUES(6654, 39395, 'thirty-nine thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(6655, 21956, 'twenty-one thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(6656, 78486, 'seventy-eight thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(6657, 14857, 'fourteen thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(6658, 53768, 'fifty-three thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(6659, 39320, 'thirty-nine thousand three hundred twenty');\nINSERT INTO t2 VALUES(6660, 15883, 'fifteen thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(6661, 4770, 'four thousand seven hundred seventy');\nINSERT INTO t2 VALUES(6662, 72020, 'seventy-two thousand twenty');\nINSERT INTO t2 VALUES(6663, 26000, 'twenty-six thousand');\nINSERT INTO t2 VALUES(6664, 95474, 'ninety-five thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(6665, 95154, 'ninety-five thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(6666, 53852, 'fifty-three thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(6667, 53561, 'fifty-three thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(6668, 76098, 'seventy-six thousand ninety-eight');\nINSERT INTO t2 VALUES(6669, 19230, 'nineteen thousand two hundred thirty');\nINSERT INTO t2 VALUES(6670, 2424, 'two thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(6671, 33583, 'thirty-three thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(6672, 30537, 'thirty thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(6673, 95682, 'ninety-five thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(6674, 89282, 'eighty-nine thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(6675, 57914, 'fifty-seven thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(6676, 19324, 'nineteen thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(6677, 38619, 'thirty-eight thousand six hundred nineteen');\nINSERT INTO t2 VALUES(6678, 4945, 'four thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(6679, 10780, 'ten thousand seven hundred eighty');\nINSERT INTO t2 VALUES(6680, 4347, 'four thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(6681, 24282, 'twenty-four thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(6682, 7485, 'seven thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(6683, 58345, 'fifty-eight thousand three hundred forty-five');\nINSERT INTO t2 VALUES(6684, 68449, 'sixty-eight thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(6685, 28984, 'twenty-eight thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(6686, 91546, 'ninety-one thousand five hundred forty-six');\nINSERT INTO t2 VALUES(6687, 61582, 'sixty-one thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(6688, 30617, 'thirty thousand six hundred seventeen');\nINSERT INTO t2 VALUES(6689, 23961, 'twenty-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(6690, 52806, 'fifty-two thousand eight hundred six');\nINSERT INTO t2 VALUES(6691, 96082, 'ninety-six thousand eighty-two');\nINSERT INTO t2 VALUES(6692, 56194, 'fifty-six thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(6693, 22806, 'twenty-two thousand eight hundred six');\nINSERT INTO t2 VALUES(6694, 46566, 'forty-six thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(6695, 3627, 'three thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(6696, 14933, 'fourteen thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(6697, 37558, 'thirty-seven thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(6698, 33543, 'thirty-three thousand five hundred forty-three');\nINSERT INTO t2 VALUES(6699, 13103, 'thirteen thousand one hundred three');\nINSERT INTO t2 VALUES(6700, 86573, 'eighty-six thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(6701, 1830, 'one thousand eight hundred thirty');\nINSERT INTO t2 VALUES(6702, 89933, 'eighty-nine thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(6703, 26476, 'twenty-six thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(6704, 32688, 'thirty-two thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(6705, 79443, 'seventy-nine thousand four hundred forty-three');\nINSERT INTO t2 VALUES(6706, 51404, 'fifty-one thousand four hundred four');\nINSERT INTO t2 VALUES(6707, 92220, 'ninety-two thousand two hundred twenty');\nINSERT INTO t2 VALUES(6708, 19932, 'nineteen thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(6709, 77340, 'seventy-seven thousand three hundred forty');\nINSERT INTO t2 VALUES(6710, 78238, 'seventy-eight thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(6711, 54462, 'fifty-four thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(6712, 69871, 'sixty-nine thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(6713, 70202, 'seventy thousand two hundred two');\nINSERT INTO t2 VALUES(6714, 77044, 'seventy-seven thousand forty-four');\nINSERT INTO t2 VALUES(6715, 8101, 'eight thousand one hundred one');\nINSERT INTO t2 VALUES(6716, 50150, 'fifty thousand one hundred fifty');\nINSERT INTO t2 VALUES(6717, 53488, 'fifty-three thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(6718, 82723, 'eighty-two thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(6719, 38840, 'thirty-eight thousand eight hundred forty');\nINSERT INTO t2 VALUES(6720, 36854, 'thirty-six thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(6721, 73289, 'seventy-three thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(6722, 5460, 'five thousand four hundred sixty');\nINSERT INTO t2 VALUES(6723, 86116, 'eighty-six thousand one hundred sixteen');\nINSERT INTO t2 VALUES(6724, 91671, 'ninety-one thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(6725, 25718, 'twenty-five thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(6726, 49405, 'forty-nine thousand four hundred five');\nINSERT INTO t2 VALUES(6727, 2805, 'two thousand eight hundred five');\nINSERT INTO t2 VALUES(6728, 63907, 'sixty-three thousand nine hundred seven');\nINSERT INTO t2 VALUES(6729, 44633, 'forty-four thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(6730, 83729, 'eighty-three thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(6731, 98111, 'ninety-eight thousand one hundred eleven');\nINSERT INTO t2 VALUES(6732, 84927, 'eighty-four thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(6733, 27815, 'twenty-seven thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(6734, 65523, 'sixty-five thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(6735, 39927, 'thirty-nine thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(6736, 26574, 'twenty-six thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(6737, 95730, 'ninety-five thousand seven hundred thirty');\nINSERT INTO t2 VALUES(6738, 77103, 'seventy-seven thousand one hundred three');\nINSERT INTO t2 VALUES(6739, 94895, 'ninety-four thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(6740, 12374, 'twelve thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(6741, 84618, 'eighty-four thousand six hundred eighteen');\nINSERT INTO t2 VALUES(6742, 70940, 'seventy thousand nine hundred forty');\nINSERT INTO t2 VALUES(6743, 95197, 'ninety-five thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(6744, 8114, 'eight thousand one hundred fourteen');\nINSERT INTO t2 VALUES(6745, 48574, 'forty-eight thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(6746, 41804, 'forty-one thousand eight hundred four');\nINSERT INTO t2 VALUES(6747, 18518, 'eighteen thousand five hundred eighteen');\nINSERT INTO t2 VALUES(6748, 39717, 'thirty-nine thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(6749, 54606, 'fifty-four thousand six hundred six');\nINSERT INTO t2 VALUES(6750, 75763, 'seventy-five thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(6751, 8546, 'eight thousand five hundred forty-six');\nINSERT INTO t2 VALUES(6752, 37046, 'thirty-seven thousand forty-six');\nINSERT INTO t2 VALUES(6753, 76160, 'seventy-six thousand one hundred sixty');\nINSERT INTO t2 VALUES(6754, 79606, 'seventy-nine thousand six hundred six');\nINSERT INTO t2 VALUES(6755, 77839, 'seventy-seven thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(6756, 20977, 'twenty thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(6757, 5614, 'five thousand six hundred fourteen');\nINSERT INTO t2 VALUES(6758, 45285, 'forty-five thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(6759, 75021, 'seventy-five thousand twenty-one');\nINSERT INTO t2 VALUES(6760, 75872, 'seventy-five thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(6761, 40849, 'forty thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(6762, 24484, 'twenty-four thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(6763, 27909, 'twenty-seven thousand nine hundred nine');\nINSERT INTO t2 VALUES(6764, 78913, 'seventy-eight thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(6765, 88805, 'eighty-eight thousand eight hundred five');\nINSERT INTO t2 VALUES(6766, 63580, 'sixty-three thousand five hundred eighty');\nINSERT INTO t2 VALUES(6767, 7919, 'seven thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(6768, 93222, 'ninety-three thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(6769, 24430, 'twenty-four thousand four hundred thirty');\nINSERT INTO t2 VALUES(6770, 43950, 'forty-three thousand nine hundred fifty');\nINSERT INTO t2 VALUES(6771, 1310, 'one thousand three hundred ten');\nINSERT INTO t2 VALUES(6772, 70080, 'seventy thousand eighty');\nINSERT INTO t2 VALUES(6773, 81148, 'eighty-one thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(6774, 62541, 'sixty-two thousand five hundred forty-one');\nINSERT INTO t2 VALUES(6775, 19398, 'nineteen thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(6776, 97179, 'ninety-seven thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(6777, 34684, 'thirty-four thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(6778, 88874, 'eighty-eight thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(6779, 57409, 'fifty-seven thousand four hundred nine');\nINSERT INTO t2 VALUES(6780, 49870, 'forty-nine thousand eight hundred seventy');\nINSERT INTO t2 VALUES(6781, 35463, 'thirty-five thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(6782, 36057, 'thirty-six thousand fifty-seven');\nINSERT INTO t2 VALUES(6783, 65851, 'sixty-five thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(6784, 13579, 'thirteen thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(6785, 47773, 'forty-seven thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(6786, 32848, 'thirty-two thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(6787, 79542, 'seventy-nine thousand five hundred forty-two');\nINSERT INTO t2 VALUES(6788, 90578, 'ninety thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(6789, 35204, 'thirty-five thousand two hundred four');\nINSERT INTO t2 VALUES(6790, 95491, 'ninety-five thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(6791, 7086, 'seven thousand eighty-six');\nINSERT INTO t2 VALUES(6792, 70457, 'seventy thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(6793, 34926, 'thirty-four thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(6794, 36612, 'thirty-six thousand six hundred twelve');\nINSERT INTO t2 VALUES(6795, 99637, 'ninety-nine thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(6796, 82112, 'eighty-two thousand one hundred twelve');\nINSERT INTO t2 VALUES(6797, 15285, 'fifteen thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(6798, 90602, 'ninety thousand six hundred two');\nINSERT INTO t2 VALUES(6799, 79256, 'seventy-nine thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(6800, 35128, 'thirty-five thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(6801, 12135, 'twelve thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(6802, 4111, 'four thousand one hundred eleven');\nINSERT INTO t2 VALUES(6803, 66888, 'sixty-six thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(6804, 13525, 'thirteen thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(6805, 6429, 'six thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(6806, 9298, 'nine thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(6807, 69879, 'sixty-nine thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(6808, 95797, 'ninety-five thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(6809, 1046, 'one thousand forty-six');\nINSERT INTO t2 VALUES(6810, 44336, 'forty-four thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(6811, 48541, 'forty-eight thousand five hundred forty-one');\nINSERT INTO t2 VALUES(6812, 17256, 'seventeen thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(6813, 23456, 'twenty-three thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(6814, 32192, 'thirty-two thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(6815, 78220, 'seventy-eight thousand two hundred twenty');\nINSERT INTO t2 VALUES(6816, 78461, 'seventy-eight thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(6817, 87653, 'eighty-seven thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(6818, 45130, 'forty-five thousand one hundred thirty');\nINSERT INTO t2 VALUES(6819, 80243, 'eighty thousand two hundred forty-three');\nINSERT INTO t2 VALUES(6820, 46284, 'forty-six thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(6821, 75250, 'seventy-five thousand two hundred fifty');\nINSERT INTO t2 VALUES(6822, 66744, 'sixty-six thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(6823, 37184, 'thirty-seven thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(6824, 58755, 'fifty-eight thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(6825, 63300, 'sixty-three thousand three hundred');\nINSERT INTO t2 VALUES(6826, 62363, 'sixty-two thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(6827, 8186, 'eight thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(6828, 50989, 'fifty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(6829, 30688, 'thirty thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(6830, 72070, 'seventy-two thousand seventy');\nINSERT INTO t2 VALUES(6831, 87929, 'eighty-seven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(6832, 81492, 'eighty-one thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(6833, 90838, 'ninety thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(6834, 3276, 'three thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(6835, 74391, 'seventy-four thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(6836, 47180, 'forty-seven thousand one hundred eighty');\nINSERT INTO t2 VALUES(6837, 16898, 'sixteen thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(6838, 42432, 'forty-two thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(6839, 61035, 'sixty-one thousand thirty-five');\nINSERT INTO t2 VALUES(6840, 17760, 'seventeen thousand seven hundred sixty');\nINSERT INTO t2 VALUES(6841, 12117, 'twelve thousand one hundred seventeen');\nINSERT INTO t2 VALUES(6842, 65747, 'sixty-five thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(6843, 32344, 'thirty-two thousand three hundred forty-four');\nINSERT INTO t2 VALUES(6844, 73543, 'seventy-three thousand five hundred forty-three');\nINSERT INTO t2 VALUES(6845, 51745, 'fifty-one thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(6846, 5895, 'five thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(6847, 85829, 'eighty-five thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(6848, 9788, 'nine thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(6849, 22687, 'twenty-two thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(6850, 21778, 'twenty-one thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(6851, 98821, 'ninety-eight thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(6852, 27493, 'twenty-seven thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(6853, 49087, 'forty-nine thousand eighty-seven');\nINSERT INTO t2 VALUES(6854, 20492, 'twenty thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(6855, 34648, 'thirty-four thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(6856, 63848, 'sixty-three thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(6857, 10977, 'ten thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(6858, 39101, 'thirty-nine thousand one hundred one');\nINSERT INTO t2 VALUES(6859, 56572, 'fifty-six thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(6860, 16325, 'sixteen thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(6861, 34890, 'thirty-four thousand eight hundred ninety');\nINSERT INTO t2 VALUES(6862, 8901, 'eight thousand nine hundred one');\nINSERT INTO t2 VALUES(6863, 58120, 'fifty-eight thousand one hundred twenty');\nINSERT INTO t2 VALUES(6864, 9539, 'nine thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(6865, 18936, 'eighteen thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(6866, 67666, 'sixty-seven thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(6867, 43303, 'forty-three thousand three hundred three');\nINSERT INTO t2 VALUES(6868, 67804, 'sixty-seven thousand eight hundred four');\nINSERT INTO t2 VALUES(6869, 33925, 'thirty-three thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(6870, 86284, 'eighty-six thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(6871, 582, 'five hundred eighty-two');\nINSERT INTO t2 VALUES(6872, 48012, 'forty-eight thousand twelve');\nINSERT INTO t2 VALUES(6873, 56226, 'fifty-six thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(6874, 83017, 'eighty-three thousand seventeen');\nINSERT INTO t2 VALUES(6875, 52765, 'fifty-two thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(6876, 9757, 'nine thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(6877, 95014, 'ninety-five thousand fourteen');\nINSERT INTO t2 VALUES(6878, 8705, 'eight thousand seven hundred five');\nINSERT INTO t2 VALUES(6879, 99481, 'ninety-nine thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(6880, 26805, 'twenty-six thousand eight hundred five');\nINSERT INTO t2 VALUES(6881, 54671, 'fifty-four thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(6882, 77647, 'seventy-seven thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(6883, 47193, 'forty-seven thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(6884, 17244, 'seventeen thousand two hundred forty-four');\nINSERT INTO t2 VALUES(6885, 76324, 'seventy-six thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(6886, 35193, 'thirty-five thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(6887, 28642, 'twenty-eight thousand six hundred forty-two');\nINSERT INTO t2 VALUES(6888, 53149, 'fifty-three thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(6889, 53230, 'fifty-three thousand two hundred thirty');\nINSERT INTO t2 VALUES(6890, 448, 'four hundred forty-eight');\nINSERT INTO t2 VALUES(6891, 81316, 'eighty-one thousand three hundred sixteen');\nINSERT INTO t2 VALUES(6892, 89411, 'eighty-nine thousand four hundred eleven');\nINSERT INTO t2 VALUES(6893, 90177, 'ninety thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(6894, 60157, 'sixty thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(6895, 52740, 'fifty-two thousand seven hundred forty');\nINSERT INTO t2 VALUES(6896, 12324, 'twelve thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(6897, 90240, 'ninety thousand two hundred forty');\nINSERT INTO t2 VALUES(6898, 46272, 'forty-six thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(6899, 3926, 'three thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(6900, 66331, 'sixty-six thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(6901, 39669, 'thirty-nine thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(6902, 96184, 'ninety-six thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(6903, 8073, 'eight thousand seventy-three');\nINSERT INTO t2 VALUES(6904, 28504, 'twenty-eight thousand five hundred four');\nINSERT INTO t2 VALUES(6905, 39372, 'thirty-nine thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(6906, 14669, 'fourteen thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(6907, 59393, 'fifty-nine thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(6908, 36396, 'thirty-six thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(6909, 99219, 'ninety-nine thousand two hundred nineteen');\nINSERT INTO t2 VALUES(6910, 31371, 'thirty-one thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(6911, 35693, 'thirty-five thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(6912, 58788, 'fifty-eight thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(6913, 41832, 'forty-one thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(6914, 75661, 'seventy-five thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(6915, 47359, 'forty-seven thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(6916, 73195, 'seventy-three thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(6917, 80499, 'eighty thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(6918, 5963, 'five thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(6919, 27733, 'twenty-seven thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(6920, 86525, 'eighty-six thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(6921, 44667, 'forty-four thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(6922, 23624, 'twenty-three thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(6923, 49974, 'forty-nine thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(6924, 30988, 'thirty thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(6925, 52525, 'fifty-two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(6926, 7567, 'seven thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(6927, 29063, 'twenty-nine thousand sixty-three');\nINSERT INTO t2 VALUES(6928, 59760, 'fifty-nine thousand seven hundred sixty');\nINSERT INTO t2 VALUES(6929, 64774, 'sixty-four thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(6930, 56241, 'fifty-six thousand two hundred forty-one');\nINSERT INTO t2 VALUES(6931, 21318, 'twenty-one thousand three hundred eighteen');\nINSERT INTO t2 VALUES(6932, 29993, 'twenty-nine thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(6933, 13052, 'thirteen thousand fifty-two');\nINSERT INTO t2 VALUES(6934, 63940, 'sixty-three thousand nine hundred forty');\nINSERT INTO t2 VALUES(6935, 10944, 'ten thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(6936, 53517, 'fifty-three thousand five hundred seventeen');\nINSERT INTO t2 VALUES(6937, 3365, 'three thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(6938, 78936, 'seventy-eight thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(6939, 19479, 'nineteen thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(6940, 75930, 'seventy-five thousand nine hundred thirty');\nINSERT INTO t2 VALUES(6941, 37705, 'thirty-seven thousand seven hundred five');\nINSERT INTO t2 VALUES(6942, 69175, 'sixty-nine thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(6943, 22232, 'twenty-two thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(6944, 28248, 'twenty-eight thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(6945, 25273, 'twenty-five thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(6946, 63132, 'sixty-three thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(6947, 65891, 'sixty-five thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(6948, 38574, 'thirty-eight thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(6949, 68375, 'sixty-eight thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(6950, 22814, 'twenty-two thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(6951, 12251, 'twelve thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(6952, 67307, 'sixty-seven thousand three hundred seven');\nINSERT INTO t2 VALUES(6953, 91833, 'ninety-one thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(6954, 89215, 'eighty-nine thousand two hundred fifteen');\nINSERT INTO t2 VALUES(6955, 9285, 'nine thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(6956, 84710, 'eighty-four thousand seven hundred ten');\nINSERT INTO t2 VALUES(6957, 14144, 'fourteen thousand one hundred forty-four');\nINSERT INTO t2 VALUES(6958, 45960, 'forty-five thousand nine hundred sixty');\nINSERT INTO t2 VALUES(6959, 9668, 'nine thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(6960, 52309, 'fifty-two thousand three hundred nine');\nINSERT INTO t2 VALUES(6961, 79198, 'seventy-nine thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(6962, 8711, 'eight thousand seven hundred eleven');\nINSERT INTO t2 VALUES(6963, 31513, 'thirty-one thousand five hundred thirteen');\nINSERT INTO t2 VALUES(6964, 68737, 'sixty-eight thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(6965, 7604, 'seven thousand six hundred four');\nINSERT INTO t2 VALUES(6966, 51620, 'fifty-one thousand six hundred twenty');\nINSERT INTO t2 VALUES(6967, 10426, 'ten thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(6968, 17702, 'seventeen thousand seven hundred two');\nINSERT INTO t2 VALUES(6969, 42070, 'forty-two thousand seventy');\nINSERT INTO t2 VALUES(6970, 10874, 'ten thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(6971, 25463, 'twenty-five thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(6972, 43564, 'forty-three thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(6973, 91781, 'ninety-one thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(6974, 5253, 'five thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(6975, 4171, 'four thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(6976, 26368, 'twenty-six thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(6977, 32680, 'thirty-two thousand six hundred eighty');\nINSERT INTO t2 VALUES(6978, 74249, 'seventy-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(6979, 61362, 'sixty-one thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(6980, 65168, 'sixty-five thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(6981, 4076, 'four thousand seventy-six');\nINSERT INTO t2 VALUES(6982, 64368, 'sixty-four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(6983, 71973, 'seventy-one thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(6984, 36830, 'thirty-six thousand eight hundred thirty');\nINSERT INTO t2 VALUES(6985, 91370, 'ninety-one thousand three hundred seventy');\nINSERT INTO t2 VALUES(6986, 64732, 'sixty-four thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(6987, 14905, 'fourteen thousand nine hundred five');\nINSERT INTO t2 VALUES(6988, 35130, 'thirty-five thousand one hundred thirty');\nINSERT INTO t2 VALUES(6989, 41914, 'forty-one thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(6990, 51521, 'fifty-one thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(6991, 58490, 'fifty-eight thousand four hundred ninety');\nINSERT INTO t2 VALUES(6992, 49421, 'forty-nine thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(6993, 98396, 'ninety-eight thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(6994, 50358, 'fifty thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(6995, 57482, 'fifty-seven thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(6996, 46105, 'forty-six thousand one hundred five');\nINSERT INTO t2 VALUES(6997, 847, 'eight hundred forty-seven');\nINSERT INTO t2 VALUES(6998, 40844, 'forty thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(6999, 87739, 'eighty-seven thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(7000, 37428, 'thirty-seven thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(7001, 49604, 'forty-nine thousand six hundred four');\nINSERT INTO t2 VALUES(7002, 78936, 'seventy-eight thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(7003, 89645, 'eighty-nine thousand six hundred forty-five');\nINSERT INTO t2 VALUES(7004, 86177, 'eighty-six thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(7005, 17366, 'seventeen thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(7006, 31491, 'thirty-one thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(7007, 41212, 'forty-one thousand two hundred twelve');\nINSERT INTO t2 VALUES(7008, 43175, 'forty-three thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(7009, 2477, 'two thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(7010, 6010, 'six thousand ten');\nINSERT INTO t2 VALUES(7011, 69722, 'sixty-nine thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(7012, 27385, 'twenty-seven thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(7013, 45249, 'forty-five thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(7014, 28782, 'twenty-eight thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(7015, 141, 'one hundred forty-one');\nINSERT INTO t2 VALUES(7016, 80806, 'eighty thousand eight hundred six');\nINSERT INTO t2 VALUES(7017, 84533, 'eighty-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(7018, 12518, 'twelve thousand five hundred eighteen');\nINSERT INTO t2 VALUES(7019, 91872, 'ninety-one thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(7020, 72529, 'seventy-two thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(7021, 21474, 'twenty-one thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(7022, 23707, 'twenty-three thousand seven hundred seven');\nINSERT INTO t2 VALUES(7023, 52041, 'fifty-two thousand forty-one');\nINSERT INTO t2 VALUES(7024, 36648, 'thirty-six thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(7025, 39847, 'thirty-nine thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(7026, 53629, 'fifty-three thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(7027, 7427, 'seven thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(7028, 75143, 'seventy-five thousand one hundred forty-three');\nINSERT INTO t2 VALUES(7029, 54824, 'fifty-four thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(7030, 36351, 'thirty-six thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(7031, 93789, 'ninety-three thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(7032, 95852, 'ninety-five thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(7033, 32725, 'thirty-two thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(7034, 48260, 'forty-eight thousand two hundred sixty');\nINSERT INTO t2 VALUES(7035, 68480, 'sixty-eight thousand four hundred eighty');\nINSERT INTO t2 VALUES(7036, 33039, 'thirty-three thousand thirty-nine');\nINSERT INTO t2 VALUES(7037, 50746, 'fifty thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(7038, 62754, 'sixty-two thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(7039, 26859, 'twenty-six thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(7040, 32622, 'thirty-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(7041, 1123, 'one thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(7042, 73551, 'seventy-three thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(7043, 87616, 'eighty-seven thousand six hundred sixteen');\nINSERT INTO t2 VALUES(7044, 78741, 'seventy-eight thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(7045, 15746, 'fifteen thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(7046, 75876, 'seventy-five thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(7047, 47990, 'forty-seven thousand nine hundred ninety');\nINSERT INTO t2 VALUES(7048, 15987, 'fifteen thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(7049, 13907, 'thirteen thousand nine hundred seven');\nINSERT INTO t2 VALUES(7050, 7052, 'seven thousand fifty-two');\nINSERT INTO t2 VALUES(7051, 73916, 'seventy-three thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(7052, 4671, 'four thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(7053, 72315, 'seventy-two thousand three hundred fifteen');\nINSERT INTO t2 VALUES(7054, 74506, 'seventy-four thousand five hundred six');\nINSERT INTO t2 VALUES(7055, 11918, 'eleven thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(7056, 57309, 'fifty-seven thousand three hundred nine');\nINSERT INTO t2 VALUES(7057, 13626, 'thirteen thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(7058, 48392, 'forty-eight thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(7059, 47636, 'forty-seven thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(7060, 18743, 'eighteen thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(7061, 38692, 'thirty-eight thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(7062, 70530, 'seventy thousand five hundred thirty');\nINSERT INTO t2 VALUES(7063, 62964, 'sixty-two thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(7064, 73613, 'seventy-three thousand six hundred thirteen');\nINSERT INTO t2 VALUES(7065, 59421, 'fifty-nine thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(7066, 5700, 'five thousand seven hundred');\nINSERT INTO t2 VALUES(7067, 27176, 'twenty-seven thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(7068, 48998, 'forty-eight thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(7069, 79311, 'seventy-nine thousand three hundred eleven');\nINSERT INTO t2 VALUES(7070, 73508, 'seventy-three thousand five hundred eight');\nINSERT INTO t2 VALUES(7071, 2711, 'two thousand seven hundred eleven');\nINSERT INTO t2 VALUES(7072, 25577, 'twenty-five thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(7073, 61225, 'sixty-one thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(7074, 64789, 'sixty-four thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(7075, 74509, 'seventy-four thousand five hundred nine');\nINSERT INTO t2 VALUES(7076, 29661, 'twenty-nine thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(7077, 82521, 'eighty-two thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(7078, 83901, 'eighty-three thousand nine hundred one');\nINSERT INTO t2 VALUES(7079, 82200, 'eighty-two thousand two hundred');\nINSERT INTO t2 VALUES(7080, 81811, 'eighty-one thousand eight hundred eleven');\nINSERT INTO t2 VALUES(7081, 41680, 'forty-one thousand six hundred eighty');\nINSERT INTO t2 VALUES(7082, 83328, 'eighty-three thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(7083, 15653, 'fifteen thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(7084, 56438, 'fifty-six thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(7085, 58737, 'fifty-eight thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(7086, 41835, 'forty-one thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(7087, 28160, 'twenty-eight thousand one hundred sixty');\nINSERT INTO t2 VALUES(7088, 65510, 'sixty-five thousand five hundred ten');\nINSERT INTO t2 VALUES(7089, 56165, 'fifty-six thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(7090, 25838, 'twenty-five thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(7091, 61693, 'sixty-one thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(7092, 36263, 'thirty-six thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(7093, 24346, 'twenty-four thousand three hundred forty-six');\nINSERT INTO t2 VALUES(7094, 97724, 'ninety-seven thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(7095, 47865, 'forty-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(7096, 80729, 'eighty thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(7097, 60014, 'sixty thousand fourteen');\nINSERT INTO t2 VALUES(7098, 33462, 'thirty-three thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(7099, 60569, 'sixty thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(7100, 55267, 'fifty-five thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(7101, 96726, 'ninety-six thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(7102, 11627, 'eleven thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(7103, 95666, 'ninety-five thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(7104, 90785, 'ninety thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(7105, 46858, 'forty-six thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(7106, 23384, 'twenty-three thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(7107, 97789, 'ninety-seven thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(7108, 59434, 'fifty-nine thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(7109, 79464, 'seventy-nine thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(7110, 76330, 'seventy-six thousand three hundred thirty');\nINSERT INTO t2 VALUES(7111, 53787, 'fifty-three thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(7112, 69766, 'sixty-nine thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(7113, 52806, 'fifty-two thousand eight hundred six');\nINSERT INTO t2 VALUES(7114, 45628, 'forty-five thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(7115, 3361, 'three thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(7116, 75441, 'seventy-five thousand four hundred forty-one');\nINSERT INTO t2 VALUES(7117, 75175, 'seventy-five thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(7118, 74744, 'seventy-four thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(7119, 54538, 'fifty-four thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(7120, 76323, 'seventy-six thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(7121, 72204, 'seventy-two thousand two hundred four');\nINSERT INTO t2 VALUES(7122, 86654, 'eighty-six thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(7123, 28364, 'twenty-eight thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(7124, 32182, 'thirty-two thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(7125, 71417, 'seventy-one thousand four hundred seventeen');\nINSERT INTO t2 VALUES(7126, 48162, 'forty-eight thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(7127, 5968, 'five thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(7128, 11580, 'eleven thousand five hundred eighty');\nINSERT INTO t2 VALUES(7129, 30605, 'thirty thousand six hundred five');\nINSERT INTO t2 VALUES(7130, 71480, 'seventy-one thousand four hundred eighty');\nINSERT INTO t2 VALUES(7131, 98055, 'ninety-eight thousand fifty-five');\nINSERT INTO t2 VALUES(7132, 53802, 'fifty-three thousand eight hundred two');\nINSERT INTO t2 VALUES(7133, 78630, 'seventy-eight thousand six hundred thirty');\nINSERT INTO t2 VALUES(7134, 77822, 'seventy-seven thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(7135, 61816, 'sixty-one thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(7136, 41188, 'forty-one thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(7137, 96746, 'ninety-six thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(7138, 57021, 'fifty-seven thousand twenty-one');\nINSERT INTO t2 VALUES(7139, 74719, 'seventy-four thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(7140, 21455, 'twenty-one thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(7141, 21564, 'twenty-one thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(7142, 58682, 'fifty-eight thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(7143, 98656, 'ninety-eight thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(7144, 95290, 'ninety-five thousand two hundred ninety');\nINSERT INTO t2 VALUES(7145, 59429, 'fifty-nine thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(7146, 52039, 'fifty-two thousand thirty-nine');\nINSERT INTO t2 VALUES(7147, 26126, 'twenty-six thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(7148, 76788, 'seventy-six thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(7149, 54726, 'fifty-four thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(7150, 87468, 'eighty-seven thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(7151, 96623, 'ninety-six thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(7152, 52206, 'fifty-two thousand two hundred six');\nINSERT INTO t2 VALUES(7153, 90161, 'ninety thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(7154, 28158, 'twenty-eight thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(7155, 72176, 'seventy-two thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(7156, 5698, 'five thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(7157, 8426, 'eight thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(7158, 92481, 'ninety-two thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(7159, 2162, 'two thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(7160, 19418, 'nineteen thousand four hundred eighteen');\nINSERT INTO t2 VALUES(7161, 83044, 'eighty-three thousand forty-four');\nINSERT INTO t2 VALUES(7162, 83576, 'eighty-three thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(7163, 1767, 'one thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(7164, 96772, 'ninety-six thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(7165, 22264, 'twenty-two thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(7166, 77369, 'seventy-seven thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(7167, 15079, 'fifteen thousand seventy-nine');\nINSERT INTO t2 VALUES(7168, 60060, 'sixty thousand sixty');\nINSERT INTO t2 VALUES(7169, 35293, 'thirty-five thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(7170, 18806, 'eighteen thousand eight hundred six');\nINSERT INTO t2 VALUES(7171, 2635, 'two thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(7172, 68586, 'sixty-eight thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(7173, 90063, 'ninety thousand sixty-three');\nINSERT INTO t2 VALUES(7174, 27121, 'twenty-seven thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(7175, 23663, 'twenty-three thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(7176, 12320, 'twelve thousand three hundred twenty');\nINSERT INTO t2 VALUES(7177, 47548, 'forty-seven thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(7178, 73974, 'seventy-three thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(7179, 72131, 'seventy-two thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(7180, 63094, 'sixty-three thousand ninety-four');\nINSERT INTO t2 VALUES(7181, 70707, 'seventy thousand seven hundred seven');\nINSERT INTO t2 VALUES(7182, 83552, 'eighty-three thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(7183, 1399, 'one thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(7184, 17442, 'seventeen thousand four hundred forty-two');\nINSERT INTO t2 VALUES(7185, 48623, 'forty-eight thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(7186, 23729, 'twenty-three thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(7187, 72285, 'seventy-two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(7188, 39670, 'thirty-nine thousand six hundred seventy');\nINSERT INTO t2 VALUES(7189, 60904, 'sixty thousand nine hundred four');\nINSERT INTO t2 VALUES(7190, 1785, 'one thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(7191, 84436, 'eighty-four thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(7192, 70556, 'seventy thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(7193, 32525, 'thirty-two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(7194, 41107, 'forty-one thousand one hundred seven');\nINSERT INTO t2 VALUES(7195, 71807, 'seventy-one thousand eight hundred seven');\nINSERT INTO t2 VALUES(7196, 22727, 'twenty-two thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(7197, 70424, 'seventy thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(7198, 92449, 'ninety-two thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(7199, 52643, 'fifty-two thousand six hundred forty-three');\nINSERT INTO t2 VALUES(7200, 16081, 'sixteen thousand eighty-one');\nINSERT INTO t2 VALUES(7201, 60250, 'sixty thousand two hundred fifty');\nINSERT INTO t2 VALUES(7202, 94701, 'ninety-four thousand seven hundred one');\nINSERT INTO t2 VALUES(7203, 90475, 'ninety thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(7204, 12219, 'twelve thousand two hundred nineteen');\nINSERT INTO t2 VALUES(7205, 36279, 'thirty-six thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(7206, 43716, 'forty-three thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(7207, 52901, 'fifty-two thousand nine hundred one');\nINSERT INTO t2 VALUES(7208, 78651, 'seventy-eight thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(7209, 48687, 'forty-eight thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(7210, 28557, 'twenty-eight thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(7211, 90629, 'ninety thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(7212, 27021, 'twenty-seven thousand twenty-one');\nINSERT INTO t2 VALUES(7213, 31323, 'thirty-one thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(7214, 47663, 'forty-seven thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(7215, 8334, 'eight thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(7216, 59740, 'fifty-nine thousand seven hundred forty');\nINSERT INTO t2 VALUES(7217, 42329, 'forty-two thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(7218, 52985, 'fifty-two thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(7219, 22678, 'twenty-two thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(7220, 53115, 'fifty-three thousand one hundred fifteen');\nINSERT INTO t2 VALUES(7221, 85625, 'eighty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(7222, 44904, 'forty-four thousand nine hundred four');\nINSERT INTO t2 VALUES(7223, 57919, 'fifty-seven thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(7224, 81652, 'eighty-one thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(7225, 29091, 'twenty-nine thousand ninety-one');\nINSERT INTO t2 VALUES(7226, 35671, 'thirty-five thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(7227, 8807, 'eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(7228, 56823, 'fifty-six thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(7229, 39061, 'thirty-nine thousand sixty-one');\nINSERT INTO t2 VALUES(7230, 52089, 'fifty-two thousand eighty-nine');\nINSERT INTO t2 VALUES(7231, 25385, 'twenty-five thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(7232, 56523, 'fifty-six thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(7233, 1270, 'one thousand two hundred seventy');\nINSERT INTO t2 VALUES(7234, 69681, 'sixty-nine thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(7235, 34725, 'thirty-four thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(7236, 14204, 'fourteen thousand two hundred four');\nINSERT INTO t2 VALUES(7237, 31187, 'thirty-one thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(7238, 3064, 'three thousand sixty-four');\nINSERT INTO t2 VALUES(7239, 41116, 'forty-one thousand one hundred sixteen');\nINSERT INTO t2 VALUES(7240, 32053, 'thirty-two thousand fifty-three');\nINSERT INTO t2 VALUES(7241, 37747, 'thirty-seven thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(7242, 51524, 'fifty-one thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(7243, 70906, 'seventy thousand nine hundred six');\nINSERT INTO t2 VALUES(7244, 57027, 'fifty-seven thousand twenty-seven');\nINSERT INTO t2 VALUES(7245, 12947, 'twelve thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(7246, 15873, 'fifteen thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(7247, 14092, 'fourteen thousand ninety-two');\nINSERT INTO t2 VALUES(7248, 28021, 'twenty-eight thousand twenty-one');\nINSERT INTO t2 VALUES(7249, 68997, 'sixty-eight thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(7250, 60229, 'sixty thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(7251, 23600, 'twenty-three thousand six hundred');\nINSERT INTO t2 VALUES(7252, 21443, 'twenty-one thousand four hundred forty-three');\nINSERT INTO t2 VALUES(7253, 88451, 'eighty-eight thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(7254, 22689, 'twenty-two thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(7255, 85222, 'eighty-five thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(7256, 39886, 'thirty-nine thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(7257, 9680, 'nine thousand six hundred eighty');\nINSERT INTO t2 VALUES(7258, 50619, 'fifty thousand six hundred nineteen');\nINSERT INTO t2 VALUES(7259, 73014, 'seventy-three thousand fourteen');\nINSERT INTO t2 VALUES(7260, 10557, 'ten thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(7261, 23929, 'twenty-three thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(7262, 75594, 'seventy-five thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(7263, 70513, 'seventy thousand five hundred thirteen');\nINSERT INTO t2 VALUES(7264, 31217, 'thirty-one thousand two hundred seventeen');\nINSERT INTO t2 VALUES(7265, 24165, 'twenty-four thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(7266, 74008, 'seventy-four thousand eight');\nINSERT INTO t2 VALUES(7267, 69773, 'sixty-nine thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(7268, 326, 'three hundred twenty-six');\nINSERT INTO t2 VALUES(7269, 94924, 'ninety-four thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(7270, 79707, 'seventy-nine thousand seven hundred seven');\nINSERT INTO t2 VALUES(7271, 51429, 'fifty-one thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(7272, 22659, 'twenty-two thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(7273, 87289, 'eighty-seven thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(7274, 90894, 'ninety thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(7275, 74629, 'seventy-four thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(7276, 57761, 'fifty-seven thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(7277, 95848, 'ninety-five thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(7278, 58163, 'fifty-eight thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(7279, 50309, 'fifty thousand three hundred nine');\nINSERT INTO t2 VALUES(7280, 20537, 'twenty thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(7281, 28395, 'twenty-eight thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(7282, 53961, 'fifty-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(7283, 47561, 'forty-seven thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(7284, 28769, 'twenty-eight thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(7285, 86346, 'eighty-six thousand three hundred forty-six');\nINSERT INTO t2 VALUES(7286, 6277, 'six thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(7287, 49920, 'forty-nine thousand nine hundred twenty');\nINSERT INTO t2 VALUES(7288, 43192, 'forty-three thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(7289, 24672, 'twenty-four thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(7290, 31494, 'thirty-one thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(7291, 55066, 'fifty-five thousand sixty-six');\nINSERT INTO t2 VALUES(7292, 96699, 'ninety-six thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(7293, 79530, 'seventy-nine thousand five hundred thirty');\nINSERT INTO t2 VALUES(7294, 43758, 'forty-three thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(7295, 67039, 'sixty-seven thousand thirty-nine');\nINSERT INTO t2 VALUES(7296, 48547, 'forty-eight thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(7297, 50040, 'fifty thousand forty');\nINSERT INTO t2 VALUES(7298, 66898, 'sixty-six thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(7299, 58823, 'fifty-eight thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(7300, 85770, 'eighty-five thousand seven hundred seventy');\nINSERT INTO t2 VALUES(7301, 44663, 'forty-four thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(7302, 18667, 'eighteen thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(7303, 29835, 'twenty-nine thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(7304, 56850, 'fifty-six thousand eight hundred fifty');\nINSERT INTO t2 VALUES(7305, 62411, 'sixty-two thousand four hundred eleven');\nINSERT INTO t2 VALUES(7306, 33775, 'thirty-three thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(7307, 90386, 'ninety thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(7308, 70117, 'seventy thousand one hundred seventeen');\nINSERT INTO t2 VALUES(7309, 74740, 'seventy-four thousand seven hundred forty');\nINSERT INTO t2 VALUES(7310, 6417, 'six thousand four hundred seventeen');\nINSERT INTO t2 VALUES(7311, 32319, 'thirty-two thousand three hundred nineteen');\nINSERT INTO t2 VALUES(7312, 50577, 'fifty thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(7313, 2107, 'two thousand one hundred seven');\nINSERT INTO t2 VALUES(7314, 75768, 'seventy-five thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(7315, 12697, 'twelve thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(7316, 38568, 'thirty-eight thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(7317, 34363, 'thirty-four thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(7318, 27633, 'twenty-seven thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(7319, 25184, 'twenty-five thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(7320, 90043, 'ninety thousand forty-three');\nINSERT INTO t2 VALUES(7321, 15466, 'fifteen thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(7322, 98395, 'ninety-eight thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(7323, 86939, 'eighty-six thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(7324, 71406, 'seventy-one thousand four hundred six');\nINSERT INTO t2 VALUES(7325, 34343, 'thirty-four thousand three hundred forty-three');\nINSERT INTO t2 VALUES(7326, 69196, 'sixty-nine thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(7327, 28252, 'twenty-eight thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(7328, 38711, 'thirty-eight thousand seven hundred eleven');\nINSERT INTO t2 VALUES(7329, 60611, 'sixty thousand six hundred eleven');\nINSERT INTO t2 VALUES(7330, 31187, 'thirty-one thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(7331, 73989, 'seventy-three thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(7332, 12806, 'twelve thousand eight hundred six');\nINSERT INTO t2 VALUES(7333, 4428, 'four thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(7334, 52658, 'fifty-two thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(7335, 26588, 'twenty-six thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(7336, 93535, 'ninety-three thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(7337, 65359, 'sixty-five thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(7338, 66113, 'sixty-six thousand one hundred thirteen');\nINSERT INTO t2 VALUES(7339, 39558, 'thirty-nine thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(7340, 11391, 'eleven thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(7341, 57170, 'fifty-seven thousand one hundred seventy');\nINSERT INTO t2 VALUES(7342, 3581, 'three thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(7343, 69696, 'sixty-nine thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(7344, 81121, 'eighty-one thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(7345, 21914, 'twenty-one thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(7346, 74050, 'seventy-four thousand fifty');\nINSERT INTO t2 VALUES(7347, 60829, 'sixty thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(7348, 6834, 'six thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(7349, 64576, 'sixty-four thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(7350, 13583, 'thirteen thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(7351, 56388, 'fifty-six thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(7352, 62811, 'sixty-two thousand eight hundred eleven');\nINSERT INTO t2 VALUES(7353, 37727, 'thirty-seven thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(7354, 4532, 'four thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(7355, 14187, 'fourteen thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(7356, 69094, 'sixty-nine thousand ninety-four');\nINSERT INTO t2 VALUES(7357, 31945, 'thirty-one thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(7358, 2093, 'two thousand ninety-three');\nINSERT INTO t2 VALUES(7359, 3369, 'three thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(7360, 18640, 'eighteen thousand six hundred forty');\nINSERT INTO t2 VALUES(7361, 25004, 'twenty-five thousand four');\nINSERT INTO t2 VALUES(7362, 12074, 'twelve thousand seventy-four');\nINSERT INTO t2 VALUES(7363, 34016, 'thirty-four thousand sixteen');\nINSERT INTO t2 VALUES(7364, 40014, 'forty thousand fourteen');\nINSERT INTO t2 VALUES(7365, 64857, 'sixty-four thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(7366, 51079, 'fifty-one thousand seventy-nine');\nINSERT INTO t2 VALUES(7367, 88576, 'eighty-eight thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(7368, 9726, 'nine thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(7369, 8822, 'eight thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(7370, 34811, 'thirty-four thousand eight hundred eleven');\nINSERT INTO t2 VALUES(7371, 80758, 'eighty thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(7372, 54617, 'fifty-four thousand six hundred seventeen');\nINSERT INTO t2 VALUES(7373, 42541, 'forty-two thousand five hundred forty-one');\nINSERT INTO t2 VALUES(7374, 3815, 'three thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(7375, 42879, 'forty-two thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(7376, 5202, 'five thousand two hundred two');\nINSERT INTO t2 VALUES(7377, 50572, 'fifty thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(7378, 65409, 'sixty-five thousand four hundred nine');\nINSERT INTO t2 VALUES(7379, 70497, 'seventy thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(7380, 96842, 'ninety-six thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(7381, 46539, 'forty-six thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(7382, 1095, 'one thousand ninety-five');\nINSERT INTO t2 VALUES(7383, 97422, 'ninety-seven thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(7384, 88070, 'eighty-eight thousand seventy');\nINSERT INTO t2 VALUES(7385, 13150, 'thirteen thousand one hundred fifty');\nINSERT INTO t2 VALUES(7386, 52772, 'fifty-two thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(7387, 37085, 'thirty-seven thousand eighty-five');\nINSERT INTO t2 VALUES(7388, 1011, 'one thousand eleven');\nINSERT INTO t2 VALUES(7389, 15563, 'fifteen thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(7390, 38544, 'thirty-eight thousand five hundred forty-four');\nINSERT INTO t2 VALUES(7391, 55831, 'fifty-five thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(7392, 27070, 'twenty-seven thousand seventy');\nINSERT INTO t2 VALUES(7393, 15441, 'fifteen thousand four hundred forty-one');\nINSERT INTO t2 VALUES(7394, 70654, 'seventy thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(7395, 52382, 'fifty-two thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(7396, 54344, 'fifty-four thousand three hundred forty-four');\nINSERT INTO t2 VALUES(7397, 17325, 'seventeen thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(7398, 58157, 'fifty-eight thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(7399, 47176, 'forty-seven thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(7400, 55736, 'fifty-five thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(7401, 26334, 'twenty-six thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(7402, 99781, 'ninety-nine thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(7403, 57477, 'fifty-seven thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(7404, 29110, 'twenty-nine thousand one hundred ten');\nINSERT INTO t2 VALUES(7405, 21429, 'twenty-one thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(7406, 76884, 'seventy-six thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(7407, 47046, 'forty-seven thousand forty-six');\nINSERT INTO t2 VALUES(7408, 48753, 'forty-eight thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(7409, 63093, 'sixty-three thousand ninety-three');\nINSERT INTO t2 VALUES(7410, 69577, 'sixty-nine thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(7411, 48992, 'forty-eight thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(7412, 43715, 'forty-three thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(7413, 82980, 'eighty-two thousand nine hundred eighty');\nINSERT INTO t2 VALUES(7414, 89305, 'eighty-nine thousand three hundred five');\nINSERT INTO t2 VALUES(7415, 66707, 'sixty-six thousand seven hundred seven');\nINSERT INTO t2 VALUES(7416, 67756, 'sixty-seven thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(7417, 47398, 'forty-seven thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(7418, 72037, 'seventy-two thousand thirty-seven');\nINSERT INTO t2 VALUES(7419, 50845, 'fifty thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(7420, 9216, 'nine thousand two hundred sixteen');\nINSERT INTO t2 VALUES(7421, 18579, 'eighteen thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(7422, 38300, 'thirty-eight thousand three hundred');\nINSERT INTO t2 VALUES(7423, 17222, 'seventeen thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(7424, 49143, 'forty-nine thousand one hundred forty-three');\nINSERT INTO t2 VALUES(7425, 87515, 'eighty-seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(7426, 73305, 'seventy-three thousand three hundred five');\nINSERT INTO t2 VALUES(7427, 53735, 'fifty-three thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(7428, 95473, 'ninety-five thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(7429, 50421, 'fifty thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(7430, 2980, 'two thousand nine hundred eighty');\nINSERT INTO t2 VALUES(7431, 50521, 'fifty thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(7432, 5811, 'five thousand eight hundred eleven');\nINSERT INTO t2 VALUES(7433, 78960, 'seventy-eight thousand nine hundred sixty');\nINSERT INTO t2 VALUES(7434, 72439, 'seventy-two thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(7435, 76914, 'seventy-six thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(7436, 41540, 'forty-one thousand five hundred forty');\nINSERT INTO t2 VALUES(7437, 43029, 'forty-three thousand twenty-nine');\nINSERT INTO t2 VALUES(7438, 24933, 'twenty-four thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(7439, 49859, 'forty-nine thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(7440, 8913, 'eight thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(7441, 30415, 'thirty thousand four hundred fifteen');\nINSERT INTO t2 VALUES(7442, 41776, 'forty-one thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(7443, 20000, 'twenty thousand');\nINSERT INTO t2 VALUES(7444, 34964, 'thirty-four thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(7445, 51821, 'fifty-one thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(7446, 40249, 'forty thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(7447, 47510, 'forty-seven thousand five hundred ten');\nINSERT INTO t2 VALUES(7448, 95059, 'ninety-five thousand fifty-nine');\nINSERT INTO t2 VALUES(7449, 84450, 'eighty-four thousand four hundred fifty');\nINSERT INTO t2 VALUES(7450, 72587, 'seventy-two thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(7451, 21355, 'twenty-one thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(7452, 87515, 'eighty-seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(7453, 23870, 'twenty-three thousand eight hundred seventy');\nINSERT INTO t2 VALUES(7454, 21133, 'twenty-one thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(7455, 15582, 'fifteen thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(7456, 81860, 'eighty-one thousand eight hundred sixty');\nINSERT INTO t2 VALUES(7457, 48135, 'forty-eight thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(7458, 47787, 'forty-seven thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(7459, 30531, 'thirty thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(7460, 97144, 'ninety-seven thousand one hundred forty-four');\nINSERT INTO t2 VALUES(7461, 66513, 'sixty-six thousand five hundred thirteen');\nINSERT INTO t2 VALUES(7462, 96659, 'ninety-six thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(7463, 45617, 'forty-five thousand six hundred seventeen');\nINSERT INTO t2 VALUES(7464, 43237, 'forty-three thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(7465, 2471, 'two thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(7466, 82236, 'eighty-two thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(7467, 62891, 'sixty-two thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(7468, 15829, 'fifteen thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(7469, 57841, 'fifty-seven thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(7470, 21213, 'twenty-one thousand two hundred thirteen');\nINSERT INTO t2 VALUES(7471, 76853, 'seventy-six thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(7472, 25941, 'twenty-five thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(7473, 82358, 'eighty-two thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(7474, 63626, 'sixty-three thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(7475, 73642, 'seventy-three thousand six hundred forty-two');\nINSERT INTO t2 VALUES(7476, 69275, 'sixty-nine thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(7477, 23645, 'twenty-three thousand six hundred forty-five');\nINSERT INTO t2 VALUES(7478, 23681, 'twenty-three thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(7479, 14696, 'fourteen thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(7480, 27515, 'twenty-seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(7481, 62466, 'sixty-two thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(7482, 75667, 'seventy-five thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(7483, 81874, 'eighty-one thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(7484, 95866, 'ninety-five thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(7485, 36386, 'thirty-six thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(7486, 64485, 'sixty-four thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(7487, 90022, 'ninety thousand twenty-two');\nINSERT INTO t2 VALUES(7488, 51619, 'fifty-one thousand six hundred nineteen');\nINSERT INTO t2 VALUES(7489, 27169, 'twenty-seven thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(7490, 17655, 'seventeen thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(7491, 67188, 'sixty-seven thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(7492, 17321, 'seventeen thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(7493, 95245, 'ninety-five thousand two hundred forty-five');\nINSERT INTO t2 VALUES(7494, 48780, 'forty-eight thousand seven hundred eighty');\nINSERT INTO t2 VALUES(7495, 33982, 'thirty-three thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(7496, 61939, 'sixty-one thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(7497, 69069, 'sixty-nine thousand sixty-nine');\nINSERT INTO t2 VALUES(7498, 62713, 'sixty-two thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(7499, 43685, 'forty-three thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(7500, 57927, 'fifty-seven thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(7501, 96470, 'ninety-six thousand four hundred seventy');\nINSERT INTO t2 VALUES(7502, 35948, 'thirty-five thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(7503, 63060, 'sixty-three thousand sixty');\nINSERT INTO t2 VALUES(7504, 44399, 'forty-four thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(7505, 97397, 'ninety-seven thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(7506, 89584, 'eighty-nine thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(7507, 58673, 'fifty-eight thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(7508, 89552, 'eighty-nine thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(7509, 53729, 'fifty-three thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(7510, 16507, 'sixteen thousand five hundred seven');\nINSERT INTO t2 VALUES(7511, 68717, 'sixty-eight thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(7512, 80771, 'eighty thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(7513, 41974, 'forty-one thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(7514, 52507, 'fifty-two thousand five hundred seven');\nINSERT INTO t2 VALUES(7515, 22505, 'twenty-two thousand five hundred five');\nINSERT INTO t2 VALUES(7516, 28179, 'twenty-eight thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(7517, 42313, 'forty-two thousand three hundred thirteen');\nINSERT INTO t2 VALUES(7518, 73205, 'seventy-three thousand two hundred five');\nINSERT INTO t2 VALUES(7519, 35773, 'thirty-five thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(7520, 3191, 'three thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(7521, 99153, 'ninety-nine thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(7522, 36884, 'thirty-six thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(7523, 33393, 'thirty-three thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(7524, 78679, 'seventy-eight thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(7525, 33427, 'thirty-three thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(7526, 92166, 'ninety-two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(7527, 57863, 'fifty-seven thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(7528, 48513, 'forty-eight thousand five hundred thirteen');\nINSERT INTO t2 VALUES(7529, 64604, 'sixty-four thousand six hundred four');\nINSERT INTO t2 VALUES(7530, 42568, 'forty-two thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(7531, 40599, 'forty thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(7532, 26112, 'twenty-six thousand one hundred twelve');\nINSERT INTO t2 VALUES(7533, 64220, 'sixty-four thousand two hundred twenty');\nINSERT INTO t2 VALUES(7534, 15706, 'fifteen thousand seven hundred six');\nINSERT INTO t2 VALUES(7535, 40185, 'forty thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(7536, 1528, 'one thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(7537, 42906, 'forty-two thousand nine hundred six');\nINSERT INTO t2 VALUES(7538, 33416, 'thirty-three thousand four hundred sixteen');\nINSERT INTO t2 VALUES(7539, 12521, 'twelve thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(7540, 10976, 'ten thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(7541, 31686, 'thirty-one thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(7542, 53218, 'fifty-three thousand two hundred eighteen');\nINSERT INTO t2 VALUES(7543, 49056, 'forty-nine thousand fifty-six');\nINSERT INTO t2 VALUES(7544, 61375, 'sixty-one thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(7545, 70557, 'seventy thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(7546, 41451, 'forty-one thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(7547, 67002, 'sixty-seven thousand two');\nINSERT INTO t2 VALUES(7548, 78676, 'seventy-eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(7549, 34278, 'thirty-four thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(7550, 92849, 'ninety-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(7551, 10020, 'ten thousand twenty');\nINSERT INTO t2 VALUES(7552, 66557, 'sixty-six thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(7553, 58425, 'fifty-eight thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(7554, 31844, 'thirty-one thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(7555, 38934, 'thirty-eight thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(7556, 3768, 'three thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(7557, 11387, 'eleven thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(7558, 51096, 'fifty-one thousand ninety-six');\nINSERT INTO t2 VALUES(7559, 2040, 'two thousand forty');\nINSERT INTO t2 VALUES(7560, 73370, 'seventy-three thousand three hundred seventy');\nINSERT INTO t2 VALUES(7561, 63765, 'sixty-three thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(7562, 5630, 'five thousand six hundred thirty');\nINSERT INTO t2 VALUES(7563, 48149, 'forty-eight thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(7564, 65940, 'sixty-five thousand nine hundred forty');\nINSERT INTO t2 VALUES(7565, 14696, 'fourteen thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(7566, 84264, 'eighty-four thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(7567, 28148, 'twenty-eight thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(7568, 56964, 'fifty-six thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(7569, 77611, 'seventy-seven thousand six hundred eleven');\nINSERT INTO t2 VALUES(7570, 38955, 'thirty-eight thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(7571, 42357, 'forty-two thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(7572, 68317, 'sixty-eight thousand three hundred seventeen');\nINSERT INTO t2 VALUES(7573, 9676, 'nine thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(7574, 97886, 'ninety-seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(7575, 5372, 'five thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(7576, 65924, 'sixty-five thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(7577, 33045, 'thirty-three thousand forty-five');\nINSERT INTO t2 VALUES(7578, 49238, 'forty-nine thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(7579, 2480, 'two thousand four hundred eighty');\nINSERT INTO t2 VALUES(7580, 39492, 'thirty-nine thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(7581, 91785, 'ninety-one thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(7582, 50532, 'fifty thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(7583, 57073, 'fifty-seven thousand seventy-three');\nINSERT INTO t2 VALUES(7584, 37226, 'thirty-seven thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(7585, 44803, 'forty-four thousand eight hundred three');\nINSERT INTO t2 VALUES(7586, 81713, 'eighty-one thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(7587, 85593, 'eighty-five thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(7588, 9911, 'nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(7589, 81534, 'eighty-one thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(7590, 48184, 'forty-eight thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(7591, 8434, 'eight thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(7592, 97111, 'ninety-seven thousand one hundred eleven');\nINSERT INTO t2 VALUES(7593, 81993, 'eighty-one thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(7594, 6325, 'six thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(7595, 3988, 'three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(7596, 95168, 'ninety-five thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(7597, 92244, 'ninety-two thousand two hundred forty-four');\nINSERT INTO t2 VALUES(7598, 14998, 'fourteen thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(7599, 26106, 'twenty-six thousand one hundred six');\nINSERT INTO t2 VALUES(7600, 89553, 'eighty-nine thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(7601, 88785, 'eighty-eight thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(7602, 37747, 'thirty-seven thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(7603, 28314, 'twenty-eight thousand three hundred fourteen');\nINSERT INTO t2 VALUES(7604, 94690, 'ninety-four thousand six hundred ninety');\nINSERT INTO t2 VALUES(7605, 85341, 'eighty-five thousand three hundred forty-one');\nINSERT INTO t2 VALUES(7606, 71559, 'seventy-one thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(7607, 44200, 'forty-four thousand two hundred');\nINSERT INTO t2 VALUES(7608, 27012, 'twenty-seven thousand twelve');\nINSERT INTO t2 VALUES(7609, 85555, 'eighty-five thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(7610, 66236, 'sixty-six thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(7611, 50861, 'fifty thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(7612, 58399, 'fifty-eight thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(7613, 88626, 'eighty-eight thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(7614, 2970, 'two thousand nine hundred seventy');\nINSERT INTO t2 VALUES(7615, 45944, 'forty-five thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(7616, 97327, 'ninety-seven thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(7617, 51299, 'fifty-one thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(7618, 65136, 'sixty-five thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(7619, 41212, 'forty-one thousand two hundred twelve');\nINSERT INTO t2 VALUES(7620, 24046, 'twenty-four thousand forty-six');\nINSERT INTO t2 VALUES(7621, 34768, 'thirty-four thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(7622, 43164, 'forty-three thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(7623, 46960, 'forty-six thousand nine hundred sixty');\nINSERT INTO t2 VALUES(7624, 93105, 'ninety-three thousand one hundred five');\nINSERT INTO t2 VALUES(7625, 59291, 'fifty-nine thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(7626, 94936, 'ninety-four thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(7627, 33012, 'thirty-three thousand twelve');\nINSERT INTO t2 VALUES(7628, 57210, 'fifty-seven thousand two hundred ten');\nINSERT INTO t2 VALUES(7629, 89151, 'eighty-nine thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(7630, 37067, 'thirty-seven thousand sixty-seven');\nINSERT INTO t2 VALUES(7631, 83823, 'eighty-three thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(7632, 43281, 'forty-three thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(7633, 43502, 'forty-three thousand five hundred two');\nINSERT INTO t2 VALUES(7634, 88432, 'eighty-eight thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(7635, 96282, 'ninety-six thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(7636, 22310, 'twenty-two thousand three hundred ten');\nINSERT INTO t2 VALUES(7637, 63184, 'sixty-three thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(7638, 38854, 'thirty-eight thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(7639, 32014, 'thirty-two thousand fourteen');\nINSERT INTO t2 VALUES(7640, 47591, 'forty-seven thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(7641, 66203, 'sixty-six thousand two hundred three');\nINSERT INTO t2 VALUES(7642, 10901, 'ten thousand nine hundred one');\nINSERT INTO t2 VALUES(7643, 63363, 'sixty-three thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(7644, 40060, 'forty thousand sixty');\nINSERT INTO t2 VALUES(7645, 89536, 'eighty-nine thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(7646, 13, 'thirteen');\nINSERT INTO t2 VALUES(7647, 52827, 'fifty-two thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(7648, 76482, 'seventy-six thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(7649, 48210, 'forty-eight thousand two hundred ten');\nINSERT INTO t2 VALUES(7650, 52849, 'fifty-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(7651, 33200, 'thirty-three thousand two hundred');\nINSERT INTO t2 VALUES(7652, 58898, 'fifty-eight thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(7653, 24149, 'twenty-four thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(7654, 81107, 'eighty-one thousand one hundred seven');\nINSERT INTO t2 VALUES(7655, 35910, 'thirty-five thousand nine hundred ten');\nINSERT INTO t2 VALUES(7656, 38307, 'thirty-eight thousand three hundred seven');\nINSERT INTO t2 VALUES(7657, 54300, 'fifty-four thousand three hundred');\nINSERT INTO t2 VALUES(7658, 31626, 'thirty-one thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(7659, 4551, 'four thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(7660, 5962, 'five thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(7661, 2501, 'two thousand five hundred one');\nINSERT INTO t2 VALUES(7662, 96696, 'ninety-six thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(7663, 88731, 'eighty-eight thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(7664, 74200, 'seventy-four thousand two hundred');\nINSERT INTO t2 VALUES(7665, 17154, 'seventeen thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(7666, 13238, 'thirteen thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(7667, 48064, 'forty-eight thousand sixty-four');\nINSERT INTO t2 VALUES(7668, 7940, 'seven thousand nine hundred forty');\nINSERT INTO t2 VALUES(7669, 14029, 'fourteen thousand twenty-nine');\nINSERT INTO t2 VALUES(7670, 40366, 'forty thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(7671, 39973, 'thirty-nine thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(7672, 57265, 'fifty-seven thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(7673, 39000, 'thirty-nine thousand');\nINSERT INTO t2 VALUES(7674, 39485, 'thirty-nine thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(7675, 84542, 'eighty-four thousand five hundred forty-two');\nINSERT INTO t2 VALUES(7676, 61773, 'sixty-one thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(7677, 41641, 'forty-one thousand six hundred forty-one');\nINSERT INTO t2 VALUES(7678, 7886, 'seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(7679, 30700, 'thirty thousand seven hundred');\nINSERT INTO t2 VALUES(7680, 95970, 'ninety-five thousand nine hundred seventy');\nINSERT INTO t2 VALUES(7681, 64922, 'sixty-four thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(7682, 14021, 'fourteen thousand twenty-one');\nINSERT INTO t2 VALUES(7683, 99256, 'ninety-nine thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(7684, 91940, 'ninety-one thousand nine hundred forty');\nINSERT INTO t2 VALUES(7685, 27372, 'twenty-seven thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(7686, 57008, 'fifty-seven thousand eight');\nINSERT INTO t2 VALUES(7687, 69222, 'sixty-nine thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(7688, 7614, 'seven thousand six hundred fourteen');\nINSERT INTO t2 VALUES(7689, 69469, 'sixty-nine thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(7690, 60236, 'sixty thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(7691, 95005, 'ninety-five thousand five');\nINSERT INTO t2 VALUES(7692, 70671, 'seventy thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(7693, 18886, 'eighteen thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(7694, 80435, 'eighty thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(7695, 77160, 'seventy-seven thousand one hundred sixty');\nINSERT INTO t2 VALUES(7696, 29415, 'twenty-nine thousand four hundred fifteen');\nINSERT INTO t2 VALUES(7697, 72605, 'seventy-two thousand six hundred five');\nINSERT INTO t2 VALUES(7698, 64737, 'sixty-four thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(7699, 46033, 'forty-six thousand thirty-three');\nINSERT INTO t2 VALUES(7700, 1345, 'one thousand three hundred forty-five');\nINSERT INTO t2 VALUES(7701, 76566, 'seventy-six thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(7702, 24009, 'twenty-four thousand nine');\nINSERT INTO t2 VALUES(7703, 748, 'seven hundred forty-eight');\nINSERT INTO t2 VALUES(7704, 6824, 'six thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(7705, 41462, 'forty-one thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(7706, 25743, 'twenty-five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(7707, 11884, 'eleven thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(7708, 48287, 'forty-eight thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(7709, 12828, 'twelve thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(7710, 55232, 'fifty-five thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(7711, 7121, 'seven thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(7712, 64242, 'sixty-four thousand two hundred forty-two');\nINSERT INTO t2 VALUES(7713, 24992, 'twenty-four thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(7714, 34382, 'thirty-four thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(7715, 70019, 'seventy thousand nineteen');\nINSERT INTO t2 VALUES(7716, 96928, 'ninety-six thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(7717, 99259, 'ninety-nine thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(7718, 74890, 'seventy-four thousand eight hundred ninety');\nINSERT INTO t2 VALUES(7719, 31251, 'thirty-one thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(7720, 53203, 'fifty-three thousand two hundred three');\nINSERT INTO t2 VALUES(7721, 80806, 'eighty thousand eight hundred six');\nINSERT INTO t2 VALUES(7722, 15184, 'fifteen thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(7723, 83156, 'eighty-three thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(7724, 46068, 'forty-six thousand sixty-eight');\nINSERT INTO t2 VALUES(7725, 54273, 'fifty-four thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(7726, 33264, 'thirty-three thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(7727, 91237, 'ninety-one thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(7728, 50759, 'fifty thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(7729, 59848, 'fifty-nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(7730, 46658, 'forty-six thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(7731, 23471, 'twenty-three thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(7732, 99924, 'ninety-nine thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(7733, 84228, 'eighty-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(7734, 64993, 'sixty-four thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(7735, 35824, 'thirty-five thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(7736, 86124, 'eighty-six thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(7737, 1997, 'one thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(7738, 30925, 'thirty thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(7739, 9794, 'nine thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(7740, 21703, 'twenty-one thousand seven hundred three');\nINSERT INTO t2 VALUES(7741, 47667, 'forty-seven thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(7742, 78875, 'seventy-eight thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(7743, 68845, 'sixty-eight thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(7744, 75832, 'seventy-five thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(7745, 4127, 'four thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(7746, 92351, 'ninety-two thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(7747, 36960, 'thirty-six thousand nine hundred sixty');\nINSERT INTO t2 VALUES(7748, 53797, 'fifty-three thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(7749, 22166, 'twenty-two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(7750, 39652, 'thirty-nine thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(7751, 30846, 'thirty thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(7752, 30187, 'thirty thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(7753, 68871, 'sixty-eight thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(7754, 16967, 'sixteen thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(7755, 89961, 'eighty-nine thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(7756, 13958, 'thirteen thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(7757, 86908, 'eighty-six thousand nine hundred eight');\nINSERT INTO t2 VALUES(7758, 78938, 'seventy-eight thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(7759, 81787, 'eighty-one thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(7760, 73914, 'seventy-three thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(7761, 81978, 'eighty-one thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(7762, 76608, 'seventy-six thousand six hundred eight');\nINSERT INTO t2 VALUES(7763, 40940, 'forty thousand nine hundred forty');\nINSERT INTO t2 VALUES(7764, 21769, 'twenty-one thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(7765, 64411, 'sixty-four thousand four hundred eleven');\nINSERT INTO t2 VALUES(7766, 12013, 'twelve thousand thirteen');\nINSERT INTO t2 VALUES(7767, 44515, 'forty-four thousand five hundred fifteen');\nINSERT INTO t2 VALUES(7768, 64042, 'sixty-four thousand forty-two');\nINSERT INTO t2 VALUES(7769, 95415, 'ninety-five thousand four hundred fifteen');\nINSERT INTO t2 VALUES(7770, 46241, 'forty-six thousand two hundred forty-one');\nINSERT INTO t2 VALUES(7771, 38038, 'thirty-eight thousand thirty-eight');\nINSERT INTO t2 VALUES(7772, 29915, 'twenty-nine thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(7773, 47079, 'forty-seven thousand seventy-nine');\nINSERT INTO t2 VALUES(7774, 40975, 'forty thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(7775, 25189, 'twenty-five thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(7776, 84219, 'eighty-four thousand two hundred nineteen');\nINSERT INTO t2 VALUES(7777, 65775, 'sixty-five thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(7778, 83133, 'eighty-three thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(7779, 18759, 'eighteen thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(7780, 24673, 'twenty-four thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(7781, 89363, 'eighty-nine thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(7782, 94126, 'ninety-four thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(7783, 736, 'seven hundred thirty-six');\nINSERT INTO t2 VALUES(7784, 67024, 'sixty-seven thousand twenty-four');\nINSERT INTO t2 VALUES(7785, 7486, 'seven thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(7786, 67916, 'sixty-seven thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(7787, 17289, 'seventeen thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(7788, 47031, 'forty-seven thousand thirty-one');\nINSERT INTO t2 VALUES(7789, 22555, 'twenty-two thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(7790, 55086, 'fifty-five thousand eighty-six');\nINSERT INTO t2 VALUES(7791, 47896, 'forty-seven thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(7792, 24885, 'twenty-four thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(7793, 12920, 'twelve thousand nine hundred twenty');\nINSERT INTO t2 VALUES(7794, 749, 'seven hundred forty-nine');\nINSERT INTO t2 VALUES(7795, 55204, 'fifty-five thousand two hundred four');\nINSERT INTO t2 VALUES(7796, 5101, 'five thousand one hundred one');\nINSERT INTO t2 VALUES(7797, 70030, 'seventy thousand thirty');\nINSERT INTO t2 VALUES(7798, 7459, 'seven thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(7799, 48899, 'forty-eight thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(7800, 93683, 'ninety-three thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(7801, 16451, 'sixteen thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(7802, 25104, 'twenty-five thousand one hundred four');\nINSERT INTO t2 VALUES(7803, 9893, 'nine thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(7804, 14245, 'fourteen thousand two hundred forty-five');\nINSERT INTO t2 VALUES(7805, 5970, 'five thousand nine hundred seventy');\nINSERT INTO t2 VALUES(7806, 34885, 'thirty-four thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(7807, 16332, 'sixteen thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(7808, 54012, 'fifty-four thousand twelve');\nINSERT INTO t2 VALUES(7809, 11996, 'eleven thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(7810, 21344, 'twenty-one thousand three hundred forty-four');\nINSERT INTO t2 VALUES(7811, 35258, 'thirty-five thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(7812, 9275, 'nine thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(7813, 85031, 'eighty-five thousand thirty-one');\nINSERT INTO t2 VALUES(7814, 29581, 'twenty-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(7815, 37798, 'thirty-seven thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(7816, 43311, 'forty-three thousand three hundred eleven');\nINSERT INTO t2 VALUES(7817, 26374, 'twenty-six thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(7818, 44818, 'forty-four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(7819, 44149, 'forty-four thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(7820, 54167, 'fifty-four thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(7821, 80354, 'eighty thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(7822, 72843, 'seventy-two thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(7823, 3938, 'three thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(7824, 67512, 'sixty-seven thousand five hundred twelve');\nINSERT INTO t2 VALUES(7825, 54793, 'fifty-four thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(7826, 78915, 'seventy-eight thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(7827, 87426, 'eighty-seven thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(7828, 76112, 'seventy-six thousand one hundred twelve');\nINSERT INTO t2 VALUES(7829, 46418, 'forty-six thousand four hundred eighteen');\nINSERT INTO t2 VALUES(7830, 63056, 'sixty-three thousand fifty-six');\nINSERT INTO t2 VALUES(7831, 18738, 'eighteen thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(7832, 71922, 'seventy-one thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(7833, 10485, 'ten thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(7834, 30335, 'thirty thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(7835, 68428, 'sixty-eight thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(7836, 28843, 'twenty-eight thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(7837, 11189, 'eleven thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(7838, 27674, 'twenty-seven thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(7839, 8179, 'eight thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(7840, 62895, 'sixty-two thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(7841, 37338, 'thirty-seven thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(7842, 31953, 'thirty-one thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(7843, 32622, 'thirty-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(7844, 76187, 'seventy-six thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(7845, 43656, 'forty-three thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(7846, 87332, 'eighty-seven thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(7847, 92268, 'ninety-two thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(7848, 95283, 'ninety-five thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(7849, 50468, 'fifty thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(7850, 91856, 'ninety-one thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(7851, 69233, 'sixty-nine thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(7852, 17016, 'seventeen thousand sixteen');\nINSERT INTO t2 VALUES(7853, 96332, 'ninety-six thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(7854, 76291, 'seventy-six thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(7855, 34565, 'thirty-four thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(7856, 39586, 'thirty-nine thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(7857, 61213, 'sixty-one thousand two hundred thirteen');\nINSERT INTO t2 VALUES(7858, 18928, 'eighteen thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(7859, 21888, 'twenty-one thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(7860, 51536, 'fifty-one thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(7861, 81074, 'eighty-one thousand seventy-four');\nINSERT INTO t2 VALUES(7862, 21568, 'twenty-one thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(7863, 48621, 'forty-eight thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(7864, 90284, 'ninety thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(7865, 6140, 'six thousand one hundred forty');\nINSERT INTO t2 VALUES(7866, 3388, 'three thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(7867, 54350, 'fifty-four thousand three hundred fifty');\nINSERT INTO t2 VALUES(7868, 88335, 'eighty-eight thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(7869, 55056, 'fifty-five thousand fifty-six');\nINSERT INTO t2 VALUES(7870, 80523, 'eighty thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(7871, 36453, 'thirty-six thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(7872, 637, 'six hundred thirty-seven');\nINSERT INTO t2 VALUES(7873, 46560, 'forty-six thousand five hundred sixty');\nINSERT INTO t2 VALUES(7874, 64868, 'sixty-four thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(7875, 80928, 'eighty thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(7876, 73574, 'seventy-three thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(7877, 17541, 'seventeen thousand five hundred forty-one');\nINSERT INTO t2 VALUES(7878, 94826, 'ninety-four thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(7879, 65383, 'sixty-five thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(7880, 82342, 'eighty-two thousand three hundred forty-two');\nINSERT INTO t2 VALUES(7881, 37458, 'thirty-seven thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(7882, 99149, 'ninety-nine thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(7883, 71689, 'seventy-one thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(7884, 78085, 'seventy-eight thousand eighty-five');\nINSERT INTO t2 VALUES(7885, 57552, 'fifty-seven thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(7886, 2761, 'two thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(7887, 45520, 'forty-five thousand five hundred twenty');\nINSERT INTO t2 VALUES(7888, 45625, 'forty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(7889, 4598, 'four thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(7890, 55, 'fifty-five');\nINSERT INTO t2 VALUES(7891, 35004, 'thirty-five thousand four');\nINSERT INTO t2 VALUES(7892, 55327, 'fifty-five thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(7893, 11166, 'eleven thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(7894, 26140, 'twenty-six thousand one hundred forty');\nINSERT INTO t2 VALUES(7895, 91477, 'ninety-one thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(7896, 42203, 'forty-two thousand two hundred three');\nINSERT INTO t2 VALUES(7897, 84780, 'eighty-four thousand seven hundred eighty');\nINSERT INTO t2 VALUES(7898, 67536, 'sixty-seven thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(7899, 19055, 'nineteen thousand fifty-five');\nINSERT INTO t2 VALUES(7900, 59432, 'fifty-nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(7901, 21613, 'twenty-one thousand six hundred thirteen');\nINSERT INTO t2 VALUES(7902, 61666, 'sixty-one thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(7903, 77311, 'seventy-seven thousand three hundred eleven');\nINSERT INTO t2 VALUES(7904, 27206, 'twenty-seven thousand two hundred six');\nINSERT INTO t2 VALUES(7905, 92854, 'ninety-two thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(7906, 35248, 'thirty-five thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(7907, 61592, 'sixty-one thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(7908, 98527, 'ninety-eight thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(7909, 48236, 'forty-eight thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(7910, 9447, 'nine thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(7911, 30822, 'thirty thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(7912, 14984, 'fourteen thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(7913, 31991, 'thirty-one thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(7914, 54422, 'fifty-four thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(7915, 79383, 'seventy-nine thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(7916, 73590, 'seventy-three thousand five hundred ninety');\nINSERT INTO t2 VALUES(7917, 95713, 'ninety-five thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(7918, 18969, 'eighteen thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(7919, 14662, 'fourteen thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(7920, 45256, 'forty-five thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(7921, 37455, 'thirty-seven thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(7922, 10143, 'ten thousand one hundred forty-three');\nINSERT INTO t2 VALUES(7923, 97947, 'ninety-seven thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(7924, 48008, 'forty-eight thousand eight');\nINSERT INTO t2 VALUES(7925, 62549, 'sixty-two thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(7926, 45256, 'forty-five thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(7927, 40634, 'forty thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(7928, 10988, 'ten thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(7929, 33825, 'thirty-three thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(7930, 96608, 'ninety-six thousand six hundred eight');\nINSERT INTO t2 VALUES(7931, 5533, 'five thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(7932, 26864, 'twenty-six thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(7933, 85451, 'eighty-five thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(7934, 26640, 'twenty-six thousand six hundred forty');\nINSERT INTO t2 VALUES(7935, 51622, 'fifty-one thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(7936, 14219, 'fourteen thousand two hundred nineteen');\nINSERT INTO t2 VALUES(7937, 6403, 'six thousand four hundred three');\nINSERT INTO t2 VALUES(7938, 38686, 'thirty-eight thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(7939, 57470, 'fifty-seven thousand four hundred seventy');\nINSERT INTO t2 VALUES(7940, 70153, 'seventy thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(7941, 84092, 'eighty-four thousand ninety-two');\nINSERT INTO t2 VALUES(7942, 40361, 'forty thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(7943, 55743, 'fifty-five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(7944, 98943, 'ninety-eight thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(7945, 44077, 'forty-four thousand seventy-seven');\nINSERT INTO t2 VALUES(7946, 15704, 'fifteen thousand seven hundred four');\nINSERT INTO t2 VALUES(7947, 33561, 'thirty-three thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(7948, 19774, 'nineteen thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(7949, 41637, 'forty-one thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(7950, 66247, 'sixty-six thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(7951, 49218, 'forty-nine thousand two hundred eighteen');\nINSERT INTO t2 VALUES(7952, 36083, 'thirty-six thousand eighty-three');\nINSERT INTO t2 VALUES(7953, 95461, 'ninety-five thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(7954, 72804, 'seventy-two thousand eight hundred four');\nINSERT INTO t2 VALUES(7955, 9216, 'nine thousand two hundred sixteen');\nINSERT INTO t2 VALUES(7956, 73606, 'seventy-three thousand six hundred six');\nINSERT INTO t2 VALUES(7957, 93155, 'ninety-three thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(7958, 55561, 'fifty-five thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(7959, 89373, 'eighty-nine thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(7960, 7478, 'seven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(7961, 32969, 'thirty-two thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(7962, 16085, 'sixteen thousand eighty-five');\nINSERT INTO t2 VALUES(7963, 24821, 'twenty-four thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(7964, 17232, 'seventeen thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(7965, 37906, 'thirty-seven thousand nine hundred six');\nINSERT INTO t2 VALUES(7966, 1280, 'one thousand two hundred eighty');\nINSERT INTO t2 VALUES(7967, 93357, 'ninety-three thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(7968, 62662, 'sixty-two thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(7969, 69554, 'sixty-nine thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(7970, 68837, 'sixty-eight thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(7971, 49333, 'forty-nine thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(7972, 61065, 'sixty-one thousand sixty-five');\nINSERT INTO t2 VALUES(7973, 45391, 'forty-five thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(7974, 12556, 'twelve thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(7975, 5031, 'five thousand thirty-one');\nINSERT INTO t2 VALUES(7976, 62986, 'sixty-two thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(7977, 25975, 'twenty-five thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(7978, 33655, 'thirty-three thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(7979, 6028, 'six thousand twenty-eight');\nINSERT INTO t2 VALUES(7980, 36020, 'thirty-six thousand twenty');\nINSERT INTO t2 VALUES(7981, 41558, 'forty-one thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(7982, 87946, 'eighty-seven thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(7983, 21756, 'twenty-one thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(7984, 44874, 'forty-four thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(7985, 7220, 'seven thousand two hundred twenty');\nINSERT INTO t2 VALUES(7986, 94122, 'ninety-four thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(7987, 43802, 'forty-three thousand eight hundred two');\nINSERT INTO t2 VALUES(7988, 36249, 'thirty-six thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(7989, 39796, 'thirty-nine thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(7990, 54710, 'fifty-four thousand seven hundred ten');\nINSERT INTO t2 VALUES(7991, 71277, 'seventy-one thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(7992, 8893, 'eight thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(7993, 12683, 'twelve thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(7994, 3436, 'three thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(7995, 5482, 'five thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(7996, 16251, 'sixteen thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(7997, 33887, 'thirty-three thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(7998, 49286, 'forty-nine thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(7999, 16522, 'sixteen thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(8000, 89509, 'eighty-nine thousand five hundred nine');\nINSERT INTO t2 VALUES(8001, 84684, 'eighty-four thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(8002, 81188, 'eighty-one thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(8003, 14015, 'fourteen thousand fifteen');\nINSERT INTO t2 VALUES(8004, 34039, 'thirty-four thousand thirty-nine');\nINSERT INTO t2 VALUES(8005, 49709, 'forty-nine thousand seven hundred nine');\nINSERT INTO t2 VALUES(8006, 39236, 'thirty-nine thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(8007, 59391, 'fifty-nine thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(8008, 76537, 'seventy-six thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(8009, 85992, 'eighty-five thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(8010, 8549, 'eight thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(8011, 66771, 'sixty-six thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(8012, 88442, 'eighty-eight thousand four hundred forty-two');\nINSERT INTO t2 VALUES(8013, 9094, 'nine thousand ninety-four');\nINSERT INTO t2 VALUES(8014, 90515, 'ninety thousand five hundred fifteen');\nINSERT INTO t2 VALUES(8015, 8703, 'eight thousand seven hundred three');\nINSERT INTO t2 VALUES(8016, 21314, 'twenty-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(8017, 98166, 'ninety-eight thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(8018, 5343, 'five thousand three hundred forty-three');\nINSERT INTO t2 VALUES(8019, 24040, 'twenty-four thousand forty');\nINSERT INTO t2 VALUES(8020, 70025, 'seventy thousand twenty-five');\nINSERT INTO t2 VALUES(8021, 57450, 'fifty-seven thousand four hundred fifty');\nINSERT INTO t2 VALUES(8022, 91323, 'ninety-one thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(8023, 67726, 'sixty-seven thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(8024, 33298, 'thirty-three thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(8025, 8794, 'eight thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(8026, 57450, 'fifty-seven thousand four hundred fifty');\nINSERT INTO t2 VALUES(8027, 16655, 'sixteen thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(8028, 84049, 'eighty-four thousand forty-nine');\nINSERT INTO t2 VALUES(8029, 49266, 'forty-nine thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(8030, 31481, 'thirty-one thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(8031, 30149, 'thirty thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(8032, 45816, 'forty-five thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(8033, 59526, 'fifty-nine thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(8034, 79025, 'seventy-nine thousand twenty-five');\nINSERT INTO t2 VALUES(8035, 53187, 'fifty-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(8036, 75727, 'seventy-five thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(8037, 37740, 'thirty-seven thousand seven hundred forty');\nINSERT INTO t2 VALUES(8038, 69474, 'sixty-nine thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(8039, 51373, 'fifty-one thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(8040, 17139, 'seventeen thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(8041, 40365, 'forty thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(8042, 4212, 'four thousand two hundred twelve');\nINSERT INTO t2 VALUES(8043, 49019, 'forty-nine thousand nineteen');\nINSERT INTO t2 VALUES(8044, 11575, 'eleven thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(8045, 28312, 'twenty-eight thousand three hundred twelve');\nINSERT INTO t2 VALUES(8046, 84096, 'eighty-four thousand ninety-six');\nINSERT INTO t2 VALUES(8047, 65289, 'sixty-five thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(8048, 5827, 'five thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(8049, 51448, 'fifty-one thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(8050, 67755, 'sixty-seven thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(8051, 27094, 'twenty-seven thousand ninety-four');\nINSERT INTO t2 VALUES(8052, 7500, 'seven thousand five hundred');\nINSERT INTO t2 VALUES(8053, 70116, 'seventy thousand one hundred sixteen');\nINSERT INTO t2 VALUES(8054, 16929, 'sixteen thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(8055, 11348, 'eleven thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(8056, 98296, 'ninety-eight thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(8057, 6597, 'six thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(8058, 93592, 'ninety-three thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(8059, 44437, 'forty-four thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(8060, 27975, 'twenty-seven thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(8061, 72177, 'seventy-two thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(8062, 29195, 'twenty-nine thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(8063, 24306, 'twenty-four thousand three hundred six');\nINSERT INTO t2 VALUES(8064, 75219, 'seventy-five thousand two hundred nineteen');\nINSERT INTO t2 VALUES(8065, 35188, 'thirty-five thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(8066, 22006, 'twenty-two thousand six');\nINSERT INTO t2 VALUES(8067, 90157, 'ninety thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(8068, 13172, 'thirteen thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8069, 74536, 'seventy-four thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(8070, 87353, 'eighty-seven thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(8071, 9950, 'nine thousand nine hundred fifty');\nINSERT INTO t2 VALUES(8072, 22537, 'twenty-two thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(8073, 10732, 'ten thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(8074, 10571, 'ten thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(8075, 98607, 'ninety-eight thousand six hundred seven');\nINSERT INTO t2 VALUES(8076, 53888, 'fifty-three thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(8077, 3175, 'three thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(8078, 12578, 'twelve thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(8079, 93344, 'ninety-three thousand three hundred forty-four');\nINSERT INTO t2 VALUES(8080, 87802, 'eighty-seven thousand eight hundred two');\nINSERT INTO t2 VALUES(8081, 60090, 'sixty thousand ninety');\nINSERT INTO t2 VALUES(8082, 59423, 'fifty-nine thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(8083, 47984, 'forty-seven thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(8084, 56162, 'fifty-six thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(8085, 23863, 'twenty-three thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(8086, 4487, 'four thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(8087, 97406, 'ninety-seven thousand four hundred six');\nINSERT INTO t2 VALUES(8088, 86519, 'eighty-six thousand five hundred nineteen');\nINSERT INTO t2 VALUES(8089, 71098, 'seventy-one thousand ninety-eight');\nINSERT INTO t2 VALUES(8090, 28632, 'twenty-eight thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(8091, 93932, 'ninety-three thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(8092, 20421, 'twenty thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(8093, 29267, 'twenty-nine thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(8094, 74567, 'seventy-four thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(8095, 99457, 'ninety-nine thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(8096, 59667, 'fifty-nine thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(8097, 60872, 'sixty thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(8098, 53594, 'fifty-three thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(8099, 66800, 'sixty-six thousand eight hundred');\nINSERT INTO t2 VALUES(8100, 81708, 'eighty-one thousand seven hundred eight');\nINSERT INTO t2 VALUES(8101, 82388, 'eighty-two thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(8102, 31922, 'thirty-one thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(8103, 28907, 'twenty-eight thousand nine hundred seven');\nINSERT INTO t2 VALUES(8104, 33393, 'thirty-three thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(8105, 82827, 'eighty-two thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(8106, 16882, 'sixteen thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(8107, 61644, 'sixty-one thousand six hundred forty-four');\nINSERT INTO t2 VALUES(8108, 71826, 'seventy-one thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(8109, 19410, 'nineteen thousand four hundred ten');\nINSERT INTO t2 VALUES(8110, 81318, 'eighty-one thousand three hundred eighteen');\nINSERT INTO t2 VALUES(8111, 65374, 'sixty-five thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(8112, 66995, 'sixty-six thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(8113, 94637, 'ninety-four thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(8114, 78707, 'seventy-eight thousand seven hundred seven');\nINSERT INTO t2 VALUES(8115, 98440, 'ninety-eight thousand four hundred forty');\nINSERT INTO t2 VALUES(8116, 60845, 'sixty thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(8117, 36430, 'thirty-six thousand four hundred thirty');\nINSERT INTO t2 VALUES(8118, 74905, 'seventy-four thousand nine hundred five');\nINSERT INTO t2 VALUES(8119, 5597, 'five thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(8120, 26767, 'twenty-six thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(8121, 83070, 'eighty-three thousand seventy');\nINSERT INTO t2 VALUES(8122, 67202, 'sixty-seven thousand two hundred two');\nINSERT INTO t2 VALUES(8123, 86283, 'eighty-six thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(8124, 96463, 'ninety-six thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(8125, 14179, 'fourteen thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(8126, 64056, 'sixty-four thousand fifty-six');\nINSERT INTO t2 VALUES(8127, 58519, 'fifty-eight thousand five hundred nineteen');\nINSERT INTO t2 VALUES(8128, 18920, 'eighteen thousand nine hundred twenty');\nINSERT INTO t2 VALUES(8129, 69584, 'sixty-nine thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(8130, 27796, 'twenty-seven thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(8131, 45307, 'forty-five thousand three hundred seven');\nINSERT INTO t2 VALUES(8132, 28813, 'twenty-eight thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(8133, 99647, 'ninety-nine thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(8134, 16545, 'sixteen thousand five hundred forty-five');\nINSERT INTO t2 VALUES(8135, 74537, 'seventy-four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(8136, 90134, 'ninety thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(8137, 45851, 'forty-five thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(8138, 38243, 'thirty-eight thousand two hundred forty-three');\nINSERT INTO t2 VALUES(8139, 31534, 'thirty-one thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(8140, 1804, 'one thousand eight hundred four');\nINSERT INTO t2 VALUES(8141, 71584, 'seventy-one thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(8142, 44572, 'forty-four thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(8143, 27202, 'twenty-seven thousand two hundred two');\nINSERT INTO t2 VALUES(8144, 70639, 'seventy thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(8145, 42204, 'forty-two thousand two hundred four');\nINSERT INTO t2 VALUES(8146, 76588, 'seventy-six thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(8147, 79050, 'seventy-nine thousand fifty');\nINSERT INTO t2 VALUES(8148, 55518, 'fifty-five thousand five hundred eighteen');\nINSERT INTO t2 VALUES(8149, 26840, 'twenty-six thousand eight hundred forty');\nINSERT INTO t2 VALUES(8150, 25692, 'twenty-five thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(8151, 28384, 'twenty-eight thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(8152, 24195, 'twenty-four thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(8153, 81289, 'eighty-one thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(8154, 56024, 'fifty-six thousand twenty-four');\nINSERT INTO t2 VALUES(8155, 91563, 'ninety-one thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(8156, 55950, 'fifty-five thousand nine hundred fifty');\nINSERT INTO t2 VALUES(8157, 28486, 'twenty-eight thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(8158, 98589, 'ninety-eight thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(8159, 9670, 'nine thousand six hundred seventy');\nINSERT INTO t2 VALUES(8160, 37363, 'thirty-seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(8161, 50339, 'fifty thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(8162, 19513, 'nineteen thousand five hundred thirteen');\nINSERT INTO t2 VALUES(8163, 22954, 'twenty-two thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(8164, 96959, 'ninety-six thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(8165, 28263, 'twenty-eight thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(8166, 88725, 'eighty-eight thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(8167, 19414, 'nineteen thousand four hundred fourteen');\nINSERT INTO t2 VALUES(8168, 83966, 'eighty-three thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(8169, 46804, 'forty-six thousand eight hundred four');\nINSERT INTO t2 VALUES(8170, 72825, 'seventy-two thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(8171, 49946, 'forty-nine thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(8172, 1105, 'one thousand one hundred five');\nINSERT INTO t2 VALUES(8173, 32495, 'thirty-two thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(8174, 62329, 'sixty-two thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(8175, 43010, 'forty-three thousand ten');\nINSERT INTO t2 VALUES(8176, 94084, 'ninety-four thousand eighty-four');\nINSERT INTO t2 VALUES(8177, 59631, 'fifty-nine thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(8178, 6291, 'six thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(8179, 24610, 'twenty-four thousand six hundred ten');\nINSERT INTO t2 VALUES(8180, 7376, 'seven thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(8181, 75663, 'seventy-five thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(8182, 20917, 'twenty thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(8183, 90871, 'ninety thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(8184, 84249, 'eighty-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(8185, 11208, 'eleven thousand two hundred eight');\nINSERT INTO t2 VALUES(8186, 16820, 'sixteen thousand eight hundred twenty');\nINSERT INTO t2 VALUES(8187, 87115, 'eighty-seven thousand one hundred fifteen');\nINSERT INTO t2 VALUES(8188, 14205, 'fourteen thousand two hundred five');\nINSERT INTO t2 VALUES(8189, 49986, 'forty-nine thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(8190, 32588, 'thirty-two thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(8191, 77871, 'seventy-seven thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(8192, 88917, 'eighty-eight thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(8193, 73062, 'seventy-three thousand sixty-two');\nINSERT INTO t2 VALUES(8194, 69440, 'sixty-nine thousand four hundred forty');\nINSERT INTO t2 VALUES(8195, 90830, 'ninety thousand eight hundred thirty');\nINSERT INTO t2 VALUES(8196, 38787, 'thirty-eight thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(8197, 32760, 'thirty-two thousand seven hundred sixty');\nINSERT INTO t2 VALUES(8198, 22170, 'twenty-two thousand one hundred seventy');\nINSERT INTO t2 VALUES(8199, 83455, 'eighty-three thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(8200, 73609, 'seventy-three thousand six hundred nine');\nINSERT INTO t2 VALUES(8201, 8014, 'eight thousand fourteen');\nINSERT INTO t2 VALUES(8202, 57772, 'fifty-seven thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(8203, 29503, 'twenty-nine thousand five hundred three');\nINSERT INTO t2 VALUES(8204, 27966, 'twenty-seven thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(8205, 95704, 'ninety-five thousand seven hundred four');\nINSERT INTO t2 VALUES(8206, 95989, 'ninety-five thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(8207, 53489, 'fifty-three thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(8208, 8600, 'eight thousand six hundred');\nINSERT INTO t2 VALUES(8209, 46229, 'forty-six thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(8210, 69907, 'sixty-nine thousand nine hundred seven');\nINSERT INTO t2 VALUES(8211, 93903, 'ninety-three thousand nine hundred three');\nINSERT INTO t2 VALUES(8212, 96791, 'ninety-six thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(8213, 8081, 'eight thousand eighty-one');\nINSERT INTO t2 VALUES(8214, 84716, 'eighty-four thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(8215, 61370, 'sixty-one thousand three hundred seventy');\nINSERT INTO t2 VALUES(8216, 26047, 'twenty-six thousand forty-seven');\nINSERT INTO t2 VALUES(8217, 80025, 'eighty thousand twenty-five');\nINSERT INTO t2 VALUES(8218, 73171, 'seventy-three thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(8219, 39985, 'thirty-nine thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(8220, 98244, 'ninety-eight thousand two hundred forty-four');\nINSERT INTO t2 VALUES(8221, 33072, 'thirty-three thousand seventy-two');\nINSERT INTO t2 VALUES(8222, 95789, 'ninety-five thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(8223, 10495, 'ten thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(8224, 51058, 'fifty-one thousand fifty-eight');\nINSERT INTO t2 VALUES(8225, 77375, 'seventy-seven thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(8226, 46019, 'forty-six thousand nineteen');\nINSERT INTO t2 VALUES(8227, 15747, 'fifteen thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(8228, 81964, 'eighty-one thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(8229, 24858, 'twenty-four thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(8230, 23459, 'twenty-three thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(8231, 79754, 'seventy-nine thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(8232, 54760, 'fifty-four thousand seven hundred sixty');\nINSERT INTO t2 VALUES(8233, 95811, 'ninety-five thousand eight hundred eleven');\nINSERT INTO t2 VALUES(8234, 5062, 'five thousand sixty-two');\nINSERT INTO t2 VALUES(8235, 7109, 'seven thousand one hundred nine');\nINSERT INTO t2 VALUES(8236, 51387, 'fifty-one thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(8237, 71637, 'seventy-one thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(8238, 73206, 'seventy-three thousand two hundred six');\nINSERT INTO t2 VALUES(8239, 46295, 'forty-six thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(8240, 13009, 'thirteen thousand nine');\nINSERT INTO t2 VALUES(8241, 60087, 'sixty thousand eighty-seven');\nINSERT INTO t2 VALUES(8242, 25923, 'twenty-five thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(8243, 9805, 'nine thousand eight hundred five');\nINSERT INTO t2 VALUES(8244, 30861, 'thirty thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(8245, 32953, 'thirty-two thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(8246, 67589, 'sixty-seven thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(8247, 27326, 'twenty-seven thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(8248, 69656, 'sixty-nine thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(8249, 16501, 'sixteen thousand five hundred one');\nINSERT INTO t2 VALUES(8250, 37315, 'thirty-seven thousand three hundred fifteen');\nINSERT INTO t2 VALUES(8251, 89883, 'eighty-nine thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(8252, 36652, 'thirty-six thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(8253, 31530, 'thirty-one thousand five hundred thirty');\nINSERT INTO t2 VALUES(8254, 86312, 'eighty-six thousand three hundred twelve');\nINSERT INTO t2 VALUES(8255, 95217, 'ninety-five thousand two hundred seventeen');\nINSERT INTO t2 VALUES(8256, 62570, 'sixty-two thousand five hundred seventy');\nINSERT INTO t2 VALUES(8257, 62573, 'sixty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(8258, 97, 'ninety-seven');\nINSERT INTO t2 VALUES(8259, 8161, 'eight thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(8260, 78891, 'seventy-eight thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(8261, 23796, 'twenty-three thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(8262, 86320, 'eighty-six thousand three hundred twenty');\nINSERT INTO t2 VALUES(8263, 15800, 'fifteen thousand eight hundred');\nINSERT INTO t2 VALUES(8264, 39336, 'thirty-nine thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(8265, 8304, 'eight thousand three hundred four');\nINSERT INTO t2 VALUES(8266, 85651, 'eighty-five thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(8267, 28403, 'twenty-eight thousand four hundred three');\nINSERT INTO t2 VALUES(8268, 1622, 'one thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(8269, 38657, 'thirty-eight thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(8270, 81801, 'eighty-one thousand eight hundred one');\nINSERT INTO t2 VALUES(8271, 78027, 'seventy-eight thousand twenty-seven');\nINSERT INTO t2 VALUES(8272, 55338, 'fifty-five thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(8273, 66066, 'sixty-six thousand sixty-six');\nINSERT INTO t2 VALUES(8274, 48209, 'forty-eight thousand two hundred nine');\nINSERT INTO t2 VALUES(8275, 51056, 'fifty-one thousand fifty-six');\nINSERT INTO t2 VALUES(8276, 17367, 'seventeen thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(8277, 42270, 'forty-two thousand two hundred seventy');\nINSERT INTO t2 VALUES(8278, 69366, 'sixty-nine thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(8279, 24319, 'twenty-four thousand three hundred nineteen');\nINSERT INTO t2 VALUES(8280, 85464, 'eighty-five thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(8281, 25889, 'twenty-five thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(8282, 74094, 'seventy-four thousand ninety-four');\nINSERT INTO t2 VALUES(8283, 47837, 'forty-seven thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(8284, 38957, 'thirty-eight thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(8285, 7458, 'seven thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(8286, 95300, 'ninety-five thousand three hundred');\nINSERT INTO t2 VALUES(8287, 29642, 'twenty-nine thousand six hundred forty-two');\nINSERT INTO t2 VALUES(8288, 14033, 'fourteen thousand thirty-three');\nINSERT INTO t2 VALUES(8289, 37044, 'thirty-seven thousand forty-four');\nINSERT INTO t2 VALUES(8290, 26910, 'twenty-six thousand nine hundred ten');\nINSERT INTO t2 VALUES(8291, 87193, 'eighty-seven thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(8292, 32544, 'thirty-two thousand five hundred forty-four');\nINSERT INTO t2 VALUES(8293, 56606, 'fifty-six thousand six hundred six');\nINSERT INTO t2 VALUES(8294, 5305, 'five thousand three hundred five');\nINSERT INTO t2 VALUES(8295, 99438, 'ninety-nine thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(8296, 90665, 'ninety thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(8297, 38974, 'thirty-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(8298, 68109, 'sixty-eight thousand one hundred nine');\nINSERT INTO t2 VALUES(8299, 15877, 'fifteen thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(8300, 52230, 'fifty-two thousand two hundred thirty');\nINSERT INTO t2 VALUES(8301, 47332, 'forty-seven thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(8302, 48457, 'forty-eight thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(8303, 34780, 'thirty-four thousand seven hundred eighty');\nINSERT INTO t2 VALUES(8304, 14553, 'fourteen thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(8305, 59943, 'fifty-nine thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(8306, 1094, 'one thousand ninety-four');\nINSERT INTO t2 VALUES(8307, 92145, 'ninety-two thousand one hundred forty-five');\nINSERT INTO t2 VALUES(8308, 74060, 'seventy-four thousand sixty');\nINSERT INTO t2 VALUES(8309, 38193, 'thirty-eight thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(8310, 20192, 'twenty thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(8311, 45702, 'forty-five thousand seven hundred two');\nINSERT INTO t2 VALUES(8312, 97277, 'ninety-seven thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(8313, 43935, 'forty-three thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(8314, 32421, 'thirty-two thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(8315, 59341, 'fifty-nine thousand three hundred forty-one');\nINSERT INTO t2 VALUES(8316, 73382, 'seventy-three thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(8317, 10733, 'ten thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(8318, 97129, 'ninety-seven thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(8319, 54919, 'fifty-four thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(8320, 10259, 'ten thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(8321, 39614, 'thirty-nine thousand six hundred fourteen');\nINSERT INTO t2 VALUES(8322, 27633, 'twenty-seven thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(8323, 69950, 'sixty-nine thousand nine hundred fifty');\nINSERT INTO t2 VALUES(8324, 8919, 'eight thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(8325, 28733, 'twenty-eight thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(8326, 20390, 'twenty thousand three hundred ninety');\nINSERT INTO t2 VALUES(8327, 77228, 'seventy-seven thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(8328, 35351, 'thirty-five thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(8329, 13857, 'thirteen thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(8330, 42468, 'forty-two thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(8331, 84999, 'eighty-four thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(8332, 72470, 'seventy-two thousand four hundred seventy');\nINSERT INTO t2 VALUES(8333, 72452, 'seventy-two thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(8334, 94155, 'ninety-four thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(8335, 6664, 'six thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(8336, 18849, 'eighteen thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(8337, 68314, 'sixty-eight thousand three hundred fourteen');\nINSERT INTO t2 VALUES(8338, 94744, 'ninety-four thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(8339, 92363, 'ninety-two thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(8340, 93019, 'ninety-three thousand nineteen');\nINSERT INTO t2 VALUES(8341, 78500, 'seventy-eight thousand five hundred');\nINSERT INTO t2 VALUES(8342, 44088, 'forty-four thousand eighty-eight');\nINSERT INTO t2 VALUES(8343, 75584, 'seventy-five thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(8344, 84360, 'eighty-four thousand three hundred sixty');\nINSERT INTO t2 VALUES(8345, 70735, 'seventy thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(8346, 12457, 'twelve thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(8347, 92143, 'ninety-two thousand one hundred forty-three');\nINSERT INTO t2 VALUES(8348, 1204, 'one thousand two hundred four');\nINSERT INTO t2 VALUES(8349, 80695, 'eighty thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(8350, 62627, 'sixty-two thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(8351, 21967, 'twenty-one thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(8352, 45548, 'forty-five thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(8353, 33384, 'thirty-three thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(8354, 23888, 'twenty-three thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(8355, 90151, 'ninety thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(8356, 97427, 'ninety-seven thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(8357, 51779, 'fifty-one thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(8358, 86397, 'eighty-six thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(8359, 59564, 'fifty-nine thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(8360, 38636, 'thirty-eight thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(8361, 64780, 'sixty-four thousand seven hundred eighty');\nINSERT INTO t2 VALUES(8362, 37535, 'thirty-seven thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(8363, 78783, 'seventy-eight thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(8364, 4100, 'four thousand one hundred');\nINSERT INTO t2 VALUES(8365, 30252, 'thirty thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(8366, 84723, 'eighty-four thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(8367, 20077, 'twenty thousand seventy-seven');\nINSERT INTO t2 VALUES(8368, 34092, 'thirty-four thousand ninety-two');\nINSERT INTO t2 VALUES(8369, 35114, 'thirty-five thousand one hundred fourteen');\nINSERT INTO t2 VALUES(8370, 86839, 'eighty-six thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(8371, 95103, 'ninety-five thousand one hundred three');\nINSERT INTO t2 VALUES(8372, 36892, 'thirty-six thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(8373, 99387, 'ninety-nine thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(8374, 88180, 'eighty-eight thousand one hundred eighty');\nINSERT INTO t2 VALUES(8375, 75130, 'seventy-five thousand one hundred thirty');\nINSERT INTO t2 VALUES(8376, 72000, 'seventy-two thousand');\nINSERT INTO t2 VALUES(8377, 52097, 'fifty-two thousand ninety-seven');\nINSERT INTO t2 VALUES(8378, 93419, 'ninety-three thousand four hundred nineteen');\nINSERT INTO t2 VALUES(8379, 55083, 'fifty-five thousand eighty-three');\nINSERT INTO t2 VALUES(8380, 55503, 'fifty-five thousand five hundred three');\nINSERT INTO t2 VALUES(8381, 81232, 'eighty-one thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(8382, 95887, 'ninety-five thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(8383, 32005, 'thirty-two thousand five');\nINSERT INTO t2 VALUES(8384, 5590, 'five thousand five hundred ninety');\nINSERT INTO t2 VALUES(8385, 53004, 'fifty-three thousand four');\nINSERT INTO t2 VALUES(8386, 60414, 'sixty thousand four hundred fourteen');\nINSERT INTO t2 VALUES(8387, 39286, 'thirty-nine thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(8388, 61723, 'sixty-one thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(8389, 28696, 'twenty-eight thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(8390, 30502, 'thirty thousand five hundred two');\nINSERT INTO t2 VALUES(8391, 40868, 'forty thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(8392, 56747, 'fifty-six thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(8393, 72695, 'seventy-two thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(8394, 90719, 'ninety thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(8395, 22263, 'twenty-two thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(8396, 10971, 'ten thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(8397, 67956, 'sixty-seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(8398, 5266, 'five thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(8399, 65629, 'sixty-five thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(8400, 60456, 'sixty thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(8401, 52701, 'fifty-two thousand seven hundred one');\nINSERT INTO t2 VALUES(8402, 11101, 'eleven thousand one hundred one');\nINSERT INTO t2 VALUES(8403, 31802, 'thirty-one thousand eight hundred two');\nINSERT INTO t2 VALUES(8404, 57050, 'fifty-seven thousand fifty');\nINSERT INTO t2 VALUES(8405, 57178, 'fifty-seven thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(8406, 43050, 'forty-three thousand fifty');\nINSERT INTO t2 VALUES(8407, 54219, 'fifty-four thousand two hundred nineteen');\nINSERT INTO t2 VALUES(8408, 30077, 'thirty thousand seventy-seven');\nINSERT INTO t2 VALUES(8409, 26188, 'twenty-six thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(8410, 86172, 'eighty-six thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8411, 50520, 'fifty thousand five hundred twenty');\nINSERT INTO t2 VALUES(8412, 71227, 'seventy-one thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(8413, 9944, 'nine thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(8414, 24896, 'twenty-four thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(8415, 98924, 'ninety-eight thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(8416, 23715, 'twenty-three thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(8417, 85708, 'eighty-five thousand seven hundred eight');\nINSERT INTO t2 VALUES(8418, 65832, 'sixty-five thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(8419, 71091, 'seventy-one thousand ninety-one');\nINSERT INTO t2 VALUES(8420, 45450, 'forty-five thousand four hundred fifty');\nINSERT INTO t2 VALUES(8421, 72707, 'seventy-two thousand seven hundred seven');\nINSERT INTO t2 VALUES(8422, 4941, 'four thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(8423, 59988, 'fifty-nine thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(8424, 74020, 'seventy-four thousand twenty');\nINSERT INTO t2 VALUES(8425, 47480, 'forty-seven thousand four hundred eighty');\nINSERT INTO t2 VALUES(8426, 29522, 'twenty-nine thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(8427, 28655, 'twenty-eight thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(8428, 50172, 'fifty thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8429, 91225, 'ninety-one thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(8430, 51844, 'fifty-one thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(8431, 40306, 'forty thousand three hundred six');\nINSERT INTO t2 VALUES(8432, 42886, 'forty-two thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(8433, 96895, 'ninety-six thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(8434, 75928, 'seventy-five thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(8435, 30316, 'thirty thousand three hundred sixteen');\nINSERT INTO t2 VALUES(8436, 83563, 'eighty-three thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(8437, 82660, 'eighty-two thousand six hundred sixty');\nINSERT INTO t2 VALUES(8438, 85621, 'eighty-five thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(8439, 42335, 'forty-two thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(8440, 79863, 'seventy-nine thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(8441, 3905, 'three thousand nine hundred five');\nINSERT INTO t2 VALUES(8442, 93351, 'ninety-three thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(8443, 14415, 'fourteen thousand four hundred fifteen');\nINSERT INTO t2 VALUES(8444, 38678, 'thirty-eight thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(8445, 51745, 'fifty-one thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(8446, 86197, 'eighty-six thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(8447, 358, 'three hundred fifty-eight');\nINSERT INTO t2 VALUES(8448, 87031, 'eighty-seven thousand thirty-one');\nINSERT INTO t2 VALUES(8449, 83811, 'eighty-three thousand eight hundred eleven');\nINSERT INTO t2 VALUES(8450, 11528, 'eleven thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(8451, 54017, 'fifty-four thousand seventeen');\nINSERT INTO t2 VALUES(8452, 17978, 'seventeen thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(8453, 22946, 'twenty-two thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(8454, 52647, 'fifty-two thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(8455, 62893, 'sixty-two thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(8456, 45727, 'forty-five thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(8457, 27751, 'twenty-seven thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(8458, 9583, 'nine thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(8459, 74362, 'seventy-four thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(8460, 18952, 'eighteen thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(8461, 78973, 'seventy-eight thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(8462, 84630, 'eighty-four thousand six hundred thirty');\nINSERT INTO t2 VALUES(8463, 90779, 'ninety thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(8464, 40841, 'forty thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(8465, 17142, 'seventeen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(8466, 92416, 'ninety-two thousand four hundred sixteen');\nINSERT INTO t2 VALUES(8467, 72365, 'seventy-two thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(8468, 33423, 'thirty-three thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(8469, 336, 'three hundred thirty-six');\nINSERT INTO t2 VALUES(8470, 99184, 'ninety-nine thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(8471, 59078, 'fifty-nine thousand seventy-eight');\nINSERT INTO t2 VALUES(8472, 49452, 'forty-nine thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(8473, 95896, 'ninety-five thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(8474, 51552, 'fifty-one thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(8475, 69558, 'sixty-nine thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(8476, 12738, 'twelve thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(8477, 19046, 'nineteen thousand forty-six');\nINSERT INTO t2 VALUES(8478, 76213, 'seventy-six thousand two hundred thirteen');\nINSERT INTO t2 VALUES(8479, 48274, 'forty-eight thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(8480, 15545, 'fifteen thousand five hundred forty-five');\nINSERT INTO t2 VALUES(8481, 61304, 'sixty-one thousand three hundred four');\nINSERT INTO t2 VALUES(8482, 94968, 'ninety-four thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(8483, 19481, 'nineteen thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(8484, 93482, 'ninety-three thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(8485, 6179, 'six thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(8486, 43347, 'forty-three thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(8487, 77653, 'seventy-seven thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(8488, 20406, 'twenty thousand four hundred six');\nINSERT INTO t2 VALUES(8489, 62035, 'sixty-two thousand thirty-five');\nINSERT INTO t2 VALUES(8490, 90587, 'ninety thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(8491, 2946, 'two thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(8492, 53306, 'fifty-three thousand three hundred six');\nINSERT INTO t2 VALUES(8493, 10132, 'ten thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(8494, 77462, 'seventy-seven thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(8495, 58595, 'fifty-eight thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(8496, 79911, 'seventy-nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(8497, 25078, 'twenty-five thousand seventy-eight');\nINSERT INTO t2 VALUES(8498, 9200, 'nine thousand two hundred');\nINSERT INTO t2 VALUES(8499, 60512, 'sixty thousand five hundred twelve');\nINSERT INTO t2 VALUES(8500, 96701, 'ninety-six thousand seven hundred one');\nINSERT INTO t2 VALUES(8501, 72934, 'seventy-two thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(8502, 34124, 'thirty-four thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(8503, 95356, 'ninety-five thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(8504, 69879, 'sixty-nine thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(8505, 71591, 'seventy-one thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(8506, 44776, 'forty-four thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(8507, 6508, 'six thousand five hundred eight');\nINSERT INTO t2 VALUES(8508, 36488, 'thirty-six thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(8509, 12847, 'twelve thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(8510, 74853, 'seventy-four thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(8511, 84745, 'eighty-four thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(8512, 80531, 'eighty thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(8513, 94078, 'ninety-four thousand seventy-eight');\nINSERT INTO t2 VALUES(8514, 93822, 'ninety-three thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(8515, 88476, 'eighty-eight thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(8516, 84245, 'eighty-four thousand two hundred forty-five');\nINSERT INTO t2 VALUES(8517, 84395, 'eighty-four thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(8518, 2007, 'two thousand seven');\nINSERT INTO t2 VALUES(8519, 70123, 'seventy thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(8520, 3056, 'three thousand fifty-six');\nINSERT INTO t2 VALUES(8521, 10942, 'ten thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(8522, 10013, 'ten thousand thirteen');\nINSERT INTO t2 VALUES(8523, 61214, 'sixty-one thousand two hundred fourteen');\nINSERT INTO t2 VALUES(8524, 54374, 'fifty-four thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(8525, 43644, 'forty-three thousand six hundred forty-four');\nINSERT INTO t2 VALUES(8526, 69136, 'sixty-nine thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(8527, 26273, 'twenty-six thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(8528, 40148, 'forty thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(8529, 67790, 'sixty-seven thousand seven hundred ninety');\nINSERT INTO t2 VALUES(8530, 91834, 'ninety-one thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(8531, 35669, 'thirty-five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(8532, 35187, 'thirty-five thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(8533, 2047, 'two thousand forty-seven');\nINSERT INTO t2 VALUES(8534, 10640, 'ten thousand six hundred forty');\nINSERT INTO t2 VALUES(8535, 92444, 'ninety-two thousand four hundred forty-four');\nINSERT INTO t2 VALUES(8536, 5582, 'five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(8537, 25235, 'twenty-five thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(8538, 51952, 'fifty-one thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(8539, 17616, 'seventeen thousand six hundred sixteen');\nINSERT INTO t2 VALUES(8540, 71144, 'seventy-one thousand one hundred forty-four');\nINSERT INTO t2 VALUES(8541, 16618, 'sixteen thousand six hundred eighteen');\nINSERT INTO t2 VALUES(8542, 18205, 'eighteen thousand two hundred five');\nINSERT INTO t2 VALUES(8543, 80186, 'eighty thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(8544, 61942, 'sixty-one thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(8545, 61044, 'sixty-one thousand forty-four');\nINSERT INTO t2 VALUES(8546, 27629, 'twenty-seven thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(8547, 21920, 'twenty-one thousand nine hundred twenty');\nINSERT INTO t2 VALUES(8548, 18074, 'eighteen thousand seventy-four');\nINSERT INTO t2 VALUES(8549, 77500, 'seventy-seven thousand five hundred');\nINSERT INTO t2 VALUES(8550, 7506, 'seven thousand five hundred six');\nINSERT INTO t2 VALUES(8551, 1172, 'one thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8552, 82477, 'eighty-two thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(8553, 53691, 'fifty-three thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(8554, 72027, 'seventy-two thousand twenty-seven');\nINSERT INTO t2 VALUES(8555, 31763, 'thirty-one thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(8556, 35087, 'thirty-five thousand eighty-seven');\nINSERT INTO t2 VALUES(8557, 58296, 'fifty-eight thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(8558, 78481, 'seventy-eight thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(8559, 16043, 'sixteen thousand forty-three');\nINSERT INTO t2 VALUES(8560, 76737, 'seventy-six thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(8561, 75570, 'seventy-five thousand five hundred seventy');\nINSERT INTO t2 VALUES(8562, 95820, 'ninety-five thousand eight hundred twenty');\nINSERT INTO t2 VALUES(8563, 45974, 'forty-five thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(8564, 56270, 'fifty-six thousand two hundred seventy');\nINSERT INTO t2 VALUES(8565, 97244, 'ninety-seven thousand two hundred forty-four');\nINSERT INTO t2 VALUES(8566, 85545, 'eighty-five thousand five hundred forty-five');\nINSERT INTO t2 VALUES(8567, 14500, 'fourteen thousand five hundred');\nINSERT INTO t2 VALUES(8568, 53416, 'fifty-three thousand four hundred sixteen');\nINSERT INTO t2 VALUES(8569, 81913, 'eighty-one thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(8570, 82487, 'eighty-two thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(8571, 50845, 'fifty thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(8572, 57160, 'fifty-seven thousand one hundred sixty');\nINSERT INTO t2 VALUES(8573, 29717, 'twenty-nine thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(8574, 76, 'seventy-six');\nINSERT INTO t2 VALUES(8575, 55307, 'fifty-five thousand three hundred seven');\nINSERT INTO t2 VALUES(8576, 48259, 'forty-eight thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(8577, 17068, 'seventeen thousand sixty-eight');\nINSERT INTO t2 VALUES(8578, 50442, 'fifty thousand four hundred forty-two');\nINSERT INTO t2 VALUES(8579, 48056, 'forty-eight thousand fifty-six');\nINSERT INTO t2 VALUES(8580, 99483, 'ninety-nine thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(8581, 233, 'two hundred thirty-three');\nINSERT INTO t2 VALUES(8582, 24262, 'twenty-four thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(8583, 7703, 'seven thousand seven hundred three');\nINSERT INTO t2 VALUES(8584, 48131, 'forty-eight thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(8585, 76997, 'seventy-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(8586, 25102, 'twenty-five thousand one hundred two');\nINSERT INTO t2 VALUES(8587, 74011, 'seventy-four thousand eleven');\nINSERT INTO t2 VALUES(8588, 29487, 'twenty-nine thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(8589, 54798, 'fifty-four thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(8590, 42449, 'forty-two thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(8591, 49835, 'forty-nine thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(8592, 48213, 'forty-eight thousand two hundred thirteen');\nINSERT INTO t2 VALUES(8593, 70699, 'seventy thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(8594, 77261, 'seventy-seven thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(8595, 28770, 'twenty-eight thousand seven hundred seventy');\nINSERT INTO t2 VALUES(8596, 78418, 'seventy-eight thousand four hundred eighteen');\nINSERT INTO t2 VALUES(8597, 1713, 'one thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(8598, 18612, 'eighteen thousand six hundred twelve');\nINSERT INTO t2 VALUES(8599, 86638, 'eighty-six thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(8600, 45093, 'forty-five thousand ninety-three');\nINSERT INTO t2 VALUES(8601, 47829, 'forty-seven thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(8602, 95589, 'ninety-five thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(8603, 13318, 'thirteen thousand three hundred eighteen');\nINSERT INTO t2 VALUES(8604, 96785, 'ninety-six thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(8605, 2152, 'two thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(8606, 45752, 'forty-five thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(8607, 12506, 'twelve thousand five hundred six');\nINSERT INTO t2 VALUES(8608, 47588, 'forty-seven thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(8609, 62692, 'sixty-two thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(8610, 26224, 'twenty-six thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(8611, 44256, 'forty-four thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(8612, 57118, 'fifty-seven thousand one hundred eighteen');\nINSERT INTO t2 VALUES(8613, 84336, 'eighty-four thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(8614, 96929, 'ninety-six thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(8615, 49830, 'forty-nine thousand eight hundred thirty');\nINSERT INTO t2 VALUES(8616, 21745, 'twenty-one thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(8617, 79088, 'seventy-nine thousand eighty-eight');\nINSERT INTO t2 VALUES(8618, 76255, 'seventy-six thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(8619, 61846, 'sixty-one thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(8620, 84031, 'eighty-four thousand thirty-one');\nINSERT INTO t2 VALUES(8621, 45812, 'forty-five thousand eight hundred twelve');\nINSERT INTO t2 VALUES(8622, 62552, 'sixty-two thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(8623, 2926, 'two thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(8624, 50694, 'fifty thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(8625, 16077, 'sixteen thousand seventy-seven');\nINSERT INTO t2 VALUES(8626, 46748, 'forty-six thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(8627, 30989, 'thirty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(8628, 63812, 'sixty-three thousand eight hundred twelve');\nINSERT INTO t2 VALUES(8629, 89220, 'eighty-nine thousand two hundred twenty');\nINSERT INTO t2 VALUES(8630, 48440, 'forty-eight thousand four hundred forty');\nINSERT INTO t2 VALUES(8631, 37696, 'thirty-seven thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(8632, 55331, 'fifty-five thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(8633, 26063, 'twenty-six thousand sixty-three');\nINSERT INTO t2 VALUES(8634, 26615, 'twenty-six thousand six hundred fifteen');\nINSERT INTO t2 VALUES(8635, 7384, 'seven thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(8636, 77258, 'seventy-seven thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(8637, 95407, 'ninety-five thousand four hundred seven');\nINSERT INTO t2 VALUES(8638, 68228, 'sixty-eight thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(8639, 34816, 'thirty-four thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(8640, 89065, 'eighty-nine thousand sixty-five');\nINSERT INTO t2 VALUES(8641, 45247, 'forty-five thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(8642, 92187, 'ninety-two thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(8643, 27567, 'twenty-seven thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(8644, 16730, 'sixteen thousand seven hundred thirty');\nINSERT INTO t2 VALUES(8645, 13930, 'thirteen thousand nine hundred thirty');\nINSERT INTO t2 VALUES(8646, 23266, 'twenty-three thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(8647, 56009, 'fifty-six thousand nine');\nINSERT INTO t2 VALUES(8648, 34112, 'thirty-four thousand one hundred twelve');\nINSERT INTO t2 VALUES(8649, 83188, 'eighty-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(8650, 72338, 'seventy-two thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(8651, 17468, 'seventeen thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(8652, 45092, 'forty-five thousand ninety-two');\nINSERT INTO t2 VALUES(8653, 94057, 'ninety-four thousand fifty-seven');\nINSERT INTO t2 VALUES(8654, 83202, 'eighty-three thousand two hundred two');\nINSERT INTO t2 VALUES(8655, 92984, 'ninety-two thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(8656, 77442, 'seventy-seven thousand four hundred forty-two');\nINSERT INTO t2 VALUES(8657, 22530, 'twenty-two thousand five hundred thirty');\nINSERT INTO t2 VALUES(8658, 90172, 'ninety thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8659, 58338, 'fifty-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(8660, 80604, 'eighty thousand six hundred four');\nINSERT INTO t2 VALUES(8661, 89556, 'eighty-nine thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(8662, 17999, 'seventeen thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(8663, 45559, 'forty-five thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(8664, 11687, 'eleven thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(8665, 36697, 'thirty-six thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(8666, 33682, 'thirty-three thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(8667, 13180, 'thirteen thousand one hundred eighty');\nINSERT INTO t2 VALUES(8668, 34928, 'thirty-four thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(8669, 17627, 'seventeen thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(8670, 20085, 'twenty thousand eighty-five');\nINSERT INTO t2 VALUES(8671, 86689, 'eighty-six thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(8672, 17955, 'seventeen thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(8673, 19842, 'nineteen thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(8674, 74782, 'seventy-four thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(8675, 53152, 'fifty-three thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(8676, 81107, 'eighty-one thousand one hundred seven');\nINSERT INTO t2 VALUES(8677, 35428, 'thirty-five thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(8678, 72530, 'seventy-two thousand five hundred thirty');\nINSERT INTO t2 VALUES(8679, 43305, 'forty-three thousand three hundred five');\nINSERT INTO t2 VALUES(8680, 2974, 'two thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(8681, 48008, 'forty-eight thousand eight');\nINSERT INTO t2 VALUES(8682, 6103, 'six thousand one hundred three');\nINSERT INTO t2 VALUES(8683, 59783, 'fifty-nine thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(8684, 15411, 'fifteen thousand four hundred eleven');\nINSERT INTO t2 VALUES(8685, 2820, 'two thousand eight hundred twenty');\nINSERT INTO t2 VALUES(8686, 83120, 'eighty-three thousand one hundred twenty');\nINSERT INTO t2 VALUES(8687, 6211, 'six thousand two hundred eleven');\nINSERT INTO t2 VALUES(8688, 92685, 'ninety-two thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(8689, 17114, 'seventeen thousand one hundred fourteen');\nINSERT INTO t2 VALUES(8690, 71302, 'seventy-one thousand three hundred two');\nINSERT INTO t2 VALUES(8691, 6916, 'six thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(8692, 70097, 'seventy thousand ninety-seven');\nINSERT INTO t2 VALUES(8693, 10476, 'ten thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(8694, 94509, 'ninety-four thousand five hundred nine');\nINSERT INTO t2 VALUES(8695, 19795, 'nineteen thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(8696, 56289, 'fifty-six thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(8697, 28884, 'twenty-eight thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(8698, 22976, 'twenty-two thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(8699, 32841, 'thirty-two thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(8700, 21053, 'twenty-one thousand fifty-three');\nINSERT INTO t2 VALUES(8701, 30033, 'thirty thousand thirty-three');\nINSERT INTO t2 VALUES(8702, 54554, 'fifty-four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(8703, 56229, 'fifty-six thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(8704, 45239, 'forty-five thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(8705, 54039, 'fifty-four thousand thirty-nine');\nINSERT INTO t2 VALUES(8706, 45041, 'forty-five thousand forty-one');\nINSERT INTO t2 VALUES(8707, 28822, 'twenty-eight thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(8708, 94080, 'ninety-four thousand eighty');\nINSERT INTO t2 VALUES(8709, 91265, 'ninety-one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(8710, 94998, 'ninety-four thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(8711, 64507, 'sixty-four thousand five hundred seven');\nINSERT INTO t2 VALUES(8712, 25414, 'twenty-five thousand four hundred fourteen');\nINSERT INTO t2 VALUES(8713, 50479, 'fifty thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(8714, 55078, 'fifty-five thousand seventy-eight');\nINSERT INTO t2 VALUES(8715, 21183, 'twenty-one thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(8716, 83990, 'eighty-three thousand nine hundred ninety');\nINSERT INTO t2 VALUES(8717, 68150, 'sixty-eight thousand one hundred fifty');\nINSERT INTO t2 VALUES(8718, 87764, 'eighty-seven thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(8719, 16736, 'sixteen thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(8720, 95461, 'ninety-five thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(8721, 81193, 'eighty-one thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(8722, 17999, 'seventeen thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(8723, 44183, 'forty-four thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(8724, 35526, 'thirty-five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(8725, 20312, 'twenty thousand three hundred twelve');\nINSERT INTO t2 VALUES(8726, 56297, 'fifty-six thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(8727, 35769, 'thirty-five thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(8728, 48461, 'forty-eight thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(8729, 23810, 'twenty-three thousand eight hundred ten');\nINSERT INTO t2 VALUES(8730, 74838, 'seventy-four thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(8731, 77600, 'seventy-seven thousand six hundred');\nINSERT INTO t2 VALUES(8732, 85446, 'eighty-five thousand four hundred forty-six');\nINSERT INTO t2 VALUES(8733, 1154, 'one thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(8734, 18177, 'eighteen thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(8735, 3336, 'three thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(8736, 56829, 'fifty-six thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(8737, 24010, 'twenty-four thousand ten');\nINSERT INTO t2 VALUES(8738, 42910, 'forty-two thousand nine hundred ten');\nINSERT INTO t2 VALUES(8739, 8378, 'eight thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(8740, 59197, 'fifty-nine thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(8741, 91327, 'ninety-one thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(8742, 76659, 'seventy-six thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(8743, 36896, 'thirty-six thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(8744, 87615, 'eighty-seven thousand six hundred fifteen');\nINSERT INTO t2 VALUES(8745, 11755, 'eleven thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(8746, 79658, 'seventy-nine thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(8747, 56728, 'fifty-six thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(8748, 32266, 'thirty-two thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(8749, 6088, 'six thousand eighty-eight');\nINSERT INTO t2 VALUES(8750, 35046, 'thirty-five thousand forty-six');\nINSERT INTO t2 VALUES(8751, 19133, 'nineteen thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(8752, 81608, 'eighty-one thousand six hundred eight');\nINSERT INTO t2 VALUES(8753, 8352, 'eight thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(8754, 97987, 'ninety-seven thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(8755, 12939, 'twelve thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(8756, 36514, 'thirty-six thousand five hundred fourteen');\nINSERT INTO t2 VALUES(8757, 41168, 'forty-one thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(8758, 39249, 'thirty-nine thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(8759, 98313, 'ninety-eight thousand three hundred thirteen');\nINSERT INTO t2 VALUES(8760, 46874, 'forty-six thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(8761, 80452, 'eighty thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(8762, 3514, 'three thousand five hundred fourteen');\nINSERT INTO t2 VALUES(8763, 31558, 'thirty-one thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(8764, 20051, 'twenty thousand fifty-one');\nINSERT INTO t2 VALUES(8765, 174, 'one hundred seventy-four');\nINSERT INTO t2 VALUES(8766, 26461, 'twenty-six thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(8767, 68367, 'sixty-eight thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(8768, 98050, 'ninety-eight thousand fifty');\nINSERT INTO t2 VALUES(8769, 96396, 'ninety-six thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(8770, 87274, 'eighty-seven thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(8771, 85993, 'eighty-five thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(8772, 29446, 'twenty-nine thousand four hundred forty-six');\nINSERT INTO t2 VALUES(8773, 53555, 'fifty-three thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(8774, 43621, 'forty-three thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(8775, 16216, 'sixteen thousand two hundred sixteen');\nINSERT INTO t2 VALUES(8776, 4240, 'four thousand two hundred forty');\nINSERT INTO t2 VALUES(8777, 95429, 'ninety-five thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(8778, 36099, 'thirty-six thousand ninety-nine');\nINSERT INTO t2 VALUES(8779, 22866, 'twenty-two thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(8780, 26070, 'twenty-six thousand seventy');\nINSERT INTO t2 VALUES(8781, 15960, 'fifteen thousand nine hundred sixty');\nINSERT INTO t2 VALUES(8782, 31071, 'thirty-one thousand seventy-one');\nINSERT INTO t2 VALUES(8783, 69365, 'sixty-nine thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(8784, 6348, 'six thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(8785, 7231, 'seven thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(8786, 80596, 'eighty thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(8787, 62860, 'sixty-two thousand eight hundred sixty');\nINSERT INTO t2 VALUES(8788, 21329, 'twenty-one thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(8789, 80341, 'eighty thousand three hundred forty-one');\nINSERT INTO t2 VALUES(8790, 39607, 'thirty-nine thousand six hundred seven');\nINSERT INTO t2 VALUES(8791, 33663, 'thirty-three thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(8792, 68265, 'sixty-eight thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(8793, 48596, 'forty-eight thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(8794, 93676, 'ninety-three thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(8795, 64289, 'sixty-four thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(8796, 54742, 'fifty-four thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(8797, 25770, 'twenty-five thousand seven hundred seventy');\nINSERT INTO t2 VALUES(8798, 77514, 'seventy-seven thousand five hundred fourteen');\nINSERT INTO t2 VALUES(8799, 24809, 'twenty-four thousand eight hundred nine');\nINSERT INTO t2 VALUES(8800, 47728, 'forty-seven thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(8801, 69116, 'sixty-nine thousand one hundred sixteen');\nINSERT INTO t2 VALUES(8802, 2508, 'two thousand five hundred eight');\nINSERT INTO t2 VALUES(8803, 94461, 'ninety-four thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(8804, 43526, 'forty-three thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(8805, 85148, 'eighty-five thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(8806, 68809, 'sixty-eight thousand eight hundred nine');\nINSERT INTO t2 VALUES(8807, 21229, 'twenty-one thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(8808, 20926, 'twenty thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(8809, 95358, 'ninety-five thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(8810, 24603, 'twenty-four thousand six hundred three');\nINSERT INTO t2 VALUES(8811, 20601, 'twenty thousand six hundred one');\nINSERT INTO t2 VALUES(8812, 21149, 'twenty-one thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(8813, 16401, 'sixteen thousand four hundred one');\nINSERT INTO t2 VALUES(8814, 36559, 'thirty-six thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(8815, 61493, 'sixty-one thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(8816, 92910, 'ninety-two thousand nine hundred ten');\nINSERT INTO t2 VALUES(8817, 47394, 'forty-seven thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(8818, 7008, 'seven thousand eight');\nINSERT INTO t2 VALUES(8819, 6667, 'six thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(8820, 51875, 'fifty-one thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(8821, 98458, 'ninety-eight thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(8822, 1291, 'one thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(8823, 92609, 'ninety-two thousand six hundred nine');\nINSERT INTO t2 VALUES(8824, 49897, 'forty-nine thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(8825, 19672, 'nineteen thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(8826, 33905, 'thirty-three thousand nine hundred five');\nINSERT INTO t2 VALUES(8827, 25063, 'twenty-five thousand sixty-three');\nINSERT INTO t2 VALUES(8828, 26354, 'twenty-six thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(8829, 62055, 'sixty-two thousand fifty-five');\nINSERT INTO t2 VALUES(8830, 48191, 'forty-eight thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(8831, 2531, 'two thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(8832, 97209, 'ninety-seven thousand two hundred nine');\nINSERT INTO t2 VALUES(8833, 83353, 'eighty-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(8834, 21619, 'twenty-one thousand six hundred nineteen');\nINSERT INTO t2 VALUES(8835, 81317, 'eighty-one thousand three hundred seventeen');\nINSERT INTO t2 VALUES(8836, 45325, 'forty-five thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(8837, 83136, 'eighty-three thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(8838, 89377, 'eighty-nine thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(8839, 47721, 'forty-seven thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(8840, 6441, 'six thousand four hundred forty-one');\nINSERT INTO t2 VALUES(8841, 92087, 'ninety-two thousand eighty-seven');\nINSERT INTO t2 VALUES(8842, 10737, 'ten thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(8843, 97666, 'ninety-seven thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(8844, 75539, 'seventy-five thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(8845, 65961, 'sixty-five thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(8846, 7786, 'seven thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(8847, 66364, 'sixty-six thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(8848, 96654, 'ninety-six thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(8849, 11049, 'eleven thousand forty-nine');\nINSERT INTO t2 VALUES(8850, 11569, 'eleven thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(8851, 55142, 'fifty-five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(8852, 85985, 'eighty-five thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(8853, 82146, 'eighty-two thousand one hundred forty-six');\nINSERT INTO t2 VALUES(8854, 13656, 'thirteen thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(8855, 10304, 'ten thousand three hundred four');\nINSERT INTO t2 VALUES(8856, 49971, 'forty-nine thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(8857, 47467, 'forty-seven thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(8858, 44903, 'forty-four thousand nine hundred three');\nINSERT INTO t2 VALUES(8859, 70403, 'seventy thousand four hundred three');\nINSERT INTO t2 VALUES(8860, 96926, 'ninety-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(8861, 44974, 'forty-four thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(8862, 51428, 'fifty-one thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(8863, 77303, 'seventy-seven thousand three hundred three');\nINSERT INTO t2 VALUES(8864, 64539, 'sixty-four thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(8865, 8197, 'eight thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(8866, 46172, 'forty-six thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8867, 55154, 'fifty-five thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(8868, 96213, 'ninety-six thousand two hundred thirteen');\nINSERT INTO t2 VALUES(8869, 78942, 'seventy-eight thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(8870, 50775, 'fifty thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(8871, 59875, 'fifty-nine thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(8872, 25186, 'twenty-five thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(8873, 62320, 'sixty-two thousand three hundred twenty');\nINSERT INTO t2 VALUES(8874, 51320, 'fifty-one thousand three hundred twenty');\nINSERT INTO t2 VALUES(8875, 65552, 'sixty-five thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(8876, 80498, 'eighty thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(8877, 6865, 'six thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(8878, 39692, 'thirty-nine thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(8879, 65024, 'sixty-five thousand twenty-four');\nINSERT INTO t2 VALUES(8880, 39564, 'thirty-nine thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(8881, 88474, 'eighty-eight thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(8882, 79744, 'seventy-nine thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(8883, 76880, 'seventy-six thousand eight hundred eighty');\nINSERT INTO t2 VALUES(8884, 36549, 'thirty-six thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(8885, 13497, 'thirteen thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(8886, 68912, 'sixty-eight thousand nine hundred twelve');\nINSERT INTO t2 VALUES(8887, 58536, 'fifty-eight thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(8888, 49032, 'forty-nine thousand thirty-two');\nINSERT INTO t2 VALUES(8889, 91048, 'ninety-one thousand forty-eight');\nINSERT INTO t2 VALUES(8890, 27109, 'twenty-seven thousand one hundred nine');\nINSERT INTO t2 VALUES(8891, 62303, 'sixty-two thousand three hundred three');\nINSERT INTO t2 VALUES(8892, 46713, 'forty-six thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(8893, 29509, 'twenty-nine thousand five hundred nine');\nINSERT INTO t2 VALUES(8894, 97802, 'ninety-seven thousand eight hundred two');\nINSERT INTO t2 VALUES(8895, 44556, 'forty-four thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(8896, 5497, 'five thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(8897, 25520, 'twenty-five thousand five hundred twenty');\nINSERT INTO t2 VALUES(8898, 59553, 'fifty-nine thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(8899, 47547, 'forty-seven thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(8900, 98328, 'ninety-eight thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(8901, 43350, 'forty-three thousand three hundred fifty');\nINSERT INTO t2 VALUES(8902, 70041, 'seventy thousand forty-one');\nINSERT INTO t2 VALUES(8903, 46790, 'forty-six thousand seven hundred ninety');\nINSERT INTO t2 VALUES(8904, 63700, 'sixty-three thousand seven hundred');\nINSERT INTO t2 VALUES(8905, 1874, 'one thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(8906, 76509, 'seventy-six thousand five hundred nine');\nINSERT INTO t2 VALUES(8907, 11677, 'eleven thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(8908, 9172, 'nine thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8909, 97636, 'ninety-seven thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(8910, 43749, 'forty-three thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(8911, 40142, 'forty thousand one hundred forty-two');\nINSERT INTO t2 VALUES(8912, 84893, 'eighty-four thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(8913, 69096, 'sixty-nine thousand ninety-six');\nINSERT INTO t2 VALUES(8914, 21742, 'twenty-one thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(8915, 2143, 'two thousand one hundred forty-three');\nINSERT INTO t2 VALUES(8916, 5636, 'five thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(8917, 35218, 'thirty-five thousand two hundred eighteen');\nINSERT INTO t2 VALUES(8918, 54891, 'fifty-four thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(8919, 84106, 'eighty-four thousand one hundred six');\nINSERT INTO t2 VALUES(8920, 10062, 'ten thousand sixty-two');\nINSERT INTO t2 VALUES(8921, 53287, 'fifty-three thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(8922, 29599, 'twenty-nine thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(8923, 28047, 'twenty-eight thousand forty-seven');\nINSERT INTO t2 VALUES(8924, 72747, 'seventy-two thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(8925, 94010, 'ninety-four thousand ten');\nINSERT INTO t2 VALUES(8926, 71607, 'seventy-one thousand six hundred seven');\nINSERT INTO t2 VALUES(8927, 58411, 'fifty-eight thousand four hundred eleven');\nINSERT INTO t2 VALUES(8928, 29394, 'twenty-nine thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(8929, 2245, 'two thousand two hundred forty-five');\nINSERT INTO t2 VALUES(8930, 94946, 'ninety-four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(8931, 72192, 'seventy-two thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(8932, 74118, 'seventy-four thousand one hundred eighteen');\nINSERT INTO t2 VALUES(8933, 18975, 'eighteen thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(8934, 19624, 'nineteen thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(8935, 27786, 'twenty-seven thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(8936, 66755, 'sixty-six thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(8937, 75729, 'seventy-five thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(8938, 16637, 'sixteen thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(8939, 8952, 'eight thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(8940, 50266, 'fifty thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(8941, 39453, 'thirty-nine thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(8942, 98307, 'ninety-eight thousand three hundred seven');\nINSERT INTO t2 VALUES(8943, 52979, 'fifty-two thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(8944, 1207, 'one thousand two hundred seven');\nINSERT INTO t2 VALUES(8945, 41546, 'forty-one thousand five hundred forty-six');\nINSERT INTO t2 VALUES(8946, 45453, 'forty-five thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(8947, 59251, 'fifty-nine thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(8948, 6339, 'six thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(8949, 13732, 'thirteen thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(8950, 71798, 'seventy-one thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(8951, 14864, 'fourteen thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(8952, 56612, 'fifty-six thousand six hundred twelve');\nINSERT INTO t2 VALUES(8953, 78046, 'seventy-eight thousand forty-six');\nINSERT INTO t2 VALUES(8954, 18800, 'eighteen thousand eight hundred');\nINSERT INTO t2 VALUES(8955, 22659, 'twenty-two thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(8956, 33144, 'thirty-three thousand one hundred forty-four');\nINSERT INTO t2 VALUES(8957, 64103, 'sixty-four thousand one hundred three');\nINSERT INTO t2 VALUES(8958, 96543, 'ninety-six thousand five hundred forty-three');\nINSERT INTO t2 VALUES(8959, 79466, 'seventy-nine thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(8960, 64542, 'sixty-four thousand five hundred forty-two');\nINSERT INTO t2 VALUES(8961, 67406, 'sixty-seven thousand four hundred six');\nINSERT INTO t2 VALUES(8962, 92088, 'ninety-two thousand eighty-eight');\nINSERT INTO t2 VALUES(8963, 87731, 'eighty-seven thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(8964, 10933, 'ten thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(8965, 79658, 'seventy-nine thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(8966, 39486, 'thirty-nine thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(8967, 27642, 'twenty-seven thousand six hundred forty-two');\nINSERT INTO t2 VALUES(8968, 18531, 'eighteen thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(8969, 65412, 'sixty-five thousand four hundred twelve');\nINSERT INTO t2 VALUES(8970, 43478, 'forty-three thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(8971, 50522, 'fifty thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(8972, 74117, 'seventy-four thousand one hundred seventeen');\nINSERT INTO t2 VALUES(8973, 90745, 'ninety thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(8974, 23237, 'twenty-three thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(8975, 57047, 'fifty-seven thousand forty-seven');\nINSERT INTO t2 VALUES(8976, 1198, 'one thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(8977, 13445, 'thirteen thousand four hundred forty-five');\nINSERT INTO t2 VALUES(8978, 21928, 'twenty-one thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(8979, 65524, 'sixty-five thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(8980, 76433, 'seventy-six thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(8981, 27187, 'twenty-seven thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(8982, 1220, 'one thousand two hundred twenty');\nINSERT INTO t2 VALUES(8983, 65201, 'sixty-five thousand two hundred one');\nINSERT INTO t2 VALUES(8984, 33508, 'thirty-three thousand five hundred eight');\nINSERT INTO t2 VALUES(8985, 79567, 'seventy-nine thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(8986, 57891, 'fifty-seven thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(8987, 88043, 'eighty-eight thousand forty-three');\nINSERT INTO t2 VALUES(8988, 67273, 'sixty-seven thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(8989, 59250, 'fifty-nine thousand two hundred fifty');\nINSERT INTO t2 VALUES(8990, 16652, 'sixteen thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(8991, 8824, 'eight thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(8992, 71409, 'seventy-one thousand four hundred nine');\nINSERT INTO t2 VALUES(8993, 26349, 'twenty-six thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(8994, 70580, 'seventy thousand five hundred eighty');\nINSERT INTO t2 VALUES(8995, 42193, 'forty-two thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(8996, 18168, 'eighteen thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(8997, 2223, 'two thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(8998, 42209, 'forty-two thousand two hundred nine');\nINSERT INTO t2 VALUES(8999, 41704, 'forty-one thousand seven hundred four');\nINSERT INTO t2 VALUES(9000, 47265, 'forty-seven thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(9001, 72545, 'seventy-two thousand five hundred forty-five');\nINSERT INTO t2 VALUES(9002, 44849, 'forty-four thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(9003, 30204, 'thirty thousand two hundred four');\nINSERT INTO t2 VALUES(9004, 8644, 'eight thousand six hundred forty-four');\nINSERT INTO t2 VALUES(9005, 98294, 'ninety-eight thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(9006, 72624, 'seventy-two thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(9007, 24537, 'twenty-four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(9008, 82120, 'eighty-two thousand one hundred twenty');\nINSERT INTO t2 VALUES(9009, 77601, 'seventy-seven thousand six hundred one');\nINSERT INTO t2 VALUES(9010, 75426, 'seventy-five thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(9011, 13571, 'thirteen thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(9012, 15433, 'fifteen thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(9013, 87400, 'eighty-seven thousand four hundred');\nINSERT INTO t2 VALUES(9014, 70696, 'seventy thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(9015, 64448, 'sixty-four thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(9016, 5710, 'five thousand seven hundred ten');\nINSERT INTO t2 VALUES(9017, 77765, 'seventy-seven thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(9018, 14911, 'fourteen thousand nine hundred eleven');\nINSERT INTO t2 VALUES(9019, 95192, 'ninety-five thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(9020, 12800, 'twelve thousand eight hundred');\nINSERT INTO t2 VALUES(9021, 11553, 'eleven thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(9022, 20986, 'twenty thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(9023, 45636, 'forty-five thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(9024, 15259, 'fifteen thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(9025, 85665, 'eighty-five thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(9026, 94631, 'ninety-four thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(9027, 18275, 'eighteen thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(9028, 17479, 'seventeen thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(9029, 29074, 'twenty-nine thousand seventy-four');\nINSERT INTO t2 VALUES(9030, 36288, 'thirty-six thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(9031, 38724, 'thirty-eight thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(9032, 36917, 'thirty-six thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(9033, 50959, 'fifty thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(9034, 40294, 'forty thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(9035, 13877, 'thirteen thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(9036, 21680, 'twenty-one thousand six hundred eighty');\nINSERT INTO t2 VALUES(9037, 47588, 'forty-seven thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(9038, 68859, 'sixty-eight thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(9039, 1388, 'one thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(9040, 39594, 'thirty-nine thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(9041, 34961, 'thirty-four thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(9042, 58399, 'fifty-eight thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(9043, 60409, 'sixty thousand four hundred nine');\nINSERT INTO t2 VALUES(9044, 92031, 'ninety-two thousand thirty-one');\nINSERT INTO t2 VALUES(9045, 81569, 'eighty-one thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(9046, 69272, 'sixty-nine thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(9047, 63080, 'sixty-three thousand eighty');\nINSERT INTO t2 VALUES(9048, 72366, 'seventy-two thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(9049, 78403, 'seventy-eight thousand four hundred three');\nINSERT INTO t2 VALUES(9050, 74272, 'seventy-four thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(9051, 92504, 'ninety-two thousand five hundred four');\nINSERT INTO t2 VALUES(9052, 52040, 'fifty-two thousand forty');\nINSERT INTO t2 VALUES(9053, 16682, 'sixteen thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(9054, 84420, 'eighty-four thousand four hundred twenty');\nINSERT INTO t2 VALUES(9055, 22051, 'twenty-two thousand fifty-one');\nINSERT INTO t2 VALUES(9056, 25728, 'twenty-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(9057, 9062, 'nine thousand sixty-two');\nINSERT INTO t2 VALUES(9058, 83578, 'eighty-three thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(9059, 16698, 'sixteen thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(9060, 90904, 'ninety thousand nine hundred four');\nINSERT INTO t2 VALUES(9061, 92143, 'ninety-two thousand one hundred forty-three');\nINSERT INTO t2 VALUES(9062, 41489, 'forty-one thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(9063, 41463, 'forty-one thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(9064, 56285, 'fifty-six thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(9065, 9501, 'nine thousand five hundred one');\nINSERT INTO t2 VALUES(9066, 8798, 'eight thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(9067, 52952, 'fifty-two thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(9068, 19648, 'nineteen thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(9069, 46538, 'forty-six thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(9070, 84859, 'eighty-four thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(9071, 89801, 'eighty-nine thousand eight hundred one');\nINSERT INTO t2 VALUES(9072, 83337, 'eighty-three thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(9073, 18314, 'eighteen thousand three hundred fourteen');\nINSERT INTO t2 VALUES(9074, 41944, 'forty-one thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(9075, 28894, 'twenty-eight thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(9076, 11182, 'eleven thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(9077, 4470, 'four thousand four hundred seventy');\nINSERT INTO t2 VALUES(9078, 6545, 'six thousand five hundred forty-five');\nINSERT INTO t2 VALUES(9079, 18450, 'eighteen thousand four hundred fifty');\nINSERT INTO t2 VALUES(9080, 59891, 'fifty-nine thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(9081, 14079, 'fourteen thousand seventy-nine');\nINSERT INTO t2 VALUES(9082, 493, 'four hundred ninety-three');\nINSERT INTO t2 VALUES(9083, 51059, 'fifty-one thousand fifty-nine');\nINSERT INTO t2 VALUES(9084, 69569, 'sixty-nine thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(9085, 48058, 'forty-eight thousand fifty-eight');\nINSERT INTO t2 VALUES(9086, 93376, 'ninety-three thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(9087, 3512, 'three thousand five hundred twelve');\nINSERT INTO t2 VALUES(9088, 34603, 'thirty-four thousand six hundred three');\nINSERT INTO t2 VALUES(9089, 37577, 'thirty-seven thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(9090, 96520, 'ninety-six thousand five hundred twenty');\nINSERT INTO t2 VALUES(9091, 94347, 'ninety-four thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(9092, 36664, 'thirty-six thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(9093, 66240, 'sixty-six thousand two hundred forty');\nINSERT INTO t2 VALUES(9094, 98725, 'ninety-eight thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(9095, 53715, 'fifty-three thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(9096, 3137, 'three thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(9097, 44103, 'forty-four thousand one hundred three');\nINSERT INTO t2 VALUES(9098, 87368, 'eighty-seven thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(9099, 57042, 'fifty-seven thousand forty-two');\nINSERT INTO t2 VALUES(9100, 29761, 'twenty-nine thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(9101, 87985, 'eighty-seven thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(9102, 63277, 'sixty-three thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(9103, 84961, 'eighty-four thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(9104, 75307, 'seventy-five thousand three hundred seven');\nINSERT INTO t2 VALUES(9105, 42729, 'forty-two thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(9106, 85873, 'eighty-five thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(9107, 3983, 'three thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(9108, 36607, 'thirty-six thousand six hundred seven');\nINSERT INTO t2 VALUES(9109, 55814, 'fifty-five thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(9110, 18117, 'eighteen thousand one hundred seventeen');\nINSERT INTO t2 VALUES(9111, 12887, 'twelve thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(9112, 30494, 'thirty thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(9113, 52338, 'fifty-two thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(9114, 80206, 'eighty thousand two hundred six');\nINSERT INTO t2 VALUES(9115, 24533, 'twenty-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(9116, 44832, 'forty-four thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(9117, 47489, 'forty-seven thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(9118, 8504, 'eight thousand five hundred four');\nINSERT INTO t2 VALUES(9119, 47621, 'forty-seven thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(9120, 10406, 'ten thousand four hundred six');\nINSERT INTO t2 VALUES(9121, 38895, 'thirty-eight thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(9122, 15264, 'fifteen thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(9123, 35635, 'thirty-five thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(9124, 18576, 'eighteen thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(9125, 81105, 'eighty-one thousand one hundred five');\nINSERT INTO t2 VALUES(9126, 66310, 'sixty-six thousand three hundred ten');\nINSERT INTO t2 VALUES(9127, 55519, 'fifty-five thousand five hundred nineteen');\nINSERT INTO t2 VALUES(9128, 75799, 'seventy-five thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(9129, 97585, 'ninety-seven thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(9130, 4743, 'four thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(9131, 19892, 'nineteen thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(9132, 36848, 'thirty-six thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(9133, 58513, 'fifty-eight thousand five hundred thirteen');\nINSERT INTO t2 VALUES(9134, 34212, 'thirty-four thousand two hundred twelve');\nINSERT INTO t2 VALUES(9135, 66454, 'sixty-six thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(9136, 32685, 'thirty-two thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(9137, 29310, 'twenty-nine thousand three hundred ten');\nINSERT INTO t2 VALUES(9138, 87268, 'eighty-seven thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(9139, 45023, 'forty-five thousand twenty-three');\nINSERT INTO t2 VALUES(9140, 71538, 'seventy-one thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(9141, 96983, 'ninety-six thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(9142, 70920, 'seventy thousand nine hundred twenty');\nINSERT INTO t2 VALUES(9143, 15194, 'fifteen thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(9144, 31297, 'thirty-one thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(9145, 96061, 'ninety-six thousand sixty-one');\nINSERT INTO t2 VALUES(9146, 45673, 'forty-five thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(9147, 13200, 'thirteen thousand two hundred');\nINSERT INTO t2 VALUES(9148, 37673, 'thirty-seven thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(9149, 21236, 'twenty-one thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(9150, 80021, 'eighty thousand twenty-one');\nINSERT INTO t2 VALUES(9151, 70383, 'seventy thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(9152, 24400, 'twenty-four thousand four hundred');\nINSERT INTO t2 VALUES(9153, 4740, 'four thousand seven hundred forty');\nINSERT INTO t2 VALUES(9154, 68401, 'sixty-eight thousand four hundred one');\nINSERT INTO t2 VALUES(9155, 63470, 'sixty-three thousand four hundred seventy');\nINSERT INTO t2 VALUES(9156, 13977, 'thirteen thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(9157, 14138, 'fourteen thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(9158, 30075, 'thirty thousand seventy-five');\nINSERT INTO t2 VALUES(9159, 7684, 'seven thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(9160, 37382, 'thirty-seven thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(9161, 51074, 'fifty-one thousand seventy-four');\nINSERT INTO t2 VALUES(9162, 32413, 'thirty-two thousand four hundred thirteen');\nINSERT INTO t2 VALUES(9163, 95519, 'ninety-five thousand five hundred nineteen');\nINSERT INTO t2 VALUES(9164, 81342, 'eighty-one thousand three hundred forty-two');\nINSERT INTO t2 VALUES(9165, 83870, 'eighty-three thousand eight hundred seventy');\nINSERT INTO t2 VALUES(9166, 97186, 'ninety-seven thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(9167, 28563, 'twenty-eight thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(9168, 55274, 'fifty-five thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(9169, 66171, 'sixty-six thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(9170, 51477, 'fifty-one thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(9171, 85345, 'eighty-five thousand three hundred forty-five');\nINSERT INTO t2 VALUES(9172, 17918, 'seventeen thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(9173, 3711, 'three thousand seven hundred eleven');\nINSERT INTO t2 VALUES(9174, 65063, 'sixty-five thousand sixty-three');\nINSERT INTO t2 VALUES(9175, 77979, 'seventy-seven thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(9176, 74922, 'seventy-four thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(9177, 35549, 'thirty-five thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(9178, 17908, 'seventeen thousand nine hundred eight');\nINSERT INTO t2 VALUES(9179, 40312, 'forty thousand three hundred twelve');\nINSERT INTO t2 VALUES(9180, 57888, 'fifty-seven thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(9181, 94800, 'ninety-four thousand eight hundred');\nINSERT INTO t2 VALUES(9182, 88574, 'eighty-eight thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(9183, 49016, 'forty-nine thousand sixteen');\nINSERT INTO t2 VALUES(9184, 23742, 'twenty-three thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(9185, 86656, 'eighty-six thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(9186, 50749, 'fifty thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(9187, 12446, 'twelve thousand four hundred forty-six');\nINSERT INTO t2 VALUES(9188, 98024, 'ninety-eight thousand twenty-four');\nINSERT INTO t2 VALUES(9189, 57253, 'fifty-seven thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(9190, 69315, 'sixty-nine thousand three hundred fifteen');\nINSERT INTO t2 VALUES(9191, 92635, 'ninety-two thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(9192, 19044, 'nineteen thousand forty-four');\nINSERT INTO t2 VALUES(9193, 50229, 'fifty thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(9194, 7691, 'seven thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(9195, 31349, 'thirty-one thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(9196, 21118, 'twenty-one thousand one hundred eighteen');\nINSERT INTO t2 VALUES(9197, 97045, 'ninety-seven thousand forty-five');\nINSERT INTO t2 VALUES(9198, 5454, 'five thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(9199, 68766, 'sixty-eight thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(9200, 50406, 'fifty thousand four hundred six');\nINSERT INTO t2 VALUES(9201, 92867, 'ninety-two thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(9202, 18343, 'eighteen thousand three hundred forty-three');\nINSERT INTO t2 VALUES(9203, 39347, 'thirty-nine thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(9204, 39519, 'thirty-nine thousand five hundred nineteen');\nINSERT INTO t2 VALUES(9205, 91687, 'ninety-one thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(9206, 30626, 'thirty thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(9207, 77896, 'seventy-seven thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(9208, 5713, 'five thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(9209, 70211, 'seventy thousand two hundred eleven');\nINSERT INTO t2 VALUES(9210, 52132, 'fifty-two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(9211, 71921, 'seventy-one thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(9212, 85753, 'eighty-five thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(9213, 22211, 'twenty-two thousand two hundred eleven');\nINSERT INTO t2 VALUES(9214, 14714, 'fourteen thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(9215, 47957, 'forty-seven thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(9216, 67867, 'sixty-seven thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(9217, 4372, 'four thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(9218, 3134, 'three thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(9219, 38687, 'thirty-eight thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(9220, 4799, 'four thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(9221, 38295, 'thirty-eight thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(9222, 70443, 'seventy thousand four hundred forty-three');\nINSERT INTO t2 VALUES(9223, 33871, 'thirty-three thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(9224, 45367, 'forty-five thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(9225, 81287, 'eighty-one thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(9226, 73414, 'seventy-three thousand four hundred fourteen');\nINSERT INTO t2 VALUES(9227, 73746, 'seventy-three thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(9228, 7579, 'seven thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(9229, 42253, 'forty-two thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(9230, 19213, 'nineteen thousand two hundred thirteen');\nINSERT INTO t2 VALUES(9231, 79120, 'seventy-nine thousand one hundred twenty');\nINSERT INTO t2 VALUES(9232, 17001, 'seventeen thousand one');\nINSERT INTO t2 VALUES(9233, 82992, 'eighty-two thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(9234, 39801, 'thirty-nine thousand eight hundred one');\nINSERT INTO t2 VALUES(9235, 39907, 'thirty-nine thousand nine hundred seven');\nINSERT INTO t2 VALUES(9236, 97892, 'ninety-seven thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(9237, 51197, 'fifty-one thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(9238, 48630, 'forty-eight thousand six hundred thirty');\nINSERT INTO t2 VALUES(9239, 87649, 'eighty-seven thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(9240, 90576, 'ninety thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(9241, 26048, 'twenty-six thousand forty-eight');\nINSERT INTO t2 VALUES(9242, 76114, 'seventy-six thousand one hundred fourteen');\nINSERT INTO t2 VALUES(9243, 58204, 'fifty-eight thousand two hundred four');\nINSERT INTO t2 VALUES(9244, 98612, 'ninety-eight thousand six hundred twelve');\nINSERT INTO t2 VALUES(9245, 86470, 'eighty-six thousand four hundred seventy');\nINSERT INTO t2 VALUES(9246, 78258, 'seventy-eight thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(9247, 11347, 'eleven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(9248, 26374, 'twenty-six thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(9249, 96647, 'ninety-six thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(9250, 95816, 'ninety-five thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(9251, 27239, 'twenty-seven thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(9252, 22610, 'twenty-two thousand six hundred ten');\nINSERT INTO t2 VALUES(9253, 44620, 'forty-four thousand six hundred twenty');\nINSERT INTO t2 VALUES(9254, 26021, 'twenty-six thousand twenty-one');\nINSERT INTO t2 VALUES(9255, 24197, 'twenty-four thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(9256, 42183, 'forty-two thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(9257, 72526, 'seventy-two thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(9258, 35207, 'thirty-five thousand two hundred seven');\nINSERT INTO t2 VALUES(9259, 92524, 'ninety-two thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(9260, 95185, 'ninety-five thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(9261, 38071, 'thirty-eight thousand seventy-one');\nINSERT INTO t2 VALUES(9262, 9049, 'nine thousand forty-nine');\nINSERT INTO t2 VALUES(9263, 47693, 'forty-seven thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(9264, 83846, 'eighty-three thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(9265, 11549, 'eleven thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(9266, 36414, 'thirty-six thousand four hundred fourteen');\nINSERT INTO t2 VALUES(9267, 78632, 'seventy-eight thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(9268, 33438, 'thirty-three thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(9269, 50465, 'fifty thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(9270, 64075, 'sixty-four thousand seventy-five');\nINSERT INTO t2 VALUES(9271, 99695, 'ninety-nine thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(9272, 83342, 'eighty-three thousand three hundred forty-two');\nINSERT INTO t2 VALUES(9273, 6498, 'six thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(9274, 25008, 'twenty-five thousand eight');\nINSERT INTO t2 VALUES(9275, 56233, 'fifty-six thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(9276, 61233, 'sixty-one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(9277, 52338, 'fifty-two thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(9278, 65044, 'sixty-five thousand forty-four');\nINSERT INTO t2 VALUES(9279, 13969, 'thirteen thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(9280, 98431, 'ninety-eight thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(9281, 60655, 'sixty thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(9282, 78662, 'seventy-eight thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(9283, 19926, 'nineteen thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(9284, 40295, 'forty thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(9285, 73494, 'seventy-three thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(9286, 47895, 'forty-seven thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(9287, 74753, 'seventy-four thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(9288, 44197, 'forty-four thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(9289, 15540, 'fifteen thousand five hundred forty');\nINSERT INTO t2 VALUES(9290, 62565, 'sixty-two thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(9291, 67677, 'sixty-seven thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(9292, 78102, 'seventy-eight thousand one hundred two');\nINSERT INTO t2 VALUES(9293, 11197, 'eleven thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(9294, 35893, 'thirty-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(9295, 7969, 'seven thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(9296, 24802, 'twenty-four thousand eight hundred two');\nINSERT INTO t2 VALUES(9297, 48936, 'forty-eight thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(9298, 5711, 'five thousand seven hundred eleven');\nINSERT INTO t2 VALUES(9299, 63335, 'sixty-three thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(9300, 92230, 'ninety-two thousand two hundred thirty');\nINSERT INTO t2 VALUES(9301, 71216, 'seventy-one thousand two hundred sixteen');\nINSERT INTO t2 VALUES(9302, 40874, 'forty thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(9303, 4409, 'four thousand four hundred nine');\nINSERT INTO t2 VALUES(9304, 1767, 'one thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(9305, 25589, 'twenty-five thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(9306, 33929, 'thirty-three thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(9307, 12472, 'twelve thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(9308, 80058, 'eighty thousand fifty-eight');\nINSERT INTO t2 VALUES(9309, 21499, 'twenty-one thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(9310, 34393, 'thirty-four thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(9311, 98529, 'ninety-eight thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(9312, 27375, 'twenty-seven thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(9313, 83557, 'eighty-three thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(9314, 33473, 'thirty-three thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(9315, 10352, 'ten thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(9316, 34182, 'thirty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(9317, 10750, 'ten thousand seven hundred fifty');\nINSERT INTO t2 VALUES(9318, 42903, 'forty-two thousand nine hundred three');\nINSERT INTO t2 VALUES(9319, 60628, 'sixty thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(9320, 82460, 'eighty-two thousand four hundred sixty');\nINSERT INTO t2 VALUES(9321, 41144, 'forty-one thousand one hundred forty-four');\nINSERT INTO t2 VALUES(9322, 80916, 'eighty thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(9323, 39817, 'thirty-nine thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(9324, 10338, 'ten thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(9325, 68058, 'sixty-eight thousand fifty-eight');\nINSERT INTO t2 VALUES(9326, 23224, 'twenty-three thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(9327, 6304, 'six thousand three hundred four');\nINSERT INTO t2 VALUES(9328, 31083, 'thirty-one thousand eighty-three');\nINSERT INTO t2 VALUES(9329, 87939, 'eighty-seven thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(9330, 38949, 'thirty-eight thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(9331, 26294, 'twenty-six thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(9332, 34191, 'thirty-four thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(9333, 80000, 'eighty thousand');\nINSERT INTO t2 VALUES(9334, 16885, 'sixteen thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(9335, 96173, 'ninety-six thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(9336, 68596, 'sixty-eight thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(9337, 72711, 'seventy-two thousand seven hundred eleven');\nINSERT INTO t2 VALUES(9338, 71545, 'seventy-one thousand five hundred forty-five');\nINSERT INTO t2 VALUES(9339, 61996, 'sixty-one thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(9340, 68801, 'sixty-eight thousand eight hundred one');\nINSERT INTO t2 VALUES(9341, 26792, 'twenty-six thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(9342, 73947, 'seventy-three thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(9343, 14713, 'fourteen thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(9344, 79149, 'seventy-nine thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(9345, 10711, 'ten thousand seven hundred eleven');\nINSERT INTO t2 VALUES(9346, 42410, 'forty-two thousand four hundred ten');\nINSERT INTO t2 VALUES(9347, 27736, 'twenty-seven thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(9348, 48017, 'forty-eight thousand seventeen');\nINSERT INTO t2 VALUES(9349, 14655, 'fourteen thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(9350, 37513, 'thirty-seven thousand five hundred thirteen');\nINSERT INTO t2 VALUES(9351, 56325, 'fifty-six thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(9352, 36251, 'thirty-six thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(9353, 84050, 'eighty-four thousand fifty');\nINSERT INTO t2 VALUES(9354, 99886, 'ninety-nine thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(9355, 36997, 'thirty-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(9356, 47435, 'forty-seven thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(9357, 99736, 'ninety-nine thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(9358, 20499, 'twenty thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(9359, 70636, 'seventy thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(9360, 55045, 'fifty-five thousand forty-five');\nINSERT INTO t2 VALUES(9361, 83284, 'eighty-three thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(9362, 95381, 'ninety-five thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(9363, 44975, 'forty-four thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(9364, 35334, 'thirty-five thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(9365, 98581, 'ninety-eight thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(9366, 74836, 'seventy-four thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(9367, 31911, 'thirty-one thousand nine hundred eleven');\nINSERT INTO t2 VALUES(9368, 83550, 'eighty-three thousand five hundred fifty');\nINSERT INTO t2 VALUES(9369, 59749, 'fifty-nine thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(9370, 22048, 'twenty-two thousand forty-eight');\nINSERT INTO t2 VALUES(9371, 77168, 'seventy-seven thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(9372, 34265, 'thirty-four thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(9373, 64598, 'sixty-four thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(9374, 56825, 'fifty-six thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(9375, 6105, 'six thousand one hundred five');\nINSERT INTO t2 VALUES(9376, 50099, 'fifty thousand ninety-nine');\nINSERT INTO t2 VALUES(9377, 7719, 'seven thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(9378, 78128, 'seventy-eight thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(9379, 29798, 'twenty-nine thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(9380, 29342, 'twenty-nine thousand three hundred forty-two');\nINSERT INTO t2 VALUES(9381, 929, 'nine hundred twenty-nine');\nINSERT INTO t2 VALUES(9382, 75085, 'seventy-five thousand eighty-five');\nINSERT INTO t2 VALUES(9383, 14889, 'fourteen thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(9384, 42080, 'forty-two thousand eighty');\nINSERT INTO t2 VALUES(9385, 96706, 'ninety-six thousand seven hundred six');\nINSERT INTO t2 VALUES(9386, 63983, 'sixty-three thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(9387, 56614, 'fifty-six thousand six hundred fourteen');\nINSERT INTO t2 VALUES(9388, 8128, 'eight thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(9389, 47893, 'forty-seven thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(9390, 21491, 'twenty-one thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(9391, 98349, 'ninety-eight thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(9392, 2600, 'two thousand six hundred');\nINSERT INTO t2 VALUES(9393, 62776, 'sixty-two thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(9394, 235, 'two hundred thirty-five');\nINSERT INTO t2 VALUES(9395, 24642, 'twenty-four thousand six hundred forty-two');\nINSERT INTO t2 VALUES(9396, 8573, 'eight thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(9397, 4973, 'four thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(9398, 10118, 'ten thousand one hundred eighteen');\nINSERT INTO t2 VALUES(9399, 68282, 'sixty-eight thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(9400, 25461, 'twenty-five thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(9401, 88512, 'eighty-eight thousand five hundred twelve');\nINSERT INTO t2 VALUES(9402, 57955, 'fifty-seven thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(9403, 29978, 'twenty-nine thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(9404, 4266, 'four thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(9405, 81952, 'eighty-one thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(9406, 80372, 'eighty thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(9407, 41591, 'forty-one thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(9408, 32117, 'thirty-two thousand one hundred seventeen');\nINSERT INTO t2 VALUES(9409, 8638, 'eight thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(9410, 3751, 'three thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(9411, 96206, 'ninety-six thousand two hundred six');\nINSERT INTO t2 VALUES(9412, 12973, 'twelve thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(9413, 26453, 'twenty-six thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(9414, 77494, 'seventy-seven thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(9415, 55029, 'fifty-five thousand twenty-nine');\nINSERT INTO t2 VALUES(9416, 14160, 'fourteen thousand one hundred sixty');\nINSERT INTO t2 VALUES(9417, 64801, 'sixty-four thousand eight hundred one');\nINSERT INTO t2 VALUES(9418, 31111, 'thirty-one thousand one hundred eleven');\nINSERT INTO t2 VALUES(9419, 13869, 'thirteen thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(9420, 59804, 'fifty-nine thousand eight hundred four');\nINSERT INTO t2 VALUES(9421, 99583, 'ninety-nine thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(9422, 94327, 'ninety-four thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(9423, 88312, 'eighty-eight thousand three hundred twelve');\nINSERT INTO t2 VALUES(9424, 75793, 'seventy-five thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(9425, 98157, 'ninety-eight thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(9426, 65820, 'sixty-five thousand eight hundred twenty');\nINSERT INTO t2 VALUES(9427, 92481, 'ninety-two thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(9428, 76234, 'seventy-six thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(9429, 96895, 'ninety-six thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(9430, 81425, 'eighty-one thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(9431, 62758, 'sixty-two thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(9432, 37220, 'thirty-seven thousand two hundred twenty');\nINSERT INTO t2 VALUES(9433, 26325, 'twenty-six thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(9434, 8769, 'eight thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(9435, 46716, 'forty-six thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(9436, 6459, 'six thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(9437, 21174, 'twenty-one thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(9438, 92097, 'ninety-two thousand ninety-seven');\nINSERT INTO t2 VALUES(9439, 16150, 'sixteen thousand one hundred fifty');\nINSERT INTO t2 VALUES(9440, 59341, 'fifty-nine thousand three hundred forty-one');\nINSERT INTO t2 VALUES(9441, 71836, 'seventy-one thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(9442, 65805, 'sixty-five thousand eight hundred five');\nINSERT INTO t2 VALUES(9443, 84411, 'eighty-four thousand four hundred eleven');\nINSERT INTO t2 VALUES(9444, 97540, 'ninety-seven thousand five hundred forty');\nINSERT INTO t2 VALUES(9445, 74195, 'seventy-four thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(9446, 52156, 'fifty-two thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(9447, 35694, 'thirty-five thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(9448, 51467, 'fifty-one thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(9449, 34703, 'thirty-four thousand seven hundred three');\nINSERT INTO t2 VALUES(9450, 13358, 'thirteen thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(9451, 82038, 'eighty-two thousand thirty-eight');\nINSERT INTO t2 VALUES(9452, 38386, 'thirty-eight thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(9453, 3177, 'three thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(9454, 43645, 'forty-three thousand six hundred forty-five');\nINSERT INTO t2 VALUES(9455, 99522, 'ninety-nine thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(9456, 20315, 'twenty thousand three hundred fifteen');\nINSERT INTO t2 VALUES(9457, 1802, 'one thousand eight hundred two');\nINSERT INTO t2 VALUES(9458, 49795, 'forty-nine thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(9459, 35616, 'thirty-five thousand six hundred sixteen');\nINSERT INTO t2 VALUES(9460, 71746, 'seventy-one thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(9461, 74082, 'seventy-four thousand eighty-two');\nINSERT INTO t2 VALUES(9462, 41226, 'forty-one thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(9463, 63345, 'sixty-three thousand three hundred forty-five');\nINSERT INTO t2 VALUES(9464, 44605, 'forty-four thousand six hundred five');\nINSERT INTO t2 VALUES(9465, 8098, 'eight thousand ninety-eight');\nINSERT INTO t2 VALUES(9466, 41926, 'forty-one thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(9467, 37074, 'thirty-seven thousand seventy-four');\nINSERT INTO t2 VALUES(9468, 70002, 'seventy thousand two');\nINSERT INTO t2 VALUES(9469, 17521, 'seventeen thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(9470, 58169, 'fifty-eight thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(9471, 83810, 'eighty-three thousand eight hundred ten');\nINSERT INTO t2 VALUES(9472, 89578, 'eighty-nine thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(9473, 71207, 'seventy-one thousand two hundred seven');\nINSERT INTO t2 VALUES(9474, 97719, 'ninety-seven thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(9475, 17989, 'seventeen thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(9476, 39086, 'thirty-nine thousand eighty-six');\nINSERT INTO t2 VALUES(9477, 17877, 'seventeen thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(9478, 38203, 'thirty-eight thousand two hundred three');\nINSERT INTO t2 VALUES(9479, 19397, 'nineteen thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(9480, 20033, 'twenty thousand thirty-three');\nINSERT INTO t2 VALUES(9481, 71427, 'seventy-one thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(9482, 25944, 'twenty-five thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(9483, 54851, 'fifty-four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(9484, 37141, 'thirty-seven thousand one hundred forty-one');\nINSERT INTO t2 VALUES(9485, 29557, 'twenty-nine thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(9486, 11738, 'eleven thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(9487, 85734, 'eighty-five thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(9488, 63877, 'sixty-three thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(9489, 58775, 'fifty-eight thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(9490, 30173, 'thirty thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(9491, 49119, 'forty-nine thousand one hundred nineteen');\nINSERT INTO t2 VALUES(9492, 33005, 'thirty-three thousand five');\nINSERT INTO t2 VALUES(9493, 83050, 'eighty-three thousand fifty');\nINSERT INTO t2 VALUES(9494, 47003, 'forty-seven thousand three');\nINSERT INTO t2 VALUES(9495, 58182, 'fifty-eight thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(9496, 21381, 'twenty-one thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(9497, 45927, 'forty-five thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(9498, 43288, 'forty-three thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(9499, 40391, 'forty thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(9500, 72427, 'seventy-two thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(9501, 30415, 'thirty thousand four hundred fifteen');\nINSERT INTO t2 VALUES(9502, 30057, 'thirty thousand fifty-seven');\nINSERT INTO t2 VALUES(9503, 47369, 'forty-seven thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(9504, 32613, 'thirty-two thousand six hundred thirteen');\nINSERT INTO t2 VALUES(9505, 27530, 'twenty-seven thousand five hundred thirty');\nINSERT INTO t2 VALUES(9506, 93003, 'ninety-three thousand three');\nINSERT INTO t2 VALUES(9507, 51684, 'fifty-one thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(9508, 82316, 'eighty-two thousand three hundred sixteen');\nINSERT INTO t2 VALUES(9509, 30442, 'thirty thousand four hundred forty-two');\nINSERT INTO t2 VALUES(9510, 8476, 'eight thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(9511, 74375, 'seventy-four thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(9512, 42314, 'forty-two thousand three hundred fourteen');\nINSERT INTO t2 VALUES(9513, 79144, 'seventy-nine thousand one hundred forty-four');\nINSERT INTO t2 VALUES(9514, 78205, 'seventy-eight thousand two hundred five');\nINSERT INTO t2 VALUES(9515, 44246, 'forty-four thousand two hundred forty-six');\nINSERT INTO t2 VALUES(9516, 13712, 'thirteen thousand seven hundred twelve');\nINSERT INTO t2 VALUES(9517, 71308, 'seventy-one thousand three hundred eight');\nINSERT INTO t2 VALUES(9518, 85869, 'eighty-five thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(9519, 94064, 'ninety-four thousand sixty-four');\nINSERT INTO t2 VALUES(9520, 36711, 'thirty-six thousand seven hundred eleven');\nINSERT INTO t2 VALUES(9521, 9489, 'nine thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(9522, 21369, 'twenty-one thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(9523, 18452, 'eighteen thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(9524, 74370, 'seventy-four thousand three hundred seventy');\nINSERT INTO t2 VALUES(9525, 58042, 'fifty-eight thousand forty-two');\nINSERT INTO t2 VALUES(9526, 63639, 'sixty-three thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(9527, 1474, 'one thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(9528, 32040, 'thirty-two thousand forty');\nINSERT INTO t2 VALUES(9529, 72021, 'seventy-two thousand twenty-one');\nINSERT INTO t2 VALUES(9530, 54244, 'fifty-four thousand two hundred forty-four');\nINSERT INTO t2 VALUES(9531, 81954, 'eighty-one thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(9532, 42751, 'forty-two thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(9533, 23841, 'twenty-three thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(9534, 47028, 'forty-seven thousand twenty-eight');\nINSERT INTO t2 VALUES(9535, 39364, 'thirty-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(9536, 16957, 'sixteen thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(9537, 26435, 'twenty-six thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(9538, 57264, 'fifty-seven thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(9539, 15807, 'fifteen thousand eight hundred seven');\nINSERT INTO t2 VALUES(9540, 88338, 'eighty-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(9541, 79107, 'seventy-nine thousand one hundred seven');\nINSERT INTO t2 VALUES(9542, 10166, 'ten thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(9543, 18201, 'eighteen thousand two hundred one');\nINSERT INTO t2 VALUES(9544, 68522, 'sixty-eight thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(9545, 2822, 'two thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(9546, 5756, 'five thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(9547, 71527, 'seventy-one thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(9548, 82622, 'eighty-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(9549, 82385, 'eighty-two thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(9550, 95123, 'ninety-five thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(9551, 28331, 'twenty-eight thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(9552, 21298, 'twenty-one thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(9553, 63107, 'sixty-three thousand one hundred seven');\nINSERT INTO t2 VALUES(9554, 89693, 'eighty-nine thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(9555, 63053, 'sixty-three thousand fifty-three');\nINSERT INTO t2 VALUES(9556, 77658, 'seventy-seven thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(9557, 14497, 'fourteen thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(9558, 7231, 'seven thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(9559, 97234, 'ninety-seven thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(9560, 61062, 'sixty-one thousand sixty-two');\nINSERT INTO t2 VALUES(9561, 78573, 'seventy-eight thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(9562, 44875, 'forty-four thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(9563, 4498, 'four thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(9564, 63052, 'sixty-three thousand fifty-two');\nINSERT INTO t2 VALUES(9565, 31595, 'thirty-one thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(9566, 18072, 'eighteen thousand seventy-two');\nINSERT INTO t2 VALUES(9567, 64680, 'sixty-four thousand six hundred eighty');\nINSERT INTO t2 VALUES(9568, 19117, 'nineteen thousand one hundred seventeen');\nINSERT INTO t2 VALUES(9569, 80586, 'eighty thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(9570, 28520, 'twenty-eight thousand five hundred twenty');\nINSERT INTO t2 VALUES(9571, 83391, 'eighty-three thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(9572, 74098, 'seventy-four thousand ninety-eight');\nINSERT INTO t2 VALUES(9573, 69761, 'sixty-nine thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(9574, 93558, 'ninety-three thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(9575, 43576, 'forty-three thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(9576, 71034, 'seventy-one thousand thirty-four');\nINSERT INTO t2 VALUES(9577, 4764, 'four thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(9578, 19011, 'nineteen thousand eleven');\nINSERT INTO t2 VALUES(9579, 18241, 'eighteen thousand two hundred forty-one');\nINSERT INTO t2 VALUES(9580, 53064, 'fifty-three thousand sixty-four');\nINSERT INTO t2 VALUES(9581, 97427, 'ninety-seven thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(9582, 38042, 'thirty-eight thousand forty-two');\nINSERT INTO t2 VALUES(9583, 18513, 'eighteen thousand five hundred thirteen');\nINSERT INTO t2 VALUES(9584, 76654, 'seventy-six thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(9585, 2036, 'two thousand thirty-six');\nINSERT INTO t2 VALUES(9586, 36887, 'thirty-six thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(9587, 11745, 'eleven thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(9588, 19822, 'nineteen thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(9589, 38271, 'thirty-eight thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(9590, 62637, 'sixty-two thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(9591, 45137, 'forty-five thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(9592, 11251, 'eleven thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(9593, 49827, 'forty-nine thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(9594, 34370, 'thirty-four thousand three hundred seventy');\nINSERT INTO t2 VALUES(9595, 5848, 'five thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(9596, 42684, 'forty-two thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(9597, 55186, 'fifty-five thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(9598, 76470, 'seventy-six thousand four hundred seventy');\nINSERT INTO t2 VALUES(9599, 71701, 'seventy-one thousand seven hundred one');\nINSERT INTO t2 VALUES(9600, 37517, 'thirty-seven thousand five hundred seventeen');\nINSERT INTO t2 VALUES(9601, 6431, 'six thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(9602, 9515, 'nine thousand five hundred fifteen');\nINSERT INTO t2 VALUES(9603, 65573, 'sixty-five thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(9604, 38146, 'thirty-eight thousand one hundred forty-six');\nINSERT INTO t2 VALUES(9605, 36234, 'thirty-six thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(9606, 58725, 'fifty-eight thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(9607, 79791, 'seventy-nine thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(9608, 93627, 'ninety-three thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(9609, 47049, 'forty-seven thousand forty-nine');\nINSERT INTO t2 VALUES(9610, 68872, 'sixty-eight thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(9611, 83787, 'eighty-three thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(9612, 91188, 'ninety-one thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(9613, 2014, 'two thousand fourteen');\nINSERT INTO t2 VALUES(9614, 44487, 'forty-four thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(9615, 56038, 'fifty-six thousand thirty-eight');\nINSERT INTO t2 VALUES(9616, 82029, 'eighty-two thousand twenty-nine');\nINSERT INTO t2 VALUES(9617, 4887, 'four thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(9618, 31410, 'thirty-one thousand four hundred ten');\nINSERT INTO t2 VALUES(9619, 19337, 'nineteen thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(9620, 4546, 'four thousand five hundred forty-six');\nINSERT INTO t2 VALUES(9621, 83168, 'eighty-three thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(9622, 58470, 'fifty-eight thousand four hundred seventy');\nINSERT INTO t2 VALUES(9623, 16420, 'sixteen thousand four hundred twenty');\nINSERT INTO t2 VALUES(9624, 5149, 'five thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(9625, 55887, 'fifty-five thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(9626, 76622, 'seventy-six thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(9627, 13516, 'thirteen thousand five hundred sixteen');\nINSERT INTO t2 VALUES(9628, 16472, 'sixteen thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(9629, 23940, 'twenty-three thousand nine hundred forty');\nINSERT INTO t2 VALUES(9630, 44666, 'forty-four thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(9631, 74694, 'seventy-four thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(9632, 57541, 'fifty-seven thousand five hundred forty-one');\nINSERT INTO t2 VALUES(9633, 84917, 'eighty-four thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(9634, 65400, 'sixty-five thousand four hundred');\nINSERT INTO t2 VALUES(9635, 40485, 'forty thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(9636, 57426, 'fifty-seven thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(9637, 36843, 'thirty-six thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(9638, 54970, 'fifty-four thousand nine hundred seventy');\nINSERT INTO t2 VALUES(9639, 505, 'five hundred five');\nINSERT INTO t2 VALUES(9640, 99275, 'ninety-nine thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(9641, 81986, 'eighty-one thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(9642, 4001, 'four thousand one');\nINSERT INTO t2 VALUES(9643, 72323, 'seventy-two thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(9644, 8637, 'eight thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(9645, 38278, 'thirty-eight thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(9646, 34157, 'thirty-four thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(9647, 82456, 'eighty-two thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(9648, 75899, 'seventy-five thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(9649, 69900, 'sixty-nine thousand nine hundred');\nINSERT INTO t2 VALUES(9650, 28219, 'twenty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(9651, 39732, 'thirty-nine thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(9652, 44157, 'forty-four thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(9653, 88485, 'eighty-eight thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(9654, 28815, 'twenty-eight thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(9655, 55922, 'fifty-five thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(9656, 16694, 'sixteen thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(9657, 85307, 'eighty-five thousand three hundred seven');\nINSERT INTO t2 VALUES(9658, 69030, 'sixty-nine thousand thirty');\nINSERT INTO t2 VALUES(9659, 35486, 'thirty-five thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(9660, 8239, 'eight thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(9661, 45034, 'forty-five thousand thirty-four');\nINSERT INTO t2 VALUES(9662, 50057, 'fifty thousand fifty-seven');\nINSERT INTO t2 VALUES(9663, 97937, 'ninety-seven thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(9664, 52222, 'fifty-two thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(9665, 78106, 'seventy-eight thousand one hundred six');\nINSERT INTO t2 VALUES(9666, 5327, 'five thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(9667, 76445, 'seventy-six thousand four hundred forty-five');\nINSERT INTO t2 VALUES(9668, 37700, 'thirty-seven thousand seven hundred');\nINSERT INTO t2 VALUES(9669, 74825, 'seventy-four thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(9670, 28573, 'twenty-eight thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(9671, 35683, 'thirty-five thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(9672, 28758, 'twenty-eight thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(9673, 78116, 'seventy-eight thousand one hundred sixteen');\nINSERT INTO t2 VALUES(9674, 79955, 'seventy-nine thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(9675, 78044, 'seventy-eight thousand forty-four');\nINSERT INTO t2 VALUES(9676, 675, 'six hundred seventy-five');\nINSERT INTO t2 VALUES(9677, 1789, 'one thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(9678, 92206, 'ninety-two thousand two hundred six');\nINSERT INTO t2 VALUES(9679, 68014, 'sixty-eight thousand fourteen');\nINSERT INTO t2 VALUES(9680, 30145, 'thirty thousand one hundred forty-five');\nINSERT INTO t2 VALUES(9681, 45648, 'forty-five thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(9682, 60284, 'sixty thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(9683, 28878, 'twenty-eight thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(9684, 28138, 'twenty-eight thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(9685, 61885, 'sixty-one thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(9686, 94810, 'ninety-four thousand eight hundred ten');\nINSERT INTO t2 VALUES(9687, 65845, 'sixty-five thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(9688, 61143, 'sixty-one thousand one hundred forty-three');\nINSERT INTO t2 VALUES(9689, 9851, 'nine thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(9690, 42245, 'forty-two thousand two hundred forty-five');\nINSERT INTO t2 VALUES(9691, 10692, 'ten thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(9692, 22345, 'twenty-two thousand three hundred forty-five');\nINSERT INTO t2 VALUES(9693, 75615, 'seventy-five thousand six hundred fifteen');\nINSERT INTO t2 VALUES(9694, 79866, 'seventy-nine thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(9695, 12699, 'twelve thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(9696, 58122, 'fifty-eight thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(9697, 11746, 'eleven thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(9698, 50624, 'fifty thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(9699, 40387, 'forty thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(9700, 85919, 'eighty-five thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(9701, 8174, 'eight thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(9702, 55142, 'fifty-five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(9703, 68303, 'sixty-eight thousand three hundred three');\nINSERT INTO t2 VALUES(9704, 17335, 'seventeen thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(9705, 78513, 'seventy-eight thousand five hundred thirteen');\nINSERT INTO t2 VALUES(9706, 29582, 'twenty-nine thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(9707, 49634, 'forty-nine thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(9708, 34458, 'thirty-four thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(9709, 10180, 'ten thousand one hundred eighty');\nINSERT INTO t2 VALUES(9710, 88642, 'eighty-eight thousand six hundred forty-two');\nINSERT INTO t2 VALUES(9711, 2390, 'two thousand three hundred ninety');\nINSERT INTO t2 VALUES(9712, 51507, 'fifty-one thousand five hundred seven');\nINSERT INTO t2 VALUES(9713, 7460, 'seven thousand four hundred sixty');\nINSERT INTO t2 VALUES(9714, 35102, 'thirty-five thousand one hundred two');\nINSERT INTO t2 VALUES(9715, 32204, 'thirty-two thousand two hundred four');\nINSERT INTO t2 VALUES(9716, 76392, 'seventy-six thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(9717, 70336, 'seventy thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(9718, 50161, 'fifty thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(9719, 30585, 'thirty thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(9720, 35284, 'thirty-five thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(9721, 23587, 'twenty-three thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(9722, 78092, 'seventy-eight thousand ninety-two');\nINSERT INTO t2 VALUES(9723, 8243, 'eight thousand two hundred forty-three');\nINSERT INTO t2 VALUES(9724, 54607, 'fifty-four thousand six hundred seven');\nINSERT INTO t2 VALUES(9725, 36361, 'thirty-six thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(9726, 88933, 'eighty-eight thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(9727, 78190, 'seventy-eight thousand one hundred ninety');\nINSERT INTO t2 VALUES(9728, 96301, 'ninety-six thousand three hundred one');\nINSERT INTO t2 VALUES(9729, 44856, 'forty-four thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(9730, 43572, 'forty-three thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(9731, 32711, 'thirty-two thousand seven hundred eleven');\nINSERT INTO t2 VALUES(9732, 28725, 'twenty-eight thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(9733, 55115, 'fifty-five thousand one hundred fifteen');\nINSERT INTO t2 VALUES(9734, 88085, 'eighty-eight thousand eighty-five');\nINSERT INTO t2 VALUES(9735, 68574, 'sixty-eight thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(9736, 95856, 'ninety-five thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(9737, 81099, 'eighty-one thousand ninety-nine');\nINSERT INTO t2 VALUES(9738, 42379, 'forty-two thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(9739, 99904, 'ninety-nine thousand nine hundred four');\nINSERT INTO t2 VALUES(9740, 16858, 'sixteen thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(9741, 49841, 'forty-nine thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(9742, 93672, 'ninety-three thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(9743, 92965, 'ninety-two thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(9744, 50582, 'fifty thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(9745, 71144, 'seventy-one thousand one hundred forty-four');\nINSERT INTO t2 VALUES(9746, 71120, 'seventy-one thousand one hundred twenty');\nINSERT INTO t2 VALUES(9747, 57022, 'fifty-seven thousand twenty-two');\nINSERT INTO t2 VALUES(9748, 10747, 'ten thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(9749, 63470, 'sixty-three thousand four hundred seventy');\nINSERT INTO t2 VALUES(9750, 20061, 'twenty thousand sixty-one');\nINSERT INTO t2 VALUES(9751, 98579, 'ninety-eight thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(9752, 76644, 'seventy-six thousand six hundred forty-four');\nINSERT INTO t2 VALUES(9753, 82180, 'eighty-two thousand one hundred eighty');\nINSERT INTO t2 VALUES(9754, 71048, 'seventy-one thousand forty-eight');\nINSERT INTO t2 VALUES(9755, 19490, 'nineteen thousand four hundred ninety');\nINSERT INTO t2 VALUES(9756, 447, 'four hundred forty-seven');\nINSERT INTO t2 VALUES(9757, 54146, 'fifty-four thousand one hundred forty-six');\nINSERT INTO t2 VALUES(9758, 73685, 'seventy-three thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(9759, 4764, 'four thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(9760, 91378, 'ninety-one thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(9761, 40529, 'forty thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(9762, 55119, 'fifty-five thousand one hundred nineteen');\nINSERT INTO t2 VALUES(9763, 14168, 'fourteen thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(9764, 75876, 'seventy-five thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(9765, 50908, 'fifty thousand nine hundred eight');\nINSERT INTO t2 VALUES(9766, 42444, 'forty-two thousand four hundred forty-four');\nINSERT INTO t2 VALUES(9767, 62467, 'sixty-two thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(9768, 79928, 'seventy-nine thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(9769, 65733, 'sixty-five thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(9770, 90346, 'ninety thousand three hundred forty-six');\nINSERT INTO t2 VALUES(9771, 72647, 'seventy-two thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(9772, 99071, 'ninety-nine thousand seventy-one');\nINSERT INTO t2 VALUES(9773, 99461, 'ninety-nine thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(9774, 77471, 'seventy-seven thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(9775, 44708, 'forty-four thousand seven hundred eight');\nINSERT INTO t2 VALUES(9776, 88340, 'eighty-eight thousand three hundred forty');\nINSERT INTO t2 VALUES(9777, 12533, 'twelve thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(9778, 88424, 'eighty-eight thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(9779, 80718, 'eighty thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(9780, 3636, 'three thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(9781, 86715, 'eighty-six thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(9782, 70985, 'seventy thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(9783, 89054, 'eighty-nine thousand fifty-four');\nINSERT INTO t2 VALUES(9784, 55579, 'fifty-five thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(9785, 26745, 'twenty-six thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(9786, 67271, 'sixty-seven thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(9787, 24548, 'twenty-four thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(9788, 32762, 'thirty-two thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(9789, 23787, 'twenty-three thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(9790, 52358, 'fifty-two thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(9791, 64224, 'sixty-four thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(9792, 88096, 'eighty-eight thousand ninety-six');\nINSERT INTO t2 VALUES(9793, 45220, 'forty-five thousand two hundred twenty');\nINSERT INTO t2 VALUES(9794, 68875, 'sixty-eight thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(9795, 6662, 'six thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(9796, 16645, 'sixteen thousand six hundred forty-five');\nINSERT INTO t2 VALUES(9797, 63361, 'sixty-three thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(9798, 8274, 'eight thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(9799, 6532, 'six thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(9800, 19965, 'nineteen thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(9801, 80285, 'eighty thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(9802, 60856, 'sixty thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(9803, 67409, 'sixty-seven thousand four hundred nine');\nINSERT INTO t2 VALUES(9804, 20871, 'twenty thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(9805, 72000, 'seventy-two thousand');\nINSERT INTO t2 VALUES(9806, 15279, 'fifteen thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(9807, 42589, 'forty-two thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(9808, 42872, 'forty-two thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(9809, 8091, 'eight thousand ninety-one');\nINSERT INTO t2 VALUES(9810, 40812, 'forty thousand eight hundred twelve');\nINSERT INTO t2 VALUES(9811, 74285, 'seventy-four thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(9812, 3039, 'three thousand thirty-nine');\nINSERT INTO t2 VALUES(9813, 91575, 'ninety-one thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(9814, 69928, 'sixty-nine thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(9815, 11574, 'eleven thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(9816, 87237, 'eighty-seven thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(9817, 85439, 'eighty-five thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(9818, 78822, 'seventy-eight thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(9819, 30048, 'thirty thousand forty-eight');\nINSERT INTO t2 VALUES(9820, 79138, 'seventy-nine thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(9821, 9060, 'nine thousand sixty');\nINSERT INTO t2 VALUES(9822, 5465, 'five thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(9823, 26276, 'twenty-six thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(9824, 85783, 'eighty-five thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(9825, 80145, 'eighty thousand one hundred forty-five');\nINSERT INTO t2 VALUES(9826, 41733, 'forty-one thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(9827, 88913, 'eighty-eight thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(9828, 10742, 'ten thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(9829, 6810, 'six thousand eight hundred ten');\nINSERT INTO t2 VALUES(9830, 69735, 'sixty-nine thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(9831, 98911, 'ninety-eight thousand nine hundred eleven');\nINSERT INTO t2 VALUES(9832, 37083, 'thirty-seven thousand eighty-three');\nINSERT INTO t2 VALUES(9833, 72333, 'seventy-two thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(9834, 19909, 'nineteen thousand nine hundred nine');\nINSERT INTO t2 VALUES(9835, 15371, 'fifteen thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(9836, 33627, 'thirty-three thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(9837, 79364, 'seventy-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(9838, 17020, 'seventeen thousand twenty');\nINSERT INTO t2 VALUES(9839, 2514, 'two thousand five hundred fourteen');\nINSERT INTO t2 VALUES(9840, 220, 'two hundred twenty');\nINSERT INTO t2 VALUES(9841, 85011, 'eighty-five thousand eleven');\nINSERT INTO t2 VALUES(9842, 86302, 'eighty-six thousand three hundred two');\nINSERT INTO t2 VALUES(9843, 36977, 'thirty-six thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(9844, 33081, 'thirty-three thousand eighty-one');\nINSERT INTO t2 VALUES(9845, 18211, 'eighteen thousand two hundred eleven');\nINSERT INTO t2 VALUES(9846, 30006, 'thirty thousand six');\nINSERT INTO t2 VALUES(9847, 47967, 'forty-seven thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(9848, 44090, 'forty-four thousand ninety');\nINSERT INTO t2 VALUES(9849, 88043, 'eighty-eight thousand forty-three');\nINSERT INTO t2 VALUES(9850, 63998, 'sixty-three thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(9851, 67265, 'sixty-seven thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(9852, 78154, 'seventy-eight thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(9853, 27541, 'twenty-seven thousand five hundred forty-one');\nINSERT INTO t2 VALUES(9854, 16935, 'sixteen thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(9855, 75241, 'seventy-five thousand two hundred forty-one');\nINSERT INTO t2 VALUES(9856, 12951, 'twelve thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(9857, 39670, 'thirty-nine thousand six hundred seventy');\nINSERT INTO t2 VALUES(9858, 93047, 'ninety-three thousand forty-seven');\nINSERT INTO t2 VALUES(9859, 78639, 'seventy-eight thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(9860, 5202, 'five thousand two hundred two');\nINSERT INTO t2 VALUES(9861, 17204, 'seventeen thousand two hundred four');\nINSERT INTO t2 VALUES(9862, 39432, 'thirty-nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(9863, 44518, 'forty-four thousand five hundred eighteen');\nINSERT INTO t2 VALUES(9864, 91369, 'ninety-one thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(9865, 40140, 'forty thousand one hundred forty');\nINSERT INTO t2 VALUES(9866, 19559, 'nineteen thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(9867, 26216, 'twenty-six thousand two hundred sixteen');\nINSERT INTO t2 VALUES(9868, 8647, 'eight thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(9869, 28889, 'twenty-eight thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(9870, 46851, 'forty-six thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(9871, 13014, 'thirteen thousand fourteen');\nINSERT INTO t2 VALUES(9872, 77239, 'seventy-seven thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(9873, 41515, 'forty-one thousand five hundred fifteen');\nINSERT INTO t2 VALUES(9874, 25126, 'twenty-five thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(9875, 24678, 'twenty-four thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(9876, 22524, 'twenty-two thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(9877, 36719, 'thirty-six thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(9878, 90976, 'ninety thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(9879, 45387, 'forty-five thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(9880, 25918, 'twenty-five thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(9881, 4799, 'four thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(9882, 90468, 'ninety thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(9883, 35652, 'thirty-five thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(9884, 84626, 'eighty-four thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(9885, 73446, 'seventy-three thousand four hundred forty-six');\nINSERT INTO t2 VALUES(9886, 18877, 'eighteen thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(9887, 2012, 'two thousand twelve');\nINSERT INTO t2 VALUES(9888, 38502, 'thirty-eight thousand five hundred two');\nINSERT INTO t2 VALUES(9889, 2784, 'two thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(9890, 11098, 'eleven thousand ninety-eight');\nINSERT INTO t2 VALUES(9891, 96913, 'ninety-six thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(9892, 65007, 'sixty-five thousand seven');\nINSERT INTO t2 VALUES(9893, 4446, 'four thousand four hundred forty-six');\nINSERT INTO t2 VALUES(9894, 13760, 'thirteen thousand seven hundred sixty');\nINSERT INTO t2 VALUES(9895, 15589, 'fifteen thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(9896, 13053, 'thirteen thousand fifty-three');\nINSERT INTO t2 VALUES(9897, 46297, 'forty-six thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(9898, 32446, 'thirty-two thousand four hundred forty-six');\nINSERT INTO t2 VALUES(9899, 46298, 'forty-six thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(9900, 31498, 'thirty-one thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(9901, 53844, 'fifty-three thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(9902, 22677, 'twenty-two thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(9903, 32112, 'thirty-two thousand one hundred twelve');\nINSERT INTO t2 VALUES(9904, 78055, 'seventy-eight thousand fifty-five');\nINSERT INTO t2 VALUES(9905, 37196, 'thirty-seven thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(9906, 17198, 'seventeen thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(9907, 26387, 'twenty-six thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(9908, 66172, 'sixty-six thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(9909, 2890, 'two thousand eight hundred ninety');\nINSERT INTO t2 VALUES(9910, 78349, 'seventy-eight thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(9911, 73305, 'seventy-three thousand three hundred five');\nINSERT INTO t2 VALUES(9912, 46865, 'forty-six thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(9913, 51014, 'fifty-one thousand fourteen');\nINSERT INTO t2 VALUES(9914, 57484, 'fifty-seven thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(9915, 95182, 'ninety-five thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(9916, 47178, 'forty-seven thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(9917, 61210, 'sixty-one thousand two hundred ten');\nINSERT INTO t2 VALUES(9918, 2861, 'two thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(9919, 42747, 'forty-two thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(9920, 2524, 'two thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(9921, 33984, 'thirty-three thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(9922, 70995, 'seventy thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(9923, 2751, 'two thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(9924, 17949, 'seventeen thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(9925, 83674, 'eighty-three thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(9926, 62038, 'sixty-two thousand thirty-eight');\nINSERT INTO t2 VALUES(9927, 91191, 'ninety-one thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(9928, 62705, 'sixty-two thousand seven hundred five');\nINSERT INTO t2 VALUES(9929, 15215, 'fifteen thousand two hundred fifteen');\nINSERT INTO t2 VALUES(9930, 11635, 'eleven thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(9931, 83994, 'eighty-three thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(9932, 76669, 'seventy-six thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(9933, 7591, 'seven thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(9934, 58851, 'fifty-eight thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(9935, 86336, 'eighty-six thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(9936, 74312, 'seventy-four thousand three hundred twelve');\nINSERT INTO t2 VALUES(9937, 29583, 'twenty-nine thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(9938, 98197, 'ninety-eight thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(9939, 65908, 'sixty-five thousand nine hundred eight');\nINSERT INTO t2 VALUES(9940, 87238, 'eighty-seven thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(9941, 54069, 'fifty-four thousand sixty-nine');\nINSERT INTO t2 VALUES(9942, 23443, 'twenty-three thousand four hundred forty-three');\nINSERT INTO t2 VALUES(9943, 10265, 'ten thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(9944, 94297, 'ninety-four thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(9945, 54499, 'fifty-four thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(9946, 10995, 'ten thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(9947, 16429, 'sixteen thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(9948, 45090, 'forty-five thousand ninety');\nINSERT INTO t2 VALUES(9949, 2196, 'two thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(9950, 15974, 'fifteen thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(9951, 72950, 'seventy-two thousand nine hundred fifty');\nINSERT INTO t2 VALUES(9952, 86199, 'eighty-six thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(9953, 8768, 'eight thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(9954, 94335, 'ninety-four thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(9955, 73289, 'seventy-three thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(9956, 8369, 'eight thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(9957, 20192, 'twenty thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(9958, 70239, 'seventy thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(9959, 52640, 'fifty-two thousand six hundred forty');\nINSERT INTO t2 VALUES(9960, 42186, 'forty-two thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(9961, 94872, 'ninety-four thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(9962, 63106, 'sixty-three thousand one hundred six');\nINSERT INTO t2 VALUES(9963, 92597, 'ninety-two thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(9964, 98430, 'ninety-eight thousand four hundred thirty');\nINSERT INTO t2 VALUES(9965, 33505, 'thirty-three thousand five hundred five');\nINSERT INTO t2 VALUES(9966, 10796, 'ten thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(9967, 45097, 'forty-five thousand ninety-seven');\nINSERT INTO t2 VALUES(9968, 60873, 'sixty thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(9969, 72539, 'seventy-two thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(9970, 74421, 'seventy-four thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(9971, 11566, 'eleven thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(9972, 45366, 'forty-five thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(9973, 10507, 'ten thousand five hundred seven');\nINSERT INTO t2 VALUES(9974, 40969, 'forty thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(9975, 26089, 'twenty-six thousand eighty-nine');\nINSERT INTO t2 VALUES(9976, 94907, 'ninety-four thousand nine hundred seven');\nINSERT INTO t2 VALUES(9977, 67663, 'sixty-seven thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(9978, 59388, 'fifty-nine thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(9979, 67936, 'sixty-seven thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(9980, 1514, 'one thousand five hundred fourteen');\nINSERT INTO t2 VALUES(9981, 83008, 'eighty-three thousand eight');\nINSERT INTO t2 VALUES(9982, 52449, 'fifty-two thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(9983, 35805, 'thirty-five thousand eight hundred five');\nINSERT INTO t2 VALUES(9984, 89354, 'eighty-nine thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(9985, 28275, 'twenty-eight thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(9986, 86168, 'eighty-six thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(9987, 70733, 'seventy thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(9988, 1525, 'one thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(9989, 88430, 'eighty-eight thousand four hundred thirty');\nINSERT INTO t2 VALUES(9990, 93781, 'ninety-three thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(9991, 83529, 'eighty-three thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(9992, 15257, 'fifteen thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(9993, 66222, 'sixty-six thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(9994, 12762, 'twelve thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(9995, 32485, 'thirty-two thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(9996, 25438, 'twenty-five thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(9997, 7362, 'seven thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(9998, 9721, 'nine thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(9999, 44707, 'forty-four thousand seven hundred seven');\nINSERT INTO t2 VALUES(10000, 43668, 'forty-three thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(10001, 93422, 'ninety-three thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(10002, 78511, 'seventy-eight thousand five hundred eleven');\nINSERT INTO t2 VALUES(10003, 79651, 'seventy-nine thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(10004, 37643, 'thirty-seven thousand six hundred forty-three');\nINSERT INTO t2 VALUES(10005, 78783, 'seventy-eight thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(10006, 18116, 'eighteen thousand one hundred sixteen');\nINSERT INTO t2 VALUES(10007, 71239, 'seventy-one thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(10008, 18194, 'eighteen thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(10009, 51355, 'fifty-one thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(10010, 98261, 'ninety-eight thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(10011, 83984, 'eighty-three thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(10012, 44407, 'forty-four thousand four hundred seven');\nINSERT INTO t2 VALUES(10013, 19078, 'nineteen thousand seventy-eight');\nINSERT INTO t2 VALUES(10014, 70902, 'seventy thousand nine hundred two');\nINSERT INTO t2 VALUES(10015, 16982, 'sixteen thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(10016, 95419, 'ninety-five thousand four hundred nineteen');\nINSERT INTO t2 VALUES(10017, 33354, 'thirty-three thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(10018, 50334, 'fifty thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(10019, 82156, 'eighty-two thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(10020, 89745, 'eighty-nine thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(10021, 20522, 'twenty thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(10022, 63411, 'sixty-three thousand four hundred eleven');\nINSERT INTO t2 VALUES(10023, 54961, 'fifty-four thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(10024, 40258, 'forty thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(10025, 46240, 'forty-six thousand two hundred forty');\nINSERT INTO t2 VALUES(10026, 24737, 'twenty-four thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(10027, 45625, 'forty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(10028, 88518, 'eighty-eight thousand five hundred eighteen');\nINSERT INTO t2 VALUES(10029, 37460, 'thirty-seven thousand four hundred sixty');\nINSERT INTO t2 VALUES(10030, 94325, 'ninety-four thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(10031, 37456, 'thirty-seven thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(10032, 40991, 'forty thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(10033, 96882, 'ninety-six thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(10034, 96794, 'ninety-six thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(10035, 10767, 'ten thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(10036, 29290, 'twenty-nine thousand two hundred ninety');\nINSERT INTO t2 VALUES(10037, 85526, 'eighty-five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(10038, 77321, 'seventy-seven thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(10039, 22133, 'twenty-two thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(10040, 40317, 'forty thousand three hundred seventeen');\nINSERT INTO t2 VALUES(10041, 60739, 'sixty thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(10042, 51801, 'fifty-one thousand eight hundred one');\nINSERT INTO t2 VALUES(10043, 69537, 'sixty-nine thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(10044, 31020, 'thirty-one thousand twenty');\nINSERT INTO t2 VALUES(10045, 7191, 'seven thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(10046, 14202, 'fourteen thousand two hundred two');\nINSERT INTO t2 VALUES(10047, 27420, 'twenty-seven thousand four hundred twenty');\nINSERT INTO t2 VALUES(10048, 59056, 'fifty-nine thousand fifty-six');\nINSERT INTO t2 VALUES(10049, 13581, 'thirteen thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(10050, 43958, 'forty-three thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(10051, 95227, 'ninety-five thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(10052, 29350, 'twenty-nine thousand three hundred fifty');\nINSERT INTO t2 VALUES(10053, 5887, 'five thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(10054, 2986, 'two thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(10055, 95791, 'ninety-five thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(10056, 35488, 'thirty-five thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(10057, 65926, 'sixty-five thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(10058, 26652, 'twenty-six thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(10059, 75019, 'seventy-five thousand nineteen');\nINSERT INTO t2 VALUES(10060, 48662, 'forty-eight thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(10061, 25582, 'twenty-five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(10062, 62775, 'sixty-two thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(10063, 82872, 'eighty-two thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(10064, 87807, 'eighty-seven thousand eight hundred seven');\nINSERT INTO t2 VALUES(10065, 82316, 'eighty-two thousand three hundred sixteen');\nINSERT INTO t2 VALUES(10066, 36033, 'thirty-six thousand thirty-three');\nINSERT INTO t2 VALUES(10067, 64136, 'sixty-four thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(10068, 36927, 'thirty-six thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(10069, 27451, 'twenty-seven thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(10070, 18288, 'eighteen thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(10071, 70862, 'seventy thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(10072, 58332, 'fifty-eight thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(10073, 67341, 'sixty-seven thousand three hundred forty-one');\nINSERT INTO t2 VALUES(10074, 14209, 'fourteen thousand two hundred nine');\nINSERT INTO t2 VALUES(10075, 11369, 'eleven thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(10076, 90453, 'ninety thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(10077, 89961, 'eighty-nine thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(10078, 29873, 'twenty-nine thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(10079, 95342, 'ninety-five thousand three hundred forty-two');\nINSERT INTO t2 VALUES(10080, 28876, 'twenty-eight thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(10081, 38591, 'thirty-eight thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(10082, 22255, 'twenty-two thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(10083, 32250, 'thirty-two thousand two hundred fifty');\nINSERT INTO t2 VALUES(10084, 60760, 'sixty thousand seven hundred sixty');\nINSERT INTO t2 VALUES(10085, 60606, 'sixty thousand six hundred six');\nINSERT INTO t2 VALUES(10086, 28914, 'twenty-eight thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(10087, 48145, 'forty-eight thousand one hundred forty-five');\nINSERT INTO t2 VALUES(10088, 67051, 'sixty-seven thousand fifty-one');\nINSERT INTO t2 VALUES(10089, 80224, 'eighty thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(10090, 67729, 'sixty-seven thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(10091, 91224, 'ninety-one thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(10092, 25412, 'twenty-five thousand four hundred twelve');\nINSERT INTO t2 VALUES(10093, 21678, 'twenty-one thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(10094, 85068, 'eighty-five thousand sixty-eight');\nINSERT INTO t2 VALUES(10095, 40462, 'forty thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(10096, 6854, 'six thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(10097, 31721, 'thirty-one thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(10098, 12954, 'twelve thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(10099, 22132, 'twenty-two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(10100, 11088, 'eleven thousand eighty-eight');\nINSERT INTO t2 VALUES(10101, 56936, 'fifty-six thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(10102, 4088, 'four thousand eighty-eight');\nINSERT INTO t2 VALUES(10103, 71434, 'seventy-one thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(10104, 30525, 'thirty thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(10105, 10768, 'ten thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(10106, 59864, 'fifty-nine thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(10107, 86995, 'eighty-six thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(10108, 46828, 'forty-six thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(10109, 92437, 'ninety-two thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(10110, 67956, 'sixty-seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(10111, 3135, 'three thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(10112, 17166, 'seventeen thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(10113, 95375, 'ninety-five thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(10114, 10317, 'ten thousand three hundred seventeen');\nINSERT INTO t2 VALUES(10115, 92095, 'ninety-two thousand ninety-five');\nINSERT INTO t2 VALUES(10116, 15089, 'fifteen thousand eighty-nine');\nINSERT INTO t2 VALUES(10117, 22295, 'twenty-two thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(10118, 69161, 'sixty-nine thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(10119, 6487, 'six thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(10120, 10844, 'ten thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(10121, 96110, 'ninety-six thousand one hundred ten');\nINSERT INTO t2 VALUES(10122, 18819, 'eighteen thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(10123, 10972, 'ten thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(10124, 33732, 'thirty-three thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(10125, 52138, 'fifty-two thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(10126, 48624, 'forty-eight thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(10127, 94840, 'ninety-four thousand eight hundred forty');\nINSERT INTO t2 VALUES(10128, 42108, 'forty-two thousand one hundred eight');\nINSERT INTO t2 VALUES(10129, 41793, 'forty-one thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(10130, 64579, 'sixty-four thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(10131, 41902, 'forty-one thousand nine hundred two');\nINSERT INTO t2 VALUES(10132, 9141, 'nine thousand one hundred forty-one');\nINSERT INTO t2 VALUES(10133, 69247, 'sixty-nine thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(10134, 64837, 'sixty-four thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(10135, 44654, 'forty-four thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(10136, 17940, 'seventeen thousand nine hundred forty');\nINSERT INTO t2 VALUES(10137, 67097, 'sixty-seven thousand ninety-seven');\nINSERT INTO t2 VALUES(10138, 94388, 'ninety-four thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(10139, 97454, 'ninety-seven thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(10140, 49395, 'forty-nine thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(10141, 28209, 'twenty-eight thousand two hundred nine');\nINSERT INTO t2 VALUES(10142, 94587, 'ninety-four thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(10143, 76900, 'seventy-six thousand nine hundred');\nINSERT INTO t2 VALUES(10144, 50976, 'fifty thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(10145, 42009, 'forty-two thousand nine');\nINSERT INTO t2 VALUES(10146, 55337, 'fifty-five thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(10147, 43386, 'forty-three thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(10148, 71133, 'seventy-one thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(10149, 18762, 'eighteen thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(10150, 83631, 'eighty-three thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(10151, 48583, 'forty-eight thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(10152, 37275, 'thirty-seven thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(10153, 74334, 'seventy-four thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(10154, 2982, 'two thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(10155, 6976, 'six thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(10156, 39273, 'thirty-nine thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(10157, 27624, 'twenty-seven thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(10158, 98848, 'ninety-eight thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(10159, 27469, 'twenty-seven thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(10160, 84326, 'eighty-four thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(10161, 63020, 'sixty-three thousand twenty');\nINSERT INTO t2 VALUES(10162, 75022, 'seventy-five thousand twenty-two');\nINSERT INTO t2 VALUES(10163, 27420, 'twenty-seven thousand four hundred twenty');\nINSERT INTO t2 VALUES(10164, 41052, 'forty-one thousand fifty-two');\nINSERT INTO t2 VALUES(10165, 21534, 'twenty-one thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(10166, 71154, 'seventy-one thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(10167, 98187, 'ninety-eight thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(10168, 67507, 'sixty-seven thousand five hundred seven');\nINSERT INTO t2 VALUES(10169, 29966, 'twenty-nine thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(10170, 25408, 'twenty-five thousand four hundred eight');\nINSERT INTO t2 VALUES(10171, 18694, 'eighteen thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(10172, 44142, 'forty-four thousand one hundred forty-two');\nINSERT INTO t2 VALUES(10173, 89828, 'eighty-nine thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(10174, 42489, 'forty-two thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(10175, 56553, 'fifty-six thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(10176, 21233, 'twenty-one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(10177, 71442, 'seventy-one thousand four hundred forty-two');\nINSERT INTO t2 VALUES(10178, 94227, 'ninety-four thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(10179, 31597, 'thirty-one thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(10180, 93967, 'ninety-three thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(10181, 60897, 'sixty thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(10182, 43723, 'forty-three thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(10183, 82011, 'eighty-two thousand eleven');\nINSERT INTO t2 VALUES(10184, 86358, 'eighty-six thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(10185, 78704, 'seventy-eight thousand seven hundred four');\nINSERT INTO t2 VALUES(10186, 51381, 'fifty-one thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(10187, 9489, 'nine thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(10188, 32395, 'thirty-two thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(10189, 66736, 'sixty-six thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(10190, 72421, 'seventy-two thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(10191, 20505, 'twenty thousand five hundred five');\nINSERT INTO t2 VALUES(10192, 60892, 'sixty thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(10193, 86125, 'eighty-six thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(10194, 16480, 'sixteen thousand four hundred eighty');\nINSERT INTO t2 VALUES(10195, 67149, 'sixty-seven thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(10196, 49960, 'forty-nine thousand nine hundred sixty');\nINSERT INTO t2 VALUES(10197, 43029, 'forty-three thousand twenty-nine');\nINSERT INTO t2 VALUES(10198, 5057, 'five thousand fifty-seven');\nINSERT INTO t2 VALUES(10199, 29649, 'twenty-nine thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(10200, 62197, 'sixty-two thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(10201, 98587, 'ninety-eight thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(10202, 32622, 'thirty-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(10203, 31145, 'thirty-one thousand one hundred forty-five');\nINSERT INTO t2 VALUES(10204, 56582, 'fifty-six thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(10205, 8708, 'eight thousand seven hundred eight');\nINSERT INTO t2 VALUES(10206, 80782, 'eighty thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(10207, 1834, 'one thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(10208, 21888, 'twenty-one thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(10209, 52793, 'fifty-two thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(10210, 98913, 'ninety-eight thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(10211, 788, 'seven hundred eighty-eight');\nINSERT INTO t2 VALUES(10212, 78848, 'seventy-eight thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(10213, 43230, 'forty-three thousand two hundred thirty');\nINSERT INTO t2 VALUES(10214, 8799, 'eight thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(10215, 54038, 'fifty-four thousand thirty-eight');\nINSERT INTO t2 VALUES(10216, 92344, 'ninety-two thousand three hundred forty-four');\nINSERT INTO t2 VALUES(10217, 19882, 'nineteen thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(10218, 66941, 'sixty-six thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(10219, 90274, 'ninety thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(10220, 70729, 'seventy thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(10221, 41013, 'forty-one thousand thirteen');\nINSERT INTO t2 VALUES(10222, 65717, 'sixty-five thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(10223, 6157, 'six thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(10224, 52191, 'fifty-two thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(10225, 77086, 'seventy-seven thousand eighty-six');\nINSERT INTO t2 VALUES(10226, 92092, 'ninety-two thousand ninety-two');\nINSERT INTO t2 VALUES(10227, 98823, 'ninety-eight thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(10228, 19498, 'nineteen thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(10229, 14181, 'fourteen thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(10230, 53665, 'fifty-three thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(10231, 38861, 'thirty-eight thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(10232, 512, 'five hundred twelve');\nINSERT INTO t2 VALUES(10233, 99022, 'ninety-nine thousand twenty-two');\nINSERT INTO t2 VALUES(10234, 77947, 'seventy-seven thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(10235, 45582, 'forty-five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(10236, 17177, 'seventeen thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(10237, 83840, 'eighty-three thousand eight hundred forty');\nINSERT INTO t2 VALUES(10238, 92528, 'ninety-two thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(10239, 22333, 'twenty-two thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(10240, 80183, 'eighty thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(10241, 91124, 'ninety-one thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(10242, 50219, 'fifty thousand two hundred nineteen');\nINSERT INTO t2 VALUES(10243, 86522, 'eighty-six thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(10244, 91434, 'ninety-one thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(10245, 43887, 'forty-three thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(10246, 33478, 'thirty-three thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(10247, 62924, 'sixty-two thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(10248, 89057, 'eighty-nine thousand fifty-seven');\nINSERT INTO t2 VALUES(10249, 46407, 'forty-six thousand four hundred seven');\nINSERT INTO t2 VALUES(10250, 90629, 'ninety thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(10251, 63581, 'sixty-three thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(10252, 5364, 'five thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(10253, 22919, 'twenty-two thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(10254, 93301, 'ninety-three thousand three hundred one');\nINSERT INTO t2 VALUES(10255, 47925, 'forty-seven thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(10256, 62950, 'sixty-two thousand nine hundred fifty');\nINSERT INTO t2 VALUES(10257, 72924, 'seventy-two thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(10258, 55715, 'fifty-five thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(10259, 29794, 'twenty-nine thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(10260, 87159, 'eighty-seven thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(10261, 35726, 'thirty-five thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(10262, 25290, 'twenty-five thousand two hundred ninety');\nINSERT INTO t2 VALUES(10263, 71038, 'seventy-one thousand thirty-eight');\nINSERT INTO t2 VALUES(10264, 27862, 'twenty-seven thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(10265, 23841, 'twenty-three thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(10266, 60438, 'sixty thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(10267, 83993, 'eighty-three thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(10268, 62405, 'sixty-two thousand four hundred five');\nINSERT INTO t2 VALUES(10269, 24054, 'twenty-four thousand fifty-four');\nINSERT INTO t2 VALUES(10270, 57272, 'fifty-seven thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(10271, 11856, 'eleven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(10272, 57422, 'fifty-seven thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(10273, 11750, 'eleven thousand seven hundred fifty');\nINSERT INTO t2 VALUES(10274, 73859, 'seventy-three thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(10275, 68654, 'sixty-eight thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(10276, 20089, 'twenty thousand eighty-nine');\nINSERT INTO t2 VALUES(10277, 59911, 'fifty-nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(10278, 49931, 'forty-nine thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(10279, 54876, 'fifty-four thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(10280, 46280, 'forty-six thousand two hundred eighty');\nINSERT INTO t2 VALUES(10281, 24422, 'twenty-four thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(10282, 48733, 'forty-eight thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(10283, 13374, 'thirteen thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(10284, 57736, 'fifty-seven thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(10285, 37380, 'thirty-seven thousand three hundred eighty');\nINSERT INTO t2 VALUES(10286, 96731, 'ninety-six thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(10287, 97572, 'ninety-seven thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(10288, 72194, 'seventy-two thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(10289, 44460, 'forty-four thousand four hundred sixty');\nINSERT INTO t2 VALUES(10290, 53187, 'fifty-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(10291, 8786, 'eight thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(10292, 4737, 'four thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(10293, 68178, 'sixty-eight thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(10294, 37344, 'thirty-seven thousand three hundred forty-four');\nINSERT INTO t2 VALUES(10295, 49195, 'forty-nine thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(10296, 81421, 'eighty-one thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(10297, 97365, 'ninety-seven thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(10298, 87319, 'eighty-seven thousand three hundred nineteen');\nINSERT INTO t2 VALUES(10299, 30615, 'thirty thousand six hundred fifteen');\nINSERT INTO t2 VALUES(10300, 86579, 'eighty-six thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(10301, 40921, 'forty thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(10302, 89272, 'eighty-nine thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(10303, 50023, 'fifty thousand twenty-three');\nINSERT INTO t2 VALUES(10304, 95552, 'ninety-five thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(10305, 77200, 'seventy-seven thousand two hundred');\nINSERT INTO t2 VALUES(10306, 80643, 'eighty thousand six hundred forty-three');\nINSERT INTO t2 VALUES(10307, 88530, 'eighty-eight thousand five hundred thirty');\nINSERT INTO t2 VALUES(10308, 52392, 'fifty-two thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(10309, 88186, 'eighty-eight thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(10310, 35070, 'thirty-five thousand seventy');\nINSERT INTO t2 VALUES(10311, 72151, 'seventy-two thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(10312, 88942, 'eighty-eight thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(10313, 84646, 'eighty-four thousand six hundred forty-six');\nINSERT INTO t2 VALUES(10314, 3944, 'three thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(10315, 20533, 'twenty thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(10316, 28512, 'twenty-eight thousand five hundred twelve');\nINSERT INTO t2 VALUES(10317, 79617, 'seventy-nine thousand six hundred seventeen');\nINSERT INTO t2 VALUES(10318, 345, 'three hundred forty-five');\nINSERT INTO t2 VALUES(10319, 48197, 'forty-eight thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(10320, 73820, 'seventy-three thousand eight hundred twenty');\nINSERT INTO t2 VALUES(10321, 73203, 'seventy-three thousand two hundred three');\nINSERT INTO t2 VALUES(10322, 79567, 'seventy-nine thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(10323, 7196, 'seven thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(10324, 46206, 'forty-six thousand two hundred six');\nINSERT INTO t2 VALUES(10325, 44181, 'forty-four thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(10326, 11792, 'eleven thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(10327, 12881, 'twelve thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(10328, 95524, 'ninety-five thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(10329, 72593, 'seventy-two thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(10330, 80211, 'eighty thousand two hundred eleven');\nINSERT INTO t2 VALUES(10331, 48611, 'forty-eight thousand six hundred eleven');\nINSERT INTO t2 VALUES(10332, 82047, 'eighty-two thousand forty-seven');\nINSERT INTO t2 VALUES(10333, 77177, 'seventy-seven thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(10334, 257, 'two hundred fifty-seven');\nINSERT INTO t2 VALUES(10335, 36466, 'thirty-six thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(10336, 14574, 'fourteen thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(10337, 45098, 'forty-five thousand ninety-eight');\nINSERT INTO t2 VALUES(10338, 77630, 'seventy-seven thousand six hundred thirty');\nINSERT INTO t2 VALUES(10339, 71570, 'seventy-one thousand five hundred seventy');\nINSERT INTO t2 VALUES(10340, 97718, 'ninety-seven thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(10341, 47146, 'forty-seven thousand one hundred forty-six');\nINSERT INTO t2 VALUES(10342, 29410, 'twenty-nine thousand four hundred ten');\nINSERT INTO t2 VALUES(10343, 4725, 'four thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(10344, 61692, 'sixty-one thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(10345, 91558, 'ninety-one thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(10346, 77971, 'seventy-seven thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(10347, 35749, 'thirty-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(10348, 58875, 'fifty-eight thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(10349, 22918, 'twenty-two thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(10350, 86802, 'eighty-six thousand eight hundred two');\nINSERT INTO t2 VALUES(10351, 87662, 'eighty-seven thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(10352, 76394, 'seventy-six thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(10353, 2366, 'two thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(10354, 69310, 'sixty-nine thousand three hundred ten');\nINSERT INTO t2 VALUES(10355, 14691, 'fourteen thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(10356, 39756, 'thirty-nine thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(10357, 58155, 'fifty-eight thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(10358, 70934, 'seventy thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(10359, 24249, 'twenty-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(10360, 67762, 'sixty-seven thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(10361, 22437, 'twenty-two thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(10362, 81112, 'eighty-one thousand one hundred twelve');\nINSERT INTO t2 VALUES(10363, 51440, 'fifty-one thousand four hundred forty');\nINSERT INTO t2 VALUES(10364, 94451, 'ninety-four thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(10365, 23046, 'twenty-three thousand forty-six');\nINSERT INTO t2 VALUES(10366, 36970, 'thirty-six thousand nine hundred seventy');\nINSERT INTO t2 VALUES(10367, 26965, 'twenty-six thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(10368, 71037, 'seventy-one thousand thirty-seven');\nINSERT INTO t2 VALUES(10369, 85529, 'eighty-five thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(10370, 57720, 'fifty-seven thousand seven hundred twenty');\nINSERT INTO t2 VALUES(10371, 68703, 'sixty-eight thousand seven hundred three');\nINSERT INTO t2 VALUES(10372, 48093, 'forty-eight thousand ninety-three');\nINSERT INTO t2 VALUES(10373, 32222, 'thirty-two thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(10374, 24780, 'twenty-four thousand seven hundred eighty');\nINSERT INTO t2 VALUES(10375, 98605, 'ninety-eight thousand six hundred five');\nINSERT INTO t2 VALUES(10376, 80788, 'eighty thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(10377, 78338, 'seventy-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(10378, 2806, 'two thousand eight hundred six');\nINSERT INTO t2 VALUES(10379, 80487, 'eighty thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(10380, 512, 'five hundred twelve');\nINSERT INTO t2 VALUES(10381, 86173, 'eighty-six thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(10382, 82160, 'eighty-two thousand one hundred sixty');\nINSERT INTO t2 VALUES(10383, 77475, 'seventy-seven thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(10384, 17441, 'seventeen thousand four hundred forty-one');\nINSERT INTO t2 VALUES(10385, 9143, 'nine thousand one hundred forty-three');\nINSERT INTO t2 VALUES(10386, 47682, 'forty-seven thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(10387, 45608, 'forty-five thousand six hundred eight');\nINSERT INTO t2 VALUES(10388, 25793, 'twenty-five thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(10389, 97514, 'ninety-seven thousand five hundred fourteen');\nINSERT INTO t2 VALUES(10390, 68165, 'sixty-eight thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(10391, 69801, 'sixty-nine thousand eight hundred one');\nINSERT INTO t2 VALUES(10392, 41587, 'forty-one thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(10393, 13432, 'thirteen thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(10394, 89619, 'eighty-nine thousand six hundred nineteen');\nINSERT INTO t2 VALUES(10395, 41244, 'forty-one thousand two hundred forty-four');\nINSERT INTO t2 VALUES(10396, 83446, 'eighty-three thousand four hundred forty-six');\nINSERT INTO t2 VALUES(10397, 30914, 'thirty thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(10398, 45369, 'forty-five thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(10399, 81742, 'eighty-one thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(10400, 76009, 'seventy-six thousand nine');\nINSERT INTO t2 VALUES(10401, 38569, 'thirty-eight thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(10402, 13362, 'thirteen thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(10403, 84025, 'eighty-four thousand twenty-five');\nINSERT INTO t2 VALUES(10404, 56985, 'fifty-six thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(10405, 11889, 'eleven thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(10406, 74233, 'seventy-four thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(10407, 6279, 'six thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(10408, 10398, 'ten thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(10409, 54466, 'fifty-four thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(10410, 83572, 'eighty-three thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(10411, 68894, 'sixty-eight thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(10412, 49574, 'forty-nine thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(10413, 32964, 'thirty-two thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(10414, 55112, 'fifty-five thousand one hundred twelve');\nINSERT INTO t2 VALUES(10415, 57379, 'fifty-seven thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(10416, 56799, 'fifty-six thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(10417, 59788, 'fifty-nine thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(10418, 40118, 'forty thousand one hundred eighteen');\nINSERT INTO t2 VALUES(10419, 9262, 'nine thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(10420, 91864, 'ninety-one thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(10421, 83889, 'eighty-three thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(10422, 64947, 'sixty-four thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(10423, 40464, 'forty thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(10424, 65685, 'sixty-five thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(10425, 1184, 'one thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(10426, 73744, 'seventy-three thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(10427, 43448, 'forty-three thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(10428, 9633, 'nine thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(10429, 82246, 'eighty-two thousand two hundred forty-six');\nINSERT INTO t2 VALUES(10430, 44276, 'forty-four thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(10431, 98338, 'ninety-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(10432, 35746, 'thirty-five thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(10433, 34509, 'thirty-four thousand five hundred nine');\nINSERT INTO t2 VALUES(10434, 50233, 'fifty thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(10435, 3988, 'three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(10436, 62096, 'sixty-two thousand ninety-six');\nINSERT INTO t2 VALUES(10437, 45120, 'forty-five thousand one hundred twenty');\nINSERT INTO t2 VALUES(10438, 10384, 'ten thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(10439, 58412, 'fifty-eight thousand four hundred twelve');\nINSERT INTO t2 VALUES(10440, 6210, 'six thousand two hundred ten');\nINSERT INTO t2 VALUES(10441, 92060, 'ninety-two thousand sixty');\nINSERT INTO t2 VALUES(10442, 22549, 'twenty-two thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(10443, 14654, 'fourteen thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(10444, 79862, 'seventy-nine thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(10445, 13827, 'thirteen thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(10446, 70994, 'seventy thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(10447, 29434, 'twenty-nine thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(10448, 27259, 'twenty-seven thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(10449, 99804, 'ninety-nine thousand eight hundred four');\nINSERT INTO t2 VALUES(10450, 45028, 'forty-five thousand twenty-eight');\nINSERT INTO t2 VALUES(10451, 11398, 'eleven thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(10452, 55444, 'fifty-five thousand four hundred forty-four');\nINSERT INTO t2 VALUES(10453, 99800, 'ninety-nine thousand eight hundred');\nINSERT INTO t2 VALUES(10454, 58161, 'fifty-eight thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(10455, 40784, 'forty thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(10456, 95158, 'ninety-five thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(10457, 82507, 'eighty-two thousand five hundred seven');\nINSERT INTO t2 VALUES(10458, 61525, 'sixty-one thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(10459, 98305, 'ninety-eight thousand three hundred five');\nINSERT INTO t2 VALUES(10460, 78610, 'seventy-eight thousand six hundred ten');\nINSERT INTO t2 VALUES(10461, 887, 'eight hundred eighty-seven');\nINSERT INTO t2 VALUES(10462, 30663, 'thirty thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(10463, 24156, 'twenty-four thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(10464, 89993, 'eighty-nine thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(10465, 62451, 'sixty-two thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(10466, 32897, 'thirty-two thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(10467, 72206, 'seventy-two thousand two hundred six');\nINSERT INTO t2 VALUES(10468, 85870, 'eighty-five thousand eight hundred seventy');\nINSERT INTO t2 VALUES(10469, 10562, 'ten thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(10470, 90397, 'ninety thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(10471, 40363, 'forty thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(10472, 43581, 'forty-three thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(10473, 63066, 'sixty-three thousand sixty-six');\nINSERT INTO t2 VALUES(10474, 63630, 'sixty-three thousand six hundred thirty');\nINSERT INTO t2 VALUES(10475, 59944, 'fifty-nine thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(10476, 79379, 'seventy-nine thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(10477, 56319, 'fifty-six thousand three hundred nineteen');\nINSERT INTO t2 VALUES(10478, 25832, 'twenty-five thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(10479, 69714, 'sixty-nine thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(10480, 72589, 'seventy-two thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(10481, 64426, 'sixty-four thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(10482, 15595, 'fifteen thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(10483, 94937, 'ninety-four thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(10484, 20544, 'twenty thousand five hundred forty-four');\nINSERT INTO t2 VALUES(10485, 73212, 'seventy-three thousand two hundred twelve');\nINSERT INTO t2 VALUES(10486, 78272, 'seventy-eight thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(10487, 96263, 'ninety-six thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(10488, 57888, 'fifty-seven thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(10489, 6577, 'six thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(10490, 87243, 'eighty-seven thousand two hundred forty-three');\nINSERT INTO t2 VALUES(10491, 45050, 'forty-five thousand fifty');\nINSERT INTO t2 VALUES(10492, 47420, 'forty-seven thousand four hundred twenty');\nINSERT INTO t2 VALUES(10493, 22551, 'twenty-two thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(10494, 79991, 'seventy-nine thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(10495, 57365, 'fifty-seven thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(10496, 70310, 'seventy thousand three hundred ten');\nINSERT INTO t2 VALUES(10497, 7280, 'seven thousand two hundred eighty');\nINSERT INTO t2 VALUES(10498, 92371, 'ninety-two thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(10499, 94230, 'ninety-four thousand two hundred thirty');\nINSERT INTO t2 VALUES(10500, 92527, 'ninety-two thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(10501, 47272, 'forty-seven thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(10502, 3044, 'three thousand forty-four');\nINSERT INTO t2 VALUES(10503, 36605, 'thirty-six thousand six hundred five');\nINSERT INTO t2 VALUES(10504, 6326, 'six thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(10505, 46589, 'forty-six thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(10506, 4232, 'four thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(10507, 13303, 'thirteen thousand three hundred three');\nINSERT INTO t2 VALUES(10508, 18564, 'eighteen thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(10509, 35064, 'thirty-five thousand sixty-four');\nINSERT INTO t2 VALUES(10510, 16968, 'sixteen thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(10511, 20300, 'twenty thousand three hundred');\nINSERT INTO t2 VALUES(10512, 31944, 'thirty-one thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(10513, 15710, 'fifteen thousand seven hundred ten');\nINSERT INTO t2 VALUES(10514, 99425, 'ninety-nine thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(10515, 57071, 'fifty-seven thousand seventy-one');\nINSERT INTO t2 VALUES(10516, 42888, 'forty-two thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(10517, 90675, 'ninety thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(10518, 13798, 'thirteen thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(10519, 72321, 'seventy-two thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(10520, 70031, 'seventy thousand thirty-one');\nINSERT INTO t2 VALUES(10521, 38013, 'thirty-eight thousand thirteen');\nINSERT INTO t2 VALUES(10522, 29874, 'twenty-nine thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(10523, 96220, 'ninety-six thousand two hundred twenty');\nINSERT INTO t2 VALUES(10524, 21856, 'twenty-one thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(10525, 28721, 'twenty-eight thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(10526, 11024, 'eleven thousand twenty-four');\nINSERT INTO t2 VALUES(10527, 26017, 'twenty-six thousand seventeen');\nINSERT INTO t2 VALUES(10528, 2275, 'two thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(10529, 29804, 'twenty-nine thousand eight hundred four');\nINSERT INTO t2 VALUES(10530, 41864, 'forty-one thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(10531, 77439, 'seventy-seven thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(10532, 37600, 'thirty-seven thousand six hundred');\nINSERT INTO t2 VALUES(10533, 88606, 'eighty-eight thousand six hundred six');\nINSERT INTO t2 VALUES(10534, 57478, 'fifty-seven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(10535, 96296, 'ninety-six thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(10536, 96516, 'ninety-six thousand five hundred sixteen');\nINSERT INTO t2 VALUES(10537, 59728, 'fifty-nine thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(10538, 47356, 'forty-seven thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(10539, 22521, 'twenty-two thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(10540, 41674, 'forty-one thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(10541, 16290, 'sixteen thousand two hundred ninety');\nINSERT INTO t2 VALUES(10542, 41543, 'forty-one thousand five hundred forty-three');\nINSERT INTO t2 VALUES(10543, 44586, 'forty-four thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(10544, 90745, 'ninety thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(10545, 35670, 'thirty-five thousand six hundred seventy');\nINSERT INTO t2 VALUES(10546, 67549, 'sixty-seven thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(10547, 730, 'seven hundred thirty');\nINSERT INTO t2 VALUES(10548, 59043, 'fifty-nine thousand forty-three');\nINSERT INTO t2 VALUES(10549, 73793, 'seventy-three thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(10550, 98827, 'ninety-eight thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(10551, 71793, 'seventy-one thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(10552, 29182, 'twenty-nine thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(10553, 176, 'one hundred seventy-six');\nINSERT INTO t2 VALUES(10554, 21840, 'twenty-one thousand eight hundred forty');\nINSERT INTO t2 VALUES(10555, 28531, 'twenty-eight thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(10556, 22179, 'twenty-two thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(10557, 16960, 'sixteen thousand nine hundred sixty');\nINSERT INTO t2 VALUES(10558, 64718, 'sixty-four thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(10559, 84285, 'eighty-four thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(10560, 73736, 'seventy-three thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(10561, 3162, 'three thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(10562, 19906, 'nineteen thousand nine hundred six');\nINSERT INTO t2 VALUES(10563, 82494, 'eighty-two thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(10564, 13709, 'thirteen thousand seven hundred nine');\nINSERT INTO t2 VALUES(10565, 85142, 'eighty-five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(10566, 17599, 'seventeen thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(10567, 58182, 'fifty-eight thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(10568, 97223, 'ninety-seven thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(10569, 43151, 'forty-three thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(10570, 92278, 'ninety-two thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(10571, 15314, 'fifteen thousand three hundred fourteen');\nINSERT INTO t2 VALUES(10572, 8992, 'eight thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(10573, 49577, 'forty-nine thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(10574, 84386, 'eighty-four thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(10575, 28630, 'twenty-eight thousand six hundred thirty');\nINSERT INTO t2 VALUES(10576, 99953, 'ninety-nine thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(10577, 80631, 'eighty thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(10578, 38218, 'thirty-eight thousand two hundred eighteen');\nINSERT INTO t2 VALUES(10579, 39377, 'thirty-nine thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(10580, 40538, 'forty thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(10581, 20431, 'twenty thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(10582, 69201, 'sixty-nine thousand two hundred one');\nINSERT INTO t2 VALUES(10583, 78909, 'seventy-eight thousand nine hundred nine');\nINSERT INTO t2 VALUES(10584, 28408, 'twenty-eight thousand four hundred eight');\nINSERT INTO t2 VALUES(10585, 59650, 'fifty-nine thousand six hundred fifty');\nINSERT INTO t2 VALUES(10586, 79370, 'seventy-nine thousand three hundred seventy');\nINSERT INTO t2 VALUES(10587, 89798, 'eighty-nine thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(10588, 53262, 'fifty-three thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(10589, 27597, 'twenty-seven thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(10590, 66559, 'sixty-six thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(10591, 67211, 'sixty-seven thousand two hundred eleven');\nINSERT INTO t2 VALUES(10592, 7642, 'seven thousand six hundred forty-two');\nINSERT INTO t2 VALUES(10593, 47231, 'forty-seven thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(10594, 18254, 'eighteen thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(10595, 41055, 'forty-one thousand fifty-five');\nINSERT INTO t2 VALUES(10596, 28738, 'twenty-eight thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(10597, 44634, 'forty-four thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(10598, 31702, 'thirty-one thousand seven hundred two');\nINSERT INTO t2 VALUES(10599, 97882, 'ninety-seven thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(10600, 71255, 'seventy-one thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(10601, 69403, 'sixty-nine thousand four hundred three');\nINSERT INTO t2 VALUES(10602, 72524, 'seventy-two thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(10603, 11006, 'eleven thousand six');\nINSERT INTO t2 VALUES(10604, 77631, 'seventy-seven thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(10605, 56710, 'fifty-six thousand seven hundred ten');\nINSERT INTO t2 VALUES(10606, 56683, 'fifty-six thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(10607, 7541, 'seven thousand five hundred forty-one');\nINSERT INTO t2 VALUES(10608, 25996, 'twenty-five thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(10609, 45750, 'forty-five thousand seven hundred fifty');\nINSERT INTO t2 VALUES(10610, 77245, 'seventy-seven thousand two hundred forty-five');\nINSERT INTO t2 VALUES(10611, 15069, 'fifteen thousand sixty-nine');\nINSERT INTO t2 VALUES(10612, 40452, 'forty thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(10613, 11630, 'eleven thousand six hundred thirty');\nINSERT INTO t2 VALUES(10614, 68728, 'sixty-eight thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(10615, 11092, 'eleven thousand ninety-two');\nINSERT INTO t2 VALUES(10616, 67431, 'sixty-seven thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(10617, 58899, 'fifty-eight thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(10618, 92849, 'ninety-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(10619, 68706, 'sixty-eight thousand seven hundred six');\nINSERT INTO t2 VALUES(10620, 21084, 'twenty-one thousand eighty-four');\nINSERT INTO t2 VALUES(10621, 48157, 'forty-eight thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(10622, 69309, 'sixty-nine thousand three hundred nine');\nINSERT INTO t2 VALUES(10623, 6823, 'six thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(10624, 47851, 'forty-seven thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(10625, 61922, 'sixty-one thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(10626, 39528, 'thirty-nine thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(10627, 83483, 'eighty-three thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(10628, 18146, 'eighteen thousand one hundred forty-six');\nINSERT INTO t2 VALUES(10629, 28857, 'twenty-eight thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(10630, 60797, 'sixty thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(10631, 34235, 'thirty-four thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(10632, 7846, 'seven thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(10633, 82029, 'eighty-two thousand twenty-nine');\nINSERT INTO t2 VALUES(10634, 34976, 'thirty-four thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(10635, 64398, 'sixty-four thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(10636, 89786, 'eighty-nine thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(10637, 55503, 'fifty-five thousand five hundred three');\nINSERT INTO t2 VALUES(10638, 9319, 'nine thousand three hundred nineteen');\nINSERT INTO t2 VALUES(10639, 94828, 'ninety-four thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(10640, 37753, 'thirty-seven thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(10641, 38692, 'thirty-eight thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(10642, 64692, 'sixty-four thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(10643, 74697, 'seventy-four thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(10644, 17303, 'seventeen thousand three hundred three');\nINSERT INTO t2 VALUES(10645, 63072, 'sixty-three thousand seventy-two');\nINSERT INTO t2 VALUES(10646, 11344, 'eleven thousand three hundred forty-four');\nINSERT INTO t2 VALUES(10647, 74468, 'seventy-four thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(10648, 89290, 'eighty-nine thousand two hundred ninety');\nINSERT INTO t2 VALUES(10649, 4172, 'four thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(10650, 60904, 'sixty thousand nine hundred four');\nINSERT INTO t2 VALUES(10651, 14303, 'fourteen thousand three hundred three');\nINSERT INTO t2 VALUES(10652, 77367, 'seventy-seven thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(10653, 27700, 'twenty-seven thousand seven hundred');\nINSERT INTO t2 VALUES(10654, 29665, 'twenty-nine thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(10655, 1738, 'one thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(10656, 32214, 'thirty-two thousand two hundred fourteen');\nINSERT INTO t2 VALUES(10657, 72124, 'seventy-two thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(10658, 88569, 'eighty-eight thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(10659, 75708, 'seventy-five thousand seven hundred eight');\nINSERT INTO t2 VALUES(10660, 38860, 'thirty-eight thousand eight hundred sixty');\nINSERT INTO t2 VALUES(10661, 59928, 'fifty-nine thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(10662, 37915, 'thirty-seven thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(10663, 83641, 'eighty-three thousand six hundred forty-one');\nINSERT INTO t2 VALUES(10664, 92471, 'ninety-two thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(10665, 49483, 'forty-nine thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(10666, 43960, 'forty-three thousand nine hundred sixty');\nINSERT INTO t2 VALUES(10667, 4448, 'four thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(10668, 69225, 'sixty-nine thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(10669, 59130, 'fifty-nine thousand one hundred thirty');\nINSERT INTO t2 VALUES(10670, 72997, 'seventy-two thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(10671, 83128, 'eighty-three thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(10672, 69655, 'sixty-nine thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(10673, 88838, 'eighty-eight thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(10674, 55192, 'fifty-five thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(10675, 38515, 'thirty-eight thousand five hundred fifteen');\nINSERT INTO t2 VALUES(10676, 56034, 'fifty-six thousand thirty-four');\nINSERT INTO t2 VALUES(10677, 65644, 'sixty-five thousand six hundred forty-four');\nINSERT INTO t2 VALUES(10678, 89931, 'eighty-nine thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(10679, 37174, 'thirty-seven thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(10680, 71928, 'seventy-one thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(10681, 26192, 'twenty-six thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(10682, 89994, 'eighty-nine thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(10683, 24821, 'twenty-four thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(10684, 52649, 'fifty-two thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(10685, 25694, 'twenty-five thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(10686, 72433, 'seventy-two thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(10687, 87725, 'eighty-seven thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(10688, 13395, 'thirteen thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(10689, 25126, 'twenty-five thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(10690, 88564, 'eighty-eight thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(10691, 47447, 'forty-seven thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(10692, 50203, 'fifty thousand two hundred three');\nINSERT INTO t2 VALUES(10693, 93609, 'ninety-three thousand six hundred nine');\nINSERT INTO t2 VALUES(10694, 28282, 'twenty-eight thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(10695, 340, 'three hundred forty');\nINSERT INTO t2 VALUES(10696, 56672, 'fifty-six thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(10697, 54043, 'fifty-four thousand forty-three');\nINSERT INTO t2 VALUES(10698, 60470, 'sixty thousand four hundred seventy');\nINSERT INTO t2 VALUES(10699, 36094, 'thirty-six thousand ninety-four');\nINSERT INTO t2 VALUES(10700, 67389, 'sixty-seven thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(10701, 63320, 'sixty-three thousand three hundred twenty');\nINSERT INTO t2 VALUES(10702, 65356, 'sixty-five thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(10703, 76204, 'seventy-six thousand two hundred four');\nINSERT INTO t2 VALUES(10704, 58666, 'fifty-eight thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(10705, 36466, 'thirty-six thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(10706, 4679, 'four thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(10707, 27467, 'twenty-seven thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(10708, 28724, 'twenty-eight thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(10709, 27094, 'twenty-seven thousand ninety-four');\nINSERT INTO t2 VALUES(10710, 59500, 'fifty-nine thousand five hundred');\nINSERT INTO t2 VALUES(10711, 26473, 'twenty-six thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(10712, 14153, 'fourteen thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(10713, 88585, 'eighty-eight thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(10714, 97716, 'ninety-seven thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(10715, 48671, 'forty-eight thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(10716, 79805, 'seventy-nine thousand eight hundred five');\nINSERT INTO t2 VALUES(10717, 56084, 'fifty-six thousand eighty-four');\nINSERT INTO t2 VALUES(10718, 11175, 'eleven thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(10719, 23375, 'twenty-three thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(10720, 58311, 'fifty-eight thousand three hundred eleven');\nINSERT INTO t2 VALUES(10721, 51404, 'fifty-one thousand four hundred four');\nINSERT INTO t2 VALUES(10722, 67711, 'sixty-seven thousand seven hundred eleven');\nINSERT INTO t2 VALUES(10723, 12209, 'twelve thousand two hundred nine');\nINSERT INTO t2 VALUES(10724, 39613, 'thirty-nine thousand six hundred thirteen');\nINSERT INTO t2 VALUES(10725, 87999, 'eighty-seven thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(10726, 3514, 'three thousand five hundred fourteen');\nINSERT INTO t2 VALUES(10727, 18092, 'eighteen thousand ninety-two');\nINSERT INTO t2 VALUES(10728, 43583, 'forty-three thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(10729, 23103, 'twenty-three thousand one hundred three');\nINSERT INTO t2 VALUES(10730, 81384, 'eighty-one thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(10731, 26286, 'twenty-six thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(10732, 94855, 'ninety-four thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(10733, 75849, 'seventy-five thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(10734, 18198, 'eighteen thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(10735, 92810, 'ninety-two thousand eight hundred ten');\nINSERT INTO t2 VALUES(10736, 7140, 'seven thousand one hundred forty');\nINSERT INTO t2 VALUES(10737, 75210, 'seventy-five thousand two hundred ten');\nINSERT INTO t2 VALUES(10738, 10530, 'ten thousand five hundred thirty');\nINSERT INTO t2 VALUES(10739, 24349, 'twenty-four thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(10740, 18551, 'eighteen thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(10741, 35815, 'thirty-five thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(10742, 55969, 'fifty-five thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(10743, 34475, 'thirty-four thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(10744, 52758, 'fifty-two thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(10745, 14418, 'fourteen thousand four hundred eighteen');\nINSERT INTO t2 VALUES(10746, 84544, 'eighty-four thousand five hundred forty-four');\nINSERT INTO t2 VALUES(10747, 92836, 'ninety-two thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(10748, 19636, 'nineteen thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(10749, 63412, 'sixty-three thousand four hundred twelve');\nINSERT INTO t2 VALUES(10750, 28284, 'twenty-eight thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(10751, 79234, 'seventy-nine thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(10752, 8164, 'eight thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(10753, 74914, 'seventy-four thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(10754, 31733, 'thirty-one thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(10755, 69954, 'sixty-nine thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(10756, 44118, 'forty-four thousand one hundred eighteen');\nINSERT INTO t2 VALUES(10757, 73454, 'seventy-three thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(10758, 38685, 'thirty-eight thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(10759, 61503, 'sixty-one thousand five hundred three');\nINSERT INTO t2 VALUES(10760, 6231, 'six thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(10761, 60366, 'sixty thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(10762, 50989, 'fifty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(10763, 21423, 'twenty-one thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(10764, 78163, 'seventy-eight thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(10765, 4930, 'four thousand nine hundred thirty');\nINSERT INTO t2 VALUES(10766, 68137, 'sixty-eight thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(10767, 70190, 'seventy thousand one hundred ninety');\nINSERT INTO t2 VALUES(10768, 24999, 'twenty-four thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(10769, 26462, 'twenty-six thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(10770, 22526, 'twenty-two thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(10771, 98808, 'ninety-eight thousand eight hundred eight');\nINSERT INTO t2 VALUES(10772, 87470, 'eighty-seven thousand four hundred seventy');\nINSERT INTO t2 VALUES(10773, 6252, 'six thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(10774, 37938, 'thirty-seven thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(10775, 88639, 'eighty-eight thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(10776, 57730, 'fifty-seven thousand seven hundred thirty');\nINSERT INTO t2 VALUES(10777, 28511, 'twenty-eight thousand five hundred eleven');\nINSERT INTO t2 VALUES(10778, 66067, 'sixty-six thousand sixty-seven');\nINSERT INTO t2 VALUES(10779, 18084, 'eighteen thousand eighty-four');\nINSERT INTO t2 VALUES(10780, 67669, 'sixty-seven thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(10781, 6972, 'six thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(10782, 34181, 'thirty-four thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(10783, 89491, 'eighty-nine thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(10784, 99624, 'ninety-nine thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(10785, 72356, 'seventy-two thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(10786, 79924, 'seventy-nine thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(10787, 23567, 'twenty-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(10788, 83639, 'eighty-three thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(10789, 89510, 'eighty-nine thousand five hundred ten');\nINSERT INTO t2 VALUES(10790, 13745, 'thirteen thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(10791, 31065, 'thirty-one thousand sixty-five');\nINSERT INTO t2 VALUES(10792, 30323, 'thirty thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(10793, 5997, 'five thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(10794, 55682, 'fifty-five thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(10795, 14852, 'fourteen thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(10796, 31681, 'thirty-one thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(10797, 62939, 'sixty-two thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(10798, 12121, 'twelve thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(10799, 94852, 'ninety-four thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(10800, 99297, 'ninety-nine thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(10801, 34861, 'thirty-four thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(10802, 79531, 'seventy-nine thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(10803, 89549, 'eighty-nine thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(10804, 43943, 'forty-three thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(10805, 42746, 'forty-two thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(10806, 41285, 'forty-one thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(10807, 92272, 'ninety-two thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(10808, 1800, 'one thousand eight hundred');\nINSERT INTO t2 VALUES(10809, 99991, 'ninety-nine thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(10810, 21516, 'twenty-one thousand five hundred sixteen');\nINSERT INTO t2 VALUES(10811, 36026, 'thirty-six thousand twenty-six');\nINSERT INTO t2 VALUES(10812, 21447, 'twenty-one thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(10813, 50457, 'fifty thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(10814, 3694, 'three thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(10815, 82787, 'eighty-two thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(10816, 54403, 'fifty-four thousand four hundred three');\nINSERT INTO t2 VALUES(10817, 84102, 'eighty-four thousand one hundred two');\nINSERT INTO t2 VALUES(10818, 38996, 'thirty-eight thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(10819, 15596, 'fifteen thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(10820, 43086, 'forty-three thousand eighty-six');\nINSERT INTO t2 VALUES(10821, 50109, 'fifty thousand one hundred nine');\nINSERT INTO t2 VALUES(10822, 79831, 'seventy-nine thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(10823, 96309, 'ninety-six thousand three hundred nine');\nINSERT INTO t2 VALUES(10824, 86256, 'eighty-six thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(10825, 3893, 'three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(10826, 79264, 'seventy-nine thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(10827, 76783, 'seventy-six thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(10828, 19945, 'nineteen thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(10829, 77444, 'seventy-seven thousand four hundred forty-four');\nINSERT INTO t2 VALUES(10830, 77707, 'seventy-seven thousand seven hundred seven');\nINSERT INTO t2 VALUES(10831, 22474, 'twenty-two thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(10832, 69607, 'sixty-nine thousand six hundred seven');\nINSERT INTO t2 VALUES(10833, 13592, 'thirteen thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(10834, 63966, 'sixty-three thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(10835, 99606, 'ninety-nine thousand six hundred six');\nINSERT INTO t2 VALUES(10836, 76777, 'seventy-six thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(10837, 60483, 'sixty thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(10838, 83488, 'eighty-three thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(10839, 16832, 'sixteen thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(10840, 95683, 'ninety-five thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(10841, 92213, 'ninety-two thousand two hundred thirteen');\nINSERT INTO t2 VALUES(10842, 52507, 'fifty-two thousand five hundred seven');\nINSERT INTO t2 VALUES(10843, 72085, 'seventy-two thousand eighty-five');\nINSERT INTO t2 VALUES(10844, 86689, 'eighty-six thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(10845, 48476, 'forty-eight thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(10846, 53168, 'fifty-three thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(10847, 27474, 'twenty-seven thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(10848, 42524, 'forty-two thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(10849, 23269, 'twenty-three thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(10850, 79452, 'seventy-nine thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(10851, 69910, 'sixty-nine thousand nine hundred ten');\nINSERT INTO t2 VALUES(10852, 16739, 'sixteen thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(10853, 48765, 'forty-eight thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(10854, 66684, 'sixty-six thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(10855, 83353, 'eighty-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(10856, 18824, 'eighteen thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(10857, 64499, 'sixty-four thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(10858, 1897, 'one thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(10859, 24645, 'twenty-four thousand six hundred forty-five');\nINSERT INTO t2 VALUES(10860, 84415, 'eighty-four thousand four hundred fifteen');\nINSERT INTO t2 VALUES(10861, 80293, 'eighty thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(10862, 83655, 'eighty-three thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(10863, 77079, 'seventy-seven thousand seventy-nine');\nINSERT INTO t2 VALUES(10864, 87494, 'eighty-seven thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(10865, 20426, 'twenty thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(10866, 25450, 'twenty-five thousand four hundred fifty');\nINSERT INTO t2 VALUES(10867, 46757, 'forty-six thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(10868, 6326, 'six thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(10869, 76854, 'seventy-six thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(10870, 42256, 'forty-two thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(10871, 28333, 'twenty-eight thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(10872, 76827, 'seventy-six thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(10873, 56774, 'fifty-six thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(10874, 20271, 'twenty thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(10875, 33737, 'thirty-three thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(10876, 49849, 'forty-nine thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(10877, 71387, 'seventy-one thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(10878, 84244, 'eighty-four thousand two hundred forty-four');\nINSERT INTO t2 VALUES(10879, 23404, 'twenty-three thousand four hundred four');\nINSERT INTO t2 VALUES(10880, 57105, 'fifty-seven thousand one hundred five');\nINSERT INTO t2 VALUES(10881, 10308, 'ten thousand three hundred eight');\nINSERT INTO t2 VALUES(10882, 53225, 'fifty-three thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(10883, 22316, 'twenty-two thousand three hundred sixteen');\nINSERT INTO t2 VALUES(10884, 55519, 'fifty-five thousand five hundred nineteen');\nINSERT INTO t2 VALUES(10885, 62031, 'sixty-two thousand thirty-one');\nINSERT INTO t2 VALUES(10886, 98416, 'ninety-eight thousand four hundred sixteen');\nINSERT INTO t2 VALUES(10887, 78805, 'seventy-eight thousand eight hundred five');\nINSERT INTO t2 VALUES(10888, 91010, 'ninety-one thousand ten');\nINSERT INTO t2 VALUES(10889, 91909, 'ninety-one thousand nine hundred nine');\nINSERT INTO t2 VALUES(10890, 24768, 'twenty-four thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(10891, 7446, 'seven thousand four hundred forty-six');\nINSERT INTO t2 VALUES(10892, 68281, 'sixty-eight thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(10893, 56866, 'fifty-six thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(10894, 87152, 'eighty-seven thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(10895, 27620, 'twenty-seven thousand six hundred twenty');\nINSERT INTO t2 VALUES(10896, 97035, 'ninety-seven thousand thirty-five');\nINSERT INTO t2 VALUES(10897, 60815, 'sixty thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(10898, 6009, 'six thousand nine');\nINSERT INTO t2 VALUES(10899, 14173, 'fourteen thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(10900, 29077, 'twenty-nine thousand seventy-seven');\nINSERT INTO t2 VALUES(10901, 12808, 'twelve thousand eight hundred eight');\nINSERT INTO t2 VALUES(10902, 39829, 'thirty-nine thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(10903, 97966, 'ninety-seven thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(10904, 687, 'six hundred eighty-seven');\nINSERT INTO t2 VALUES(10905, 16722, 'sixteen thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(10906, 52339, 'fifty-two thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(10907, 11129, 'eleven thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(10908, 12667, 'twelve thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(10909, 76205, 'seventy-six thousand two hundred five');\nINSERT INTO t2 VALUES(10910, 95793, 'ninety-five thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(10911, 24445, 'twenty-four thousand four hundred forty-five');\nINSERT INTO t2 VALUES(10912, 5669, 'five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(10913, 50407, 'fifty thousand four hundred seven');\nINSERT INTO t2 VALUES(10914, 22850, 'twenty-two thousand eight hundred fifty');\nINSERT INTO t2 VALUES(10915, 20959, 'twenty thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(10916, 36678, 'thirty-six thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(10917, 31718, 'thirty-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(10918, 77318, 'seventy-seven thousand three hundred eighteen');\nINSERT INTO t2 VALUES(10919, 30829, 'thirty thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(10920, 21796, 'twenty-one thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(10921, 43332, 'forty-three thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(10922, 85776, 'eighty-five thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(10923, 88671, 'eighty-eight thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(10924, 13810, 'thirteen thousand eight hundred ten');\nINSERT INTO t2 VALUES(10925, 45766, 'forty-five thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(10926, 13213, 'thirteen thousand two hundred thirteen');\nINSERT INTO t2 VALUES(10927, 46815, 'forty-six thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(10928, 17776, 'seventeen thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(10929, 79604, 'seventy-nine thousand six hundred four');\nINSERT INTO t2 VALUES(10930, 56394, 'fifty-six thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(10931, 97400, 'ninety-seven thousand four hundred');\nINSERT INTO t2 VALUES(10932, 88192, 'eighty-eight thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(10933, 73944, 'seventy-three thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(10934, 19323, 'nineteen thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(10935, 48364, 'forty-eight thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(10936, 68051, 'sixty-eight thousand fifty-one');\nINSERT INTO t2 VALUES(10937, 69280, 'sixty-nine thousand two hundred eighty');\nINSERT INTO t2 VALUES(10938, 25227, 'twenty-five thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(10939, 20913, 'twenty thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(10940, 95092, 'ninety-five thousand ninety-two');\nINSERT INTO t2 VALUES(10941, 97423, 'ninety-seven thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(10942, 86661, 'eighty-six thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(10943, 81235, 'eighty-one thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(10944, 74133, 'seventy-four thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(10945, 66947, 'sixty-six thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(10946, 59842, 'fifty-nine thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(10947, 28041, 'twenty-eight thousand forty-one');\nINSERT INTO t2 VALUES(10948, 71678, 'seventy-one thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(10949, 17366, 'seventeen thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(10950, 69829, 'sixty-nine thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(10951, 79703, 'seventy-nine thousand seven hundred three');\nINSERT INTO t2 VALUES(10952, 88285, 'eighty-eight thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(10953, 12128, 'twelve thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(10954, 61107, 'sixty-one thousand one hundred seven');\nINSERT INTO t2 VALUES(10955, 46535, 'forty-six thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(10956, 50874, 'fifty thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(10957, 31829, 'thirty-one thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(10958, 25709, 'twenty-five thousand seven hundred nine');\nINSERT INTO t2 VALUES(10959, 98403, 'ninety-eight thousand four hundred three');\nINSERT INTO t2 VALUES(10960, 18546, 'eighteen thousand five hundred forty-six');\nINSERT INTO t2 VALUES(10961, 96806, 'ninety-six thousand eight hundred six');\nINSERT INTO t2 VALUES(10962, 51320, 'fifty-one thousand three hundred twenty');\nINSERT INTO t2 VALUES(10963, 68888, 'sixty-eight thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(10964, 29801, 'twenty-nine thousand eight hundred one');\nINSERT INTO t2 VALUES(10965, 82083, 'eighty-two thousand eighty-three');\nINSERT INTO t2 VALUES(10966, 80826, 'eighty thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(10967, 25599, 'twenty-five thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(10968, 99441, 'ninety-nine thousand four hundred forty-one');\nINSERT INTO t2 VALUES(10969, 67990, 'sixty-seven thousand nine hundred ninety');\nINSERT INTO t2 VALUES(10970, 86872, 'eighty-six thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(10971, 38112, 'thirty-eight thousand one hundred twelve');\nINSERT INTO t2 VALUES(10972, 83330, 'eighty-three thousand three hundred thirty');\nINSERT INTO t2 VALUES(10973, 23907, 'twenty-three thousand nine hundred seven');\nINSERT INTO t2 VALUES(10974, 92240, 'ninety-two thousand two hundred forty');\nINSERT INTO t2 VALUES(10975, 87860, 'eighty-seven thousand eight hundred sixty');\nINSERT INTO t2 VALUES(10976, 80781, 'eighty thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(10977, 33514, 'thirty-three thousand five hundred fourteen');\nINSERT INTO t2 VALUES(10978, 89202, 'eighty-nine thousand two hundred two');\nINSERT INTO t2 VALUES(10979, 51134, 'fifty-one thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(10980, 13255, 'thirteen thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(10981, 48732, 'forty-eight thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(10982, 71919, 'seventy-one thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(10983, 83827, 'eighty-three thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(10984, 17450, 'seventeen thousand four hundred fifty');\nINSERT INTO t2 VALUES(10985, 16502, 'sixteen thousand five hundred two');\nINSERT INTO t2 VALUES(10986, 71914, 'seventy-one thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(10987, 77896, 'seventy-seven thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(10988, 52849, 'fifty-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(10989, 76570, 'seventy-six thousand five hundred seventy');\nINSERT INTO t2 VALUES(10990, 27514, 'twenty-seven thousand five hundred fourteen');\nINSERT INTO t2 VALUES(10991, 50267, 'fifty thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(10992, 70041, 'seventy thousand forty-one');\nINSERT INTO t2 VALUES(10993, 70264, 'seventy thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(10994, 17474, 'seventeen thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(10995, 71737, 'seventy-one thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(10996, 51956, 'fifty-one thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(10997, 30555, 'thirty thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(10998, 51404, 'fifty-one thousand four hundred four');\nINSERT INTO t2 VALUES(10999, 65603, 'sixty-five thousand six hundred three');\nINSERT INTO t2 VALUES(11000, 89946, 'eighty-nine thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(11001, 95690, 'ninety-five thousand six hundred ninety');\nINSERT INTO t2 VALUES(11002, 44375, 'forty-four thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(11003, 80579, 'eighty thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(11004, 55264, 'fifty-five thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(11005, 5664, 'five thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(11006, 71180, 'seventy-one thousand one hundred eighty');\nINSERT INTO t2 VALUES(11007, 29479, 'twenty-nine thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(11008, 81332, 'eighty-one thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(11009, 74558, 'seventy-four thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(11010, 30712, 'thirty thousand seven hundred twelve');\nINSERT INTO t2 VALUES(11011, 25073, 'twenty-five thousand seventy-three');\nINSERT INTO t2 VALUES(11012, 99322, 'ninety-nine thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(11013, 10091, 'ten thousand ninety-one');\nINSERT INTO t2 VALUES(11014, 54073, 'fifty-four thousand seventy-three');\nINSERT INTO t2 VALUES(11015, 35525, 'thirty-five thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(11016, 38115, 'thirty-eight thousand one hundred fifteen');\nINSERT INTO t2 VALUES(11017, 53515, 'fifty-three thousand five hundred fifteen');\nINSERT INTO t2 VALUES(11018, 54383, 'fifty-four thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(11019, 78708, 'seventy-eight thousand seven hundred eight');\nINSERT INTO t2 VALUES(11020, 70507, 'seventy thousand five hundred seven');\nINSERT INTO t2 VALUES(11021, 86465, 'eighty-six thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(11022, 53726, 'fifty-three thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(11023, 83728, 'eighty-three thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(11024, 98432, 'ninety-eight thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(11025, 72654, 'seventy-two thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(11026, 17398, 'seventeen thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(11027, 93682, 'ninety-three thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(11028, 17142, 'seventeen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(11029, 90899, 'ninety thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(11030, 88618, 'eighty-eight thousand six hundred eighteen');\nINSERT INTO t2 VALUES(11031, 10818, 'ten thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(11032, 11278, 'eleven thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(11033, 49406, 'forty-nine thousand four hundred six');\nINSERT INTO t2 VALUES(11034, 25370, 'twenty-five thousand three hundred seventy');\nINSERT INTO t2 VALUES(11035, 60755, 'sixty thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(11036, 9455, 'nine thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(11037, 52054, 'fifty-two thousand fifty-four');\nINSERT INTO t2 VALUES(11038, 29373, 'twenty-nine thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(11039, 81464, 'eighty-one thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(11040, 78036, 'seventy-eight thousand thirty-six');\nINSERT INTO t2 VALUES(11041, 86589, 'eighty-six thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(11042, 92884, 'ninety-two thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(11043, 20886, 'twenty thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(11044, 45433, 'forty-five thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(11045, 46926, 'forty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(11046, 97624, 'ninety-seven thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(11047, 35001, 'thirty-five thousand one');\nINSERT INTO t2 VALUES(11048, 2896, 'two thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(11049, 2623, 'two thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(11050, 48313, 'forty-eight thousand three hundred thirteen');\nINSERT INTO t2 VALUES(11051, 19472, 'nineteen thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(11052, 65149, 'sixty-five thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(11053, 63538, 'sixty-three thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(11054, 68727, 'sixty-eight thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(11055, 78802, 'seventy-eight thousand eight hundred two');\nINSERT INTO t2 VALUES(11056, 64430, 'sixty-four thousand four hundred thirty');\nINSERT INTO t2 VALUES(11057, 93158, 'ninety-three thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(11058, 77277, 'seventy-seven thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(11059, 30571, 'thirty thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(11060, 6045, 'six thousand forty-five');\nINSERT INTO t2 VALUES(11061, 94702, 'ninety-four thousand seven hundred two');\nINSERT INTO t2 VALUES(11062, 49535, 'forty-nine thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(11063, 35387, 'thirty-five thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(11064, 57822, 'fifty-seven thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(11065, 57331, 'fifty-seven thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(11066, 26207, 'twenty-six thousand two hundred seven');\nINSERT INTO t2 VALUES(11067, 98731, 'ninety-eight thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(11068, 19871, 'nineteen thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(11069, 80542, 'eighty thousand five hundred forty-two');\nINSERT INTO t2 VALUES(11070, 93010, 'ninety-three thousand ten');\nINSERT INTO t2 VALUES(11071, 65983, 'sixty-five thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(11072, 98626, 'ninety-eight thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(11073, 44205, 'forty-four thousand two hundred five');\nINSERT INTO t2 VALUES(11074, 73955, 'seventy-three thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(11075, 68851, 'sixty-eight thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(11076, 83412, 'eighty-three thousand four hundred twelve');\nINSERT INTO t2 VALUES(11077, 65024, 'sixty-five thousand twenty-four');\nINSERT INTO t2 VALUES(11078, 56643, 'fifty-six thousand six hundred forty-three');\nINSERT INTO t2 VALUES(11079, 8944, 'eight thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(11080, 81046, 'eighty-one thousand forty-six');\nINSERT INTO t2 VALUES(11081, 31978, 'thirty-one thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(11082, 26444, 'twenty-six thousand four hundred forty-four');\nINSERT INTO t2 VALUES(11083, 37187, 'thirty-seven thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(11084, 29012, 'twenty-nine thousand twelve');\nINSERT INTO t2 VALUES(11085, 63489, 'sixty-three thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(11086, 25285, 'twenty-five thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(11087, 69593, 'sixty-nine thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(11088, 73612, 'seventy-three thousand six hundred twelve');\nINSERT INTO t2 VALUES(11089, 80948, 'eighty thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(11090, 1773, 'one thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(11091, 21454, 'twenty-one thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(11092, 94047, 'ninety-four thousand forty-seven');\nINSERT INTO t2 VALUES(11093, 82533, 'eighty-two thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(11094, 94783, 'ninety-four thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(11095, 10226, 'ten thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(11096, 26287, 'twenty-six thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(11097, 13571, 'thirteen thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(11098, 84086, 'eighty-four thousand eighty-six');\nINSERT INTO t2 VALUES(11099, 29013, 'twenty-nine thousand thirteen');\nINSERT INTO t2 VALUES(11100, 37013, 'thirty-seven thousand thirteen');\nINSERT INTO t2 VALUES(11101, 2412, 'two thousand four hundred twelve');\nINSERT INTO t2 VALUES(11102, 70505, 'seventy thousand five hundred five');\nINSERT INTO t2 VALUES(11103, 92981, 'ninety-two thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(11104, 655, 'six hundred fifty-five');\nINSERT INTO t2 VALUES(11105, 24216, 'twenty-four thousand two hundred sixteen');\nINSERT INTO t2 VALUES(11106, 72354, 'seventy-two thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(11107, 66760, 'sixty-six thousand seven hundred sixty');\nINSERT INTO t2 VALUES(11108, 73648, 'seventy-three thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(11109, 66951, 'sixty-six thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(11110, 82632, 'eighty-two thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(11111, 14724, 'fourteen thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(11112, 4917, 'four thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(11113, 62041, 'sixty-two thousand forty-one');\nINSERT INTO t2 VALUES(11114, 42471, 'forty-two thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(11115, 14534, 'fourteen thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(11116, 58190, 'fifty-eight thousand one hundred ninety');\nINSERT INTO t2 VALUES(11117, 49776, 'forty-nine thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(11118, 94313, 'ninety-four thousand three hundred thirteen');\nINSERT INTO t2 VALUES(11119, 84177, 'eighty-four thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(11120, 30738, 'thirty thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(11121, 57318, 'fifty-seven thousand three hundred eighteen');\nINSERT INTO t2 VALUES(11122, 95043, 'ninety-five thousand forty-three');\nINSERT INTO t2 VALUES(11123, 58830, 'fifty-eight thousand eight hundred thirty');\nINSERT INTO t2 VALUES(11124, 24284, 'twenty-four thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(11125, 98477, 'ninety-eight thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(11126, 12613, 'twelve thousand six hundred thirteen');\nINSERT INTO t2 VALUES(11127, 37619, 'thirty-seven thousand six hundred nineteen');\nINSERT INTO t2 VALUES(11128, 11500, 'eleven thousand five hundred');\nINSERT INTO t2 VALUES(11129, 55604, 'fifty-five thousand six hundred four');\nINSERT INTO t2 VALUES(11130, 22877, 'twenty-two thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(11131, 16749, 'sixteen thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(11132, 18828, 'eighteen thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(11133, 60940, 'sixty thousand nine hundred forty');\nINSERT INTO t2 VALUES(11134, 48183, 'forty-eight thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(11135, 58944, 'fifty-eight thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(11136, 15084, 'fifteen thousand eighty-four');\nINSERT INTO t2 VALUES(11137, 44036, 'forty-four thousand thirty-six');\nINSERT INTO t2 VALUES(11138, 42693, 'forty-two thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(11139, 54940, 'fifty-four thousand nine hundred forty');\nINSERT INTO t2 VALUES(11140, 23992, 'twenty-three thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(11141, 1492, 'one thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(11142, 31980, 'thirty-one thousand nine hundred eighty');\nINSERT INTO t2 VALUES(11143, 83912, 'eighty-three thousand nine hundred twelve');\nINSERT INTO t2 VALUES(11144, 77782, 'seventy-seven thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(11145, 27882, 'twenty-seven thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(11146, 93825, 'ninety-three thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(11147, 37891, 'thirty-seven thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(11148, 72808, 'seventy-two thousand eight hundred eight');\nINSERT INTO t2 VALUES(11149, 8201, 'eight thousand two hundred one');\nINSERT INTO t2 VALUES(11150, 73251, 'seventy-three thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(11151, 51390, 'fifty-one thousand three hundred ninety');\nINSERT INTO t2 VALUES(11152, 3938, 'three thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(11153, 57, 'fifty-seven');\nINSERT INTO t2 VALUES(11154, 63034, 'sixty-three thousand thirty-four');\nINSERT INTO t2 VALUES(11155, 57609, 'fifty-seven thousand six hundred nine');\nINSERT INTO t2 VALUES(11156, 59675, 'fifty-nine thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(11157, 34098, 'thirty-four thousand ninety-eight');\nINSERT INTO t2 VALUES(11158, 57002, 'fifty-seven thousand two');\nINSERT INTO t2 VALUES(11159, 11066, 'eleven thousand sixty-six');\nINSERT INTO t2 VALUES(11160, 39384, 'thirty-nine thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(11161, 68040, 'sixty-eight thousand forty');\nINSERT INTO t2 VALUES(11162, 35644, 'thirty-five thousand six hundred forty-four');\nINSERT INTO t2 VALUES(11163, 39798, 'thirty-nine thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(11164, 87549, 'eighty-seven thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(11165, 1478, 'one thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(11166, 91272, 'ninety-one thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(11167, 59416, 'fifty-nine thousand four hundred sixteen');\nINSERT INTO t2 VALUES(11168, 66762, 'sixty-six thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(11169, 53341, 'fifty-three thousand three hundred forty-one');\nINSERT INTO t2 VALUES(11170, 38118, 'thirty-eight thousand one hundred eighteen');\nINSERT INTO t2 VALUES(11171, 99703, 'ninety-nine thousand seven hundred three');\nINSERT INTO t2 VALUES(11172, 95658, 'ninety-five thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(11173, 42111, 'forty-two thousand one hundred eleven');\nINSERT INTO t2 VALUES(11174, 37474, 'thirty-seven thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(11175, 5121, 'five thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(11176, 3951, 'three thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(11177, 60485, 'sixty thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(11178, 47007, 'forty-seven thousand seven');\nINSERT INTO t2 VALUES(11179, 19326, 'nineteen thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(11180, 73597, 'seventy-three thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(11181, 3136, 'three thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(11182, 34164, 'thirty-four thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(11183, 40361, 'forty thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(11184, 91454, 'ninety-one thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(11185, 91800, 'ninety-one thousand eight hundred');\nINSERT INTO t2 VALUES(11186, 49879, 'forty-nine thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(11187, 97187, 'ninety-seven thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(11188, 53084, 'fifty-three thousand eighty-four');\nINSERT INTO t2 VALUES(11189, 44839, 'forty-four thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(11190, 8010, 'eight thousand ten');\nINSERT INTO t2 VALUES(11191, 88273, 'eighty-eight thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(11192, 82247, 'eighty-two thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(11193, 38086, 'thirty-eight thousand eighty-six');\nINSERT INTO t2 VALUES(11194, 78740, 'seventy-eight thousand seven hundred forty');\nINSERT INTO t2 VALUES(11195, 80562, 'eighty thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(11196, 17653, 'seventeen thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(11197, 84794, 'eighty-four thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(11198, 19449, 'nineteen thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(11199, 82418, 'eighty-two thousand four hundred eighteen');\nINSERT INTO t2 VALUES(11200, 50280, 'fifty thousand two hundred eighty');\nINSERT INTO t2 VALUES(11201, 44819, 'forty-four thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(11202, 44731, 'forty-four thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(11203, 45659, 'forty-five thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(11204, 88278, 'eighty-eight thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(11205, 62226, 'sixty-two thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(11206, 67097, 'sixty-seven thousand ninety-seven');\nINSERT INTO t2 VALUES(11207, 56630, 'fifty-six thousand six hundred thirty');\nINSERT INTO t2 VALUES(11208, 98209, 'ninety-eight thousand two hundred nine');\nINSERT INTO t2 VALUES(11209, 4773, 'four thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(11210, 78222, 'seventy-eight thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(11211, 65454, 'sixty-five thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(11212, 16231, 'sixteen thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(11213, 98520, 'ninety-eight thousand five hundred twenty');\nINSERT INTO t2 VALUES(11214, 45929, 'forty-five thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(11215, 71350, 'seventy-one thousand three hundred fifty');\nINSERT INTO t2 VALUES(11216, 91623, 'ninety-one thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(11217, 69422, 'sixty-nine thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(11218, 45140, 'forty-five thousand one hundred forty');\nINSERT INTO t2 VALUES(11219, 9926, 'nine thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(11220, 25606, 'twenty-five thousand six hundred six');\nINSERT INTO t2 VALUES(11221, 67415, 'sixty-seven thousand four hundred fifteen');\nINSERT INTO t2 VALUES(11222, 4901, 'four thousand nine hundred one');\nINSERT INTO t2 VALUES(11223, 54286, 'fifty-four thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(11224, 43243, 'forty-three thousand two hundred forty-three');\nINSERT INTO t2 VALUES(11225, 97005, 'ninety-seven thousand five');\nINSERT INTO t2 VALUES(11226, 58465, 'fifty-eight thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(11227, 23787, 'twenty-three thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(11228, 44946, 'forty-four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(11229, 13309, 'thirteen thousand three hundred nine');\nINSERT INTO t2 VALUES(11230, 79963, 'seventy-nine thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(11231, 96714, 'ninety-six thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(11232, 12624, 'twelve thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(11233, 24612, 'twenty-four thousand six hundred twelve');\nINSERT INTO t2 VALUES(11234, 54446, 'fifty-four thousand four hundred forty-six');\nINSERT INTO t2 VALUES(11235, 50194, 'fifty thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(11236, 70959, 'seventy thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(11237, 8674, 'eight thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(11238, 32088, 'thirty-two thousand eighty-eight');\nINSERT INTO t2 VALUES(11239, 22540, 'twenty-two thousand five hundred forty');\nINSERT INTO t2 VALUES(11240, 74948, 'seventy-four thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(11241, 52210, 'fifty-two thousand two hundred ten');\nINSERT INTO t2 VALUES(11242, 97912, 'ninety-seven thousand nine hundred twelve');\nINSERT INTO t2 VALUES(11243, 36294, 'thirty-six thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(11244, 9121, 'nine thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(11245, 8471, 'eight thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(11246, 40388, 'forty thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(11247, 27986, 'twenty-seven thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(11248, 81506, 'eighty-one thousand five hundred six');\nINSERT INTO t2 VALUES(11249, 4755, 'four thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(11250, 2410, 'two thousand four hundred ten');\nINSERT INTO t2 VALUES(11251, 77363, 'seventy-seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(11252, 96853, 'ninety-six thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(11253, 34296, 'thirty-four thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(11254, 65621, 'sixty-five thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(11255, 70002, 'seventy thousand two');\nINSERT INTO t2 VALUES(11256, 53791, 'fifty-three thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(11257, 82414, 'eighty-two thousand four hundred fourteen');\nINSERT INTO t2 VALUES(11258, 5405, 'five thousand four hundred five');\nINSERT INTO t2 VALUES(11259, 87720, 'eighty-seven thousand seven hundred twenty');\nINSERT INTO t2 VALUES(11260, 63913, 'sixty-three thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(11261, 77891, 'seventy-seven thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(11262, 94606, 'ninety-four thousand six hundred six');\nINSERT INTO t2 VALUES(11263, 85213, 'eighty-five thousand two hundred thirteen');\nINSERT INTO t2 VALUES(11264, 38974, 'thirty-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(11265, 99226, 'ninety-nine thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(11266, 9572, 'nine thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(11267, 57776, 'fifty-seven thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(11268, 51724, 'fifty-one thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(11269, 16859, 'sixteen thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(11270, 18462, 'eighteen thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(11271, 12263, 'twelve thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(11272, 3997, 'three thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(11273, 79652, 'seventy-nine thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(11274, 43995, 'forty-three thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(11275, 11411, 'eleven thousand four hundred eleven');\nINSERT INTO t2 VALUES(11276, 39174, 'thirty-nine thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(11277, 46702, 'forty-six thousand seven hundred two');\nINSERT INTO t2 VALUES(11278, 79103, 'seventy-nine thousand one hundred three');\nINSERT INTO t2 VALUES(11279, 49238, 'forty-nine thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(11280, 55764, 'fifty-five thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(11281, 86412, 'eighty-six thousand four hundred twelve');\nINSERT INTO t2 VALUES(11282, 21709, 'twenty-one thousand seven hundred nine');\nINSERT INTO t2 VALUES(11283, 70217, 'seventy thousand two hundred seventeen');\nINSERT INTO t2 VALUES(11284, 64361, 'sixty-four thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(11285, 51986, 'fifty-one thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(11286, 68338, 'sixty-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(11287, 76554, 'seventy-six thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(11288, 49223, 'forty-nine thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(11289, 66987, 'sixty-six thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(11290, 56180, 'fifty-six thousand one hundred eighty');\nINSERT INTO t2 VALUES(11291, 12501, 'twelve thousand five hundred one');\nINSERT INTO t2 VALUES(11292, 18213, 'eighteen thousand two hundred thirteen');\nINSERT INTO t2 VALUES(11293, 4998, 'four thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(11294, 71028, 'seventy-one thousand twenty-eight');\nINSERT INTO t2 VALUES(11295, 682, 'six hundred eighty-two');\nINSERT INTO t2 VALUES(11296, 69445, 'sixty-nine thousand four hundred forty-five');\nINSERT INTO t2 VALUES(11297, 96604, 'ninety-six thousand six hundred four');\nINSERT INTO t2 VALUES(11298, 72066, 'seventy-two thousand sixty-six');\nINSERT INTO t2 VALUES(11299, 41132, 'forty-one thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(11300, 97323, 'ninety-seven thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(11301, 17820, 'seventeen thousand eight hundred twenty');\nINSERT INTO t2 VALUES(11302, 26196, 'twenty-six thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(11303, 1358, 'one thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(11304, 49685, 'forty-nine thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(11305, 81597, 'eighty-one thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(11306, 48301, 'forty-eight thousand three hundred one');\nINSERT INTO t2 VALUES(11307, 99068, 'ninety-nine thousand sixty-eight');\nINSERT INTO t2 VALUES(11308, 55647, 'fifty-five thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(11309, 95134, 'ninety-five thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(11310, 58462, 'fifty-eight thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(11311, 60162, 'sixty thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(11312, 37805, 'thirty-seven thousand eight hundred five');\nINSERT INTO t2 VALUES(11313, 87966, 'eighty-seven thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(11314, 19272, 'nineteen thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(11315, 5036, 'five thousand thirty-six');\nINSERT INTO t2 VALUES(11316, 25234, 'twenty-five thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(11317, 99980, 'ninety-nine thousand nine hundred eighty');\nINSERT INTO t2 VALUES(11318, 18415, 'eighteen thousand four hundred fifteen');\nINSERT INTO t2 VALUES(11319, 99659, 'ninety-nine thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(11320, 8262, 'eight thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(11321, 63517, 'sixty-three thousand five hundred seventeen');\nINSERT INTO t2 VALUES(11322, 93941, 'ninety-three thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(11323, 41639, 'forty-one thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(11324, 58264, 'fifty-eight thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(11325, 43052, 'forty-three thousand fifty-two');\nINSERT INTO t2 VALUES(11326, 17263, 'seventeen thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(11327, 84864, 'eighty-four thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(11328, 95325, 'ninety-five thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(11329, 39384, 'thirty-nine thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(11330, 86682, 'eighty-six thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(11331, 94815, 'ninety-four thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(11332, 34357, 'thirty-four thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(11333, 18962, 'eighteen thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(11334, 92813, 'ninety-two thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(11335, 20683, 'twenty thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(11336, 67774, 'sixty-seven thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(11337, 2195, 'two thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(11338, 44505, 'forty-four thousand five hundred five');\nINSERT INTO t2 VALUES(11339, 32619, 'thirty-two thousand six hundred nineteen');\nINSERT INTO t2 VALUES(11340, 97144, 'ninety-seven thousand one hundred forty-four');\nINSERT INTO t2 VALUES(11341, 65466, 'sixty-five thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(11342, 93088, 'ninety-three thousand eighty-eight');\nINSERT INTO t2 VALUES(11343, 82054, 'eighty-two thousand fifty-four');\nINSERT INTO t2 VALUES(11344, 44290, 'forty-four thousand two hundred ninety');\nINSERT INTO t2 VALUES(11345, 90710, 'ninety thousand seven hundred ten');\nINSERT INTO t2 VALUES(11346, 78039, 'seventy-eight thousand thirty-nine');\nINSERT INTO t2 VALUES(11347, 97936, 'ninety-seven thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(11348, 84543, 'eighty-four thousand five hundred forty-three');\nINSERT INTO t2 VALUES(11349, 4454, 'four thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(11350, 64766, 'sixty-four thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(11351, 98230, 'ninety-eight thousand two hundred thirty');\nINSERT INTO t2 VALUES(11352, 80456, 'eighty thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(11353, 97469, 'ninety-seven thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(11354, 29708, 'twenty-nine thousand seven hundred eight');\nINSERT INTO t2 VALUES(11355, 72899, 'seventy-two thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(11356, 84166, 'eighty-four thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(11357, 44137, 'forty-four thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(11358, 90092, 'ninety thousand ninety-two');\nINSERT INTO t2 VALUES(11359, 25981, 'twenty-five thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(11360, 54521, 'fifty-four thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(11361, 10960, 'ten thousand nine hundred sixty');\nINSERT INTO t2 VALUES(11362, 97533, 'ninety-seven thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(11363, 38415, 'thirty-eight thousand four hundred fifteen');\nINSERT INTO t2 VALUES(11364, 82531, 'eighty-two thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(11365, 25737, 'twenty-five thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(11366, 72723, 'seventy-two thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(11367, 11245, 'eleven thousand two hundred forty-five');\nINSERT INTO t2 VALUES(11368, 72638, 'seventy-two thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(11369, 35158, 'thirty-five thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(11370, 10151, 'ten thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(11371, 98778, 'ninety-eight thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(11372, 64933, 'sixty-four thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(11373, 5031, 'five thousand thirty-one');\nINSERT INTO t2 VALUES(11374, 57671, 'fifty-seven thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(11375, 89451, 'eighty-nine thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(11376, 97789, 'ninety-seven thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(11377, 22269, 'twenty-two thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(11378, 28418, 'twenty-eight thousand four hundred eighteen');\nINSERT INTO t2 VALUES(11379, 79055, 'seventy-nine thousand fifty-five');\nINSERT INTO t2 VALUES(11380, 53497, 'fifty-three thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(11381, 73553, 'seventy-three thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(11382, 28232, 'twenty-eight thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(11383, 44596, 'forty-four thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(11384, 32902, 'thirty-two thousand nine hundred two');\nINSERT INTO t2 VALUES(11385, 75976, 'seventy-five thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(11386, 24375, 'twenty-four thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(11387, 19413, 'nineteen thousand four hundred thirteen');\nINSERT INTO t2 VALUES(11388, 30768, 'thirty thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(11389, 54280, 'fifty-four thousand two hundred eighty');\nINSERT INTO t2 VALUES(11390, 92101, 'ninety-two thousand one hundred one');\nINSERT INTO t2 VALUES(11391, 63374, 'sixty-three thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(11392, 46798, 'forty-six thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(11393, 67780, 'sixty-seven thousand seven hundred eighty');\nINSERT INTO t2 VALUES(11394, 91916, 'ninety-one thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(11395, 15311, 'fifteen thousand three hundred eleven');\nINSERT INTO t2 VALUES(11396, 36292, 'thirty-six thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(11397, 1411, 'one thousand four hundred eleven');\nINSERT INTO t2 VALUES(11398, 48828, 'forty-eight thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(11399, 74199, 'seventy-four thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(11400, 38939, 'thirty-eight thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(11401, 8412, 'eight thousand four hundred twelve');\nINSERT INTO t2 VALUES(11402, 64788, 'sixty-four thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(11403, 27639, 'twenty-seven thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(11404, 2082, 'two thousand eighty-two');\nINSERT INTO t2 VALUES(11405, 60516, 'sixty thousand five hundred sixteen');\nINSERT INTO t2 VALUES(11406, 41992, 'forty-one thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(11407, 63459, 'sixty-three thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(11408, 22722, 'twenty-two thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(11409, 5917, 'five thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(11410, 19909, 'nineteen thousand nine hundred nine');\nINSERT INTO t2 VALUES(11411, 30427, 'thirty thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(11412, 96446, 'ninety-six thousand four hundred forty-six');\nINSERT INTO t2 VALUES(11413, 18572, 'eighteen thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(11414, 15934, 'fifteen thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(11415, 50971, 'fifty thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(11416, 11234, 'eleven thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(11417, 70857, 'seventy thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(11418, 47694, 'forty-seven thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(11419, 69520, 'sixty-nine thousand five hundred twenty');\nINSERT INTO t2 VALUES(11420, 35356, 'thirty-five thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(11421, 33500, 'thirty-three thousand five hundred');\nINSERT INTO t2 VALUES(11422, 58444, 'fifty-eight thousand four hundred forty-four');\nINSERT INTO t2 VALUES(11423, 77609, 'seventy-seven thousand six hundred nine');\nINSERT INTO t2 VALUES(11424, 69195, 'sixty-nine thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(11425, 26739, 'twenty-six thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(11426, 83383, 'eighty-three thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(11427, 78422, 'seventy-eight thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(11428, 84205, 'eighty-four thousand two hundred five');\nINSERT INTO t2 VALUES(11429, 66904, 'sixty-six thousand nine hundred four');\nINSERT INTO t2 VALUES(11430, 39264, 'thirty-nine thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(11431, 28084, 'twenty-eight thousand eighty-four');\nINSERT INTO t2 VALUES(11432, 82944, 'eighty-two thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(11433, 83718, 'eighty-three thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(11434, 89759, 'eighty-nine thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(11435, 91386, 'ninety-one thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(11436, 10329, 'ten thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(11437, 55462, 'fifty-five thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(11438, 58996, 'fifty-eight thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(11439, 26648, 'twenty-six thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(11440, 29325, 'twenty-nine thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(11441, 72918, 'seventy-two thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(11442, 14732, 'fourteen thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(11443, 3321, 'three thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(11444, 47202, 'forty-seven thousand two hundred two');\nINSERT INTO t2 VALUES(11445, 37812, 'thirty-seven thousand eight hundred twelve');\nINSERT INTO t2 VALUES(11446, 21032, 'twenty-one thousand thirty-two');\nINSERT INTO t2 VALUES(11447, 81871, 'eighty-one thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(11448, 50975, 'fifty thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(11449, 57084, 'fifty-seven thousand eighty-four');\nINSERT INTO t2 VALUES(11450, 33860, 'thirty-three thousand eight hundred sixty');\nINSERT INTO t2 VALUES(11451, 8294, 'eight thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(11452, 50084, 'fifty thousand eighty-four');\nINSERT INTO t2 VALUES(11453, 21911, 'twenty-one thousand nine hundred eleven');\nINSERT INTO t2 VALUES(11454, 36990, 'thirty-six thousand nine hundred ninety');\nINSERT INTO t2 VALUES(11455, 94253, 'ninety-four thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(11456, 11338, 'eleven thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(11457, 92754, 'ninety-two thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(11458, 98163, 'ninety-eight thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(11459, 27244, 'twenty-seven thousand two hundred forty-four');\nINSERT INTO t2 VALUES(11460, 24958, 'twenty-four thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(11461, 40685, 'forty thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(11462, 52858, 'fifty-two thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(11463, 18989, 'eighteen thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(11464, 49621, 'forty-nine thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(11465, 3621, 'three thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(11466, 17378, 'seventeen thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(11467, 15046, 'fifteen thousand forty-six');\nINSERT INTO t2 VALUES(11468, 41537, 'forty-one thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(11469, 4487, 'four thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(11470, 28446, 'twenty-eight thousand four hundred forty-six');\nINSERT INTO t2 VALUES(11471, 87330, 'eighty-seven thousand three hundred thirty');\nINSERT INTO t2 VALUES(11472, 9864, 'nine thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(11473, 78678, 'seventy-eight thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(11474, 61738, 'sixty-one thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(11475, 32515, 'thirty-two thousand five hundred fifteen');\nINSERT INTO t2 VALUES(11476, 54501, 'fifty-four thousand five hundred one');\nINSERT INTO t2 VALUES(11477, 28080, 'twenty-eight thousand eighty');\nINSERT INTO t2 VALUES(11478, 80667, 'eighty thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(11479, 41590, 'forty-one thousand five hundred ninety');\nINSERT INTO t2 VALUES(11480, 59287, 'fifty-nine thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(11481, 29845, 'twenty-nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(11482, 19612, 'nineteen thousand six hundred twelve');\nINSERT INTO t2 VALUES(11483, 56760, 'fifty-six thousand seven hundred sixty');\nINSERT INTO t2 VALUES(11484, 59205, 'fifty-nine thousand two hundred five');\nINSERT INTO t2 VALUES(11485, 3400, 'three thousand four hundred');\nINSERT INTO t2 VALUES(11486, 6700, 'six thousand seven hundred');\nINSERT INTO t2 VALUES(11487, 25784, 'twenty-five thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(11488, 19886, 'nineteen thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(11489, 74984, 'seventy-four thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(11490, 3878, 'three thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(11491, 93780, 'ninety-three thousand seven hundred eighty');\nINSERT INTO t2 VALUES(11492, 76292, 'seventy-six thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(11493, 57769, 'fifty-seven thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(11494, 11048, 'eleven thousand forty-eight');\nINSERT INTO t2 VALUES(11495, 87273, 'eighty-seven thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(11496, 82585, 'eighty-two thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(11497, 40590, 'forty thousand five hundred ninety');\nINSERT INTO t2 VALUES(11498, 86326, 'eighty-six thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(11499, 71296, 'seventy-one thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(11500, 75529, 'seventy-five thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(11501, 22983, 'twenty-two thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(11502, 75241, 'seventy-five thousand two hundred forty-one');\nINSERT INTO t2 VALUES(11503, 22661, 'twenty-two thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(11504, 15292, 'fifteen thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(11505, 33737, 'thirty-three thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(11506, 86442, 'eighty-six thousand four hundred forty-two');\nINSERT INTO t2 VALUES(11507, 38103, 'thirty-eight thousand one hundred three');\nINSERT INTO t2 VALUES(11508, 12856, 'twelve thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(11509, 91418, 'ninety-one thousand four hundred eighteen');\nINSERT INTO t2 VALUES(11510, 41216, 'forty-one thousand two hundred sixteen');\nINSERT INTO t2 VALUES(11511, 88053, 'eighty-eight thousand fifty-three');\nINSERT INTO t2 VALUES(11512, 16632, 'sixteen thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(11513, 3301, 'three thousand three hundred one');\nINSERT INTO t2 VALUES(11514, 40509, 'forty thousand five hundred nine');\nINSERT INTO t2 VALUES(11515, 55230, 'fifty-five thousand two hundred thirty');\nINSERT INTO t2 VALUES(11516, 48768, 'forty-eight thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(11517, 25557, 'twenty-five thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(11518, 99963, 'ninety-nine thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(11519, 87785, 'eighty-seven thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(11520, 22195, 'twenty-two thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(11521, 22650, 'twenty-two thousand six hundred fifty');\nINSERT INTO t2 VALUES(11522, 78557, 'seventy-eight thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(11523, 27753, 'twenty-seven thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(11524, 13636, 'thirteen thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(11525, 78658, 'seventy-eight thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(11526, 11699, 'eleven thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(11527, 28448, 'twenty-eight thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(11528, 55043, 'fifty-five thousand forty-three');\nINSERT INTO t2 VALUES(11529, 99425, 'ninety-nine thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(11530, 39744, 'thirty-nine thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(11531, 50342, 'fifty thousand three hundred forty-two');\nINSERT INTO t2 VALUES(11532, 77911, 'seventy-seven thousand nine hundred eleven');\nINSERT INTO t2 VALUES(11533, 88221, 'eighty-eight thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(11534, 81782, 'eighty-one thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(11535, 40313, 'forty thousand three hundred thirteen');\nINSERT INTO t2 VALUES(11536, 30474, 'thirty thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(11537, 81654, 'eighty-one thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(11538, 46081, 'forty-six thousand eighty-one');\nINSERT INTO t2 VALUES(11539, 55466, 'fifty-five thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(11540, 48454, 'forty-eight thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(11541, 66152, 'sixty-six thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(11542, 27506, 'twenty-seven thousand five hundred six');\nINSERT INTO t2 VALUES(11543, 95044, 'ninety-five thousand forty-four');\nINSERT INTO t2 VALUES(11544, 94203, 'ninety-four thousand two hundred three');\nINSERT INTO t2 VALUES(11545, 78778, 'seventy-eight thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(11546, 45039, 'forty-five thousand thirty-nine');\nINSERT INTO t2 VALUES(11547, 39406, 'thirty-nine thousand four hundred six');\nINSERT INTO t2 VALUES(11548, 86168, 'eighty-six thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(11549, 43540, 'forty-three thousand five hundred forty');\nINSERT INTO t2 VALUES(11550, 27572, 'twenty-seven thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(11551, 73728, 'seventy-three thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(11552, 25816, 'twenty-five thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(11553, 36768, 'thirty-six thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(11554, 34951, 'thirty-four thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(11555, 95059, 'ninety-five thousand fifty-nine');\nINSERT INTO t2 VALUES(11556, 30835, 'thirty thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(11557, 60341, 'sixty thousand three hundred forty-one');\nINSERT INTO t2 VALUES(11558, 82900, 'eighty-two thousand nine hundred');\nINSERT INTO t2 VALUES(11559, 81691, 'eighty-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(11560, 25799, 'twenty-five thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(11561, 94758, 'ninety-four thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(11562, 69261, 'sixty-nine thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(11563, 29110, 'twenty-nine thousand one hundred ten');\nINSERT INTO t2 VALUES(11564, 65144, 'sixty-five thousand one hundred forty-four');\nINSERT INTO t2 VALUES(11565, 74266, 'seventy-four thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(11566, 94472, 'ninety-four thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(11567, 58557, 'fifty-eight thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(11568, 915, 'nine hundred fifteen');\nINSERT INTO t2 VALUES(11569, 70276, 'seventy thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(11570, 24671, 'twenty-four thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(11571, 53119, 'fifty-three thousand one hundred nineteen');\nINSERT INTO t2 VALUES(11572, 37604, 'thirty-seven thousand six hundred four');\nINSERT INTO t2 VALUES(11573, 55582, 'fifty-five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(11574, 77352, 'seventy-seven thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(11575, 21073, 'twenty-one thousand seventy-three');\nINSERT INTO t2 VALUES(11576, 2906, 'two thousand nine hundred six');\nINSERT INTO t2 VALUES(11577, 25103, 'twenty-five thousand one hundred three');\nINSERT INTO t2 VALUES(11578, 78848, 'seventy-eight thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(11579, 93961, 'ninety-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(11580, 24452, 'twenty-four thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(11581, 655, 'six hundred fifty-five');\nINSERT INTO t2 VALUES(11582, 23581, 'twenty-three thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(11583, 11271, 'eleven thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(11584, 3988, 'three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(11585, 47170, 'forty-seven thousand one hundred seventy');\nINSERT INTO t2 VALUES(11586, 7551, 'seven thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(11587, 89706, 'eighty-nine thousand seven hundred six');\nINSERT INTO t2 VALUES(11588, 2722, 'two thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(11589, 5827, 'five thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(11590, 37014, 'thirty-seven thousand fourteen');\nINSERT INTO t2 VALUES(11591, 80512, 'eighty thousand five hundred twelve');\nINSERT INTO t2 VALUES(11592, 86931, 'eighty-six thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(11593, 3692, 'three thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(11594, 35041, 'thirty-five thousand forty-one');\nINSERT INTO t2 VALUES(11595, 79204, 'seventy-nine thousand two hundred four');\nINSERT INTO t2 VALUES(11596, 90127, 'ninety thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(11597, 93917, 'ninety-three thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(11598, 17719, 'seventeen thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(11599, 38939, 'thirty-eight thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(11600, 65091, 'sixty-five thousand ninety-one');\nINSERT INTO t2 VALUES(11601, 88889, 'eighty-eight thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(11602, 90521, 'ninety thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(11603, 9186, 'nine thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(11604, 99879, 'ninety-nine thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(11605, 19362, 'nineteen thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(11606, 39854, 'thirty-nine thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(11607, 35175, 'thirty-five thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(11608, 80696, 'eighty thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(11609, 82112, 'eighty-two thousand one hundred twelve');\nINSERT INTO t2 VALUES(11610, 62532, 'sixty-two thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(11611, 86508, 'eighty-six thousand five hundred eight');\nINSERT INTO t2 VALUES(11612, 22622, 'twenty-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(11613, 53400, 'fifty-three thousand four hundred');\nINSERT INTO t2 VALUES(11614, 97074, 'ninety-seven thousand seventy-four');\nINSERT INTO t2 VALUES(11615, 7015, 'seven thousand fifteen');\nINSERT INTO t2 VALUES(11616, 96968, 'ninety-six thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(11617, 50906, 'fifty thousand nine hundred six');\nINSERT INTO t2 VALUES(11618, 43056, 'forty-three thousand fifty-six');\nINSERT INTO t2 VALUES(11619, 88245, 'eighty-eight thousand two hundred forty-five');\nINSERT INTO t2 VALUES(11620, 94630, 'ninety-four thousand six hundred thirty');\nINSERT INTO t2 VALUES(11621, 19938, 'nineteen thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(11622, 58807, 'fifty-eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(11623, 3789, 'three thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(11624, 51857, 'fifty-one thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(11625, 5078, 'five thousand seventy-eight');\nINSERT INTO t2 VALUES(11626, 97253, 'ninety-seven thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(11627, 12749, 'twelve thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(11628, 59149, 'fifty-nine thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(11629, 1930, 'one thousand nine hundred thirty');\nINSERT INTO t2 VALUES(11630, 11491, 'eleven thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(11631, 92160, 'ninety-two thousand one hundred sixty');\nINSERT INTO t2 VALUES(11632, 78798, 'seventy-eight thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(11633, 99457, 'ninety-nine thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(11634, 88198, 'eighty-eight thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(11635, 83208, 'eighty-three thousand two hundred eight');\nINSERT INTO t2 VALUES(11636, 55187, 'fifty-five thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(11637, 14457, 'fourteen thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(11638, 36275, 'thirty-six thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(11639, 19125, 'nineteen thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(11640, 57261, 'fifty-seven thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(11641, 79264, 'seventy-nine thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(11642, 27963, 'twenty-seven thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(11643, 97746, 'ninety-seven thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(11644, 59654, 'fifty-nine thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(11645, 85754, 'eighty-five thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(11646, 95921, 'ninety-five thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(11647, 63436, 'sixty-three thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(11648, 14110, 'fourteen thousand one hundred ten');\nINSERT INTO t2 VALUES(11649, 61418, 'sixty-one thousand four hundred eighteen');\nINSERT INTO t2 VALUES(11650, 31755, 'thirty-one thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(11651, 67385, 'sixty-seven thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(11652, 20453, 'twenty thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(11653, 69497, 'sixty-nine thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(11654, 74906, 'seventy-four thousand nine hundred six');\nINSERT INTO t2 VALUES(11655, 79118, 'seventy-nine thousand one hundred eighteen');\nINSERT INTO t2 VALUES(11656, 80095, 'eighty thousand ninety-five');\nINSERT INTO t2 VALUES(11657, 51949, 'fifty-one thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(11658, 42010, 'forty-two thousand ten');\nINSERT INTO t2 VALUES(11659, 97668, 'ninety-seven thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(11660, 11900, 'eleven thousand nine hundred');\nINSERT INTO t2 VALUES(11661, 79948, 'seventy-nine thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(11662, 27477, 'twenty-seven thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(11663, 84663, 'eighty-four thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(11664, 12813, 'twelve thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(11665, 14113, 'fourteen thousand one hundred thirteen');\nINSERT INTO t2 VALUES(11666, 78422, 'seventy-eight thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(11667, 62573, 'sixty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(11668, 93457, 'ninety-three thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(11669, 3905, 'three thousand nine hundred five');\nINSERT INTO t2 VALUES(11670, 96751, 'ninety-six thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(11671, 27515, 'twenty-seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(11672, 89238, 'eighty-nine thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(11673, 79207, 'seventy-nine thousand two hundred seven');\nINSERT INTO t2 VALUES(11674, 52155, 'fifty-two thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(11675, 66379, 'sixty-six thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(11676, 82828, 'eighty-two thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(11677, 28213, 'twenty-eight thousand two hundred thirteen');\nINSERT INTO t2 VALUES(11678, 14871, 'fourteen thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(11679, 56550, 'fifty-six thousand five hundred fifty');\nINSERT INTO t2 VALUES(11680, 52816, 'fifty-two thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(11681, 18178, 'eighteen thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(11682, 69353, 'sixty-nine thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(11683, 59914, 'fifty-nine thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(11684, 562, 'five hundred sixty-two');\nINSERT INTO t2 VALUES(11685, 45702, 'forty-five thousand seven hundred two');\nINSERT INTO t2 VALUES(11686, 82182, 'eighty-two thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(11687, 13595, 'thirteen thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(11688, 24475, 'twenty-four thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(11689, 59214, 'fifty-nine thousand two hundred fourteen');\nINSERT INTO t2 VALUES(11690, 10141, 'ten thousand one hundred forty-one');\nINSERT INTO t2 VALUES(11691, 75815, 'seventy-five thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(11692, 34818, 'thirty-four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(11693, 33234, 'thirty-three thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(11694, 44507, 'forty-four thousand five hundred seven');\nINSERT INTO t2 VALUES(11695, 38488, 'thirty-eight thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(11696, 14629, 'fourteen thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(11697, 39234, 'thirty-nine thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(11698, 44093, 'forty-four thousand ninety-three');\nINSERT INTO t2 VALUES(11699, 64442, 'sixty-four thousand four hundred forty-two');\nINSERT INTO t2 VALUES(11700, 33592, 'thirty-three thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(11701, 92143, 'ninety-two thousand one hundred forty-three');\nINSERT INTO t2 VALUES(11702, 91737, 'ninety-one thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(11703, 13863, 'thirteen thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(11704, 89828, 'eighty-nine thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(11705, 75670, 'seventy-five thousand six hundred seventy');\nINSERT INTO t2 VALUES(11706, 26145, 'twenty-six thousand one hundred forty-five');\nINSERT INTO t2 VALUES(11707, 79179, 'seventy-nine thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(11708, 56352, 'fifty-six thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(11709, 31213, 'thirty-one thousand two hundred thirteen');\nINSERT INTO t2 VALUES(11710, 31000, 'thirty-one thousand');\nINSERT INTO t2 VALUES(11711, 13600, 'thirteen thousand six hundred');\nINSERT INTO t2 VALUES(11712, 2726, 'two thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(11713, 11741, 'eleven thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(11714, 33712, 'thirty-three thousand seven hundred twelve');\nINSERT INTO t2 VALUES(11715, 8952, 'eight thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(11716, 48531, 'forty-eight thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(11717, 17784, 'seventeen thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(11718, 42203, 'forty-two thousand two hundred three');\nINSERT INTO t2 VALUES(11719, 40299, 'forty thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(11720, 11575, 'eleven thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(11721, 70826, 'seventy thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(11722, 39325, 'thirty-nine thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(11723, 12430, 'twelve thousand four hundred thirty');\nINSERT INTO t2 VALUES(11724, 20568, 'twenty thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(11725, 46411, 'forty-six thousand four hundred eleven');\nINSERT INTO t2 VALUES(11726, 43225, 'forty-three thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(11727, 74946, 'seventy-four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(11728, 38168, 'thirty-eight thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(11729, 97285, 'ninety-seven thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(11730, 25114, 'twenty-five thousand one hundred fourteen');\nINSERT INTO t2 VALUES(11731, 97553, 'ninety-seven thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(11732, 55344, 'fifty-five thousand three hundred forty-four');\nINSERT INTO t2 VALUES(11733, 46716, 'forty-six thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(11734, 1349, 'one thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(11735, 18571, 'eighteen thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(11736, 81118, 'eighty-one thousand one hundred eighteen');\nINSERT INTO t2 VALUES(11737, 2245, 'two thousand two hundred forty-five');\nINSERT INTO t2 VALUES(11738, 43621, 'forty-three thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(11739, 53745, 'fifty-three thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(11740, 19570, 'nineteen thousand five hundred seventy');\nINSERT INTO t2 VALUES(11741, 95121, 'ninety-five thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(11742, 41019, 'forty-one thousand nineteen');\nINSERT INTO t2 VALUES(11743, 84235, 'eighty-four thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(11744, 62069, 'sixty-two thousand sixty-nine');\nINSERT INTO t2 VALUES(11745, 12518, 'twelve thousand five hundred eighteen');\nINSERT INTO t2 VALUES(11746, 32230, 'thirty-two thousand two hundred thirty');\nINSERT INTO t2 VALUES(11747, 47606, 'forty-seven thousand six hundred six');\nINSERT INTO t2 VALUES(11748, 36829, 'thirty-six thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(11749, 53947, 'fifty-three thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(11750, 76149, 'seventy-six thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(11751, 62405, 'sixty-two thousand four hundred five');\nINSERT INTO t2 VALUES(11752, 69111, 'sixty-nine thousand one hundred eleven');\nINSERT INTO t2 VALUES(11753, 1164, 'one thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(11754, 11790, 'eleven thousand seven hundred ninety');\nINSERT INTO t2 VALUES(11755, 31454, 'thirty-one thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(11756, 76515, 'seventy-six thousand five hundred fifteen');\nINSERT INTO t2 VALUES(11757, 91747, 'ninety-one thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(11758, 49758, 'forty-nine thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(11759, 49956, 'forty-nine thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(11760, 16991, 'sixteen thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(11761, 32057, 'thirty-two thousand fifty-seven');\nINSERT INTO t2 VALUES(11762, 97275, 'ninety-seven thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(11763, 9684, 'nine thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(11764, 75187, 'seventy-five thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(11765, 58824, 'fifty-eight thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(11766, 37976, 'thirty-seven thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(11767, 95642, 'ninety-five thousand six hundred forty-two');\nINSERT INTO t2 VALUES(11768, 15224, 'fifteen thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(11769, 81348, 'eighty-one thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(11770, 53234, 'fifty-three thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(11771, 86414, 'eighty-six thousand four hundred fourteen');\nINSERT INTO t2 VALUES(11772, 8898, 'eight thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(11773, 64085, 'sixty-four thousand eighty-five');\nINSERT INTO t2 VALUES(11774, 97702, 'ninety-seven thousand seven hundred two');\nINSERT INTO t2 VALUES(11775, 966, 'nine hundred sixty-six');\nINSERT INTO t2 VALUES(11776, 84065, 'eighty-four thousand sixty-five');\nINSERT INTO t2 VALUES(11777, 70166, 'seventy thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(11778, 41677, 'forty-one thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(11779, 88721, 'eighty-eight thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(11780, 92083, 'ninety-two thousand eighty-three');\nINSERT INTO t2 VALUES(11781, 24249, 'twenty-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(11782, 32369, 'thirty-two thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(11783, 67490, 'sixty-seven thousand four hundred ninety');\nINSERT INTO t2 VALUES(11784, 92358, 'ninety-two thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(11785, 97952, 'ninety-seven thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(11786, 8684, 'eight thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(11787, 96902, 'ninety-six thousand nine hundred two');\nINSERT INTO t2 VALUES(11788, 25621, 'twenty-five thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(11789, 94190, 'ninety-four thousand one hundred ninety');\nINSERT INTO t2 VALUES(11790, 79891, 'seventy-nine thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(11791, 18128, 'eighteen thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(11792, 57520, 'fifty-seven thousand five hundred twenty');\nINSERT INTO t2 VALUES(11793, 31279, 'thirty-one thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(11794, 24861, 'twenty-four thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(11795, 41493, 'forty-one thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(11796, 70009, 'seventy thousand nine');\nINSERT INTO t2 VALUES(11797, 84847, 'eighty-four thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(11798, 49539, 'forty-nine thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(11799, 39700, 'thirty-nine thousand seven hundred');\nINSERT INTO t2 VALUES(11800, 69440, 'sixty-nine thousand four hundred forty');\nINSERT INTO t2 VALUES(11801, 47244, 'forty-seven thousand two hundred forty-four');\nINSERT INTO t2 VALUES(11802, 16192, 'sixteen thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(11803, 99894, 'ninety-nine thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(11804, 71204, 'seventy-one thousand two hundred four');\nINSERT INTO t2 VALUES(11805, 36631, 'thirty-six thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(11806, 99249, 'ninety-nine thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(11807, 23762, 'twenty-three thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(11808, 84769, 'eighty-four thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(11809, 26880, 'twenty-six thousand eight hundred eighty');\nINSERT INTO t2 VALUES(11810, 49808, 'forty-nine thousand eight hundred eight');\nINSERT INTO t2 VALUES(11811, 84554, 'eighty-four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(11812, 77249, 'seventy-seven thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(11813, 71398, 'seventy-one thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(11814, 52325, 'fifty-two thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(11815, 59096, 'fifty-nine thousand ninety-six');\nINSERT INTO t2 VALUES(11816, 10416, 'ten thousand four hundred sixteen');\nINSERT INTO t2 VALUES(11817, 63116, 'sixty-three thousand one hundred sixteen');\nINSERT INTO t2 VALUES(11818, 35076, 'thirty-five thousand seventy-six');\nINSERT INTO t2 VALUES(11819, 47678, 'forty-seven thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(11820, 5183, 'five thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(11821, 45622, 'forty-five thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(11822, 17876, 'seventeen thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(11823, 31904, 'thirty-one thousand nine hundred four');\nINSERT INTO t2 VALUES(11824, 31790, 'thirty-one thousand seven hundred ninety');\nINSERT INTO t2 VALUES(11825, 30066, 'thirty thousand sixty-six');\nINSERT INTO t2 VALUES(11826, 64004, 'sixty-four thousand four');\nINSERT INTO t2 VALUES(11827, 67585, 'sixty-seven thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(11828, 15185, 'fifteen thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(11829, 52327, 'fifty-two thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(11830, 82876, 'eighty-two thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(11831, 54559, 'fifty-four thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(11832, 9727, 'nine thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(11833, 20149, 'twenty thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(11834, 25430, 'twenty-five thousand four hundred thirty');\nINSERT INTO t2 VALUES(11835, 19266, 'nineteen thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(11836, 33438, 'thirty-three thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(11837, 41013, 'forty-one thousand thirteen');\nINSERT INTO t2 VALUES(11838, 98248, 'ninety-eight thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(11839, 18937, 'eighteen thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(11840, 47637, 'forty-seven thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(11841, 9573, 'nine thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(11842, 31136, 'thirty-one thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(11843, 52945, 'fifty-two thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(11844, 32821, 'thirty-two thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(11845, 4434, 'four thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(11846, 96124, 'ninety-six thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(11847, 99069, 'ninety-nine thousand sixty-nine');\nINSERT INTO t2 VALUES(11848, 31254, 'thirty-one thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(11849, 98873, 'ninety-eight thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(11850, 38549, 'thirty-eight thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(11851, 49908, 'forty-nine thousand nine hundred eight');\nINSERT INTO t2 VALUES(11852, 45663, 'forty-five thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(11853, 2026, 'two thousand twenty-six');\nINSERT INTO t2 VALUES(11854, 14456, 'fourteen thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(11855, 77276, 'seventy-seven thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(11856, 53456, 'fifty-three thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(11857, 57725, 'fifty-seven thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(11858, 76567, 'seventy-six thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(11859, 8924, 'eight thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(11860, 29174, 'twenty-nine thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(11861, 23749, 'twenty-three thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(11862, 8948, 'eight thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(11863, 47281, 'forty-seven thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(11864, 97353, 'ninety-seven thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(11865, 95489, 'ninety-five thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(11866, 22196, 'twenty-two thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(11867, 35474, 'thirty-five thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(11868, 58670, 'fifty-eight thousand six hundred seventy');\nINSERT INTO t2 VALUES(11869, 11890, 'eleven thousand eight hundred ninety');\nINSERT INTO t2 VALUES(11870, 17015, 'seventeen thousand fifteen');\nINSERT INTO t2 VALUES(11871, 6450, 'six thousand four hundred fifty');\nINSERT INTO t2 VALUES(11872, 43611, 'forty-three thousand six hundred eleven');\nINSERT INTO t2 VALUES(11873, 45989, 'forty-five thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(11874, 76160, 'seventy-six thousand one hundred sixty');\nINSERT INTO t2 VALUES(11875, 12144, 'twelve thousand one hundred forty-four');\nINSERT INTO t2 VALUES(11876, 27854, 'twenty-seven thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(11877, 64368, 'sixty-four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(11878, 75500, 'seventy-five thousand five hundred');\nINSERT INTO t2 VALUES(11879, 31444, 'thirty-one thousand four hundred forty-four');\nINSERT INTO t2 VALUES(11880, 71191, 'seventy-one thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(11881, 72558, 'seventy-two thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(11882, 14077, 'fourteen thousand seventy-seven');\nINSERT INTO t2 VALUES(11883, 69105, 'sixty-nine thousand one hundred five');\nINSERT INTO t2 VALUES(11884, 30009, 'thirty thousand nine');\nINSERT INTO t2 VALUES(11885, 40839, 'forty thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(11886, 46701, 'forty-six thousand seven hundred one');\nINSERT INTO t2 VALUES(11887, 97943, 'ninety-seven thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(11888, 98288, 'ninety-eight thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(11889, 28912, 'twenty-eight thousand nine hundred twelve');\nINSERT INTO t2 VALUES(11890, 86088, 'eighty-six thousand eighty-eight');\nINSERT INTO t2 VALUES(11891, 43432, 'forty-three thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(11892, 141, 'one hundred forty-one');\nINSERT INTO t2 VALUES(11893, 16512, 'sixteen thousand five hundred twelve');\nINSERT INTO t2 VALUES(11894, 61314, 'sixty-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(11895, 31222, 'thirty-one thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(11896, 25684, 'twenty-five thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(11897, 54535, 'fifty-four thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(11898, 71056, 'seventy-one thousand fifty-six');\nINSERT INTO t2 VALUES(11899, 9672, 'nine thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(11900, 57088, 'fifty-seven thousand eighty-eight');\nINSERT INTO t2 VALUES(11901, 54500, 'fifty-four thousand five hundred');\nINSERT INTO t2 VALUES(11902, 53216, 'fifty-three thousand two hundred sixteen');\nINSERT INTO t2 VALUES(11903, 66047, 'sixty-six thousand forty-seven');\nINSERT INTO t2 VALUES(11904, 43537, 'forty-three thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(11905, 79581, 'seventy-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(11906, 55622, 'fifty-five thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(11907, 31563, 'thirty-one thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(11908, 40715, 'forty thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(11909, 25270, 'twenty-five thousand two hundred seventy');\nINSERT INTO t2 VALUES(11910, 71683, 'seventy-one thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(11911, 46112, 'forty-six thousand one hundred twelve');\nINSERT INTO t2 VALUES(11912, 69541, 'sixty-nine thousand five hundred forty-one');\nINSERT INTO t2 VALUES(11913, 39070, 'thirty-nine thousand seventy');\nINSERT INTO t2 VALUES(11914, 92860, 'ninety-two thousand eight hundred sixty');\nINSERT INTO t2 VALUES(11915, 51286, 'fifty-one thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(11916, 89662, 'eighty-nine thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(11917, 63997, 'sixty-three thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(11918, 61622, 'sixty-one thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(11919, 71599, 'seventy-one thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(11920, 66126, 'sixty-six thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(11921, 17672, 'seventeen thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(11922, 63136, 'sixty-three thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(11923, 30246, 'thirty thousand two hundred forty-six');\nINSERT INTO t2 VALUES(11924, 652, 'six hundred fifty-two');\nINSERT INTO t2 VALUES(11925, 68252, 'sixty-eight thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(11926, 98243, 'ninety-eight thousand two hundred forty-three');\nINSERT INTO t2 VALUES(11927, 1528, 'one thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(11928, 46700, 'forty-six thousand seven hundred');\nINSERT INTO t2 VALUES(11929, 20258, 'twenty thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(11930, 28333, 'twenty-eight thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(11931, 74623, 'seventy-four thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(11932, 73797, 'seventy-three thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(11933, 44919, 'forty-four thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(11934, 45484, 'forty-five thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(11935, 74024, 'seventy-four thousand twenty-four');\nINSERT INTO t2 VALUES(11936, 23851, 'twenty-three thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(11937, 34416, 'thirty-four thousand four hundred sixteen');\nINSERT INTO t2 VALUES(11938, 18345, 'eighteen thousand three hundred forty-five');\nINSERT INTO t2 VALUES(11939, 74186, 'seventy-four thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(11940, 15208, 'fifteen thousand two hundred eight');\nINSERT INTO t2 VALUES(11941, 88294, 'eighty-eight thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(11942, 45589, 'forty-five thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(11943, 85941, 'eighty-five thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(11944, 72767, 'seventy-two thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(11945, 82383, 'eighty-two thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(11946, 13687, 'thirteen thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(11947, 61670, 'sixty-one thousand six hundred seventy');\nINSERT INTO t2 VALUES(11948, 27324, 'twenty-seven thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(11949, 94486, 'ninety-four thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(11950, 60133, 'sixty thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(11951, 33852, 'thirty-three thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(11952, 40356, 'forty thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(11953, 36392, 'thirty-six thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(11954, 45489, 'forty-five thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(11955, 59903, 'fifty-nine thousand nine hundred three');\nINSERT INTO t2 VALUES(11956, 36891, 'thirty-six thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(11957, 59980, 'fifty-nine thousand nine hundred eighty');\nINSERT INTO t2 VALUES(11958, 30197, 'thirty thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(11959, 74634, 'seventy-four thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(11960, 85306, 'eighty-five thousand three hundred six');\nINSERT INTO t2 VALUES(11961, 80605, 'eighty thousand six hundred five');\nINSERT INTO t2 VALUES(11962, 61051, 'sixty-one thousand fifty-one');\nINSERT INTO t2 VALUES(11963, 90780, 'ninety thousand seven hundred eighty');\nINSERT INTO t2 VALUES(11964, 80431, 'eighty thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(11965, 85074, 'eighty-five thousand seventy-four');\nINSERT INTO t2 VALUES(11966, 7006, 'seven thousand six');\nINSERT INTO t2 VALUES(11967, 22805, 'twenty-two thousand eight hundred five');\nINSERT INTO t2 VALUES(11968, 12958, 'twelve thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(11969, 89558, 'eighty-nine thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(11970, 54607, 'fifty-four thousand six hundred seven');\nINSERT INTO t2 VALUES(11971, 79718, 'seventy-nine thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(11972, 2951, 'two thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(11973, 81787, 'eighty-one thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(11974, 93892, 'ninety-three thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(11975, 54587, 'fifty-four thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(11976, 61550, 'sixty-one thousand five hundred fifty');\nINSERT INTO t2 VALUES(11977, 8255, 'eight thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(11978, 32437, 'thirty-two thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(11979, 31627, 'thirty-one thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(11980, 51876, 'fifty-one thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(11981, 76292, 'seventy-six thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(11982, 84070, 'eighty-four thousand seventy');\nINSERT INTO t2 VALUES(11983, 77462, 'seventy-seven thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(11984, 93584, 'ninety-three thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(11985, 9629, 'nine thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(11986, 86058, 'eighty-six thousand fifty-eight');\nINSERT INTO t2 VALUES(11987, 27023, 'twenty-seven thousand twenty-three');\nINSERT INTO t2 VALUES(11988, 96387, 'ninety-six thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(11989, 57237, 'fifty-seven thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(11990, 77443, 'seventy-seven thousand four hundred forty-three');\nINSERT INTO t2 VALUES(11991, 13032, 'thirteen thousand thirty-two');\nINSERT INTO t2 VALUES(11992, 75312, 'seventy-five thousand three hundred twelve');\nINSERT INTO t2 VALUES(11993, 74218, 'seventy-four thousand two hundred eighteen');\nINSERT INTO t2 VALUES(11994, 52174, 'fifty-two thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(11995, 82639, 'eighty-two thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(11996, 64422, 'sixty-four thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(11997, 98138, 'ninety-eight thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(11998, 96761, 'ninety-six thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(11999, 4582, 'four thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(12000, 6209, 'six thousand two hundred nine');\nINSERT INTO t2 VALUES(12001, 78080, 'seventy-eight thousand eighty');\nINSERT INTO t2 VALUES(12002, 35352, 'thirty-five thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(12003, 78899, 'seventy-eight thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(12004, 17227, 'seventeen thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(12005, 4726, 'four thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(12006, 74902, 'seventy-four thousand nine hundred two');\nINSERT INTO t2 VALUES(12007, 75582, 'seventy-five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(12008, 3597, 'three thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(12009, 23732, 'twenty-three thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(12010, 21848, 'twenty-one thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(12011, 1842, 'one thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(12012, 62225, 'sixty-two thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(12013, 98303, 'ninety-eight thousand three hundred three');\nINSERT INTO t2 VALUES(12014, 67860, 'sixty-seven thousand eight hundred sixty');\nINSERT INTO t2 VALUES(12015, 87733, 'eighty-seven thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(12016, 44193, 'forty-four thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(12017, 5024, 'five thousand twenty-four');\nINSERT INTO t2 VALUES(12018, 80503, 'eighty thousand five hundred three');\nINSERT INTO t2 VALUES(12019, 44968, 'forty-four thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(12020, 1775, 'one thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(12021, 90687, 'ninety thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(12022, 32791, 'thirty-two thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(12023, 88837, 'eighty-eight thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(12024, 66802, 'sixty-six thousand eight hundred two');\nINSERT INTO t2 VALUES(12025, 93401, 'ninety-three thousand four hundred one');\nINSERT INTO t2 VALUES(12026, 56424, 'fifty-six thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(12027, 34182, 'thirty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(12028, 95190, 'ninety-five thousand one hundred ninety');\nINSERT INTO t2 VALUES(12029, 55994, 'fifty-five thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(12030, 21357, 'twenty-one thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(12031, 71324, 'seventy-one thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(12032, 92769, 'ninety-two thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(12033, 19257, 'nineteen thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(12034, 28154, 'twenty-eight thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(12035, 79926, 'seventy-nine thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(12036, 3807, 'three thousand eight hundred seven');\nINSERT INTO t2 VALUES(12037, 92542, 'ninety-two thousand five hundred forty-two');\nINSERT INTO t2 VALUES(12038, 41857, 'forty-one thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(12039, 99224, 'ninety-nine thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(12040, 28124, 'twenty-eight thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(12041, 24823, 'twenty-four thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(12042, 39786, 'thirty-nine thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(12043, 30406, 'thirty thousand four hundred six');\nINSERT INTO t2 VALUES(12044, 95118, 'ninety-five thousand one hundred eighteen');\nINSERT INTO t2 VALUES(12045, 94458, 'ninety-four thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(12046, 23326, 'twenty-three thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(12047, 81287, 'eighty-one thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(12048, 35749, 'thirty-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(12049, 13223, 'thirteen thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(12050, 28907, 'twenty-eight thousand nine hundred seven');\nINSERT INTO t2 VALUES(12051, 27947, 'twenty-seven thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(12052, 58608, 'fifty-eight thousand six hundred eight');\nINSERT INTO t2 VALUES(12053, 92961, 'ninety-two thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(12054, 69605, 'sixty-nine thousand six hundred five');\nINSERT INTO t2 VALUES(12055, 52464, 'fifty-two thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(12056, 93458, 'ninety-three thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(12057, 70854, 'seventy thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(12058, 13130, 'thirteen thousand one hundred thirty');\nINSERT INTO t2 VALUES(12059, 41633, 'forty-one thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(12060, 18300, 'eighteen thousand three hundred');\nINSERT INTO t2 VALUES(12061, 52547, 'fifty-two thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(12062, 13523, 'thirteen thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(12063, 84997, 'eighty-four thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(12064, 64646, 'sixty-four thousand six hundred forty-six');\nINSERT INTO t2 VALUES(12065, 11803, 'eleven thousand eight hundred three');\nINSERT INTO t2 VALUES(12066, 53679, 'fifty-three thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(12067, 29379, 'twenty-nine thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(12068, 59549, 'fifty-nine thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(12069, 96219, 'ninety-six thousand two hundred nineteen');\nINSERT INTO t2 VALUES(12070, 56954, 'fifty-six thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(12071, 79549, 'seventy-nine thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(12072, 77960, 'seventy-seven thousand nine hundred sixty');\nINSERT INTO t2 VALUES(12073, 62591, 'sixty-two thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(12074, 72297, 'seventy-two thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(12075, 1606, 'one thousand six hundred six');\nINSERT INTO t2 VALUES(12076, 36496, 'thirty-six thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(12077, 52053, 'fifty-two thousand fifty-three');\nINSERT INTO t2 VALUES(12078, 85304, 'eighty-five thousand three hundred four');\nINSERT INTO t2 VALUES(12079, 2493, 'two thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(12080, 47966, 'forty-seven thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(12081, 35092, 'thirty-five thousand ninety-two');\nINSERT INTO t2 VALUES(12082, 74571, 'seventy-four thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(12083, 85359, 'eighty-five thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(12084, 30082, 'thirty thousand eighty-two');\nINSERT INTO t2 VALUES(12085, 14735, 'fourteen thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(12086, 93257, 'ninety-three thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(12087, 53666, 'fifty-three thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(12088, 74083, 'seventy-four thousand eighty-three');\nINSERT INTO t2 VALUES(12089, 86892, 'eighty-six thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(12090, 91726, 'ninety-one thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(12091, 28735, 'twenty-eight thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(12092, 39033, 'thirty-nine thousand thirty-three');\nINSERT INTO t2 VALUES(12093, 21608, 'twenty-one thousand six hundred eight');\nINSERT INTO t2 VALUES(12094, 30588, 'thirty thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(12095, 36846, 'thirty-six thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(12096, 92425, 'ninety-two thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(12097, 55883, 'fifty-five thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(12098, 22250, 'twenty-two thousand two hundred fifty');\nINSERT INTO t2 VALUES(12099, 45860, 'forty-five thousand eight hundred sixty');\nINSERT INTO t2 VALUES(12100, 30744, 'thirty thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(12101, 34829, 'thirty-four thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(12102, 96978, 'ninety-six thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(12103, 24470, 'twenty-four thousand four hundred seventy');\nINSERT INTO t2 VALUES(12104, 33096, 'thirty-three thousand ninety-six');\nINSERT INTO t2 VALUES(12105, 49415, 'forty-nine thousand four hundred fifteen');\nINSERT INTO t2 VALUES(12106, 5216, 'five thousand two hundred sixteen');\nINSERT INTO t2 VALUES(12107, 9347, 'nine thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(12108, 9865, 'nine thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(12109, 93190, 'ninety-three thousand one hundred ninety');\nINSERT INTO t2 VALUES(12110, 63217, 'sixty-three thousand two hundred seventeen');\nINSERT INTO t2 VALUES(12111, 36516, 'thirty-six thousand five hundred sixteen');\nINSERT INTO t2 VALUES(12112, 62330, 'sixty-two thousand three hundred thirty');\nINSERT INTO t2 VALUES(12113, 786, 'seven hundred eighty-six');\nINSERT INTO t2 VALUES(12114, 99356, 'ninety-nine thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(12115, 54332, 'fifty-four thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(12116, 71533, 'seventy-one thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(12117, 68263, 'sixty-eight thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(12118, 86100, 'eighty-six thousand one hundred');\nINSERT INTO t2 VALUES(12119, 16879, 'sixteen thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(12120, 72121, 'seventy-two thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(12121, 54512, 'fifty-four thousand five hundred twelve');\nINSERT INTO t2 VALUES(12122, 25791, 'twenty-five thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(12123, 8576, 'eight thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(12124, 64064, 'sixty-four thousand sixty-four');\nINSERT INTO t2 VALUES(12125, 83319, 'eighty-three thousand three hundred nineteen');\nINSERT INTO t2 VALUES(12126, 88386, 'eighty-eight thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(12127, 33513, 'thirty-three thousand five hundred thirteen');\nINSERT INTO t2 VALUES(12128, 88564, 'eighty-eight thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(12129, 65299, 'sixty-five thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(12130, 52720, 'fifty-two thousand seven hundred twenty');\nINSERT INTO t2 VALUES(12131, 23604, 'twenty-three thousand six hundred four');\nINSERT INTO t2 VALUES(12132, 42959, 'forty-two thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(12133, 26637, 'twenty-six thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(12134, 90758, 'ninety thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(12135, 39463, 'thirty-nine thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(12136, 67973, 'sixty-seven thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(12137, 35897, 'thirty-five thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(12138, 25051, 'twenty-five thousand fifty-one');\nINSERT INTO t2 VALUES(12139, 92027, 'ninety-two thousand twenty-seven');\nINSERT INTO t2 VALUES(12140, 76551, 'seventy-six thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(12141, 67406, 'sixty-seven thousand four hundred six');\nINSERT INTO t2 VALUES(12142, 78730, 'seventy-eight thousand seven hundred thirty');\nINSERT INTO t2 VALUES(12143, 2327, 'two thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(12144, 49857, 'forty-nine thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(12145, 71071, 'seventy-one thousand seventy-one');\nINSERT INTO t2 VALUES(12146, 62878, 'sixty-two thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(12147, 64558, 'sixty-four thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(12148, 97507, 'ninety-seven thousand five hundred seven');\nINSERT INTO t2 VALUES(12149, 1813, 'one thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(12150, 6176, 'six thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(12151, 24817, 'twenty-four thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(12152, 50946, 'fifty thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(12153, 55529, 'fifty-five thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(12154, 8122, 'eight thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(12155, 80826, 'eighty thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(12156, 47924, 'forty-seven thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(12157, 44175, 'forty-four thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(12158, 45190, 'forty-five thousand one hundred ninety');\nINSERT INTO t2 VALUES(12159, 73238, 'seventy-three thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(12160, 7085, 'seven thousand eighty-five');\nINSERT INTO t2 VALUES(12161, 3607, 'three thousand six hundred seven');\nINSERT INTO t2 VALUES(12162, 2122, 'two thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(12163, 58362, 'fifty-eight thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(12164, 60497, 'sixty thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(12165, 70062, 'seventy thousand sixty-two');\nINSERT INTO t2 VALUES(12166, 60827, 'sixty thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(12167, 18172, 'eighteen thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(12168, 74207, 'seventy-four thousand two hundred seven');\nINSERT INTO t2 VALUES(12169, 71080, 'seventy-one thousand eighty');\nINSERT INTO t2 VALUES(12170, 13839, 'thirteen thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(12171, 89290, 'eighty-nine thousand two hundred ninety');\nINSERT INTO t2 VALUES(12172, 39482, 'thirty-nine thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(12173, 67801, 'sixty-seven thousand eight hundred one');\nINSERT INTO t2 VALUES(12174, 25226, 'twenty-five thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(12175, 19676, 'nineteen thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(12176, 72848, 'seventy-two thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(12177, 28054, 'twenty-eight thousand fifty-four');\nINSERT INTO t2 VALUES(12178, 76639, 'seventy-six thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(12179, 42445, 'forty-two thousand four hundred forty-five');\nINSERT INTO t2 VALUES(12180, 30299, 'thirty thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(12181, 55329, 'fifty-five thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(12182, 40899, 'forty thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(12183, 29180, 'twenty-nine thousand one hundred eighty');\nINSERT INTO t2 VALUES(12184, 52892, 'fifty-two thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(12185, 52002, 'fifty-two thousand two');\nINSERT INTO t2 VALUES(12186, 84816, 'eighty-four thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(12187, 29265, 'twenty-nine thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(12188, 43137, 'forty-three thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(12189, 96602, 'ninety-six thousand six hundred two');\nINSERT INTO t2 VALUES(12190, 19642, 'nineteen thousand six hundred forty-two');\nINSERT INTO t2 VALUES(12191, 30171, 'thirty thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(12192, 23830, 'twenty-three thousand eight hundred thirty');\nINSERT INTO t2 VALUES(12193, 30552, 'thirty thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(12194, 25989, 'twenty-five thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(12195, 71307, 'seventy-one thousand three hundred seven');\nINSERT INTO t2 VALUES(12196, 73492, 'seventy-three thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(12197, 56640, 'fifty-six thousand six hundred forty');\nINSERT INTO t2 VALUES(12198, 75755, 'seventy-five thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(12199, 91713, 'ninety-one thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(12200, 83528, 'eighty-three thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(12201, 52843, 'fifty-two thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(12202, 1420, 'one thousand four hundred twenty');\nINSERT INTO t2 VALUES(12203, 48160, 'forty-eight thousand one hundred sixty');\nINSERT INTO t2 VALUES(12204, 48789, 'forty-eight thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(12205, 80881, 'eighty thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(12206, 86454, 'eighty-six thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(12207, 55861, 'fifty-five thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(12208, 73894, 'seventy-three thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(12209, 25268, 'twenty-five thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(12210, 63367, 'sixty-three thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(12211, 6405, 'six thousand four hundred five');\nINSERT INTO t2 VALUES(12212, 19080, 'nineteen thousand eighty');\nINSERT INTO t2 VALUES(12213, 33111, 'thirty-three thousand one hundred eleven');\nINSERT INTO t2 VALUES(12214, 41973, 'forty-one thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(12215, 75260, 'seventy-five thousand two hundred sixty');\nINSERT INTO t2 VALUES(12216, 5754, 'five thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(12217, 84202, 'eighty-four thousand two hundred two');\nINSERT INTO t2 VALUES(12218, 91018, 'ninety-one thousand eighteen');\nINSERT INTO t2 VALUES(12219, 22588, 'twenty-two thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(12220, 63973, 'sixty-three thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(12221, 19906, 'nineteen thousand nine hundred six');\nINSERT INTO t2 VALUES(12222, 98196, 'ninety-eight thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(12223, 14860, 'fourteen thousand eight hundred sixty');\nINSERT INTO t2 VALUES(12224, 51848, 'fifty-one thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(12225, 34090, 'thirty-four thousand ninety');\nINSERT INTO t2 VALUES(12226, 11671, 'eleven thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(12227, 6585, 'six thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(12228, 40686, 'forty thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(12229, 84118, 'eighty-four thousand one hundred eighteen');\nINSERT INTO t2 VALUES(12230, 58590, 'fifty-eight thousand five hundred ninety');\nINSERT INTO t2 VALUES(12231, 98857, 'ninety-eight thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(12232, 89544, 'eighty-nine thousand five hundred forty-four');\nINSERT INTO t2 VALUES(12233, 53821, 'fifty-three thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(12234, 33318, 'thirty-three thousand three hundred eighteen');\nINSERT INTO t2 VALUES(12235, 26043, 'twenty-six thousand forty-three');\nINSERT INTO t2 VALUES(12236, 48281, 'forty-eight thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(12237, 29938, 'twenty-nine thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(12238, 6697, 'six thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(12239, 62781, 'sixty-two thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(12240, 54537, 'fifty-four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(12241, 51026, 'fifty-one thousand twenty-six');\nINSERT INTO t2 VALUES(12242, 31972, 'thirty-one thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(12243, 82938, 'eighty-two thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(12244, 9145, 'nine thousand one hundred forty-five');\nINSERT INTO t2 VALUES(12245, 37567, 'thirty-seven thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(12246, 30936, 'thirty thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(12247, 10344, 'ten thousand three hundred forty-four');\nINSERT INTO t2 VALUES(12248, 8213, 'eight thousand two hundred thirteen');\nINSERT INTO t2 VALUES(12249, 28529, 'twenty-eight thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(12250, 41079, 'forty-one thousand seventy-nine');\nINSERT INTO t2 VALUES(12251, 53803, 'fifty-three thousand eight hundred three');\nINSERT INTO t2 VALUES(12252, 42259, 'forty-two thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(12253, 41989, 'forty-one thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(12254, 70215, 'seventy thousand two hundred fifteen');\nINSERT INTO t2 VALUES(12255, 11850, 'eleven thousand eight hundred fifty');\nINSERT INTO t2 VALUES(12256, 13274, 'thirteen thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(12257, 29394, 'twenty-nine thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(12258, 99859, 'ninety-nine thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(12259, 75423, 'seventy-five thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(12260, 52447, 'fifty-two thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(12261, 63383, 'sixty-three thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(12262, 79578, 'seventy-nine thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(12263, 31439, 'thirty-one thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(12264, 54486, 'fifty-four thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(12265, 86599, 'eighty-six thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(12266, 10536, 'ten thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(12267, 52046, 'fifty-two thousand forty-six');\nINSERT INTO t2 VALUES(12268, 3438, 'three thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(12269, 78848, 'seventy-eight thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(12270, 25318, 'twenty-five thousand three hundred eighteen');\nINSERT INTO t2 VALUES(12271, 25220, 'twenty-five thousand two hundred twenty');\nINSERT INTO t2 VALUES(12272, 82668, 'eighty-two thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(12273, 10255, 'ten thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(12274, 53838, 'fifty-three thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(12275, 58037, 'fifty-eight thousand thirty-seven');\nINSERT INTO t2 VALUES(12276, 12809, 'twelve thousand eight hundred nine');\nINSERT INTO t2 VALUES(12277, 89671, 'eighty-nine thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(12278, 96811, 'ninety-six thousand eight hundred eleven');\nINSERT INTO t2 VALUES(12279, 69244, 'sixty-nine thousand two hundred forty-four');\nINSERT INTO t2 VALUES(12280, 35057, 'thirty-five thousand fifty-seven');\nINSERT INTO t2 VALUES(12281, 71045, 'seventy-one thousand forty-five');\nINSERT INTO t2 VALUES(12282, 82984, 'eighty-two thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(12283, 95160, 'ninety-five thousand one hundred sixty');\nINSERT INTO t2 VALUES(12284, 7287, 'seven thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(12285, 51887, 'fifty-one thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(12286, 20786, 'twenty thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(12287, 69513, 'sixty-nine thousand five hundred thirteen');\nINSERT INTO t2 VALUES(12288, 57050, 'fifty-seven thousand fifty');\nINSERT INTO t2 VALUES(12289, 85885, 'eighty-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(12290, 7933, 'seven thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(12291, 49332, 'forty-nine thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(12292, 25889, 'twenty-five thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(12293, 18142, 'eighteen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(12294, 15069, 'fifteen thousand sixty-nine');\nINSERT INTO t2 VALUES(12295, 76497, 'seventy-six thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(12296, 6859, 'six thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(12297, 51426, 'fifty-one thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(12298, 54449, 'fifty-four thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(12299, 39365, 'thirty-nine thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(12300, 80565, 'eighty thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(12301, 84310, 'eighty-four thousand three hundred ten');\nINSERT INTO t2 VALUES(12302, 81282, 'eighty-one thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(12303, 47045, 'forty-seven thousand forty-five');\nINSERT INTO t2 VALUES(12304, 25644, 'twenty-five thousand six hundred forty-four');\nINSERT INTO t2 VALUES(12305, 54249, 'fifty-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(12306, 78917, 'seventy-eight thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(12307, 24516, 'twenty-four thousand five hundred sixteen');\nINSERT INTO t2 VALUES(12308, 56776, 'fifty-six thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(12309, 59310, 'fifty-nine thousand three hundred ten');\nINSERT INTO t2 VALUES(12310, 6642, 'six thousand six hundred forty-two');\nINSERT INTO t2 VALUES(12311, 92751, 'ninety-two thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(12312, 43548, 'forty-three thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(12313, 10328, 'ten thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(12314, 4504, 'four thousand five hundred four');\nINSERT INTO t2 VALUES(12315, 34368, 'thirty-four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(12316, 5429, 'five thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(12317, 11693, 'eleven thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(12318, 58070, 'fifty-eight thousand seventy');\nINSERT INTO t2 VALUES(12319, 5743, 'five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(12320, 33981, 'thirty-three thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(12321, 81115, 'eighty-one thousand one hundred fifteen');\nINSERT INTO t2 VALUES(12322, 66923, 'sixty-six thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(12323, 85256, 'eighty-five thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(12324, 17389, 'seventeen thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(12325, 51630, 'fifty-one thousand six hundred thirty');\nINSERT INTO t2 VALUES(12326, 2347, 'two thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(12327, 10001, 'ten thousand one');\nINSERT INTO t2 VALUES(12328, 13498, 'thirteen thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(12329, 90259, 'ninety thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(12330, 77607, 'seventy-seven thousand six hundred seven');\nINSERT INTO t2 VALUES(12331, 83392, 'eighty-three thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(12332, 8612, 'eight thousand six hundred twelve');\nINSERT INTO t2 VALUES(12333, 87856, 'eighty-seven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(12334, 79804, 'seventy-nine thousand eight hundred four');\nINSERT INTO t2 VALUES(12335, 79144, 'seventy-nine thousand one hundred forty-four');\nINSERT INTO t2 VALUES(12336, 99885, 'ninety-nine thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(12337, 89617, 'eighty-nine thousand six hundred seventeen');\nINSERT INTO t2 VALUES(12338, 72743, 'seventy-two thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(12339, 29473, 'twenty-nine thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(12340, 65606, 'sixty-five thousand six hundred six');\nINSERT INTO t2 VALUES(12341, 82093, 'eighty-two thousand ninety-three');\nINSERT INTO t2 VALUES(12342, 75704, 'seventy-five thousand seven hundred four');\nINSERT INTO t2 VALUES(12343, 51583, 'fifty-one thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(12344, 87750, 'eighty-seven thousand seven hundred fifty');\nINSERT INTO t2 VALUES(12345, 30807, 'thirty thousand eight hundred seven');\nINSERT INTO t2 VALUES(12346, 43634, 'forty-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(12347, 63906, 'sixty-three thousand nine hundred six');\nINSERT INTO t2 VALUES(12348, 48042, 'forty-eight thousand forty-two');\nINSERT INTO t2 VALUES(12349, 13080, 'thirteen thousand eighty');\nINSERT INTO t2 VALUES(12350, 46924, 'forty-six thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(12351, 4705, 'four thousand seven hundred five');\nINSERT INTO t2 VALUES(12352, 24807, 'twenty-four thousand eight hundred seven');\nINSERT INTO t2 VALUES(12353, 15508, 'fifteen thousand five hundred eight');\nINSERT INTO t2 VALUES(12354, 78974, 'seventy-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(12355, 67963, 'sixty-seven thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(12356, 9967, 'nine thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(12357, 29620, 'twenty-nine thousand six hundred twenty');\nINSERT INTO t2 VALUES(12358, 97574, 'ninety-seven thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(12359, 46898, 'forty-six thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(12360, 91949, 'ninety-one thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(12361, 24001, 'twenty-four thousand one');\nINSERT INTO t2 VALUES(12362, 37340, 'thirty-seven thousand three hundred forty');\nINSERT INTO t2 VALUES(12363, 74190, 'seventy-four thousand one hundred ninety');\nINSERT INTO t2 VALUES(12364, 90123, 'ninety thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(12365, 74066, 'seventy-four thousand sixty-six');\nINSERT INTO t2 VALUES(12366, 53244, 'fifty-three thousand two hundred forty-four');\nINSERT INTO t2 VALUES(12367, 78664, 'seventy-eight thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(12368, 5096, 'five thousand ninety-six');\nINSERT INTO t2 VALUES(12369, 84981, 'eighty-four thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(12370, 78508, 'seventy-eight thousand five hundred eight');\nINSERT INTO t2 VALUES(12371, 56274, 'fifty-six thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(12372, 11935, 'eleven thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(12373, 47434, 'forty-seven thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(12374, 5929, 'five thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(12375, 49918, 'forty-nine thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(12376, 55855, 'fifty-five thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(12377, 79168, 'seventy-nine thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(12378, 48938, 'forty-eight thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(12379, 55363, 'fifty-five thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(12380, 87819, 'eighty-seven thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(12381, 53080, 'fifty-three thousand eighty');\nINSERT INTO t2 VALUES(12382, 14882, 'fourteen thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(12383, 6312, 'six thousand three hundred twelve');\nINSERT INTO t2 VALUES(12384, 79339, 'seventy-nine thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(12385, 6538, 'six thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(12386, 43578, 'forty-three thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(12387, 18912, 'eighteen thousand nine hundred twelve');\nINSERT INTO t2 VALUES(12388, 37735, 'thirty-seven thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(12389, 22348, 'twenty-two thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(12390, 96195, 'ninety-six thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(12391, 98151, 'ninety-eight thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(12392, 43135, 'forty-three thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(12393, 16904, 'sixteen thousand nine hundred four');\nINSERT INTO t2 VALUES(12394, 27160, 'twenty-seven thousand one hundred sixty');\nINSERT INTO t2 VALUES(12395, 71701, 'seventy-one thousand seven hundred one');\nINSERT INTO t2 VALUES(12396, 46695, 'forty-six thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(12397, 37360, 'thirty-seven thousand three hundred sixty');\nINSERT INTO t2 VALUES(12398, 72023, 'seventy-two thousand twenty-three');\nINSERT INTO t2 VALUES(12399, 99512, 'ninety-nine thousand five hundred twelve');\nINSERT INTO t2 VALUES(12400, 59230, 'fifty-nine thousand two hundred thirty');\nINSERT INTO t2 VALUES(12401, 89088, 'eighty-nine thousand eighty-eight');\nINSERT INTO t2 VALUES(12402, 5179, 'five thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(12403, 22065, 'twenty-two thousand sixty-five');\nINSERT INTO t2 VALUES(12404, 83182, 'eighty-three thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(12405, 44080, 'forty-four thousand eighty');\nINSERT INTO t2 VALUES(12406, 87365, 'eighty-seven thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(12407, 21815, 'twenty-one thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(12408, 48128, 'forty-eight thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(12409, 11797, 'eleven thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(12410, 34523, 'thirty-four thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(12411, 43112, 'forty-three thousand one hundred twelve');\nINSERT INTO t2 VALUES(12412, 7165, 'seven thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(12413, 57265, 'fifty-seven thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(12414, 85802, 'eighty-five thousand eight hundred two');\nINSERT INTO t2 VALUES(12415, 8449, 'eight thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(12416, 44829, 'forty-four thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(12417, 76544, 'seventy-six thousand five hundred forty-four');\nINSERT INTO t2 VALUES(12418, 36108, 'thirty-six thousand one hundred eight');\nINSERT INTO t2 VALUES(12419, 58122, 'fifty-eight thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(12420, 94531, 'ninety-four thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(12421, 79127, 'seventy-nine thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(12422, 81039, 'eighty-one thousand thirty-nine');\nINSERT INTO t2 VALUES(12423, 54386, 'fifty-four thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(12424, 96969, 'ninety-six thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(12425, 65374, 'sixty-five thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(12426, 57434, 'fifty-seven thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(12427, 57308, 'fifty-seven thousand three hundred eight');\nINSERT INTO t2 VALUES(12428, 87415, 'eighty-seven thousand four hundred fifteen');\nINSERT INTO t2 VALUES(12429, 47818, 'forty-seven thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(12430, 88685, 'eighty-eight thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(12431, 75500, 'seventy-five thousand five hundred');\nINSERT INTO t2 VALUES(12432, 88831, 'eighty-eight thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(12433, 99896, 'ninety-nine thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(12434, 4614, 'four thousand six hundred fourteen');\nINSERT INTO t2 VALUES(12435, 16059, 'sixteen thousand fifty-nine');\nINSERT INTO t2 VALUES(12436, 21699, 'twenty-one thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(12437, 76496, 'seventy-six thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(12438, 54927, 'fifty-four thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(12439, 57888, 'fifty-seven thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(12440, 98713, 'ninety-eight thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(12441, 10039, 'ten thousand thirty-nine');\nINSERT INTO t2 VALUES(12442, 74768, 'seventy-four thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(12443, 31123, 'thirty-one thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(12444, 3117, 'three thousand one hundred seventeen');\nINSERT INTO t2 VALUES(12445, 71809, 'seventy-one thousand eight hundred nine');\nINSERT INTO t2 VALUES(12446, 20612, 'twenty thousand six hundred twelve');\nINSERT INTO t2 VALUES(12447, 33991, 'thirty-three thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(12448, 17885, 'seventeen thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(12449, 55950, 'fifty-five thousand nine hundred fifty');\nINSERT INTO t2 VALUES(12450, 79687, 'seventy-nine thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(12451, 64151, 'sixty-four thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(12452, 91814, 'ninety-one thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(12453, 47908, 'forty-seven thousand nine hundred eight');\nINSERT INTO t2 VALUES(12454, 42794, 'forty-two thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(12455, 19303, 'nineteen thousand three hundred three');\nINSERT INTO t2 VALUES(12456, 77083, 'seventy-seven thousand eighty-three');\nINSERT INTO t2 VALUES(12457, 49044, 'forty-nine thousand forty-four');\nINSERT INTO t2 VALUES(12458, 7847, 'seven thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(12459, 43587, 'forty-three thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(12460, 94462, 'ninety-four thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(12461, 15135, 'fifteen thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(12462, 76030, 'seventy-six thousand thirty');\nINSERT INTO t2 VALUES(12463, 94328, 'ninety-four thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(12464, 74772, 'seventy-four thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(12465, 11991, 'eleven thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(12466, 44574, 'forty-four thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(12467, 68432, 'sixty-eight thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(12468, 72767, 'seventy-two thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(12469, 64969, 'sixty-four thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(12470, 88069, 'eighty-eight thousand sixty-nine');\nINSERT INTO t2 VALUES(12471, 1759, 'one thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(12472, 88080, 'eighty-eight thousand eighty');\nINSERT INTO t2 VALUES(12473, 71548, 'seventy-one thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(12474, 4462, 'four thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(12475, 2842, 'two thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(12476, 96629, 'ninety-six thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(12477, 62891, 'sixty-two thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(12478, 2039, 'two thousand thirty-nine');\nINSERT INTO t2 VALUES(12479, 50274, 'fifty thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(12480, 85582, 'eighty-five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(12481, 22884, 'twenty-two thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(12482, 97906, 'ninety-seven thousand nine hundred six');\nINSERT INTO t2 VALUES(12483, 827, 'eight hundred twenty-seven');\nINSERT INTO t2 VALUES(12484, 16137, 'sixteen thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(12485, 87666, 'eighty-seven thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(12486, 71645, 'seventy-one thousand six hundred forty-five');\nINSERT INTO t2 VALUES(12487, 55716, 'fifty-five thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(12488, 72454, 'seventy-two thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(12489, 98179, 'ninety-eight thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(12490, 86153, 'eighty-six thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(12491, 55534, 'fifty-five thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(12492, 39347, 'thirty-nine thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(12493, 66116, 'sixty-six thousand one hundred sixteen');\nINSERT INTO t2 VALUES(12494, 74248, 'seventy-four thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(12495, 28155, 'twenty-eight thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(12496, 56934, 'fifty-six thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(12497, 61751, 'sixty-one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(12498, 45333, 'forty-five thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(12499, 22112, 'twenty-two thousand one hundred twelve');\nINSERT INTO t2 VALUES(12500, 99531, 'ninety-nine thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(12501, 14744, 'fourteen thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(12502, 65450, 'sixty-five thousand four hundred fifty');\nINSERT INTO t2 VALUES(12503, 61578, 'sixty-one thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(12504, 75814, 'seventy-five thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(12505, 87361, 'eighty-seven thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(12506, 58065, 'fifty-eight thousand sixty-five');\nINSERT INTO t2 VALUES(12507, 19902, 'nineteen thousand nine hundred two');\nINSERT INTO t2 VALUES(12508, 97460, 'ninety-seven thousand four hundred sixty');\nINSERT INTO t2 VALUES(12509, 72898, 'seventy-two thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(12510, 70929, 'seventy thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(12511, 26760, 'twenty-six thousand seven hundred sixty');\nINSERT INTO t2 VALUES(12512, 51622, 'fifty-one thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(12513, 71772, 'seventy-one thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(12514, 81545, 'eighty-one thousand five hundred forty-five');\nINSERT INTO t2 VALUES(12515, 67980, 'sixty-seven thousand nine hundred eighty');\nINSERT INTO t2 VALUES(12516, 46599, 'forty-six thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(12517, 46621, 'forty-six thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(12518, 7074, 'seven thousand seventy-four');\nINSERT INTO t2 VALUES(12519, 41885, 'forty-one thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(12520, 37138, 'thirty-seven thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(12521, 60585, 'sixty thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(12522, 68583, 'sixty-eight thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(12523, 40974, 'forty thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(12524, 32852, 'thirty-two thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(12525, 98517, 'ninety-eight thousand five hundred seventeen');\nINSERT INTO t2 VALUES(12526, 81161, 'eighty-one thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(12527, 65708, 'sixty-five thousand seven hundred eight');\nINSERT INTO t2 VALUES(12528, 14574, 'fourteen thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(12529, 15982, 'fifteen thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(12530, 69951, 'sixty-nine thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(12531, 31094, 'thirty-one thousand ninety-four');\nINSERT INTO t2 VALUES(12532, 70790, 'seventy thousand seven hundred ninety');\nINSERT INTO t2 VALUES(12533, 37653, 'thirty-seven thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(12534, 94366, 'ninety-four thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(12535, 99168, 'ninety-nine thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(12536, 85889, 'eighty-five thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(12537, 47104, 'forty-seven thousand one hundred four');\nINSERT INTO t2 VALUES(12538, 45987, 'forty-five thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(12539, 68900, 'sixty-eight thousand nine hundred');\nINSERT INTO t2 VALUES(12540, 55151, 'fifty-five thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(12541, 49375, 'forty-nine thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(12542, 56738, 'fifty-six thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(12543, 71529, 'seventy-one thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(12544, 39153, 'thirty-nine thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(12545, 89096, 'eighty-nine thousand ninety-six');\nINSERT INTO t2 VALUES(12546, 72827, 'seventy-two thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(12547, 39486, 'thirty-nine thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(12548, 57301, 'fifty-seven thousand three hundred one');\nINSERT INTO t2 VALUES(12549, 64846, 'sixty-four thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(12550, 37189, 'thirty-seven thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(12551, 45679, 'forty-five thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(12552, 39682, 'thirty-nine thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(12553, 63872, 'sixty-three thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(12554, 93567, 'ninety-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(12555, 85240, 'eighty-five thousand two hundred forty');\nINSERT INTO t2 VALUES(12556, 23567, 'twenty-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(12557, 27413, 'twenty-seven thousand four hundred thirteen');\nINSERT INTO t2 VALUES(12558, 54510, 'fifty-four thousand five hundred ten');\nINSERT INTO t2 VALUES(12559, 84298, 'eighty-four thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(12560, 97063, 'ninety-seven thousand sixty-three');\nINSERT INTO t2 VALUES(12561, 29551, 'twenty-nine thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(12562, 94326, 'ninety-four thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(12563, 13148, 'thirteen thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(12564, 6692, 'six thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(12565, 17839, 'seventeen thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(12566, 22602, 'twenty-two thousand six hundred two');\nINSERT INTO t2 VALUES(12567, 75301, 'seventy-five thousand three hundred one');\nINSERT INTO t2 VALUES(12568, 17279, 'seventeen thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(12569, 26062, 'twenty-six thousand sixty-two');\nINSERT INTO t2 VALUES(12570, 89010, 'eighty-nine thousand ten');\nINSERT INTO t2 VALUES(12571, 65833, 'sixty-five thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(12572, 11717, 'eleven thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(12573, 2836, 'two thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(12574, 27468, 'twenty-seven thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(12575, 85048, 'eighty-five thousand forty-eight');\nINSERT INTO t2 VALUES(12576, 10335, 'ten thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(12577, 21872, 'twenty-one thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(12578, 6750, 'six thousand seven hundred fifty');\nINSERT INTO t2 VALUES(12579, 41564, 'forty-one thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(12580, 28302, 'twenty-eight thousand three hundred two');\nINSERT INTO t2 VALUES(12581, 87662, 'eighty-seven thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(12582, 76996, 'seventy-six thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(12583, 30131, 'thirty thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(12584, 60259, 'sixty thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(12585, 36278, 'thirty-six thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(12586, 32818, 'thirty-two thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(12587, 73372, 'seventy-three thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(12588, 12590, 'twelve thousand five hundred ninety');\nINSERT INTO t2 VALUES(12589, 28038, 'twenty-eight thousand thirty-eight');\nINSERT INTO t2 VALUES(12590, 87755, 'eighty-seven thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(12591, 30461, 'thirty thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(12592, 6063, 'six thousand sixty-three');\nINSERT INTO t2 VALUES(12593, 25807, 'twenty-five thousand eight hundred seven');\nINSERT INTO t2 VALUES(12594, 44551, 'forty-four thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(12595, 3422, 'three thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(12596, 73881, 'seventy-three thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(12597, 59737, 'fifty-nine thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(12598, 33448, 'thirty-three thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(12599, 37697, 'thirty-seven thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(12600, 81875, 'eighty-one thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(12601, 341, 'three hundred forty-one');\nINSERT INTO t2 VALUES(12602, 12096, 'twelve thousand ninety-six');\nINSERT INTO t2 VALUES(12603, 33300, 'thirty-three thousand three hundred');\nINSERT INTO t2 VALUES(12604, 82707, 'eighty-two thousand seven hundred seven');\nINSERT INTO t2 VALUES(12605, 36654, 'thirty-six thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(12606, 57164, 'fifty-seven thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(12607, 38579, 'thirty-eight thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(12608, 55103, 'fifty-five thousand one hundred three');\nINSERT INTO t2 VALUES(12609, 49, 'forty-nine');\nINSERT INTO t2 VALUES(12610, 89120, 'eighty-nine thousand one hundred twenty');\nINSERT INTO t2 VALUES(12611, 64031, 'sixty-four thousand thirty-one');\nINSERT INTO t2 VALUES(12612, 81715, 'eighty-one thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(12613, 74140, 'seventy-four thousand one hundred forty');\nINSERT INTO t2 VALUES(12614, 77810, 'seventy-seven thousand eight hundred ten');\nINSERT INTO t2 VALUES(12615, 23874, 'twenty-three thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(12616, 11269, 'eleven thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(12617, 48975, 'forty-eight thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(12618, 34702, 'thirty-four thousand seven hundred two');\nINSERT INTO t2 VALUES(12619, 31495, 'thirty-one thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(12620, 33985, 'thirty-three thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(12621, 55958, 'fifty-five thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(12622, 64040, 'sixty-four thousand forty');\nINSERT INTO t2 VALUES(12623, 15700, 'fifteen thousand seven hundred');\nINSERT INTO t2 VALUES(12624, 91866, 'ninety-one thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(12625, 48729, 'forty-eight thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(12626, 50735, 'fifty thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(12627, 27221, 'twenty-seven thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(12628, 89406, 'eighty-nine thousand four hundred six');\nINSERT INTO t2 VALUES(12629, 7412, 'seven thousand four hundred twelve');\nINSERT INTO t2 VALUES(12630, 84827, 'eighty-four thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(12631, 58206, 'fifty-eight thousand two hundred six');\nINSERT INTO t2 VALUES(12632, 77286, 'seventy-seven thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(12633, 57636, 'fifty-seven thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(12634, 28745, 'twenty-eight thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(12635, 1221, 'one thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(12636, 42082, 'forty-two thousand eighty-two');\nINSERT INTO t2 VALUES(12637, 23456, 'twenty-three thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(12638, 25511, 'twenty-five thousand five hundred eleven');\nINSERT INTO t2 VALUES(12639, 94709, 'ninety-four thousand seven hundred nine');\nINSERT INTO t2 VALUES(12640, 32505, 'thirty-two thousand five hundred five');\nINSERT INTO t2 VALUES(12641, 38679, 'thirty-eight thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(12642, 60015, 'sixty thousand fifteen');\nINSERT INTO t2 VALUES(12643, 17694, 'seventeen thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(12644, 55634, 'fifty-five thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(12645, 54043, 'fifty-four thousand forty-three');\nINSERT INTO t2 VALUES(12646, 55354, 'fifty-five thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(12647, 59841, 'fifty-nine thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(12648, 46896, 'forty-six thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(12649, 29103, 'twenty-nine thousand one hundred three');\nINSERT INTO t2 VALUES(12650, 46926, 'forty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(12651, 38232, 'thirty-eight thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(12652, 67203, 'sixty-seven thousand two hundred three');\nINSERT INTO t2 VALUES(12653, 98305, 'ninety-eight thousand three hundred five');\nINSERT INTO t2 VALUES(12654, 75262, 'seventy-five thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(12655, 51044, 'fifty-one thousand forty-four');\nINSERT INTO t2 VALUES(12656, 24410, 'twenty-four thousand four hundred ten');\nINSERT INTO t2 VALUES(12657, 46431, 'forty-six thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(12658, 60254, 'sixty thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(12659, 98685, 'ninety-eight thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(12660, 75358, 'seventy-five thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(12661, 87741, 'eighty-seven thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(12662, 48253, 'forty-eight thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(12663, 83092, 'eighty-three thousand ninety-two');\nINSERT INTO t2 VALUES(12664, 32609, 'thirty-two thousand six hundred nine');\nINSERT INTO t2 VALUES(12665, 76744, 'seventy-six thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(12666, 31524, 'thirty-one thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(12667, 68959, 'sixty-eight thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(12668, 31549, 'thirty-one thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(12669, 19074, 'nineteen thousand seventy-four');\nINSERT INTO t2 VALUES(12670, 99788, 'ninety-nine thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(12671, 98808, 'ninety-eight thousand eight hundred eight');\nINSERT INTO t2 VALUES(12672, 71340, 'seventy-one thousand three hundred forty');\nINSERT INTO t2 VALUES(12673, 78608, 'seventy-eight thousand six hundred eight');\nINSERT INTO t2 VALUES(12674, 54074, 'fifty-four thousand seventy-four');\nINSERT INTO t2 VALUES(12675, 18310, 'eighteen thousand three hundred ten');\nINSERT INTO t2 VALUES(12676, 8874, 'eight thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(12677, 51017, 'fifty-one thousand seventeen');\nINSERT INTO t2 VALUES(12678, 45090, 'forty-five thousand ninety');\nINSERT INTO t2 VALUES(12679, 87858, 'eighty-seven thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(12680, 62932, 'sixty-two thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(12681, 71313, 'seventy-one thousand three hundred thirteen');\nINSERT INTO t2 VALUES(12682, 17523, 'seventeen thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(12683, 47376, 'forty-seven thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(12684, 10065, 'ten thousand sixty-five');\nINSERT INTO t2 VALUES(12685, 82308, 'eighty-two thousand three hundred eight');\nINSERT INTO t2 VALUES(12686, 48199, 'forty-eight thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(12687, 55931, 'fifty-five thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(12688, 15461, 'fifteen thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(12689, 13502, 'thirteen thousand five hundred two');\nINSERT INTO t2 VALUES(12690, 68126, 'sixty-eight thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(12691, 84777, 'eighty-four thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(12692, 24947, 'twenty-four thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(12693, 84968, 'eighty-four thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(12694, 27249, 'twenty-seven thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(12695, 3025, 'three thousand twenty-five');\nINSERT INTO t2 VALUES(12696, 56981, 'fifty-six thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(12697, 97479, 'ninety-seven thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(12698, 80969, 'eighty thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(12699, 71722, 'seventy-one thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(12700, 17833, 'seventeen thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(12701, 72092, 'seventy-two thousand ninety-two');\nINSERT INTO t2 VALUES(12702, 27657, 'twenty-seven thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(12703, 48708, 'forty-eight thousand seven hundred eight');\nINSERT INTO t2 VALUES(12704, 72549, 'seventy-two thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(12705, 53203, 'fifty-three thousand two hundred three');\nINSERT INTO t2 VALUES(12706, 3320, 'three thousand three hundred twenty');\nINSERT INTO t2 VALUES(12707, 73978, 'seventy-three thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(12708, 80083, 'eighty thousand eighty-three');\nINSERT INTO t2 VALUES(12709, 45347, 'forty-five thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(12710, 23713, 'twenty-three thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(12711, 91256, 'ninety-one thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(12712, 84112, 'eighty-four thousand one hundred twelve');\nINSERT INTO t2 VALUES(12713, 88280, 'eighty-eight thousand two hundred eighty');\nINSERT INTO t2 VALUES(12714, 84621, 'eighty-four thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(12715, 63263, 'sixty-three thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(12716, 39124, 'thirty-nine thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(12717, 42785, 'forty-two thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(12718, 26797, 'twenty-six thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(12719, 62518, 'sixty-two thousand five hundred eighteen');\nINSERT INTO t2 VALUES(12720, 8640, 'eight thousand six hundred forty');\nINSERT INTO t2 VALUES(12721, 25589, 'twenty-five thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(12722, 351, 'three hundred fifty-one');\nINSERT INTO t2 VALUES(12723, 22904, 'twenty-two thousand nine hundred four');\nINSERT INTO t2 VALUES(12724, 5160, 'five thousand one hundred sixty');\nINSERT INTO t2 VALUES(12725, 91646, 'ninety-one thousand six hundred forty-six');\nINSERT INTO t2 VALUES(12726, 61314, 'sixty-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(12727, 93782, 'ninety-three thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(12728, 37006, 'thirty-seven thousand six');\nINSERT INTO t2 VALUES(12729, 38451, 'thirty-eight thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(12730, 35434, 'thirty-five thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(12731, 85499, 'eighty-five thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(12732, 48641, 'forty-eight thousand six hundred forty-one');\nINSERT INTO t2 VALUES(12733, 273, 'two hundred seventy-three');\nINSERT INTO t2 VALUES(12734, 29340, 'twenty-nine thousand three hundred forty');\nINSERT INTO t2 VALUES(12735, 5279, 'five thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(12736, 84050, 'eighty-four thousand fifty');\nINSERT INTO t2 VALUES(12737, 17282, 'seventeen thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(12738, 28789, 'twenty-eight thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(12739, 17097, 'seventeen thousand ninety-seven');\nINSERT INTO t2 VALUES(12740, 22432, 'twenty-two thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(12741, 16820, 'sixteen thousand eight hundred twenty');\nINSERT INTO t2 VALUES(12742, 53508, 'fifty-three thousand five hundred eight');\nINSERT INTO t2 VALUES(12743, 94135, 'ninety-four thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(12744, 75030, 'seventy-five thousand thirty');\nINSERT INTO t2 VALUES(12745, 84367, 'eighty-four thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(12746, 37510, 'thirty-seven thousand five hundred ten');\nINSERT INTO t2 VALUES(12747, 15447, 'fifteen thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(12748, 50394, 'fifty thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(12749, 53109, 'fifty-three thousand one hundred nine');\nINSERT INTO t2 VALUES(12750, 94074, 'ninety-four thousand seventy-four');\nINSERT INTO t2 VALUES(12751, 44533, 'forty-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(12752, 46988, 'forty-six thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(12753, 94799, 'ninety-four thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(12754, 90383, 'ninety thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(12755, 84364, 'eighty-four thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(12756, 53591, 'fifty-three thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(12757, 86335, 'eighty-six thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(12758, 1902, 'one thousand nine hundred two');\nINSERT INTO t2 VALUES(12759, 38419, 'thirty-eight thousand four hundred nineteen');\nINSERT INTO t2 VALUES(12760, 34700, 'thirty-four thousand seven hundred');\nINSERT INTO t2 VALUES(12761, 99480, 'ninety-nine thousand four hundred eighty');\nINSERT INTO t2 VALUES(12762, 11679, 'eleven thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(12763, 38545, 'thirty-eight thousand five hundred forty-five');\nINSERT INTO t2 VALUES(12764, 95644, 'ninety-five thousand six hundred forty-four');\nINSERT INTO t2 VALUES(12765, 1290, 'one thousand two hundred ninety');\nINSERT INTO t2 VALUES(12766, 59726, 'fifty-nine thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(12767, 94997, 'ninety-four thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(12768, 67254, 'sixty-seven thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(12769, 14653, 'fourteen thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(12770, 88412, 'eighty-eight thousand four hundred twelve');\nINSERT INTO t2 VALUES(12771, 33937, 'thirty-three thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(12772, 19610, 'nineteen thousand six hundred ten');\nINSERT INTO t2 VALUES(12773, 90505, 'ninety thousand five hundred five');\nINSERT INTO t2 VALUES(12774, 9043, 'nine thousand forty-three');\nINSERT INTO t2 VALUES(12775, 38038, 'thirty-eight thousand thirty-eight');\nINSERT INTO t2 VALUES(12776, 73223, 'seventy-three thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(12777, 12215, 'twelve thousand two hundred fifteen');\nINSERT INTO t2 VALUES(12778, 42517, 'forty-two thousand five hundred seventeen');\nINSERT INTO t2 VALUES(12779, 97719, 'ninety-seven thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(12780, 82493, 'eighty-two thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(12781, 1465, 'one thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(12782, 65935, 'sixty-five thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(12783, 10752, 'ten thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(12784, 41441, 'forty-one thousand four hundred forty-one');\nINSERT INTO t2 VALUES(12785, 14670, 'fourteen thousand six hundred seventy');\nINSERT INTO t2 VALUES(12786, 22687, 'twenty-two thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(12787, 42904, 'forty-two thousand nine hundred four');\nINSERT INTO t2 VALUES(12788, 48511, 'forty-eight thousand five hundred eleven');\nINSERT INTO t2 VALUES(12789, 8135, 'eight thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(12790, 77551, 'seventy-seven thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(12791, 40575, 'forty thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(12792, 38451, 'thirty-eight thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(12793, 87935, 'eighty-seven thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(12794, 15382, 'fifteen thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(12795, 25292, 'twenty-five thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(12796, 66157, 'sixty-six thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(12797, 95879, 'ninety-five thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(12798, 29664, 'twenty-nine thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(12799, 68150, 'sixty-eight thousand one hundred fifty');\nINSERT INTO t2 VALUES(12800, 42576, 'forty-two thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(12801, 54257, 'fifty-four thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(12802, 91548, 'ninety-one thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(12803, 19302, 'nineteen thousand three hundred two');\nINSERT INTO t2 VALUES(12804, 14043, 'fourteen thousand forty-three');\nINSERT INTO t2 VALUES(12805, 50292, 'fifty thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(12806, 82995, 'eighty-two thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(12807, 74002, 'seventy-four thousand two');\nINSERT INTO t2 VALUES(12808, 32517, 'thirty-two thousand five hundred seventeen');\nINSERT INTO t2 VALUES(12809, 26885, 'twenty-six thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(12810, 92621, 'ninety-two thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(12811, 57417, 'fifty-seven thousand four hundred seventeen');\nINSERT INTO t2 VALUES(12812, 33465, 'thirty-three thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(12813, 20416, 'twenty thousand four hundred sixteen');\nINSERT INTO t2 VALUES(12814, 56124, 'fifty-six thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(12815, 46067, 'forty-six thousand sixty-seven');\nINSERT INTO t2 VALUES(12816, 39386, 'thirty-nine thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(12817, 79949, 'seventy-nine thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(12818, 91960, 'ninety-one thousand nine hundred sixty');\nINSERT INTO t2 VALUES(12819, 72770, 'seventy-two thousand seven hundred seventy');\nINSERT INTO t2 VALUES(12820, 71993, 'seventy-one thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(12821, 84252, 'eighty-four thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(12822, 19078, 'nineteen thousand seventy-eight');\nINSERT INTO t2 VALUES(12823, 67071, 'sixty-seven thousand seventy-one');\nINSERT INTO t2 VALUES(12824, 25905, 'twenty-five thousand nine hundred five');\nINSERT INTO t2 VALUES(12825, 24508, 'twenty-four thousand five hundred eight');\nINSERT INTO t2 VALUES(12826, 5443, 'five thousand four hundred forty-three');\nINSERT INTO t2 VALUES(12827, 92870, 'ninety-two thousand eight hundred seventy');\nINSERT INTO t2 VALUES(12828, 56853, 'fifty-six thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(12829, 24852, 'twenty-four thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(12830, 13687, 'thirteen thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(12831, 17332, 'seventeen thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(12832, 14460, 'fourteen thousand four hundred sixty');\nINSERT INTO t2 VALUES(12833, 81086, 'eighty-one thousand eighty-six');\nINSERT INTO t2 VALUES(12834, 7884, 'seven thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(12835, 83508, 'eighty-three thousand five hundred eight');\nINSERT INTO t2 VALUES(12836, 69657, 'sixty-nine thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(12837, 44143, 'forty-four thousand one hundred forty-three');\nINSERT INTO t2 VALUES(12838, 81363, 'eighty-one thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(12839, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t2 VALUES(12840, 18734, 'eighteen thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(12841, 44796, 'forty-four thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(12842, 19063, 'nineteen thousand sixty-three');\nINSERT INTO t2 VALUES(12843, 36851, 'thirty-six thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(12844, 6243, 'six thousand two hundred forty-three');\nINSERT INTO t2 VALUES(12845, 80756, 'eighty thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(12846, 76024, 'seventy-six thousand twenty-four');\nINSERT INTO t2 VALUES(12847, 65444, 'sixty-five thousand four hundred forty-four');\nINSERT INTO t2 VALUES(12848, 74297, 'seventy-four thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(12849, 61080, 'sixty-one thousand eighty');\nINSERT INTO t2 VALUES(12850, 47659, 'forty-seven thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(12851, 51887, 'fifty-one thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(12852, 21369, 'twenty-one thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(12853, 63464, 'sixty-three thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(12854, 73265, 'seventy-three thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(12855, 81129, 'eighty-one thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(12856, 14852, 'fourteen thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(12857, 86379, 'eighty-six thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(12858, 90964, 'ninety thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(12859, 62673, 'sixty-two thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(12860, 82954, 'eighty-two thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(12861, 36211, 'thirty-six thousand two hundred eleven');\nINSERT INTO t2 VALUES(12862, 18351, 'eighteen thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(12863, 79590, 'seventy-nine thousand five hundred ninety');\nINSERT INTO t2 VALUES(12864, 77315, 'seventy-seven thousand three hundred fifteen');\nINSERT INTO t2 VALUES(12865, 88413, 'eighty-eight thousand four hundred thirteen');\nINSERT INTO t2 VALUES(12866, 14572, 'fourteen thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(12867, 42962, 'forty-two thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(12868, 26686, 'twenty-six thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(12869, 52599, 'fifty-two thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(12870, 36091, 'thirty-six thousand ninety-one');\nINSERT INTO t2 VALUES(12871, 75689, 'seventy-five thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(12872, 58595, 'fifty-eight thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(12873, 96901, 'ninety-six thousand nine hundred one');\nINSERT INTO t2 VALUES(12874, 58548, 'fifty-eight thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(12875, 89596, 'eighty-nine thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(12876, 38378, 'thirty-eight thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(12877, 29383, 'twenty-nine thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(12878, 41611, 'forty-one thousand six hundred eleven');\nINSERT INTO t2 VALUES(12879, 7871, 'seven thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(12880, 28664, 'twenty-eight thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(12881, 22282, 'twenty-two thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(12882, 64291, 'sixty-four thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(12883, 63841, 'sixty-three thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(12884, 5644, 'five thousand six hundred forty-four');\nINSERT INTO t2 VALUES(12885, 87763, 'eighty-seven thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(12886, 71258, 'seventy-one thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(12887, 98969, 'ninety-eight thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(12888, 97564, 'ninety-seven thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(12889, 89038, 'eighty-nine thousand thirty-eight');\nINSERT INTO t2 VALUES(12890, 70619, 'seventy thousand six hundred nineteen');\nINSERT INTO t2 VALUES(12891, 31542, 'thirty-one thousand five hundred forty-two');\nINSERT INTO t2 VALUES(12892, 89204, 'eighty-nine thousand two hundred four');\nINSERT INTO t2 VALUES(12893, 88392, 'eighty-eight thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(12894, 16625, 'sixteen thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(12895, 4785, 'four thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(12896, 47685, 'forty-seven thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(12897, 11192, 'eleven thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(12898, 32073, 'thirty-two thousand seventy-three');\nINSERT INTO t2 VALUES(12899, 78085, 'seventy-eight thousand eighty-five');\nINSERT INTO t2 VALUES(12900, 503, 'five hundred three');\nINSERT INTO t2 VALUES(12901, 46088, 'forty-six thousand eighty-eight');\nINSERT INTO t2 VALUES(12902, 94004, 'ninety-four thousand four');\nINSERT INTO t2 VALUES(12903, 22694, 'twenty-two thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(12904, 56386, 'fifty-six thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(12905, 2151, 'two thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(12906, 71433, 'seventy-one thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(12907, 70973, 'seventy thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(12908, 77969, 'seventy-seven thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(12909, 57592, 'fifty-seven thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(12910, 54666, 'fifty-four thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(12911, 49893, 'forty-nine thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(12912, 6148, 'six thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(12913, 60475, 'sixty thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(12914, 76054, 'seventy-six thousand fifty-four');\nINSERT INTO t2 VALUES(12915, 89714, 'eighty-nine thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(12916, 90057, 'ninety thousand fifty-seven');\nINSERT INTO t2 VALUES(12917, 93441, 'ninety-three thousand four hundred forty-one');\nINSERT INTO t2 VALUES(12918, 77868, 'seventy-seven thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(12919, 52884, 'fifty-two thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(12920, 42957, 'forty-two thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(12921, 80056, 'eighty thousand fifty-six');\nINSERT INTO t2 VALUES(12922, 94672, 'ninety-four thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(12923, 69476, 'sixty-nine thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(12924, 47443, 'forty-seven thousand four hundred forty-three');\nINSERT INTO t2 VALUES(12925, 1464, 'one thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(12926, 59499, 'fifty-nine thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(12927, 20766, 'twenty thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(12928, 35904, 'thirty-five thousand nine hundred four');\nINSERT INTO t2 VALUES(12929, 16391, 'sixteen thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(12930, 14525, 'fourteen thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(12931, 61799, 'sixty-one thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(12932, 58118, 'fifty-eight thousand one hundred eighteen');\nINSERT INTO t2 VALUES(12933, 86526, 'eighty-six thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(12934, 31895, 'thirty-one thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(12935, 45567, 'forty-five thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(12936, 29187, 'twenty-nine thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(12937, 29988, 'twenty-nine thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(12938, 77665, 'seventy-seven thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(12939, 91083, 'ninety-one thousand eighty-three');\nINSERT INTO t2 VALUES(12940, 80714, 'eighty thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(12941, 98362, 'ninety-eight thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(12942, 8985, 'eight thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(12943, 42413, 'forty-two thousand four hundred thirteen');\nINSERT INTO t2 VALUES(12944, 32181, 'thirty-two thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(12945, 96375, 'ninety-six thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(12946, 7972, 'seven thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(12947, 78864, 'seventy-eight thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(12948, 43524, 'forty-three thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(12949, 54870, 'fifty-four thousand eight hundred seventy');\nINSERT INTO t2 VALUES(12950, 9549, 'nine thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(12951, 71122, 'seventy-one thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(12952, 74872, 'seventy-four thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(12953, 67421, 'sixty-seven thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(12954, 91784, 'ninety-one thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(12955, 93531, 'ninety-three thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(12956, 89621, 'eighty-nine thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(12957, 80613, 'eighty thousand six hundred thirteen');\nINSERT INTO t2 VALUES(12958, 4054, 'four thousand fifty-four');\nINSERT INTO t2 VALUES(12959, 40155, 'forty thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(12960, 53778, 'fifty-three thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(12961, 75829, 'seventy-five thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(12962, 75078, 'seventy-five thousand seventy-eight');\nINSERT INTO t2 VALUES(12963, 14544, 'fourteen thousand five hundred forty-four');\nINSERT INTO t2 VALUES(12964, 95138, 'ninety-five thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(12965, 40098, 'forty thousand ninety-eight');\nINSERT INTO t2 VALUES(12966, 70972, 'seventy thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(12967, 3327, 'three thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(12968, 54851, 'fifty-four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(12969, 48095, 'forty-eight thousand ninety-five');\nINSERT INTO t2 VALUES(12970, 74296, 'seventy-four thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(12971, 72389, 'seventy-two thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(12972, 20726, 'twenty thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(12973, 76543, 'seventy-six thousand five hundred forty-three');\nINSERT INTO t2 VALUES(12974, 20326, 'twenty thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(12975, 63210, 'sixty-three thousand two hundred ten');\nINSERT INTO t2 VALUES(12976, 5038, 'five thousand thirty-eight');\nINSERT INTO t2 VALUES(12977, 75155, 'seventy-five thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(12978, 6163, 'six thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(12979, 50030, 'fifty thousand thirty');\nINSERT INTO t2 VALUES(12980, 98458, 'ninety-eight thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(12981, 97940, 'ninety-seven thousand nine hundred forty');\nINSERT INTO t2 VALUES(12982, 22001, 'twenty-two thousand one');\nINSERT INTO t2 VALUES(12983, 11763, 'eleven thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(12984, 72730, 'seventy-two thousand seven hundred thirty');\nINSERT INTO t2 VALUES(12985, 95710, 'ninety-five thousand seven hundred ten');\nINSERT INTO t2 VALUES(12986, 51318, 'fifty-one thousand three hundred eighteen');\nINSERT INTO t2 VALUES(12987, 43493, 'forty-three thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(12988, 24425, 'twenty-four thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(12989, 30973, 'thirty thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(12990, 15094, 'fifteen thousand ninety-four');\nINSERT INTO t2 VALUES(12991, 44550, 'forty-four thousand five hundred fifty');\nINSERT INTO t2 VALUES(12992, 39778, 'thirty-nine thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(12993, 3393, 'three thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(12994, 99931, 'ninety-nine thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(12995, 65492, 'sixty-five thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(12996, 52057, 'fifty-two thousand fifty-seven');\nINSERT INTO t2 VALUES(12997, 30194, 'thirty thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(12998, 90986, 'ninety thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(12999, 43629, 'forty-three thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(13000, 25038, 'twenty-five thousand thirty-eight');\nINSERT INTO t2 VALUES(13001, 55729, 'fifty-five thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(13002, 88732, 'eighty-eight thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(13003, 68437, 'sixty-eight thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(13004, 71645, 'seventy-one thousand six hundred forty-five');\nINSERT INTO t2 VALUES(13005, 53387, 'fifty-three thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(13006, 82609, 'eighty-two thousand six hundred nine');\nINSERT INTO t2 VALUES(13007, 13864, 'thirteen thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(13008, 91106, 'ninety-one thousand one hundred six');\nINSERT INTO t2 VALUES(13009, 35798, 'thirty-five thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(13010, 77114, 'seventy-seven thousand one hundred fourteen');\nINSERT INTO t2 VALUES(13011, 59246, 'fifty-nine thousand two hundred forty-six');\nINSERT INTO t2 VALUES(13012, 25971, 'twenty-five thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(13013, 21001, 'twenty-one thousand one');\nINSERT INTO t2 VALUES(13014, 17681, 'seventeen thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(13015, 10887, 'ten thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(13016, 3308, 'three thousand three hundred eight');\nINSERT INTO t2 VALUES(13017, 16851, 'sixteen thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(13018, 73626, 'seventy-three thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(13019, 39209, 'thirty-nine thousand two hundred nine');\nINSERT INTO t2 VALUES(13020, 44747, 'forty-four thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(13021, 48379, 'forty-eight thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(13022, 95384, 'ninety-five thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(13023, 9559, 'nine thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(13024, 22617, 'twenty-two thousand six hundred seventeen');\nINSERT INTO t2 VALUES(13025, 26012, 'twenty-six thousand twelve');\nINSERT INTO t2 VALUES(13026, 98347, 'ninety-eight thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(13027, 37304, 'thirty-seven thousand three hundred four');\nINSERT INTO t2 VALUES(13028, 38813, 'thirty-eight thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(13029, 46145, 'forty-six thousand one hundred forty-five');\nINSERT INTO t2 VALUES(13030, 46570, 'forty-six thousand five hundred seventy');\nINSERT INTO t2 VALUES(13031, 50681, 'fifty thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(13032, 84182, 'eighty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(13033, 39559, 'thirty-nine thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(13034, 63151, 'sixty-three thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(13035, 5028, 'five thousand twenty-eight');\nINSERT INTO t2 VALUES(13036, 77886, 'seventy-seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(13037, 68258, 'sixty-eight thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(13038, 66907, 'sixty-six thousand nine hundred seven');\nINSERT INTO t2 VALUES(13039, 88, 'eighty-eight');\nINSERT INTO t2 VALUES(13040, 7729, 'seven thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(13041, 30994, 'thirty thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(13042, 27415, 'twenty-seven thousand four hundred fifteen');\nINSERT INTO t2 VALUES(13043, 67390, 'sixty-seven thousand three hundred ninety');\nINSERT INTO t2 VALUES(13044, 30356, 'thirty thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(13045, 10276, 'ten thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(13046, 94756, 'ninety-four thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(13047, 31440, 'thirty-one thousand four hundred forty');\nINSERT INTO t2 VALUES(13048, 7856, 'seven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(13049, 52568, 'fifty-two thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(13050, 16510, 'sixteen thousand five hundred ten');\nINSERT INTO t2 VALUES(13051, 72650, 'seventy-two thousand six hundred fifty');\nINSERT INTO t2 VALUES(13052, 70648, 'seventy thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(13053, 83477, 'eighty-three thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(13054, 6684, 'six thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(13055, 93352, 'ninety-three thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(13056, 39802, 'thirty-nine thousand eight hundred two');\nINSERT INTO t2 VALUES(13057, 34203, 'thirty-four thousand two hundred three');\nINSERT INTO t2 VALUES(13058, 65817, 'sixty-five thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(13059, 33706, 'thirty-three thousand seven hundred six');\nINSERT INTO t2 VALUES(13060, 6095, 'six thousand ninety-five');\nINSERT INTO t2 VALUES(13061, 99711, 'ninety-nine thousand seven hundred eleven');\nINSERT INTO t2 VALUES(13062, 97379, 'ninety-seven thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(13063, 59598, 'fifty-nine thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(13064, 44929, 'forty-four thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(13065, 50358, 'fifty thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(13066, 55998, 'fifty-five thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(13067, 24931, 'twenty-four thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(13068, 1909, 'one thousand nine hundred nine');\nINSERT INTO t2 VALUES(13069, 13762, 'thirteen thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(13070, 82104, 'eighty-two thousand one hundred four');\nINSERT INTO t2 VALUES(13071, 98747, 'ninety-eight thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(13072, 77978, 'seventy-seven thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13073, 11771, 'eleven thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(13074, 11831, 'eleven thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(13075, 3838, 'three thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(13076, 36656, 'thirty-six thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(13077, 81809, 'eighty-one thousand eight hundred nine');\nINSERT INTO t2 VALUES(13078, 59234, 'fifty-nine thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(13079, 48911, 'forty-eight thousand nine hundred eleven');\nINSERT INTO t2 VALUES(13080, 10925, 'ten thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(13081, 33733, 'thirty-three thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(13082, 10417, 'ten thousand four hundred seventeen');\nINSERT INTO t2 VALUES(13083, 4775, 'four thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(13084, 27816, 'twenty-seven thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(13085, 57227, 'fifty-seven thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(13086, 51662, 'fifty-one thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(13087, 18961, 'eighteen thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(13088, 17700, 'seventeen thousand seven hundred');\nINSERT INTO t2 VALUES(13089, 5420, 'five thousand four hundred twenty');\nINSERT INTO t2 VALUES(13090, 55440, 'fifty-five thousand four hundred forty');\nINSERT INTO t2 VALUES(13091, 66680, 'sixty-six thousand six hundred eighty');\nINSERT INTO t2 VALUES(13092, 5923, 'five thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(13093, 49544, 'forty-nine thousand five hundred forty-four');\nINSERT INTO t2 VALUES(13094, 34480, 'thirty-four thousand four hundred eighty');\nINSERT INTO t2 VALUES(13095, 13248, 'thirteen thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(13096, 36359, 'thirty-six thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(13097, 42391, 'forty-two thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(13098, 90361, 'ninety thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(13099, 78799, 'seventy-eight thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(13100, 85497, 'eighty-five thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(13101, 70559, 'seventy thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(13102, 66041, 'sixty-six thousand forty-one');\nINSERT INTO t2 VALUES(13103, 24343, 'twenty-four thousand three hundred forty-three');\nINSERT INTO t2 VALUES(13104, 61475, 'sixty-one thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(13105, 10975, 'ten thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(13106, 69803, 'sixty-nine thousand eight hundred three');\nINSERT INTO t2 VALUES(13107, 98004, 'ninety-eight thousand four');\nINSERT INTO t2 VALUES(13108, 16349, 'sixteen thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(13109, 9929, 'nine thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(13110, 36080, 'thirty-six thousand eighty');\nINSERT INTO t2 VALUES(13111, 12242, 'twelve thousand two hundred forty-two');\nINSERT INTO t2 VALUES(13112, 97028, 'ninety-seven thousand twenty-eight');\nINSERT INTO t2 VALUES(13113, 29384, 'twenty-nine thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(13114, 38221, 'thirty-eight thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(13115, 53447, 'fifty-three thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(13116, 98000, 'ninety-eight thousand');\nINSERT INTO t2 VALUES(13117, 68425, 'sixty-eight thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(13118, 4350, 'four thousand three hundred fifty');\nINSERT INTO t2 VALUES(13119, 1708, 'one thousand seven hundred eight');\nINSERT INTO t2 VALUES(13120, 28134, 'twenty-eight thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(13121, 4813, 'four thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(13122, 93787, 'ninety-three thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(13123, 8822, 'eight thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(13124, 72982, 'seventy-two thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(13125, 33244, 'thirty-three thousand two hundred forty-four');\nINSERT INTO t2 VALUES(13126, 48771, 'forty-eight thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(13127, 48958, 'forty-eight thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(13128, 10980, 'ten thousand nine hundred eighty');\nINSERT INTO t2 VALUES(13129, 23503, 'twenty-three thousand five hundred three');\nINSERT INTO t2 VALUES(13130, 97517, 'ninety-seven thousand five hundred seventeen');\nINSERT INTO t2 VALUES(13131, 75226, 'seventy-five thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(13132, 65680, 'sixty-five thousand six hundred eighty');\nINSERT INTO t2 VALUES(13133, 81768, 'eighty-one thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(13134, 26780, 'twenty-six thousand seven hundred eighty');\nINSERT INTO t2 VALUES(13135, 13112, 'thirteen thousand one hundred twelve');\nINSERT INTO t2 VALUES(13136, 30779, 'thirty thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(13137, 69018, 'sixty-nine thousand eighteen');\nINSERT INTO t2 VALUES(13138, 54064, 'fifty-four thousand sixty-four');\nINSERT INTO t2 VALUES(13139, 64860, 'sixty-four thousand eight hundred sixty');\nINSERT INTO t2 VALUES(13140, 34161, 'thirty-four thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(13141, 2837, 'two thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(13142, 36341, 'thirty-six thousand three hundred forty-one');\nINSERT INTO t2 VALUES(13143, 1197, 'one thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(13144, 11929, 'eleven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(13145, 87437, 'eighty-seven thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(13146, 73747, 'seventy-three thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(13147, 3822, 'three thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(13148, 63132, 'sixty-three thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(13149, 74858, 'seventy-four thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(13150, 60719, 'sixty thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(13151, 11534, 'eleven thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(13152, 89423, 'eighty-nine thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(13153, 64825, 'sixty-four thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(13154, 67448, 'sixty-seven thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(13155, 27193, 'twenty-seven thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(13156, 9647, 'nine thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(13157, 35185, 'thirty-five thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(13158, 8076, 'eight thousand seventy-six');\nINSERT INTO t2 VALUES(13159, 50827, 'fifty thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(13160, 56347, 'fifty-six thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(13161, 63542, 'sixty-three thousand five hundred forty-two');\nINSERT INTO t2 VALUES(13162, 36439, 'thirty-six thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(13163, 17371, 'seventeen thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(13164, 51837, 'fifty-one thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(13165, 87903, 'eighty-seven thousand nine hundred three');\nINSERT INTO t2 VALUES(13166, 95923, 'ninety-five thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(13167, 90815, 'ninety thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(13168, 22562, 'twenty-two thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(13169, 50782, 'fifty thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(13170, 82861, 'eighty-two thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(13171, 70222, 'seventy thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(13172, 12179, 'twelve thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(13173, 54493, 'fifty-four thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(13174, 78149, 'seventy-eight thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(13175, 46002, 'forty-six thousand two');\nINSERT INTO t2 VALUES(13176, 7700, 'seven thousand seven hundred');\nINSERT INTO t2 VALUES(13177, 77620, 'seventy-seven thousand six hundred twenty');\nINSERT INTO t2 VALUES(13178, 3474, 'three thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(13179, 73851, 'seventy-three thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(13180, 15905, 'fifteen thousand nine hundred five');\nINSERT INTO t2 VALUES(13181, 59004, 'fifty-nine thousand four');\nINSERT INTO t2 VALUES(13182, 96704, 'ninety-six thousand seven hundred four');\nINSERT INTO t2 VALUES(13183, 36024, 'thirty-six thousand twenty-four');\nINSERT INTO t2 VALUES(13184, 28203, 'twenty-eight thousand two hundred three');\nINSERT INTO t2 VALUES(13185, 52029, 'fifty-two thousand twenty-nine');\nINSERT INTO t2 VALUES(13186, 78390, 'seventy-eight thousand three hundred ninety');\nINSERT INTO t2 VALUES(13187, 87978, 'eighty-seven thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13188, 17610, 'seventeen thousand six hundred ten');\nINSERT INTO t2 VALUES(13189, 72739, 'seventy-two thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(13190, 34316, 'thirty-four thousand three hundred sixteen');\nINSERT INTO t2 VALUES(13191, 24071, 'twenty-four thousand seventy-one');\nINSERT INTO t2 VALUES(13192, 53318, 'fifty-three thousand three hundred eighteen');\nINSERT INTO t2 VALUES(13193, 75735, 'seventy-five thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(13194, 41541, 'forty-one thousand five hundred forty-one');\nINSERT INTO t2 VALUES(13195, 32100, 'thirty-two thousand one hundred');\nINSERT INTO t2 VALUES(13196, 61417, 'sixty-one thousand four hundred seventeen');\nINSERT INTO t2 VALUES(13197, 11863, 'eleven thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(13198, 29375, 'twenty-nine thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(13199, 37859, 'thirty-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(13200, 87694, 'eighty-seven thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(13201, 26526, 'twenty-six thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(13202, 15888, 'fifteen thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(13203, 70807, 'seventy thousand eight hundred seven');\nINSERT INTO t2 VALUES(13204, 94343, 'ninety-four thousand three hundred forty-three');\nINSERT INTO t2 VALUES(13205, 81494, 'eighty-one thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(13206, 29740, 'twenty-nine thousand seven hundred forty');\nINSERT INTO t2 VALUES(13207, 23823, 'twenty-three thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(13208, 59185, 'fifty-nine thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(13209, 20678, 'twenty thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(13210, 29307, 'twenty-nine thousand three hundred seven');\nINSERT INTO t2 VALUES(13211, 13134, 'thirteen thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(13212, 4661, 'four thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(13213, 35977, 'thirty-five thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(13214, 50793, 'fifty thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(13215, 61478, 'sixty-one thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(13216, 98202, 'ninety-eight thousand two hundred two');\nINSERT INTO t2 VALUES(13217, 69740, 'sixty-nine thousand seven hundred forty');\nINSERT INTO t2 VALUES(13218, 75275, 'seventy-five thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(13219, 56925, 'fifty-six thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(13220, 60715, 'sixty thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(13221, 64929, 'sixty-four thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(13222, 27801, 'twenty-seven thousand eight hundred one');\nINSERT INTO t2 VALUES(13223, 18972, 'eighteen thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(13224, 11691, 'eleven thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(13225, 341, 'three hundred forty-one');\nINSERT INTO t2 VALUES(13226, 19298, 'nineteen thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(13227, 40105, 'forty thousand one hundred five');\nINSERT INTO t2 VALUES(13228, 26635, 'twenty-six thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(13229, 24978, 'twenty-four thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13230, 47689, 'forty-seven thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(13231, 11586, 'eleven thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(13232, 84336, 'eighty-four thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(13233, 123, 'one hundred twenty-three');\nINSERT INTO t2 VALUES(13234, 8505, 'eight thousand five hundred five');\nINSERT INTO t2 VALUES(13235, 49402, 'forty-nine thousand four hundred two');\nINSERT INTO t2 VALUES(13236, 26740, 'twenty-six thousand seven hundred forty');\nINSERT INTO t2 VALUES(13237, 83351, 'eighty-three thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(13238, 35659, 'thirty-five thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(13239, 87846, 'eighty-seven thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(13240, 16244, 'sixteen thousand two hundred forty-four');\nINSERT INTO t2 VALUES(13241, 6127, 'six thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(13242, 12441, 'twelve thousand four hundred forty-one');\nINSERT INTO t2 VALUES(13243, 27672, 'twenty-seven thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(13244, 41610, 'forty-one thousand six hundred ten');\nINSERT INTO t2 VALUES(13245, 77801, 'seventy-seven thousand eight hundred one');\nINSERT INTO t2 VALUES(13246, 64605, 'sixty-four thousand six hundred five');\nINSERT INTO t2 VALUES(13247, 55341, 'fifty-five thousand three hundred forty-one');\nINSERT INTO t2 VALUES(13248, 38208, 'thirty-eight thousand two hundred eight');\nINSERT INTO t2 VALUES(13249, 31076, 'thirty-one thousand seventy-six');\nINSERT INTO t2 VALUES(13250, 10181, 'ten thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(13251, 5654, 'five thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(13252, 14005, 'fourteen thousand five');\nINSERT INTO t2 VALUES(13253, 84968, 'eighty-four thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(13254, 21314, 'twenty-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(13255, 62093, 'sixty-two thousand ninety-three');\nINSERT INTO t2 VALUES(13256, 37291, 'thirty-seven thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(13257, 97748, 'ninety-seven thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(13258, 71656, 'seventy-one thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(13259, 71265, 'seventy-one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(13260, 48969, 'forty-eight thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(13261, 53751, 'fifty-three thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(13262, 57532, 'fifty-seven thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(13263, 36202, 'thirty-six thousand two hundred two');\nINSERT INTO t2 VALUES(13264, 76502, 'seventy-six thousand five hundred two');\nINSERT INTO t2 VALUES(13265, 74362, 'seventy-four thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(13266, 99653, 'ninety-nine thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(13267, 69060, 'sixty-nine thousand sixty');\nINSERT INTO t2 VALUES(13268, 75713, 'seventy-five thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(13269, 76046, 'seventy-six thousand forty-six');\nINSERT INTO t2 VALUES(13270, 61747, 'sixty-one thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(13271, 10396, 'ten thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(13272, 71149, 'seventy-one thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(13273, 75232, 'seventy-five thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(13274, 83474, 'eighty-three thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(13275, 16281, 'sixteen thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(13276, 30919, 'thirty thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(13277, 65978, 'sixty-five thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13278, 20388, 'twenty thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(13279, 52887, 'fifty-two thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(13280, 74633, 'seventy-four thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(13281, 25362, 'twenty-five thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(13282, 89761, 'eighty-nine thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(13283, 96460, 'ninety-six thousand four hundred sixty');\nINSERT INTO t2 VALUES(13284, 9072, 'nine thousand seventy-two');\nINSERT INTO t2 VALUES(13285, 20196, 'twenty thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(13286, 35750, 'thirty-five thousand seven hundred fifty');\nINSERT INTO t2 VALUES(13287, 34201, 'thirty-four thousand two hundred one');\nINSERT INTO t2 VALUES(13288, 71435, 'seventy-one thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(13289, 12565, 'twelve thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(13290, 15407, 'fifteen thousand four hundred seven');\nINSERT INTO t2 VALUES(13291, 60897, 'sixty thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(13292, 97271, 'ninety-seven thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(13293, 42621, 'forty-two thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(13294, 21222, 'twenty-one thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(13295, 97913, 'ninety-seven thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(13296, 58094, 'fifty-eight thousand ninety-four');\nINSERT INTO t2 VALUES(13297, 2904, 'two thousand nine hundred four');\nINSERT INTO t2 VALUES(13298, 42591, 'forty-two thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(13299, 55707, 'fifty-five thousand seven hundred seven');\nINSERT INTO t2 VALUES(13300, 16614, 'sixteen thousand six hundred fourteen');\nINSERT INTO t2 VALUES(13301, 37020, 'thirty-seven thousand twenty');\nINSERT INTO t2 VALUES(13302, 13345, 'thirteen thousand three hundred forty-five');\nINSERT INTO t2 VALUES(13303, 79461, 'seventy-nine thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(13304, 45382, 'forty-five thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(13305, 6165, 'six thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(13306, 3455, 'three thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(13307, 17674, 'seventeen thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(13308, 61058, 'sixty-one thousand fifty-eight');\nINSERT INTO t2 VALUES(13309, 15826, 'fifteen thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(13310, 92302, 'ninety-two thousand three hundred two');\nINSERT INTO t2 VALUES(13311, 27210, 'twenty-seven thousand two hundred ten');\nINSERT INTO t2 VALUES(13312, 36885, 'thirty-six thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(13313, 92064, 'ninety-two thousand sixty-four');\nINSERT INTO t2 VALUES(13314, 12520, 'twelve thousand five hundred twenty');\nINSERT INTO t2 VALUES(13315, 69500, 'sixty-nine thousand five hundred');\nINSERT INTO t2 VALUES(13316, 24016, 'twenty-four thousand sixteen');\nINSERT INTO t2 VALUES(13317, 31056, 'thirty-one thousand fifty-six');\nINSERT INTO t2 VALUES(13318, 59995, 'fifty-nine thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(13319, 24884, 'twenty-four thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(13320, 24883, 'twenty-four thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(13321, 76276, 'seventy-six thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(13322, 2489, 'two thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(13323, 64878, 'sixty-four thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(13324, 44163, 'forty-four thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(13325, 77423, 'seventy-seven thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(13326, 40235, 'forty thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(13327, 27180, 'twenty-seven thousand one hundred eighty');\nINSERT INTO t2 VALUES(13328, 43594, 'forty-three thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(13329, 3690, 'three thousand six hundred ninety');\nINSERT INTO t2 VALUES(13330, 11373, 'eleven thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(13331, 43537, 'forty-three thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(13332, 17400, 'seventeen thousand four hundred');\nINSERT INTO t2 VALUES(13333, 54819, 'fifty-four thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(13334, 19330, 'nineteen thousand three hundred thirty');\nINSERT INTO t2 VALUES(13335, 66430, 'sixty-six thousand four hundred thirty');\nINSERT INTO t2 VALUES(13336, 47395, 'forty-seven thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(13337, 99786, 'ninety-nine thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(13338, 32878, 'thirty-two thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(13339, 90252, 'ninety thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(13340, 67410, 'sixty-seven thousand four hundred ten');\nINSERT INTO t2 VALUES(13341, 46816, 'forty-six thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(13342, 42763, 'forty-two thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(13343, 13614, 'thirteen thousand six hundred fourteen');\nINSERT INTO t2 VALUES(13344, 79965, 'seventy-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(13345, 43649, 'forty-three thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(13346, 55494, 'fifty-five thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(13347, 643, 'six hundred forty-three');\nINSERT INTO t2 VALUES(13348, 24370, 'twenty-four thousand three hundred seventy');\nINSERT INTO t2 VALUES(13349, 88900, 'eighty-eight thousand nine hundred');\nINSERT INTO t2 VALUES(13350, 45332, 'forty-five thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(13351, 87119, 'eighty-seven thousand one hundred nineteen');\nINSERT INTO t2 VALUES(13352, 5424, 'five thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(13353, 6691, 'six thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(13354, 82112, 'eighty-two thousand one hundred twelve');\nINSERT INTO t2 VALUES(13355, 15691, 'fifteen thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(13356, 68239, 'sixty-eight thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(13357, 7515, 'seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(13358, 19529, 'nineteen thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(13359, 30609, 'thirty thousand six hundred nine');\nINSERT INTO t2 VALUES(13360, 49734, 'forty-nine thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(13361, 81504, 'eighty-one thousand five hundred four');\nINSERT INTO t2 VALUES(13362, 92661, 'ninety-two thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(13363, 24630, 'twenty-four thousand six hundred thirty');\nINSERT INTO t2 VALUES(13364, 11629, 'eleven thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(13365, 90377, 'ninety thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(13366, 29404, 'twenty-nine thousand four hundred four');\nINSERT INTO t2 VALUES(13367, 4049, 'four thousand forty-nine');\nINSERT INTO t2 VALUES(13368, 85679, 'eighty-five thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(13369, 50669, 'fifty thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(13370, 39943, 'thirty-nine thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(13371, 61686, 'sixty-one thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(13372, 95689, 'ninety-five thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(13373, 13156, 'thirteen thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(13374, 85078, 'eighty-five thousand seventy-eight');\nINSERT INTO t2 VALUES(13375, 43209, 'forty-three thousand two hundred nine');\nINSERT INTO t2 VALUES(13376, 24774, 'twenty-four thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(13377, 1892, 'one thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(13378, 95840, 'ninety-five thousand eight hundred forty');\nINSERT INTO t2 VALUES(13379, 78703, 'seventy-eight thousand seven hundred three');\nINSERT INTO t2 VALUES(13380, 88084, 'eighty-eight thousand eighty-four');\nINSERT INTO t2 VALUES(13381, 32355, 'thirty-two thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(13382, 90626, 'ninety thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(13383, 85351, 'eighty-five thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(13384, 58896, 'fifty-eight thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(13385, 96485, 'ninety-six thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(13386, 64726, 'sixty-four thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(13387, 23011, 'twenty-three thousand eleven');\nINSERT INTO t2 VALUES(13388, 31760, 'thirty-one thousand seven hundred sixty');\nINSERT INTO t2 VALUES(13389, 73563, 'seventy-three thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(13390, 1457, 'one thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(13391, 54956, 'fifty-four thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(13392, 97576, 'ninety-seven thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(13393, 18120, 'eighteen thousand one hundred twenty');\nINSERT INTO t2 VALUES(13394, 11749, 'eleven thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(13395, 11871, 'eleven thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(13396, 46306, 'forty-six thousand three hundred six');\nINSERT INTO t2 VALUES(13397, 4920, 'four thousand nine hundred twenty');\nINSERT INTO t2 VALUES(13398, 86397, 'eighty-six thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(13399, 4421, 'four thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(13400, 22687, 'twenty-two thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(13401, 18312, 'eighteen thousand three hundred twelve');\nINSERT INTO t2 VALUES(13402, 19119, 'nineteen thousand one hundred nineteen');\nINSERT INTO t2 VALUES(13403, 67993, 'sixty-seven thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(13404, 41345, 'forty-one thousand three hundred forty-five');\nINSERT INTO t2 VALUES(13405, 31791, 'thirty-one thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(13406, 9790, 'nine thousand seven hundred ninety');\nINSERT INTO t2 VALUES(13407, 33943, 'thirty-three thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(13408, 13551, 'thirteen thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(13409, 21684, 'twenty-one thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(13410, 34528, 'thirty-four thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(13411, 34653, 'thirty-four thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(13412, 2531, 'two thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(13413, 55823, 'fifty-five thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(13414, 247, 'two hundred forty-seven');\nINSERT INTO t2 VALUES(13415, 58488, 'fifty-eight thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(13416, 24881, 'twenty-four thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(13417, 80859, 'eighty thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(13418, 35264, 'thirty-five thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(13419, 82193, 'eighty-two thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(13420, 51840, 'fifty-one thousand eight hundred forty');\nINSERT INTO t2 VALUES(13421, 64702, 'sixty-four thousand seven hundred two');\nINSERT INTO t2 VALUES(13422, 38351, 'thirty-eight thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(13423, 71390, 'seventy-one thousand three hundred ninety');\nINSERT INTO t2 VALUES(13424, 91759, 'ninety-one thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(13425, 9395, 'nine thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(13426, 14921, 'fourteen thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(13427, 82772, 'eighty-two thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(13428, 42233, 'forty-two thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(13429, 21197, 'twenty-one thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(13430, 27454, 'twenty-seven thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(13431, 24640, 'twenty-four thousand six hundred forty');\nINSERT INTO t2 VALUES(13432, 64911, 'sixty-four thousand nine hundred eleven');\nINSERT INTO t2 VALUES(13433, 55943, 'fifty-five thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(13434, 74409, 'seventy-four thousand four hundred nine');\nINSERT INTO t2 VALUES(13435, 98584, 'ninety-eight thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(13436, 50969, 'fifty thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(13437, 17820, 'seventeen thousand eight hundred twenty');\nINSERT INTO t2 VALUES(13438, 1380, 'one thousand three hundred eighty');\nINSERT INTO t2 VALUES(13439, 75904, 'seventy-five thousand nine hundred four');\nINSERT INTO t2 VALUES(13440, 58169, 'fifty-eight thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(13441, 89505, 'eighty-nine thousand five hundred five');\nINSERT INTO t2 VALUES(13442, 76161, 'seventy-six thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(13443, 85191, 'eighty-five thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(13444, 3654, 'three thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(13445, 7270, 'seven thousand two hundred seventy');\nINSERT INTO t2 VALUES(13446, 58449, 'fifty-eight thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(13447, 18421, 'eighteen thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(13448, 87540, 'eighty-seven thousand five hundred forty');\nINSERT INTO t2 VALUES(13449, 64988, 'sixty-four thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(13450, 62539, 'sixty-two thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(13451, 5489, 'five thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(13452, 11447, 'eleven thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(13453, 12538, 'twelve thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(13454, 84432, 'eighty-four thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(13455, 43221, 'forty-three thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(13456, 73702, 'seventy-three thousand seven hundred two');\nINSERT INTO t2 VALUES(13457, 62350, 'sixty-two thousand three hundred fifty');\nINSERT INTO t2 VALUES(13458, 90981, 'ninety thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(13459, 84845, 'eighty-four thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(13460, 52796, 'fifty-two thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(13461, 66773, 'sixty-six thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(13462, 41435, 'forty-one thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(13463, 7761, 'seven thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(13464, 28007, 'twenty-eight thousand seven');\nINSERT INTO t2 VALUES(13465, 96963, 'ninety-six thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(13466, 93009, 'ninety-three thousand nine');\nINSERT INTO t2 VALUES(13467, 2819, 'two thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(13468, 924, 'nine hundred twenty-four');\nINSERT INTO t2 VALUES(13469, 24234, 'twenty-four thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(13470, 80264, 'eighty thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(13471, 84051, 'eighty-four thousand fifty-one');\nINSERT INTO t2 VALUES(13472, 1310, 'one thousand three hundred ten');\nINSERT INTO t2 VALUES(13473, 2837, 'two thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(13474, 87686, 'eighty-seven thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(13475, 15872, 'fifteen thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(13476, 84167, 'eighty-four thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(13477, 59391, 'fifty-nine thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(13478, 85732, 'eighty-five thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(13479, 37927, 'thirty-seven thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(13480, 2578, 'two thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(13481, 44012, 'forty-four thousand twelve');\nINSERT INTO t2 VALUES(13482, 14290, 'fourteen thousand two hundred ninety');\nINSERT INTO t2 VALUES(13483, 25567, 'twenty-five thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(13484, 38059, 'thirty-eight thousand fifty-nine');\nINSERT INTO t2 VALUES(13485, 59733, 'fifty-nine thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(13486, 32897, 'thirty-two thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(13487, 12843, 'twelve thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(13488, 25993, 'twenty-five thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(13489, 84519, 'eighty-four thousand five hundred nineteen');\nINSERT INTO t2 VALUES(13490, 22645, 'twenty-two thousand six hundred forty-five');\nINSERT INTO t2 VALUES(13491, 40121, 'forty thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(13492, 31797, 'thirty-one thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(13493, 67194, 'sixty-seven thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(13494, 41318, 'forty-one thousand three hundred eighteen');\nINSERT INTO t2 VALUES(13495, 23003, 'twenty-three thousand three');\nINSERT INTO t2 VALUES(13496, 27605, 'twenty-seven thousand six hundred five');\nINSERT INTO t2 VALUES(13497, 93482, 'ninety-three thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(13498, 75579, 'seventy-five thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(13499, 1265, 'one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(13500, 19780, 'nineteen thousand seven hundred eighty');\nINSERT INTO t2 VALUES(13501, 85838, 'eighty-five thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(13502, 65705, 'sixty-five thousand seven hundred five');\nINSERT INTO t2 VALUES(13503, 4730, 'four thousand seven hundred thirty');\nINSERT INTO t2 VALUES(13504, 15590, 'fifteen thousand five hundred ninety');\nINSERT INTO t2 VALUES(13505, 16963, 'sixteen thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(13506, 71713, 'seventy-one thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(13507, 69032, 'sixty-nine thousand thirty-two');\nINSERT INTO t2 VALUES(13508, 8635, 'eight thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(13509, 47461, 'forty-seven thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(13510, 34107, 'thirty-four thousand one hundred seven');\nINSERT INTO t2 VALUES(13511, 13665, 'thirteen thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(13512, 10762, 'ten thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(13513, 94365, 'ninety-four thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(13514, 11060, 'eleven thousand sixty');\nINSERT INTO t2 VALUES(13515, 58344, 'fifty-eight thousand three hundred forty-four');\nINSERT INTO t2 VALUES(13516, 74773, 'seventy-four thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(13517, 19797, 'nineteen thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(13518, 38729, 'thirty-eight thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(13519, 69522, 'sixty-nine thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(13520, 62413, 'sixty-two thousand four hundred thirteen');\nINSERT INTO t2 VALUES(13521, 86445, 'eighty-six thousand four hundred forty-five');\nINSERT INTO t2 VALUES(13522, 94331, 'ninety-four thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(13523, 78354, 'seventy-eight thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(13524, 6332, 'six thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(13525, 45405, 'forty-five thousand four hundred five');\nINSERT INTO t2 VALUES(13526, 19955, 'nineteen thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(13527, 21999, 'twenty-one thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(13528, 81769, 'eighty-one thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(13529, 28807, 'twenty-eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(13530, 45547, 'forty-five thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(13531, 16980, 'sixteen thousand nine hundred eighty');\nINSERT INTO t2 VALUES(13532, 63331, 'sixty-three thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(13533, 43602, 'forty-three thousand six hundred two');\nINSERT INTO t2 VALUES(13534, 31850, 'thirty-one thousand eight hundred fifty');\nINSERT INTO t2 VALUES(13535, 25922, 'twenty-five thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(13536, 86241, 'eighty-six thousand two hundred forty-one');\nINSERT INTO t2 VALUES(13537, 23191, 'twenty-three thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(13538, 45128, 'forty-five thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(13539, 32189, 'thirty-two thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(13540, 15541, 'fifteen thousand five hundred forty-one');\nINSERT INTO t2 VALUES(13541, 73582, 'seventy-three thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(13542, 34331, 'thirty-four thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(13543, 33372, 'thirty-three thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(13544, 79229, 'seventy-nine thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(13545, 96487, 'ninety-six thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(13546, 35287, 'thirty-five thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(13547, 66978, 'sixty-six thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13548, 17467, 'seventeen thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(13549, 7598, 'seven thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(13550, 81921, 'eighty-one thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(13551, 14983, 'fourteen thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(13552, 54865, 'fifty-four thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(13553, 42039, 'forty-two thousand thirty-nine');\nINSERT INTO t2 VALUES(13554, 46505, 'forty-six thousand five hundred five');\nINSERT INTO t2 VALUES(13555, 30935, 'thirty thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(13556, 42183, 'forty-two thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(13557, 14094, 'fourteen thousand ninety-four');\nINSERT INTO t2 VALUES(13558, 29876, 'twenty-nine thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(13559, 57726, 'fifty-seven thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(13560, 7731, 'seven thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(13561, 30694, 'thirty thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(13562, 53227, 'fifty-three thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(13563, 85669, 'eighty-five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(13564, 90753, 'ninety thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(13565, 45573, 'forty-five thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(13566, 38817, 'thirty-eight thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(13567, 91332, 'ninety-one thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(13568, 76530, 'seventy-six thousand five hundred thirty');\nINSERT INTO t2 VALUES(13569, 80829, 'eighty thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(13570, 47663, 'forty-seven thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(13571, 69575, 'sixty-nine thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(13572, 60932, 'sixty thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(13573, 91394, 'ninety-one thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(13574, 9005, 'nine thousand five');\nINSERT INTO t2 VALUES(13575, 61146, 'sixty-one thousand one hundred forty-six');\nINSERT INTO t2 VALUES(13576, 66212, 'sixty-six thousand two hundred twelve');\nINSERT INTO t2 VALUES(13577, 50640, 'fifty thousand six hundred forty');\nINSERT INTO t2 VALUES(13578, 50146, 'fifty thousand one hundred forty-six');\nINSERT INTO t2 VALUES(13579, 25970, 'twenty-five thousand nine hundred seventy');\nINSERT INTO t2 VALUES(13580, 63852, 'sixty-three thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(13581, 24647, 'twenty-four thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(13582, 15971, 'fifteen thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(13583, 70457, 'seventy thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(13584, 54764, 'fifty-four thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(13585, 24990, 'twenty-four thousand nine hundred ninety');\nINSERT INTO t2 VALUES(13586, 69399, 'sixty-nine thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(13587, 90990, 'ninety thousand nine hundred ninety');\nINSERT INTO t2 VALUES(13588, 67029, 'sixty-seven thousand twenty-nine');\nINSERT INTO t2 VALUES(13589, 77976, 'seventy-seven thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(13590, 91331, 'ninety-one thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(13591, 76717, 'seventy-six thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(13592, 51540, 'fifty-one thousand five hundred forty');\nINSERT INTO t2 VALUES(13593, 8526, 'eight thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(13594, 41123, 'forty-one thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(13595, 94873, 'ninety-four thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(13596, 24189, 'twenty-four thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(13597, 48310, 'forty-eight thousand three hundred ten');\nINSERT INTO t2 VALUES(13598, 13437, 'thirteen thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(13599, 48614, 'forty-eight thousand six hundred fourteen');\nINSERT INTO t2 VALUES(13600, 65706, 'sixty-five thousand seven hundred six');\nINSERT INTO t2 VALUES(13601, 40556, 'forty thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(13602, 65902, 'sixty-five thousand nine hundred two');\nINSERT INTO t2 VALUES(13603, 95212, 'ninety-five thousand two hundred twelve');\nINSERT INTO t2 VALUES(13604, 475, 'four hundred seventy-five');\nINSERT INTO t2 VALUES(13605, 63035, 'sixty-three thousand thirty-five');\nINSERT INTO t2 VALUES(13606, 22866, 'twenty-two thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(13607, 71775, 'seventy-one thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(13608, 89843, 'eighty-nine thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(13609, 43237, 'forty-three thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(13610, 8653, 'eight thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(13611, 79069, 'seventy-nine thousand sixty-nine');\nINSERT INTO t2 VALUES(13612, 987, 'nine hundred eighty-seven');\nINSERT INTO t2 VALUES(13613, 17396, 'seventeen thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(13614, 57167, 'fifty-seven thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(13615, 13001, 'thirteen thousand one');\nINSERT INTO t2 VALUES(13616, 25197, 'twenty-five thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(13617, 76542, 'seventy-six thousand five hundred forty-two');\nINSERT INTO t2 VALUES(13618, 66067, 'sixty-six thousand sixty-seven');\nINSERT INTO t2 VALUES(13619, 68736, 'sixty-eight thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(13620, 94207, 'ninety-four thousand two hundred seven');\nINSERT INTO t2 VALUES(13621, 37605, 'thirty-seven thousand six hundred five');\nINSERT INTO t2 VALUES(13622, 1482, 'one thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(13623, 90353, 'ninety thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(13624, 70863, 'seventy thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(13625, 66587, 'sixty-six thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(13626, 96557, 'ninety-six thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(13627, 4233, 'four thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(13628, 50958, 'fifty thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(13629, 11156, 'eleven thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(13630, 84869, 'eighty-four thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(13631, 36240, 'thirty-six thousand two hundred forty');\nINSERT INTO t2 VALUES(13632, 70414, 'seventy thousand four hundred fourteen');\nINSERT INTO t2 VALUES(13633, 10625, 'ten thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(13634, 88677, 'eighty-eight thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(13635, 51460, 'fifty-one thousand four hundred sixty');\nINSERT INTO t2 VALUES(13636, 30192, 'thirty thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(13637, 45114, 'forty-five thousand one hundred fourteen');\nINSERT INTO t2 VALUES(13638, 50980, 'fifty thousand nine hundred eighty');\nINSERT INTO t2 VALUES(13639, 79041, 'seventy-nine thousand forty-one');\nINSERT INTO t2 VALUES(13640, 13333, 'thirteen thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(13641, 8134, 'eight thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(13642, 71735, 'seventy-one thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(13643, 52192, 'fifty-two thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(13644, 84157, 'eighty-four thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(13645, 50936, 'fifty thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(13646, 14307, 'fourteen thousand three hundred seven');\nINSERT INTO t2 VALUES(13647, 25668, 'twenty-five thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(13648, 44503, 'forty-four thousand five hundred three');\nINSERT INTO t2 VALUES(13649, 20978, 'twenty thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13650, 59805, 'fifty-nine thousand eight hundred five');\nINSERT INTO t2 VALUES(13651, 53483, 'fifty-three thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(13652, 33857, 'thirty-three thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(13653, 95460, 'ninety-five thousand four hundred sixty');\nINSERT INTO t2 VALUES(13654, 59699, 'fifty-nine thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(13655, 23865, 'twenty-three thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(13656, 86569, 'eighty-six thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(13657, 40275, 'forty thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(13658, 22081, 'twenty-two thousand eighty-one');\nINSERT INTO t2 VALUES(13659, 14997, 'fourteen thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(13660, 30873, 'thirty thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(13661, 57839, 'fifty-seven thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(13662, 80026, 'eighty thousand twenty-six');\nINSERT INTO t2 VALUES(13663, 66472, 'sixty-six thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(13664, 13000, 'thirteen thousand');\nINSERT INTO t2 VALUES(13665, 40121, 'forty thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(13666, 15251, 'fifteen thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(13667, 30927, 'thirty thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(13668, 78140, 'seventy-eight thousand one hundred forty');\nINSERT INTO t2 VALUES(13669, 84081, 'eighty-four thousand eighty-one');\nINSERT INTO t2 VALUES(13670, 50335, 'fifty thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(13671, 92674, 'ninety-two thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(13672, 33679, 'thirty-three thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(13673, 7606, 'seven thousand six hundred six');\nINSERT INTO t2 VALUES(13674, 92005, 'ninety-two thousand five');\nINSERT INTO t2 VALUES(13675, 5434, 'five thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(13676, 13517, 'thirteen thousand five hundred seventeen');\nINSERT INTO t2 VALUES(13677, 12443, 'twelve thousand four hundred forty-three');\nINSERT INTO t2 VALUES(13678, 46815, 'forty-six thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(13679, 7753, 'seven thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(13680, 82427, 'eighty-two thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(13681, 47973, 'forty-seven thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(13682, 98467, 'ninety-eight thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(13683, 60533, 'sixty thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(13684, 52394, 'fifty-two thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(13685, 71816, 'seventy-one thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(13686, 8326, 'eight thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(13687, 65632, 'sixty-five thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(13688, 59581, 'fifty-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(13689, 91354, 'ninety-one thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(13690, 56213, 'fifty-six thousand two hundred thirteen');\nINSERT INTO t2 VALUES(13691, 31000, 'thirty-one thousand');\nINSERT INTO t2 VALUES(13692, 38897, 'thirty-eight thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(13693, 62487, 'sixty-two thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(13694, 72147, 'seventy-two thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(13695, 14074, 'fourteen thousand seventy-four');\nINSERT INTO t2 VALUES(13696, 40583, 'forty thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(13697, 72494, 'seventy-two thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(13698, 62041, 'sixty-two thousand forty-one');\nINSERT INTO t2 VALUES(13699, 63286, 'sixty-three thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(13700, 34725, 'thirty-four thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(13701, 77753, 'seventy-seven thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(13702, 45506, 'forty-five thousand five hundred six');\nINSERT INTO t2 VALUES(13703, 94021, 'ninety-four thousand twenty-one');\nINSERT INTO t2 VALUES(13704, 52052, 'fifty-two thousand fifty-two');\nINSERT INTO t2 VALUES(13705, 91936, 'ninety-one thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(13706, 60384, 'sixty thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(13707, 9721, 'nine thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(13708, 31031, 'thirty-one thousand thirty-one');\nINSERT INTO t2 VALUES(13709, 74978, 'seventy-four thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13710, 22814, 'twenty-two thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(13711, 67919, 'sixty-seven thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(13712, 37144, 'thirty-seven thousand one hundred forty-four');\nINSERT INTO t2 VALUES(13713, 77122, 'seventy-seven thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(13714, 83969, 'eighty-three thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(13715, 67269, 'sixty-seven thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(13716, 39758, 'thirty-nine thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(13717, 32750, 'thirty-two thousand seven hundred fifty');\nINSERT INTO t2 VALUES(13718, 15333, 'fifteen thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(13719, 14699, 'fourteen thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(13720, 28863, 'twenty-eight thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(13721, 19065, 'nineteen thousand sixty-five');\nINSERT INTO t2 VALUES(13722, 65366, 'sixty-five thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(13723, 31543, 'thirty-one thousand five hundred forty-three');\nINSERT INTO t2 VALUES(13724, 66953, 'sixty-six thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(13725, 31089, 'thirty-one thousand eighty-nine');\nINSERT INTO t2 VALUES(13726, 92292, 'ninety-two thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(13727, 45605, 'forty-five thousand six hundred five');\nINSERT INTO t2 VALUES(13728, 39718, 'thirty-nine thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(13729, 50362, 'fifty thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(13730, 71154, 'seventy-one thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(13731, 34712, 'thirty-four thousand seven hundred twelve');\nINSERT INTO t2 VALUES(13732, 18775, 'eighteen thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(13733, 67596, 'sixty-seven thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(13734, 44008, 'forty-four thousand eight');\nINSERT INTO t2 VALUES(13735, 13487, 'thirteen thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(13736, 81686, 'eighty-one thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(13737, 93496, 'ninety-three thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(13738, 68425, 'sixty-eight thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(13739, 19463, 'nineteen thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(13740, 25695, 'twenty-five thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(13741, 72636, 'seventy-two thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(13742, 56790, 'fifty-six thousand seven hundred ninety');\nINSERT INTO t2 VALUES(13743, 81229, 'eighty-one thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(13744, 85159, 'eighty-five thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(13745, 49307, 'forty-nine thousand three hundred seven');\nINSERT INTO t2 VALUES(13746, 2207, 'two thousand two hundred seven');\nINSERT INTO t2 VALUES(13747, 72435, 'seventy-two thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(13748, 40335, 'forty thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(13749, 26055, 'twenty-six thousand fifty-five');\nINSERT INTO t2 VALUES(13750, 1511, 'one thousand five hundred eleven');\nINSERT INTO t2 VALUES(13751, 84572, 'eighty-four thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(13752, 61971, 'sixty-one thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(13753, 70945, 'seventy thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(13754, 61648, 'sixty-one thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(13755, 938, 'nine hundred thirty-eight');\nINSERT INTO t2 VALUES(13756, 43068, 'forty-three thousand sixty-eight');\nINSERT INTO t2 VALUES(13757, 27896, 'twenty-seven thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(13758, 52616, 'fifty-two thousand six hundred sixteen');\nINSERT INTO t2 VALUES(13759, 48165, 'forty-eight thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(13760, 2164, 'two thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(13761, 23721, 'twenty-three thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(13762, 52476, 'fifty-two thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(13763, 62231, 'sixty-two thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(13764, 33567, 'thirty-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(13765, 57681, 'fifty-seven thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(13766, 88349, 'eighty-eight thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(13767, 19735, 'nineteen thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(13768, 47280, 'forty-seven thousand two hundred eighty');\nINSERT INTO t2 VALUES(13769, 83506, 'eighty-three thousand five hundred six');\nINSERT INTO t2 VALUES(13770, 21295, 'twenty-one thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(13771, 26390, 'twenty-six thousand three hundred ninety');\nINSERT INTO t2 VALUES(13772, 40762, 'forty thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(13773, 62863, 'sixty-two thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(13774, 28296, 'twenty-eight thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(13775, 38257, 'thirty-eight thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(13776, 36423, 'thirty-six thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(13777, 31282, 'thirty-one thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(13778, 76158, 'seventy-six thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(13779, 15672, 'fifteen thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(13780, 93834, 'ninety-three thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(13781, 63963, 'sixty-three thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(13782, 83022, 'eighty-three thousand twenty-two');\nINSERT INTO t2 VALUES(13783, 72549, 'seventy-two thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(13784, 61398, 'sixty-one thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(13785, 65676, 'sixty-five thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(13786, 51490, 'fifty-one thousand four hundred ninety');\nINSERT INTO t2 VALUES(13787, 43370, 'forty-three thousand three hundred seventy');\nINSERT INTO t2 VALUES(13788, 5813, 'five thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(13789, 75003, 'seventy-five thousand three');\nINSERT INTO t2 VALUES(13790, 53449, 'fifty-three thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(13791, 77865, 'seventy-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(13792, 83687, 'eighty-three thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(13793, 96305, 'ninety-six thousand three hundred five');\nINSERT INTO t2 VALUES(13794, 49568, 'forty-nine thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(13795, 15967, 'fifteen thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(13796, 89032, 'eighty-nine thousand thirty-two');\nINSERT INTO t2 VALUES(13797, 20415, 'twenty thousand four hundred fifteen');\nINSERT INTO t2 VALUES(13798, 80226, 'eighty thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(13799, 93558, 'ninety-three thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(13800, 93706, 'ninety-three thousand seven hundred six');\nINSERT INTO t2 VALUES(13801, 27507, 'twenty-seven thousand five hundred seven');\nINSERT INTO t2 VALUES(13802, 88167, 'eighty-eight thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(13803, 23815, 'twenty-three thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(13804, 9192, 'nine thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(13805, 95524, 'ninety-five thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(13806, 33704, 'thirty-three thousand seven hundred four');\nINSERT INTO t2 VALUES(13807, 54328, 'fifty-four thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(13808, 94822, 'ninety-four thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(13809, 82078, 'eighty-two thousand seventy-eight');\nINSERT INTO t2 VALUES(13810, 42892, 'forty-two thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(13811, 9847, 'nine thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(13812, 51487, 'fifty-one thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(13813, 73613, 'seventy-three thousand six hundred thirteen');\nINSERT INTO t2 VALUES(13814, 11225, 'eleven thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(13815, 21855, 'twenty-one thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(13816, 56850, 'fifty-six thousand eight hundred fifty');\nINSERT INTO t2 VALUES(13817, 98933, 'ninety-eight thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(13818, 64832, 'sixty-four thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(13819, 49910, 'forty-nine thousand nine hundred ten');\nINSERT INTO t2 VALUES(13820, 40944, 'forty thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(13821, 91430, 'ninety-one thousand four hundred thirty');\nINSERT INTO t2 VALUES(13822, 85725, 'eighty-five thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(13823, 88200, 'eighty-eight thousand two hundred');\nINSERT INTO t2 VALUES(13824, 85983, 'eighty-five thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(13825, 2003, 'two thousand three');\nINSERT INTO t2 VALUES(13826, 97278, 'ninety-seven thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(13827, 64222, 'sixty-four thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(13828, 99213, 'ninety-nine thousand two hundred thirteen');\nINSERT INTO t2 VALUES(13829, 11659, 'eleven thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(13830, 50991, 'fifty thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(13831, 29481, 'twenty-nine thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(13832, 54400, 'fifty-four thousand four hundred');\nINSERT INTO t2 VALUES(13833, 40258, 'forty thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(13834, 95042, 'ninety-five thousand forty-two');\nINSERT INTO t2 VALUES(13835, 8704, 'eight thousand seven hundred four');\nINSERT INTO t2 VALUES(13836, 42689, 'forty-two thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(13837, 78620, 'seventy-eight thousand six hundred twenty');\nINSERT INTO t2 VALUES(13838, 52949, 'fifty-two thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(13839, 9565, 'nine thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(13840, 68254, 'sixty-eight thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(13841, 33211, 'thirty-three thousand two hundred eleven');\nINSERT INTO t2 VALUES(13842, 80035, 'eighty thousand thirty-five');\nINSERT INTO t2 VALUES(13843, 87332, 'eighty-seven thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(13844, 79933, 'seventy-nine thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(13845, 52004, 'fifty-two thousand four');\nINSERT INTO t2 VALUES(13846, 1440, 'one thousand four hundred forty');\nINSERT INTO t2 VALUES(13847, 91185, 'ninety-one thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(13848, 9933, 'nine thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(13849, 34667, 'thirty-four thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(13850, 97866, 'ninety-seven thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(13851, 82399, 'eighty-two thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(13852, 41453, 'forty-one thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(13853, 88606, 'eighty-eight thousand six hundred six');\nINSERT INTO t2 VALUES(13854, 98991, 'ninety-eight thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(13855, 74902, 'seventy-four thousand nine hundred two');\nINSERT INTO t2 VALUES(13856, 99281, 'ninety-nine thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(13857, 73926, 'seventy-three thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(13858, 45190, 'forty-five thousand one hundred ninety');\nINSERT INTO t2 VALUES(13859, 41484, 'forty-one thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(13860, 70994, 'seventy thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(13861, 21271, 'twenty-one thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(13862, 51480, 'fifty-one thousand four hundred eighty');\nINSERT INTO t2 VALUES(13863, 51347, 'fifty-one thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(13864, 61407, 'sixty-one thousand four hundred seven');\nINSERT INTO t2 VALUES(13865, 36644, 'thirty-six thousand six hundred forty-four');\nINSERT INTO t2 VALUES(13866, 24674, 'twenty-four thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(13867, 83153, 'eighty-three thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(13868, 46673, 'forty-six thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(13869, 37895, 'thirty-seven thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(13870, 30440, 'thirty thousand four hundred forty');\nINSERT INTO t2 VALUES(13871, 16861, 'sixteen thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(13872, 78951, 'seventy-eight thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(13873, 78606, 'seventy-eight thousand six hundred six');\nINSERT INTO t2 VALUES(13874, 61033, 'sixty-one thousand thirty-three');\nINSERT INTO t2 VALUES(13875, 30587, 'thirty thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(13876, 88874, 'eighty-eight thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(13877, 93154, 'ninety-three thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(13878, 34811, 'thirty-four thousand eight hundred eleven');\nINSERT INTO t2 VALUES(13879, 2338, 'two thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(13880, 43317, 'forty-three thousand three hundred seventeen');\nINSERT INTO t2 VALUES(13881, 53449, 'fifty-three thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(13882, 78767, 'seventy-eight thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(13883, 34807, 'thirty-four thousand eight hundred seven');\nINSERT INTO t2 VALUES(13884, 34968, 'thirty-four thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(13885, 68556, 'sixty-eight thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(13886, 6349, 'six thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(13887, 56051, 'fifty-six thousand fifty-one');\nINSERT INTO t2 VALUES(13888, 73344, 'seventy-three thousand three hundred forty-four');\nINSERT INTO t2 VALUES(13889, 40586, 'forty thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(13890, 19476, 'nineteen thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(13891, 38249, 'thirty-eight thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(13892, 97501, 'ninety-seven thousand five hundred one');\nINSERT INTO t2 VALUES(13893, 63302, 'sixty-three thousand three hundred two');\nINSERT INTO t2 VALUES(13894, 90758, 'ninety thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(13895, 72862, 'seventy-two thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(13896, 58676, 'fifty-eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(13897, 36707, 'thirty-six thousand seven hundred seven');\nINSERT INTO t2 VALUES(13898, 17956, 'seventeen thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(13899, 72766, 'seventy-two thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(13900, 89128, 'eighty-nine thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(13901, 83385, 'eighty-three thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(13902, 25194, 'twenty-five thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(13903, 44013, 'forty-four thousand thirteen');\nINSERT INTO t2 VALUES(13904, 89011, 'eighty-nine thousand eleven');\nINSERT INTO t2 VALUES(13905, 51016, 'fifty-one thousand sixteen');\nINSERT INTO t2 VALUES(13906, 35996, 'thirty-five thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(13907, 27611, 'twenty-seven thousand six hundred eleven');\nINSERT INTO t2 VALUES(13908, 57361, 'fifty-seven thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(13909, 86452, 'eighty-six thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(13910, 77518, 'seventy-seven thousand five hundred eighteen');\nINSERT INTO t2 VALUES(13911, 80973, 'eighty thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(13912, 61964, 'sixty-one thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(13913, 3251, 'three thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(13914, 63106, 'sixty-three thousand one hundred six');\nINSERT INTO t2 VALUES(13915, 53350, 'fifty-three thousand three hundred fifty');\nINSERT INTO t2 VALUES(13916, 99154, 'ninety-nine thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(13917, 43555, 'forty-three thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(13918, 96295, 'ninety-six thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(13919, 86465, 'eighty-six thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(13920, 91632, 'ninety-one thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(13921, 91836, 'ninety-one thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(13922, 71253, 'seventy-one thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(13923, 36697, 'thirty-six thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(13924, 23856, 'twenty-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(13925, 49197, 'forty-nine thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(13926, 38104, 'thirty-eight thousand one hundred four');\nINSERT INTO t2 VALUES(13927, 71804, 'seventy-one thousand eight hundred four');\nINSERT INTO t2 VALUES(13928, 15065, 'fifteen thousand sixty-five');\nINSERT INTO t2 VALUES(13929, 12796, 'twelve thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(13930, 15274, 'fifteen thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(13931, 17301, 'seventeen thousand three hundred one');\nINSERT INTO t2 VALUES(13932, 87202, 'eighty-seven thousand two hundred two');\nINSERT INTO t2 VALUES(13933, 8047, 'eight thousand forty-seven');\nINSERT INTO t2 VALUES(13934, 94508, 'ninety-four thousand five hundred eight');\nINSERT INTO t2 VALUES(13935, 7695, 'seven thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(13936, 57747, 'fifty-seven thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(13937, 76757, 'seventy-six thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(13938, 86236, 'eighty-six thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(13939, 83947, 'eighty-three thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(13940, 97702, 'ninety-seven thousand seven hundred two');\nINSERT INTO t2 VALUES(13941, 3238, 'three thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(13942, 27691, 'twenty-seven thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(13943, 34740, 'thirty-four thousand seven hundred forty');\nINSERT INTO t2 VALUES(13944, 2386, 'two thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(13945, 90130, 'ninety thousand one hundred thirty');\nINSERT INTO t2 VALUES(13946, 48987, 'forty-eight thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(13947, 98125, 'ninety-eight thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(13948, 78467, 'seventy-eight thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(13949, 70854, 'seventy thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(13950, 48218, 'forty-eight thousand two hundred eighteen');\nINSERT INTO t2 VALUES(13951, 5946, 'five thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(13952, 11519, 'eleven thousand five hundred nineteen');\nINSERT INTO t2 VALUES(13953, 60573, 'sixty thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(13954, 35881, 'thirty-five thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(13955, 47791, 'forty-seven thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(13956, 99904, 'ninety-nine thousand nine hundred four');\nINSERT INTO t2 VALUES(13957, 36866, 'thirty-six thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(13958, 89614, 'eighty-nine thousand six hundred fourteen');\nINSERT INTO t2 VALUES(13959, 859, 'eight hundred fifty-nine');\nINSERT INTO t2 VALUES(13960, 62675, 'sixty-two thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(13961, 37473, 'thirty-seven thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(13962, 76363, 'seventy-six thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(13963, 46688, 'forty-six thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(13964, 30725, 'thirty thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(13965, 23868, 'twenty-three thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(13966, 24462, 'twenty-four thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(13967, 76391, 'seventy-six thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(13968, 8677, 'eight thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(13969, 57181, 'fifty-seven thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(13970, 34929, 'thirty-four thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(13971, 31327, 'thirty-one thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(13972, 87922, 'eighty-seven thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(13973, 52613, 'fifty-two thousand six hundred thirteen');\nINSERT INTO t2 VALUES(13974, 74791, 'seventy-four thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(13975, 15088, 'fifteen thousand eighty-eight');\nINSERT INTO t2 VALUES(13976, 50704, 'fifty thousand seven hundred four');\nINSERT INTO t2 VALUES(13977, 36698, 'thirty-six thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(13978, 79795, 'seventy-nine thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(13979, 39883, 'thirty-nine thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(13980, 45815, 'forty-five thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(13981, 96733, 'ninety-six thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(13982, 77956, 'seventy-seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(13983, 46657, 'forty-six thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(13984, 96364, 'ninety-six thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(13985, 97613, 'ninety-seven thousand six hundred thirteen');\nINSERT INTO t2 VALUES(13986, 57521, 'fifty-seven thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(13987, 73702, 'seventy-three thousand seven hundred two');\nINSERT INTO t2 VALUES(13988, 21268, 'twenty-one thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(13989, 91936, 'ninety-one thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(13990, 35456, 'thirty-five thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(13991, 30104, 'thirty thousand one hundred four');\nINSERT INTO t2 VALUES(13992, 57361, 'fifty-seven thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(13993, 25314, 'twenty-five thousand three hundred fourteen');\nINSERT INTO t2 VALUES(13994, 10812, 'ten thousand eight hundred twelve');\nINSERT INTO t2 VALUES(13995, 78032, 'seventy-eight thousand thirty-two');\nINSERT INTO t2 VALUES(13996, 11893, 'eleven thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(13997, 94525, 'ninety-four thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(13998, 764, 'seven hundred sixty-four');\nINSERT INTO t2 VALUES(13999, 26473, 'twenty-six thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(14000, 93524, 'ninety-three thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(14001, 48089, 'forty-eight thousand eighty-nine');\nINSERT INTO t2 VALUES(14002, 33084, 'thirty-three thousand eighty-four');\nINSERT INTO t2 VALUES(14003, 70651, 'seventy thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(14004, 44699, 'forty-four thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(14005, 88393, 'eighty-eight thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(14006, 26194, 'twenty-six thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(14007, 27517, 'twenty-seven thousand five hundred seventeen');\nINSERT INTO t2 VALUES(14008, 22053, 'twenty-two thousand fifty-three');\nINSERT INTO t2 VALUES(14009, 67449, 'sixty-seven thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(14010, 43377, 'forty-three thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(14011, 30918, 'thirty thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(14012, 81078, 'eighty-one thousand seventy-eight');\nINSERT INTO t2 VALUES(14013, 81845, 'eighty-one thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(14014, 86146, 'eighty-six thousand one hundred forty-six');\nINSERT INTO t2 VALUES(14015, 24503, 'twenty-four thousand five hundred three');\nINSERT INTO t2 VALUES(14016, 85140, 'eighty-five thousand one hundred forty');\nINSERT INTO t2 VALUES(14017, 24264, 'twenty-four thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(14018, 71489, 'seventy-one thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(14019, 89328, 'eighty-nine thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(14020, 43416, 'forty-three thousand four hundred sixteen');\nINSERT INTO t2 VALUES(14021, 19290, 'nineteen thousand two hundred ninety');\nINSERT INTO t2 VALUES(14022, 51317, 'fifty-one thousand three hundred seventeen');\nINSERT INTO t2 VALUES(14023, 30745, 'thirty thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(14024, 6893, 'six thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(14025, 7728, 'seven thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(14026, 30853, 'thirty thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(14027, 56696, 'fifty-six thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(14028, 30697, 'thirty thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(14029, 85100, 'eighty-five thousand one hundred');\nINSERT INTO t2 VALUES(14030, 81131, 'eighty-one thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(14031, 70351, 'seventy thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(14032, 75388, 'seventy-five thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(14033, 78371, 'seventy-eight thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(14034, 97449, 'ninety-seven thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(14035, 49630, 'forty-nine thousand six hundred thirty');\nINSERT INTO t2 VALUES(14036, 8596, 'eight thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(14037, 20871, 'twenty thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(14038, 31609, 'thirty-one thousand six hundred nine');\nINSERT INTO t2 VALUES(14039, 6120, 'six thousand one hundred twenty');\nINSERT INTO t2 VALUES(14040, 67128, 'sixty-seven thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(14041, 59450, 'fifty-nine thousand four hundred fifty');\nINSERT INTO t2 VALUES(14042, 77594, 'seventy-seven thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(14043, 51131, 'fifty-one thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(14044, 25044, 'twenty-five thousand forty-four');\nINSERT INTO t2 VALUES(14045, 60734, 'sixty thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(14046, 20548, 'twenty thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(14047, 95306, 'ninety-five thousand three hundred six');\nINSERT INTO t2 VALUES(14048, 1528, 'one thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(14049, 3190, 'three thousand one hundred ninety');\nINSERT INTO t2 VALUES(14050, 94084, 'ninety-four thousand eighty-four');\nINSERT INTO t2 VALUES(14051, 77125, 'seventy-seven thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(14052, 74287, 'seventy-four thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(14053, 17486, 'seventeen thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(14054, 7105, 'seven thousand one hundred five');\nINSERT INTO t2 VALUES(14055, 8205, 'eight thousand two hundred five');\nINSERT INTO t2 VALUES(14056, 61936, 'sixty-one thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(14057, 8605, 'eight thousand six hundred five');\nINSERT INTO t2 VALUES(14058, 38360, 'thirty-eight thousand three hundred sixty');\nINSERT INTO t2 VALUES(14059, 41533, 'forty-one thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(14060, 41766, 'forty-one thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(14061, 19976, 'nineteen thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(14062, 42147, 'forty-two thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(14063, 34098, 'thirty-four thousand ninety-eight');\nINSERT INTO t2 VALUES(14064, 9611, 'nine thousand six hundred eleven');\nINSERT INTO t2 VALUES(14065, 6548, 'six thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(14066, 30058, 'thirty thousand fifty-eight');\nINSERT INTO t2 VALUES(14067, 60331, 'sixty thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(14068, 74256, 'seventy-four thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(14069, 19062, 'nineteen thousand sixty-two');\nINSERT INTO t2 VALUES(14070, 1283, 'one thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(14071, 89259, 'eighty-nine thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(14072, 13353, 'thirteen thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(14073, 32996, 'thirty-two thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(14074, 89448, 'eighty-nine thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(14075, 28879, 'twenty-eight thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(14076, 90619, 'ninety thousand six hundred nineteen');\nINSERT INTO t2 VALUES(14077, 24506, 'twenty-four thousand five hundred six');\nINSERT INTO t2 VALUES(14078, 61589, 'sixty-one thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(14079, 99359, 'ninety-nine thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(14080, 93608, 'ninety-three thousand six hundred eight');\nINSERT INTO t2 VALUES(14081, 87138, 'eighty-seven thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(14082, 46461, 'forty-six thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(14083, 83799, 'eighty-three thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(14084, 35463, 'thirty-five thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(14085, 79998, 'seventy-nine thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(14086, 22968, 'twenty-two thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(14087, 37241, 'thirty-seven thousand two hundred forty-one');\nINSERT INTO t2 VALUES(14088, 28563, 'twenty-eight thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(14089, 39317, 'thirty-nine thousand three hundred seventeen');\nINSERT INTO t2 VALUES(14090, 5442, 'five thousand four hundred forty-two');\nINSERT INTO t2 VALUES(14091, 11532, 'eleven thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(14092, 87055, 'eighty-seven thousand fifty-five');\nINSERT INTO t2 VALUES(14093, 50842, 'fifty thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(14094, 6020, 'six thousand twenty');\nINSERT INTO t2 VALUES(14095, 8566, 'eight thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(14096, 22534, 'twenty-two thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(14097, 61450, 'sixty-one thousand four hundred fifty');\nINSERT INTO t2 VALUES(14098, 11539, 'eleven thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(14099, 80554, 'eighty thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(14100, 95489, 'ninety-five thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(14101, 15518, 'fifteen thousand five hundred eighteen');\nINSERT INTO t2 VALUES(14102, 45826, 'forty-five thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(14103, 22357, 'twenty-two thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(14104, 37115, 'thirty-seven thousand one hundred fifteen');\nINSERT INTO t2 VALUES(14105, 23129, 'twenty-three thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(14106, 91289, 'ninety-one thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(14107, 41531, 'forty-one thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(14108, 32849, 'thirty-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(14109, 57653, 'fifty-seven thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(14110, 512, 'five hundred twelve');\nINSERT INTO t2 VALUES(14111, 91709, 'ninety-one thousand seven hundred nine');\nINSERT INTO t2 VALUES(14112, 56868, 'fifty-six thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(14113, 74964, 'seventy-four thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(14114, 11532, 'eleven thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(14115, 11820, 'eleven thousand eight hundred twenty');\nINSERT INTO t2 VALUES(14116, 7363, 'seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(14117, 9014, 'nine thousand fourteen');\nINSERT INTO t2 VALUES(14118, 61128, 'sixty-one thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(14119, 25673, 'twenty-five thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(14120, 95259, 'ninety-five thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(14121, 7436, 'seven thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(14122, 76903, 'seventy-six thousand nine hundred three');\nINSERT INTO t2 VALUES(14123, 24080, 'twenty-four thousand eighty');\nINSERT INTO t2 VALUES(14124, 99231, 'ninety-nine thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(14125, 42743, 'forty-two thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(14126, 24811, 'twenty-four thousand eight hundred eleven');\nINSERT INTO t2 VALUES(14127, 76524, 'seventy-six thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(14128, 1170, 'one thousand one hundred seventy');\nINSERT INTO t2 VALUES(14129, 84350, 'eighty-four thousand three hundred fifty');\nINSERT INTO t2 VALUES(14130, 91746, 'ninety-one thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(14131, 61122, 'sixty-one thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(14132, 70522, 'seventy thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(14133, 82880, 'eighty-two thousand eight hundred eighty');\nINSERT INTO t2 VALUES(14134, 27328, 'twenty-seven thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(14135, 12200, 'twelve thousand two hundred');\nINSERT INTO t2 VALUES(14136, 38289, 'thirty-eight thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(14137, 98483, 'ninety-eight thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(14138, 968, 'nine hundred sixty-eight');\nINSERT INTO t2 VALUES(14139, 57611, 'fifty-seven thousand six hundred eleven');\nINSERT INTO t2 VALUES(14140, 27068, 'twenty-seven thousand sixty-eight');\nINSERT INTO t2 VALUES(14141, 43525, 'forty-three thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(14142, 56185, 'fifty-six thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(14143, 73749, 'seventy-three thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(14144, 83889, 'eighty-three thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(14145, 4452, 'four thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(14146, 34514, 'thirty-four thousand five hundred fourteen');\nINSERT INTO t2 VALUES(14147, 60337, 'sixty thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(14148, 20242, 'twenty thousand two hundred forty-two');\nINSERT INTO t2 VALUES(14149, 16080, 'sixteen thousand eighty');\nINSERT INTO t2 VALUES(14150, 93294, 'ninety-three thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(14151, 68110, 'sixty-eight thousand one hundred ten');\nINSERT INTO t2 VALUES(14152, 11205, 'eleven thousand two hundred five');\nINSERT INTO t2 VALUES(14153, 19978, 'nineteen thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(14154, 96160, 'ninety-six thousand one hundred sixty');\nINSERT INTO t2 VALUES(14155, 20747, 'twenty thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(14156, 1801, 'one thousand eight hundred one');\nINSERT INTO t2 VALUES(14157, 87128, 'eighty-seven thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(14158, 70350, 'seventy thousand three hundred fifty');\nINSERT INTO t2 VALUES(14159, 22719, 'twenty-two thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(14160, 29784, 'twenty-nine thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(14161, 26890, 'twenty-six thousand eight hundred ninety');\nINSERT INTO t2 VALUES(14162, 43136, 'forty-three thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(14163, 70386, 'seventy thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(14164, 67975, 'sixty-seven thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(14165, 67604, 'sixty-seven thousand six hundred four');\nINSERT INTO t2 VALUES(14166, 77550, 'seventy-seven thousand five hundred fifty');\nINSERT INTO t2 VALUES(14167, 57899, 'fifty-seven thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(14168, 17634, 'seventeen thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(14169, 18196, 'eighteen thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(14170, 81286, 'eighty-one thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(14171, 6009, 'six thousand nine');\nINSERT INTO t2 VALUES(14172, 23234, 'twenty-three thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(14173, 48608, 'forty-eight thousand six hundred eight');\nINSERT INTO t2 VALUES(14174, 36683, 'thirty-six thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(14175, 23910, 'twenty-three thousand nine hundred ten');\nINSERT INTO t2 VALUES(14176, 64193, 'sixty-four thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(14177, 91715, 'ninety-one thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(14178, 11693, 'eleven thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(14179, 93013, 'ninety-three thousand thirteen');\nINSERT INTO t2 VALUES(14180, 35463, 'thirty-five thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(14181, 64911, 'sixty-four thousand nine hundred eleven');\nINSERT INTO t2 VALUES(14182, 55910, 'fifty-five thousand nine hundred ten');\nINSERT INTO t2 VALUES(14183, 40828, 'forty thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(14184, 81764, 'eighty-one thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(14185, 3213, 'three thousand two hundred thirteen');\nINSERT INTO t2 VALUES(14186, 68229, 'sixty-eight thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(14187, 16544, 'sixteen thousand five hundred forty-four');\nINSERT INTO t2 VALUES(14188, 71522, 'seventy-one thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(14189, 84980, 'eighty-four thousand nine hundred eighty');\nINSERT INTO t2 VALUES(14190, 77805, 'seventy-seven thousand eight hundred five');\nINSERT INTO t2 VALUES(14191, 14741, 'fourteen thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(14192, 10054, 'ten thousand fifty-four');\nINSERT INTO t2 VALUES(14193, 33356, 'thirty-three thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(14194, 65755, 'sixty-five thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(14195, 34429, 'thirty-four thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(14196, 30076, 'thirty thousand seventy-six');\nINSERT INTO t2 VALUES(14197, 19415, 'nineteen thousand four hundred fifteen');\nINSERT INTO t2 VALUES(14198, 22449, 'twenty-two thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(14199, 77488, 'seventy-seven thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(14200, 40212, 'forty thousand two hundred twelve');\nINSERT INTO t2 VALUES(14201, 24713, 'twenty-four thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(14202, 92904, 'ninety-two thousand nine hundred four');\nINSERT INTO t2 VALUES(14203, 56418, 'fifty-six thousand four hundred eighteen');\nINSERT INTO t2 VALUES(14204, 90773, 'ninety thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(14205, 56940, 'fifty-six thousand nine hundred forty');\nINSERT INTO t2 VALUES(14206, 760, 'seven hundred sixty');\nINSERT INTO t2 VALUES(14207, 83622, 'eighty-three thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(14208, 51504, 'fifty-one thousand five hundred four');\nINSERT INTO t2 VALUES(14209, 91729, 'ninety-one thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(14210, 5714, 'five thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(14211, 49926, 'forty-nine thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(14212, 91641, 'ninety-one thousand six hundred forty-one');\nINSERT INTO t2 VALUES(14213, 84900, 'eighty-four thousand nine hundred');\nINSERT INTO t2 VALUES(14214, 14352, 'fourteen thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(14215, 3609, 'three thousand six hundred nine');\nINSERT INTO t2 VALUES(14216, 84750, 'eighty-four thousand seven hundred fifty');\nINSERT INTO t2 VALUES(14217, 48185, 'forty-eight thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(14218, 6764, 'six thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(14219, 75816, 'seventy-five thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(14220, 62682, 'sixty-two thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(14221, 80745, 'eighty thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(14222, 7627, 'seven thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(14223, 60213, 'sixty thousand two hundred thirteen');\nINSERT INTO t2 VALUES(14224, 30625, 'thirty thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(14225, 59323, 'fifty-nine thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(14226, 58273, 'fifty-eight thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(14227, 44194, 'forty-four thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(14228, 27674, 'twenty-seven thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(14229, 80797, 'eighty thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(14230, 16078, 'sixteen thousand seventy-eight');\nINSERT INTO t2 VALUES(14231, 96698, 'ninety-six thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(14232, 62663, 'sixty-two thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(14233, 87183, 'eighty-seven thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(14234, 77227, 'seventy-seven thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(14235, 2866, 'two thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(14236, 44393, 'forty-four thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(14237, 82492, 'eighty-two thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(14238, 48620, 'forty-eight thousand six hundred twenty');\nINSERT INTO t2 VALUES(14239, 6027, 'six thousand twenty-seven');\nINSERT INTO t2 VALUES(14240, 72042, 'seventy-two thousand forty-two');\nINSERT INTO t2 VALUES(14241, 56110, 'fifty-six thousand one hundred ten');\nINSERT INTO t2 VALUES(14242, 54009, 'fifty-four thousand nine');\nINSERT INTO t2 VALUES(14243, 72301, 'seventy-two thousand three hundred one');\nINSERT INTO t2 VALUES(14244, 87768, 'eighty-seven thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(14245, 45056, 'forty-five thousand fifty-six');\nINSERT INTO t2 VALUES(14246, 24933, 'twenty-four thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(14247, 980, 'nine hundred eighty');\nINSERT INTO t2 VALUES(14248, 83370, 'eighty-three thousand three hundred seventy');\nINSERT INTO t2 VALUES(14249, 1898, 'one thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(14250, 66101, 'sixty-six thousand one hundred one');\nINSERT INTO t2 VALUES(14251, 9898, 'nine thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(14252, 47523, 'forty-seven thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(14253, 4472, 'four thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(14254, 64133, 'sixty-four thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(14255, 69064, 'sixty-nine thousand sixty-four');\nINSERT INTO t2 VALUES(14256, 35841, 'thirty-five thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(14257, 16050, 'sixteen thousand fifty');\nINSERT INTO t2 VALUES(14258, 76394, 'seventy-six thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(14259, 207, 'two hundred seven');\nINSERT INTO t2 VALUES(14260, 74962, 'seventy-four thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(14261, 38036, 'thirty-eight thousand thirty-six');\nINSERT INTO t2 VALUES(14262, 33511, 'thirty-three thousand five hundred eleven');\nINSERT INTO t2 VALUES(14263, 53831, 'fifty-three thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(14264, 56955, 'fifty-six thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(14265, 71888, 'seventy-one thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(14266, 65549, 'sixty-five thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(14267, 47599, 'forty-seven thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(14268, 44616, 'forty-four thousand six hundred sixteen');\nINSERT INTO t2 VALUES(14269, 91995, 'ninety-one thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(14270, 50058, 'fifty thousand fifty-eight');\nINSERT INTO t2 VALUES(14271, 58460, 'fifty-eight thousand four hundred sixty');\nINSERT INTO t2 VALUES(14272, 25941, 'twenty-five thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(14273, 36118, 'thirty-six thousand one hundred eighteen');\nINSERT INTO t2 VALUES(14274, 34262, 'thirty-four thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(14275, 79120, 'seventy-nine thousand one hundred twenty');\nINSERT INTO t2 VALUES(14276, 82177, 'eighty-two thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(14277, 23589, 'twenty-three thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(14278, 38250, 'thirty-eight thousand two hundred fifty');\nINSERT INTO t2 VALUES(14279, 46963, 'forty-six thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(14280, 846, 'eight hundred forty-six');\nINSERT INTO t2 VALUES(14281, 3120, 'three thousand one hundred twenty');\nINSERT INTO t2 VALUES(14282, 69995, 'sixty-nine thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(14283, 40276, 'forty thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(14284, 9565, 'nine thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(14285, 65011, 'sixty-five thousand eleven');\nINSERT INTO t2 VALUES(14286, 1580, 'one thousand five hundred eighty');\nINSERT INTO t2 VALUES(14287, 747, 'seven hundred forty-seven');\nINSERT INTO t2 VALUES(14288, 28151, 'twenty-eight thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(14289, 27755, 'twenty-seven thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(14290, 78382, 'seventy-eight thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(14291, 59977, 'fifty-nine thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(14292, 74822, 'seventy-four thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(14293, 57591, 'fifty-seven thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(14294, 56999, 'fifty-six thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(14295, 65638, 'sixty-five thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(14296, 96840, 'ninety-six thousand eight hundred forty');\nINSERT INTO t2 VALUES(14297, 33353, 'thirty-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(14298, 96614, 'ninety-six thousand six hundred fourteen');\nINSERT INTO t2 VALUES(14299, 62892, 'sixty-two thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(14300, 67802, 'sixty-seven thousand eight hundred two');\nINSERT INTO t2 VALUES(14301, 46035, 'forty-six thousand thirty-five');\nINSERT INTO t2 VALUES(14302, 43939, 'forty-three thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(14303, 25508, 'twenty-five thousand five hundred eight');\nINSERT INTO t2 VALUES(14304, 97792, 'ninety-seven thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(14305, 43848, 'forty-three thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(14306, 56644, 'fifty-six thousand six hundred forty-four');\nINSERT INTO t2 VALUES(14307, 28126, 'twenty-eight thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(14308, 99115, 'ninety-nine thousand one hundred fifteen');\nINSERT INTO t2 VALUES(14309, 42923, 'forty-two thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(14310, 18702, 'eighteen thousand seven hundred two');\nINSERT INTO t2 VALUES(14311, 67108, 'sixty-seven thousand one hundred eight');\nINSERT INTO t2 VALUES(14312, 50270, 'fifty thousand two hundred seventy');\nINSERT INTO t2 VALUES(14313, 47478, 'forty-seven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(14314, 74111, 'seventy-four thousand one hundred eleven');\nINSERT INTO t2 VALUES(14315, 68941, 'sixty-eight thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(14316, 16402, 'sixteen thousand four hundred two');\nINSERT INTO t2 VALUES(14317, 46934, 'forty-six thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(14318, 83113, 'eighty-three thousand one hundred thirteen');\nINSERT INTO t2 VALUES(14319, 74555, 'seventy-four thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(14320, 30249, 'thirty thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(14321, 6033, 'six thousand thirty-three');\nINSERT INTO t2 VALUES(14322, 10896, 'ten thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(14323, 44308, 'forty-four thousand three hundred eight');\nINSERT INTO t2 VALUES(14324, 44712, 'forty-four thousand seven hundred twelve');\nINSERT INTO t2 VALUES(14325, 60887, 'sixty thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(14326, 90686, 'ninety thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(14327, 86099, 'eighty-six thousand ninety-nine');\nINSERT INTO t2 VALUES(14328, 16600, 'sixteen thousand six hundred');\nINSERT INTO t2 VALUES(14329, 79994, 'seventy-nine thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(14330, 6058, 'six thousand fifty-eight');\nINSERT INTO t2 VALUES(14331, 55816, 'fifty-five thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(14332, 28277, 'twenty-eight thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(14333, 93195, 'ninety-three thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(14334, 41347, 'forty-one thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(14335, 73114, 'seventy-three thousand one hundred fourteen');\nINSERT INTO t2 VALUES(14336, 73852, 'seventy-three thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(14337, 14877, 'fourteen thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(14338, 94235, 'ninety-four thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(14339, 63341, 'sixty-three thousand three hundred forty-one');\nINSERT INTO t2 VALUES(14340, 47527, 'forty-seven thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(14341, 53322, 'fifty-three thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(14342, 31321, 'thirty-one thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(14343, 76309, 'seventy-six thousand three hundred nine');\nINSERT INTO t2 VALUES(14344, 30000, 'thirty thousand');\nINSERT INTO t2 VALUES(14345, 30073, 'thirty thousand seventy-three');\nINSERT INTO t2 VALUES(14346, 64561, 'sixty-four thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(14347, 12210, 'twelve thousand two hundred ten');\nINSERT INTO t2 VALUES(14348, 16779, 'sixteen thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(14349, 60070, 'sixty thousand seventy');\nINSERT INTO t2 VALUES(14350, 74369, 'seventy-four thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(14351, 18823, 'eighteen thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(14352, 21267, 'twenty-one thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(14353, 20966, 'twenty thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(14354, 68562, 'sixty-eight thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(14355, 1375, 'one thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(14356, 10454, 'ten thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(14357, 65954, 'sixty-five thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(14358, 55940, 'fifty-five thousand nine hundred forty');\nINSERT INTO t2 VALUES(14359, 77322, 'seventy-seven thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(14360, 86742, 'eighty-six thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(14361, 70675, 'seventy thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(14362, 92018, 'ninety-two thousand eighteen');\nINSERT INTO t2 VALUES(14363, 86063, 'eighty-six thousand sixty-three');\nINSERT INTO t2 VALUES(14364, 97294, 'ninety-seven thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(14365, 23091, 'twenty-three thousand ninety-one');\nINSERT INTO t2 VALUES(14366, 44814, 'forty-four thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(14367, 93664, 'ninety-three thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(14368, 77366, 'seventy-seven thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(14369, 4818, 'four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(14370, 29353, 'twenty-nine thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(14371, 6908, 'six thousand nine hundred eight');\nINSERT INTO t2 VALUES(14372, 23857, 'twenty-three thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(14373, 73945, 'seventy-three thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(14374, 95923, 'ninety-five thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(14375, 88534, 'eighty-eight thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(14376, 1044, 'one thousand forty-four');\nINSERT INTO t2 VALUES(14377, 33068, 'thirty-three thousand sixty-eight');\nINSERT INTO t2 VALUES(14378, 96724, 'ninety-six thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(14379, 21204, 'twenty-one thousand two hundred four');\nINSERT INTO t2 VALUES(14380, 8359, 'eight thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(14381, 29818, 'twenty-nine thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(14382, 81248, 'eighty-one thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(14383, 79900, 'seventy-nine thousand nine hundred');\nINSERT INTO t2 VALUES(14384, 21224, 'twenty-one thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(14385, 29076, 'twenty-nine thousand seventy-six');\nINSERT INTO t2 VALUES(14386, 37818, 'thirty-seven thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(14387, 41380, 'forty-one thousand three hundred eighty');\nINSERT INTO t2 VALUES(14388, 6662, 'six thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(14389, 85533, 'eighty-five thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(14390, 52747, 'fifty-two thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(14391, 99424, 'ninety-nine thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(14392, 99569, 'ninety-nine thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(14393, 76915, 'seventy-six thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(14394, 98238, 'ninety-eight thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(14395, 3643, 'three thousand six hundred forty-three');\nINSERT INTO t2 VALUES(14396, 10580, 'ten thousand five hundred eighty');\nINSERT INTO t2 VALUES(14397, 27369, 'twenty-seven thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(14398, 19576, 'nineteen thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(14399, 17462, 'seventeen thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(14400, 27190, 'twenty-seven thousand one hundred ninety');\nINSERT INTO t2 VALUES(14401, 57559, 'fifty-seven thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(14402, 38918, 'thirty-eight thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(14403, 18910, 'eighteen thousand nine hundred ten');\nINSERT INTO t2 VALUES(14404, 58855, 'fifty-eight thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(14405, 51161, 'fifty-one thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(14406, 45122, 'forty-five thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(14407, 25422, 'twenty-five thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(14408, 50018, 'fifty thousand eighteen');\nINSERT INTO t2 VALUES(14409, 88341, 'eighty-eight thousand three hundred forty-one');\nINSERT INTO t2 VALUES(14410, 41047, 'forty-one thousand forty-seven');\nINSERT INTO t2 VALUES(14411, 53684, 'fifty-three thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(14412, 7018, 'seven thousand eighteen');\nINSERT INTO t2 VALUES(14413, 14324, 'fourteen thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(14414, 15849, 'fifteen thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(14415, 47940, 'forty-seven thousand nine hundred forty');\nINSERT INTO t2 VALUES(14416, 49096, 'forty-nine thousand ninety-six');\nINSERT INTO t2 VALUES(14417, 21937, 'twenty-one thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(14418, 90158, 'ninety thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(14419, 4770, 'four thousand seven hundred seventy');\nINSERT INTO t2 VALUES(14420, 80185, 'eighty thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(14421, 30812, 'thirty thousand eight hundred twelve');\nINSERT INTO t2 VALUES(14422, 88137, 'eighty-eight thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(14423, 18892, 'eighteen thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(14424, 31402, 'thirty-one thousand four hundred two');\nINSERT INTO t2 VALUES(14425, 67043, 'sixty-seven thousand forty-three');\nINSERT INTO t2 VALUES(14426, 96734, 'ninety-six thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(14427, 35005, 'thirty-five thousand five');\nINSERT INTO t2 VALUES(14428, 42841, 'forty-two thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(14429, 15230, 'fifteen thousand two hundred thirty');\nINSERT INTO t2 VALUES(14430, 13797, 'thirteen thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(14431, 6752, 'six thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(14432, 65526, 'sixty-five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(14433, 39873, 'thirty-nine thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(14434, 4606, 'four thousand six hundred six');\nINSERT INTO t2 VALUES(14435, 39525, 'thirty-nine thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(14436, 27048, 'twenty-seven thousand forty-eight');\nINSERT INTO t2 VALUES(14437, 25952, 'twenty-five thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(14438, 33402, 'thirty-three thousand four hundred two');\nINSERT INTO t2 VALUES(14439, 31317, 'thirty-one thousand three hundred seventeen');\nINSERT INTO t2 VALUES(14440, 24397, 'twenty-four thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(14441, 65864, 'sixty-five thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(14442, 9789, 'nine thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(14443, 58604, 'fifty-eight thousand six hundred four');\nINSERT INTO t2 VALUES(14444, 34957, 'thirty-four thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(14445, 70353, 'seventy thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(14446, 97333, 'ninety-seven thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(14447, 43578, 'forty-three thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(14448, 94679, 'ninety-four thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(14449, 77060, 'seventy-seven thousand sixty');\nINSERT INTO t2 VALUES(14450, 90869, 'ninety thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(14451, 47435, 'forty-seven thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(14452, 37198, 'thirty-seven thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(14453, 13044, 'thirteen thousand forty-four');\nINSERT INTO t2 VALUES(14454, 51680, 'fifty-one thousand six hundred eighty');\nINSERT INTO t2 VALUES(14455, 28456, 'twenty-eight thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(14456, 46979, 'forty-six thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(14457, 268, 'two hundred sixty-eight');\nINSERT INTO t2 VALUES(14458, 59496, 'fifty-nine thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(14459, 47830, 'forty-seven thousand eight hundred thirty');\nINSERT INTO t2 VALUES(14460, 72576, 'seventy-two thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(14461, 89045, 'eighty-nine thousand forty-five');\nINSERT INTO t2 VALUES(14462, 9247, 'nine thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(14463, 45771, 'forty-five thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(14464, 9818, 'nine thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(14465, 80356, 'eighty thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(14466, 77184, 'seventy-seven thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(14467, 95275, 'ninety-five thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(14468, 14950, 'fourteen thousand nine hundred fifty');\nINSERT INTO t2 VALUES(14469, 25886, 'twenty-five thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(14470, 76665, 'seventy-six thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(14471, 93690, 'ninety-three thousand six hundred ninety');\nINSERT INTO t2 VALUES(14472, 59731, 'fifty-nine thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(14473, 84252, 'eighty-four thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(14474, 50778, 'fifty thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(14475, 85611, 'eighty-five thousand six hundred eleven');\nINSERT INTO t2 VALUES(14476, 64788, 'sixty-four thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(14477, 1364, 'one thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(14478, 95924, 'ninety-five thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(14479, 77564, 'seventy-seven thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(14480, 16477, 'sixteen thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(14481, 57138, 'fifty-seven thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(14482, 5847, 'five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(14483, 39001, 'thirty-nine thousand one');\nINSERT INTO t2 VALUES(14484, 2050, 'two thousand fifty');\nINSERT INTO t2 VALUES(14485, 33564, 'thirty-three thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(14486, 4178, 'four thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(14487, 78178, 'seventy-eight thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(14488, 49514, 'forty-nine thousand five hundred fourteen');\nINSERT INTO t2 VALUES(14489, 78921, 'seventy-eight thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(14490, 71208, 'seventy-one thousand two hundred eight');\nINSERT INTO t2 VALUES(14491, 38465, 'thirty-eight thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(14492, 86416, 'eighty-six thousand four hundred sixteen');\nINSERT INTO t2 VALUES(14493, 93193, 'ninety-three thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(14494, 61818, 'sixty-one thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(14495, 5089, 'five thousand eighty-nine');\nINSERT INTO t2 VALUES(14496, 36936, 'thirty-six thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(14497, 95692, 'ninety-five thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(14498, 33382, 'thirty-three thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(14499, 59107, 'fifty-nine thousand one hundred seven');\nINSERT INTO t2 VALUES(14500, 71623, 'seventy-one thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(14501, 69461, 'sixty-nine thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(14502, 7733, 'seven thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(14503, 73507, 'seventy-three thousand five hundred seven');\nINSERT INTO t2 VALUES(14504, 58103, 'fifty-eight thousand one hundred three');\nINSERT INTO t2 VALUES(14505, 86934, 'eighty-six thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(14506, 75588, 'seventy-five thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(14507, 21769, 'twenty-one thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(14508, 31140, 'thirty-one thousand one hundred forty');\nINSERT INTO t2 VALUES(14509, 19322, 'nineteen thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(14510, 33203, 'thirty-three thousand two hundred three');\nINSERT INTO t2 VALUES(14511, 86313, 'eighty-six thousand three hundred thirteen');\nINSERT INTO t2 VALUES(14512, 49083, 'forty-nine thousand eighty-three');\nINSERT INTO t2 VALUES(14513, 76586, 'seventy-six thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(14514, 50635, 'fifty thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(14515, 76844, 'seventy-six thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(14516, 41924, 'forty-one thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(14517, 5724, 'five thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(14518, 15808, 'fifteen thousand eight hundred eight');\nINSERT INTO t2 VALUES(14519, 22083, 'twenty-two thousand eighty-three');\nINSERT INTO t2 VALUES(14520, 97749, 'ninety-seven thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(14521, 33479, 'thirty-three thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(14522, 23304, 'twenty-three thousand three hundred four');\nINSERT INTO t2 VALUES(14523, 37432, 'thirty-seven thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(14524, 8914, 'eight thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(14525, 98746, 'ninety-eight thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(14526, 84990, 'eighty-four thousand nine hundred ninety');\nINSERT INTO t2 VALUES(14527, 31971, 'thirty-one thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(14528, 73077, 'seventy-three thousand seventy-seven');\nINSERT INTO t2 VALUES(14529, 23102, 'twenty-three thousand one hundred two');\nINSERT INTO t2 VALUES(14530, 72328, 'seventy-two thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(14531, 25679, 'twenty-five thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(14532, 25580, 'twenty-five thousand five hundred eighty');\nINSERT INTO t2 VALUES(14533, 79422, 'seventy-nine thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(14534, 96682, 'ninety-six thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(14535, 44352, 'forty-four thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(14536, 49609, 'forty-nine thousand six hundred nine');\nINSERT INTO t2 VALUES(14537, 16865, 'sixteen thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(14538, 64205, 'sixty-four thousand two hundred five');\nINSERT INTO t2 VALUES(14539, 56860, 'fifty-six thousand eight hundred sixty');\nINSERT INTO t2 VALUES(14540, 8452, 'eight thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(14541, 75790, 'seventy-five thousand seven hundred ninety');\nINSERT INTO t2 VALUES(14542, 25874, 'twenty-five thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(14543, 9540, 'nine thousand five hundred forty');\nINSERT INTO t2 VALUES(14544, 56970, 'fifty-six thousand nine hundred seventy');\nINSERT INTO t2 VALUES(14545, 57375, 'fifty-seven thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(14546, 83455, 'eighty-three thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(14547, 52887, 'fifty-two thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(14548, 66815, 'sixty-six thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(14549, 52147, 'fifty-two thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(14550, 36436, 'thirty-six thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(14551, 1746, 'one thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(14552, 19615, 'nineteen thousand six hundred fifteen');\nINSERT INTO t2 VALUES(14553, 75751, 'seventy-five thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(14554, 81234, 'eighty-one thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(14555, 9563, 'nine thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(14556, 89360, 'eighty-nine thousand three hundred sixty');\nINSERT INTO t2 VALUES(14557, 49508, 'forty-nine thousand five hundred eight');\nINSERT INTO t2 VALUES(14558, 35066, 'thirty-five thousand sixty-six');\nINSERT INTO t2 VALUES(14559, 32617, 'thirty-two thousand six hundred seventeen');\nINSERT INTO t2 VALUES(14560, 83483, 'eighty-three thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(14561, 39994, 'thirty-nine thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(14562, 30187, 'thirty thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(14563, 27214, 'twenty-seven thousand two hundred fourteen');\nINSERT INTO t2 VALUES(14564, 92335, 'ninety-two thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(14565, 22552, 'twenty-two thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(14566, 30410, 'thirty thousand four hundred ten');\nINSERT INTO t2 VALUES(14567, 37347, 'thirty-seven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(14568, 54313, 'fifty-four thousand three hundred thirteen');\nINSERT INTO t2 VALUES(14569, 97665, 'ninety-seven thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(14570, 16804, 'sixteen thousand eight hundred four');\nINSERT INTO t2 VALUES(14571, 23093, 'twenty-three thousand ninety-three');\nINSERT INTO t2 VALUES(14572, 61173, 'sixty-one thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(14573, 44, 'forty-four');\nINSERT INTO t2 VALUES(14574, 47884, 'forty-seven thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(14575, 5983, 'five thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(14576, 92504, 'ninety-two thousand five hundred four');\nINSERT INTO t2 VALUES(14577, 10497, 'ten thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(14578, 85725, 'eighty-five thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(14579, 49351, 'forty-nine thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(14580, 39541, 'thirty-nine thousand five hundred forty-one');\nINSERT INTO t2 VALUES(14581, 39732, 'thirty-nine thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(14582, 69622, 'sixty-nine thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(14583, 81213, 'eighty-one thousand two hundred thirteen');\nINSERT INTO t2 VALUES(14584, 30193, 'thirty thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(14585, 94533, 'ninety-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(14586, 78540, 'seventy-eight thousand five hundred forty');\nINSERT INTO t2 VALUES(14587, 12224, 'twelve thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(14588, 79454, 'seventy-nine thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(14589, 19749, 'nineteen thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(14590, 75920, 'seventy-five thousand nine hundred twenty');\nINSERT INTO t2 VALUES(14591, 77552, 'seventy-seven thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(14592, 28470, 'twenty-eight thousand four hundred seventy');\nINSERT INTO t2 VALUES(14593, 23457, 'twenty-three thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(14594, 89400, 'eighty-nine thousand four hundred');\nINSERT INTO t2 VALUES(14595, 41108, 'forty-one thousand one hundred eight');\nINSERT INTO t2 VALUES(14596, 67525, 'sixty-seven thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(14597, 99322, 'ninety-nine thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(14598, 76627, 'seventy-six thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(14599, 47635, 'forty-seven thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(14600, 2882, 'two thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(14601, 84683, 'eighty-four thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(14602, 554, 'five hundred fifty-four');\nINSERT INTO t2 VALUES(14603, 62019, 'sixty-two thousand nineteen');\nINSERT INTO t2 VALUES(14604, 45721, 'forty-five thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(14605, 4448, 'four thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(14606, 28686, 'twenty-eight thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(14607, 3705, 'three thousand seven hundred five');\nINSERT INTO t2 VALUES(14608, 18731, 'eighteen thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(14609, 84238, 'eighty-four thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(14610, 20284, 'twenty thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(14611, 71682, 'seventy-one thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(14612, 47259, 'forty-seven thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(14613, 30209, 'thirty thousand two hundred nine');\nINSERT INTO t2 VALUES(14614, 30489, 'thirty thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(14615, 15266, 'fifteen thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(14616, 49968, 'forty-nine thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(14617, 64851, 'sixty-four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(14618, 92183, 'ninety-two thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(14619, 84467, 'eighty-four thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(14620, 45437, 'forty-five thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(14621, 68933, 'sixty-eight thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(14622, 6125, 'six thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(14623, 10108, 'ten thousand one hundred eight');\nINSERT INTO t2 VALUES(14624, 33129, 'thirty-three thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(14625, 67935, 'sixty-seven thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(14626, 92622, 'ninety-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(14627, 48124, 'forty-eight thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(14628, 9437, 'nine thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(14629, 52731, 'fifty-two thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(14630, 72782, 'seventy-two thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(14631, 85991, 'eighty-five thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(14632, 34199, 'thirty-four thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(14633, 19327, 'nineteen thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(14634, 29821, 'twenty-nine thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(14635, 22018, 'twenty-two thousand eighteen');\nINSERT INTO t2 VALUES(14636, 95469, 'ninety-five thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(14637, 35270, 'thirty-five thousand two hundred seventy');\nINSERT INTO t2 VALUES(14638, 21753, 'twenty-one thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(14639, 41787, 'forty-one thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(14640, 80088, 'eighty thousand eighty-eight');\nINSERT INTO t2 VALUES(14641, 18458, 'eighteen thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(14642, 78593, 'seventy-eight thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(14643, 37960, 'thirty-seven thousand nine hundred sixty');\nINSERT INTO t2 VALUES(14644, 79870, 'seventy-nine thousand eight hundred seventy');\nINSERT INTO t2 VALUES(14645, 84724, 'eighty-four thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(14646, 31792, 'thirty-one thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(14647, 59671, 'fifty-nine thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(14648, 6769, 'six thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(14649, 89178, 'eighty-nine thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(14650, 6896, 'six thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(14651, 16672, 'sixteen thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(14652, 43227, 'forty-three thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(14653, 61393, 'sixty-one thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(14654, 15848, 'fifteen thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(14655, 15662, 'fifteen thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(14656, 15993, 'fifteen thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(14657, 35739, 'thirty-five thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(14658, 41226, 'forty-one thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(14659, 85900, 'eighty-five thousand nine hundred');\nINSERT INTO t2 VALUES(14660, 87213, 'eighty-seven thousand two hundred thirteen');\nINSERT INTO t2 VALUES(14661, 41971, 'forty-one thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(14662, 98755, 'ninety-eight thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(14663, 87227, 'eighty-seven thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(14664, 38837, 'thirty-eight thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(14665, 9866, 'nine thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(14666, 18765, 'eighteen thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(14667, 37507, 'thirty-seven thousand five hundred seven');\nINSERT INTO t2 VALUES(14668, 93594, 'ninety-three thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(14669, 71161, 'seventy-one thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(14670, 13162, 'thirteen thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(14671, 30257, 'thirty thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(14672, 72955, 'seventy-two thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(14673, 24431, 'twenty-four thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(14674, 92187, 'ninety-two thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(14675, 71340, 'seventy-one thousand three hundred forty');\nINSERT INTO t2 VALUES(14676, 91891, 'ninety-one thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(14677, 46095, 'forty-six thousand ninety-five');\nINSERT INTO t2 VALUES(14678, 51437, 'fifty-one thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(14679, 57660, 'fifty-seven thousand six hundred sixty');\nINSERT INTO t2 VALUES(14680, 79428, 'seventy-nine thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(14681, 32269, 'thirty-two thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(14682, 83066, 'eighty-three thousand sixty-six');\nINSERT INTO t2 VALUES(14683, 4752, 'four thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(14684, 50841, 'fifty thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(14685, 83277, 'eighty-three thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(14686, 80797, 'eighty thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(14687, 24346, 'twenty-four thousand three hundred forty-six');\nINSERT INTO t2 VALUES(14688, 55514, 'fifty-five thousand five hundred fourteen');\nINSERT INTO t2 VALUES(14689, 75013, 'seventy-five thousand thirteen');\nINSERT INTO t2 VALUES(14690, 97262, 'ninety-seven thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(14691, 22236, 'twenty-two thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(14692, 97617, 'ninety-seven thousand six hundred seventeen');\nINSERT INTO t2 VALUES(14693, 63703, 'sixty-three thousand seven hundred three');\nINSERT INTO t2 VALUES(14694, 42773, 'forty-two thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(14695, 69803, 'sixty-nine thousand eight hundred three');\nINSERT INTO t2 VALUES(14696, 87220, 'eighty-seven thousand two hundred twenty');\nINSERT INTO t2 VALUES(14697, 38313, 'thirty-eight thousand three hundred thirteen');\nINSERT INTO t2 VALUES(14698, 39602, 'thirty-nine thousand six hundred two');\nINSERT INTO t2 VALUES(14699, 91627, 'ninety-one thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(14700, 94788, 'ninety-four thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(14701, 94296, 'ninety-four thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(14702, 90119, 'ninety thousand one hundred nineteen');\nINSERT INTO t2 VALUES(14703, 59321, 'fifty-nine thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(14704, 40631, 'forty thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(14705, 11223, 'eleven thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(14706, 96046, 'ninety-six thousand forty-six');\nINSERT INTO t2 VALUES(14707, 45279, 'forty-five thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(14708, 80973, 'eighty thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(14709, 33518, 'thirty-three thousand five hundred eighteen');\nINSERT INTO t2 VALUES(14710, 44180, 'forty-four thousand one hundred eighty');\nINSERT INTO t2 VALUES(14711, 22497, 'twenty-two thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(14712, 90451, 'ninety thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(14713, 43890, 'forty-three thousand eight hundred ninety');\nINSERT INTO t2 VALUES(14714, 54182, 'fifty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(14715, 5065, 'five thousand sixty-five');\nINSERT INTO t2 VALUES(14716, 16813, 'sixteen thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(14717, 48067, 'forty-eight thousand sixty-seven');\nINSERT INTO t2 VALUES(14718, 3549, 'three thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(14719, 4978, 'four thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(14720, 98801, 'ninety-eight thousand eight hundred one');\nINSERT INTO t2 VALUES(14721, 8691, 'eight thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(14722, 28395, 'twenty-eight thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(14723, 3896, 'three thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(14724, 8632, 'eight thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(14725, 23899, 'twenty-three thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(14726, 41455, 'forty-one thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(14727, 61002, 'sixty-one thousand two');\nINSERT INTO t2 VALUES(14728, 52544, 'fifty-two thousand five hundred forty-four');\nINSERT INTO t2 VALUES(14729, 35834, 'thirty-five thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(14730, 17708, 'seventeen thousand seven hundred eight');\nINSERT INTO t2 VALUES(14731, 25189, 'twenty-five thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(14732, 60534, 'sixty thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(14733, 62842, 'sixty-two thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(14734, 41457, 'forty-one thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(14735, 88861, 'eighty-eight thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(14736, 44132, 'forty-four thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(14737, 71118, 'seventy-one thousand one hundred eighteen');\nINSERT INTO t2 VALUES(14738, 57340, 'fifty-seven thousand three hundred forty');\nINSERT INTO t2 VALUES(14739, 57778, 'fifty-seven thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(14740, 51943, 'fifty-one thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(14741, 27593, 'twenty-seven thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(14742, 53238, 'fifty-three thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(14743, 74640, 'seventy-four thousand six hundred forty');\nINSERT INTO t2 VALUES(14744, 50657, 'fifty thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(14745, 66555, 'sixty-six thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(14746, 22670, 'twenty-two thousand six hundred seventy');\nINSERT INTO t2 VALUES(14747, 29122, 'twenty-nine thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(14748, 31386, 'thirty-one thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(14749, 19318, 'nineteen thousand three hundred eighteen');\nINSERT INTO t2 VALUES(14750, 43989, 'forty-three thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(14751, 70279, 'seventy thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(14752, 128, 'one hundred twenty-eight');\nINSERT INTO t2 VALUES(14753, 93486, 'ninety-three thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(14754, 48970, 'forty-eight thousand nine hundred seventy');\nINSERT INTO t2 VALUES(14755, 60722, 'sixty thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(14756, 68139, 'sixty-eight thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(14757, 52036, 'fifty-two thousand thirty-six');\nINSERT INTO t2 VALUES(14758, 24053, 'twenty-four thousand fifty-three');\nINSERT INTO t2 VALUES(14759, 44905, 'forty-four thousand nine hundred five');\nINSERT INTO t2 VALUES(14760, 66280, 'sixty-six thousand two hundred eighty');\nINSERT INTO t2 VALUES(14761, 55151, 'fifty-five thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(14762, 41343, 'forty-one thousand three hundred forty-three');\nINSERT INTO t2 VALUES(14763, 72538, 'seventy-two thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(14764, 44348, 'forty-four thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(14765, 79547, 'seventy-nine thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(14766, 30808, 'thirty thousand eight hundred eight');\nINSERT INTO t2 VALUES(14767, 27990, 'twenty-seven thousand nine hundred ninety');\nINSERT INTO t2 VALUES(14768, 62192, 'sixty-two thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(14769, 23859, 'twenty-three thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(14770, 15552, 'fifteen thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(14771, 55528, 'fifty-five thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(14772, 85365, 'eighty-five thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(14773, 42672, 'forty-two thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(14774, 25794, 'twenty-five thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(14775, 49961, 'forty-nine thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(14776, 27547, 'twenty-seven thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(14777, 86964, 'eighty-six thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(14778, 49007, 'forty-nine thousand seven');\nINSERT INTO t2 VALUES(14779, 78423, 'seventy-eight thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(14780, 28165, 'twenty-eight thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(14781, 19329, 'nineteen thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(14782, 10369, 'ten thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(14783, 66493, 'sixty-six thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(14784, 17724, 'seventeen thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(14785, 79241, 'seventy-nine thousand two hundred forty-one');\nINSERT INTO t2 VALUES(14786, 80382, 'eighty thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(14787, 25588, 'twenty-five thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(14788, 59566, 'fifty-nine thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(14789, 70032, 'seventy thousand thirty-two');\nINSERT INTO t2 VALUES(14790, 84071, 'eighty-four thousand seventy-one');\nINSERT INTO t2 VALUES(14791, 17353, 'seventeen thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(14792, 28303, 'twenty-eight thousand three hundred three');\nINSERT INTO t2 VALUES(14793, 75399, 'seventy-five thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(14794, 37078, 'thirty-seven thousand seventy-eight');\nINSERT INTO t2 VALUES(14795, 75173, 'seventy-five thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(14796, 12391, 'twelve thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(14797, 21236, 'twenty-one thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(14798, 66286, 'sixty-six thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(14799, 25510, 'twenty-five thousand five hundred ten');\nINSERT INTO t2 VALUES(14800, 99877, 'ninety-nine thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(14801, 75418, 'seventy-five thousand four hundred eighteen');\nINSERT INTO t2 VALUES(14802, 10969, 'ten thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(14803, 8020, 'eight thousand twenty');\nINSERT INTO t2 VALUES(14804, 6590, 'six thousand five hundred ninety');\nINSERT INTO t2 VALUES(14805, 85993, 'eighty-five thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(14806, 83083, 'eighty-three thousand eighty-three');\nINSERT INTO t2 VALUES(14807, 89009, 'eighty-nine thousand nine');\nINSERT INTO t2 VALUES(14808, 54416, 'fifty-four thousand four hundred sixteen');\nINSERT INTO t2 VALUES(14809, 28310, 'twenty-eight thousand three hundred ten');\nINSERT INTO t2 VALUES(14810, 39845, 'thirty-nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(14811, 18317, 'eighteen thousand three hundred seventeen');\nINSERT INTO t2 VALUES(14812, 42100, 'forty-two thousand one hundred');\nINSERT INTO t2 VALUES(14813, 80698, 'eighty thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(14814, 66337, 'sixty-six thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(14815, 61059, 'sixty-one thousand fifty-nine');\nINSERT INTO t2 VALUES(14816, 54376, 'fifty-four thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(14817, 48273, 'forty-eight thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(14818, 60827, 'sixty thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(14819, 46299, 'forty-six thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(14820, 84933, 'eighty-four thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(14821, 28730, 'twenty-eight thousand seven hundred thirty');\nINSERT INTO t2 VALUES(14822, 8060, 'eight thousand sixty');\nINSERT INTO t2 VALUES(14823, 79376, 'seventy-nine thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(14824, 36887, 'thirty-six thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(14825, 84973, 'eighty-four thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(14826, 38684, 'thirty-eight thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(14827, 73188, 'seventy-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(14828, 75108, 'seventy-five thousand one hundred eight');\nINSERT INTO t2 VALUES(14829, 87237, 'eighty-seven thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(14830, 58693, 'fifty-eight thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(14831, 43371, 'forty-three thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(14832, 2894, 'two thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(14833, 49611, 'forty-nine thousand six hundred eleven');\nINSERT INTO t2 VALUES(14834, 28226, 'twenty-eight thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(14835, 33043, 'thirty-three thousand forty-three');\nINSERT INTO t2 VALUES(14836, 13541, 'thirteen thousand five hundred forty-one');\nINSERT INTO t2 VALUES(14837, 28871, 'twenty-eight thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(14838, 20181, 'twenty thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(14839, 83446, 'eighty-three thousand four hundred forty-six');\nINSERT INTO t2 VALUES(14840, 43040, 'forty-three thousand forty');\nINSERT INTO t2 VALUES(14841, 7590, 'seven thousand five hundred ninety');\nINSERT INTO t2 VALUES(14842, 65978, 'sixty-five thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(14843, 91188, 'ninety-one thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(14844, 98032, 'ninety-eight thousand thirty-two');\nINSERT INTO t2 VALUES(14845, 39240, 'thirty-nine thousand two hundred forty');\nINSERT INTO t2 VALUES(14846, 21482, 'twenty-one thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(14847, 88160, 'eighty-eight thousand one hundred sixty');\nINSERT INTO t2 VALUES(14848, 16389, 'sixteen thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(14849, 24738, 'twenty-four thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(14850, 39290, 'thirty-nine thousand two hundred ninety');\nINSERT INTO t2 VALUES(14851, 54251, 'fifty-four thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(14852, 38312, 'thirty-eight thousand three hundred twelve');\nINSERT INTO t2 VALUES(14853, 33579, 'thirty-three thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(14854, 66306, 'sixty-six thousand three hundred six');\nINSERT INTO t2 VALUES(14855, 83598, 'eighty-three thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(14856, 18308, 'eighteen thousand three hundred eight');\nINSERT INTO t2 VALUES(14857, 81083, 'eighty-one thousand eighty-three');\nINSERT INTO t2 VALUES(14858, 13799, 'thirteen thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(14859, 1751, 'one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(14860, 43130, 'forty-three thousand one hundred thirty');\nINSERT INTO t2 VALUES(14861, 14252, 'fourteen thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(14862, 40845, 'forty thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(14863, 137, 'one hundred thirty-seven');\nINSERT INTO t2 VALUES(14864, 38375, 'thirty-eight thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(14865, 93507, 'ninety-three thousand five hundred seven');\nINSERT INTO t2 VALUES(14866, 68768, 'sixty-eight thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(14867, 41546, 'forty-one thousand five hundred forty-six');\nINSERT INTO t2 VALUES(14868, 39802, 'thirty-nine thousand eight hundred two');\nINSERT INTO t2 VALUES(14869, 82342, 'eighty-two thousand three hundred forty-two');\nINSERT INTO t2 VALUES(14870, 18338, 'eighteen thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(14871, 12695, 'twelve thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(14872, 33942, 'thirty-three thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(14873, 55081, 'fifty-five thousand eighty-one');\nINSERT INTO t2 VALUES(14874, 94942, 'ninety-four thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(14875, 89156, 'eighty-nine thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(14876, 51544, 'fifty-one thousand five hundred forty-four');\nINSERT INTO t2 VALUES(14877, 67560, 'sixty-seven thousand five hundred sixty');\nINSERT INTO t2 VALUES(14878, 8687, 'eight thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(14879, 43582, 'forty-three thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(14880, 20648, 'twenty thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(14881, 18081, 'eighteen thousand eighty-one');\nINSERT INTO t2 VALUES(14882, 65047, 'sixty-five thousand forty-seven');\nINSERT INTO t2 VALUES(14883, 99684, 'ninety-nine thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(14884, 97758, 'ninety-seven thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(14885, 4171, 'four thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(14886, 79899, 'seventy-nine thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(14887, 6764, 'six thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(14888, 54068, 'fifty-four thousand sixty-eight');\nINSERT INTO t2 VALUES(14889, 75627, 'seventy-five thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(14890, 50157, 'fifty thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(14891, 6893, 'six thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(14892, 92589, 'ninety-two thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(14893, 6833, 'six thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(14894, 37330, 'thirty-seven thousand three hundred thirty');\nINSERT INTO t2 VALUES(14895, 92032, 'ninety-two thousand thirty-two');\nINSERT INTO t2 VALUES(14896, 85158, 'eighty-five thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(14897, 83664, 'eighty-three thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(14898, 40988, 'forty thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(14899, 74366, 'seventy-four thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(14900, 75343, 'seventy-five thousand three hundred forty-three');\nINSERT INTO t2 VALUES(14901, 50935, 'fifty thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(14902, 85815, 'eighty-five thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(14903, 54240, 'fifty-four thousand two hundred forty');\nINSERT INTO t2 VALUES(14904, 87892, 'eighty-seven thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(14905, 40957, 'forty thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(14906, 82076, 'eighty-two thousand seventy-six');\nINSERT INTO t2 VALUES(14907, 75856, 'seventy-five thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(14908, 14385, 'fourteen thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(14909, 97969, 'ninety-seven thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(14910, 5575, 'five thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(14911, 74463, 'seventy-four thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(14912, 13970, 'thirteen thousand nine hundred seventy');\nINSERT INTO t2 VALUES(14913, 53165, 'fifty-three thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(14914, 8372, 'eight thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(14915, 24049, 'twenty-four thousand forty-nine');\nINSERT INTO t2 VALUES(14916, 56316, 'fifty-six thousand three hundred sixteen');\nINSERT INTO t2 VALUES(14917, 17773, 'seventeen thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(14918, 66781, 'sixty-six thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(14919, 44535, 'forty-four thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(14920, 92205, 'ninety-two thousand two hundred five');\nINSERT INTO t2 VALUES(14921, 60210, 'sixty thousand two hundred ten');\nINSERT INTO t2 VALUES(14922, 14668, 'fourteen thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(14923, 17568, 'seventeen thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(14924, 12673, 'twelve thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(14925, 72966, 'seventy-two thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(14926, 94656, 'ninety-four thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(14927, 59749, 'fifty-nine thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(14928, 78924, 'seventy-eight thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(14929, 13228, 'thirteen thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(14930, 51270, 'fifty-one thousand two hundred seventy');\nINSERT INTO t2 VALUES(14931, 88752, 'eighty-eight thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(14932, 54559, 'fifty-four thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(14933, 31468, 'thirty-one thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(14934, 17891, 'seventeen thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(14935, 53675, 'fifty-three thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(14936, 53525, 'fifty-three thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(14937, 15904, 'fifteen thousand nine hundred four');\nINSERT INTO t2 VALUES(14938, 88317, 'eighty-eight thousand three hundred seventeen');\nINSERT INTO t2 VALUES(14939, 84193, 'eighty-four thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(14940, 92710, 'ninety-two thousand seven hundred ten');\nINSERT INTO t2 VALUES(14941, 12551, 'twelve thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(14942, 64502, 'sixty-four thousand five hundred two');\nINSERT INTO t2 VALUES(14943, 94730, 'ninety-four thousand seven hundred thirty');\nINSERT INTO t2 VALUES(14944, 83729, 'eighty-three thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(14945, 57078, 'fifty-seven thousand seventy-eight');\nINSERT INTO t2 VALUES(14946, 11601, 'eleven thousand six hundred one');\nINSERT INTO t2 VALUES(14947, 15255, 'fifteen thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(14948, 41045, 'forty-one thousand forty-five');\nINSERT INTO t2 VALUES(14949, 69736, 'sixty-nine thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(14950, 87368, 'eighty-seven thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(14951, 71634, 'seventy-one thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(14952, 22893, 'twenty-two thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(14953, 67128, 'sixty-seven thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(14954, 9599, 'nine thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(14955, 82583, 'eighty-two thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(14956, 74237, 'seventy-four thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(14957, 80721, 'eighty thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(14958, 16870, 'sixteen thousand eight hundred seventy');\nINSERT INTO t2 VALUES(14959, 13515, 'thirteen thousand five hundred fifteen');\nINSERT INTO t2 VALUES(14960, 1932, 'one thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(14961, 47699, 'forty-seven thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(14962, 44529, 'forty-four thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(14963, 18489, 'eighteen thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(14964, 92906, 'ninety-two thousand nine hundred six');\nINSERT INTO t2 VALUES(14965, 10703, 'ten thousand seven hundred three');\nINSERT INTO t2 VALUES(14966, 40741, 'forty thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(14967, 16068, 'sixteen thousand sixty-eight');\nINSERT INTO t2 VALUES(14968, 40236, 'forty thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(14969, 51691, 'fifty-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(14970, 17276, 'seventeen thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(14971, 70934, 'seventy thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(14972, 27180, 'twenty-seven thousand one hundred eighty');\nINSERT INTO t2 VALUES(14973, 13627, 'thirteen thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(14974, 47417, 'forty-seven thousand four hundred seventeen');\nINSERT INTO t2 VALUES(14975, 76436, 'seventy-six thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(14976, 30513, 'thirty thousand five hundred thirteen');\nINSERT INTO t2 VALUES(14977, 23691, 'twenty-three thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(14978, 88469, 'eighty-eight thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(14979, 32252, 'thirty-two thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(14980, 42581, 'forty-two thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(14981, 10119, 'ten thousand one hundred nineteen');\nINSERT INTO t2 VALUES(14982, 83578, 'eighty-three thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(14983, 59346, 'fifty-nine thousand three hundred forty-six');\nINSERT INTO t2 VALUES(14984, 50595, 'fifty thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(14985, 61599, 'sixty-one thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(14986, 80737, 'eighty thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(14987, 3882, 'three thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(14988, 59778, 'fifty-nine thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(14989, 50978, 'fifty thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(14990, 10198, 'ten thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(14991, 17030, 'seventeen thousand thirty');\nINSERT INTO t2 VALUES(14992, 74677, 'seventy-four thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(14993, 70154, 'seventy thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(14994, 34025, 'thirty-four thousand twenty-five');\nINSERT INTO t2 VALUES(14995, 88399, 'eighty-eight thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(14996, 13547, 'thirteen thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(14997, 75524, 'seventy-five thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(14998, 54179, 'fifty-four thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(14999, 55756, 'fifty-five thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(15000, 43850, 'forty-three thousand eight hundred fifty');\nINSERT INTO t2 VALUES(15001, 22374, 'twenty-two thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(15002, 46758, 'forty-six thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(15003, 7508, 'seven thousand five hundred eight');\nINSERT INTO t2 VALUES(15004, 17290, 'seventeen thousand two hundred ninety');\nINSERT INTO t2 VALUES(15005, 76910, 'seventy-six thousand nine hundred ten');\nINSERT INTO t2 VALUES(15006, 50603, 'fifty thousand six hundred three');\nINSERT INTO t2 VALUES(15007, 10383, 'ten thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(15008, 32156, 'thirty-two thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(15009, 68438, 'sixty-eight thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(15010, 27612, 'twenty-seven thousand six hundred twelve');\nINSERT INTO t2 VALUES(15011, 39143, 'thirty-nine thousand one hundred forty-three');\nINSERT INTO t2 VALUES(15012, 98547, 'ninety-eight thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(15013, 48307, 'forty-eight thousand three hundred seven');\nINSERT INTO t2 VALUES(15014, 17969, 'seventeen thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(15015, 76793, 'seventy-six thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(15016, 93091, 'ninety-three thousand ninety-one');\nINSERT INTO t2 VALUES(15017, 47612, 'forty-seven thousand six hundred twelve');\nINSERT INTO t2 VALUES(15018, 63439, 'sixty-three thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(15019, 81077, 'eighty-one thousand seventy-seven');\nINSERT INTO t2 VALUES(15020, 62653, 'sixty-two thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(15021, 69399, 'sixty-nine thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(15022, 12431, 'twelve thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(15023, 39932, 'thirty-nine thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(15024, 59592, 'fifty-nine thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(15025, 44789, 'forty-four thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(15026, 75520, 'seventy-five thousand five hundred twenty');\nINSERT INTO t2 VALUES(15027, 48424, 'forty-eight thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(15028, 30984, 'thirty thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(15029, 89003, 'eighty-nine thousand three');\nINSERT INTO t2 VALUES(15030, 77770, 'seventy-seven thousand seven hundred seventy');\nINSERT INTO t2 VALUES(15031, 76647, 'seventy-six thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(15032, 82707, 'eighty-two thousand seven hundred seven');\nINSERT INTO t2 VALUES(15033, 44158, 'forty-four thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(15034, 74164, 'seventy-four thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(15035, 48329, 'forty-eight thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(15036, 40291, 'forty thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(15037, 19669, 'nineteen thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(15038, 77524, 'seventy-seven thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(15039, 62050, 'sixty-two thousand fifty');\nINSERT INTO t2 VALUES(15040, 76706, 'seventy-six thousand seven hundred six');\nINSERT INTO t2 VALUES(15041, 25442, 'twenty-five thousand four hundred forty-two');\nINSERT INTO t2 VALUES(15042, 29584, 'twenty-nine thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(15043, 78280, 'seventy-eight thousand two hundred eighty');\nINSERT INTO t2 VALUES(15044, 65004, 'sixty-five thousand four');\nINSERT INTO t2 VALUES(15045, 27679, 'twenty-seven thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(15046, 13080, 'thirteen thousand eighty');\nINSERT INTO t2 VALUES(15047, 54692, 'fifty-four thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(15048, 36284, 'thirty-six thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(15049, 57009, 'fifty-seven thousand nine');\nINSERT INTO t2 VALUES(15050, 44112, 'forty-four thousand one hundred twelve');\nINSERT INTO t2 VALUES(15051, 13598, 'thirteen thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(15052, 1432, 'one thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(15053, 16430, 'sixteen thousand four hundred thirty');\nINSERT INTO t2 VALUES(15054, 25656, 'twenty-five thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(15055, 82356, 'eighty-two thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(15056, 18364, 'eighteen thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(15057, 19485, 'nineteen thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(15058, 21280, 'twenty-one thousand two hundred eighty');\nINSERT INTO t2 VALUES(15059, 5880, 'five thousand eight hundred eighty');\nINSERT INTO t2 VALUES(15060, 3051, 'three thousand fifty-one');\nINSERT INTO t2 VALUES(15061, 91744, 'ninety-one thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(15062, 7056, 'seven thousand fifty-six');\nINSERT INTO t2 VALUES(15063, 21495, 'twenty-one thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(15064, 18694, 'eighteen thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(15065, 54635, 'fifty-four thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(15066, 91735, 'ninety-one thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(15067, 65049, 'sixty-five thousand forty-nine');\nINSERT INTO t2 VALUES(15068, 4716, 'four thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(15069, 90635, 'ninety thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(15070, 60723, 'sixty thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(15071, 99959, 'ninety-nine thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(15072, 27602, 'twenty-seven thousand six hundred two');\nINSERT INTO t2 VALUES(15073, 38150, 'thirty-eight thousand one hundred fifty');\nINSERT INTO t2 VALUES(15074, 27266, 'twenty-seven thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(15075, 5634, 'five thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(15076, 40735, 'forty thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(15077, 35728, 'thirty-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(15078, 88799, 'eighty-eight thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(15079, 76820, 'seventy-six thousand eight hundred twenty');\nINSERT INTO t2 VALUES(15080, 22403, 'twenty-two thousand four hundred three');\nINSERT INTO t2 VALUES(15081, 77299, 'seventy-seven thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(15082, 32372, 'thirty-two thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(15083, 32383, 'thirty-two thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(15084, 59041, 'fifty-nine thousand forty-one');\nINSERT INTO t2 VALUES(15085, 44132, 'forty-four thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(15086, 5942, 'five thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(15087, 9132, 'nine thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(15088, 60139, 'sixty thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(15089, 60443, 'sixty thousand four hundred forty-three');\nINSERT INTO t2 VALUES(15090, 82142, 'eighty-two thousand one hundred forty-two');\nINSERT INTO t2 VALUES(15091, 42971, 'forty-two thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(15092, 79414, 'seventy-nine thousand four hundred fourteen');\nINSERT INTO t2 VALUES(15093, 37209, 'thirty-seven thousand two hundred nine');\nINSERT INTO t2 VALUES(15094, 98057, 'ninety-eight thousand fifty-seven');\nINSERT INTO t2 VALUES(15095, 17434, 'seventeen thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(15096, 75387, 'seventy-five thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(15097, 35237, 'thirty-five thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(15098, 49659, 'forty-nine thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(15099, 86761, 'eighty-six thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(15100, 46207, 'forty-six thousand two hundred seven');\nINSERT INTO t2 VALUES(15101, 39626, 'thirty-nine thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(15102, 87094, 'eighty-seven thousand ninety-four');\nINSERT INTO t2 VALUES(15103, 98995, 'ninety-eight thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(15104, 32231, 'thirty-two thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(15105, 51801, 'fifty-one thousand eight hundred one');\nINSERT INTO t2 VALUES(15106, 51335, 'fifty-one thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(15107, 56, 'fifty-six');\nINSERT INTO t2 VALUES(15108, 52259, 'fifty-two thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(15109, 49545, 'forty-nine thousand five hundred forty-five');\nINSERT INTO t2 VALUES(15110, 82724, 'eighty-two thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(15111, 16479, 'sixteen thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(15112, 84442, 'eighty-four thousand four hundred forty-two');\nINSERT INTO t2 VALUES(15113, 95210, 'ninety-five thousand two hundred ten');\nINSERT INTO t2 VALUES(15114, 3556, 'three thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(15115, 78560, 'seventy-eight thousand five hundred sixty');\nINSERT INTO t2 VALUES(15116, 69718, 'sixty-nine thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(15117, 88444, 'eighty-eight thousand four hundred forty-four');\nINSERT INTO t2 VALUES(15118, 43758, 'forty-three thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(15119, 56154, 'fifty-six thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(15120, 69000, 'sixty-nine thousand');\nINSERT INTO t2 VALUES(15121, 75221, 'seventy-five thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(15122, 66822, 'sixty-six thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(15123, 66617, 'sixty-six thousand six hundred seventeen');\nINSERT INTO t2 VALUES(15124, 68022, 'sixty-eight thousand twenty-two');\nINSERT INTO t2 VALUES(15125, 85016, 'eighty-five thousand sixteen');\nINSERT INTO t2 VALUES(15126, 45801, 'forty-five thousand eight hundred one');\nINSERT INTO t2 VALUES(15127, 95672, 'ninety-five thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(15128, 96871, 'ninety-six thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(15129, 87468, 'eighty-seven thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(15130, 53152, 'fifty-three thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(15131, 95677, 'ninety-five thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(15132, 63568, 'sixty-three thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(15133, 87628, 'eighty-seven thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(15134, 13785, 'thirteen thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(15135, 15039, 'fifteen thousand thirty-nine');\nINSERT INTO t2 VALUES(15136, 77330, 'seventy-seven thousand three hundred thirty');\nINSERT INTO t2 VALUES(15137, 42267, 'forty-two thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(15138, 97874, 'ninety-seven thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(15139, 51193, 'fifty-one thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(15140, 73062, 'seventy-three thousand sixty-two');\nINSERT INTO t2 VALUES(15141, 98436, 'ninety-eight thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(15142, 82620, 'eighty-two thousand six hundred twenty');\nINSERT INTO t2 VALUES(15143, 36742, 'thirty-six thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(15144, 60906, 'sixty thousand nine hundred six');\nINSERT INTO t2 VALUES(15145, 39809, 'thirty-nine thousand eight hundred nine');\nINSERT INTO t2 VALUES(15146, 69883, 'sixty-nine thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(15147, 15032, 'fifteen thousand thirty-two');\nINSERT INTO t2 VALUES(15148, 63924, 'sixty-three thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(15149, 13744, 'thirteen thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(15150, 949, 'nine hundred forty-nine');\nINSERT INTO t2 VALUES(15151, 60203, 'sixty thousand two hundred three');\nINSERT INTO t2 VALUES(15152, 91944, 'ninety-one thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(15153, 28432, 'twenty-eight thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(15154, 29038, 'twenty-nine thousand thirty-eight');\nINSERT INTO t2 VALUES(15155, 66625, 'sixty-six thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(15156, 99063, 'ninety-nine thousand sixty-three');\nINSERT INTO t2 VALUES(15157, 8946, 'eight thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(15158, 51651, 'fifty-one thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(15159, 34876, 'thirty-four thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(15160, 88950, 'eighty-eight thousand nine hundred fifty');\nINSERT INTO t2 VALUES(15161, 90025, 'ninety thousand twenty-five');\nINSERT INTO t2 VALUES(15162, 82170, 'eighty-two thousand one hundred seventy');\nINSERT INTO t2 VALUES(15163, 19233, 'nineteen thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(15164, 2705, 'two thousand seven hundred five');\nINSERT INTO t2 VALUES(15165, 47370, 'forty-seven thousand three hundred seventy');\nINSERT INTO t2 VALUES(15166, 97939, 'ninety-seven thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(15167, 80568, 'eighty thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(15168, 53886, 'fifty-three thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(15169, 80045, 'eighty thousand forty-five');\nINSERT INTO t2 VALUES(15170, 90212, 'ninety thousand two hundred twelve');\nINSERT INTO t2 VALUES(15171, 91703, 'ninety-one thousand seven hundred three');\nINSERT INTO t2 VALUES(15172, 43816, 'forty-three thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(15173, 16798, 'sixteen thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(15174, 35487, 'thirty-five thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(15175, 16395, 'sixteen thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(15176, 37818, 'thirty-seven thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(15177, 39963, 'thirty-nine thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(15178, 138, 'one hundred thirty-eight');\nINSERT INTO t2 VALUES(15179, 8295, 'eight thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(15180, 54714, 'fifty-four thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(15181, 58020, 'fifty-eight thousand twenty');\nINSERT INTO t2 VALUES(15182, 49458, 'forty-nine thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(15183, 9303, 'nine thousand three hundred three');\nINSERT INTO t2 VALUES(15184, 4736, 'four thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(15185, 11424, 'eleven thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(15186, 93132, 'ninety-three thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(15187, 23626, 'twenty-three thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(15188, 10794, 'ten thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(15189, 6668, 'six thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(15190, 8121, 'eight thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(15191, 32573, 'thirty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(15192, 34386, 'thirty-four thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(15193, 33288, 'thirty-three thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(15194, 4142, 'four thousand one hundred forty-two');\nINSERT INTO t2 VALUES(15195, 39571, 'thirty-nine thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(15196, 66014, 'sixty-six thousand fourteen');\nINSERT INTO t2 VALUES(15197, 73969, 'seventy-three thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(15198, 69570, 'sixty-nine thousand five hundred seventy');\nINSERT INTO t2 VALUES(15199, 39659, 'thirty-nine thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(15200, 21545, 'twenty-one thousand five hundred forty-five');\nINSERT INTO t2 VALUES(15201, 88646, 'eighty-eight thousand six hundred forty-six');\nINSERT INTO t2 VALUES(15202, 99188, 'ninety-nine thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(15203, 43045, 'forty-three thousand forty-five');\nINSERT INTO t2 VALUES(15204, 94952, 'ninety-four thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(15205, 77797, 'seventy-seven thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(15206, 82065, 'eighty-two thousand sixty-five');\nINSERT INTO t2 VALUES(15207, 97625, 'ninety-seven thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(15208, 59614, 'fifty-nine thousand six hundred fourteen');\nINSERT INTO t2 VALUES(15209, 25885, 'twenty-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(15210, 71065, 'seventy-one thousand sixty-five');\nINSERT INTO t2 VALUES(15211, 4361, 'four thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(15212, 18097, 'eighteen thousand ninety-seven');\nINSERT INTO t2 VALUES(15213, 78333, 'seventy-eight thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(15214, 74844, 'seventy-four thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(15215, 93932, 'ninety-three thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(15216, 72185, 'seventy-two thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(15217, 62820, 'sixty-two thousand eight hundred twenty');\nINSERT INTO t2 VALUES(15218, 6529, 'six thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(15219, 92800, 'ninety-two thousand eight hundred');\nINSERT INTO t2 VALUES(15220, 47066, 'forty-seven thousand sixty-six');\nINSERT INTO t2 VALUES(15221, 13814, 'thirteen thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(15222, 43089, 'forty-three thousand eighty-nine');\nINSERT INTO t2 VALUES(15223, 22362, 'twenty-two thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(15224, 17489, 'seventeen thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(15225, 65027, 'sixty-five thousand twenty-seven');\nINSERT INTO t2 VALUES(15226, 9565, 'nine thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(15227, 48508, 'forty-eight thousand five hundred eight');\nINSERT INTO t2 VALUES(15228, 13113, 'thirteen thousand one hundred thirteen');\nINSERT INTO t2 VALUES(15229, 73212, 'seventy-three thousand two hundred twelve');\nINSERT INTO t2 VALUES(15230, 92011, 'ninety-two thousand eleven');\nINSERT INTO t2 VALUES(15231, 16123, 'sixteen thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(15232, 20854, 'twenty thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(15233, 57608, 'fifty-seven thousand six hundred eight');\nINSERT INTO t2 VALUES(15234, 55653, 'fifty-five thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(15235, 68135, 'sixty-eight thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(15236, 28956, 'twenty-eight thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(15237, 28837, 'twenty-eight thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(15238, 28260, 'twenty-eight thousand two hundred sixty');\nINSERT INTO t2 VALUES(15239, 13693, 'thirteen thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(15240, 878, 'eight hundred seventy-eight');\nINSERT INTO t2 VALUES(15241, 11061, 'eleven thousand sixty-one');\nINSERT INTO t2 VALUES(15242, 72986, 'seventy-two thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(15243, 43988, 'forty-three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(15244, 62841, 'sixty-two thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(15245, 841, 'eight hundred forty-one');\nINSERT INTO t2 VALUES(15246, 98046, 'ninety-eight thousand forty-six');\nINSERT INTO t2 VALUES(15247, 27528, 'twenty-seven thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(15248, 22751, 'twenty-two thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(15249, 61470, 'sixty-one thousand four hundred seventy');\nINSERT INTO t2 VALUES(15250, 51588, 'fifty-one thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(15251, 4367, 'four thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(15252, 77357, 'seventy-seven thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(15253, 23607, 'twenty-three thousand six hundred seven');\nINSERT INTO t2 VALUES(15254, 86336, 'eighty-six thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(15255, 26424, 'twenty-six thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(15256, 66565, 'sixty-six thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(15257, 54626, 'fifty-four thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(15258, 70193, 'seventy thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(15259, 61363, 'sixty-one thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(15260, 62408, 'sixty-two thousand four hundred eight');\nINSERT INTO t2 VALUES(15261, 98196, 'ninety-eight thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(15262, 73709, 'seventy-three thousand seven hundred nine');\nINSERT INTO t2 VALUES(15263, 77095, 'seventy-seven thousand ninety-five');\nINSERT INTO t2 VALUES(15264, 68693, 'sixty-eight thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(15265, 18144, 'eighteen thousand one hundred forty-four');\nINSERT INTO t2 VALUES(15266, 35983, 'thirty-five thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(15267, 25990, 'twenty-five thousand nine hundred ninety');\nINSERT INTO t2 VALUES(15268, 57263, 'fifty-seven thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(15269, 10204, 'ten thousand two hundred four');\nINSERT INTO t2 VALUES(15270, 18355, 'eighteen thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(15271, 23545, 'twenty-three thousand five hundred forty-five');\nINSERT INTO t2 VALUES(15272, 94662, 'ninety-four thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(15273, 71068, 'seventy-one thousand sixty-eight');\nINSERT INTO t2 VALUES(15274, 38716, 'thirty-eight thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(15275, 61144, 'sixty-one thousand one hundred forty-four');\nINSERT INTO t2 VALUES(15276, 56982, 'fifty-six thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(15277, 79055, 'seventy-nine thousand fifty-five');\nINSERT INTO t2 VALUES(15278, 11257, 'eleven thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(15279, 48219, 'forty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(15280, 25441, 'twenty-five thousand four hundred forty-one');\nINSERT INTO t2 VALUES(15281, 27190, 'twenty-seven thousand one hundred ninety');\nINSERT INTO t2 VALUES(15282, 77629, 'seventy-seven thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(15283, 17797, 'seventeen thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(15284, 29156, 'twenty-nine thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(15285, 88189, 'eighty-eight thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(15286, 38575, 'thirty-eight thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(15287, 92783, 'ninety-two thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(15288, 5750, 'five thousand seven hundred fifty');\nINSERT INTO t2 VALUES(15289, 22181, 'twenty-two thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(15290, 75427, 'seventy-five thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(15291, 9216, 'nine thousand two hundred sixteen');\nINSERT INTO t2 VALUES(15292, 75943, 'seventy-five thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(15293, 3790, 'three thousand seven hundred ninety');\nINSERT INTO t2 VALUES(15294, 63545, 'sixty-three thousand five hundred forty-five');\nINSERT INTO t2 VALUES(15295, 74078, 'seventy-four thousand seventy-eight');\nINSERT INTO t2 VALUES(15296, 47475, 'forty-seven thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(15297, 12016, 'twelve thousand sixteen');\nINSERT INTO t2 VALUES(15298, 17015, 'seventeen thousand fifteen');\nINSERT INTO t2 VALUES(15299, 99357, 'ninety-nine thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(15300, 43847, 'forty-three thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(15301, 96848, 'ninety-six thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(15302, 10492, 'ten thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(15303, 37781, 'thirty-seven thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(15304, 4824, 'four thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(15305, 66562, 'sixty-six thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(15306, 4622, 'four thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(15307, 79546, 'seventy-nine thousand five hundred forty-six');\nINSERT INTO t2 VALUES(15308, 90717, 'ninety thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(15309, 36082, 'thirty-six thousand eighty-two');\nINSERT INTO t2 VALUES(15310, 18416, 'eighteen thousand four hundred sixteen');\nINSERT INTO t2 VALUES(15311, 8373, 'eight thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(15312, 38161, 'thirty-eight thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(15313, 67157, 'sixty-seven thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(15314, 1751, 'one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(15315, 30673, 'thirty thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(15316, 43865, 'forty-three thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(15317, 73724, 'seventy-three thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(15318, 22982, 'twenty-two thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(15319, 82190, 'eighty-two thousand one hundred ninety');\nINSERT INTO t2 VALUES(15320, 42632, 'forty-two thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(15321, 31231, 'thirty-one thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(15322, 19622, 'nineteen thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(15323, 27495, 'twenty-seven thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(15324, 5385, 'five thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(15325, 94076, 'ninety-four thousand seventy-six');\nINSERT INTO t2 VALUES(15326, 44504, 'forty-four thousand five hundred four');\nINSERT INTO t2 VALUES(15327, 96536, 'ninety-six thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(15328, 42248, 'forty-two thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(15329, 29206, 'twenty-nine thousand two hundred six');\nINSERT INTO t2 VALUES(15330, 75455, 'seventy-five thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(15331, 87854, 'eighty-seven thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(15332, 90815, 'ninety thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(15333, 94246, 'ninety-four thousand two hundred forty-six');\nINSERT INTO t2 VALUES(15334, 76187, 'seventy-six thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(15335, 28407, 'twenty-eight thousand four hundred seven');\nINSERT INTO t2 VALUES(15336, 44191, 'forty-four thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(15337, 3637, 'three thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(15338, 46981, 'forty-six thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(15339, 73004, 'seventy-three thousand four');\nINSERT INTO t2 VALUES(15340, 7098, 'seven thousand ninety-eight');\nINSERT INTO t2 VALUES(15341, 147, 'one hundred forty-seven');\nINSERT INTO t2 VALUES(15342, 90561, 'ninety thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(15343, 20089, 'twenty thousand eighty-nine');\nINSERT INTO t2 VALUES(15344, 37149, 'thirty-seven thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(15345, 7301, 'seven thousand three hundred one');\nINSERT INTO t2 VALUES(15346, 59134, 'fifty-nine thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(15347, 65023, 'sixty-five thousand twenty-three');\nINSERT INTO t2 VALUES(15348, 90823, 'ninety thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(15349, 54893, 'fifty-four thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(15350, 58271, 'fifty-eight thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(15351, 92604, 'ninety-two thousand six hundred four');\nINSERT INTO t2 VALUES(15352, 50255, 'fifty thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(15353, 84628, 'eighty-four thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(15354, 65434, 'sixty-five thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(15355, 17633, 'seventeen thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(15356, 92894, 'ninety-two thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(15357, 48623, 'forty-eight thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(15358, 87876, 'eighty-seven thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(15359, 62902, 'sixty-two thousand nine hundred two');\nINSERT INTO t2 VALUES(15360, 43327, 'forty-three thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(15361, 67439, 'sixty-seven thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(15362, 12642, 'twelve thousand six hundred forty-two');\nINSERT INTO t2 VALUES(15363, 24981, 'twenty-four thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(15364, 28583, 'twenty-eight thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(15365, 60299, 'sixty thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(15366, 89200, 'eighty-nine thousand two hundred');\nINSERT INTO t2 VALUES(15367, 8050, 'eight thousand fifty');\nINSERT INTO t2 VALUES(15368, 11423, 'eleven thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(15369, 62777, 'sixty-two thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(15370, 89835, 'eighty-nine thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(15371, 25405, 'twenty-five thousand four hundred five');\nINSERT INTO t2 VALUES(15372, 30195, 'thirty thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(15373, 50933, 'fifty thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(15374, 39237, 'thirty-nine thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(15375, 11106, 'eleven thousand one hundred six');\nINSERT INTO t2 VALUES(15376, 97238, 'ninety-seven thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(15377, 34956, 'thirty-four thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(15378, 83366, 'eighty-three thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(15379, 34877, 'thirty-four thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(15380, 87942, 'eighty-seven thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(15381, 22663, 'twenty-two thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(15382, 25887, 'twenty-five thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(15383, 30447, 'thirty thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(15384, 19410, 'nineteen thousand four hundred ten');\nINSERT INTO t2 VALUES(15385, 59787, 'fifty-nine thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(15386, 77755, 'seventy-seven thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(15387, 67147, 'sixty-seven thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(15388, 69423, 'sixty-nine thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(15389, 43649, 'forty-three thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(15390, 74525, 'seventy-four thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(15391, 20720, 'twenty thousand seven hundred twenty');\nINSERT INTO t2 VALUES(15392, 24305, 'twenty-four thousand three hundred five');\nINSERT INTO t2 VALUES(15393, 92612, 'ninety-two thousand six hundred twelve');\nINSERT INTO t2 VALUES(15394, 10940, 'ten thousand nine hundred forty');\nINSERT INTO t2 VALUES(15395, 18822, 'eighteen thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(15396, 18216, 'eighteen thousand two hundred sixteen');\nINSERT INTO t2 VALUES(15397, 20286, 'twenty thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(15398, 89727, 'eighty-nine thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(15399, 48711, 'forty-eight thousand seven hundred eleven');\nINSERT INTO t2 VALUES(15400, 96866, 'ninety-six thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(15401, 52295, 'fifty-two thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(15402, 55393, 'fifty-five thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(15403, 65285, 'sixty-five thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(15404, 70250, 'seventy thousand two hundred fifty');\nINSERT INTO t2 VALUES(15405, 93421, 'ninety-three thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(15406, 73473, 'seventy-three thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(15407, 99667, 'ninety-nine thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(15408, 31507, 'thirty-one thousand five hundred seven');\nINSERT INTO t2 VALUES(15409, 93969, 'ninety-three thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(15410, 24546, 'twenty-four thousand five hundred forty-six');\nINSERT INTO t2 VALUES(15411, 50689, 'fifty thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(15412, 95878, 'ninety-five thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(15413, 40319, 'forty thousand three hundred nineteen');\nINSERT INTO t2 VALUES(15414, 42772, 'forty-two thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(15415, 22352, 'twenty-two thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(15416, 11198, 'eleven thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(15417, 98627, 'ninety-eight thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(15418, 54516, 'fifty-four thousand five hundred sixteen');\nINSERT INTO t2 VALUES(15419, 46274, 'forty-six thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(15420, 43755, 'forty-three thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(15421, 50050, 'fifty thousand fifty');\nINSERT INTO t2 VALUES(15422, 11996, 'eleven thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(15423, 99752, 'ninety-nine thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(15424, 1868, 'one thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(15425, 55366, 'fifty-five thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(15426, 29855, 'twenty-nine thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(15427, 72464, 'seventy-two thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(15428, 60158, 'sixty thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(15429, 39867, 'thirty-nine thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(15430, 92860, 'ninety-two thousand eight hundred sixty');\nINSERT INTO t2 VALUES(15431, 61580, 'sixty-one thousand five hundred eighty');\nINSERT INTO t2 VALUES(15432, 6212, 'six thousand two hundred twelve');\nINSERT INTO t2 VALUES(15433, 82828, 'eighty-two thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(15434, 62919, 'sixty-two thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(15435, 15465, 'fifteen thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(15436, 93209, 'ninety-three thousand two hundred nine');\nINSERT INTO t2 VALUES(15437, 53891, 'fifty-three thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(15438, 67834, 'sixty-seven thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(15439, 82459, 'eighty-two thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(15440, 42603, 'forty-two thousand six hundred three');\nINSERT INTO t2 VALUES(15441, 90595, 'ninety thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(15442, 93731, 'ninety-three thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(15443, 96385, 'ninety-six thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(15444, 93702, 'ninety-three thousand seven hundred two');\nINSERT INTO t2 VALUES(15445, 47292, 'forty-seven thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(15446, 84439, 'eighty-four thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(15447, 52088, 'fifty-two thousand eighty-eight');\nINSERT INTO t2 VALUES(15448, 63151, 'sixty-three thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(15449, 34454, 'thirty-four thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(15450, 50805, 'fifty thousand eight hundred five');\nINSERT INTO t2 VALUES(15451, 57924, 'fifty-seven thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(15452, 54111, 'fifty-four thousand one hundred eleven');\nINSERT INTO t2 VALUES(15453, 59615, 'fifty-nine thousand six hundred fifteen');\nINSERT INTO t2 VALUES(15454, 67802, 'sixty-seven thousand eight hundred two');\nINSERT INTO t2 VALUES(15455, 47508, 'forty-seven thousand five hundred eight');\nINSERT INTO t2 VALUES(15456, 59560, 'fifty-nine thousand five hundred sixty');\nINSERT INTO t2 VALUES(15457, 63565, 'sixty-three thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(15458, 77048, 'seventy-seven thousand forty-eight');\nINSERT INTO t2 VALUES(15459, 51269, 'fifty-one thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(15460, 83568, 'eighty-three thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(15461, 68846, 'sixty-eight thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(15462, 67516, 'sixty-seven thousand five hundred sixteen');\nINSERT INTO t2 VALUES(15463, 19922, 'nineteen thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(15464, 52611, 'fifty-two thousand six hundred eleven');\nINSERT INTO t2 VALUES(15465, 24338, 'twenty-four thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(15466, 64661, 'sixty-four thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(15467, 95295, 'ninety-five thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(15468, 3510, 'three thousand five hundred ten');\nINSERT INTO t2 VALUES(15469, 60057, 'sixty thousand fifty-seven');\nINSERT INTO t2 VALUES(15470, 39376, 'thirty-nine thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(15471, 72066, 'seventy-two thousand sixty-six');\nINSERT INTO t2 VALUES(15472, 24803, 'twenty-four thousand eight hundred three');\nINSERT INTO t2 VALUES(15473, 37056, 'thirty-seven thousand fifty-six');\nINSERT INTO t2 VALUES(15474, 51195, 'fifty-one thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(15475, 98889, 'ninety-eight thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(15476, 75488, 'seventy-five thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(15477, 42469, 'forty-two thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(15478, 49150, 'forty-nine thousand one hundred fifty');\nINSERT INTO t2 VALUES(15479, 85066, 'eighty-five thousand sixty-six');\nINSERT INTO t2 VALUES(15480, 54015, 'fifty-four thousand fifteen');\nINSERT INTO t2 VALUES(15481, 81555, 'eighty-one thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(15482, 97357, 'ninety-seven thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(15483, 66744, 'sixty-six thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(15484, 32806, 'thirty-two thousand eight hundred six');\nINSERT INTO t2 VALUES(15485, 11632, 'eleven thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(15486, 96839, 'ninety-six thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(15487, 88098, 'eighty-eight thousand ninety-eight');\nINSERT INTO t2 VALUES(15488, 60489, 'sixty thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(15489, 22812, 'twenty-two thousand eight hundred twelve');\nINSERT INTO t2 VALUES(15490, 52056, 'fifty-two thousand fifty-six');\nINSERT INTO t2 VALUES(15491, 15199, 'fifteen thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(15492, 45295, 'forty-five thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(15493, 18710, 'eighteen thousand seven hundred ten');\nINSERT INTO t2 VALUES(15494, 1270, 'one thousand two hundred seventy');\nINSERT INTO t2 VALUES(15495, 31235, 'thirty-one thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(15496, 31310, 'thirty-one thousand three hundred ten');\nINSERT INTO t2 VALUES(15497, 69567, 'sixty-nine thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(15498, 7552, 'seven thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(15499, 81760, 'eighty-one thousand seven hundred sixty');\nINSERT INTO t2 VALUES(15500, 24472, 'twenty-four thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(15501, 12944, 'twelve thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(15502, 15917, 'fifteen thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(15503, 59459, 'fifty-nine thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(15504, 81424, 'eighty-one thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(15505, 77348, 'seventy-seven thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(15506, 99429, 'ninety-nine thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(15507, 25494, 'twenty-five thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(15508, 65411, 'sixty-five thousand four hundred eleven');\nINSERT INTO t2 VALUES(15509, 93643, 'ninety-three thousand six hundred forty-three');\nINSERT INTO t2 VALUES(15510, 29963, 'twenty-nine thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(15511, 83596, 'eighty-three thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(15512, 64819, 'sixty-four thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(15513, 68713, 'sixty-eight thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(15514, 37885, 'thirty-seven thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(15515, 41922, 'forty-one thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(15516, 15729, 'fifteen thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(15517, 77893, 'seventy-seven thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(15518, 46203, 'forty-six thousand two hundred three');\nINSERT INTO t2 VALUES(15519, 46226, 'forty-six thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(15520, 97826, 'ninety-seven thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(15521, 26589, 'twenty-six thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(15522, 83990, 'eighty-three thousand nine hundred ninety');\nINSERT INTO t2 VALUES(15523, 72646, 'seventy-two thousand six hundred forty-six');\nINSERT INTO t2 VALUES(15524, 2105, 'two thousand one hundred five');\nINSERT INTO t2 VALUES(15525, 22161, 'twenty-two thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(15526, 84899, 'eighty-four thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(15527, 2102, 'two thousand one hundred two');\nINSERT INTO t2 VALUES(15528, 36255, 'thirty-six thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(15529, 25618, 'twenty-five thousand six hundred eighteen');\nINSERT INTO t2 VALUES(15530, 14837, 'fourteen thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(15531, 87808, 'eighty-seven thousand eight hundred eight');\nINSERT INTO t2 VALUES(15532, 98142, 'ninety-eight thousand one hundred forty-two');\nINSERT INTO t2 VALUES(15533, 36292, 'thirty-six thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(15534, 3279, 'three thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(15535, 78626, 'seventy-eight thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(15536, 26768, 'twenty-six thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(15537, 80691, 'eighty thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(15538, 50597, 'fifty thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(15539, 90986, 'ninety thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(15540, 52652, 'fifty-two thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(15541, 52101, 'fifty-two thousand one hundred one');\nINSERT INTO t2 VALUES(15542, 41309, 'forty-one thousand three hundred nine');\nINSERT INTO t2 VALUES(15543, 68436, 'sixty-eight thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(15544, 61824, 'sixty-one thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(15545, 21345, 'twenty-one thousand three hundred forty-five');\nINSERT INTO t2 VALUES(15546, 17744, 'seventeen thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(15547, 16263, 'sixteen thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(15548, 94070, 'ninety-four thousand seventy');\nINSERT INTO t2 VALUES(15549, 48117, 'forty-eight thousand one hundred seventeen');\nINSERT INTO t2 VALUES(15550, 59852, 'fifty-nine thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(15551, 90850, 'ninety thousand eight hundred fifty');\nINSERT INTO t2 VALUES(15552, 60815, 'sixty thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(15553, 51835, 'fifty-one thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(15554, 55658, 'fifty-five thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(15555, 98621, 'ninety-eight thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(15556, 55698, 'fifty-five thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(15557, 37635, 'thirty-seven thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(15558, 64378, 'sixty-four thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(15559, 89291, 'eighty-nine thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(15560, 88040, 'eighty-eight thousand forty');\nINSERT INTO t2 VALUES(15561, 76340, 'seventy-six thousand three hundred forty');\nINSERT INTO t2 VALUES(15562, 47161, 'forty-seven thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(15563, 28387, 'twenty-eight thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(15564, 29715, 'twenty-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(15565, 14403, 'fourteen thousand four hundred three');\nINSERT INTO t2 VALUES(15566, 9579, 'nine thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(15567, 4936, 'four thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(15568, 31298, 'thirty-one thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(15569, 1756, 'one thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(15570, 92144, 'ninety-two thousand one hundred forty-four');\nINSERT INTO t2 VALUES(15571, 44931, 'forty-four thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(15572, 16544, 'sixteen thousand five hundred forty-four');\nINSERT INTO t2 VALUES(15573, 79428, 'seventy-nine thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(15574, 11404, 'eleven thousand four hundred four');\nINSERT INTO t2 VALUES(15575, 31449, 'thirty-one thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(15576, 4270, 'four thousand two hundred seventy');\nINSERT INTO t2 VALUES(15577, 45029, 'forty-five thousand twenty-nine');\nINSERT INTO t2 VALUES(15578, 39026, 'thirty-nine thousand twenty-six');\nINSERT INTO t2 VALUES(15579, 4605, 'four thousand six hundred five');\nINSERT INTO t2 VALUES(15580, 5860, 'five thousand eight hundred sixty');\nINSERT INTO t2 VALUES(15581, 64363, 'sixty-four thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(15582, 58297, 'fifty-eight thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(15583, 33459, 'thirty-three thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(15584, 59193, 'fifty-nine thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(15585, 81536, 'eighty-one thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(15586, 76947, 'seventy-six thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(15587, 44471, 'forty-four thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(15588, 69851, 'sixty-nine thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(15589, 45895, 'forty-five thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(15590, 92759, 'ninety-two thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(15591, 40856, 'forty thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(15592, 11506, 'eleven thousand five hundred six');\nINSERT INTO t2 VALUES(15593, 5862, 'five thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(15594, 70418, 'seventy thousand four hundred eighteen');\nINSERT INTO t2 VALUES(15595, 29836, 'twenty-nine thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(15596, 5514, 'five thousand five hundred fourteen');\nINSERT INTO t2 VALUES(15597, 57932, 'fifty-seven thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(15598, 84976, 'eighty-four thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(15599, 68439, 'sixty-eight thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(15600, 99490, 'ninety-nine thousand four hundred ninety');\nINSERT INTO t2 VALUES(15601, 94135, 'ninety-four thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(15602, 30823, 'thirty thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(15603, 27451, 'twenty-seven thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(15604, 71974, 'seventy-one thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(15605, 34816, 'thirty-four thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(15606, 57497, 'fifty-seven thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(15607, 43596, 'forty-three thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(15608, 17797, 'seventeen thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(15609, 87723, 'eighty-seven thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(15610, 44052, 'forty-four thousand fifty-two');\nINSERT INTO t2 VALUES(15611, 71816, 'seventy-one thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(15612, 63176, 'sixty-three thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(15613, 61880, 'sixty-one thousand eight hundred eighty');\nINSERT INTO t2 VALUES(15614, 11725, 'eleven thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(15615, 18665, 'eighteen thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(15616, 18215, 'eighteen thousand two hundred fifteen');\nINSERT INTO t2 VALUES(15617, 76647, 'seventy-six thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(15618, 94777, 'ninety-four thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(15619, 12571, 'twelve thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(15620, 17450, 'seventeen thousand four hundred fifty');\nINSERT INTO t2 VALUES(15621, 69675, 'sixty-nine thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(15622, 3555, 'three thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(15623, 63435, 'sixty-three thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(15624, 64818, 'sixty-four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(15625, 11605, 'eleven thousand six hundred five');\nINSERT INTO t2 VALUES(15626, 7872, 'seven thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(15627, 61547, 'sixty-one thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(15628, 43116, 'forty-three thousand one hundred sixteen');\nINSERT INTO t2 VALUES(15629, 48788, 'forty-eight thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(15630, 79748, 'seventy-nine thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(15631, 53201, 'fifty-three thousand two hundred one');\nINSERT INTO t2 VALUES(15632, 39735, 'thirty-nine thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(15633, 62759, 'sixty-two thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(15634, 42749, 'forty-two thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(15635, 35018, 'thirty-five thousand eighteen');\nINSERT INTO t2 VALUES(15636, 68053, 'sixty-eight thousand fifty-three');\nINSERT INTO t2 VALUES(15637, 9848, 'nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(15638, 86110, 'eighty-six thousand one hundred ten');\nINSERT INTO t2 VALUES(15639, 17467, 'seventeen thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(15640, 79544, 'seventy-nine thousand five hundred forty-four');\nINSERT INTO t2 VALUES(15641, 25175, 'twenty-five thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(15642, 85717, 'eighty-five thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(15643, 48374, 'forty-eight thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(15644, 38063, 'thirty-eight thousand sixty-three');\nINSERT INTO t2 VALUES(15645, 19210, 'nineteen thousand two hundred ten');\nINSERT INTO t2 VALUES(15646, 96865, 'ninety-six thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(15647, 29209, 'twenty-nine thousand two hundred nine');\nINSERT INTO t2 VALUES(15648, 81531, 'eighty-one thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(15649, 32174, 'thirty-two thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(15650, 4973, 'four thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(15651, 49262, 'forty-nine thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(15652, 95542, 'ninety-five thousand five hundred forty-two');\nINSERT INTO t2 VALUES(15653, 88219, 'eighty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(15654, 16996, 'sixteen thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(15655, 63924, 'sixty-three thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(15656, 69687, 'sixty-nine thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(15657, 20597, 'twenty thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(15658, 31839, 'thirty-one thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(15659, 11766, 'eleven thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(15660, 91155, 'ninety-one thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(15661, 4188, 'four thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(15662, 66933, 'sixty-six thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(15663, 72850, 'seventy-two thousand eight hundred fifty');\nINSERT INTO t2 VALUES(15664, 80618, 'eighty thousand six hundred eighteen');\nINSERT INTO t2 VALUES(15665, 21622, 'twenty-one thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(15666, 37043, 'thirty-seven thousand forty-three');\nINSERT INTO t2 VALUES(15667, 12766, 'twelve thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(15668, 43165, 'forty-three thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(15669, 85152, 'eighty-five thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(15670, 36120, 'thirty-six thousand one hundred twenty');\nINSERT INTO t2 VALUES(15671, 65436, 'sixty-five thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(15672, 19332, 'nineteen thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(15673, 49216, 'forty-nine thousand two hundred sixteen');\nINSERT INTO t2 VALUES(15674, 61322, 'sixty-one thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(15675, 41147, 'forty-one thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(15676, 63864, 'sixty-three thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(15677, 19328, 'nineteen thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(15678, 92877, 'ninety-two thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(15679, 42696, 'forty-two thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(15680, 89108, 'eighty-nine thousand one hundred eight');\nINSERT INTO t2 VALUES(15681, 22031, 'twenty-two thousand thirty-one');\nINSERT INTO t2 VALUES(15682, 39057, 'thirty-nine thousand fifty-seven');\nINSERT INTO t2 VALUES(15683, 58551, 'fifty-eight thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(15684, 44747, 'forty-four thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(15685, 32329, 'thirty-two thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(15686, 52888, 'fifty-two thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(15687, 16704, 'sixteen thousand seven hundred four');\nINSERT INTO t2 VALUES(15688, 41197, 'forty-one thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(15689, 46288, 'forty-six thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(15690, 72820, 'seventy-two thousand eight hundred twenty');\nINSERT INTO t2 VALUES(15691, 24914, 'twenty-four thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(15692, 40832, 'forty thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(15693, 65655, 'sixty-five thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(15694, 45081, 'forty-five thousand eighty-one');\nINSERT INTO t2 VALUES(15695, 27034, 'twenty-seven thousand thirty-four');\nINSERT INTO t2 VALUES(15696, 34997, 'thirty-four thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(15697, 37604, 'thirty-seven thousand six hundred four');\nINSERT INTO t2 VALUES(15698, 91329, 'ninety-one thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(15699, 81517, 'eighty-one thousand five hundred seventeen');\nINSERT INTO t2 VALUES(15700, 55791, 'fifty-five thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(15701, 43675, 'forty-three thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(15702, 97901, 'ninety-seven thousand nine hundred one');\nINSERT INTO t2 VALUES(15703, 21633, 'twenty-one thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(15704, 53911, 'fifty-three thousand nine hundred eleven');\nINSERT INTO t2 VALUES(15705, 32666, 'thirty-two thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(15706, 66059, 'sixty-six thousand fifty-nine');\nINSERT INTO t2 VALUES(15707, 93468, 'ninety-three thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(15708, 69825, 'sixty-nine thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(15709, 59698, 'fifty-nine thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(15710, 26718, 'twenty-six thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(15711, 43706, 'forty-three thousand seven hundred six');\nINSERT INTO t2 VALUES(15712, 94219, 'ninety-four thousand two hundred nineteen');\nINSERT INTO t2 VALUES(15713, 13486, 'thirteen thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(15714, 67202, 'sixty-seven thousand two hundred two');\nINSERT INTO t2 VALUES(15715, 74060, 'seventy-four thousand sixty');\nINSERT INTO t2 VALUES(15716, 77731, 'seventy-seven thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(15717, 77732, 'seventy-seven thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(15718, 28718, 'twenty-eight thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(15719, 96642, 'ninety-six thousand six hundred forty-two');\nINSERT INTO t2 VALUES(15720, 54665, 'fifty-four thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(15721, 64256, 'sixty-four thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(15722, 52600, 'fifty-two thousand six hundred');\nINSERT INTO t2 VALUES(15723, 98974, 'ninety-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(15724, 69925, 'sixty-nine thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(15725, 42561, 'forty-two thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(15726, 91144, 'ninety-one thousand one hundred forty-four');\nINSERT INTO t2 VALUES(15727, 65572, 'sixty-five thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(15728, 31857, 'thirty-one thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(15729, 99414, 'ninety-nine thousand four hundred fourteen');\nINSERT INTO t2 VALUES(15730, 92586, 'ninety-two thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(15731, 4229, 'four thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(15732, 92992, 'ninety-two thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(15733, 25972, 'twenty-five thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(15734, 59536, 'fifty-nine thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(15735, 29525, 'twenty-nine thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(15736, 58306, 'fifty-eight thousand three hundred six');\nINSERT INTO t2 VALUES(15737, 38178, 'thirty-eight thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(15738, 24258, 'twenty-four thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(15739, 4210, 'four thousand two hundred ten');\nINSERT INTO t2 VALUES(15740, 37326, 'thirty-seven thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(15741, 48560, 'forty-eight thousand five hundred sixty');\nINSERT INTO t2 VALUES(15742, 40522, 'forty thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(15743, 87111, 'eighty-seven thousand one hundred eleven');\nINSERT INTO t2 VALUES(15744, 93856, 'ninety-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(15745, 40944, 'forty thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(15746, 34745, 'thirty-four thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(15747, 91884, 'ninety-one thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(15748, 33277, 'thirty-three thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(15749, 98638, 'ninety-eight thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(15750, 35790, 'thirty-five thousand seven hundred ninety');\nINSERT INTO t2 VALUES(15751, 25847, 'twenty-five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(15752, 74394, 'seventy-four thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(15753, 75598, 'seventy-five thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(15754, 93823, 'ninety-three thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(15755, 43607, 'forty-three thousand six hundred seven');\nINSERT INTO t2 VALUES(15756, 1996, 'one thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(15757, 43585, 'forty-three thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(15758, 25498, 'twenty-five thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(15759, 6693, 'six thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(15760, 5413, 'five thousand four hundred thirteen');\nINSERT INTO t2 VALUES(15761, 98080, 'ninety-eight thousand eighty');\nINSERT INTO t2 VALUES(15762, 90212, 'ninety thousand two hundred twelve');\nINSERT INTO t2 VALUES(15763, 80334, 'eighty thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(15764, 66086, 'sixty-six thousand eighty-six');\nINSERT INTO t2 VALUES(15765, 25179, 'twenty-five thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(15766, 17907, 'seventeen thousand nine hundred seven');\nINSERT INTO t2 VALUES(15767, 12495, 'twelve thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(15768, 65610, 'sixty-five thousand six hundred ten');\nINSERT INTO t2 VALUES(15769, 21380, 'twenty-one thousand three hundred eighty');\nINSERT INTO t2 VALUES(15770, 58684, 'fifty-eight thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(15771, 11175, 'eleven thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(15772, 23235, 'twenty-three thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(15773, 75318, 'seventy-five thousand three hundred eighteen');\nINSERT INTO t2 VALUES(15774, 72185, 'seventy-two thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(15775, 72689, 'seventy-two thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(15776, 92985, 'ninety-two thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(15777, 59223, 'fifty-nine thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(15778, 4445, 'four thousand four hundred forty-five');\nINSERT INTO t2 VALUES(15779, 83347, 'eighty-three thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(15780, 84382, 'eighty-four thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(15781, 40426, 'forty thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(15782, 26994, 'twenty-six thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(15783, 2096, 'two thousand ninety-six');\nINSERT INTO t2 VALUES(15784, 53119, 'fifty-three thousand one hundred nineteen');\nINSERT INTO t2 VALUES(15785, 83994, 'eighty-three thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(15786, 98841, 'ninety-eight thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(15787, 33638, 'thirty-three thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(15788, 50104, 'fifty thousand one hundred four');\nINSERT INTO t2 VALUES(15789, 4557, 'four thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(15790, 71155, 'seventy-one thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(15791, 39118, 'thirty-nine thousand one hundred eighteen');\nINSERT INTO t2 VALUES(15792, 92201, 'ninety-two thousand two hundred one');\nINSERT INTO t2 VALUES(15793, 93141, 'ninety-three thousand one hundred forty-one');\nINSERT INTO t2 VALUES(15794, 43521, 'forty-three thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(15795, 67315, 'sixty-seven thousand three hundred fifteen');\nINSERT INTO t2 VALUES(15796, 78521, 'seventy-eight thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(15797, 24113, 'twenty-four thousand one hundred thirteen');\nINSERT INTO t2 VALUES(15798, 68189, 'sixty-eight thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(15799, 61865, 'sixty-one thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(15800, 46165, 'forty-six thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(15801, 14418, 'fourteen thousand four hundred eighteen');\nINSERT INTO t2 VALUES(15802, 61208, 'sixty-one thousand two hundred eight');\nINSERT INTO t2 VALUES(15803, 99043, 'ninety-nine thousand forty-three');\nINSERT INTO t2 VALUES(15804, 20662, 'twenty thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(15805, 21396, 'twenty-one thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(15806, 56437, 'fifty-six thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(15807, 43992, 'forty-three thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(15808, 84982, 'eighty-four thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(15809, 62228, 'sixty-two thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(15810, 68314, 'sixty-eight thousand three hundred fourteen');\nINSERT INTO t2 VALUES(15811, 9211, 'nine thousand two hundred eleven');\nINSERT INTO t2 VALUES(15812, 34369, 'thirty-four thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(15813, 38328, 'thirty-eight thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(15814, 42354, 'forty-two thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(15815, 95668, 'ninety-five thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(15816, 17301, 'seventeen thousand three hundred one');\nINSERT INTO t2 VALUES(15817, 99826, 'ninety-nine thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(15818, 91260, 'ninety-one thousand two hundred sixty');\nINSERT INTO t2 VALUES(15819, 16815, 'sixteen thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(15820, 49040, 'forty-nine thousand forty');\nINSERT INTO t2 VALUES(15821, 17261, 'seventeen thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(15822, 10944, 'ten thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(15823, 96146, 'ninety-six thousand one hundred forty-six');\nINSERT INTO t2 VALUES(15824, 80399, 'eighty thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(15825, 15139, 'fifteen thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(15826, 97864, 'ninety-seven thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(15827, 70054, 'seventy thousand fifty-four');\nINSERT INTO t2 VALUES(15828, 79807, 'seventy-nine thousand eight hundred seven');\nINSERT INTO t2 VALUES(15829, 40204, 'forty thousand two hundred four');\nINSERT INTO t2 VALUES(15830, 50679, 'fifty thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(15831, 52273, 'fifty-two thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(15832, 68219, 'sixty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(15833, 78023, 'seventy-eight thousand twenty-three');\nINSERT INTO t2 VALUES(15834, 43634, 'forty-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(15835, 5211, 'five thousand two hundred eleven');\nINSERT INTO t2 VALUES(15836, 39783, 'thirty-nine thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(15837, 2122, 'two thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(15838, 83333, 'eighty-three thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(15839, 603, 'six hundred three');\nINSERT INTO t2 VALUES(15840, 17301, 'seventeen thousand three hundred one');\nINSERT INTO t2 VALUES(15841, 51333, 'fifty-one thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(15842, 96097, 'ninety-six thousand ninety-seven');\nINSERT INTO t2 VALUES(15843, 98866, 'ninety-eight thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(15844, 53335, 'fifty-three thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(15845, 96912, 'ninety-six thousand nine hundred twelve');\nINSERT INTO t2 VALUES(15846, 64573, 'sixty-four thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(15847, 46755, 'forty-six thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(15848, 798, 'seven hundred ninety-eight');\nINSERT INTO t2 VALUES(15849, 64921, 'sixty-four thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(15850, 33689, 'thirty-three thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(15851, 39179, 'thirty-nine thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(15852, 82318, 'eighty-two thousand three hundred eighteen');\nINSERT INTO t2 VALUES(15853, 3840, 'three thousand eight hundred forty');\nINSERT INTO t2 VALUES(15854, 55927, 'fifty-five thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(15855, 9776, 'nine thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(15856, 65450, 'sixty-five thousand four hundred fifty');\nINSERT INTO t2 VALUES(15857, 61984, 'sixty-one thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(15858, 60152, 'sixty thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(15859, 66670, 'sixty-six thousand six hundred seventy');\nINSERT INTO t2 VALUES(15860, 49118, 'forty-nine thousand one hundred eighteen');\nINSERT INTO t2 VALUES(15861, 78227, 'seventy-eight thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(15862, 744, 'seven hundred forty-four');\nINSERT INTO t2 VALUES(15863, 11166, 'eleven thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(15864, 47097, 'forty-seven thousand ninety-seven');\nINSERT INTO t2 VALUES(15865, 57886, 'fifty-seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(15866, 87623, 'eighty-seven thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(15867, 97491, 'ninety-seven thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(15868, 30058, 'thirty thousand fifty-eight');\nINSERT INTO t2 VALUES(15869, 1551, 'one thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(15870, 31301, 'thirty-one thousand three hundred one');\nINSERT INTO t2 VALUES(15871, 84567, 'eighty-four thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(15872, 77068, 'seventy-seven thousand sixty-eight');\nINSERT INTO t2 VALUES(15873, 76172, 'seventy-six thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(15874, 36069, 'thirty-six thousand sixty-nine');\nINSERT INTO t2 VALUES(15875, 93185, 'ninety-three thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(15876, 69686, 'sixty-nine thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(15877, 99235, 'ninety-nine thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(15878, 83211, 'eighty-three thousand two hundred eleven');\nINSERT INTO t2 VALUES(15879, 76908, 'seventy-six thousand nine hundred eight');\nINSERT INTO t2 VALUES(15880, 36042, 'thirty-six thousand forty-two');\nINSERT INTO t2 VALUES(15881, 8421, 'eight thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(15882, 7780, 'seven thousand seven hundred eighty');\nINSERT INTO t2 VALUES(15883, 77417, 'seventy-seven thousand four hundred seventeen');\nINSERT INTO t2 VALUES(15884, 90133, 'ninety thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(15885, 78079, 'seventy-eight thousand seventy-nine');\nINSERT INTO t2 VALUES(15886, 54830, 'fifty-four thousand eight hundred thirty');\nINSERT INTO t2 VALUES(15887, 24977, 'twenty-four thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(15888, 70974, 'seventy thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(15889, 77095, 'seventy-seven thousand ninety-five');\nINSERT INTO t2 VALUES(15890, 51306, 'fifty-one thousand three hundred six');\nINSERT INTO t2 VALUES(15891, 58044, 'fifty-eight thousand forty-four');\nINSERT INTO t2 VALUES(15892, 88308, 'eighty-eight thousand three hundred eight');\nINSERT INTO t2 VALUES(15893, 1551, 'one thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(15894, 29311, 'twenty-nine thousand three hundred eleven');\nINSERT INTO t2 VALUES(15895, 79399, 'seventy-nine thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(15896, 62728, 'sixty-two thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(15897, 27716, 'twenty-seven thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(15898, 91020, 'ninety-one thousand twenty');\nINSERT INTO t2 VALUES(15899, 22067, 'twenty-two thousand sixty-seven');\nINSERT INTO t2 VALUES(15900, 29936, 'twenty-nine thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(15901, 81032, 'eighty-one thousand thirty-two');\nINSERT INTO t2 VALUES(15902, 73073, 'seventy-three thousand seventy-three');\nINSERT INTO t2 VALUES(15903, 17993, 'seventeen thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(15904, 70475, 'seventy thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(15905, 91139, 'ninety-one thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(15906, 93044, 'ninety-three thousand forty-four');\nINSERT INTO t2 VALUES(15907, 56672, 'fifty-six thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(15908, 8574, 'eight thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(15909, 99775, 'ninety-nine thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(15910, 98409, 'ninety-eight thousand four hundred nine');\nINSERT INTO t2 VALUES(15911, 52874, 'fifty-two thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(15912, 60677, 'sixty thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(15913, 74511, 'seventy-four thousand five hundred eleven');\nINSERT INTO t2 VALUES(15914, 38728, 'thirty-eight thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(15915, 5302, 'five thousand three hundred two');\nINSERT INTO t2 VALUES(15916, 50159, 'fifty thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(15917, 12641, 'twelve thousand six hundred forty-one');\nINSERT INTO t2 VALUES(15918, 68110, 'sixty-eight thousand one hundred ten');\nINSERT INTO t2 VALUES(15919, 89350, 'eighty-nine thousand three hundred fifty');\nINSERT INTO t2 VALUES(15920, 70579, 'seventy thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(15921, 17149, 'seventeen thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(15922, 57276, 'fifty-seven thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(15923, 9657, 'nine thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(15924, 51466, 'fifty-one thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(15925, 36532, 'thirty-six thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(15926, 60852, 'sixty thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(15927, 76838, 'seventy-six thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(15928, 48278, 'forty-eight thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(15929, 44557, 'forty-four thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(15930, 93247, 'ninety-three thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(15931, 25113, 'twenty-five thousand one hundred thirteen');\nINSERT INTO t2 VALUES(15932, 27324, 'twenty-seven thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(15933, 67270, 'sixty-seven thousand two hundred seventy');\nINSERT INTO t2 VALUES(15934, 86752, 'eighty-six thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(15935, 86862, 'eighty-six thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(15936, 69694, 'sixty-nine thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(15937, 16990, 'sixteen thousand nine hundred ninety');\nINSERT INTO t2 VALUES(15938, 37531, 'thirty-seven thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(15939, 37787, 'thirty-seven thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(15940, 52082, 'fifty-two thousand eighty-two');\nINSERT INTO t2 VALUES(15941, 4136, 'four thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(15942, 97125, 'ninety-seven thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(15943, 39025, 'thirty-nine thousand twenty-five');\nINSERT INTO t2 VALUES(15944, 43628, 'forty-three thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(15945, 24790, 'twenty-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(15946, 90849, 'ninety thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(15947, 28804, 'twenty-eight thousand eight hundred four');\nINSERT INTO t2 VALUES(15948, 26308, 'twenty-six thousand three hundred eight');\nINSERT INTO t2 VALUES(15949, 97680, 'ninety-seven thousand six hundred eighty');\nINSERT INTO t2 VALUES(15950, 97444, 'ninety-seven thousand four hundred forty-four');\nINSERT INTO t2 VALUES(15951, 3829, 'three thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(15952, 69996, 'sixty-nine thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(15953, 93038, 'ninety-three thousand thirty-eight');\nINSERT INTO t2 VALUES(15954, 97206, 'ninety-seven thousand two hundred six');\nINSERT INTO t2 VALUES(15955, 52615, 'fifty-two thousand six hundred fifteen');\nINSERT INTO t2 VALUES(15956, 34883, 'thirty-four thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(15957, 26101, 'twenty-six thousand one hundred one');\nINSERT INTO t2 VALUES(15958, 73641, 'seventy-three thousand six hundred forty-one');\nINSERT INTO t2 VALUES(15959, 41882, 'forty-one thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(15960, 45415, 'forty-five thousand four hundred fifteen');\nINSERT INTO t2 VALUES(15961, 22395, 'twenty-two thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(15962, 8821, 'eight thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(15963, 55844, 'fifty-five thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(15964, 46763, 'forty-six thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(15965, 78945, 'seventy-eight thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(15966, 55236, 'fifty-five thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(15967, 61422, 'sixty-one thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(15968, 76060, 'seventy-six thousand sixty');\nINSERT INTO t2 VALUES(15969, 30024, 'thirty thousand twenty-four');\nINSERT INTO t2 VALUES(15970, 54977, 'fifty-four thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(15971, 39697, 'thirty-nine thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(15972, 4943, 'four thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(15973, 75830, 'seventy-five thousand eight hundred thirty');\nINSERT INTO t2 VALUES(15974, 75024, 'seventy-five thousand twenty-four');\nINSERT INTO t2 VALUES(15975, 57935, 'fifty-seven thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(15976, 54814, 'fifty-four thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(15977, 99572, 'ninety-nine thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(15978, 40185, 'forty thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(15979, 9988, 'nine thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(15980, 51925, 'fifty-one thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(15981, 37191, 'thirty-seven thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(15982, 91240, 'ninety-one thousand two hundred forty');\nINSERT INTO t2 VALUES(15983, 83574, 'eighty-three thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(15984, 46447, 'forty-six thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(15985, 84079, 'eighty-four thousand seventy-nine');\nINSERT INTO t2 VALUES(15986, 68993, 'sixty-eight thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(15987, 50877, 'fifty thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(15988, 46667, 'forty-six thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(15989, 58255, 'fifty-eight thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(15990, 5215, 'five thousand two hundred fifteen');\nINSERT INTO t2 VALUES(15991, 2736, 'two thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(15992, 45885, 'forty-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(15993, 52343, 'fifty-two thousand three hundred forty-three');\nINSERT INTO t2 VALUES(15994, 1900, 'one thousand nine hundred');\nINSERT INTO t2 VALUES(15995, 52932, 'fifty-two thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(15996, 48382, 'forty-eight thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(15997, 55256, 'fifty-five thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(15998, 73536, 'seventy-three thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(15999, 62821, 'sixty-two thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(16000, 71480, 'seventy-one thousand four hundred eighty');\nINSERT INTO t2 VALUES(16001, 92908, 'ninety-two thousand nine hundred eight');\nINSERT INTO t2 VALUES(16002, 40281, 'forty thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(16003, 60055, 'sixty thousand fifty-five');\nINSERT INTO t2 VALUES(16004, 59310, 'fifty-nine thousand three hundred ten');\nINSERT INTO t2 VALUES(16005, 98080, 'ninety-eight thousand eighty');\nINSERT INTO t2 VALUES(16006, 63368, 'sixty-three thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(16007, 89021, 'eighty-nine thousand twenty-one');\nINSERT INTO t2 VALUES(16008, 59499, 'fifty-nine thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(16009, 22050, 'twenty-two thousand fifty');\nINSERT INTO t2 VALUES(16010, 60758, 'sixty thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(16011, 98253, 'ninety-eight thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(16012, 175, 'one hundred seventy-five');\nINSERT INTO t2 VALUES(16013, 2030, 'two thousand thirty');\nINSERT INTO t2 VALUES(16014, 80948, 'eighty thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(16015, 36059, 'thirty-six thousand fifty-nine');\nINSERT INTO t2 VALUES(16016, 52071, 'fifty-two thousand seventy-one');\nINSERT INTO t2 VALUES(16017, 83705, 'eighty-three thousand seven hundred five');\nINSERT INTO t2 VALUES(16018, 60985, 'sixty thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(16019, 61632, 'sixty-one thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(16020, 34740, 'thirty-four thousand seven hundred forty');\nINSERT INTO t2 VALUES(16021, 19212, 'nineteen thousand two hundred twelve');\nINSERT INTO t2 VALUES(16022, 12860, 'twelve thousand eight hundred sixty');\nINSERT INTO t2 VALUES(16023, 99628, 'ninety-nine thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(16024, 62177, 'sixty-two thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(16025, 85818, 'eighty-five thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(16026, 17621, 'seventeen thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(16027, 452, 'four hundred fifty-two');\nINSERT INTO t2 VALUES(16028, 61336, 'sixty-one thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(16029, 17500, 'seventeen thousand five hundred');\nINSERT INTO t2 VALUES(16030, 22747, 'twenty-two thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(16031, 18211, 'eighteen thousand two hundred eleven');\nINSERT INTO t2 VALUES(16032, 93359, 'ninety-three thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(16033, 49357, 'forty-nine thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(16034, 64020, 'sixty-four thousand twenty');\nINSERT INTO t2 VALUES(16035, 12282, 'twelve thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(16036, 44106, 'forty-four thousand one hundred six');\nINSERT INTO t2 VALUES(16037, 85472, 'eighty-five thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(16038, 43586, 'forty-three thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(16039, 50717, 'fifty thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(16040, 21904, 'twenty-one thousand nine hundred four');\nINSERT INTO t2 VALUES(16041, 19973, 'nineteen thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(16042, 32010, 'thirty-two thousand ten');\nINSERT INTO t2 VALUES(16043, 7681, 'seven thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(16044, 43907, 'forty-three thousand nine hundred seven');\nINSERT INTO t2 VALUES(16045, 92559, 'ninety-two thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(16046, 74737, 'seventy-four thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(16047, 41361, 'forty-one thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(16048, 63652, 'sixty-three thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(16049, 95499, 'ninety-five thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(16050, 11250, 'eleven thousand two hundred fifty');\nINSERT INTO t2 VALUES(16051, 29555, 'twenty-nine thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(16052, 50887, 'fifty thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(16053, 75120, 'seventy-five thousand one hundred twenty');\nINSERT INTO t2 VALUES(16054, 70541, 'seventy thousand five hundred forty-one');\nINSERT INTO t2 VALUES(16055, 16164, 'sixteen thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(16056, 77795, 'seventy-seven thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(16057, 94479, 'ninety-four thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(16058, 71824, 'seventy-one thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(16059, 82936, 'eighty-two thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(16060, 540, 'five hundred forty');\nINSERT INTO t2 VALUES(16061, 87563, 'eighty-seven thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(16062, 56827, 'fifty-six thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(16063, 17633, 'seventeen thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(16064, 39580, 'thirty-nine thousand five hundred eighty');\nINSERT INTO t2 VALUES(16065, 44379, 'forty-four thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(16066, 42202, 'forty-two thousand two hundred two');\nINSERT INTO t2 VALUES(16067, 489, 'four hundred eighty-nine');\nINSERT INTO t2 VALUES(16068, 21410, 'twenty-one thousand four hundred ten');\nINSERT INTO t2 VALUES(16069, 24792, 'twenty-four thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(16070, 64478, 'sixty-four thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(16071, 16835, 'sixteen thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(16072, 98735, 'ninety-eight thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(16073, 4138, 'four thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(16074, 16230, 'sixteen thousand two hundred thirty');\nINSERT INTO t2 VALUES(16075, 46317, 'forty-six thousand three hundred seventeen');\nINSERT INTO t2 VALUES(16076, 20244, 'twenty thousand two hundred forty-four');\nINSERT INTO t2 VALUES(16077, 76262, 'seventy-six thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(16078, 61887, 'sixty-one thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(16079, 38336, 'thirty-eight thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(16080, 60960, 'sixty thousand nine hundred sixty');\nINSERT INTO t2 VALUES(16081, 57789, 'fifty-seven thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(16082, 99854, 'ninety-nine thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(16083, 52051, 'fifty-two thousand fifty-one');\nINSERT INTO t2 VALUES(16084, 53572, 'fifty-three thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(16085, 7476, 'seven thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(16086, 78317, 'seventy-eight thousand three hundred seventeen');\nINSERT INTO t2 VALUES(16087, 91767, 'ninety-one thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(16088, 67706, 'sixty-seven thousand seven hundred six');\nINSERT INTO t2 VALUES(16089, 92031, 'ninety-two thousand thirty-one');\nINSERT INTO t2 VALUES(16090, 69508, 'sixty-nine thousand five hundred eight');\nINSERT INTO t2 VALUES(16091, 26314, 'twenty-six thousand three hundred fourteen');\nINSERT INTO t2 VALUES(16092, 58858, 'fifty-eight thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(16093, 13599, 'thirteen thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(16094, 18515, 'eighteen thousand five hundred fifteen');\nINSERT INTO t2 VALUES(16095, 73374, 'seventy-three thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(16096, 49281, 'forty-nine thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(16097, 77458, 'seventy-seven thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(16098, 61112, 'sixty-one thousand one hundred twelve');\nINSERT INTO t2 VALUES(16099, 71786, 'seventy-one thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(16100, 29715, 'twenty-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(16101, 43700, 'forty-three thousand seven hundred');\nINSERT INTO t2 VALUES(16102, 37603, 'thirty-seven thousand six hundred three');\nINSERT INTO t2 VALUES(16103, 59207, 'fifty-nine thousand two hundred seven');\nINSERT INTO t2 VALUES(16104, 16234, 'sixteen thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(16105, 69260, 'sixty-nine thousand two hundred sixty');\nINSERT INTO t2 VALUES(16106, 85665, 'eighty-five thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(16107, 22662, 'twenty-two thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(16108, 56317, 'fifty-six thousand three hundred seventeen');\nINSERT INTO t2 VALUES(16109, 94136, 'ninety-four thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(16110, 89060, 'eighty-nine thousand sixty');\nINSERT INTO t2 VALUES(16111, 99324, 'ninety-nine thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(16112, 40323, 'forty thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(16113, 25227, 'twenty-five thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(16114, 79601, 'seventy-nine thousand six hundred one');\nINSERT INTO t2 VALUES(16115, 17795, 'seventeen thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(16116, 27280, 'twenty-seven thousand two hundred eighty');\nINSERT INTO t2 VALUES(16117, 6623, 'six thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(16118, 44016, 'forty-four thousand sixteen');\nINSERT INTO t2 VALUES(16119, 47457, 'forty-seven thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(16120, 49815, 'forty-nine thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(16121, 6374, 'six thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(16122, 32173, 'thirty-two thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(16123, 31527, 'thirty-one thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(16124, 22886, 'twenty-two thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(16125, 6343, 'six thousand three hundred forty-three');\nINSERT INTO t2 VALUES(16126, 82249, 'eighty-two thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(16127, 38617, 'thirty-eight thousand six hundred seventeen');\nINSERT INTO t2 VALUES(16128, 93634, 'ninety-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(16129, 67769, 'sixty-seven thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(16130, 23369, 'twenty-three thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(16131, 87506, 'eighty-seven thousand five hundred six');\nINSERT INTO t2 VALUES(16132, 39817, 'thirty-nine thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(16133, 5730, 'five thousand seven hundred thirty');\nINSERT INTO t2 VALUES(16134, 94254, 'ninety-four thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(16135, 99119, 'ninety-nine thousand one hundred nineteen');\nINSERT INTO t2 VALUES(16136, 2980, 'two thousand nine hundred eighty');\nINSERT INTO t2 VALUES(16137, 98050, 'ninety-eight thousand fifty');\nINSERT INTO t2 VALUES(16138, 40896, 'forty thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(16139, 4640, 'four thousand six hundred forty');\nINSERT INTO t2 VALUES(16140, 92837, 'ninety-two thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(16141, 14735, 'fourteen thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(16142, 55717, 'fifty-five thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(16143, 23711, 'twenty-three thousand seven hundred eleven');\nINSERT INTO t2 VALUES(16144, 78552, 'seventy-eight thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(16145, 32368, 'thirty-two thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(16146, 97189, 'ninety-seven thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(16147, 3220, 'three thousand two hundred twenty');\nINSERT INTO t2 VALUES(16148, 20461, 'twenty thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(16149, 14066, 'fourteen thousand sixty-six');\nINSERT INTO t2 VALUES(16150, 1397, 'one thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(16151, 54977, 'fifty-four thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(16152, 52195, 'fifty-two thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(16153, 82346, 'eighty-two thousand three hundred forty-six');\nINSERT INTO t2 VALUES(16154, 8844, 'eight thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(16155, 55534, 'fifty-five thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(16156, 12301, 'twelve thousand three hundred one');\nINSERT INTO t2 VALUES(16157, 86108, 'eighty-six thousand one hundred eight');\nINSERT INTO t2 VALUES(16158, 3085, 'three thousand eighty-five');\nINSERT INTO t2 VALUES(16159, 12289, 'twelve thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(16160, 89357, 'eighty-nine thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(16161, 13666, 'thirteen thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(16162, 83477, 'eighty-three thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(16163, 95107, 'ninety-five thousand one hundred seven');\nINSERT INTO t2 VALUES(16164, 8315, 'eight thousand three hundred fifteen');\nINSERT INTO t2 VALUES(16165, 44988, 'forty-four thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(16166, 94529, 'ninety-four thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(16167, 3042, 'three thousand forty-two');\nINSERT INTO t2 VALUES(16168, 61932, 'sixty-one thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(16169, 59615, 'fifty-nine thousand six hundred fifteen');\nINSERT INTO t2 VALUES(16170, 46488, 'forty-six thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(16171, 41124, 'forty-one thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(16172, 71428, 'seventy-one thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(16173, 40727, 'forty thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(16174, 89654, 'eighty-nine thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(16175, 27757, 'twenty-seven thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(16176, 85031, 'eighty-five thousand thirty-one');\nINSERT INTO t2 VALUES(16177, 74155, 'seventy-four thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(16178, 26689, 'twenty-six thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(16179, 44332, 'forty-four thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(16180, 92054, 'ninety-two thousand fifty-four');\nINSERT INTO t2 VALUES(16181, 65503, 'sixty-five thousand five hundred three');\nINSERT INTO t2 VALUES(16182, 39652, 'thirty-nine thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(16183, 69557, 'sixty-nine thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(16184, 19050, 'nineteen thousand fifty');\nINSERT INTO t2 VALUES(16185, 18021, 'eighteen thousand twenty-one');\nINSERT INTO t2 VALUES(16186, 14458, 'fourteen thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(16187, 76327, 'seventy-six thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(16188, 79846, 'seventy-nine thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(16189, 19131, 'nineteen thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(16190, 5839, 'five thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(16191, 44043, 'forty-four thousand forty-three');\nINSERT INTO t2 VALUES(16192, 63405, 'sixty-three thousand four hundred five');\nINSERT INTO t2 VALUES(16193, 30066, 'thirty thousand sixty-six');\nINSERT INTO t2 VALUES(16194, 47142, 'forty-seven thousand one hundred forty-two');\nINSERT INTO t2 VALUES(16195, 87465, 'eighty-seven thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(16196, 57878, 'fifty-seven thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(16197, 23196, 'twenty-three thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(16198, 50816, 'fifty thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(16199, 38194, 'thirty-eight thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(16200, 84336, 'eighty-four thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(16201, 97601, 'ninety-seven thousand six hundred one');\nINSERT INTO t2 VALUES(16202, 58317, 'fifty-eight thousand three hundred seventeen');\nINSERT INTO t2 VALUES(16203, 97255, 'ninety-seven thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(16204, 8056, 'eight thousand fifty-six');\nINSERT INTO t2 VALUES(16205, 95081, 'ninety-five thousand eighty-one');\nINSERT INTO t2 VALUES(16206, 12946, 'twelve thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(16207, 74745, 'seventy-four thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(16208, 51215, 'fifty-one thousand two hundred fifteen');\nINSERT INTO t2 VALUES(16209, 18338, 'eighteen thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(16210, 93590, 'ninety-three thousand five hundred ninety');\nINSERT INTO t2 VALUES(16211, 44736, 'forty-four thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(16212, 18104, 'eighteen thousand one hundred four');\nINSERT INTO t2 VALUES(16213, 66016, 'sixty-six thousand sixteen');\nINSERT INTO t2 VALUES(16214, 60424, 'sixty thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(16215, 69008, 'sixty-nine thousand eight');\nINSERT INTO t2 VALUES(16216, 2809, 'two thousand eight hundred nine');\nINSERT INTO t2 VALUES(16217, 66904, 'sixty-six thousand nine hundred four');\nINSERT INTO t2 VALUES(16218, 62527, 'sixty-two thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(16219, 91785, 'ninety-one thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(16220, 50726, 'fifty thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(16221, 67174, 'sixty-seven thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(16222, 54032, 'fifty-four thousand thirty-two');\nINSERT INTO t2 VALUES(16223, 17883, 'seventeen thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(16224, 41373, 'forty-one thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(16225, 972, 'nine hundred seventy-two');\nINSERT INTO t2 VALUES(16226, 88410, 'eighty-eight thousand four hundred ten');\nINSERT INTO t2 VALUES(16227, 26306, 'twenty-six thousand three hundred six');\nINSERT INTO t2 VALUES(16228, 43858, 'forty-three thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(16229, 27039, 'twenty-seven thousand thirty-nine');\nINSERT INTO t2 VALUES(16230, 6953, 'six thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(16231, 85665, 'eighty-five thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(16232, 52992, 'fifty-two thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(16233, 59727, 'fifty-nine thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(16234, 45860, 'forty-five thousand eight hundred sixty');\nINSERT INTO t2 VALUES(16235, 91271, 'ninety-one thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(16236, 60752, 'sixty thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(16237, 87274, 'eighty-seven thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(16238, 87060, 'eighty-seven thousand sixty');\nINSERT INTO t2 VALUES(16239, 77805, 'seventy-seven thousand eight hundred five');\nINSERT INTO t2 VALUES(16240, 2814, 'two thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(16241, 59542, 'fifty-nine thousand five hundred forty-two');\nINSERT INTO t2 VALUES(16242, 43225, 'forty-three thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(16243, 87456, 'eighty-seven thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(16244, 43361, 'forty-three thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(16245, 62392, 'sixty-two thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(16246, 31119, 'thirty-one thousand one hundred nineteen');\nINSERT INTO t2 VALUES(16247, 72847, 'seventy-two thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(16248, 49466, 'forty-nine thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(16249, 14930, 'fourteen thousand nine hundred thirty');\nINSERT INTO t2 VALUES(16250, 55942, 'fifty-five thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(16251, 14274, 'fourteen thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(16252, 57987, 'fifty-seven thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(16253, 98842, 'ninety-eight thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(16254, 71280, 'seventy-one thousand two hundred eighty');\nINSERT INTO t2 VALUES(16255, 91828, 'ninety-one thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(16256, 89036, 'eighty-nine thousand thirty-six');\nINSERT INTO t2 VALUES(16257, 32711, 'thirty-two thousand seven hundred eleven');\nINSERT INTO t2 VALUES(16258, 10873, 'ten thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(16259, 29863, 'twenty-nine thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(16260, 78799, 'seventy-eight thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(16261, 10873, 'ten thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(16262, 90157, 'ninety thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(16263, 5204, 'five thousand two hundred four');\nINSERT INTO t2 VALUES(16264, 49483, 'forty-nine thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(16265, 45161, 'forty-five thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(16266, 65961, 'sixty-five thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(16267, 43300, 'forty-three thousand three hundred');\nINSERT INTO t2 VALUES(16268, 95356, 'ninety-five thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(16269, 72773, 'seventy-two thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(16270, 54822, 'fifty-four thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(16271, 2113, 'two thousand one hundred thirteen');\nINSERT INTO t2 VALUES(16272, 5442, 'five thousand four hundred forty-two');\nINSERT INTO t2 VALUES(16273, 66294, 'sixty-six thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(16274, 42545, 'forty-two thousand five hundred forty-five');\nINSERT INTO t2 VALUES(16275, 59123, 'fifty-nine thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(16276, 69177, 'sixty-nine thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(16277, 69706, 'sixty-nine thousand seven hundred six');\nINSERT INTO t2 VALUES(16278, 27256, 'twenty-seven thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(16279, 26192, 'twenty-six thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(16280, 48549, 'forty-eight thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(16281, 23144, 'twenty-three thousand one hundred forty-four');\nINSERT INTO t2 VALUES(16282, 651, 'six hundred fifty-one');\nINSERT INTO t2 VALUES(16283, 37920, 'thirty-seven thousand nine hundred twenty');\nINSERT INTO t2 VALUES(16284, 42319, 'forty-two thousand three hundred nineteen');\nINSERT INTO t2 VALUES(16285, 34174, 'thirty-four thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(16286, 10483, 'ten thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(16287, 21220, 'twenty-one thousand two hundred twenty');\nINSERT INTO t2 VALUES(16288, 84490, 'eighty-four thousand four hundred ninety');\nINSERT INTO t2 VALUES(16289, 62444, 'sixty-two thousand four hundred forty-four');\nINSERT INTO t2 VALUES(16290, 28703, 'twenty-eight thousand seven hundred three');\nINSERT INTO t2 VALUES(16291, 75606, 'seventy-five thousand six hundred six');\nINSERT INTO t2 VALUES(16292, 90353, 'ninety thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(16293, 33493, 'thirty-three thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(16294, 39382, 'thirty-nine thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(16295, 18619, 'eighteen thousand six hundred nineteen');\nINSERT INTO t2 VALUES(16296, 59367, 'fifty-nine thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(16297, 65457, 'sixty-five thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(16298, 67637, 'sixty-seven thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(16299, 96162, 'ninety-six thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(16300, 4175, 'four thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(16301, 33759, 'thirty-three thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(16302, 62597, 'sixty-two thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(16303, 6885, 'six thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(16304, 67623, 'sixty-seven thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(16305, 50288, 'fifty thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(16306, 73792, 'seventy-three thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(16307, 29088, 'twenty-nine thousand eighty-eight');\nINSERT INTO t2 VALUES(16308, 61366, 'sixty-one thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(16309, 57577, 'fifty-seven thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(16310, 35627, 'thirty-five thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(16311, 33607, 'thirty-three thousand six hundred seven');\nINSERT INTO t2 VALUES(16312, 38930, 'thirty-eight thousand nine hundred thirty');\nINSERT INTO t2 VALUES(16313, 82055, 'eighty-two thousand fifty-five');\nINSERT INTO t2 VALUES(16314, 83614, 'eighty-three thousand six hundred fourteen');\nINSERT INTO t2 VALUES(16315, 30726, 'thirty thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(16316, 83908, 'eighty-three thousand nine hundred eight');\nINSERT INTO t2 VALUES(16317, 55766, 'fifty-five thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(16318, 83773, 'eighty-three thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(16319, 23891, 'twenty-three thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(16320, 39398, 'thirty-nine thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(16321, 67260, 'sixty-seven thousand two hundred sixty');\nINSERT INTO t2 VALUES(16322, 80283, 'eighty thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(16323, 55617, 'fifty-five thousand six hundred seventeen');\nINSERT INTO t2 VALUES(16324, 65215, 'sixty-five thousand two hundred fifteen');\nINSERT INTO t2 VALUES(16325, 437, 'four hundred thirty-seven');\nINSERT INTO t2 VALUES(16326, 56810, 'fifty-six thousand eight hundred ten');\nINSERT INTO t2 VALUES(16327, 438, 'four hundred thirty-eight');\nINSERT INTO t2 VALUES(16328, 88671, 'eighty-eight thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(16329, 29397, 'twenty-nine thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(16330, 91946, 'ninety-one thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(16331, 1841, 'one thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(16332, 44648, 'forty-four thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(16333, 58631, 'fifty-eight thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(16334, 9334, 'nine thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(16335, 93055, 'ninety-three thousand fifty-five');\nINSERT INTO t2 VALUES(16336, 70389, 'seventy thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(16337, 86675, 'eighty-six thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(16338, 42012, 'forty-two thousand twelve');\nINSERT INTO t2 VALUES(16339, 38035, 'thirty-eight thousand thirty-five');\nINSERT INTO t2 VALUES(16340, 42707, 'forty-two thousand seven hundred seven');\nINSERT INTO t2 VALUES(16341, 96258, 'ninety-six thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(16342, 85244, 'eighty-five thousand two hundred forty-four');\nINSERT INTO t2 VALUES(16343, 67037, 'sixty-seven thousand thirty-seven');\nINSERT INTO t2 VALUES(16344, 15659, 'fifteen thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(16345, 30025, 'thirty thousand twenty-five');\nINSERT INTO t2 VALUES(16346, 26793, 'twenty-six thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(16347, 15654, 'fifteen thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(16348, 15482, 'fifteen thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(16349, 35324, 'thirty-five thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(16350, 90616, 'ninety thousand six hundred sixteen');\nINSERT INTO t2 VALUES(16351, 7671, 'seven thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(16352, 89670, 'eighty-nine thousand six hundred seventy');\nINSERT INTO t2 VALUES(16353, 60029, 'sixty thousand twenty-nine');\nINSERT INTO t2 VALUES(16354, 83944, 'eighty-three thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(16355, 79726, 'seventy-nine thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(16356, 75123, 'seventy-five thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(16357, 94220, 'ninety-four thousand two hundred twenty');\nINSERT INTO t2 VALUES(16358, 1618, 'one thousand six hundred eighteen');\nINSERT INTO t2 VALUES(16359, 1007, 'one thousand seven');\nINSERT INTO t2 VALUES(16360, 8037, 'eight thousand thirty-seven');\nINSERT INTO t2 VALUES(16361, 15157, 'fifteen thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(16362, 76616, 'seventy-six thousand six hundred sixteen');\nINSERT INTO t2 VALUES(16363, 52655, 'fifty-two thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(16364, 53270, 'fifty-three thousand two hundred seventy');\nINSERT INTO t2 VALUES(16365, 67386, 'sixty-seven thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(16366, 13735, 'thirteen thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(16367, 4217, 'four thousand two hundred seventeen');\nINSERT INTO t2 VALUES(16368, 36915, 'thirty-six thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(16369, 93171, 'ninety-three thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(16370, 42370, 'forty-two thousand three hundred seventy');\nINSERT INTO t2 VALUES(16371, 45498, 'forty-five thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(16372, 65950, 'sixty-five thousand nine hundred fifty');\nINSERT INTO t2 VALUES(16373, 70214, 'seventy thousand two hundred fourteen');\nINSERT INTO t2 VALUES(16374, 55707, 'fifty-five thousand seven hundred seven');\nINSERT INTO t2 VALUES(16375, 77836, 'seventy-seven thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(16376, 30633, 'thirty thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(16377, 47063, 'forty-seven thousand sixty-three');\nINSERT INTO t2 VALUES(16378, 37314, 'thirty-seven thousand three hundred fourteen');\nINSERT INTO t2 VALUES(16379, 75521, 'seventy-five thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(16380, 54752, 'fifty-four thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(16381, 52610, 'fifty-two thousand six hundred ten');\nINSERT INTO t2 VALUES(16382, 55893, 'fifty-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(16383, 34842, 'thirty-four thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(16384, 77317, 'seventy-seven thousand three hundred seventeen');\nINSERT INTO t2 VALUES(16385, 37717, 'thirty-seven thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(16386, 8909, 'eight thousand nine hundred nine');\nINSERT INTO t2 VALUES(16387, 53752, 'fifty-three thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(16388, 4216, 'four thousand two hundred sixteen');\nINSERT INTO t2 VALUES(16389, 69445, 'sixty-nine thousand four hundred forty-five');\nINSERT INTO t2 VALUES(16390, 24744, 'twenty-four thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(16391, 689, 'six hundred eighty-nine');\nINSERT INTO t2 VALUES(16392, 73776, 'seventy-three thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(16393, 35784, 'thirty-five thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(16394, 26517, 'twenty-six thousand five hundred seventeen');\nINSERT INTO t2 VALUES(16395, 36715, 'thirty-six thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(16396, 62011, 'sixty-two thousand eleven');\nINSERT INTO t2 VALUES(16397, 82038, 'eighty-two thousand thirty-eight');\nINSERT INTO t2 VALUES(16398, 65734, 'sixty-five thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(16399, 99683, 'ninety-nine thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(16400, 92561, 'ninety-two thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(16401, 81422, 'eighty-one thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(16402, 89360, 'eighty-nine thousand three hundred sixty');\nINSERT INTO t2 VALUES(16403, 71584, 'seventy-one thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(16404, 67622, 'sixty-seven thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(16405, 16749, 'sixteen thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(16406, 68108, 'sixty-eight thousand one hundred eight');\nINSERT INTO t2 VALUES(16407, 40276, 'forty thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(16408, 88928, 'eighty-eight thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(16409, 53328, 'fifty-three thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(16410, 13428, 'thirteen thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(16411, 51950, 'fifty-one thousand nine hundred fifty');\nINSERT INTO t2 VALUES(16412, 56220, 'fifty-six thousand two hundred twenty');\nINSERT INTO t2 VALUES(16413, 84591, 'eighty-four thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(16414, 48035, 'forty-eight thousand thirty-five');\nINSERT INTO t2 VALUES(16415, 98654, 'ninety-eight thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(16416, 3088, 'three thousand eighty-eight');\nINSERT INTO t2 VALUES(16417, 73261, 'seventy-three thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(16418, 61489, 'sixty-one thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(16419, 52502, 'fifty-two thousand five hundred two');\nINSERT INTO t2 VALUES(16420, 58633, 'fifty-eight thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(16421, 88204, 'eighty-eight thousand two hundred four');\nINSERT INTO t2 VALUES(16422, 41549, 'forty-one thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(16423, 55414, 'fifty-five thousand four hundred fourteen');\nINSERT INTO t2 VALUES(16424, 40902, 'forty thousand nine hundred two');\nINSERT INTO t2 VALUES(16425, 89970, 'eighty-nine thousand nine hundred seventy');\nINSERT INTO t2 VALUES(16426, 73233, 'seventy-three thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(16427, 80971, 'eighty thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(16428, 88587, 'eighty-eight thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(16429, 34164, 'thirty-four thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(16430, 23612, 'twenty-three thousand six hundred twelve');\nINSERT INTO t2 VALUES(16431, 71749, 'seventy-one thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(16432, 98149, 'ninety-eight thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(16433, 48951, 'forty-eight thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(16434, 90645, 'ninety thousand six hundred forty-five');\nINSERT INTO t2 VALUES(16435, 50664, 'fifty thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(16436, 23111, 'twenty-three thousand one hundred eleven');\nINSERT INTO t2 VALUES(16437, 18775, 'eighteen thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(16438, 34702, 'thirty-four thousand seven hundred two');\nINSERT INTO t2 VALUES(16439, 87310, 'eighty-seven thousand three hundred ten');\nINSERT INTO t2 VALUES(16440, 77109, 'seventy-seven thousand one hundred nine');\nINSERT INTO t2 VALUES(16441, 96710, 'ninety-six thousand seven hundred ten');\nINSERT INTO t2 VALUES(16442, 65213, 'sixty-five thousand two hundred thirteen');\nINSERT INTO t2 VALUES(16443, 77656, 'seventy-seven thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(16444, 33076, 'thirty-three thousand seventy-six');\nINSERT INTO t2 VALUES(16445, 54161, 'fifty-four thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(16446, 2367, 'two thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(16447, 21023, 'twenty-one thousand twenty-three');\nINSERT INTO t2 VALUES(16448, 16137, 'sixteen thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(16449, 68626, 'sixty-eight thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(16450, 41773, 'forty-one thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(16451, 72723, 'seventy-two thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(16452, 39225, 'thirty-nine thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(16453, 89941, 'eighty-nine thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(16454, 38076, 'thirty-eight thousand seventy-six');\nINSERT INTO t2 VALUES(16455, 94996, 'ninety-four thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(16456, 30319, 'thirty thousand three hundred nineteen');\nINSERT INTO t2 VALUES(16457, 33596, 'thirty-three thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(16458, 45240, 'forty-five thousand two hundred forty');\nINSERT INTO t2 VALUES(16459, 87914, 'eighty-seven thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(16460, 31557, 'thirty-one thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(16461, 20954, 'twenty thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(16462, 48338, 'forty-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(16463, 80992, 'eighty thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(16464, 70979, 'seventy thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(16465, 42578, 'forty-two thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(16466, 50789, 'fifty thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(16467, 59835, 'fifty-nine thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(16468, 64635, 'sixty-four thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(16469, 81816, 'eighty-one thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(16470, 70787, 'seventy thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(16471, 97583, 'ninety-seven thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(16472, 93716, 'ninety-three thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(16473, 91414, 'ninety-one thousand four hundred fourteen');\nINSERT INTO t2 VALUES(16474, 40471, 'forty thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(16475, 91223, 'ninety-one thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(16476, 90427, 'ninety thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(16477, 3320, 'three thousand three hundred twenty');\nINSERT INTO t2 VALUES(16478, 56499, 'fifty-six thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(16479, 85799, 'eighty-five thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(16480, 51833, 'fifty-one thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(16481, 71941, 'seventy-one thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(16482, 66293, 'sixty-six thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(16483, 40203, 'forty thousand two hundred three');\nINSERT INTO t2 VALUES(16484, 46343, 'forty-six thousand three hundred forty-three');\nINSERT INTO t2 VALUES(16485, 9820, 'nine thousand eight hundred twenty');\nINSERT INTO t2 VALUES(16486, 19316, 'nineteen thousand three hundred sixteen');\nINSERT INTO t2 VALUES(16487, 18298, 'eighteen thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(16488, 36507, 'thirty-six thousand five hundred seven');\nINSERT INTO t2 VALUES(16489, 26218, 'twenty-six thousand two hundred eighteen');\nINSERT INTO t2 VALUES(16490, 63782, 'sixty-three thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(16491, 18218, 'eighteen thousand two hundred eighteen');\nINSERT INTO t2 VALUES(16492, 95986, 'ninety-five thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(16493, 67780, 'sixty-seven thousand seven hundred eighty');\nINSERT INTO t2 VALUES(16494, 12942, 'twelve thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(16495, 32681, 'thirty-two thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(16496, 80359, 'eighty thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(16497, 24729, 'twenty-four thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(16498, 27548, 'twenty-seven thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(16499, 48161, 'forty-eight thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(16500, 50494, 'fifty thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(16501, 48162, 'forty-eight thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(16502, 33647, 'thirty-three thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(16503, 58346, 'fifty-eight thousand three hundred forty-six');\nINSERT INTO t2 VALUES(16504, 19370, 'nineteen thousand three hundred seventy');\nINSERT INTO t2 VALUES(16505, 75765, 'seventy-five thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(16506, 45323, 'forty-five thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(16507, 67482, 'sixty-seven thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(16508, 37911, 'thirty-seven thousand nine hundred eleven');\nINSERT INTO t2 VALUES(16509, 56614, 'fifty-six thousand six hundred fourteen');\nINSERT INTO t2 VALUES(16510, 65081, 'sixty-five thousand eighty-one');\nINSERT INTO t2 VALUES(16511, 67355, 'sixty-seven thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(16512, 72157, 'seventy-two thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(16513, 64123, 'sixty-four thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(16514, 7643, 'seven thousand six hundred forty-three');\nINSERT INTO t2 VALUES(16515, 42302, 'forty-two thousand three hundred two');\nINSERT INTO t2 VALUES(16516, 80053, 'eighty thousand fifty-three');\nINSERT INTO t2 VALUES(16517, 92982, 'ninety-two thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(16518, 432, 'four hundred thirty-two');\nINSERT INTO t2 VALUES(16519, 37292, 'thirty-seven thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(16520, 94118, 'ninety-four thousand one hundred eighteen');\nINSERT INTO t2 VALUES(16521, 70572, 'seventy thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(16522, 81383, 'eighty-one thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(16523, 21709, 'twenty-one thousand seven hundred nine');\nINSERT INTO t2 VALUES(16524, 55450, 'fifty-five thousand four hundred fifty');\nINSERT INTO t2 VALUES(16525, 5086, 'five thousand eighty-six');\nINSERT INTO t2 VALUES(16526, 66669, 'sixty-six thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(16527, 42869, 'forty-two thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(16528, 72745, 'seventy-two thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(16529, 14828, 'fourteen thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(16530, 4621, 'four thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(16531, 47935, 'forty-seven thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(16532, 31775, 'thirty-one thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(16533, 55028, 'fifty-five thousand twenty-eight');\nINSERT INTO t2 VALUES(16534, 47991, 'forty-seven thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(16535, 62429, 'sixty-two thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(16536, 97285, 'ninety-seven thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(16537, 32210, 'thirty-two thousand two hundred ten');\nINSERT INTO t2 VALUES(16538, 22698, 'twenty-two thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(16539, 81414, 'eighty-one thousand four hundred fourteen');\nINSERT INTO t2 VALUES(16540, 82896, 'eighty-two thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(16541, 20290, 'twenty thousand two hundred ninety');\nINSERT INTO t2 VALUES(16542, 39712, 'thirty-nine thousand seven hundred twelve');\nINSERT INTO t2 VALUES(16543, 65256, 'sixty-five thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(16544, 5118, 'five thousand one hundred eighteen');\nINSERT INTO t2 VALUES(16545, 39196, 'thirty-nine thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(16546, 40806, 'forty thousand eight hundred six');\nINSERT INTO t2 VALUES(16547, 62391, 'sixty-two thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(16548, 50223, 'fifty thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(16549, 43614, 'forty-three thousand six hundred fourteen');\nINSERT INTO t2 VALUES(16550, 3586, 'three thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(16551, 3193, 'three thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(16552, 84122, 'eighty-four thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(16553, 22070, 'twenty-two thousand seventy');\nINSERT INTO t2 VALUES(16554, 68449, 'sixty-eight thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(16555, 95168, 'ninety-five thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(16556, 77287, 'seventy-seven thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(16557, 83653, 'eighty-three thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(16558, 12220, 'twelve thousand two hundred twenty');\nINSERT INTO t2 VALUES(16559, 58862, 'fifty-eight thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(16560, 34558, 'thirty-four thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(16561, 96997, 'ninety-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(16562, 18883, 'eighteen thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(16563, 69662, 'sixty-nine thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(16564, 62622, 'sixty-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(16565, 70972, 'seventy thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(16566, 37525, 'thirty-seven thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(16567, 38447, 'thirty-eight thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(16568, 76784, 'seventy-six thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(16569, 53760, 'fifty-three thousand seven hundred sixty');\nINSERT INTO t2 VALUES(16570, 79674, 'seventy-nine thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(16571, 59939, 'fifty-nine thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(16572, 7210, 'seven thousand two hundred ten');\nINSERT INTO t2 VALUES(16573, 29992, 'twenty-nine thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(16574, 64170, 'sixty-four thousand one hundred seventy');\nINSERT INTO t2 VALUES(16575, 87277, 'eighty-seven thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(16576, 74012, 'seventy-four thousand twelve');\nINSERT INTO t2 VALUES(16577, 62299, 'sixty-two thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(16578, 968, 'nine hundred sixty-eight');\nINSERT INTO t2 VALUES(16579, 73274, 'seventy-three thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(16580, 75610, 'seventy-five thousand six hundred ten');\nINSERT INTO t2 VALUES(16581, 49036, 'forty-nine thousand thirty-six');\nINSERT INTO t2 VALUES(16582, 75544, 'seventy-five thousand five hundred forty-four');\nINSERT INTO t2 VALUES(16583, 8656, 'eight thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(16584, 98333, 'ninety-eight thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(16585, 90721, 'ninety thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(16586, 83856, 'eighty-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(16587, 6477, 'six thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(16588, 25813, 'twenty-five thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(16589, 94111, 'ninety-four thousand one hundred eleven');\nINSERT INTO t2 VALUES(16590, 53899, 'fifty-three thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(16591, 87576, 'eighty-seven thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(16592, 37205, 'thirty-seven thousand two hundred five');\nINSERT INTO t2 VALUES(16593, 66518, 'sixty-six thousand five hundred eighteen');\nINSERT INTO t2 VALUES(16594, 49213, 'forty-nine thousand two hundred thirteen');\nINSERT INTO t2 VALUES(16595, 3034, 'three thousand thirty-four');\nINSERT INTO t2 VALUES(16596, 97592, 'ninety-seven thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(16597, 49342, 'forty-nine thousand three hundred forty-two');\nINSERT INTO t2 VALUES(16598, 43565, 'forty-three thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(16599, 34861, 'thirty-four thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(16600, 54894, 'fifty-four thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(16601, 95894, 'ninety-five thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(16602, 33603, 'thirty-three thousand six hundred three');\nINSERT INTO t2 VALUES(16603, 17876, 'seventeen thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(16604, 37795, 'thirty-seven thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(16605, 1571, 'one thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(16606, 52715, 'fifty-two thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(16607, 44981, 'forty-four thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(16608, 13627, 'thirteen thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(16609, 23786, 'twenty-three thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(16610, 67684, 'sixty-seven thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(16611, 31972, 'thirty-one thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(16612, 45826, 'forty-five thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(16613, 33690, 'thirty-three thousand six hundred ninety');\nINSERT INTO t2 VALUES(16614, 24457, 'twenty-four thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(16615, 7291, 'seven thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(16616, 30936, 'thirty thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(16617, 92212, 'ninety-two thousand two hundred twelve');\nINSERT INTO t2 VALUES(16618, 12305, 'twelve thousand three hundred five');\nINSERT INTO t2 VALUES(16619, 26396, 'twenty-six thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(16620, 42394, 'forty-two thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(16621, 87865, 'eighty-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(16622, 65060, 'sixty-five thousand sixty');\nINSERT INTO t2 VALUES(16623, 82099, 'eighty-two thousand ninety-nine');\nINSERT INTO t2 VALUES(16624, 45080, 'forty-five thousand eighty');\nINSERT INTO t2 VALUES(16625, 29100, 'twenty-nine thousand one hundred');\nINSERT INTO t2 VALUES(16626, 32059, 'thirty-two thousand fifty-nine');\nINSERT INTO t2 VALUES(16627, 41599, 'forty-one thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(16628, 64331, 'sixty-four thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(16629, 48273, 'forty-eight thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(16630, 11325, 'eleven thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(16631, 15835, 'fifteen thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(16632, 59196, 'fifty-nine thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(16633, 80805, 'eighty thousand eight hundred five');\nINSERT INTO t2 VALUES(16634, 42990, 'forty-two thousand nine hundred ninety');\nINSERT INTO t2 VALUES(16635, 63146, 'sixty-three thousand one hundred forty-six');\nINSERT INTO t2 VALUES(16636, 5053, 'five thousand fifty-three');\nINSERT INTO t2 VALUES(16637, 27481, 'twenty-seven thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(16638, 15489, 'fifteen thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(16639, 53241, 'fifty-three thousand two hundred forty-one');\nINSERT INTO t2 VALUES(16640, 35502, 'thirty-five thousand five hundred two');\nINSERT INTO t2 VALUES(16641, 97716, 'ninety-seven thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(16642, 29715, 'twenty-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(16643, 50003, 'fifty thousand three');\nINSERT INTO t2 VALUES(16644, 70356, 'seventy thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(16645, 99225, 'ninety-nine thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(16646, 95867, 'ninety-five thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(16647, 25365, 'twenty-five thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(16648, 87161, 'eighty-seven thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(16649, 10321, 'ten thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(16650, 89143, 'eighty-nine thousand one hundred forty-three');\nINSERT INTO t2 VALUES(16651, 77604, 'seventy-seven thousand six hundred four');\nINSERT INTO t2 VALUES(16652, 76229, 'seventy-six thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(16653, 8943, 'eight thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(16654, 91992, 'ninety-one thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(16655, 60568, 'sixty thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(16656, 58897, 'fifty-eight thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(16657, 50100, 'fifty thousand one hundred');\nINSERT INTO t2 VALUES(16658, 25836, 'twenty-five thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(16659, 9845, 'nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(16660, 77823, 'seventy-seven thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(16661, 95567, 'ninety-five thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(16662, 5665, 'five thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(16663, 47644, 'forty-seven thousand six hundred forty-four');\nINSERT INTO t2 VALUES(16664, 78534, 'seventy-eight thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(16665, 98272, 'ninety-eight thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(16666, 71964, 'seventy-one thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(16667, 56251, 'fifty-six thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(16668, 11740, 'eleven thousand seven hundred forty');\nINSERT INTO t2 VALUES(16669, 36362, 'thirty-six thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(16670, 1351, 'one thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(16671, 99147, 'ninety-nine thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(16672, 5910, 'five thousand nine hundred ten');\nINSERT INTO t2 VALUES(16673, 20392, 'twenty thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(16674, 10597, 'ten thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(16675, 80237, 'eighty thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(16676, 22963, 'twenty-two thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(16677, 20732, 'twenty thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(16678, 29366, 'twenty-nine thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(16679, 32, 'thirty-two');\nINSERT INTO t2 VALUES(16680, 76150, 'seventy-six thousand one hundred fifty');\nINSERT INTO t2 VALUES(16681, 10297, 'ten thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(16682, 4496, 'four thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(16683, 91830, 'ninety-one thousand eight hundred thirty');\nINSERT INTO t2 VALUES(16684, 79050, 'seventy-nine thousand fifty');\nINSERT INTO t2 VALUES(16685, 32127, 'thirty-two thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(16686, 2648, 'two thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(16687, 16962, 'sixteen thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(16688, 94946, 'ninety-four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(16689, 78936, 'seventy-eight thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(16690, 56866, 'fifty-six thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(16691, 77976, 'seventy-seven thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(16692, 6955, 'six thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(16693, 59775, 'fifty-nine thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(16694, 26897, 'twenty-six thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(16695, 73649, 'seventy-three thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(16696, 96955, 'ninety-six thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(16697, 6287, 'six thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(16698, 50941, 'fifty thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(16699, 71342, 'seventy-one thousand three hundred forty-two');\nINSERT INTO t2 VALUES(16700, 20010, 'twenty thousand ten');\nINSERT INTO t2 VALUES(16701, 24081, 'twenty-four thousand eighty-one');\nINSERT INTO t2 VALUES(16702, 94590, 'ninety-four thousand five hundred ninety');\nINSERT INTO t2 VALUES(16703, 69908, 'sixty-nine thousand nine hundred eight');\nINSERT INTO t2 VALUES(16704, 46576, 'forty-six thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(16705, 89833, 'eighty-nine thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(16706, 13367, 'thirteen thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(16707, 49059, 'forty-nine thousand fifty-nine');\nINSERT INTO t2 VALUES(16708, 3060, 'three thousand sixty');\nINSERT INTO t2 VALUES(16709, 86590, 'eighty-six thousand five hundred ninety');\nINSERT INTO t2 VALUES(16710, 48071, 'forty-eight thousand seventy-one');\nINSERT INTO t2 VALUES(16711, 49325, 'forty-nine thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(16712, 57486, 'fifty-seven thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(16713, 31330, 'thirty-one thousand three hundred thirty');\nINSERT INTO t2 VALUES(16714, 23312, 'twenty-three thousand three hundred twelve');\nINSERT INTO t2 VALUES(16715, 47545, 'forty-seven thousand five hundred forty-five');\nINSERT INTO t2 VALUES(16716, 33706, 'thirty-three thousand seven hundred six');\nINSERT INTO t2 VALUES(16717, 85785, 'eighty-five thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(16718, 13463, 'thirteen thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(16719, 33548, 'thirty-three thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(16720, 48986, 'forty-eight thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(16721, 63924, 'sixty-three thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(16722, 40236, 'forty thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(16723, 11759, 'eleven thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(16724, 54573, 'fifty-four thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(16725, 63626, 'sixty-three thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(16726, 3023, 'three thousand twenty-three');\nINSERT INTO t2 VALUES(16727, 26456, 'twenty-six thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(16728, 73494, 'seventy-three thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(16729, 85219, 'eighty-five thousand two hundred nineteen');\nINSERT INTO t2 VALUES(16730, 20045, 'twenty thousand forty-five');\nINSERT INTO t2 VALUES(16731, 6444, 'six thousand four hundred forty-four');\nINSERT INTO t2 VALUES(16732, 53572, 'fifty-three thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(16733, 224, 'two hundred twenty-four');\nINSERT INTO t2 VALUES(16734, 80802, 'eighty thousand eight hundred two');\nINSERT INTO t2 VALUES(16735, 50393, 'fifty thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(16736, 72125, 'seventy-two thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(16737, 95693, 'ninety-five thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(16738, 90252, 'ninety thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(16739, 94316, 'ninety-four thousand three hundred sixteen');\nINSERT INTO t2 VALUES(16740, 96754, 'ninety-six thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(16741, 96154, 'ninety-six thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(16742, 82511, 'eighty-two thousand five hundred eleven');\nINSERT INTO t2 VALUES(16743, 35499, 'thirty-five thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(16744, 69425, 'sixty-nine thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(16745, 82509, 'eighty-two thousand five hundred nine');\nINSERT INTO t2 VALUES(16746, 66258, 'sixty-six thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(16747, 66468, 'sixty-six thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(16748, 758, 'seven hundred fifty-eight');\nINSERT INTO t2 VALUES(16749, 96114, 'ninety-six thousand one hundred fourteen');\nINSERT INTO t2 VALUES(16750, 55282, 'fifty-five thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(16751, 21404, 'twenty-one thousand four hundred four');\nINSERT INTO t2 VALUES(16752, 31650, 'thirty-one thousand six hundred fifty');\nINSERT INTO t2 VALUES(16753, 89569, 'eighty-nine thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(16754, 17534, 'seventeen thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(16755, 71289, 'seventy-one thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(16756, 79638, 'seventy-nine thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(16757, 26632, 'twenty-six thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(16758, 75796, 'seventy-five thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(16759, 66222, 'sixty-six thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(16760, 895, 'eight hundred ninety-five');\nINSERT INTO t2 VALUES(16761, 74284, 'seventy-four thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(16762, 5200, 'five thousand two hundred');\nINSERT INTO t2 VALUES(16763, 28231, 'twenty-eight thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(16764, 50740, 'fifty thousand seven hundred forty');\nINSERT INTO t2 VALUES(16765, 38771, 'thirty-eight thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(16766, 21789, 'twenty-one thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(16767, 29552, 'twenty-nine thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(16768, 34713, 'thirty-four thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(16769, 29363, 'twenty-nine thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(16770, 35504, 'thirty-five thousand five hundred four');\nINSERT INTO t2 VALUES(16771, 36599, 'thirty-six thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(16772, 97777, 'ninety-seven thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(16773, 38018, 'thirty-eight thousand eighteen');\nINSERT INTO t2 VALUES(16774, 26574, 'twenty-six thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(16775, 93001, 'ninety-three thousand one');\nINSERT INTO t2 VALUES(16776, 8248, 'eight thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(16777, 48301, 'forty-eight thousand three hundred one');\nINSERT INTO t2 VALUES(16778, 92101, 'ninety-two thousand one hundred one');\nINSERT INTO t2 VALUES(16779, 59231, 'fifty-nine thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(16780, 73737, 'seventy-three thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(16781, 20087, 'twenty thousand eighty-seven');\nINSERT INTO t2 VALUES(16782, 85653, 'eighty-five thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(16783, 98769, 'ninety-eight thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(16784, 99625, 'ninety-nine thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(16785, 79337, 'seventy-nine thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(16786, 88711, 'eighty-eight thousand seven hundred eleven');\nINSERT INTO t2 VALUES(16787, 9546, 'nine thousand five hundred forty-six');\nINSERT INTO t2 VALUES(16788, 91864, 'ninety-one thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(16789, 19490, 'nineteen thousand four hundred ninety');\nINSERT INTO t2 VALUES(16790, 17966, 'seventeen thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(16791, 98496, 'ninety-eight thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(16792, 59780, 'fifty-nine thousand seven hundred eighty');\nINSERT INTO t2 VALUES(16793, 86695, 'eighty-six thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(16794, 43773, 'forty-three thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(16795, 93708, 'ninety-three thousand seven hundred eight');\nINSERT INTO t2 VALUES(16796, 51788, 'fifty-one thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(16797, 22670, 'twenty-two thousand six hundred seventy');\nINSERT INTO t2 VALUES(16798, 3298, 'three thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(16799, 56189, 'fifty-six thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(16800, 80737, 'eighty thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(16801, 83858, 'eighty-three thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(16802, 63661, 'sixty-three thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(16803, 54273, 'fifty-four thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(16804, 69968, 'sixty-nine thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(16805, 93309, 'ninety-three thousand three hundred nine');\nINSERT INTO t2 VALUES(16806, 36574, 'thirty-six thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(16807, 69948, 'sixty-nine thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(16808, 53272, 'fifty-three thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(16809, 99938, 'ninety-nine thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(16810, 39910, 'thirty-nine thousand nine hundred ten');\nINSERT INTO t2 VALUES(16811, 78303, 'seventy-eight thousand three hundred three');\nINSERT INTO t2 VALUES(16812, 92131, 'ninety-two thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(16813, 30429, 'thirty thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(16814, 5163, 'five thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(16815, 83452, 'eighty-three thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(16816, 67769, 'sixty-seven thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(16817, 4818, 'four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(16818, 21035, 'twenty-one thousand thirty-five');\nINSERT INTO t2 VALUES(16819, 7568, 'seven thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(16820, 50553, 'fifty thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(16821, 46052, 'forty-six thousand fifty-two');\nINSERT INTO t2 VALUES(16822, 92711, 'ninety-two thousand seven hundred eleven');\nINSERT INTO t2 VALUES(16823, 56309, 'fifty-six thousand three hundred nine');\nINSERT INTO t2 VALUES(16824, 83852, 'eighty-three thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(16825, 77424, 'seventy-seven thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(16826, 71271, 'seventy-one thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(16827, 46684, 'forty-six thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(16828, 80565, 'eighty thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(16829, 53575, 'fifty-three thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(16830, 25129, 'twenty-five thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(16831, 1358, 'one thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(16832, 81577, 'eighty-one thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(16833, 78030, 'seventy-eight thousand thirty');\nINSERT INTO t2 VALUES(16834, 60487, 'sixty thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(16835, 38143, 'thirty-eight thousand one hundred forty-three');\nINSERT INTO t2 VALUES(16836, 26690, 'twenty-six thousand six hundred ninety');\nINSERT INTO t2 VALUES(16837, 20257, 'twenty thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(16838, 51050, 'fifty-one thousand fifty');\nINSERT INTO t2 VALUES(16839, 84275, 'eighty-four thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(16840, 9355, 'nine thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(16841, 79084, 'seventy-nine thousand eighty-four');\nINSERT INTO t2 VALUES(16842, 48511, 'forty-eight thousand five hundred eleven');\nINSERT INTO t2 VALUES(16843, 38572, 'thirty-eight thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(16844, 17542, 'seventeen thousand five hundred forty-two');\nINSERT INTO t2 VALUES(16845, 84312, 'eighty-four thousand three hundred twelve');\nINSERT INTO t2 VALUES(16846, 84045, 'eighty-four thousand forty-five');\nINSERT INTO t2 VALUES(16847, 34557, 'thirty-four thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(16848, 43150, 'forty-three thousand one hundred fifty');\nINSERT INTO t2 VALUES(16849, 30884, 'thirty thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(16850, 79738, 'seventy-nine thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(16851, 59708, 'fifty-nine thousand seven hundred eight');\nINSERT INTO t2 VALUES(16852, 79036, 'seventy-nine thousand thirty-six');\nINSERT INTO t2 VALUES(16853, 7889, 'seven thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(16854, 59194, 'fifty-nine thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(16855, 59006, 'fifty-nine thousand six');\nINSERT INTO t2 VALUES(16856, 61520, 'sixty-one thousand five hundred twenty');\nINSERT INTO t2 VALUES(16857, 66134, 'sixty-six thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(16858, 55137, 'fifty-five thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(16859, 78653, 'seventy-eight thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(16860, 144, 'one hundred forty-four');\nINSERT INTO t2 VALUES(16861, 78111, 'seventy-eight thousand one hundred eleven');\nINSERT INTO t2 VALUES(16862, 17291, 'seventeen thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(16863, 63251, 'sixty-three thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(16864, 50649, 'fifty thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(16865, 58273, 'fifty-eight thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(16866, 80823, 'eighty thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(16867, 21500, 'twenty-one thousand five hundred');\nINSERT INTO t2 VALUES(16868, 69765, 'sixty-nine thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(16869, 96778, 'ninety-six thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(16870, 24095, 'twenty-four thousand ninety-five');\nINSERT INTO t2 VALUES(16871, 2249, 'two thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(16872, 57226, 'fifty-seven thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(16873, 11711, 'eleven thousand seven hundred eleven');\nINSERT INTO t2 VALUES(16874, 77965, 'seventy-seven thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(16875, 50856, 'fifty thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(16876, 81998, 'eighty-one thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(16877, 9088, 'nine thousand eighty-eight');\nINSERT INTO t2 VALUES(16878, 55263, 'fifty-five thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(16879, 19610, 'nineteen thousand six hundred ten');\nINSERT INTO t2 VALUES(16880, 8199, 'eight thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(16881, 88536, 'eighty-eight thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(16882, 537, 'five hundred thirty-seven');\nINSERT INTO t2 VALUES(16883, 84043, 'eighty-four thousand forty-three');\nINSERT INTO t2 VALUES(16884, 72479, 'seventy-two thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(16885, 99147, 'ninety-nine thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(16886, 80163, 'eighty thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(16887, 84818, 'eighty-four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(16888, 26336, 'twenty-six thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(16889, 13715, 'thirteen thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(16890, 46663, 'forty-six thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(16891, 77217, 'seventy-seven thousand two hundred seventeen');\nINSERT INTO t2 VALUES(16892, 32708, 'thirty-two thousand seven hundred eight');\nINSERT INTO t2 VALUES(16893, 52817, 'fifty-two thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(16894, 3123, 'three thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(16895, 28899, 'twenty-eight thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(16896, 20344, 'twenty thousand three hundred forty-four');\nINSERT INTO t2 VALUES(16897, 23896, 'twenty-three thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(16898, 41436, 'forty-one thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(16899, 73642, 'seventy-three thousand six hundred forty-two');\nINSERT INTO t2 VALUES(16900, 20949, 'twenty thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(16901, 82973, 'eighty-two thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(16902, 54094, 'fifty-four thousand ninety-four');\nINSERT INTO t2 VALUES(16903, 61723, 'sixty-one thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(16904, 53202, 'fifty-three thousand two hundred two');\nINSERT INTO t2 VALUES(16905, 32281, 'thirty-two thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(16906, 18216, 'eighteen thousand two hundred sixteen');\nINSERT INTO t2 VALUES(16907, 72970, 'seventy-two thousand nine hundred seventy');\nINSERT INTO t2 VALUES(16908, 39624, 'thirty-nine thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(16909, 44485, 'forty-four thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(16910, 73003, 'seventy-three thousand three');\nINSERT INTO t2 VALUES(16911, 38199, 'thirty-eight thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(16912, 85191, 'eighty-five thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(16913, 35176, 'thirty-five thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(16914, 86845, 'eighty-six thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(16915, 75568, 'seventy-five thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(16916, 51429, 'fifty-one thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(16917, 83650, 'eighty-three thousand six hundred fifty');\nINSERT INTO t2 VALUES(16918, 62219, 'sixty-two thousand two hundred nineteen');\nINSERT INTO t2 VALUES(16919, 43170, 'forty-three thousand one hundred seventy');\nINSERT INTO t2 VALUES(16920, 66911, 'sixty-six thousand nine hundred eleven');\nINSERT INTO t2 VALUES(16921, 73434, 'seventy-three thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(16922, 69968, 'sixty-nine thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(16923, 74481, 'seventy-four thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(16924, 71262, 'seventy-one thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(16925, 92144, 'ninety-two thousand one hundred forty-four');\nINSERT INTO t2 VALUES(16926, 43944, 'forty-three thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(16927, 40176, 'forty thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(16928, 21060, 'twenty-one thousand sixty');\nINSERT INTO t2 VALUES(16929, 64531, 'sixty-four thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(16930, 59645, 'fifty-nine thousand six hundred forty-five');\nINSERT INTO t2 VALUES(16931, 82117, 'eighty-two thousand one hundred seventeen');\nINSERT INTO t2 VALUES(16932, 17350, 'seventeen thousand three hundred fifty');\nINSERT INTO t2 VALUES(16933, 26518, 'twenty-six thousand five hundred eighteen');\nINSERT INTO t2 VALUES(16934, 72553, 'seventy-two thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(16935, 75415, 'seventy-five thousand four hundred fifteen');\nINSERT INTO t2 VALUES(16936, 91622, 'ninety-one thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(16937, 66857, 'sixty-six thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(16938, 21786, 'twenty-one thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(16939, 47193, 'forty-seven thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(16940, 64820, 'sixty-four thousand eight hundred twenty');\nINSERT INTO t2 VALUES(16941, 54833, 'fifty-four thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(16942, 1033, 'one thousand thirty-three');\nINSERT INTO t2 VALUES(16943, 50329, 'fifty thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(16944, 40680, 'forty thousand six hundred eighty');\nINSERT INTO t2 VALUES(16945, 79601, 'seventy-nine thousand six hundred one');\nINSERT INTO t2 VALUES(16946, 50810, 'fifty thousand eight hundred ten');\nINSERT INTO t2 VALUES(16947, 48369, 'forty-eight thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(16948, 64124, 'sixty-four thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(16949, 96680, 'ninety-six thousand six hundred eighty');\nINSERT INTO t2 VALUES(16950, 37033, 'thirty-seven thousand thirty-three');\nINSERT INTO t2 VALUES(16951, 80560, 'eighty thousand five hundred sixty');\nINSERT INTO t2 VALUES(16952, 80273, 'eighty thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(16953, 40447, 'forty thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(16954, 26470, 'twenty-six thousand four hundred seventy');\nINSERT INTO t2 VALUES(16955, 69188, 'sixty-nine thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(16956, 91406, 'ninety-one thousand four hundred six');\nINSERT INTO t2 VALUES(16957, 17373, 'seventeen thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(16958, 96640, 'ninety-six thousand six hundred forty');\nINSERT INTO t2 VALUES(16959, 95479, 'ninety-five thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(16960, 84319, 'eighty-four thousand three hundred nineteen');\nINSERT INTO t2 VALUES(16961, 80870, 'eighty thousand eight hundred seventy');\nINSERT INTO t2 VALUES(16962, 5162, 'five thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(16963, 30566, 'thirty thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(16964, 9985, 'nine thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(16965, 35200, 'thirty-five thousand two hundred');\nINSERT INTO t2 VALUES(16966, 42246, 'forty-two thousand two hundred forty-six');\nINSERT INTO t2 VALUES(16967, 7420, 'seven thousand four hundred twenty');\nINSERT INTO t2 VALUES(16968, 75893, 'seventy-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(16969, 42667, 'forty-two thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(16970, 1333, 'one thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(16971, 4574, 'four thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(16972, 84825, 'eighty-four thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(16973, 68546, 'sixty-eight thousand five hundred forty-six');\nINSERT INTO t2 VALUES(16974, 91310, 'ninety-one thousand three hundred ten');\nINSERT INTO t2 VALUES(16975, 94755, 'ninety-four thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(16976, 63474, 'sixty-three thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(16977, 55404, 'fifty-five thousand four hundred four');\nINSERT INTO t2 VALUES(16978, 67332, 'sixty-seven thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(16979, 51974, 'fifty-one thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(16980, 4123, 'four thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(16981, 97780, 'ninety-seven thousand seven hundred eighty');\nINSERT INTO t2 VALUES(16982, 7005, 'seven thousand five');\nINSERT INTO t2 VALUES(16983, 95316, 'ninety-five thousand three hundred sixteen');\nINSERT INTO t2 VALUES(16984, 21480, 'twenty-one thousand four hundred eighty');\nINSERT INTO t2 VALUES(16985, 11413, 'eleven thousand four hundred thirteen');\nINSERT INTO t2 VALUES(16986, 88116, 'eighty-eight thousand one hundred sixteen');\nINSERT INTO t2 VALUES(16987, 40724, 'forty thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(16988, 66342, 'sixty-six thousand three hundred forty-two');\nINSERT INTO t2 VALUES(16989, 79624, 'seventy-nine thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(16990, 65664, 'sixty-five thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(16991, 89811, 'eighty-nine thousand eight hundred eleven');\nINSERT INTO t2 VALUES(16992, 85186, 'eighty-five thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(16993, 70255, 'seventy thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(16994, 24962, 'twenty-four thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(16995, 700, 'seven hundred');\nINSERT INTO t2 VALUES(16996, 94613, 'ninety-four thousand six hundred thirteen');\nINSERT INTO t2 VALUES(16997, 55395, 'fifty-five thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(16998, 41440, 'forty-one thousand four hundred forty');\nINSERT INTO t2 VALUES(16999, 83895, 'eighty-three thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(17000, 76898, 'seventy-six thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(17001, 65305, 'sixty-five thousand three hundred five');\nINSERT INTO t2 VALUES(17002, 21110, 'twenty-one thousand one hundred ten');\nINSERT INTO t2 VALUES(17003, 4343, 'four thousand three hundred forty-three');\nINSERT INTO t2 VALUES(17004, 78814, 'seventy-eight thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(17005, 34056, 'thirty-four thousand fifty-six');\nINSERT INTO t2 VALUES(17006, 17606, 'seventeen thousand six hundred six');\nINSERT INTO t2 VALUES(17007, 54536, 'fifty-four thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(17008, 3280, 'three thousand two hundred eighty');\nINSERT INTO t2 VALUES(17009, 33053, 'thirty-three thousand fifty-three');\nINSERT INTO t2 VALUES(17010, 73540, 'seventy-three thousand five hundred forty');\nINSERT INTO t2 VALUES(17011, 15375, 'fifteen thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(17012, 46052, 'forty-six thousand fifty-two');\nINSERT INTO t2 VALUES(17013, 76222, 'seventy-six thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(17014, 90058, 'ninety thousand fifty-eight');\nINSERT INTO t2 VALUES(17015, 30522, 'thirty thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(17016, 58042, 'fifty-eight thousand forty-two');\nINSERT INTO t2 VALUES(17017, 71365, 'seventy-one thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(17018, 81584, 'eighty-one thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(17019, 95687, 'ninety-five thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(17020, 901, 'nine hundred one');\nINSERT INTO t2 VALUES(17021, 92202, 'ninety-two thousand two hundred two');\nINSERT INTO t2 VALUES(17022, 68063, 'sixty-eight thousand sixty-three');\nINSERT INTO t2 VALUES(17023, 15472, 'fifteen thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(17024, 92864, 'ninety-two thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(17025, 85073, 'eighty-five thousand seventy-three');\nINSERT INTO t2 VALUES(17026, 61548, 'sixty-one thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(17027, 88037, 'eighty-eight thousand thirty-seven');\nINSERT INTO t2 VALUES(17028, 35407, 'thirty-five thousand four hundred seven');\nINSERT INTO t2 VALUES(17029, 58611, 'fifty-eight thousand six hundred eleven');\nINSERT INTO t2 VALUES(17030, 51455, 'fifty-one thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(17031, 97984, 'ninety-seven thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(17032, 83554, 'eighty-three thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(17033, 31688, 'thirty-one thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(17034, 57555, 'fifty-seven thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(17035, 54533, 'fifty-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(17036, 57271, 'fifty-seven thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(17037, 18957, 'eighteen thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(17038, 72477, 'seventy-two thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(17039, 30217, 'thirty thousand two hundred seventeen');\nINSERT INTO t2 VALUES(17040, 67737, 'sixty-seven thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(17041, 31267, 'thirty-one thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(17042, 28796, 'twenty-eight thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(17043, 56667, 'fifty-six thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(17044, 39204, 'thirty-nine thousand two hundred four');\nINSERT INTO t2 VALUES(17045, 11674, 'eleven thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(17046, 27446, 'twenty-seven thousand four hundred forty-six');\nINSERT INTO t2 VALUES(17047, 41105, 'forty-one thousand one hundred five');\nINSERT INTO t2 VALUES(17048, 98525, 'ninety-eight thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(17049, 89806, 'eighty-nine thousand eight hundred six');\nINSERT INTO t2 VALUES(17050, 46997, 'forty-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(17051, 87564, 'eighty-seven thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(17052, 73223, 'seventy-three thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(17053, 31891, 'thirty-one thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(17054, 66762, 'sixty-six thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(17055, 30880, 'thirty thousand eight hundred eighty');\nINSERT INTO t2 VALUES(17056, 76386, 'seventy-six thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(17057, 25093, 'twenty-five thousand ninety-three');\nINSERT INTO t2 VALUES(17058, 94667, 'ninety-four thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(17059, 8108, 'eight thousand one hundred eight');\nINSERT INTO t2 VALUES(17060, 99325, 'ninety-nine thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(17061, 66480, 'sixty-six thousand four hundred eighty');\nINSERT INTO t2 VALUES(17062, 66167, 'sixty-six thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(17063, 74152, 'seventy-four thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(17064, 863, 'eight hundred sixty-three');\nINSERT INTO t2 VALUES(17065, 638, 'six hundred thirty-eight');\nINSERT INTO t2 VALUES(17066, 7758, 'seven thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(17067, 41152, 'forty-one thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(17068, 52229, 'fifty-two thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(17069, 6799, 'six thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(17070, 26714, 'twenty-six thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(17071, 45046, 'forty-five thousand forty-six');\nINSERT INTO t2 VALUES(17072, 3503, 'three thousand five hundred three');\nINSERT INTO t2 VALUES(17073, 58650, 'fifty-eight thousand six hundred fifty');\nINSERT INTO t2 VALUES(17074, 81376, 'eighty-one thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(17075, 33971, 'thirty-three thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(17076, 8329, 'eight thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(17077, 87736, 'eighty-seven thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(17078, 54033, 'fifty-four thousand thirty-three');\nINSERT INTO t2 VALUES(17079, 46063, 'forty-six thousand sixty-three');\nINSERT INTO t2 VALUES(17080, 30563, 'thirty thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(17081, 56526, 'fifty-six thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(17082, 62197, 'sixty-two thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(17083, 84182, 'eighty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(17084, 89052, 'eighty-nine thousand fifty-two');\nINSERT INTO t2 VALUES(17085, 56765, 'fifty-six thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(17086, 73509, 'seventy-three thousand five hundred nine');\nINSERT INTO t2 VALUES(17087, 86672, 'eighty-six thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(17088, 91559, 'ninety-one thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(17089, 29836, 'twenty-nine thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(17090, 81734, 'eighty-one thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(17091, 7602, 'seven thousand six hundred two');\nINSERT INTO t2 VALUES(17092, 19578, 'nineteen thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(17093, 67603, 'sixty-seven thousand six hundred three');\nINSERT INTO t2 VALUES(17094, 86777, 'eighty-six thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(17095, 68304, 'sixty-eight thousand three hundred four');\nINSERT INTO t2 VALUES(17096, 74266, 'seventy-four thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(17097, 77659, 'seventy-seven thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(17098, 84722, 'eighty-four thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(17099, 90542, 'ninety thousand five hundred forty-two');\nINSERT INTO t2 VALUES(17100, 78766, 'seventy-eight thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(17101, 34798, 'thirty-four thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(17102, 34228, 'thirty-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(17103, 54264, 'fifty-four thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(17104, 46084, 'forty-six thousand eighty-four');\nINSERT INTO t2 VALUES(17105, 55182, 'fifty-five thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(17106, 32264, 'thirty-two thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(17107, 48309, 'forty-eight thousand three hundred nine');\nINSERT INTO t2 VALUES(17108, 36498, 'thirty-six thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(17109, 43392, 'forty-three thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(17110, 62051, 'sixty-two thousand fifty-one');\nINSERT INTO t2 VALUES(17111, 45687, 'forty-five thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(17112, 68579, 'sixty-eight thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(17113, 93920, 'ninety-three thousand nine hundred twenty');\nINSERT INTO t2 VALUES(17114, 13601, 'thirteen thousand six hundred one');\nINSERT INTO t2 VALUES(17115, 82078, 'eighty-two thousand seventy-eight');\nINSERT INTO t2 VALUES(17116, 69420, 'sixty-nine thousand four hundred twenty');\nINSERT INTO t2 VALUES(17117, 76797, 'seventy-six thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(17118, 35405, 'thirty-five thousand four hundred five');\nINSERT INTO t2 VALUES(17119, 63872, 'sixty-three thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(17120, 91641, 'ninety-one thousand six hundred forty-one');\nINSERT INTO t2 VALUES(17121, 70224, 'seventy thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(17122, 72907, 'seventy-two thousand nine hundred seven');\nINSERT INTO t2 VALUES(17123, 8900, 'eight thousand nine hundred');\nINSERT INTO t2 VALUES(17124, 43506, 'forty-three thousand five hundred six');\nINSERT INTO t2 VALUES(17125, 88184, 'eighty-eight thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(17126, 14156, 'fourteen thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(17127, 83988, 'eighty-three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(17128, 95863, 'ninety-five thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(17129, 85501, 'eighty-five thousand five hundred one');\nINSERT INTO t2 VALUES(17130, 25377, 'twenty-five thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(17131, 42550, 'forty-two thousand five hundred fifty');\nINSERT INTO t2 VALUES(17132, 23031, 'twenty-three thousand thirty-one');\nINSERT INTO t2 VALUES(17133, 8499, 'eight thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(17134, 88478, 'eighty-eight thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(17135, 27972, 'twenty-seven thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(17136, 95246, 'ninety-five thousand two hundred forty-six');\nINSERT INTO t2 VALUES(17137, 32861, 'thirty-two thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(17138, 81529, 'eighty-one thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(17139, 84892, 'eighty-four thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(17140, 86423, 'eighty-six thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(17141, 39653, 'thirty-nine thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(17142, 12833, 'twelve thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(17143, 3016, 'three thousand sixteen');\nINSERT INTO t2 VALUES(17144, 91532, 'ninety-one thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(17145, 98187, 'ninety-eight thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(17146, 4900, 'four thousand nine hundred');\nINSERT INTO t2 VALUES(17147, 22506, 'twenty-two thousand five hundred six');\nINSERT INTO t2 VALUES(17148, 42714, 'forty-two thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(17149, 12858, 'twelve thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(17150, 86395, 'eighty-six thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(17151, 75314, 'seventy-five thousand three hundred fourteen');\nINSERT INTO t2 VALUES(17152, 18464, 'eighteen thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(17153, 16178, 'sixteen thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(17154, 55292, 'fifty-five thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(17155, 74300, 'seventy-four thousand three hundred');\nINSERT INTO t2 VALUES(17156, 14345, 'fourteen thousand three hundred forty-five');\nINSERT INTO t2 VALUES(17157, 79716, 'seventy-nine thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(17158, 56450, 'fifty-six thousand four hundred fifty');\nINSERT INTO t2 VALUES(17159, 70772, 'seventy thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(17160, 1548, 'one thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(17161, 44228, 'forty-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(17162, 93200, 'ninety-three thousand two hundred');\nINSERT INTO t2 VALUES(17163, 2014, 'two thousand fourteen');\nINSERT INTO t2 VALUES(17164, 12596, 'twelve thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(17165, 83499, 'eighty-three thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(17166, 12749, 'twelve thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(17167, 76654, 'seventy-six thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(17168, 15145, 'fifteen thousand one hundred forty-five');\nINSERT INTO t2 VALUES(17169, 4215, 'four thousand two hundred fifteen');\nINSERT INTO t2 VALUES(17170, 33778, 'thirty-three thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(17171, 49717, 'forty-nine thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(17172, 68017, 'sixty-eight thousand seventeen');\nINSERT INTO t2 VALUES(17173, 64708, 'sixty-four thousand seven hundred eight');\nINSERT INTO t2 VALUES(17174, 41002, 'forty-one thousand two');\nINSERT INTO t2 VALUES(17175, 62181, 'sixty-two thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(17176, 92058, 'ninety-two thousand fifty-eight');\nINSERT INTO t2 VALUES(17177, 4886, 'four thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(17178, 64723, 'sixty-four thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(17179, 87866, 'eighty-seven thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(17180, 90830, 'ninety thousand eight hundred thirty');\nINSERT INTO t2 VALUES(17181, 211, 'two hundred eleven');\nINSERT INTO t2 VALUES(17182, 84668, 'eighty-four thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(17183, 69983, 'sixty-nine thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(17184, 53817, 'fifty-three thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(17185, 41119, 'forty-one thousand one hundred nineteen');\nINSERT INTO t2 VALUES(17186, 97739, 'ninety-seven thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(17187, 5976, 'five thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(17188, 81647, 'eighty-one thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(17189, 83498, 'eighty-three thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(17190, 52981, 'fifty-two thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(17191, 82111, 'eighty-two thousand one hundred eleven');\nINSERT INTO t2 VALUES(17192, 69991, 'sixty-nine thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(17193, 15580, 'fifteen thousand five hundred eighty');\nINSERT INTO t2 VALUES(17194, 34385, 'thirty-four thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(17195, 11275, 'eleven thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(17196, 98676, 'ninety-eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(17197, 10751, 'ten thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(17198, 93225, 'ninety-three thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(17199, 83639, 'eighty-three thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(17200, 6676, 'six thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(17201, 66995, 'sixty-six thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(17202, 61324, 'sixty-one thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(17203, 80165, 'eighty thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(17204, 57070, 'fifty-seven thousand seventy');\nINSERT INTO t2 VALUES(17205, 21613, 'twenty-one thousand six hundred thirteen');\nINSERT INTO t2 VALUES(17206, 65455, 'sixty-five thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(17207, 68220, 'sixty-eight thousand two hundred twenty');\nINSERT INTO t2 VALUES(17208, 53120, 'fifty-three thousand one hundred twenty');\nINSERT INTO t2 VALUES(17209, 77174, 'seventy-seven thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(17210, 12018, 'twelve thousand eighteen');\nINSERT INTO t2 VALUES(17211, 25315, 'twenty-five thousand three hundred fifteen');\nINSERT INTO t2 VALUES(17212, 80467, 'eighty thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(17213, 57054, 'fifty-seven thousand fifty-four');\nINSERT INTO t2 VALUES(17214, 74832, 'seventy-four thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(17215, 37741, 'thirty-seven thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(17216, 25135, 'twenty-five thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(17217, 69785, 'sixty-nine thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(17218, 99936, 'ninety-nine thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(17219, 14674, 'fourteen thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(17220, 8674, 'eight thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(17221, 77319, 'seventy-seven thousand three hundred nineteen');\nINSERT INTO t2 VALUES(17222, 93747, 'ninety-three thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(17223, 74611, 'seventy-four thousand six hundred eleven');\nINSERT INTO t2 VALUES(17224, 4687, 'four thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(17225, 54571, 'fifty-four thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(17226, 73353, 'seventy-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(17227, 20275, 'twenty thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(17228, 13140, 'thirteen thousand one hundred forty');\nINSERT INTO t2 VALUES(17229, 89521, 'eighty-nine thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(17230, 29135, 'twenty-nine thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(17231, 38123, 'thirty-eight thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(17232, 68568, 'sixty-eight thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(17233, 42529, 'forty-two thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(17234, 22732, 'twenty-two thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(17235, 42081, 'forty-two thousand eighty-one');\nINSERT INTO t2 VALUES(17236, 27247, 'twenty-seven thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(17237, 85138, 'eighty-five thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(17238, 86157, 'eighty-six thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(17239, 41461, 'forty-one thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(17240, 34570, 'thirty-four thousand five hundred seventy');\nINSERT INTO t2 VALUES(17241, 52775, 'fifty-two thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(17242, 25624, 'twenty-five thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(17243, 4443, 'four thousand four hundred forty-three');\nINSERT INTO t2 VALUES(17244, 43970, 'forty-three thousand nine hundred seventy');\nINSERT INTO t2 VALUES(17245, 76497, 'seventy-six thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(17246, 75163, 'seventy-five thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(17247, 68324, 'sixty-eight thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(17248, 32366, 'thirty-two thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(17249, 46515, 'forty-six thousand five hundred fifteen');\nINSERT INTO t2 VALUES(17250, 72462, 'seventy-two thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(17251, 73690, 'seventy-three thousand six hundred ninety');\nINSERT INTO t2 VALUES(17252, 78971, 'seventy-eight thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(17253, 53915, 'fifty-three thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(17254, 45379, 'forty-five thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(17255, 8151, 'eight thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(17256, 74124, 'seventy-four thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(17257, 42208, 'forty-two thousand two hundred eight');\nINSERT INTO t2 VALUES(17258, 64365, 'sixty-four thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(17259, 62381, 'sixty-two thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(17260, 6153, 'six thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(17261, 96485, 'ninety-six thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(17262, 78041, 'seventy-eight thousand forty-one');\nINSERT INTO t2 VALUES(17263, 64751, 'sixty-four thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(17264, 16555, 'sixteen thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(17265, 59323, 'fifty-nine thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(17266, 83636, 'eighty-three thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(17267, 97504, 'ninety-seven thousand five hundred four');\nINSERT INTO t2 VALUES(17268, 15840, 'fifteen thousand eight hundred forty');\nINSERT INTO t2 VALUES(17269, 95684, 'ninety-five thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(17270, 64917, 'sixty-four thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(17271, 51726, 'fifty-one thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(17272, 41265, 'forty-one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(17273, 86079, 'eighty-six thousand seventy-nine');\nINSERT INTO t2 VALUES(17274, 19818, 'nineteen thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(17275, 3601, 'three thousand six hundred one');\nINSERT INTO t2 VALUES(17276, 63636, 'sixty-three thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(17277, 98518, 'ninety-eight thousand five hundred eighteen');\nINSERT INTO t2 VALUES(17278, 99102, 'ninety-nine thousand one hundred two');\nINSERT INTO t2 VALUES(17279, 79815, 'seventy-nine thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(17280, 92037, 'ninety-two thousand thirty-seven');\nINSERT INTO t2 VALUES(17281, 76336, 'seventy-six thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(17282, 54144, 'fifty-four thousand one hundred forty-four');\nINSERT INTO t2 VALUES(17283, 68520, 'sixty-eight thousand five hundred twenty');\nINSERT INTO t2 VALUES(17284, 97240, 'ninety-seven thousand two hundred forty');\nINSERT INTO t2 VALUES(17285, 69414, 'sixty-nine thousand four hundred fourteen');\nINSERT INTO t2 VALUES(17286, 73228, 'seventy-three thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(17287, 47121, 'forty-seven thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(17288, 25047, 'twenty-five thousand forty-seven');\nINSERT INTO t2 VALUES(17289, 74276, 'seventy-four thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(17290, 78508, 'seventy-eight thousand five hundred eight');\nINSERT INTO t2 VALUES(17291, 18493, 'eighteen thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(17292, 38166, 'thirty-eight thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(17293, 4325, 'four thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(17294, 29170, 'twenty-nine thousand one hundred seventy');\nINSERT INTO t2 VALUES(17295, 99618, 'ninety-nine thousand six hundred eighteen');\nINSERT INTO t2 VALUES(17296, 12260, 'twelve thousand two hundred sixty');\nINSERT INTO t2 VALUES(17297, 78527, 'seventy-eight thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(17298, 77638, 'seventy-seven thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(17299, 51436, 'fifty-one thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(17300, 13708, 'thirteen thousand seven hundred eight');\nINSERT INTO t2 VALUES(17301, 80836, 'eighty thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(17302, 60009, 'sixty thousand nine');\nINSERT INTO t2 VALUES(17303, 78734, 'seventy-eight thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(17304, 21329, 'twenty-one thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(17305, 2069, 'two thousand sixty-nine');\nINSERT INTO t2 VALUES(17306, 74423, 'seventy-four thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(17307, 17643, 'seventeen thousand six hundred forty-three');\nINSERT INTO t2 VALUES(17308, 19965, 'nineteen thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(17309, 97627, 'ninety-seven thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(17310, 65989, 'sixty-five thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(17311, 23138, 'twenty-three thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(17312, 9974, 'nine thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(17313, 33534, 'thirty-three thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(17314, 33175, 'thirty-three thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(17315, 56319, 'fifty-six thousand three hundred nineteen');\nINSERT INTO t2 VALUES(17316, 96535, 'ninety-six thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(17317, 82944, 'eighty-two thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(17318, 98273, 'ninety-eight thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(17319, 19810, 'nineteen thousand eight hundred ten');\nINSERT INTO t2 VALUES(17320, 2565, 'two thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(17321, 30171, 'thirty thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(17322, 33775, 'thirty-three thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(17323, 29606, 'twenty-nine thousand six hundred six');\nINSERT INTO t2 VALUES(17324, 18029, 'eighteen thousand twenty-nine');\nINSERT INTO t2 VALUES(17325, 3869, 'three thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(17326, 90548, 'ninety thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(17327, 71791, 'seventy-one thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(17328, 5031, 'five thousand thirty-one');\nINSERT INTO t2 VALUES(17329, 53723, 'fifty-three thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(17330, 46932, 'forty-six thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(17331, 95528, 'ninety-five thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(17332, 93529, 'ninety-three thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(17333, 7926, 'seven thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(17334, 81680, 'eighty-one thousand six hundred eighty');\nINSERT INTO t2 VALUES(17335, 22336, 'twenty-two thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(17336, 21718, 'twenty-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(17337, 70106, 'seventy thousand one hundred six');\nINSERT INTO t2 VALUES(17338, 45527, 'forty-five thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(17339, 22561, 'twenty-two thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(17340, 688, 'six hundred eighty-eight');\nINSERT INTO t2 VALUES(17341, 52976, 'fifty-two thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(17342, 90461, 'ninety thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(17343, 39450, 'thirty-nine thousand four hundred fifty');\nINSERT INTO t2 VALUES(17344, 70554, 'seventy thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(17345, 41115, 'forty-one thousand one hundred fifteen');\nINSERT INTO t2 VALUES(17346, 98998, 'ninety-eight thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(17347, 78136, 'seventy-eight thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(17348, 52418, 'fifty-two thousand four hundred eighteen');\nINSERT INTO t2 VALUES(17349, 55026, 'fifty-five thousand twenty-six');\nINSERT INTO t2 VALUES(17350, 93818, 'ninety-three thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(17351, 82360, 'eighty-two thousand three hundred sixty');\nINSERT INTO t2 VALUES(17352, 81551, 'eighty-one thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(17353, 55924, 'fifty-five thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(17354, 19569, 'nineteen thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(17355, 1090, 'one thousand ninety');\nINSERT INTO t2 VALUES(17356, 22790, 'twenty-two thousand seven hundred ninety');\nINSERT INTO t2 VALUES(17357, 3355, 'three thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(17358, 74313, 'seventy-four thousand three hundred thirteen');\nINSERT INTO t2 VALUES(17359, 87548, 'eighty-seven thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(17360, 40000, 'forty thousand');\nINSERT INTO t2 VALUES(17361, 81975, 'eighty-one thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(17362, 59330, 'fifty-nine thousand three hundred thirty');\nINSERT INTO t2 VALUES(17363, 17792, 'seventeen thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(17364, 50008, 'fifty thousand eight');\nINSERT INTO t2 VALUES(17365, 28168, 'twenty-eight thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(17366, 87561, 'eighty-seven thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(17367, 53163, 'fifty-three thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(17368, 16819, 'sixteen thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(17369, 41086, 'forty-one thousand eighty-six');\nINSERT INTO t2 VALUES(17370, 30976, 'thirty thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(17371, 39645, 'thirty-nine thousand six hundred forty-five');\nINSERT INTO t2 VALUES(17372, 4872, 'four thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(17373, 21678, 'twenty-one thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(17374, 4820, 'four thousand eight hundred twenty');\nINSERT INTO t2 VALUES(17375, 90094, 'ninety thousand ninety-four');\nINSERT INTO t2 VALUES(17376, 23632, 'twenty-three thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(17377, 25243, 'twenty-five thousand two hundred forty-three');\nINSERT INTO t2 VALUES(17378, 73537, 'seventy-three thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(17379, 33276, 'thirty-three thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(17380, 24621, 'twenty-four thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(17381, 64038, 'sixty-four thousand thirty-eight');\nINSERT INTO t2 VALUES(17382, 67006, 'sixty-seven thousand six');\nINSERT INTO t2 VALUES(17383, 28470, 'twenty-eight thousand four hundred seventy');\nINSERT INTO t2 VALUES(17384, 23544, 'twenty-three thousand five hundred forty-four');\nINSERT INTO t2 VALUES(17385, 22191, 'twenty-two thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(17386, 34798, 'thirty-four thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(17387, 75247, 'seventy-five thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(17388, 19299, 'nineteen thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(17389, 81115, 'eighty-one thousand one hundred fifteen');\nINSERT INTO t2 VALUES(17390, 44912, 'forty-four thousand nine hundred twelve');\nINSERT INTO t2 VALUES(17391, 68529, 'sixty-eight thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(17392, 87856, 'eighty-seven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(17393, 40439, 'forty thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(17394, 8472, 'eight thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(17395, 18075, 'eighteen thousand seventy-five');\nINSERT INTO t2 VALUES(17396, 34365, 'thirty-four thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(17397, 6748, 'six thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(17398, 60657, 'sixty thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(17399, 23229, 'twenty-three thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(17400, 47854, 'forty-seven thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(17401, 32587, 'thirty-two thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(17402, 69613, 'sixty-nine thousand six hundred thirteen');\nINSERT INTO t2 VALUES(17403, 53980, 'fifty-three thousand nine hundred eighty');\nINSERT INTO t2 VALUES(17404, 73534, 'seventy-three thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(17405, 61194, 'sixty-one thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(17406, 55794, 'fifty-five thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(17407, 87123, 'eighty-seven thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(17408, 51183, 'fifty-one thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(17409, 78046, 'seventy-eight thousand forty-six');\nINSERT INTO t2 VALUES(17410, 8089, 'eight thousand eighty-nine');\nINSERT INTO t2 VALUES(17411, 59953, 'fifty-nine thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(17412, 54022, 'fifty-four thousand twenty-two');\nINSERT INTO t2 VALUES(17413, 63243, 'sixty-three thousand two hundred forty-three');\nINSERT INTO t2 VALUES(17414, 49922, 'forty-nine thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(17415, 1815, 'one thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(17416, 593, 'five hundred ninety-three');\nINSERT INTO t2 VALUES(17417, 78631, 'seventy-eight thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(17418, 39771, 'thirty-nine thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(17419, 592, 'five hundred ninety-two');\nINSERT INTO t2 VALUES(17420, 69837, 'sixty-nine thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(17421, 80466, 'eighty thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(17422, 68067, 'sixty-eight thousand sixty-seven');\nINSERT INTO t2 VALUES(17423, 75514, 'seventy-five thousand five hundred fourteen');\nINSERT INTO t2 VALUES(17424, 48793, 'forty-eight thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(17425, 77150, 'seventy-seven thousand one hundred fifty');\nINSERT INTO t2 VALUES(17426, 21912, 'twenty-one thousand nine hundred twelve');\nINSERT INTO t2 VALUES(17427, 32284, 'thirty-two thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(17428, 15178, 'fifteen thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(17429, 75465, 'seventy-five thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(17430, 74181, 'seventy-four thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(17431, 85713, 'eighty-five thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(17432, 13154, 'thirteen thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(17433, 31601, 'thirty-one thousand six hundred one');\nINSERT INTO t2 VALUES(17434, 43690, 'forty-three thousand six hundred ninety');\nINSERT INTO t2 VALUES(17435, 13959, 'thirteen thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(17436, 15305, 'fifteen thousand three hundred five');\nINSERT INTO t2 VALUES(17437, 16736, 'sixteen thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(17438, 58541, 'fifty-eight thousand five hundred forty-one');\nINSERT INTO t2 VALUES(17439, 86269, 'eighty-six thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(17440, 34013, 'thirty-four thousand thirteen');\nINSERT INTO t2 VALUES(17441, 61139, 'sixty-one thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(17442, 74970, 'seventy-four thousand nine hundred seventy');\nINSERT INTO t2 VALUES(17443, 14037, 'fourteen thousand thirty-seven');\nINSERT INTO t2 VALUES(17444, 61203, 'sixty-one thousand two hundred three');\nINSERT INTO t2 VALUES(17445, 6286, 'six thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(17446, 87866, 'eighty-seven thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(17447, 64733, 'sixty-four thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(17448, 98527, 'ninety-eight thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(17449, 82137, 'eighty-two thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(17450, 11654, 'eleven thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(17451, 34752, 'thirty-four thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(17452, 38514, 'thirty-eight thousand five hundred fourteen');\nINSERT INTO t2 VALUES(17453, 29696, 'twenty-nine thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(17454, 42080, 'forty-two thousand eighty');\nINSERT INTO t2 VALUES(17455, 60695, 'sixty thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(17456, 76575, 'seventy-six thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(17457, 65233, 'sixty-five thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(17458, 47021, 'forty-seven thousand twenty-one');\nINSERT INTO t2 VALUES(17459, 48397, 'forty-eight thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(17460, 81046, 'eighty-one thousand forty-six');\nINSERT INTO t2 VALUES(17461, 99274, 'ninety-nine thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(17462, 60267, 'sixty thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(17463, 94097, 'ninety-four thousand ninety-seven');\nINSERT INTO t2 VALUES(17464, 14852, 'fourteen thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(17465, 26676, 'twenty-six thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(17466, 95851, 'ninety-five thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(17467, 2585, 'two thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(17468, 4803, 'four thousand eight hundred three');\nINSERT INTO t2 VALUES(17469, 16920, 'sixteen thousand nine hundred twenty');\nINSERT INTO t2 VALUES(17470, 60986, 'sixty thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(17471, 55847, 'fifty-five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(17472, 68490, 'sixty-eight thousand four hundred ninety');\nINSERT INTO t2 VALUES(17473, 69215, 'sixty-nine thousand two hundred fifteen');\nINSERT INTO t2 VALUES(17474, 10660, 'ten thousand six hundred sixty');\nINSERT INTO t2 VALUES(17475, 29114, 'twenty-nine thousand one hundred fourteen');\nINSERT INTO t2 VALUES(17476, 31781, 'thirty-one thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(17477, 29191, 'twenty-nine thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(17478, 52378, 'fifty-two thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(17479, 14022, 'fourteen thousand twenty-two');\nINSERT INTO t2 VALUES(17480, 36873, 'thirty-six thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(17481, 81951, 'eighty-one thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(17482, 1003, 'one thousand three');\nINSERT INTO t2 VALUES(17483, 87526, 'eighty-seven thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(17484, 74753, 'seventy-four thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(17485, 79057, 'seventy-nine thousand fifty-seven');\nINSERT INTO t2 VALUES(17486, 13075, 'thirteen thousand seventy-five');\nINSERT INTO t2 VALUES(17487, 51381, 'fifty-one thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(17488, 83654, 'eighty-three thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(17489, 18811, 'eighteen thousand eight hundred eleven');\nINSERT INTO t2 VALUES(17490, 98219, 'ninety-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(17491, 80679, 'eighty thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(17492, 60515, 'sixty thousand five hundred fifteen');\nINSERT INTO t2 VALUES(17493, 32984, 'thirty-two thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(17494, 75016, 'seventy-five thousand sixteen');\nINSERT INTO t2 VALUES(17495, 20309, 'twenty thousand three hundred nine');\nINSERT INTO t2 VALUES(17496, 25709, 'twenty-five thousand seven hundred nine');\nINSERT INTO t2 VALUES(17497, 23825, 'twenty-three thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(17498, 46275, 'forty-six thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(17499, 26567, 'twenty-six thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(17500, 18382, 'eighteen thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(17501, 90156, 'ninety thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(17502, 39556, 'thirty-nine thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(17503, 26543, 'twenty-six thousand five hundred forty-three');\nINSERT INTO t2 VALUES(17504, 42789, 'forty-two thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(17505, 8036, 'eight thousand thirty-six');\nINSERT INTO t2 VALUES(17506, 7760, 'seven thousand seven hundred sixty');\nINSERT INTO t2 VALUES(17507, 67082, 'sixty-seven thousand eighty-two');\nINSERT INTO t2 VALUES(17508, 43117, 'forty-three thousand one hundred seventeen');\nINSERT INTO t2 VALUES(17509, 74691, 'seventy-four thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(17510, 74995, 'seventy-four thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(17511, 75096, 'seventy-five thousand ninety-six');\nINSERT INTO t2 VALUES(17512, 14771, 'fourteen thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(17513, 92557, 'ninety-two thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(17514, 86848, 'eighty-six thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(17515, 69858, 'sixty-nine thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(17516, 51142, 'fifty-one thousand one hundred forty-two');\nINSERT INTO t2 VALUES(17517, 88028, 'eighty-eight thousand twenty-eight');\nINSERT INTO t2 VALUES(17518, 32494, 'thirty-two thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(17519, 65874, 'sixty-five thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(17520, 42536, 'forty-two thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(17521, 45844, 'forty-five thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(17522, 87207, 'eighty-seven thousand two hundred seven');\nINSERT INTO t2 VALUES(17523, 47107, 'forty-seven thousand one hundred seven');\nINSERT INTO t2 VALUES(17524, 69097, 'sixty-nine thousand ninety-seven');\nINSERT INTO t2 VALUES(17525, 94085, 'ninety-four thousand eighty-five');\nINSERT INTO t2 VALUES(17526, 31850, 'thirty-one thousand eight hundred fifty');\nINSERT INTO t2 VALUES(17527, 784, 'seven hundred eighty-four');\nINSERT INTO t2 VALUES(17528, 63301, 'sixty-three thousand three hundred one');\nINSERT INTO t2 VALUES(17529, 53734, 'fifty-three thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(17530, 65987, 'sixty-five thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(17531, 10, 'ten');\nINSERT INTO t2 VALUES(17532, 8151, 'eight thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(17533, 30655, 'thirty thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(17534, 9301, 'nine thousand three hundred one');\nINSERT INTO t2 VALUES(17535, 53040, 'fifty-three thousand forty');\nINSERT INTO t2 VALUES(17536, 63417, 'sixty-three thousand four hundred seventeen');\nINSERT INTO t2 VALUES(17537, 90407, 'ninety thousand four hundred seven');\nINSERT INTO t2 VALUES(17538, 53487, 'fifty-three thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(17539, 48281, 'forty-eight thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(17540, 11619, 'eleven thousand six hundred nineteen');\nINSERT INTO t2 VALUES(17541, 57508, 'fifty-seven thousand five hundred eight');\nINSERT INTO t2 VALUES(17542, 78920, 'seventy-eight thousand nine hundred twenty');\nINSERT INTO t2 VALUES(17543, 33433, 'thirty-three thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(17544, 14615, 'fourteen thousand six hundred fifteen');\nINSERT INTO t2 VALUES(17545, 91128, 'ninety-one thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(17546, 63688, 'sixty-three thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(17547, 20464, 'twenty thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(17548, 57080, 'fifty-seven thousand eighty');\nINSERT INTO t2 VALUES(17549, 75088, 'seventy-five thousand eighty-eight');\nINSERT INTO t2 VALUES(17550, 53567, 'fifty-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(17551, 98573, 'ninety-eight thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(17552, 10065, 'ten thousand sixty-five');\nINSERT INTO t2 VALUES(17553, 71457, 'seventy-one thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(17554, 18394, 'eighteen thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(17555, 81965, 'eighty-one thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(17556, 60340, 'sixty thousand three hundred forty');\nINSERT INTO t2 VALUES(17557, 87855, 'eighty-seven thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(17558, 34763, 'thirty-four thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(17559, 50361, 'fifty thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(17560, 35538, 'thirty-five thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(17561, 85747, 'eighty-five thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(17562, 50403, 'fifty thousand four hundred three');\nINSERT INTO t2 VALUES(17563, 5505, 'five thousand five hundred five');\nINSERT INTO t2 VALUES(17564, 42224, 'forty-two thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(17565, 1640, 'one thousand six hundred forty');\nINSERT INTO t2 VALUES(17566, 69530, 'sixty-nine thousand five hundred thirty');\nINSERT INTO t2 VALUES(17567, 3996, 'three thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(17568, 94782, 'ninety-four thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(17569, 64938, 'sixty-four thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(17570, 83231, 'eighty-three thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(17571, 96826, 'ninety-six thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(17572, 46506, 'forty-six thousand five hundred six');\nINSERT INTO t2 VALUES(17573, 91450, 'ninety-one thousand four hundred fifty');\nINSERT INTO t2 VALUES(17574, 55155, 'fifty-five thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(17575, 73726, 'seventy-three thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(17576, 42395, 'forty-two thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(17577, 33837, 'thirty-three thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(17578, 35891, 'thirty-five thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(17579, 80658, 'eighty thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(17580, 5275, 'five thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(17581, 34057, 'thirty-four thousand fifty-seven');\nINSERT INTO t2 VALUES(17582, 28571, 'twenty-eight thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(17583, 80810, 'eighty thousand eight hundred ten');\nINSERT INTO t2 VALUES(17584, 29970, 'twenty-nine thousand nine hundred seventy');\nINSERT INTO t2 VALUES(17585, 93375, 'ninety-three thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(17586, 60814, 'sixty thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(17587, 14497, 'fourteen thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(17588, 66959, 'sixty-six thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(17589, 94576, 'ninety-four thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(17590, 7204, 'seven thousand two hundred four');\nINSERT INTO t2 VALUES(17591, 58077, 'fifty-eight thousand seventy-seven');\nINSERT INTO t2 VALUES(17592, 69262, 'sixty-nine thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(17593, 39440, 'thirty-nine thousand four hundred forty');\nINSERT INTO t2 VALUES(17594, 5776, 'five thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(17595, 3577, 'three thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(17596, 62317, 'sixty-two thousand three hundred seventeen');\nINSERT INTO t2 VALUES(17597, 28699, 'twenty-eight thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(17598, 47334, 'forty-seven thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(17599, 7365, 'seven thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(17600, 32115, 'thirty-two thousand one hundred fifteen');\nINSERT INTO t2 VALUES(17601, 81957, 'eighty-one thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(17602, 95412, 'ninety-five thousand four hundred twelve');\nINSERT INTO t2 VALUES(17603, 57706, 'fifty-seven thousand seven hundred six');\nINSERT INTO t2 VALUES(17604, 43495, 'forty-three thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(17605, 7886, 'seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(17606, 84909, 'eighty-four thousand nine hundred nine');\nINSERT INTO t2 VALUES(17607, 62411, 'sixty-two thousand four hundred eleven');\nINSERT INTO t2 VALUES(17608, 2932, 'two thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(17609, 59963, 'fifty-nine thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(17610, 81409, 'eighty-one thousand four hundred nine');\nINSERT INTO t2 VALUES(17611, 39271, 'thirty-nine thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(17612, 68812, 'sixty-eight thousand eight hundred twelve');\nINSERT INTO t2 VALUES(17613, 86126, 'eighty-six thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(17614, 56839, 'fifty-six thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(17615, 97575, 'ninety-seven thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(17616, 20757, 'twenty thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(17617, 92670, 'ninety-two thousand six hundred seventy');\nINSERT INTO t2 VALUES(17618, 18335, 'eighteen thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(17619, 50036, 'fifty thousand thirty-six');\nINSERT INTO t2 VALUES(17620, 62174, 'sixty-two thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(17621, 28314, 'twenty-eight thousand three hundred fourteen');\nINSERT INTO t2 VALUES(17622, 89834, 'eighty-nine thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(17623, 30820, 'thirty thousand eight hundred twenty');\nINSERT INTO t2 VALUES(17624, 29684, 'twenty-nine thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(17625, 57920, 'fifty-seven thousand nine hundred twenty');\nINSERT INTO t2 VALUES(17626, 71996, 'seventy-one thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(17627, 86372, 'eighty-six thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(17628, 41908, 'forty-one thousand nine hundred eight');\nINSERT INTO t2 VALUES(17629, 64805, 'sixty-four thousand eight hundred five');\nINSERT INTO t2 VALUES(17630, 56776, 'fifty-six thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(17631, 77770, 'seventy-seven thousand seven hundred seventy');\nINSERT INTO t2 VALUES(17632, 2377, 'two thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(17633, 25462, 'twenty-five thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(17634, 43426, 'forty-three thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(17635, 56638, 'fifty-six thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(17636, 9466, 'nine thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(17637, 45623, 'forty-five thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(17638, 37195, 'thirty-seven thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(17639, 54882, 'fifty-four thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(17640, 88345, 'eighty-eight thousand three hundred forty-five');\nINSERT INTO t2 VALUES(17641, 47347, 'forty-seven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(17642, 95118, 'ninety-five thousand one hundred eighteen');\nINSERT INTO t2 VALUES(17643, 32358, 'thirty-two thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(17644, 90089, 'ninety thousand eighty-nine');\nINSERT INTO t2 VALUES(17645, 1529, 'one thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(17646, 35685, 'thirty-five thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(17647, 39437, 'thirty-nine thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(17648, 18190, 'eighteen thousand one hundred ninety');\nINSERT INTO t2 VALUES(17649, 38978, 'thirty-eight thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(17650, 1791, 'one thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(17651, 74754, 'seventy-four thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(17652, 91202, 'ninety-one thousand two hundred two');\nINSERT INTO t2 VALUES(17653, 21518, 'twenty-one thousand five hundred eighteen');\nINSERT INTO t2 VALUES(17654, 20430, 'twenty thousand four hundred thirty');\nINSERT INTO t2 VALUES(17655, 2415, 'two thousand four hundred fifteen');\nINSERT INTO t2 VALUES(17656, 92893, 'ninety-two thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(17657, 89810, 'eighty-nine thousand eight hundred ten');\nINSERT INTO t2 VALUES(17658, 11670, 'eleven thousand six hundred seventy');\nINSERT INTO t2 VALUES(17659, 86149, 'eighty-six thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(17660, 99042, 'ninety-nine thousand forty-two');\nINSERT INTO t2 VALUES(17661, 94584, 'ninety-four thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(17662, 86757, 'eighty-six thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(17663, 58473, 'fifty-eight thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(17664, 28482, 'twenty-eight thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(17665, 50879, 'fifty thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(17666, 88914, 'eighty-eight thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(17667, 49203, 'forty-nine thousand two hundred three');\nINSERT INTO t2 VALUES(17668, 69985, 'sixty-nine thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(17669, 67933, 'sixty-seven thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(17670, 50267, 'fifty thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(17671, 18242, 'eighteen thousand two hundred forty-two');\nINSERT INTO t2 VALUES(17672, 28220, 'twenty-eight thousand two hundred twenty');\nINSERT INTO t2 VALUES(17673, 8581, 'eight thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(17674, 31099, 'thirty-one thousand ninety-nine');\nINSERT INTO t2 VALUES(17675, 1358, 'one thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(17676, 94548, 'ninety-four thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(17677, 56710, 'fifty-six thousand seven hundred ten');\nINSERT INTO t2 VALUES(17678, 50616, 'fifty thousand six hundred sixteen');\nINSERT INTO t2 VALUES(17679, 40611, 'forty thousand six hundred eleven');\nINSERT INTO t2 VALUES(17680, 30701, 'thirty thousand seven hundred one');\nINSERT INTO t2 VALUES(17681, 6558, 'six thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(17682, 10011, 'ten thousand eleven');\nINSERT INTO t2 VALUES(17683, 64410, 'sixty-four thousand four hundred ten');\nINSERT INTO t2 VALUES(17684, 22672, 'twenty-two thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(17685, 62046, 'sixty-two thousand forty-six');\nINSERT INTO t2 VALUES(17686, 73322, 'seventy-three thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(17687, 35780, 'thirty-five thousand seven hundred eighty');\nINSERT INTO t2 VALUES(17688, 21756, 'twenty-one thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(17689, 86908, 'eighty-six thousand nine hundred eight');\nINSERT INTO t2 VALUES(17690, 82599, 'eighty-two thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(17691, 83141, 'eighty-three thousand one hundred forty-one');\nINSERT INTO t2 VALUES(17692, 91794, 'ninety-one thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(17693, 58591, 'fifty-eight thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(17694, 20080, 'twenty thousand eighty');\nINSERT INTO t2 VALUES(17695, 80911, 'eighty thousand nine hundred eleven');\nINSERT INTO t2 VALUES(17696, 77428, 'seventy-seven thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(17697, 90445, 'ninety thousand four hundred forty-five');\nINSERT INTO t2 VALUES(17698, 19983, 'nineteen thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(17699, 93323, 'ninety-three thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(17700, 30613, 'thirty thousand six hundred thirteen');\nINSERT INTO t2 VALUES(17701, 48193, 'forty-eight thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(17702, 12920, 'twelve thousand nine hundred twenty');\nINSERT INTO t2 VALUES(17703, 97445, 'ninety-seven thousand four hundred forty-five');\nINSERT INTO t2 VALUES(17704, 22573, 'twenty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(17705, 56968, 'fifty-six thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(17706, 27375, 'twenty-seven thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(17707, 56745, 'fifty-six thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(17708, 86035, 'eighty-six thousand thirty-five');\nINSERT INTO t2 VALUES(17709, 70811, 'seventy thousand eight hundred eleven');\nINSERT INTO t2 VALUES(17710, 48482, 'forty-eight thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(17711, 34173, 'thirty-four thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(17712, 39888, 'thirty-nine thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(17713, 41643, 'forty-one thousand six hundred forty-three');\nINSERT INTO t2 VALUES(17714, 13073, 'thirteen thousand seventy-three');\nINSERT INTO t2 VALUES(17715, 71444, 'seventy-one thousand four hundred forty-four');\nINSERT INTO t2 VALUES(17716, 76947, 'seventy-six thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(17717, 94255, 'ninety-four thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(17718, 8891, 'eight thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(17719, 17896, 'seventeen thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(17720, 85157, 'eighty-five thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(17721, 54433, 'fifty-four thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(17722, 85159, 'eighty-five thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(17723, 33390, 'thirty-three thousand three hundred ninety');\nINSERT INTO t2 VALUES(17724, 47652, 'forty-seven thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(17725, 50918, 'fifty thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(17726, 47557, 'forty-seven thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(17727, 20422, 'twenty thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(17728, 95736, 'ninety-five thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(17729, 67572, 'sixty-seven thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(17730, 22268, 'twenty-two thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(17731, 47115, 'forty-seven thousand one hundred fifteen');\nINSERT INTO t2 VALUES(17732, 248, 'two hundred forty-eight');\nINSERT INTO t2 VALUES(17733, 42577, 'forty-two thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(17734, 11162, 'eleven thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(17735, 27281, 'twenty-seven thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(17736, 76521, 'seventy-six thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(17737, 49789, 'forty-nine thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(17738, 87521, 'eighty-seven thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(17739, 42104, 'forty-two thousand one hundred four');\nINSERT INTO t2 VALUES(17740, 67454, 'sixty-seven thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(17741, 37768, 'thirty-seven thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(17742, 65332, 'sixty-five thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(17743, 67693, 'sixty-seven thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(17744, 20146, 'twenty thousand one hundred forty-six');\nINSERT INTO t2 VALUES(17745, 40333, 'forty thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(17746, 40196, 'forty thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(17747, 60754, 'sixty thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(17748, 35794, 'thirty-five thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(17749, 34985, 'thirty-four thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(17750, 10447, 'ten thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(17751, 9496, 'nine thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(17752, 68533, 'sixty-eight thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(17753, 38678, 'thirty-eight thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(17754, 27527, 'twenty-seven thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(17755, 15490, 'fifteen thousand four hundred ninety');\nINSERT INTO t2 VALUES(17756, 3588, 'three thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(17757, 33010, 'thirty-three thousand ten');\nINSERT INTO t2 VALUES(17758, 96746, 'ninety-six thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(17759, 27566, 'twenty-seven thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(17760, 11148, 'eleven thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(17761, 25407, 'twenty-five thousand four hundred seven');\nINSERT INTO t2 VALUES(17762, 1267, 'one thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(17763, 72450, 'seventy-two thousand four hundred fifty');\nINSERT INTO t2 VALUES(17764, 72779, 'seventy-two thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(17765, 18050, 'eighteen thousand fifty');\nINSERT INTO t2 VALUES(17766, 89190, 'eighty-nine thousand one hundred ninety');\nINSERT INTO t2 VALUES(17767, 93864, 'ninety-three thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(17768, 56843, 'fifty-six thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(17769, 50247, 'fifty thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(17770, 5133, 'five thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(17771, 25791, 'twenty-five thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(17772, 27109, 'twenty-seven thousand one hundred nine');\nINSERT INTO t2 VALUES(17773, 40378, 'forty thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(17774, 41441, 'forty-one thousand four hundred forty-one');\nINSERT INTO t2 VALUES(17775, 96991, 'ninety-six thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(17776, 59920, 'fifty-nine thousand nine hundred twenty');\nINSERT INTO t2 VALUES(17777, 40919, 'forty thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(17778, 28516, 'twenty-eight thousand five hundred sixteen');\nINSERT INTO t2 VALUES(17779, 31281, 'thirty-one thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(17780, 29335, 'twenty-nine thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(17781, 52496, 'fifty-two thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(17782, 88620, 'eighty-eight thousand six hundred twenty');\nINSERT INTO t2 VALUES(17783, 36927, 'thirty-six thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(17784, 10315, 'ten thousand three hundred fifteen');\nINSERT INTO t2 VALUES(17785, 34723, 'thirty-four thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(17786, 62596, 'sixty-two thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(17787, 14434, 'fourteen thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(17788, 53148, 'fifty-three thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(17789, 55478, 'fifty-five thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(17790, 63181, 'sixty-three thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(17791, 81577, 'eighty-one thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(17792, 62462, 'sixty-two thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(17793, 6561, 'six thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(17794, 57054, 'fifty-seven thousand fifty-four');\nINSERT INTO t2 VALUES(17795, 50885, 'fifty thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(17796, 27445, 'twenty-seven thousand four hundred forty-five');\nINSERT INTO t2 VALUES(17797, 39053, 'thirty-nine thousand fifty-three');\nINSERT INTO t2 VALUES(17798, 61207, 'sixty-one thousand two hundred seven');\nINSERT INTO t2 VALUES(17799, 43877, 'forty-three thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(17800, 36530, 'thirty-six thousand five hundred thirty');\nINSERT INTO t2 VALUES(17801, 10200, 'ten thousand two hundred');\nINSERT INTO t2 VALUES(17802, 79093, 'seventy-nine thousand ninety-three');\nINSERT INTO t2 VALUES(17803, 87354, 'eighty-seven thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(17804, 29405, 'twenty-nine thousand four hundred five');\nINSERT INTO t2 VALUES(17805, 7329, 'seven thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(17806, 78214, 'seventy-eight thousand two hundred fourteen');\nINSERT INTO t2 VALUES(17807, 65092, 'sixty-five thousand ninety-two');\nINSERT INTO t2 VALUES(17808, 94549, 'ninety-four thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(17809, 30555, 'thirty thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(17810, 65847, 'sixty-five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(17811, 54402, 'fifty-four thousand four hundred two');\nINSERT INTO t2 VALUES(17812, 86122, 'eighty-six thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(17813, 64421, 'sixty-four thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(17814, 12171, 'twelve thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(17815, 3917, 'three thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(17816, 13016, 'thirteen thousand sixteen');\nINSERT INTO t2 VALUES(17817, 37537, 'thirty-seven thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(17818, 32908, 'thirty-two thousand nine hundred eight');\nINSERT INTO t2 VALUES(17819, 49325, 'forty-nine thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(17820, 97279, 'ninety-seven thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(17821, 63860, 'sixty-three thousand eight hundred sixty');\nINSERT INTO t2 VALUES(17822, 13388, 'thirteen thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(17823, 26429, 'twenty-six thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(17824, 22111, 'twenty-two thousand one hundred eleven');\nINSERT INTO t2 VALUES(17825, 74317, 'seventy-four thousand three hundred seventeen');\nINSERT INTO t2 VALUES(17826, 82535, 'eighty-two thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(17827, 32396, 'thirty-two thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(17828, 15348, 'fifteen thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(17829, 55403, 'fifty-five thousand four hundred three');\nINSERT INTO t2 VALUES(17830, 16606, 'sixteen thousand six hundred six');\nINSERT INTO t2 VALUES(17831, 32068, 'thirty-two thousand sixty-eight');\nINSERT INTO t2 VALUES(17832, 82729, 'eighty-two thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(17833, 40022, 'forty thousand twenty-two');\nINSERT INTO t2 VALUES(17834, 24520, 'twenty-four thousand five hundred twenty');\nINSERT INTO t2 VALUES(17835, 32486, 'thirty-two thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(17836, 70518, 'seventy thousand five hundred eighteen');\nINSERT INTO t2 VALUES(17837, 23219, 'twenty-three thousand two hundred nineteen');\nINSERT INTO t2 VALUES(17838, 37991, 'thirty-seven thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(17839, 67004, 'sixty-seven thousand four');\nINSERT INTO t2 VALUES(17840, 77068, 'seventy-seven thousand sixty-eight');\nINSERT INTO t2 VALUES(17841, 872, 'eight hundred seventy-two');\nINSERT INTO t2 VALUES(17842, 56930, 'fifty-six thousand nine hundred thirty');\nINSERT INTO t2 VALUES(17843, 32275, 'thirty-two thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(17844, 45873, 'forty-five thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(17845, 90608, 'ninety thousand six hundred eight');\nINSERT INTO t2 VALUES(17846, 64738, 'sixty-four thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(17847, 53831, 'fifty-three thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(17848, 52433, 'fifty-two thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(17849, 43735, 'forty-three thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(17850, 14348, 'fourteen thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(17851, 10042, 'ten thousand forty-two');\nINSERT INTO t2 VALUES(17852, 20370, 'twenty thousand three hundred seventy');\nINSERT INTO t2 VALUES(17853, 90275, 'ninety thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(17854, 22466, 'twenty-two thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(17855, 52097, 'fifty-two thousand ninety-seven');\nINSERT INTO t2 VALUES(17856, 37542, 'thirty-seven thousand five hundred forty-two');\nINSERT INTO t2 VALUES(17857, 62769, 'sixty-two thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(17858, 51605, 'fifty-one thousand six hundred five');\nINSERT INTO t2 VALUES(17859, 29792, 'twenty-nine thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(17860, 90454, 'ninety thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(17861, 95382, 'ninety-five thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(17862, 27144, 'twenty-seven thousand one hundred forty-four');\nINSERT INTO t2 VALUES(17863, 66977, 'sixty-six thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(17864, 94268, 'ninety-four thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(17865, 13611, 'thirteen thousand six hundred eleven');\nINSERT INTO t2 VALUES(17866, 71186, 'seventy-one thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(17867, 64571, 'sixty-four thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(17868, 58990, 'fifty-eight thousand nine hundred ninety');\nINSERT INTO t2 VALUES(17869, 157, 'one hundred fifty-seven');\nINSERT INTO t2 VALUES(17870, 10606, 'ten thousand six hundred six');\nINSERT INTO t2 VALUES(17871, 74402, 'seventy-four thousand four hundred two');\nINSERT INTO t2 VALUES(17872, 11844, 'eleven thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(17873, 25479, 'twenty-five thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(17874, 33863, 'thirty-three thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(17875, 32873, 'thirty-two thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(17876, 65041, 'sixty-five thousand forty-one');\nINSERT INTO t2 VALUES(17877, 14210, 'fourteen thousand two hundred ten');\nINSERT INTO t2 VALUES(17878, 11718, 'eleven thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(17879, 83333, 'eighty-three thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(17880, 2636, 'two thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(17881, 61898, 'sixty-one thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(17882, 77091, 'seventy-seven thousand ninety-one');\nINSERT INTO t2 VALUES(17883, 63332, 'sixty-three thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(17884, 12141, 'twelve thousand one hundred forty-one');\nINSERT INTO t2 VALUES(17885, 49258, 'forty-nine thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(17886, 97641, 'ninety-seven thousand six hundred forty-one');\nINSERT INTO t2 VALUES(17887, 96816, 'ninety-six thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(17888, 53313, 'fifty-three thousand three hundred thirteen');\nINSERT INTO t2 VALUES(17889, 80779, 'eighty thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(17890, 487, 'four hundred eighty-seven');\nINSERT INTO t2 VALUES(17891, 42645, 'forty-two thousand six hundred forty-five');\nINSERT INTO t2 VALUES(17892, 23915, 'twenty-three thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(17893, 60290, 'sixty thousand two hundred ninety');\nINSERT INTO t2 VALUES(17894, 70154, 'seventy thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(17895, 36921, 'thirty-six thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(17896, 46074, 'forty-six thousand seventy-four');\nINSERT INTO t2 VALUES(17897, 76865, 'seventy-six thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(17898, 38338, 'thirty-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(17899, 71718, 'seventy-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(17900, 14949, 'fourteen thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(17901, 60348, 'sixty thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(17902, 12581, 'twelve thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(17903, 67406, 'sixty-seven thousand four hundred six');\nINSERT INTO t2 VALUES(17904, 43194, 'forty-three thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(17905, 21354, 'twenty-one thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(17906, 59475, 'fifty-nine thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(17907, 97593, 'ninety-seven thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(17908, 47316, 'forty-seven thousand three hundred sixteen');\nINSERT INTO t2 VALUES(17909, 20038, 'twenty thousand thirty-eight');\nINSERT INTO t2 VALUES(17910, 10123, 'ten thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(17911, 65713, 'sixty-five thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(17912, 78976, 'seventy-eight thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(17913, 87792, 'eighty-seven thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(17914, 65029, 'sixty-five thousand twenty-nine');\nINSERT INTO t2 VALUES(17915, 34278, 'thirty-four thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(17916, 16956, 'sixteen thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(17917, 58622, 'fifty-eight thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(17918, 26614, 'twenty-six thousand six hundred fourteen');\nINSERT INTO t2 VALUES(17919, 63734, 'sixty-three thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(17920, 45065, 'forty-five thousand sixty-five');\nINSERT INTO t2 VALUES(17921, 64259, 'sixty-four thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(17922, 57639, 'fifty-seven thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(17923, 29609, 'twenty-nine thousand six hundred nine');\nINSERT INTO t2 VALUES(17924, 21771, 'twenty-one thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(17925, 88757, 'eighty-eight thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(17926, 52284, 'fifty-two thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(17927, 1777, 'one thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(17928, 152, 'one hundred fifty-two');\nINSERT INTO t2 VALUES(17929, 21701, 'twenty-one thousand seven hundred one');\nINSERT INTO t2 VALUES(17930, 5853, 'five thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(17931, 46708, 'forty-six thousand seven hundred eight');\nINSERT INTO t2 VALUES(17932, 69319, 'sixty-nine thousand three hundred nineteen');\nINSERT INTO t2 VALUES(17933, 42168, 'forty-two thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(17934, 58380, 'fifty-eight thousand three hundred eighty');\nINSERT INTO t2 VALUES(17935, 39463, 'thirty-nine thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(17936, 44739, 'forty-four thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(17937, 23642, 'twenty-three thousand six hundred forty-two');\nINSERT INTO t2 VALUES(17938, 18211, 'eighteen thousand two hundred eleven');\nINSERT INTO t2 VALUES(17939, 56881, 'fifty-six thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(17940, 52282, 'fifty-two thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(17941, 95481, 'ninety-five thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(17942, 99683, 'ninety-nine thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(17943, 35120, 'thirty-five thousand one hundred twenty');\nINSERT INTO t2 VALUES(17944, 20986, 'twenty thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(17945, 52171, 'fifty-two thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(17946, 94489, 'ninety-four thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(17947, 97093, 'ninety-seven thousand ninety-three');\nINSERT INTO t2 VALUES(17948, 86752, 'eighty-six thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(17949, 80924, 'eighty thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(17950, 50412, 'fifty thousand four hundred twelve');\nINSERT INTO t2 VALUES(17951, 38262, 'thirty-eight thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(17952, 40808, 'forty thousand eight hundred eight');\nINSERT INTO t2 VALUES(17953, 92467, 'ninety-two thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(17954, 53853, 'fifty-three thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(17955, 5696, 'five thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(17956, 37384, 'thirty-seven thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(17957, 99104, 'ninety-nine thousand one hundred four');\nINSERT INTO t2 VALUES(17958, 63154, 'sixty-three thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(17959, 68905, 'sixty-eight thousand nine hundred five');\nINSERT INTO t2 VALUES(17960, 72986, 'seventy-two thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(17961, 9729, 'nine thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(17962, 78016, 'seventy-eight thousand sixteen');\nINSERT INTO t2 VALUES(17963, 99492, 'ninety-nine thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(17964, 35081, 'thirty-five thousand eighty-one');\nINSERT INTO t2 VALUES(17965, 39297, 'thirty-nine thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(17966, 81024, 'eighty-one thousand twenty-four');\nINSERT INTO t2 VALUES(17967, 3950, 'three thousand nine hundred fifty');\nINSERT INTO t2 VALUES(17968, 45067, 'forty-five thousand sixty-seven');\nINSERT INTO t2 VALUES(17969, 52812, 'fifty-two thousand eight hundred twelve');\nINSERT INTO t2 VALUES(17970, 55743, 'fifty-five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(17971, 69439, 'sixty-nine thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(17972, 52771, 'fifty-two thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(17973, 70455, 'seventy thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(17974, 3820, 'three thousand eight hundred twenty');\nINSERT INTO t2 VALUES(17975, 91813, 'ninety-one thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(17976, 69818, 'sixty-nine thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(17977, 55919, 'fifty-five thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(17978, 98893, 'ninety-eight thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(17979, 64366, 'sixty-four thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(17980, 82159, 'eighty-two thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(17981, 55522, 'fifty-five thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(17982, 91460, 'ninety-one thousand four hundred sixty');\nINSERT INTO t2 VALUES(17983, 8503, 'eight thousand five hundred three');\nINSERT INTO t2 VALUES(17984, 3069, 'three thousand sixty-nine');\nINSERT INTO t2 VALUES(17985, 67114, 'sixty-seven thousand one hundred fourteen');\nINSERT INTO t2 VALUES(17986, 37930, 'thirty-seven thousand nine hundred thirty');\nINSERT INTO t2 VALUES(17987, 8077, 'eight thousand seventy-seven');\nINSERT INTO t2 VALUES(17988, 89288, 'eighty-nine thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(17989, 67341, 'sixty-seven thousand three hundred forty-one');\nINSERT INTO t2 VALUES(17990, 35574, 'thirty-five thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(17991, 75908, 'seventy-five thousand nine hundred eight');\nINSERT INTO t2 VALUES(17992, 60655, 'sixty thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(17993, 93094, 'ninety-three thousand ninety-four');\nINSERT INTO t2 VALUES(17994, 5406, 'five thousand four hundred six');\nINSERT INTO t2 VALUES(17995, 58503, 'fifty-eight thousand five hundred three');\nINSERT INTO t2 VALUES(17996, 33109, 'thirty-three thousand one hundred nine');\nINSERT INTO t2 VALUES(17997, 52908, 'fifty-two thousand nine hundred eight');\nINSERT INTO t2 VALUES(17998, 78264, 'seventy-eight thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(17999, 19820, 'nineteen thousand eight hundred twenty');\nINSERT INTO t2 VALUES(18000, 69222, 'sixty-nine thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(18001, 11344, 'eleven thousand three hundred forty-four');\nINSERT INTO t2 VALUES(18002, 16549, 'sixteen thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(18003, 32202, 'thirty-two thousand two hundred two');\nINSERT INTO t2 VALUES(18004, 71942, 'seventy-one thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(18005, 82521, 'eighty-two thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(18006, 68078, 'sixty-eight thousand seventy-eight');\nINSERT INTO t2 VALUES(18007, 65688, 'sixty-five thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(18008, 49403, 'forty-nine thousand four hundred three');\nINSERT INTO t2 VALUES(18009, 77360, 'seventy-seven thousand three hundred sixty');\nINSERT INTO t2 VALUES(18010, 18164, 'eighteen thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(18011, 73993, 'seventy-three thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(18012, 19775, 'nineteen thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(18013, 69957, 'sixty-nine thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(18014, 33962, 'thirty-three thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(18015, 82716, 'eighty-two thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(18016, 29186, 'twenty-nine thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(18017, 67157, 'sixty-seven thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(18018, 49874, 'forty-nine thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(18019, 66754, 'sixty-six thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(18020, 66623, 'sixty-six thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(18021, 64804, 'sixty-four thousand eight hundred four');\nINSERT INTO t2 VALUES(18022, 64670, 'sixty-four thousand six hundred seventy');\nINSERT INTO t2 VALUES(18023, 8471, 'eight thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(18024, 53459, 'fifty-three thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(18025, 61326, 'sixty-one thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(18026, 47055, 'forty-seven thousand fifty-five');\nINSERT INTO t2 VALUES(18027, 240, 'two hundred forty');\nINSERT INTO t2 VALUES(18028, 79895, 'seventy-nine thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(18029, 8113, 'eight thousand one hundred thirteen');\nINSERT INTO t2 VALUES(18030, 31497, 'thirty-one thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(18031, 41529, 'forty-one thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(18032, 98580, 'ninety-eight thousand five hundred eighty');\nINSERT INTO t2 VALUES(18033, 32902, 'thirty-two thousand nine hundred two');\nINSERT INTO t2 VALUES(18034, 31551, 'thirty-one thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(18035, 57650, 'fifty-seven thousand six hundred fifty');\nINSERT INTO t2 VALUES(18036, 91597, 'ninety-one thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(18037, 70813, 'seventy thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(18038, 96030, 'ninety-six thousand thirty');\nINSERT INTO t2 VALUES(18039, 94049, 'ninety-four thousand forty-nine');\nINSERT INTO t2 VALUES(18040, 14632, 'fourteen thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(18041, 86333, 'eighty-six thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(18042, 49202, 'forty-nine thousand two hundred two');\nINSERT INTO t2 VALUES(18043, 12388, 'twelve thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(18044, 89225, 'eighty-nine thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(18045, 69657, 'sixty-nine thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(18046, 48643, 'forty-eight thousand six hundred forty-three');\nINSERT INTO t2 VALUES(18047, 98850, 'ninety-eight thousand eight hundred fifty');\nINSERT INTO t2 VALUES(18048, 51890, 'fifty-one thousand eight hundred ninety');\nINSERT INTO t2 VALUES(18049, 25730, 'twenty-five thousand seven hundred thirty');\nINSERT INTO t2 VALUES(18050, 13491, 'thirteen thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(18051, 29215, 'twenty-nine thousand two hundred fifteen');\nINSERT INTO t2 VALUES(18052, 75378, 'seventy-five thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(18053, 12394, 'twelve thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(18054, 62517, 'sixty-two thousand five hundred seventeen');\nINSERT INTO t2 VALUES(18055, 21796, 'twenty-one thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(18056, 92824, 'ninety-two thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(18057, 83018, 'eighty-three thousand eighteen');\nINSERT INTO t2 VALUES(18058, 84938, 'eighty-four thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(18059, 73132, 'seventy-three thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(18060, 82761, 'eighty-two thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(18061, 10641, 'ten thousand six hundred forty-one');\nINSERT INTO t2 VALUES(18062, 92567, 'ninety-two thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(18063, 99559, 'ninety-nine thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(18064, 53723, 'fifty-three thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(18065, 31493, 'thirty-one thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(18066, 10340, 'ten thousand three hundred forty');\nINSERT INTO t2 VALUES(18067, 28405, 'twenty-eight thousand four hundred five');\nINSERT INTO t2 VALUES(18068, 59210, 'fifty-nine thousand two hundred ten');\nINSERT INTO t2 VALUES(18069, 98540, 'ninety-eight thousand five hundred forty');\nINSERT INTO t2 VALUES(18070, 70488, 'seventy thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(18071, 67152, 'sixty-seven thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(18072, 5995, 'five thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(18073, 41583, 'forty-one thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(18074, 15155, 'fifteen thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(18075, 7412, 'seven thousand four hundred twelve');\nINSERT INTO t2 VALUES(18076, 83748, 'eighty-three thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(18077, 80117, 'eighty thousand one hundred seventeen');\nINSERT INTO t2 VALUES(18078, 86084, 'eighty-six thousand eighty-four');\nINSERT INTO t2 VALUES(18079, 39231, 'thirty-nine thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(18080, 82455, 'eighty-two thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(18081, 13541, 'thirteen thousand five hundred forty-one');\nINSERT INTO t2 VALUES(18082, 71737, 'seventy-one thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(18083, 34045, 'thirty-four thousand forty-five');\nINSERT INTO t2 VALUES(18084, 56671, 'fifty-six thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(18085, 40559, 'forty thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(18086, 40852, 'forty thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(18087, 31524, 'thirty-one thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(18088, 36714, 'thirty-six thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(18089, 77971, 'seventy-seven thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(18090, 46440, 'forty-six thousand four hundred forty');\nINSERT INTO t2 VALUES(18091, 83734, 'eighty-three thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(18092, 28864, 'twenty-eight thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(18093, 87334, 'eighty-seven thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(18094, 59821, 'fifty-nine thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(18095, 58367, 'fifty-eight thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(18096, 57033, 'fifty-seven thousand thirty-three');\nINSERT INTO t2 VALUES(18097, 77686, 'seventy-seven thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(18098, 31095, 'thirty-one thousand ninety-five');\nINSERT INTO t2 VALUES(18099, 83822, 'eighty-three thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(18100, 38240, 'thirty-eight thousand two hundred forty');\nINSERT INTO t2 VALUES(18101, 69205, 'sixty-nine thousand two hundred five');\nINSERT INTO t2 VALUES(18102, 69114, 'sixty-nine thousand one hundred fourteen');\nINSERT INTO t2 VALUES(18103, 83844, 'eighty-three thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(18104, 25945, 'twenty-five thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(18105, 16850, 'sixteen thousand eight hundred fifty');\nINSERT INTO t2 VALUES(18106, 35607, 'thirty-five thousand six hundred seven');\nINSERT INTO t2 VALUES(18107, 29803, 'twenty-nine thousand eight hundred three');\nINSERT INTO t2 VALUES(18108, 52399, 'fifty-two thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(18109, 52957, 'fifty-two thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(18110, 86802, 'eighty-six thousand eight hundred two');\nINSERT INTO t2 VALUES(18111, 32652, 'thirty-two thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(18112, 23084, 'twenty-three thousand eighty-four');\nINSERT INTO t2 VALUES(18113, 24066, 'twenty-four thousand sixty-six');\nINSERT INTO t2 VALUES(18114, 37875, 'thirty-seven thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(18115, 77684, 'seventy-seven thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(18116, 22519, 'twenty-two thousand five hundred nineteen');\nINSERT INTO t2 VALUES(18117, 66477, 'sixty-six thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(18118, 11312, 'eleven thousand three hundred twelve');\nINSERT INTO t2 VALUES(18119, 42113, 'forty-two thousand one hundred thirteen');\nINSERT INTO t2 VALUES(18120, 10071, 'ten thousand seventy-one');\nINSERT INTO t2 VALUES(18121, 78343, 'seventy-eight thousand three hundred forty-three');\nINSERT INTO t2 VALUES(18122, 76358, 'seventy-six thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(18123, 38064, 'thirty-eight thousand sixty-four');\nINSERT INTO t2 VALUES(18124, 5225, 'five thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(18125, 75410, 'seventy-five thousand four hundred ten');\nINSERT INTO t2 VALUES(18126, 22516, 'twenty-two thousand five hundred sixteen');\nINSERT INTO t2 VALUES(18127, 94831, 'ninety-four thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(18128, 68601, 'sixty-eight thousand six hundred one');\nINSERT INTO t2 VALUES(18129, 40943, 'forty thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(18130, 71809, 'seventy-one thousand eight hundred nine');\nINSERT INTO t2 VALUES(18131, 49824, 'forty-nine thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(18132, 34991, 'thirty-four thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(18133, 28434, 'twenty-eight thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(18134, 839, 'eight hundred thirty-nine');\nINSERT INTO t2 VALUES(18135, 40123, 'forty thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(18136, 52661, 'fifty-two thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(18137, 68593, 'sixty-eight thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(18138, 79340, 'seventy-nine thousand three hundred forty');\nINSERT INTO t2 VALUES(18139, 96850, 'ninety-six thousand eight hundred fifty');\nINSERT INTO t2 VALUES(18140, 19722, 'nineteen thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(18141, 81963, 'eighty-one thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(18142, 42237, 'forty-two thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(18143, 53259, 'fifty-three thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(18144, 8696, 'eight thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(18145, 89432, 'eighty-nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(18146, 34865, 'thirty-four thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(18147, 778, 'seven hundred seventy-eight');\nINSERT INTO t2 VALUES(18148, 3752, 'three thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(18149, 80337, 'eighty thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(18150, 60257, 'sixty thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(18151, 12644, 'twelve thousand six hundred forty-four');\nINSERT INTO t2 VALUES(18152, 22016, 'twenty-two thousand sixteen');\nINSERT INTO t2 VALUES(18153, 41847, 'forty-one thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(18154, 55242, 'fifty-five thousand two hundred forty-two');\nINSERT INTO t2 VALUES(18155, 77675, 'seventy-seven thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(18156, 93515, 'ninety-three thousand five hundred fifteen');\nINSERT INTO t2 VALUES(18157, 19247, 'nineteen thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(18158, 31076, 'thirty-one thousand seventy-six');\nINSERT INTO t2 VALUES(18159, 57615, 'fifty-seven thousand six hundred fifteen');\nINSERT INTO t2 VALUES(18160, 6157, 'six thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(18161, 7705, 'seven thousand seven hundred five');\nINSERT INTO t2 VALUES(18162, 45019, 'forty-five thousand nineteen');\nINSERT INTO t2 VALUES(18163, 52243, 'fifty-two thousand two hundred forty-three');\nINSERT INTO t2 VALUES(18164, 72361, 'seventy-two thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(18165, 28395, 'twenty-eight thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(18166, 17535, 'seventeen thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(18167, 99667, 'ninety-nine thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(18168, 51057, 'fifty-one thousand fifty-seven');\nINSERT INTO t2 VALUES(18169, 65821, 'sixty-five thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(18170, 35024, 'thirty-five thousand twenty-four');\nINSERT INTO t2 VALUES(18171, 28036, 'twenty-eight thousand thirty-six');\nINSERT INTO t2 VALUES(18172, 9423, 'nine thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(18173, 676, 'six hundred seventy-six');\nINSERT INTO t2 VALUES(18174, 1979, 'one thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(18175, 92631, 'ninety-two thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(18176, 587, 'five hundred eighty-seven');\nINSERT INTO t2 VALUES(18177, 53312, 'fifty-three thousand three hundred twelve');\nINSERT INTO t2 VALUES(18178, 86244, 'eighty-six thousand two hundred forty-four');\nINSERT INTO t2 VALUES(18179, 47708, 'forty-seven thousand seven hundred eight');\nINSERT INTO t2 VALUES(18180, 69902, 'sixty-nine thousand nine hundred two');\nINSERT INTO t2 VALUES(18181, 18642, 'eighteen thousand six hundred forty-two');\nINSERT INTO t2 VALUES(18182, 3677, 'three thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(18183, 48693, 'forty-eight thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(18184, 54616, 'fifty-four thousand six hundred sixteen');\nINSERT INTO t2 VALUES(18185, 44953, 'forty-four thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(18186, 26769, 'twenty-six thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(18187, 88681, 'eighty-eight thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(18188, 13297, 'thirteen thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(18189, 2813, 'two thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(18190, 99334, 'ninety-nine thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(18191, 35489, 'thirty-five thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(18192, 83455, 'eighty-three thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(18193, 74751, 'seventy-four thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(18194, 31216, 'thirty-one thousand two hundred sixteen');\nINSERT INTO t2 VALUES(18195, 41458, 'forty-one thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(18196, 22365, 'twenty-two thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(18197, 28797, 'twenty-eight thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(18198, 70043, 'seventy thousand forty-three');\nINSERT INTO t2 VALUES(18199, 34360, 'thirty-four thousand three hundred sixty');\nINSERT INTO t2 VALUES(18200, 84768, 'eighty-four thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(18201, 1763, 'one thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(18202, 17630, 'seventeen thousand six hundred thirty');\nINSERT INTO t2 VALUES(18203, 94790, 'ninety-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(18204, 52108, 'fifty-two thousand one hundred eight');\nINSERT INTO t2 VALUES(18205, 78884, 'seventy-eight thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(18206, 25468, 'twenty-five thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(18207, 6545, 'six thousand five hundred forty-five');\nINSERT INTO t2 VALUES(18208, 46144, 'forty-six thousand one hundred forty-four');\nINSERT INTO t2 VALUES(18209, 68943, 'sixty-eight thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(18210, 85902, 'eighty-five thousand nine hundred two');\nINSERT INTO t2 VALUES(18211, 36142, 'thirty-six thousand one hundred forty-two');\nINSERT INTO t2 VALUES(18212, 18879, 'eighteen thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(18213, 49729, 'forty-nine thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(18214, 77988, 'seventy-seven thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(18215, 54039, 'fifty-four thousand thirty-nine');\nINSERT INTO t2 VALUES(18216, 49744, 'forty-nine thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(18217, 36567, 'thirty-six thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(18218, 95884, 'ninety-five thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(18219, 36545, 'thirty-six thousand five hundred forty-five');\nINSERT INTO t2 VALUES(18220, 17832, 'seventeen thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(18221, 4554, 'four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(18222, 91185, 'ninety-one thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(18223, 36481, 'thirty-six thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(18224, 91760, 'ninety-one thousand seven hundred sixty');\nINSERT INTO t2 VALUES(18225, 18298, 'eighteen thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(18226, 274, 'two hundred seventy-four');\nINSERT INTO t2 VALUES(18227, 19481, 'nineteen thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(18228, 87851, 'eighty-seven thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(18229, 29251, 'twenty-nine thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(18230, 67116, 'sixty-seven thousand one hundred sixteen');\nINSERT INTO t2 VALUES(18231, 17167, 'seventeen thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(18232, 45900, 'forty-five thousand nine hundred');\nINSERT INTO t2 VALUES(18233, 10692, 'ten thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(18234, 40811, 'forty thousand eight hundred eleven');\nINSERT INTO t2 VALUES(18235, 72354, 'seventy-two thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(18236, 71532, 'seventy-one thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(18237, 16272, 'sixteen thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(18238, 4062, 'four thousand sixty-two');\nINSERT INTO t2 VALUES(18239, 20263, 'twenty thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(18240, 81813, 'eighty-one thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(18241, 16476, 'sixteen thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(18242, 75110, 'seventy-five thousand one hundred ten');\nINSERT INTO t2 VALUES(18243, 99463, 'ninety-nine thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(18244, 73235, 'seventy-three thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(18245, 45277, 'forty-five thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(18246, 9513, 'nine thousand five hundred thirteen');\nINSERT INTO t2 VALUES(18247, 18211, 'eighteen thousand two hundred eleven');\nINSERT INTO t2 VALUES(18248, 91367, 'ninety-one thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(18249, 5333, 'five thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(18250, 18915, 'eighteen thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(18251, 5699, 'five thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(18252, 40111, 'forty thousand one hundred eleven');\nINSERT INTO t2 VALUES(18253, 85893, 'eighty-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(18254, 41574, 'forty-one thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(18255, 84297, 'eighty-four thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(18256, 27290, 'twenty-seven thousand two hundred ninety');\nINSERT INTO t2 VALUES(18257, 69072, 'sixty-nine thousand seventy-two');\nINSERT INTO t2 VALUES(18258, 10164, 'ten thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(18259, 6548, 'six thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(18260, 20490, 'twenty thousand four hundred ninety');\nINSERT INTO t2 VALUES(18261, 67949, 'sixty-seven thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(18262, 87172, 'eighty-seven thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(18263, 8892, 'eight thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(18264, 3556, 'three thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(18265, 46688, 'forty-six thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(18266, 87914, 'eighty-seven thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(18267, 84136, 'eighty-four thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(18268, 71777, 'seventy-one thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(18269, 94267, 'ninety-four thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(18270, 63858, 'sixty-three thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(18271, 92642, 'ninety-two thousand six hundred forty-two');\nINSERT INTO t2 VALUES(18272, 14729, 'fourteen thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(18273, 98973, 'ninety-eight thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(18274, 48860, 'forty-eight thousand eight hundred sixty');\nINSERT INTO t2 VALUES(18275, 37651, 'thirty-seven thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(18276, 69811, 'sixty-nine thousand eight hundred eleven');\nINSERT INTO t2 VALUES(18277, 11237, 'eleven thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(18278, 70313, 'seventy thousand three hundred thirteen');\nINSERT INTO t2 VALUES(18279, 65118, 'sixty-five thousand one hundred eighteen');\nINSERT INTO t2 VALUES(18280, 14955, 'fourteen thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(18281, 98985, 'ninety-eight thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(18282, 99399, 'ninety-nine thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(18283, 57169, 'fifty-seven thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(18284, 1567, 'one thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(18285, 27944, 'twenty-seven thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(18286, 36695, 'thirty-six thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(18287, 1291, 'one thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(18288, 73497, 'seventy-three thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(18289, 37604, 'thirty-seven thousand six hundred four');\nINSERT INTO t2 VALUES(18290, 7905, 'seven thousand nine hundred five');\nINSERT INTO t2 VALUES(18291, 64460, 'sixty-four thousand four hundred sixty');\nINSERT INTO t2 VALUES(18292, 83021, 'eighty-three thousand twenty-one');\nINSERT INTO t2 VALUES(18293, 71975, 'seventy-one thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(18294, 70278, 'seventy thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(18295, 83557, 'eighty-three thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(18296, 3290, 'three thousand two hundred ninety');\nINSERT INTO t2 VALUES(18297, 16423, 'sixteen thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(18298, 7116, 'seven thousand one hundred sixteen');\nINSERT INTO t2 VALUES(18299, 40651, 'forty thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(18300, 25838, 'twenty-five thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(18301, 48834, 'forty-eight thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(18302, 23328, 'twenty-three thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(18303, 39680, 'thirty-nine thousand six hundred eighty');\nINSERT INTO t2 VALUES(18304, 51819, 'fifty-one thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(18305, 18813, 'eighteen thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(18306, 97323, 'ninety-seven thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(18307, 66364, 'sixty-six thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(18308, 39522, 'thirty-nine thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(18309, 77707, 'seventy-seven thousand seven hundred seven');\nINSERT INTO t2 VALUES(18310, 71715, 'seventy-one thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(18311, 33025, 'thirty-three thousand twenty-five');\nINSERT INTO t2 VALUES(18312, 79680, 'seventy-nine thousand six hundred eighty');\nINSERT INTO t2 VALUES(18313, 18046, 'eighteen thousand forty-six');\nINSERT INTO t2 VALUES(18314, 49728, 'forty-nine thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(18315, 59022, 'fifty-nine thousand twenty-two');\nINSERT INTO t2 VALUES(18316, 9095, 'nine thousand ninety-five');\nINSERT INTO t2 VALUES(18317, 71199, 'seventy-one thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(18318, 30752, 'thirty thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(18319, 54095, 'fifty-four thousand ninety-five');\nINSERT INTO t2 VALUES(18320, 1270, 'one thousand two hundred seventy');\nINSERT INTO t2 VALUES(18321, 59571, 'fifty-nine thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(18322, 4220, 'four thousand two hundred twenty');\nINSERT INTO t2 VALUES(18323, 80585, 'eighty thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(18324, 49780, 'forty-nine thousand seven hundred eighty');\nINSERT INTO t2 VALUES(18325, 47903, 'forty-seven thousand nine hundred three');\nINSERT INTO t2 VALUES(18326, 25873, 'twenty-five thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(18327, 97236, 'ninety-seven thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(18328, 34016, 'thirty-four thousand sixteen');\nINSERT INTO t2 VALUES(18329, 48672, 'forty-eight thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(18330, 23157, 'twenty-three thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(18331, 29013, 'twenty-nine thousand thirteen');\nINSERT INTO t2 VALUES(18332, 73871, 'seventy-three thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(18333, 54368, 'fifty-four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(18334, 15501, 'fifteen thousand five hundred one');\nINSERT INTO t2 VALUES(18335, 27693, 'twenty-seven thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(18336, 53497, 'fifty-three thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(18337, 54265, 'fifty-four thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(18338, 11577, 'eleven thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(18339, 69842, 'sixty-nine thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(18340, 47179, 'forty-seven thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(18341, 70405, 'seventy thousand four hundred five');\nINSERT INTO t2 VALUES(18342, 92551, 'ninety-two thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(18343, 95152, 'ninety-five thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(18344, 76207, 'seventy-six thousand two hundred seven');\nINSERT INTO t2 VALUES(18345, 12115, 'twelve thousand one hundred fifteen');\nINSERT INTO t2 VALUES(18346, 66037, 'sixty-six thousand thirty-seven');\nINSERT INTO t2 VALUES(18347, 10383, 'ten thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(18348, 73366, 'seventy-three thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(18349, 69571, 'sixty-nine thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(18350, 60840, 'sixty thousand eight hundred forty');\nINSERT INTO t2 VALUES(18351, 52305, 'fifty-two thousand three hundred five');\nINSERT INTO t2 VALUES(18352, 92931, 'ninety-two thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(18353, 79433, 'seventy-nine thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(18354, 24661, 'twenty-four thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(18355, 72030, 'seventy-two thousand thirty');\nINSERT INTO t2 VALUES(18356, 94222, 'ninety-four thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(18357, 773, 'seven hundred seventy-three');\nINSERT INTO t2 VALUES(18358, 16424, 'sixteen thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(18359, 56226, 'fifty-six thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(18360, 731, 'seven hundred thirty-one');\nINSERT INTO t2 VALUES(18361, 10683, 'ten thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(18362, 31441, 'thirty-one thousand four hundred forty-one');\nINSERT INTO t2 VALUES(18363, 34988, 'thirty-four thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(18364, 36140, 'thirty-six thousand one hundred forty');\nINSERT INTO t2 VALUES(18365, 78345, 'seventy-eight thousand three hundred forty-five');\nINSERT INTO t2 VALUES(18366, 5815, 'five thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(18367, 83776, 'eighty-three thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(18368, 46842, 'forty-six thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(18369, 42829, 'forty-two thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(18370, 27079, 'twenty-seven thousand seventy-nine');\nINSERT INTO t2 VALUES(18371, 97533, 'ninety-seven thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(18372, 9006, 'nine thousand six');\nINSERT INTO t2 VALUES(18373, 57559, 'fifty-seven thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(18374, 67778, 'sixty-seven thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(18375, 29581, 'twenty-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(18376, 91225, 'ninety-one thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(18377, 95131, 'ninety-five thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(18378, 52717, 'fifty-two thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(18379, 48972, 'forty-eight thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(18380, 453, 'four hundred fifty-three');\nINSERT INTO t2 VALUES(18381, 21128, 'twenty-one thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(18382, 47788, 'forty-seven thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(18383, 99462, 'ninety-nine thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(18384, 21760, 'twenty-one thousand seven hundred sixty');\nINSERT INTO t2 VALUES(18385, 36089, 'thirty-six thousand eighty-nine');\nINSERT INTO t2 VALUES(18386, 92991, 'ninety-two thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(18387, 48698, 'forty-eight thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(18388, 85285, 'eighty-five thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(18389, 32287, 'thirty-two thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(18390, 38926, 'thirty-eight thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(18391, 642, 'six hundred forty-two');\nINSERT INTO t2 VALUES(18392, 44543, 'forty-four thousand five hundred forty-three');\nINSERT INTO t2 VALUES(18393, 63281, 'sixty-three thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(18394, 112, 'one hundred twelve');\nINSERT INTO t2 VALUES(18395, 91476, 'ninety-one thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(18396, 82160, 'eighty-two thousand one hundred sixty');\nINSERT INTO t2 VALUES(18397, 25391, 'twenty-five thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(18398, 66435, 'sixty-six thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(18399, 96523, 'ninety-six thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(18400, 37965, 'thirty-seven thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(18401, 48181, 'forty-eight thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(18402, 40891, 'forty thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(18403, 20979, 'twenty thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(18404, 76332, 'seventy-six thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(18405, 73666, 'seventy-three thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(18406, 15137, 'fifteen thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(18407, 20201, 'twenty thousand two hundred one');\nINSERT INTO t2 VALUES(18408, 71520, 'seventy-one thousand five hundred twenty');\nINSERT INTO t2 VALUES(18409, 68896, 'sixty-eight thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(18410, 77980, 'seventy-seven thousand nine hundred eighty');\nINSERT INTO t2 VALUES(18411, 42240, 'forty-two thousand two hundred forty');\nINSERT INTO t2 VALUES(18412, 73414, 'seventy-three thousand four hundred fourteen');\nINSERT INTO t2 VALUES(18413, 36228, 'thirty-six thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(18414, 53431, 'fifty-three thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(18415, 65419, 'sixty-five thousand four hundred nineteen');\nINSERT INTO t2 VALUES(18416, 12234, 'twelve thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(18417, 34417, 'thirty-four thousand four hundred seventeen');\nINSERT INTO t2 VALUES(18418, 22648, 'twenty-two thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(18419, 90857, 'ninety thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(18420, 35979, 'thirty-five thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(18421, 76857, 'seventy-six thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(18422, 52915, 'fifty-two thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(18423, 60994, 'sixty thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(18424, 58900, 'fifty-eight thousand nine hundred');\nINSERT INTO t2 VALUES(18425, 49329, 'forty-nine thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(18426, 95885, 'ninety-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(18427, 8966, 'eight thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(18428, 20307, 'twenty thousand three hundred seven');\nINSERT INTO t2 VALUES(18429, 98936, 'ninety-eight thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(18430, 78825, 'seventy-eight thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(18431, 99762, 'ninety-nine thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(18432, 58314, 'fifty-eight thousand three hundred fourteen');\nINSERT INTO t2 VALUES(18433, 73188, 'seventy-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(18434, 44479, 'forty-four thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(18435, 8871, 'eight thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(18436, 46605, 'forty-six thousand six hundred five');\nINSERT INTO t2 VALUES(18437, 73824, 'seventy-three thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(18438, 67113, 'sixty-seven thousand one hundred thirteen');\nINSERT INTO t2 VALUES(18439, 15026, 'fifteen thousand twenty-six');\nINSERT INTO t2 VALUES(18440, 41522, 'forty-one thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(18441, 40006, 'forty thousand six');\nINSERT INTO t2 VALUES(18442, 24713, 'twenty-four thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(18443, 87002, 'eighty-seven thousand two');\nINSERT INTO t2 VALUES(18444, 77684, 'seventy-seven thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(18445, 22088, 'twenty-two thousand eighty-eight');\nINSERT INTO t2 VALUES(18446, 41906, 'forty-one thousand nine hundred six');\nINSERT INTO t2 VALUES(18447, 81118, 'eighty-one thousand one hundred eighteen');\nINSERT INTO t2 VALUES(18448, 68019, 'sixty-eight thousand nineteen');\nINSERT INTO t2 VALUES(18449, 27091, 'twenty-seven thousand ninety-one');\nINSERT INTO t2 VALUES(18450, 269, 'two hundred sixty-nine');\nINSERT INTO t2 VALUES(18451, 45754, 'forty-five thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(18452, 52984, 'fifty-two thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(18453, 47739, 'forty-seven thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(18454, 92242, 'ninety-two thousand two hundred forty-two');\nINSERT INTO t2 VALUES(18455, 44980, 'forty-four thousand nine hundred eighty');\nINSERT INTO t2 VALUES(18456, 85263, 'eighty-five thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(18457, 33523, 'thirty-three thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(18458, 61498, 'sixty-one thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(18459, 11967, 'eleven thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(18460, 86916, 'eighty-six thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(18461, 66604, 'sixty-six thousand six hundred four');\nINSERT INTO t2 VALUES(18462, 11573, 'eleven thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(18463, 95539, 'ninety-five thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(18464, 63919, 'sixty-three thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(18465, 33303, 'thirty-three thousand three hundred three');\nINSERT INTO t2 VALUES(18466, 11044, 'eleven thousand forty-four');\nINSERT INTO t2 VALUES(18467, 42204, 'forty-two thousand two hundred four');\nINSERT INTO t2 VALUES(18468, 1980, 'one thousand nine hundred eighty');\nINSERT INTO t2 VALUES(18469, 91357, 'ninety-one thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(18470, 77608, 'seventy-seven thousand six hundred eight');\nINSERT INTO t2 VALUES(18471, 90179, 'ninety thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(18472, 95179, 'ninety-five thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(18473, 19139, 'nineteen thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(18474, 72643, 'seventy-two thousand six hundred forty-three');\nINSERT INTO t2 VALUES(18475, 90378, 'ninety thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(18476, 45013, 'forty-five thousand thirteen');\nINSERT INTO t2 VALUES(18477, 40148, 'forty thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(18478, 43707, 'forty-three thousand seven hundred seven');\nINSERT INTO t2 VALUES(18479, 71646, 'seventy-one thousand six hundred forty-six');\nINSERT INTO t2 VALUES(18480, 95245, 'ninety-five thousand two hundred forty-five');\nINSERT INTO t2 VALUES(18481, 43246, 'forty-three thousand two hundred forty-six');\nINSERT INTO t2 VALUES(18482, 365, 'three hundred sixty-five');\nINSERT INTO t2 VALUES(18483, 51969, 'fifty-one thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(18484, 5843, 'five thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(18485, 3828, 'three thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(18486, 58379, 'fifty-eight thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(18487, 74200, 'seventy-four thousand two hundred');\nINSERT INTO t2 VALUES(18488, 59107, 'fifty-nine thousand one hundred seven');\nINSERT INTO t2 VALUES(18489, 76795, 'seventy-six thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(18490, 48598, 'forty-eight thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(18491, 91706, 'ninety-one thousand seven hundred six');\nINSERT INTO t2 VALUES(18492, 42898, 'forty-two thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(18493, 65592, 'sixty-five thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(18494, 96537, 'ninety-six thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(18495, 48672, 'forty-eight thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(18496, 23875, 'twenty-three thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(18497, 83166, 'eighty-three thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(18498, 42429, 'forty-two thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(18499, 18568, 'eighteen thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(18500, 57129, 'fifty-seven thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(18501, 61487, 'sixty-one thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(18502, 69362, 'sixty-nine thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(18503, 77196, 'seventy-seven thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(18504, 6345, 'six thousand three hundred forty-five');\nINSERT INTO t2 VALUES(18505, 29764, 'twenty-nine thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(18506, 64701, 'sixty-four thousand seven hundred one');\nINSERT INTO t2 VALUES(18507, 94106, 'ninety-four thousand one hundred six');\nINSERT INTO t2 VALUES(18508, 82139, 'eighty-two thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(18509, 13942, 'thirteen thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(18510, 54637, 'fifty-four thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(18511, 91858, 'ninety-one thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(18512, 22644, 'twenty-two thousand six hundred forty-four');\nINSERT INTO t2 VALUES(18513, 6650, 'six thousand six hundred fifty');\nINSERT INTO t2 VALUES(18514, 26503, 'twenty-six thousand five hundred three');\nINSERT INTO t2 VALUES(18515, 10175, 'ten thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(18516, 28465, 'twenty-eight thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(18517, 67619, 'sixty-seven thousand six hundred nineteen');\nINSERT INTO t2 VALUES(18518, 8101, 'eight thousand one hundred one');\nINSERT INTO t2 VALUES(18519, 51724, 'fifty-one thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(18520, 41982, 'forty-one thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(18521, 38074, 'thirty-eight thousand seventy-four');\nINSERT INTO t2 VALUES(18522, 65986, 'sixty-five thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(18523, 3129, 'three thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(18524, 84377, 'eighty-four thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(18525, 65259, 'sixty-five thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(18526, 75261, 'seventy-five thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(18527, 65940, 'sixty-five thousand nine hundred forty');\nINSERT INTO t2 VALUES(18528, 59338, 'fifty-nine thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(18529, 5876, 'five thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(18530, 20579, 'twenty thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(18531, 48540, 'forty-eight thousand five hundred forty');\nINSERT INTO t2 VALUES(18532, 32525, 'thirty-two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(18533, 88647, 'eighty-eight thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(18534, 95211, 'ninety-five thousand two hundred eleven');\nINSERT INTO t2 VALUES(18535, 27514, 'twenty-seven thousand five hundred fourteen');\nINSERT INTO t2 VALUES(18536, 36100, 'thirty-six thousand one hundred');\nINSERT INTO t2 VALUES(18537, 94982, 'ninety-four thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(18538, 89385, 'eighty-nine thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(18539, 93106, 'ninety-three thousand one hundred six');\nINSERT INTO t2 VALUES(18540, 53853, 'fifty-three thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(18541, 92085, 'ninety-two thousand eighty-five');\nINSERT INTO t2 VALUES(18542, 56081, 'fifty-six thousand eighty-one');\nINSERT INTO t2 VALUES(18543, 97739, 'ninety-seven thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(18544, 73183, 'seventy-three thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(18545, 12467, 'twelve thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(18546, 90255, 'ninety thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(18547, 85859, 'eighty-five thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(18548, 61442, 'sixty-one thousand four hundred forty-two');\nINSERT INTO t2 VALUES(18549, 16110, 'sixteen thousand one hundred ten');\nINSERT INTO t2 VALUES(18550, 78169, 'seventy-eight thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(18551, 23116, 'twenty-three thousand one hundred sixteen');\nINSERT INTO t2 VALUES(18552, 20721, 'twenty thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(18553, 84712, 'eighty-four thousand seven hundred twelve');\nINSERT INTO t2 VALUES(18554, 24409, 'twenty-four thousand four hundred nine');\nINSERT INTO t2 VALUES(18555, 77579, 'seventy-seven thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(18556, 21145, 'twenty-one thousand one hundred forty-five');\nINSERT INTO t2 VALUES(18557, 55837, 'fifty-five thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(18558, 93883, 'ninety-three thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(18559, 38706, 'thirty-eight thousand seven hundred six');\nINSERT INTO t2 VALUES(18560, 57058, 'fifty-seven thousand fifty-eight');\nINSERT INTO t2 VALUES(18561, 36434, 'thirty-six thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(18562, 92663, 'ninety-two thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(18563, 84145, 'eighty-four thousand one hundred forty-five');\nINSERT INTO t2 VALUES(18564, 71327, 'seventy-one thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(18565, 77240, 'seventy-seven thousand two hundred forty');\nINSERT INTO t2 VALUES(18566, 83331, 'eighty-three thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(18567, 94907, 'ninety-four thousand nine hundred seven');\nINSERT INTO t2 VALUES(18568, 62003, 'sixty-two thousand three');\nINSERT INTO t2 VALUES(18569, 56659, 'fifty-six thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(18570, 97384, 'ninety-seven thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(18571, 68455, 'sixty-eight thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(18572, 29622, 'twenty-nine thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(18573, 55847, 'fifty-five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(18574, 26537, 'twenty-six thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(18575, 66035, 'sixty-six thousand thirty-five');\nINSERT INTO t2 VALUES(18576, 47454, 'forty-seven thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(18577, 23839, 'twenty-three thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(18578, 69033, 'sixty-nine thousand thirty-three');\nINSERT INTO t2 VALUES(18579, 78914, 'seventy-eight thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(18580, 50252, 'fifty thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(18581, 2307, 'two thousand three hundred seven');\nINSERT INTO t2 VALUES(18582, 58588, 'fifty-eight thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(18583, 98427, 'ninety-eight thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(18584, 1793, 'one thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(18585, 62900, 'sixty-two thousand nine hundred');\nINSERT INTO t2 VALUES(18586, 82209, 'eighty-two thousand two hundred nine');\nINSERT INTO t2 VALUES(18587, 79054, 'seventy-nine thousand fifty-four');\nINSERT INTO t2 VALUES(18588, 21329, 'twenty-one thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(18589, 8775, 'eight thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(18590, 67466, 'sixty-seven thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(18591, 65686, 'sixty-five thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(18592, 83934, 'eighty-three thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(18593, 26678, 'twenty-six thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(18594, 63786, 'sixty-three thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(18595, 47475, 'forty-seven thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(18596, 19359, 'nineteen thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(18597, 55237, 'fifty-five thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(18598, 59231, 'fifty-nine thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(18599, 77603, 'seventy-seven thousand six hundred three');\nINSERT INTO t2 VALUES(18600, 61299, 'sixty-one thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(18601, 93489, 'ninety-three thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(18602, 96309, 'ninety-six thousand three hundred nine');\nINSERT INTO t2 VALUES(18603, 90300, 'ninety thousand three hundred');\nINSERT INTO t2 VALUES(18604, 50215, 'fifty thousand two hundred fifteen');\nINSERT INTO t2 VALUES(18605, 67750, 'sixty-seven thousand seven hundred fifty');\nINSERT INTO t2 VALUES(18606, 28571, 'twenty-eight thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(18607, 61326, 'sixty-one thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(18608, 84577, 'eighty-four thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(18609, 15631, 'fifteen thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(18610, 69316, 'sixty-nine thousand three hundred sixteen');\nINSERT INTO t2 VALUES(18611, 43954, 'forty-three thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(18612, 34538, 'thirty-four thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(18613, 97738, 'ninety-seven thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(18614, 40210, 'forty thousand two hundred ten');\nINSERT INTO t2 VALUES(18615, 6042, 'six thousand forty-two');\nINSERT INTO t2 VALUES(18616, 66239, 'sixty-six thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(18617, 62056, 'sixty-two thousand fifty-six');\nINSERT INTO t2 VALUES(18618, 1981, 'one thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(18619, 51704, 'fifty-one thousand seven hundred four');\nINSERT INTO t2 VALUES(18620, 34157, 'thirty-four thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(18621, 9763, 'nine thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(18622, 7582, 'seven thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(18623, 20044, 'twenty thousand forty-four');\nINSERT INTO t2 VALUES(18624, 89128, 'eighty-nine thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(18625, 81508, 'eighty-one thousand five hundred eight');\nINSERT INTO t2 VALUES(18626, 3473, 'three thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(18627, 8503, 'eight thousand five hundred three');\nINSERT INTO t2 VALUES(18628, 13097, 'thirteen thousand ninety-seven');\nINSERT INTO t2 VALUES(18629, 39206, 'thirty-nine thousand two hundred six');\nINSERT INTO t2 VALUES(18630, 21739, 'twenty-one thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(18631, 67295, 'sixty-seven thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(18632, 20358, 'twenty thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(18633, 52274, 'fifty-two thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(18634, 53056, 'fifty-three thousand fifty-six');\nINSERT INTO t2 VALUES(18635, 80750, 'eighty thousand seven hundred fifty');\nINSERT INTO t2 VALUES(18636, 85084, 'eighty-five thousand eighty-four');\nINSERT INTO t2 VALUES(18637, 5926, 'five thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(18638, 87945, 'eighty-seven thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(18639, 96042, 'ninety-six thousand forty-two');\nINSERT INTO t2 VALUES(18640, 72083, 'seventy-two thousand eighty-three');\nINSERT INTO t2 VALUES(18641, 54517, 'fifty-four thousand five hundred seventeen');\nINSERT INTO t2 VALUES(18642, 58251, 'fifty-eight thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(18643, 17566, 'seventeen thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(18644, 32752, 'thirty-two thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(18645, 98985, 'ninety-eight thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(18646, 16796, 'sixteen thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(18647, 39379, 'thirty-nine thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(18648, 39380, 'thirty-nine thousand three hundred eighty');\nINSERT INTO t2 VALUES(18649, 82948, 'eighty-two thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(18650, 7854, 'seven thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(18651, 7308, 'seven thousand three hundred eight');\nINSERT INTO t2 VALUES(18652, 94650, 'ninety-four thousand six hundred fifty');\nINSERT INTO t2 VALUES(18653, 59034, 'fifty-nine thousand thirty-four');\nINSERT INTO t2 VALUES(18654, 43598, 'forty-three thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(18655, 37405, 'thirty-seven thousand four hundred five');\nINSERT INTO t2 VALUES(18656, 22872, 'twenty-two thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(18657, 24592, 'twenty-four thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(18658, 39243, 'thirty-nine thousand two hundred forty-three');\nINSERT INTO t2 VALUES(18659, 4120, 'four thousand one hundred twenty');\nINSERT INTO t2 VALUES(18660, 74950, 'seventy-four thousand nine hundred fifty');\nINSERT INTO t2 VALUES(18661, 83333, 'eighty-three thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(18662, 83157, 'eighty-three thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(18663, 67567, 'sixty-seven thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(18664, 87579, 'eighty-seven thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(18665, 91246, 'ninety-one thousand two hundred forty-six');\nINSERT INTO t2 VALUES(18666, 66539, 'sixty-six thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(18667, 83293, 'eighty-three thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(18668, 52342, 'fifty-two thousand three hundred forty-two');\nINSERT INTO t2 VALUES(18669, 29678, 'twenty-nine thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(18670, 37210, 'thirty-seven thousand two hundred ten');\nINSERT INTO t2 VALUES(18671, 90276, 'ninety thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(18672, 44350, 'forty-four thousand three hundred fifty');\nINSERT INTO t2 VALUES(18673, 44241, 'forty-four thousand two hundred forty-one');\nINSERT INTO t2 VALUES(18674, 66086, 'sixty-six thousand eighty-six');\nINSERT INTO t2 VALUES(18675, 15280, 'fifteen thousand two hundred eighty');\nINSERT INTO t2 VALUES(18676, 84374, 'eighty-four thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(18677, 81132, 'eighty-one thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(18678, 39694, 'thirty-nine thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(18679, 81179, 'eighty-one thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(18680, 42861, 'forty-two thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(18681, 93983, 'ninety-three thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(18682, 18468, 'eighteen thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(18683, 12486, 'twelve thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(18684, 82452, 'eighty-two thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(18685, 6399, 'six thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(18686, 58448, 'fifty-eight thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(18687, 22074, 'twenty-two thousand seventy-four');\nINSERT INTO t2 VALUES(18688, 24913, 'twenty-four thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(18689, 89605, 'eighty-nine thousand six hundred five');\nINSERT INTO t2 VALUES(18690, 86248, 'eighty-six thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(18691, 38484, 'thirty-eight thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(18692, 57865, 'fifty-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(18693, 49110, 'forty-nine thousand one hundred ten');\nINSERT INTO t2 VALUES(18694, 39104, 'thirty-nine thousand one hundred four');\nINSERT INTO t2 VALUES(18695, 73831, 'seventy-three thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(18696, 68340, 'sixty-eight thousand three hundred forty');\nINSERT INTO t2 VALUES(18697, 69172, 'sixty-nine thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(18698, 72872, 'seventy-two thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(18699, 91381, 'ninety-one thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(18700, 16952, 'sixteen thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(18701, 50080, 'fifty thousand eighty');\nINSERT INTO t2 VALUES(18702, 36745, 'thirty-six thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(18703, 36373, 'thirty-six thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(18704, 24046, 'twenty-four thousand forty-six');\nINSERT INTO t2 VALUES(18705, 36647, 'thirty-six thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(18706, 39396, 'thirty-nine thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(18707, 35907, 'thirty-five thousand nine hundred seven');\nINSERT INTO t2 VALUES(18708, 96731, 'ninety-six thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(18709, 5654, 'five thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(18710, 46087, 'forty-six thousand eighty-seven');\nINSERT INTO t2 VALUES(18711, 87602, 'eighty-seven thousand six hundred two');\nINSERT INTO t2 VALUES(18712, 60015, 'sixty thousand fifteen');\nINSERT INTO t2 VALUES(18713, 23547, 'twenty-three thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(18714, 14953, 'fourteen thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(18715, 7654, 'seven thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(18716, 83481, 'eighty-three thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(18717, 98558, 'ninety-eight thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(18718, 30836, 'thirty thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(18719, 70424, 'seventy thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(18720, 84554, 'eighty-four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(18721, 24047, 'twenty-four thousand forty-seven');\nINSERT INTO t2 VALUES(18722, 91840, 'ninety-one thousand eight hundred forty');\nINSERT INTO t2 VALUES(18723, 39872, 'thirty-nine thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(18724, 50273, 'fifty thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(18725, 50130, 'fifty thousand one hundred thirty');\nINSERT INTO t2 VALUES(18726, 88720, 'eighty-eight thousand seven hundred twenty');\nINSERT INTO t2 VALUES(18727, 65194, 'sixty-five thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(18728, 87478, 'eighty-seven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(18729, 77463, 'seventy-seven thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(18730, 90659, 'ninety thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(18731, 74621, 'seventy-four thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(18732, 96558, 'ninety-six thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(18733, 29388, 'twenty-nine thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(18734, 77584, 'seventy-seven thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(18735, 19517, 'nineteen thousand five hundred seventeen');\nINSERT INTO t2 VALUES(18736, 29673, 'twenty-nine thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(18737, 11652, 'eleven thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(18738, 99629, 'ninety-nine thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(18739, 98497, 'ninety-eight thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(18740, 70677, 'seventy thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(18741, 56885, 'fifty-six thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(18742, 50300, 'fifty thousand three hundred');\nINSERT INTO t2 VALUES(18743, 88670, 'eighty-eight thousand six hundred seventy');\nINSERT INTO t2 VALUES(18744, 65077, 'sixty-five thousand seventy-seven');\nINSERT INTO t2 VALUES(18745, 2047, 'two thousand forty-seven');\nINSERT INTO t2 VALUES(18746, 61124, 'sixty-one thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(18747, 10165, 'ten thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(18748, 27550, 'twenty-seven thousand five hundred fifty');\nINSERT INTO t2 VALUES(18749, 34580, 'thirty-four thousand five hundred eighty');\nINSERT INTO t2 VALUES(18750, 99940, 'ninety-nine thousand nine hundred forty');\nINSERT INTO t2 VALUES(18751, 98411, 'ninety-eight thousand four hundred eleven');\nINSERT INTO t2 VALUES(18752, 97643, 'ninety-seven thousand six hundred forty-three');\nINSERT INTO t2 VALUES(18753, 6033, 'six thousand thirty-three');\nINSERT INTO t2 VALUES(18754, 25087, 'twenty-five thousand eighty-seven');\nINSERT INTO t2 VALUES(18755, 29830, 'twenty-nine thousand eight hundred thirty');\nINSERT INTO t2 VALUES(18756, 30176, 'thirty thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(18757, 81701, 'eighty-one thousand seven hundred one');\nINSERT INTO t2 VALUES(18758, 82815, 'eighty-two thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(18759, 34076, 'thirty-four thousand seventy-six');\nINSERT INTO t2 VALUES(18760, 93687, 'ninety-three thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(18761, 9092, 'nine thousand ninety-two');\nINSERT INTO t2 VALUES(18762, 13389, 'thirteen thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(18763, 249, 'two hundred forty-nine');\nINSERT INTO t2 VALUES(18764, 51285, 'fifty-one thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(18765, 21602, 'twenty-one thousand six hundred two');\nINSERT INTO t2 VALUES(18766, 11, 'eleven');\nINSERT INTO t2 VALUES(18767, 6955, 'six thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(18768, 34289, 'thirty-four thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(18769, 3155, 'three thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(18770, 45927, 'forty-five thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(18771, 45515, 'forty-five thousand five hundred fifteen');\nINSERT INTO t2 VALUES(18772, 5901, 'five thousand nine hundred one');\nINSERT INTO t2 VALUES(18773, 29983, 'twenty-nine thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(18774, 3029, 'three thousand twenty-nine');\nINSERT INTO t2 VALUES(18775, 5043, 'five thousand forty-three');\nINSERT INTO t2 VALUES(18776, 53633, 'fifty-three thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(18777, 65066, 'sixty-five thousand sixty-six');\nINSERT INTO t2 VALUES(18778, 73856, 'seventy-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(18779, 83138, 'eighty-three thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(18780, 80891, 'eighty thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(18781, 9830, 'nine thousand eight hundred thirty');\nINSERT INTO t2 VALUES(18782, 41074, 'forty-one thousand seventy-four');\nINSERT INTO t2 VALUES(18783, 85980, 'eighty-five thousand nine hundred eighty');\nINSERT INTO t2 VALUES(18784, 75946, 'seventy-five thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(18785, 977, 'nine hundred seventy-seven');\nINSERT INTO t2 VALUES(18786, 93832, 'ninety-three thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(18787, 68079, 'sixty-eight thousand seventy-nine');\nINSERT INTO t2 VALUES(18788, 78524, 'seventy-eight thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(18789, 66498, 'sixty-six thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(18790, 10305, 'ten thousand three hundred five');\nINSERT INTO t2 VALUES(18791, 47656, 'forty-seven thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(18792, 62053, 'sixty-two thousand fifty-three');\nINSERT INTO t2 VALUES(18793, 514, 'five hundred fourteen');\nINSERT INTO t2 VALUES(18794, 46264, 'forty-six thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(18795, 87502, 'eighty-seven thousand five hundred two');\nINSERT INTO t2 VALUES(18796, 38452, 'thirty-eight thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(18797, 35515, 'thirty-five thousand five hundred fifteen');\nINSERT INTO t2 VALUES(18798, 40423, 'forty thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(18799, 99524, 'ninety-nine thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(18800, 77832, 'seventy-seven thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(18801, 71463, 'seventy-one thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(18802, 41421, 'forty-one thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(18803, 72748, 'seventy-two thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(18804, 19888, 'nineteen thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(18805, 89845, 'eighty-nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(18806, 29159, 'twenty-nine thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(18807, 97771, 'ninety-seven thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(18808, 15300, 'fifteen thousand three hundred');\nINSERT INTO t2 VALUES(18809, 37323, 'thirty-seven thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(18810, 6598, 'six thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(18811, 56937, 'fifty-six thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(18812, 34564, 'thirty-four thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(18813, 46600, 'forty-six thousand six hundred');\nINSERT INTO t2 VALUES(18814, 26017, 'twenty-six thousand seventeen');\nINSERT INTO t2 VALUES(18815, 41326, 'forty-one thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(18816, 15241, 'fifteen thousand two hundred forty-one');\nINSERT INTO t2 VALUES(18817, 42026, 'forty-two thousand twenty-six');\nINSERT INTO t2 VALUES(18818, 59163, 'fifty-nine thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(18819, 38012, 'thirty-eight thousand twelve');\nINSERT INTO t2 VALUES(18820, 54765, 'fifty-four thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(18821, 99795, 'ninety-nine thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(18822, 99092, 'ninety-nine thousand ninety-two');\nINSERT INTO t2 VALUES(18823, 8715, 'eight thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(18824, 73440, 'seventy-three thousand four hundred forty');\nINSERT INTO t2 VALUES(18825, 71756, 'seventy-one thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(18826, 8910, 'eight thousand nine hundred ten');\nINSERT INTO t2 VALUES(18827, 3117, 'three thousand one hundred seventeen');\nINSERT INTO t2 VALUES(18828, 16094, 'sixteen thousand ninety-four');\nINSERT INTO t2 VALUES(18829, 83916, 'eighty-three thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(18830, 17671, 'seventeen thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(18831, 878, 'eight hundred seventy-eight');\nINSERT INTO t2 VALUES(18832, 10788, 'ten thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(18833, 97871, 'ninety-seven thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(18834, 27623, 'twenty-seven thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(18835, 94876, 'ninety-four thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(18836, 3106, 'three thousand one hundred six');\nINSERT INTO t2 VALUES(18837, 39224, 'thirty-nine thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(18838, 58444, 'fifty-eight thousand four hundred forty-four');\nINSERT INTO t2 VALUES(18839, 14452, 'fourteen thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(18840, 29211, 'twenty-nine thousand two hundred eleven');\nINSERT INTO t2 VALUES(18841, 35892, 'thirty-five thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(18842, 38531, 'thirty-eight thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(18843, 87443, 'eighty-seven thousand four hundred forty-three');\nINSERT INTO t2 VALUES(18844, 68228, 'sixty-eight thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(18845, 37597, 'thirty-seven thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(18846, 61031, 'sixty-one thousand thirty-one');\nINSERT INTO t2 VALUES(18847, 33517, 'thirty-three thousand five hundred seventeen');\nINSERT INTO t2 VALUES(18848, 90411, 'ninety thousand four hundred eleven');\nINSERT INTO t2 VALUES(18849, 58083, 'fifty-eight thousand eighty-three');\nINSERT INTO t2 VALUES(18850, 17349, 'seventeen thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(18851, 84115, 'eighty-four thousand one hundred fifteen');\nINSERT INTO t2 VALUES(18852, 79451, 'seventy-nine thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(18853, 70685, 'seventy thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(18854, 53320, 'fifty-three thousand three hundred twenty');\nINSERT INTO t2 VALUES(18855, 36845, 'thirty-six thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(18856, 18337, 'eighteen thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(18857, 97153, 'ninety-seven thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(18858, 79596, 'seventy-nine thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(18859, 29565, 'twenty-nine thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(18860, 39715, 'thirty-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(18861, 45640, 'forty-five thousand six hundred forty');\nINSERT INTO t2 VALUES(18862, 87335, 'eighty-seven thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(18863, 60625, 'sixty thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(18864, 15626, 'fifteen thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(18865, 92850, 'ninety-two thousand eight hundred fifty');\nINSERT INTO t2 VALUES(18866, 42716, 'forty-two thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(18867, 52742, 'fifty-two thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(18868, 55667, 'fifty-five thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(18869, 19032, 'nineteen thousand thirty-two');\nINSERT INTO t2 VALUES(18870, 99178, 'ninety-nine thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(18871, 51263, 'fifty-one thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(18872, 91787, 'ninety-one thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(18873, 53781, 'fifty-three thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(18874, 52400, 'fifty-two thousand four hundred');\nINSERT INTO t2 VALUES(18875, 62631, 'sixty-two thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(18876, 63636, 'sixty-three thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(18877, 29864, 'twenty-nine thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(18878, 22760, 'twenty-two thousand seven hundred sixty');\nINSERT INTO t2 VALUES(18879, 40055, 'forty thousand fifty-five');\nINSERT INTO t2 VALUES(18880, 48697, 'forty-eight thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(18881, 38560, 'thirty-eight thousand five hundred sixty');\nINSERT INTO t2 VALUES(18882, 20775, 'twenty thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(18883, 42998, 'forty-two thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(18884, 80624, 'eighty thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(18885, 41739, 'forty-one thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(18886, 14934, 'fourteen thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(18887, 12255, 'twelve thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(18888, 81374, 'eighty-one thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(18889, 34287, 'thirty-four thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(18890, 12624, 'twelve thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(18891, 64354, 'sixty-four thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(18892, 52825, 'fifty-two thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(18893, 19958, 'nineteen thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(18894, 58308, 'fifty-eight thousand three hundred eight');\nINSERT INTO t2 VALUES(18895, 9671, 'nine thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(18896, 96751, 'ninety-six thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(18897, 24420, 'twenty-four thousand four hundred twenty');\nINSERT INTO t2 VALUES(18898, 68507, 'sixty-eight thousand five hundred seven');\nINSERT INTO t2 VALUES(18899, 82598, 'eighty-two thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(18900, 12017, 'twelve thousand seventeen');\nINSERT INTO t2 VALUES(18901, 64991, 'sixty-four thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(18902, 52247, 'fifty-two thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(18903, 76658, 'seventy-six thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(18904, 77452, 'seventy-seven thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(18905, 63547, 'sixty-three thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(18906, 18299, 'eighteen thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(18907, 83659, 'eighty-three thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(18908, 95758, 'ninety-five thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(18909, 54484, 'fifty-four thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(18910, 8547, 'eight thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(18911, 55616, 'fifty-five thousand six hundred sixteen');\nINSERT INTO t2 VALUES(18912, 22436, 'twenty-two thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(18913, 56354, 'fifty-six thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(18914, 48276, 'forty-eight thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(18915, 26876, 'twenty-six thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(18916, 8676, 'eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(18917, 69218, 'sixty-nine thousand two hundred eighteen');\nINSERT INTO t2 VALUES(18918, 77478, 'seventy-seven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(18919, 59658, 'fifty-nine thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(18920, 54517, 'fifty-four thousand five hundred seventeen');\nINSERT INTO t2 VALUES(18921, 35129, 'thirty-five thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(18922, 26263, 'twenty-six thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(18923, 80335, 'eighty thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(18924, 39566, 'thirty-nine thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(18925, 99649, 'ninety-nine thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(18926, 46261, 'forty-six thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(18927, 3305, 'three thousand three hundred five');\nINSERT INTO t2 VALUES(18928, 14787, 'fourteen thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(18929, 39940, 'thirty-nine thousand nine hundred forty');\nINSERT INTO t2 VALUES(18930, 17261, 'seventeen thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(18931, 49417, 'forty-nine thousand four hundred seventeen');\nINSERT INTO t2 VALUES(18932, 32668, 'thirty-two thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(18933, 31290, 'thirty-one thousand two hundred ninety');\nINSERT INTO t2 VALUES(18934, 44232, 'forty-four thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(18935, 50531, 'fifty thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(18936, 65895, 'sixty-five thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(18937, 52227, 'fifty-two thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(18938, 75235, 'seventy-five thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(18939, 45151, 'forty-five thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(18940, 44494, 'forty-four thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(18941, 65286, 'sixty-five thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(18942, 49716, 'forty-nine thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(18943, 45708, 'forty-five thousand seven hundred eight');\nINSERT INTO t2 VALUES(18944, 9136, 'nine thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(18945, 21538, 'twenty-one thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(18946, 4381, 'four thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(18947, 49958, 'forty-nine thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(18948, 5912, 'five thousand nine hundred twelve');\nINSERT INTO t2 VALUES(18949, 85077, 'eighty-five thousand seventy-seven');\nINSERT INTO t2 VALUES(18950, 1854, 'one thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(18951, 89035, 'eighty-nine thousand thirty-five');\nINSERT INTO t2 VALUES(18952, 64295, 'sixty-four thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(18953, 85437, 'eighty-five thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(18954, 82909, 'eighty-two thousand nine hundred nine');\nINSERT INTO t2 VALUES(18955, 20692, 'twenty thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(18956, 25026, 'twenty-five thousand twenty-six');\nINSERT INTO t2 VALUES(18957, 56705, 'fifty-six thousand seven hundred five');\nINSERT INTO t2 VALUES(18958, 29832, 'twenty-nine thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(18959, 12228, 'twelve thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(18960, 37710, 'thirty-seven thousand seven hundred ten');\nINSERT INTO t2 VALUES(18961, 27001, 'twenty-seven thousand one');\nINSERT INTO t2 VALUES(18962, 54140, 'fifty-four thousand one hundred forty');\nINSERT INTO t2 VALUES(18963, 77872, 'seventy-seven thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(18964, 34254, 'thirty-four thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(18965, 12869, 'twelve thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(18966, 53837, 'fifty-three thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(18967, 44302, 'forty-four thousand three hundred two');\nINSERT INTO t2 VALUES(18968, 71988, 'seventy-one thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(18969, 59052, 'fifty-nine thousand fifty-two');\nINSERT INTO t2 VALUES(18970, 81771, 'eighty-one thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(18971, 65920, 'sixty-five thousand nine hundred twenty');\nINSERT INTO t2 VALUES(18972, 20014, 'twenty thousand fourteen');\nINSERT INTO t2 VALUES(18973, 58262, 'fifty-eight thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(18974, 4498, 'four thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(18975, 45523, 'forty-five thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(18976, 26741, 'twenty-six thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(18977, 90323, 'ninety thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(18978, 95532, 'ninety-five thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(18979, 11494, 'eleven thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(18980, 51732, 'fifty-one thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(18981, 64287, 'sixty-four thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(18982, 87066, 'eighty-seven thousand sixty-six');\nINSERT INTO t2 VALUES(18983, 58939, 'fifty-eight thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(18984, 60175, 'sixty thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(18985, 4656, 'four thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(18986, 44600, 'forty-four thousand six hundred');\nINSERT INTO t2 VALUES(18987, 55426, 'fifty-five thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(18988, 59201, 'fifty-nine thousand two hundred one');\nINSERT INTO t2 VALUES(18989, 57906, 'fifty-seven thousand nine hundred six');\nINSERT INTO t2 VALUES(18990, 32790, 'thirty-two thousand seven hundred ninety');\nINSERT INTO t2 VALUES(18991, 51625, 'fifty-one thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(18992, 38843, 'thirty-eight thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(18993, 88356, 'eighty-eight thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(18994, 14911, 'fourteen thousand nine hundred eleven');\nINSERT INTO t2 VALUES(18995, 6240, 'six thousand two hundred forty');\nINSERT INTO t2 VALUES(18996, 8196, 'eight thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(18997, 69323, 'sixty-nine thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(18998, 21472, 'twenty-one thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(18999, 42759, 'forty-two thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(19000, 95694, 'ninety-five thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(19001, 7868, 'seven thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(19002, 56355, 'fifty-six thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(19003, 84603, 'eighty-four thousand six hundred three');\nINSERT INTO t2 VALUES(19004, 36516, 'thirty-six thousand five hundred sixteen');\nINSERT INTO t2 VALUES(19005, 47060, 'forty-seven thousand sixty');\nINSERT INTO t2 VALUES(19006, 5579, 'five thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(19007, 97001, 'ninety-seven thousand one');\nINSERT INTO t2 VALUES(19008, 3206, 'three thousand two hundred six');\nINSERT INTO t2 VALUES(19009, 84535, 'eighty-four thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(19010, 63355, 'sixty-three thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(19011, 20955, 'twenty thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(19012, 68146, 'sixty-eight thousand one hundred forty-six');\nINSERT INTO t2 VALUES(19013, 35059, 'thirty-five thousand fifty-nine');\nINSERT INTO t2 VALUES(19014, 36380, 'thirty-six thousand three hundred eighty');\nINSERT INTO t2 VALUES(19015, 26685, 'twenty-six thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(19016, 18344, 'eighteen thousand three hundred forty-four');\nINSERT INTO t2 VALUES(19017, 33545, 'thirty-three thousand five hundred forty-five');\nINSERT INTO t2 VALUES(19018, 41479, 'forty-one thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(19019, 19622, 'nineteen thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(19020, 83640, 'eighty-three thousand six hundred forty');\nINSERT INTO t2 VALUES(19021, 33865, 'thirty-three thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(19022, 2777, 'two thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(19023, 45928, 'forty-five thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(19024, 67567, 'sixty-seven thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(19025, 89509, 'eighty-nine thousand five hundred nine');\nINSERT INTO t2 VALUES(19026, 14363, 'fourteen thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(19027, 13142, 'thirteen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(19028, 74945, 'seventy-four thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(19029, 30508, 'thirty thousand five hundred eight');\nINSERT INTO t2 VALUES(19030, 41484, 'forty-one thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(19031, 3995, 'three thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(19032, 54071, 'fifty-four thousand seventy-one');\nINSERT INTO t2 VALUES(19033, 66377, 'sixty-six thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(19034, 18931, 'eighteen thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(19035, 81728, 'eighty-one thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(19036, 64193, 'sixty-four thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(19037, 63077, 'sixty-three thousand seventy-seven');\nINSERT INTO t2 VALUES(19038, 75760, 'seventy-five thousand seven hundred sixty');\nINSERT INTO t2 VALUES(19039, 45176, 'forty-five thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(19040, 49495, 'forty-nine thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(19041, 23953, 'twenty-three thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(19042, 30807, 'thirty thousand eight hundred seven');\nINSERT INTO t2 VALUES(19043, 84432, 'eighty-four thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(19044, 6884, 'six thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(19045, 71966, 'seventy-one thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(19046, 65569, 'sixty-five thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(19047, 15617, 'fifteen thousand six hundred seventeen');\nINSERT INTO t2 VALUES(19048, 49244, 'forty-nine thousand two hundred forty-four');\nINSERT INTO t2 VALUES(19049, 72542, 'seventy-two thousand five hundred forty-two');\nINSERT INTO t2 VALUES(19050, 51806, 'fifty-one thousand eight hundred six');\nINSERT INTO t2 VALUES(19051, 53389, 'fifty-three thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(19052, 23506, 'twenty-three thousand five hundred six');\nINSERT INTO t2 VALUES(19053, 63209, 'sixty-three thousand two hundred nine');\nINSERT INTO t2 VALUES(19054, 9826, 'nine thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(19055, 75631, 'seventy-five thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(19056, 15555, 'fifteen thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(19057, 79187, 'seventy-nine thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(19058, 75915, 'seventy-five thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(19059, 33512, 'thirty-three thousand five hundred twelve');\nINSERT INTO t2 VALUES(19060, 22996, 'twenty-two thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(19061, 20687, 'twenty thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(19062, 37828, 'thirty-seven thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(19063, 46900, 'forty-six thousand nine hundred');\nINSERT INTO t2 VALUES(19064, 25811, 'twenty-five thousand eight hundred eleven');\nINSERT INTO t2 VALUES(19065, 93443, 'ninety-three thousand four hundred forty-three');\nINSERT INTO t2 VALUES(19066, 53314, 'fifty-three thousand three hundred fourteen');\nINSERT INTO t2 VALUES(19067, 19042, 'nineteen thousand forty-two');\nINSERT INTO t2 VALUES(19068, 80681, 'eighty thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(19069, 62655, 'sixty-two thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(19070, 64478, 'sixty-four thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(19071, 93568, 'ninety-three thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(19072, 71184, 'seventy-one thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(19073, 46349, 'forty-six thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(19074, 17332, 'seventeen thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(19075, 3078, 'three thousand seventy-eight');\nINSERT INTO t2 VALUES(19076, 70995, 'seventy thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(19077, 5056, 'five thousand fifty-six');\nINSERT INTO t2 VALUES(19078, 68252, 'sixty-eight thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(19079, 6002, 'six thousand two');\nINSERT INTO t2 VALUES(19080, 50714, 'fifty thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(19081, 12655, 'twelve thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(19082, 44405, 'forty-four thousand four hundred five');\nINSERT INTO t2 VALUES(19083, 66729, 'sixty-six thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(19084, 83802, 'eighty-three thousand eight hundred two');\nINSERT INTO t2 VALUES(19085, 88524, 'eighty-eight thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(19086, 53687, 'fifty-three thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(19087, 20075, 'twenty thousand seventy-five');\nINSERT INTO t2 VALUES(19088, 23867, 'twenty-three thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(19089, 45296, 'forty-five thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(19090, 68474, 'sixty-eight thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(19091, 64963, 'sixty-four thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(19092, 63629, 'sixty-three thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(19093, 68918, 'sixty-eight thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(19094, 84979, 'eighty-four thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(19095, 46533, 'forty-six thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(19096, 5738, 'five thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(19097, 64281, 'sixty-four thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(19098, 23618, 'twenty-three thousand six hundred eighteen');\nINSERT INTO t2 VALUES(19099, 18092, 'eighteen thousand ninety-two');\nINSERT INTO t2 VALUES(19100, 91857, 'ninety-one thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(19101, 86699, 'eighty-six thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(19102, 77769, 'seventy-seven thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(19103, 53988, 'fifty-three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(19104, 51167, 'fifty-one thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(19105, 621, 'six hundred twenty-one');\nINSERT INTO t2 VALUES(19106, 73178, 'seventy-three thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(19107, 35166, 'thirty-five thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(19108, 6609, 'six thousand six hundred nine');\nINSERT INTO t2 VALUES(19109, 44953, 'forty-four thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(19110, 15511, 'fifteen thousand five hundred eleven');\nINSERT INTO t2 VALUES(19111, 53648, 'fifty-three thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(19112, 83729, 'eighty-three thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(19113, 55438, 'fifty-five thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(19114, 61437, 'sixty-one thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(19115, 28033, 'twenty-eight thousand thirty-three');\nINSERT INTO t2 VALUES(19116, 33323, 'thirty-three thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(19117, 4828, 'four thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(19118, 47205, 'forty-seven thousand two hundred five');\nINSERT INTO t2 VALUES(19119, 58332, 'fifty-eight thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(19120, 41066, 'forty-one thousand sixty-six');\nINSERT INTO t2 VALUES(19121, 94989, 'ninety-four thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(19122, 94426, 'ninety-four thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(19123, 22059, 'twenty-two thousand fifty-nine');\nINSERT INTO t2 VALUES(19124, 91133, 'ninety-one thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(19125, 92327, 'ninety-two thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(19126, 51599, 'fifty-one thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(19127, 43984, 'forty-three thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(19128, 30427, 'thirty thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(19129, 75376, 'seventy-five thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(19130, 69139, 'sixty-nine thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(19131, 4525, 'four thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(19132, 54018, 'fifty-four thousand eighteen');\nINSERT INTO t2 VALUES(19133, 47735, 'forty-seven thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(19134, 11168, 'eleven thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(19135, 70787, 'seventy thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(19136, 84789, 'eighty-four thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(19137, 27344, 'twenty-seven thousand three hundred forty-four');\nINSERT INTO t2 VALUES(19138, 38401, 'thirty-eight thousand four hundred one');\nINSERT INTO t2 VALUES(19139, 88983, 'eighty-eight thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(19140, 59937, 'fifty-nine thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(19141, 97464, 'ninety-seven thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(19142, 27361, 'twenty-seven thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(19143, 68881, 'sixty-eight thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(19144, 93728, 'ninety-three thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(19145, 67674, 'sixty-seven thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(19146, 60647, 'sixty thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(19147, 47812, 'forty-seven thousand eight hundred twelve');\nINSERT INTO t2 VALUES(19148, 52620, 'fifty-two thousand six hundred twenty');\nINSERT INTO t2 VALUES(19149, 55378, 'fifty-five thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(19150, 1983, 'one thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(19151, 55759, 'fifty-five thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(19152, 51276, 'fifty-one thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(19153, 2656, 'two thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(19154, 21718, 'twenty-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(19155, 81395, 'eighty-one thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(19156, 45772, 'forty-five thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(19157, 40801, 'forty thousand eight hundred one');\nINSERT INTO t2 VALUES(19158, 61516, 'sixty-one thousand five hundred sixteen');\nINSERT INTO t2 VALUES(19159, 98103, 'ninety-eight thousand one hundred three');\nINSERT INTO t2 VALUES(19160, 92758, 'ninety-two thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(19161, 78281, 'seventy-eight thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(19162, 81014, 'eighty-one thousand fourteen');\nINSERT INTO t2 VALUES(19163, 43639, 'forty-three thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(19164, 56325, 'fifty-six thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(19165, 16505, 'sixteen thousand five hundred five');\nINSERT INTO t2 VALUES(19166, 99756, 'ninety-nine thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(19167, 76540, 'seventy-six thousand five hundred forty');\nINSERT INTO t2 VALUES(19168, 79601, 'seventy-nine thousand six hundred one');\nINSERT INTO t2 VALUES(19169, 32571, 'thirty-two thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(19170, 53496, 'fifty-three thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(19171, 52103, 'fifty-two thousand one hundred three');\nINSERT INTO t2 VALUES(19172, 48441, 'forty-eight thousand four hundred forty-one');\nINSERT INTO t2 VALUES(19173, 11183, 'eleven thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(19174, 11999, 'eleven thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(19175, 64784, 'sixty-four thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(19176, 57648, 'fifty-seven thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(19177, 93896, 'ninety-three thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(19178, 86705, 'eighty-six thousand seven hundred five');\nINSERT INTO t2 VALUES(19179, 56557, 'fifty-six thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(19180, 85082, 'eighty-five thousand eighty-two');\nINSERT INTO t2 VALUES(19181, 44066, 'forty-four thousand sixty-six');\nINSERT INTO t2 VALUES(19182, 79643, 'seventy-nine thousand six hundred forty-three');\nINSERT INTO t2 VALUES(19183, 26669, 'twenty-six thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(19184, 7086, 'seven thousand eighty-six');\nINSERT INTO t2 VALUES(19185, 72203, 'seventy-two thousand two hundred three');\nINSERT INTO t2 VALUES(19186, 26621, 'twenty-six thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(19187, 35360, 'thirty-five thousand three hundred sixty');\nINSERT INTO t2 VALUES(19188, 25153, 'twenty-five thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(19189, 89327, 'eighty-nine thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(19190, 14725, 'fourteen thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(19191, 4851, 'four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(19192, 51849, 'fifty-one thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(19193, 43102, 'forty-three thousand one hundred two');\nINSERT INTO t2 VALUES(19194, 43324, 'forty-three thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(19195, 17926, 'seventeen thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(19196, 92550, 'ninety-two thousand five hundred fifty');\nINSERT INTO t2 VALUES(19197, 43796, 'forty-three thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(19198, 40213, 'forty thousand two hundred thirteen');\nINSERT INTO t2 VALUES(19199, 61732, 'sixty-one thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(19200, 205, 'two hundred five');\nINSERT INTO t2 VALUES(19201, 10938, 'ten thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(19202, 24595, 'twenty-four thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(19203, 24242, 'twenty-four thousand two hundred forty-two');\nINSERT INTO t2 VALUES(19204, 9634, 'nine thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(19205, 47434, 'forty-seven thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(19206, 39636, 'thirty-nine thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(19207, 9980, 'nine thousand nine hundred eighty');\nINSERT INTO t2 VALUES(19208, 14582, 'fourteen thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(19209, 67735, 'sixty-seven thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(19210, 64889, 'sixty-four thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(19211, 96877, 'ninety-six thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(19212, 19382, 'nineteen thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(19213, 48212, 'forty-eight thousand two hundred twelve');\nINSERT INTO t2 VALUES(19214, 48582, 'forty-eight thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(19215, 24328, 'twenty-four thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(19216, 23197, 'twenty-three thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(19217, 98912, 'ninety-eight thousand nine hundred twelve');\nINSERT INTO t2 VALUES(19218, 48167, 'forty-eight thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(19219, 25883, 'twenty-five thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(19220, 54818, 'fifty-four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(19221, 40567, 'forty thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(19222, 77049, 'seventy-seven thousand forty-nine');\nINSERT INTO t2 VALUES(19223, 33584, 'thirty-three thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(19224, 5195, 'five thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(19225, 74944, 'seventy-four thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(19226, 69132, 'sixty-nine thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(19227, 77605, 'seventy-seven thousand six hundred five');\nINSERT INTO t2 VALUES(19228, 70128, 'seventy thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(19229, 30240, 'thirty thousand two hundred forty');\nINSERT INTO t2 VALUES(19230, 1878, 'one thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(19231, 40839, 'forty thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(19232, 4747, 'four thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(19233, 50732, 'fifty thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(19234, 8809, 'eight thousand eight hundred nine');\nINSERT INTO t2 VALUES(19235, 80568, 'eighty thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(19236, 86070, 'eighty-six thousand seventy');\nINSERT INTO t2 VALUES(19237, 38015, 'thirty-eight thousand fifteen');\nINSERT INTO t2 VALUES(19238, 89633, 'eighty-nine thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(19239, 37092, 'thirty-seven thousand ninety-two');\nINSERT INTO t2 VALUES(19240, 2970, 'two thousand nine hundred seventy');\nINSERT INTO t2 VALUES(19241, 69240, 'sixty-nine thousand two hundred forty');\nINSERT INTO t2 VALUES(19242, 91051, 'ninety-one thousand fifty-one');\nINSERT INTO t2 VALUES(19243, 17647, 'seventeen thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(19244, 91738, 'ninety-one thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(19245, 26665, 'twenty-six thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(19246, 70403, 'seventy thousand four hundred three');\nINSERT INTO t2 VALUES(19247, 75347, 'seventy-five thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(19248, 56070, 'fifty-six thousand seventy');\nINSERT INTO t2 VALUES(19249, 7900, 'seven thousand nine hundred');\nINSERT INTO t2 VALUES(19250, 28888, 'twenty-eight thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(19251, 65215, 'sixty-five thousand two hundred fifteen');\nINSERT INTO t2 VALUES(19252, 55049, 'fifty-five thousand forty-nine');\nINSERT INTO t2 VALUES(19253, 77193, 'seventy-seven thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(19254, 61672, 'sixty-one thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(19255, 65044, 'sixty-five thousand forty-four');\nINSERT INTO t2 VALUES(19256, 49607, 'forty-nine thousand six hundred seven');\nINSERT INTO t2 VALUES(19257, 65861, 'sixty-five thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(19258, 34911, 'thirty-four thousand nine hundred eleven');\nINSERT INTO t2 VALUES(19259, 69887, 'sixty-nine thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(19260, 36633, 'thirty-six thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(19261, 19044, 'nineteen thousand forty-four');\nINSERT INTO t2 VALUES(19262, 62796, 'sixty-two thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(19263, 2099, 'two thousand ninety-nine');\nINSERT INTO t2 VALUES(19264, 21442, 'twenty-one thousand four hundred forty-two');\nINSERT INTO t2 VALUES(19265, 1105, 'one thousand one hundred five');\nINSERT INTO t2 VALUES(19266, 9088, 'nine thousand eighty-eight');\nINSERT INTO t2 VALUES(19267, 32553, 'thirty-two thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(19268, 45639, 'forty-five thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(19269, 83968, 'eighty-three thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(19270, 74415, 'seventy-four thousand four hundred fifteen');\nINSERT INTO t2 VALUES(19271, 61705, 'sixty-one thousand seven hundred five');\nINSERT INTO t2 VALUES(19272, 83611, 'eighty-three thousand six hundred eleven');\nINSERT INTO t2 VALUES(19273, 72558, 'seventy-two thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(19274, 70563, 'seventy thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(19275, 89775, 'eighty-nine thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(19276, 30899, 'thirty thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(19277, 36201, 'thirty-six thousand two hundred one');\nINSERT INTO t2 VALUES(19278, 11355, 'eleven thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(19279, 11681, 'eleven thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(19280, 51729, 'fifty-one thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(19281, 9610, 'nine thousand six hundred ten');\nINSERT INTO t2 VALUES(19282, 76630, 'seventy-six thousand six hundred thirty');\nINSERT INTO t2 VALUES(19283, 54242, 'fifty-four thousand two hundred forty-two');\nINSERT INTO t2 VALUES(19284, 43089, 'forty-three thousand eighty-nine');\nINSERT INTO t2 VALUES(19285, 20028, 'twenty thousand twenty-eight');\nINSERT INTO t2 VALUES(19286, 44382, 'forty-four thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(19287, 24297, 'twenty-four thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(19288, 42826, 'forty-two thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(19289, 32397, 'thirty-two thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(19290, 27360, 'twenty-seven thousand three hundred sixty');\nINSERT INTO t2 VALUES(19291, 68466, 'sixty-eight thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(19292, 43800, 'forty-three thousand eight hundred');\nINSERT INTO t2 VALUES(19293, 53218, 'fifty-three thousand two hundred eighteen');\nINSERT INTO t2 VALUES(19294, 96719, 'ninety-six thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(19295, 22882, 'twenty-two thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(19296, 56150, 'fifty-six thousand one hundred fifty');\nINSERT INTO t2 VALUES(19297, 7635, 'seven thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(19298, 96949, 'ninety-six thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(19299, 48472, 'forty-eight thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(19300, 50260, 'fifty thousand two hundred sixty');\nINSERT INTO t2 VALUES(19301, 66430, 'sixty-six thousand four hundred thirty');\nINSERT INTO t2 VALUES(19302, 67692, 'sixty-seven thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(19303, 23852, 'twenty-three thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(19304, 43309, 'forty-three thousand three hundred nine');\nINSERT INTO t2 VALUES(19305, 1511, 'one thousand five hundred eleven');\nINSERT INTO t2 VALUES(19306, 47202, 'forty-seven thousand two hundred two');\nINSERT INTO t2 VALUES(19307, 46243, 'forty-six thousand two hundred forty-three');\nINSERT INTO t2 VALUES(19308, 5669, 'five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(19309, 94119, 'ninety-four thousand one hundred nineteen');\nINSERT INTO t2 VALUES(19310, 32175, 'thirty-two thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(19311, 32083, 'thirty-two thousand eighty-three');\nINSERT INTO t2 VALUES(19312, 22509, 'twenty-two thousand five hundred nine');\nINSERT INTO t2 VALUES(19313, 25422, 'twenty-five thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(19314, 4357, 'four thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(19315, 52869, 'fifty-two thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(19316, 17900, 'seventeen thousand nine hundred');\nINSERT INTO t2 VALUES(19317, 70938, 'seventy thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(19318, 2002, 'two thousand two');\nINSERT INTO t2 VALUES(19319, 33008, 'thirty-three thousand eight');\nINSERT INTO t2 VALUES(19320, 42110, 'forty-two thousand one hundred ten');\nINSERT INTO t2 VALUES(19321, 28239, 'twenty-eight thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(19322, 49620, 'forty-nine thousand six hundred twenty');\nINSERT INTO t2 VALUES(19323, 50859, 'fifty thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(19324, 43373, 'forty-three thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(19325, 45449, 'forty-five thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(19326, 99210, 'ninety-nine thousand two hundred ten');\nINSERT INTO t2 VALUES(19327, 59515, 'fifty-nine thousand five hundred fifteen');\nINSERT INTO t2 VALUES(19328, 15559, 'fifteen thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(19329, 75239, 'seventy-five thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(19330, 61016, 'sixty-one thousand sixteen');\nINSERT INTO t2 VALUES(19331, 13073, 'thirteen thousand seventy-three');\nINSERT INTO t2 VALUES(19332, 17545, 'seventeen thousand five hundred forty-five');\nINSERT INTO t2 VALUES(19333, 48173, 'forty-eight thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(19334, 46919, 'forty-six thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(19335, 40774, 'forty thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(19336, 10810, 'ten thousand eight hundred ten');\nINSERT INTO t2 VALUES(19337, 10772, 'ten thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(19338, 31839, 'thirty-one thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(19339, 77514, 'seventy-seven thousand five hundred fourteen');\nINSERT INTO t2 VALUES(19340, 25507, 'twenty-five thousand five hundred seven');\nINSERT INTO t2 VALUES(19341, 24718, 'twenty-four thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(19342, 96088, 'ninety-six thousand eighty-eight');\nINSERT INTO t2 VALUES(19343, 37808, 'thirty-seven thousand eight hundred eight');\nINSERT INTO t2 VALUES(19344, 28096, 'twenty-eight thousand ninety-six');\nINSERT INTO t2 VALUES(19345, 47087, 'forty-seven thousand eighty-seven');\nINSERT INTO t2 VALUES(19346, 89794, 'eighty-nine thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(19347, 43305, 'forty-three thousand three hundred five');\nINSERT INTO t2 VALUES(19348, 51530, 'fifty-one thousand five hundred thirty');\nINSERT INTO t2 VALUES(19349, 72237, 'seventy-two thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(19350, 48165, 'forty-eight thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(19351, 87052, 'eighty-seven thousand fifty-two');\nINSERT INTO t2 VALUES(19352, 91088, 'ninety-one thousand eighty-eight');\nINSERT INTO t2 VALUES(19353, 21787, 'twenty-one thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(19354, 7438, 'seven thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(19355, 93809, 'ninety-three thousand eight hundred nine');\nINSERT INTO t2 VALUES(19356, 53387, 'fifty-three thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(19357, 50148, 'fifty thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(19358, 2324, 'two thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(19359, 62523, 'sixty-two thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(19360, 79984, 'seventy-nine thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(19361, 39614, 'thirty-nine thousand six hundred fourteen');\nINSERT INTO t2 VALUES(19362, 95101, 'ninety-five thousand one hundred one');\nINSERT INTO t2 VALUES(19363, 66708, 'sixty-six thousand seven hundred eight');\nINSERT INTO t2 VALUES(19364, 46374, 'forty-six thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(19365, 49233, 'forty-nine thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(19366, 41598, 'forty-one thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(19367, 35646, 'thirty-five thousand six hundred forty-six');\nINSERT INTO t2 VALUES(19368, 42860, 'forty-two thousand eight hundred sixty');\nINSERT INTO t2 VALUES(19369, 32294, 'thirty-two thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(19370, 43382, 'forty-three thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(19371, 93880, 'ninety-three thousand eight hundred eighty');\nINSERT INTO t2 VALUES(19372, 73122, 'seventy-three thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(19373, 73350, 'seventy-three thousand three hundred fifty');\nINSERT INTO t2 VALUES(19374, 2592, 'two thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(19375, 31114, 'thirty-one thousand one hundred fourteen');\nINSERT INTO t2 VALUES(19376, 18208, 'eighteen thousand two hundred eight');\nINSERT INTO t2 VALUES(19377, 66715, 'sixty-six thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(19378, 87081, 'eighty-seven thousand eighty-one');\nINSERT INTO t2 VALUES(19379, 63922, 'sixty-three thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(19380, 65135, 'sixty-five thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(19381, 34806, 'thirty-four thousand eight hundred six');\nINSERT INTO t2 VALUES(19382, 16721, 'sixteen thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(19383, 201, 'two hundred one');\nINSERT INTO t2 VALUES(19384, 26400, 'twenty-six thousand four hundred');\nINSERT INTO t2 VALUES(19385, 33252, 'thirty-three thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(19386, 28363, 'twenty-eight thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(19387, 6289, 'six thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(19388, 92145, 'ninety-two thousand one hundred forty-five');\nINSERT INTO t2 VALUES(19389, 84960, 'eighty-four thousand nine hundred sixty');\nINSERT INTO t2 VALUES(19390, 66476, 'sixty-six thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(19391, 19786, 'nineteen thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(19392, 95230, 'ninety-five thousand two hundred thirty');\nINSERT INTO t2 VALUES(19393, 43209, 'forty-three thousand two hundred nine');\nINSERT INTO t2 VALUES(19394, 52268, 'fifty-two thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(19395, 62133, 'sixty-two thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(19396, 49167, 'forty-nine thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(19397, 10010, 'ten thousand ten');\nINSERT INTO t2 VALUES(19398, 10877, 'ten thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(19399, 48856, 'forty-eight thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(19400, 83792, 'eighty-three thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(19401, 70348, 'seventy thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(19402, 47192, 'forty-seven thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(19403, 14386, 'fourteen thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(19404, 66552, 'sixty-six thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(19405, 71672, 'seventy-one thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(19406, 52616, 'fifty-two thousand six hundred sixteen');\nINSERT INTO t2 VALUES(19407, 4293, 'four thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(19408, 51794, 'fifty-one thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(19409, 66831, 'sixty-six thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(19410, 32429, 'thirty-two thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(19411, 47330, 'forty-seven thousand three hundred thirty');\nINSERT INTO t2 VALUES(19412, 6712, 'six thousand seven hundred twelve');\nINSERT INTO t2 VALUES(19413, 22318, 'twenty-two thousand three hundred eighteen');\nINSERT INTO t2 VALUES(19414, 81768, 'eighty-one thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(19415, 17420, 'seventeen thousand four hundred twenty');\nINSERT INTO t2 VALUES(19416, 52444, 'fifty-two thousand four hundred forty-four');\nINSERT INTO t2 VALUES(19417, 66892, 'sixty-six thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(19418, 9876, 'nine thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(19419, 97886, 'ninety-seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(19420, 48250, 'forty-eight thousand two hundred fifty');\nINSERT INTO t2 VALUES(19421, 2444, 'two thousand four hundred forty-four');\nINSERT INTO t2 VALUES(19422, 25141, 'twenty-five thousand one hundred forty-one');\nINSERT INTO t2 VALUES(19423, 76082, 'seventy-six thousand eighty-two');\nINSERT INTO t2 VALUES(19424, 65144, 'sixty-five thousand one hundred forty-four');\nINSERT INTO t2 VALUES(19425, 97353, 'ninety-seven thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(19426, 90269, 'ninety thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(19427, 53684, 'fifty-three thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(19428, 72658, 'seventy-two thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(19429, 11347, 'eleven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(19430, 56510, 'fifty-six thousand five hundred ten');\nINSERT INTO t2 VALUES(19431, 45481, 'forty-five thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(19432, 22, 'twenty-two');\nINSERT INTO t2 VALUES(19433, 28940, 'twenty-eight thousand nine hundred forty');\nINSERT INTO t2 VALUES(19434, 91707, 'ninety-one thousand seven hundred seven');\nINSERT INTO t2 VALUES(19435, 90242, 'ninety thousand two hundred forty-two');\nINSERT INTO t2 VALUES(19436, 83129, 'eighty-three thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(19437, 14988, 'fourteen thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(19438, 59144, 'fifty-nine thousand one hundred forty-four');\nINSERT INTO t2 VALUES(19439, 89946, 'eighty-nine thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(19440, 1864, 'one thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(19441, 94618, 'ninety-four thousand six hundred eighteen');\nINSERT INTO t2 VALUES(19442, 62704, 'sixty-two thousand seven hundred four');\nINSERT INTO t2 VALUES(19443, 48949, 'forty-eight thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(19444, 57557, 'fifty-seven thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(19445, 99652, 'ninety-nine thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(19446, 65442, 'sixty-five thousand four hundred forty-two');\nINSERT INTO t2 VALUES(19447, 86076, 'eighty-six thousand seventy-six');\nINSERT INTO t2 VALUES(19448, 67110, 'sixty-seven thousand one hundred ten');\nINSERT INTO t2 VALUES(19449, 48685, 'forty-eight thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(19450, 7597, 'seven thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(19451, 61705, 'sixty-one thousand seven hundred five');\nINSERT INTO t2 VALUES(19452, 28462, 'twenty-eight thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(19453, 68515, 'sixty-eight thousand five hundred fifteen');\nINSERT INTO t2 VALUES(19454, 28122, 'twenty-eight thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(19455, 57963, 'fifty-seven thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(19456, 22132, 'twenty-two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(19457, 80751, 'eighty thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(19458, 95004, 'ninety-five thousand four');\nINSERT INTO t2 VALUES(19459, 41140, 'forty-one thousand one hundred forty');\nINSERT INTO t2 VALUES(19460, 64038, 'sixty-four thousand thirty-eight');\nINSERT INTO t2 VALUES(19461, 62227, 'sixty-two thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(19462, 64229, 'sixty-four thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(19463, 96822, 'ninety-six thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(19464, 39952, 'thirty-nine thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(19465, 23326, 'twenty-three thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(19466, 75334, 'seventy-five thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(19467, 19972, 'nineteen thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(19468, 67975, 'sixty-seven thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(19469, 69206, 'sixty-nine thousand two hundred six');\nINSERT INTO t2 VALUES(19470, 30012, 'thirty thousand twelve');\nINSERT INTO t2 VALUES(19471, 10368, 'ten thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(19472, 79123, 'seventy-nine thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(19473, 96431, 'ninety-six thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(19474, 72369, 'seventy-two thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(19475, 42306, 'forty-two thousand three hundred six');\nINSERT INTO t2 VALUES(19476, 21722, 'twenty-one thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(19477, 74826, 'seventy-four thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(19478, 91822, 'ninety-one thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(19479, 25361, 'twenty-five thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(19480, 80880, 'eighty thousand eight hundred eighty');\nINSERT INTO t2 VALUES(19481, 19020, 'nineteen thousand twenty');\nINSERT INTO t2 VALUES(19482, 26467, 'twenty-six thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(19483, 55168, 'fifty-five thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(19484, 27838, 'twenty-seven thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(19485, 75097, 'seventy-five thousand ninety-seven');\nINSERT INTO t2 VALUES(19486, 58121, 'fifty-eight thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(19487, 67684, 'sixty-seven thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(19488, 34533, 'thirty-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(19489, 65004, 'sixty-five thousand four');\nINSERT INTO t2 VALUES(19490, 81753, 'eighty-one thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(19491, 22928, 'twenty-two thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(19492, 89768, 'eighty-nine thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(19493, 80066, 'eighty thousand sixty-six');\nINSERT INTO t2 VALUES(19494, 63, 'sixty-three');\nINSERT INTO t2 VALUES(19495, 81133, 'eighty-one thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(19496, 62368, 'sixty-two thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(19497, 96655, 'ninety-six thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(19498, 58355, 'fifty-eight thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(19499, 57203, 'fifty-seven thousand two hundred three');\nINSERT INTO t2 VALUES(19500, 4648, 'four thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(19501, 61347, 'sixty-one thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(19502, 25546, 'twenty-five thousand five hundred forty-six');\nINSERT INTO t2 VALUES(19503, 96284, 'ninety-six thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(19504, 41149, 'forty-one thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(19505, 4904, 'four thousand nine hundred four');\nINSERT INTO t2 VALUES(19506, 18995, 'eighteen thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(19507, 96790, 'ninety-six thousand seven hundred ninety');\nINSERT INTO t2 VALUES(19508, 92836, 'ninety-two thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(19509, 8992, 'eight thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(19510, 69370, 'sixty-nine thousand three hundred seventy');\nINSERT INTO t2 VALUES(19511, 60765, 'sixty thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(19512, 16653, 'sixteen thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(19513, 10060, 'ten thousand sixty');\nINSERT INTO t2 VALUES(19514, 35796, 'thirty-five thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(19515, 93618, 'ninety-three thousand six hundred eighteen');\nINSERT INTO t2 VALUES(19516, 80694, 'eighty thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(19517, 20147, 'twenty thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(19518, 3429, 'three thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(19519, 83564, 'eighty-three thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(19520, 88829, 'eighty-eight thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(19521, 77754, 'seventy-seven thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(19522, 12284, 'twelve thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(19523, 35935, 'thirty-five thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(19524, 27183, 'twenty-seven thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(19525, 64198, 'sixty-four thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(19526, 38675, 'thirty-eight thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(19527, 70844, 'seventy thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(19528, 22704, 'twenty-two thousand seven hundred four');\nINSERT INTO t2 VALUES(19529, 79958, 'seventy-nine thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(19530, 95929, 'ninety-five thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(19531, 6916, 'six thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(19532, 54743, 'fifty-four thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(19533, 60604, 'sixty thousand six hundred four');\nINSERT INTO t2 VALUES(19534, 22325, 'twenty-two thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(19535, 26066, 'twenty-six thousand sixty-six');\nINSERT INTO t2 VALUES(19536, 25068, 'twenty-five thousand sixty-eight');\nINSERT INTO t2 VALUES(19537, 73999, 'seventy-three thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(19538, 90102, 'ninety thousand one hundred two');\nINSERT INTO t2 VALUES(19539, 50796, 'fifty thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(19540, 56825, 'fifty-six thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(19541, 94460, 'ninety-four thousand four hundred sixty');\nINSERT INTO t2 VALUES(19542, 16262, 'sixteen thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(19543, 28322, 'twenty-eight thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(19544, 34284, 'thirty-four thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(19545, 32065, 'thirty-two thousand sixty-five');\nINSERT INTO t2 VALUES(19546, 77081, 'seventy-seven thousand eighty-one');\nINSERT INTO t2 VALUES(19547, 96591, 'ninety-six thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(19548, 16485, 'sixteen thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(19549, 82703, 'eighty-two thousand seven hundred three');\nINSERT INTO t2 VALUES(19550, 48669, 'forty-eight thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(19551, 20707, 'twenty thousand seven hundred seven');\nINSERT INTO t2 VALUES(19552, 41545, 'forty-one thousand five hundred forty-five');\nINSERT INTO t2 VALUES(19553, 27933, 'twenty-seven thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(19554, 66292, 'sixty-six thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(19555, 24202, 'twenty-four thousand two hundred two');\nINSERT INTO t2 VALUES(19556, 62431, 'sixty-two thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(19557, 78840, 'seventy-eight thousand eight hundred forty');\nINSERT INTO t2 VALUES(19558, 16413, 'sixteen thousand four hundred thirteen');\nINSERT INTO t2 VALUES(19559, 70175, 'seventy thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(19560, 60832, 'sixty thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(19561, 23019, 'twenty-three thousand nineteen');\nINSERT INTO t2 VALUES(19562, 12209, 'twelve thousand two hundred nine');\nINSERT INTO t2 VALUES(19563, 80853, 'eighty thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(19564, 92697, 'ninety-two thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(19565, 28415, 'twenty-eight thousand four hundred fifteen');\nINSERT INTO t2 VALUES(19566, 32499, 'thirty-two thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(19567, 27750, 'twenty-seven thousand seven hundred fifty');\nINSERT INTO t2 VALUES(19568, 76482, 'seventy-six thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(19569, 61990, 'sixty-one thousand nine hundred ninety');\nINSERT INTO t2 VALUES(19570, 45851, 'forty-five thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(19571, 70133, 'seventy thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(19572, 10924, 'ten thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(19573, 14232, 'fourteen thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(19574, 42897, 'forty-two thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(19575, 43859, 'forty-three thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(19576, 45896, 'forty-five thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(19577, 80573, 'eighty thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(19578, 33263, 'thirty-three thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(19579, 11309, 'eleven thousand three hundred nine');\nINSERT INTO t2 VALUES(19580, 51548, 'fifty-one thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(19581, 84810, 'eighty-four thousand eight hundred ten');\nINSERT INTO t2 VALUES(19582, 5351, 'five thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(19583, 49954, 'forty-nine thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(19584, 77970, 'seventy-seven thousand nine hundred seventy');\nINSERT INTO t2 VALUES(19585, 38837, 'thirty-eight thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(19586, 84518, 'eighty-four thousand five hundred eighteen');\nINSERT INTO t2 VALUES(19587, 77835, 'seventy-seven thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(19588, 79133, 'seventy-nine thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(19589, 66653, 'sixty-six thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(19590, 66560, 'sixty-six thousand five hundred sixty');\nINSERT INTO t2 VALUES(19591, 49271, 'forty-nine thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(19592, 51718, 'fifty-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(19593, 29659, 'twenty-nine thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(19594, 95580, 'ninety-five thousand five hundred eighty');\nINSERT INTO t2 VALUES(19595, 96407, 'ninety-six thousand four hundred seven');\nINSERT INTO t2 VALUES(19596, 10534, 'ten thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(19597, 87778, 'eighty-seven thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(19598, 15207, 'fifteen thousand two hundred seven');\nINSERT INTO t2 VALUES(19599, 34221, 'thirty-four thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(19600, 94870, 'ninety-four thousand eight hundred seventy');\nINSERT INTO t2 VALUES(19601, 58996, 'fifty-eight thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(19602, 60626, 'sixty thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(19603, 53579, 'fifty-three thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(19604, 23647, 'twenty-three thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(19605, 68599, 'sixty-eight thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(19606, 58470, 'fifty-eight thousand four hundred seventy');\nINSERT INTO t2 VALUES(19607, 14979, 'fourteen thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(19608, 92082, 'ninety-two thousand eighty-two');\nINSERT INTO t2 VALUES(19609, 89164, 'eighty-nine thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(19610, 8578, 'eight thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(19611, 21507, 'twenty-one thousand five hundred seven');\nINSERT INTO t2 VALUES(19612, 78285, 'seventy-eight thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(19613, 28293, 'twenty-eight thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(19614, 93758, 'ninety-three thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(19615, 94719, 'ninety-four thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(19616, 51661, 'fifty-one thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(19617, 82080, 'eighty-two thousand eighty');\nINSERT INTO t2 VALUES(19618, 10941, 'ten thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(19619, 17836, 'seventeen thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(19620, 28320, 'twenty-eight thousand three hundred twenty');\nINSERT INTO t2 VALUES(19621, 83908, 'eighty-three thousand nine hundred eight');\nINSERT INTO t2 VALUES(19622, 60471, 'sixty thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(19623, 91459, 'ninety-one thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(19624, 82685, 'eighty-two thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(19625, 19443, 'nineteen thousand four hundred forty-three');\nINSERT INTO t2 VALUES(19626, 91953, 'ninety-one thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(19627, 3738, 'three thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(19628, 56988, 'fifty-six thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(19629, 96647, 'ninety-six thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(19630, 43647, 'forty-three thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(19631, 85166, 'eighty-five thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(19632, 12253, 'twelve thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(19633, 74525, 'seventy-four thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(19634, 90349, 'ninety thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(19635, 74598, 'seventy-four thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(19636, 1249, 'one thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(19637, 50478, 'fifty thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(19638, 2228, 'two thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(19639, 52153, 'fifty-two thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(19640, 27915, 'twenty-seven thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(19641, 11883, 'eleven thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(19642, 30767, 'thirty thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(19643, 97278, 'ninety-seven thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(19644, 16183, 'sixteen thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(19645, 54272, 'fifty-four thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(19646, 10524, 'ten thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(19647, 91389, 'ninety-one thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(19648, 30152, 'thirty thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(19649, 42300, 'forty-two thousand three hundred');\nINSERT INTO t2 VALUES(19650, 66381, 'sixty-six thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(19651, 61423, 'sixty-one thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(19652, 2439, 'two thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(19653, 38459, 'thirty-eight thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(19654, 18236, 'eighteen thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(19655, 59684, 'fifty-nine thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(19656, 81523, 'eighty-one thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(19657, 13311, 'thirteen thousand three hundred eleven');\nINSERT INTO t2 VALUES(19658, 64452, 'sixty-four thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(19659, 38101, 'thirty-eight thousand one hundred one');\nINSERT INTO t2 VALUES(19660, 47148, 'forty-seven thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(19661, 11105, 'eleven thousand one hundred five');\nINSERT INTO t2 VALUES(19662, 12623, 'twelve thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(19663, 19114, 'nineteen thousand one hundred fourteen');\nINSERT INTO t2 VALUES(19664, 55521, 'fifty-five thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(19665, 61789, 'sixty-one thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(19666, 95109, 'ninety-five thousand one hundred nine');\nINSERT INTO t2 VALUES(19667, 6761, 'six thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(19668, 69469, 'sixty-nine thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(19669, 26772, 'twenty-six thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(19670, 27451, 'twenty-seven thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(19671, 21995, 'twenty-one thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(19672, 59876, 'fifty-nine thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(19673, 13762, 'thirteen thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(19674, 26792, 'twenty-six thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(19675, 81084, 'eighty-one thousand eighty-four');\nINSERT INTO t2 VALUES(19676, 37351, 'thirty-seven thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(19677, 65250, 'sixty-five thousand two hundred fifty');\nINSERT INTO t2 VALUES(19678, 81527, 'eighty-one thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(19679, 36905, 'thirty-six thousand nine hundred five');\nINSERT INTO t2 VALUES(19680, 47660, 'forty-seven thousand six hundred sixty');\nINSERT INTO t2 VALUES(19681, 22995, 'twenty-two thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(19682, 19225, 'nineteen thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(19683, 2693, 'two thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(19684, 64964, 'sixty-four thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(19685, 91691, 'ninety-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(19686, 15382, 'fifteen thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(19687, 67817, 'sixty-seven thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(19688, 78111, 'seventy-eight thousand one hundred eleven');\nINSERT INTO t2 VALUES(19689, 11356, 'eleven thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(19690, 6504, 'six thousand five hundred four');\nINSERT INTO t2 VALUES(19691, 97517, 'ninety-seven thousand five hundred seventeen');\nINSERT INTO t2 VALUES(19692, 98220, 'ninety-eight thousand two hundred twenty');\nINSERT INTO t2 VALUES(19693, 71863, 'seventy-one thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(19694, 85460, 'eighty-five thousand four hundred sixty');\nINSERT INTO t2 VALUES(19695, 28314, 'twenty-eight thousand three hundred fourteen');\nINSERT INTO t2 VALUES(19696, 3256, 'three thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(19697, 58069, 'fifty-eight thousand sixty-nine');\nINSERT INTO t2 VALUES(19698, 94678, 'ninety-four thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(19699, 54302, 'fifty-four thousand three hundred two');\nINSERT INTO t2 VALUES(19700, 25576, 'twenty-five thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(19701, 35569, 'thirty-five thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(19702, 61789, 'sixty-one thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(19703, 99265, 'ninety-nine thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(19704, 16493, 'sixteen thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(19705, 86940, 'eighty-six thousand nine hundred forty');\nINSERT INTO t2 VALUES(19706, 4691, 'four thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(19707, 99848, 'ninety-nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(19708, 61625, 'sixty-one thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(19709, 7584, 'seven thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(19710, 61591, 'sixty-one thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(19711, 48565, 'forty-eight thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(19712, 30013, 'thirty thousand thirteen');\nINSERT INTO t2 VALUES(19713, 43751, 'forty-three thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(19714, 94680, 'ninety-four thousand six hundred eighty');\nINSERT INTO t2 VALUES(19715, 8761, 'eight thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(19716, 6462, 'six thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(19717, 52834, 'fifty-two thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(19718, 29130, 'twenty-nine thousand one hundred thirty');\nINSERT INTO t2 VALUES(19719, 46559, 'forty-six thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(19720, 58524, 'fifty-eight thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(19721, 30948, 'thirty thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(19722, 83340, 'eighty-three thousand three hundred forty');\nINSERT INTO t2 VALUES(19723, 33399, 'thirty-three thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(19724, 35963, 'thirty-five thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(19725, 53570, 'fifty-three thousand five hundred seventy');\nINSERT INTO t2 VALUES(19726, 22531, 'twenty-two thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(19727, 65702, 'sixty-five thousand seven hundred two');\nINSERT INTO t2 VALUES(19728, 6151, 'six thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(19729, 22564, 'twenty-two thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(19730, 51186, 'fifty-one thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(19731, 4282, 'four thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(19732, 18315, 'eighteen thousand three hundred fifteen');\nINSERT INTO t2 VALUES(19733, 76796, 'seventy-six thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(19734, 72166, 'seventy-two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(19735, 53644, 'fifty-three thousand six hundred forty-four');\nINSERT INTO t2 VALUES(19736, 10619, 'ten thousand six hundred nineteen');\nINSERT INTO t2 VALUES(19737, 64997, 'sixty-four thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(19738, 22161, 'twenty-two thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(19739, 8142, 'eight thousand one hundred forty-two');\nINSERT INTO t2 VALUES(19740, 10780, 'ten thousand seven hundred eighty');\nINSERT INTO t2 VALUES(19741, 69248, 'sixty-nine thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(19742, 56786, 'fifty-six thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(19743, 53398, 'fifty-three thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(19744, 84795, 'eighty-four thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(19745, 4636, 'four thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(19746, 6238, 'six thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(19747, 3622, 'three thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(19748, 48162, 'forty-eight thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(19749, 2440, 'two thousand four hundred forty');\nINSERT INTO t2 VALUES(19750, 77308, 'seventy-seven thousand three hundred eight');\nINSERT INTO t2 VALUES(19751, 94800, 'ninety-four thousand eight hundred');\nINSERT INTO t2 VALUES(19752, 24943, 'twenty-four thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(19753, 53543, 'fifty-three thousand five hundred forty-three');\nINSERT INTO t2 VALUES(19754, 57778, 'fifty-seven thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(19755, 1733, 'one thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(19756, 38360, 'thirty-eight thousand three hundred sixty');\nINSERT INTO t2 VALUES(19757, 32098, 'thirty-two thousand ninety-eight');\nINSERT INTO t2 VALUES(19758, 66809, 'sixty-six thousand eight hundred nine');\nINSERT INTO t2 VALUES(19759, 18557, 'eighteen thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(19760, 45597, 'forty-five thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(19761, 19556, 'nineteen thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(19762, 82911, 'eighty-two thousand nine hundred eleven');\nINSERT INTO t2 VALUES(19763, 6948, 'six thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(19764, 22761, 'twenty-two thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(19765, 19630, 'nineteen thousand six hundred thirty');\nINSERT INTO t2 VALUES(19766, 56186, 'fifty-six thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(19767, 35048, 'thirty-five thousand forty-eight');\nINSERT INTO t2 VALUES(19768, 95893, 'ninety-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(19769, 79559, 'seventy-nine thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(19770, 455, 'four hundred fifty-five');\nINSERT INTO t2 VALUES(19771, 13704, 'thirteen thousand seven hundred four');\nINSERT INTO t2 VALUES(19772, 84552, 'eighty-four thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(19773, 79148, 'seventy-nine thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(19774, 79150, 'seventy-nine thousand one hundred fifty');\nINSERT INTO t2 VALUES(19775, 707, 'seven hundred seven');\nINSERT INTO t2 VALUES(19776, 85901, 'eighty-five thousand nine hundred one');\nINSERT INTO t2 VALUES(19777, 27109, 'twenty-seven thousand one hundred nine');\nINSERT INTO t2 VALUES(19778, 21154, 'twenty-one thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(19779, 50486, 'fifty thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(19780, 41518, 'forty-one thousand five hundred eighteen');\nINSERT INTO t2 VALUES(19781, 85460, 'eighty-five thousand four hundred sixty');\nINSERT INTO t2 VALUES(19782, 9865, 'nine thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(19783, 3551, 'three thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(19784, 14149, 'fourteen thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(19785, 11263, 'eleven thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(19786, 29249, 'twenty-nine thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(19787, 92742, 'ninety-two thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(19788, 23738, 'twenty-three thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(19789, 8569, 'eight thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(19790, 73611, 'seventy-three thousand six hundred eleven');\nINSERT INTO t2 VALUES(19791, 17528, 'seventeen thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(19792, 87132, 'eighty-seven thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(19793, 89576, 'eighty-nine thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(19794, 58548, 'fifty-eight thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(19795, 76515, 'seventy-six thousand five hundred fifteen');\nINSERT INTO t2 VALUES(19796, 85275, 'eighty-five thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(19797, 74078, 'seventy-four thousand seventy-eight');\nINSERT INTO t2 VALUES(19798, 92504, 'ninety-two thousand five hundred four');\nINSERT INTO t2 VALUES(19799, 22474, 'twenty-two thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(19800, 80380, 'eighty thousand three hundred eighty');\nINSERT INTO t2 VALUES(19801, 82322, 'eighty-two thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(19802, 2313, 'two thousand three hundred thirteen');\nINSERT INTO t2 VALUES(19803, 79813, 'seventy-nine thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(19804, 47837, 'forty-seven thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(19805, 2108, 'two thousand one hundred eight');\nINSERT INTO t2 VALUES(19806, 16093, 'sixteen thousand ninety-three');\nINSERT INTO t2 VALUES(19807, 60147, 'sixty thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(19808, 20895, 'twenty thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(19809, 74249, 'seventy-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(19810, 55563, 'fifty-five thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(19811, 10747, 'ten thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(19812, 6585, 'six thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(19813, 29215, 'twenty-nine thousand two hundred fifteen');\nINSERT INTO t2 VALUES(19814, 76396, 'seventy-six thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(19815, 85241, 'eighty-five thousand two hundred forty-one');\nINSERT INTO t2 VALUES(19816, 2360, 'two thousand three hundred sixty');\nINSERT INTO t2 VALUES(19817, 53226, 'fifty-three thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(19818, 51942, 'fifty-one thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(19819, 26759, 'twenty-six thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(19820, 59110, 'fifty-nine thousand one hundred ten');\nINSERT INTO t2 VALUES(19821, 35304, 'thirty-five thousand three hundred four');\nINSERT INTO t2 VALUES(19822, 8459, 'eight thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(19823, 69970, 'sixty-nine thousand nine hundred seventy');\nINSERT INTO t2 VALUES(19824, 41987, 'forty-one thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(19825, 27392, 'twenty-seven thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(19826, 85072, 'eighty-five thousand seventy-two');\nINSERT INTO t2 VALUES(19827, 78015, 'seventy-eight thousand fifteen');\nINSERT INTO t2 VALUES(19828, 71128, 'seventy-one thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(19829, 78156, 'seventy-eight thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(19830, 38900, 'thirty-eight thousand nine hundred');\nINSERT INTO t2 VALUES(19831, 86028, 'eighty-six thousand twenty-eight');\nINSERT INTO t2 VALUES(19832, 97658, 'ninety-seven thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(19833, 22026, 'twenty-two thousand twenty-six');\nINSERT INTO t2 VALUES(19834, 60160, 'sixty thousand one hundred sixty');\nINSERT INTO t2 VALUES(19835, 78417, 'seventy-eight thousand four hundred seventeen');\nINSERT INTO t2 VALUES(19836, 32551, 'thirty-two thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(19837, 61239, 'sixty-one thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(19838, 73367, 'seventy-three thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(19839, 46572, 'forty-six thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(19840, 72377, 'seventy-two thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(19841, 862, 'eight hundred sixty-two');\nINSERT INTO t2 VALUES(19842, 18676, 'eighteen thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(19843, 64473, 'sixty-four thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(19844, 42674, 'forty-two thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(19845, 59521, 'fifty-nine thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(19846, 30886, 'thirty thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(19847, 79158, 'seventy-nine thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(19848, 88093, 'eighty-eight thousand ninety-three');\nINSERT INTO t2 VALUES(19849, 32744, 'thirty-two thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(19850, 50025, 'fifty thousand twenty-five');\nINSERT INTO t2 VALUES(19851, 41811, 'forty-one thousand eight hundred eleven');\nINSERT INTO t2 VALUES(19852, 73961, 'seventy-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(19853, 60616, 'sixty thousand six hundred sixteen');\nINSERT INTO t2 VALUES(19854, 84485, 'eighty-four thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(19855, 26608, 'twenty-six thousand six hundred eight');\nINSERT INTO t2 VALUES(19856, 48960, 'forty-eight thousand nine hundred sixty');\nINSERT INTO t2 VALUES(19857, 54946, 'fifty-four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(19858, 38908, 'thirty-eight thousand nine hundred eight');\nINSERT INTO t2 VALUES(19859, 4862, 'four thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(19860, 26032, 'twenty-six thousand thirty-two');\nINSERT INTO t2 VALUES(19861, 17124, 'seventeen thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(19862, 4788, 'four thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(19863, 34230, 'thirty-four thousand two hundred thirty');\nINSERT INTO t2 VALUES(19864, 14896, 'fourteen thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(19865, 96684, 'ninety-six thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(19866, 281, 'two hundred eighty-one');\nINSERT INTO t2 VALUES(19867, 78748, 'seventy-eight thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(19868, 71545, 'seventy-one thousand five hundred forty-five');\nINSERT INTO t2 VALUES(19869, 3317, 'three thousand three hundred seventeen');\nINSERT INTO t2 VALUES(19870, 32683, 'thirty-two thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(19871, 32391, 'thirty-two thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(19872, 98739, 'ninety-eight thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(19873, 30040, 'thirty thousand forty');\nINSERT INTO t2 VALUES(19874, 42821, 'forty-two thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(19875, 43253, 'forty-three thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(19876, 54301, 'fifty-four thousand three hundred one');\nINSERT INTO t2 VALUES(19877, 74672, 'seventy-four thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(19878, 43022, 'forty-three thousand twenty-two');\nINSERT INTO t2 VALUES(19879, 85675, 'eighty-five thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(19880, 33331, 'thirty-three thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(19881, 16335, 'sixteen thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(19882, 97169, 'ninety-seven thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(19883, 77461, 'seventy-seven thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(19884, 29652, 'twenty-nine thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(19885, 10484, 'ten thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(19886, 44133, 'forty-four thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(19887, 13265, 'thirteen thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(19888, 52115, 'fifty-two thousand one hundred fifteen');\nINSERT INTO t2 VALUES(19889, 75885, 'seventy-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(19890, 2600, 'two thousand six hundred');\nINSERT INTO t2 VALUES(19891, 61847, 'sixty-one thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(19892, 72430, 'seventy-two thousand four hundred thirty');\nINSERT INTO t2 VALUES(19893, 55107, 'fifty-five thousand one hundred seven');\nINSERT INTO t2 VALUES(19894, 5971, 'five thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(19895, 6481, 'six thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(19896, 55638, 'fifty-five thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(19897, 48151, 'forty-eight thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(19898, 84748, 'eighty-four thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(19899, 19029, 'nineteen thousand twenty-nine');\nINSERT INTO t2 VALUES(19900, 7061, 'seven thousand sixty-one');\nINSERT INTO t2 VALUES(19901, 94578, 'ninety-four thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(19902, 3663, 'three thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(19903, 66318, 'sixty-six thousand three hundred eighteen');\nINSERT INTO t2 VALUES(19904, 31563, 'thirty-one thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(19905, 79248, 'seventy-nine thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(19906, 25074, 'twenty-five thousand seventy-four');\nINSERT INTO t2 VALUES(19907, 98071, 'ninety-eight thousand seventy-one');\nINSERT INTO t2 VALUES(19908, 24780, 'twenty-four thousand seven hundred eighty');\nINSERT INTO t2 VALUES(19909, 77806, 'seventy-seven thousand eight hundred six');\nINSERT INTO t2 VALUES(19910, 58941, 'fifty-eight thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(19911, 2663, 'two thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(19912, 31506, 'thirty-one thousand five hundred six');\nINSERT INTO t2 VALUES(19913, 75696, 'seventy-five thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(19914, 54651, 'fifty-four thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(19915, 71359, 'seventy-one thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(19916, 69997, 'sixty-nine thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(19917, 12752, 'twelve thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(19918, 65267, 'sixty-five thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(19919, 65878, 'sixty-five thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(19920, 65887, 'sixty-five thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(19921, 46064, 'forty-six thousand sixty-four');\nINSERT INTO t2 VALUES(19922, 19555, 'nineteen thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(19923, 65599, 'sixty-five thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(19924, 20196, 'twenty thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(19925, 90752, 'ninety thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(19926, 17180, 'seventeen thousand one hundred eighty');\nINSERT INTO t2 VALUES(19927, 65179, 'sixty-five thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(19928, 5079, 'five thousand seventy-nine');\nINSERT INTO t2 VALUES(19929, 30209, 'thirty thousand two hundred nine');\nINSERT INTO t2 VALUES(19930, 84827, 'eighty-four thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(19931, 11487, 'eleven thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(19932, 27339, 'twenty-seven thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(19933, 57949, 'fifty-seven thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(19934, 47261, 'forty-seven thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(19935, 44199, 'forty-four thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(19936, 86673, 'eighty-six thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(19937, 7578, 'seven thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(19938, 41773, 'forty-one thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(19939, 91968, 'ninety-one thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(19940, 2132, 'two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(19941, 83697, 'eighty-three thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(19942, 87742, 'eighty-seven thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(19943, 55557, 'fifty-five thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(19944, 63580, 'sixty-three thousand five hundred eighty');\nINSERT INTO t2 VALUES(19945, 1672, 'one thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(19946, 65420, 'sixty-five thousand four hundred twenty');\nINSERT INTO t2 VALUES(19947, 29197, 'twenty-nine thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(19948, 62945, 'sixty-two thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(19949, 9304, 'nine thousand three hundred four');\nINSERT INTO t2 VALUES(19950, 9521, 'nine thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(19951, 36574, 'thirty-six thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(19952, 89705, 'eighty-nine thousand seven hundred five');\nINSERT INTO t2 VALUES(19953, 33556, 'thirty-three thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(19954, 59207, 'fifty-nine thousand two hundred seven');\nINSERT INTO t2 VALUES(19955, 49013, 'forty-nine thousand thirteen');\nINSERT INTO t2 VALUES(19956, 61215, 'sixty-one thousand two hundred fifteen');\nINSERT INTO t2 VALUES(19957, 30798, 'thirty thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(19958, 43824, 'forty-three thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(19959, 64218, 'sixty-four thousand two hundred eighteen');\nINSERT INTO t2 VALUES(19960, 40424, 'forty thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(19961, 4351, 'four thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(19962, 81330, 'eighty-one thousand three hundred thirty');\nINSERT INTO t2 VALUES(19963, 86096, 'eighty-six thousand ninety-six');\nINSERT INTO t2 VALUES(19964, 30436, 'thirty thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(19965, 72176, 'seventy-two thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(19966, 69239, 'sixty-nine thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(19967, 68840, 'sixty-eight thousand eight hundred forty');\nINSERT INTO t2 VALUES(19968, 49386, 'forty-nine thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(19969, 2031, 'two thousand thirty-one');\nINSERT INTO t2 VALUES(19970, 14886, 'fourteen thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(19971, 56536, 'fifty-six thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(19972, 80156, 'eighty thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(19973, 75291, 'seventy-five thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(19974, 90942, 'ninety thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(19975, 45226, 'forty-five thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(19976, 12983, 'twelve thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(19977, 18267, 'eighteen thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(19978, 45047, 'forty-five thousand forty-seven');\nINSERT INTO t2 VALUES(19979, 99153, 'ninety-nine thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(19980, 3947, 'three thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(19981, 61329, 'sixty-one thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(19982, 281, 'two hundred eighty-one');\nINSERT INTO t2 VALUES(19983, 86403, 'eighty-six thousand four hundred three');\nINSERT INTO t2 VALUES(19984, 99446, 'ninety-nine thousand four hundred forty-six');\nINSERT INTO t2 VALUES(19985, 32030, 'thirty-two thousand thirty');\nINSERT INTO t2 VALUES(19986, 48799, 'forty-eight thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(19987, 57741, 'fifty-seven thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(19988, 41067, 'forty-one thousand sixty-seven');\nINSERT INTO t2 VALUES(19989, 52472, 'fifty-two thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(19990, 27076, 'twenty-seven thousand seventy-six');\nINSERT INTO t2 VALUES(19991, 56150, 'fifty-six thousand one hundred fifty');\nINSERT INTO t2 VALUES(19992, 96902, 'ninety-six thousand nine hundred two');\nINSERT INTO t2 VALUES(19993, 4169, 'four thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(19994, 75886, 'seventy-five thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(19995, 5044, 'five thousand forty-four');\nINSERT INTO t2 VALUES(19996, 15261, 'fifteen thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(19997, 9837, 'nine thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(19998, 93782, 'ninety-three thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(19999, 1390, 'one thousand three hundred ninety');\nINSERT INTO t2 VALUES(20000, 17798, 'seventeen thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(20001, 42503, 'forty-two thousand five hundred three');\nINSERT INTO t2 VALUES(20002, 38557, 'thirty-eight thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(20003, 34048, 'thirty-four thousand forty-eight');\nINSERT INTO t2 VALUES(20004, 99840, 'ninety-nine thousand eight hundred forty');\nINSERT INTO t2 VALUES(20005, 31007, 'thirty-one thousand seven');\nINSERT INTO t2 VALUES(20006, 30240, 'thirty thousand two hundred forty');\nINSERT INTO t2 VALUES(20007, 26524, 'twenty-six thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(20008, 31543, 'thirty-one thousand five hundred forty-three');\nINSERT INTO t2 VALUES(20009, 64768, 'sixty-four thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(20010, 54272, 'fifty-four thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(20011, 88423, 'eighty-eight thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(20012, 58659, 'fifty-eight thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(20013, 61602, 'sixty-one thousand six hundred two');\nINSERT INTO t2 VALUES(20014, 17823, 'seventeen thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(20015, 29058, 'twenty-nine thousand fifty-eight');\nINSERT INTO t2 VALUES(20016, 24299, 'twenty-four thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(20017, 10527, 'ten thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(20018, 28501, 'twenty-eight thousand five hundred one');\nINSERT INTO t2 VALUES(20019, 60591, 'sixty thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(20020, 13557, 'thirteen thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(20021, 55375, 'fifty-five thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(20022, 76017, 'seventy-six thousand seventeen');\nINSERT INTO t2 VALUES(20023, 89706, 'eighty-nine thousand seven hundred six');\nINSERT INTO t2 VALUES(20024, 72938, 'seventy-two thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(20025, 84953, 'eighty-four thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(20026, 37602, 'thirty-seven thousand six hundred two');\nINSERT INTO t2 VALUES(20027, 32115, 'thirty-two thousand one hundred fifteen');\nINSERT INTO t2 VALUES(20028, 44930, 'forty-four thousand nine hundred thirty');\nINSERT INTO t2 VALUES(20029, 20967, 'twenty thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(20030, 13195, 'thirteen thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(20031, 92107, 'ninety-two thousand one hundred seven');\nINSERT INTO t2 VALUES(20032, 11648, 'eleven thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(20033, 49707, 'forty-nine thousand seven hundred seven');\nINSERT INTO t2 VALUES(20034, 70924, 'seventy thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(20035, 77205, 'seventy-seven thousand two hundred five');\nINSERT INTO t2 VALUES(20036, 62144, 'sixty-two thousand one hundred forty-four');\nINSERT INTO t2 VALUES(20037, 2889, 'two thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(20038, 20793, 'twenty thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(20039, 13352, 'thirteen thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(20040, 99327, 'ninety-nine thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(20041, 76507, 'seventy-six thousand five hundred seven');\nINSERT INTO t2 VALUES(20042, 40658, 'forty thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(20043, 63959, 'sixty-three thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(20044, 3508, 'three thousand five hundred eight');\nINSERT INTO t2 VALUES(20045, 30481, 'thirty thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(20046, 62331, 'sixty-two thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(20047, 56441, 'fifty-six thousand four hundred forty-one');\nINSERT INTO t2 VALUES(20048, 70111, 'seventy thousand one hundred eleven');\nINSERT INTO t2 VALUES(20049, 40543, 'forty thousand five hundred forty-three');\nINSERT INTO t2 VALUES(20050, 81236, 'eighty-one thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(20051, 1887, 'one thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(20052, 78388, 'seventy-eight thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(20053, 59594, 'fifty-nine thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(20054, 25612, 'twenty-five thousand six hundred twelve');\nINSERT INTO t2 VALUES(20055, 97881, 'ninety-seven thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(20056, 84065, 'eighty-four thousand sixty-five');\nINSERT INTO t2 VALUES(20057, 20841, 'twenty thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(20058, 70864, 'seventy thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(20059, 24, 'twenty-four');\nINSERT INTO t2 VALUES(20060, 59460, 'fifty-nine thousand four hundred sixty');\nINSERT INTO t2 VALUES(20061, 36940, 'thirty-six thousand nine hundred forty');\nINSERT INTO t2 VALUES(20062, 31766, 'thirty-one thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(20063, 99651, 'ninety-nine thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(20064, 32179, 'thirty-two thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(20065, 8549, 'eight thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(20066, 47691, 'forty-seven thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(20067, 58807, 'fifty-eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(20068, 54156, 'fifty-four thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(20069, 91741, 'ninety-one thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(20070, 20641, 'twenty thousand six hundred forty-one');\nINSERT INTO t2 VALUES(20071, 74369, 'seventy-four thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(20072, 56627, 'fifty-six thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(20073, 55334, 'fifty-five thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(20074, 39563, 'thirty-nine thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(20075, 51001, 'fifty-one thousand one');\nINSERT INTO t2 VALUES(20076, 35125, 'thirty-five thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(20077, 4518, 'four thousand five hundred eighteen');\nINSERT INTO t2 VALUES(20078, 492, 'four hundred ninety-two');\nINSERT INTO t2 VALUES(20079, 84850, 'eighty-four thousand eight hundred fifty');\nINSERT INTO t2 VALUES(20080, 9344, 'nine thousand three hundred forty-four');\nINSERT INTO t2 VALUES(20081, 20218, 'twenty thousand two hundred eighteen');\nINSERT INTO t2 VALUES(20082, 70399, 'seventy thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(20083, 4405, 'four thousand four hundred five');\nINSERT INTO t2 VALUES(20084, 36926, 'thirty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(20085, 24812, 'twenty-four thousand eight hundred twelve');\nINSERT INTO t2 VALUES(20086, 61510, 'sixty-one thousand five hundred ten');\nINSERT INTO t2 VALUES(20087, 13932, 'thirteen thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(20088, 68178, 'sixty-eight thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(20089, 65749, 'sixty-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(20090, 76233, 'seventy-six thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(20091, 40858, 'forty thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(20092, 58206, 'fifty-eight thousand two hundred six');\nINSERT INTO t2 VALUES(20093, 62129, 'sixty-two thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(20094, 59911, 'fifty-nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(20095, 88659, 'eighty-eight thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(20096, 77263, 'seventy-seven thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(20097, 27296, 'twenty-seven thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(20098, 61605, 'sixty-one thousand six hundred five');\nINSERT INTO t2 VALUES(20099, 1597, 'one thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(20100, 54857, 'fifty-four thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(20101, 52421, 'fifty-two thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(20102, 60895, 'sixty thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(20103, 92149, 'ninety-two thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(20104, 8905, 'eight thousand nine hundred five');\nINSERT INTO t2 VALUES(20105, 53444, 'fifty-three thousand four hundred forty-four');\nINSERT INTO t2 VALUES(20106, 43750, 'forty-three thousand seven hundred fifty');\nINSERT INTO t2 VALUES(20107, 2619, 'two thousand six hundred nineteen');\nINSERT INTO t2 VALUES(20108, 30994, 'thirty thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(20109, 59684, 'fifty-nine thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(20110, 50801, 'fifty thousand eight hundred one');\nINSERT INTO t2 VALUES(20111, 9781, 'nine thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(20112, 56016, 'fifty-six thousand sixteen');\nINSERT INTO t2 VALUES(20113, 68971, 'sixty-eight thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(20114, 97782, 'ninety-seven thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(20115, 49862, 'forty-nine thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(20116, 72948, 'seventy-two thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(20117, 75898, 'seventy-five thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(20118, 50373, 'fifty thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(20119, 57588, 'fifty-seven thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(20120, 45271, 'forty-five thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(20121, 81570, 'eighty-one thousand five hundred seventy');\nINSERT INTO t2 VALUES(20122, 22299, 'twenty-two thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(20123, 23548, 'twenty-three thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(20124, 19814, 'nineteen thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(20125, 53403, 'fifty-three thousand four hundred three');\nINSERT INTO t2 VALUES(20126, 52996, 'fifty-two thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(20127, 85266, 'eighty-five thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(20128, 52259, 'fifty-two thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(20129, 19140, 'nineteen thousand one hundred forty');\nINSERT INTO t2 VALUES(20130, 18919, 'eighteen thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(20131, 53499, 'fifty-three thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(20132, 5135, 'five thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(20133, 13267, 'thirteen thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(20134, 9012, 'nine thousand twelve');\nINSERT INTO t2 VALUES(20135, 46791, 'forty-six thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(20136, 75896, 'seventy-five thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(20137, 90172, 'ninety thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(20138, 28825, 'twenty-eight thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(20139, 31334, 'thirty-one thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(20140, 69579, 'sixty-nine thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(20141, 82442, 'eighty-two thousand four hundred forty-two');\nINSERT INTO t2 VALUES(20142, 34421, 'thirty-four thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(20143, 74961, 'seventy-four thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(20144, 85862, 'eighty-five thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(20145, 90481, 'ninety thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(20146, 68394, 'sixty-eight thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(20147, 8445, 'eight thousand four hundred forty-five');\nINSERT INTO t2 VALUES(20148, 38830, 'thirty-eight thousand eight hundred thirty');\nINSERT INTO t2 VALUES(20149, 11034, 'eleven thousand thirty-four');\nINSERT INTO t2 VALUES(20150, 31231, 'thirty-one thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(20151, 22335, 'twenty-two thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(20152, 59186, 'fifty-nine thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(20153, 17706, 'seventeen thousand seven hundred six');\nINSERT INTO t2 VALUES(20154, 22502, 'twenty-two thousand five hundred two');\nINSERT INTO t2 VALUES(20155, 61252, 'sixty-one thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(20156, 94795, 'ninety-four thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(20157, 97363, 'ninety-seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(20158, 2586, 'two thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(20159, 85084, 'eighty-five thousand eighty-four');\nINSERT INTO t2 VALUES(20160, 82312, 'eighty-two thousand three hundred twelve');\nINSERT INTO t2 VALUES(20161, 64735, 'sixty-four thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(20162, 17168, 'seventeen thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(20163, 23309, 'twenty-three thousand three hundred nine');\nINSERT INTO t2 VALUES(20164, 43513, 'forty-three thousand five hundred thirteen');\nINSERT INTO t2 VALUES(20165, 23799, 'twenty-three thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(20166, 3217, 'three thousand two hundred seventeen');\nINSERT INTO t2 VALUES(20167, 95340, 'ninety-five thousand three hundred forty');\nINSERT INTO t2 VALUES(20168, 70602, 'seventy thousand six hundred two');\nINSERT INTO t2 VALUES(20169, 20351, 'twenty thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(20170, 24845, 'twenty-four thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(20171, 35949, 'thirty-five thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(20172, 50394, 'fifty thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(20173, 79107, 'seventy-nine thousand one hundred seven');\nINSERT INTO t2 VALUES(20174, 35970, 'thirty-five thousand nine hundred seventy');\nINSERT INTO t2 VALUES(20175, 70893, 'seventy thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(20176, 98818, 'ninety-eight thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(20177, 21591, 'twenty-one thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(20178, 30420, 'thirty thousand four hundred twenty');\nINSERT INTO t2 VALUES(20179, 53188, 'fifty-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(20180, 5982, 'five thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(20181, 90666, 'ninety thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(20182, 9432, 'nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(20183, 93587, 'ninety-three thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(20184, 97535, 'ninety-seven thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(20185, 82558, 'eighty-two thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(20186, 91057, 'ninety-one thousand fifty-seven');\nINSERT INTO t2 VALUES(20187, 5136, 'five thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(20188, 58203, 'fifty-eight thousand two hundred three');\nINSERT INTO t2 VALUES(20189, 27930, 'twenty-seven thousand nine hundred thirty');\nINSERT INTO t2 VALUES(20190, 14079, 'fourteen thousand seventy-nine');\nINSERT INTO t2 VALUES(20191, 28240, 'twenty-eight thousand two hundred forty');\nINSERT INTO t2 VALUES(20192, 35740, 'thirty-five thousand seven hundred forty');\nINSERT INTO t2 VALUES(20193, 5761, 'five thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(20194, 95035, 'ninety-five thousand thirty-five');\nINSERT INTO t2 VALUES(20195, 41961, 'forty-one thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(20196, 80072, 'eighty thousand seventy-two');\nINSERT INTO t2 VALUES(20197, 19463, 'nineteen thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(20198, 83077, 'eighty-three thousand seventy-seven');\nINSERT INTO t2 VALUES(20199, 18275, 'eighteen thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(20200, 10747, 'ten thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(20201, 44058, 'forty-four thousand fifty-eight');\nINSERT INTO t2 VALUES(20202, 57614, 'fifty-seven thousand six hundred fourteen');\nINSERT INTO t2 VALUES(20203, 71589, 'seventy-one thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(20204, 54440, 'fifty-four thousand four hundred forty');\nINSERT INTO t2 VALUES(20205, 13715, 'thirteen thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(20206, 6479, 'six thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(20207, 71980, 'seventy-one thousand nine hundred eighty');\nINSERT INTO t2 VALUES(20208, 12738, 'twelve thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(20209, 58303, 'fifty-eight thousand three hundred three');\nINSERT INTO t2 VALUES(20210, 76557, 'seventy-six thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(20211, 79044, 'seventy-nine thousand forty-four');\nINSERT INTO t2 VALUES(20212, 80736, 'eighty thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(20213, 45741, 'forty-five thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(20214, 92739, 'ninety-two thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(20215, 45169, 'forty-five thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(20216, 41351, 'forty-one thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(20217, 90996, 'ninety thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(20218, 21494, 'twenty-one thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(20219, 88697, 'eighty-eight thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(20220, 43073, 'forty-three thousand seventy-three');\nINSERT INTO t2 VALUES(20221, 69997, 'sixty-nine thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(20222, 20907, 'twenty thousand nine hundred seven');\nINSERT INTO t2 VALUES(20223, 73037, 'seventy-three thousand thirty-seven');\nINSERT INTO t2 VALUES(20224, 45704, 'forty-five thousand seven hundred four');\nINSERT INTO t2 VALUES(20225, 59100, 'fifty-nine thousand one hundred');\nINSERT INTO t2 VALUES(20226, 36816, 'thirty-six thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(20227, 50966, 'fifty thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(20228, 98003, 'ninety-eight thousand three');\nINSERT INTO t2 VALUES(20229, 84626, 'eighty-four thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(20230, 26257, 'twenty-six thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(20231, 60629, 'sixty thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(20232, 49680, 'forty-nine thousand six hundred eighty');\nINSERT INTO t2 VALUES(20233, 70114, 'seventy thousand one hundred fourteen');\nINSERT INTO t2 VALUES(20234, 58637, 'fifty-eight thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(20235, 62562, 'sixty-two thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(20236, 54682, 'fifty-four thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(20237, 54353, 'fifty-four thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(20238, 92896, 'ninety-two thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(20239, 94425, 'ninety-four thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(20240, 80353, 'eighty thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(20241, 65809, 'sixty-five thousand eight hundred nine');\nINSERT INTO t2 VALUES(20242, 49786, 'forty-nine thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(20243, 65147, 'sixty-five thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(20244, 31331, 'thirty-one thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(20245, 49542, 'forty-nine thousand five hundred forty-two');\nINSERT INTO t2 VALUES(20246, 6856, 'six thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(20247, 76064, 'seventy-six thousand sixty-four');\nINSERT INTO t2 VALUES(20248, 60702, 'sixty thousand seven hundred two');\nINSERT INTO t2 VALUES(20249, 21229, 'twenty-one thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(20250, 2003, 'two thousand three');\nINSERT INTO t2 VALUES(20251, 17884, 'seventeen thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(20252, 10085, 'ten thousand eighty-five');\nINSERT INTO t2 VALUES(20253, 36315, 'thirty-six thousand three hundred fifteen');\nINSERT INTO t2 VALUES(20254, 64835, 'sixty-four thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(20255, 58745, 'fifty-eight thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(20256, 13245, 'thirteen thousand two hundred forty-five');\nINSERT INTO t2 VALUES(20257, 2753, 'two thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(20258, 16625, 'sixteen thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(20259, 86585, 'eighty-six thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(20260, 8156, 'eight thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(20261, 73769, 'seventy-three thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(20262, 2438, 'two thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(20263, 81168, 'eighty-one thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(20264, 53391, 'fifty-three thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(20265, 89153, 'eighty-nine thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(20266, 10212, 'ten thousand two hundred twelve');\nINSERT INTO t2 VALUES(20267, 2484, 'two thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(20268, 70558, 'seventy thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(20269, 51682, 'fifty-one thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(20270, 29301, 'twenty-nine thousand three hundred one');\nINSERT INTO t2 VALUES(20271, 90159, 'ninety thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(20272, 5497, 'five thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(20273, 24146, 'twenty-four thousand one hundred forty-six');\nINSERT INTO t2 VALUES(20274, 64063, 'sixty-four thousand sixty-three');\nINSERT INTO t2 VALUES(20275, 13840, 'thirteen thousand eight hundred forty');\nINSERT INTO t2 VALUES(20276, 79603, 'seventy-nine thousand six hundred three');\nINSERT INTO t2 VALUES(20277, 14101, 'fourteen thousand one hundred one');\nINSERT INTO t2 VALUES(20278, 70381, 'seventy thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(20279, 63229, 'sixty-three thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(20280, 40294, 'forty thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(20281, 13414, 'thirteen thousand four hundred fourteen');\nINSERT INTO t2 VALUES(20282, 8670, 'eight thousand six hundred seventy');\nINSERT INTO t2 VALUES(20283, 51517, 'fifty-one thousand five hundred seventeen');\nINSERT INTO t2 VALUES(20284, 29134, 'twenty-nine thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(20285, 10901, 'ten thousand nine hundred one');\nINSERT INTO t2 VALUES(20286, 6581, 'six thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(20287, 87225, 'eighty-seven thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(20288, 75868, 'seventy-five thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(20289, 72804, 'seventy-two thousand eight hundred four');\nINSERT INTO t2 VALUES(20290, 23544, 'twenty-three thousand five hundred forty-four');\nINSERT INTO t2 VALUES(20291, 14553, 'fourteen thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(20292, 48227, 'forty-eight thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(20293, 17071, 'seventeen thousand seventy-one');\nINSERT INTO t2 VALUES(20294, 1319, 'one thousand three hundred nineteen');\nINSERT INTO t2 VALUES(20295, 91479, 'ninety-one thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(20296, 87657, 'eighty-seven thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(20297, 41603, 'forty-one thousand six hundred three');\nINSERT INTO t2 VALUES(20298, 174, 'one hundred seventy-four');\nINSERT INTO t2 VALUES(20299, 48224, 'forty-eight thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(20300, 54888, 'fifty-four thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(20301, 54929, 'fifty-four thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(20302, 96010, 'ninety-six thousand ten');\nINSERT INTO t2 VALUES(20303, 2593, 'two thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(20304, 16481, 'sixteen thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(20305, 56432, 'fifty-six thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(20306, 82761, 'eighty-two thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(20307, 25441, 'twenty-five thousand four hundred forty-one');\nINSERT INTO t2 VALUES(20308, 81835, 'eighty-one thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(20309, 30207, 'thirty thousand two hundred seven');\nINSERT INTO t2 VALUES(20310, 55306, 'fifty-five thousand three hundred six');\nINSERT INTO t2 VALUES(20311, 13397, 'thirteen thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(20312, 55484, 'fifty-five thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(20313, 23271, 'twenty-three thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(20314, 81517, 'eighty-one thousand five hundred seventeen');\nINSERT INTO t2 VALUES(20315, 65882, 'sixty-five thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(20316, 43002, 'forty-three thousand two');\nINSERT INTO t2 VALUES(20317, 55469, 'fifty-five thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(20318, 48602, 'forty-eight thousand six hundred two');\nINSERT INTO t2 VALUES(20319, 34597, 'thirty-four thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(20320, 70213, 'seventy thousand two hundred thirteen');\nINSERT INTO t2 VALUES(20321, 11998, 'eleven thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(20322, 34809, 'thirty-four thousand eight hundred nine');\nINSERT INTO t2 VALUES(20323, 73173, 'seventy-three thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(20324, 15528, 'fifteen thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(20325, 43515, 'forty-three thousand five hundred fifteen');\nINSERT INTO t2 VALUES(20326, 3817, 'three thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(20327, 39286, 'thirty-nine thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(20328, 37847, 'thirty-seven thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(20329, 1772, 'one thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(20330, 90816, 'ninety thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(20331, 12593, 'twelve thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(20332, 6190, 'six thousand one hundred ninety');\nINSERT INTO t2 VALUES(20333, 50553, 'fifty thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(20334, 30029, 'thirty thousand twenty-nine');\nINSERT INTO t2 VALUES(20335, 65562, 'sixty-five thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(20336, 53107, 'fifty-three thousand one hundred seven');\nINSERT INTO t2 VALUES(20337, 14726, 'fourteen thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(20338, 48302, 'forty-eight thousand three hundred two');\nINSERT INTO t2 VALUES(20339, 52743, 'fifty-two thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(20340, 53337, 'fifty-three thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(20341, 1414, 'one thousand four hundred fourteen');\nINSERT INTO t2 VALUES(20342, 77952, 'seventy-seven thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(20343, 65802, 'sixty-five thousand eight hundred two');\nINSERT INTO t2 VALUES(20344, 69572, 'sixty-nine thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(20345, 57233, 'fifty-seven thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(20346, 6468, 'six thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(20347, 46107, 'forty-six thousand one hundred seven');\nINSERT INTO t2 VALUES(20348, 11913, 'eleven thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(20349, 5465, 'five thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(20350, 8829, 'eight thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(20351, 79857, 'seventy-nine thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(20352, 44479, 'forty-four thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(20353, 51139, 'fifty-one thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(20354, 12021, 'twelve thousand twenty-one');\nINSERT INTO t2 VALUES(20355, 63039, 'sixty-three thousand thirty-nine');\nINSERT INTO t2 VALUES(20356, 25638, 'twenty-five thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(20357, 44006, 'forty-four thousand six');\nINSERT INTO t2 VALUES(20358, 36836, 'thirty-six thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(20359, 48347, 'forty-eight thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(20360, 96654, 'ninety-six thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(20361, 26944, 'twenty-six thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(20362, 32915, 'thirty-two thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(20363, 35790, 'thirty-five thousand seven hundred ninety');\nINSERT INTO t2 VALUES(20364, 53996, 'fifty-three thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(20365, 42199, 'forty-two thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(20366, 41593, 'forty-one thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(20367, 56532, 'fifty-six thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(20368, 43214, 'forty-three thousand two hundred fourteen');\nINSERT INTO t2 VALUES(20369, 37436, 'thirty-seven thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(20370, 19747, 'nineteen thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(20371, 47188, 'forty-seven thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(20372, 73553, 'seventy-three thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(20373, 18596, 'eighteen thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(20374, 67614, 'sixty-seven thousand six hundred fourteen');\nINSERT INTO t2 VALUES(20375, 85304, 'eighty-five thousand three hundred four');\nINSERT INTO t2 VALUES(20376, 63543, 'sixty-three thousand five hundred forty-three');\nINSERT INTO t2 VALUES(20377, 87483, 'eighty-seven thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(20378, 48989, 'forty-eight thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(20379, 24757, 'twenty-four thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(20380, 19155, 'nineteen thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(20381, 67853, 'sixty-seven thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(20382, 26459, 'twenty-six thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(20383, 65209, 'sixty-five thousand two hundred nine');\nINSERT INTO t2 VALUES(20384, 53187, 'fifty-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(20385, 44750, 'forty-four thousand seven hundred fifty');\nINSERT INTO t2 VALUES(20386, 30488, 'thirty thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(20387, 4768, 'four thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(20388, 52651, 'fifty-two thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(20389, 84459, 'eighty-four thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(20390, 65066, 'sixty-five thousand sixty-six');\nINSERT INTO t2 VALUES(20391, 37166, 'thirty-seven thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(20392, 79846, 'seventy-nine thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(20393, 32541, 'thirty-two thousand five hundred forty-one');\nINSERT INTO t2 VALUES(20394, 54373, 'fifty-four thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(20395, 13305, 'thirteen thousand three hundred five');\nINSERT INTO t2 VALUES(20396, 63929, 'sixty-three thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(20397, 95045, 'ninety-five thousand forty-five');\nINSERT INTO t2 VALUES(20398, 67461, 'sixty-seven thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(20399, 73774, 'seventy-three thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(20400, 57650, 'fifty-seven thousand six hundred fifty');\nINSERT INTO t2 VALUES(20401, 70015, 'seventy thousand fifteen');\nINSERT INTO t2 VALUES(20402, 67994, 'sixty-seven thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(20403, 31402, 'thirty-one thousand four hundred two');\nINSERT INTO t2 VALUES(20404, 27349, 'twenty-seven thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(20405, 55286, 'fifty-five thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(20406, 28182, 'twenty-eight thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(20407, 3493, 'three thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(20408, 48055, 'forty-eight thousand fifty-five');\nINSERT INTO t2 VALUES(20409, 21244, 'twenty-one thousand two hundred forty-four');\nINSERT INTO t2 VALUES(20410, 38154, 'thirty-eight thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(20411, 80265, 'eighty thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(20412, 71723, 'seventy-one thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(20413, 61343, 'sixty-one thousand three hundred forty-three');\nINSERT INTO t2 VALUES(20414, 74919, 'seventy-four thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(20415, 46577, 'forty-six thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(20416, 2346, 'two thousand three hundred forty-six');\nINSERT INTO t2 VALUES(20417, 85906, 'eighty-five thousand nine hundred six');\nINSERT INTO t2 VALUES(20418, 740, 'seven hundred forty');\nINSERT INTO t2 VALUES(20419, 4222, 'four thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(20420, 64629, 'sixty-four thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(20421, 19167, 'nineteen thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(20422, 5588, 'five thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(20423, 34908, 'thirty-four thousand nine hundred eight');\nINSERT INTO t2 VALUES(20424, 81549, 'eighty-one thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(20425, 16148, 'sixteen thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(20426, 73594, 'seventy-three thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(20427, 17111, 'seventeen thousand one hundred eleven');\nINSERT INTO t2 VALUES(20428, 64030, 'sixty-four thousand thirty');\nINSERT INTO t2 VALUES(20429, 37696, 'thirty-seven thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(20430, 32476, 'thirty-two thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(20431, 55253, 'fifty-five thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(20432, 65532, 'sixty-five thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(20433, 35628, 'thirty-five thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(20434, 27576, 'twenty-seven thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(20435, 71745, 'seventy-one thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(20436, 69337, 'sixty-nine thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(20437, 82296, 'eighty-two thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(20438, 99081, 'ninety-nine thousand eighty-one');\nINSERT INTO t2 VALUES(20439, 37373, 'thirty-seven thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(20440, 84280, 'eighty-four thousand two hundred eighty');\nINSERT INTO t2 VALUES(20441, 66241, 'sixty-six thousand two hundred forty-one');\nINSERT INTO t2 VALUES(20442, 38969, 'thirty-eight thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(20443, 93769, 'ninety-three thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(20444, 35005, 'thirty-five thousand five');\nINSERT INTO t2 VALUES(20445, 71445, 'seventy-one thousand four hundred forty-five');\nINSERT INTO t2 VALUES(20446, 23630, 'twenty-three thousand six hundred thirty');\nINSERT INTO t2 VALUES(20447, 93688, 'ninety-three thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(20448, 86919, 'eighty-six thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(20449, 54085, 'fifty-four thousand eighty-five');\nINSERT INTO t2 VALUES(20450, 71980, 'seventy-one thousand nine hundred eighty');\nINSERT INTO t2 VALUES(20451, 6168, 'six thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(20452, 99993, 'ninety-nine thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(20453, 59193, 'fifty-nine thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(20454, 47886, 'forty-seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(20455, 48562, 'forty-eight thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(20456, 17577, 'seventeen thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(20457, 79387, 'seventy-nine thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(20458, 51301, 'fifty-one thousand three hundred one');\nINSERT INTO t2 VALUES(20459, 36297, 'thirty-six thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(20460, 12403, 'twelve thousand four hundred three');\nINSERT INTO t2 VALUES(20461, 14094, 'fourteen thousand ninety-four');\nINSERT INTO t2 VALUES(20462, 48613, 'forty-eight thousand six hundred thirteen');\nINSERT INTO t2 VALUES(20463, 22479, 'twenty-two thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(20464, 43908, 'forty-three thousand nine hundred eight');\nINSERT INTO t2 VALUES(20465, 20918, 'twenty thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(20466, 33085, 'thirty-three thousand eighty-five');\nINSERT INTO t2 VALUES(20467, 40252, 'forty thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(20468, 75693, 'seventy-five thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(20469, 36604, 'thirty-six thousand six hundred four');\nINSERT INTO t2 VALUES(20470, 93522, 'ninety-three thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(20471, 29917, 'twenty-nine thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(20472, 41927, 'forty-one thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(20473, 66167, 'sixty-six thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(20474, 96824, 'ninety-six thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(20475, 45615, 'forty-five thousand six hundred fifteen');\nINSERT INTO t2 VALUES(20476, 79201, 'seventy-nine thousand two hundred one');\nINSERT INTO t2 VALUES(20477, 24506, 'twenty-four thousand five hundred six');\nINSERT INTO t2 VALUES(20478, 18572, 'eighteen thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(20479, 59586, 'fifty-nine thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(20480, 60391, 'sixty thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(20481, 61283, 'sixty-one thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(20482, 36969, 'thirty-six thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(20483, 91934, 'ninety-one thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(20484, 9812, 'nine thousand eight hundred twelve');\nINSERT INTO t2 VALUES(20485, 90435, 'ninety thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(20486, 62554, 'sixty-two thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(20487, 49650, 'forty-nine thousand six hundred fifty');\nINSERT INTO t2 VALUES(20488, 24294, 'twenty-four thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(20489, 8400, 'eight thousand four hundred');\nINSERT INTO t2 VALUES(20490, 20463, 'twenty thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(20491, 46201, 'forty-six thousand two hundred one');\nINSERT INTO t2 VALUES(20492, 5944, 'five thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(20493, 92271, 'ninety-two thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(20494, 63635, 'sixty-three thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(20495, 32087, 'thirty-two thousand eighty-seven');\nINSERT INTO t2 VALUES(20496, 47807, 'forty-seven thousand eight hundred seven');\nINSERT INTO t2 VALUES(20497, 94715, 'ninety-four thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(20498, 94015, 'ninety-four thousand fifteen');\nINSERT INTO t2 VALUES(20499, 54414, 'fifty-four thousand four hundred fourteen');\nINSERT INTO t2 VALUES(20500, 1588, 'one thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(20501, 63834, 'sixty-three thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(20502, 22239, 'twenty-two thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(20503, 97228, 'ninety-seven thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(20504, 10328, 'ten thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(20505, 76898, 'seventy-six thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(20506, 23497, 'twenty-three thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(20507, 14411, 'fourteen thousand four hundred eleven');\nINSERT INTO t2 VALUES(20508, 91734, 'ninety-one thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(20509, 20831, 'twenty thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(20510, 14442, 'fourteen thousand four hundred forty-two');\nINSERT INTO t2 VALUES(20511, 96949, 'ninety-six thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(20512, 3557, 'three thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(20513, 24705, 'twenty-four thousand seven hundred five');\nINSERT INTO t2 VALUES(20514, 5967, 'five thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(20515, 58437, 'fifty-eight thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(20516, 67809, 'sixty-seven thousand eight hundred nine');\nINSERT INTO t2 VALUES(20517, 62234, 'sixty-two thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(20518, 13333, 'thirteen thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(20519, 8676, 'eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(20520, 14835, 'fourteen thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(20521, 99775, 'ninety-nine thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(20522, 74954, 'seventy-four thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(20523, 40919, 'forty thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(20524, 19816, 'nineteen thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(20525, 57962, 'fifty-seven thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(20526, 16068, 'sixteen thousand sixty-eight');\nINSERT INTO t2 VALUES(20527, 72056, 'seventy-two thousand fifty-six');\nINSERT INTO t2 VALUES(20528, 23015, 'twenty-three thousand fifteen');\nINSERT INTO t2 VALUES(20529, 380, 'three hundred eighty');\nINSERT INTO t2 VALUES(20530, 99922, 'ninety-nine thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(20531, 36592, 'thirty-six thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(20532, 96929, 'ninety-six thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(20533, 68176, 'sixty-eight thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(20534, 27542, 'twenty-seven thousand five hundred forty-two');\nINSERT INTO t2 VALUES(20535, 18933, 'eighteen thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(20536, 10965, 'ten thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(20537, 36763, 'thirty-six thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(20538, 47900, 'forty-seven thousand nine hundred');\nINSERT INTO t2 VALUES(20539, 95142, 'ninety-five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(20540, 34310, 'thirty-four thousand three hundred ten');\nINSERT INTO t2 VALUES(20541, 17033, 'seventeen thousand thirty-three');\nINSERT INTO t2 VALUES(20542, 17959, 'seventeen thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(20543, 63214, 'sixty-three thousand two hundred fourteen');\nINSERT INTO t2 VALUES(20544, 54462, 'fifty-four thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(20545, 36364, 'thirty-six thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(20546, 83234, 'eighty-three thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(20547, 51418, 'fifty-one thousand four hundred eighteen');\nINSERT INTO t2 VALUES(20548, 69847, 'sixty-nine thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(20549, 99572, 'ninety-nine thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(20550, 55268, 'fifty-five thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(20551, 68857, 'sixty-eight thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(20552, 44393, 'forty-four thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(20553, 98973, 'ninety-eight thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(20554, 76854, 'seventy-six thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(20555, 89530, 'eighty-nine thousand five hundred thirty');\nINSERT INTO t2 VALUES(20556, 32166, 'thirty-two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(20557, 63760, 'sixty-three thousand seven hundred sixty');\nINSERT INTO t2 VALUES(20558, 72352, 'seventy-two thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(20559, 94578, 'ninety-four thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(20560, 73423, 'seventy-three thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(20561, 20202, 'twenty thousand two hundred two');\nINSERT INTO t2 VALUES(20562, 73422, 'seventy-three thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(20563, 2379, 'two thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(20564, 79916, 'seventy-nine thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(20565, 85728, 'eighty-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(20566, 48934, 'forty-eight thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(20567, 38606, 'thirty-eight thousand six hundred six');\nINSERT INTO t2 VALUES(20568, 15497, 'fifteen thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(20569, 54742, 'fifty-four thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(20570, 30257, 'thirty thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(20571, 64408, 'sixty-four thousand four hundred eight');\nINSERT INTO t2 VALUES(20572, 47405, 'forty-seven thousand four hundred five');\nINSERT INTO t2 VALUES(20573, 77402, 'seventy-seven thousand four hundred two');\nINSERT INTO t2 VALUES(20574, 99103, 'ninety-nine thousand one hundred three');\nINSERT INTO t2 VALUES(20575, 79651, 'seventy-nine thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(20576, 99402, 'ninety-nine thousand four hundred two');\nINSERT INTO t2 VALUES(20577, 89598, 'eighty-nine thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(20578, 90249, 'ninety thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(20579, 93415, 'ninety-three thousand four hundred fifteen');\nINSERT INTO t2 VALUES(20580, 42630, 'forty-two thousand six hundred thirty');\nINSERT INTO t2 VALUES(20581, 32661, 'thirty-two thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(20582, 37103, 'thirty-seven thousand one hundred three');\nINSERT INTO t2 VALUES(20583, 16978, 'sixteen thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(20584, 38616, 'thirty-eight thousand six hundred sixteen');\nINSERT INTO t2 VALUES(20585, 22704, 'twenty-two thousand seven hundred four');\nINSERT INTO t2 VALUES(20586, 61541, 'sixty-one thousand five hundred forty-one');\nINSERT INTO t2 VALUES(20587, 21899, 'twenty-one thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(20588, 43049, 'forty-three thousand forty-nine');\nINSERT INTO t2 VALUES(20589, 13190, 'thirteen thousand one hundred ninety');\nINSERT INTO t2 VALUES(20590, 66828, 'sixty-six thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(20591, 49570, 'forty-nine thousand five hundred seventy');\nINSERT INTO t2 VALUES(20592, 90522, 'ninety thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(20593, 17497, 'seventeen thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(20594, 35635, 'thirty-five thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(20595, 12377, 'twelve thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(20596, 86218, 'eighty-six thousand two hundred eighteen');\nINSERT INTO t2 VALUES(20597, 90538, 'ninety thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(20598, 62472, 'sixty-two thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(20599, 98352, 'ninety-eight thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(20600, 55944, 'fifty-five thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(20601, 11704, 'eleven thousand seven hundred four');\nINSERT INTO t2 VALUES(20602, 89408, 'eighty-nine thousand four hundred eight');\nINSERT INTO t2 VALUES(20603, 96286, 'ninety-six thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(20604, 87256, 'eighty-seven thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(20605, 48108, 'forty-eight thousand one hundred eight');\nINSERT INTO t2 VALUES(20606, 67272, 'sixty-seven thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(20607, 36700, 'thirty-six thousand seven hundred');\nINSERT INTO t2 VALUES(20608, 62652, 'sixty-two thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(20609, 47604, 'forty-seven thousand six hundred four');\nINSERT INTO t2 VALUES(20610, 19087, 'nineteen thousand eighty-seven');\nINSERT INTO t2 VALUES(20611, 6356, 'six thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(20612, 54976, 'fifty-four thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(20613, 44614, 'forty-four thousand six hundred fourteen');\nINSERT INTO t2 VALUES(20614, 22210, 'twenty-two thousand two hundred ten');\nINSERT INTO t2 VALUES(20615, 12100, 'twelve thousand one hundred');\nINSERT INTO t2 VALUES(20616, 51703, 'fifty-one thousand seven hundred three');\nINSERT INTO t2 VALUES(20617, 74125, 'seventy-four thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(20618, 90307, 'ninety thousand three hundred seven');\nINSERT INTO t2 VALUES(20619, 75986, 'seventy-five thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(20620, 91921, 'ninety-one thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(20621, 93963, 'ninety-three thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(20622, 30547, 'thirty thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(20623, 53953, 'fifty-three thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(20624, 10012, 'ten thousand twelve');\nINSERT INTO t2 VALUES(20625, 1702, 'one thousand seven hundred two');\nINSERT INTO t2 VALUES(20626, 96494, 'ninety-six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(20627, 23928, 'twenty-three thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(20628, 35320, 'thirty-five thousand three hundred twenty');\nINSERT INTO t2 VALUES(20629, 57935, 'fifty-seven thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(20630, 5584, 'five thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(20631, 58202, 'fifty-eight thousand two hundred two');\nINSERT INTO t2 VALUES(20632, 94107, 'ninety-four thousand one hundred seven');\nINSERT INTO t2 VALUES(20633, 85456, 'eighty-five thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(20634, 24056, 'twenty-four thousand fifty-six');\nINSERT INTO t2 VALUES(20635, 5636, 'five thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(20636, 73041, 'seventy-three thousand forty-one');\nINSERT INTO t2 VALUES(20637, 69817, 'sixty-nine thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(20638, 21038, 'twenty-one thousand thirty-eight');\nINSERT INTO t2 VALUES(20639, 30275, 'thirty thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(20640, 27675, 'twenty-seven thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(20641, 94480, 'ninety-four thousand four hundred eighty');\nINSERT INTO t2 VALUES(20642, 15516, 'fifteen thousand five hundred sixteen');\nINSERT INTO t2 VALUES(20643, 11572, 'eleven thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(20644, 45252, 'forty-five thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(20645, 43435, 'forty-three thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(20646, 78990, 'seventy-eight thousand nine hundred ninety');\nINSERT INTO t2 VALUES(20647, 20933, 'twenty thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(20648, 93998, 'ninety-three thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(20649, 33684, 'thirty-three thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(20650, 84349, 'eighty-four thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(20651, 97732, 'ninety-seven thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(20652, 69606, 'sixty-nine thousand six hundred six');\nINSERT INTO t2 VALUES(20653, 1497, 'one thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(20654, 75230, 'seventy-five thousand two hundred thirty');\nINSERT INTO t2 VALUES(20655, 6955, 'six thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(20656, 76200, 'seventy-six thousand two hundred');\nINSERT INTO t2 VALUES(20657, 98056, 'ninety-eight thousand fifty-six');\nINSERT INTO t2 VALUES(20658, 29783, 'twenty-nine thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(20659, 85478, 'eighty-five thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(20660, 87819, 'eighty-seven thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(20661, 32190, 'thirty-two thousand one hundred ninety');\nINSERT INTO t2 VALUES(20662, 72822, 'seventy-two thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(20663, 80514, 'eighty thousand five hundred fourteen');\nINSERT INTO t2 VALUES(20664, 90920, 'ninety thousand nine hundred twenty');\nINSERT INTO t2 VALUES(20665, 47466, 'forty-seven thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(20666, 88710, 'eighty-eight thousand seven hundred ten');\nINSERT INTO t2 VALUES(20667, 56286, 'fifty-six thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(20668, 32668, 'thirty-two thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(20669, 91516, 'ninety-one thousand five hundred sixteen');\nINSERT INTO t2 VALUES(20670, 14851, 'fourteen thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(20671, 69855, 'sixty-nine thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(20672, 9617, 'nine thousand six hundred seventeen');\nINSERT INTO t2 VALUES(20673, 24029, 'twenty-four thousand twenty-nine');\nINSERT INTO t2 VALUES(20674, 53782, 'fifty-three thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(20675, 14005, 'fourteen thousand five');\nINSERT INTO t2 VALUES(20676, 8690, 'eight thousand six hundred ninety');\nINSERT INTO t2 VALUES(20677, 61739, 'sixty-one thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(20678, 39679, 'thirty-nine thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(20679, 69941, 'sixty-nine thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(20680, 29547, 'twenty-nine thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(20681, 96030, 'ninety-six thousand thirty');\nINSERT INTO t2 VALUES(20682, 3431, 'three thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(20683, 99589, 'ninety-nine thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(20684, 79761, 'seventy-nine thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(20685, 95908, 'ninety-five thousand nine hundred eight');\nINSERT INTO t2 VALUES(20686, 84673, 'eighty-four thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(20687, 49314, 'forty-nine thousand three hundred fourteen');\nINSERT INTO t2 VALUES(20688, 8988, 'eight thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(20689, 63741, 'sixty-three thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(20690, 3640, 'three thousand six hundred forty');\nINSERT INTO t2 VALUES(20691, 86596, 'eighty-six thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(20692, 4697, 'four thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(20693, 30021, 'thirty thousand twenty-one');\nINSERT INTO t2 VALUES(20694, 45842, 'forty-five thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(20695, 95024, 'ninety-five thousand twenty-four');\nINSERT INTO t2 VALUES(20696, 59861, 'fifty-nine thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(20697, 39266, 'thirty-nine thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(20698, 4396, 'four thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(20699, 55728, 'fifty-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(20700, 71628, 'seventy-one thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(20701, 90861, 'ninety thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(20702, 67710, 'sixty-seven thousand seven hundred ten');\nINSERT INTO t2 VALUES(20703, 36270, 'thirty-six thousand two hundred seventy');\nINSERT INTO t2 VALUES(20704, 70632, 'seventy thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(20705, 70912, 'seventy thousand nine hundred twelve');\nINSERT INTO t2 VALUES(20706, 6578, 'six thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(20707, 25011, 'twenty-five thousand eleven');\nINSERT INTO t2 VALUES(20708, 1724, 'one thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(20709, 40909, 'forty thousand nine hundred nine');\nINSERT INTO t2 VALUES(20710, 28152, 'twenty-eight thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(20711, 80649, 'eighty thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(20712, 64096, 'sixty-four thousand ninety-six');\nINSERT INTO t2 VALUES(20713, 91258, 'ninety-one thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(20714, 6001, 'six thousand one');\nINSERT INTO t2 VALUES(20715, 28212, 'twenty-eight thousand two hundred twelve');\nINSERT INTO t2 VALUES(20716, 38634, 'thirty-eight thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(20717, 44682, 'forty-four thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(20718, 13774, 'thirteen thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(20719, 72830, 'seventy-two thousand eight hundred thirty');\nINSERT INTO t2 VALUES(20720, 16510, 'sixteen thousand five hundred ten');\nINSERT INTO t2 VALUES(20721, 81935, 'eighty-one thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(20722, 2153, 'two thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(20723, 54733, 'fifty-four thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(20724, 80109, 'eighty thousand one hundred nine');\nINSERT INTO t2 VALUES(20725, 32962, 'thirty-two thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(20726, 65516, 'sixty-five thousand five hundred sixteen');\nINSERT INTO t2 VALUES(20727, 32228, 'thirty-two thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(20728, 36502, 'thirty-six thousand five hundred two');\nINSERT INTO t2 VALUES(20729, 89620, 'eighty-nine thousand six hundred twenty');\nINSERT INTO t2 VALUES(20730, 48893, 'forty-eight thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(20731, 42827, 'forty-two thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(20732, 29125, 'twenty-nine thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(20733, 27007, 'twenty-seven thousand seven');\nINSERT INTO t2 VALUES(20734, 9560, 'nine thousand five hundred sixty');\nINSERT INTO t2 VALUES(20735, 41094, 'forty-one thousand ninety-four');\nINSERT INTO t2 VALUES(20736, 57818, 'fifty-seven thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(20737, 71140, 'seventy-one thousand one hundred forty');\nINSERT INTO t2 VALUES(20738, 27027, 'twenty-seven thousand twenty-seven');\nINSERT INTO t2 VALUES(20739, 8063, 'eight thousand sixty-three');\nINSERT INTO t2 VALUES(20740, 93266, 'ninety-three thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(20741, 72355, 'seventy-two thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(20742, 13654, 'thirteen thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(20743, 45002, 'forty-five thousand two');\nINSERT INTO t2 VALUES(20744, 24665, 'twenty-four thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(20745, 88343, 'eighty-eight thousand three hundred forty-three');\nINSERT INTO t2 VALUES(20746, 33168, 'thirty-three thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(20747, 80145, 'eighty thousand one hundred forty-five');\nINSERT INTO t2 VALUES(20748, 13097, 'thirteen thousand ninety-seven');\nINSERT INTO t2 VALUES(20749, 14021, 'fourteen thousand twenty-one');\nINSERT INTO t2 VALUES(20750, 92067, 'ninety-two thousand sixty-seven');\nINSERT INTO t2 VALUES(20751, 87599, 'eighty-seven thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(20752, 21009, 'twenty-one thousand nine');\nINSERT INTO t2 VALUES(20753, 16556, 'sixteen thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(20754, 59066, 'fifty-nine thousand sixty-six');\nINSERT INTO t2 VALUES(20755, 92223, 'ninety-two thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(20756, 67805, 'sixty-seven thousand eight hundred five');\nINSERT INTO t2 VALUES(20757, 81185, 'eighty-one thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(20758, 19893, 'nineteen thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(20759, 40442, 'forty thousand four hundred forty-two');\nINSERT INTO t2 VALUES(20760, 22420, 'twenty-two thousand four hundred twenty');\nINSERT INTO t2 VALUES(20761, 89833, 'eighty-nine thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(20762, 47442, 'forty-seven thousand four hundred forty-two');\nINSERT INTO t2 VALUES(20763, 64418, 'sixty-four thousand four hundred eighteen');\nINSERT INTO t2 VALUES(20764, 56734, 'fifty-six thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(20765, 48198, 'forty-eight thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(20766, 74803, 'seventy-four thousand eight hundred three');\nINSERT INTO t2 VALUES(20767, 54310, 'fifty-four thousand three hundred ten');\nINSERT INTO t2 VALUES(20768, 42749, 'forty-two thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(20769, 1595, 'one thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(20770, 37104, 'thirty-seven thousand one hundred four');\nINSERT INTO t2 VALUES(20771, 93970, 'ninety-three thousand nine hundred seventy');\nINSERT INTO t2 VALUES(20772, 77004, 'seventy-seven thousand four');\nINSERT INTO t2 VALUES(20773, 38077, 'thirty-eight thousand seventy-seven');\nINSERT INTO t2 VALUES(20774, 4318, 'four thousand three hundred eighteen');\nINSERT INTO t2 VALUES(20775, 30259, 'thirty thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(20776, 60477, 'sixty thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(20777, 29986, 'twenty-nine thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(20778, 56814, 'fifty-six thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(20779, 57633, 'fifty-seven thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(20780, 50036, 'fifty thousand thirty-six');\nINSERT INTO t2 VALUES(20781, 60730, 'sixty thousand seven hundred thirty');\nINSERT INTO t2 VALUES(20782, 35100, 'thirty-five thousand one hundred');\nINSERT INTO t2 VALUES(20783, 61113, 'sixty-one thousand one hundred thirteen');\nINSERT INTO t2 VALUES(20784, 140, 'one hundred forty');\nINSERT INTO t2 VALUES(20785, 35784, 'thirty-five thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(20786, 87422, 'eighty-seven thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(20787, 28128, 'twenty-eight thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(20788, 66213, 'sixty-six thousand two hundred thirteen');\nINSERT INTO t2 VALUES(20789, 44242, 'forty-four thousand two hundred forty-two');\nINSERT INTO t2 VALUES(20790, 2525, 'two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(20791, 60800, 'sixty thousand eight hundred');\nINSERT INTO t2 VALUES(20792, 86046, 'eighty-six thousand forty-six');\nINSERT INTO t2 VALUES(20793, 77259, 'seventy-seven thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(20794, 18484, 'eighteen thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(20795, 32691, 'thirty-two thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(20796, 89681, 'eighty-nine thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(20797, 19743, 'nineteen thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(20798, 2558, 'two thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(20799, 54514, 'fifty-four thousand five hundred fourteen');\nINSERT INTO t2 VALUES(20800, 11525, 'eleven thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(20801, 96249, 'ninety-six thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(20802, 33893, 'thirty-three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(20803, 82190, 'eighty-two thousand one hundred ninety');\nINSERT INTO t2 VALUES(20804, 23297, 'twenty-three thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(20805, 59761, 'fifty-nine thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(20806, 5879, 'five thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(20807, 68389, 'sixty-eight thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(20808, 2624, 'two thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(20809, 17414, 'seventeen thousand four hundred fourteen');\nINSERT INTO t2 VALUES(20810, 45899, 'forty-five thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(20811, 43977, 'forty-three thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(20812, 98925, 'ninety-eight thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(20813, 99535, 'ninety-nine thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(20814, 47119, 'forty-seven thousand one hundred nineteen');\nINSERT INTO t2 VALUES(20815, 92398, 'ninety-two thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(20816, 33278, 'thirty-three thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(20817, 10689, 'ten thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(20818, 5457, 'five thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(20819, 76584, 'seventy-six thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(20820, 78783, 'seventy-eight thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(20821, 89407, 'eighty-nine thousand four hundred seven');\nINSERT INTO t2 VALUES(20822, 87257, 'eighty-seven thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(20823, 28309, 'twenty-eight thousand three hundred nine');\nINSERT INTO t2 VALUES(20824, 63524, 'sixty-three thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(20825, 44844, 'forty-four thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(20826, 61006, 'sixty-one thousand six');\nINSERT INTO t2 VALUES(20827, 79538, 'seventy-nine thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(20828, 97949, 'ninety-seven thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(20829, 8632, 'eight thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(20830, 35741, 'thirty-five thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(20831, 98612, 'ninety-eight thousand six hundred twelve');\nINSERT INTO t2 VALUES(20832, 92970, 'ninety-two thousand nine hundred seventy');\nINSERT INTO t2 VALUES(20833, 42735, 'forty-two thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(20834, 7119, 'seven thousand one hundred nineteen');\nINSERT INTO t2 VALUES(20835, 33845, 'thirty-three thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(20836, 47212, 'forty-seven thousand two hundred twelve');\nINSERT INTO t2 VALUES(20837, 13536, 'thirteen thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(20838, 86333, 'eighty-six thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(20839, 49582, 'forty-nine thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(20840, 60169, 'sixty thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(20841, 49256, 'forty-nine thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(20842, 76036, 'seventy-six thousand thirty-six');\nINSERT INTO t2 VALUES(20843, 25276, 'twenty-five thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(20844, 83041, 'eighty-three thousand forty-one');\nINSERT INTO t2 VALUES(20845, 66167, 'sixty-six thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(20846, 95728, 'ninety-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(20847, 88389, 'eighty-eight thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(20848, 92996, 'ninety-two thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(20849, 66252, 'sixty-six thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(20850, 67792, 'sixty-seven thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(20851, 28765, 'twenty-eight thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(20852, 53846, 'fifty-three thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(20853, 33826, 'thirty-three thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(20854, 3869, 'three thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(20855, 63720, 'sixty-three thousand seven hundred twenty');\nINSERT INTO t2 VALUES(20856, 58814, 'fifty-eight thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(20857, 86750, 'eighty-six thousand seven hundred fifty');\nINSERT INTO t2 VALUES(20858, 45743, 'forty-five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(20859, 81728, 'eighty-one thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(20860, 72524, 'seventy-two thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(20861, 7697, 'seven thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(20862, 25890, 'twenty-five thousand eight hundred ninety');\nINSERT INTO t2 VALUES(20863, 60615, 'sixty thousand six hundred fifteen');\nINSERT INTO t2 VALUES(20864, 42107, 'forty-two thousand one hundred seven');\nINSERT INTO t2 VALUES(20865, 30406, 'thirty thousand four hundred six');\nINSERT INTO t2 VALUES(20866, 86830, 'eighty-six thousand eight hundred thirty');\nINSERT INTO t2 VALUES(20867, 90896, 'ninety thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(20868, 70747, 'seventy thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(20869, 64799, 'sixty-four thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(20870, 73710, 'seventy-three thousand seven hundred ten');\nINSERT INTO t2 VALUES(20871, 50208, 'fifty thousand two hundred eight');\nINSERT INTO t2 VALUES(20872, 68686, 'sixty-eight thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(20873, 74764, 'seventy-four thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(20874, 18007, 'eighteen thousand seven');\nINSERT INTO t2 VALUES(20875, 91354, 'ninety-one thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(20876, 47944, 'forty-seven thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(20877, 48147, 'forty-eight thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(20878, 91253, 'ninety-one thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(20879, 33500, 'thirty-three thousand five hundred');\nINSERT INTO t2 VALUES(20880, 21392, 'twenty-one thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(20881, 15667, 'fifteen thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(20882, 36411, 'thirty-six thousand four hundred eleven');\nINSERT INTO t2 VALUES(20883, 25926, 'twenty-five thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(20884, 12885, 'twelve thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(20885, 10333, 'ten thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(20886, 10415, 'ten thousand four hundred fifteen');\nINSERT INTO t2 VALUES(20887, 77629, 'seventy-seven thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(20888, 72451, 'seventy-two thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(20889, 26811, 'twenty-six thousand eight hundred eleven');\nINSERT INTO t2 VALUES(20890, 61104, 'sixty-one thousand one hundred four');\nINSERT INTO t2 VALUES(20891, 49890, 'forty-nine thousand eight hundred ninety');\nINSERT INTO t2 VALUES(20892, 31323, 'thirty-one thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(20893, 3812, 'three thousand eight hundred twelve');\nINSERT INTO t2 VALUES(20894, 98522, 'ninety-eight thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(20895, 54182, 'fifty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(20896, 86784, 'eighty-six thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(20897, 99745, 'ninety-nine thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(20898, 33437, 'thirty-three thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(20899, 59842, 'fifty-nine thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(20900, 90550, 'ninety thousand five hundred fifty');\nINSERT INTO t2 VALUES(20901, 29505, 'twenty-nine thousand five hundred five');\nINSERT INTO t2 VALUES(20902, 83879, 'eighty-three thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(20903, 46479, 'forty-six thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(20904, 24359, 'twenty-four thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(20905, 17176, 'seventeen thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(20906, 65318, 'sixty-five thousand three hundred eighteen');\nINSERT INTO t2 VALUES(20907, 51389, 'fifty-one thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(20908, 67213, 'sixty-seven thousand two hundred thirteen');\nINSERT INTO t2 VALUES(20909, 27654, 'twenty-seven thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(20910, 32583, 'thirty-two thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(20911, 30785, 'thirty thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(20912, 48418, 'forty-eight thousand four hundred eighteen');\nINSERT INTO t2 VALUES(20913, 34069, 'thirty-four thousand sixty-nine');\nINSERT INTO t2 VALUES(20914, 76752, 'seventy-six thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(20915, 35915, 'thirty-five thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(20916, 44142, 'forty-four thousand one hundred forty-two');\nINSERT INTO t2 VALUES(20917, 67133, 'sixty-seven thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(20918, 97971, 'ninety-seven thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(20919, 43465, 'forty-three thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(20920, 73100, 'seventy-three thousand one hundred');\nINSERT INTO t2 VALUES(20921, 45014, 'forty-five thousand fourteen');\nINSERT INTO t2 VALUES(20922, 27457, 'twenty-seven thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(20923, 48786, 'forty-eight thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(20924, 49949, 'forty-nine thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(20925, 29715, 'twenty-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(20926, 30083, 'thirty thousand eighty-three');\nINSERT INTO t2 VALUES(20927, 36179, 'thirty-six thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(20928, 49258, 'forty-nine thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(20929, 76085, 'seventy-six thousand eighty-five');\nINSERT INTO t2 VALUES(20930, 90842, 'ninety thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(20931, 3301, 'three thousand three hundred one');\nINSERT INTO t2 VALUES(20932, 79447, 'seventy-nine thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(20933, 16649, 'sixteen thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(20934, 74228, 'seventy-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(20935, 97208, 'ninety-seven thousand two hundred eight');\nINSERT INTO t2 VALUES(20936, 83384, 'eighty-three thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(20937, 10761, 'ten thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(20938, 64732, 'sixty-four thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(20939, 21700, 'twenty-one thousand seven hundred');\nINSERT INTO t2 VALUES(20940, 32143, 'thirty-two thousand one hundred forty-three');\nINSERT INTO t2 VALUES(20941, 1986, 'one thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(20942, 19251, 'nineteen thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(20943, 52724, 'fifty-two thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(20944, 34691, 'thirty-four thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(20945, 80799, 'eighty thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(20946, 69836, 'sixty-nine thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(20947, 11915, 'eleven thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(20948, 12871, 'twelve thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(20949, 48325, 'forty-eight thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(20950, 74847, 'seventy-four thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(20951, 94237, 'ninety-four thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(20952, 46860, 'forty-six thousand eight hundred sixty');\nINSERT INTO t2 VALUES(20953, 21807, 'twenty-one thousand eight hundred seven');\nINSERT INTO t2 VALUES(20954, 87440, 'eighty-seven thousand four hundred forty');\nINSERT INTO t2 VALUES(20955, 71782, 'seventy-one thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(20956, 21321, 'twenty-one thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(20957, 30951, 'thirty thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(20958, 11856, 'eleven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(20959, 49811, 'forty-nine thousand eight hundred eleven');\nINSERT INTO t2 VALUES(20960, 79749, 'seventy-nine thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(20961, 11170, 'eleven thousand one hundred seventy');\nINSERT INTO t2 VALUES(20962, 99629, 'ninety-nine thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(20963, 65371, 'sixty-five thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(20964, 34244, 'thirty-four thousand two hundred forty-four');\nINSERT INTO t2 VALUES(20965, 3781, 'three thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(20966, 24686, 'twenty-four thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(20967, 59903, 'fifty-nine thousand nine hundred three');\nINSERT INTO t2 VALUES(20968, 62614, 'sixty-two thousand six hundred fourteen');\nINSERT INTO t2 VALUES(20969, 92050, 'ninety-two thousand fifty');\nINSERT INTO t2 VALUES(20970, 98544, 'ninety-eight thousand five hundred forty-four');\nINSERT INTO t2 VALUES(20971, 28740, 'twenty-eight thousand seven hundred forty');\nINSERT INTO t2 VALUES(20972, 24024, 'twenty-four thousand twenty-four');\nINSERT INTO t2 VALUES(20973, 92000, 'ninety-two thousand');\nINSERT INTO t2 VALUES(20974, 40715, 'forty thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(20975, 52113, 'fifty-two thousand one hundred thirteen');\nINSERT INTO t2 VALUES(20976, 68404, 'sixty-eight thousand four hundred four');\nINSERT INTO t2 VALUES(20977, 85410, 'eighty-five thousand four hundred ten');\nINSERT INTO t2 VALUES(20978, 54851, 'fifty-four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(20979, 22821, 'twenty-two thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(20980, 41283, 'forty-one thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(20981, 46991, 'forty-six thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(20982, 4852, 'four thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(20983, 79635, 'seventy-nine thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(20984, 88412, 'eighty-eight thousand four hundred twelve');\nINSERT INTO t2 VALUES(20985, 93051, 'ninety-three thousand fifty-one');\nINSERT INTO t2 VALUES(20986, 81058, 'eighty-one thousand fifty-eight');\nINSERT INTO t2 VALUES(20987, 41569, 'forty-one thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(20988, 61945, 'sixty-one thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(20989, 62609, 'sixty-two thousand six hundred nine');\nINSERT INTO t2 VALUES(20990, 13715, 'thirteen thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(20991, 2046, 'two thousand forty-six');\nINSERT INTO t2 VALUES(20992, 22876, 'twenty-two thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(20993, 27636, 'twenty-seven thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(20994, 85744, 'eighty-five thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(20995, 8027, 'eight thousand twenty-seven');\nINSERT INTO t2 VALUES(20996, 18531, 'eighteen thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(20997, 30469, 'thirty thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(20998, 88361, 'eighty-eight thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(20999, 3939, 'three thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(21000, 96075, 'ninety-six thousand seventy-five');\nINSERT INTO t2 VALUES(21001, 59400, 'fifty-nine thousand four hundred');\nINSERT INTO t2 VALUES(21002, 16789, 'sixteen thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(21003, 43998, 'forty-three thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(21004, 11203, 'eleven thousand two hundred three');\nINSERT INTO t2 VALUES(21005, 12690, 'twelve thousand six hundred ninety');\nINSERT INTO t2 VALUES(21006, 45157, 'forty-five thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(21007, 28750, 'twenty-eight thousand seven hundred fifty');\nINSERT INTO t2 VALUES(21008, 2560, 'two thousand five hundred sixty');\nINSERT INTO t2 VALUES(21009, 21191, 'twenty-one thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(21010, 29201, 'twenty-nine thousand two hundred one');\nINSERT INTO t2 VALUES(21011, 37956, 'thirty-seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(21012, 39641, 'thirty-nine thousand six hundred forty-one');\nINSERT INTO t2 VALUES(21013, 65272, 'sixty-five thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(21014, 27780, 'twenty-seven thousand seven hundred eighty');\nINSERT INTO t2 VALUES(21015, 91818, 'ninety-one thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(21016, 51822, 'fifty-one thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(21017, 64487, 'sixty-four thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(21018, 91951, 'ninety-one thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(21019, 92209, 'ninety-two thousand two hundred nine');\nINSERT INTO t2 VALUES(21020, 38116, 'thirty-eight thousand one hundred sixteen');\nINSERT INTO t2 VALUES(21021, 10384, 'ten thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(21022, 42093, 'forty-two thousand ninety-three');\nINSERT INTO t2 VALUES(21023, 64506, 'sixty-four thousand five hundred six');\nINSERT INTO t2 VALUES(21024, 80152, 'eighty thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(21025, 20984, 'twenty thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(21026, 76875, 'seventy-six thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(21027, 95590, 'ninety-five thousand five hundred ninety');\nINSERT INTO t2 VALUES(21028, 51070, 'fifty-one thousand seventy');\nINSERT INTO t2 VALUES(21029, 90143, 'ninety thousand one hundred forty-three');\nINSERT INTO t2 VALUES(21030, 26787, 'twenty-six thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(21031, 50854, 'fifty thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(21032, 96583, 'ninety-six thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(21033, 31976, 'thirty-one thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(21034, 80099, 'eighty thousand ninety-nine');\nINSERT INTO t2 VALUES(21035, 90856, 'ninety thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(21036, 39443, 'thirty-nine thousand four hundred forty-three');\nINSERT INTO t2 VALUES(21037, 10934, 'ten thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(21038, 94505, 'ninety-four thousand five hundred five');\nINSERT INTO t2 VALUES(21039, 95538, 'ninety-five thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(21040, 36148, 'thirty-six thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(21041, 50446, 'fifty thousand four hundred forty-six');\nINSERT INTO t2 VALUES(21042, 91321, 'ninety-one thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(21043, 73528, 'seventy-three thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(21044, 89995, 'eighty-nine thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(21045, 58200, 'fifty-eight thousand two hundred');\nINSERT INTO t2 VALUES(21046, 54511, 'fifty-four thousand five hundred eleven');\nINSERT INTO t2 VALUES(21047, 24946, 'twenty-four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(21048, 66204, 'sixty-six thousand two hundred four');\nINSERT INTO t2 VALUES(21049, 26736, 'twenty-six thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(21050, 90899, 'ninety thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(21051, 73705, 'seventy-three thousand seven hundred five');\nINSERT INTO t2 VALUES(21052, 5359, 'five thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(21053, 42040, 'forty-two thousand forty');\nINSERT INTO t2 VALUES(21054, 21404, 'twenty-one thousand four hundred four');\nINSERT INTO t2 VALUES(21055, 63277, 'sixty-three thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(21056, 10171, 'ten thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(21057, 76362, 'seventy-six thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(21058, 83499, 'eighty-three thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(21059, 77224, 'seventy-seven thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(21060, 29364, 'twenty-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(21061, 67887, 'sixty-seven thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(21062, 84419, 'eighty-four thousand four hundred nineteen');\nINSERT INTO t2 VALUES(21063, 989, 'nine hundred eighty-nine');\nINSERT INTO t2 VALUES(21064, 89289, 'eighty-nine thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(21065, 73225, 'seventy-three thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(21066, 60805, 'sixty thousand eight hundred five');\nINSERT INTO t2 VALUES(21067, 70338, 'seventy thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(21068, 58899, 'fifty-eight thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(21069, 30776, 'thirty thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(21070, 78990, 'seventy-eight thousand nine hundred ninety');\nINSERT INTO t2 VALUES(21071, 1323, 'one thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(21072, 61781, 'sixty-one thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(21073, 9719, 'nine thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(21074, 58428, 'fifty-eight thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(21075, 38991, 'thirty-eight thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(21076, 75192, 'seventy-five thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(21077, 27483, 'twenty-seven thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(21078, 86624, 'eighty-six thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(21079, 17538, 'seventeen thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(21080, 11774, 'eleven thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(21081, 92822, 'ninety-two thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(21082, 68637, 'sixty-eight thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(21083, 45636, 'forty-five thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(21084, 40243, 'forty thousand two hundred forty-three');\nINSERT INTO t2 VALUES(21085, 37951, 'thirty-seven thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(21086, 96551, 'ninety-six thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(21087, 78207, 'seventy-eight thousand two hundred seven');\nINSERT INTO t2 VALUES(21088, 81023, 'eighty-one thousand twenty-three');\nINSERT INTO t2 VALUES(21089, 90870, 'ninety thousand eight hundred seventy');\nINSERT INTO t2 VALUES(21090, 44646, 'forty-four thousand six hundred forty-six');\nINSERT INTO t2 VALUES(21091, 5083, 'five thousand eighty-three');\nINSERT INTO t2 VALUES(21092, 48450, 'forty-eight thousand four hundred fifty');\nINSERT INTO t2 VALUES(21093, 44014, 'forty-four thousand fourteen');\nINSERT INTO t2 VALUES(21094, 53634, 'fifty-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(21095, 39553, 'thirty-nine thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(21096, 10217, 'ten thousand two hundred seventeen');\nINSERT INTO t2 VALUES(21097, 56822, 'fifty-six thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(21098, 77396, 'seventy-seven thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(21099, 18154, 'eighteen thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(21100, 7991, 'seven thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(21101, 27470, 'twenty-seven thousand four hundred seventy');\nINSERT INTO t2 VALUES(21102, 18907, 'eighteen thousand nine hundred seven');\nINSERT INTO t2 VALUES(21103, 44731, 'forty-four thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(21104, 25789, 'twenty-five thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(21105, 84915, 'eighty-four thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(21106, 94332, 'ninety-four thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(21107, 30353, 'thirty thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(21108, 55869, 'fifty-five thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(21109, 44163, 'forty-four thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(21110, 79040, 'seventy-nine thousand forty');\nINSERT INTO t2 VALUES(21111, 53292, 'fifty-three thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(21112, 65622, 'sixty-five thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(21113, 78480, 'seventy-eight thousand four hundred eighty');\nINSERT INTO t2 VALUES(21114, 56182, 'fifty-six thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(21115, 65323, 'sixty-five thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(21116, 18055, 'eighteen thousand fifty-five');\nINSERT INTO t2 VALUES(21117, 4132, 'four thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(21118, 75164, 'seventy-five thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(21119, 81427, 'eighty-one thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(21120, 88603, 'eighty-eight thousand six hundred three');\nINSERT INTO t2 VALUES(21121, 40013, 'forty thousand thirteen');\nINSERT INTO t2 VALUES(21122, 40354, 'forty thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(21123, 30922, 'thirty thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(21124, 23584, 'twenty-three thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(21125, 98815, 'ninety-eight thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(21126, 28833, 'twenty-eight thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(21127, 89423, 'eighty-nine thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(21128, 98822, 'ninety-eight thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(21129, 93222, 'ninety-three thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(21130, 94260, 'ninety-four thousand two hundred sixty');\nINSERT INTO t2 VALUES(21131, 71873, 'seventy-one thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(21132, 18273, 'eighteen thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(21133, 25543, 'twenty-five thousand five hundred forty-three');\nINSERT INTO t2 VALUES(21134, 95612, 'ninety-five thousand six hundred twelve');\nINSERT INTO t2 VALUES(21135, 89785, 'eighty-nine thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(21136, 45190, 'forty-five thousand one hundred ninety');\nINSERT INTO t2 VALUES(21137, 36832, 'thirty-six thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(21138, 13275, 'thirteen thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(21139, 41657, 'forty-one thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(21140, 85651, 'eighty-five thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(21141, 35829, 'thirty-five thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(21142, 7360, 'seven thousand three hundred sixty');\nINSERT INTO t2 VALUES(21143, 4330, 'four thousand three hundred thirty');\nINSERT INTO t2 VALUES(21144, 78095, 'seventy-eight thousand ninety-five');\nINSERT INTO t2 VALUES(21145, 17373, 'seventeen thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(21146, 68720, 'sixty-eight thousand seven hundred twenty');\nINSERT INTO t2 VALUES(21147, 21431, 'twenty-one thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(21148, 55612, 'fifty-five thousand six hundred twelve');\nINSERT INTO t2 VALUES(21149, 95643, 'ninety-five thousand six hundred forty-three');\nINSERT INTO t2 VALUES(21150, 8216, 'eight thousand two hundred sixteen');\nINSERT INTO t2 VALUES(21151, 20356, 'twenty thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(21152, 65, 'sixty-five');\nINSERT INTO t2 VALUES(21153, 70899, 'seventy thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(21154, 18384, 'eighteen thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(21155, 8512, 'eight thousand five hundred twelve');\nINSERT INTO t2 VALUES(21156, 66153, 'sixty-six thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(21157, 19821, 'nineteen thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(21158, 39067, 'thirty-nine thousand sixty-seven');\nINSERT INTO t2 VALUES(21159, 62279, 'sixty-two thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(21160, 36119, 'thirty-six thousand one hundred nineteen');\nINSERT INTO t2 VALUES(21161, 30107, 'thirty thousand one hundred seven');\nINSERT INTO t2 VALUES(21162, 26583, 'twenty-six thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(21163, 66013, 'sixty-six thousand thirteen');\nINSERT INTO t2 VALUES(21164, 14233, 'fourteen thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(21165, 4193, 'four thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(21166, 778, 'seven hundred seventy-eight');\nINSERT INTO t2 VALUES(21167, 38837, 'thirty-eight thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(21168, 94713, 'ninety-four thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(21169, 34564, 'thirty-four thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(21170, 54520, 'fifty-four thousand five hundred twenty');\nINSERT INTO t2 VALUES(21171, 62952, 'sixty-two thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(21172, 69621, 'sixty-nine thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(21173, 88499, 'eighty-eight thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(21174, 49397, 'forty-nine thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(21175, 28574, 'twenty-eight thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(21176, 11480, 'eleven thousand four hundred eighty');\nINSERT INTO t2 VALUES(21177, 40208, 'forty thousand two hundred eight');\nINSERT INTO t2 VALUES(21178, 38900, 'thirty-eight thousand nine hundred');\nINSERT INTO t2 VALUES(21179, 83957, 'eighty-three thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(21180, 27247, 'twenty-seven thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(21181, 97307, 'ninety-seven thousand three hundred seven');\nINSERT INTO t2 VALUES(21182, 39555, 'thirty-nine thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(21183, 93027, 'ninety-three thousand twenty-seven');\nINSERT INTO t2 VALUES(21184, 55590, 'fifty-five thousand five hundred ninety');\nINSERT INTO t2 VALUES(21185, 96966, 'ninety-six thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(21186, 6905, 'six thousand nine hundred five');\nINSERT INTO t2 VALUES(21187, 96377, 'ninety-six thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(21188, 67033, 'sixty-seven thousand thirty-three');\nINSERT INTO t2 VALUES(21189, 31372, 'thirty-one thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(21190, 86793, 'eighty-six thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(21191, 15123, 'fifteen thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(21192, 78993, 'seventy-eight thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(21193, 56609, 'fifty-six thousand six hundred nine');\nINSERT INTO t2 VALUES(21194, 15481, 'fifteen thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(21195, 918, 'nine hundred eighteen');\nINSERT INTO t2 VALUES(21196, 63836, 'sixty-three thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(21197, 33745, 'thirty-three thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(21198, 8756, 'eight thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(21199, 41975, 'forty-one thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(21200, 23231, 'twenty-three thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(21201, 17286, 'seventeen thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(21202, 30531, 'thirty thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(21203, 15593, 'fifteen thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(21204, 12905, 'twelve thousand nine hundred five');\nINSERT INTO t2 VALUES(21205, 83139, 'eighty-three thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(21206, 33667, 'thirty-three thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(21207, 66932, 'sixty-six thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(21208, 64229, 'sixty-four thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(21209, 63294, 'sixty-three thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(21210, 64787, 'sixty-four thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(21211, 13033, 'thirteen thousand thirty-three');\nINSERT INTO t2 VALUES(21212, 65534, 'sixty-five thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(21213, 15872, 'fifteen thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(21214, 60988, 'sixty thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(21215, 41443, 'forty-one thousand four hundred forty-three');\nINSERT INTO t2 VALUES(21216, 77748, 'seventy-seven thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(21217, 18982, 'eighteen thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(21218, 88649, 'eighty-eight thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(21219, 34980, 'thirty-four thousand nine hundred eighty');\nINSERT INTO t2 VALUES(21220, 89340, 'eighty-nine thousand three hundred forty');\nINSERT INTO t2 VALUES(21221, 38330, 'thirty-eight thousand three hundred thirty');\nINSERT INTO t2 VALUES(21222, 69647, 'sixty-nine thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(21223, 74253, 'seventy-four thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(21224, 86753, 'eighty-six thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(21225, 75315, 'seventy-five thousand three hundred fifteen');\nINSERT INTO t2 VALUES(21226, 84576, 'eighty-four thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(21227, 38737, 'thirty-eight thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(21228, 28108, 'twenty-eight thousand one hundred eight');\nINSERT INTO t2 VALUES(21229, 74630, 'seventy-four thousand six hundred thirty');\nINSERT INTO t2 VALUES(21230, 69834, 'sixty-nine thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(21231, 42819, 'forty-two thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(21232, 95634, 'ninety-five thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(21233, 17095, 'seventeen thousand ninety-five');\nINSERT INTO t2 VALUES(21234, 29655, 'twenty-nine thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(21235, 97871, 'ninety-seven thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(21236, 98896, 'ninety-eight thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(21237, 53044, 'fifty-three thousand forty-four');\nINSERT INTO t2 VALUES(21238, 37909, 'thirty-seven thousand nine hundred nine');\nINSERT INTO t2 VALUES(21239, 4426, 'four thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(21240, 87378, 'eighty-seven thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(21241, 9786, 'nine thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(21242, 81767, 'eighty-one thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(21243, 58327, 'fifty-eight thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(21244, 33417, 'thirty-three thousand four hundred seventeen');\nINSERT INTO t2 VALUES(21245, 4418, 'four thousand four hundred eighteen');\nINSERT INTO t2 VALUES(21246, 82809, 'eighty-two thousand eight hundred nine');\nINSERT INTO t2 VALUES(21247, 52214, 'fifty-two thousand two hundred fourteen');\nINSERT INTO t2 VALUES(21248, 43581, 'forty-three thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(21249, 6297, 'six thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(21250, 53086, 'fifty-three thousand eighty-six');\nINSERT INTO t2 VALUES(21251, 58003, 'fifty-eight thousand three');\nINSERT INTO t2 VALUES(21252, 29632, 'twenty-nine thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(21253, 17891, 'seventeen thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(21254, 19034, 'nineteen thousand thirty-four');\nINSERT INTO t2 VALUES(21255, 9848, 'nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(21256, 64871, 'sixty-four thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(21257, 9277, 'nine thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(21258, 10050, 'ten thousand fifty');\nINSERT INTO t2 VALUES(21259, 1699, 'one thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(21260, 55181, 'fifty-five thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(21261, 25210, 'twenty-five thousand two hundred ten');\nINSERT INTO t2 VALUES(21262, 56763, 'fifty-six thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(21263, 28872, 'twenty-eight thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(21264, 54701, 'fifty-four thousand seven hundred one');\nINSERT INTO t2 VALUES(21265, 1772, 'one thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(21266, 59133, 'fifty-nine thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(21267, 33068, 'thirty-three thousand sixty-eight');\nINSERT INTO t2 VALUES(21268, 70074, 'seventy thousand seventy-four');\nINSERT INTO t2 VALUES(21269, 11454, 'eleven thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(21270, 37929, 'thirty-seven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(21271, 36406, 'thirty-six thousand four hundred six');\nINSERT INTO t2 VALUES(21272, 16624, 'sixteen thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(21273, 31066, 'thirty-one thousand sixty-six');\nINSERT INTO t2 VALUES(21274, 77724, 'seventy-seven thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(21275, 92829, 'ninety-two thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(21276, 40185, 'forty thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(21277, 98611, 'ninety-eight thousand six hundred eleven');\nINSERT INTO t2 VALUES(21278, 10970, 'ten thousand nine hundred seventy');\nINSERT INTO t2 VALUES(21279, 56091, 'fifty-six thousand ninety-one');\nINSERT INTO t2 VALUES(21280, 64390, 'sixty-four thousand three hundred ninety');\nINSERT INTO t2 VALUES(21281, 15563, 'fifteen thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(21282, 64571, 'sixty-four thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(21283, 46171, 'forty-six thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(21284, 86247, 'eighty-six thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(21285, 44435, 'forty-four thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(21286, 55059, 'fifty-five thousand fifty-nine');\nINSERT INTO t2 VALUES(21287, 22013, 'twenty-two thousand thirteen');\nINSERT INTO t2 VALUES(21288, 41647, 'forty-one thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(21289, 16025, 'sixteen thousand twenty-five');\nINSERT INTO t2 VALUES(21290, 55038, 'fifty-five thousand thirty-eight');\nINSERT INTO t2 VALUES(21291, 25601, 'twenty-five thousand six hundred one');\nINSERT INTO t2 VALUES(21292, 90923, 'ninety thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(21293, 242, 'two hundred forty-two');\nINSERT INTO t2 VALUES(21294, 15322, 'fifteen thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(21295, 22266, 'twenty-two thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(21296, 75970, 'seventy-five thousand nine hundred seventy');\nINSERT INTO t2 VALUES(21297, 63345, 'sixty-three thousand three hundred forty-five');\nINSERT INTO t2 VALUES(21298, 47058, 'forty-seven thousand fifty-eight');\nINSERT INTO t2 VALUES(21299, 70461, 'seventy thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(21300, 62271, 'sixty-two thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(21301, 10355, 'ten thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(21302, 43830, 'forty-three thousand eight hundred thirty');\nINSERT INTO t2 VALUES(21303, 55963, 'fifty-five thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(21304, 44179, 'forty-four thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(21305, 70526, 'seventy thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(21306, 66918, 'sixty-six thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(21307, 74563, 'seventy-four thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(21308, 55721, 'fifty-five thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(21309, 80998, 'eighty thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(21310, 75092, 'seventy-five thousand ninety-two');\nINSERT INTO t2 VALUES(21311, 63547, 'sixty-three thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(21312, 42808, 'forty-two thousand eight hundred eight');\nINSERT INTO t2 VALUES(21313, 51127, 'fifty-one thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(21314, 57628, 'fifty-seven thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(21315, 5571, 'five thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(21316, 34951, 'thirty-four thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(21317, 49653, 'forty-nine thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(21318, 9291, 'nine thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(21319, 4081, 'four thousand eighty-one');\nINSERT INTO t2 VALUES(21320, 19663, 'nineteen thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(21321, 48925, 'forty-eight thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(21322, 79509, 'seventy-nine thousand five hundred nine');\nINSERT INTO t2 VALUES(21323, 79806, 'seventy-nine thousand eight hundred six');\nINSERT INTO t2 VALUES(21324, 78767, 'seventy-eight thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(21325, 84902, 'eighty-four thousand nine hundred two');\nINSERT INTO t2 VALUES(21326, 99888, 'ninety-nine thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(21327, 3522, 'three thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(21328, 21109, 'twenty-one thousand one hundred nine');\nINSERT INTO t2 VALUES(21329, 98058, 'ninety-eight thousand fifty-eight');\nINSERT INTO t2 VALUES(21330, 54186, 'fifty-four thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(21331, 39741, 'thirty-nine thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(21332, 43235, 'forty-three thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(21333, 19156, 'nineteen thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(21334, 10510, 'ten thousand five hundred ten');\nINSERT INTO t2 VALUES(21335, 31643, 'thirty-one thousand six hundred forty-three');\nINSERT INTO t2 VALUES(21336, 9566, 'nine thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(21337, 50288, 'fifty thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(21338, 28715, 'twenty-eight thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(21339, 84507, 'eighty-four thousand five hundred seven');\nINSERT INTO t2 VALUES(21340, 45444, 'forty-five thousand four hundred forty-four');\nINSERT INTO t2 VALUES(21341, 21281, 'twenty-one thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(21342, 24159, 'twenty-four thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(21343, 5508, 'five thousand five hundred eight');\nINSERT INTO t2 VALUES(21344, 58175, 'fifty-eight thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(21345, 48224, 'forty-eight thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(21346, 13788, 'thirteen thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(21347, 68088, 'sixty-eight thousand eighty-eight');\nINSERT INTO t2 VALUES(21348, 71271, 'seventy-one thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(21349, 20924, 'twenty thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(21350, 74144, 'seventy-four thousand one hundred forty-four');\nINSERT INTO t2 VALUES(21351, 67743, 'sixty-seven thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(21352, 26943, 'twenty-six thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(21353, 87055, 'eighty-seven thousand fifty-five');\nINSERT INTO t2 VALUES(21354, 59757, 'fifty-nine thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(21355, 7255, 'seven thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(21356, 47065, 'forty-seven thousand sixty-five');\nINSERT INTO t2 VALUES(21357, 45059, 'forty-five thousand fifty-nine');\nINSERT INTO t2 VALUES(21358, 58405, 'fifty-eight thousand four hundred five');\nINSERT INTO t2 VALUES(21359, 71883, 'seventy-one thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(21360, 36248, 'thirty-six thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(21361, 27295, 'twenty-seven thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(21362, 28052, 'twenty-eight thousand fifty-two');\nINSERT INTO t2 VALUES(21363, 3389, 'three thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(21364, 12103, 'twelve thousand one hundred three');\nINSERT INTO t2 VALUES(21365, 60780, 'sixty thousand seven hundred eighty');\nINSERT INTO t2 VALUES(21366, 25568, 'twenty-five thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(21367, 55703, 'fifty-five thousand seven hundred three');\nINSERT INTO t2 VALUES(21368, 40029, 'forty thousand twenty-nine');\nINSERT INTO t2 VALUES(21369, 94415, 'ninety-four thousand four hundred fifteen');\nINSERT INTO t2 VALUES(21370, 35220, 'thirty-five thousand two hundred twenty');\nINSERT INTO t2 VALUES(21371, 93551, 'ninety-three thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(21372, 84038, 'eighty-four thousand thirty-eight');\nINSERT INTO t2 VALUES(21373, 69803, 'sixty-nine thousand eight hundred three');\nINSERT INTO t2 VALUES(21374, 951, 'nine hundred fifty-one');\nINSERT INTO t2 VALUES(21375, 61826, 'sixty-one thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(21376, 72289, 'seventy-two thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(21377, 84471, 'eighty-four thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(21378, 92601, 'ninety-two thousand six hundred one');\nINSERT INTO t2 VALUES(21379, 67244, 'sixty-seven thousand two hundred forty-four');\nINSERT INTO t2 VALUES(21380, 42765, 'forty-two thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(21381, 66064, 'sixty-six thousand sixty-four');\nINSERT INTO t2 VALUES(21382, 22320, 'twenty-two thousand three hundred twenty');\nINSERT INTO t2 VALUES(21383, 18236, 'eighteen thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(21384, 91917, 'ninety-one thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(21385, 2662, 'two thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(21386, 37101, 'thirty-seven thousand one hundred one');\nINSERT INTO t2 VALUES(21387, 66798, 'sixty-six thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(21388, 76035, 'seventy-six thousand thirty-five');\nINSERT INTO t2 VALUES(21389, 2521, 'two thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(21390, 97257, 'ninety-seven thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(21391, 40530, 'forty thousand five hundred thirty');\nINSERT INTO t2 VALUES(21392, 14260, 'fourteen thousand two hundred sixty');\nINSERT INTO t2 VALUES(21393, 16119, 'sixteen thousand one hundred nineteen');\nINSERT INTO t2 VALUES(21394, 36036, 'thirty-six thousand thirty-six');\nINSERT INTO t2 VALUES(21395, 41565, 'forty-one thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(21396, 37810, 'thirty-seven thousand eight hundred ten');\nINSERT INTO t2 VALUES(21397, 50550, 'fifty thousand five hundred fifty');\nINSERT INTO t2 VALUES(21398, 49577, 'forty-nine thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(21399, 27680, 'twenty-seven thousand six hundred eighty');\nINSERT INTO t2 VALUES(21400, 10926, 'ten thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(21401, 45283, 'forty-five thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(21402, 68537, 'sixty-eight thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(21403, 26617, 'twenty-six thousand six hundred seventeen');\nINSERT INTO t2 VALUES(21404, 18740, 'eighteen thousand seven hundred forty');\nINSERT INTO t2 VALUES(21405, 42463, 'forty-two thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(21406, 12532, 'twelve thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(21407, 80124, 'eighty thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(21408, 19826, 'nineteen thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(21409, 69897, 'sixty-nine thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(21410, 78470, 'seventy-eight thousand four hundred seventy');\nINSERT INTO t2 VALUES(21411, 56030, 'fifty-six thousand thirty');\nINSERT INTO t2 VALUES(21412, 83918, 'eighty-three thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(21413, 75789, 'seventy-five thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(21414, 1233, 'one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(21415, 5891, 'five thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(21416, 46630, 'forty-six thousand six hundred thirty');\nINSERT INTO t2 VALUES(21417, 23254, 'twenty-three thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(21418, 48640, 'forty-eight thousand six hundred forty');\nINSERT INTO t2 VALUES(21419, 86325, 'eighty-six thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(21420, 82811, 'eighty-two thousand eight hundred eleven');\nINSERT INTO t2 VALUES(21421, 71513, 'seventy-one thousand five hundred thirteen');\nINSERT INTO t2 VALUES(21422, 1958, 'one thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(21423, 77865, 'seventy-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(21424, 9870, 'nine thousand eight hundred seventy');\nINSERT INTO t2 VALUES(21425, 10100, 'ten thousand one hundred');\nINSERT INTO t2 VALUES(21426, 51703, 'fifty-one thousand seven hundred three');\nINSERT INTO t2 VALUES(21427, 9168, 'nine thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(21428, 9365, 'nine thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(21429, 62112, 'sixty-two thousand one hundred twelve');\nINSERT INTO t2 VALUES(21430, 79294, 'seventy-nine thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(21431, 30245, 'thirty thousand two hundred forty-five');\nINSERT INTO t2 VALUES(21432, 95801, 'ninety-five thousand eight hundred one');\nINSERT INTO t2 VALUES(21433, 28917, 'twenty-eight thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(21434, 17123, 'seventeen thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(21435, 25328, 'twenty-five thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(21436, 32028, 'thirty-two thousand twenty-eight');\nINSERT INTO t2 VALUES(21437, 16943, 'sixteen thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(21438, 81412, 'eighty-one thousand four hundred twelve');\nINSERT INTO t2 VALUES(21439, 79792, 'seventy-nine thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(21440, 83297, 'eighty-three thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(21441, 43353, 'forty-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(21442, 83353, 'eighty-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(21443, 89275, 'eighty-nine thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(21444, 64523, 'sixty-four thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(21445, 23035, 'twenty-three thousand thirty-five');\nINSERT INTO t2 VALUES(21446, 81500, 'eighty-one thousand five hundred');\nINSERT INTO t2 VALUES(21447, 55266, 'fifty-five thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(21448, 31283, 'thirty-one thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(21449, 89949, 'eighty-nine thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(21450, 41992, 'forty-one thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(21451, 72819, 'seventy-two thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(21452, 39944, 'thirty-nine thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(21453, 45443, 'forty-five thousand four hundred forty-three');\nINSERT INTO t2 VALUES(21454, 34981, 'thirty-four thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(21455, 76882, 'seventy-six thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(21456, 90010, 'ninety thousand ten');\nINSERT INTO t2 VALUES(21457, 10649, 'ten thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(21458, 45460, 'forty-five thousand four hundred sixty');\nINSERT INTO t2 VALUES(21459, 75712, 'seventy-five thousand seven hundred twelve');\nINSERT INTO t2 VALUES(21460, 30529, 'thirty thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(21461, 34720, 'thirty-four thousand seven hundred twenty');\nINSERT INTO t2 VALUES(21462, 99946, 'ninety-nine thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(21463, 6187, 'six thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(21464, 35559, 'thirty-five thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(21465, 77222, 'seventy-seven thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(21466, 64109, 'sixty-four thousand one hundred nine');\nINSERT INTO t2 VALUES(21467, 87951, 'eighty-seven thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(21468, 29678, 'twenty-nine thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(21469, 81420, 'eighty-one thousand four hundred twenty');\nINSERT INTO t2 VALUES(21470, 16756, 'sixteen thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(21471, 60707, 'sixty thousand seven hundred seven');\nINSERT INTO t2 VALUES(21472, 71565, 'seventy-one thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(21473, 57669, 'fifty-seven thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(21474, 25236, 'twenty-five thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(21475, 73592, 'seventy-three thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(21476, 45065, 'forty-five thousand sixty-five');\nINSERT INTO t2 VALUES(21477, 77407, 'seventy-seven thousand four hundred seven');\nINSERT INTO t2 VALUES(21478, 18740, 'eighteen thousand seven hundred forty');\nINSERT INTO t2 VALUES(21479, 33472, 'thirty-three thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(21480, 6584, 'six thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(21481, 43009, 'forty-three thousand nine');\nINSERT INTO t2 VALUES(21482, 12734, 'twelve thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(21483, 93723, 'ninety-three thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(21484, 69125, 'sixty-nine thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(21485, 88676, 'eighty-eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(21486, 86508, 'eighty-six thousand five hundred eight');\nINSERT INTO t2 VALUES(21487, 88232, 'eighty-eight thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(21488, 38620, 'thirty-eight thousand six hundred twenty');\nINSERT INTO t2 VALUES(21489, 93937, 'ninety-three thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(21490, 58918, 'fifty-eight thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(21491, 76830, 'seventy-six thousand eight hundred thirty');\nINSERT INTO t2 VALUES(21492, 57407, 'fifty-seven thousand four hundred seven');\nINSERT INTO t2 VALUES(21493, 66109, 'sixty-six thousand one hundred nine');\nINSERT INTO t2 VALUES(21494, 91703, 'ninety-one thousand seven hundred three');\nINSERT INTO t2 VALUES(21495, 57177, 'fifty-seven thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(21496, 67011, 'sixty-seven thousand eleven');\nINSERT INTO t2 VALUES(21497, 84999, 'eighty-four thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(21498, 89840, 'eighty-nine thousand eight hundred forty');\nINSERT INTO t2 VALUES(21499, 6576, 'six thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(21500, 43553, 'forty-three thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(21501, 43230, 'forty-three thousand two hundred thirty');\nINSERT INTO t2 VALUES(21502, 96068, 'ninety-six thousand sixty-eight');\nINSERT INTO t2 VALUES(21503, 30703, 'thirty thousand seven hundred three');\nINSERT INTO t2 VALUES(21504, 32280, 'thirty-two thousand two hundred eighty');\nINSERT INTO t2 VALUES(21505, 33298, 'thirty-three thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(21506, 116, 'one hundred sixteen');\nINSERT INTO t2 VALUES(21507, 27980, 'twenty-seven thousand nine hundred eighty');\nINSERT INTO t2 VALUES(21508, 88998, 'eighty-eight thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(21509, 6671, 'six thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(21510, 77334, 'seventy-seven thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(21511, 52785, 'fifty-two thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(21512, 98105, 'ninety-eight thousand one hundred five');\nINSERT INTO t2 VALUES(21513, 69644, 'sixty-nine thousand six hundred forty-four');\nINSERT INTO t2 VALUES(21514, 74249, 'seventy-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(21515, 16255, 'sixteen thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(21516, 52519, 'fifty-two thousand five hundred nineteen');\nINSERT INTO t2 VALUES(21517, 46078, 'forty-six thousand seventy-eight');\nINSERT INTO t2 VALUES(21518, 5927, 'five thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(21519, 22752, 'twenty-two thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(21520, 10649, 'ten thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(21521, 63954, 'sixty-three thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(21522, 4592, 'four thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(21523, 49700, 'forty-nine thousand seven hundred');\nINSERT INTO t2 VALUES(21524, 55095, 'fifty-five thousand ninety-five');\nINSERT INTO t2 VALUES(21525, 38976, 'thirty-eight thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(21526, 94723, 'ninety-four thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(21527, 408, 'four hundred eight');\nINSERT INTO t2 VALUES(21528, 38388, 'thirty-eight thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(21529, 47010, 'forty-seven thousand ten');\nINSERT INTO t2 VALUES(21530, 84061, 'eighty-four thousand sixty-one');\nINSERT INTO t2 VALUES(21531, 74309, 'seventy-four thousand three hundred nine');\nINSERT INTO t2 VALUES(21532, 56711, 'fifty-six thousand seven hundred eleven');\nINSERT INTO t2 VALUES(21533, 66772, 'sixty-six thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(21534, 44829, 'forty-four thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(21535, 8300, 'eight thousand three hundred');\nINSERT INTO t2 VALUES(21536, 95808, 'ninety-five thousand eight hundred eight');\nINSERT INTO t2 VALUES(21537, 20464, 'twenty thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(21538, 27975, 'twenty-seven thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(21539, 76707, 'seventy-six thousand seven hundred seven');\nINSERT INTO t2 VALUES(21540, 35786, 'thirty-five thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(21541, 35084, 'thirty-five thousand eighty-four');\nINSERT INTO t2 VALUES(21542, 54583, 'fifty-four thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(21543, 69139, 'sixty-nine thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(21544, 96266, 'ninety-six thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(21545, 35711, 'thirty-five thousand seven hundred eleven');\nINSERT INTO t2 VALUES(21546, 89930, 'eighty-nine thousand nine hundred thirty');\nINSERT INTO t2 VALUES(21547, 60631, 'sixty thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(21548, 24819, 'twenty-four thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(21549, 54954, 'fifty-four thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(21550, 6180, 'six thousand one hundred eighty');\nINSERT INTO t2 VALUES(21551, 47423, 'forty-seven thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(21552, 85461, 'eighty-five thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(21553, 24326, 'twenty-four thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(21554, 68429, 'sixty-eight thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(21555, 36851, 'thirty-six thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(21556, 43300, 'forty-three thousand three hundred');\nINSERT INTO t2 VALUES(21557, 24218, 'twenty-four thousand two hundred eighteen');\nINSERT INTO t2 VALUES(21558, 42179, 'forty-two thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(21559, 10842, 'ten thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(21560, 60317, 'sixty thousand three hundred seventeen');\nINSERT INTO t2 VALUES(21561, 71231, 'seventy-one thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(21562, 96755, 'ninety-six thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(21563, 12073, 'twelve thousand seventy-three');\nINSERT INTO t2 VALUES(21564, 21163, 'twenty-one thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(21565, 75360, 'seventy-five thousand three hundred sixty');\nINSERT INTO t2 VALUES(21566, 51552, 'fifty-one thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(21567, 36510, 'thirty-six thousand five hundred ten');\nINSERT INTO t2 VALUES(21568, 37249, 'thirty-seven thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(21569, 63270, 'sixty-three thousand two hundred seventy');\nINSERT INTO t2 VALUES(21570, 16033, 'sixteen thousand thirty-three');\nINSERT INTO t2 VALUES(21571, 7032, 'seven thousand thirty-two');\nINSERT INTO t2 VALUES(21572, 92291, 'ninety-two thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(21573, 56017, 'fifty-six thousand seventeen');\nINSERT INTO t2 VALUES(21574, 4585, 'four thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(21575, 56625, 'fifty-six thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(21576, 6612, 'six thousand six hundred twelve');\nINSERT INTO t2 VALUES(21577, 47209, 'forty-seven thousand two hundred nine');\nINSERT INTO t2 VALUES(21578, 14142, 'fourteen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(21579, 51063, 'fifty-one thousand sixty-three');\nINSERT INTO t2 VALUES(21580, 24900, 'twenty-four thousand nine hundred');\nINSERT INTO t2 VALUES(21581, 39629, 'thirty-nine thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(21582, 72295, 'seventy-two thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(21583, 98051, 'ninety-eight thousand fifty-one');\nINSERT INTO t2 VALUES(21584, 71596, 'seventy-one thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(21585, 23687, 'twenty-three thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(21586, 34442, 'thirty-four thousand four hundred forty-two');\nINSERT INTO t2 VALUES(21587, 18350, 'eighteen thousand three hundred fifty');\nINSERT INTO t2 VALUES(21588, 72191, 'seventy-two thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(21589, 91121, 'ninety-one thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(21590, 3782, 'three thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(21591, 59975, 'fifty-nine thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(21592, 27149, 'twenty-seven thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(21593, 67852, 'sixty-seven thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(21594, 43474, 'forty-three thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(21595, 51697, 'fifty-one thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(21596, 20393, 'twenty thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(21597, 83618, 'eighty-three thousand six hundred eighteen');\nINSERT INTO t2 VALUES(21598, 38053, 'thirty-eight thousand fifty-three');\nINSERT INTO t2 VALUES(21599, 45218, 'forty-five thousand two hundred eighteen');\nINSERT INTO t2 VALUES(21600, 74579, 'seventy-four thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(21601, 31325, 'thirty-one thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(21602, 33140, 'thirty-three thousand one hundred forty');\nINSERT INTO t2 VALUES(21603, 41784, 'forty-one thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(21604, 53609, 'fifty-three thousand six hundred nine');\nINSERT INTO t2 VALUES(21605, 74438, 'seventy-four thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(21606, 56396, 'fifty-six thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(21607, 37728, 'thirty-seven thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(21608, 63645, 'sixty-three thousand six hundred forty-five');\nINSERT INTO t2 VALUES(21609, 44882, 'forty-four thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(21610, 97523, 'ninety-seven thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(21611, 45885, 'forty-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(21612, 56069, 'fifty-six thousand sixty-nine');\nINSERT INTO t2 VALUES(21613, 30273, 'thirty thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(21614, 36231, 'thirty-six thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(21615, 70235, 'seventy thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(21616, 19374, 'nineteen thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(21617, 48150, 'forty-eight thousand one hundred fifty');\nINSERT INTO t2 VALUES(21618, 86039, 'eighty-six thousand thirty-nine');\nINSERT INTO t2 VALUES(21619, 33692, 'thirty-three thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(21620, 18126, 'eighteen thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(21621, 9590, 'nine thousand five hundred ninety');\nINSERT INTO t2 VALUES(21622, 52473, 'fifty-two thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(21623, 88196, 'eighty-eight thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(21624, 72036, 'seventy-two thousand thirty-six');\nINSERT INTO t2 VALUES(21625, 6648, 'six thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(21626, 22042, 'twenty-two thousand forty-two');\nINSERT INTO t2 VALUES(21627, 55284, 'fifty-five thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(21628, 58590, 'fifty-eight thousand five hundred ninety');\nINSERT INTO t2 VALUES(21629, 75661, 'seventy-five thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(21630, 19633, 'nineteen thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(21631, 93634, 'ninety-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(21632, 5846, 'five thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(21633, 63757, 'sixty-three thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(21634, 19301, 'nineteen thousand three hundred one');\nINSERT INTO t2 VALUES(21635, 23088, 'twenty-three thousand eighty-eight');\nINSERT INTO t2 VALUES(21636, 21377, 'twenty-one thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(21637, 22607, 'twenty-two thousand six hundred seven');\nINSERT INTO t2 VALUES(21638, 71996, 'seventy-one thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(21639, 93096, 'ninety-three thousand ninety-six');\nINSERT INTO t2 VALUES(21640, 67957, 'sixty-seven thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(21641, 40901, 'forty thousand nine hundred one');\nINSERT INTO t2 VALUES(21642, 21383, 'twenty-one thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(21643, 38487, 'thirty-eight thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(21644, 11345, 'eleven thousand three hundred forty-five');\nINSERT INTO t2 VALUES(21645, 46675, 'forty-six thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(21646, 54171, 'fifty-four thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(21647, 48164, 'forty-eight thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(21648, 82545, 'eighty-two thousand five hundred forty-five');\nINSERT INTO t2 VALUES(21649, 76308, 'seventy-six thousand three hundred eight');\nINSERT INTO t2 VALUES(21650, 87557, 'eighty-seven thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(21651, 2003, 'two thousand three');\nINSERT INTO t2 VALUES(21652, 25270, 'twenty-five thousand two hundred seventy');\nINSERT INTO t2 VALUES(21653, 44270, 'forty-four thousand two hundred seventy');\nINSERT INTO t2 VALUES(21654, 44094, 'forty-four thousand ninety-four');\nINSERT INTO t2 VALUES(21655, 90136, 'ninety thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(21656, 23592, 'twenty-three thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(21657, 61371, 'sixty-one thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(21658, 7358, 'seven thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(21659, 48185, 'forty-eight thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(21660, 44888, 'forty-four thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(21661, 98955, 'ninety-eight thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(21662, 79753, 'seventy-nine thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(21663, 56902, 'fifty-six thousand nine hundred two');\nINSERT INTO t2 VALUES(21664, 89821, 'eighty-nine thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(21665, 68030, 'sixty-eight thousand thirty');\nINSERT INTO t2 VALUES(21666, 11478, 'eleven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(21667, 27302, 'twenty-seven thousand three hundred two');\nINSERT INTO t2 VALUES(21668, 55906, 'fifty-five thousand nine hundred six');\nINSERT INTO t2 VALUES(21669, 87981, 'eighty-seven thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(21670, 57950, 'fifty-seven thousand nine hundred fifty');\nINSERT INTO t2 VALUES(21671, 97520, 'ninety-seven thousand five hundred twenty');\nINSERT INTO t2 VALUES(21672, 6202, 'six thousand two hundred two');\nINSERT INTO t2 VALUES(21673, 3889, 'three thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(21674, 3999, 'three thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(21675, 13411, 'thirteen thousand four hundred eleven');\nINSERT INTO t2 VALUES(21676, 93780, 'ninety-three thousand seven hundred eighty');\nINSERT INTO t2 VALUES(21677, 49455, 'forty-nine thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(21678, 77355, 'seventy-seven thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(21679, 7582, 'seven thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(21680, 82564, 'eighty-two thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(21681, 22752, 'twenty-two thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(21682, 43913, 'forty-three thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(21683, 896, 'eight hundred ninety-six');\nINSERT INTO t2 VALUES(21684, 17095, 'seventeen thousand ninety-five');\nINSERT INTO t2 VALUES(21685, 76382, 'seventy-six thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(21686, 57089, 'fifty-seven thousand eighty-nine');\nINSERT INTO t2 VALUES(21687, 25359, 'twenty-five thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(21688, 97498, 'ninety-seven thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(21689, 82681, 'eighty-two thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(21690, 91903, 'ninety-one thousand nine hundred three');\nINSERT INTO t2 VALUES(21691, 53041, 'fifty-three thousand forty-one');\nINSERT INTO t2 VALUES(21692, 18997, 'eighteen thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(21693, 11013, 'eleven thousand thirteen');\nINSERT INTO t2 VALUES(21694, 90225, 'ninety thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(21695, 51074, 'fifty-one thousand seventy-four');\nINSERT INTO t2 VALUES(21696, 51715, 'fifty-one thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(21697, 95875, 'ninety-five thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(21698, 35354, 'thirty-five thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(21699, 76788, 'seventy-six thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(21700, 68918, 'sixty-eight thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(21701, 94228, 'ninety-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(21702, 59766, 'fifty-nine thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(21703, 33003, 'thirty-three thousand three');\nINSERT INTO t2 VALUES(21704, 98826, 'ninety-eight thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(21705, 42836, 'forty-two thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(21706, 8421, 'eight thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(21707, 18343, 'eighteen thousand three hundred forty-three');\nINSERT INTO t2 VALUES(21708, 31312, 'thirty-one thousand three hundred twelve');\nINSERT INTO t2 VALUES(21709, 24263, 'twenty-four thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(21710, 6077, 'six thousand seventy-seven');\nINSERT INTO t2 VALUES(21711, 85141, 'eighty-five thousand one hundred forty-one');\nINSERT INTO t2 VALUES(21712, 93503, 'ninety-three thousand five hundred three');\nINSERT INTO t2 VALUES(21713, 27763, 'twenty-seven thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(21714, 59264, 'fifty-nine thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(21715, 86597, 'eighty-six thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(21716, 21684, 'twenty-one thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(21717, 84336, 'eighty-four thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(21718, 39006, 'thirty-nine thousand six');\nINSERT INTO t2 VALUES(21719, 75448, 'seventy-five thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(21720, 64955, 'sixty-four thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(21721, 80306, 'eighty thousand three hundred six');\nINSERT INTO t2 VALUES(21722, 4259, 'four thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(21723, 20127, 'twenty thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(21724, 54455, 'fifty-four thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(21725, 53094, 'fifty-three thousand ninety-four');\nINSERT INTO t2 VALUES(21726, 44155, 'forty-four thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(21727, 55567, 'fifty-five thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(21728, 42008, 'forty-two thousand eight');\nINSERT INTO t2 VALUES(21729, 61458, 'sixty-one thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(21730, 62861, 'sixty-two thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(21731, 45073, 'forty-five thousand seventy-three');\nINSERT INTO t2 VALUES(21732, 56154, 'fifty-six thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(21733, 57795, 'fifty-seven thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(21734, 16759, 'sixteen thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(21735, 81128, 'eighty-one thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(21736, 15609, 'fifteen thousand six hundred nine');\nINSERT INTO t2 VALUES(21737, 21224, 'twenty-one thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(21738, 70196, 'seventy thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(21739, 70886, 'seventy thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(21740, 95113, 'ninety-five thousand one hundred thirteen');\nINSERT INTO t2 VALUES(21741, 89945, 'eighty-nine thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(21742, 55340, 'fifty-five thousand three hundred forty');\nINSERT INTO t2 VALUES(21743, 24318, 'twenty-four thousand three hundred eighteen');\nINSERT INTO t2 VALUES(21744, 47877, 'forty-seven thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(21745, 48828, 'forty-eight thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(21746, 58394, 'fifty-eight thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(21747, 97857, 'ninety-seven thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(21748, 54130, 'fifty-four thousand one hundred thirty');\nINSERT INTO t2 VALUES(21749, 47990, 'forty-seven thousand nine hundred ninety');\nINSERT INTO t2 VALUES(21750, 45847, 'forty-five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(21751, 72573, 'seventy-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(21752, 6878, 'six thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(21753, 98074, 'ninety-eight thousand seventy-four');\nINSERT INTO t2 VALUES(21754, 83681, 'eighty-three thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(21755, 37513, 'thirty-seven thousand five hundred thirteen');\nINSERT INTO t2 VALUES(21756, 71943, 'seventy-one thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(21757, 72246, 'seventy-two thousand two hundred forty-six');\nINSERT INTO t2 VALUES(21758, 5865, 'five thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(21759, 78366, 'seventy-eight thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(21760, 87169, 'eighty-seven thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(21761, 64368, 'sixty-four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(21762, 82291, 'eighty-two thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(21763, 63016, 'sixty-three thousand sixteen');\nINSERT INTO t2 VALUES(21764, 16322, 'sixteen thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(21765, 92715, 'ninety-two thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(21766, 92702, 'ninety-two thousand seven hundred two');\nINSERT INTO t2 VALUES(21767, 71967, 'seventy-one thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(21768, 47045, 'forty-seven thousand forty-five');\nINSERT INTO t2 VALUES(21769, 27418, 'twenty-seven thousand four hundred eighteen');\nINSERT INTO t2 VALUES(21770, 75177, 'seventy-five thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(21771, 4830, 'four thousand eight hundred thirty');\nINSERT INTO t2 VALUES(21772, 88469, 'eighty-eight thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(21773, 59759, 'fifty-nine thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(21774, 34590, 'thirty-four thousand five hundred ninety');\nINSERT INTO t2 VALUES(21775, 53479, 'fifty-three thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(21776, 91276, 'ninety-one thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(21777, 37153, 'thirty-seven thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(21778, 69469, 'sixty-nine thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(21779, 15184, 'fifteen thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(21780, 81515, 'eighty-one thousand five hundred fifteen');\nINSERT INTO t2 VALUES(21781, 30383, 'thirty thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(21782, 29014, 'twenty-nine thousand fourteen');\nINSERT INTO t2 VALUES(21783, 30867, 'thirty thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(21784, 70006, 'seventy thousand six');\nINSERT INTO t2 VALUES(21785, 15993, 'fifteen thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(21786, 32971, 'thirty-two thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(21787, 41041, 'forty-one thousand forty-one');\nINSERT INTO t2 VALUES(21788, 70971, 'seventy thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(21789, 73748, 'seventy-three thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(21790, 96042, 'ninety-six thousand forty-two');\nINSERT INTO t2 VALUES(21791, 42693, 'forty-two thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(21792, 45091, 'forty-five thousand ninety-one');\nINSERT INTO t2 VALUES(21793, 27338, 'twenty-seven thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(21794, 6813, 'six thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(21795, 71006, 'seventy-one thousand six');\nINSERT INTO t2 VALUES(21796, 7348, 'seven thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(21797, 15337, 'fifteen thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(21798, 15195, 'fifteen thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(21799, 2759, 'two thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(21800, 57493, 'fifty-seven thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(21801, 51435, 'fifty-one thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(21802, 88032, 'eighty-eight thousand thirty-two');\nINSERT INTO t2 VALUES(21803, 96420, 'ninety-six thousand four hundred twenty');\nINSERT INTO t2 VALUES(21804, 3243, 'three thousand two hundred forty-three');\nINSERT INTO t2 VALUES(21805, 15372, 'fifteen thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(21806, 30027, 'thirty thousand twenty-seven');\nINSERT INTO t2 VALUES(21807, 22357, 'twenty-two thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(21808, 45717, 'forty-five thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(21809, 86727, 'eighty-six thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(21810, 31298, 'thirty-one thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(21811, 15970, 'fifteen thousand nine hundred seventy');\nINSERT INTO t2 VALUES(21812, 35482, 'thirty-five thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(21813, 17327, 'seventeen thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(21814, 83067, 'eighty-three thousand sixty-seven');\nINSERT INTO t2 VALUES(21815, 69417, 'sixty-nine thousand four hundred seventeen');\nINSERT INTO t2 VALUES(21816, 80719, 'eighty thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(21817, 17721, 'seventeen thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(21818, 40205, 'forty thousand two hundred five');\nINSERT INTO t2 VALUES(21819, 54727, 'fifty-four thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(21820, 64993, 'sixty-four thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(21821, 52018, 'fifty-two thousand eighteen');\nINSERT INTO t2 VALUES(21822, 18158, 'eighteen thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(21823, 10825, 'ten thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(21824, 75146, 'seventy-five thousand one hundred forty-six');\nINSERT INTO t2 VALUES(21825, 17154, 'seventeen thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(21826, 13380, 'thirteen thousand three hundred eighty');\nINSERT INTO t2 VALUES(21827, 65122, 'sixty-five thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(21828, 10834, 'ten thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(21829, 84986, 'eighty-four thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(21830, 7418, 'seven thousand four hundred eighteen');\nINSERT INTO t2 VALUES(21831, 89234, 'eighty-nine thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(21832, 43613, 'forty-three thousand six hundred thirteen');\nINSERT INTO t2 VALUES(21833, 10496, 'ten thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(21834, 71044, 'seventy-one thousand forty-four');\nINSERT INTO t2 VALUES(21835, 8959, 'eight thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(21836, 66992, 'sixty-six thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(21837, 95021, 'ninety-five thousand twenty-one');\nINSERT INTO t2 VALUES(21838, 47158, 'forty-seven thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(21839, 7794, 'seven thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(21840, 90488, 'ninety thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(21841, 71718, 'seventy-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(21842, 44411, 'forty-four thousand four hundred eleven');\nINSERT INTO t2 VALUES(21843, 6845, 'six thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(21844, 50752, 'fifty thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(21845, 51346, 'fifty-one thousand three hundred forty-six');\nINSERT INTO t2 VALUES(21846, 29765, 'twenty-nine thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(21847, 10943, 'ten thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(21848, 54093, 'fifty-four thousand ninety-three');\nINSERT INTO t2 VALUES(21849, 44924, 'forty-four thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(21850, 14378, 'fourteen thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(21851, 44930, 'forty-four thousand nine hundred thirty');\nINSERT INTO t2 VALUES(21852, 61027, 'sixty-one thousand twenty-seven');\nINSERT INTO t2 VALUES(21853, 51011, 'fifty-one thousand eleven');\nINSERT INTO t2 VALUES(21854, 14274, 'fourteen thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(21855, 30475, 'thirty thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(21856, 577, 'five hundred seventy-seven');\nINSERT INTO t2 VALUES(21857, 52683, 'fifty-two thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(21858, 80265, 'eighty thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(21859, 50849, 'fifty thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(21860, 22498, 'twenty-two thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(21861, 20172, 'twenty thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(21862, 1224, 'one thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(21863, 93405, 'ninety-three thousand four hundred five');\nINSERT INTO t2 VALUES(21864, 80266, 'eighty thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(21865, 66113, 'sixty-six thousand one hundred thirteen');\nINSERT INTO t2 VALUES(21866, 53898, 'fifty-three thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(21867, 92036, 'ninety-two thousand thirty-six');\nINSERT INTO t2 VALUES(21868, 17306, 'seventeen thousand three hundred six');\nINSERT INTO t2 VALUES(21869, 71224, 'seventy-one thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(21870, 33162, 'thirty-three thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(21871, 44034, 'forty-four thousand thirty-four');\nINSERT INTO t2 VALUES(21872, 87085, 'eighty-seven thousand eighty-five');\nINSERT INTO t2 VALUES(21873, 6318, 'six thousand three hundred eighteen');\nINSERT INTO t2 VALUES(21874, 33370, 'thirty-three thousand three hundred seventy');\nINSERT INTO t2 VALUES(21875, 23193, 'twenty-three thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(21876, 50420, 'fifty thousand four hundred twenty');\nINSERT INTO t2 VALUES(21877, 88812, 'eighty-eight thousand eight hundred twelve');\nINSERT INTO t2 VALUES(21878, 40410, 'forty thousand four hundred ten');\nINSERT INTO t2 VALUES(21879, 85410, 'eighty-five thousand four hundred ten');\nINSERT INTO t2 VALUES(21880, 72488, 'seventy-two thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(21881, 5319, 'five thousand three hundred nineteen');\nINSERT INTO t2 VALUES(21882, 48327, 'forty-eight thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(21883, 12073, 'twelve thousand seventy-three');\nINSERT INTO t2 VALUES(21884, 49639, 'forty-nine thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(21885, 14911, 'fourteen thousand nine hundred eleven');\nINSERT INTO t2 VALUES(21886, 40335, 'forty thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(21887, 95325, 'ninety-five thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(21888, 74576, 'seventy-four thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(21889, 25168, 'twenty-five thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(21890, 27347, 'twenty-seven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(21891, 18439, 'eighteen thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(21892, 5233, 'five thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(21893, 57698, 'fifty-seven thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(21894, 57402, 'fifty-seven thousand four hundred two');\nINSERT INTO t2 VALUES(21895, 4832, 'four thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(21896, 45902, 'forty-five thousand nine hundred two');\nINSERT INTO t2 VALUES(21897, 34049, 'thirty-four thousand forty-nine');\nINSERT INTO t2 VALUES(21898, 84462, 'eighty-four thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(21899, 95616, 'ninety-five thousand six hundred sixteen');\nINSERT INTO t2 VALUES(21900, 12024, 'twelve thousand twenty-four');\nINSERT INTO t2 VALUES(21901, 98842, 'ninety-eight thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(21902, 94643, 'ninety-four thousand six hundred forty-three');\nINSERT INTO t2 VALUES(21903, 85409, 'eighty-five thousand four hundred nine');\nINSERT INTO t2 VALUES(21904, 99178, 'ninety-nine thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(21905, 87776, 'eighty-seven thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(21906, 60231, 'sixty thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(21907, 32094, 'thirty-two thousand ninety-four');\nINSERT INTO t2 VALUES(21908, 56176, 'fifty-six thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(21909, 56485, 'fifty-six thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(21910, 99822, 'ninety-nine thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(21911, 68217, 'sixty-eight thousand two hundred seventeen');\nINSERT INTO t2 VALUES(21912, 5074, 'five thousand seventy-four');\nINSERT INTO t2 VALUES(21913, 42960, 'forty-two thousand nine hundred sixty');\nINSERT INTO t2 VALUES(21914, 97703, 'ninety-seven thousand seven hundred three');\nINSERT INTO t2 VALUES(21915, 88512, 'eighty-eight thousand five hundred twelve');\nINSERT INTO t2 VALUES(21916, 57447, 'fifty-seven thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(21917, 76208, 'seventy-six thousand two hundred eight');\nINSERT INTO t2 VALUES(21918, 3829, 'three thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(21919, 39949, 'thirty-nine thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(21920, 25143, 'twenty-five thousand one hundred forty-three');\nINSERT INTO t2 VALUES(21921, 34174, 'thirty-four thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(21922, 56170, 'fifty-six thousand one hundred seventy');\nINSERT INTO t2 VALUES(21923, 41775, 'forty-one thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(21924, 62020, 'sixty-two thousand twenty');\nINSERT INTO t2 VALUES(21925, 39601, 'thirty-nine thousand six hundred one');\nINSERT INTO t2 VALUES(21926, 90291, 'ninety thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(21927, 11348, 'eleven thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(21928, 44779, 'forty-four thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(21929, 16196, 'sixteen thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(21930, 30082, 'thirty thousand eighty-two');\nINSERT INTO t2 VALUES(21931, 331, 'three hundred thirty-one');\nINSERT INTO t2 VALUES(21932, 94197, 'ninety-four thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(21933, 44647, 'forty-four thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(21934, 13987, 'thirteen thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(21935, 75456, 'seventy-five thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(21936, 93328, 'ninety-three thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(21937, 77801, 'seventy-seven thousand eight hundred one');\nINSERT INTO t2 VALUES(21938, 37686, 'thirty-seven thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(21939, 6634, 'six thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(21940, 97951, 'ninety-seven thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(21941, 99364, 'ninety-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(21942, 96015, 'ninety-six thousand fifteen');\nINSERT INTO t2 VALUES(21943, 20453, 'twenty thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(21944, 74139, 'seventy-four thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(21945, 357, 'three hundred fifty-seven');\nINSERT INTO t2 VALUES(21946, 31582, 'thirty-one thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(21947, 9979, 'nine thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(21948, 93020, 'ninety-three thousand twenty');\nINSERT INTO t2 VALUES(21949, 10926, 'ten thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(21950, 59299, 'fifty-nine thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(21951, 98702, 'ninety-eight thousand seven hundred two');\nINSERT INTO t2 VALUES(21952, 82263, 'eighty-two thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(21953, 10773, 'ten thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(21954, 15341, 'fifteen thousand three hundred forty-one');\nINSERT INTO t2 VALUES(21955, 68265, 'sixty-eight thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(21956, 77955, 'seventy-seven thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(21957, 58731, 'fifty-eight thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(21958, 14185, 'fourteen thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(21959, 85254, 'eighty-five thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(21960, 61502, 'sixty-one thousand five hundred two');\nINSERT INTO t2 VALUES(21961, 86552, 'eighty-six thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(21962, 41630, 'forty-one thousand six hundred thirty');\nINSERT INTO t2 VALUES(21963, 41950, 'forty-one thousand nine hundred fifty');\nINSERT INTO t2 VALUES(21964, 57939, 'fifty-seven thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(21965, 40000, 'forty thousand');\nINSERT INTO t2 VALUES(21966, 60530, 'sixty thousand five hundred thirty');\nINSERT INTO t2 VALUES(21967, 18034, 'eighteen thousand thirty-four');\nINSERT INTO t2 VALUES(21968, 84431, 'eighty-four thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(21969, 15179, 'fifteen thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(21970, 74911, 'seventy-four thousand nine hundred eleven');\nINSERT INTO t2 VALUES(21971, 84538, 'eighty-four thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(21972, 2799, 'two thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(21973, 85043, 'eighty-five thousand forty-three');\nINSERT INTO t2 VALUES(21974, 42748, 'forty-two thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(21975, 84672, 'eighty-four thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(21976, 21016, 'twenty-one thousand sixteen');\nINSERT INTO t2 VALUES(21977, 91151, 'ninety-one thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(21978, 31399, 'thirty-one thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(21979, 582, 'five hundred eighty-two');\nINSERT INTO t2 VALUES(21980, 77696, 'seventy-seven thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(21981, 15770, 'fifteen thousand seven hundred seventy');\nINSERT INTO t2 VALUES(21982, 77355, 'seventy-seven thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(21983, 78835, 'seventy-eight thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(21984, 49318, 'forty-nine thousand three hundred eighteen');\nINSERT INTO t2 VALUES(21985, 38851, 'thirty-eight thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(21986, 95041, 'ninety-five thousand forty-one');\nINSERT INTO t2 VALUES(21987, 17660, 'seventeen thousand six hundred sixty');\nINSERT INTO t2 VALUES(21988, 36904, 'thirty-six thousand nine hundred four');\nINSERT INTO t2 VALUES(21989, 18448, 'eighteen thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(21990, 32593, 'thirty-two thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(21991, 30738, 'thirty thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(21992, 51261, 'fifty-one thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(21993, 31530, 'thirty-one thousand five hundred thirty');\nINSERT INTO t2 VALUES(21994, 7079, 'seven thousand seventy-nine');\nINSERT INTO t2 VALUES(21995, 24763, 'twenty-four thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(21996, 13091, 'thirteen thousand ninety-one');\nINSERT INTO t2 VALUES(21997, 83091, 'eighty-three thousand ninety-one');\nINSERT INTO t2 VALUES(21998, 86734, 'eighty-six thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(21999, 97011, 'ninety-seven thousand eleven');\nINSERT INTO t2 VALUES(22000, 69655, 'sixty-nine thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(22001, 93224, 'ninety-three thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(22002, 47303, 'forty-seven thousand three hundred three');\nINSERT INTO t2 VALUES(22003, 82881, 'eighty-two thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(22004, 76860, 'seventy-six thousand eight hundred sixty');\nINSERT INTO t2 VALUES(22005, 32044, 'thirty-two thousand forty-four');\nINSERT INTO t2 VALUES(22006, 34741, 'thirty-four thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(22007, 4946, 'four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(22008, 93278, 'ninety-three thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(22009, 99396, 'ninety-nine thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(22010, 66752, 'sixty-six thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(22011, 73630, 'seventy-three thousand six hundred thirty');\nINSERT INTO t2 VALUES(22012, 49462, 'forty-nine thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(22013, 12303, 'twelve thousand three hundred three');\nINSERT INTO t2 VALUES(22014, 60299, 'sixty thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(22015, 33698, 'thirty-three thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(22016, 94715, 'ninety-four thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(22017, 69889, 'sixty-nine thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(22018, 78804, 'seventy-eight thousand eight hundred four');\nINSERT INTO t2 VALUES(22019, 31610, 'thirty-one thousand six hundred ten');\nINSERT INTO t2 VALUES(22020, 75894, 'seventy-five thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(22021, 13506, 'thirteen thousand five hundred six');\nINSERT INTO t2 VALUES(22022, 37136, 'thirty-seven thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(22023, 73834, 'seventy-three thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(22024, 18252, 'eighteen thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(22025, 7241, 'seven thousand two hundred forty-one');\nINSERT INTO t2 VALUES(22026, 21953, 'twenty-one thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(22027, 15659, 'fifteen thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(22028, 4825, 'four thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(22029, 40827, 'forty thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(22030, 94097, 'ninety-four thousand ninety-seven');\nINSERT INTO t2 VALUES(22031, 22920, 'twenty-two thousand nine hundred twenty');\nINSERT INTO t2 VALUES(22032, 86926, 'eighty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(22033, 4580, 'four thousand five hundred eighty');\nINSERT INTO t2 VALUES(22034, 17248, 'seventeen thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(22035, 69469, 'sixty-nine thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(22036, 55195, 'fifty-five thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(22037, 31872, 'thirty-one thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(22038, 57767, 'fifty-seven thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(22039, 53819, 'fifty-three thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(22040, 92343, 'ninety-two thousand three hundred forty-three');\nINSERT INTO t2 VALUES(22041, 20570, 'twenty thousand five hundred seventy');\nINSERT INTO t2 VALUES(22042, 34785, 'thirty-four thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(22043, 6321, 'six thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(22044, 55777, 'fifty-five thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(22045, 56007, 'fifty-six thousand seven');\nINSERT INTO t2 VALUES(22046, 80652, 'eighty thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(22047, 87857, 'eighty-seven thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(22048, 55133, 'fifty-five thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(22049, 81629, 'eighty-one thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(22050, 94774, 'ninety-four thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(22051, 83117, 'eighty-three thousand one hundred seventeen');\nINSERT INTO t2 VALUES(22052, 96431, 'ninety-six thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(22053, 14775, 'fourteen thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(22054, 3913, 'three thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(22055, 56632, 'fifty-six thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(22056, 24913, 'twenty-four thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(22057, 49614, 'forty-nine thousand six hundred fourteen');\nINSERT INTO t2 VALUES(22058, 91715, 'ninety-one thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(22059, 96327, 'ninety-six thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(22060, 59990, 'fifty-nine thousand nine hundred ninety');\nINSERT INTO t2 VALUES(22061, 49349, 'forty-nine thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(22062, 7848, 'seven thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(22063, 93977, 'ninety-three thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(22064, 6369, 'six thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(22065, 84992, 'eighty-four thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(22066, 25892, 'twenty-five thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(22067, 59508, 'fifty-nine thousand five hundred eight');\nINSERT INTO t2 VALUES(22068, 54796, 'fifty-four thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(22069, 51376, 'fifty-one thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(22070, 98728, 'ninety-eight thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(22071, 603, 'six hundred three');\nINSERT INTO t2 VALUES(22072, 3197, 'three thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(22073, 2058, 'two thousand fifty-eight');\nINSERT INTO t2 VALUES(22074, 63116, 'sixty-three thousand one hundred sixteen');\nINSERT INTO t2 VALUES(22075, 32420, 'thirty-two thousand four hundred twenty');\nINSERT INTO t2 VALUES(22076, 21816, 'twenty-one thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(22077, 55083, 'fifty-five thousand eighty-three');\nINSERT INTO t2 VALUES(22078, 24875, 'twenty-four thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(22079, 17915, 'seventeen thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(22080, 6023, 'six thousand twenty-three');\nINSERT INTO t2 VALUES(22081, 18300, 'eighteen thousand three hundred');\nINSERT INTO t2 VALUES(22082, 25723, 'twenty-five thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(22083, 46304, 'forty-six thousand three hundred four');\nINSERT INTO t2 VALUES(22084, 99753, 'ninety-nine thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(22085, 84480, 'eighty-four thousand four hundred eighty');\nINSERT INTO t2 VALUES(22086, 74206, 'seventy-four thousand two hundred six');\nINSERT INTO t2 VALUES(22087, 21578, 'twenty-one thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(22088, 99796, 'ninety-nine thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(22089, 4436, 'four thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(22090, 9006, 'nine thousand six');\nINSERT INTO t2 VALUES(22091, 78406, 'seventy-eight thousand four hundred six');\nINSERT INTO t2 VALUES(22092, 40100, 'forty thousand one hundred');\nINSERT INTO t2 VALUES(22093, 57556, 'fifty-seven thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(22094, 17043, 'seventeen thousand forty-three');\nINSERT INTO t2 VALUES(22095, 46318, 'forty-six thousand three hundred eighteen');\nINSERT INTO t2 VALUES(22096, 62851, 'sixty-two thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(22097, 85693, 'eighty-five thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(22098, 3326, 'three thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(22099, 67248, 'sixty-seven thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(22100, 31801, 'thirty-one thousand eight hundred one');\nINSERT INTO t2 VALUES(22101, 98229, 'ninety-eight thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(22102, 94234, 'ninety-four thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(22103, 71103, 'seventy-one thousand one hundred three');\nINSERT INTO t2 VALUES(22104, 30672, 'thirty thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(22105, 80423, 'eighty thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(22106, 65196, 'sixty-five thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(22107, 21399, 'twenty-one thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(22108, 86154, 'eighty-six thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(22109, 23339, 'twenty-three thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(22110, 71764, 'seventy-one thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(22111, 38476, 'thirty-eight thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(22112, 63054, 'sixty-three thousand fifty-four');\nINSERT INTO t2 VALUES(22113, 52770, 'fifty-two thousand seven hundred seventy');\nINSERT INTO t2 VALUES(22114, 70640, 'seventy thousand six hundred forty');\nINSERT INTO t2 VALUES(22115, 17870, 'seventeen thousand eight hundred seventy');\nINSERT INTO t2 VALUES(22116, 52605, 'fifty-two thousand six hundred five');\nINSERT INTO t2 VALUES(22117, 81158, 'eighty-one thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(22118, 44655, 'forty-four thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(22119, 84621, 'eighty-four thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(22120, 64086, 'sixty-four thousand eighty-six');\nINSERT INTO t2 VALUES(22121, 85673, 'eighty-five thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(22122, 10842, 'ten thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(22123, 36601, 'thirty-six thousand six hundred one');\nINSERT INTO t2 VALUES(22124, 52509, 'fifty-two thousand five hundred nine');\nINSERT INTO t2 VALUES(22125, 4652, 'four thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(22126, 54570, 'fifty-four thousand five hundred seventy');\nINSERT INTO t2 VALUES(22127, 21673, 'twenty-one thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(22128, 20264, 'twenty thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(22129, 74680, 'seventy-four thousand six hundred eighty');\nINSERT INTO t2 VALUES(22130, 83816, 'eighty-three thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(22131, 10604, 'ten thousand six hundred four');\nINSERT INTO t2 VALUES(22132, 34949, 'thirty-four thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(22133, 24980, 'twenty-four thousand nine hundred eighty');\nINSERT INTO t2 VALUES(22134, 86003, 'eighty-six thousand three');\nINSERT INTO t2 VALUES(22135, 94893, 'ninety-four thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(22136, 70909, 'seventy thousand nine hundred nine');\nINSERT INTO t2 VALUES(22137, 2554, 'two thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(22138, 59340, 'fifty-nine thousand three hundred forty');\nINSERT INTO t2 VALUES(22139, 42055, 'forty-two thousand fifty-five');\nINSERT INTO t2 VALUES(22140, 72185, 'seventy-two thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(22141, 3377, 'three thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(22142, 23210, 'twenty-three thousand two hundred ten');\nINSERT INTO t2 VALUES(22143, 25843, 'twenty-five thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(22144, 59450, 'fifty-nine thousand four hundred fifty');\nINSERT INTO t2 VALUES(22145, 79508, 'seventy-nine thousand five hundred eight');\nINSERT INTO t2 VALUES(22146, 48953, 'forty-eight thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(22147, 59022, 'fifty-nine thousand twenty-two');\nINSERT INTO t2 VALUES(22148, 57755, 'fifty-seven thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(22149, 67545, 'sixty-seven thousand five hundred forty-five');\nINSERT INTO t2 VALUES(22150, 12884, 'twelve thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(22151, 25185, 'twenty-five thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(22152, 99814, 'ninety-nine thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(22153, 59583, 'fifty-nine thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(22154, 5526, 'five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(22155, 51770, 'fifty-one thousand seven hundred seventy');\nINSERT INTO t2 VALUES(22156, 60081, 'sixty thousand eighty-one');\nINSERT INTO t2 VALUES(22157, 78481, 'seventy-eight thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(22158, 57611, 'fifty-seven thousand six hundred eleven');\nINSERT INTO t2 VALUES(22159, 19059, 'nineteen thousand fifty-nine');\nINSERT INTO t2 VALUES(22160, 99523, 'ninety-nine thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(22161, 69602, 'sixty-nine thousand six hundred two');\nINSERT INTO t2 VALUES(22162, 9373, 'nine thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(22163, 81414, 'eighty-one thousand four hundred fourteen');\nINSERT INTO t2 VALUES(22164, 16185, 'sixteen thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(22165, 71585, 'seventy-one thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(22166, 40341, 'forty thousand three hundred forty-one');\nINSERT INTO t2 VALUES(22167, 31501, 'thirty-one thousand five hundred one');\nINSERT INTO t2 VALUES(22168, 68361, 'sixty-eight thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(22169, 96746, 'ninety-six thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(22170, 59386, 'fifty-nine thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(22171, 41805, 'forty-one thousand eight hundred five');\nINSERT INTO t2 VALUES(22172, 37704, 'thirty-seven thousand seven hundred four');\nINSERT INTO t2 VALUES(22173, 85682, 'eighty-five thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(22174, 84377, 'eighty-four thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(22175, 88395, 'eighty-eight thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(22176, 79787, 'seventy-nine thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(22177, 28358, 'twenty-eight thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(22178, 84915, 'eighty-four thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(22179, 3348, 'three thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(22180, 99217, 'ninety-nine thousand two hundred seventeen');\nINSERT INTO t2 VALUES(22181, 79639, 'seventy-nine thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(22182, 81589, 'eighty-one thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(22183, 34880, 'thirty-four thousand eight hundred eighty');\nINSERT INTO t2 VALUES(22184, 10562, 'ten thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(22185, 70863, 'seventy thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(22186, 27485, 'twenty-seven thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(22187, 67005, 'sixty-seven thousand five');\nINSERT INTO t2 VALUES(22188, 33244, 'thirty-three thousand two hundred forty-four');\nINSERT INTO t2 VALUES(22189, 449, 'four hundred forty-nine');\nINSERT INTO t2 VALUES(22190, 53850, 'fifty-three thousand eight hundred fifty');\nINSERT INTO t2 VALUES(22191, 71572, 'seventy-one thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(22192, 26332, 'twenty-six thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(22193, 89696, 'eighty-nine thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(22194, 67745, 'sixty-seven thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(22195, 39639, 'thirty-nine thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(22196, 18833, 'eighteen thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(22197, 48640, 'forty-eight thousand six hundred forty');\nINSERT INTO t2 VALUES(22198, 73821, 'seventy-three thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(22199, 19825, 'nineteen thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(22200, 99062, 'ninety-nine thousand sixty-two');\nINSERT INTO t2 VALUES(22201, 72691, 'seventy-two thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(22202, 68914, 'sixty-eight thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(22203, 1589, 'one thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(22204, 93983, 'ninety-three thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(22205, 85496, 'eighty-five thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(22206, 68038, 'sixty-eight thousand thirty-eight');\nINSERT INTO t2 VALUES(22207, 70007, 'seventy thousand seven');\nINSERT INTO t2 VALUES(22208, 35298, 'thirty-five thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(22209, 90026, 'ninety thousand twenty-six');\nINSERT INTO t2 VALUES(22210, 80100, 'eighty thousand one hundred');\nINSERT INTO t2 VALUES(22211, 57088, 'fifty-seven thousand eighty-eight');\nINSERT INTO t2 VALUES(22212, 88140, 'eighty-eight thousand one hundred forty');\nINSERT INTO t2 VALUES(22213, 49802, 'forty-nine thousand eight hundred two');\nINSERT INTO t2 VALUES(22214, 38558, 'thirty-eight thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(22215, 39918, 'thirty-nine thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(22216, 94325, 'ninety-four thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(22217, 43163, 'forty-three thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(22218, 28423, 'twenty-eight thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(22219, 54784, 'fifty-four thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(22220, 64184, 'sixty-four thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(22221, 46153, 'forty-six thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(22222, 61830, 'sixty-one thousand eight hundred thirty');\nINSERT INTO t2 VALUES(22223, 3681, 'three thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(22224, 92648, 'ninety-two thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(22225, 25961, 'twenty-five thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(22226, 5779, 'five thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(22227, 83983, 'eighty-three thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(22228, 23458, 'twenty-three thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(22229, 71798, 'seventy-one thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(22230, 58639, 'fifty-eight thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(22231, 5810, 'five thousand eight hundred ten');\nINSERT INTO t2 VALUES(22232, 55041, 'fifty-five thousand forty-one');\nINSERT INTO t2 VALUES(22233, 34314, 'thirty-four thousand three hundred fourteen');\nINSERT INTO t2 VALUES(22234, 8678, 'eight thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(22235, 67566, 'sixty-seven thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(22236, 7956, 'seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(22237, 22705, 'twenty-two thousand seven hundred five');\nINSERT INTO t2 VALUES(22238, 86646, 'eighty-six thousand six hundred forty-six');\nINSERT INTO t2 VALUES(22239, 15199, 'fifteen thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(22240, 21826, 'twenty-one thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(22241, 13080, 'thirteen thousand eighty');\nINSERT INTO t2 VALUES(22242, 89796, 'eighty-nine thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(22243, 28269, 'twenty-eight thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(22244, 80456, 'eighty thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(22245, 85916, 'eighty-five thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(22246, 72154, 'seventy-two thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(22247, 89795, 'eighty-nine thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(22248, 42254, 'forty-two thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(22249, 55296, 'fifty-five thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(22250, 12220, 'twelve thousand two hundred twenty');\nINSERT INTO t2 VALUES(22251, 56534, 'fifty-six thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(22252, 29834, 'twenty-nine thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(22253, 10798, 'ten thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(22254, 9685, 'nine thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(22255, 23872, 'twenty-three thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(22256, 25837, 'twenty-five thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(22257, 93897, 'ninety-three thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(22258, 77450, 'seventy-seven thousand four hundred fifty');\nINSERT INTO t2 VALUES(22259, 98521, 'ninety-eight thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(22260, 76892, 'seventy-six thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(22261, 29619, 'twenty-nine thousand six hundred nineteen');\nINSERT INTO t2 VALUES(22262, 48101, 'forty-eight thousand one hundred one');\nINSERT INTO t2 VALUES(22263, 16804, 'sixteen thousand eight hundred four');\nINSERT INTO t2 VALUES(22264, 83536, 'eighty-three thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(22265, 18391, 'eighteen thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(22266, 37038, 'thirty-seven thousand thirty-eight');\nINSERT INTO t2 VALUES(22267, 61421, 'sixty-one thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(22268, 15063, 'fifteen thousand sixty-three');\nINSERT INTO t2 VALUES(22269, 48907, 'forty-eight thousand nine hundred seven');\nINSERT INTO t2 VALUES(22270, 17658, 'seventeen thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(22271, 49716, 'forty-nine thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(22272, 28176, 'twenty-eight thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(22273, 22096, 'twenty-two thousand ninety-six');\nINSERT INTO t2 VALUES(22274, 43822, 'forty-three thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(22275, 50437, 'fifty thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(22276, 23342, 'twenty-three thousand three hundred forty-two');\nINSERT INTO t2 VALUES(22277, 21826, 'twenty-one thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(22278, 40730, 'forty thousand seven hundred thirty');\nINSERT INTO t2 VALUES(22279, 29191, 'twenty-nine thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(22280, 24973, 'twenty-four thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(22281, 77396, 'seventy-seven thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(22282, 8419, 'eight thousand four hundred nineteen');\nINSERT INTO t2 VALUES(22283, 12609, 'twelve thousand six hundred nine');\nINSERT INTO t2 VALUES(22284, 14178, 'fourteen thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(22285, 97916, 'ninety-seven thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(22286, 9432, 'nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(22287, 35508, 'thirty-five thousand five hundred eight');\nINSERT INTO t2 VALUES(22288, 31643, 'thirty-one thousand six hundred forty-three');\nINSERT INTO t2 VALUES(22289, 6604, 'six thousand six hundred four');\nINSERT INTO t2 VALUES(22290, 79805, 'seventy-nine thousand eight hundred five');\nINSERT INTO t2 VALUES(22291, 41466, 'forty-one thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(22292, 78205, 'seventy-eight thousand two hundred five');\nINSERT INTO t2 VALUES(22293, 21247, 'twenty-one thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(22294, 84108, 'eighty-four thousand one hundred eight');\nINSERT INTO t2 VALUES(22295, 86633, 'eighty-six thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(22296, 57645, 'fifty-seven thousand six hundred forty-five');\nINSERT INTO t2 VALUES(22297, 63918, 'sixty-three thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(22298, 54042, 'fifty-four thousand forty-two');\nINSERT INTO t2 VALUES(22299, 6605, 'six thousand six hundred five');\nINSERT INTO t2 VALUES(22300, 64502, 'sixty-four thousand five hundred two');\nINSERT INTO t2 VALUES(22301, 63918, 'sixty-three thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(22302, 86611, 'eighty-six thousand six hundred eleven');\nINSERT INTO t2 VALUES(22303, 1451, 'one thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(22304, 47419, 'forty-seven thousand four hundred nineteen');\nINSERT INTO t2 VALUES(22305, 57464, 'fifty-seven thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(22306, 46897, 'forty-six thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(22307, 94455, 'ninety-four thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(22308, 34717, 'thirty-four thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(22309, 60931, 'sixty thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(22310, 51191, 'fifty-one thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(22311, 85035, 'eighty-five thousand thirty-five');\nINSERT INTO t2 VALUES(22312, 13138, 'thirteen thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(22313, 76315, 'seventy-six thousand three hundred fifteen');\nINSERT INTO t2 VALUES(22314, 82068, 'eighty-two thousand sixty-eight');\nINSERT INTO t2 VALUES(22315, 80865, 'eighty thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(22316, 98648, 'ninety-eight thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(22317, 18623, 'eighteen thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(22318, 54551, 'fifty-four thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(22319, 22386, 'twenty-two thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(22320, 38516, 'thirty-eight thousand five hundred sixteen');\nINSERT INTO t2 VALUES(22321, 87051, 'eighty-seven thousand fifty-one');\nINSERT INTO t2 VALUES(22322, 38865, 'thirty-eight thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(22323, 3770, 'three thousand seven hundred seventy');\nINSERT INTO t2 VALUES(22324, 3409, 'three thousand four hundred nine');\nINSERT INTO t2 VALUES(22325, 76197, 'seventy-six thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(22326, 27638, 'twenty-seven thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(22327, 72267, 'seventy-two thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(22328, 49201, 'forty-nine thousand two hundred one');\nINSERT INTO t2 VALUES(22329, 51957, 'fifty-one thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(22330, 95407, 'ninety-five thousand four hundred seven');\nINSERT INTO t2 VALUES(22331, 494, 'four hundred ninety-four');\nINSERT INTO t2 VALUES(22332, 19769, 'nineteen thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(22333, 57170, 'fifty-seven thousand one hundred seventy');\nINSERT INTO t2 VALUES(22334, 5150, 'five thousand one hundred fifty');\nINSERT INTO t2 VALUES(22335, 2342, 'two thousand three hundred forty-two');\nINSERT INTO t2 VALUES(22336, 56163, 'fifty-six thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(22337, 4604, 'four thousand six hundred four');\nINSERT INTO t2 VALUES(22338, 69693, 'sixty-nine thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(22339, 88292, 'eighty-eight thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(22340, 65142, 'sixty-five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(22341, 75426, 'seventy-five thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(22342, 15423, 'fifteen thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(22343, 80547, 'eighty thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(22344, 88201, 'eighty-eight thousand two hundred one');\nINSERT INTO t2 VALUES(22345, 52965, 'fifty-two thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(22346, 96199, 'ninety-six thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(22347, 54514, 'fifty-four thousand five hundred fourteen');\nINSERT INTO t2 VALUES(22348, 1238, 'one thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(22349, 97621, 'ninety-seven thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(22350, 35730, 'thirty-five thousand seven hundred thirty');\nINSERT INTO t2 VALUES(22351, 14932, 'fourteen thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(22352, 43812, 'forty-three thousand eight hundred twelve');\nINSERT INTO t2 VALUES(22353, 6577, 'six thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(22354, 62010, 'sixty-two thousand ten');\nINSERT INTO t2 VALUES(22355, 91955, 'ninety-one thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(22356, 18085, 'eighteen thousand eighty-five');\nINSERT INTO t2 VALUES(22357, 45931, 'forty-five thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(22358, 79207, 'seventy-nine thousand two hundred seven');\nINSERT INTO t2 VALUES(22359, 11729, 'eleven thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(22360, 26329, 'twenty-six thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(22361, 19065, 'nineteen thousand sixty-five');\nINSERT INTO t2 VALUES(22362, 92482, 'ninety-two thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(22363, 34050, 'thirty-four thousand fifty');\nINSERT INTO t2 VALUES(22364, 15749, 'fifteen thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(22365, 66165, 'sixty-six thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(22366, 36505, 'thirty-six thousand five hundred five');\nINSERT INTO t2 VALUES(22367, 131, 'one hundred thirty-one');\nINSERT INTO t2 VALUES(22368, 69597, 'sixty-nine thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(22369, 46427, 'forty-six thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(22370, 8874, 'eight thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(22371, 85392, 'eighty-five thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(22372, 56348, 'fifty-six thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(22373, 84536, 'eighty-four thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(22374, 11474, 'eleven thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(22375, 1278, 'one thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(22376, 66671, 'sixty-six thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(22377, 78884, 'seventy-eight thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(22378, 3512, 'three thousand five hundred twelve');\nINSERT INTO t2 VALUES(22379, 11434, 'eleven thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(22380, 87002, 'eighty-seven thousand two');\nINSERT INTO t2 VALUES(22381, 55430, 'fifty-five thousand four hundred thirty');\nINSERT INTO t2 VALUES(22382, 69635, 'sixty-nine thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(22383, 3510, 'three thousand five hundred ten');\nINSERT INTO t2 VALUES(22384, 82464, 'eighty-two thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(22385, 14576, 'fourteen thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(22386, 26189, 'twenty-six thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(22387, 18114, 'eighteen thousand one hundred fourteen');\nINSERT INTO t2 VALUES(22388, 88458, 'eighty-eight thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(22389, 97696, 'ninety-seven thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(22390, 20326, 'twenty thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(22391, 61539, 'sixty-one thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(22392, 41704, 'forty-one thousand seven hundred four');\nINSERT INTO t2 VALUES(22393, 62173, 'sixty-two thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(22394, 36659, 'thirty-six thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(22395, 39339, 'thirty-nine thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(22396, 35492, 'thirty-five thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(22397, 84672, 'eighty-four thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(22398, 62140, 'sixty-two thousand one hundred forty');\nINSERT INTO t2 VALUES(22399, 39728, 'thirty-nine thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(22400, 63508, 'sixty-three thousand five hundred eight');\nINSERT INTO t2 VALUES(22401, 2118, 'two thousand one hundred eighteen');\nINSERT INTO t2 VALUES(22402, 45989, 'forty-five thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(22403, 29906, 'twenty-nine thousand nine hundred six');\nINSERT INTO t2 VALUES(22404, 24720, 'twenty-four thousand seven hundred twenty');\nINSERT INTO t2 VALUES(22405, 28470, 'twenty-eight thousand four hundred seventy');\nINSERT INTO t2 VALUES(22406, 53785, 'fifty-three thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(22407, 86742, 'eighty-six thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(22408, 70868, 'seventy thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(22409, 9745, 'nine thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(22410, 52889, 'fifty-two thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(22411, 2810, 'two thousand eight hundred ten');\nINSERT INTO t2 VALUES(22412, 81529, 'eighty-one thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(22413, 95495, 'ninety-five thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(22414, 32732, 'thirty-two thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(22415, 75278, 'seventy-five thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(22416, 52264, 'fifty-two thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(22417, 99252, 'ninety-nine thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(22418, 94074, 'ninety-four thousand seventy-four');\nINSERT INTO t2 VALUES(22419, 47933, 'forty-seven thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(22420, 59535, 'fifty-nine thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(22421, 29172, 'twenty-nine thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(22422, 43086, 'forty-three thousand eighty-six');\nINSERT INTO t2 VALUES(22423, 48602, 'forty-eight thousand six hundred two');\nINSERT INTO t2 VALUES(22424, 17942, 'seventeen thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(22425, 86946, 'eighty-six thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(22426, 28083, 'twenty-eight thousand eighty-three');\nINSERT INTO t2 VALUES(22427, 25869, 'twenty-five thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(22428, 6886, 'six thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(22429, 55286, 'fifty-five thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(22430, 47264, 'forty-seven thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(22431, 3180, 'three thousand one hundred eighty');\nINSERT INTO t2 VALUES(22432, 98092, 'ninety-eight thousand ninety-two');\nINSERT INTO t2 VALUES(22433, 90141, 'ninety thousand one hundred forty-one');\nINSERT INTO t2 VALUES(22434, 57581, 'fifty-seven thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(22435, 12239, 'twelve thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(22436, 30778, 'thirty thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(22437, 74100, 'seventy-four thousand one hundred');\nINSERT INTO t2 VALUES(22438, 12810, 'twelve thousand eight hundred ten');\nINSERT INTO t2 VALUES(22439, 65540, 'sixty-five thousand five hundred forty');\nINSERT INTO t2 VALUES(22440, 32744, 'thirty-two thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(22441, 41062, 'forty-one thousand sixty-two');\nINSERT INTO t2 VALUES(22442, 30471, 'thirty thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(22443, 27794, 'twenty-seven thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(22444, 56417, 'fifty-six thousand four hundred seventeen');\nINSERT INTO t2 VALUES(22445, 4596, 'four thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(22446, 57387, 'fifty-seven thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(22447, 907, 'nine hundred seven');\nINSERT INTO t2 VALUES(22448, 81107, 'eighty-one thousand one hundred seven');\nINSERT INTO t2 VALUES(22449, 22607, 'twenty-two thousand six hundred seven');\nINSERT INTO t2 VALUES(22450, 6645, 'six thousand six hundred forty-five');\nINSERT INTO t2 VALUES(22451, 65171, 'sixty-five thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(22452, 77201, 'seventy-seven thousand two hundred one');\nINSERT INTO t2 VALUES(22453, 96260, 'ninety-six thousand two hundred sixty');\nINSERT INTO t2 VALUES(22454, 4800, 'four thousand eight hundred');\nINSERT INTO t2 VALUES(22455, 46822, 'forty-six thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(22456, 34151, 'thirty-four thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(22457, 87858, 'eighty-seven thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(22458, 81437, 'eighty-one thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(22459, 37041, 'thirty-seven thousand forty-one');\nINSERT INTO t2 VALUES(22460, 43433, 'forty-three thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(22461, 62264, 'sixty-two thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(22462, 19210, 'nineteen thousand two hundred ten');\nINSERT INTO t2 VALUES(22463, 29407, 'twenty-nine thousand four hundred seven');\nINSERT INTO t2 VALUES(22464, 6829, 'six thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(22465, 79493, 'seventy-nine thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(22466, 64460, 'sixty-four thousand four hundred sixty');\nINSERT INTO t2 VALUES(22467, 4376, 'four thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(22468, 42564, 'forty-two thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(22469, 63570, 'sixty-three thousand five hundred seventy');\nINSERT INTO t2 VALUES(22470, 15802, 'fifteen thousand eight hundred two');\nINSERT INTO t2 VALUES(22471, 45518, 'forty-five thousand five hundred eighteen');\nINSERT INTO t2 VALUES(22472, 68015, 'sixty-eight thousand fifteen');\nINSERT INTO t2 VALUES(22473, 92654, 'ninety-two thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(22474, 7576, 'seven thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(22475, 24404, 'twenty-four thousand four hundred four');\nINSERT INTO t2 VALUES(22476, 21253, 'twenty-one thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(22477, 72234, 'seventy-two thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(22478, 21266, 'twenty-one thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(22479, 13822, 'thirteen thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(22480, 20035, 'twenty thousand thirty-five');\nINSERT INTO t2 VALUES(22481, 86539, 'eighty-six thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(22482, 98016, 'ninety-eight thousand sixteen');\nINSERT INTO t2 VALUES(22483, 19081, 'nineteen thousand eighty-one');\nINSERT INTO t2 VALUES(22484, 42285, 'forty-two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(22485, 6786, 'six thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(22486, 8017, 'eight thousand seventeen');\nINSERT INTO t2 VALUES(22487, 40663, 'forty thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(22488, 64819, 'sixty-four thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(22489, 71485, 'seventy-one thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(22490, 20107, 'twenty thousand one hundred seven');\nINSERT INTO t2 VALUES(22491, 64211, 'sixty-four thousand two hundred eleven');\nINSERT INTO t2 VALUES(22492, 42281, 'forty-two thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(22493, 15844, 'fifteen thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(22494, 56296, 'fifty-six thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(22495, 14693, 'fourteen thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(22496, 78055, 'seventy-eight thousand fifty-five');\nINSERT INTO t2 VALUES(22497, 23911, 'twenty-three thousand nine hundred eleven');\nINSERT INTO t2 VALUES(22498, 35824, 'thirty-five thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(22499, 11405, 'eleven thousand four hundred five');\nINSERT INTO t2 VALUES(22500, 85625, 'eighty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(22501, 80429, 'eighty thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(22502, 44783, 'forty-four thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(22503, 56005, 'fifty-six thousand five');\nINSERT INTO t2 VALUES(22504, 69813, 'sixty-nine thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(22505, 40183, 'forty thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(22506, 16055, 'sixteen thousand fifty-five');\nINSERT INTO t2 VALUES(22507, 77031, 'seventy-seven thousand thirty-one');\nINSERT INTO t2 VALUES(22508, 90278, 'ninety thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(22509, 45414, 'forty-five thousand four hundred fourteen');\nINSERT INTO t2 VALUES(22510, 39654, 'thirty-nine thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(22511, 19673, 'nineteen thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(22512, 70631, 'seventy thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(22513, 55329, 'fifty-five thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(22514, 516, 'five hundred sixteen');\nINSERT INTO t2 VALUES(22515, 79159, 'seventy-nine thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(22516, 7658, 'seven thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(22517, 38668, 'thirty-eight thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(22518, 53385, 'fifty-three thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(22519, 50034, 'fifty thousand thirty-four');\nINSERT INTO t2 VALUES(22520, 65668, 'sixty-five thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(22521, 84646, 'eighty-four thousand six hundred forty-six');\nINSERT INTO t2 VALUES(22522, 52564, 'fifty-two thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(22523, 10899, 'ten thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(22524, 42573, 'forty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(22525, 38401, 'thirty-eight thousand four hundred one');\nINSERT INTO t2 VALUES(22526, 88565, 'eighty-eight thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(22527, 381, 'three hundred eighty-one');\nINSERT INTO t2 VALUES(22528, 21216, 'twenty-one thousand two hundred sixteen');\nINSERT INTO t2 VALUES(22529, 95817, 'ninety-five thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(22530, 1165, 'one thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(22531, 53861, 'fifty-three thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(22532, 50490, 'fifty thousand four hundred ninety');\nINSERT INTO t2 VALUES(22533, 25127, 'twenty-five thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(22534, 15595, 'fifteen thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(22535, 84808, 'eighty-four thousand eight hundred eight');\nINSERT INTO t2 VALUES(22536, 9311, 'nine thousand three hundred eleven');\nINSERT INTO t2 VALUES(22537, 53187, 'fifty-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(22538, 45109, 'forty-five thousand one hundred nine');\nINSERT INTO t2 VALUES(22539, 98859, 'ninety-eight thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(22540, 30692, 'thirty thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(22541, 56062, 'fifty-six thousand sixty-two');\nINSERT INTO t2 VALUES(22542, 18326, 'eighteen thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(22543, 68792, 'sixty-eight thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(22544, 77571, 'seventy-seven thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(22545, 47630, 'forty-seven thousand six hundred thirty');\nINSERT INTO t2 VALUES(22546, 35447, 'thirty-five thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(22547, 92822, 'ninety-two thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(22548, 4965, 'four thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(22549, 22923, 'twenty-two thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(22550, 54997, 'fifty-four thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(22551, 76657, 'seventy-six thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(22552, 61704, 'sixty-one thousand seven hundred four');\nINSERT INTO t2 VALUES(22553, 6399, 'six thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(22554, 87246, 'eighty-seven thousand two hundred forty-six');\nINSERT INTO t2 VALUES(22555, 70422, 'seventy thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(22556, 87675, 'eighty-seven thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(22557, 73009, 'seventy-three thousand nine');\nINSERT INTO t2 VALUES(22558, 71043, 'seventy-one thousand forty-three');\nINSERT INTO t2 VALUES(22559, 24841, 'twenty-four thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(22560, 72324, 'seventy-two thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(22561, 1343, 'one thousand three hundred forty-three');\nINSERT INTO t2 VALUES(22562, 96980, 'ninety-six thousand nine hundred eighty');\nINSERT INTO t2 VALUES(22563, 46845, 'forty-six thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(22564, 12364, 'twelve thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(22565, 88731, 'eighty-eight thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(22566, 80641, 'eighty thousand six hundred forty-one');\nINSERT INTO t2 VALUES(22567, 13653, 'thirteen thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(22568, 96138, 'ninety-six thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(22569, 16727, 'sixteen thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(22570, 32793, 'thirty-two thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(22571, 14371, 'fourteen thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(22572, 45857, 'forty-five thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(22573, 6766, 'six thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(22574, 64805, 'sixty-four thousand eight hundred five');\nINSERT INTO t2 VALUES(22575, 13462, 'thirteen thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(22576, 23840, 'twenty-three thousand eight hundred forty');\nINSERT INTO t2 VALUES(22577, 39545, 'thirty-nine thousand five hundred forty-five');\nINSERT INTO t2 VALUES(22578, 15053, 'fifteen thousand fifty-three');\nINSERT INTO t2 VALUES(22579, 15590, 'fifteen thousand five hundred ninety');\nINSERT INTO t2 VALUES(22580, 87021, 'eighty-seven thousand twenty-one');\nINSERT INTO t2 VALUES(22581, 64698, 'sixty-four thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(22582, 75271, 'seventy-five thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(22583, 65984, 'sixty-five thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(22584, 21130, 'twenty-one thousand one hundred thirty');\nINSERT INTO t2 VALUES(22585, 35160, 'thirty-five thousand one hundred sixty');\nINSERT INTO t2 VALUES(22586, 87942, 'eighty-seven thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(22587, 85332, 'eighty-five thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(22588, 88219, 'eighty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(22589, 99848, 'ninety-nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(22590, 30292, 'thirty thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(22591, 57879, 'fifty-seven thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(22592, 56974, 'fifty-six thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(22593, 27398, 'twenty-seven thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(22594, 95470, 'ninety-five thousand four hundred seventy');\nINSERT INTO t2 VALUES(22595, 3801, 'three thousand eight hundred one');\nINSERT INTO t2 VALUES(22596, 69492, 'sixty-nine thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(22597, 32582, 'thirty-two thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(22598, 42082, 'forty-two thousand eighty-two');\nINSERT INTO t2 VALUES(22599, 84096, 'eighty-four thousand ninety-six');\nINSERT INTO t2 VALUES(22600, 91235, 'ninety-one thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(22601, 68877, 'sixty-eight thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(22602, 75178, 'seventy-five thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(22603, 27786, 'twenty-seven thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(22604, 14675, 'fourteen thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(22605, 44198, 'forty-four thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(22606, 64766, 'sixty-four thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(22607, 57594, 'fifty-seven thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(22608, 25195, 'twenty-five thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(22609, 78269, 'seventy-eight thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(22610, 12876, 'twelve thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(22611, 70858, 'seventy thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(22612, 8704, 'eight thousand seven hundred four');\nINSERT INTO t2 VALUES(22613, 77585, 'seventy-seven thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(22614, 13116, 'thirteen thousand one hundred sixteen');\nINSERT INTO t2 VALUES(22615, 32525, 'thirty-two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(22616, 87846, 'eighty-seven thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(22617, 42320, 'forty-two thousand three hundred twenty');\nINSERT INTO t2 VALUES(22618, 75749, 'seventy-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(22619, 91169, 'ninety-one thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(22620, 57533, 'fifty-seven thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(22621, 28429, 'twenty-eight thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(22622, 30517, 'thirty thousand five hundred seventeen');\nINSERT INTO t2 VALUES(22623, 96617, 'ninety-six thousand six hundred seventeen');\nINSERT INTO t2 VALUES(22624, 24449, 'twenty-four thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(22625, 84461, 'eighty-four thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(22626, 91063, 'ninety-one thousand sixty-three');\nINSERT INTO t2 VALUES(22627, 38957, 'thirty-eight thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(22628, 49516, 'forty-nine thousand five hundred sixteen');\nINSERT INTO t2 VALUES(22629, 78211, 'seventy-eight thousand two hundred eleven');\nINSERT INTO t2 VALUES(22630, 31370, 'thirty-one thousand three hundred seventy');\nINSERT INTO t2 VALUES(22631, 88630, 'eighty-eight thousand six hundred thirty');\nINSERT INTO t2 VALUES(22632, 29902, 'twenty-nine thousand nine hundred two');\nINSERT INTO t2 VALUES(22633, 25505, 'twenty-five thousand five hundred five');\nINSERT INTO t2 VALUES(22634, 53570, 'fifty-three thousand five hundred seventy');\nINSERT INTO t2 VALUES(22635, 53582, 'fifty-three thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(22636, 29462, 'twenty-nine thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(22637, 37866, 'thirty-seven thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(22638, 21474, 'twenty-one thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(22639, 52971, 'fifty-two thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(22640, 70905, 'seventy thousand nine hundred five');\nINSERT INTO t2 VALUES(22641, 83229, 'eighty-three thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(22642, 79718, 'seventy-nine thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(22643, 49910, 'forty-nine thousand nine hundred ten');\nINSERT INTO t2 VALUES(22644, 56269, 'fifty-six thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(22645, 73311, 'seventy-three thousand three hundred eleven');\nINSERT INTO t2 VALUES(22646, 65921, 'sixty-five thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(22647, 20012, 'twenty thousand twelve');\nINSERT INTO t2 VALUES(22648, 61431, 'sixty-one thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(22649, 8282, 'eight thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(22650, 86294, 'eighty-six thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(22651, 4933, 'four thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(22652, 75845, 'seventy-five thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(22653, 37304, 'thirty-seven thousand three hundred four');\nINSERT INTO t2 VALUES(22654, 11567, 'eleven thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(22655, 19968, 'nineteen thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(22656, 36357, 'thirty-six thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(22657, 48974, 'forty-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(22658, 16701, 'sixteen thousand seven hundred one');\nINSERT INTO t2 VALUES(22659, 96936, 'ninety-six thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(22660, 96704, 'ninety-six thousand seven hundred four');\nINSERT INTO t2 VALUES(22661, 56132, 'fifty-six thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(22662, 85705, 'eighty-five thousand seven hundred five');\nINSERT INTO t2 VALUES(22663, 44559, 'forty-four thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(22664, 61115, 'sixty-one thousand one hundred fifteen');\nINSERT INTO t2 VALUES(22665, 76535, 'seventy-six thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(22666, 49746, 'forty-nine thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(22667, 81703, 'eighty-one thousand seven hundred three');\nINSERT INTO t2 VALUES(22668, 99890, 'ninety-nine thousand eight hundred ninety');\nINSERT INTO t2 VALUES(22669, 3305, 'three thousand three hundred five');\nINSERT INTO t2 VALUES(22670, 13818, 'thirteen thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(22671, 18036, 'eighteen thousand thirty-six');\nINSERT INTO t2 VALUES(22672, 90569, 'ninety thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(22673, 41553, 'forty-one thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(22674, 23961, 'twenty-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(22675, 6125, 'six thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(22676, 15828, 'fifteen thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(22677, 28117, 'twenty-eight thousand one hundred seventeen');\nINSERT INTO t2 VALUES(22678, 36107, 'thirty-six thousand one hundred seven');\nINSERT INTO t2 VALUES(22679, 37818, 'thirty-seven thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(22680, 16647, 'sixteen thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(22681, 47321, 'forty-seven thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(22682, 12129, 'twelve thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(22683, 65834, 'sixty-five thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(22684, 82125, 'eighty-two thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(22685, 11331, 'eleven thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(22686, 19893, 'nineteen thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(22687, 71576, 'seventy-one thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(22688, 37467, 'thirty-seven thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(22689, 63848, 'sixty-three thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(22690, 80468, 'eighty thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(22691, 68487, 'sixty-eight thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(22692, 19796, 'nineteen thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(22693, 87706, 'eighty-seven thousand seven hundred six');\nINSERT INTO t2 VALUES(22694, 49653, 'forty-nine thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(22695, 9824, 'nine thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(22696, 53907, 'fifty-three thousand nine hundred seven');\nINSERT INTO t2 VALUES(22697, 89329, 'eighty-nine thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(22698, 8588, 'eight thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(22699, 25857, 'twenty-five thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(22700, 79112, 'seventy-nine thousand one hundred twelve');\nINSERT INTO t2 VALUES(22701, 8040, 'eight thousand forty');\nINSERT INTO t2 VALUES(22702, 95478, 'ninety-five thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(22703, 48853, 'forty-eight thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(22704, 32132, 'thirty-two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(22705, 18797, 'eighteen thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(22706, 28030, 'twenty-eight thousand thirty');\nINSERT INTO t2 VALUES(22707, 1323, 'one thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(22708, 30808, 'thirty thousand eight hundred eight');\nINSERT INTO t2 VALUES(22709, 6079, 'six thousand seventy-nine');\nINSERT INTO t2 VALUES(22710, 46536, 'forty-six thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(22711, 76287, 'seventy-six thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(22712, 57813, 'fifty-seven thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(22713, 62394, 'sixty-two thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(22714, 50309, 'fifty thousand three hundred nine');\nINSERT INTO t2 VALUES(22715, 46511, 'forty-six thousand five hundred eleven');\nINSERT INTO t2 VALUES(22716, 4176, 'four thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(22717, 2166, 'two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(22718, 60138, 'sixty thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(22719, 47204, 'forty-seven thousand two hundred four');\nINSERT INTO t2 VALUES(22720, 5887, 'five thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(22721, 10844, 'ten thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(22722, 91767, 'ninety-one thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(22723, 65745, 'sixty-five thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(22724, 30415, 'thirty thousand four hundred fifteen');\nINSERT INTO t2 VALUES(22725, 76189, 'seventy-six thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(22726, 92590, 'ninety-two thousand five hundred ninety');\nINSERT INTO t2 VALUES(22727, 12506, 'twelve thousand five hundred six');\nINSERT INTO t2 VALUES(22728, 39380, 'thirty-nine thousand three hundred eighty');\nINSERT INTO t2 VALUES(22729, 25274, 'twenty-five thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(22730, 50617, 'fifty thousand six hundred seventeen');\nINSERT INTO t2 VALUES(22731, 27056, 'twenty-seven thousand fifty-six');\nINSERT INTO t2 VALUES(22732, 61862, 'sixty-one thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(22733, 96762, 'ninety-six thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(22734, 53827, 'fifty-three thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(22735, 61995, 'sixty-one thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(22736, 67195, 'sixty-seven thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(22737, 48008, 'forty-eight thousand eight');\nINSERT INTO t2 VALUES(22738, 89985, 'eighty-nine thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(22739, 435, 'four hundred thirty-five');\nINSERT INTO t2 VALUES(22740, 19428, 'nineteen thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(22741, 85496, 'eighty-five thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(22742, 34992, 'thirty-four thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(22743, 24690, 'twenty-four thousand six hundred ninety');\nINSERT INTO t2 VALUES(22744, 1355, 'one thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(22745, 29772, 'twenty-nine thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(22746, 39939, 'thirty-nine thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(22747, 98514, 'ninety-eight thousand five hundred fourteen');\nINSERT INTO t2 VALUES(22748, 21934, 'twenty-one thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(22749, 46496, 'forty-six thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(22750, 76462, 'seventy-six thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(22751, 11453, 'eleven thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(22752, 70704, 'seventy thousand seven hundred four');\nINSERT INTO t2 VALUES(22753, 58256, 'fifty-eight thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(22754, 79070, 'seventy-nine thousand seventy');\nINSERT INTO t2 VALUES(22755, 67296, 'sixty-seven thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(22756, 66720, 'sixty-six thousand seven hundred twenty');\nINSERT INTO t2 VALUES(22757, 16196, 'sixteen thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(22758, 53301, 'fifty-three thousand three hundred one');\nINSERT INTO t2 VALUES(22759, 76635, 'seventy-six thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(22760, 57885, 'fifty-seven thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(22761, 51936, 'fifty-one thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(22762, 70894, 'seventy thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(22763, 49654, 'forty-nine thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(22764, 15893, 'fifteen thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(22765, 94215, 'ninety-four thousand two hundred fifteen');\nINSERT INTO t2 VALUES(22766, 50589, 'fifty thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(22767, 27876, 'twenty-seven thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(22768, 80188, 'eighty thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(22769, 37257, 'thirty-seven thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(22770, 21780, 'twenty-one thousand seven hundred eighty');\nINSERT INTO t2 VALUES(22771, 22190, 'twenty-two thousand one hundred ninety');\nINSERT INTO t2 VALUES(22772, 41992, 'forty-one thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(22773, 76421, 'seventy-six thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(22774, 25668, 'twenty-five thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(22775, 74821, 'seventy-four thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(22776, 77595, 'seventy-seven thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(22777, 12547, 'twelve thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(22778, 15981, 'fifteen thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(22779, 14650, 'fourteen thousand six hundred fifty');\nINSERT INTO t2 VALUES(22780, 86030, 'eighty-six thousand thirty');\nINSERT INTO t2 VALUES(22781, 8573, 'eight thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(22782, 83953, 'eighty-three thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(22783, 54106, 'fifty-four thousand one hundred six');\nINSERT INTO t2 VALUES(22784, 65870, 'sixty-five thousand eight hundred seventy');\nINSERT INTO t2 VALUES(22785, 99636, 'ninety-nine thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(22786, 81594, 'eighty-one thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(22787, 11533, 'eleven thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(22788, 38593, 'thirty-eight thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(22789, 1144, 'one thousand one hundred forty-four');\nINSERT INTO t2 VALUES(22790, 28326, 'twenty-eight thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(22791, 25026, 'twenty-five thousand twenty-six');\nINSERT INTO t2 VALUES(22792, 66295, 'sixty-six thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(22793, 8260, 'eight thousand two hundred sixty');\nINSERT INTO t2 VALUES(22794, 45959, 'forty-five thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(22795, 81761, 'eighty-one thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(22796, 92331, 'ninety-two thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(22797, 972, 'nine hundred seventy-two');\nINSERT INTO t2 VALUES(22798, 16129, 'sixteen thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(22799, 8741, 'eight thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(22800, 72896, 'seventy-two thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(22801, 47476, 'forty-seven thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(22802, 85425, 'eighty-five thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(22803, 83021, 'eighty-three thousand twenty-one');\nINSERT INTO t2 VALUES(22804, 91693, 'ninety-one thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(22805, 59651, 'fifty-nine thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(22806, 49497, 'forty-nine thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(22807, 96922, 'ninety-six thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(22808, 46116, 'forty-six thousand one hundred sixteen');\nINSERT INTO t2 VALUES(22809, 9276, 'nine thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(22810, 91549, 'ninety-one thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(22811, 26804, 'twenty-six thousand eight hundred four');\nINSERT INTO t2 VALUES(22812, 79506, 'seventy-nine thousand five hundred six');\nINSERT INTO t2 VALUES(22813, 54230, 'fifty-four thousand two hundred thirty');\nINSERT INTO t2 VALUES(22814, 69856, 'sixty-nine thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(22815, 72125, 'seventy-two thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(22816, 3303, 'three thousand three hundred three');\nINSERT INTO t2 VALUES(22817, 35150, 'thirty-five thousand one hundred fifty');\nINSERT INTO t2 VALUES(22818, 23818, 'twenty-three thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(22819, 55339, 'fifty-five thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(22820, 38752, 'thirty-eight thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(22821, 80010, 'eighty thousand ten');\nINSERT INTO t2 VALUES(22822, 26406, 'twenty-six thousand four hundred six');\nINSERT INTO t2 VALUES(22823, 2166, 'two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(22824, 3860, 'three thousand eight hundred sixty');\nINSERT INTO t2 VALUES(22825, 71503, 'seventy-one thousand five hundred three');\nINSERT INTO t2 VALUES(22826, 89306, 'eighty-nine thousand three hundred six');\nINSERT INTO t2 VALUES(22827, 97412, 'ninety-seven thousand four hundred twelve');\nINSERT INTO t2 VALUES(22828, 36496, 'thirty-six thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(22829, 48977, 'forty-eight thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(22830, 91389, 'ninety-one thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(22831, 73674, 'seventy-three thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(22832, 77394, 'seventy-seven thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(22833, 9022, 'nine thousand twenty-two');\nINSERT INTO t2 VALUES(22834, 99427, 'ninety-nine thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(22835, 13674, 'thirteen thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(22836, 65124, 'sixty-five thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(22837, 85527, 'eighty-five thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(22838, 69958, 'sixty-nine thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(22839, 45333, 'forty-five thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(22840, 91751, 'ninety-one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(22841, 57515, 'fifty-seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(22842, 58534, 'fifty-eight thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(22843, 24830, 'twenty-four thousand eight hundred thirty');\nINSERT INTO t2 VALUES(22844, 4542, 'four thousand five hundred forty-two');\nINSERT INTO t2 VALUES(22845, 72566, 'seventy-two thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(22846, 66017, 'sixty-six thousand seventeen');\nINSERT INTO t2 VALUES(22847, 55165, 'fifty-five thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(22848, 79596, 'seventy-nine thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(22849, 1769, 'one thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(22850, 27029, 'twenty-seven thousand twenty-nine');\nINSERT INTO t2 VALUES(22851, 16453, 'sixteen thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(22852, 21237, 'twenty-one thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(22853, 30819, 'thirty thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(22854, 52924, 'fifty-two thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(22855, 95885, 'ninety-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(22856, 63388, 'sixty-three thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(22857, 93858, 'ninety-three thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(22858, 80768, 'eighty thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(22859, 40403, 'forty thousand four hundred three');\nINSERT INTO t2 VALUES(22860, 31916, 'thirty-one thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(22861, 39014, 'thirty-nine thousand fourteen');\nINSERT INTO t2 VALUES(22862, 90400, 'ninety thousand four hundred');\nINSERT INTO t2 VALUES(22863, 36661, 'thirty-six thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(22864, 59823, 'fifty-nine thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(22865, 80667, 'eighty thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(22866, 70332, 'seventy thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(22867, 52839, 'fifty-two thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(22868, 70809, 'seventy thousand eight hundred nine');\nINSERT INTO t2 VALUES(22869, 77446, 'seventy-seven thousand four hundred forty-six');\nINSERT INTO t2 VALUES(22870, 43213, 'forty-three thousand two hundred thirteen');\nINSERT INTO t2 VALUES(22871, 54445, 'fifty-four thousand four hundred forty-five');\nINSERT INTO t2 VALUES(22872, 44703, 'forty-four thousand seven hundred three');\nINSERT INTO t2 VALUES(22873, 51092, 'fifty-one thousand ninety-two');\nINSERT INTO t2 VALUES(22874, 30687, 'thirty thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(22875, 4231, 'four thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(22876, 60219, 'sixty thousand two hundred nineteen');\nINSERT INTO t2 VALUES(22877, 44950, 'forty-four thousand nine hundred fifty');\nINSERT INTO t2 VALUES(22878, 74259, 'seventy-four thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(22879, 95412, 'ninety-five thousand four hundred twelve');\nINSERT INTO t2 VALUES(22880, 61892, 'sixty-one thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(22881, 25428, 'twenty-five thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(22882, 97444, 'ninety-seven thousand four hundred forty-four');\nINSERT INTO t2 VALUES(22883, 26834, 'twenty-six thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(22884, 35597, 'thirty-five thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(22885, 50566, 'fifty thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(22886, 69857, 'sixty-nine thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(22887, 92753, 'ninety-two thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(22888, 68584, 'sixty-eight thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(22889, 53835, 'fifty-three thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(22890, 37172, 'thirty-seven thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(22891, 86737, 'eighty-six thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(22892, 40891, 'forty thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(22893, 7585, 'seven thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(22894, 52351, 'fifty-two thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(22895, 44100, 'forty-four thousand one hundred');\nINSERT INTO t2 VALUES(22896, 69309, 'sixty-nine thousand three hundred nine');\nINSERT INTO t2 VALUES(22897, 12446, 'twelve thousand four hundred forty-six');\nINSERT INTO t2 VALUES(22898, 94491, 'ninety-four thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(22899, 56215, 'fifty-six thousand two hundred fifteen');\nINSERT INTO t2 VALUES(22900, 90637, 'ninety thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(22901, 7853, 'seven thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(22902, 61270, 'sixty-one thousand two hundred seventy');\nINSERT INTO t2 VALUES(22903, 29492, 'twenty-nine thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(22904, 48686, 'forty-eight thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(22905, 44041, 'forty-four thousand forty-one');\nINSERT INTO t2 VALUES(22906, 12946, 'twelve thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(22907, 62708, 'sixty-two thousand seven hundred eight');\nINSERT INTO t2 VALUES(22908, 51438, 'fifty-one thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(22909, 17330, 'seventeen thousand three hundred thirty');\nINSERT INTO t2 VALUES(22910, 56953, 'fifty-six thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(22911, 71972, 'seventy-one thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(22912, 10397, 'ten thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(22913, 52242, 'fifty-two thousand two hundred forty-two');\nINSERT INTO t2 VALUES(22914, 97039, 'ninety-seven thousand thirty-nine');\nINSERT INTO t2 VALUES(22915, 73760, 'seventy-three thousand seven hundred sixty');\nINSERT INTO t2 VALUES(22916, 86967, 'eighty-six thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(22917, 18344, 'eighteen thousand three hundred forty-four');\nINSERT INTO t2 VALUES(22918, 62047, 'sixty-two thousand forty-seven');\nINSERT INTO t2 VALUES(22919, 31898, 'thirty-one thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(22920, 44725, 'forty-four thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(22921, 74150, 'seventy-four thousand one hundred fifty');\nINSERT INTO t2 VALUES(22922, 95639, 'ninety-five thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(22923, 89281, 'eighty-nine thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(22924, 42063, 'forty-two thousand sixty-three');\nINSERT INTO t2 VALUES(22925, 19988, 'nineteen thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(22926, 82130, 'eighty-two thousand one hundred thirty');\nINSERT INTO t2 VALUES(22927, 53395, 'fifty-three thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(22928, 57286, 'fifty-seven thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(22929, 17722, 'seventeen thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(22930, 80735, 'eighty thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(22931, 77289, 'seventy-seven thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(22932, 98249, 'ninety-eight thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(22933, 46373, 'forty-six thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(22934, 90674, 'ninety thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(22935, 81182, 'eighty-one thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(22936, 18431, 'eighteen thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(22937, 28765, 'twenty-eight thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(22938, 2879, 'two thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(22939, 33744, 'thirty-three thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(22940, 77644, 'seventy-seven thousand six hundred forty-four');\nINSERT INTO t2 VALUES(22941, 68473, 'sixty-eight thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(22942, 85705, 'eighty-five thousand seven hundred five');\nINSERT INTO t2 VALUES(22943, 27411, 'twenty-seven thousand four hundred eleven');\nINSERT INTO t2 VALUES(22944, 27622, 'twenty-seven thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(22945, 97346, 'ninety-seven thousand three hundred forty-six');\nINSERT INTO t2 VALUES(22946, 99408, 'ninety-nine thousand four hundred eight');\nINSERT INTO t2 VALUES(22947, 9867, 'nine thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(22948, 46306, 'forty-six thousand three hundred six');\nINSERT INTO t2 VALUES(22949, 76594, 'seventy-six thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(22950, 12188, 'twelve thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(22951, 11604, 'eleven thousand six hundred four');\nINSERT INTO t2 VALUES(22952, 15351, 'fifteen thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(22953, 74509, 'seventy-four thousand five hundred nine');\nINSERT INTO t2 VALUES(22954, 63495, 'sixty-three thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(22955, 28987, 'twenty-eight thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(22956, 81720, 'eighty-one thousand seven hundred twenty');\nINSERT INTO t2 VALUES(22957, 8213, 'eight thousand two hundred thirteen');\nINSERT INTO t2 VALUES(22958, 66792, 'sixty-six thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(22959, 88436, 'eighty-eight thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(22960, 75240, 'seventy-five thousand two hundred forty');\nINSERT INTO t2 VALUES(22961, 81797, 'eighty-one thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(22962, 12798, 'twelve thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(22963, 2271, 'two thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(22964, 76117, 'seventy-six thousand one hundred seventeen');\nINSERT INTO t2 VALUES(22965, 22369, 'twenty-two thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(22966, 51683, 'fifty-one thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(22967, 2881, 'two thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(22968, 10453, 'ten thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(22969, 79244, 'seventy-nine thousand two hundred forty-four');\nINSERT INTO t2 VALUES(22970, 44471, 'forty-four thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(22971, 78990, 'seventy-eight thousand nine hundred ninety');\nINSERT INTO t2 VALUES(22972, 93235, 'ninety-three thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(22973, 41515, 'forty-one thousand five hundred fifteen');\nINSERT INTO t2 VALUES(22974, 45959, 'forty-five thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(22975, 67278, 'sixty-seven thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(22976, 8773, 'eight thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(22977, 35032, 'thirty-five thousand thirty-two');\nINSERT INTO t2 VALUES(22978, 41934, 'forty-one thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(22979, 69223, 'sixty-nine thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(22980, 9680, 'nine thousand six hundred eighty');\nINSERT INTO t2 VALUES(22981, 56174, 'fifty-six thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(22982, 63774, 'sixty-three thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(22983, 29600, 'twenty-nine thousand six hundred');\nINSERT INTO t2 VALUES(22984, 9767, 'nine thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(22985, 27676, 'twenty-seven thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(22986, 49857, 'forty-nine thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(22987, 22099, 'twenty-two thousand ninety-nine');\nINSERT INTO t2 VALUES(22988, 45041, 'forty-five thousand forty-one');\nINSERT INTO t2 VALUES(22989, 5922, 'five thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(22990, 42504, 'forty-two thousand five hundred four');\nINSERT INTO t2 VALUES(22991, 64111, 'sixty-four thousand one hundred eleven');\nINSERT INTO t2 VALUES(22992, 90671, 'ninety thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(22993, 96008, 'ninety-six thousand eight');\nINSERT INTO t2 VALUES(22994, 75511, 'seventy-five thousand five hundred eleven');\nINSERT INTO t2 VALUES(22995, 19239, 'nineteen thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(22996, 10052, 'ten thousand fifty-two');\nINSERT INTO t2 VALUES(22997, 5846, 'five thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(22998, 32954, 'thirty-two thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(22999, 31536, 'thirty-one thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(23000, 51687, 'fifty-one thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(23001, 87535, 'eighty-seven thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(23002, 74485, 'seventy-four thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(23003, 10049, 'ten thousand forty-nine');\nINSERT INTO t2 VALUES(23004, 7853, 'seven thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(23005, 14943, 'fourteen thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(23006, 83839, 'eighty-three thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(23007, 44199, 'forty-four thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(23008, 85503, 'eighty-five thousand five hundred three');\nINSERT INTO t2 VALUES(23009, 43577, 'forty-three thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(23010, 42649, 'forty-two thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(23011, 68429, 'sixty-eight thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(23012, 53685, 'fifty-three thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(23013, 41878, 'forty-one thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(23014, 54519, 'fifty-four thousand five hundred nineteen');\nINSERT INTO t2 VALUES(23015, 82833, 'eighty-two thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(23016, 36780, 'thirty-six thousand seven hundred eighty');\nINSERT INTO t2 VALUES(23017, 24165, 'twenty-four thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(23018, 57477, 'fifty-seven thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(23019, 51711, 'fifty-one thousand seven hundred eleven');\nINSERT INTO t2 VALUES(23020, 97385, 'ninety-seven thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(23021, 99814, 'ninety-nine thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(23022, 68742, 'sixty-eight thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(23023, 95500, 'ninety-five thousand five hundred');\nINSERT INTO t2 VALUES(23024, 22495, 'twenty-two thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(23025, 44383, 'forty-four thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(23026, 86042, 'eighty-six thousand forty-two');\nINSERT INTO t2 VALUES(23027, 41488, 'forty-one thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(23028, 39763, 'thirty-nine thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(23029, 87210, 'eighty-seven thousand two hundred ten');\nINSERT INTO t2 VALUES(23030, 48895, 'forty-eight thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(23031, 22355, 'twenty-two thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(23032, 45702, 'forty-five thousand seven hundred two');\nINSERT INTO t2 VALUES(23033, 34182, 'thirty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(23034, 78428, 'seventy-eight thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(23035, 30354, 'thirty thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(23036, 34218, 'thirty-four thousand two hundred eighteen');\nINSERT INTO t2 VALUES(23037, 10700, 'ten thousand seven hundred');\nINSERT INTO t2 VALUES(23038, 9858, 'nine thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(23039, 40459, 'forty thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(23040, 50640, 'fifty thousand six hundred forty');\nINSERT INTO t2 VALUES(23041, 15459, 'fifteen thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(23042, 23395, 'twenty-three thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(23043, 97730, 'ninety-seven thousand seven hundred thirty');\nINSERT INTO t2 VALUES(23044, 8721, 'eight thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(23045, 30962, 'thirty thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(23046, 66533, 'sixty-six thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(23047, 46713, 'forty-six thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(23048, 22230, 'twenty-two thousand two hundred thirty');\nINSERT INTO t2 VALUES(23049, 5688, 'five thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(23050, 61020, 'sixty-one thousand twenty');\nINSERT INTO t2 VALUES(23051, 59727, 'fifty-nine thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(23052, 86044, 'eighty-six thousand forty-four');\nINSERT INTO t2 VALUES(23053, 12779, 'twelve thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(23054, 49, 'forty-nine');\nINSERT INTO t2 VALUES(23055, 95573, 'ninety-five thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(23056, 3577, 'three thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(23057, 61515, 'sixty-one thousand five hundred fifteen');\nINSERT INTO t2 VALUES(23058, 61021, 'sixty-one thousand twenty-one');\nINSERT INTO t2 VALUES(23059, 68684, 'sixty-eight thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(23060, 59819, 'fifty-nine thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(23061, 69086, 'sixty-nine thousand eighty-six');\nINSERT INTO t2 VALUES(23062, 34650, 'thirty-four thousand six hundred fifty');\nINSERT INTO t2 VALUES(23063, 55319, 'fifty-five thousand three hundred nineteen');\nINSERT INTO t2 VALUES(23064, 55718, 'fifty-five thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(23065, 51828, 'fifty-one thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(23066, 61824, 'sixty-one thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(23067, 27957, 'twenty-seven thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(23068, 40053, 'forty thousand fifty-three');\nINSERT INTO t2 VALUES(23069, 64049, 'sixty-four thousand forty-nine');\nINSERT INTO t2 VALUES(23070, 85640, 'eighty-five thousand six hundred forty');\nINSERT INTO t2 VALUES(23071, 20675, 'twenty thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(23072, 12096, 'twelve thousand ninety-six');\nINSERT INTO t2 VALUES(23073, 65541, 'sixty-five thousand five hundred forty-one');\nINSERT INTO t2 VALUES(23074, 68654, 'sixty-eight thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(23075, 83360, 'eighty-three thousand three hundred sixty');\nINSERT INTO t2 VALUES(23076, 67788, 'sixty-seven thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(23077, 41714, 'forty-one thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(23078, 78767, 'seventy-eight thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(23079, 92042, 'ninety-two thousand forty-two');\nINSERT INTO t2 VALUES(23080, 72495, 'seventy-two thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(23081, 39616, 'thirty-nine thousand six hundred sixteen');\nINSERT INTO t2 VALUES(23082, 14636, 'fourteen thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(23083, 2885, 'two thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(23084, 29187, 'twenty-nine thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(23085, 27628, 'twenty-seven thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(23086, 63766, 'sixty-three thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(23087, 50074, 'fifty thousand seventy-four');\nINSERT INTO t2 VALUES(23088, 44576, 'forty-four thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(23089, 99995, 'ninety-nine thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(23090, 14771, 'fourteen thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(23091, 28008, 'twenty-eight thousand eight');\nINSERT INTO t2 VALUES(23092, 94786, 'ninety-four thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(23093, 35200, 'thirty-five thousand two hundred');\nINSERT INTO t2 VALUES(23094, 283, 'two hundred eighty-three');\nINSERT INTO t2 VALUES(23095, 66428, 'sixty-six thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(23096, 60029, 'sixty thousand twenty-nine');\nINSERT INTO t2 VALUES(23097, 34878, 'thirty-four thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(23098, 84825, 'eighty-four thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(23099, 21888, 'twenty-one thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(23100, 94021, 'ninety-four thousand twenty-one');\nINSERT INTO t2 VALUES(23101, 30740, 'thirty thousand seven hundred forty');\nINSERT INTO t2 VALUES(23102, 24113, 'twenty-four thousand one hundred thirteen');\nINSERT INTO t2 VALUES(23103, 3818, 'three thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(23104, 63062, 'sixty-three thousand sixty-two');\nINSERT INTO t2 VALUES(23105, 86277, 'eighty-six thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(23106, 25322, 'twenty-five thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(23107, 43668, 'forty-three thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(23108, 3952, 'three thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(23109, 70535, 'seventy thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(23110, 25918, 'twenty-five thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(23111, 27229, 'twenty-seven thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(23112, 48752, 'forty-eight thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(23113, 44881, 'forty-four thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(23114, 64414, 'sixty-four thousand four hundred fourteen');\nINSERT INTO t2 VALUES(23115, 35939, 'thirty-five thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(23116, 23918, 'twenty-three thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(23117, 25125, 'twenty-five thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(23118, 12526, 'twelve thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(23119, 74712, 'seventy-four thousand seven hundred twelve');\nINSERT INTO t2 VALUES(23120, 70777, 'seventy thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(23121, 91875, 'ninety-one thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(23122, 41314, 'forty-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(23123, 9547, 'nine thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(23124, 37162, 'thirty-seven thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(23125, 51172, 'fifty-one thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(23126, 7064, 'seven thousand sixty-four');\nINSERT INTO t2 VALUES(23127, 52566, 'fifty-two thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(23128, 39018, 'thirty-nine thousand eighteen');\nINSERT INTO t2 VALUES(23129, 99950, 'ninety-nine thousand nine hundred fifty');\nINSERT INTO t2 VALUES(23130, 73518, 'seventy-three thousand five hundred eighteen');\nINSERT INTO t2 VALUES(23131, 28550, 'twenty-eight thousand five hundred fifty');\nINSERT INTO t2 VALUES(23132, 94915, 'ninety-four thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(23133, 46027, 'forty-six thousand twenty-seven');\nINSERT INTO t2 VALUES(23134, 61076, 'sixty-one thousand seventy-six');\nINSERT INTO t2 VALUES(23135, 70354, 'seventy thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(23136, 70643, 'seventy thousand six hundred forty-three');\nINSERT INTO t2 VALUES(23137, 71184, 'seventy-one thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(23138, 36771, 'thirty-six thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(23139, 41954, 'forty-one thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(23140, 49244, 'forty-nine thousand two hundred forty-four');\nINSERT INTO t2 VALUES(23141, 28770, 'twenty-eight thousand seven hundred seventy');\nINSERT INTO t2 VALUES(23142, 83008, 'eighty-three thousand eight');\nINSERT INTO t2 VALUES(23143, 82772, 'eighty-two thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(23144, 3962, 'three thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(23145, 82433, 'eighty-two thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(23146, 64003, 'sixty-four thousand three');\nINSERT INTO t2 VALUES(23147, 1353, 'one thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(23148, 41889, 'forty-one thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(23149, 49364, 'forty-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(23150, 5333, 'five thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(23151, 62073, 'sixty-two thousand seventy-three');\nINSERT INTO t2 VALUES(23152, 79364, 'seventy-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(23153, 6326, 'six thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(23154, 74235, 'seventy-four thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(23155, 14801, 'fourteen thousand eight hundred one');\nINSERT INTO t2 VALUES(23156, 12219, 'twelve thousand two hundred nineteen');\nINSERT INTO t2 VALUES(23157, 91148, 'ninety-one thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(23158, 15650, 'fifteen thousand six hundred fifty');\nINSERT INTO t2 VALUES(23159, 62682, 'sixty-two thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(23160, 64143, 'sixty-four thousand one hundred forty-three');\nINSERT INTO t2 VALUES(23161, 60222, 'sixty thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(23162, 62003, 'sixty-two thousand three');\nINSERT INTO t2 VALUES(23163, 7956, 'seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(23164, 89732, 'eighty-nine thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(23165, 29260, 'twenty-nine thousand two hundred sixty');\nINSERT INTO t2 VALUES(23166, 340, 'three hundred forty');\nINSERT INTO t2 VALUES(23167, 20013, 'twenty thousand thirteen');\nINSERT INTO t2 VALUES(23168, 50160, 'fifty thousand one hundred sixty');\nINSERT INTO t2 VALUES(23169, 98632, 'ninety-eight thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(23170, 33961, 'thirty-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(23171, 13335, 'thirteen thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(23172, 12894, 'twelve thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(23173, 58239, 'fifty-eight thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(23174, 70723, 'seventy thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(23175, 99321, 'ninety-nine thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(23176, 90602, 'ninety thousand six hundred two');\nINSERT INTO t2 VALUES(23177, 72498, 'seventy-two thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(23178, 73856, 'seventy-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(23179, 60896, 'sixty thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(23180, 26178, 'twenty-six thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(23181, 50638, 'fifty thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(23182, 42217, 'forty-two thousand two hundred seventeen');\nINSERT INTO t2 VALUES(23183, 48850, 'forty-eight thousand eight hundred fifty');\nINSERT INTO t2 VALUES(23184, 14551, 'fourteen thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(23185, 70040, 'seventy thousand forty');\nINSERT INTO t2 VALUES(23186, 78640, 'seventy-eight thousand six hundred forty');\nINSERT INTO t2 VALUES(23187, 15926, 'fifteen thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(23188, 93520, 'ninety-three thousand five hundred twenty');\nINSERT INTO t2 VALUES(23189, 75962, 'seventy-five thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(23190, 73934, 'seventy-three thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(23191, 70159, 'seventy thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(23192, 13031, 'thirteen thousand thirty-one');\nINSERT INTO t2 VALUES(23193, 52877, 'fifty-two thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(23194, 80595, 'eighty thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(23195, 84094, 'eighty-four thousand ninety-four');\nINSERT INTO t2 VALUES(23196, 14341, 'fourteen thousand three hundred forty-one');\nINSERT INTO t2 VALUES(23197, 45913, 'forty-five thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(23198, 77661, 'seventy-seven thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(23199, 36192, 'thirty-six thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(23200, 87079, 'eighty-seven thousand seventy-nine');\nINSERT INTO t2 VALUES(23201, 55866, 'fifty-five thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(23202, 83091, 'eighty-three thousand ninety-one');\nINSERT INTO t2 VALUES(23203, 60716, 'sixty thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(23204, 53476, 'fifty-three thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(23205, 54866, 'fifty-four thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(23206, 93785, 'ninety-three thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(23207, 12637, 'twelve thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(23208, 65905, 'sixty-five thousand nine hundred five');\nINSERT INTO t2 VALUES(23209, 66465, 'sixty-six thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(23210, 15780, 'fifteen thousand seven hundred eighty');\nINSERT INTO t2 VALUES(23211, 78610, 'seventy-eight thousand six hundred ten');\nINSERT INTO t2 VALUES(23212, 77539, 'seventy-seven thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(23213, 16648, 'sixteen thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(23214, 39501, 'thirty-nine thousand five hundred one');\nINSERT INTO t2 VALUES(23215, 87397, 'eighty-seven thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(23216, 48532, 'forty-eight thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(23217, 25608, 'twenty-five thousand six hundred eight');\nINSERT INTO t2 VALUES(23218, 68758, 'sixty-eight thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(23219, 88549, 'eighty-eight thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(23220, 50415, 'fifty thousand four hundred fifteen');\nINSERT INTO t2 VALUES(23221, 1315, 'one thousand three hundred fifteen');\nINSERT INTO t2 VALUES(23222, 40435, 'forty thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(23223, 93417, 'ninety-three thousand four hundred seventeen');\nINSERT INTO t2 VALUES(23224, 36041, 'thirty-six thousand forty-one');\nINSERT INTO t2 VALUES(23225, 77042, 'seventy-seven thousand forty-two');\nINSERT INTO t2 VALUES(23226, 65596, 'sixty-five thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(23227, 19594, 'nineteen thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(23228, 2365, 'two thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(23229, 10810, 'ten thousand eight hundred ten');\nINSERT INTO t2 VALUES(23230, 1325, 'one thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(23231, 73187, 'seventy-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(23232, 24339, 'twenty-four thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(23233, 71648, 'seventy-one thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(23234, 30917, 'thirty thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(23235, 73703, 'seventy-three thousand seven hundred three');\nINSERT INTO t2 VALUES(23236, 18596, 'eighteen thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(23237, 40060, 'forty thousand sixty');\nINSERT INTO t2 VALUES(23238, 23659, 'twenty-three thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(23239, 36972, 'thirty-six thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(23240, 90048, 'ninety thousand forty-eight');\nINSERT INTO t2 VALUES(23241, 43474, 'forty-three thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(23242, 5553, 'five thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(23243, 50968, 'fifty thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(23244, 25849, 'twenty-five thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(23245, 76173, 'seventy-six thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(23246, 93012, 'ninety-three thousand twelve');\nINSERT INTO t2 VALUES(23247, 56171, 'fifty-six thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(23248, 34374, 'thirty-four thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(23249, 98205, 'ninety-eight thousand two hundred five');\nINSERT INTO t2 VALUES(23250, 38686, 'thirty-eight thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(23251, 17743, 'seventeen thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(23252, 87661, 'eighty-seven thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(23253, 21120, 'twenty-one thousand one hundred twenty');\nINSERT INTO t2 VALUES(23254, 83074, 'eighty-three thousand seventy-four');\nINSERT INTO t2 VALUES(23255, 35249, 'thirty-five thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(23256, 26539, 'twenty-six thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(23257, 82484, 'eighty-two thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(23258, 49268, 'forty-nine thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(23259, 1011, 'one thousand eleven');\nINSERT INTO t2 VALUES(23260, 84316, 'eighty-four thousand three hundred sixteen');\nINSERT INTO t2 VALUES(23261, 70974, 'seventy thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(23262, 84233, 'eighty-four thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(23263, 10520, 'ten thousand five hundred twenty');\nINSERT INTO t2 VALUES(23264, 87044, 'eighty-seven thousand forty-four');\nINSERT INTO t2 VALUES(23265, 97954, 'ninety-seven thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(23266, 45841, 'forty-five thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(23267, 22141, 'twenty-two thousand one hundred forty-one');\nINSERT INTO t2 VALUES(23268, 14182, 'fourteen thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(23269, 98147, 'ninety-eight thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(23270, 36319, 'thirty-six thousand three hundred nineteen');\nINSERT INTO t2 VALUES(23271, 70837, 'seventy thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(23272, 90692, 'ninety thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(23273, 67121, 'sixty-seven thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(23274, 28666, 'twenty-eight thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(23275, 33530, 'thirty-three thousand five hundred thirty');\nINSERT INTO t2 VALUES(23276, 7183, 'seven thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(23277, 5236, 'five thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(23278, 80548, 'eighty thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(23279, 16777, 'sixteen thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(23280, 97967, 'ninety-seven thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(23281, 67165, 'sixty-seven thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(23282, 25256, 'twenty-five thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(23283, 15170, 'fifteen thousand one hundred seventy');\nINSERT INTO t2 VALUES(23284, 9796, 'nine thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(23285, 76480, 'seventy-six thousand four hundred eighty');\nINSERT INTO t2 VALUES(23286, 3630, 'three thousand six hundred thirty');\nINSERT INTO t2 VALUES(23287, 28011, 'twenty-eight thousand eleven');\nINSERT INTO t2 VALUES(23288, 21575, 'twenty-one thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(23289, 10048, 'ten thousand forty-eight');\nINSERT INTO t2 VALUES(23290, 88933, 'eighty-eight thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(23291, 2812, 'two thousand eight hundred twelve');\nINSERT INTO t2 VALUES(23292, 33735, 'thirty-three thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(23293, 21127, 'twenty-one thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(23294, 14258, 'fourteen thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(23295, 43699, 'forty-three thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(23296, 32905, 'thirty-two thousand nine hundred five');\nINSERT INTO t2 VALUES(23297, 21878, 'twenty-one thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(23298, 73355, 'seventy-three thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(23299, 29446, 'twenty-nine thousand four hundred forty-six');\nINSERT INTO t2 VALUES(23300, 3401, 'three thousand four hundred one');\nINSERT INTO t2 VALUES(23301, 27017, 'twenty-seven thousand seventeen');\nINSERT INTO t2 VALUES(23302, 52191, 'fifty-two thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(23303, 38679, 'thirty-eight thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(23304, 77794, 'seventy-seven thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(23305, 87916, 'eighty-seven thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(23306, 47688, 'forty-seven thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(23307, 81647, 'eighty-one thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(23308, 4886, 'four thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(23309, 44796, 'forty-four thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(23310, 67938, 'sixty-seven thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(23311, 91025, 'ninety-one thousand twenty-five');\nINSERT INTO t2 VALUES(23312, 72844, 'seventy-two thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(23313, 67287, 'sixty-seven thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(23314, 21271, 'twenty-one thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(23315, 96367, 'ninety-six thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(23316, 23512, 'twenty-three thousand five hundred twelve');\nINSERT INTO t2 VALUES(23317, 90773, 'ninety thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(23318, 69436, 'sixty-nine thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(23319, 58555, 'fifty-eight thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(23320, 14073, 'fourteen thousand seventy-three');\nINSERT INTO t2 VALUES(23321, 58627, 'fifty-eight thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(23322, 69549, 'sixty-nine thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(23323, 47929, 'forty-seven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(23324, 89922, 'eighty-nine thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(23325, 29449, 'twenty-nine thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(23326, 37493, 'thirty-seven thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(23327, 74623, 'seventy-four thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(23328, 92064, 'ninety-two thousand sixty-four');\nINSERT INTO t2 VALUES(23329, 44323, 'forty-four thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(23330, 63265, 'sixty-three thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(23331, 69513, 'sixty-nine thousand five hundred thirteen');\nINSERT INTO t2 VALUES(23332, 32218, 'thirty-two thousand two hundred eighteen');\nINSERT INTO t2 VALUES(23333, 95799, 'ninety-five thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(23334, 63059, 'sixty-three thousand fifty-nine');\nINSERT INTO t2 VALUES(23335, 22578, 'twenty-two thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(23336, 64359, 'sixty-four thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(23337, 85406, 'eighty-five thousand four hundred six');\nINSERT INTO t2 VALUES(23338, 23385, 'twenty-three thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(23339, 17516, 'seventeen thousand five hundred sixteen');\nINSERT INTO t2 VALUES(23340, 63428, 'sixty-three thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(23341, 77530, 'seventy-seven thousand five hundred thirty');\nINSERT INTO t2 VALUES(23342, 38638, 'thirty-eight thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(23343, 28771, 'twenty-eight thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(23344, 94593, 'ninety-four thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(23345, 49314, 'forty-nine thousand three hundred fourteen');\nINSERT INTO t2 VALUES(23346, 14806, 'fourteen thousand eight hundred six');\nINSERT INTO t2 VALUES(23347, 2977, 'two thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(23348, 68209, 'sixty-eight thousand two hundred nine');\nINSERT INTO t2 VALUES(23349, 56244, 'fifty-six thousand two hundred forty-four');\nINSERT INTO t2 VALUES(23350, 40404, 'forty thousand four hundred four');\nINSERT INTO t2 VALUES(23351, 32329, 'thirty-two thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(23352, 51575, 'fifty-one thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(23353, 31710, 'thirty-one thousand seven hundred ten');\nINSERT INTO t2 VALUES(23354, 89808, 'eighty-nine thousand eight hundred eight');\nINSERT INTO t2 VALUES(23355, 55056, 'fifty-five thousand fifty-six');\nINSERT INTO t2 VALUES(23356, 60341, 'sixty thousand three hundred forty-one');\nINSERT INTO t2 VALUES(23357, 69529, 'sixty-nine thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(23358, 49484, 'forty-nine thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(23359, 46290, 'forty-six thousand two hundred ninety');\nINSERT INTO t2 VALUES(23360, 9014, 'nine thousand fourteen');\nINSERT INTO t2 VALUES(23361, 17870, 'seventeen thousand eight hundred seventy');\nINSERT INTO t2 VALUES(23362, 20207, 'twenty thousand two hundred seven');\nINSERT INTO t2 VALUES(23363, 96086, 'ninety-six thousand eighty-six');\nINSERT INTO t2 VALUES(23364, 58840, 'fifty-eight thousand eight hundred forty');\nINSERT INTO t2 VALUES(23365, 73828, 'seventy-three thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(23366, 26844, 'twenty-six thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(23367, 17427, 'seventeen thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(23368, 17354, 'seventeen thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(23369, 89537, 'eighty-nine thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(23370, 25912, 'twenty-five thousand nine hundred twelve');\nINSERT INTO t2 VALUES(23371, 66085, 'sixty-six thousand eighty-five');\nINSERT INTO t2 VALUES(23372, 65729, 'sixty-five thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(23373, 6498, 'six thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(23374, 47987, 'forty-seven thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(23375, 35867, 'thirty-five thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(23376, 8285, 'eight thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(23377, 9778, 'nine thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(23378, 10338, 'ten thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(23379, 77276, 'seventy-seven thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(23380, 31120, 'thirty-one thousand one hundred twenty');\nINSERT INTO t2 VALUES(23381, 8997, 'eight thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(23382, 9251, 'nine thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(23383, 18729, 'eighteen thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(23384, 24129, 'twenty-four thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(23385, 76296, 'seventy-six thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(23386, 59601, 'fifty-nine thousand six hundred one');\nINSERT INTO t2 VALUES(23387, 48361, 'forty-eight thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(23388, 53964, 'fifty-three thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(23389, 89733, 'eighty-nine thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(23390, 90936, 'ninety thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(23391, 52230, 'fifty-two thousand two hundred thirty');\nINSERT INTO t2 VALUES(23392, 30685, 'thirty thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(23393, 90448, 'ninety thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(23394, 95786, 'ninety-five thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(23395, 21699, 'twenty-one thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(23396, 89012, 'eighty-nine thousand twelve');\nINSERT INTO t2 VALUES(23397, 60818, 'sixty thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(23398, 78439, 'seventy-eight thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(23399, 34945, 'thirty-four thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(23400, 7363, 'seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(23401, 60322, 'sixty thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(23402, 72677, 'seventy-two thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(23403, 39897, 'thirty-nine thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(23404, 21031, 'twenty-one thousand thirty-one');\nINSERT INTO t2 VALUES(23405, 45966, 'forty-five thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(23406, 603, 'six hundred three');\nINSERT INTO t2 VALUES(23407, 4356, 'four thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(23408, 51175, 'fifty-one thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(23409, 16461, 'sixteen thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(23410, 59916, 'fifty-nine thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(23411, 79711, 'seventy-nine thousand seven hundred eleven');\nINSERT INTO t2 VALUES(23412, 10576, 'ten thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(23413, 23845, 'twenty-three thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(23414, 20890, 'twenty thousand eight hundred ninety');\nINSERT INTO t2 VALUES(23415, 17833, 'seventeen thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(23416, 21473, 'twenty-one thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(23417, 73194, 'seventy-three thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(23418, 16145, 'sixteen thousand one hundred forty-five');\nINSERT INTO t2 VALUES(23419, 99939, 'ninety-nine thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(23420, 68436, 'sixty-eight thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(23421, 53173, 'fifty-three thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(23422, 82340, 'eighty-two thousand three hundred forty');\nINSERT INTO t2 VALUES(23423, 45949, 'forty-five thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(23424, 35528, 'thirty-five thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(23425, 14954, 'fourteen thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(23426, 94254, 'ninety-four thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(23427, 94556, 'ninety-four thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(23428, 37592, 'thirty-seven thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(23429, 34491, 'thirty-four thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(23430, 70638, 'seventy thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(23431, 60238, 'sixty thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(23432, 67919, 'sixty-seven thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(23433, 71969, 'seventy-one thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(23434, 23137, 'twenty-three thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(23435, 31243, 'thirty-one thousand two hundred forty-three');\nINSERT INTO t2 VALUES(23436, 30148, 'thirty thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(23437, 44688, 'forty-four thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(23438, 19428, 'nineteen thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(23439, 6511, 'six thousand five hundred eleven');\nINSERT INTO t2 VALUES(23440, 17315, 'seventeen thousand three hundred fifteen');\nINSERT INTO t2 VALUES(23441, 43771, 'forty-three thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(23442, 89891, 'eighty-nine thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(23443, 66871, 'sixty-six thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(23444, 97850, 'ninety-seven thousand eight hundred fifty');\nINSERT INTO t2 VALUES(23445, 30494, 'thirty thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(23446, 79671, 'seventy-nine thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(23447, 35547, 'thirty-five thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(23448, 35879, 'thirty-five thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(23449, 19382, 'nineteen thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(23450, 69964, 'sixty-nine thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(23451, 94777, 'ninety-four thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(23452, 6338, 'six thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(23453, 66622, 'sixty-six thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(23454, 65071, 'sixty-five thousand seventy-one');\nINSERT INTO t2 VALUES(23455, 33206, 'thirty-three thousand two hundred six');\nINSERT INTO t2 VALUES(23456, 38021, 'thirty-eight thousand twenty-one');\nINSERT INTO t2 VALUES(23457, 28627, 'twenty-eight thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(23458, 88694, 'eighty-eight thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(23459, 67536, 'sixty-seven thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(23460, 44753, 'forty-four thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(23461, 40647, 'forty thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(23462, 34094, 'thirty-four thousand ninety-four');\nINSERT INTO t2 VALUES(23463, 15157, 'fifteen thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(23464, 20284, 'twenty thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(23465, 62965, 'sixty-two thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(23466, 22488, 'twenty-two thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(23467, 45920, 'forty-five thousand nine hundred twenty');\nINSERT INTO t2 VALUES(23468, 83014, 'eighty-three thousand fourteen');\nINSERT INTO t2 VALUES(23469, 82421, 'eighty-two thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(23470, 27319, 'twenty-seven thousand three hundred nineteen');\nINSERT INTO t2 VALUES(23471, 26644, 'twenty-six thousand six hundred forty-four');\nINSERT INTO t2 VALUES(23472, 28950, 'twenty-eight thousand nine hundred fifty');\nINSERT INTO t2 VALUES(23473, 15142, 'fifteen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(23474, 14758, 'fourteen thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(23475, 68043, 'sixty-eight thousand forty-three');\nINSERT INTO t2 VALUES(23476, 42649, 'forty-two thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(23477, 46511, 'forty-six thousand five hundred eleven');\nINSERT INTO t2 VALUES(23478, 60710, 'sixty thousand seven hundred ten');\nINSERT INTO t2 VALUES(23479, 50800, 'fifty thousand eight hundred');\nINSERT INTO t2 VALUES(23480, 6379, 'six thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(23481, 43034, 'forty-three thousand thirty-four');\nINSERT INTO t2 VALUES(23482, 49416, 'forty-nine thousand four hundred sixteen');\nINSERT INTO t2 VALUES(23483, 99256, 'ninety-nine thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(23484, 28556, 'twenty-eight thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(23485, 5809, 'five thousand eight hundred nine');\nINSERT INTO t2 VALUES(23486, 51409, 'fifty-one thousand four hundred nine');\nINSERT INTO t2 VALUES(23487, 840, 'eight hundred forty');\nINSERT INTO t2 VALUES(23488, 13140, 'thirteen thousand one hundred forty');\nINSERT INTO t2 VALUES(23489, 53747, 'fifty-three thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(23490, 72919, 'seventy-two thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(23491, 16609, 'sixteen thousand six hundred nine');\nINSERT INTO t2 VALUES(23492, 80700, 'eighty thousand seven hundred');\nINSERT INTO t2 VALUES(23493, 44492, 'forty-four thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(23494, 93934, 'ninety-three thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(23495, 80016, 'eighty thousand sixteen');\nINSERT INTO t2 VALUES(23496, 94779, 'ninety-four thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(23497, 29719, 'twenty-nine thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(23498, 11594, 'eleven thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(23499, 15766, 'fifteen thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(23500, 98228, 'ninety-eight thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(23501, 80538, 'eighty thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(23502, 49852, 'forty-nine thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(23503, 29929, 'twenty-nine thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(23504, 67227, 'sixty-seven thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(23505, 77702, 'seventy-seven thousand seven hundred two');\nINSERT INTO t2 VALUES(23506, 11464, 'eleven thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(23507, 18588, 'eighteen thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(23508, 91089, 'ninety-one thousand eighty-nine');\nINSERT INTO t2 VALUES(23509, 43218, 'forty-three thousand two hundred eighteen');\nINSERT INTO t2 VALUES(23510, 67325, 'sixty-seven thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(23511, 278, 'two hundred seventy-eight');\nINSERT INTO t2 VALUES(23512, 49032, 'forty-nine thousand thirty-two');\nINSERT INTO t2 VALUES(23513, 44547, 'forty-four thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(23514, 83138, 'eighty-three thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(23515, 12927, 'twelve thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(23516, 92786, 'ninety-two thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(23517, 51758, 'fifty-one thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(23518, 31122, 'thirty-one thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(23519, 73317, 'seventy-three thousand three hundred seventeen');\nINSERT INTO t2 VALUES(23520, 53734, 'fifty-three thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(23521, 66048, 'sixty-six thousand forty-eight');\nINSERT INTO t2 VALUES(23522, 20213, 'twenty thousand two hundred thirteen');\nINSERT INTO t2 VALUES(23523, 52858, 'fifty-two thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(23524, 15831, 'fifteen thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(23525, 53469, 'fifty-three thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(23526, 6111, 'six thousand one hundred eleven');\nINSERT INTO t2 VALUES(23527, 78455, 'seventy-eight thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(23528, 3147, 'three thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(23529, 17883, 'seventeen thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(23530, 37172, 'thirty-seven thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(23531, 2148, 'two thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(23532, 20027, 'twenty thousand twenty-seven');\nINSERT INTO t2 VALUES(23533, 37991, 'thirty-seven thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(23534, 96979, 'ninety-six thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(23535, 49088, 'forty-nine thousand eighty-eight');\nINSERT INTO t2 VALUES(23536, 52540, 'fifty-two thousand five hundred forty');\nINSERT INTO t2 VALUES(23537, 73241, 'seventy-three thousand two hundred forty-one');\nINSERT INTO t2 VALUES(23538, 85859, 'eighty-five thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(23539, 42215, 'forty-two thousand two hundred fifteen');\nINSERT INTO t2 VALUES(23540, 45025, 'forty-five thousand twenty-five');\nINSERT INTO t2 VALUES(23541, 10244, 'ten thousand two hundred forty-four');\nINSERT INTO t2 VALUES(23542, 49909, 'forty-nine thousand nine hundred nine');\nINSERT INTO t2 VALUES(23543, 63897, 'sixty-three thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(23544, 75501, 'seventy-five thousand five hundred one');\nINSERT INTO t2 VALUES(23545, 33003, 'thirty-three thousand three');\nINSERT INTO t2 VALUES(23546, 6611, 'six thousand six hundred eleven');\nINSERT INTO t2 VALUES(23547, 42644, 'forty-two thousand six hundred forty-four');\nINSERT INTO t2 VALUES(23548, 29415, 'twenty-nine thousand four hundred fifteen');\nINSERT INTO t2 VALUES(23549, 8102, 'eight thousand one hundred two');\nINSERT INTO t2 VALUES(23550, 21815, 'twenty-one thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(23551, 83430, 'eighty-three thousand four hundred thirty');\nINSERT INTO t2 VALUES(23552, 8043, 'eight thousand forty-three');\nINSERT INTO t2 VALUES(23553, 36525, 'thirty-six thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(23554, 24614, 'twenty-four thousand six hundred fourteen');\nINSERT INTO t2 VALUES(23555, 34006, 'thirty-four thousand six');\nINSERT INTO t2 VALUES(23556, 63020, 'sixty-three thousand twenty');\nINSERT INTO t2 VALUES(23557, 10745, 'ten thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(23558, 20771, 'twenty thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(23559, 59083, 'fifty-nine thousand eighty-three');\nINSERT INTO t2 VALUES(23560, 52303, 'fifty-two thousand three hundred three');\nINSERT INTO t2 VALUES(23561, 65518, 'sixty-five thousand five hundred eighteen');\nINSERT INTO t2 VALUES(23562, 78898, 'seventy-eight thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(23563, 74657, 'seventy-four thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(23564, 76094, 'seventy-six thousand ninety-four');\nINSERT INTO t2 VALUES(23565, 18293, 'eighteen thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(23566, 36063, 'thirty-six thousand sixty-three');\nINSERT INTO t2 VALUES(23567, 7299, 'seven thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(23568, 3868, 'three thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(23569, 40627, 'forty thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(23570, 84909, 'eighty-four thousand nine hundred nine');\nINSERT INTO t2 VALUES(23571, 70715, 'seventy thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(23572, 24432, 'twenty-four thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(23573, 30419, 'thirty thousand four hundred nineteen');\nINSERT INTO t2 VALUES(23574, 42933, 'forty-two thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(23575, 62358, 'sixty-two thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(23576, 98352, 'ninety-eight thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(23577, 49148, 'forty-nine thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(23578, 49457, 'forty-nine thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(23579, 77901, 'seventy-seven thousand nine hundred one');\nINSERT INTO t2 VALUES(23580, 24942, 'twenty-four thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(23581, 40659, 'forty thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(23582, 59441, 'fifty-nine thousand four hundred forty-one');\nINSERT INTO t2 VALUES(23583, 36020, 'thirty-six thousand twenty');\nINSERT INTO t2 VALUES(23584, 85865, 'eighty-five thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(23585, 27664, 'twenty-seven thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(23586, 32849, 'thirty-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(23587, 19881, 'nineteen thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(23588, 31546, 'thirty-one thousand five hundred forty-six');\nINSERT INTO t2 VALUES(23589, 22977, 'twenty-two thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(23590, 89488, 'eighty-nine thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(23591, 47010, 'forty-seven thousand ten');\nINSERT INTO t2 VALUES(23592, 89848, 'eighty-nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(23593, 95780, 'ninety-five thousand seven hundred eighty');\nINSERT INTO t2 VALUES(23594, 33380, 'thirty-three thousand three hundred eighty');\nINSERT INTO t2 VALUES(23595, 91505, 'ninety-one thousand five hundred five');\nINSERT INTO t2 VALUES(23596, 77283, 'seventy-seven thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(23597, 6903, 'six thousand nine hundred three');\nINSERT INTO t2 VALUES(23598, 62239, 'sixty-two thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(23599, 4753, 'four thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(23600, 24834, 'twenty-four thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(23601, 66446, 'sixty-six thousand four hundred forty-six');\nINSERT INTO t2 VALUES(23602, 82830, 'eighty-two thousand eight hundred thirty');\nINSERT INTO t2 VALUES(23603, 45352, 'forty-five thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(23604, 62285, 'sixty-two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(23605, 73778, 'seventy-three thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(23606, 22763, 'twenty-two thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(23607, 44766, 'forty-four thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(23608, 99597, 'ninety-nine thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(23609, 63864, 'sixty-three thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(23610, 7637, 'seven thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(23611, 89977, 'eighty-nine thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(23612, 57362, 'fifty-seven thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(23613, 68992, 'sixty-eight thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(23614, 6093, 'six thousand ninety-three');\nINSERT INTO t2 VALUES(23615, 81853, 'eighty-one thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(23616, 32792, 'thirty-two thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(23617, 77313, 'seventy-seven thousand three hundred thirteen');\nINSERT INTO t2 VALUES(23618, 21819, 'twenty-one thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(23619, 31603, 'thirty-one thousand six hundred three');\nINSERT INTO t2 VALUES(23620, 2469, 'two thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(23621, 59579, 'fifty-nine thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(23622, 89796, 'eighty-nine thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(23623, 59227, 'fifty-nine thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(23624, 60582, 'sixty thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(23625, 73042, 'seventy-three thousand forty-two');\nINSERT INTO t2 VALUES(23626, 63668, 'sixty-three thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(23627, 72324, 'seventy-two thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(23628, 55144, 'fifty-five thousand one hundred forty-four');\nINSERT INTO t2 VALUES(23629, 96203, 'ninety-six thousand two hundred three');\nINSERT INTO t2 VALUES(23630, 56852, 'fifty-six thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(23631, 87405, 'eighty-seven thousand four hundred five');\nINSERT INTO t2 VALUES(23632, 88324, 'eighty-eight thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(23633, 24106, 'twenty-four thousand one hundred six');\nINSERT INTO t2 VALUES(23634, 94920, 'ninety-four thousand nine hundred twenty');\nINSERT INTO t2 VALUES(23635, 25677, 'twenty-five thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(23636, 34123, 'thirty-four thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(23637, 21569, 'twenty-one thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(23638, 40566, 'forty thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(23639, 36835, 'thirty-six thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(23640, 36804, 'thirty-six thousand eight hundred four');\nINSERT INTO t2 VALUES(23641, 5660, 'five thousand six hundred sixty');\nINSERT INTO t2 VALUES(23642, 75358, 'seventy-five thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(23643, 37675, 'thirty-seven thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(23644, 16032, 'sixteen thousand thirty-two');\nINSERT INTO t2 VALUES(23645, 71169, 'seventy-one thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(23646, 57750, 'fifty-seven thousand seven hundred fifty');\nINSERT INTO t2 VALUES(23647, 64651, 'sixty-four thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(23648, 46926, 'forty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(23649, 17447, 'seventeen thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(23650, 90467, 'ninety thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(23651, 79518, 'seventy-nine thousand five hundred eighteen');\nINSERT INTO t2 VALUES(23652, 46322, 'forty-six thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(23653, 32213, 'thirty-two thousand two hundred thirteen');\nINSERT INTO t2 VALUES(23654, 70610, 'seventy thousand six hundred ten');\nINSERT INTO t2 VALUES(23655, 43007, 'forty-three thousand seven');\nINSERT INTO t2 VALUES(23656, 90529, 'ninety thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(23657, 58455, 'fifty-eight thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(23658, 81952, 'eighty-one thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(23659, 51665, 'fifty-one thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(23660, 59875, 'fifty-nine thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(23661, 70100, 'seventy thousand one hundred');\nINSERT INTO t2 VALUES(23662, 95042, 'ninety-five thousand forty-two');\nINSERT INTO t2 VALUES(23663, 3887, 'three thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(23664, 91723, 'ninety-one thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(23665, 19865, 'nineteen thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(23666, 7573, 'seven thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(23667, 48248, 'forty-eight thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(23668, 37151, 'thirty-seven thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(23669, 42660, 'forty-two thousand six hundred sixty');\nINSERT INTO t2 VALUES(23670, 75322, 'seventy-five thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(23671, 32626, 'thirty-two thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(23672, 22580, 'twenty-two thousand five hundred eighty');\nINSERT INTO t2 VALUES(23673, 74270, 'seventy-four thousand two hundred seventy');\nINSERT INTO t2 VALUES(23674, 12635, 'twelve thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(23675, 86073, 'eighty-six thousand seventy-three');\nINSERT INTO t2 VALUES(23676, 42051, 'forty-two thousand fifty-one');\nINSERT INTO t2 VALUES(23677, 52471, 'fifty-two thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(23678, 35151, 'thirty-five thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(23679, 79147, 'seventy-nine thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(23680, 32574, 'thirty-two thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(23681, 86365, 'eighty-six thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(23682, 93214, 'ninety-three thousand two hundred fourteen');\nINSERT INTO t2 VALUES(23683, 36900, 'thirty-six thousand nine hundred');\nINSERT INTO t2 VALUES(23684, 35602, 'thirty-five thousand six hundred two');\nINSERT INTO t2 VALUES(23685, 93566, 'ninety-three thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(23686, 44976, 'forty-four thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(23687, 22623, 'twenty-two thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(23688, 55070, 'fifty-five thousand seventy');\nINSERT INTO t2 VALUES(23689, 33558, 'thirty-three thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(23690, 32010, 'thirty-two thousand ten');\nINSERT INTO t2 VALUES(23691, 14196, 'fourteen thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(23692, 77627, 'seventy-seven thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(23693, 71600, 'seventy-one thousand six hundred');\nINSERT INTO t2 VALUES(23694, 41196, 'forty-one thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(23695, 789, 'seven hundred eighty-nine');\nINSERT INTO t2 VALUES(23696, 13293, 'thirteen thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(23697, 18468, 'eighteen thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(23698, 69455, 'sixty-nine thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(23699, 34415, 'thirty-four thousand four hundred fifteen');\nINSERT INTO t2 VALUES(23700, 86678, 'eighty-six thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(23701, 48949, 'forty-eight thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(23702, 67793, 'sixty-seven thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(23703, 16517, 'sixteen thousand five hundred seventeen');\nINSERT INTO t2 VALUES(23704, 31942, 'thirty-one thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(23705, 95072, 'ninety-five thousand seventy-two');\nINSERT INTO t2 VALUES(23706, 38961, 'thirty-eight thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(23707, 18289, 'eighteen thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(23708, 93881, 'ninety-three thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(23709, 36679, 'thirty-six thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(23710, 32755, 'thirty-two thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(23711, 75969, 'seventy-five thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(23712, 23807, 'twenty-three thousand eight hundred seven');\nINSERT INTO t2 VALUES(23713, 87929, 'eighty-seven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(23714, 44764, 'forty-four thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(23715, 54311, 'fifty-four thousand three hundred eleven');\nINSERT INTO t2 VALUES(23716, 95398, 'ninety-five thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(23717, 52780, 'fifty-two thousand seven hundred eighty');\nINSERT INTO t2 VALUES(23718, 18123, 'eighteen thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(23719, 88078, 'eighty-eight thousand seventy-eight');\nINSERT INTO t2 VALUES(23720, 23996, 'twenty-three thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(23721, 71691, 'seventy-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(23722, 63458, 'sixty-three thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(23723, 65329, 'sixty-five thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(23724, 47236, 'forty-seven thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(23725, 30448, 'thirty thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(23726, 68705, 'sixty-eight thousand seven hundred five');\nINSERT INTO t2 VALUES(23727, 98390, 'ninety-eight thousand three hundred ninety');\nINSERT INTO t2 VALUES(23728, 66897, 'sixty-six thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(23729, 31564, 'thirty-one thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(23730, 1852, 'one thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(23731, 42690, 'forty-two thousand six hundred ninety');\nINSERT INTO t2 VALUES(23732, 73950, 'seventy-three thousand nine hundred fifty');\nINSERT INTO t2 VALUES(23733, 34879, 'thirty-four thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(23734, 3343, 'three thousand three hundred forty-three');\nINSERT INTO t2 VALUES(23735, 11376, 'eleven thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(23736, 16759, 'sixteen thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(23737, 81244, 'eighty-one thousand two hundred forty-four');\nINSERT INTO t2 VALUES(23738, 99543, 'ninety-nine thousand five hundred forty-three');\nINSERT INTO t2 VALUES(23739, 61186, 'sixty-one thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(23740, 82312, 'eighty-two thousand three hundred twelve');\nINSERT INTO t2 VALUES(23741, 83516, 'eighty-three thousand five hundred sixteen');\nINSERT INTO t2 VALUES(23742, 57423, 'fifty-seven thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(23743, 58512, 'fifty-eight thousand five hundred twelve');\nINSERT INTO t2 VALUES(23744, 6095, 'six thousand ninety-five');\nINSERT INTO t2 VALUES(23745, 40789, 'forty thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(23746, 33542, 'thirty-three thousand five hundred forty-two');\nINSERT INTO t2 VALUES(23747, 34692, 'thirty-four thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(23748, 14631, 'fourteen thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(23749, 95687, 'ninety-five thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(23750, 37212, 'thirty-seven thousand two hundred twelve');\nINSERT INTO t2 VALUES(23751, 95251, 'ninety-five thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(23752, 97223, 'ninety-seven thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(23753, 53083, 'fifty-three thousand eighty-three');\nINSERT INTO t2 VALUES(23754, 56974, 'fifty-six thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(23755, 15773, 'fifteen thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(23756, 22892, 'twenty-two thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(23757, 29061, 'twenty-nine thousand sixty-one');\nINSERT INTO t2 VALUES(23758, 62149, 'sixty-two thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(23759, 45768, 'forty-five thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(23760, 75691, 'seventy-five thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(23761, 72773, 'seventy-two thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(23762, 82435, 'eighty-two thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(23763, 14322, 'fourteen thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(23764, 62835, 'sixty-two thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(23765, 12427, 'twelve thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(23766, 42239, 'forty-two thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(23767, 6850, 'six thousand eight hundred fifty');\nINSERT INTO t2 VALUES(23768, 23542, 'twenty-three thousand five hundred forty-two');\nINSERT INTO t2 VALUES(23769, 45862, 'forty-five thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(23770, 61367, 'sixty-one thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(23771, 71147, 'seventy-one thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(23772, 69515, 'sixty-nine thousand five hundred fifteen');\nINSERT INTO t2 VALUES(23773, 80632, 'eighty thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(23774, 65315, 'sixty-five thousand three hundred fifteen');\nINSERT INTO t2 VALUES(23775, 52435, 'fifty-two thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(23776, 88682, 'eighty-eight thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(23777, 82398, 'eighty-two thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(23778, 47977, 'forty-seven thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(23779, 50958, 'fifty thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(23780, 67910, 'sixty-seven thousand nine hundred ten');\nINSERT INTO t2 VALUES(23781, 39956, 'thirty-nine thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(23782, 38722, 'thirty-eight thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(23783, 41373, 'forty-one thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(23784, 49216, 'forty-nine thousand two hundred sixteen');\nINSERT INTO t2 VALUES(23785, 85948, 'eighty-five thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(23786, 64712, 'sixty-four thousand seven hundred twelve');\nINSERT INTO t2 VALUES(23787, 23108, 'twenty-three thousand one hundred eight');\nINSERT INTO t2 VALUES(23788, 79115, 'seventy-nine thousand one hundred fifteen');\nINSERT INTO t2 VALUES(23789, 88965, 'eighty-eight thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(23790, 80358, 'eighty thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(23791, 41171, 'forty-one thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(23792, 47724, 'forty-seven thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(23793, 93046, 'ninety-three thousand forty-six');\nINSERT INTO t2 VALUES(23794, 19086, 'nineteen thousand eighty-six');\nINSERT INTO t2 VALUES(23795, 50397, 'fifty thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(23796, 67236, 'sixty-seven thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(23797, 65701, 'sixty-five thousand seven hundred one');\nINSERT INTO t2 VALUES(23798, 26642, 'twenty-six thousand six hundred forty-two');\nINSERT INTO t2 VALUES(23799, 93456, 'ninety-three thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(23800, 49822, 'forty-nine thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(23801, 5731, 'five thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(23802, 88205, 'eighty-eight thousand two hundred five');\nINSERT INTO t2 VALUES(23803, 74105, 'seventy-four thousand one hundred five');\nINSERT INTO t2 VALUES(23804, 29950, 'twenty-nine thousand nine hundred fifty');\nINSERT INTO t2 VALUES(23805, 76624, 'seventy-six thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(23806, 41277, 'forty-one thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(23807, 48675, 'forty-eight thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(23808, 27434, 'twenty-seven thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(23809, 76153, 'seventy-six thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(23810, 55201, 'fifty-five thousand two hundred one');\nINSERT INTO t2 VALUES(23811, 89808, 'eighty-nine thousand eight hundred eight');\nINSERT INTO t2 VALUES(23812, 24751, 'twenty-four thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(23813, 44322, 'forty-four thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(23814, 47086, 'forty-seven thousand eighty-six');\nINSERT INTO t2 VALUES(23815, 9080, 'nine thousand eighty');\nINSERT INTO t2 VALUES(23816, 33135, 'thirty-three thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(23817, 37551, 'thirty-seven thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(23818, 99455, 'ninety-nine thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(23819, 97054, 'ninety-seven thousand fifty-four');\nINSERT INTO t2 VALUES(23820, 10423, 'ten thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(23821, 77115, 'seventy-seven thousand one hundred fifteen');\nINSERT INTO t2 VALUES(23822, 18406, 'eighteen thousand four hundred six');\nINSERT INTO t2 VALUES(23823, 46891, 'forty-six thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(23824, 37070, 'thirty-seven thousand seventy');\nINSERT INTO t2 VALUES(23825, 77815, 'seventy-seven thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(23826, 37058, 'thirty-seven thousand fifty-eight');\nINSERT INTO t2 VALUES(23827, 73536, 'seventy-three thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(23828, 55398, 'fifty-five thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(23829, 55589, 'fifty-five thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(23830, 44875, 'forty-four thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(23831, 70243, 'seventy thousand two hundred forty-three');\nINSERT INTO t2 VALUES(23832, 10259, 'ten thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(23833, 28583, 'twenty-eight thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(23834, 90768, 'ninety thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(23835, 79845, 'seventy-nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(23836, 20397, 'twenty thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(23837, 85843, 'eighty-five thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(23838, 68367, 'sixty-eight thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(23839, 73404, 'seventy-three thousand four hundred four');\nINSERT INTO t2 VALUES(23840, 77669, 'seventy-seven thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(23841, 74037, 'seventy-four thousand thirty-seven');\nINSERT INTO t2 VALUES(23842, 95613, 'ninety-five thousand six hundred thirteen');\nINSERT INTO t2 VALUES(23843, 60628, 'sixty thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(23844, 89118, 'eighty-nine thousand one hundred eighteen');\nINSERT INTO t2 VALUES(23845, 12213, 'twelve thousand two hundred thirteen');\nINSERT INTO t2 VALUES(23846, 54328, 'fifty-four thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(23847, 8805, 'eight thousand eight hundred five');\nINSERT INTO t2 VALUES(23848, 31462, 'thirty-one thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(23849, 22472, 'twenty-two thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(23850, 11237, 'eleven thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(23851, 77377, 'seventy-seven thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(23852, 97709, 'ninety-seven thousand seven hundred nine');\nINSERT INTO t2 VALUES(23853, 98556, 'ninety-eight thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(23854, 37873, 'thirty-seven thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(23855, 79324, 'seventy-nine thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(23856, 36012, 'thirty-six thousand twelve');\nINSERT INTO t2 VALUES(23857, 30384, 'thirty thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(23858, 43741, 'forty-three thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(23859, 71836, 'seventy-one thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(23860, 93253, 'ninety-three thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(23861, 38824, 'thirty-eight thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(23862, 4537, 'four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(23863, 85654, 'eighty-five thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(23864, 89774, 'eighty-nine thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(23865, 47705, 'forty-seven thousand seven hundred five');\nINSERT INTO t2 VALUES(23866, 34959, 'thirty-four thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(23867, 53620, 'fifty-three thousand six hundred twenty');\nINSERT INTO t2 VALUES(23868, 32001, 'thirty-two thousand one');\nINSERT INTO t2 VALUES(23869, 84323, 'eighty-four thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(23870, 61540, 'sixty-one thousand five hundred forty');\nINSERT INTO t2 VALUES(23871, 45254, 'forty-five thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(23872, 85752, 'eighty-five thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(23873, 7583, 'seven thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(23874, 8400, 'eight thousand four hundred');\nINSERT INTO t2 VALUES(23875, 2441, 'two thousand four hundred forty-one');\nINSERT INTO t2 VALUES(23876, 71972, 'seventy-one thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(23877, 74633, 'seventy-four thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(23878, 78982, 'seventy-eight thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(23879, 62875, 'sixty-two thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(23880, 69705, 'sixty-nine thousand seven hundred five');\nINSERT INTO t2 VALUES(23881, 81730, 'eighty-one thousand seven hundred thirty');\nINSERT INTO t2 VALUES(23882, 78643, 'seventy-eight thousand six hundred forty-three');\nINSERT INTO t2 VALUES(23883, 4368, 'four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(23884, 62441, 'sixty-two thousand four hundred forty-one');\nINSERT INTO t2 VALUES(23885, 93748, 'ninety-three thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(23886, 8313, 'eight thousand three hundred thirteen');\nINSERT INTO t2 VALUES(23887, 16240, 'sixteen thousand two hundred forty');\nINSERT INTO t2 VALUES(23888, 33098, 'thirty-three thousand ninety-eight');\nINSERT INTO t2 VALUES(23889, 44936, 'forty-four thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(23890, 99663, 'ninety-nine thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(23891, 18012, 'eighteen thousand twelve');\nINSERT INTO t2 VALUES(23892, 2126, 'two thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(23893, 34137, 'thirty-four thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(23894, 47858, 'forty-seven thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(23895, 43400, 'forty-three thousand four hundred');\nINSERT INTO t2 VALUES(23896, 95687, 'ninety-five thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(23897, 11424, 'eleven thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(23898, 32501, 'thirty-two thousand five hundred one');\nINSERT INTO t2 VALUES(23899, 15068, 'fifteen thousand sixty-eight');\nINSERT INTO t2 VALUES(23900, 43538, 'forty-three thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(23901, 75215, 'seventy-five thousand two hundred fifteen');\nINSERT INTO t2 VALUES(23902, 99920, 'ninety-nine thousand nine hundred twenty');\nINSERT INTO t2 VALUES(23903, 33715, 'thirty-three thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(23904, 71047, 'seventy-one thousand forty-seven');\nINSERT INTO t2 VALUES(23905, 54671, 'fifty-four thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(23906, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t2 VALUES(23907, 51155, 'fifty-one thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(23908, 28290, 'twenty-eight thousand two hundred ninety');\nINSERT INTO t2 VALUES(23909, 3813, 'three thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(23910, 29555, 'twenty-nine thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(23911, 13750, 'thirteen thousand seven hundred fifty');\nINSERT INTO t2 VALUES(23912, 78402, 'seventy-eight thousand four hundred two');\nINSERT INTO t2 VALUES(23913, 18915, 'eighteen thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(23914, 74564, 'seventy-four thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(23915, 1068, 'one thousand sixty-eight');\nINSERT INTO t2 VALUES(23916, 14806, 'fourteen thousand eight hundred six');\nINSERT INTO t2 VALUES(23917, 39258, 'thirty-nine thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(23918, 13523, 'thirteen thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(23919, 9274, 'nine thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(23920, 47402, 'forty-seven thousand four hundred two');\nINSERT INTO t2 VALUES(23921, 29944, 'twenty-nine thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(23922, 13412, 'thirteen thousand four hundred twelve');\nINSERT INTO t2 VALUES(23923, 15767, 'fifteen thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(23924, 15289, 'fifteen thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(23925, 12746, 'twelve thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(23926, 65665, 'sixty-five thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(23927, 84502, 'eighty-four thousand five hundred two');\nINSERT INTO t2 VALUES(23928, 30790, 'thirty thousand seven hundred ninety');\nINSERT INTO t2 VALUES(23929, 13593, 'thirteen thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(23930, 55911, 'fifty-five thousand nine hundred eleven');\nINSERT INTO t2 VALUES(23931, 73745, 'seventy-three thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(23932, 71056, 'seventy-one thousand fifty-six');\nINSERT INTO t2 VALUES(23933, 89113, 'eighty-nine thousand one hundred thirteen');\nINSERT INTO t2 VALUES(23934, 34897, 'thirty-four thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(23935, 47143, 'forty-seven thousand one hundred forty-three');\nINSERT INTO t2 VALUES(23936, 19646, 'nineteen thousand six hundred forty-six');\nINSERT INTO t2 VALUES(23937, 86543, 'eighty-six thousand five hundred forty-three');\nINSERT INTO t2 VALUES(23938, 98090, 'ninety-eight thousand ninety');\nINSERT INTO t2 VALUES(23939, 10449, 'ten thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(23940, 57180, 'fifty-seven thousand one hundred eighty');\nINSERT INTO t2 VALUES(23941, 71321, 'seventy-one thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(23942, 62916, 'sixty-two thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(23943, 40159, 'forty thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(23944, 50990, 'fifty thousand nine hundred ninety');\nINSERT INTO t2 VALUES(23945, 87906, 'eighty-seven thousand nine hundred six');\nINSERT INTO t2 VALUES(23946, 8150, 'eight thousand one hundred fifty');\nINSERT INTO t2 VALUES(23947, 96339, 'ninety-six thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(23948, 41842, 'forty-one thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(23949, 18126, 'eighteen thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(23950, 63175, 'sixty-three thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(23951, 30323, 'thirty thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(23952, 84341, 'eighty-four thousand three hundred forty-one');\nINSERT INTO t2 VALUES(23953, 781, 'seven hundred eighty-one');\nINSERT INTO t2 VALUES(23954, 99163, 'ninety-nine thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(23955, 8747, 'eight thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(23956, 7136, 'seven thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(23957, 42556, 'forty-two thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(23958, 72938, 'seventy-two thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(23959, 83886, 'eighty-three thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(23960, 82803, 'eighty-two thousand eight hundred three');\nINSERT INTO t2 VALUES(23961, 95233, 'ninety-five thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(23962, 39371, 'thirty-nine thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(23963, 11452, 'eleven thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(23964, 63603, 'sixty-three thousand six hundred three');\nINSERT INTO t2 VALUES(23965, 19755, 'nineteen thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(23966, 9145, 'nine thousand one hundred forty-five');\nINSERT INTO t2 VALUES(23967, 41599, 'forty-one thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(23968, 97, 'ninety-seven');\nINSERT INTO t2 VALUES(23969, 98513, 'ninety-eight thousand five hundred thirteen');\nINSERT INTO t2 VALUES(23970, 27101, 'twenty-seven thousand one hundred one');\nINSERT INTO t2 VALUES(23971, 16528, 'sixteen thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(23972, 25107, 'twenty-five thousand one hundred seven');\nINSERT INTO t2 VALUES(23973, 17038, 'seventeen thousand thirty-eight');\nINSERT INTO t2 VALUES(23974, 27807, 'twenty-seven thousand eight hundred seven');\nINSERT INTO t2 VALUES(23975, 10454, 'ten thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(23976, 12683, 'twelve thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(23977, 10772, 'ten thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(23978, 4846, 'four thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(23979, 64427, 'sixty-four thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(23980, 6697, 'six thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(23981, 18765, 'eighteen thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(23982, 61411, 'sixty-one thousand four hundred eleven');\nINSERT INTO t2 VALUES(23983, 85951, 'eighty-five thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(23984, 14781, 'fourteen thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(23985, 85989, 'eighty-five thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(23986, 81858, 'eighty-one thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(23987, 47016, 'forty-seven thousand sixteen');\nINSERT INTO t2 VALUES(23988, 24500, 'twenty-four thousand five hundred');\nINSERT INTO t2 VALUES(23989, 12325, 'twelve thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(23990, 44041, 'forty-four thousand forty-one');\nINSERT INTO t2 VALUES(23991, 91952, 'ninety-one thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(23992, 56585, 'fifty-six thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(23993, 25156, 'twenty-five thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(23994, 77625, 'seventy-seven thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(23995, 41727, 'forty-one thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(23996, 92857, 'ninety-two thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(23997, 31540, 'thirty-one thousand five hundred forty');\nINSERT INTO t2 VALUES(23998, 40398, 'forty thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(23999, 79991, 'seventy-nine thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(24000, 49668, 'forty-nine thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(24001, 99196, 'ninety-nine thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(24002, 58453, 'fifty-eight thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(24003, 31182, 'thirty-one thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(24004, 84959, 'eighty-four thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(24005, 22412, 'twenty-two thousand four hundred twelve');\nINSERT INTO t2 VALUES(24006, 66721, 'sixty-six thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(24007, 88726, 'eighty-eight thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(24008, 17102, 'seventeen thousand one hundred two');\nINSERT INTO t2 VALUES(24009, 96223, 'ninety-six thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(24010, 41725, 'forty-one thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(24011, 62632, 'sixty-two thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(24012, 98008, 'ninety-eight thousand eight');\nINSERT INTO t2 VALUES(24013, 54966, 'fifty-four thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(24014, 56803, 'fifty-six thousand eight hundred three');\nINSERT INTO t2 VALUES(24015, 84704, 'eighty-four thousand seven hundred four');\nINSERT INTO t2 VALUES(24016, 54093, 'fifty-four thousand ninety-three');\nINSERT INTO t2 VALUES(24017, 67014, 'sixty-seven thousand fourteen');\nINSERT INTO t2 VALUES(24018, 10579, 'ten thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(24019, 1736, 'one thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(24020, 66754, 'sixty-six thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(24021, 30320, 'thirty thousand three hundred twenty');\nINSERT INTO t2 VALUES(24022, 42044, 'forty-two thousand forty-four');\nINSERT INTO t2 VALUES(24023, 40118, 'forty thousand one hundred eighteen');\nINSERT INTO t2 VALUES(24024, 52339, 'fifty-two thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(24025, 92978, 'ninety-two thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(24026, 56799, 'fifty-six thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(24027, 23142, 'twenty-three thousand one hundred forty-two');\nINSERT INTO t2 VALUES(24028, 75365, 'seventy-five thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(24029, 95497, 'ninety-five thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(24030, 72464, 'seventy-two thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(24031, 80634, 'eighty thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(24032, 68600, 'sixty-eight thousand six hundred');\nINSERT INTO t2 VALUES(24033, 3141, 'three thousand one hundred forty-one');\nINSERT INTO t2 VALUES(24034, 1116, 'one thousand one hundred sixteen');\nINSERT INTO t2 VALUES(24035, 76879, 'seventy-six thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(24036, 49199, 'forty-nine thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(24037, 86649, 'eighty-six thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(24038, 67605, 'sixty-seven thousand six hundred five');\nINSERT INTO t2 VALUES(24039, 26213, 'twenty-six thousand two hundred thirteen');\nINSERT INTO t2 VALUES(24040, 28929, 'twenty-eight thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(24041, 28763, 'twenty-eight thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(24042, 56313, 'fifty-six thousand three hundred thirteen');\nINSERT INTO t2 VALUES(24043, 20074, 'twenty thousand seventy-four');\nINSERT INTO t2 VALUES(24044, 95091, 'ninety-five thousand ninety-one');\nINSERT INTO t2 VALUES(24045, 76766, 'seventy-six thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(24046, 98367, 'ninety-eight thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(24047, 95804, 'ninety-five thousand eight hundred four');\nINSERT INTO t2 VALUES(24048, 11446, 'eleven thousand four hundred forty-six');\nINSERT INTO t2 VALUES(24049, 57905, 'fifty-seven thousand nine hundred five');\nINSERT INTO t2 VALUES(24050, 76037, 'seventy-six thousand thirty-seven');\nINSERT INTO t2 VALUES(24051, 64054, 'sixty-four thousand fifty-four');\nINSERT INTO t2 VALUES(24052, 20583, 'twenty thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(24053, 30335, 'thirty thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(24054, 60913, 'sixty thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(24055, 42269, 'forty-two thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(24056, 10312, 'ten thousand three hundred twelve');\nINSERT INTO t2 VALUES(24057, 61075, 'sixty-one thousand seventy-five');\nINSERT INTO t2 VALUES(24058, 14602, 'fourteen thousand six hundred two');\nINSERT INTO t2 VALUES(24059, 18859, 'eighteen thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(24060, 98156, 'ninety-eight thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(24061, 41339, 'forty-one thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(24062, 46192, 'forty-six thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(24063, 26327, 'twenty-six thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(24064, 63472, 'sixty-three thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(24065, 97835, 'ninety-seven thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(24066, 19134, 'nineteen thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(24067, 54564, 'fifty-four thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(24068, 46890, 'forty-six thousand eight hundred ninety');\nINSERT INTO t2 VALUES(24069, 7486, 'seven thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(24070, 61885, 'sixty-one thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(24071, 67275, 'sixty-seven thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(24072, 17977, 'seventeen thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(24073, 44689, 'forty-four thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(24074, 52623, 'fifty-two thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(24075, 45737, 'forty-five thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(24076, 15573, 'fifteen thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(24077, 97635, 'ninety-seven thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(24078, 23614, 'twenty-three thousand six hundred fourteen');\nINSERT INTO t2 VALUES(24079, 45067, 'forty-five thousand sixty-seven');\nINSERT INTO t2 VALUES(24080, 67746, 'sixty-seven thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(24081, 95903, 'ninety-five thousand nine hundred three');\nINSERT INTO t2 VALUES(24082, 54242, 'fifty-four thousand two hundred forty-two');\nINSERT INTO t2 VALUES(24083, 79345, 'seventy-nine thousand three hundred forty-five');\nINSERT INTO t2 VALUES(24084, 12413, 'twelve thousand four hundred thirteen');\nINSERT INTO t2 VALUES(24085, 21764, 'twenty-one thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(24086, 11980, 'eleven thousand nine hundred eighty');\nINSERT INTO t2 VALUES(24087, 78024, 'seventy-eight thousand twenty-four');\nINSERT INTO t2 VALUES(24088, 65304, 'sixty-five thousand three hundred four');\nINSERT INTO t2 VALUES(24089, 16669, 'sixteen thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(24090, 67433, 'sixty-seven thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(24091, 13401, 'thirteen thousand four hundred one');\nINSERT INTO t2 VALUES(24092, 5405, 'five thousand four hundred five');\nINSERT INTO t2 VALUES(24093, 63001, 'sixty-three thousand one');\nINSERT INTO t2 VALUES(24094, 4887, 'four thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(24095, 2516, 'two thousand five hundred sixteen');\nINSERT INTO t2 VALUES(24096, 87710, 'eighty-seven thousand seven hundred ten');\nINSERT INTO t2 VALUES(24097, 58108, 'fifty-eight thousand one hundred eight');\nINSERT INTO t2 VALUES(24098, 53071, 'fifty-three thousand seventy-one');\nINSERT INTO t2 VALUES(24099, 39872, 'thirty-nine thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(24100, 30304, 'thirty thousand three hundred four');\nINSERT INTO t2 VALUES(24101, 54130, 'fifty-four thousand one hundred thirty');\nINSERT INTO t2 VALUES(24102, 64790, 'sixty-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(24103, 16348, 'sixteen thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(24104, 97914, 'ninety-seven thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(24105, 58480, 'fifty-eight thousand four hundred eighty');\nINSERT INTO t2 VALUES(24106, 36315, 'thirty-six thousand three hundred fifteen');\nINSERT INTO t2 VALUES(24107, 5837, 'five thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(24108, 17645, 'seventeen thousand six hundred forty-five');\nINSERT INTO t2 VALUES(24109, 61482, 'sixty-one thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(24110, 27120, 'twenty-seven thousand one hundred twenty');\nINSERT INTO t2 VALUES(24111, 192, 'one hundred ninety-two');\nINSERT INTO t2 VALUES(24112, 16876, 'sixteen thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(24113, 80002, 'eighty thousand two');\nINSERT INTO t2 VALUES(24114, 94040, 'ninety-four thousand forty');\nINSERT INTO t2 VALUES(24115, 52659, 'fifty-two thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(24116, 84835, 'eighty-four thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(24117, 75678, 'seventy-five thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(24118, 2024, 'two thousand twenty-four');\nINSERT INTO t2 VALUES(24119, 16178, 'sixteen thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(24120, 17149, 'seventeen thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(24121, 57359, 'fifty-seven thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(24122, 67859, 'sixty-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(24123, 73443, 'seventy-three thousand four hundred forty-three');\nINSERT INTO t2 VALUES(24124, 49342, 'forty-nine thousand three hundred forty-two');\nINSERT INTO t2 VALUES(24125, 16399, 'sixteen thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(24126, 79129, 'seventy-nine thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(24127, 39093, 'thirty-nine thousand ninety-three');\nINSERT INTO t2 VALUES(24128, 70342, 'seventy thousand three hundred forty-two');\nINSERT INTO t2 VALUES(24129, 14116, 'fourteen thousand one hundred sixteen');\nINSERT INTO t2 VALUES(24130, 82288, 'eighty-two thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(24131, 39476, 'thirty-nine thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(24132, 56447, 'fifty-six thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(24133, 69487, 'sixty-nine thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(24134, 29744, 'twenty-nine thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(24135, 93585, 'ninety-three thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(24136, 99044, 'ninety-nine thousand forty-four');\nINSERT INTO t2 VALUES(24137, 66480, 'sixty-six thousand four hundred eighty');\nINSERT INTO t2 VALUES(24138, 15549, 'fifteen thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(24139, 72299, 'seventy-two thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(24140, 83470, 'eighty-three thousand four hundred seventy');\nINSERT INTO t2 VALUES(24141, 48391, 'forty-eight thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(24142, 25162, 'twenty-five thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(24143, 88696, 'eighty-eight thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(24144, 64798, 'sixty-four thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(24145, 11920, 'eleven thousand nine hundred twenty');\nINSERT INTO t2 VALUES(24146, 26467, 'twenty-six thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(24147, 74197, 'seventy-four thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(24148, 4957, 'four thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(24149, 22323, 'twenty-two thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(24150, 52478, 'fifty-two thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(24151, 74664, 'seventy-four thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(24152, 89026, 'eighty-nine thousand twenty-six');\nINSERT INTO t2 VALUES(24153, 21882, 'twenty-one thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(24154, 69055, 'sixty-nine thousand fifty-five');\nINSERT INTO t2 VALUES(24155, 89039, 'eighty-nine thousand thirty-nine');\nINSERT INTO t2 VALUES(24156, 12949, 'twelve thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(24157, 83603, 'eighty-three thousand six hundred three');\nINSERT INTO t2 VALUES(24158, 20332, 'twenty thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(24159, 24206, 'twenty-four thousand two hundred six');\nINSERT INTO t2 VALUES(24160, 75671, 'seventy-five thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(24161, 39010, 'thirty-nine thousand ten');\nINSERT INTO t2 VALUES(24162, 91517, 'ninety-one thousand five hundred seventeen');\nINSERT INTO t2 VALUES(24163, 78899, 'seventy-eight thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(24164, 36955, 'thirty-six thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(24165, 68124, 'sixty-eight thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(24166, 50597, 'fifty thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(24167, 94731, 'ninety-four thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(24168, 31499, 'thirty-one thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(24169, 32475, 'thirty-two thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(24170, 62745, 'sixty-two thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(24171, 88692, 'eighty-eight thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(24172, 63624, 'sixty-three thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(24173, 67623, 'sixty-seven thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(24174, 74032, 'seventy-four thousand thirty-two');\nINSERT INTO t2 VALUES(24175, 83391, 'eighty-three thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(24176, 40650, 'forty thousand six hundred fifty');\nINSERT INTO t2 VALUES(24177, 76408, 'seventy-six thousand four hundred eight');\nINSERT INTO t2 VALUES(24178, 11917, 'eleven thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(24179, 63262, 'sixty-three thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(24180, 74605, 'seventy-four thousand six hundred five');\nINSERT INTO t2 VALUES(24181, 55540, 'fifty-five thousand five hundred forty');\nINSERT INTO t2 VALUES(24182, 23777, 'twenty-three thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(24183, 89059, 'eighty-nine thousand fifty-nine');\nINSERT INTO t2 VALUES(24184, 90176, 'ninety thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(24185, 82320, 'eighty-two thousand three hundred twenty');\nINSERT INTO t2 VALUES(24186, 62842, 'sixty-two thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(24187, 55749, 'fifty-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(24188, 35982, 'thirty-five thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(24189, 53634, 'fifty-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(24190, 94544, 'ninety-four thousand five hundred forty-four');\nINSERT INTO t2 VALUES(24191, 9898, 'nine thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(24192, 81233, 'eighty-one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(24193, 81822, 'eighty-one thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(24194, 8194, 'eight thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(24195, 85955, 'eighty-five thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(24196, 95216, 'ninety-five thousand two hundred sixteen');\nINSERT INTO t2 VALUES(24197, 12572, 'twelve thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(24198, 51556, 'fifty-one thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(24199, 22048, 'twenty-two thousand forty-eight');\nINSERT INTO t2 VALUES(24200, 3736, 'three thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(24201, 22922, 'twenty-two thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(24202, 27606, 'twenty-seven thousand six hundred six');\nINSERT INTO t2 VALUES(24203, 58858, 'fifty-eight thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(24204, 35903, 'thirty-five thousand nine hundred three');\nINSERT INTO t2 VALUES(24205, 70493, 'seventy thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(24206, 79557, 'seventy-nine thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(24207, 27052, 'twenty-seven thousand fifty-two');\nINSERT INTO t2 VALUES(24208, 54827, 'fifty-four thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(24209, 65229, 'sixty-five thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(24210, 6719, 'six thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(24211, 99976, 'ninety-nine thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(24212, 53084, 'fifty-three thousand eighty-four');\nINSERT INTO t2 VALUES(24213, 69262, 'sixty-nine thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(24214, 4302, 'four thousand three hundred two');\nINSERT INTO t2 VALUES(24215, 1578, 'one thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(24216, 30756, 'thirty thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(24217, 67484, 'sixty-seven thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(24218, 77330, 'seventy-seven thousand three hundred thirty');\nINSERT INTO t2 VALUES(24219, 84270, 'eighty-four thousand two hundred seventy');\nINSERT INTO t2 VALUES(24220, 58522, 'fifty-eight thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(24221, 24051, 'twenty-four thousand fifty-one');\nINSERT INTO t2 VALUES(24222, 15310, 'fifteen thousand three hundred ten');\nINSERT INTO t2 VALUES(24223, 98560, 'ninety-eight thousand five hundred sixty');\nINSERT INTO t2 VALUES(24224, 90291, 'ninety thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(24225, 64876, 'sixty-four thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(24226, 14106, 'fourteen thousand one hundred six');\nINSERT INTO t2 VALUES(24227, 52497, 'fifty-two thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(24228, 45679, 'forty-five thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(24229, 44696, 'forty-four thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(24230, 28523, 'twenty-eight thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(24231, 75415, 'seventy-five thousand four hundred fifteen');\nINSERT INTO t2 VALUES(24232, 43067, 'forty-three thousand sixty-seven');\nINSERT INTO t2 VALUES(24233, 42327, 'forty-two thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(24234, 69570, 'sixty-nine thousand five hundred seventy');\nINSERT INTO t2 VALUES(24235, 61365, 'sixty-one thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(24236, 13113, 'thirteen thousand one hundred thirteen');\nINSERT INTO t2 VALUES(24237, 37429, 'thirty-seven thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(24238, 27050, 'twenty-seven thousand fifty');\nINSERT INTO t2 VALUES(24239, 70063, 'seventy thousand sixty-three');\nINSERT INTO t2 VALUES(24240, 8777, 'eight thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(24241, 38764, 'thirty-eight thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(24242, 84815, 'eighty-four thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(24243, 44912, 'forty-four thousand nine hundred twelve');\nINSERT INTO t2 VALUES(24244, 76435, 'seventy-six thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(24245, 71544, 'seventy-one thousand five hundred forty-four');\nINSERT INTO t2 VALUES(24246, 57188, 'fifty-seven thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(24247, 40211, 'forty thousand two hundred eleven');\nINSERT INTO t2 VALUES(24248, 54889, 'fifty-four thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(24249, 89108, 'eighty-nine thousand one hundred eight');\nINSERT INTO t2 VALUES(24250, 79365, 'seventy-nine thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(24251, 16951, 'sixteen thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(24252, 94837, 'ninety-four thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(24253, 44878, 'forty-four thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(24254, 20616, 'twenty thousand six hundred sixteen');\nINSERT INTO t2 VALUES(24255, 45, 'forty-five');\nINSERT INTO t2 VALUES(24256, 10067, 'ten thousand sixty-seven');\nINSERT INTO t2 VALUES(24257, 85161, 'eighty-five thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(24258, 43286, 'forty-three thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(24259, 24924, 'twenty-four thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(24260, 40625, 'forty thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(24261, 98159, 'ninety-eight thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(24262, 15511, 'fifteen thousand five hundred eleven');\nINSERT INTO t2 VALUES(24263, 5203, 'five thousand two hundred three');\nINSERT INTO t2 VALUES(24264, 47281, 'forty-seven thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(24265, 67079, 'sixty-seven thousand seventy-nine');\nINSERT INTO t2 VALUES(24266, 44221, 'forty-four thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(24267, 396, 'three hundred ninety-six');\nINSERT INTO t2 VALUES(24268, 89886, 'eighty-nine thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(24269, 42051, 'forty-two thousand fifty-one');\nINSERT INTO t2 VALUES(24270, 5553, 'five thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(24271, 77189, 'seventy-seven thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(24272, 69762, 'sixty-nine thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(24273, 41521, 'forty-one thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(24274, 33752, 'thirty-three thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(24275, 23258, 'twenty-three thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(24276, 8996, 'eight thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(24277, 25068, 'twenty-five thousand sixty-eight');\nINSERT INTO t2 VALUES(24278, 78685, 'seventy-eight thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(24279, 85962, 'eighty-five thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(24280, 28129, 'twenty-eight thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(24281, 58106, 'fifty-eight thousand one hundred six');\nINSERT INTO t2 VALUES(24282, 62554, 'sixty-two thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(24283, 7769, 'seven thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(24284, 84373, 'eighty-four thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(24285, 83290, 'eighty-three thousand two hundred ninety');\nINSERT INTO t2 VALUES(24286, 31042, 'thirty-one thousand forty-two');\nINSERT INTO t2 VALUES(24287, 25949, 'twenty-five thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(24288, 82656, 'eighty-two thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(24289, 35465, 'thirty-five thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(24290, 43763, 'forty-three thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(24291, 69291, 'sixty-nine thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(24292, 66388, 'sixty-six thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(24293, 4469, 'four thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(24294, 9967, 'nine thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(24295, 52222, 'fifty-two thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(24296, 16544, 'sixteen thousand five hundred forty-four');\nINSERT INTO t2 VALUES(24297, 99931, 'ninety-nine thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(24298, 24789, 'twenty-four thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(24299, 44188, 'forty-four thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(24300, 11213, 'eleven thousand two hundred thirteen');\nINSERT INTO t2 VALUES(24301, 89061, 'eighty-nine thousand sixty-one');\nINSERT INTO t2 VALUES(24302, 46400, 'forty-six thousand four hundred');\nINSERT INTO t2 VALUES(24303, 57142, 'fifty-seven thousand one hundred forty-two');\nINSERT INTO t2 VALUES(24304, 8960, 'eight thousand nine hundred sixty');\nINSERT INTO t2 VALUES(24305, 95843, 'ninety-five thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(24306, 16392, 'sixteen thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(24307, 84055, 'eighty-four thousand fifty-five');\nINSERT INTO t2 VALUES(24308, 48466, 'forty-eight thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(24309, 80946, 'eighty thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(24310, 1523, 'one thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(24311, 52308, 'fifty-two thousand three hundred eight');\nINSERT INTO t2 VALUES(24312, 12429, 'twelve thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(24313, 84468, 'eighty-four thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(24314, 1480, 'one thousand four hundred eighty');\nINSERT INTO t2 VALUES(24315, 98779, 'ninety-eight thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(24316, 52356, 'fifty-two thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(24317, 79847, 'seventy-nine thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(24318, 87210, 'eighty-seven thousand two hundred ten');\nINSERT INTO t2 VALUES(24319, 33181, 'thirty-three thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(24320, 49379, 'forty-nine thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(24321, 1534, 'one thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(24322, 92935, 'ninety-two thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(24323, 6889, 'six thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(24324, 85100, 'eighty-five thousand one hundred');\nINSERT INTO t2 VALUES(24325, 14095, 'fourteen thousand ninety-five');\nINSERT INTO t2 VALUES(24326, 80989, 'eighty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(24327, 25772, 'twenty-five thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(24328, 17776, 'seventeen thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(24329, 53057, 'fifty-three thousand fifty-seven');\nINSERT INTO t2 VALUES(24330, 49253, 'forty-nine thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(24331, 85187, 'eighty-five thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(24332, 13337, 'thirteen thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(24333, 15096, 'fifteen thousand ninety-six');\nINSERT INTO t2 VALUES(24334, 8400, 'eight thousand four hundred');\nINSERT INTO t2 VALUES(24335, 27312, 'twenty-seven thousand three hundred twelve');\nINSERT INTO t2 VALUES(24336, 17024, 'seventeen thousand twenty-four');\nINSERT INTO t2 VALUES(24337, 95728, 'ninety-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(24338, 40881, 'forty thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(24339, 6300, 'six thousand three hundred');\nINSERT INTO t2 VALUES(24340, 38671, 'thirty-eight thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(24341, 60007, 'sixty thousand seven');\nINSERT INTO t2 VALUES(24342, 68053, 'sixty-eight thousand fifty-three');\nINSERT INTO t2 VALUES(24343, 6597, 'six thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(24344, 37402, 'thirty-seven thousand four hundred two');\nINSERT INTO t2 VALUES(24345, 57022, 'fifty-seven thousand twenty-two');\nINSERT INTO t2 VALUES(24346, 96220, 'ninety-six thousand two hundred twenty');\nINSERT INTO t2 VALUES(24347, 49453, 'forty-nine thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(24348, 83046, 'eighty-three thousand forty-six');\nINSERT INTO t2 VALUES(24349, 80444, 'eighty thousand four hundred forty-four');\nINSERT INTO t2 VALUES(24350, 19560, 'nineteen thousand five hundred sixty');\nINSERT INTO t2 VALUES(24351, 47100, 'forty-seven thousand one hundred');\nINSERT INTO t2 VALUES(24352, 7084, 'seven thousand eighty-four');\nINSERT INTO t2 VALUES(24353, 66076, 'sixty-six thousand seventy-six');\nINSERT INTO t2 VALUES(24354, 32814, 'thirty-two thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(24355, 73585, 'seventy-three thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(24356, 96101, 'ninety-six thousand one hundred one');\nINSERT INTO t2 VALUES(24357, 72676, 'seventy-two thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(24358, 51006, 'fifty-one thousand six');\nINSERT INTO t2 VALUES(24359, 74725, 'seventy-four thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(24360, 32659, 'thirty-two thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(24361, 64731, 'sixty-four thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(24362, 63401, 'sixty-three thousand four hundred one');\nINSERT INTO t2 VALUES(24363, 32426, 'thirty-two thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(24364, 53858, 'fifty-three thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(24365, 96070, 'ninety-six thousand seventy');\nINSERT INTO t2 VALUES(24366, 98435, 'ninety-eight thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(24367, 42315, 'forty-two thousand three hundred fifteen');\nINSERT INTO t2 VALUES(24368, 14201, 'fourteen thousand two hundred one');\nINSERT INTO t2 VALUES(24369, 69602, 'sixty-nine thousand six hundred two');\nINSERT INTO t2 VALUES(24370, 6138, 'six thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(24371, 1191, 'one thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(24372, 36133, 'thirty-six thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(24373, 65074, 'sixty-five thousand seventy-four');\nINSERT INTO t2 VALUES(24374, 74922, 'seventy-four thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(24375, 10032, 'ten thousand thirty-two');\nINSERT INTO t2 VALUES(24376, 73137, 'seventy-three thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(24377, 49951, 'forty-nine thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(24378, 56493, 'fifty-six thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(24379, 43000, 'forty-three thousand');\nINSERT INTO t2 VALUES(24380, 6836, 'six thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(24381, 50960, 'fifty thousand nine hundred sixty');\nINSERT INTO t2 VALUES(24382, 14348, 'fourteen thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(24383, 8185, 'eight thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(24384, 37227, 'thirty-seven thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(24385, 30869, 'thirty thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(24386, 63758, 'sixty-three thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(24387, 53354, 'fifty-three thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(24388, 9886, 'nine thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(24389, 30665, 'thirty thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(24390, 10279, 'ten thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(24391, 48870, 'forty-eight thousand eight hundred seventy');\nINSERT INTO t2 VALUES(24392, 92268, 'ninety-two thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(24393, 25625, 'twenty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(24394, 34199, 'thirty-four thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(24395, 99109, 'ninety-nine thousand one hundred nine');\nINSERT INTO t2 VALUES(24396, 60863, 'sixty thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(24397, 94067, 'ninety-four thousand sixty-seven');\nINSERT INTO t2 VALUES(24398, 44784, 'forty-four thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(24399, 19092, 'nineteen thousand ninety-two');\nINSERT INTO t2 VALUES(24400, 73849, 'seventy-three thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(24401, 71051, 'seventy-one thousand fifty-one');\nINSERT INTO t2 VALUES(24402, 58208, 'fifty-eight thousand two hundred eight');\nINSERT INTO t2 VALUES(24403, 24007, 'twenty-four thousand seven');\nINSERT INTO t2 VALUES(24404, 53808, 'fifty-three thousand eight hundred eight');\nINSERT INTO t2 VALUES(24405, 74649, 'seventy-four thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(24406, 5863, 'five thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(24407, 11221, 'eleven thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(24408, 33922, 'thirty-three thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(24409, 46076, 'forty-six thousand seventy-six');\nINSERT INTO t2 VALUES(24410, 50449, 'fifty thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(24411, 90879, 'ninety thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(24412, 35993, 'thirty-five thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(24413, 4939, 'four thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(24414, 28145, 'twenty-eight thousand one hundred forty-five');\nINSERT INTO t2 VALUES(24415, 50552, 'fifty thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(24416, 25794, 'twenty-five thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(24417, 19409, 'nineteen thousand four hundred nine');\nINSERT INTO t2 VALUES(24418, 83942, 'eighty-three thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(24419, 34387, 'thirty-four thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(24420, 2252, 'two thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(24421, 61817, 'sixty-one thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(24422, 25013, 'twenty-five thousand thirteen');\nINSERT INTO t2 VALUES(24423, 54212, 'fifty-four thousand two hundred twelve');\nINSERT INTO t2 VALUES(24424, 91790, 'ninety-one thousand seven hundred ninety');\nINSERT INTO t2 VALUES(24425, 16492, 'sixteen thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(24426, 90482, 'ninety thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(24427, 80950, 'eighty thousand nine hundred fifty');\nINSERT INTO t2 VALUES(24428, 25917, 'twenty-five thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(24429, 34888, 'thirty-four thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(24430, 51866, 'fifty-one thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(24431, 44287, 'forty-four thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(24432, 35788, 'thirty-five thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(24433, 16199, 'sixteen thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(24434, 76063, 'seventy-six thousand sixty-three');\nINSERT INTO t2 VALUES(24435, 80881, 'eighty thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(24436, 48534, 'forty-eight thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(24437, 75694, 'seventy-five thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(24438, 83764, 'eighty-three thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(24439, 73316, 'seventy-three thousand three hundred sixteen');\nINSERT INTO t2 VALUES(24440, 40161, 'forty thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(24441, 26042, 'twenty-six thousand forty-two');\nINSERT INTO t2 VALUES(24442, 41177, 'forty-one thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(24443, 31055, 'thirty-one thousand fifty-five');\nINSERT INTO t2 VALUES(24444, 32482, 'thirty-two thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(24445, 55305, 'fifty-five thousand three hundred five');\nINSERT INTO t2 VALUES(24446, 77279, 'seventy-seven thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(24447, 88659, 'eighty-eight thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(24448, 24876, 'twenty-four thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(24449, 32785, 'thirty-two thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(24450, 12269, 'twelve thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(24451, 35916, 'thirty-five thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(24452, 47660, 'forty-seven thousand six hundred sixty');\nINSERT INTO t2 VALUES(24453, 75253, 'seventy-five thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(24454, 61129, 'sixty-one thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(24455, 29439, 'twenty-nine thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(24456, 53333, 'fifty-three thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(24457, 41467, 'forty-one thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(24458, 18416, 'eighteen thousand four hundred sixteen');\nINSERT INTO t2 VALUES(24459, 20291, 'twenty thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(24460, 39835, 'thirty-nine thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(24461, 92051, 'ninety-two thousand fifty-one');\nINSERT INTO t2 VALUES(24462, 64638, 'sixty-four thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(24463, 98651, 'ninety-eight thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(24464, 94009, 'ninety-four thousand nine');\nINSERT INTO t2 VALUES(24465, 37566, 'thirty-seven thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(24466, 81018, 'eighty-one thousand eighteen');\nINSERT INTO t2 VALUES(24467, 32649, 'thirty-two thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(24468, 27737, 'twenty-seven thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(24469, 56198, 'fifty-six thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(24470, 34203, 'thirty-four thousand two hundred three');\nINSERT INTO t2 VALUES(24471, 7344, 'seven thousand three hundred forty-four');\nINSERT INTO t2 VALUES(24472, 45478, 'forty-five thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(24473, 44261, 'forty-four thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(24474, 28519, 'twenty-eight thousand five hundred nineteen');\nINSERT INTO t2 VALUES(24475, 47477, 'forty-seven thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(24476, 42738, 'forty-two thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(24477, 45637, 'forty-five thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(24478, 28370, 'twenty-eight thousand three hundred seventy');\nINSERT INTO t2 VALUES(24479, 89455, 'eighty-nine thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(24480, 83443, 'eighty-three thousand four hundred forty-three');\nINSERT INTO t2 VALUES(24481, 39599, 'thirty-nine thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(24482, 75551, 'seventy-five thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(24483, 11716, 'eleven thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(24484, 28734, 'twenty-eight thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(24485, 43429, 'forty-three thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(24486, 20028, 'twenty thousand twenty-eight');\nINSERT INTO t2 VALUES(24487, 25054, 'twenty-five thousand fifty-four');\nINSERT INTO t2 VALUES(24488, 56472, 'fifty-six thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(24489, 70426, 'seventy thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(24490, 75902, 'seventy-five thousand nine hundred two');\nINSERT INTO t2 VALUES(24491, 832, 'eight hundred thirty-two');\nINSERT INTO t2 VALUES(24492, 44553, 'forty-four thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(24493, 93630, 'ninety-three thousand six hundred thirty');\nINSERT INTO t2 VALUES(24494, 12792, 'twelve thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(24495, 90401, 'ninety thousand four hundred one');\nINSERT INTO t2 VALUES(24496, 81560, 'eighty-one thousand five hundred sixty');\nINSERT INTO t2 VALUES(24497, 27579, 'twenty-seven thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(24498, 47438, 'forty-seven thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(24499, 82993, 'eighty-two thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(24500, 43687, 'forty-three thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(24501, 84802, 'eighty-four thousand eight hundred two');\nINSERT INTO t2 VALUES(24502, 85414, 'eighty-five thousand four hundred fourteen');\nINSERT INTO t2 VALUES(24503, 6204, 'six thousand two hundred four');\nINSERT INTO t2 VALUES(24504, 83767, 'eighty-three thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(24505, 52684, 'fifty-two thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(24506, 49485, 'forty-nine thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(24507, 63100, 'sixty-three thousand one hundred');\nINSERT INTO t2 VALUES(24508, 14052, 'fourteen thousand fifty-two');\nINSERT INTO t2 VALUES(24509, 57318, 'fifty-seven thousand three hundred eighteen');\nINSERT INTO t2 VALUES(24510, 28948, 'twenty-eight thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(24511, 37325, 'thirty-seven thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(24512, 78310, 'seventy-eight thousand three hundred ten');\nINSERT INTO t2 VALUES(24513, 25187, 'twenty-five thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(24514, 13616, 'thirteen thousand six hundred sixteen');\nINSERT INTO t2 VALUES(24515, 51087, 'fifty-one thousand eighty-seven');\nINSERT INTO t2 VALUES(24516, 61227, 'sixty-one thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(24517, 23567, 'twenty-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(24518, 307, 'three hundred seven');\nINSERT INTO t2 VALUES(24519, 5876, 'five thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(24520, 75134, 'seventy-five thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(24521, 55945, 'fifty-five thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(24522, 73035, 'seventy-three thousand thirty-five');\nINSERT INTO t2 VALUES(24523, 48155, 'forty-eight thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(24524, 59826, 'fifty-nine thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(24525, 93451, 'ninety-three thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(24526, 9593, 'nine thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(24527, 38523, 'thirty-eight thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(24528, 501, 'five hundred one');\nINSERT INTO t2 VALUES(24529, 8665, 'eight thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(24530, 57673, 'fifty-seven thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(24531, 50327, 'fifty thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(24532, 46369, 'forty-six thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(24533, 57376, 'fifty-seven thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(24534, 87448, 'eighty-seven thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(24535, 34025, 'thirty-four thousand twenty-five');\nINSERT INTO t2 VALUES(24536, 76046, 'seventy-six thousand forty-six');\nINSERT INTO t2 VALUES(24537, 8668, 'eight thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(24538, 22879, 'twenty-two thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(24539, 10883, 'ten thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(24540, 96877, 'ninety-six thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(24541, 38988, 'thirty-eight thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(24542, 94028, 'ninety-four thousand twenty-eight');\nINSERT INTO t2 VALUES(24543, 32994, 'thirty-two thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(24544, 93475, 'ninety-three thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(24545, 53960, 'fifty-three thousand nine hundred sixty');\nINSERT INTO t2 VALUES(24546, 62273, 'sixty-two thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(24547, 56918, 'fifty-six thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(24548, 31256, 'thirty-one thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(24549, 94391, 'ninety-four thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(24550, 72429, 'seventy-two thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(24551, 42897, 'forty-two thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(24552, 86610, 'eighty-six thousand six hundred ten');\nINSERT INTO t2 VALUES(24553, 58962, 'fifty-eight thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(24554, 36810, 'thirty-six thousand eight hundred ten');\nINSERT INTO t2 VALUES(24555, 78103, 'seventy-eight thousand one hundred three');\nINSERT INTO t2 VALUES(24556, 64075, 'sixty-four thousand seventy-five');\nINSERT INTO t2 VALUES(24557, 23461, 'twenty-three thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(24558, 78594, 'seventy-eight thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(24559, 436, 'four hundred thirty-six');\nINSERT INTO t2 VALUES(24560, 41596, 'forty-one thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(24561, 61381, 'sixty-one thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(24562, 45659, 'forty-five thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(24563, 57528, 'fifty-seven thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(24564, 32804, 'thirty-two thousand eight hundred four');\nINSERT INTO t2 VALUES(24565, 89470, 'eighty-nine thousand four hundred seventy');\nINSERT INTO t2 VALUES(24566, 33929, 'thirty-three thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(24567, 81561, 'eighty-one thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(24568, 17849, 'seventeen thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(24569, 43292, 'forty-three thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(24570, 14937, 'fourteen thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(24571, 19044, 'nineteen thousand forty-four');\nINSERT INTO t2 VALUES(24572, 41190, 'forty-one thousand one hundred ninety');\nINSERT INTO t2 VALUES(24573, 72612, 'seventy-two thousand six hundred twelve');\nINSERT INTO t2 VALUES(24574, 33185, 'thirty-three thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(24575, 17367, 'seventeen thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(24576, 38761, 'thirty-eight thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(24577, 6943, 'six thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(24578, 29988, 'twenty-nine thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(24579, 23996, 'twenty-three thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(24580, 3296, 'three thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(24581, 27027, 'twenty-seven thousand twenty-seven');\nINSERT INTO t2 VALUES(24582, 89611, 'eighty-nine thousand six hundred eleven');\nINSERT INTO t2 VALUES(24583, 91368, 'ninety-one thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(24584, 49556, 'forty-nine thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(24585, 10891, 'ten thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(24586, 53396, 'fifty-three thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(24587, 94901, 'ninety-four thousand nine hundred one');\nINSERT INTO t2 VALUES(24588, 41428, 'forty-one thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(24589, 18279, 'eighteen thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(24590, 31793, 'thirty-one thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(24591, 58393, 'fifty-eight thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(24592, 39049, 'thirty-nine thousand forty-nine');\nINSERT INTO t2 VALUES(24593, 63409, 'sixty-three thousand four hundred nine');\nINSERT INTO t2 VALUES(24594, 52925, 'fifty-two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(24595, 79204, 'seventy-nine thousand two hundred four');\nINSERT INTO t2 VALUES(24596, 7575, 'seven thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(24597, 53306, 'fifty-three thousand three hundred six');\nINSERT INTO t2 VALUES(24598, 49172, 'forty-nine thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(24599, 66361, 'sixty-six thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(24600, 84059, 'eighty-four thousand fifty-nine');\nINSERT INTO t2 VALUES(24601, 24805, 'twenty-four thousand eight hundred five');\nINSERT INTO t2 VALUES(24602, 4249, 'four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(24603, 29715, 'twenty-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(24604, 44339, 'forty-four thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(24605, 68166, 'sixty-eight thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(24606, 81901, 'eighty-one thousand nine hundred one');\nINSERT INTO t2 VALUES(24607, 55799, 'fifty-five thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(24608, 35067, 'thirty-five thousand sixty-seven');\nINSERT INTO t2 VALUES(24609, 52022, 'fifty-two thousand twenty-two');\nINSERT INTO t2 VALUES(24610, 62377, 'sixty-two thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(24611, 27409, 'twenty-seven thousand four hundred nine');\nINSERT INTO t2 VALUES(24612, 86314, 'eighty-six thousand three hundred fourteen');\nINSERT INTO t2 VALUES(24613, 16236, 'sixteen thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(24614, 13410, 'thirteen thousand four hundred ten');\nINSERT INTO t2 VALUES(24615, 69711, 'sixty-nine thousand seven hundred eleven');\nINSERT INTO t2 VALUES(24616, 14726, 'fourteen thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(24617, 48167, 'forty-eight thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(24618, 89336, 'eighty-nine thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(24619, 18157, 'eighteen thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(24620, 57081, 'fifty-seven thousand eighty-one');\nINSERT INTO t2 VALUES(24621, 5408, 'five thousand four hundred eight');\nINSERT INTO t2 VALUES(24622, 12178, 'twelve thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(24623, 34534, 'thirty-four thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(24624, 37731, 'thirty-seven thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(24625, 70876, 'seventy thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(24626, 86007, 'eighty-six thousand seven');\nINSERT INTO t2 VALUES(24627, 83752, 'eighty-three thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(24628, 70501, 'seventy thousand five hundred one');\nINSERT INTO t2 VALUES(24629, 18667, 'eighteen thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(24630, 28572, 'twenty-eight thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(24631, 68557, 'sixty-eight thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(24632, 11343, 'eleven thousand three hundred forty-three');\nINSERT INTO t2 VALUES(24633, 1624, 'one thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(24634, 59911, 'fifty-nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(24635, 94038, 'ninety-four thousand thirty-eight');\nINSERT INTO t2 VALUES(24636, 29603, 'twenty-nine thousand six hundred three');\nINSERT INTO t2 VALUES(24637, 88648, 'eighty-eight thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(24638, 12736, 'twelve thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(24639, 55683, 'fifty-five thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(24640, 54600, 'fifty-four thousand six hundred');\nINSERT INTO t2 VALUES(24641, 82259, 'eighty-two thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(24642, 14096, 'fourteen thousand ninety-six');\nINSERT INTO t2 VALUES(24643, 36310, 'thirty-six thousand three hundred ten');\nINSERT INTO t2 VALUES(24644, 27154, 'twenty-seven thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(24645, 54007, 'fifty-four thousand seven');\nINSERT INTO t2 VALUES(24646, 82080, 'eighty-two thousand eighty');\nINSERT INTO t2 VALUES(24647, 10298, 'ten thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(24648, 4064, 'four thousand sixty-four');\nINSERT INTO t2 VALUES(24649, 19725, 'nineteen thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(24650, 94836, 'ninety-four thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(24651, 48533, 'forty-eight thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(24652, 5683, 'five thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(24653, 75795, 'seventy-five thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(24654, 30463, 'thirty thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(24655, 47660, 'forty-seven thousand six hundred sixty');\nINSERT INTO t2 VALUES(24656, 17066, 'seventeen thousand sixty-six');\nINSERT INTO t2 VALUES(24657, 17779, 'seventeen thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(24658, 52403, 'fifty-two thousand four hundred three');\nINSERT INTO t2 VALUES(24659, 10570, 'ten thousand five hundred seventy');\nINSERT INTO t2 VALUES(24660, 83671, 'eighty-three thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(24661, 49149, 'forty-nine thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(24662, 81420, 'eighty-one thousand four hundred twenty');\nINSERT INTO t2 VALUES(24663, 37117, 'thirty-seven thousand one hundred seventeen');\nINSERT INTO t2 VALUES(24664, 28783, 'twenty-eight thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(24665, 51320, 'fifty-one thousand three hundred twenty');\nINSERT INTO t2 VALUES(24666, 75904, 'seventy-five thousand nine hundred four');\nINSERT INTO t2 VALUES(24667, 47329, 'forty-seven thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(24668, 93109, 'ninety-three thousand one hundred nine');\nINSERT INTO t2 VALUES(24669, 11161, 'eleven thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(24670, 8950, 'eight thousand nine hundred fifty');\nINSERT INTO t2 VALUES(24671, 74887, 'seventy-four thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(24672, 97014, 'ninety-seven thousand fourteen');\nINSERT INTO t2 VALUES(24673, 55157, 'fifty-five thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(24674, 36609, 'thirty-six thousand six hundred nine');\nINSERT INTO t2 VALUES(24675, 13464, 'thirteen thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(24676, 46476, 'forty-six thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(24677, 83415, 'eighty-three thousand four hundred fifteen');\nINSERT INTO t2 VALUES(24678, 43638, 'forty-three thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(24679, 4917, 'four thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(24680, 61061, 'sixty-one thousand sixty-one');\nINSERT INTO t2 VALUES(24681, 97632, 'ninety-seven thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(24682, 27983, 'twenty-seven thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(24683, 627, 'six hundred twenty-seven');\nINSERT INTO t2 VALUES(24684, 6975, 'six thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(24685, 42522, 'forty-two thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(24686, 28456, 'twenty-eight thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(24687, 43142, 'forty-three thousand one hundred forty-two');\nINSERT INTO t2 VALUES(24688, 83057, 'eighty-three thousand fifty-seven');\nINSERT INTO t2 VALUES(24689, 57492, 'fifty-seven thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(24690, 46542, 'forty-six thousand five hundred forty-two');\nINSERT INTO t2 VALUES(24691, 32781, 'thirty-two thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(24692, 29695, 'twenty-nine thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(24693, 38962, 'thirty-eight thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(24694, 59941, 'fifty-nine thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(24695, 30893, 'thirty thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(24696, 12543, 'twelve thousand five hundred forty-three');\nINSERT INTO t2 VALUES(24697, 88669, 'eighty-eight thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(24698, 31890, 'thirty-one thousand eight hundred ninety');\nINSERT INTO t2 VALUES(24699, 73975, 'seventy-three thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(24700, 32017, 'thirty-two thousand seventeen');\nINSERT INTO t2 VALUES(24701, 74869, 'seventy-four thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(24702, 90302, 'ninety thousand three hundred two');\nINSERT INTO t2 VALUES(24703, 24324, 'twenty-four thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(24704, 77141, 'seventy-seven thousand one hundred forty-one');\nINSERT INTO t2 VALUES(24705, 805, 'eight hundred five');\nINSERT INTO t2 VALUES(24706, 69323, 'sixty-nine thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(24707, 47182, 'forty-seven thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(24708, 64546, 'sixty-four thousand five hundred forty-six');\nINSERT INTO t2 VALUES(24709, 70094, 'seventy thousand ninety-four');\nINSERT INTO t2 VALUES(24710, 8800, 'eight thousand eight hundred');\nINSERT INTO t2 VALUES(24711, 67164, 'sixty-seven thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(24712, 93808, 'ninety-three thousand eight hundred eight');\nINSERT INTO t2 VALUES(24713, 24754, 'twenty-four thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(24714, 97489, 'ninety-seven thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(24715, 5602, 'five thousand six hundred two');\nINSERT INTO t2 VALUES(24716, 15377, 'fifteen thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(24717, 94085, 'ninety-four thousand eighty-five');\nINSERT INTO t2 VALUES(24718, 89097, 'eighty-nine thousand ninety-seven');\nINSERT INTO t2 VALUES(24719, 42250, 'forty-two thousand two hundred fifty');\nINSERT INTO t2 VALUES(24720, 16428, 'sixteen thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(24721, 20074, 'twenty thousand seventy-four');\nINSERT INTO t2 VALUES(24722, 47704, 'forty-seven thousand seven hundred four');\nINSERT INTO t2 VALUES(24723, 80575, 'eighty thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(24724, 9727, 'nine thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(24725, 79252, 'seventy-nine thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(24726, 70229, 'seventy thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(24727, 58670, 'fifty-eight thousand six hundred seventy');\nINSERT INTO t2 VALUES(24728, 26075, 'twenty-six thousand seventy-five');\nINSERT INTO t2 VALUES(24729, 2374, 'two thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(24730, 16236, 'sixteen thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(24731, 51387, 'fifty-one thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(24732, 96158, 'ninety-six thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(24733, 65798, 'sixty-five thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(24734, 71627, 'seventy-one thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(24735, 93357, 'ninety-three thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(24736, 81299, 'eighty-one thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(24737, 60749, 'sixty thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(24738, 47834, 'forty-seven thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(24739, 36406, 'thirty-six thousand four hundred six');\nINSERT INTO t2 VALUES(24740, 33888, 'thirty-three thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(24741, 96891, 'ninety-six thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(24742, 30897, 'thirty thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(24743, 88968, 'eighty-eight thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(24744, 80461, 'eighty thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(24745, 95105, 'ninety-five thousand one hundred five');\nINSERT INTO t2 VALUES(24746, 33433, 'thirty-three thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(24747, 6198, 'six thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(24748, 26097, 'twenty-six thousand ninety-seven');\nINSERT INTO t2 VALUES(24749, 96995, 'ninety-six thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(24750, 81911, 'eighty-one thousand nine hundred eleven');\nINSERT INTO t2 VALUES(24751, 89519, 'eighty-nine thousand five hundred nineteen');\nINSERT INTO t2 VALUES(24752, 66802, 'sixty-six thousand eight hundred two');\nINSERT INTO t2 VALUES(24753, 63647, 'sixty-three thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(24754, 41202, 'forty-one thousand two hundred two');\nINSERT INTO t2 VALUES(24755, 10401, 'ten thousand four hundred one');\nINSERT INTO t2 VALUES(24756, 47730, 'forty-seven thousand seven hundred thirty');\nINSERT INTO t2 VALUES(24757, 37726, 'thirty-seven thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(24758, 73359, 'seventy-three thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(24759, 98821, 'ninety-eight thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(24760, 23696, 'twenty-three thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(24761, 40496, 'forty thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(24762, 24417, 'twenty-four thousand four hundred seventeen');\nINSERT INTO t2 VALUES(24763, 83001, 'eighty-three thousand one');\nINSERT INTO t2 VALUES(24764, 80101, 'eighty thousand one hundred one');\nINSERT INTO t2 VALUES(24765, 20058, 'twenty thousand fifty-eight');\nINSERT INTO t2 VALUES(24766, 90050, 'ninety thousand fifty');\nINSERT INTO t2 VALUES(24767, 67793, 'sixty-seven thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(24768, 21328, 'twenty-one thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(24769, 33026, 'thirty-three thousand twenty-six');\nINSERT INTO t2 VALUES(24770, 60248, 'sixty thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(24771, 65466, 'sixty-five thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(24772, 7600, 'seven thousand six hundred');\nINSERT INTO t2 VALUES(24773, 85941, 'eighty-five thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(24774, 96865, 'ninety-six thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(24775, 70113, 'seventy thousand one hundred thirteen');\nINSERT INTO t2 VALUES(24776, 98788, 'ninety-eight thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(24777, 31787, 'thirty-one thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(24778, 62463, 'sixty-two thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(24779, 68236, 'sixty-eight thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(24780, 3736, 'three thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(24781, 51532, 'fifty-one thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(24782, 35548, 'thirty-five thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(24783, 14236, 'fourteen thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(24784, 84897, 'eighty-four thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(24785, 31062, 'thirty-one thousand sixty-two');\nINSERT INTO t2 VALUES(24786, 93221, 'ninety-three thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(24787, 35820, 'thirty-five thousand eight hundred twenty');\nINSERT INTO t2 VALUES(24788, 58184, 'fifty-eight thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(24789, 41247, 'forty-one thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(24790, 30489, 'thirty thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(24791, 25609, 'twenty-five thousand six hundred nine');\nINSERT INTO t2 VALUES(24792, 87338, 'eighty-seven thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(24793, 50575, 'fifty thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(24794, 24704, 'twenty-four thousand seven hundred four');\nINSERT INTO t2 VALUES(24795, 12806, 'twelve thousand eight hundred six');\nINSERT INTO t2 VALUES(24796, 44597, 'forty-four thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(24797, 58582, 'fifty-eight thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(24798, 11726, 'eleven thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(24799, 13340, 'thirteen thousand three hundred forty');\nINSERT INTO t2 VALUES(24800, 24440, 'twenty-four thousand four hundred forty');\nINSERT INTO t2 VALUES(24801, 9887, 'nine thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(24802, 47895, 'forty-seven thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(24803, 54759, 'fifty-four thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(24804, 71252, 'seventy-one thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(24805, 78445, 'seventy-eight thousand four hundred forty-five');\nINSERT INTO t2 VALUES(24806, 39941, 'thirty-nine thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(24807, 48159, 'forty-eight thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(24808, 2132, 'two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(24809, 44127, 'forty-four thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(24810, 81965, 'eighty-one thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(24811, 75241, 'seventy-five thousand two hundred forty-one');\nINSERT INTO t2 VALUES(24812, 89405, 'eighty-nine thousand four hundred five');\nINSERT INTO t2 VALUES(24813, 76797, 'seventy-six thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(24814, 77364, 'seventy-seven thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(24815, 22439, 'twenty-two thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(24816, 21848, 'twenty-one thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(24817, 92243, 'ninety-two thousand two hundred forty-three');\nINSERT INTO t2 VALUES(24818, 1815, 'one thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(24819, 99779, 'ninety-nine thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(24820, 96172, 'ninety-six thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(24821, 431, 'four hundred thirty-one');\nINSERT INTO t2 VALUES(24822, 33856, 'thirty-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(24823, 93893, 'ninety-three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(24824, 54344, 'fifty-four thousand three hundred forty-four');\nINSERT INTO t2 VALUES(24825, 10331, 'ten thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(24826, 8399, 'eight thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(24827, 36038, 'thirty-six thousand thirty-eight');\nINSERT INTO t2 VALUES(24828, 95043, 'ninety-five thousand forty-three');\nINSERT INTO t2 VALUES(24829, 97022, 'ninety-seven thousand twenty-two');\nINSERT INTO t2 VALUES(24830, 3189, 'three thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(24831, 46168, 'forty-six thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(24832, 88559, 'eighty-eight thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(24833, 64144, 'sixty-four thousand one hundred forty-four');\nINSERT INTO t2 VALUES(24834, 51730, 'fifty-one thousand seven hundred thirty');\nINSERT INTO t2 VALUES(24835, 20174, 'twenty thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(24836, 7018, 'seven thousand eighteen');\nINSERT INTO t2 VALUES(24837, 18657, 'eighteen thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(24838, 75088, 'seventy-five thousand eighty-eight');\nINSERT INTO t2 VALUES(24839, 67326, 'sixty-seven thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(24840, 25073, 'twenty-five thousand seventy-three');\nINSERT INTO t2 VALUES(24841, 94644, 'ninety-four thousand six hundred forty-four');\nINSERT INTO t2 VALUES(24842, 44223, 'forty-four thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(24843, 46337, 'forty-six thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(24844, 514, 'five hundred fourteen');\nINSERT INTO t2 VALUES(24845, 60951, 'sixty thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(24846, 72709, 'seventy-two thousand seven hundred nine');\nINSERT INTO t2 VALUES(24847, 33482, 'thirty-three thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(24848, 12069, 'twelve thousand sixty-nine');\nINSERT INTO t2 VALUES(24849, 44568, 'forty-four thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(24850, 50881, 'fifty thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(24851, 86189, 'eighty-six thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(24852, 90634, 'ninety thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(24853, 29555, 'twenty-nine thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(24854, 40451, 'forty thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(24855, 56427, 'fifty-six thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(24856, 63501, 'sixty-three thousand five hundred one');\nINSERT INTO t2 VALUES(24857, 37562, 'thirty-seven thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(24858, 98526, 'ninety-eight thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(24859, 91101, 'ninety-one thousand one hundred one');\nINSERT INTO t2 VALUES(24860, 60072, 'sixty thousand seventy-two');\nINSERT INTO t2 VALUES(24861, 38206, 'thirty-eight thousand two hundred six');\nINSERT INTO t2 VALUES(24862, 53377, 'fifty-three thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(24863, 89666, 'eighty-nine thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(24864, 10446, 'ten thousand four hundred forty-six');\nINSERT INTO t2 VALUES(24865, 92671, 'ninety-two thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(24866, 78160, 'seventy-eight thousand one hundred sixty');\nINSERT INTO t2 VALUES(24867, 72782, 'seventy-two thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(24868, 57859, 'fifty-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(24869, 39918, 'thirty-nine thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(24870, 25370, 'twenty-five thousand three hundred seventy');\nINSERT INTO t2 VALUES(24871, 40814, 'forty thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(24872, 21468, 'twenty-one thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(24873, 74690, 'seventy-four thousand six hundred ninety');\nINSERT INTO t2 VALUES(24874, 35862, 'thirty-five thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(24875, 92947, 'ninety-two thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(24876, 27385, 'twenty-seven thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(24877, 96998, 'ninety-six thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(24878, 22257, 'twenty-two thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(24879, 39663, 'thirty-nine thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(24880, 78932, 'seventy-eight thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(24881, 72715, 'seventy-two thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(24882, 78243, 'seventy-eight thousand two hundred forty-three');\nINSERT INTO t2 VALUES(24883, 96803, 'ninety-six thousand eight hundred three');\nINSERT INTO t2 VALUES(24884, 72654, 'seventy-two thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(24885, 19001, 'nineteen thousand one');\nINSERT INTO t2 VALUES(24886, 6400, 'six thousand four hundred');\nINSERT INTO t2 VALUES(24887, 83047, 'eighty-three thousand forty-seven');\nINSERT INTO t2 VALUES(24888, 99857, 'ninety-nine thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(24889, 85833, 'eighty-five thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(24890, 2089, 'two thousand eighty-nine');\nINSERT INTO t2 VALUES(24891, 97218, 'ninety-seven thousand two hundred eighteen');\nINSERT INTO t2 VALUES(24892, 36946, 'thirty-six thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(24893, 73796, 'seventy-three thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(24894, 51099, 'fifty-one thousand ninety-nine');\nINSERT INTO t2 VALUES(24895, 55507, 'fifty-five thousand five hundred seven');\nINSERT INTO t2 VALUES(24896, 52925, 'fifty-two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(24897, 84714, 'eighty-four thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(24898, 2326, 'two thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(24899, 46073, 'forty-six thousand seventy-three');\nINSERT INTO t2 VALUES(24900, 13234, 'thirteen thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(24901, 37425, 'thirty-seven thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(24902, 94868, 'ninety-four thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(24903, 49168, 'forty-nine thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(24904, 34573, 'thirty-four thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(24905, 81470, 'eighty-one thousand four hundred seventy');\nINSERT INTO t2 VALUES(24906, 43976, 'forty-three thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(24907, 53694, 'fifty-three thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(24908, 26766, 'twenty-six thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(24909, 24129, 'twenty-four thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(24910, 81742, 'eighty-one thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(24911, 82292, 'eighty-two thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(24912, 15618, 'fifteen thousand six hundred eighteen');\nINSERT INTO t2 VALUES(24913, 63142, 'sixty-three thousand one hundred forty-two');\nINSERT INTO t2 VALUES(24914, 72910, 'seventy-two thousand nine hundred ten');\nINSERT INTO t2 VALUES(24915, 92621, 'ninety-two thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(24916, 66932, 'sixty-six thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(24917, 52781, 'fifty-two thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(24918, 71348, 'seventy-one thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(24919, 4847, 'four thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(24920, 37301, 'thirty-seven thousand three hundred one');\nINSERT INTO t2 VALUES(24921, 17089, 'seventeen thousand eighty-nine');\nINSERT INTO t2 VALUES(24922, 11301, 'eleven thousand three hundred one');\nINSERT INTO t2 VALUES(24923, 29841, 'twenty-nine thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(24924, 65105, 'sixty-five thousand one hundred five');\nINSERT INTO t2 VALUES(24925, 824, 'eight hundred twenty-four');\nINSERT INTO t2 VALUES(24926, 95530, 'ninety-five thousand five hundred thirty');\nINSERT INTO t2 VALUES(24927, 27877, 'twenty-seven thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(24928, 38398, 'thirty-eight thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(24929, 24764, 'twenty-four thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(24930, 75532, 'seventy-five thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(24931, 85140, 'eighty-five thousand one hundred forty');\nINSERT INTO t2 VALUES(24932, 7909, 'seven thousand nine hundred nine');\nINSERT INTO t2 VALUES(24933, 35290, 'thirty-five thousand two hundred ninety');\nINSERT INTO t2 VALUES(24934, 48260, 'forty-eight thousand two hundred sixty');\nINSERT INTO t2 VALUES(24935, 42806, 'forty-two thousand eight hundred six');\nINSERT INTO t2 VALUES(24936, 49887, 'forty-nine thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(24937, 42220, 'forty-two thousand two hundred twenty');\nINSERT INTO t2 VALUES(24938, 49147, 'forty-nine thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(24939, 5209, 'five thousand two hundred nine');\nINSERT INTO t2 VALUES(24940, 90794, 'ninety thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(24941, 82718, 'eighty-two thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(24942, 51334, 'fifty-one thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(24943, 15932, 'fifteen thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(24944, 59449, 'fifty-nine thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(24945, 67625, 'sixty-seven thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(24946, 94883, 'ninety-four thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(24947, 45379, 'forty-five thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(24948, 73463, 'seventy-three thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(24949, 45213, 'forty-five thousand two hundred thirteen');\nINSERT INTO t2 VALUES(24950, 91929, 'ninety-one thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(24951, 16230, 'sixteen thousand two hundred thirty');\nINSERT INTO t2 VALUES(24952, 69883, 'sixty-nine thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(24953, 22804, 'twenty-two thousand eight hundred four');\nINSERT INTO t2 VALUES(24954, 3866, 'three thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(24955, 1990, 'one thousand nine hundred ninety');\nINSERT INTO t2 VALUES(24956, 51840, 'fifty-one thousand eight hundred forty');\nINSERT INTO t2 VALUES(24957, 87111, 'eighty-seven thousand one hundred eleven');\nINSERT INTO t2 VALUES(24958, 68843, 'sixty-eight thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(24959, 55528, 'fifty-five thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(24960, 53450, 'fifty-three thousand four hundred fifty');\nINSERT INTO t2 VALUES(24961, 19612, 'nineteen thousand six hundred twelve');\nINSERT INTO t2 VALUES(24962, 35201, 'thirty-five thousand two hundred one');\nINSERT INTO t2 VALUES(24963, 16272, 'sixteen thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(24964, 99318, 'ninety-nine thousand three hundred eighteen');\nINSERT INTO t2 VALUES(24965, 89834, 'eighty-nine thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(24966, 20102, 'twenty thousand one hundred two');\nINSERT INTO t2 VALUES(24967, 77296, 'seventy-seven thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(24968, 80389, 'eighty thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(24969, 16913, 'sixteen thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(24970, 98721, 'ninety-eight thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(24971, 54023, 'fifty-four thousand twenty-three');\nINSERT INTO t2 VALUES(24972, 29494, 'twenty-nine thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(24973, 9377, 'nine thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(24974, 72823, 'seventy-two thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(24975, 69906, 'sixty-nine thousand nine hundred six');\nINSERT INTO t2 VALUES(24976, 55159, 'fifty-five thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(24977, 47047, 'forty-seven thousand forty-seven');\nINSERT INTO t2 VALUES(24978, 28733, 'twenty-eight thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(24979, 79866, 'seventy-nine thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(24980, 64361, 'sixty-four thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(24981, 86431, 'eighty-six thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(24982, 53705, 'fifty-three thousand seven hundred five');\nINSERT INTO t2 VALUES(24983, 43067, 'forty-three thousand sixty-seven');\nINSERT INTO t2 VALUES(24984, 3320, 'three thousand three hundred twenty');\nINSERT INTO t2 VALUES(24985, 15960, 'fifteen thousand nine hundred sixty');\nINSERT INTO t2 VALUES(24986, 63272, 'sixty-three thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(24987, 2447, 'two thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(24988, 13742, 'thirteen thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(24989, 18875, 'eighteen thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(24990, 92635, 'ninety-two thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(24991, 99535, 'ninety-nine thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(24992, 20112, 'twenty thousand one hundred twelve');\nINSERT INTO t2 VALUES(24993, 93759, 'ninety-three thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(24994, 32135, 'thirty-two thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(24995, 56099, 'fifty-six thousand ninety-nine');\nINSERT INTO t2 VALUES(24996, 14588, 'fourteen thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(24997, 68339, 'sixty-eight thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(24998, 33916, 'thirty-three thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(24999, 58227, 'fifty-eight thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(25000, 94446, 'ninety-four thousand four hundred forty-six');\nCOMMIT;\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark3.sql",
    "content": "BEGIN;\nCREATE TABLE t3(a INTEGER, b INTEGER, c VARCHAR(100));\nCREATE INDEX i3 ON t3(c);\nINSERT INTO t3 VALUES(1, 90183, 'ninety thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(2, 65182, 'sixty-five thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(3, 79184, 'seventy-nine thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(4, 62773, 'sixty-two thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(5, 6630, 'six thousand six hundred thirty');\nINSERT INTO t3 VALUES(6, 79715, 'seventy-nine thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(7, 49778, 'forty-nine thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(8, 33198, 'thirty-three thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(9, 59322, 'fifty-nine thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(10, 48234, 'forty-eight thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(11, 21538, 'twenty-one thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(12, 24452, 'twenty-four thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(13, 23004, 'twenty-three thousand four');\nINSERT INTO t3 VALUES(14, 1240, 'one thousand two hundred forty');\nINSERT INTO t3 VALUES(15, 63122, 'sixty-three thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(16, 56286, 'fifty-six thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(17, 25005, 'twenty-five thousand five');\nINSERT INTO t3 VALUES(18, 944, 'nine hundred forty-four');\nINSERT INTO t3 VALUES(19, 80737, 'eighty thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(20, 16724, 'sixteen thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(21, 31354, 'thirty-one thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(22, 17696, 'seventeen thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(23, 44146, 'forty-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(24, 14105, 'fourteen thousand one hundred five');\nINSERT INTO t3 VALUES(25, 56396, 'fifty-six thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(26, 34947, 'thirty-four thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(27, 73851, 'seventy-three thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(28, 36410, 'thirty-six thousand four hundred ten');\nINSERT INTO t3 VALUES(29, 68033, 'sixty-eight thousand thirty-three');\nINSERT INTO t3 VALUES(30, 72153, 'seventy-two thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(31, 29430, 'twenty-nine thousand four hundred thirty');\nINSERT INTO t3 VALUES(32, 435, 'four hundred thirty-five');\nINSERT INTO t3 VALUES(33, 8430, 'eight thousand four hundred thirty');\nINSERT INTO t3 VALUES(34, 64854, 'sixty-four thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(35, 50457, 'fifty thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(36, 28095, 'twenty-eight thousand ninety-five');\nINSERT INTO t3 VALUES(37, 87893, 'eighty-seven thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(38, 81207, 'eighty-one thousand two hundred seven');\nINSERT INTO t3 VALUES(39, 72268, 'seventy-two thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(40, 45940, 'forty-five thousand nine hundred forty');\nINSERT INTO t3 VALUES(41, 55242, 'fifty-five thousand two hundred forty-two');\nINSERT INTO t3 VALUES(42, 7100, 'seven thousand one hundred');\nINSERT INTO t3 VALUES(43, 35460, 'thirty-five thousand four hundred sixty');\nINSERT INTO t3 VALUES(44, 20012, 'twenty thousand twelve');\nINSERT INTO t3 VALUES(45, 95948, 'ninety-five thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(46, 12696, 'twelve thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(47, 81014, 'eighty-one thousand fourteen');\nINSERT INTO t3 VALUES(48, 73388, 'seventy-three thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(49, 52983, 'fifty-two thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(50, 19671, 'nineteen thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(51, 16274, 'sixteen thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(52, 82940, 'eighty-two thousand nine hundred forty');\nINSERT INTO t3 VALUES(53, 67503, 'sixty-seven thousand five hundred three');\nINSERT INTO t3 VALUES(54, 13522, 'thirteen thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(55, 51083, 'fifty-one thousand eighty-three');\nINSERT INTO t3 VALUES(56, 2617, 'two thousand six hundred seventeen');\nINSERT INTO t3 VALUES(57, 23555, 'twenty-three thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(58, 89075, 'eighty-nine thousand seventy-five');\nINSERT INTO t3 VALUES(59, 49313, 'forty-nine thousand three hundred thirteen');\nINSERT INTO t3 VALUES(60, 78873, 'seventy-eight thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(61, 84645, 'eighty-four thousand six hundred forty-five');\nINSERT INTO t3 VALUES(62, 89920, 'eighty-nine thousand nine hundred twenty');\nINSERT INTO t3 VALUES(63, 58805, 'fifty-eight thousand eight hundred five');\nINSERT INTO t3 VALUES(64, 53068, 'fifty-three thousand sixty-eight');\nINSERT INTO t3 VALUES(65, 68084, 'sixty-eight thousand eighty-four');\nINSERT INTO t3 VALUES(66, 29207, 'twenty-nine thousand two hundred seven');\nINSERT INTO t3 VALUES(67, 63457, 'sixty-three thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(68, 40143, 'forty thousand one hundred forty-three');\nINSERT INTO t3 VALUES(69, 62048, 'sixty-two thousand forty-eight');\nINSERT INTO t3 VALUES(70, 36006, 'thirty-six thousand six');\nINSERT INTO t3 VALUES(71, 83152, 'eighty-three thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(72, 13387, 'thirteen thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(73, 50704, 'fifty thousand seven hundred four');\nINSERT INTO t3 VALUES(74, 39743, 'thirty-nine thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(75, 44716, 'forty-four thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(76, 31685, 'thirty-one thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(77, 65893, 'sixty-five thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(78, 62854, 'sixty-two thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(79, 8739, 'eight thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(80, 26513, 'twenty-six thousand five hundred thirteen');\nINSERT INTO t3 VALUES(81, 59948, 'fifty-nine thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(82, 73120, 'seventy-three thousand one hundred twenty');\nINSERT INTO t3 VALUES(83, 96520, 'ninety-six thousand five hundred twenty');\nINSERT INTO t3 VALUES(84, 86506, 'eighty-six thousand five hundred six');\nINSERT INTO t3 VALUES(85, 3172, 'three thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(86, 10494, 'ten thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(87, 22034, 'twenty-two thousand thirty-four');\nINSERT INTO t3 VALUES(88, 65036, 'sixty-five thousand thirty-six');\nINSERT INTO t3 VALUES(89, 51863, 'fifty-one thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(90, 62035, 'sixty-two thousand thirty-five');\nINSERT INTO t3 VALUES(91, 59883, 'fifty-nine thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(92, 70677, 'seventy thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(93, 95902, 'ninety-five thousand nine hundred two');\nINSERT INTO t3 VALUES(94, 83317, 'eighty-three thousand three hundred seventeen');\nINSERT INTO t3 VALUES(95, 89743, 'eighty-nine thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(96, 63528, 'sixty-three thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(97, 76909, 'seventy-six thousand nine hundred nine');\nINSERT INTO t3 VALUES(98, 96469, 'ninety-six thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(99, 46474, 'forty-six thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(100, 64326, 'sixty-four thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(101, 81805, 'eighty-one thousand eight hundred five');\nINSERT INTO t3 VALUES(102, 38591, 'thirty-eight thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(103, 3909, 'three thousand nine hundred nine');\nINSERT INTO t3 VALUES(104, 85755, 'eighty-five thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(105, 99762, 'ninety-nine thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(106, 56813, 'fifty-six thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(107, 50487, 'fifty thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(108, 73438, 'seventy-three thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(109, 26555, 'twenty-six thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(110, 76235, 'seventy-six thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(111, 1879, 'one thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(112, 21174, 'twenty-one thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(113, 99289, 'ninety-nine thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(114, 72523, 'seventy-two thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(115, 93286, 'ninety-three thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(116, 76012, 'seventy-six thousand twelve');\nINSERT INTO t3 VALUES(117, 9372, 'nine thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(118, 33992, 'thirty-three thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(119, 9869, 'nine thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(120, 87554, 'eighty-seven thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(121, 27130, 'twenty-seven thousand one hundred thirty');\nINSERT INTO t3 VALUES(122, 24420, 'twenty-four thousand four hundred twenty');\nINSERT INTO t3 VALUES(123, 81218, 'eighty-one thousand two hundred eighteen');\nINSERT INTO t3 VALUES(124, 87915, 'eighty-seven thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(125, 82797, 'eighty-two thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(126, 99867, 'ninety-nine thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(127, 45608, 'forty-five thousand six hundred eight');\nINSERT INTO t3 VALUES(128, 27027, 'twenty-seven thousand twenty-seven');\nINSERT INTO t3 VALUES(129, 10148, 'ten thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(130, 90119, 'ninety thousand one hundred nineteen');\nINSERT INTO t3 VALUES(131, 3539, 'three thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(132, 14278, 'fourteen thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(133, 70628, 'seventy thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(134, 40495, 'forty thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(135, 77630, 'seventy-seven thousand six hundred thirty');\nINSERT INTO t3 VALUES(136, 24919, 'twenty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(137, 563, 'five hundred sixty-three');\nINSERT INTO t3 VALUES(138, 13613, 'thirteen thousand six hundred thirteen');\nINSERT INTO t3 VALUES(139, 83588, 'eighty-three thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(140, 27930, 'twenty-seven thousand nine hundred thirty');\nINSERT INTO t3 VALUES(141, 30958, 'thirty thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(142, 75153, 'seventy-five thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(143, 99222, 'ninety-nine thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(144, 32451, 'thirty-two thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(145, 76632, 'seventy-six thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(146, 34681, 'thirty-four thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(147, 32317, 'thirty-two thousand three hundred seventeen');\nINSERT INTO t3 VALUES(148, 56149, 'fifty-six thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(149, 60229, 'sixty thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(150, 19532, 'nineteen thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(151, 87902, 'eighty-seven thousand nine hundred two');\nINSERT INTO t3 VALUES(152, 40686, 'forty thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(153, 46888, 'forty-six thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(154, 12672, 'twelve thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(155, 74042, 'seventy-four thousand forty-two');\nINSERT INTO t3 VALUES(156, 43172, 'forty-three thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(157, 41588, 'forty-one thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(158, 58654, 'fifty-eight thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(159, 80637, 'eighty thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(160, 25022, 'twenty-five thousand twenty-two');\nINSERT INTO t3 VALUES(161, 2878, 'two thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(162, 87182, 'eighty-seven thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(163, 34851, 'thirty-four thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(164, 4544, 'four thousand five hundred forty-four');\nINSERT INTO t3 VALUES(165, 75925, 'seventy-five thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(166, 65362, 'sixty-five thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(167, 51857, 'fifty-one thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(168, 81481, 'eighty-one thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(169, 66526, 'sixty-six thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(170, 47242, 'forty-seven thousand two hundred forty-two');\nINSERT INTO t3 VALUES(171, 81290, 'eighty-one thousand two hundred ninety');\nINSERT INTO t3 VALUES(172, 98004, 'ninety-eight thousand four');\nINSERT INTO t3 VALUES(173, 80313, 'eighty thousand three hundred thirteen');\nINSERT INTO t3 VALUES(174, 93361, 'ninety-three thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(175, 29697, 'twenty-nine thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(176, 33778, 'thirty-three thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(177, 88134, 'eighty-eight thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(178, 30768, 'thirty thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(179, 26673, 'twenty-six thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(180, 86295, 'eighty-six thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(181, 41292, 'forty-one thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(182, 74272, 'seventy-four thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(183, 84254, 'eighty-four thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(184, 5812, 'five thousand eight hundred twelve');\nINSERT INTO t3 VALUES(185, 12042, 'twelve thousand forty-two');\nINSERT INTO t3 VALUES(186, 11546, 'eleven thousand five hundred forty-six');\nINSERT INTO t3 VALUES(187, 60254, 'sixty thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(188, 39302, 'thirty-nine thousand three hundred two');\nINSERT INTO t3 VALUES(189, 1812, 'one thousand eight hundred twelve');\nINSERT INTO t3 VALUES(190, 12018, 'twelve thousand eighteen');\nINSERT INTO t3 VALUES(191, 94386, 'ninety-four thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(192, 44723, 'forty-four thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(193, 9197, 'nine thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(194, 99234, 'ninety-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(195, 36549, 'thirty-six thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(196, 99550, 'ninety-nine thousand five hundred fifty');\nINSERT INTO t3 VALUES(197, 68978, 'sixty-eight thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(198, 75951, 'seventy-five thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(199, 41705, 'forty-one thousand seven hundred five');\nINSERT INTO t3 VALUES(200, 10998, 'ten thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(201, 36868, 'thirty-six thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(202, 17944, 'seventeen thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(203, 28310, 'twenty-eight thousand three hundred ten');\nINSERT INTO t3 VALUES(204, 50765, 'fifty thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(205, 58754, 'fifty-eight thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(206, 68159, 'sixty-eight thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(207, 1578, 'one thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(208, 77708, 'seventy-seven thousand seven hundred eight');\nINSERT INTO t3 VALUES(209, 2248, 'two thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(210, 56563, 'fifty-six thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(211, 39829, 'thirty-nine thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(212, 47346, 'forty-seven thousand three hundred forty-six');\nINSERT INTO t3 VALUES(213, 73875, 'seventy-three thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(214, 78489, 'seventy-eight thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(215, 375, 'three hundred seventy-five');\nINSERT INTO t3 VALUES(216, 89242, 'eighty-nine thousand two hundred forty-two');\nINSERT INTO t3 VALUES(217, 3818, 'three thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(218, 35355, 'thirty-five thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(219, 9835, 'nine thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(220, 20768, 'twenty thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(221, 43749, 'forty-three thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(222, 23736, 'twenty-three thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(223, 8111, 'eight thousand one hundred eleven');\nINSERT INTO t3 VALUES(224, 37926, 'thirty-seven thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(225, 25507, 'twenty-five thousand five hundred seven');\nINSERT INTO t3 VALUES(226, 44121, 'forty-four thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(227, 23445, 'twenty-three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(228, 5392, 'five thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(229, 96000, 'ninety-six thousand');\nINSERT INTO t3 VALUES(230, 69638, 'sixty-nine thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(231, 44145, 'forty-four thousand one hundred forty-five');\nINSERT INTO t3 VALUES(232, 32916, 'thirty-two thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(233, 85171, 'eighty-five thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(234, 2597, 'two thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(235, 61625, 'sixty-one thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(236, 88977, 'eighty-eight thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(237, 57311, 'fifty-seven thousand three hundred eleven');\nINSERT INTO t3 VALUES(238, 26687, 'twenty-six thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(239, 20185, 'twenty thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(240, 82839, 'eighty-two thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(241, 13801, 'thirteen thousand eight hundred one');\nINSERT INTO t3 VALUES(242, 53847, 'fifty-three thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(243, 68561, 'sixty-eight thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(244, 19898, 'nineteen thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(245, 63660, 'sixty-three thousand six hundred sixty');\nINSERT INTO t3 VALUES(246, 63738, 'sixty-three thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(247, 6887, 'six thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(248, 94457, 'ninety-four thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(249, 37683, 'thirty-seven thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(250, 85191, 'eighty-five thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(251, 79271, 'seventy-nine thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(252, 43173, 'forty-three thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(253, 9368, 'nine thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(254, 66602, 'sixty-six thousand six hundred two');\nINSERT INTO t3 VALUES(255, 58241, 'fifty-eight thousand two hundred forty-one');\nINSERT INTO t3 VALUES(256, 7657, 'seven thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(257, 42926, 'forty-two thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(258, 90780, 'ninety thousand seven hundred eighty');\nINSERT INTO t3 VALUES(259, 24357, 'twenty-four thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(260, 28660, 'twenty-eight thousand six hundred sixty');\nINSERT INTO t3 VALUES(261, 17525, 'seventeen thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(262, 32537, 'thirty-two thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(263, 78891, 'seventy-eight thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(264, 76052, 'seventy-six thousand fifty-two');\nINSERT INTO t3 VALUES(265, 55990, 'fifty-five thousand nine hundred ninety');\nINSERT INTO t3 VALUES(266, 85622, 'eighty-five thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(267, 59213, 'fifty-nine thousand two hundred thirteen');\nINSERT INTO t3 VALUES(268, 8091, 'eight thousand ninety-one');\nINSERT INTO t3 VALUES(269, 20089, 'twenty thousand eighty-nine');\nINSERT INTO t3 VALUES(270, 10462, 'ten thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(271, 25496, 'twenty-five thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(272, 51072, 'fifty-one thousand seventy-two');\nINSERT INTO t3 VALUES(273, 195, 'one hundred ninety-five');\nINSERT INTO t3 VALUES(274, 67763, 'sixty-seven thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(275, 13734, 'thirteen thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(276, 63678, 'sixty-three thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(277, 147, 'one hundred forty-seven');\nINSERT INTO t3 VALUES(278, 18492, 'eighteen thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(279, 88892, 'eighty-eight thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(280, 30787, 'thirty thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(281, 7265, 'seven thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(282, 24479, 'twenty-four thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(283, 20177, 'twenty thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(284, 67194, 'sixty-seven thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(285, 52662, 'fifty-two thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(286, 35497, 'thirty-five thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(287, 36529, 'thirty-six thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(288, 36482, 'thirty-six thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(289, 39017, 'thirty-nine thousand seventeen');\nINSERT INTO t3 VALUES(290, 29718, 'twenty-nine thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(291, 38728, 'thirty-eight thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(292, 78773, 'seventy-eight thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(293, 92733, 'ninety-two thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(294, 6736, 'six thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(295, 66806, 'sixty-six thousand eight hundred six');\nINSERT INTO t3 VALUES(296, 86980, 'eighty-six thousand nine hundred eighty');\nINSERT INTO t3 VALUES(297, 29884, 'twenty-nine thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(298, 30679, 'thirty thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(299, 79306, 'seventy-nine thousand three hundred six');\nINSERT INTO t3 VALUES(300, 65953, 'sixty-five thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(301, 17438, 'seventeen thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(302, 38751, 'thirty-eight thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(303, 46399, 'forty-six thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(304, 78452, 'seventy-eight thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(305, 20000, 'twenty thousand');\nINSERT INTO t3 VALUES(306, 13194, 'thirteen thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(307, 81019, 'eighty-one thousand nineteen');\nINSERT INTO t3 VALUES(308, 76798, 'seventy-six thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(309, 22161, 'twenty-two thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(310, 37233, 'thirty-seven thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(311, 74787, 'seventy-four thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(312, 30941, 'thirty thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(313, 78402, 'seventy-eight thousand four hundred two');\nINSERT INTO t3 VALUES(314, 16427, 'sixteen thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(315, 82948, 'eighty-two thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(316, 5416, 'five thousand four hundred sixteen');\nINSERT INTO t3 VALUES(317, 58180, 'fifty-eight thousand one hundred eighty');\nINSERT INTO t3 VALUES(318, 55537, 'fifty-five thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(319, 83931, 'eighty-three thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(320, 25393, 'twenty-five thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(321, 88398, 'eighty-eight thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(322, 53156, 'fifty-three thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(323, 39695, 'thirty-nine thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(324, 35844, 'thirty-five thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(325, 11225, 'eleven thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(326, 35707, 'thirty-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(327, 29558, 'twenty-nine thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(328, 80039, 'eighty thousand thirty-nine');\nINSERT INTO t3 VALUES(329, 23028, 'twenty-three thousand twenty-eight');\nINSERT INTO t3 VALUES(330, 5767, 'five thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(331, 1959, 'one thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(332, 21325, 'twenty-one thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(333, 81488, 'eighty-one thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(334, 12011, 'twelve thousand eleven');\nINSERT INTO t3 VALUES(335, 19694, 'nineteen thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(336, 84000, 'eighty-four thousand');\nINSERT INTO t3 VALUES(337, 72761, 'seventy-two thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(338, 24198, 'twenty-four thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(339, 30422, 'thirty thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(340, 75099, 'seventy-five thousand ninety-nine');\nINSERT INTO t3 VALUES(341, 4255, 'four thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(342, 48202, 'forty-eight thousand two hundred two');\nINSERT INTO t3 VALUES(343, 53180, 'fifty-three thousand one hundred eighty');\nINSERT INTO t3 VALUES(344, 56346, 'fifty-six thousand three hundred forty-six');\nINSERT INTO t3 VALUES(345, 94707, 'ninety-four thousand seven hundred seven');\nINSERT INTO t3 VALUES(346, 28275, 'twenty-eight thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(347, 20096, 'twenty thousand ninety-six');\nINSERT INTO t3 VALUES(348, 66336, 'sixty-six thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(349, 45394, 'forty-five thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(350, 99448, 'ninety-nine thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(351, 29637, 'twenty-nine thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(352, 14212, 'fourteen thousand two hundred twelve');\nINSERT INTO t3 VALUES(353, 72503, 'seventy-two thousand five hundred three');\nINSERT INTO t3 VALUES(354, 82096, 'eighty-two thousand ninety-six');\nINSERT INTO t3 VALUES(355, 24848, 'twenty-four thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(356, 79870, 'seventy-nine thousand eight hundred seventy');\nINSERT INTO t3 VALUES(357, 61332, 'sixty-one thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(358, 99109, 'ninety-nine thousand one hundred nine');\nINSERT INTO t3 VALUES(359, 22266, 'twenty-two thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(360, 55154, 'fifty-five thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(361, 99933, 'ninety-nine thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(362, 49927, 'forty-nine thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(363, 15041, 'fifteen thousand forty-one');\nINSERT INTO t3 VALUES(364, 34503, 'thirty-four thousand five hundred three');\nINSERT INTO t3 VALUES(365, 34573, 'thirty-four thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(366, 78481, 'seventy-eight thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(367, 98233, 'ninety-eight thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(368, 70101, 'seventy thousand one hundred one');\nINSERT INTO t3 VALUES(369, 89364, 'eighty-nine thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(370, 37758, 'thirty-seven thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(371, 90088, 'ninety thousand eighty-eight');\nINSERT INTO t3 VALUES(372, 94690, 'ninety-four thousand six hundred ninety');\nINSERT INTO t3 VALUES(373, 27142, 'twenty-seven thousand one hundred forty-two');\nINSERT INTO t3 VALUES(374, 50630, 'fifty thousand six hundred thirty');\nINSERT INTO t3 VALUES(375, 44828, 'forty-four thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(376, 98807, 'ninety-eight thousand eight hundred seven');\nINSERT INTO t3 VALUES(377, 90633, 'ninety thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(378, 34161, 'thirty-four thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(379, 50847, 'fifty thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(380, 10041, 'ten thousand forty-one');\nINSERT INTO t3 VALUES(381, 66663, 'sixty-six thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(382, 59676, 'fifty-nine thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(383, 1066, 'one thousand sixty-six');\nINSERT INTO t3 VALUES(384, 36999, 'thirty-six thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(385, 51597, 'fifty-one thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(386, 10998, 'ten thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(387, 23753, 'twenty-three thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(388, 42331, 'forty-two thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(389, 28060, 'twenty-eight thousand sixty');\nINSERT INTO t3 VALUES(390, 50748, 'fifty thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(391, 63826, 'sixty-three thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(392, 40657, 'forty thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(393, 46977, 'forty-six thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(394, 78180, 'seventy-eight thousand one hundred eighty');\nINSERT INTO t3 VALUES(395, 53102, 'fifty-three thousand one hundred two');\nINSERT INTO t3 VALUES(396, 48776, 'forty-eight thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(397, 53364, 'fifty-three thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(398, 33461, 'thirty-three thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(399, 16726, 'sixteen thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(400, 56266, 'fifty-six thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(401, 6527, 'six thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(402, 79, 'seventy-nine');\nINSERT INTO t3 VALUES(403, 57142, 'fifty-seven thousand one hundred forty-two');\nINSERT INTO t3 VALUES(404, 60814, 'sixty thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(405, 10460, 'ten thousand four hundred sixty');\nINSERT INTO t3 VALUES(406, 47929, 'forty-seven thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(407, 915, 'nine hundred fifteen');\nINSERT INTO t3 VALUES(408, 8265, 'eight thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(409, 61283, 'sixty-one thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(410, 74918, 'seventy-four thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(411, 94696, 'ninety-four thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(412, 20180, 'twenty thousand one hundred eighty');\nINSERT INTO t3 VALUES(413, 51296, 'fifty-one thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(414, 4759, 'four thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(415, 97901, 'ninety-seven thousand nine hundred one');\nINSERT INTO t3 VALUES(416, 63344, 'sixty-three thousand three hundred forty-four');\nINSERT INTO t3 VALUES(417, 87408, 'eighty-seven thousand four hundred eight');\nINSERT INTO t3 VALUES(418, 73199, 'seventy-three thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(419, 4080, 'four thousand eighty');\nINSERT INTO t3 VALUES(420, 83058, 'eighty-three thousand fifty-eight');\nINSERT INTO t3 VALUES(421, 26771, 'twenty-six thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(422, 53218, 'fifty-three thousand two hundred eighteen');\nINSERT INTO t3 VALUES(423, 25723, 'twenty-five thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(424, 90849, 'ninety thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(425, 92601, 'ninety-two thousand six hundred one');\nINSERT INTO t3 VALUES(426, 6504, 'six thousand five hundred four');\nINSERT INTO t3 VALUES(427, 29563, 'twenty-nine thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(428, 68593, 'sixty-eight thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(429, 65691, 'sixty-five thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(430, 43039, 'forty-three thousand thirty-nine');\nINSERT INTO t3 VALUES(431, 58255, 'fifty-eight thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(432, 80688, 'eighty thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(433, 88514, 'eighty-eight thousand five hundred fourteen');\nINSERT INTO t3 VALUES(434, 79061, 'seventy-nine thousand sixty-one');\nINSERT INTO t3 VALUES(435, 3809, 'three thousand eight hundred nine');\nINSERT INTO t3 VALUES(436, 13032, 'thirteen thousand thirty-two');\nINSERT INTO t3 VALUES(437, 5484, 'five thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(438, 92694, 'ninety-two thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(439, 30988, 'thirty thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(440, 47634, 'forty-seven thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(441, 93286, 'ninety-three thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(442, 52092, 'fifty-two thousand ninety-two');\nINSERT INTO t3 VALUES(443, 25338, 'twenty-five thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(444, 27407, 'twenty-seven thousand four hundred seven');\nINSERT INTO t3 VALUES(445, 31005, 'thirty-one thousand five');\nINSERT INTO t3 VALUES(446, 51089, 'fifty-one thousand eighty-nine');\nINSERT INTO t3 VALUES(447, 67611, 'sixty-seven thousand six hundred eleven');\nINSERT INTO t3 VALUES(448, 59140, 'fifty-nine thousand one hundred forty');\nINSERT INTO t3 VALUES(449, 62305, 'sixty-two thousand three hundred five');\nINSERT INTO t3 VALUES(450, 65481, 'sixty-five thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(451, 56582, 'fifty-six thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(452, 73844, 'seventy-three thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(453, 80966, 'eighty thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(454, 63129, 'sixty-three thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(455, 54072, 'fifty-four thousand seventy-two');\nINSERT INTO t3 VALUES(456, 89320, 'eighty-nine thousand three hundred twenty');\nINSERT INTO t3 VALUES(457, 82740, 'eighty-two thousand seven hundred forty');\nINSERT INTO t3 VALUES(458, 80819, 'eighty thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(459, 77771, 'seventy-seven thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(460, 60669, 'sixty thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(461, 39184, 'thirty-nine thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(462, 68848, 'sixty-eight thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(463, 99938, 'ninety-nine thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(464, 93791, 'ninety-three thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(465, 24279, 'twenty-four thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(466, 15217, 'fifteen thousand two hundred seventeen');\nINSERT INTO t3 VALUES(467, 12705, 'twelve thousand seven hundred five');\nINSERT INTO t3 VALUES(468, 82683, 'eighty-two thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(469, 7164, 'seven thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(470, 75594, 'seventy-five thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(471, 2754, 'two thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(472, 71229, 'seventy-one thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(473, 21874, 'twenty-one thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(474, 9216, 'nine thousand two hundred sixteen');\nINSERT INTO t3 VALUES(475, 65001, 'sixty-five thousand one');\nINSERT INTO t3 VALUES(476, 28692, 'twenty-eight thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(477, 78230, 'seventy-eight thousand two hundred thirty');\nINSERT INTO t3 VALUES(478, 120, 'one hundred twenty');\nINSERT INTO t3 VALUES(479, 19649, 'nineteen thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(480, 40790, 'forty thousand seven hundred ninety');\nINSERT INTO t3 VALUES(481, 34612, 'thirty-four thousand six hundred twelve');\nINSERT INTO t3 VALUES(482, 61303, 'sixty-one thousand three hundred three');\nINSERT INTO t3 VALUES(483, 29631, 'twenty-nine thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(484, 92284, 'ninety-two thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(485, 13349, 'thirteen thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(486, 74211, 'seventy-four thousand two hundred eleven');\nINSERT INTO t3 VALUES(487, 39512, 'thirty-nine thousand five hundred twelve');\nINSERT INTO t3 VALUES(488, 50529, 'fifty thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(489, 4724, 'four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(490, 78296, 'seventy-eight thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(491, 66338, 'sixty-six thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(492, 50105, 'fifty thousand one hundred five');\nINSERT INTO t3 VALUES(493, 54289, 'fifty-four thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(494, 89960, 'eighty-nine thousand nine hundred sixty');\nINSERT INTO t3 VALUES(495, 97482, 'ninety-seven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(496, 73469, 'seventy-three thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(497, 37240, 'thirty-seven thousand two hundred forty');\nINSERT INTO t3 VALUES(498, 25358, 'twenty-five thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(499, 90833, 'ninety thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(500, 67689, 'sixty-seven thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(501, 86135, 'eighty-six thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(502, 72655, 'seventy-two thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(503, 14299, 'fourteen thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(504, 58565, 'fifty-eight thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(505, 51039, 'fifty-one thousand thirty-nine');\nINSERT INTO t3 VALUES(506, 3781, 'three thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(507, 53031, 'fifty-three thousand thirty-one');\nINSERT INTO t3 VALUES(508, 83820, 'eighty-three thousand eight hundred twenty');\nINSERT INTO t3 VALUES(509, 52689, 'fifty-two thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(510, 75502, 'seventy-five thousand five hundred two');\nINSERT INTO t3 VALUES(511, 67061, 'sixty-seven thousand sixty-one');\nINSERT INTO t3 VALUES(512, 48192, 'forty-eight thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(513, 43987, 'forty-three thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(514, 79375, 'seventy-nine thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(515, 88227, 'eighty-eight thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(516, 31058, 'thirty-one thousand fifty-eight');\nINSERT INTO t3 VALUES(517, 66045, 'sixty-six thousand forty-five');\nINSERT INTO t3 VALUES(518, 33816, 'thirty-three thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(519, 20901, 'twenty thousand nine hundred one');\nINSERT INTO t3 VALUES(520, 97866, 'ninety-seven thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(521, 95757, 'ninety-five thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(522, 5770, 'five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(523, 35260, 'thirty-five thousand two hundred sixty');\nINSERT INTO t3 VALUES(524, 27704, 'twenty-seven thousand seven hundred four');\nINSERT INTO t3 VALUES(525, 57938, 'fifty-seven thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(526, 40212, 'forty thousand two hundred twelve');\nINSERT INTO t3 VALUES(527, 23433, 'twenty-three thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(528, 53782, 'fifty-three thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(529, 91027, 'ninety-one thousand twenty-seven');\nINSERT INTO t3 VALUES(530, 24951, 'twenty-four thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(531, 14166, 'fourteen thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(532, 4291, 'four thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(533, 16897, 'sixteen thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(534, 30100, 'thirty thousand one hundred');\nINSERT INTO t3 VALUES(535, 15943, 'fifteen thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(536, 61552, 'sixty-one thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(537, 28251, 'twenty-eight thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(538, 74560, 'seventy-four thousand five hundred sixty');\nINSERT INTO t3 VALUES(539, 63732, 'sixty-three thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(540, 56346, 'fifty-six thousand three hundred forty-six');\nINSERT INTO t3 VALUES(541, 19525, 'nineteen thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(542, 46029, 'forty-six thousand twenty-nine');\nINSERT INTO t3 VALUES(543, 90910, 'ninety thousand nine hundred ten');\nINSERT INTO t3 VALUES(544, 71723, 'seventy-one thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(545, 79085, 'seventy-nine thousand eighty-five');\nINSERT INTO t3 VALUES(546, 92607, 'ninety-two thousand six hundred seven');\nINSERT INTO t3 VALUES(547, 96583, 'ninety-six thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(548, 74964, 'seventy-four thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(549, 31048, 'thirty-one thousand forty-eight');\nINSERT INTO t3 VALUES(550, 78469, 'seventy-eight thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(551, 55499, 'fifty-five thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(552, 92389, 'ninety-two thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(553, 91848, 'ninety-one thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(554, 65795, 'sixty-five thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(555, 22453, 'twenty-two thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(556, 31578, 'thirty-one thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(557, 47322, 'forty-seven thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(558, 5279, 'five thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(559, 97232, 'ninety-seven thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(560, 41765, 'forty-one thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(561, 19565, 'nineteen thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(562, 90673, 'ninety thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(563, 34856, 'thirty-four thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(564, 18369, 'eighteen thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(565, 66398, 'sixty-six thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(566, 52590, 'fifty-two thousand five hundred ninety');\nINSERT INTO t3 VALUES(567, 91644, 'ninety-one thousand six hundred forty-four');\nINSERT INTO t3 VALUES(568, 34637, 'thirty-four thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(569, 9244, 'nine thousand two hundred forty-four');\nINSERT INTO t3 VALUES(570, 76019, 'seventy-six thousand nineteen');\nINSERT INTO t3 VALUES(571, 40624, 'forty thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(572, 23892, 'twenty-three thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(573, 12027, 'twelve thousand twenty-seven');\nINSERT INTO t3 VALUES(574, 87744, 'eighty-seven thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(575, 92241, 'ninety-two thousand two hundred forty-one');\nINSERT INTO t3 VALUES(576, 18570, 'eighteen thousand five hundred seventy');\nINSERT INTO t3 VALUES(577, 12463, 'twelve thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(578, 27663, 'twenty-seven thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(579, 98405, 'ninety-eight thousand four hundred five');\nINSERT INTO t3 VALUES(580, 97899, 'ninety-seven thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(581, 93129, 'ninety-three thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(582, 58876, 'fifty-eight thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(583, 75761, 'seventy-five thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(584, 3080, 'three thousand eighty');\nINSERT INTO t3 VALUES(585, 43332, 'forty-three thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(586, 50589, 'fifty thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(587, 23157, 'twenty-three thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(588, 71354, 'seventy-one thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(589, 29656, 'twenty-nine thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(590, 34077, 'thirty-four thousand seventy-seven');\nINSERT INTO t3 VALUES(591, 86707, 'eighty-six thousand seven hundred seven');\nINSERT INTO t3 VALUES(592, 8135, 'eight thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(593, 49190, 'forty-nine thousand one hundred ninety');\nINSERT INTO t3 VALUES(594, 24109, 'twenty-four thousand one hundred nine');\nINSERT INTO t3 VALUES(595, 2553, 'two thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(596, 8775, 'eight thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(597, 4192, 'four thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(598, 16535, 'sixteen thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(599, 70100, 'seventy thousand one hundred');\nINSERT INTO t3 VALUES(600, 72784, 'seventy-two thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(601, 85207, 'eighty-five thousand two hundred seven');\nINSERT INTO t3 VALUES(602, 84033, 'eighty-four thousand thirty-three');\nINSERT INTO t3 VALUES(603, 50289, 'fifty thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(604, 45270, 'forty-five thousand two hundred seventy');\nINSERT INTO t3 VALUES(605, 15121, 'fifteen thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(606, 96021, 'ninety-six thousand twenty-one');\nINSERT INTO t3 VALUES(607, 1700, 'one thousand seven hundred');\nINSERT INTO t3 VALUES(608, 32762, 'thirty-two thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(609, 98766, 'ninety-eight thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(610, 4557, 'four thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(611, 41504, 'forty-one thousand five hundred four');\nINSERT INTO t3 VALUES(612, 87199, 'eighty-seven thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(613, 55255, 'fifty-five thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(614, 83727, 'eighty-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(615, 9000, 'nine thousand');\nINSERT INTO t3 VALUES(616, 22676, 'twenty-two thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(617, 97094, 'ninety-seven thousand ninety-four');\nINSERT INTO t3 VALUES(618, 66160, 'sixty-six thousand one hundred sixty');\nINSERT INTO t3 VALUES(619, 53497, 'fifty-three thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(620, 61579, 'sixty-one thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(621, 86571, 'eighty-six thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(622, 2308, 'two thousand three hundred eight');\nINSERT INTO t3 VALUES(623, 35960, 'thirty-five thousand nine hundred sixty');\nINSERT INTO t3 VALUES(624, 98290, 'ninety-eight thousand two hundred ninety');\nINSERT INTO t3 VALUES(625, 22605, 'twenty-two thousand six hundred five');\nINSERT INTO t3 VALUES(626, 73700, 'seventy-three thousand seven hundred');\nINSERT INTO t3 VALUES(627, 76160, 'seventy-six thousand one hundred sixty');\nINSERT INTO t3 VALUES(628, 63164, 'sixty-three thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(629, 54301, 'fifty-four thousand three hundred one');\nINSERT INTO t3 VALUES(630, 89457, 'eighty-nine thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(631, 9100, 'nine thousand one hundred');\nINSERT INTO t3 VALUES(632, 45220, 'forty-five thousand two hundred twenty');\nINSERT INTO t3 VALUES(633, 44339, 'forty-four thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(634, 99875, 'ninety-nine thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(635, 36622, 'thirty-six thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(636, 22818, 'twenty-two thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(637, 45079, 'forty-five thousand seventy-nine');\nINSERT INTO t3 VALUES(638, 79120, 'seventy-nine thousand one hundred twenty');\nINSERT INTO t3 VALUES(639, 19298, 'nineteen thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(640, 71225, 'seventy-one thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(641, 21129, 'twenty-one thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(642, 89568, 'eighty-nine thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(643, 39972, 'thirty-nine thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(644, 68251, 'sixty-eight thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(645, 26025, 'twenty-six thousand twenty-five');\nINSERT INTO t3 VALUES(646, 66601, 'sixty-six thousand six hundred one');\nINSERT INTO t3 VALUES(647, 96932, 'ninety-six thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(648, 87168, 'eighty-seven thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(649, 96357, 'ninety-six thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(650, 20298, 'twenty thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(651, 37545, 'thirty-seven thousand five hundred forty-five');\nINSERT INTO t3 VALUES(652, 65636, 'sixty-five thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(653, 94130, 'ninety-four thousand one hundred thirty');\nINSERT INTO t3 VALUES(654, 81967, 'eighty-one thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(655, 20700, 'twenty thousand seven hundred');\nINSERT INTO t3 VALUES(656, 4484, 'four thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(657, 27452, 'twenty-seven thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(658, 76292, 'seventy-six thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(659, 42300, 'forty-two thousand three hundred');\nINSERT INTO t3 VALUES(660, 40073, 'forty thousand seventy-three');\nINSERT INTO t3 VALUES(661, 28949, 'twenty-eight thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(662, 36759, 'thirty-six thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(663, 29034, 'twenty-nine thousand thirty-four');\nINSERT INTO t3 VALUES(664, 52711, 'fifty-two thousand seven hundred eleven');\nINSERT INTO t3 VALUES(665, 79385, 'seventy-nine thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(666, 12945, 'twelve thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(667, 10377, 'ten thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(668, 28079, 'twenty-eight thousand seventy-nine');\nINSERT INTO t3 VALUES(669, 89753, 'eighty-nine thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(670, 8605, 'eight thousand six hundred five');\nINSERT INTO t3 VALUES(671, 37018, 'thirty-seven thousand eighteen');\nINSERT INTO t3 VALUES(672, 66150, 'sixty-six thousand one hundred fifty');\nINSERT INTO t3 VALUES(673, 66564, 'sixty-six thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(674, 99011, 'ninety-nine thousand eleven');\nINSERT INTO t3 VALUES(675, 68395, 'sixty-eight thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(676, 69904, 'sixty-nine thousand nine hundred four');\nINSERT INTO t3 VALUES(677, 34993, 'thirty-four thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(678, 2401, 'two thousand four hundred one');\nINSERT INTO t3 VALUES(679, 24145, 'twenty-four thousand one hundred forty-five');\nINSERT INTO t3 VALUES(680, 86250, 'eighty-six thousand two hundred fifty');\nINSERT INTO t3 VALUES(681, 58318, 'fifty-eight thousand three hundred eighteen');\nINSERT INTO t3 VALUES(682, 44353, 'forty-four thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(683, 45887, 'forty-five thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(684, 51925, 'fifty-one thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(685, 52235, 'fifty-two thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(686, 52428, 'fifty-two thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(687, 38146, 'thirty-eight thousand one hundred forty-six');\nINSERT INTO t3 VALUES(688, 68723, 'sixty-eight thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(689, 60883, 'sixty thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(690, 18111, 'eighteen thousand one hundred eleven');\nINSERT INTO t3 VALUES(691, 91083, 'ninety-one thousand eighty-three');\nINSERT INTO t3 VALUES(692, 73801, 'seventy-three thousand eight hundred one');\nINSERT INTO t3 VALUES(693, 78093, 'seventy-eight thousand ninety-three');\nINSERT INTO t3 VALUES(694, 478, 'four hundred seventy-eight');\nINSERT INTO t3 VALUES(695, 53728, 'fifty-three thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(696, 16203, 'sixteen thousand two hundred three');\nINSERT INTO t3 VALUES(697, 32014, 'thirty-two thousand fourteen');\nINSERT INTO t3 VALUES(698, 54762, 'fifty-four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(699, 39265, 'thirty-nine thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(700, 98331, 'ninety-eight thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(701, 72738, 'seventy-two thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(702, 93239, 'ninety-three thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(703, 83486, 'eighty-three thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(704, 63304, 'sixty-three thousand three hundred four');\nINSERT INTO t3 VALUES(705, 51732, 'fifty-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(706, 59997, 'fifty-nine thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(707, 95198, 'ninety-five thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(708, 64717, 'sixty-four thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(709, 77278, 'seventy-seven thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(710, 60032, 'sixty thousand thirty-two');\nINSERT INTO t3 VALUES(711, 30972, 'thirty thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(712, 18631, 'eighteen thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(713, 85011, 'eighty-five thousand eleven');\nINSERT INTO t3 VALUES(714, 54491, 'fifty-four thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(715, 3144, 'three thousand one hundred forty-four');\nINSERT INTO t3 VALUES(716, 46631, 'forty-six thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(717, 26420, 'twenty-six thousand four hundred twenty');\nINSERT INTO t3 VALUES(718, 60444, 'sixty thousand four hundred forty-four');\nINSERT INTO t3 VALUES(719, 93079, 'ninety-three thousand seventy-nine');\nINSERT INTO t3 VALUES(720, 65486, 'sixty-five thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(721, 37657, 'thirty-seven thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(722, 89554, 'eighty-nine thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(723, 34795, 'thirty-four thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(724, 61849, 'sixty-one thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(725, 50893, 'fifty thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(726, 54824, 'fifty-four thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(727, 70141, 'seventy thousand one hundred forty-one');\nINSERT INTO t3 VALUES(728, 18785, 'eighteen thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(729, 71155, 'seventy-one thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(730, 82657, 'eighty-two thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(731, 49123, 'forty-nine thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(732, 30704, 'thirty thousand seven hundred four');\nINSERT INTO t3 VALUES(733, 34632, 'thirty-four thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(734, 6440, 'six thousand four hundred forty');\nINSERT INTO t3 VALUES(735, 39917, 'thirty-nine thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(736, 92176, 'ninety-two thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(737, 34647, 'thirty-four thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(738, 13096, 'thirteen thousand ninety-six');\nINSERT INTO t3 VALUES(739, 15165, 'fifteen thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(740, 26303, 'twenty-six thousand three hundred three');\nINSERT INTO t3 VALUES(741, 63149, 'sixty-three thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(742, 643, 'six hundred forty-three');\nINSERT INTO t3 VALUES(743, 46377, 'forty-six thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(744, 75722, 'seventy-five thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(745, 904, 'nine hundred four');\nINSERT INTO t3 VALUES(746, 35726, 'thirty-five thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(747, 31409, 'thirty-one thousand four hundred nine');\nINSERT INTO t3 VALUES(748, 96595, 'ninety-six thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(749, 405, 'four hundred five');\nINSERT INTO t3 VALUES(750, 78860, 'seventy-eight thousand eight hundred sixty');\nINSERT INTO t3 VALUES(751, 78491, 'seventy-eight thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(752, 75500, 'seventy-five thousand five hundred');\nINSERT INTO t3 VALUES(753, 88873, 'eighty-eight thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(754, 75943, 'seventy-five thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(755, 87013, 'eighty-seven thousand thirteen');\nINSERT INTO t3 VALUES(756, 80357, 'eighty thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(757, 58039, 'fifty-eight thousand thirty-nine');\nINSERT INTO t3 VALUES(758, 33498, 'thirty-three thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(759, 63703, 'sixty-three thousand seven hundred three');\nINSERT INTO t3 VALUES(760, 14663, 'fourteen thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(761, 27734, 'twenty-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(762, 84282, 'eighty-four thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(763, 15214, 'fifteen thousand two hundred fourteen');\nINSERT INTO t3 VALUES(764, 47449, 'forty-seven thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(765, 30014, 'thirty thousand fourteen');\nINSERT INTO t3 VALUES(766, 44734, 'forty-four thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(767, 61854, 'sixty-one thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(768, 3346, 'three thousand three hundred forty-six');\nINSERT INTO t3 VALUES(769, 35580, 'thirty-five thousand five hundred eighty');\nINSERT INTO t3 VALUES(770, 98432, 'ninety-eight thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(771, 300, 'three hundred');\nINSERT INTO t3 VALUES(772, 55376, 'fifty-five thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(773, 80877, 'eighty thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(774, 43933, 'forty-three thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(775, 51760, 'fifty-one thousand seven hundred sixty');\nINSERT INTO t3 VALUES(776, 33696, 'thirty-three thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(777, 82408, 'eighty-two thousand four hundred eight');\nINSERT INTO t3 VALUES(778, 14504, 'fourteen thousand five hundred four');\nINSERT INTO t3 VALUES(779, 50108, 'fifty thousand one hundred eight');\nINSERT INTO t3 VALUES(780, 97058, 'ninety-seven thousand fifty-eight');\nINSERT INTO t3 VALUES(781, 74468, 'seventy-four thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(782, 68213, 'sixty-eight thousand two hundred thirteen');\nINSERT INTO t3 VALUES(783, 1076, 'one thousand seventy-six');\nINSERT INTO t3 VALUES(784, 45271, 'forty-five thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(785, 34964, 'thirty-four thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(786, 14228, 'fourteen thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(787, 19200, 'nineteen thousand two hundred');\nINSERT INTO t3 VALUES(788, 80414, 'eighty thousand four hundred fourteen');\nINSERT INTO t3 VALUES(789, 27636, 'twenty-seven thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(790, 8214, 'eight thousand two hundred fourteen');\nINSERT INTO t3 VALUES(791, 27386, 'twenty-seven thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(792, 32242, 'thirty-two thousand two hundred forty-two');\nINSERT INTO t3 VALUES(793, 52548, 'fifty-two thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(794, 8985, 'eight thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(795, 86741, 'eighty-six thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(796, 49915, 'forty-nine thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(797, 74705, 'seventy-four thousand seven hundred five');\nINSERT INTO t3 VALUES(798, 30034, 'thirty thousand thirty-four');\nINSERT INTO t3 VALUES(799, 61239, 'sixty-one thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(800, 98196, 'ninety-eight thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(801, 91281, 'ninety-one thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(802, 84740, 'eighty-four thousand seven hundred forty');\nINSERT INTO t3 VALUES(803, 2070, 'two thousand seventy');\nINSERT INTO t3 VALUES(804, 78383, 'seventy-eight thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(805, 66789, 'sixty-six thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(806, 91529, 'ninety-one thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(807, 47484, 'forty-seven thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(808, 34303, 'thirty-four thousand three hundred three');\nINSERT INTO t3 VALUES(809, 60661, 'sixty thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(810, 99635, 'ninety-nine thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(811, 90865, 'ninety thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(812, 92401, 'ninety-two thousand four hundred one');\nINSERT INTO t3 VALUES(813, 89329, 'eighty-nine thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(814, 58767, 'fifty-eight thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(815, 38618, 'thirty-eight thousand six hundred eighteen');\nINSERT INTO t3 VALUES(816, 32645, 'thirty-two thousand six hundred forty-five');\nINSERT INTO t3 VALUES(817, 60147, 'sixty thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(818, 77130, 'seventy-seven thousand one hundred thirty');\nINSERT INTO t3 VALUES(819, 89712, 'eighty-nine thousand seven hundred twelve');\nINSERT INTO t3 VALUES(820, 84405, 'eighty-four thousand four hundred five');\nINSERT INTO t3 VALUES(821, 68079, 'sixty-eight thousand seventy-nine');\nINSERT INTO t3 VALUES(822, 48312, 'forty-eight thousand three hundred twelve');\nINSERT INTO t3 VALUES(823, 52981, 'fifty-two thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(824, 67737, 'sixty-seven thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(825, 82728, 'eighty-two thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(826, 40074, 'forty thousand seventy-four');\nINSERT INTO t3 VALUES(827, 42727, 'forty-two thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(828, 25509, 'twenty-five thousand five hundred nine');\nINSERT INTO t3 VALUES(829, 25994, 'twenty-five thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(830, 3000, 'three thousand');\nINSERT INTO t3 VALUES(831, 84969, 'eighty-four thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(832, 55878, 'fifty-five thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(833, 67112, 'sixty-seven thousand one hundred twelve');\nINSERT INTO t3 VALUES(834, 83937, 'eighty-three thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(835, 81016, 'eighty-one thousand sixteen');\nINSERT INTO t3 VALUES(836, 40331, 'forty thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(837, 83067, 'eighty-three thousand sixty-seven');\nINSERT INTO t3 VALUES(838, 7500, 'seven thousand five hundred');\nINSERT INTO t3 VALUES(839, 43809, 'forty-three thousand eight hundred nine');\nINSERT INTO t3 VALUES(840, 10120, 'ten thousand one hundred twenty');\nINSERT INTO t3 VALUES(841, 69871, 'sixty-nine thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(842, 63592, 'sixty-three thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(843, 77310, 'seventy-seven thousand three hundred ten');\nINSERT INTO t3 VALUES(844, 73925, 'seventy-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(845, 38003, 'thirty-eight thousand three');\nINSERT INTO t3 VALUES(846, 72814, 'seventy-two thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(847, 74602, 'seventy-four thousand six hundred two');\nINSERT INTO t3 VALUES(848, 91671, 'ninety-one thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(849, 72281, 'seventy-two thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(850, 26861, 'twenty-six thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(851, 12126, 'twelve thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(852, 5096, 'five thousand ninety-six');\nINSERT INTO t3 VALUES(853, 1116, 'one thousand one hundred sixteen');\nINSERT INTO t3 VALUES(854, 80169, 'eighty thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(855, 62297, 'sixty-two thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(856, 7367, 'seven thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(857, 16942, 'sixteen thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(858, 6685, 'six thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(859, 93081, 'ninety-three thousand eighty-one');\nINSERT INTO t3 VALUES(860, 76562, 'seventy-six thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(861, 89286, 'eighty-nine thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(862, 72002, 'seventy-two thousand two');\nINSERT INTO t3 VALUES(863, 46896, 'forty-six thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(864, 91762, 'ninety-one thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(865, 79775, 'seventy-nine thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(866, 56480, 'fifty-six thousand four hundred eighty');\nINSERT INTO t3 VALUES(867, 56775, 'fifty-six thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(868, 23043, 'twenty-three thousand forty-three');\nINSERT INTO t3 VALUES(869, 71859, 'seventy-one thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(870, 2224, 'two thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(871, 33439, 'thirty-three thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(872, 49639, 'forty-nine thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(873, 35035, 'thirty-five thousand thirty-five');\nINSERT INTO t3 VALUES(874, 24312, 'twenty-four thousand three hundred twelve');\nINSERT INTO t3 VALUES(875, 58095, 'fifty-eight thousand ninety-five');\nINSERT INTO t3 VALUES(876, 93932, 'ninety-three thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(877, 43410, 'forty-three thousand four hundred ten');\nINSERT INTO t3 VALUES(878, 77814, 'seventy-seven thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(879, 8232, 'eight thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(880, 2192, 'two thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(881, 7342, 'seven thousand three hundred forty-two');\nINSERT INTO t3 VALUES(882, 77610, 'seventy-seven thousand six hundred ten');\nINSERT INTO t3 VALUES(883, 48520, 'forty-eight thousand five hundred twenty');\nINSERT INTO t3 VALUES(884, 848, 'eight hundred forty-eight');\nINSERT INTO t3 VALUES(885, 59646, 'fifty-nine thousand six hundred forty-six');\nINSERT INTO t3 VALUES(886, 69356, 'sixty-nine thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(887, 14891, 'fourteen thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(888, 6407, 'six thousand four hundred seven');\nINSERT INTO t3 VALUES(889, 35514, 'thirty-five thousand five hundred fourteen');\nINSERT INTO t3 VALUES(890, 68643, 'sixty-eight thousand six hundred forty-three');\nINSERT INTO t3 VALUES(891, 86636, 'eighty-six thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(892, 39365, 'thirty-nine thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(893, 44205, 'forty-four thousand two hundred five');\nINSERT INTO t3 VALUES(894, 5198, 'five thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(895, 5597, 'five thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(896, 3459, 'three thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(897, 4188, 'four thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(898, 98567, 'ninety-eight thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(899, 17567, 'seventeen thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(900, 22720, 'twenty-two thousand seven hundred twenty');\nINSERT INTO t3 VALUES(901, 99730, 'ninety-nine thousand seven hundred thirty');\nINSERT INTO t3 VALUES(902, 16445, 'sixteen thousand four hundred forty-five');\nINSERT INTO t3 VALUES(903, 68994, 'sixty-eight thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(904, 93584, 'ninety-three thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(905, 86750, 'eighty-six thousand seven hundred fifty');\nINSERT INTO t3 VALUES(906, 80181, 'eighty thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(907, 53732, 'fifty-three thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(908, 73027, 'seventy-three thousand twenty-seven');\nINSERT INTO t3 VALUES(909, 16179, 'sixteen thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(910, 84827, 'eighty-four thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(911, 78361, 'seventy-eight thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(912, 4261, 'four thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(913, 96227, 'ninety-six thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(914, 17073, 'seventeen thousand seventy-three');\nINSERT INTO t3 VALUES(915, 97, 'ninety-seven');\nINSERT INTO t3 VALUES(916, 92380, 'ninety-two thousand three hundred eighty');\nINSERT INTO t3 VALUES(917, 61506, 'sixty-one thousand five hundred six');\nINSERT INTO t3 VALUES(918, 50585, 'fifty thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(919, 56705, 'fifty-six thousand seven hundred five');\nINSERT INTO t3 VALUES(920, 38685, 'thirty-eight thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(921, 83442, 'eighty-three thousand four hundred forty-two');\nINSERT INTO t3 VALUES(922, 11260, 'eleven thousand two hundred sixty');\nINSERT INTO t3 VALUES(923, 21660, 'twenty-one thousand six hundred sixty');\nINSERT INTO t3 VALUES(924, 79802, 'seventy-nine thousand eight hundred two');\nINSERT INTO t3 VALUES(925, 16513, 'sixteen thousand five hundred thirteen');\nINSERT INTO t3 VALUES(926, 30555, 'thirty thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(927, 79963, 'seventy-nine thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(928, 7254, 'seven thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(929, 62226, 'sixty-two thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(930, 25716, 'twenty-five thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(931, 66617, 'sixty-six thousand six hundred seventeen');\nINSERT INTO t3 VALUES(932, 73791, 'seventy-three thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(933, 40546, 'forty thousand five hundred forty-six');\nINSERT INTO t3 VALUES(934, 19036, 'nineteen thousand thirty-six');\nINSERT INTO t3 VALUES(935, 12583, 'twelve thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(936, 59331, 'fifty-nine thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(937, 72492, 'seventy-two thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(938, 69492, 'sixty-nine thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(939, 73907, 'seventy-three thousand nine hundred seven');\nINSERT INTO t3 VALUES(940, 8321, 'eight thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(941, 53600, 'fifty-three thousand six hundred');\nINSERT INTO t3 VALUES(942, 10347, 'ten thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(943, 95048, 'ninety-five thousand forty-eight');\nINSERT INTO t3 VALUES(944, 87508, 'eighty-seven thousand five hundred eight');\nINSERT INTO t3 VALUES(945, 67881, 'sixty-seven thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(946, 16788, 'sixteen thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(947, 46220, 'forty-six thousand two hundred twenty');\nINSERT INTO t3 VALUES(948, 22600, 'twenty-two thousand six hundred');\nINSERT INTO t3 VALUES(949, 55802, 'fifty-five thousand eight hundred two');\nINSERT INTO t3 VALUES(950, 10327, 'ten thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(951, 60079, 'sixty thousand seventy-nine');\nINSERT INTO t3 VALUES(952, 86346, 'eighty-six thousand three hundred forty-six');\nINSERT INTO t3 VALUES(953, 78039, 'seventy-eight thousand thirty-nine');\nINSERT INTO t3 VALUES(954, 42495, 'forty-two thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(955, 61802, 'sixty-one thousand eight hundred two');\nINSERT INTO t3 VALUES(956, 74935, 'seventy-four thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(957, 32848, 'thirty-two thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(958, 22843, 'twenty-two thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(959, 43434, 'forty-three thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(960, 55140, 'fifty-five thousand one hundred forty');\nINSERT INTO t3 VALUES(961, 25101, 'twenty-five thousand one hundred one');\nINSERT INTO t3 VALUES(962, 66892, 'sixty-six thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(963, 84404, 'eighty-four thousand four hundred four');\nINSERT INTO t3 VALUES(964, 95016, 'ninety-five thousand sixteen');\nINSERT INTO t3 VALUES(965, 82669, 'eighty-two thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(966, 47664, 'forty-seven thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(967, 67050, 'sixty-seven thousand fifty');\nINSERT INTO t3 VALUES(968, 65685, 'sixty-five thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(969, 13432, 'thirteen thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(970, 8364, 'eight thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(971, 33856, 'thirty-three thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(972, 38428, 'thirty-eight thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(973, 63682, 'sixty-three thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(974, 61059, 'sixty-one thousand fifty-nine');\nINSERT INTO t3 VALUES(975, 48432, 'forty-eight thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(976, 15809, 'fifteen thousand eight hundred nine');\nINSERT INTO t3 VALUES(977, 75497, 'seventy-five thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(978, 84648, 'eighty-four thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(979, 12450, 'twelve thousand four hundred fifty');\nINSERT INTO t3 VALUES(980, 91915, 'ninety-one thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(981, 72230, 'seventy-two thousand two hundred thirty');\nINSERT INTO t3 VALUES(982, 39393, 'thirty-nine thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(983, 58539, 'fifty-eight thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(984, 8203, 'eight thousand two hundred three');\nINSERT INTO t3 VALUES(985, 42106, 'forty-two thousand one hundred six');\nINSERT INTO t3 VALUES(986, 52469, 'fifty-two thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(987, 67579, 'sixty-seven thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(988, 96196, 'ninety-six thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(989, 35045, 'thirty-five thousand forty-five');\nINSERT INTO t3 VALUES(990, 90414, 'ninety thousand four hundred fourteen');\nINSERT INTO t3 VALUES(991, 30338, 'thirty thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(992, 13060, 'thirteen thousand sixty');\nINSERT INTO t3 VALUES(993, 89796, 'eighty-nine thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(994, 37165, 'thirty-seven thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(995, 47626, 'forty-seven thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(996, 48263, 'forty-eight thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(997, 89604, 'eighty-nine thousand six hundred four');\nINSERT INTO t3 VALUES(998, 22717, 'twenty-two thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(999, 96890, 'ninety-six thousand eight hundred ninety');\nINSERT INTO t3 VALUES(1000, 49281, 'forty-nine thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(1001, 97199, 'ninety-seven thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(1002, 9105, 'nine thousand one hundred five');\nINSERT INTO t3 VALUES(1003, 47038, 'forty-seven thousand thirty-eight');\nINSERT INTO t3 VALUES(1004, 47997, 'forty-seven thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(1005, 29607, 'twenty-nine thousand six hundred seven');\nINSERT INTO t3 VALUES(1006, 90974, 'ninety thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(1007, 45881, 'forty-five thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(1008, 75493, 'seventy-five thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(1009, 60427, 'sixty thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(1010, 36340, 'thirty-six thousand three hundred forty');\nINSERT INTO t3 VALUES(1011, 25776, 'twenty-five thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(1012, 2298, 'two thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(1013, 74993, 'seventy-four thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(1014, 84184, 'eighty-four thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(1015, 63766, 'sixty-three thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(1016, 57229, 'fifty-seven thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(1017, 70358, 'seventy thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(1018, 81720, 'eighty-one thousand seven hundred twenty');\nINSERT INTO t3 VALUES(1019, 75643, 'seventy-five thousand six hundred forty-three');\nINSERT INTO t3 VALUES(1020, 97854, 'ninety-seven thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(1021, 64872, 'sixty-four thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(1022, 90183, 'ninety thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(1023, 55141, 'fifty-five thousand one hundred forty-one');\nINSERT INTO t3 VALUES(1024, 40225, 'forty thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(1025, 46110, 'forty-six thousand one hundred ten');\nINSERT INTO t3 VALUES(1026, 10425, 'ten thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(1027, 51852, 'fifty-one thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(1028, 3105, 'three thousand one hundred five');\nINSERT INTO t3 VALUES(1029, 1682, 'one thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(1030, 5921, 'five thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(1031, 76812, 'seventy-six thousand eight hundred twelve');\nINSERT INTO t3 VALUES(1032, 8500, 'eight thousand five hundred');\nINSERT INTO t3 VALUES(1033, 39697, 'thirty-nine thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(1034, 26023, 'twenty-six thousand twenty-three');\nINSERT INTO t3 VALUES(1035, 63676, 'sixty-three thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(1036, 80944, 'eighty thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(1037, 5634, 'five thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(1038, 99197, 'ninety-nine thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(1039, 84278, 'eighty-four thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(1040, 79593, 'seventy-nine thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(1041, 90743, 'ninety thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(1042, 27103, 'twenty-seven thousand one hundred three');\nINSERT INTO t3 VALUES(1043, 5424, 'five thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(1044, 33033, 'thirty-three thousand thirty-three');\nINSERT INTO t3 VALUES(1045, 70460, 'seventy thousand four hundred sixty');\nINSERT INTO t3 VALUES(1046, 86249, 'eighty-six thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(1047, 15048, 'fifteen thousand forty-eight');\nINSERT INTO t3 VALUES(1048, 89487, 'eighty-nine thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(1049, 28006, 'twenty-eight thousand six');\nINSERT INTO t3 VALUES(1050, 98931, 'ninety-eight thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(1051, 68014, 'sixty-eight thousand fourteen');\nINSERT INTO t3 VALUES(1052, 2809, 'two thousand eight hundred nine');\nINSERT INTO t3 VALUES(1053, 4099, 'four thousand ninety-nine');\nINSERT INTO t3 VALUES(1054, 38381, 'thirty-eight thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(1055, 74460, 'seventy-four thousand four hundred sixty');\nINSERT INTO t3 VALUES(1056, 26766, 'twenty-six thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(1057, 57861, 'fifty-seven thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(1058, 9450, 'nine thousand four hundred fifty');\nINSERT INTO t3 VALUES(1059, 93608, 'ninety-three thousand six hundred eight');\nINSERT INTO t3 VALUES(1060, 66697, 'sixty-six thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(1061, 48693, 'forty-eight thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(1062, 71134, 'seventy-one thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(1063, 33992, 'thirty-three thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(1064, 97587, 'ninety-seven thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(1065, 88714, 'eighty-eight thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(1066, 28802, 'twenty-eight thousand eight hundred two');\nINSERT INTO t3 VALUES(1067, 69995, 'sixty-nine thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(1068, 43144, 'forty-three thousand one hundred forty-four');\nINSERT INTO t3 VALUES(1069, 66996, 'sixty-six thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(1070, 12277, 'twelve thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(1071, 41633, 'forty-one thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(1072, 712, 'seven hundred twelve');\nINSERT INTO t3 VALUES(1073, 70963, 'seventy thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(1074, 9700, 'nine thousand seven hundred');\nINSERT INTO t3 VALUES(1075, 63916, 'sixty-three thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(1076, 59439, 'fifty-nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(1077, 46112, 'forty-six thousand one hundred twelve');\nINSERT INTO t3 VALUES(1078, 79176, 'seventy-nine thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(1079, 12136, 'twelve thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(1080, 72113, 'seventy-two thousand one hundred thirteen');\nINSERT INTO t3 VALUES(1081, 79476, 'seventy-nine thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(1082, 49360, 'forty-nine thousand three hundred sixty');\nINSERT INTO t3 VALUES(1083, 24035, 'twenty-four thousand thirty-five');\nINSERT INTO t3 VALUES(1084, 38611, 'thirty-eight thousand six hundred eleven');\nINSERT INTO t3 VALUES(1085, 67502, 'sixty-seven thousand five hundred two');\nINSERT INTO t3 VALUES(1086, 15787, 'fifteen thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(1087, 45602, 'forty-five thousand six hundred two');\nINSERT INTO t3 VALUES(1088, 60098, 'sixty thousand ninety-eight');\nINSERT INTO t3 VALUES(1089, 12844, 'twelve thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(1090, 62637, 'sixty-two thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(1091, 35555, 'thirty-five thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(1092, 44883, 'forty-four thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(1093, 93964, 'ninety-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(1094, 82176, 'eighty-two thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(1095, 19420, 'nineteen thousand four hundred twenty');\nINSERT INTO t3 VALUES(1096, 15406, 'fifteen thousand four hundred six');\nINSERT INTO t3 VALUES(1097, 58163, 'fifty-eight thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(1098, 91616, 'ninety-one thousand six hundred sixteen');\nINSERT INTO t3 VALUES(1099, 91461, 'ninety-one thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(1100, 86510, 'eighty-six thousand five hundred ten');\nINSERT INTO t3 VALUES(1101, 22347, 'twenty-two thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(1102, 67932, 'sixty-seven thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(1103, 59003, 'fifty-nine thousand three');\nINSERT INTO t3 VALUES(1104, 11831, 'eleven thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(1105, 2932, 'two thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(1106, 6237, 'six thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(1107, 14253, 'fourteen thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(1108, 5294, 'five thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(1109, 41001, 'forty-one thousand one');\nINSERT INTO t3 VALUES(1110, 97290, 'ninety-seven thousand two hundred ninety');\nINSERT INTO t3 VALUES(1111, 343, 'three hundred forty-three');\nINSERT INTO t3 VALUES(1112, 33607, 'thirty-three thousand six hundred seven');\nINSERT INTO t3 VALUES(1113, 17415, 'seventeen thousand four hundred fifteen');\nINSERT INTO t3 VALUES(1114, 60356, 'sixty thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(1115, 2445, 'two thousand four hundred forty-five');\nINSERT INTO t3 VALUES(1116, 31461, 'thirty-one thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(1117, 73244, 'seventy-three thousand two hundred forty-four');\nINSERT INTO t3 VALUES(1118, 30405, 'thirty thousand four hundred five');\nINSERT INTO t3 VALUES(1119, 9412, 'nine thousand four hundred twelve');\nINSERT INTO t3 VALUES(1120, 20592, 'twenty thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(1121, 85501, 'eighty-five thousand five hundred one');\nINSERT INTO t3 VALUES(1122, 53561, 'fifty-three thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(1123, 9897, 'nine thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(1124, 5217, 'five thousand two hundred seventeen');\nINSERT INTO t3 VALUES(1125, 97865, 'ninety-seven thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(1126, 11106, 'eleven thousand one hundred six');\nINSERT INTO t3 VALUES(1127, 97398, 'ninety-seven thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(1128, 50152, 'fifty thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(1129, 73310, 'seventy-three thousand three hundred ten');\nINSERT INTO t3 VALUES(1130, 56210, 'fifty-six thousand two hundred ten');\nINSERT INTO t3 VALUES(1131, 93117, 'ninety-three thousand one hundred seventeen');\nINSERT INTO t3 VALUES(1132, 42559, 'forty-two thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(1133, 58212, 'fifty-eight thousand two hundred twelve');\nINSERT INTO t3 VALUES(1134, 55497, 'fifty-five thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(1135, 96013, 'ninety-six thousand thirteen');\nINSERT INTO t3 VALUES(1136, 94608, 'ninety-four thousand six hundred eight');\nINSERT INTO t3 VALUES(1137, 26072, 'twenty-six thousand seventy-two');\nINSERT INTO t3 VALUES(1138, 20988, 'twenty thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(1139, 43531, 'forty-three thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(1140, 89146, 'eighty-nine thousand one hundred forty-six');\nINSERT INTO t3 VALUES(1141, 62142, 'sixty-two thousand one hundred forty-two');\nINSERT INTO t3 VALUES(1142, 46807, 'forty-six thousand eight hundred seven');\nINSERT INTO t3 VALUES(1143, 86238, 'eighty-six thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(1144, 83926, 'eighty-three thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(1145, 71668, 'seventy-one thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(1146, 61916, 'sixty-one thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(1147, 38403, 'thirty-eight thousand four hundred three');\nINSERT INTO t3 VALUES(1148, 82548, 'eighty-two thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(1149, 81750, 'eighty-one thousand seven hundred fifty');\nINSERT INTO t3 VALUES(1150, 20317, 'twenty thousand three hundred seventeen');\nINSERT INTO t3 VALUES(1151, 71943, 'seventy-one thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(1152, 29755, 'twenty-nine thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(1153, 67979, 'sixty-seven thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(1154, 24984, 'twenty-four thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(1155, 77664, 'seventy-seven thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(1156, 4511, 'four thousand five hundred eleven');\nINSERT INTO t3 VALUES(1157, 85346, 'eighty-five thousand three hundred forty-six');\nINSERT INTO t3 VALUES(1158, 39469, 'thirty-nine thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(1159, 82021, 'eighty-two thousand twenty-one');\nINSERT INTO t3 VALUES(1160, 16319, 'sixteen thousand three hundred nineteen');\nINSERT INTO t3 VALUES(1161, 88589, 'eighty-eight thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(1162, 12892, 'twelve thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(1163, 30032, 'thirty thousand thirty-two');\nINSERT INTO t3 VALUES(1164, 16998, 'sixteen thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(1165, 80012, 'eighty thousand twelve');\nINSERT INTO t3 VALUES(1166, 59783, 'fifty-nine thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(1167, 19293, 'nineteen thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(1168, 1817, 'one thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(1169, 19305, 'nineteen thousand three hundred five');\nINSERT INTO t3 VALUES(1170, 63337, 'sixty-three thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(1171, 21406, 'twenty-one thousand four hundred six');\nINSERT INTO t3 VALUES(1172, 38956, 'thirty-eight thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(1173, 37556, 'thirty-seven thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(1174, 41018, 'forty-one thousand eighteen');\nINSERT INTO t3 VALUES(1175, 89937, 'eighty-nine thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(1176, 66116, 'sixty-six thousand one hundred sixteen');\nINSERT INTO t3 VALUES(1177, 70582, 'seventy thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(1178, 59643, 'fifty-nine thousand six hundred forty-three');\nINSERT INTO t3 VALUES(1179, 57124, 'fifty-seven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(1180, 28428, 'twenty-eight thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(1181, 23417, 'twenty-three thousand four hundred seventeen');\nINSERT INTO t3 VALUES(1182, 90882, 'ninety thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(1183, 68251, 'sixty-eight thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(1184, 32942, 'thirty-two thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(1185, 90299, 'ninety thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(1186, 48094, 'forty-eight thousand ninety-four');\nINSERT INTO t3 VALUES(1187, 59916, 'fifty-nine thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(1188, 90808, 'ninety thousand eight hundred eight');\nINSERT INTO t3 VALUES(1189, 51195, 'fifty-one thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(1190, 37695, 'thirty-seven thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(1191, 1001, 'one thousand one');\nINSERT INTO t3 VALUES(1192, 69242, 'sixty-nine thousand two hundred forty-two');\nINSERT INTO t3 VALUES(1193, 63726, 'sixty-three thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(1194, 27518, 'twenty-seven thousand five hundred eighteen');\nINSERT INTO t3 VALUES(1195, 36308, 'thirty-six thousand three hundred eight');\nINSERT INTO t3 VALUES(1196, 6083, 'six thousand eighty-three');\nINSERT INTO t3 VALUES(1197, 47512, 'forty-seven thousand five hundred twelve');\nINSERT INTO t3 VALUES(1198, 16219, 'sixteen thousand two hundred nineteen');\nINSERT INTO t3 VALUES(1199, 53244, 'fifty-three thousand two hundred forty-four');\nINSERT INTO t3 VALUES(1200, 56966, 'fifty-six thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(1201, 68968, 'sixty-eight thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(1202, 73409, 'seventy-three thousand four hundred nine');\nINSERT INTO t3 VALUES(1203, 17591, 'seventeen thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(1204, 85015, 'eighty-five thousand fifteen');\nINSERT INTO t3 VALUES(1205, 58168, 'fifty-eight thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(1206, 67212, 'sixty-seven thousand two hundred twelve');\nINSERT INTO t3 VALUES(1207, 5715, 'five thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(1208, 30513, 'thirty thousand five hundred thirteen');\nINSERT INTO t3 VALUES(1209, 13270, 'thirteen thousand two hundred seventy');\nINSERT INTO t3 VALUES(1210, 81577, 'eighty-one thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(1211, 65057, 'sixty-five thousand fifty-seven');\nINSERT INTO t3 VALUES(1212, 13964, 'thirteen thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(1213, 55689, 'fifty-five thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(1214, 51240, 'fifty-one thousand two hundred forty');\nINSERT INTO t3 VALUES(1215, 96727, 'ninety-six thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(1216, 58780, 'fifty-eight thousand seven hundred eighty');\nINSERT INTO t3 VALUES(1217, 49104, 'forty-nine thousand one hundred four');\nINSERT INTO t3 VALUES(1218, 7745, 'seven thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(1219, 11196, 'eleven thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(1220, 46401, 'forty-six thousand four hundred one');\nINSERT INTO t3 VALUES(1221, 21603, 'twenty-one thousand six hundred three');\nINSERT INTO t3 VALUES(1222, 38565, 'thirty-eight thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(1223, 41527, 'forty-one thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(1224, 97123, 'ninety-seven thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(1225, 77124, 'seventy-seven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(1226, 92537, 'ninety-two thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(1227, 57471, 'fifty-seven thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(1228, 60445, 'sixty thousand four hundred forty-five');\nINSERT INTO t3 VALUES(1229, 54092, 'fifty-four thousand ninety-two');\nINSERT INTO t3 VALUES(1230, 38603, 'thirty-eight thousand six hundred three');\nINSERT INTO t3 VALUES(1231, 70173, 'seventy thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(1232, 87517, 'eighty-seven thousand five hundred seventeen');\nINSERT INTO t3 VALUES(1233, 11572, 'eleven thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(1234, 31249, 'thirty-one thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(1235, 25790, 'twenty-five thousand seven hundred ninety');\nINSERT INTO t3 VALUES(1236, 26701, 'twenty-six thousand seven hundred one');\nINSERT INTO t3 VALUES(1237, 96441, 'ninety-six thousand four hundred forty-one');\nINSERT INTO t3 VALUES(1238, 57908, 'fifty-seven thousand nine hundred eight');\nINSERT INTO t3 VALUES(1239, 68899, 'sixty-eight thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(1240, 65198, 'sixty-five thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(1241, 48083, 'forty-eight thousand eighty-three');\nINSERT INTO t3 VALUES(1242, 48974, 'forty-eight thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(1243, 33636, 'thirty-three thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(1244, 86883, 'eighty-six thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(1245, 24118, 'twenty-four thousand one hundred eighteen');\nINSERT INTO t3 VALUES(1246, 11624, 'eleven thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(1247, 71832, 'seventy-one thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(1248, 14241, 'fourteen thousand two hundred forty-one');\nINSERT INTO t3 VALUES(1249, 13727, 'thirteen thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(1250, 98896, 'ninety-eight thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(1251, 22466, 'twenty-two thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(1252, 51965, 'fifty-one thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(1253, 5811, 'five thousand eight hundred eleven');\nINSERT INTO t3 VALUES(1254, 82040, 'eighty-two thousand forty');\nINSERT INTO t3 VALUES(1255, 42197, 'forty-two thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(1256, 71055, 'seventy-one thousand fifty-five');\nINSERT INTO t3 VALUES(1257, 79098, 'seventy-nine thousand ninety-eight');\nINSERT INTO t3 VALUES(1258, 29148, 'twenty-nine thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(1259, 61808, 'sixty-one thousand eight hundred eight');\nINSERT INTO t3 VALUES(1260, 10755, 'ten thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(1261, 6921, 'six thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(1262, 80787, 'eighty thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(1263, 3455, 'three thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(1264, 9138, 'nine thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(1265, 13898, 'thirteen thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(1266, 94168, 'ninety-four thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(1267, 15361, 'fifteen thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(1268, 66571, 'sixty-six thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(1269, 98644, 'ninety-eight thousand six hundred forty-four');\nINSERT INTO t3 VALUES(1270, 2464, 'two thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(1271, 3054, 'three thousand fifty-four');\nINSERT INTO t3 VALUES(1272, 98150, 'ninety-eight thousand one hundred fifty');\nINSERT INTO t3 VALUES(1273, 30894, 'thirty thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(1274, 78137, 'seventy-eight thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(1275, 87380, 'eighty-seven thousand three hundred eighty');\nINSERT INTO t3 VALUES(1276, 96748, 'ninety-six thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(1277, 8470, 'eight thousand four hundred seventy');\nINSERT INTO t3 VALUES(1278, 91619, 'ninety-one thousand six hundred nineteen');\nINSERT INTO t3 VALUES(1279, 47809, 'forty-seven thousand eight hundred nine');\nINSERT INTO t3 VALUES(1280, 46125, 'forty-six thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(1281, 28577, 'twenty-eight thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(1282, 94539, 'ninety-four thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(1283, 87306, 'eighty-seven thousand three hundred six');\nINSERT INTO t3 VALUES(1284, 85815, 'eighty-five thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(1285, 78595, 'seventy-eight thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(1286, 13517, 'thirteen thousand five hundred seventeen');\nINSERT INTO t3 VALUES(1287, 50245, 'fifty thousand two hundred forty-five');\nINSERT INTO t3 VALUES(1288, 77424, 'seventy-seven thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(1289, 15876, 'fifteen thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(1290, 22920, 'twenty-two thousand nine hundred twenty');\nINSERT INTO t3 VALUES(1291, 64435, 'sixty-four thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(1292, 76768, 'seventy-six thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(1293, 43391, 'forty-three thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(1294, 34950, 'thirty-four thousand nine hundred fifty');\nINSERT INTO t3 VALUES(1295, 25178, 'twenty-five thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(1296, 56805, 'fifty-six thousand eight hundred five');\nINSERT INTO t3 VALUES(1297, 91578, 'ninety-one thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(1298, 809, 'eight hundred nine');\nINSERT INTO t3 VALUES(1299, 37088, 'thirty-seven thousand eighty-eight');\nINSERT INTO t3 VALUES(1300, 98258, 'ninety-eight thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(1301, 10616, 'ten thousand six hundred sixteen');\nINSERT INTO t3 VALUES(1302, 57352, 'fifty-seven thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(1303, 15, 'fifteen');\nINSERT INTO t3 VALUES(1304, 43089, 'forty-three thousand eighty-nine');\nINSERT INTO t3 VALUES(1305, 60424, 'sixty thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(1306, 37851, 'thirty-seven thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(1307, 86969, 'eighty-six thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(1308, 14795, 'fourteen thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(1309, 92219, 'ninety-two thousand two hundred nineteen');\nINSERT INTO t3 VALUES(1310, 59566, 'fifty-nine thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(1311, 31151, 'thirty-one thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(1312, 42130, 'forty-two thousand one hundred thirty');\nINSERT INTO t3 VALUES(1313, 66603, 'sixty-six thousand six hundred three');\nINSERT INTO t3 VALUES(1314, 6130, 'six thousand one hundred thirty');\nINSERT INTO t3 VALUES(1315, 52192, 'fifty-two thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(1316, 16269, 'sixteen thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(1317, 90244, 'ninety thousand two hundred forty-four');\nINSERT INTO t3 VALUES(1318, 7823, 'seven thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(1319, 40621, 'forty thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(1320, 24321, 'twenty-four thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(1321, 37443, 'thirty-seven thousand four hundred forty-three');\nINSERT INTO t3 VALUES(1322, 79623, 'seventy-nine thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(1323, 30079, 'thirty thousand seventy-nine');\nINSERT INTO t3 VALUES(1324, 26923, 'twenty-six thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(1325, 95823, 'ninety-five thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(1326, 8493, 'eight thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(1327, 2583, 'two thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(1328, 3296, 'three thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(1329, 31514, 'thirty-one thousand five hundred fourteen');\nINSERT INTO t3 VALUES(1330, 93837, 'ninety-three thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(1331, 5294, 'five thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(1332, 89455, 'eighty-nine thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(1333, 23735, 'twenty-three thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(1334, 10457, 'ten thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(1335, 90792, 'ninety thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(1336, 63964, 'sixty-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(1337, 62810, 'sixty-two thousand eight hundred ten');\nINSERT INTO t3 VALUES(1338, 34157, 'thirty-four thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(1339, 64482, 'sixty-four thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(1340, 57185, 'fifty-seven thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(1341, 40320, 'forty thousand three hundred twenty');\nINSERT INTO t3 VALUES(1342, 7836, 'seven thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(1343, 79467, 'seventy-nine thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(1344, 75395, 'seventy-five thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(1345, 87556, 'eighty-seven thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(1346, 72239, 'seventy-two thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(1347, 32149, 'thirty-two thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(1348, 65816, 'sixty-five thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(1349, 23374, 'twenty-three thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(1350, 67750, 'sixty-seven thousand seven hundred fifty');\nINSERT INTO t3 VALUES(1351, 65070, 'sixty-five thousand seventy');\nINSERT INTO t3 VALUES(1352, 34656, 'thirty-four thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(1353, 75525, 'seventy-five thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(1354, 61261, 'sixty-one thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(1355, 19402, 'nineteen thousand four hundred two');\nINSERT INTO t3 VALUES(1356, 68104, 'sixty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(1357, 95231, 'ninety-five thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(1358, 98580, 'ninety-eight thousand five hundred eighty');\nINSERT INTO t3 VALUES(1359, 9571, 'nine thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(1360, 44427, 'forty-four thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(1361, 33019, 'thirty-three thousand nineteen');\nINSERT INTO t3 VALUES(1362, 38266, 'thirty-eight thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(1363, 30826, 'thirty thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(1364, 52381, 'fifty-two thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(1365, 46265, 'forty-six thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(1366, 89302, 'eighty-nine thousand three hundred two');\nINSERT INTO t3 VALUES(1367, 4265, 'four thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(1368, 30521, 'thirty thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(1369, 55590, 'fifty-five thousand five hundred ninety');\nINSERT INTO t3 VALUES(1370, 28966, 'twenty-eight thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(1371, 45024, 'forty-five thousand twenty-four');\nINSERT INTO t3 VALUES(1372, 41342, 'forty-one thousand three hundred forty-two');\nINSERT INTO t3 VALUES(1373, 49561, 'forty-nine thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(1374, 34543, 'thirty-four thousand five hundred forty-three');\nINSERT INTO t3 VALUES(1375, 84984, 'eighty-four thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(1376, 68593, 'sixty-eight thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(1377, 85461, 'eighty-five thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(1378, 59726, 'fifty-nine thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(1379, 45242, 'forty-five thousand two hundred forty-two');\nINSERT INTO t3 VALUES(1380, 29651, 'twenty-nine thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(1381, 64765, 'sixty-four thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(1382, 26568, 'twenty-six thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(1383, 36933, 'thirty-six thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(1384, 94490, 'ninety-four thousand four hundred ninety');\nINSERT INTO t3 VALUES(1385, 35036, 'thirty-five thousand thirty-six');\nINSERT INTO t3 VALUES(1386, 42971, 'forty-two thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(1387, 44831, 'forty-four thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(1388, 17790, 'seventeen thousand seven hundred ninety');\nINSERT INTO t3 VALUES(1389, 35361, 'thirty-five thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(1390, 52622, 'fifty-two thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(1391, 87742, 'eighty-seven thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(1392, 63207, 'sixty-three thousand two hundred seven');\nINSERT INTO t3 VALUES(1393, 79106, 'seventy-nine thousand one hundred six');\nINSERT INTO t3 VALUES(1394, 93806, 'ninety-three thousand eight hundred six');\nINSERT INTO t3 VALUES(1395, 52567, 'fifty-two thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(1396, 43100, 'forty-three thousand one hundred');\nINSERT INTO t3 VALUES(1397, 26459, 'twenty-six thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(1398, 43270, 'forty-three thousand two hundred seventy');\nINSERT INTO t3 VALUES(1399, 32584, 'thirty-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(1400, 5213, 'five thousand two hundred thirteen');\nINSERT INTO t3 VALUES(1401, 54750, 'fifty-four thousand seven hundred fifty');\nINSERT INTO t3 VALUES(1402, 52989, 'fifty-two thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(1403, 24893, 'twenty-four thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(1404, 40131, 'forty thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(1405, 68586, 'sixty-eight thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(1406, 88256, 'eighty-eight thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(1407, 19826, 'nineteen thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(1408, 7635, 'seven thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(1409, 53220, 'fifty-three thousand two hundred twenty');\nINSERT INTO t3 VALUES(1410, 33504, 'thirty-three thousand five hundred four');\nINSERT INTO t3 VALUES(1411, 44043, 'forty-four thousand forty-three');\nINSERT INTO t3 VALUES(1412, 73365, 'seventy-three thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(1413, 40119, 'forty thousand one hundred nineteen');\nINSERT INTO t3 VALUES(1414, 28251, 'twenty-eight thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(1415, 27530, 'twenty-seven thousand five hundred thirty');\nINSERT INTO t3 VALUES(1416, 35089, 'thirty-five thousand eighty-nine');\nINSERT INTO t3 VALUES(1417, 74383, 'seventy-four thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(1418, 25861, 'twenty-five thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(1419, 33100, 'thirty-three thousand one hundred');\nINSERT INTO t3 VALUES(1420, 1924, 'one thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(1421, 92486, 'ninety-two thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(1422, 65303, 'sixty-five thousand three hundred three');\nINSERT INTO t3 VALUES(1423, 45406, 'forty-five thousand four hundred six');\nINSERT INTO t3 VALUES(1424, 62525, 'sixty-two thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(1425, 75622, 'seventy-five thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(1426, 72808, 'seventy-two thousand eight hundred eight');\nINSERT INTO t3 VALUES(1427, 23115, 'twenty-three thousand one hundred fifteen');\nINSERT INTO t3 VALUES(1428, 88348, 'eighty-eight thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(1429, 54075, 'fifty-four thousand seventy-five');\nINSERT INTO t3 VALUES(1430, 4823, 'four thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(1431, 81215, 'eighty-one thousand two hundred fifteen');\nINSERT INTO t3 VALUES(1432, 28184, 'twenty-eight thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(1433, 67225, 'sixty-seven thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(1434, 93642, 'ninety-three thousand six hundred forty-two');\nINSERT INTO t3 VALUES(1435, 67951, 'sixty-seven thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(1436, 83096, 'eighty-three thousand ninety-six');\nINSERT INTO t3 VALUES(1437, 36654, 'thirty-six thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(1438, 51904, 'fifty-one thousand nine hundred four');\nINSERT INTO t3 VALUES(1439, 8175, 'eight thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(1440, 70724, 'seventy thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(1441, 59652, 'fifty-nine thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(1442, 24583, 'twenty-four thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(1443, 31864, 'thirty-one thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(1444, 66077, 'sixty-six thousand seventy-seven');\nINSERT INTO t3 VALUES(1445, 84809, 'eighty-four thousand eight hundred nine');\nINSERT INTO t3 VALUES(1446, 66310, 'sixty-six thousand three hundred ten');\nINSERT INTO t3 VALUES(1447, 68023, 'sixty-eight thousand twenty-three');\nINSERT INTO t3 VALUES(1448, 60989, 'sixty thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(1449, 58479, 'fifty-eight thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(1450, 6397, 'six thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(1451, 15312, 'fifteen thousand three hundred twelve');\nINSERT INTO t3 VALUES(1452, 33482, 'thirty-three thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(1453, 65288, 'sixty-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(1454, 691, 'six hundred ninety-one');\nINSERT INTO t3 VALUES(1455, 8952, 'eight thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(1456, 58815, 'fifty-eight thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(1457, 60639, 'sixty thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(1458, 5418, 'five thousand four hundred eighteen');\nINSERT INTO t3 VALUES(1459, 19309, 'nineteen thousand three hundred nine');\nINSERT INTO t3 VALUES(1460, 62587, 'sixty-two thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(1461, 58739, 'fifty-eight thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(1462, 72625, 'seventy-two thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(1463, 54499, 'fifty-four thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(1464, 79342, 'seventy-nine thousand three hundred forty-two');\nINSERT INTO t3 VALUES(1465, 5924, 'five thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(1466, 86304, 'eighty-six thousand three hundred four');\nINSERT INTO t3 VALUES(1467, 32065, 'thirty-two thousand sixty-five');\nINSERT INTO t3 VALUES(1468, 35725, 'thirty-five thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(1469, 16876, 'sixteen thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(1470, 71641, 'seventy-one thousand six hundred forty-one');\nINSERT INTO t3 VALUES(1471, 28399, 'twenty-eight thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(1472, 11765, 'eleven thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(1473, 76934, 'seventy-six thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(1474, 6358, 'six thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(1475, 63043, 'sixty-three thousand forty-three');\nINSERT INTO t3 VALUES(1476, 50901, 'fifty thousand nine hundred one');\nINSERT INTO t3 VALUES(1477, 28043, 'twenty-eight thousand forty-three');\nINSERT INTO t3 VALUES(1478, 86547, 'eighty-six thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(1479, 94729, 'ninety-four thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(1480, 66862, 'sixty-six thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(1481, 76025, 'seventy-six thousand twenty-five');\nINSERT INTO t3 VALUES(1482, 3473, 'three thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(1483, 82952, 'eighty-two thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(1484, 43056, 'forty-three thousand fifty-six');\nINSERT INTO t3 VALUES(1485, 17253, 'seventeen thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(1486, 60835, 'sixty thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(1487, 74180, 'seventy-four thousand one hundred eighty');\nINSERT INTO t3 VALUES(1488, 22424, 'twenty-two thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(1489, 24391, 'twenty-four thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(1490, 73879, 'seventy-three thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(1491, 34259, 'thirty-four thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(1492, 3650, 'three thousand six hundred fifty');\nINSERT INTO t3 VALUES(1493, 36136, 'thirty-six thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(1494, 63106, 'sixty-three thousand one hundred six');\nINSERT INTO t3 VALUES(1495, 35314, 'thirty-five thousand three hundred fourteen');\nINSERT INTO t3 VALUES(1496, 24073, 'twenty-four thousand seventy-three');\nINSERT INTO t3 VALUES(1497, 34121, 'thirty-four thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(1498, 6274, 'six thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(1499, 69931, 'sixty-nine thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(1500, 75742, 'seventy-five thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(1501, 29960, 'twenty-nine thousand nine hundred sixty');\nINSERT INTO t3 VALUES(1502, 9293, 'nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(1503, 30339, 'thirty thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(1504, 20901, 'twenty thousand nine hundred one');\nINSERT INTO t3 VALUES(1505, 54874, 'fifty-four thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(1506, 63855, 'sixty-three thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(1507, 61816, 'sixty-one thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(1508, 35403, 'thirty-five thousand four hundred three');\nINSERT INTO t3 VALUES(1509, 6552, 'six thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(1510, 33105, 'thirty-three thousand one hundred five');\nINSERT INTO t3 VALUES(1511, 51394, 'fifty-one thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(1512, 29236, 'twenty-nine thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(1513, 57423, 'fifty-seven thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(1514, 32304, 'thirty-two thousand three hundred four');\nINSERT INTO t3 VALUES(1515, 45100, 'forty-five thousand one hundred');\nINSERT INTO t3 VALUES(1516, 83599, 'eighty-three thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(1517, 82256, 'eighty-two thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(1518, 16049, 'sixteen thousand forty-nine');\nINSERT INTO t3 VALUES(1519, 45463, 'forty-five thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(1520, 32310, 'thirty-two thousand three hundred ten');\nINSERT INTO t3 VALUES(1521, 6475, 'six thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(1522, 70488, 'seventy thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(1523, 40257, 'forty thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(1524, 52374, 'fifty-two thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(1525, 70669, 'seventy thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(1526, 33910, 'thirty-three thousand nine hundred ten');\nINSERT INTO t3 VALUES(1527, 81072, 'eighty-one thousand seventy-two');\nINSERT INTO t3 VALUES(1528, 23172, 'twenty-three thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(1529, 77387, 'seventy-seven thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(1530, 28441, 'twenty-eight thousand four hundred forty-one');\nINSERT INTO t3 VALUES(1531, 42804, 'forty-two thousand eight hundred four');\nINSERT INTO t3 VALUES(1532, 42298, 'forty-two thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(1533, 13594, 'thirteen thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(1534, 1045, 'one thousand forty-five');\nINSERT INTO t3 VALUES(1535, 56575, 'fifty-six thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(1536, 20197, 'twenty thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(1537, 21989, 'twenty-one thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(1538, 68341, 'sixty-eight thousand three hundred forty-one');\nINSERT INTO t3 VALUES(1539, 54258, 'fifty-four thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(1540, 32984, 'thirty-two thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(1541, 31747, 'thirty-one thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(1542, 88436, 'eighty-eight thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(1543, 57530, 'fifty-seven thousand five hundred thirty');\nINSERT INTO t3 VALUES(1544, 31675, 'thirty-one thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(1545, 77525, 'seventy-seven thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(1546, 27764, 'twenty-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(1547, 49705, 'forty-nine thousand seven hundred five');\nINSERT INTO t3 VALUES(1548, 71362, 'seventy-one thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(1549, 96058, 'ninety-six thousand fifty-eight');\nINSERT INTO t3 VALUES(1550, 48130, 'forty-eight thousand one hundred thirty');\nINSERT INTO t3 VALUES(1551, 93355, 'ninety-three thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(1552, 20762, 'twenty thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(1553, 29874, 'twenty-nine thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(1554, 48108, 'forty-eight thousand one hundred eight');\nINSERT INTO t3 VALUES(1555, 97598, 'ninety-seven thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(1556, 62902, 'sixty-two thousand nine hundred two');\nINSERT INTO t3 VALUES(1557, 95447, 'ninety-five thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(1558, 63295, 'sixty-three thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(1559, 59971, 'fifty-nine thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(1560, 85311, 'eighty-five thousand three hundred eleven');\nINSERT INTO t3 VALUES(1561, 16180, 'sixteen thousand one hundred eighty');\nINSERT INTO t3 VALUES(1562, 12882, 'twelve thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(1563, 9574, 'nine thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(1564, 53832, 'fifty-three thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(1565, 68806, 'sixty-eight thousand eight hundred six');\nINSERT INTO t3 VALUES(1566, 68886, 'sixty-eight thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(1567, 47312, 'forty-seven thousand three hundred twelve');\nINSERT INTO t3 VALUES(1568, 40956, 'forty thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(1569, 81278, 'eighty-one thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(1570, 81024, 'eighty-one thousand twenty-four');\nINSERT INTO t3 VALUES(1571, 94492, 'ninety-four thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(1572, 14555, 'fourteen thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(1573, 88599, 'eighty-eight thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(1574, 17427, 'seventeen thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(1575, 37635, 'thirty-seven thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(1576, 14697, 'fourteen thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(1577, 23884, 'twenty-three thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(1578, 49243, 'forty-nine thousand two hundred forty-three');\nINSERT INTO t3 VALUES(1579, 19993, 'nineteen thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(1580, 65763, 'sixty-five thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(1581, 70657, 'seventy thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(1582, 6309, 'six thousand three hundred nine');\nINSERT INTO t3 VALUES(1583, 95396, 'ninety-five thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(1584, 34119, 'thirty-four thousand one hundred nineteen');\nINSERT INTO t3 VALUES(1585, 60184, 'sixty thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(1586, 60530, 'sixty thousand five hundred thirty');\nINSERT INTO t3 VALUES(1587, 519, 'five hundred nineteen');\nINSERT INTO t3 VALUES(1588, 29332, 'twenty-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(1589, 37833, 'thirty-seven thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(1590, 61159, 'sixty-one thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(1591, 80522, 'eighty thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(1592, 53291, 'fifty-three thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(1593, 49051, 'forty-nine thousand fifty-one');\nINSERT INTO t3 VALUES(1594, 2056, 'two thousand fifty-six');\nINSERT INTO t3 VALUES(1595, 77210, 'seventy-seven thousand two hundred ten');\nINSERT INTO t3 VALUES(1596, 86325, 'eighty-six thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(1597, 84665, 'eighty-four thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(1598, 67725, 'sixty-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(1599, 26029, 'twenty-six thousand twenty-nine');\nINSERT INTO t3 VALUES(1600, 88601, 'eighty-eight thousand six hundred one');\nINSERT INTO t3 VALUES(1601, 32752, 'thirty-two thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(1602, 19325, 'nineteen thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(1603, 37076, 'thirty-seven thousand seventy-six');\nINSERT INTO t3 VALUES(1604, 15094, 'fifteen thousand ninety-four');\nINSERT INTO t3 VALUES(1605, 52998, 'fifty-two thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(1606, 26678, 'twenty-six thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(1607, 69600, 'sixty-nine thousand six hundred');\nINSERT INTO t3 VALUES(1608, 62118, 'sixty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(1609, 80950, 'eighty thousand nine hundred fifty');\nINSERT INTO t3 VALUES(1610, 98818, 'ninety-eight thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(1611, 51614, 'fifty-one thousand six hundred fourteen');\nINSERT INTO t3 VALUES(1612, 12599, 'twelve thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(1613, 39089, 'thirty-nine thousand eighty-nine');\nINSERT INTO t3 VALUES(1614, 95895, 'ninety-five thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(1615, 88094, 'eighty-eight thousand ninety-four');\nINSERT INTO t3 VALUES(1616, 82079, 'eighty-two thousand seventy-nine');\nINSERT INTO t3 VALUES(1617, 95142, 'ninety-five thousand one hundred forty-two');\nINSERT INTO t3 VALUES(1618, 73845, 'seventy-three thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(1619, 2906, 'two thousand nine hundred six');\nINSERT INTO t3 VALUES(1620, 80960, 'eighty thousand nine hundred sixty');\nINSERT INTO t3 VALUES(1621, 23479, 'twenty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(1622, 88298, 'eighty-eight thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(1623, 57077, 'fifty-seven thousand seventy-seven');\nINSERT INTO t3 VALUES(1624, 24630, 'twenty-four thousand six hundred thirty');\nINSERT INTO t3 VALUES(1625, 74083, 'seventy-four thousand eighty-three');\nINSERT INTO t3 VALUES(1626, 32204, 'thirty-two thousand two hundred four');\nINSERT INTO t3 VALUES(1627, 40032, 'forty thousand thirty-two');\nINSERT INTO t3 VALUES(1628, 61026, 'sixty-one thousand twenty-six');\nINSERT INTO t3 VALUES(1629, 44543, 'forty-four thousand five hundred forty-three');\nINSERT INTO t3 VALUES(1630, 58253, 'fifty-eight thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(1631, 26899, 'twenty-six thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(1632, 97209, 'ninety-seven thousand two hundred nine');\nINSERT INTO t3 VALUES(1633, 41316, 'forty-one thousand three hundred sixteen');\nINSERT INTO t3 VALUES(1634, 4556, 'four thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(1635, 36548, 'thirty-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(1636, 38921, 'thirty-eight thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(1637, 9280, 'nine thousand two hundred eighty');\nINSERT INTO t3 VALUES(1638, 32498, 'thirty-two thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(1639, 16992, 'sixteen thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(1640, 19324, 'nineteen thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(1641, 96451, 'ninety-six thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(1642, 22576, 'twenty-two thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(1643, 97309, 'ninety-seven thousand three hundred nine');\nINSERT INTO t3 VALUES(1644, 80770, 'eighty thousand seven hundred seventy');\nINSERT INTO t3 VALUES(1645, 9121, 'nine thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(1646, 3338, 'three thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(1647, 66580, 'sixty-six thousand five hundred eighty');\nINSERT INTO t3 VALUES(1648, 19191, 'nineteen thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(1649, 54541, 'fifty-four thousand five hundred forty-one');\nINSERT INTO t3 VALUES(1650, 78396, 'seventy-eight thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(1651, 74699, 'seventy-four thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(1652, 27794, 'twenty-seven thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(1653, 55989, 'fifty-five thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(1654, 54249, 'fifty-four thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(1655, 14881, 'fourteen thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(1656, 80268, 'eighty thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(1657, 95277, 'ninety-five thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(1658, 1797, 'one thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(1659, 1225, 'one thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(1660, 8618, 'eight thousand six hundred eighteen');\nINSERT INTO t3 VALUES(1661, 39882, 'thirty-nine thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(1662, 54884, 'fifty-four thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(1663, 73047, 'seventy-three thousand forty-seven');\nINSERT INTO t3 VALUES(1664, 5927, 'five thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(1665, 13817, 'thirteen thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(1666, 30176, 'thirty thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(1667, 33774, 'thirty-three thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(1668, 9833, 'nine thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(1669, 65221, 'sixty-five thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(1670, 19520, 'nineteen thousand five hundred twenty');\nINSERT INTO t3 VALUES(1671, 35027, 'thirty-five thousand twenty-seven');\nINSERT INTO t3 VALUES(1672, 49390, 'forty-nine thousand three hundred ninety');\nINSERT INTO t3 VALUES(1673, 76401, 'seventy-six thousand four hundred one');\nINSERT INTO t3 VALUES(1674, 57398, 'fifty-seven thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(1675, 63452, 'sixty-three thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(1676, 69211, 'sixty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(1677, 43066, 'forty-three thousand sixty-six');\nINSERT INTO t3 VALUES(1678, 89905, 'eighty-nine thousand nine hundred five');\nINSERT INTO t3 VALUES(1679, 20694, 'twenty thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(1680, 53351, 'fifty-three thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(1681, 36442, 'thirty-six thousand four hundred forty-two');\nINSERT INTO t3 VALUES(1682, 19987, 'nineteen thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(1683, 78561, 'seventy-eight thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(1684, 76690, 'seventy-six thousand six hundred ninety');\nINSERT INTO t3 VALUES(1685, 81665, 'eighty-one thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(1686, 9725, 'nine thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(1687, 87526, 'eighty-seven thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(1688, 38779, 'thirty-eight thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(1689, 73641, 'seventy-three thousand six hundred forty-one');\nINSERT INTO t3 VALUES(1690, 31420, 'thirty-one thousand four hundred twenty');\nINSERT INTO t3 VALUES(1691, 49868, 'forty-nine thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(1692, 94217, 'ninety-four thousand two hundred seventeen');\nINSERT INTO t3 VALUES(1693, 80648, 'eighty thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(1694, 14059, 'fourteen thousand fifty-nine');\nINSERT INTO t3 VALUES(1695, 35226, 'thirty-five thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(1696, 8847, 'eight thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(1697, 83846, 'eighty-three thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(1698, 81789, 'eighty-one thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(1699, 29756, 'twenty-nine thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(1700, 79253, 'seventy-nine thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(1701, 4424, 'four thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(1702, 96946, 'ninety-six thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(1703, 40452, 'forty thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(1704, 53559, 'fifty-three thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(1705, 99321, 'ninety-nine thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(1706, 70435, 'seventy thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(1707, 70689, 'seventy thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(1708, 93232, 'ninety-three thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(1709, 25439, 'twenty-five thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(1710, 88816, 'eighty-eight thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(1711, 18057, 'eighteen thousand fifty-seven');\nINSERT INTO t3 VALUES(1712, 83538, 'eighty-three thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(1713, 14919, 'fourteen thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(1714, 65130, 'sixty-five thousand one hundred thirty');\nINSERT INTO t3 VALUES(1715, 351, 'three hundred fifty-one');\nINSERT INTO t3 VALUES(1716, 8796, 'eight thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(1717, 5647, 'five thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(1718, 14079, 'fourteen thousand seventy-nine');\nINSERT INTO t3 VALUES(1719, 30128, 'thirty thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(1720, 96358, 'ninety-six thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(1721, 86275, 'eighty-six thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(1722, 78679, 'seventy-eight thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(1723, 24988, 'twenty-four thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(1724, 81247, 'eighty-one thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(1725, 14632, 'fourteen thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(1726, 65441, 'sixty-five thousand four hundred forty-one');\nINSERT INTO t3 VALUES(1727, 27646, 'twenty-seven thousand six hundred forty-six');\nINSERT INTO t3 VALUES(1728, 61750, 'sixty-one thousand seven hundred fifty');\nINSERT INTO t3 VALUES(1729, 81287, 'eighty-one thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(1730, 47423, 'forty-seven thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(1731, 86776, 'eighty-six thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(1732, 86755, 'eighty-six thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(1733, 5222, 'five thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(1734, 53629, 'fifty-three thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(1735, 74582, 'seventy-four thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(1736, 17560, 'seventeen thousand five hundred sixty');\nINSERT INTO t3 VALUES(1737, 53440, 'fifty-three thousand four hundred forty');\nINSERT INTO t3 VALUES(1738, 25990, 'twenty-five thousand nine hundred ninety');\nINSERT INTO t3 VALUES(1739, 47210, 'forty-seven thousand two hundred ten');\nINSERT INTO t3 VALUES(1740, 57398, 'fifty-seven thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(1741, 25842, 'twenty-five thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(1742, 77328, 'seventy-seven thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(1743, 18096, 'eighteen thousand ninety-six');\nINSERT INTO t3 VALUES(1744, 34754, 'thirty-four thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(1745, 45405, 'forty-five thousand four hundred five');\nINSERT INTO t3 VALUES(1746, 13823, 'thirteen thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(1747, 49923, 'forty-nine thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(1748, 83819, 'eighty-three thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(1749, 17607, 'seventeen thousand six hundred seven');\nINSERT INTO t3 VALUES(1750, 27690, 'twenty-seven thousand six hundred ninety');\nINSERT INTO t3 VALUES(1751, 94247, 'ninety-four thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(1752, 49325, 'forty-nine thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(1753, 85965, 'eighty-five thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(1754, 91977, 'ninety-one thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(1755, 78239, 'seventy-eight thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(1756, 85321, 'eighty-five thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(1757, 9783, 'nine thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(1758, 52766, 'fifty-two thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(1759, 60639, 'sixty thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(1760, 51278, 'fifty-one thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(1761, 27375, 'twenty-seven thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(1762, 1617, 'one thousand six hundred seventeen');\nINSERT INTO t3 VALUES(1763, 66623, 'sixty-six thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(1764, 74421, 'seventy-four thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(1765, 24325, 'twenty-four thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(1766, 79776, 'seventy-nine thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(1767, 33732, 'thirty-three thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(1768, 61564, 'sixty-one thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(1769, 79172, 'seventy-nine thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(1770, 90022, 'ninety thousand twenty-two');\nINSERT INTO t3 VALUES(1771, 91525, 'ninety-one thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(1772, 85153, 'eighty-five thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(1773, 84868, 'eighty-four thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(1774, 19344, 'nineteen thousand three hundred forty-four');\nINSERT INTO t3 VALUES(1775, 90744, 'ninety thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(1776, 15514, 'fifteen thousand five hundred fourteen');\nINSERT INTO t3 VALUES(1777, 71377, 'seventy-one thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(1778, 5810, 'five thousand eight hundred ten');\nINSERT INTO t3 VALUES(1779, 33066, 'thirty-three thousand sixty-six');\nINSERT INTO t3 VALUES(1780, 67045, 'sixty-seven thousand forty-five');\nINSERT INTO t3 VALUES(1781, 47539, 'forty-seven thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(1782, 85185, 'eighty-five thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(1783, 22446, 'twenty-two thousand four hundred forty-six');\nINSERT INTO t3 VALUES(1784, 92330, 'ninety-two thousand three hundred thirty');\nINSERT INTO t3 VALUES(1785, 99813, 'ninety-nine thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(1786, 92270, 'ninety-two thousand two hundred seventy');\nINSERT INTO t3 VALUES(1787, 71971, 'seventy-one thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(1788, 8653, 'eight thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(1789, 74307, 'seventy-four thousand three hundred seven');\nINSERT INTO t3 VALUES(1790, 45585, 'forty-five thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(1791, 60701, 'sixty thousand seven hundred one');\nINSERT INTO t3 VALUES(1792, 58417, 'fifty-eight thousand four hundred seventeen');\nINSERT INTO t3 VALUES(1793, 74492, 'seventy-four thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(1794, 89732, 'eighty-nine thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(1795, 67912, 'sixty-seven thousand nine hundred twelve');\nINSERT INTO t3 VALUES(1796, 18422, 'eighteen thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(1797, 11633, 'eleven thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(1798, 38432, 'thirty-eight thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(1799, 53350, 'fifty-three thousand three hundred fifty');\nINSERT INTO t3 VALUES(1800, 3256, 'three thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(1801, 18800, 'eighteen thousand eight hundred');\nINSERT INTO t3 VALUES(1802, 74056, 'seventy-four thousand fifty-six');\nINSERT INTO t3 VALUES(1803, 39640, 'thirty-nine thousand six hundred forty');\nINSERT INTO t3 VALUES(1804, 17551, 'seventeen thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(1805, 33076, 'thirty-three thousand seventy-six');\nINSERT INTO t3 VALUES(1806, 5062, 'five thousand sixty-two');\nINSERT INTO t3 VALUES(1807, 59579, 'fifty-nine thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(1808, 93580, 'ninety-three thousand five hundred eighty');\nINSERT INTO t3 VALUES(1809, 49252, 'forty-nine thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(1810, 14480, 'fourteen thousand four hundred eighty');\nINSERT INTO t3 VALUES(1811, 13799, 'thirteen thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(1812, 6840, 'six thousand eight hundred forty');\nINSERT INTO t3 VALUES(1813, 87793, 'eighty-seven thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(1814, 41698, 'forty-one thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(1815, 37665, 'thirty-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(1816, 71170, 'seventy-one thousand one hundred seventy');\nINSERT INTO t3 VALUES(1817, 69307, 'sixty-nine thousand three hundred seven');\nINSERT INTO t3 VALUES(1818, 36344, 'thirty-six thousand three hundred forty-four');\nINSERT INTO t3 VALUES(1819, 82535, 'eighty-two thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(1820, 11733, 'eleven thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(1821, 37335, 'thirty-seven thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(1822, 16657, 'sixteen thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(1823, 77184, 'seventy-seven thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(1824, 29887, 'twenty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(1825, 38486, 'thirty-eight thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(1826, 15093, 'fifteen thousand ninety-three');\nINSERT INTO t3 VALUES(1827, 23045, 'twenty-three thousand forty-five');\nINSERT INTO t3 VALUES(1828, 84551, 'eighty-four thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(1829, 53035, 'fifty-three thousand thirty-five');\nINSERT INTO t3 VALUES(1830, 64634, 'sixty-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(1831, 43246, 'forty-three thousand two hundred forty-six');\nINSERT INTO t3 VALUES(1832, 91381, 'ninety-one thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(1833, 48117, 'forty-eight thousand one hundred seventeen');\nINSERT INTO t3 VALUES(1834, 28126, 'twenty-eight thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(1835, 94457, 'ninety-four thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(1836, 53085, 'fifty-three thousand eighty-five');\nINSERT INTO t3 VALUES(1837, 91230, 'ninety-one thousand two hundred thirty');\nINSERT INTO t3 VALUES(1838, 80930, 'eighty thousand nine hundred thirty');\nINSERT INTO t3 VALUES(1839, 51813, 'fifty-one thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(1840, 48853, 'forty-eight thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(1841, 10541, 'ten thousand five hundred forty-one');\nINSERT INTO t3 VALUES(1842, 63316, 'sixty-three thousand three hundred sixteen');\nINSERT INTO t3 VALUES(1843, 86642, 'eighty-six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(1844, 90329, 'ninety thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(1845, 45310, 'forty-five thousand three hundred ten');\nINSERT INTO t3 VALUES(1846, 41949, 'forty-one thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(1847, 35438, 'thirty-five thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(1848, 46641, 'forty-six thousand six hundred forty-one');\nINSERT INTO t3 VALUES(1849, 23307, 'twenty-three thousand three hundred seven');\nINSERT INTO t3 VALUES(1850, 79886, 'seventy-nine thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(1851, 284, 'two hundred eighty-four');\nINSERT INTO t3 VALUES(1852, 13104, 'thirteen thousand one hundred four');\nINSERT INTO t3 VALUES(1853, 53609, 'fifty-three thousand six hundred nine');\nINSERT INTO t3 VALUES(1854, 58540, 'fifty-eight thousand five hundred forty');\nINSERT INTO t3 VALUES(1855, 22527, 'twenty-two thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(1856, 89998, 'eighty-nine thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(1857, 17504, 'seventeen thousand five hundred four');\nINSERT INTO t3 VALUES(1858, 82012, 'eighty-two thousand twelve');\nINSERT INTO t3 VALUES(1859, 1468, 'one thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(1860, 76117, 'seventy-six thousand one hundred seventeen');\nINSERT INTO t3 VALUES(1861, 83855, 'eighty-three thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(1862, 84711, 'eighty-four thousand seven hundred eleven');\nINSERT INTO t3 VALUES(1863, 71607, 'seventy-one thousand six hundred seven');\nINSERT INTO t3 VALUES(1864, 13753, 'thirteen thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(1865, 44167, 'forty-four thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(1866, 49345, 'forty-nine thousand three hundred forty-five');\nINSERT INTO t3 VALUES(1867, 89810, 'eighty-nine thousand eight hundred ten');\nINSERT INTO t3 VALUES(1868, 3843, 'three thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(1869, 55672, 'fifty-five thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(1870, 74000, 'seventy-four thousand');\nINSERT INTO t3 VALUES(1871, 74072, 'seventy-four thousand seventy-two');\nINSERT INTO t3 VALUES(1872, 92844, 'ninety-two thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(1873, 28448, 'twenty-eight thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(1874, 33924, 'thirty-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(1875, 34292, 'thirty-four thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(1876, 45610, 'forty-five thousand six hundred ten');\nINSERT INTO t3 VALUES(1877, 62127, 'sixty-two thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(1878, 60105, 'sixty thousand one hundred five');\nINSERT INTO t3 VALUES(1879, 65062, 'sixty-five thousand sixty-two');\nINSERT INTO t3 VALUES(1880, 57148, 'fifty-seven thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(1881, 66796, 'sixty-six thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(1882, 62699, 'sixty-two thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(1883, 75145, 'seventy-five thousand one hundred forty-five');\nINSERT INTO t3 VALUES(1884, 41321, 'forty-one thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(1885, 2213, 'two thousand two hundred thirteen');\nINSERT INTO t3 VALUES(1886, 74966, 'seventy-four thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(1887, 45305, 'forty-five thousand three hundred five');\nINSERT INTO t3 VALUES(1888, 76632, 'seventy-six thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(1889, 99047, 'ninety-nine thousand forty-seven');\nINSERT INTO t3 VALUES(1890, 54068, 'fifty-four thousand sixty-eight');\nINSERT INTO t3 VALUES(1891, 8881, 'eight thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(1892, 46208, 'forty-six thousand two hundred eight');\nINSERT INTO t3 VALUES(1893, 73868, 'seventy-three thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(1894, 19510, 'nineteen thousand five hundred ten');\nINSERT INTO t3 VALUES(1895, 72069, 'seventy-two thousand sixty-nine');\nINSERT INTO t3 VALUES(1896, 51770, 'fifty-one thousand seven hundred seventy');\nINSERT INTO t3 VALUES(1897, 91125, 'ninety-one thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(1898, 69281, 'sixty-nine thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(1899, 96078, 'ninety-six thousand seventy-eight');\nINSERT INTO t3 VALUES(1900, 99710, 'ninety-nine thousand seven hundred ten');\nINSERT INTO t3 VALUES(1901, 92553, 'ninety-two thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(1902, 66580, 'sixty-six thousand five hundred eighty');\nINSERT INTO t3 VALUES(1903, 48921, 'forty-eight thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(1904, 57229, 'fifty-seven thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(1905, 4529, 'four thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(1906, 38632, 'thirty-eight thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(1907, 12327, 'twelve thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(1908, 37881, 'thirty-seven thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(1909, 54221, 'fifty-four thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(1910, 58504, 'fifty-eight thousand five hundred four');\nINSERT INTO t3 VALUES(1911, 81205, 'eighty-one thousand two hundred five');\nINSERT INTO t3 VALUES(1912, 49852, 'forty-nine thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(1913, 18990, 'eighteen thousand nine hundred ninety');\nINSERT INTO t3 VALUES(1914, 46686, 'forty-six thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(1915, 49449, 'forty-nine thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(1916, 32859, 'thirty-two thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(1917, 93576, 'ninety-three thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(1918, 79522, 'seventy-nine thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(1919, 48625, 'forty-eight thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(1920, 17379, 'seventeen thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(1921, 86661, 'eighty-six thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(1922, 89879, 'eighty-nine thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(1923, 88484, 'eighty-eight thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(1924, 60303, 'sixty thousand three hundred three');\nINSERT INTO t3 VALUES(1925, 66627, 'sixty-six thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(1926, 9889, 'nine thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(1927, 54268, 'fifty-four thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(1928, 509, 'five hundred nine');\nINSERT INTO t3 VALUES(1929, 29418, 'twenty-nine thousand four hundred eighteen');\nINSERT INTO t3 VALUES(1930, 1114, 'one thousand one hundred fourteen');\nINSERT INTO t3 VALUES(1931, 57107, 'fifty-seven thousand one hundred seven');\nINSERT INTO t3 VALUES(1932, 49837, 'forty-nine thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(1933, 31332, 'thirty-one thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(1934, 19882, 'nineteen thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(1935, 6390, 'six thousand three hundred ninety');\nINSERT INTO t3 VALUES(1936, 92051, 'ninety-two thousand fifty-one');\nINSERT INTO t3 VALUES(1937, 73591, 'seventy-three thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(1938, 73809, 'seventy-three thousand eight hundred nine');\nINSERT INTO t3 VALUES(1939, 37123, 'thirty-seven thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(1940, 46702, 'forty-six thousand seven hundred two');\nINSERT INTO t3 VALUES(1941, 44453, 'forty-four thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(1942, 94498, 'ninety-four thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(1943, 41213, 'forty-one thousand two hundred thirteen');\nINSERT INTO t3 VALUES(1944, 37512, 'thirty-seven thousand five hundred twelve');\nINSERT INTO t3 VALUES(1945, 40345, 'forty thousand three hundred forty-five');\nINSERT INTO t3 VALUES(1946, 65300, 'sixty-five thousand three hundred');\nINSERT INTO t3 VALUES(1947, 99023, 'ninety-nine thousand twenty-three');\nINSERT INTO t3 VALUES(1948, 51529, 'fifty-one thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(1949, 40564, 'forty thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(1950, 93119, 'ninety-three thousand one hundred nineteen');\nINSERT INTO t3 VALUES(1951, 95801, 'ninety-five thousand eight hundred one');\nINSERT INTO t3 VALUES(1952, 29139, 'twenty-nine thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(1953, 88533, 'eighty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(1954, 36391, 'thirty-six thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(1955, 46914, 'forty-six thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(1956, 1945, 'one thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(1957, 17441, 'seventeen thousand four hundred forty-one');\nINSERT INTO t3 VALUES(1958, 50389, 'fifty thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(1959, 2919, 'two thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(1960, 7387, 'seven thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(1961, 60435, 'sixty thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(1962, 87437, 'eighty-seven thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(1963, 48552, 'forty-eight thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(1964, 97032, 'ninety-seven thousand thirty-two');\nINSERT INTO t3 VALUES(1965, 3774, 'three thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(1966, 88663, 'eighty-eight thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(1967, 49949, 'forty-nine thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(1968, 42172, 'forty-two thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(1969, 81342, 'eighty-one thousand three hundred forty-two');\nINSERT INTO t3 VALUES(1970, 50370, 'fifty thousand three hundred seventy');\nINSERT INTO t3 VALUES(1971, 68432, 'sixty-eight thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(1972, 74779, 'seventy-four thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(1973, 78931, 'seventy-eight thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(1974, 88840, 'eighty-eight thousand eight hundred forty');\nINSERT INTO t3 VALUES(1975, 33044, 'thirty-three thousand forty-four');\nINSERT INTO t3 VALUES(1976, 33493, 'thirty-three thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(1977, 93664, 'ninety-three thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(1978, 18493, 'eighteen thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(1979, 31558, 'thirty-one thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(1980, 78410, 'seventy-eight thousand four hundred ten');\nINSERT INTO t3 VALUES(1981, 18024, 'eighteen thousand twenty-four');\nINSERT INTO t3 VALUES(1982, 84219, 'eighty-four thousand two hundred nineteen');\nINSERT INTO t3 VALUES(1983, 93478, 'ninety-three thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(1984, 77514, 'seventy-seven thousand five hundred fourteen');\nINSERT INTO t3 VALUES(1985, 40296, 'forty thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(1986, 51888, 'fifty-one thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(1987, 16949, 'sixteen thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(1988, 68817, 'sixty-eight thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(1989, 69649, 'sixty-nine thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(1990, 72933, 'seventy-two thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(1991, 12206, 'twelve thousand two hundred six');\nINSERT INTO t3 VALUES(1992, 97291, 'ninety-seven thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(1993, 39229, 'thirty-nine thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(1994, 37831, 'thirty-seven thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(1995, 33866, 'thirty-three thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(1996, 85012, 'eighty-five thousand twelve');\nINSERT INTO t3 VALUES(1997, 38533, 'thirty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(1998, 46016, 'forty-six thousand sixteen');\nINSERT INTO t3 VALUES(1999, 93324, 'ninety-three thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(2000, 63623, 'sixty-three thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(2001, 98556, 'ninety-eight thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(2002, 58599, 'fifty-eight thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(2003, 45225, 'forty-five thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(2004, 37548, 'thirty-seven thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(2005, 83650, 'eighty-three thousand six hundred fifty');\nINSERT INTO t3 VALUES(2006, 14417, 'fourteen thousand four hundred seventeen');\nINSERT INTO t3 VALUES(2007, 32517, 'thirty-two thousand five hundred seventeen');\nINSERT INTO t3 VALUES(2008, 22945, 'twenty-two thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(2009, 3316, 'three thousand three hundred sixteen');\nINSERT INTO t3 VALUES(2010, 93213, 'ninety-three thousand two hundred thirteen');\nINSERT INTO t3 VALUES(2011, 26724, 'twenty-six thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(2012, 21333, 'twenty-one thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(2013, 81607, 'eighty-one thousand six hundred seven');\nINSERT INTO t3 VALUES(2014, 82073, 'eighty-two thousand seventy-three');\nINSERT INTO t3 VALUES(2015, 79396, 'seventy-nine thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(2016, 27732, 'twenty-seven thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(2017, 15834, 'fifteen thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(2018, 72301, 'seventy-two thousand three hundred one');\nINSERT INTO t3 VALUES(2019, 9948, 'nine thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(2020, 65047, 'sixty-five thousand forty-seven');\nINSERT INTO t3 VALUES(2021, 75772, 'seventy-five thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(2022, 79232, 'seventy-nine thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(2023, 97661, 'ninety-seven thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(2024, 25306, 'twenty-five thousand three hundred six');\nINSERT INTO t3 VALUES(2025, 31192, 'thirty-one thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(2026, 88179, 'eighty-eight thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(2027, 20441, 'twenty thousand four hundred forty-one');\nINSERT INTO t3 VALUES(2028, 47119, 'forty-seven thousand one hundred nineteen');\nINSERT INTO t3 VALUES(2029, 65133, 'sixty-five thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(2030, 8819, 'eight thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(2031, 6202, 'six thousand two hundred two');\nINSERT INTO t3 VALUES(2032, 20304, 'twenty thousand three hundred four');\nINSERT INTO t3 VALUES(2033, 1572, 'one thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(2034, 17955, 'seventeen thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(2035, 49827, 'forty-nine thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(2036, 61984, 'sixty-one thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(2037, 56316, 'fifty-six thousand three hundred sixteen');\nINSERT INTO t3 VALUES(2038, 26547, 'twenty-six thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(2039, 47448, 'forty-seven thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(2040, 56793, 'fifty-six thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(2041, 47578, 'forty-seven thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(2042, 70665, 'seventy thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(2043, 7051, 'seven thousand fifty-one');\nINSERT INTO t3 VALUES(2044, 26887, 'twenty-six thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(2045, 71921, 'seventy-one thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(2046, 69606, 'sixty-nine thousand six hundred six');\nINSERT INTO t3 VALUES(2047, 81647, 'eighty-one thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(2048, 44218, 'forty-four thousand two hundred eighteen');\nINSERT INTO t3 VALUES(2049, 85354, 'eighty-five thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(2050, 8849, 'eight thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(2051, 84181, 'eighty-four thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(2052, 32708, 'thirty-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(2053, 68880, 'sixty-eight thousand eight hundred eighty');\nINSERT INTO t3 VALUES(2054, 75721, 'seventy-five thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(2055, 29936, 'twenty-nine thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(2056, 89236, 'eighty-nine thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(2057, 91416, 'ninety-one thousand four hundred sixteen');\nINSERT INTO t3 VALUES(2058, 63884, 'sixty-three thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(2059, 33238, 'thirty-three thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(2060, 74676, 'seventy-four thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(2061, 72246, 'seventy-two thousand two hundred forty-six');\nINSERT INTO t3 VALUES(2062, 69954, 'sixty-nine thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(2063, 23336, 'twenty-three thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(2064, 35017, 'thirty-five thousand seventeen');\nINSERT INTO t3 VALUES(2065, 86820, 'eighty-six thousand eight hundred twenty');\nINSERT INTO t3 VALUES(2066, 17954, 'seventeen thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(2067, 35069, 'thirty-five thousand sixty-nine');\nINSERT INTO t3 VALUES(2068, 44963, 'forty-four thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(2069, 16622, 'sixteen thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(2070, 77447, 'seventy-seven thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(2071, 4786, 'four thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(2072, 77713, 'seventy-seven thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(2073, 80044, 'eighty thousand forty-four');\nINSERT INTO t3 VALUES(2074, 84960, 'eighty-four thousand nine hundred sixty');\nINSERT INTO t3 VALUES(2075, 75412, 'seventy-five thousand four hundred twelve');\nINSERT INTO t3 VALUES(2076, 32987, 'thirty-two thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(2077, 27500, 'twenty-seven thousand five hundred');\nINSERT INTO t3 VALUES(2078, 69099, 'sixty-nine thousand ninety-nine');\nINSERT INTO t3 VALUES(2079, 95854, 'ninety-five thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(2080, 60201, 'sixty thousand two hundred one');\nINSERT INTO t3 VALUES(2081, 18459, 'eighteen thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(2082, 35972, 'thirty-five thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(2083, 74050, 'seventy-four thousand fifty');\nINSERT INTO t3 VALUES(2084, 19799, 'nineteen thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(2085, 95778, 'ninety-five thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(2086, 62066, 'sixty-two thousand sixty-six');\nINSERT INTO t3 VALUES(2087, 61196, 'sixty-one thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(2088, 58432, 'fifty-eight thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(2089, 97946, 'ninety-seven thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(2090, 12406, 'twelve thousand four hundred six');\nINSERT INTO t3 VALUES(2091, 68826, 'sixty-eight thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(2092, 88084, 'eighty-eight thousand eighty-four');\nINSERT INTO t3 VALUES(2093, 53313, 'fifty-three thousand three hundred thirteen');\nINSERT INTO t3 VALUES(2094, 61535, 'sixty-one thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(2095, 18262, 'eighteen thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(2096, 23242, 'twenty-three thousand two hundred forty-two');\nINSERT INTO t3 VALUES(2097, 69693, 'sixty-nine thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(2098, 57613, 'fifty-seven thousand six hundred thirteen');\nINSERT INTO t3 VALUES(2099, 93021, 'ninety-three thousand twenty-one');\nINSERT INTO t3 VALUES(2100, 39809, 'thirty-nine thousand eight hundred nine');\nINSERT INTO t3 VALUES(2101, 67259, 'sixty-seven thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(2102, 6215, 'six thousand two hundred fifteen');\nINSERT INTO t3 VALUES(2103, 59291, 'fifty-nine thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(2104, 10985, 'ten thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(2105, 33289, 'thirty-three thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(2106, 82410, 'eighty-two thousand four hundred ten');\nINSERT INTO t3 VALUES(2107, 24220, 'twenty-four thousand two hundred twenty');\nINSERT INTO t3 VALUES(2108, 48165, 'forty-eight thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(2109, 82098, 'eighty-two thousand ninety-eight');\nINSERT INTO t3 VALUES(2110, 94652, 'ninety-four thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(2111, 22610, 'twenty-two thousand six hundred ten');\nINSERT INTO t3 VALUES(2112, 20576, 'twenty thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(2113, 66793, 'sixty-six thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(2114, 89310, 'eighty-nine thousand three hundred ten');\nINSERT INTO t3 VALUES(2115, 68790, 'sixty-eight thousand seven hundred ninety');\nINSERT INTO t3 VALUES(2116, 86133, 'eighty-six thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(2117, 31710, 'thirty-one thousand seven hundred ten');\nINSERT INTO t3 VALUES(2118, 14160, 'fourteen thousand one hundred sixty');\nINSERT INTO t3 VALUES(2119, 26244, 'twenty-six thousand two hundred forty-four');\nINSERT INTO t3 VALUES(2120, 30473, 'thirty thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(2121, 26424, 'twenty-six thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(2122, 90055, 'ninety thousand fifty-five');\nINSERT INTO t3 VALUES(2123, 85290, 'eighty-five thousand two hundred ninety');\nINSERT INTO t3 VALUES(2124, 63577, 'sixty-three thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(2125, 73925, 'seventy-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(2126, 62904, 'sixty-two thousand nine hundred four');\nINSERT INTO t3 VALUES(2127, 12256, 'twelve thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(2128, 35748, 'thirty-five thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(2129, 96591, 'ninety-six thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(2130, 33621, 'thirty-three thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(2131, 61369, 'sixty-one thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(2132, 20108, 'twenty thousand one hundred eight');\nINSERT INTO t3 VALUES(2133, 47031, 'forty-seven thousand thirty-one');\nINSERT INTO t3 VALUES(2134, 16205, 'sixteen thousand two hundred five');\nINSERT INTO t3 VALUES(2135, 69777, 'sixty-nine thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(2136, 50091, 'fifty thousand ninety-one');\nINSERT INTO t3 VALUES(2137, 87328, 'eighty-seven thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(2138, 75202, 'seventy-five thousand two hundred two');\nINSERT INTO t3 VALUES(2139, 86031, 'eighty-six thousand thirty-one');\nINSERT INTO t3 VALUES(2140, 83275, 'eighty-three thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(2141, 91163, 'ninety-one thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(2142, 29596, 'twenty-nine thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(2143, 80885, 'eighty thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(2144, 7114, 'seven thousand one hundred fourteen');\nINSERT INTO t3 VALUES(2145, 95311, 'ninety-five thousand three hundred eleven');\nINSERT INTO t3 VALUES(2146, 41598, 'forty-one thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(2147, 15299, 'fifteen thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(2148, 68783, 'sixty-eight thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(2149, 77923, 'seventy-seven thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(2150, 84420, 'eighty-four thousand four hundred twenty');\nINSERT INTO t3 VALUES(2151, 29543, 'twenty-nine thousand five hundred forty-three');\nINSERT INTO t3 VALUES(2152, 61605, 'sixty-one thousand six hundred five');\nINSERT INTO t3 VALUES(2153, 24259, 'twenty-four thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(2154, 26587, 'twenty-six thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(2155, 3750, 'three thousand seven hundred fifty');\nINSERT INTO t3 VALUES(2156, 19736, 'nineteen thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(2157, 30736, 'thirty thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(2158, 90402, 'ninety thousand four hundred two');\nINSERT INTO t3 VALUES(2159, 2620, 'two thousand six hundred twenty');\nINSERT INTO t3 VALUES(2160, 88988, 'eighty-eight thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(2161, 36807, 'thirty-six thousand eight hundred seven');\nINSERT INTO t3 VALUES(2162, 61988, 'sixty-one thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(2163, 84714, 'eighty-four thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(2164, 60150, 'sixty thousand one hundred fifty');\nINSERT INTO t3 VALUES(2165, 10846, 'ten thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(2166, 60791, 'sixty thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(2167, 73750, 'seventy-three thousand seven hundred fifty');\nINSERT INTO t3 VALUES(2168, 81970, 'eighty-one thousand nine hundred seventy');\nINSERT INTO t3 VALUES(2169, 91144, 'ninety-one thousand one hundred forty-four');\nINSERT INTO t3 VALUES(2170, 3387, 'three thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(2171, 5474, 'five thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(2172, 98118, 'ninety-eight thousand one hundred eighteen');\nINSERT INTO t3 VALUES(2173, 1979, 'one thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(2174, 48815, 'forty-eight thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(2175, 65851, 'sixty-five thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(2176, 20554, 'twenty thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(2177, 74468, 'seventy-four thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(2178, 26877, 'twenty-six thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(2179, 8772, 'eight thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(2180, 14905, 'fourteen thousand nine hundred five');\nINSERT INTO t3 VALUES(2181, 26261, 'twenty-six thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(2182, 81205, 'eighty-one thousand two hundred five');\nINSERT INTO t3 VALUES(2183, 3169, 'three thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(2184, 60000, 'sixty thousand');\nINSERT INTO t3 VALUES(2185, 36692, 'thirty-six thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(2186, 66844, 'sixty-six thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(2187, 84078, 'eighty-four thousand seventy-eight');\nINSERT INTO t3 VALUES(2188, 70466, 'seventy thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(2189, 87040, 'eighty-seven thousand forty');\nINSERT INTO t3 VALUES(2190, 36416, 'thirty-six thousand four hundred sixteen');\nINSERT INTO t3 VALUES(2191, 37209, 'thirty-seven thousand two hundred nine');\nINSERT INTO t3 VALUES(2192, 19563, 'nineteen thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(2193, 99620, 'ninety-nine thousand six hundred twenty');\nINSERT INTO t3 VALUES(2194, 83710, 'eighty-three thousand seven hundred ten');\nINSERT INTO t3 VALUES(2195, 17594, 'seventeen thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(2196, 48053, 'forty-eight thousand fifty-three');\nINSERT INTO t3 VALUES(2197, 9309, 'nine thousand three hundred nine');\nINSERT INTO t3 VALUES(2198, 87289, 'eighty-seven thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(2199, 38833, 'thirty-eight thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(2200, 54107, 'fifty-four thousand one hundred seven');\nINSERT INTO t3 VALUES(2201, 33163, 'thirty-three thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(2202, 15512, 'fifteen thousand five hundred twelve');\nINSERT INTO t3 VALUES(2203, 36025, 'thirty-six thousand twenty-five');\nINSERT INTO t3 VALUES(2204, 68272, 'sixty-eight thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(2205, 96954, 'ninety-six thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(2206, 56025, 'fifty-six thousand twenty-five');\nINSERT INTO t3 VALUES(2207, 72751, 'seventy-two thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(2208, 98035, 'ninety-eight thousand thirty-five');\nINSERT INTO t3 VALUES(2209, 33551, 'thirty-three thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(2210, 8544, 'eight thousand five hundred forty-four');\nINSERT INTO t3 VALUES(2211, 75038, 'seventy-five thousand thirty-eight');\nINSERT INTO t3 VALUES(2212, 53059, 'fifty-three thousand fifty-nine');\nINSERT INTO t3 VALUES(2213, 66618, 'sixty-six thousand six hundred eighteen');\nINSERT INTO t3 VALUES(2214, 57733, 'fifty-seven thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(2215, 49471, 'forty-nine thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(2216, 41965, 'forty-one thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(2217, 12073, 'twelve thousand seventy-three');\nINSERT INTO t3 VALUES(2218, 20417, 'twenty thousand four hundred seventeen');\nINSERT INTO t3 VALUES(2219, 87203, 'eighty-seven thousand two hundred three');\nINSERT INTO t3 VALUES(2220, 86819, 'eighty-six thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(2221, 93531, 'ninety-three thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(2222, 68156, 'sixty-eight thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(2223, 8306, 'eight thousand three hundred six');\nINSERT INTO t3 VALUES(2224, 72081, 'seventy-two thousand eighty-one');\nINSERT INTO t3 VALUES(2225, 96486, 'ninety-six thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(2226, 71337, 'seventy-one thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(2227, 55335, 'fifty-five thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(2228, 37346, 'thirty-seven thousand three hundred forty-six');\nINSERT INTO t3 VALUES(2229, 15828, 'fifteen thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(2230, 47959, 'forty-seven thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(2231, 77454, 'seventy-seven thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(2232, 29837, 'twenty-nine thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(2233, 93078, 'ninety-three thousand seventy-eight');\nINSERT INTO t3 VALUES(2234, 4704, 'four thousand seven hundred four');\nINSERT INTO t3 VALUES(2235, 47966, 'forty-seven thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(2236, 27502, 'twenty-seven thousand five hundred two');\nINSERT INTO t3 VALUES(2237, 27683, 'twenty-seven thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(2238, 89607, 'eighty-nine thousand six hundred seven');\nINSERT INTO t3 VALUES(2239, 92749, 'ninety-two thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(2240, 11907, 'eleven thousand nine hundred seven');\nINSERT INTO t3 VALUES(2241, 6074, 'six thousand seventy-four');\nINSERT INTO t3 VALUES(2242, 30711, 'thirty thousand seven hundred eleven');\nINSERT INTO t3 VALUES(2243, 61014, 'sixty-one thousand fourteen');\nINSERT INTO t3 VALUES(2244, 79255, 'seventy-nine thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(2245, 71286, 'seventy-one thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(2246, 60934, 'sixty thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(2247, 69311, 'sixty-nine thousand three hundred eleven');\nINSERT INTO t3 VALUES(2248, 86131, 'eighty-six thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(2249, 25307, 'twenty-five thousand three hundred seven');\nINSERT INTO t3 VALUES(2250, 72456, 'seventy-two thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(2251, 45054, 'forty-five thousand fifty-four');\nINSERT INTO t3 VALUES(2252, 50350, 'fifty thousand three hundred fifty');\nINSERT INTO t3 VALUES(2253, 38134, 'thirty-eight thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(2254, 65253, 'sixty-five thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(2255, 23208, 'twenty-three thousand two hundred eight');\nINSERT INTO t3 VALUES(2256, 15835, 'fifteen thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(2257, 27997, 'twenty-seven thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(2258, 21168, 'twenty-one thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(2259, 6740, 'six thousand seven hundred forty');\nINSERT INTO t3 VALUES(2260, 89734, 'eighty-nine thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(2261, 62215, 'sixty-two thousand two hundred fifteen');\nINSERT INTO t3 VALUES(2262, 92196, 'ninety-two thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(2263, 96590, 'ninety-six thousand five hundred ninety');\nINSERT INTO t3 VALUES(2264, 35844, 'thirty-five thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(2265, 0, 'zero');\nINSERT INTO t3 VALUES(2266, 88210, 'eighty-eight thousand two hundred ten');\nINSERT INTO t3 VALUES(2267, 12229, 'twelve thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(2268, 4044, 'four thousand forty-four');\nINSERT INTO t3 VALUES(2269, 57305, 'fifty-seven thousand three hundred five');\nINSERT INTO t3 VALUES(2270, 60151, 'sixty thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(2271, 87982, 'eighty-seven thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(2272, 82274, 'eighty-two thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(2273, 25777, 'twenty-five thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(2274, 48417, 'forty-eight thousand four hundred seventeen');\nINSERT INTO t3 VALUES(2275, 91581, 'ninety-one thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(2276, 89561, 'eighty-nine thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(2277, 98447, 'ninety-eight thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(2278, 94677, 'ninety-four thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(2279, 87830, 'eighty-seven thousand eight hundred thirty');\nINSERT INTO t3 VALUES(2280, 32972, 'thirty-two thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(2281, 89701, 'eighty-nine thousand seven hundred one');\nINSERT INTO t3 VALUES(2282, 16398, 'sixteen thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(2283, 97877, 'ninety-seven thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(2284, 88436, 'eighty-eight thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(2285, 12266, 'twelve thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(2286, 48915, 'forty-eight thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(2287, 26226, 'twenty-six thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(2288, 74341, 'seventy-four thousand three hundred forty-one');\nINSERT INTO t3 VALUES(2289, 13094, 'thirteen thousand ninety-four');\nINSERT INTO t3 VALUES(2290, 4047, 'four thousand forty-seven');\nINSERT INTO t3 VALUES(2291, 77945, 'seventy-seven thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(2292, 56908, 'fifty-six thousand nine hundred eight');\nINSERT INTO t3 VALUES(2293, 7946, 'seven thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(2294, 64802, 'sixty-four thousand eight hundred two');\nINSERT INTO t3 VALUES(2295, 27687, 'twenty-seven thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(2296, 10869, 'ten thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(2297, 74280, 'seventy-four thousand two hundred eighty');\nINSERT INTO t3 VALUES(2298, 44015, 'forty-four thousand fifteen');\nINSERT INTO t3 VALUES(2299, 96226, 'ninety-six thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(2300, 84163, 'eighty-four thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(2301, 86187, 'eighty-six thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(2302, 75480, 'seventy-five thousand four hundred eighty');\nINSERT INTO t3 VALUES(2303, 47697, 'forty-seven thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(2304, 83305, 'eighty-three thousand three hundred five');\nINSERT INTO t3 VALUES(2305, 97239, 'ninety-seven thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(2306, 7950, 'seven thousand nine hundred fifty');\nINSERT INTO t3 VALUES(2307, 22901, 'twenty-two thousand nine hundred one');\nINSERT INTO t3 VALUES(2308, 79988, 'seventy-nine thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(2309, 27934, 'twenty-seven thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(2310, 25620, 'twenty-five thousand six hundred twenty');\nINSERT INTO t3 VALUES(2311, 81565, 'eighty-one thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(2312, 77671, 'seventy-seven thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(2313, 49585, 'forty-nine thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(2314, 47771, 'forty-seven thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(2315, 10113, 'ten thousand one hundred thirteen');\nINSERT INTO t3 VALUES(2316, 58491, 'fifty-eight thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(2317, 98064, 'ninety-eight thousand sixty-four');\nINSERT INTO t3 VALUES(2318, 17766, 'seventeen thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(2319, 37223, 'thirty-seven thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(2320, 36656, 'thirty-six thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(2321, 9340, 'nine thousand three hundred forty');\nINSERT INTO t3 VALUES(2322, 20908, 'twenty thousand nine hundred eight');\nINSERT INTO t3 VALUES(2323, 51631, 'fifty-one thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(2324, 10204, 'ten thousand two hundred four');\nINSERT INTO t3 VALUES(2325, 95060, 'ninety-five thousand sixty');\nINSERT INTO t3 VALUES(2326, 71757, 'seventy-one thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(2327, 46087, 'forty-six thousand eighty-seven');\nINSERT INTO t3 VALUES(2328, 45770, 'forty-five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(2329, 66703, 'sixty-six thousand seven hundred three');\nINSERT INTO t3 VALUES(2330, 65978, 'sixty-five thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(2331, 9302, 'nine thousand three hundred two');\nINSERT INTO t3 VALUES(2332, 21573, 'twenty-one thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(2333, 3821, 'three thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(2334, 5260, 'five thousand two hundred sixty');\nINSERT INTO t3 VALUES(2335, 67314, 'sixty-seven thousand three hundred fourteen');\nINSERT INTO t3 VALUES(2336, 44719, 'forty-four thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(2337, 78552, 'seventy-eight thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(2338, 37670, 'thirty-seven thousand six hundred seventy');\nINSERT INTO t3 VALUES(2339, 65650, 'sixty-five thousand six hundred fifty');\nINSERT INTO t3 VALUES(2340, 69105, 'sixty-nine thousand one hundred five');\nINSERT INTO t3 VALUES(2341, 58762, 'fifty-eight thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(2342, 88042, 'eighty-eight thousand forty-two');\nINSERT INTO t3 VALUES(2343, 25627, 'twenty-five thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(2344, 60636, 'sixty thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(2345, 78849, 'seventy-eight thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(2346, 24665, 'twenty-four thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(2347, 84106, 'eighty-four thousand one hundred six');\nINSERT INTO t3 VALUES(2348, 5037, 'five thousand thirty-seven');\nINSERT INTO t3 VALUES(2349, 22737, 'twenty-two thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(2350, 42380, 'forty-two thousand three hundred eighty');\nINSERT INTO t3 VALUES(2351, 66356, 'sixty-six thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(2352, 80186, 'eighty thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(2353, 79687, 'seventy-nine thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(2354, 23996, 'twenty-three thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(2355, 35446, 'thirty-five thousand four hundred forty-six');\nINSERT INTO t3 VALUES(2356, 81372, 'eighty-one thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(2357, 70867, 'seventy thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(2358, 54517, 'fifty-four thousand five hundred seventeen');\nINSERT INTO t3 VALUES(2359, 74460, 'seventy-four thousand four hundred sixty');\nINSERT INTO t3 VALUES(2360, 44116, 'forty-four thousand one hundred sixteen');\nINSERT INTO t3 VALUES(2361, 6833, 'six thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(2362, 90428, 'ninety thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(2363, 47466, 'forty-seven thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(2364, 2992, 'two thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(2365, 47872, 'forty-seven thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(2366, 38438, 'thirty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(2367, 8818, 'eight thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(2368, 50516, 'fifty thousand five hundred sixteen');\nINSERT INTO t3 VALUES(2369, 90572, 'ninety thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(2370, 63342, 'sixty-three thousand three hundred forty-two');\nINSERT INTO t3 VALUES(2371, 35210, 'thirty-five thousand two hundred ten');\nINSERT INTO t3 VALUES(2372, 37579, 'thirty-seven thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(2373, 32524, 'thirty-two thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(2374, 34698, 'thirty-four thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(2375, 3342, 'three thousand three hundred forty-two');\nINSERT INTO t3 VALUES(2376, 41340, 'forty-one thousand three hundred forty');\nINSERT INTO t3 VALUES(2377, 22400, 'twenty-two thousand four hundred');\nINSERT INTO t3 VALUES(2378, 10603, 'ten thousand six hundred three');\nINSERT INTO t3 VALUES(2379, 18792, 'eighteen thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(2380, 69656, 'sixty-nine thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(2381, 1537, 'one thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(2382, 65375, 'sixty-five thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(2383, 68829, 'sixty-eight thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(2384, 76719, 'seventy-six thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(2385, 45387, 'forty-five thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(2386, 55655, 'fifty-five thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(2387, 3400, 'three thousand four hundred');\nINSERT INTO t3 VALUES(2388, 2563, 'two thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(2389, 52934, 'fifty-two thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(2390, 18900, 'eighteen thousand nine hundred');\nINSERT INTO t3 VALUES(2391, 57718, 'fifty-seven thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(2392, 25010, 'twenty-five thousand ten');\nINSERT INTO t3 VALUES(2393, 42145, 'forty-two thousand one hundred forty-five');\nINSERT INTO t3 VALUES(2394, 70177, 'seventy thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(2395, 43561, 'forty-three thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(2396, 50772, 'fifty thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(2397, 75624, 'seventy-five thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(2398, 19708, 'nineteen thousand seven hundred eight');\nINSERT INTO t3 VALUES(2399, 39121, 'thirty-nine thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(2400, 7490, 'seven thousand four hundred ninety');\nINSERT INTO t3 VALUES(2401, 93965, 'ninety-three thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(2402, 30359, 'thirty thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(2403, 83205, 'eighty-three thousand two hundred five');\nINSERT INTO t3 VALUES(2404, 63964, 'sixty-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(2405, 63427, 'sixty-three thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(2406, 85035, 'eighty-five thousand thirty-five');\nINSERT INTO t3 VALUES(2407, 76974, 'seventy-six thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(2408, 84544, 'eighty-four thousand five hundred forty-four');\nINSERT INTO t3 VALUES(2409, 22880, 'twenty-two thousand eight hundred eighty');\nINSERT INTO t3 VALUES(2410, 32394, 'thirty-two thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(2411, 4397, 'four thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(2412, 58250, 'fifty-eight thousand two hundred fifty');\nINSERT INTO t3 VALUES(2413, 11423, 'eleven thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(2414, 3384, 'three thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(2415, 4653, 'four thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(2416, 95751, 'ninety-five thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(2417, 78350, 'seventy-eight thousand three hundred fifty');\nINSERT INTO t3 VALUES(2418, 57494, 'fifty-seven thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(2419, 16605, 'sixteen thousand six hundred five');\nINSERT INTO t3 VALUES(2420, 52211, 'fifty-two thousand two hundred eleven');\nINSERT INTO t3 VALUES(2421, 24109, 'twenty-four thousand one hundred nine');\nINSERT INTO t3 VALUES(2422, 73016, 'seventy-three thousand sixteen');\nINSERT INTO t3 VALUES(2423, 99809, 'ninety-nine thousand eight hundred nine');\nINSERT INTO t3 VALUES(2424, 57522, 'fifty-seven thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(2425, 66662, 'sixty-six thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(2426, 72539, 'seventy-two thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(2427, 49871, 'forty-nine thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(2428, 67148, 'sixty-seven thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(2429, 20157, 'twenty thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(2430, 88979, 'eighty-eight thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(2431, 11450, 'eleven thousand four hundred fifty');\nINSERT INTO t3 VALUES(2432, 34394, 'thirty-four thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(2433, 34837, 'thirty-four thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(2434, 96687, 'ninety-six thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(2435, 25169, 'twenty-five thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(2436, 27018, 'twenty-seven thousand eighteen');\nINSERT INTO t3 VALUES(2437, 13348, 'thirteen thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(2438, 72334, 'seventy-two thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(2439, 53396, 'fifty-three thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(2440, 91877, 'ninety-one thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(2441, 49119, 'forty-nine thousand one hundred nineteen');\nINSERT INTO t3 VALUES(2442, 87228, 'eighty-seven thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(2443, 63236, 'sixty-three thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(2444, 92588, 'ninety-two thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(2445, 26333, 'twenty-six thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(2446, 25720, 'twenty-five thousand seven hundred twenty');\nINSERT INTO t3 VALUES(2447, 9825, 'nine thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(2448, 36830, 'thirty-six thousand eight hundred thirty');\nINSERT INTO t3 VALUES(2449, 75312, 'seventy-five thousand three hundred twelve');\nINSERT INTO t3 VALUES(2450, 8093, 'eight thousand ninety-three');\nINSERT INTO t3 VALUES(2451, 99357, 'ninety-nine thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(2452, 59573, 'fifty-nine thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(2453, 65022, 'sixty-five thousand twenty-two');\nINSERT INTO t3 VALUES(2454, 13828, 'thirteen thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(2455, 3673, 'three thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(2456, 87125, 'eighty-seven thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(2457, 60795, 'sixty thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(2458, 15605, 'fifteen thousand six hundred five');\nINSERT INTO t3 VALUES(2459, 80770, 'eighty thousand seven hundred seventy');\nINSERT INTO t3 VALUES(2460, 83596, 'eighty-three thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(2461, 92525, 'ninety-two thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(2462, 63263, 'sixty-three thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(2463, 97131, 'ninety-seven thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(2464, 35456, 'thirty-five thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(2465, 64523, 'sixty-four thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(2466, 72571, 'seventy-two thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(2467, 54026, 'fifty-four thousand twenty-six');\nINSERT INTO t3 VALUES(2468, 61926, 'sixty-one thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(2469, 62152, 'sixty-two thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(2470, 80596, 'eighty thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(2471, 89606, 'eighty-nine thousand six hundred six');\nINSERT INTO t3 VALUES(2472, 72678, 'seventy-two thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(2473, 71118, 'seventy-one thousand one hundred eighteen');\nINSERT INTO t3 VALUES(2474, 28079, 'twenty-eight thousand seventy-nine');\nINSERT INTO t3 VALUES(2475, 95003, 'ninety-five thousand three');\nINSERT INTO t3 VALUES(2476, 42831, 'forty-two thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(2477, 98044, 'ninety-eight thousand forty-four');\nINSERT INTO t3 VALUES(2478, 3162, 'three thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(2479, 10492, 'ten thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(2480, 87908, 'eighty-seven thousand nine hundred eight');\nINSERT INTO t3 VALUES(2481, 53349, 'fifty-three thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(2482, 68224, 'sixty-eight thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(2483, 37751, 'thirty-seven thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(2484, 18702, 'eighteen thousand seven hundred two');\nINSERT INTO t3 VALUES(2485, 45334, 'forty-five thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(2486, 24824, 'twenty-four thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(2487, 45140, 'forty-five thousand one hundred forty');\nINSERT INTO t3 VALUES(2488, 71423, 'seventy-one thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(2489, 52624, 'fifty-two thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(2490, 35072, 'thirty-five thousand seventy-two');\nINSERT INTO t3 VALUES(2491, 22552, 'twenty-two thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(2492, 42079, 'forty-two thousand seventy-nine');\nINSERT INTO t3 VALUES(2493, 59778, 'fifty-nine thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(2494, 67390, 'sixty-seven thousand three hundred ninety');\nINSERT INTO t3 VALUES(2495, 30808, 'thirty thousand eight hundred eight');\nINSERT INTO t3 VALUES(2496, 49898, 'forty-nine thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(2497, 26281, 'twenty-six thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(2498, 68377, 'sixty-eight thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(2499, 86484, 'eighty-six thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(2500, 68605, 'sixty-eight thousand six hundred five');\nINSERT INTO t3 VALUES(2501, 97418, 'ninety-seven thousand four hundred eighteen');\nINSERT INTO t3 VALUES(2502, 13303, 'thirteen thousand three hundred three');\nINSERT INTO t3 VALUES(2503, 11002, 'eleven thousand two');\nINSERT INTO t3 VALUES(2504, 8381, 'eight thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(2505, 55441, 'fifty-five thousand four hundred forty-one');\nINSERT INTO t3 VALUES(2506, 74873, 'seventy-four thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(2507, 62879, 'sixty-two thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(2508, 63232, 'sixty-three thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(2509, 1313, 'one thousand three hundred thirteen');\nINSERT INTO t3 VALUES(2510, 8467, 'eight thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(2511, 78551, 'seventy-eight thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(2512, 80986, 'eighty thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(2513, 63983, 'sixty-three thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(2514, 67781, 'sixty-seven thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(2515, 55836, 'fifty-five thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(2516, 48712, 'forty-eight thousand seven hundred twelve');\nINSERT INTO t3 VALUES(2517, 86037, 'eighty-six thousand thirty-seven');\nINSERT INTO t3 VALUES(2518, 88278, 'eighty-eight thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(2519, 28253, 'twenty-eight thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(2520, 40539, 'forty thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(2521, 41034, 'forty-one thousand thirty-four');\nINSERT INTO t3 VALUES(2522, 74231, 'seventy-four thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(2523, 69400, 'sixty-nine thousand four hundred');\nINSERT INTO t3 VALUES(2524, 82757, 'eighty-two thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(2525, 10172, 'ten thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(2526, 61081, 'sixty-one thousand eighty-one');\nINSERT INTO t3 VALUES(2527, 35435, 'thirty-five thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(2528, 65370, 'sixty-five thousand three hundred seventy');\nINSERT INTO t3 VALUES(2529, 65570, 'sixty-five thousand five hundred seventy');\nINSERT INTO t3 VALUES(2530, 9468, 'nine thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(2531, 30798, 'thirty thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(2532, 3973, 'three thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(2533, 98690, 'ninety-eight thousand six hundred ninety');\nINSERT INTO t3 VALUES(2534, 42091, 'forty-two thousand ninety-one');\nINSERT INTO t3 VALUES(2535, 93808, 'ninety-three thousand eight hundred eight');\nINSERT INTO t3 VALUES(2536, 34476, 'thirty-four thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(2537, 94435, 'ninety-four thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(2538, 65549, 'sixty-five thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(2539, 17697, 'seventeen thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(2540, 89480, 'eighty-nine thousand four hundred eighty');\nINSERT INTO t3 VALUES(2541, 48800, 'forty-eight thousand eight hundred');\nINSERT INTO t3 VALUES(2542, 39972, 'thirty-nine thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(2543, 30739, 'thirty thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(2544, 69585, 'sixty-nine thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(2545, 78525, 'seventy-eight thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(2546, 93131, 'ninety-three thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(2547, 50469, 'fifty thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(2548, 54221, 'fifty-four thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(2549, 47721, 'forty-seven thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(2550, 44819, 'forty-four thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(2551, 66606, 'sixty-six thousand six hundred six');\nINSERT INTO t3 VALUES(2552, 21323, 'twenty-one thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(2553, 80810, 'eighty thousand eight hundred ten');\nINSERT INTO t3 VALUES(2554, 49582, 'forty-nine thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(2555, 89194, 'eighty-nine thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(2556, 33832, 'thirty-three thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(2557, 42125, 'forty-two thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(2558, 98532, 'ninety-eight thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(2559, 16766, 'sixteen thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(2560, 42094, 'forty-two thousand ninety-four');\nINSERT INTO t3 VALUES(2561, 18849, 'eighteen thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(2562, 51779, 'fifty-one thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(2563, 57940, 'fifty-seven thousand nine hundred forty');\nINSERT INTO t3 VALUES(2564, 53670, 'fifty-three thousand six hundred seventy');\nINSERT INTO t3 VALUES(2565, 64193, 'sixty-four thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(2566, 7027, 'seven thousand twenty-seven');\nINSERT INTO t3 VALUES(2567, 12283, 'twelve thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(2568, 21365, 'twenty-one thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(2569, 69557, 'sixty-nine thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(2570, 1114, 'one thousand one hundred fourteen');\nINSERT INTO t3 VALUES(2571, 26469, 'twenty-six thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(2572, 80281, 'eighty thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(2573, 56680, 'fifty-six thousand six hundred eighty');\nINSERT INTO t3 VALUES(2574, 33364, 'thirty-three thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(2575, 51200, 'fifty-one thousand two hundred');\nINSERT INTO t3 VALUES(2576, 87117, 'eighty-seven thousand one hundred seventeen');\nINSERT INTO t3 VALUES(2577, 67931, 'sixty-seven thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(2578, 95004, 'ninety-five thousand four');\nINSERT INTO t3 VALUES(2579, 77494, 'seventy-seven thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(2580, 16408, 'sixteen thousand four hundred eight');\nINSERT INTO t3 VALUES(2581, 93608, 'ninety-three thousand six hundred eight');\nINSERT INTO t3 VALUES(2582, 53734, 'fifty-three thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(2583, 9750, 'nine thousand seven hundred fifty');\nINSERT INTO t3 VALUES(2584, 15555, 'fifteen thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(2585, 40888, 'forty thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(2586, 21758, 'twenty-one thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(2587, 36876, 'thirty-six thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(2588, 71094, 'seventy-one thousand ninety-four');\nINSERT INTO t3 VALUES(2589, 71363, 'seventy-one thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(2590, 24553, 'twenty-four thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(2591, 73931, 'seventy-three thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(2592, 15314, 'fifteen thousand three hundred fourteen');\nINSERT INTO t3 VALUES(2593, 97503, 'ninety-seven thousand five hundred three');\nINSERT INTO t3 VALUES(2594, 25189, 'twenty-five thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(2595, 8199, 'eight thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(2596, 68451, 'sixty-eight thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(2597, 70192, 'seventy thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(2598, 46664, 'forty-six thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(2599, 42059, 'forty-two thousand fifty-nine');\nINSERT INTO t3 VALUES(2600, 45616, 'forty-five thousand six hundred sixteen');\nINSERT INTO t3 VALUES(2601, 5874, 'five thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(2602, 15960, 'fifteen thousand nine hundred sixty');\nINSERT INTO t3 VALUES(2603, 34898, 'thirty-four thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(2604, 55412, 'fifty-five thousand four hundred twelve');\nINSERT INTO t3 VALUES(2605, 6590, 'six thousand five hundred ninety');\nINSERT INTO t3 VALUES(2606, 45220, 'forty-five thousand two hundred twenty');\nINSERT INTO t3 VALUES(2607, 29499, 'twenty-nine thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(2608, 51342, 'fifty-one thousand three hundred forty-two');\nINSERT INTO t3 VALUES(2609, 8705, 'eight thousand seven hundred five');\nINSERT INTO t3 VALUES(2610, 45853, 'forty-five thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(2611, 35279, 'thirty-five thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(2612, 62318, 'sixty-two thousand three hundred eighteen');\nINSERT INTO t3 VALUES(2613, 66736, 'sixty-six thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(2614, 45988, 'forty-five thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(2615, 94586, 'ninety-four thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(2616, 21116, 'twenty-one thousand one hundred sixteen');\nINSERT INTO t3 VALUES(2617, 1804, 'one thousand eight hundred four');\nINSERT INTO t3 VALUES(2618, 24905, 'twenty-four thousand nine hundred five');\nINSERT INTO t3 VALUES(2619, 88957, 'eighty-eight thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(2620, 58175, 'fifty-eight thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(2621, 85473, 'eighty-five thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(2622, 74166, 'seventy-four thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(2623, 74461, 'seventy-four thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(2624, 40501, 'forty thousand five hundred one');\nINSERT INTO t3 VALUES(2625, 43541, 'forty-three thousand five hundred forty-one');\nINSERT INTO t3 VALUES(2626, 85325, 'eighty-five thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(2627, 95640, 'ninety-five thousand six hundred forty');\nINSERT INTO t3 VALUES(2628, 75868, 'seventy-five thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(2629, 69109, 'sixty-nine thousand one hundred nine');\nINSERT INTO t3 VALUES(2630, 53050, 'fifty-three thousand fifty');\nINSERT INTO t3 VALUES(2631, 14024, 'fourteen thousand twenty-four');\nINSERT INTO t3 VALUES(2632, 13679, 'thirteen thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(2633, 67620, 'sixty-seven thousand six hundred twenty');\nINSERT INTO t3 VALUES(2634, 32305, 'thirty-two thousand three hundred five');\nINSERT INTO t3 VALUES(2635, 61720, 'sixty-one thousand seven hundred twenty');\nINSERT INTO t3 VALUES(2636, 80107, 'eighty thousand one hundred seven');\nINSERT INTO t3 VALUES(2637, 82722, 'eighty-two thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(2638, 51847, 'fifty-one thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(2639, 8453, 'eight thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(2640, 30105, 'thirty thousand one hundred five');\nINSERT INTO t3 VALUES(2641, 41861, 'forty-one thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(2642, 93561, 'ninety-three thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(2643, 75440, 'seventy-five thousand four hundred forty');\nINSERT INTO t3 VALUES(2644, 22876, 'twenty-two thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(2645, 6604, 'six thousand six hundred four');\nINSERT INTO t3 VALUES(2646, 95596, 'ninety-five thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(2647, 19414, 'nineteen thousand four hundred fourteen');\nINSERT INTO t3 VALUES(2648, 77905, 'seventy-seven thousand nine hundred five');\nINSERT INTO t3 VALUES(2649, 92789, 'ninety-two thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(2650, 20860, 'twenty thousand eight hundred sixty');\nINSERT INTO t3 VALUES(2651, 99286, 'ninety-nine thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(2652, 29996, 'twenty-nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(2653, 15159, 'fifteen thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(2654, 99606, 'ninety-nine thousand six hundred six');\nINSERT INTO t3 VALUES(2655, 54128, 'fifty-four thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(2656, 77405, 'seventy-seven thousand four hundred five');\nINSERT INTO t3 VALUES(2657, 15625, 'fifteen thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(2658, 1525, 'one thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(2659, 34244, 'thirty-four thousand two hundred forty-four');\nINSERT INTO t3 VALUES(2660, 38687, 'thirty-eight thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(2661, 98998, 'ninety-eight thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(2662, 98698, 'ninety-eight thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(2663, 3920, 'three thousand nine hundred twenty');\nINSERT INTO t3 VALUES(2664, 2, 'two');\nINSERT INTO t3 VALUES(2665, 91857, 'ninety-one thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(2666, 23195, 'twenty-three thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(2667, 49499, 'forty-nine thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(2668, 20086, 'twenty thousand eighty-six');\nINSERT INTO t3 VALUES(2669, 97756, 'ninety-seven thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(2670, 19579, 'nineteen thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(2671, 41971, 'forty-one thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(2672, 45456, 'forty-five thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(2673, 86745, 'eighty-six thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(2674, 65633, 'sixty-five thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(2675, 36789, 'thirty-six thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(2676, 76483, 'seventy-six thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(2677, 36356, 'thirty-six thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(2678, 98591, 'ninety-eight thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(2679, 44868, 'forty-four thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(2680, 3562, 'three thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(2681, 22007, 'twenty-two thousand seven');\nINSERT INTO t3 VALUES(2682, 9310, 'nine thousand three hundred ten');\nINSERT INTO t3 VALUES(2683, 20270, 'twenty thousand two hundred seventy');\nINSERT INTO t3 VALUES(2684, 3926, 'three thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(2685, 66696, 'sixty-six thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(2686, 28671, 'twenty-eight thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(2687, 72817, 'seventy-two thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(2688, 89783, 'eighty-nine thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(2689, 15300, 'fifteen thousand three hundred');\nINSERT INTO t3 VALUES(2690, 18812, 'eighteen thousand eight hundred twelve');\nINSERT INTO t3 VALUES(2691, 44985, 'forty-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(2692, 82912, 'eighty-two thousand nine hundred twelve');\nINSERT INTO t3 VALUES(2693, 62118, 'sixty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(2694, 18031, 'eighteen thousand thirty-one');\nINSERT INTO t3 VALUES(2695, 71084, 'seventy-one thousand eighty-four');\nINSERT INTO t3 VALUES(2696, 45924, 'forty-five thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(2697, 36912, 'thirty-six thousand nine hundred twelve');\nINSERT INTO t3 VALUES(2698, 44209, 'forty-four thousand two hundred nine');\nINSERT INTO t3 VALUES(2699, 88553, 'eighty-eight thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(2700, 73660, 'seventy-three thousand six hundred sixty');\nINSERT INTO t3 VALUES(2701, 94137, 'ninety-four thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(2702, 88150, 'eighty-eight thousand one hundred fifty');\nINSERT INTO t3 VALUES(2703, 59646, 'fifty-nine thousand six hundred forty-six');\nINSERT INTO t3 VALUES(2704, 64108, 'sixty-four thousand one hundred eight');\nINSERT INTO t3 VALUES(2705, 39472, 'thirty-nine thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(2706, 69953, 'sixty-nine thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(2707, 74597, 'seventy-four thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(2708, 88306, 'eighty-eight thousand three hundred six');\nINSERT INTO t3 VALUES(2709, 67164, 'sixty-seven thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(2710, 44767, 'forty-four thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(2711, 21537, 'twenty-one thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(2712, 21814, 'twenty-one thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(2713, 30743, 'thirty thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(2714, 62130, 'sixty-two thousand one hundred thirty');\nINSERT INTO t3 VALUES(2715, 5202, 'five thousand two hundred two');\nINSERT INTO t3 VALUES(2716, 5298, 'five thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(2717, 38591, 'thirty-eight thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(2718, 44341, 'forty-four thousand three hundred forty-one');\nINSERT INTO t3 VALUES(2719, 25784, 'twenty-five thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(2720, 65934, 'sixty-five thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(2721, 84085, 'eighty-four thousand eighty-five');\nINSERT INTO t3 VALUES(2722, 5445, 'five thousand four hundred forty-five');\nINSERT INTO t3 VALUES(2723, 92558, 'ninety-two thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(2724, 41297, 'forty-one thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(2725, 92501, 'ninety-two thousand five hundred one');\nINSERT INTO t3 VALUES(2726, 65477, 'sixty-five thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(2727, 14831, 'fourteen thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(2728, 17597, 'seventeen thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(2729, 18997, 'eighteen thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(2730, 23019, 'twenty-three thousand nineteen');\nINSERT INTO t3 VALUES(2731, 29811, 'twenty-nine thousand eight hundred eleven');\nINSERT INTO t3 VALUES(2732, 91076, 'ninety-one thousand seventy-six');\nINSERT INTO t3 VALUES(2733, 73795, 'seventy-three thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(2734, 48080, 'forty-eight thousand eighty');\nINSERT INTO t3 VALUES(2735, 33473, 'thirty-three thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(2736, 20578, 'twenty thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(2737, 26740, 'twenty-six thousand seven hundred forty');\nINSERT INTO t3 VALUES(2738, 30309, 'thirty thousand three hundred nine');\nINSERT INTO t3 VALUES(2739, 58713, 'fifty-eight thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(2740, 30816, 'thirty thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(2741, 78961, 'seventy-eight thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(2742, 17980, 'seventeen thousand nine hundred eighty');\nINSERT INTO t3 VALUES(2743, 62725, 'sixty-two thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(2744, 42900, 'forty-two thousand nine hundred');\nINSERT INTO t3 VALUES(2745, 12795, 'twelve thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(2746, 30167, 'thirty thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(2747, 98000, 'ninety-eight thousand');\nINSERT INTO t3 VALUES(2748, 31452, 'thirty-one thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(2749, 50181, 'fifty thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(2750, 20346, 'twenty thousand three hundred forty-six');\nINSERT INTO t3 VALUES(2751, 76642, 'seventy-six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(2752, 23856, 'twenty-three thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(2753, 12872, 'twelve thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(2754, 28961, 'twenty-eight thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(2755, 65273, 'sixty-five thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(2756, 83360, 'eighty-three thousand three hundred sixty');\nINSERT INTO t3 VALUES(2757, 3413, 'three thousand four hundred thirteen');\nINSERT INTO t3 VALUES(2758, 18407, 'eighteen thousand four hundred seven');\nINSERT INTO t3 VALUES(2759, 74015, 'seventy-four thousand fifteen');\nINSERT INTO t3 VALUES(2760, 61982, 'sixty-one thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(2761, 42140, 'forty-two thousand one hundred forty');\nINSERT INTO t3 VALUES(2762, 15807, 'fifteen thousand eight hundred seven');\nINSERT INTO t3 VALUES(2763, 97705, 'ninety-seven thousand seven hundred five');\nINSERT INTO t3 VALUES(2764, 78911, 'seventy-eight thousand nine hundred eleven');\nINSERT INTO t3 VALUES(2765, 91429, 'ninety-one thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(2766, 11774, 'eleven thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(2767, 34703, 'thirty-four thousand seven hundred three');\nINSERT INTO t3 VALUES(2768, 59228, 'fifty-nine thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(2769, 77844, 'seventy-seven thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(2770, 22568, 'twenty-two thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(2771, 71347, 'seventy-one thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(2772, 65482, 'sixty-five thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(2773, 13520, 'thirteen thousand five hundred twenty');\nINSERT INTO t3 VALUES(2774, 33718, 'thirty-three thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(2775, 71037, 'seventy-one thousand thirty-seven');\nINSERT INTO t3 VALUES(2776, 64303, 'sixty-four thousand three hundred three');\nINSERT INTO t3 VALUES(2777, 30809, 'thirty thousand eight hundred nine');\nINSERT INTO t3 VALUES(2778, 37571, 'thirty-seven thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(2779, 5279, 'five thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(2780, 60787, 'sixty thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(2781, 61872, 'sixty-one thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(2782, 71610, 'seventy-one thousand six hundred ten');\nINSERT INTO t3 VALUES(2783, 22146, 'twenty-two thousand one hundred forty-six');\nINSERT INTO t3 VALUES(2784, 63599, 'sixty-three thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(2785, 72064, 'seventy-two thousand sixty-four');\nINSERT INTO t3 VALUES(2786, 55081, 'fifty-five thousand eighty-one');\nINSERT INTO t3 VALUES(2787, 52846, 'fifty-two thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(2788, 98065, 'ninety-eight thousand sixty-five');\nINSERT INTO t3 VALUES(2789, 30484, 'thirty thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(2790, 38907, 'thirty-eight thousand nine hundred seven');\nINSERT INTO t3 VALUES(2791, 46554, 'forty-six thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(2792, 59014, 'fifty-nine thousand fourteen');\nINSERT INTO t3 VALUES(2793, 65648, 'sixty-five thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(2794, 74065, 'seventy-four thousand sixty-five');\nINSERT INTO t3 VALUES(2795, 17116, 'seventeen thousand one hundred sixteen');\nINSERT INTO t3 VALUES(2796, 38993, 'thirty-eight thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(2797, 21715, 'twenty-one thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(2798, 15477, 'fifteen thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(2799, 4544, 'four thousand five hundred forty-four');\nINSERT INTO t3 VALUES(2800, 75787, 'seventy-five thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(2801, 59319, 'fifty-nine thousand three hundred nineteen');\nINSERT INTO t3 VALUES(2802, 96873, 'ninety-six thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(2803, 24004, 'twenty-four thousand four');\nINSERT INTO t3 VALUES(2804, 63353, 'sixty-three thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(2805, 96846, 'ninety-six thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(2806, 57281, 'fifty-seven thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(2807, 93566, 'ninety-three thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(2808, 15708, 'fifteen thousand seven hundred eight');\nINSERT INTO t3 VALUES(2809, 46292, 'forty-six thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(2810, 78479, 'seventy-eight thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(2811, 37086, 'thirty-seven thousand eighty-six');\nINSERT INTO t3 VALUES(2812, 81103, 'eighty-one thousand one hundred three');\nINSERT INTO t3 VALUES(2813, 90998, 'ninety thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(2814, 97436, 'ninety-seven thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(2815, 32908, 'thirty-two thousand nine hundred eight');\nINSERT INTO t3 VALUES(2816, 51525, 'fifty-one thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(2817, 97632, 'ninety-seven thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(2818, 97160, 'ninety-seven thousand one hundred sixty');\nINSERT INTO t3 VALUES(2819, 23392, 'twenty-three thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(2820, 80278, 'eighty thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(2821, 60041, 'sixty thousand forty-one');\nINSERT INTO t3 VALUES(2822, 38382, 'thirty-eight thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(2823, 61360, 'sixty-one thousand three hundred sixty');\nINSERT INTO t3 VALUES(2824, 44477, 'forty-four thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(2825, 93896, 'ninety-three thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(2826, 67062, 'sixty-seven thousand sixty-two');\nINSERT INTO t3 VALUES(2827, 59706, 'fifty-nine thousand seven hundred six');\nINSERT INTO t3 VALUES(2828, 99114, 'ninety-nine thousand one hundred fourteen');\nINSERT INTO t3 VALUES(2829, 85310, 'eighty-five thousand three hundred ten');\nINSERT INTO t3 VALUES(2830, 86574, 'eighty-six thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(2831, 57310, 'fifty-seven thousand three hundred ten');\nINSERT INTO t3 VALUES(2832, 83371, 'eighty-three thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(2833, 92203, 'ninety-two thousand two hundred three');\nINSERT INTO t3 VALUES(2834, 58493, 'fifty-eight thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(2835, 14561, 'fourteen thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(2836, 74188, 'seventy-four thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(2837, 56285, 'fifty-six thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(2838, 97663, 'ninety-seven thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(2839, 70747, 'seventy thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(2840, 51624, 'fifty-one thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(2841, 60717, 'sixty thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(2842, 79443, 'seventy-nine thousand four hundred forty-three');\nINSERT INTO t3 VALUES(2843, 38812, 'thirty-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(2844, 53715, 'fifty-three thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(2845, 46403, 'forty-six thousand four hundred three');\nINSERT INTO t3 VALUES(2846, 10139, 'ten thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(2847, 57390, 'fifty-seven thousand three hundred ninety');\nINSERT INTO t3 VALUES(2848, 60862, 'sixty thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(2849, 7243, 'seven thousand two hundred forty-three');\nINSERT INTO t3 VALUES(2850, 92790, 'ninety-two thousand seven hundred ninety');\nINSERT INTO t3 VALUES(2851, 19055, 'nineteen thousand fifty-five');\nINSERT INTO t3 VALUES(2852, 10827, 'ten thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(2853, 38979, 'thirty-eight thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(2854, 24786, 'twenty-four thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(2855, 22515, 'twenty-two thousand five hundred fifteen');\nINSERT INTO t3 VALUES(2856, 71199, 'seventy-one thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(2857, 84471, 'eighty-four thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(2858, 84750, 'eighty-four thousand seven hundred fifty');\nINSERT INTO t3 VALUES(2859, 35002, 'thirty-five thousand two');\nINSERT INTO t3 VALUES(2860, 50215, 'fifty thousand two hundred fifteen');\nINSERT INTO t3 VALUES(2861, 66801, 'sixty-six thousand eight hundred one');\nINSERT INTO t3 VALUES(2862, 40186, 'forty thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(2863, 86213, 'eighty-six thousand two hundred thirteen');\nINSERT INTO t3 VALUES(2864, 38960, 'thirty-eight thousand nine hundred sixty');\nINSERT INTO t3 VALUES(2865, 2641, 'two thousand six hundred forty-one');\nINSERT INTO t3 VALUES(2866, 88520, 'eighty-eight thousand five hundred twenty');\nINSERT INTO t3 VALUES(2867, 99257, 'ninety-nine thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(2868, 69547, 'sixty-nine thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(2869, 13986, 'thirteen thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(2870, 63408, 'sixty-three thousand four hundred eight');\nINSERT INTO t3 VALUES(2871, 39134, 'thirty-nine thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(2872, 94940, 'ninety-four thousand nine hundred forty');\nINSERT INTO t3 VALUES(2873, 62101, 'sixty-two thousand one hundred one');\nINSERT INTO t3 VALUES(2874, 85013, 'eighty-five thousand thirteen');\nINSERT INTO t3 VALUES(2875, 3429, 'three thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(2876, 2082, 'two thousand eighty-two');\nINSERT INTO t3 VALUES(2877, 73703, 'seventy-three thousand seven hundred three');\nINSERT INTO t3 VALUES(2878, 56579, 'fifty-six thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(2879, 8304, 'eight thousand three hundred four');\nINSERT INTO t3 VALUES(2880, 24126, 'twenty-four thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(2881, 73590, 'seventy-three thousand five hundred ninety');\nINSERT INTO t3 VALUES(2882, 53523, 'fifty-three thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(2883, 35807, 'thirty-five thousand eight hundred seven');\nINSERT INTO t3 VALUES(2884, 73785, 'seventy-three thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(2885, 29535, 'twenty-nine thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(2886, 45575, 'forty-five thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(2887, 11998, 'eleven thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(2888, 80544, 'eighty thousand five hundred forty-four');\nINSERT INTO t3 VALUES(2889, 27665, 'twenty-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(2890, 89301, 'eighty-nine thousand three hundred one');\nINSERT INTO t3 VALUES(2891, 98443, 'ninety-eight thousand four hundred forty-three');\nINSERT INTO t3 VALUES(2892, 46410, 'forty-six thousand four hundred ten');\nINSERT INTO t3 VALUES(2893, 55437, 'fifty-five thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(2894, 20985, 'twenty thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(2895, 26558, 'twenty-six thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(2896, 43405, 'forty-three thousand four hundred five');\nINSERT INTO t3 VALUES(2897, 35451, 'thirty-five thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(2898, 91920, 'ninety-one thousand nine hundred twenty');\nINSERT INTO t3 VALUES(2899, 16981, 'sixteen thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(2900, 51626, 'fifty-one thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(2901, 15867, 'fifteen thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(2902, 1917, 'one thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(2903, 3598, 'three thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(2904, 6021, 'six thousand twenty-one');\nINSERT INTO t3 VALUES(2905, 58385, 'fifty-eight thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(2906, 91305, 'ninety-one thousand three hundred five');\nINSERT INTO t3 VALUES(2907, 80849, 'eighty thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(2908, 2038, 'two thousand thirty-eight');\nINSERT INTO t3 VALUES(2909, 74335, 'seventy-four thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(2910, 18766, 'eighteen thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(2911, 92557, 'ninety-two thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(2912, 60464, 'sixty thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(2913, 29183, 'twenty-nine thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(2914, 68522, 'sixty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(2915, 8023, 'eight thousand twenty-three');\nINSERT INTO t3 VALUES(2916, 92844, 'ninety-two thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(2917, 60176, 'sixty thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(2918, 27847, 'twenty-seven thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(2919, 61306, 'sixty-one thousand three hundred six');\nINSERT INTO t3 VALUES(2920, 1652, 'one thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(2921, 83708, 'eighty-three thousand seven hundred eight');\nINSERT INTO t3 VALUES(2922, 17423, 'seventeen thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(2923, 28731, 'twenty-eight thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(2924, 84517, 'eighty-four thousand five hundred seventeen');\nINSERT INTO t3 VALUES(2925, 91257, 'ninety-one thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(2926, 102, 'one hundred two');\nINSERT INTO t3 VALUES(2927, 55034, 'fifty-five thousand thirty-four');\nINSERT INTO t3 VALUES(2928, 58807, 'fifty-eight thousand eight hundred seven');\nINSERT INTO t3 VALUES(2929, 67341, 'sixty-seven thousand three hundred forty-one');\nINSERT INTO t3 VALUES(2930, 26924, 'twenty-six thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(2931, 5980, 'five thousand nine hundred eighty');\nINSERT INTO t3 VALUES(2932, 84936, 'eighty-four thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(2933, 74198, 'seventy-four thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(2934, 88469, 'eighty-eight thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(2935, 59988, 'fifty-nine thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(2936, 96305, 'ninety-six thousand three hundred five');\nINSERT INTO t3 VALUES(2937, 36534, 'thirty-six thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(2938, 96565, 'ninety-six thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(2939, 63601, 'sixty-three thousand six hundred one');\nINSERT INTO t3 VALUES(2940, 74848, 'seventy-four thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(2941, 3419, 'three thousand four hundred nineteen');\nINSERT INTO t3 VALUES(2942, 46979, 'forty-six thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(2943, 70502, 'seventy thousand five hundred two');\nINSERT INTO t3 VALUES(2944, 67926, 'sixty-seven thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(2945, 3646, 'three thousand six hundred forty-six');\nINSERT INTO t3 VALUES(2946, 23691, 'twenty-three thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(2947, 46257, 'forty-six thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(2948, 24501, 'twenty-four thousand five hundred one');\nINSERT INTO t3 VALUES(2949, 87797, 'eighty-seven thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(2950, 65232, 'sixty-five thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(2951, 61134, 'sixty-one thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(2952, 6112, 'six thousand one hundred twelve');\nINSERT INTO t3 VALUES(2953, 80928, 'eighty thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(2954, 29115, 'twenty-nine thousand one hundred fifteen');\nINSERT INTO t3 VALUES(2955, 39090, 'thirty-nine thousand ninety');\nINSERT INTO t3 VALUES(2956, 59496, 'fifty-nine thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(2957, 96603, 'ninety-six thousand six hundred three');\nINSERT INTO t3 VALUES(2958, 61338, 'sixty-one thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(2959, 89053, 'eighty-nine thousand fifty-three');\nINSERT INTO t3 VALUES(2960, 16712, 'sixteen thousand seven hundred twelve');\nINSERT INTO t3 VALUES(2961, 18896, 'eighteen thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(2962, 43642, 'forty-three thousand six hundred forty-two');\nINSERT INTO t3 VALUES(2963, 82354, 'eighty-two thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(2964, 29710, 'twenty-nine thousand seven hundred ten');\nINSERT INTO t3 VALUES(2965, 40168, 'forty thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(2966, 77207, 'seventy-seven thousand two hundred seven');\nINSERT INTO t3 VALUES(2967, 57743, 'fifty-seven thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(2968, 35097, 'thirty-five thousand ninety-seven');\nINSERT INTO t3 VALUES(2969, 23686, 'twenty-three thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(2970, 18806, 'eighteen thousand eight hundred six');\nINSERT INTO t3 VALUES(2971, 3162, 'three thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(2972, 38435, 'thirty-eight thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(2973, 90663, 'ninety thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(2974, 37123, 'thirty-seven thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(2975, 17443, 'seventeen thousand four hundred forty-three');\nINSERT INTO t3 VALUES(2976, 69930, 'sixty-nine thousand nine hundred thirty');\nINSERT INTO t3 VALUES(2977, 36756, 'thirty-six thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(2978, 47146, 'forty-seven thousand one hundred forty-six');\nINSERT INTO t3 VALUES(2979, 82587, 'eighty-two thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(2980, 51656, 'fifty-one thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(2981, 36488, 'thirty-six thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(2982, 15389, 'fifteen thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(2983, 10391, 'ten thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(2984, 57071, 'fifty-seven thousand seventy-one');\nINSERT INTO t3 VALUES(2985, 5693, 'five thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(2986, 91681, 'ninety-one thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(2987, 14795, 'fourteen thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(2988, 98622, 'ninety-eight thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(2989, 80049, 'eighty thousand forty-nine');\nINSERT INTO t3 VALUES(2990, 79991, 'seventy-nine thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(2991, 16058, 'sixteen thousand fifty-eight');\nINSERT INTO t3 VALUES(2992, 84106, 'eighty-four thousand one hundred six');\nINSERT INTO t3 VALUES(2993, 11367, 'eleven thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(2994, 96630, 'ninety-six thousand six hundred thirty');\nINSERT INTO t3 VALUES(2995, 60407, 'sixty thousand four hundred seven');\nINSERT INTO t3 VALUES(2996, 96793, 'ninety-six thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(2997, 11440, 'eleven thousand four hundred forty');\nINSERT INTO t3 VALUES(2998, 92353, 'ninety-two thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(2999, 12279, 'twelve thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(3000, 83061, 'eighty-three thousand sixty-one');\nINSERT INTO t3 VALUES(3001, 93474, 'ninety-three thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(3002, 61141, 'sixty-one thousand one hundred forty-one');\nINSERT INTO t3 VALUES(3003, 94748, 'ninety-four thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(3004, 15011, 'fifteen thousand eleven');\nINSERT INTO t3 VALUES(3005, 9935, 'nine thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(3006, 96190, 'ninety-six thousand one hundred ninety');\nINSERT INTO t3 VALUES(3007, 8888, 'eight thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(3008, 7642, 'seven thousand six hundred forty-two');\nINSERT INTO t3 VALUES(3009, 7963, 'seven thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(3010, 89639, 'eighty-nine thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(3011, 50589, 'fifty thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(3012, 72397, 'seventy-two thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(3013, 70401, 'seventy thousand four hundred one');\nINSERT INTO t3 VALUES(3014, 9318, 'nine thousand three hundred eighteen');\nINSERT INTO t3 VALUES(3015, 3896, 'three thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(3016, 514, 'five hundred fourteen');\nINSERT INTO t3 VALUES(3017, 91559, 'ninety-one thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(3018, 5144, 'five thousand one hundred forty-four');\nINSERT INTO t3 VALUES(3019, 74807, 'seventy-four thousand eight hundred seven');\nINSERT INTO t3 VALUES(3020, 69331, 'sixty-nine thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(3021, 78478, 'seventy-eight thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(3022, 54085, 'fifty-four thousand eighty-five');\nINSERT INTO t3 VALUES(3023, 28495, 'twenty-eight thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(3024, 89152, 'eighty-nine thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(3025, 62723, 'sixty-two thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(3026, 10209, 'ten thousand two hundred nine');\nINSERT INTO t3 VALUES(3027, 75374, 'seventy-five thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(3028, 57968, 'fifty-seven thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(3029, 24154, 'twenty-four thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(3030, 42180, 'forty-two thousand one hundred eighty');\nINSERT INTO t3 VALUES(3031, 34365, 'thirty-four thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(3032, 36802, 'thirty-six thousand eight hundred two');\nINSERT INTO t3 VALUES(3033, 10804, 'ten thousand eight hundred four');\nINSERT INTO t3 VALUES(3034, 393, 'three hundred ninety-three');\nINSERT INTO t3 VALUES(3035, 32409, 'thirty-two thousand four hundred nine');\nINSERT INTO t3 VALUES(3036, 24639, 'twenty-four thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(3037, 31732, 'thirty-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(3038, 93655, 'ninety-three thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(3039, 45352, 'forty-five thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(3040, 71495, 'seventy-one thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(3041, 49125, 'forty-nine thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(3042, 71475, 'seventy-one thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(3043, 88099, 'eighty-eight thousand ninety-nine');\nINSERT INTO t3 VALUES(3044, 2802, 'two thousand eight hundred two');\nINSERT INTO t3 VALUES(3045, 92302, 'ninety-two thousand three hundred two');\nINSERT INTO t3 VALUES(3046, 46223, 'forty-six thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(3047, 49251, 'forty-nine thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(3048, 53096, 'fifty-three thousand ninety-six');\nINSERT INTO t3 VALUES(3049, 6124, 'six thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(3050, 60182, 'sixty thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(3051, 11384, 'eleven thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(3052, 46371, 'forty-six thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(3053, 3496, 'three thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(3054, 75447, 'seventy-five thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(3055, 37564, 'thirty-seven thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(3056, 84478, 'eighty-four thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(3057, 6359, 'six thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(3058, 65080, 'sixty-five thousand eighty');\nINSERT INTO t3 VALUES(3059, 82568, 'eighty-two thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(3060, 38785, 'thirty-eight thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(3061, 5026, 'five thousand twenty-six');\nINSERT INTO t3 VALUES(3062, 10490, 'ten thousand four hundred ninety');\nINSERT INTO t3 VALUES(3063, 70633, 'seventy thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(3064, 5906, 'five thousand nine hundred six');\nINSERT INTO t3 VALUES(3065, 63913, 'sixty-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(3066, 20968, 'twenty thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(3067, 76354, 'seventy-six thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(3068, 80536, 'eighty thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(3069, 90110, 'ninety thousand one hundred ten');\nINSERT INTO t3 VALUES(3070, 22153, 'twenty-two thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(3071, 28585, 'twenty-eight thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(3072, 42975, 'forty-two thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(3073, 60548, 'sixty thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(3074, 35162, 'thirty-five thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(3075, 17299, 'seventeen thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(3076, 34103, 'thirty-four thousand one hundred three');\nINSERT INTO t3 VALUES(3077, 60403, 'sixty thousand four hundred three');\nINSERT INTO t3 VALUES(3078, 68821, 'sixty-eight thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(3079, 66551, 'sixty-six thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(3080, 34044, 'thirty-four thousand forty-four');\nINSERT INTO t3 VALUES(3081, 2434, 'two thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(3082, 32678, 'thirty-two thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(3083, 97573, 'ninety-seven thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(3084, 79730, 'seventy-nine thousand seven hundred thirty');\nINSERT INTO t3 VALUES(3085, 96952, 'ninety-six thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(3086, 12113, 'twelve thousand one hundred thirteen');\nINSERT INTO t3 VALUES(3087, 86105, 'eighty-six thousand one hundred five');\nINSERT INTO t3 VALUES(3088, 9565, 'nine thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(3089, 2746, 'two thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(3090, 73122, 'seventy-three thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(3091, 76138, 'seventy-six thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(3092, 83045, 'eighty-three thousand forty-five');\nINSERT INTO t3 VALUES(3093, 72737, 'seventy-two thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(3094, 43302, 'forty-three thousand three hundred two');\nINSERT INTO t3 VALUES(3095, 17047, 'seventeen thousand forty-seven');\nINSERT INTO t3 VALUES(3096, 24057, 'twenty-four thousand fifty-seven');\nINSERT INTO t3 VALUES(3097, 55979, 'fifty-five thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(3098, 11932, 'eleven thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(3099, 80004, 'eighty thousand four');\nINSERT INTO t3 VALUES(3100, 56325, 'fifty-six thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(3101, 60659, 'sixty thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(3102, 95109, 'ninety-five thousand one hundred nine');\nINSERT INTO t3 VALUES(3103, 89053, 'eighty-nine thousand fifty-three');\nINSERT INTO t3 VALUES(3104, 97057, 'ninety-seven thousand fifty-seven');\nINSERT INTO t3 VALUES(3105, 56689, 'fifty-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(3106, 83363, 'eighty-three thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(3107, 11483, 'eleven thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(3108, 90357, 'ninety thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(3109, 26054, 'twenty-six thousand fifty-four');\nINSERT INTO t3 VALUES(3110, 85082, 'eighty-five thousand eighty-two');\nINSERT INTO t3 VALUES(3111, 24911, 'twenty-four thousand nine hundred eleven');\nINSERT INTO t3 VALUES(3112, 92631, 'ninety-two thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(3113, 21372, 'twenty-one thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(3114, 86961, 'eighty-six thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(3115, 14489, 'fourteen thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(3116, 18307, 'eighteen thousand three hundred seven');\nINSERT INTO t3 VALUES(3117, 6507, 'six thousand five hundred seven');\nINSERT INTO t3 VALUES(3118, 15450, 'fifteen thousand four hundred fifty');\nINSERT INTO t3 VALUES(3119, 53337, 'fifty-three thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(3120, 15581, 'fifteen thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(3121, 46980, 'forty-six thousand nine hundred eighty');\nINSERT INTO t3 VALUES(3122, 39734, 'thirty-nine thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(3123, 58132, 'fifty-eight thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(3124, 22902, 'twenty-two thousand nine hundred two');\nINSERT INTO t3 VALUES(3125, 77108, 'seventy-seven thousand one hundred eight');\nINSERT INTO t3 VALUES(3126, 27427, 'twenty-seven thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(3127, 37714, 'thirty-seven thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(3128, 21911, 'twenty-one thousand nine hundred eleven');\nINSERT INTO t3 VALUES(3129, 21458, 'twenty-one thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(3130, 55137, 'fifty-five thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(3131, 47173, 'forty-seven thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(3132, 50761, 'fifty thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(3133, 46622, 'forty-six thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(3134, 40402, 'forty thousand four hundred two');\nINSERT INTO t3 VALUES(3135, 80867, 'eighty thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(3136, 76342, 'seventy-six thousand three hundred forty-two');\nINSERT INTO t3 VALUES(3137, 16687, 'sixteen thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(3138, 73752, 'seventy-three thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(3139, 39178, 'thirty-nine thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(3140, 41487, 'forty-one thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(3141, 24561, 'twenty-four thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(3142, 20612, 'twenty thousand six hundred twelve');\nINSERT INTO t3 VALUES(3143, 87930, 'eighty-seven thousand nine hundred thirty');\nINSERT INTO t3 VALUES(3144, 12138, 'twelve thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(3145, 3689, 'three thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(3146, 72938, 'seventy-two thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(3147, 69887, 'sixty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(3148, 90716, 'ninety thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(3149, 18817, 'eighteen thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(3150, 46065, 'forty-six thousand sixty-five');\nINSERT INTO t3 VALUES(3151, 86098, 'eighty-six thousand ninety-eight');\nINSERT INTO t3 VALUES(3152, 50593, 'fifty thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(3153, 33024, 'thirty-three thousand twenty-four');\nINSERT INTO t3 VALUES(3154, 31817, 'thirty-one thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(3155, 42271, 'forty-two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(3156, 11794, 'eleven thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(3157, 79035, 'seventy-nine thousand thirty-five');\nINSERT INTO t3 VALUES(3158, 69096, 'sixty-nine thousand ninety-six');\nINSERT INTO t3 VALUES(3159, 20828, 'twenty thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(3160, 36978, 'thirty-six thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(3161, 44827, 'forty-four thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(3162, 22940, 'twenty-two thousand nine hundred forty');\nINSERT INTO t3 VALUES(3163, 17136, 'seventeen thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(3164, 91650, 'ninety-one thousand six hundred fifty');\nINSERT INTO t3 VALUES(3165, 61088, 'sixty-one thousand eighty-eight');\nINSERT INTO t3 VALUES(3166, 59033, 'fifty-nine thousand thirty-three');\nINSERT INTO t3 VALUES(3167, 72525, 'seventy-two thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(3168, 59873, 'fifty-nine thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(3169, 95312, 'ninety-five thousand three hundred twelve');\nINSERT INTO t3 VALUES(3170, 56056, 'fifty-six thousand fifty-six');\nINSERT INTO t3 VALUES(3171, 78722, 'seventy-eight thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(3172, 70408, 'seventy thousand four hundred eight');\nINSERT INTO t3 VALUES(3173, 79756, 'seventy-nine thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(3174, 20845, 'twenty thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(3175, 94769, 'ninety-four thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(3176, 10242, 'ten thousand two hundred forty-two');\nINSERT INTO t3 VALUES(3177, 28214, 'twenty-eight thousand two hundred fourteen');\nINSERT INTO t3 VALUES(3178, 15220, 'fifteen thousand two hundred twenty');\nINSERT INTO t3 VALUES(3179, 57142, 'fifty-seven thousand one hundred forty-two');\nINSERT INTO t3 VALUES(3180, 8049, 'eight thousand forty-nine');\nINSERT INTO t3 VALUES(3181, 99608, 'ninety-nine thousand six hundred eight');\nINSERT INTO t3 VALUES(3182, 16838, 'sixteen thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(3183, 14823, 'fourteen thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(3184, 95734, 'ninety-five thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(3185, 49103, 'forty-nine thousand one hundred three');\nINSERT INTO t3 VALUES(3186, 76791, 'seventy-six thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(3187, 8509, 'eight thousand five hundred nine');\nINSERT INTO t3 VALUES(3188, 84475, 'eighty-four thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(3189, 58753, 'fifty-eight thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(3190, 36274, 'thirty-six thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(3191, 3981, 'three thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(3192, 71800, 'seventy-one thousand eight hundred');\nINSERT INTO t3 VALUES(3193, 70992, 'seventy thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(3194, 94931, 'ninety-four thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(3195, 28535, 'twenty-eight thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(3196, 41850, 'forty-one thousand eight hundred fifty');\nINSERT INTO t3 VALUES(3197, 12618, 'twelve thousand six hundred eighteen');\nINSERT INTO t3 VALUES(3198, 43481, 'forty-three thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(3199, 67425, 'sixty-seven thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(3200, 21396, 'twenty-one thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(3201, 79411, 'seventy-nine thousand four hundred eleven');\nINSERT INTO t3 VALUES(3202, 36051, 'thirty-six thousand fifty-one');\nINSERT INTO t3 VALUES(3203, 39527, 'thirty-nine thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(3204, 74647, 'seventy-four thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(3205, 59682, 'fifty-nine thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(3206, 44226, 'forty-four thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(3207, 91876, 'ninety-one thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(3208, 42268, 'forty-two thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(3209, 32013, 'thirty-two thousand thirteen');\nINSERT INTO t3 VALUES(3210, 74405, 'seventy-four thousand four hundred five');\nINSERT INTO t3 VALUES(3211, 28426, 'twenty-eight thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(3212, 6638, 'six thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(3213, 45690, 'forty-five thousand six hundred ninety');\nINSERT INTO t3 VALUES(3214, 43887, 'forty-three thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(3215, 70692, 'seventy thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(3216, 75903, 'seventy-five thousand nine hundred three');\nINSERT INTO t3 VALUES(3217, 4733, 'four thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(3218, 61268, 'sixty-one thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(3219, 96708, 'ninety-six thousand seven hundred eight');\nINSERT INTO t3 VALUES(3220, 85602, 'eighty-five thousand six hundred two');\nINSERT INTO t3 VALUES(3221, 56994, 'fifty-six thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(3222, 29897, 'twenty-nine thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(3223, 37207, 'thirty-seven thousand two hundred seven');\nINSERT INTO t3 VALUES(3224, 27267, 'twenty-seven thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(3225, 4364, 'four thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(3226, 4764, 'four thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(3227, 21280, 'twenty-one thousand two hundred eighty');\nINSERT INTO t3 VALUES(3228, 57894, 'fifty-seven thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(3229, 97878, 'ninety-seven thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(3230, 20265, 'twenty thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(3231, 55906, 'fifty-five thousand nine hundred six');\nINSERT INTO t3 VALUES(3232, 45999, 'forty-five thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(3233, 26862, 'twenty-six thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(3234, 66546, 'sixty-six thousand five hundred forty-six');\nINSERT INTO t3 VALUES(3235, 58681, 'fifty-eight thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(3236, 20634, 'twenty thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(3237, 23165, 'twenty-three thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(3238, 69608, 'sixty-nine thousand six hundred eight');\nINSERT INTO t3 VALUES(3239, 51635, 'fifty-one thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(3240, 78119, 'seventy-eight thousand one hundred nineteen');\nINSERT INTO t3 VALUES(3241, 13103, 'thirteen thousand one hundred three');\nINSERT INTO t3 VALUES(3242, 98193, 'ninety-eight thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(3243, 97710, 'ninety-seven thousand seven hundred ten');\nINSERT INTO t3 VALUES(3244, 39832, 'thirty-nine thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(3245, 1304, 'one thousand three hundred four');\nINSERT INTO t3 VALUES(3246, 77713, 'seventy-seven thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(3247, 55426, 'fifty-five thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(3248, 30414, 'thirty thousand four hundred fourteen');\nINSERT INTO t3 VALUES(3249, 36097, 'thirty-six thousand ninety-seven');\nINSERT INTO t3 VALUES(3250, 66159, 'sixty-six thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(3251, 48348, 'forty-eight thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(3252, 24606, 'twenty-four thousand six hundred six');\nINSERT INTO t3 VALUES(3253, 78026, 'seventy-eight thousand twenty-six');\nINSERT INTO t3 VALUES(3254, 33277, 'thirty-three thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(3255, 13613, 'thirteen thousand six hundred thirteen');\nINSERT INTO t3 VALUES(3256, 22998, 'twenty-two thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(3257, 1499, 'one thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(3258, 54486, 'fifty-four thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(3259, 59699, 'fifty-nine thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(3260, 89747, 'eighty-nine thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(3261, 18002, 'eighteen thousand two');\nINSERT INTO t3 VALUES(3262, 46061, 'forty-six thousand sixty-one');\nINSERT INTO t3 VALUES(3263, 34695, 'thirty-four thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(3264, 30017, 'thirty thousand seventeen');\nINSERT INTO t3 VALUES(3265, 24428, 'twenty-four thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(3266, 50421, 'fifty thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(3267, 14749, 'fourteen thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(3268, 98725, 'ninety-eight thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(3269, 52706, 'fifty-two thousand seven hundred six');\nINSERT INTO t3 VALUES(3270, 55253, 'fifty-five thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(3271, 79854, 'seventy-nine thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(3272, 23774, 'twenty-three thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(3273, 38704, 'thirty-eight thousand seven hundred four');\nINSERT INTO t3 VALUES(3274, 5778, 'five thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(3275, 16180, 'sixteen thousand one hundred eighty');\nINSERT INTO t3 VALUES(3276, 42048, 'forty-two thousand forty-eight');\nINSERT INTO t3 VALUES(3277, 89075, 'eighty-nine thousand seventy-five');\nINSERT INTO t3 VALUES(3278, 88616, 'eighty-eight thousand six hundred sixteen');\nINSERT INTO t3 VALUES(3279, 66289, 'sixty-six thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(3280, 63549, 'sixty-three thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(3281, 6772, 'six thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(3282, 88839, 'eighty-eight thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(3283, 335, 'three hundred thirty-five');\nINSERT INTO t3 VALUES(3284, 73167, 'seventy-three thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(3285, 26017, 'twenty-six thousand seventeen');\nINSERT INTO t3 VALUES(3286, 47230, 'forty-seven thousand two hundred thirty');\nINSERT INTO t3 VALUES(3287, 3536, 'three thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(3288, 92717, 'ninety-two thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(3289, 92707, 'ninety-two thousand seven hundred seven');\nINSERT INTO t3 VALUES(3290, 80363, 'eighty thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(3291, 70795, 'seventy thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(3292, 28974, 'twenty-eight thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(3293, 98907, 'ninety-eight thousand nine hundred seven');\nINSERT INTO t3 VALUES(3294, 16328, 'sixteen thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(3295, 52258, 'fifty-two thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(3296, 10018, 'ten thousand eighteen');\nINSERT INTO t3 VALUES(3297, 76504, 'seventy-six thousand five hundred four');\nINSERT INTO t3 VALUES(3298, 41695, 'forty-one thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(3299, 8079, 'eight thousand seventy-nine');\nINSERT INTO t3 VALUES(3300, 55552, 'fifty-five thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(3301, 59369, 'fifty-nine thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(3302, 95604, 'ninety-five thousand six hundred four');\nINSERT INTO t3 VALUES(3303, 54871, 'fifty-four thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(3304, 60447, 'sixty thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(3305, 16541, 'sixteen thousand five hundred forty-one');\nINSERT INTO t3 VALUES(3306, 4792, 'four thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(3307, 32900, 'thirty-two thousand nine hundred');\nINSERT INTO t3 VALUES(3308, 20302, 'twenty thousand three hundred two');\nINSERT INTO t3 VALUES(3309, 69833, 'sixty-nine thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(3310, 48982, 'forty-eight thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(3311, 44646, 'forty-four thousand six hundred forty-six');\nINSERT INTO t3 VALUES(3312, 16740, 'sixteen thousand seven hundred forty');\nINSERT INTO t3 VALUES(3313, 84826, 'eighty-four thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(3314, 76724, 'seventy-six thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(3315, 20399, 'twenty thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(3316, 44189, 'forty-four thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(3317, 52064, 'fifty-two thousand sixty-four');\nINSERT INTO t3 VALUES(3318, 19888, 'nineteen thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(3319, 87260, 'eighty-seven thousand two hundred sixty');\nINSERT INTO t3 VALUES(3320, 60706, 'sixty thousand seven hundred six');\nINSERT INTO t3 VALUES(3321, 11743, 'eleven thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(3322, 98332, 'ninety-eight thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(3323, 98608, 'ninety-eight thousand six hundred eight');\nINSERT INTO t3 VALUES(3324, 12706, 'twelve thousand seven hundred six');\nINSERT INTO t3 VALUES(3325, 80743, 'eighty thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(3326, 9245, 'nine thousand two hundred forty-five');\nINSERT INTO t3 VALUES(3327, 97091, 'ninety-seven thousand ninety-one');\nINSERT INTO t3 VALUES(3328, 37640, 'thirty-seven thousand six hundred forty');\nINSERT INTO t3 VALUES(3329, 30129, 'thirty thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(3330, 14433, 'fourteen thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(3331, 36501, 'thirty-six thousand five hundred one');\nINSERT INTO t3 VALUES(3332, 98143, 'ninety-eight thousand one hundred forty-three');\nINSERT INTO t3 VALUES(3333, 94760, 'ninety-four thousand seven hundred sixty');\nINSERT INTO t3 VALUES(3334, 1365, 'one thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(3335, 64789, 'sixty-four thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(3336, 91166, 'ninety-one thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(3337, 95275, 'ninety-five thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(3338, 29549, 'twenty-nine thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(3339, 3192, 'three thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(3340, 22206, 'twenty-two thousand two hundred six');\nINSERT INTO t3 VALUES(3341, 24498, 'twenty-four thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(3342, 96383, 'ninety-six thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(3343, 56472, 'fifty-six thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(3344, 19309, 'nineteen thousand three hundred nine');\nINSERT INTO t3 VALUES(3345, 28583, 'twenty-eight thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(3346, 18820, 'eighteen thousand eight hundred twenty');\nINSERT INTO t3 VALUES(3347, 14519, 'fourteen thousand five hundred nineteen');\nINSERT INTO t3 VALUES(3348, 19863, 'nineteen thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(3349, 82008, 'eighty-two thousand eight');\nINSERT INTO t3 VALUES(3350, 37956, 'thirty-seven thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(3351, 77175, 'seventy-seven thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(3352, 76470, 'seventy-six thousand four hundred seventy');\nINSERT INTO t3 VALUES(3353, 56710, 'fifty-six thousand seven hundred ten');\nINSERT INTO t3 VALUES(3354, 36240, 'thirty-six thousand two hundred forty');\nINSERT INTO t3 VALUES(3355, 13736, 'thirteen thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(3356, 26905, 'twenty-six thousand nine hundred five');\nINSERT INTO t3 VALUES(3357, 94429, 'ninety-four thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(3358, 69232, 'sixty-nine thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(3359, 13347, 'thirteen thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(3360, 41222, 'forty-one thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(3361, 22915, 'twenty-two thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(3362, 99782, 'ninety-nine thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(3363, 39237, 'thirty-nine thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(3364, 59013, 'fifty-nine thousand thirteen');\nINSERT INTO t3 VALUES(3365, 35271, 'thirty-five thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(3366, 87957, 'eighty-seven thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(3367, 96047, 'ninety-six thousand forty-seven');\nINSERT INTO t3 VALUES(3368, 44935, 'forty-four thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(3369, 48207, 'forty-eight thousand two hundred seven');\nINSERT INTO t3 VALUES(3370, 59682, 'fifty-nine thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(3371, 34427, 'thirty-four thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(3372, 76097, 'seventy-six thousand ninety-seven');\nINSERT INTO t3 VALUES(3373, 6940, 'six thousand nine hundred forty');\nINSERT INTO t3 VALUES(3374, 34411, 'thirty-four thousand four hundred eleven');\nINSERT INTO t3 VALUES(3375, 76909, 'seventy-six thousand nine hundred nine');\nINSERT INTO t3 VALUES(3376, 37211, 'thirty-seven thousand two hundred eleven');\nINSERT INTO t3 VALUES(3377, 33070, 'thirty-three thousand seventy');\nINSERT INTO t3 VALUES(3378, 62925, 'sixty-two thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(3379, 10312, 'ten thousand three hundred twelve');\nINSERT INTO t3 VALUES(3380, 87309, 'eighty-seven thousand three hundred nine');\nINSERT INTO t3 VALUES(3381, 51257, 'fifty-one thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(3382, 41032, 'forty-one thousand thirty-two');\nINSERT INTO t3 VALUES(3383, 12112, 'twelve thousand one hundred twelve');\nINSERT INTO t3 VALUES(3384, 83862, 'eighty-three thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(3385, 18658, 'eighteen thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(3386, 66391, 'sixty-six thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(3387, 53702, 'fifty-three thousand seven hundred two');\nINSERT INTO t3 VALUES(3388, 70524, 'seventy thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(3389, 76634, 'seventy-six thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(3390, 70354, 'seventy thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(3391, 25667, 'twenty-five thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(3392, 51157, 'fifty-one thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(3393, 53810, 'fifty-three thousand eight hundred ten');\nINSERT INTO t3 VALUES(3394, 43269, 'forty-three thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(3395, 56935, 'fifty-six thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(3396, 69881, 'sixty-nine thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(3397, 80011, 'eighty thousand eleven');\nINSERT INTO t3 VALUES(3398, 3626, 'three thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(3399, 73648, 'seventy-three thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(3400, 62576, 'sixty-two thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(3401, 93419, 'ninety-three thousand four hundred nineteen');\nINSERT INTO t3 VALUES(3402, 14079, 'fourteen thousand seventy-nine');\nINSERT INTO t3 VALUES(3403, 52611, 'fifty-two thousand six hundred eleven');\nINSERT INTO t3 VALUES(3404, 28500, 'twenty-eight thousand five hundred');\nINSERT INTO t3 VALUES(3405, 38930, 'thirty-eight thousand nine hundred thirty');\nINSERT INTO t3 VALUES(3406, 91958, 'ninety-one thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(3407, 20713, 'twenty thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(3408, 93978, 'ninety-three thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(3409, 49774, 'forty-nine thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(3410, 1238, 'one thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(3411, 9685, 'nine thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(3412, 9456, 'nine thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(3413, 44453, 'forty-four thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(3414, 91541, 'ninety-one thousand five hundred forty-one');\nINSERT INTO t3 VALUES(3415, 14691, 'fourteen thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(3416, 53203, 'fifty-three thousand two hundred three');\nINSERT INTO t3 VALUES(3417, 94105, 'ninety-four thousand one hundred five');\nINSERT INTO t3 VALUES(3418, 60224, 'sixty thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(3419, 89945, 'eighty-nine thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(3420, 17324, 'seventeen thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(3421, 17782, 'seventeen thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(3422, 48307, 'forty-eight thousand three hundred seven');\nINSERT INTO t3 VALUES(3423, 32385, 'thirty-two thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(3424, 9722, 'nine thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(3425, 81913, 'eighty-one thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(3426, 11459, 'eleven thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(3427, 58685, 'fifty-eight thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(3428, 46908, 'forty-six thousand nine hundred eight');\nINSERT INTO t3 VALUES(3429, 34277, 'thirty-four thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(3430, 83881, 'eighty-three thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(3431, 1014, 'one thousand fourteen');\nINSERT INTO t3 VALUES(3432, 5613, 'five thousand six hundred thirteen');\nINSERT INTO t3 VALUES(3433, 37723, 'thirty-seven thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(3434, 1412, 'one thousand four hundred twelve');\nINSERT INTO t3 VALUES(3435, 29531, 'twenty-nine thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(3436, 52687, 'fifty-two thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(3437, 58641, 'fifty-eight thousand six hundred forty-one');\nINSERT INTO t3 VALUES(3438, 14948, 'fourteen thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(3439, 30402, 'thirty thousand four hundred two');\nINSERT INTO t3 VALUES(3440, 10454, 'ten thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(3441, 3681, 'three thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(3442, 26793, 'twenty-six thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(3443, 30432, 'thirty thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(3444, 97488, 'ninety-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(3445, 50850, 'fifty thousand eight hundred fifty');\nINSERT INTO t3 VALUES(3446, 27925, 'twenty-seven thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(3447, 12718, 'twelve thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(3448, 92578, 'ninety-two thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(3449, 51978, 'fifty-one thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(3450, 86646, 'eighty-six thousand six hundred forty-six');\nINSERT INTO t3 VALUES(3451, 33086, 'thirty-three thousand eighty-six');\nINSERT INTO t3 VALUES(3452, 55619, 'fifty-five thousand six hundred nineteen');\nINSERT INTO t3 VALUES(3453, 65250, 'sixty-five thousand two hundred fifty');\nINSERT INTO t3 VALUES(3454, 59911, 'fifty-nine thousand nine hundred eleven');\nINSERT INTO t3 VALUES(3455, 81759, 'eighty-one thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(3456, 71062, 'seventy-one thousand sixty-two');\nINSERT INTO t3 VALUES(3457, 10868, 'ten thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(3458, 70403, 'seventy thousand four hundred three');\nINSERT INTO t3 VALUES(3459, 45063, 'forty-five thousand sixty-three');\nINSERT INTO t3 VALUES(3460, 45529, 'forty-five thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(3461, 94216, 'ninety-four thousand two hundred sixteen');\nINSERT INTO t3 VALUES(3462, 24337, 'twenty-four thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(3463, 7640, 'seven thousand six hundred forty');\nINSERT INTO t3 VALUES(3464, 16664, 'sixteen thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(3465, 37270, 'thirty-seven thousand two hundred seventy');\nINSERT INTO t3 VALUES(3466, 49452, 'forty-nine thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(3467, 1811, 'one thousand eight hundred eleven');\nINSERT INTO t3 VALUES(3468, 79888, 'seventy-nine thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(3469, 15557, 'fifteen thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(3470, 94193, 'ninety-four thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(3471, 2569, 'two thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(3472, 87304, 'eighty-seven thousand three hundred four');\nINSERT INTO t3 VALUES(3473, 11008, 'eleven thousand eight');\nINSERT INTO t3 VALUES(3474, 16952, 'sixteen thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(3475, 86084, 'eighty-six thousand eighty-four');\nINSERT INTO t3 VALUES(3476, 83241, 'eighty-three thousand two hundred forty-one');\nINSERT INTO t3 VALUES(3477, 64364, 'sixty-four thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(3478, 78288, 'seventy-eight thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(3479, 14905, 'fourteen thousand nine hundred five');\nINSERT INTO t3 VALUES(3480, 69033, 'sixty-nine thousand thirty-three');\nINSERT INTO t3 VALUES(3481, 53276, 'fifty-three thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(3482, 21153, 'twenty-one thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(3483, 37373, 'thirty-seven thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(3484, 52384, 'fifty-two thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(3485, 63492, 'sixty-three thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(3486, 19040, 'nineteen thousand forty');\nINSERT INTO t3 VALUES(3487, 15865, 'fifteen thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(3488, 12410, 'twelve thousand four hundred ten');\nINSERT INTO t3 VALUES(3489, 5191, 'five thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(3490, 8405, 'eight thousand four hundred five');\nINSERT INTO t3 VALUES(3491, 21078, 'twenty-one thousand seventy-eight');\nINSERT INTO t3 VALUES(3492, 70681, 'seventy thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(3493, 19842, 'nineteen thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(3494, 36600, 'thirty-six thousand six hundred');\nINSERT INTO t3 VALUES(3495, 34675, 'thirty-four thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(3496, 85508, 'eighty-five thousand five hundred eight');\nINSERT INTO t3 VALUES(3497, 81047, 'eighty-one thousand forty-seven');\nINSERT INTO t3 VALUES(3498, 20026, 'twenty thousand twenty-six');\nINSERT INTO t3 VALUES(3499, 51140, 'fifty-one thousand one hundred forty');\nINSERT INTO t3 VALUES(3500, 38104, 'thirty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(3501, 40857, 'forty thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(3502, 19692, 'nineteen thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(3503, 75578, 'seventy-five thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(3504, 7332, 'seven thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(3505, 50317, 'fifty thousand three hundred seventeen');\nINSERT INTO t3 VALUES(3506, 88095, 'eighty-eight thousand ninety-five');\nINSERT INTO t3 VALUES(3507, 79423, 'seventy-nine thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(3508, 95804, 'ninety-five thousand eight hundred four');\nINSERT INTO t3 VALUES(3509, 50175, 'fifty thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(3510, 67967, 'sixty-seven thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(3511, 44107, 'forty-four thousand one hundred seven');\nINSERT INTO t3 VALUES(3512, 4732, 'four thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(3513, 6006, 'six thousand six');\nINSERT INTO t3 VALUES(3514, 89241, 'eighty-nine thousand two hundred forty-one');\nINSERT INTO t3 VALUES(3515, 33098, 'thirty-three thousand ninety-eight');\nINSERT INTO t3 VALUES(3516, 53970, 'fifty-three thousand nine hundred seventy');\nINSERT INTO t3 VALUES(3517, 50673, 'fifty thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(3518, 71248, 'seventy-one thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(3519, 38851, 'thirty-eight thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(3520, 75879, 'seventy-five thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(3521, 55963, 'fifty-five thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(3522, 81847, 'eighty-one thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(3523, 20088, 'twenty thousand eighty-eight');\nINSERT INTO t3 VALUES(3524, 24424, 'twenty-four thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(3525, 98812, 'ninety-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(3526, 79831, 'seventy-nine thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(3527, 82159, 'eighty-two thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(3528, 84576, 'eighty-four thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(3529, 87260, 'eighty-seven thousand two hundred sixty');\nINSERT INTO t3 VALUES(3530, 25149, 'twenty-five thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(3531, 36043, 'thirty-six thousand forty-three');\nINSERT INTO t3 VALUES(3532, 27471, 'twenty-seven thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(3533, 74261, 'seventy-four thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(3534, 80999, 'eighty thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(3535, 92131, 'ninety-two thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(3536, 37716, 'thirty-seven thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(3537, 73671, 'seventy-three thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(3538, 12676, 'twelve thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(3539, 61303, 'sixty-one thousand three hundred three');\nINSERT INTO t3 VALUES(3540, 77151, 'seventy-seven thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(3541, 10589, 'ten thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(3542, 99886, 'ninety-nine thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(3543, 44288, 'forty-four thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(3544, 37964, 'thirty-seven thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(3545, 51476, 'fifty-one thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(3546, 38822, 'thirty-eight thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(3547, 89678, 'eighty-nine thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(3548, 94251, 'ninety-four thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(3549, 86262, 'eighty-six thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(3550, 35023, 'thirty-five thousand twenty-three');\nINSERT INTO t3 VALUES(3551, 76586, 'seventy-six thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(3552, 6219, 'six thousand two hundred nineteen');\nINSERT INTO t3 VALUES(3553, 14553, 'fourteen thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(3554, 11137, 'eleven thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(3555, 38217, 'thirty-eight thousand two hundred seventeen');\nINSERT INTO t3 VALUES(3556, 35364, 'thirty-five thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(3557, 10977, 'ten thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(3558, 30006, 'thirty thousand six');\nINSERT INTO t3 VALUES(3559, 64493, 'sixty-four thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(3560, 69257, 'sixty-nine thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(3561, 55981, 'fifty-five thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(3562, 98127, 'ninety-eight thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(3563, 28253, 'twenty-eight thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(3564, 35260, 'thirty-five thousand two hundred sixty');\nINSERT INTO t3 VALUES(3565, 23799, 'twenty-three thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(3566, 59537, 'fifty-nine thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(3567, 87676, 'eighty-seven thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(3568, 95457, 'ninety-five thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(3569, 21582, 'twenty-one thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(3570, 67797, 'sixty-seven thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(3571, 42930, 'forty-two thousand nine hundred thirty');\nINSERT INTO t3 VALUES(3572, 48312, 'forty-eight thousand three hundred twelve');\nINSERT INTO t3 VALUES(3573, 41226, 'forty-one thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(3574, 56975, 'fifty-six thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(3575, 18167, 'eighteen thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(3576, 15265, 'fifteen thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(3577, 84769, 'eighty-four thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(3578, 16040, 'sixteen thousand forty');\nINSERT INTO t3 VALUES(3579, 22085, 'twenty-two thousand eighty-five');\nINSERT INTO t3 VALUES(3580, 62524, 'sixty-two thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(3581, 34443, 'thirty-four thousand four hundred forty-three');\nINSERT INTO t3 VALUES(3582, 53238, 'fifty-three thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(3583, 41441, 'forty-one thousand four hundred forty-one');\nINSERT INTO t3 VALUES(3584, 76927, 'seventy-six thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(3585, 97977, 'ninety-seven thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(3586, 18492, 'eighteen thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(3587, 60198, 'sixty thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(3588, 23384, 'twenty-three thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(3589, 12543, 'twelve thousand five hundred forty-three');\nINSERT INTO t3 VALUES(3590, 83354, 'eighty-three thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(3591, 32010, 'thirty-two thousand ten');\nINSERT INTO t3 VALUES(3592, 41820, 'forty-one thousand eight hundred twenty');\nINSERT INTO t3 VALUES(3593, 60217, 'sixty thousand two hundred seventeen');\nINSERT INTO t3 VALUES(3594, 45614, 'forty-five thousand six hundred fourteen');\nINSERT INTO t3 VALUES(3595, 81524, 'eighty-one thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(3596, 6468, 'six thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(3597, 3865, 'three thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(3598, 25574, 'twenty-five thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(3599, 90048, 'ninety thousand forty-eight');\nINSERT INTO t3 VALUES(3600, 40344, 'forty thousand three hundred forty-four');\nINSERT INTO t3 VALUES(3601, 14343, 'fourteen thousand three hundred forty-three');\nINSERT INTO t3 VALUES(3602, 9495, 'nine thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(3603, 12641, 'twelve thousand six hundred forty-one');\nINSERT INTO t3 VALUES(3604, 9795, 'nine thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(3605, 34230, 'thirty-four thousand two hundred thirty');\nINSERT INTO t3 VALUES(3606, 90559, 'ninety thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(3607, 94175, 'ninety-four thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(3608, 84020, 'eighty-four thousand twenty');\nINSERT INTO t3 VALUES(3609, 46560, 'forty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(3610, 59520, 'fifty-nine thousand five hundred twenty');\nINSERT INTO t3 VALUES(3611, 6613, 'six thousand six hundred thirteen');\nINSERT INTO t3 VALUES(3612, 86324, 'eighty-six thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(3613, 250, 'two hundred fifty');\nINSERT INTO t3 VALUES(3614, 69136, 'sixty-nine thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(3615, 92537, 'ninety-two thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(3616, 13115, 'thirteen thousand one hundred fifteen');\nINSERT INTO t3 VALUES(3617, 23907, 'twenty-three thousand nine hundred seven');\nINSERT INTO t3 VALUES(3618, 9513, 'nine thousand five hundred thirteen');\nINSERT INTO t3 VALUES(3619, 26982, 'twenty-six thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(3620, 7879, 'seven thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(3621, 92331, 'ninety-two thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(3622, 2880, 'two thousand eight hundred eighty');\nINSERT INTO t3 VALUES(3623, 99525, 'ninety-nine thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(3624, 46522, 'forty-six thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(3625, 23039, 'twenty-three thousand thirty-nine');\nINSERT INTO t3 VALUES(3626, 34304, 'thirty-four thousand three hundred four');\nINSERT INTO t3 VALUES(3627, 78013, 'seventy-eight thousand thirteen');\nINSERT INTO t3 VALUES(3628, 94249, 'ninety-four thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(3629, 2279, 'two thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(3630, 53610, 'fifty-three thousand six hundred ten');\nINSERT INTO t3 VALUES(3631, 63129, 'sixty-three thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(3632, 8500, 'eight thousand five hundred');\nINSERT INTO t3 VALUES(3633, 53798, 'fifty-three thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(3634, 38422, 'thirty-eight thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(3635, 10541, 'ten thousand five hundred forty-one');\nINSERT INTO t3 VALUES(3636, 49289, 'forty-nine thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(3637, 49273, 'forty-nine thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(3638, 91803, 'ninety-one thousand eight hundred three');\nINSERT INTO t3 VALUES(3639, 12468, 'twelve thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(3640, 44785, 'forty-four thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(3641, 95707, 'ninety-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(3642, 49976, 'forty-nine thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(3643, 86860, 'eighty-six thousand eight hundred sixty');\nINSERT INTO t3 VALUES(3644, 92127, 'ninety-two thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(3645, 26431, 'twenty-six thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(3646, 92262, 'ninety-two thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(3647, 37206, 'thirty-seven thousand two hundred six');\nINSERT INTO t3 VALUES(3648, 91060, 'ninety-one thousand sixty');\nINSERT INTO t3 VALUES(3649, 94561, 'ninety-four thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(3650, 98528, 'ninety-eight thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(3651, 9871, 'nine thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(3652, 82124, 'eighty-two thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(3653, 14270, 'fourteen thousand two hundred seventy');\nINSERT INTO t3 VALUES(3654, 12047, 'twelve thousand forty-seven');\nINSERT INTO t3 VALUES(3655, 75356, 'seventy-five thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(3656, 15419, 'fifteen thousand four hundred nineteen');\nINSERT INTO t3 VALUES(3657, 67423, 'sixty-seven thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(3658, 42790, 'forty-two thousand seven hundred ninety');\nINSERT INTO t3 VALUES(3659, 76395, 'seventy-six thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(3660, 94864, 'ninety-four thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(3661, 52231, 'fifty-two thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(3662, 80409, 'eighty thousand four hundred nine');\nINSERT INTO t3 VALUES(3663, 17263, 'seventeen thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(3664, 15859, 'fifteen thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(3665, 58869, 'fifty-eight thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(3666, 90772, 'ninety thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(3667, 17022, 'seventeen thousand twenty-two');\nINSERT INTO t3 VALUES(3668, 20295, 'twenty thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(3669, 66309, 'sixty-six thousand three hundred nine');\nINSERT INTO t3 VALUES(3670, 80008, 'eighty thousand eight');\nINSERT INTO t3 VALUES(3671, 17712, 'seventeen thousand seven hundred twelve');\nINSERT INTO t3 VALUES(3672, 66589, 'sixty-six thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(3673, 28283, 'twenty-eight thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(3674, 39222, 'thirty-nine thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(3675, 48453, 'forty-eight thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(3676, 23555, 'twenty-three thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(3677, 91764, 'ninety-one thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(3678, 22594, 'twenty-two thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(3679, 46680, 'forty-six thousand six hundred eighty');\nINSERT INTO t3 VALUES(3680, 76455, 'seventy-six thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(3681, 61116, 'sixty-one thousand one hundred sixteen');\nINSERT INTO t3 VALUES(3682, 9267, 'nine thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(3683, 73619, 'seventy-three thousand six hundred nineteen');\nINSERT INTO t3 VALUES(3684, 4314, 'four thousand three hundred fourteen');\nINSERT INTO t3 VALUES(3685, 47379, 'forty-seven thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(3686, 27913, 'twenty-seven thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(3687, 40459, 'forty thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(3688, 87849, 'eighty-seven thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(3689, 73921, 'seventy-three thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(3690, 27243, 'twenty-seven thousand two hundred forty-three');\nINSERT INTO t3 VALUES(3691, 39125, 'thirty-nine thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(3692, 56011, 'fifty-six thousand eleven');\nINSERT INTO t3 VALUES(3693, 85383, 'eighty-five thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(3694, 74158, 'seventy-four thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(3695, 24199, 'twenty-four thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(3696, 44257, 'forty-four thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(3697, 38808, 'thirty-eight thousand eight hundred eight');\nINSERT INTO t3 VALUES(3698, 11852, 'eleven thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(3699, 74550, 'seventy-four thousand five hundred fifty');\nINSERT INTO t3 VALUES(3700, 79099, 'seventy-nine thousand ninety-nine');\nINSERT INTO t3 VALUES(3701, 58589, 'fifty-eight thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(3702, 9158, 'nine thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(3703, 16166, 'sixteen thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(3704, 84637, 'eighty-four thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(3705, 83306, 'eighty-three thousand three hundred six');\nINSERT INTO t3 VALUES(3706, 21595, 'twenty-one thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(3707, 2151, 'two thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(3708, 44562, 'forty-four thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(3709, 70876, 'seventy thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(3710, 81209, 'eighty-one thousand two hundred nine');\nINSERT INTO t3 VALUES(3711, 38502, 'thirty-eight thousand five hundred two');\nINSERT INTO t3 VALUES(3712, 5252, 'five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(3713, 46419, 'forty-six thousand four hundred nineteen');\nINSERT INTO t3 VALUES(3714, 31465, 'thirty-one thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(3715, 88555, 'eighty-eight thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(3716, 63170, 'sixty-three thousand one hundred seventy');\nINSERT INTO t3 VALUES(3717, 49868, 'forty-nine thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(3718, 90823, 'ninety thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(3719, 69446, 'sixty-nine thousand four hundred forty-six');\nINSERT INTO t3 VALUES(3720, 26892, 'twenty-six thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(3721, 17543, 'seventeen thousand five hundred forty-three');\nINSERT INTO t3 VALUES(3722, 33844, 'thirty-three thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(3723, 29478, 'twenty-nine thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(3724, 96685, 'ninety-six thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(3725, 38526, 'thirty-eight thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(3726, 23760, 'twenty-three thousand seven hundred sixty');\nINSERT INTO t3 VALUES(3727, 22053, 'twenty-two thousand fifty-three');\nINSERT INTO t3 VALUES(3728, 41143, 'forty-one thousand one hundred forty-three');\nINSERT INTO t3 VALUES(3729, 16812, 'sixteen thousand eight hundred twelve');\nINSERT INTO t3 VALUES(3730, 88806, 'eighty-eight thousand eight hundred six');\nINSERT INTO t3 VALUES(3731, 57290, 'fifty-seven thousand two hundred ninety');\nINSERT INTO t3 VALUES(3732, 46403, 'forty-six thousand four hundred three');\nINSERT INTO t3 VALUES(3733, 14487, 'fourteen thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(3734, 76705, 'seventy-six thousand seven hundred five');\nINSERT INTO t3 VALUES(3735, 50634, 'fifty thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(3736, 9062, 'nine thousand sixty-two');\nINSERT INTO t3 VALUES(3737, 1788, 'one thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(3738, 25958, 'twenty-five thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(3739, 11601, 'eleven thousand six hundred one');\nINSERT INTO t3 VALUES(3740, 74330, 'seventy-four thousand three hundred thirty');\nINSERT INTO t3 VALUES(3741, 22172, 'twenty-two thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(3742, 42888, 'forty-two thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(3743, 5402, 'five thousand four hundred two');\nINSERT INTO t3 VALUES(3744, 72775, 'seventy-two thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(3745, 90270, 'ninety thousand two hundred seventy');\nINSERT INTO t3 VALUES(3746, 5137, 'five thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(3747, 10295, 'ten thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(3748, 94444, 'ninety-four thousand four hundred forty-four');\nINSERT INTO t3 VALUES(3749, 75640, 'seventy-five thousand six hundred forty');\nINSERT INTO t3 VALUES(3750, 51028, 'fifty-one thousand twenty-eight');\nINSERT INTO t3 VALUES(3751, 95855, 'ninety-five thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(3752, 3382, 'three thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(3753, 7116, 'seven thousand one hundred sixteen');\nINSERT INTO t3 VALUES(3754, 56076, 'fifty-six thousand seventy-six');\nINSERT INTO t3 VALUES(3755, 62902, 'sixty-two thousand nine hundred two');\nINSERT INTO t3 VALUES(3756, 94747, 'ninety-four thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(3757, 7483, 'seven thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(3758, 79276, 'seventy-nine thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(3759, 48065, 'forty-eight thousand sixty-five');\nINSERT INTO t3 VALUES(3760, 78755, 'seventy-eight thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(3761, 90005, 'ninety thousand five');\nINSERT INTO t3 VALUES(3762, 52348, 'fifty-two thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(3763, 38175, 'thirty-eight thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(3764, 53580, 'fifty-three thousand five hundred eighty');\nINSERT INTO t3 VALUES(3765, 12084, 'twelve thousand eighty-four');\nINSERT INTO t3 VALUES(3766, 92991, 'ninety-two thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(3767, 47407, 'forty-seven thousand four hundred seven');\nINSERT INTO t3 VALUES(3768, 41929, 'forty-one thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(3769, 82296, 'eighty-two thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(3770, 63828, 'sixty-three thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(3771, 21283, 'twenty-one thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(3772, 89438, 'eighty-nine thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(3773, 24512, 'twenty-four thousand five hundred twelve');\nINSERT INTO t3 VALUES(3774, 66007, 'sixty-six thousand seven');\nINSERT INTO t3 VALUES(3775, 72757, 'seventy-two thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(3776, 41536, 'forty-one thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(3777, 71384, 'seventy-one thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(3778, 72708, 'seventy-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(3779, 74895, 'seventy-four thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(3780, 81670, 'eighty-one thousand six hundred seventy');\nINSERT INTO t3 VALUES(3781, 82046, 'eighty-two thousand forty-six');\nINSERT INTO t3 VALUES(3782, 21869, 'twenty-one thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(3783, 33329, 'thirty-three thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(3784, 77826, 'seventy-seven thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(3785, 13056, 'thirteen thousand fifty-six');\nINSERT INTO t3 VALUES(3786, 86200, 'eighty-six thousand two hundred');\nINSERT INTO t3 VALUES(3787, 31648, 'thirty-one thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(3788, 57542, 'fifty-seven thousand five hundred forty-two');\nINSERT INTO t3 VALUES(3789, 1374, 'one thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(3790, 67665, 'sixty-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(3791, 95754, 'ninety-five thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(3792, 35655, 'thirty-five thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(3793, 65333, 'sixty-five thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(3794, 64188, 'sixty-four thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(3795, 19698, 'nineteen thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(3796, 26736, 'twenty-six thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(3797, 14857, 'fourteen thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(3798, 42009, 'forty-two thousand nine');\nINSERT INTO t3 VALUES(3799, 91156, 'ninety-one thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(3800, 14638, 'fourteen thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(3801, 51122, 'fifty-one thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(3802, 20192, 'twenty thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(3803, 88185, 'eighty-eight thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(3804, 13798, 'thirteen thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(3805, 62073, 'sixty-two thousand seventy-three');\nINSERT INTO t3 VALUES(3806, 68516, 'sixty-eight thousand five hundred sixteen');\nINSERT INTO t3 VALUES(3807, 88104, 'eighty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(3808, 55007, 'fifty-five thousand seven');\nINSERT INTO t3 VALUES(3809, 49778, 'forty-nine thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(3810, 91147, 'ninety-one thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(3811, 48531, 'forty-eight thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(3812, 61940, 'sixty-one thousand nine hundred forty');\nINSERT INTO t3 VALUES(3813, 79835, 'seventy-nine thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(3814, 53589, 'fifty-three thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(3815, 69097, 'sixty-nine thousand ninety-seven');\nINSERT INTO t3 VALUES(3816, 35293, 'thirty-five thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(3817, 39234, 'thirty-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(3818, 6271, 'six thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(3819, 10038, 'ten thousand thirty-eight');\nINSERT INTO t3 VALUES(3820, 22953, 'twenty-two thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(3821, 99930, 'ninety-nine thousand nine hundred thirty');\nINSERT INTO t3 VALUES(3822, 41920, 'forty-one thousand nine hundred twenty');\nINSERT INTO t3 VALUES(3823, 65428, 'sixty-five thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(3824, 90627, 'ninety thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(3825, 76289, 'seventy-six thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(3826, 34994, 'thirty-four thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(3827, 33317, 'thirty-three thousand three hundred seventeen');\nINSERT INTO t3 VALUES(3828, 15994, 'fifteen thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(3829, 6982, 'six thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(3830, 74519, 'seventy-four thousand five hundred nineteen');\nINSERT INTO t3 VALUES(3831, 67713, 'sixty-seven thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(3832, 47487, 'forty-seven thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(3833, 78746, 'seventy-eight thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(3834, 35846, 'thirty-five thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(3835, 15850, 'fifteen thousand eight hundred fifty');\nINSERT INTO t3 VALUES(3836, 79240, 'seventy-nine thousand two hundred forty');\nINSERT INTO t3 VALUES(3837, 24858, 'twenty-four thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(3838, 61899, 'sixty-one thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(3839, 2494, 'two thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(3840, 83904, 'eighty-three thousand nine hundred four');\nINSERT INTO t3 VALUES(3841, 53824, 'fifty-three thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(3842, 55396, 'fifty-five thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(3843, 21043, 'twenty-one thousand forty-three');\nINSERT INTO t3 VALUES(3844, 26998, 'twenty-six thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(3845, 62737, 'sixty-two thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(3846, 6127, 'six thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(3847, 33690, 'thirty-three thousand six hundred ninety');\nINSERT INTO t3 VALUES(3848, 23612, 'twenty-three thousand six hundred twelve');\nINSERT INTO t3 VALUES(3849, 61672, 'sixty-one thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(3850, 98334, 'ninety-eight thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(3851, 15798, 'fifteen thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(3852, 9049, 'nine thousand forty-nine');\nINSERT INTO t3 VALUES(3853, 68023, 'sixty-eight thousand twenty-three');\nINSERT INTO t3 VALUES(3854, 13200, 'thirteen thousand two hundred');\nINSERT INTO t3 VALUES(3855, 44840, 'forty-four thousand eight hundred forty');\nINSERT INTO t3 VALUES(3856, 52850, 'fifty-two thousand eight hundred fifty');\nINSERT INTO t3 VALUES(3857, 78920, 'seventy-eight thousand nine hundred twenty');\nINSERT INTO t3 VALUES(3858, 25681, 'twenty-five thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(3859, 73985, 'seventy-three thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(3860, 90829, 'ninety thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(3861, 42114, 'forty-two thousand one hundred fourteen');\nINSERT INTO t3 VALUES(3862, 74654, 'seventy-four thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(3863, 82999, 'eighty-two thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(3864, 86163, 'eighty-six thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(3865, 35046, 'thirty-five thousand forty-six');\nINSERT INTO t3 VALUES(3866, 26, 'twenty-six');\nINSERT INTO t3 VALUES(3867, 34716, 'thirty-four thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(3868, 52005, 'fifty-two thousand five');\nINSERT INTO t3 VALUES(3869, 71929, 'seventy-one thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(3870, 98714, 'ninety-eight thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(3871, 80296, 'eighty thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(3872, 14160, 'fourteen thousand one hundred sixty');\nINSERT INTO t3 VALUES(3873, 17204, 'seventeen thousand two hundred four');\nINSERT INTO t3 VALUES(3874, 81894, 'eighty-one thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(3875, 50209, 'fifty thousand two hundred nine');\nINSERT INTO t3 VALUES(3876, 14953, 'fourteen thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(3877, 88741, 'eighty-eight thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(3878, 82388, 'eighty-two thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(3879, 50662, 'fifty thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(3880, 47277, 'forty-seven thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(3881, 60580, 'sixty thousand five hundred eighty');\nINSERT INTO t3 VALUES(3882, 62492, 'sixty-two thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(3883, 59825, 'fifty-nine thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(3884, 86562, 'eighty-six thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(3885, 84715, 'eighty-four thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(3886, 4030, 'four thousand thirty');\nINSERT INTO t3 VALUES(3887, 42269, 'forty-two thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(3888, 20337, 'twenty thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(3889, 36923, 'thirty-six thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(3890, 55266, 'fifty-five thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(3891, 55697, 'fifty-five thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(3892, 89651, 'eighty-nine thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(3893, 56503, 'fifty-six thousand five hundred three');\nINSERT INTO t3 VALUES(3894, 241, 'two hundred forty-one');\nINSERT INTO t3 VALUES(3895, 96754, 'ninety-six thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(3896, 32415, 'thirty-two thousand four hundred fifteen');\nINSERT INTO t3 VALUES(3897, 74331, 'seventy-four thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(3898, 6841, 'six thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(3899, 88591, 'eighty-eight thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(3900, 9138, 'nine thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(3901, 64961, 'sixty-four thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(3902, 23722, 'twenty-three thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(3903, 39599, 'thirty-nine thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(3904, 42647, 'forty-two thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(3905, 12856, 'twelve thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(3906, 86363, 'eighty-six thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(3907, 29129, 'twenty-nine thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(3908, 84042, 'eighty-four thousand forty-two');\nINSERT INTO t3 VALUES(3909, 13888, 'thirteen thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(3910, 9500, 'nine thousand five hundred');\nINSERT INTO t3 VALUES(3911, 53484, 'fifty-three thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(3912, 25395, 'twenty-five thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(3913, 27352, 'twenty-seven thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(3914, 89396, 'eighty-nine thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(3915, 31375, 'thirty-one thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(3916, 60857, 'sixty thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(3917, 61172, 'sixty-one thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(3918, 29329, 'twenty-nine thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(3919, 27707, 'twenty-seven thousand seven hundred seven');\nINSERT INTO t3 VALUES(3920, 29677, 'twenty-nine thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(3921, 40205, 'forty thousand two hundred five');\nINSERT INTO t3 VALUES(3922, 45678, 'forty-five thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(3923, 99927, 'ninety-nine thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(3924, 64743, 'sixty-four thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(3925, 22868, 'twenty-two thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(3926, 70743, 'seventy thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(3927, 28192, 'twenty-eight thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(3928, 3302, 'three thousand three hundred two');\nINSERT INTO t3 VALUES(3929, 47726, 'forty-seven thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(3930, 37683, 'thirty-seven thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(3931, 6905, 'six thousand nine hundred five');\nINSERT INTO t3 VALUES(3932, 66454, 'sixty-six thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(3933, 60775, 'sixty thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(3934, 87639, 'eighty-seven thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(3935, 59479, 'fifty-nine thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(3936, 89619, 'eighty-nine thousand six hundred nineteen');\nINSERT INTO t3 VALUES(3937, 40144, 'forty thousand one hundred forty-four');\nINSERT INTO t3 VALUES(3938, 52613, 'fifty-two thousand six hundred thirteen');\nINSERT INTO t3 VALUES(3939, 96051, 'ninety-six thousand fifty-one');\nINSERT INTO t3 VALUES(3940, 24290, 'twenty-four thousand two hundred ninety');\nINSERT INTO t3 VALUES(3941, 7882, 'seven thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(3942, 44252, 'forty-four thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(3943, 88439, 'eighty-eight thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(3944, 54009, 'fifty-four thousand nine');\nINSERT INTO t3 VALUES(3945, 45373, 'forty-five thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(3946, 71039, 'seventy-one thousand thirty-nine');\nINSERT INTO t3 VALUES(3947, 55529, 'fifty-five thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(3948, 77501, 'seventy-seven thousand five hundred one');\nINSERT INTO t3 VALUES(3949, 280, 'two hundred eighty');\nINSERT INTO t3 VALUES(3950, 85133, 'eighty-five thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(3951, 761, 'seven hundred sixty-one');\nINSERT INTO t3 VALUES(3952, 43709, 'forty-three thousand seven hundred nine');\nINSERT INTO t3 VALUES(3953, 39383, 'thirty-nine thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(3954, 71129, 'seventy-one thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(3955, 78300, 'seventy-eight thousand three hundred');\nINSERT INTO t3 VALUES(3956, 15677, 'fifteen thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(3957, 45654, 'forty-five thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(3958, 37655, 'thirty-seven thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(3959, 73870, 'seventy-three thousand eight hundred seventy');\nINSERT INTO t3 VALUES(3960, 13586, 'thirteen thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(3961, 17935, 'seventeen thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(3962, 22377, 'twenty-two thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(3963, 83852, 'eighty-three thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(3964, 82982, 'eighty-two thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(3965, 23942, 'twenty-three thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(3966, 4, 'four');\nINSERT INTO t3 VALUES(3967, 62696, 'sixty-two thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(3968, 80592, 'eighty thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(3969, 76795, 'seventy-six thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(3970, 8968, 'eight thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(3971, 13813, 'thirteen thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(3972, 19275, 'nineteen thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(3973, 7545, 'seven thousand five hundred forty-five');\nINSERT INTO t3 VALUES(3974, 93004, 'ninety-three thousand four');\nINSERT INTO t3 VALUES(3975, 92311, 'ninety-two thousand three hundred eleven');\nINSERT INTO t3 VALUES(3976, 50992, 'fifty thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(3977, 61181, 'sixty-one thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(3978, 31652, 'thirty-one thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(3979, 61949, 'sixty-one thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(3980, 11738, 'eleven thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(3981, 68579, 'sixty-eight thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(3982, 23943, 'twenty-three thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(3983, 98358, 'ninety-eight thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(3984, 84861, 'eighty-four thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(3985, 51132, 'fifty-one thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(3986, 56845, 'fifty-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(3987, 7917, 'seven thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(3988, 84918, 'eighty-four thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(3989, 91809, 'ninety-one thousand eight hundred nine');\nINSERT INTO t3 VALUES(3990, 49335, 'forty-nine thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(3991, 26021, 'twenty-six thousand twenty-one');\nINSERT INTO t3 VALUES(3992, 88977, 'eighty-eight thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(3993, 85932, 'eighty-five thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(3994, 81681, 'eighty-one thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(3995, 80234, 'eighty thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(3996, 26116, 'twenty-six thousand one hundred sixteen');\nINSERT INTO t3 VALUES(3997, 10573, 'ten thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(3998, 46517, 'forty-six thousand five hundred seventeen');\nINSERT INTO t3 VALUES(3999, 67769, 'sixty-seven thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(4000, 67841, 'sixty-seven thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(4001, 13891, 'thirteen thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(4002, 50116, 'fifty thousand one hundred sixteen');\nINSERT INTO t3 VALUES(4003, 79805, 'seventy-nine thousand eight hundred five');\nINSERT INTO t3 VALUES(4004, 18204, 'eighteen thousand two hundred four');\nINSERT INTO t3 VALUES(4005, 42378, 'forty-two thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(4006, 23498, 'twenty-three thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(4007, 87466, 'eighty-seven thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(4008, 65485, 'sixty-five thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(4009, 58163, 'fifty-eight thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(4010, 11691, 'eleven thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(4011, 12158, 'twelve thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(4012, 82826, 'eighty-two thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(4013, 27264, 'twenty-seven thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(4014, 28716, 'twenty-eight thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(4015, 56473, 'fifty-six thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(4016, 89156, 'eighty-nine thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(4017, 22711, 'twenty-two thousand seven hundred eleven');\nINSERT INTO t3 VALUES(4018, 55770, 'fifty-five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(4019, 95322, 'ninety-five thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(4020, 87100, 'eighty-seven thousand one hundred');\nINSERT INTO t3 VALUES(4021, 6281, 'six thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(4022, 78620, 'seventy-eight thousand six hundred twenty');\nINSERT INTO t3 VALUES(4023, 42110, 'forty-two thousand one hundred ten');\nINSERT INTO t3 VALUES(4024, 17579, 'seventeen thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(4025, 5873, 'five thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(4026, 56565, 'fifty-six thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(4027, 48526, 'forty-eight thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(4028, 10780, 'ten thousand seven hundred eighty');\nINSERT INTO t3 VALUES(4029, 97192, 'ninety-seven thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(4030, 46551, 'forty-six thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(4031, 91319, 'ninety-one thousand three hundred nineteen');\nINSERT INTO t3 VALUES(4032, 72702, 'seventy-two thousand seven hundred two');\nINSERT INTO t3 VALUES(4033, 18348, 'eighteen thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(4034, 52538, 'fifty-two thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(4035, 3279, 'three thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(4036, 19798, 'nineteen thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(4037, 95655, 'ninety-five thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(4038, 56546, 'fifty-six thousand five hundred forty-six');\nINSERT INTO t3 VALUES(4039, 90290, 'ninety thousand two hundred ninety');\nINSERT INTO t3 VALUES(4040, 18337, 'eighteen thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(4041, 17331, 'seventeen thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(4042, 68901, 'sixty-eight thousand nine hundred one');\nINSERT INTO t3 VALUES(4043, 5405, 'five thousand four hundred five');\nINSERT INTO t3 VALUES(4044, 37699, 'thirty-seven thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(4045, 71749, 'seventy-one thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(4046, 58436, 'fifty-eight thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(4047, 46642, 'forty-six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(4048, 61738, 'sixty-one thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(4049, 42610, 'forty-two thousand six hundred ten');\nINSERT INTO t3 VALUES(4050, 90581, 'ninety thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(4051, 10680, 'ten thousand six hundred eighty');\nINSERT INTO t3 VALUES(4052, 90251, 'ninety thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(4053, 47153, 'forty-seven thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(4054, 39923, 'thirty-nine thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(4055, 11893, 'eleven thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(4056, 50665, 'fifty thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(4057, 11104, 'eleven thousand one hundred four');\nINSERT INTO t3 VALUES(4058, 79874, 'seventy-nine thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(4059, 4094, 'four thousand ninety-four');\nINSERT INTO t3 VALUES(4060, 38552, 'thirty-eight thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(4061, 54111, 'fifty-four thousand one hundred eleven');\nINSERT INTO t3 VALUES(4062, 22374, 'twenty-two thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(4063, 60384, 'sixty thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(4064, 39523, 'thirty-nine thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(4065, 67745, 'sixty-seven thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(4066, 80339, 'eighty thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(4067, 9518, 'nine thousand five hundred eighteen');\nINSERT INTO t3 VALUES(4068, 51432, 'fifty-one thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(4069, 40099, 'forty thousand ninety-nine');\nINSERT INTO t3 VALUES(4070, 87356, 'eighty-seven thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(4071, 53766, 'fifty-three thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(4072, 2507, 'two thousand five hundred seven');\nINSERT INTO t3 VALUES(4073, 66416, 'sixty-six thousand four hundred sixteen');\nINSERT INTO t3 VALUES(4074, 51181, 'fifty-one thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(4075, 64977, 'sixty-four thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(4076, 56522, 'fifty-six thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(4077, 31144, 'thirty-one thousand one hundred forty-four');\nINSERT INTO t3 VALUES(4078, 61935, 'sixty-one thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(4079, 10340, 'ten thousand three hundred forty');\nINSERT INTO t3 VALUES(4080, 29470, 'twenty-nine thousand four hundred seventy');\nINSERT INTO t3 VALUES(4081, 78829, 'seventy-eight thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(4082, 98781, 'ninety-eight thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(4083, 31055, 'thirty-one thousand fifty-five');\nINSERT INTO t3 VALUES(4084, 7417, 'seven thousand four hundred seventeen');\nINSERT INTO t3 VALUES(4085, 79189, 'seventy-nine thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(4086, 65370, 'sixty-five thousand three hundred seventy');\nINSERT INTO t3 VALUES(4087, 96578, 'ninety-six thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(4088, 97408, 'ninety-seven thousand four hundred eight');\nINSERT INTO t3 VALUES(4089, 90722, 'ninety thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(4090, 22255, 'twenty-two thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(4091, 48402, 'forty-eight thousand four hundred two');\nINSERT INTO t3 VALUES(4092, 35261, 'thirty-five thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(4093, 99676, 'ninety-nine thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(4094, 75546, 'seventy-five thousand five hundred forty-six');\nINSERT INTO t3 VALUES(4095, 87220, 'eighty-seven thousand two hundred twenty');\nINSERT INTO t3 VALUES(4096, 54875, 'fifty-four thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(4097, 39578, 'thirty-nine thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(4098, 92443, 'ninety-two thousand four hundred forty-three');\nINSERT INTO t3 VALUES(4099, 50914, 'fifty thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(4100, 13199, 'thirteen thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(4101, 80974, 'eighty thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(4102, 27734, 'twenty-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(4103, 621, 'six hundred twenty-one');\nINSERT INTO t3 VALUES(4104, 82337, 'eighty-two thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(4105, 59507, 'fifty-nine thousand five hundred seven');\nINSERT INTO t3 VALUES(4106, 48954, 'forty-eight thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(4107, 3461, 'three thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(4108, 97764, 'ninety-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(4109, 58530, 'fifty-eight thousand five hundred thirty');\nINSERT INTO t3 VALUES(4110, 38254, 'thirty-eight thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(4111, 47627, 'forty-seven thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(4112, 1144, 'one thousand one hundred forty-four');\nINSERT INTO t3 VALUES(4113, 57982, 'fifty-seven thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(4114, 12045, 'twelve thousand forty-five');\nINSERT INTO t3 VALUES(4115, 73737, 'seventy-three thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(4116, 1705, 'one thousand seven hundred five');\nINSERT INTO t3 VALUES(4117, 44831, 'forty-four thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(4118, 10526, 'ten thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(4119, 67233, 'sixty-seven thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(4120, 86347, 'eighty-six thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(4121, 56915, 'fifty-six thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(4122, 12764, 'twelve thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(4123, 1199, 'one thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(4124, 17277, 'seventeen thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(4125, 45789, 'forty-five thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(4126, 93842, 'ninety-three thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(4127, 68211, 'sixty-eight thousand two hundred eleven');\nINSERT INTO t3 VALUES(4128, 71114, 'seventy-one thousand one hundred fourteen');\nINSERT INTO t3 VALUES(4129, 71842, 'seventy-one thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(4130, 79355, 'seventy-nine thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(4131, 26021, 'twenty-six thousand twenty-one');\nINSERT INTO t3 VALUES(4132, 534, 'five hundred thirty-four');\nINSERT INTO t3 VALUES(4133, 91055, 'ninety-one thousand fifty-five');\nINSERT INTO t3 VALUES(4134, 25406, 'twenty-five thousand four hundred six');\nINSERT INTO t3 VALUES(4135, 83441, 'eighty-three thousand four hundred forty-one');\nINSERT INTO t3 VALUES(4136, 85622, 'eighty-five thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(4137, 22765, 'twenty-two thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(4138, 82509, 'eighty-two thousand five hundred nine');\nINSERT INTO t3 VALUES(4139, 60793, 'sixty thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(4140, 67859, 'sixty-seven thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(4141, 28247, 'twenty-eight thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(4142, 38438, 'thirty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(4143, 39253, 'thirty-nine thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(4144, 59683, 'fifty-nine thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(4145, 70618, 'seventy thousand six hundred eighteen');\nINSERT INTO t3 VALUES(4146, 70076, 'seventy thousand seventy-six');\nINSERT INTO t3 VALUES(4147, 28746, 'twenty-eight thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(4148, 98045, 'ninety-eight thousand forty-five');\nINSERT INTO t3 VALUES(4149, 44064, 'forty-four thousand sixty-four');\nINSERT INTO t3 VALUES(4150, 64983, 'sixty-four thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(4151, 19396, 'nineteen thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(4152, 96122, 'ninety-six thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(4153, 48803, 'forty-eight thousand eight hundred three');\nINSERT INTO t3 VALUES(4154, 55604, 'fifty-five thousand six hundred four');\nINSERT INTO t3 VALUES(4155, 20081, 'twenty thousand eighty-one');\nINSERT INTO t3 VALUES(4156, 69433, 'sixty-nine thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(4157, 16188, 'sixteen thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(4158, 22864, 'twenty-two thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(4159, 11513, 'eleven thousand five hundred thirteen');\nINSERT INTO t3 VALUES(4160, 47654, 'forty-seven thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(4161, 94904, 'ninety-four thousand nine hundred four');\nINSERT INTO t3 VALUES(4162, 63606, 'sixty-three thousand six hundred six');\nINSERT INTO t3 VALUES(4163, 75012, 'seventy-five thousand twelve');\nINSERT INTO t3 VALUES(4164, 99980, 'ninety-nine thousand nine hundred eighty');\nINSERT INTO t3 VALUES(4165, 50010, 'fifty thousand ten');\nINSERT INTO t3 VALUES(4166, 63239, 'sixty-three thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(4167, 46264, 'forty-six thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(4168, 3008, 'three thousand eight');\nINSERT INTO t3 VALUES(4169, 73017, 'seventy-three thousand seventeen');\nINSERT INTO t3 VALUES(4170, 80318, 'eighty thousand three hundred eighteen');\nINSERT INTO t3 VALUES(4171, 88927, 'eighty-eight thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(4172, 81274, 'eighty-one thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(4173, 2042, 'two thousand forty-two');\nINSERT INTO t3 VALUES(4174, 64208, 'sixty-four thousand two hundred eight');\nINSERT INTO t3 VALUES(4175, 68960, 'sixty-eight thousand nine hundred sixty');\nINSERT INTO t3 VALUES(4176, 35762, 'thirty-five thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(4177, 34565, 'thirty-four thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(4178, 25206, 'twenty-five thousand two hundred six');\nINSERT INTO t3 VALUES(4179, 88983, 'eighty-eight thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(4180, 1561, 'one thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(4181, 78055, 'seventy-eight thousand fifty-five');\nINSERT INTO t3 VALUES(4182, 15211, 'fifteen thousand two hundred eleven');\nINSERT INTO t3 VALUES(4183, 6521, 'six thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(4184, 90252, 'ninety thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(4185, 36148, 'thirty-six thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(4186, 25154, 'twenty-five thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(4187, 26225, 'twenty-six thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(4188, 29731, 'twenty-nine thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(4189, 53019, 'fifty-three thousand nineteen');\nINSERT INTO t3 VALUES(4190, 63655, 'sixty-three thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(4191, 98432, 'ninety-eight thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(4192, 35425, 'thirty-five thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(4193, 76458, 'seventy-six thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(4194, 23698, 'twenty-three thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(4195, 17217, 'seventeen thousand two hundred seventeen');\nINSERT INTO t3 VALUES(4196, 47301, 'forty-seven thousand three hundred one');\nINSERT INTO t3 VALUES(4197, 27341, 'twenty-seven thousand three hundred forty-one');\nINSERT INTO t3 VALUES(4198, 75533, 'seventy-five thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(4199, 12303, 'twelve thousand three hundred three');\nINSERT INTO t3 VALUES(4200, 24176, 'twenty-four thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(4201, 21438, 'twenty-one thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(4202, 21970, 'twenty-one thousand nine hundred seventy');\nINSERT INTO t3 VALUES(4203, 59033, 'fifty-nine thousand thirty-three');\nINSERT INTO t3 VALUES(4204, 46814, 'forty-six thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(4205, 38981, 'thirty-eight thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(4206, 27904, 'twenty-seven thousand nine hundred four');\nINSERT INTO t3 VALUES(4207, 24136, 'twenty-four thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(4208, 70749, 'seventy thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(4209, 45423, 'forty-five thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(4210, 24329, 'twenty-four thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(4211, 50187, 'fifty thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(4212, 40052, 'forty thousand fifty-two');\nINSERT INTO t3 VALUES(4213, 42353, 'forty-two thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(4214, 15519, 'fifteen thousand five hundred nineteen');\nINSERT INTO t3 VALUES(4215, 56068, 'fifty-six thousand sixty-eight');\nINSERT INTO t3 VALUES(4216, 62342, 'sixty-two thousand three hundred forty-two');\nINSERT INTO t3 VALUES(4217, 12713, 'twelve thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(4218, 45393, 'forty-five thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(4219, 58954, 'fifty-eight thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(4220, 75288, 'seventy-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(4221, 17860, 'seventeen thousand eight hundred sixty');\nINSERT INTO t3 VALUES(4222, 81471, 'eighty-one thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(4223, 77160, 'seventy-seven thousand one hundred sixty');\nINSERT INTO t3 VALUES(4224, 79079, 'seventy-nine thousand seventy-nine');\nINSERT INTO t3 VALUES(4225, 12010, 'twelve thousand ten');\nINSERT INTO t3 VALUES(4226, 80815, 'eighty thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(4227, 90813, 'ninety thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(4228, 88816, 'eighty-eight thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(4229, 98715, 'ninety-eight thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(4230, 21600, 'twenty-one thousand six hundred');\nINSERT INTO t3 VALUES(4231, 15447, 'fifteen thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(4232, 88291, 'eighty-eight thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(4233, 72622, 'seventy-two thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(4234, 12937, 'twelve thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(4235, 56112, 'fifty-six thousand one hundred twelve');\nINSERT INTO t3 VALUES(4236, 54464, 'fifty-four thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(4237, 53441, 'fifty-three thousand four hundred forty-one');\nINSERT INTO t3 VALUES(4238, 78597, 'seventy-eight thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(4239, 36983, 'thirty-six thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(4240, 2498, 'two thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(4241, 9398, 'nine thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(4242, 27954, 'twenty-seven thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(4243, 43254, 'forty-three thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(4244, 27133, 'twenty-seven thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(4245, 11405, 'eleven thousand four hundred five');\nINSERT INTO t3 VALUES(4246, 90710, 'ninety thousand seven hundred ten');\nINSERT INTO t3 VALUES(4247, 65269, 'sixty-five thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(4248, 65463, 'sixty-five thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(4249, 20022, 'twenty thousand twenty-two');\nINSERT INTO t3 VALUES(4250, 57930, 'fifty-seven thousand nine hundred thirty');\nINSERT INTO t3 VALUES(4251, 84894, 'eighty-four thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(4252, 6773, 'six thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(4253, 47603, 'forty-seven thousand six hundred three');\nINSERT INTO t3 VALUES(4254, 73149, 'seventy-three thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(4255, 56350, 'fifty-six thousand three hundred fifty');\nINSERT INTO t3 VALUES(4256, 31678, 'thirty-one thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(4257, 36192, 'thirty-six thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(4258, 88732, 'eighty-eight thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(4259, 78366, 'seventy-eight thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(4260, 44574, 'forty-four thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(4261, 44046, 'forty-four thousand forty-six');\nINSERT INTO t3 VALUES(4262, 56665, 'fifty-six thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(4263, 24447, 'twenty-four thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(4264, 17583, 'seventeen thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(4265, 77045, 'seventy-seven thousand forty-five');\nINSERT INTO t3 VALUES(4266, 39551, 'thirty-nine thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(4267, 27270, 'twenty-seven thousand two hundred seventy');\nINSERT INTO t3 VALUES(4268, 10895, 'ten thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(4269, 14927, 'fourteen thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(4270, 9843, 'nine thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(4271, 69052, 'sixty-nine thousand fifty-two');\nINSERT INTO t3 VALUES(4272, 40042, 'forty thousand forty-two');\nINSERT INTO t3 VALUES(4273, 26035, 'twenty-six thousand thirty-five');\nINSERT INTO t3 VALUES(4274, 45101, 'forty-five thousand one hundred one');\nINSERT INTO t3 VALUES(4275, 87634, 'eighty-seven thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(4276, 26431, 'twenty-six thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(4277, 95501, 'ninety-five thousand five hundred one');\nINSERT INTO t3 VALUES(4278, 43019, 'forty-three thousand nineteen');\nINSERT INTO t3 VALUES(4279, 13232, 'thirteen thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(4280, 73359, 'seventy-three thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(4281, 2032, 'two thousand thirty-two');\nINSERT INTO t3 VALUES(4282, 53445, 'fifty-three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(4283, 3762, 'three thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(4284, 54323, 'fifty-four thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(4285, 26353, 'twenty-six thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(4286, 23823, 'twenty-three thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(4287, 10107, 'ten thousand one hundred seven');\nINSERT INTO t3 VALUES(4288, 38757, 'thirty-eight thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(4289, 72327, 'seventy-two thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(4290, 53587, 'fifty-three thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(4291, 89088, 'eighty-nine thousand eighty-eight');\nINSERT INTO t3 VALUES(4292, 86628, 'eighty-six thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(4293, 10958, 'ten thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(4294, 58652, 'fifty-eight thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(4295, 58097, 'fifty-eight thousand ninety-seven');\nINSERT INTO t3 VALUES(4296, 4741, 'four thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(4297, 97362, 'ninety-seven thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(4298, 26291, 'twenty-six thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(4299, 90689, 'ninety thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(4300, 21306, 'twenty-one thousand three hundred six');\nINSERT INTO t3 VALUES(4301, 12779, 'twelve thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(4302, 43906, 'forty-three thousand nine hundred six');\nINSERT INTO t3 VALUES(4303, 28345, 'twenty-eight thousand three hundred forty-five');\nINSERT INTO t3 VALUES(4304, 3431, 'three thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(4305, 76962, 'seventy-six thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(4306, 22743, 'twenty-two thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(4307, 76905, 'seventy-six thousand nine hundred five');\nINSERT INTO t3 VALUES(4308, 10903, 'ten thousand nine hundred three');\nINSERT INTO t3 VALUES(4309, 28471, 'twenty-eight thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(4310, 44109, 'forty-four thousand one hundred nine');\nINSERT INTO t3 VALUES(4311, 61065, 'sixty-one thousand sixty-five');\nINSERT INTO t3 VALUES(4312, 5809, 'five thousand eight hundred nine');\nINSERT INTO t3 VALUES(4313, 81563, 'eighty-one thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(4314, 11876, 'eleven thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(4315, 48951, 'forty-eight thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(4316, 36415, 'thirty-six thousand four hundred fifteen');\nINSERT INTO t3 VALUES(4317, 88986, 'eighty-eight thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(4318, 28960, 'twenty-eight thousand nine hundred sixty');\nINSERT INTO t3 VALUES(4319, 98521, 'ninety-eight thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(4320, 37806, 'thirty-seven thousand eight hundred six');\nINSERT INTO t3 VALUES(4321, 9153, 'nine thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(4322, 96439, 'ninety-six thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(4323, 351, 'three hundred fifty-one');\nINSERT INTO t3 VALUES(4324, 38983, 'thirty-eight thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(4325, 96646, 'ninety-six thousand six hundred forty-six');\nINSERT INTO t3 VALUES(4326, 14385, 'fourteen thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(4327, 40062, 'forty thousand sixty-two');\nINSERT INTO t3 VALUES(4328, 97905, 'ninety-seven thousand nine hundred five');\nINSERT INTO t3 VALUES(4329, 91239, 'ninety-one thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(4330, 91917, 'ninety-one thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(4331, 37756, 'thirty-seven thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(4332, 59951, 'fifty-nine thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(4333, 23108, 'twenty-three thousand one hundred eight');\nINSERT INTO t3 VALUES(4334, 75257, 'seventy-five thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(4335, 59810, 'fifty-nine thousand eight hundred ten');\nINSERT INTO t3 VALUES(4336, 49996, 'forty-nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(4337, 39751, 'thirty-nine thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(4338, 87298, 'eighty-seven thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(4339, 88339, 'eighty-eight thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(4340, 43114, 'forty-three thousand one hundred fourteen');\nINSERT INTO t3 VALUES(4341, 22084, 'twenty-two thousand eighty-four');\nINSERT INTO t3 VALUES(4342, 17302, 'seventeen thousand three hundred two');\nINSERT INTO t3 VALUES(4343, 99188, 'ninety-nine thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(4344, 85310, 'eighty-five thousand three hundred ten');\nINSERT INTO t3 VALUES(4345, 77776, 'seventy-seven thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(4346, 46995, 'forty-six thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(4347, 38237, 'thirty-eight thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(4348, 75675, 'seventy-five thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(4349, 43642, 'forty-three thousand six hundred forty-two');\nINSERT INTO t3 VALUES(4350, 19739, 'nineteen thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(4351, 4855, 'four thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(4352, 46928, 'forty-six thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(4353, 76727, 'seventy-six thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(4354, 56960, 'fifty-six thousand nine hundred sixty');\nINSERT INTO t3 VALUES(4355, 84758, 'eighty-four thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(4356, 5461, 'five thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(4357, 75425, 'seventy-five thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(4358, 79900, 'seventy-nine thousand nine hundred');\nINSERT INTO t3 VALUES(4359, 49647, 'forty-nine thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(4360, 61141, 'sixty-one thousand one hundred forty-one');\nINSERT INTO t3 VALUES(4361, 59243, 'fifty-nine thousand two hundred forty-three');\nINSERT INTO t3 VALUES(4362, 51024, 'fifty-one thousand twenty-four');\nINSERT INTO t3 VALUES(4363, 84241, 'eighty-four thousand two hundred forty-one');\nINSERT INTO t3 VALUES(4364, 73234, 'seventy-three thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(4365, 95919, 'ninety-five thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(4366, 66637, 'sixty-six thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(4367, 21917, 'twenty-one thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(4368, 40846, 'forty thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(4369, 34424, 'thirty-four thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(4370, 10089, 'ten thousand eighty-nine');\nINSERT INTO t3 VALUES(4371, 55554, 'fifty-five thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(4372, 36478, 'thirty-six thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(4373, 94012, 'ninety-four thousand twelve');\nINSERT INTO t3 VALUES(4374, 637, 'six hundred thirty-seven');\nINSERT INTO t3 VALUES(4375, 30513, 'thirty thousand five hundred thirteen');\nINSERT INTO t3 VALUES(4376, 33790, 'thirty-three thousand seven hundred ninety');\nINSERT INTO t3 VALUES(4377, 8010, 'eight thousand ten');\nINSERT INTO t3 VALUES(4378, 72371, 'seventy-two thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(4379, 59532, 'fifty-nine thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(4380, 38361, 'thirty-eight thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(4381, 88203, 'eighty-eight thousand two hundred three');\nINSERT INTO t3 VALUES(4382, 39850, 'thirty-nine thousand eight hundred fifty');\nINSERT INTO t3 VALUES(4383, 27102, 'twenty-seven thousand one hundred two');\nINSERT INTO t3 VALUES(4384, 84757, 'eighty-four thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(4385, 31547, 'thirty-one thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(4386, 80939, 'eighty thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(4387, 72745, 'seventy-two thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(4388, 49325, 'forty-nine thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(4389, 63270, 'sixty-three thousand two hundred seventy');\nINSERT INTO t3 VALUES(4390, 30207, 'thirty thousand two hundred seven');\nINSERT INTO t3 VALUES(4391, 77692, 'seventy-seven thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(4392, 92739, 'ninety-two thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(4393, 99894, 'ninety-nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(4394, 88412, 'eighty-eight thousand four hundred twelve');\nINSERT INTO t3 VALUES(4395, 38460, 'thirty-eight thousand four hundred sixty');\nINSERT INTO t3 VALUES(4396, 50074, 'fifty thousand seventy-four');\nINSERT INTO t3 VALUES(4397, 99238, 'ninety-nine thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(4398, 26264, 'twenty-six thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(4399, 73237, 'seventy-three thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(4400, 2738, 'two thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(4401, 9490, 'nine thousand four hundred ninety');\nINSERT INTO t3 VALUES(4402, 12569, 'twelve thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(4403, 25453, 'twenty-five thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(4404, 36806, 'thirty-six thousand eight hundred six');\nINSERT INTO t3 VALUES(4405, 48690, 'forty-eight thousand six hundred ninety');\nINSERT INTO t3 VALUES(4406, 82009, 'eighty-two thousand nine');\nINSERT INTO t3 VALUES(4407, 48119, 'forty-eight thousand one hundred nineteen');\nINSERT INTO t3 VALUES(4408, 70048, 'seventy thousand forty-eight');\nINSERT INTO t3 VALUES(4409, 35114, 'thirty-five thousand one hundred fourteen');\nINSERT INTO t3 VALUES(4410, 53675, 'fifty-three thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(4411, 59782, 'fifty-nine thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(4412, 38477, 'thirty-eight thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(4413, 60429, 'sixty thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(4414, 29701, 'twenty-nine thousand seven hundred one');\nINSERT INTO t3 VALUES(4415, 36273, 'thirty-six thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(4416, 10241, 'ten thousand two hundred forty-one');\nINSERT INTO t3 VALUES(4417, 97422, 'ninety-seven thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(4418, 21979, 'twenty-one thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(4419, 39535, 'thirty-nine thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(4420, 90185, 'ninety thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(4421, 6554, 'six thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(4422, 69223, 'sixty-nine thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(4423, 38368, 'thirty-eight thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(4424, 79574, 'seventy-nine thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(4425, 6582, 'six thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(4426, 35160, 'thirty-five thousand one hundred sixty');\nINSERT INTO t3 VALUES(4427, 19450, 'nineteen thousand four hundred fifty');\nINSERT INTO t3 VALUES(4428, 26477, 'twenty-six thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(4429, 46417, 'forty-six thousand four hundred seventeen');\nINSERT INTO t3 VALUES(4430, 64785, 'sixty-four thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(4431, 37436, 'thirty-seven thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(4432, 68095, 'sixty-eight thousand ninety-five');\nINSERT INTO t3 VALUES(4433, 90950, 'ninety thousand nine hundred fifty');\nINSERT INTO t3 VALUES(4434, 24468, 'twenty-four thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(4435, 10165, 'ten thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(4436, 89249, 'eighty-nine thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(4437, 52842, 'fifty-two thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(4438, 65308, 'sixty-five thousand three hundred eight');\nINSERT INTO t3 VALUES(4439, 41228, 'forty-one thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(4440, 86740, 'eighty-six thousand seven hundred forty');\nINSERT INTO t3 VALUES(4441, 25030, 'twenty-five thousand thirty');\nINSERT INTO t3 VALUES(4442, 96003, 'ninety-six thousand three');\nINSERT INTO t3 VALUES(4443, 83718, 'eighty-three thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(4444, 9289, 'nine thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(4445, 10192, 'ten thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(4446, 60579, 'sixty thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(4447, 18628, 'eighteen thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(4448, 62218, 'sixty-two thousand two hundred eighteen');\nINSERT INTO t3 VALUES(4449, 93144, 'ninety-three thousand one hundred forty-four');\nINSERT INTO t3 VALUES(4450, 11835, 'eleven thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(4451, 26689, 'twenty-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(4452, 33231, 'thirty-three thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(4453, 10699, 'ten thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(4454, 95889, 'ninety-five thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(4455, 48434, 'forty-eight thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(4456, 87579, 'eighty-seven thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(4457, 65327, 'sixty-five thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(4458, 98690, 'ninety-eight thousand six hundred ninety');\nINSERT INTO t3 VALUES(4459, 48151, 'forty-eight thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(4460, 22126, 'twenty-two thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(4461, 63437, 'sixty-three thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(4462, 10678, 'ten thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(4463, 15296, 'fifteen thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(4464, 82638, 'eighty-two thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(4465, 24493, 'twenty-four thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(4466, 82118, 'eighty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(4467, 4261, 'four thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(4468, 57849, 'fifty-seven thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(4469, 61992, 'sixty-one thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(4470, 42803, 'forty-two thousand eight hundred three');\nINSERT INTO t3 VALUES(4471, 29108, 'twenty-nine thousand one hundred eight');\nINSERT INTO t3 VALUES(4472, 56794, 'fifty-six thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(4473, 18720, 'eighteen thousand seven hundred twenty');\nINSERT INTO t3 VALUES(4474, 98395, 'ninety-eight thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(4475, 63736, 'sixty-three thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(4476, 70233, 'seventy thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(4477, 17035, 'seventeen thousand thirty-five');\nINSERT INTO t3 VALUES(4478, 56136, 'fifty-six thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(4479, 51772, 'fifty-one thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(4480, 48109, 'forty-eight thousand one hundred nine');\nINSERT INTO t3 VALUES(4481, 70008, 'seventy thousand eight');\nINSERT INTO t3 VALUES(4482, 8527, 'eight thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(4483, 10841, 'ten thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(4484, 85544, 'eighty-five thousand five hundred forty-four');\nINSERT INTO t3 VALUES(4485, 54307, 'fifty-four thousand three hundred seven');\nINSERT INTO t3 VALUES(4486, 16928, 'sixteen thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(4487, 59755, 'fifty-nine thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(4488, 21933, 'twenty-one thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(4489, 4583, 'four thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(4490, 89739, 'eighty-nine thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(4491, 99787, 'ninety-nine thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(4492, 89861, 'eighty-nine thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(4493, 78471, 'seventy-eight thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(4494, 23109, 'twenty-three thousand one hundred nine');\nINSERT INTO t3 VALUES(4495, 55806, 'fifty-five thousand eight hundred six');\nINSERT INTO t3 VALUES(4496, 22721, 'twenty-two thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(4497, 74522, 'seventy-four thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(4498, 6563, 'six thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(4499, 56428, 'fifty-six thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(4500, 44307, 'forty-four thousand three hundred seven');\nINSERT INTO t3 VALUES(4501, 49001, 'forty-nine thousand one');\nINSERT INTO t3 VALUES(4502, 40838, 'forty thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(4503, 21195, 'twenty-one thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(4504, 91814, 'ninety-one thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(4505, 50396, 'fifty thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(4506, 61919, 'sixty-one thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(4507, 48342, 'forty-eight thousand three hundred forty-two');\nINSERT INTO t3 VALUES(4508, 70753, 'seventy thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(4509, 71693, 'seventy-one thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(4510, 74549, 'seventy-four thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(4511, 60812, 'sixty thousand eight hundred twelve');\nINSERT INTO t3 VALUES(4512, 9859, 'nine thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(4513, 36854, 'thirty-six thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(4514, 49793, 'forty-nine thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(4515, 75206, 'seventy-five thousand two hundred six');\nINSERT INTO t3 VALUES(4516, 78372, 'seventy-eight thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(4517, 4951, 'four thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(4518, 5564, 'five thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(4519, 7772, 'seven thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(4520, 30489, 'thirty thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(4521, 84057, 'eighty-four thousand fifty-seven');\nINSERT INTO t3 VALUES(4522, 79433, 'seventy-nine thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(4523, 2373, 'two thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(4524, 45496, 'forty-five thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(4525, 87313, 'eighty-seven thousand three hundred thirteen');\nINSERT INTO t3 VALUES(4526, 42552, 'forty-two thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(4527, 8510, 'eight thousand five hundred ten');\nINSERT INTO t3 VALUES(4528, 74269, 'seventy-four thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(4529, 54323, 'fifty-four thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(4530, 20979, 'twenty thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(4531, 83057, 'eighty-three thousand fifty-seven');\nINSERT INTO t3 VALUES(4532, 95647, 'ninety-five thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(4533, 80128, 'eighty thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(4534, 82775, 'eighty-two thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(4535, 19071, 'nineteen thousand seventy-one');\nINSERT INTO t3 VALUES(4536, 30344, 'thirty thousand three hundred forty-four');\nINSERT INTO t3 VALUES(4537, 69365, 'sixty-nine thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(4538, 1011, 'one thousand eleven');\nINSERT INTO t3 VALUES(4539, 7474, 'seven thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(4540, 69215, 'sixty-nine thousand two hundred fifteen');\nINSERT INTO t3 VALUES(4541, 81575, 'eighty-one thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(4542, 62393, 'sixty-two thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(4543, 70505, 'seventy thousand five hundred five');\nINSERT INTO t3 VALUES(4544, 81573, 'eighty-one thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(4545, 80358, 'eighty thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(4546, 91336, 'ninety-one thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(4547, 76106, 'seventy-six thousand one hundred six');\nINSERT INTO t3 VALUES(4548, 38208, 'thirty-eight thousand two hundred eight');\nINSERT INTO t3 VALUES(4549, 46026, 'forty-six thousand twenty-six');\nINSERT INTO t3 VALUES(4550, 22083, 'twenty-two thousand eighty-three');\nINSERT INTO t3 VALUES(4551, 40384, 'forty thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(4552, 93542, 'ninety-three thousand five hundred forty-two');\nINSERT INTO t3 VALUES(4553, 36433, 'thirty-six thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(4554, 70229, 'seventy thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(4555, 59512, 'fifty-nine thousand five hundred twelve');\nINSERT INTO t3 VALUES(4556, 26395, 'twenty-six thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(4557, 25628, 'twenty-five thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(4558, 98244, 'ninety-eight thousand two hundred forty-four');\nINSERT INTO t3 VALUES(4559, 12642, 'twelve thousand six hundred forty-two');\nINSERT INTO t3 VALUES(4560, 67710, 'sixty-seven thousand seven hundred ten');\nINSERT INTO t3 VALUES(4561, 84543, 'eighty-four thousand five hundred forty-three');\nINSERT INTO t3 VALUES(4562, 94985, 'ninety-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(4563, 80433, 'eighty thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(4564, 47221, 'forty-seven thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(4565, 74390, 'seventy-four thousand three hundred ninety');\nINSERT INTO t3 VALUES(4566, 66652, 'sixty-six thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(4567, 59332, 'fifty-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(4568, 62413, 'sixty-two thousand four hundred thirteen');\nINSERT INTO t3 VALUES(4569, 68194, 'sixty-eight thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(4570, 719, 'seven hundred nineteen');\nINSERT INTO t3 VALUES(4571, 41170, 'forty-one thousand one hundred seventy');\nINSERT INTO t3 VALUES(4572, 82100, 'eighty-two thousand one hundred');\nINSERT INTO t3 VALUES(4573, 89093, 'eighty-nine thousand ninety-three');\nINSERT INTO t3 VALUES(4574, 75316, 'seventy-five thousand three hundred sixteen');\nINSERT INTO t3 VALUES(4575, 67400, 'sixty-seven thousand four hundred');\nINSERT INTO t3 VALUES(4576, 55157, 'fifty-five thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(4577, 60614, 'sixty thousand six hundred fourteen');\nINSERT INTO t3 VALUES(4578, 5032, 'five thousand thirty-two');\nINSERT INTO t3 VALUES(4579, 56297, 'fifty-six thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(4580, 93783, 'ninety-three thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(4581, 17873, 'seventeen thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(4582, 40278, 'forty thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(4583, 42191, 'forty-two thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(4584, 10403, 'ten thousand four hundred three');\nINSERT INTO t3 VALUES(4585, 62976, 'sixty-two thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(4586, 48973, 'forty-eight thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(4587, 84179, 'eighty-four thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(4588, 82617, 'eighty-two thousand six hundred seventeen');\nINSERT INTO t3 VALUES(4589, 98811, 'ninety-eight thousand eight hundred eleven');\nINSERT INTO t3 VALUES(4590, 10810, 'ten thousand eight hundred ten');\nINSERT INTO t3 VALUES(4591, 95530, 'ninety-five thousand five hundred thirty');\nINSERT INTO t3 VALUES(4592, 60056, 'sixty thousand fifty-six');\nINSERT INTO t3 VALUES(4593, 42375, 'forty-two thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(4594, 74693, 'seventy-four thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(4595, 79545, 'seventy-nine thousand five hundred forty-five');\nINSERT INTO t3 VALUES(4596, 34917, 'thirty-four thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(4597, 8795, 'eight thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(4598, 69956, 'sixty-nine thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(4599, 15812, 'fifteen thousand eight hundred twelve');\nINSERT INTO t3 VALUES(4600, 92571, 'ninety-two thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(4601, 23220, 'twenty-three thousand two hundred twenty');\nINSERT INTO t3 VALUES(4602, 89679, 'eighty-nine thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(4603, 24818, 'twenty-four thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(4604, 67924, 'sixty-seven thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(4605, 99165, 'ninety-nine thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(4606, 24311, 'twenty-four thousand three hundred eleven');\nINSERT INTO t3 VALUES(4607, 9894, 'nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(4608, 63083, 'sixty-three thousand eighty-three');\nINSERT INTO t3 VALUES(4609, 92776, 'ninety-two thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(4610, 25999, 'twenty-five thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(4611, 34720, 'thirty-four thousand seven hundred twenty');\nINSERT INTO t3 VALUES(4612, 23372, 'twenty-three thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(4613, 62772, 'sixty-two thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(4614, 26046, 'twenty-six thousand forty-six');\nINSERT INTO t3 VALUES(4615, 95053, 'ninety-five thousand fifty-three');\nINSERT INTO t3 VALUES(4616, 2782, 'two thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(4617, 54566, 'fifty-four thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(4618, 42688, 'forty-two thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(4619, 79565, 'seventy-nine thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(4620, 54007, 'fifty-four thousand seven');\nINSERT INTO t3 VALUES(4621, 90412, 'ninety thousand four hundred twelve');\nINSERT INTO t3 VALUES(4622, 58728, 'fifty-eight thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(4623, 37957, 'thirty-seven thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(4624, 43202, 'forty-three thousand two hundred two');\nINSERT INTO t3 VALUES(4625, 49790, 'forty-nine thousand seven hundred ninety');\nINSERT INTO t3 VALUES(4626, 33414, 'thirty-three thousand four hundred fourteen');\nINSERT INTO t3 VALUES(4627, 42322, 'forty-two thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(4628, 66051, 'sixty-six thousand fifty-one');\nINSERT INTO t3 VALUES(4629, 38905, 'thirty-eight thousand nine hundred five');\nINSERT INTO t3 VALUES(4630, 48833, 'forty-eight thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(4631, 5917, 'five thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(4632, 24691, 'twenty-four thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(4633, 1307, 'one thousand three hundred seven');\nINSERT INTO t3 VALUES(4634, 81004, 'eighty-one thousand four');\nINSERT INTO t3 VALUES(4635, 55384, 'fifty-five thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(4636, 8380, 'eight thousand three hundred eighty');\nINSERT INTO t3 VALUES(4637, 7495, 'seven thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(4638, 1119, 'one thousand one hundred nineteen');\nINSERT INTO t3 VALUES(4639, 30853, 'thirty thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(4640, 44294, 'forty-four thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(4641, 17223, 'seventeen thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(4642, 71350, 'seventy-one thousand three hundred fifty');\nINSERT INTO t3 VALUES(4643, 47958, 'forty-seven thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(4644, 55460, 'fifty-five thousand four hundred sixty');\nINSERT INTO t3 VALUES(4645, 16224, 'sixteen thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(4646, 7300, 'seven thousand three hundred');\nINSERT INTO t3 VALUES(4647, 64606, 'sixty-four thousand six hundred six');\nINSERT INTO t3 VALUES(4648, 4906, 'four thousand nine hundred six');\nINSERT INTO t3 VALUES(4649, 83154, 'eighty-three thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(4650, 29720, 'twenty-nine thousand seven hundred twenty');\nINSERT INTO t3 VALUES(4651, 26178, 'twenty-six thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(4652, 67536, 'sixty-seven thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(4653, 89097, 'eighty-nine thousand ninety-seven');\nINSERT INTO t3 VALUES(4654, 69360, 'sixty-nine thousand three hundred sixty');\nINSERT INTO t3 VALUES(4655, 75725, 'seventy-five thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(4656, 31599, 'thirty-one thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(4657, 86746, 'eighty-six thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(4658, 8155, 'eight thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(4659, 10435, 'ten thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(4660, 64746, 'sixty-four thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(4661, 88342, 'eighty-eight thousand three hundred forty-two');\nINSERT INTO t3 VALUES(4662, 29044, 'twenty-nine thousand forty-four');\nINSERT INTO t3 VALUES(4663, 87397, 'eighty-seven thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(4664, 95840, 'ninety-five thousand eight hundred forty');\nINSERT INTO t3 VALUES(4665, 10172, 'ten thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(4666, 61756, 'sixty-one thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(4667, 58421, 'fifty-eight thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(4668, 81554, 'eighty-one thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(4669, 45405, 'forty-five thousand four hundred five');\nINSERT INTO t3 VALUES(4670, 87799, 'eighty-seven thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(4671, 896, 'eight hundred ninety-six');\nINSERT INTO t3 VALUES(4672, 87029, 'eighty-seven thousand twenty-nine');\nINSERT INTO t3 VALUES(4673, 75762, 'seventy-five thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(4674, 66069, 'sixty-six thousand sixty-nine');\nINSERT INTO t3 VALUES(4675, 37825, 'thirty-seven thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(4676, 2593, 'two thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(4677, 64303, 'sixty-four thousand three hundred three');\nINSERT INTO t3 VALUES(4678, 19227, 'nineteen thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(4679, 87241, 'eighty-seven thousand two hundred forty-one');\nINSERT INTO t3 VALUES(4680, 73328, 'seventy-three thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(4681, 98135, 'ninety-eight thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(4682, 96177, 'ninety-six thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(4683, 50127, 'fifty thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(4684, 13236, 'thirteen thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(4685, 78778, 'seventy-eight thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(4686, 67244, 'sixty-seven thousand two hundred forty-four');\nINSERT INTO t3 VALUES(4687, 73829, 'seventy-three thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(4688, 86310, 'eighty-six thousand three hundred ten');\nINSERT INTO t3 VALUES(4689, 86329, 'eighty-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(4690, 58308, 'fifty-eight thousand three hundred eight');\nINSERT INTO t3 VALUES(4691, 85135, 'eighty-five thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(4692, 62129, 'sixty-two thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(4693, 41309, 'forty-one thousand three hundred nine');\nINSERT INTO t3 VALUES(4694, 80303, 'eighty thousand three hundred three');\nINSERT INTO t3 VALUES(4695, 5007, 'five thousand seven');\nINSERT INTO t3 VALUES(4696, 53727, 'fifty-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(4697, 48423, 'forty-eight thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(4698, 75795, 'seventy-five thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(4699, 34905, 'thirty-four thousand nine hundred five');\nINSERT INTO t3 VALUES(4700, 89553, 'eighty-nine thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(4701, 43494, 'forty-three thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(4702, 40590, 'forty thousand five hundred ninety');\nINSERT INTO t3 VALUES(4703, 85488, 'eighty-five thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(4704, 12019, 'twelve thousand nineteen');\nINSERT INTO t3 VALUES(4705, 97967, 'ninety-seven thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(4706, 82118, 'eighty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(4707, 64177, 'sixty-four thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(4708, 62453, 'sixty-two thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(4709, 7315, 'seven thousand three hundred fifteen');\nINSERT INTO t3 VALUES(4710, 45527, 'forty-five thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(4711, 68159, 'sixty-eight thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(4712, 52376, 'fifty-two thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(4713, 22528, 'twenty-two thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(4714, 38052, 'thirty-eight thousand fifty-two');\nINSERT INTO t3 VALUES(4715, 33765, 'thirty-three thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(4716, 58029, 'fifty-eight thousand twenty-nine');\nINSERT INTO t3 VALUES(4717, 69443, 'sixty-nine thousand four hundred forty-three');\nINSERT INTO t3 VALUES(4718, 34837, 'thirty-four thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(4719, 75496, 'seventy-five thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(4720, 65687, 'sixty-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(4721, 24103, 'twenty-four thousand one hundred three');\nINSERT INTO t3 VALUES(4722, 99773, 'ninety-nine thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(4723, 51813, 'fifty-one thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(4724, 66608, 'sixty-six thousand six hundred eight');\nINSERT INTO t3 VALUES(4725, 30541, 'thirty thousand five hundred forty-one');\nINSERT INTO t3 VALUES(4726, 88596, 'eighty-eight thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(4727, 90716, 'ninety thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(4728, 33156, 'thirty-three thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(4729, 31137, 'thirty-one thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(4730, 17821, 'seventeen thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(4731, 79641, 'seventy-nine thousand six hundred forty-one');\nINSERT INTO t3 VALUES(4732, 24006, 'twenty-four thousand six');\nINSERT INTO t3 VALUES(4733, 96030, 'ninety-six thousand thirty');\nINSERT INTO t3 VALUES(4734, 93044, 'ninety-three thousand forty-four');\nINSERT INTO t3 VALUES(4735, 31485, 'thirty-one thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(4736, 37035, 'thirty-seven thousand thirty-five');\nINSERT INTO t3 VALUES(4737, 12731, 'twelve thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(4738, 46662, 'forty-six thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(4739, 85320, 'eighty-five thousand three hundred twenty');\nINSERT INTO t3 VALUES(4740, 26230, 'twenty-six thousand two hundred thirty');\nINSERT INTO t3 VALUES(4741, 48928, 'forty-eight thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(4742, 42254, 'forty-two thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(4743, 74631, 'seventy-four thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(4744, 87733, 'eighty-seven thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(4745, 69235, 'sixty-nine thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(4746, 94475, 'ninety-four thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(4747, 33328, 'thirty-three thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(4748, 65184, 'sixty-five thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(4749, 66030, 'sixty-six thousand thirty');\nINSERT INTO t3 VALUES(4750, 91364, 'ninety-one thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(4751, 57230, 'fifty-seven thousand two hundred thirty');\nINSERT INTO t3 VALUES(4752, 26124, 'twenty-six thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(4753, 90492, 'ninety thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(4754, 37321, 'thirty-seven thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(4755, 62352, 'sixty-two thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(4756, 56073, 'fifty-six thousand seventy-three');\nINSERT INTO t3 VALUES(4757, 15541, 'fifteen thousand five hundred forty-one');\nINSERT INTO t3 VALUES(4758, 33714, 'thirty-three thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(4759, 32329, 'thirty-two thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(4760, 77725, 'seventy-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(4761, 14444, 'fourteen thousand four hundred forty-four');\nINSERT INTO t3 VALUES(4762, 48509, 'forty-eight thousand five hundred nine');\nINSERT INTO t3 VALUES(4763, 85064, 'eighty-five thousand sixty-four');\nINSERT INTO t3 VALUES(4764, 85186, 'eighty-five thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(4765, 1309, 'one thousand three hundred nine');\nINSERT INTO t3 VALUES(4766, 12047, 'twelve thousand forty-seven');\nINSERT INTO t3 VALUES(4767, 31292, 'thirty-one thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(4768, 32860, 'thirty-two thousand eight hundred sixty');\nINSERT INTO t3 VALUES(4769, 1770, 'one thousand seven hundred seventy');\nINSERT INTO t3 VALUES(4770, 8379, 'eight thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(4771, 16549, 'sixteen thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(4772, 51602, 'fifty-one thousand six hundred two');\nINSERT INTO t3 VALUES(4773, 9098, 'nine thousand ninety-eight');\nINSERT INTO t3 VALUES(4774, 86228, 'eighty-six thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(4775, 56084, 'fifty-six thousand eighty-four');\nINSERT INTO t3 VALUES(4776, 67274, 'sixty-seven thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(4777, 9238, 'nine thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(4778, 42824, 'forty-two thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(4779, 95073, 'ninety-five thousand seventy-three');\nINSERT INTO t3 VALUES(4780, 64989, 'sixty-four thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(4781, 10437, 'ten thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(4782, 49216, 'forty-nine thousand two hundred sixteen');\nINSERT INTO t3 VALUES(4783, 17560, 'seventeen thousand five hundred sixty');\nINSERT INTO t3 VALUES(4784, 63865, 'sixty-three thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(4785, 54517, 'fifty-four thousand five hundred seventeen');\nINSERT INTO t3 VALUES(4786, 74263, 'seventy-four thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(4787, 31483, 'thirty-one thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(4788, 38967, 'thirty-eight thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(4789, 10923, 'ten thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(4790, 47843, 'forty-seven thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(4791, 84922, 'eighty-four thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(4792, 64591, 'sixty-four thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(4793, 80493, 'eighty thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(4794, 24902, 'twenty-four thousand nine hundred two');\nINSERT INTO t3 VALUES(4795, 63564, 'sixty-three thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(4796, 2881, 'two thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(4797, 13764, 'thirteen thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(4798, 61888, 'sixty-one thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(4799, 2098, 'two thousand ninety-eight');\nINSERT INTO t3 VALUES(4800, 45862, 'forty-five thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(4801, 69082, 'sixty-nine thousand eighty-two');\nINSERT INTO t3 VALUES(4802, 66271, 'sixty-six thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(4803, 42768, 'forty-two thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(4804, 35226, 'thirty-five thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(4805, 84784, 'eighty-four thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(4806, 74277, 'seventy-four thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(4807, 92202, 'ninety-two thousand two hundred two');\nINSERT INTO t3 VALUES(4808, 80464, 'eighty thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(4809, 27697, 'twenty-seven thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(4810, 5353, 'five thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(4811, 5002, 'five thousand two');\nINSERT INTO t3 VALUES(4812, 7687, 'seven thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(4813, 29414, 'twenty-nine thousand four hundred fourteen');\nINSERT INTO t3 VALUES(4814, 98274, 'ninety-eight thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(4815, 39652, 'thirty-nine thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(4816, 74237, 'seventy-four thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(4817, 26761, 'twenty-six thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(4818, 74287, 'seventy-four thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(4819, 84035, 'eighty-four thousand thirty-five');\nINSERT INTO t3 VALUES(4820, 82892, 'eighty-two thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(4821, 1117, 'one thousand one hundred seventeen');\nINSERT INTO t3 VALUES(4822, 32247, 'thirty-two thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(4823, 12453, 'twelve thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(4824, 25244, 'twenty-five thousand two hundred forty-four');\nINSERT INTO t3 VALUES(4825, 89896, 'eighty-nine thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(4826, 59883, 'fifty-nine thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(4827, 57300, 'fifty-seven thousand three hundred');\nINSERT INTO t3 VALUES(4828, 11907, 'eleven thousand nine hundred seven');\nINSERT INTO t3 VALUES(4829, 99518, 'ninety-nine thousand five hundred eighteen');\nINSERT INTO t3 VALUES(4830, 41801, 'forty-one thousand eight hundred one');\nINSERT INTO t3 VALUES(4831, 1239, 'one thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(4832, 47840, 'forty-seven thousand eight hundred forty');\nINSERT INTO t3 VALUES(4833, 50098, 'fifty thousand ninety-eight');\nINSERT INTO t3 VALUES(4834, 77987, 'seventy-seven thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(4835, 23982, 'twenty-three thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(4836, 8077, 'eight thousand seventy-seven');\nINSERT INTO t3 VALUES(4837, 12074, 'twelve thousand seventy-four');\nINSERT INTO t3 VALUES(4838, 15024, 'fifteen thousand twenty-four');\nINSERT INTO t3 VALUES(4839, 7685, 'seven thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(4840, 88200, 'eighty-eight thousand two hundred');\nINSERT INTO t3 VALUES(4841, 23529, 'twenty-three thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(4842, 68902, 'sixty-eight thousand nine hundred two');\nINSERT INTO t3 VALUES(4843, 81465, 'eighty-one thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(4844, 32099, 'thirty-two thousand ninety-nine');\nINSERT INTO t3 VALUES(4845, 73640, 'seventy-three thousand six hundred forty');\nINSERT INTO t3 VALUES(4846, 34012, 'thirty-four thousand twelve');\nINSERT INTO t3 VALUES(4847, 61675, 'sixty-one thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(4848, 7280, 'seven thousand two hundred eighty');\nINSERT INTO t3 VALUES(4849, 82103, 'eighty-two thousand one hundred three');\nINSERT INTO t3 VALUES(4850, 70799, 'seventy thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(4851, 50494, 'fifty thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(4852, 77560, 'seventy-seven thousand five hundred sixty');\nINSERT INTO t3 VALUES(4853, 38742, 'thirty-eight thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(4854, 24288, 'twenty-four thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(4855, 69058, 'sixty-nine thousand fifty-eight');\nINSERT INTO t3 VALUES(4856, 12216, 'twelve thousand two hundred sixteen');\nINSERT INTO t3 VALUES(4857, 99738, 'ninety-nine thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(4858, 10590, 'ten thousand five hundred ninety');\nINSERT INTO t3 VALUES(4859, 15070, 'fifteen thousand seventy');\nINSERT INTO t3 VALUES(4860, 90736, 'ninety thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(4861, 56521, 'fifty-six thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(4862, 75640, 'seventy-five thousand six hundred forty');\nINSERT INTO t3 VALUES(4863, 14212, 'fourteen thousand two hundred twelve');\nINSERT INTO t3 VALUES(4864, 81937, 'eighty-one thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(4865, 99931, 'ninety-nine thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(4866, 64409, 'sixty-four thousand four hundred nine');\nINSERT INTO t3 VALUES(4867, 13734, 'thirteen thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(4868, 12079, 'twelve thousand seventy-nine');\nINSERT INTO t3 VALUES(4869, 31677, 'thirty-one thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(4870, 95818, 'ninety-five thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(4871, 92679, 'ninety-two thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(4872, 80314, 'eighty thousand three hundred fourteen');\nINSERT INTO t3 VALUES(4873, 31833, 'thirty-one thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(4874, 14644, 'fourteen thousand six hundred forty-four');\nINSERT INTO t3 VALUES(4875, 57882, 'fifty-seven thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(4876, 26362, 'twenty-six thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(4877, 29571, 'twenty-nine thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(4878, 44941, 'forty-four thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(4879, 79555, 'seventy-nine thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(4880, 70562, 'seventy thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(4881, 99769, 'ninety-nine thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(4882, 34297, 'thirty-four thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(4883, 59558, 'fifty-nine thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(4884, 17514, 'seventeen thousand five hundred fourteen');\nINSERT INTO t3 VALUES(4885, 18280, 'eighteen thousand two hundred eighty');\nINSERT INTO t3 VALUES(4886, 15878, 'fifteen thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(4887, 24067, 'twenty-four thousand sixty-seven');\nINSERT INTO t3 VALUES(4888, 88931, 'eighty-eight thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(4889, 5181, 'five thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(4890, 55054, 'fifty-five thousand fifty-four');\nINSERT INTO t3 VALUES(4891, 34607, 'thirty-four thousand six hundred seven');\nINSERT INTO t3 VALUES(4892, 26048, 'twenty-six thousand forty-eight');\nINSERT INTO t3 VALUES(4893, 21009, 'twenty-one thousand nine');\nINSERT INTO t3 VALUES(4894, 79519, 'seventy-nine thousand five hundred nineteen');\nINSERT INTO t3 VALUES(4895, 13919, 'thirteen thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(4896, 48879, 'forty-eight thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(4897, 10839, 'ten thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(4898, 12357, 'twelve thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(4899, 84730, 'eighty-four thousand seven hundred thirty');\nINSERT INTO t3 VALUES(4900, 43492, 'forty-three thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(4901, 55627, 'fifty-five thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(4902, 44426, 'forty-four thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(4903, 14694, 'fourteen thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(4904, 69454, 'sixty-nine thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(4905, 88501, 'eighty-eight thousand five hundred one');\nINSERT INTO t3 VALUES(4906, 55253, 'fifty-five thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(4907, 75291, 'seventy-five thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(4908, 95152, 'ninety-five thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(4909, 31034, 'thirty-one thousand thirty-four');\nINSERT INTO t3 VALUES(4910, 99726, 'ninety-nine thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(4911, 24828, 'twenty-four thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(4912, 44348, 'forty-four thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(4913, 30303, 'thirty thousand three hundred three');\nINSERT INTO t3 VALUES(4914, 5326, 'five thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(4915, 34050, 'thirty-four thousand fifty');\nINSERT INTO t3 VALUES(4916, 6457, 'six thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(4917, 41994, 'forty-one thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(4918, 59071, 'fifty-nine thousand seventy-one');\nINSERT INTO t3 VALUES(4919, 23307, 'twenty-three thousand three hundred seven');\nINSERT INTO t3 VALUES(4920, 16993, 'sixteen thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(4921, 27380, 'twenty-seven thousand three hundred eighty');\nINSERT INTO t3 VALUES(4922, 52711, 'fifty-two thousand seven hundred eleven');\nINSERT INTO t3 VALUES(4923, 16664, 'sixteen thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(4924, 83573, 'eighty-three thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(4925, 61448, 'sixty-one thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(4926, 46892, 'forty-six thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(4927, 36083, 'thirty-six thousand eighty-three');\nINSERT INTO t3 VALUES(4928, 3469, 'three thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(4929, 5031, 'five thousand thirty-one');\nINSERT INTO t3 VALUES(4930, 21199, 'twenty-one thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(4931, 92415, 'ninety-two thousand four hundred fifteen');\nINSERT INTO t3 VALUES(4932, 51844, 'fifty-one thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(4933, 24551, 'twenty-four thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(4934, 81455, 'eighty-one thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(4935, 96000, 'ninety-six thousand');\nINSERT INTO t3 VALUES(4936, 71240, 'seventy-one thousand two hundred forty');\nINSERT INTO t3 VALUES(4937, 18378, 'eighteen thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(4938, 77605, 'seventy-seven thousand six hundred five');\nINSERT INTO t3 VALUES(4939, 49959, 'forty-nine thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(4940, 63338, 'sixty-three thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(4941, 44667, 'forty-four thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(4942, 80826, 'eighty thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(4943, 40813, 'forty thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(4944, 70472, 'seventy thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(4945, 58210, 'fifty-eight thousand two hundred ten');\nINSERT INTO t3 VALUES(4946, 39310, 'thirty-nine thousand three hundred ten');\nINSERT INTO t3 VALUES(4947, 51746, 'fifty-one thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(4948, 85335, 'eighty-five thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(4949, 77283, 'seventy-seven thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(4950, 84380, 'eighty-four thousand three hundred eighty');\nINSERT INTO t3 VALUES(4951, 50945, 'fifty thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(4952, 32624, 'thirty-two thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(4953, 37367, 'thirty-seven thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(4954, 34802, 'thirty-four thousand eight hundred two');\nINSERT INTO t3 VALUES(4955, 94202, 'ninety-four thousand two hundred two');\nINSERT INTO t3 VALUES(4956, 57492, 'fifty-seven thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(4957, 76334, 'seventy-six thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(4958, 50928, 'fifty thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(4959, 43286, 'forty-three thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(4960, 45969, 'forty-five thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(4961, 58281, 'fifty-eight thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(4962, 73053, 'seventy-three thousand fifty-three');\nINSERT INTO t3 VALUES(4963, 76339, 'seventy-six thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(4964, 99403, 'ninety-nine thousand four hundred three');\nINSERT INTO t3 VALUES(4965, 74862, 'seventy-four thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(4966, 33539, 'thirty-three thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(4967, 33275, 'thirty-three thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(4968, 91223, 'ninety-one thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(4969, 59855, 'fifty-nine thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(4970, 78539, 'seventy-eight thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(4971, 20838, 'twenty thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(4972, 96413, 'ninety-six thousand four hundred thirteen');\nINSERT INTO t3 VALUES(4973, 41297, 'forty-one thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(4974, 97134, 'ninety-seven thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(4975, 33788, 'thirty-three thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(4976, 18351, 'eighteen thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(4977, 45544, 'forty-five thousand five hundred forty-four');\nINSERT INTO t3 VALUES(4978, 95782, 'ninety-five thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(4979, 205, 'two hundred five');\nINSERT INTO t3 VALUES(4980, 37846, 'thirty-seven thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(4981, 31315, 'thirty-one thousand three hundred fifteen');\nINSERT INTO t3 VALUES(4982, 84818, 'eighty-four thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(4983, 3995, 'three thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(4984, 73963, 'seventy-three thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(4985, 26633, 'twenty-six thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(4986, 19891, 'nineteen thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(4987, 49856, 'forty-nine thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(4988, 69721, 'sixty-nine thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(4989, 43404, 'forty-three thousand four hundred four');\nINSERT INTO t3 VALUES(4990, 89304, 'eighty-nine thousand three hundred four');\nINSERT INTO t3 VALUES(4991, 21843, 'twenty-one thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(4992, 59798, 'fifty-nine thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(4993, 46883, 'forty-six thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(4994, 58019, 'fifty-eight thousand nineteen');\nINSERT INTO t3 VALUES(4995, 12747, 'twelve thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(4996, 82912, 'eighty-two thousand nine hundred twelve');\nINSERT INTO t3 VALUES(4997, 8586, 'eight thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(4998, 6723, 'six thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(4999, 85940, 'eighty-five thousand nine hundred forty');\nINSERT INTO t3 VALUES(5000, 66113, 'sixty-six thousand one hundred thirteen');\nINSERT INTO t3 VALUES(5001, 24322, 'twenty-four thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(5002, 8130, 'eight thousand one hundred thirty');\nINSERT INTO t3 VALUES(5003, 95971, 'ninety-five thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(5004, 14644, 'fourteen thousand six hundred forty-four');\nINSERT INTO t3 VALUES(5005, 37490, 'thirty-seven thousand four hundred ninety');\nINSERT INTO t3 VALUES(5006, 65844, 'sixty-five thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(5007, 84700, 'eighty-four thousand seven hundred');\nINSERT INTO t3 VALUES(5008, 10621, 'ten thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(5009, 80919, 'eighty thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(5010, 16642, 'sixteen thousand six hundred forty-two');\nINSERT INTO t3 VALUES(5011, 43103, 'forty-three thousand one hundred three');\nINSERT INTO t3 VALUES(5012, 25487, 'twenty-five thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(5013, 10485, 'ten thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(5014, 56375, 'fifty-six thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(5015, 10406, 'ten thousand four hundred six');\nINSERT INTO t3 VALUES(5016, 5808, 'five thousand eight hundred eight');\nINSERT INTO t3 VALUES(5017, 5514, 'five thousand five hundred fourteen');\nINSERT INTO t3 VALUES(5018, 90687, 'ninety thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(5019, 1775, 'one thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(5020, 68369, 'sixty-eight thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(5021, 69277, 'sixty-nine thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(5022, 25740, 'twenty-five thousand seven hundred forty');\nINSERT INTO t3 VALUES(5023, 78878, 'seventy-eight thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(5024, 83454, 'eighty-three thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(5025, 84490, 'eighty-four thousand four hundred ninety');\nINSERT INTO t3 VALUES(5026, 39202, 'thirty-nine thousand two hundred two');\nINSERT INTO t3 VALUES(5027, 53072, 'fifty-three thousand seventy-two');\nINSERT INTO t3 VALUES(5028, 824, 'eight hundred twenty-four');\nINSERT INTO t3 VALUES(5029, 35709, 'thirty-five thousand seven hundred nine');\nINSERT INTO t3 VALUES(5030, 6074, 'six thousand seventy-four');\nINSERT INTO t3 VALUES(5031, 2581, 'two thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(5032, 24809, 'twenty-four thousand eight hundred nine');\nINSERT INTO t3 VALUES(5033, 12970, 'twelve thousand nine hundred seventy');\nINSERT INTO t3 VALUES(5034, 79953, 'seventy-nine thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(5035, 42603, 'forty-two thousand six hundred three');\nINSERT INTO t3 VALUES(5036, 14562, 'fourteen thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(5037, 79746, 'seventy-nine thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(5038, 27403, 'twenty-seven thousand four hundred three');\nINSERT INTO t3 VALUES(5039, 16608, 'sixteen thousand six hundred eight');\nINSERT INTO t3 VALUES(5040, 92994, 'ninety-two thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(5041, 71370, 'seventy-one thousand three hundred seventy');\nINSERT INTO t3 VALUES(5042, 62781, 'sixty-two thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(5043, 39164, 'thirty-nine thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(5044, 55574, 'fifty-five thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(5045, 18066, 'eighteen thousand sixty-six');\nINSERT INTO t3 VALUES(5046, 26590, 'twenty-six thousand five hundred ninety');\nINSERT INTO t3 VALUES(5047, 22684, 'twenty-two thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(5048, 87821, 'eighty-seven thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(5049, 50642, 'fifty thousand six hundred forty-two');\nINSERT INTO t3 VALUES(5050, 69741, 'sixty-nine thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(5051, 98648, 'ninety-eight thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(5052, 99862, 'ninety-nine thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(5053, 58576, 'fifty-eight thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(5054, 69126, 'sixty-nine thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(5055, 73653, 'seventy-three thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(5056, 71722, 'seventy-one thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(5057, 2286, 'two thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(5058, 71000, 'seventy-one thousand');\nINSERT INTO t3 VALUES(5059, 79784, 'seventy-nine thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(5060, 82345, 'eighty-two thousand three hundred forty-five');\nINSERT INTO t3 VALUES(5061, 50878, 'fifty thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(5062, 55205, 'fifty-five thousand two hundred five');\nINSERT INTO t3 VALUES(5063, 60071, 'sixty thousand seventy-one');\nINSERT INTO t3 VALUES(5064, 11228, 'eleven thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(5065, 43608, 'forty-three thousand six hundred eight');\nINSERT INTO t3 VALUES(5066, 85486, 'eighty-five thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(5067, 37168, 'thirty-seven thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(5068, 60688, 'sixty thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(5069, 50678, 'fifty thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(5070, 61226, 'sixty-one thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(5071, 38096, 'thirty-eight thousand ninety-six');\nINSERT INTO t3 VALUES(5072, 72403, 'seventy-two thousand four hundred three');\nINSERT INTO t3 VALUES(5073, 40796, 'forty thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(5074, 60536, 'sixty thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(5075, 32704, 'thirty-two thousand seven hundred four');\nINSERT INTO t3 VALUES(5076, 82359, 'eighty-two thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(5077, 46989, 'forty-six thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(5078, 73857, 'seventy-three thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(5079, 65620, 'sixty-five thousand six hundred twenty');\nINSERT INTO t3 VALUES(5080, 13829, 'thirteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(5081, 48515, 'forty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(5082, 57684, 'fifty-seven thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(5083, 50132, 'fifty thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(5084, 41830, 'forty-one thousand eight hundred thirty');\nINSERT INTO t3 VALUES(5085, 78551, 'seventy-eight thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(5086, 27057, 'twenty-seven thousand fifty-seven');\nINSERT INTO t3 VALUES(5087, 21641, 'twenty-one thousand six hundred forty-one');\nINSERT INTO t3 VALUES(5088, 90341, 'ninety thousand three hundred forty-one');\nINSERT INTO t3 VALUES(5089, 411, 'four hundred eleven');\nINSERT INTO t3 VALUES(5090, 50736, 'fifty thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(5091, 85361, 'eighty-five thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(5092, 94252, 'ninety-four thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(5093, 8800, 'eight thousand eight hundred');\nINSERT INTO t3 VALUES(5094, 70026, 'seventy thousand twenty-six');\nINSERT INTO t3 VALUES(5095, 41483, 'forty-one thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(5096, 32335, 'thirty-two thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(5097, 38522, 'thirty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(5098, 55682, 'fifty-five thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(5099, 78728, 'seventy-eight thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(5100, 41736, 'forty-one thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(5101, 10910, 'ten thousand nine hundred ten');\nINSERT INTO t3 VALUES(5102, 22696, 'twenty-two thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(5103, 88552, 'eighty-eight thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(5104, 60685, 'sixty thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(5105, 5912, 'five thousand nine hundred twelve');\nINSERT INTO t3 VALUES(5106, 32618, 'thirty-two thousand six hundred eighteen');\nINSERT INTO t3 VALUES(5107, 75531, 'seventy-five thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(5108, 34889, 'thirty-four thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(5109, 86766, 'eighty-six thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(5110, 57996, 'fifty-seven thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(5111, 43065, 'forty-three thousand sixty-five');\nINSERT INTO t3 VALUES(5112, 26383, 'twenty-six thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(5113, 55552, 'fifty-five thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(5114, 36143, 'thirty-six thousand one hundred forty-three');\nINSERT INTO t3 VALUES(5115, 67325, 'sixty-seven thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(5116, 52968, 'fifty-two thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(5117, 9070, 'nine thousand seventy');\nINSERT INTO t3 VALUES(5118, 34720, 'thirty-four thousand seven hundred twenty');\nINSERT INTO t3 VALUES(5119, 30889, 'thirty thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(5120, 18379, 'eighteen thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(5121, 16918, 'sixteen thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(5122, 87570, 'eighty-seven thousand five hundred seventy');\nINSERT INTO t3 VALUES(5123, 22310, 'twenty-two thousand three hundred ten');\nINSERT INTO t3 VALUES(5124, 37344, 'thirty-seven thousand three hundred forty-four');\nINSERT INTO t3 VALUES(5125, 90795, 'ninety thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(5126, 6061, 'six thousand sixty-one');\nINSERT INTO t3 VALUES(5127, 66987, 'sixty-six thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(5128, 39779, 'thirty-nine thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(5129, 19394, 'nineteen thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(5130, 46010, 'forty-six thousand ten');\nINSERT INTO t3 VALUES(5131, 91488, 'ninety-one thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(5132, 66494, 'sixty-six thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(5133, 39525, 'thirty-nine thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(5134, 31382, 'thirty-one thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(5135, 3680, 'three thousand six hundred eighty');\nINSERT INTO t3 VALUES(5136, 95424, 'ninety-five thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(5137, 21679, 'twenty-one thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(5138, 39293, 'thirty-nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(5139, 3425, 'three thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(5140, 74006, 'seventy-four thousand six');\nINSERT INTO t3 VALUES(5141, 17009, 'seventeen thousand nine');\nINSERT INTO t3 VALUES(5142, 14475, 'fourteen thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(5143, 48520, 'forty-eight thousand five hundred twenty');\nINSERT INTO t3 VALUES(5144, 70568, 'seventy thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(5145, 24675, 'twenty-four thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(5146, 42895, 'forty-two thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(5147, 39865, 'thirty-nine thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(5148, 70375, 'seventy thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(5149, 75726, 'seventy-five thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(5150, 91335, 'ninety-one thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(5151, 26796, 'twenty-six thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(5152, 17408, 'seventeen thousand four hundred eight');\nINSERT INTO t3 VALUES(5153, 50712, 'fifty thousand seven hundred twelve');\nINSERT INTO t3 VALUES(5154, 48776, 'forty-eight thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(5155, 33845, 'thirty-three thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(5156, 87474, 'eighty-seven thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(5157, 32206, 'thirty-two thousand two hundred six');\nINSERT INTO t3 VALUES(5158, 65223, 'sixty-five thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(5159, 93682, 'ninety-three thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(5160, 35828, 'thirty-five thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(5161, 76847, 'seventy-six thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(5162, 14408, 'fourteen thousand four hundred eight');\nINSERT INTO t3 VALUES(5163, 93166, 'ninety-three thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(5164, 65629, 'sixty-five thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(5165, 75257, 'seventy-five thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(5166, 17025, 'seventeen thousand twenty-five');\nINSERT INTO t3 VALUES(5167, 19091, 'nineteen thousand ninety-one');\nINSERT INTO t3 VALUES(5168, 98046, 'ninety-eight thousand forty-six');\nINSERT INTO t3 VALUES(5169, 54254, 'fifty-four thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(5170, 81464, 'eighty-one thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(5171, 44732, 'forty-four thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(5172, 91734, 'ninety-one thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(5173, 47346, 'forty-seven thousand three hundred forty-six');\nINSERT INTO t3 VALUES(5174, 58097, 'fifty-eight thousand ninety-seven');\nINSERT INTO t3 VALUES(5175, 75380, 'seventy-five thousand three hundred eighty');\nINSERT INTO t3 VALUES(5176, 39555, 'thirty-nine thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(5177, 47373, 'forty-seven thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(5178, 64877, 'sixty-four thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(5179, 21348, 'twenty-one thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(5180, 36240, 'thirty-six thousand two hundred forty');\nINSERT INTO t3 VALUES(5181, 13435, 'thirteen thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(5182, 15048, 'fifteen thousand forty-eight');\nINSERT INTO t3 VALUES(5183, 77108, 'seventy-seven thousand one hundred eight');\nINSERT INTO t3 VALUES(5184, 25707, 'twenty-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(5185, 16716, 'sixteen thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(5186, 40386, 'forty thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(5187, 94386, 'ninety-four thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(5188, 61062, 'sixty-one thousand sixty-two');\nINSERT INTO t3 VALUES(5189, 32277, 'thirty-two thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(5190, 7382, 'seven thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(5191, 77969, 'seventy-seven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(5192, 97830, 'ninety-seven thousand eight hundred thirty');\nINSERT INTO t3 VALUES(5193, 44012, 'forty-four thousand twelve');\nINSERT INTO t3 VALUES(5194, 27865, 'twenty-seven thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(5195, 2111, 'two thousand one hundred eleven');\nINSERT INTO t3 VALUES(5196, 92151, 'ninety-two thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(5197, 33711, 'thirty-three thousand seven hundred eleven');\nINSERT INTO t3 VALUES(5198, 86673, 'eighty-six thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(5199, 32063, 'thirty-two thousand sixty-three');\nINSERT INTO t3 VALUES(5200, 58137, 'fifty-eight thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(5201, 26677, 'twenty-six thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(5202, 9393, 'nine thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(5203, 87719, 'eighty-seven thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(5204, 29921, 'twenty-nine thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(5205, 43815, 'forty-three thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(5206, 79022, 'seventy-nine thousand twenty-two');\nINSERT INTO t3 VALUES(5207, 49840, 'forty-nine thousand eight hundred forty');\nINSERT INTO t3 VALUES(5208, 71770, 'seventy-one thousand seven hundred seventy');\nINSERT INTO t3 VALUES(5209, 17187, 'seventeen thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(5210, 71694, 'seventy-one thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(5211, 26982, 'twenty-six thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(5212, 74211, 'seventy-four thousand two hundred eleven');\nINSERT INTO t3 VALUES(5213, 12564, 'twelve thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(5214, 62500, 'sixty-two thousand five hundred');\nINSERT INTO t3 VALUES(5215, 50541, 'fifty thousand five hundred forty-one');\nINSERT INTO t3 VALUES(5216, 19991, 'nineteen thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(5217, 13397, 'thirteen thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(5218, 44687, 'forty-four thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(5219, 70617, 'seventy thousand six hundred seventeen');\nINSERT INTO t3 VALUES(5220, 53581, 'fifty-three thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(5221, 18273, 'eighteen thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(5222, 20163, 'twenty thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(5223, 25076, 'twenty-five thousand seventy-six');\nINSERT INTO t3 VALUES(5224, 25315, 'twenty-five thousand three hundred fifteen');\nINSERT INTO t3 VALUES(5225, 63187, 'sixty-three thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(5226, 28879, 'twenty-eight thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(5227, 21950, 'twenty-one thousand nine hundred fifty');\nINSERT INTO t3 VALUES(5228, 19570, 'nineteen thousand five hundred seventy');\nINSERT INTO t3 VALUES(5229, 18020, 'eighteen thousand twenty');\nINSERT INTO t3 VALUES(5230, 56642, 'fifty-six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(5231, 31942, 'thirty-one thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(5232, 57754, 'fifty-seven thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(5233, 65107, 'sixty-five thousand one hundred seven');\nINSERT INTO t3 VALUES(5234, 895, 'eight hundred ninety-five');\nINSERT INTO t3 VALUES(5235, 42916, 'forty-two thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(5236, 77099, 'seventy-seven thousand ninety-nine');\nINSERT INTO t3 VALUES(5237, 30448, 'thirty thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(5238, 49991, 'forty-nine thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(5239, 39896, 'thirty-nine thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(5240, 9542, 'nine thousand five hundred forty-two');\nINSERT INTO t3 VALUES(5241, 20577, 'twenty thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(5242, 86435, 'eighty-six thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(5243, 30495, 'thirty thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(5244, 16327, 'sixteen thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(5245, 7357, 'seven thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(5246, 47431, 'forty-seven thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(5247, 53954, 'fifty-three thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(5248, 89868, 'eighty-nine thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(5249, 71608, 'seventy-one thousand six hundred eight');\nINSERT INTO t3 VALUES(5250, 77979, 'seventy-seven thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(5251, 53920, 'fifty-three thousand nine hundred twenty');\nINSERT INTO t3 VALUES(5252, 17102, 'seventeen thousand one hundred two');\nINSERT INTO t3 VALUES(5253, 41283, 'forty-one thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(5254, 14681, 'fourteen thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(5255, 36124, 'thirty-six thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(5256, 40148, 'forty thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(5257, 53118, 'fifty-three thousand one hundred eighteen');\nINSERT INTO t3 VALUES(5258, 98197, 'ninety-eight thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(5259, 13804, 'thirteen thousand eight hundred four');\nINSERT INTO t3 VALUES(5260, 90432, 'ninety thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(5261, 91215, 'ninety-one thousand two hundred fifteen');\nINSERT INTO t3 VALUES(5262, 67540, 'sixty-seven thousand five hundred forty');\nINSERT INTO t3 VALUES(5263, 94507, 'ninety-four thousand five hundred seven');\nINSERT INTO t3 VALUES(5264, 97665, 'ninety-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(5265, 27722, 'twenty-seven thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(5266, 5525, 'five thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(5267, 82660, 'eighty-two thousand six hundred sixty');\nINSERT INTO t3 VALUES(5268, 2493, 'two thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(5269, 57665, 'fifty-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(5270, 11447, 'eleven thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(5271, 50975, 'fifty thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(5272, 17031, 'seventeen thousand thirty-one');\nINSERT INTO t3 VALUES(5273, 46062, 'forty-six thousand sixty-two');\nINSERT INTO t3 VALUES(5274, 50788, 'fifty thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(5275, 66717, 'sixty-six thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(5276, 1022, 'one thousand twenty-two');\nINSERT INTO t3 VALUES(5277, 2084, 'two thousand eighty-four');\nINSERT INTO t3 VALUES(5278, 39473, 'thirty-nine thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(5279, 32962, 'thirty-two thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(5280, 3977, 'three thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(5281, 97842, 'ninety-seven thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(5282, 30254, 'thirty thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(5283, 50811, 'fifty thousand eight hundred eleven');\nINSERT INTO t3 VALUES(5284, 94204, 'ninety-four thousand two hundred four');\nINSERT INTO t3 VALUES(5285, 4950, 'four thousand nine hundred fifty');\nINSERT INTO t3 VALUES(5286, 89870, 'eighty-nine thousand eight hundred seventy');\nINSERT INTO t3 VALUES(5287, 40037, 'forty thousand thirty-seven');\nINSERT INTO t3 VALUES(5288, 33708, 'thirty-three thousand seven hundred eight');\nINSERT INTO t3 VALUES(5289, 33189, 'thirty-three thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(5290, 68296, 'sixty-eight thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(5291, 48145, 'forty-eight thousand one hundred forty-five');\nINSERT INTO t3 VALUES(5292, 70236, 'seventy thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(5293, 10543, 'ten thousand five hundred forty-three');\nINSERT INTO t3 VALUES(5294, 3280, 'three thousand two hundred eighty');\nINSERT INTO t3 VALUES(5295, 2050, 'two thousand fifty');\nINSERT INTO t3 VALUES(5296, 1989, 'one thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(5297, 1699, 'one thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(5298, 45121, 'forty-five thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(5299, 11781, 'eleven thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(5300, 48271, 'forty-eight thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(5301, 34294, 'thirty-four thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(5302, 52464, 'fifty-two thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(5303, 59753, 'fifty-nine thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(5304, 21853, 'twenty-one thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(5305, 83948, 'eighty-three thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(5306, 37917, 'thirty-seven thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(5307, 60546, 'sixty thousand five hundred forty-six');\nINSERT INTO t3 VALUES(5308, 79951, 'seventy-nine thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(5309, 36248, 'thirty-six thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(5310, 58113, 'fifty-eight thousand one hundred thirteen');\nINSERT INTO t3 VALUES(5311, 28184, 'twenty-eight thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(5312, 62196, 'sixty-two thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(5313, 87253, 'eighty-seven thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(5314, 28779, 'twenty-eight thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(5315, 61512, 'sixty-one thousand five hundred twelve');\nINSERT INTO t3 VALUES(5316, 57415, 'fifty-seven thousand four hundred fifteen');\nINSERT INTO t3 VALUES(5317, 45644, 'forty-five thousand six hundred forty-four');\nINSERT INTO t3 VALUES(5318, 73594, 'seventy-three thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(5319, 34783, 'thirty-four thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(5320, 47691, 'forty-seven thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(5321, 56864, 'fifty-six thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(5322, 48701, 'forty-eight thousand seven hundred one');\nINSERT INTO t3 VALUES(5323, 43437, 'forty-three thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(5324, 49428, 'forty-nine thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(5325, 69435, 'sixty-nine thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(5326, 73541, 'seventy-three thousand five hundred forty-one');\nINSERT INTO t3 VALUES(5327, 12359, 'twelve thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(5328, 1215, 'one thousand two hundred fifteen');\nINSERT INTO t3 VALUES(5329, 98618, 'ninety-eight thousand six hundred eighteen');\nINSERT INTO t3 VALUES(5330, 79937, 'seventy-nine thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(5331, 7028, 'seven thousand twenty-eight');\nINSERT INTO t3 VALUES(5332, 98602, 'ninety-eight thousand six hundred two');\nINSERT INTO t3 VALUES(5333, 8295, 'eight thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(5334, 244, 'two hundred forty-four');\nINSERT INTO t3 VALUES(5335, 76684, 'seventy-six thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(5336, 42986, 'forty-two thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(5337, 28285, 'twenty-eight thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(5338, 825, 'eight hundred twenty-five');\nINSERT INTO t3 VALUES(5339, 37649, 'thirty-seven thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(5340, 88441, 'eighty-eight thousand four hundred forty-one');\nINSERT INTO t3 VALUES(5341, 71026, 'seventy-one thousand twenty-six');\nINSERT INTO t3 VALUES(5342, 45722, 'forty-five thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(5343, 52700, 'fifty-two thousand seven hundred');\nINSERT INTO t3 VALUES(5344, 95810, 'ninety-five thousand eight hundred ten');\nINSERT INTO t3 VALUES(5345, 71403, 'seventy-one thousand four hundred three');\nINSERT INTO t3 VALUES(5346, 51049, 'fifty-one thousand forty-nine');\nINSERT INTO t3 VALUES(5347, 92748, 'ninety-two thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(5348, 26485, 'twenty-six thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(5349, 87979, 'eighty-seven thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(5350, 91638, 'ninety-one thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(5351, 46457, 'forty-six thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(5352, 78445, 'seventy-eight thousand four hundred forty-five');\nINSERT INTO t3 VALUES(5353, 20075, 'twenty thousand seventy-five');\nINSERT INTO t3 VALUES(5354, 26129, 'twenty-six thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(5355, 57156, 'fifty-seven thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(5356, 21719, 'twenty-one thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(5357, 92302, 'ninety-two thousand three hundred two');\nINSERT INTO t3 VALUES(5358, 96496, 'ninety-six thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(5359, 38411, 'thirty-eight thousand four hundred eleven');\nINSERT INTO t3 VALUES(5360, 37527, 'thirty-seven thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(5361, 15257, 'fifteen thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(5362, 25022, 'twenty-five thousand twenty-two');\nINSERT INTO t3 VALUES(5363, 72624, 'seventy-two thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(5364, 66452, 'sixty-six thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(5365, 10082, 'ten thousand eighty-two');\nINSERT INTO t3 VALUES(5366, 90308, 'ninety thousand three hundred eight');\nINSERT INTO t3 VALUES(5367, 68128, 'sixty-eight thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(5368, 51238, 'fifty-one thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(5369, 38205, 'thirty-eight thousand two hundred five');\nINSERT INTO t3 VALUES(5370, 67480, 'sixty-seven thousand four hundred eighty');\nINSERT INTO t3 VALUES(5371, 54011, 'fifty-four thousand eleven');\nINSERT INTO t3 VALUES(5372, 25348, 'twenty-five thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(5373, 43677, 'forty-three thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(5374, 56860, 'fifty-six thousand eight hundred sixty');\nINSERT INTO t3 VALUES(5375, 10271, 'ten thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(5376, 23037, 'twenty-three thousand thirty-seven');\nINSERT INTO t3 VALUES(5377, 31953, 'thirty-one thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(5378, 84851, 'eighty-four thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(5379, 49435, 'forty-nine thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(5380, 3206, 'three thousand two hundred six');\nINSERT INTO t3 VALUES(5381, 97808, 'ninety-seven thousand eight hundred eight');\nINSERT INTO t3 VALUES(5382, 92760, 'ninety-two thousand seven hundred sixty');\nINSERT INTO t3 VALUES(5383, 35161, 'thirty-five thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(5384, 8021, 'eight thousand twenty-one');\nINSERT INTO t3 VALUES(5385, 75268, 'seventy-five thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(5386, 14597, 'fourteen thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(5387, 10226, 'ten thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(5388, 31482, 'thirty-one thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(5389, 33459, 'thirty-three thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(5390, 1548, 'one thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(5391, 52926, 'fifty-two thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(5392, 97575, 'ninety-seven thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(5393, 33592, 'thirty-three thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(5394, 62051, 'sixty-two thousand fifty-one');\nINSERT INTO t3 VALUES(5395, 81323, 'eighty-one thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(5396, 88375, 'eighty-eight thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(5397, 90966, 'ninety thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(5398, 7711, 'seven thousand seven hundred eleven');\nINSERT INTO t3 VALUES(5399, 50960, 'fifty thousand nine hundred sixty');\nINSERT INTO t3 VALUES(5400, 36562, 'thirty-six thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(5401, 72692, 'seventy-two thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(5402, 77801, 'seventy-seven thousand eight hundred one');\nINSERT INTO t3 VALUES(5403, 86674, 'eighty-six thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(5404, 80050, 'eighty thousand fifty');\nINSERT INTO t3 VALUES(5405, 96921, 'ninety-six thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(5406, 29254, 'twenty-nine thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(5407, 61762, 'sixty-one thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(5408, 9411, 'nine thousand four hundred eleven');\nINSERT INTO t3 VALUES(5409, 28873, 'twenty-eight thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(5410, 89536, 'eighty-nine thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(5411, 26799, 'twenty-six thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(5412, 65291, 'sixty-five thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(5413, 32381, 'thirty-two thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(5414, 83702, 'eighty-three thousand seven hundred two');\nINSERT INTO t3 VALUES(5415, 12798, 'twelve thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(5416, 98114, 'ninety-eight thousand one hundred fourteen');\nINSERT INTO t3 VALUES(5417, 66905, 'sixty-six thousand nine hundred five');\nINSERT INTO t3 VALUES(5418, 84363, 'eighty-four thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(5419, 50152, 'fifty thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(5420, 26278, 'twenty-six thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(5421, 78363, 'seventy-eight thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(5422, 73720, 'seventy-three thousand seven hundred twenty');\nINSERT INTO t3 VALUES(5423, 33986, 'thirty-three thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(5424, 56758, 'fifty-six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(5425, 71785, 'seventy-one thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(5426, 56643, 'fifty-six thousand six hundred forty-three');\nINSERT INTO t3 VALUES(5427, 60454, 'sixty thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(5428, 34441, 'thirty-four thousand four hundred forty-one');\nINSERT INTO t3 VALUES(5429, 56989, 'fifty-six thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(5430, 89730, 'eighty-nine thousand seven hundred thirty');\nINSERT INTO t3 VALUES(5431, 50716, 'fifty thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(5432, 57336, 'fifty-seven thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(5433, 99140, 'ninety-nine thousand one hundred forty');\nINSERT INTO t3 VALUES(5434, 98878, 'ninety-eight thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(5435, 22004, 'twenty-two thousand four');\nINSERT INTO t3 VALUES(5436, 88567, 'eighty-eight thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(5437, 30064, 'thirty thousand sixty-four');\nINSERT INTO t3 VALUES(5438, 68263, 'sixty-eight thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(5439, 76177, 'seventy-six thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(5440, 33737, 'thirty-three thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(5441, 90124, 'ninety thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(5442, 61053, 'sixty-one thousand fifty-three');\nINSERT INTO t3 VALUES(5443, 91682, 'ninety-one thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(5444, 73299, 'seventy-three thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(5445, 23952, 'twenty-three thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(5446, 51457, 'fifty-one thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(5447, 85838, 'eighty-five thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(5448, 96053, 'ninety-six thousand fifty-three');\nINSERT INTO t3 VALUES(5449, 24583, 'twenty-four thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(5450, 61000, 'sixty-one thousand');\nINSERT INTO t3 VALUES(5451, 83701, 'eighty-three thousand seven hundred one');\nINSERT INTO t3 VALUES(5452, 60602, 'sixty thousand six hundred two');\nINSERT INTO t3 VALUES(5453, 10405, 'ten thousand four hundred five');\nINSERT INTO t3 VALUES(5454, 39446, 'thirty-nine thousand four hundred forty-six');\nINSERT INTO t3 VALUES(5455, 70187, 'seventy thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(5456, 3063, 'three thousand sixty-three');\nINSERT INTO t3 VALUES(5457, 68077, 'sixty-eight thousand seventy-seven');\nINSERT INTO t3 VALUES(5458, 14049, 'fourteen thousand forty-nine');\nINSERT INTO t3 VALUES(5459, 38397, 'thirty-eight thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(5460, 73473, 'seventy-three thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(5461, 23258, 'twenty-three thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(5462, 72720, 'seventy-two thousand seven hundred twenty');\nINSERT INTO t3 VALUES(5463, 97742, 'ninety-seven thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(5464, 60375, 'sixty thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(5465, 9858, 'nine thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(5466, 72274, 'seventy-two thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(5467, 7760, 'seven thousand seven hundred sixty');\nINSERT INTO t3 VALUES(5468, 51690, 'fifty-one thousand six hundred ninety');\nINSERT INTO t3 VALUES(5469, 87650, 'eighty-seven thousand six hundred fifty');\nINSERT INTO t3 VALUES(5470, 4724, 'four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(5471, 42255, 'forty-two thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(5472, 66310, 'sixty-six thousand three hundred ten');\nINSERT INTO t3 VALUES(5473, 1321, 'one thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(5474, 98609, 'ninety-eight thousand six hundred nine');\nINSERT INTO t3 VALUES(5475, 28262, 'twenty-eight thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(5476, 50470, 'fifty thousand four hundred seventy');\nINSERT INTO t3 VALUES(5477, 58119, 'fifty-eight thousand one hundred nineteen');\nINSERT INTO t3 VALUES(5478, 90226, 'ninety thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(5479, 94146, 'ninety-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(5480, 55638, 'fifty-five thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(5481, 13318, 'thirteen thousand three hundred eighteen');\nINSERT INTO t3 VALUES(5482, 72427, 'seventy-two thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(5483, 56061, 'fifty-six thousand sixty-one');\nINSERT INTO t3 VALUES(5484, 12825, 'twelve thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(5485, 31526, 'thirty-one thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(5486, 16040, 'sixteen thousand forty');\nINSERT INTO t3 VALUES(5487, 31595, 'thirty-one thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(5488, 87455, 'eighty-seven thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(5489, 87796, 'eighty-seven thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(5490, 98415, 'ninety-eight thousand four hundred fifteen');\nINSERT INTO t3 VALUES(5491, 34125, 'thirty-four thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(5492, 28284, 'twenty-eight thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(5493, 79619, 'seventy-nine thousand six hundred nineteen');\nINSERT INTO t3 VALUES(5494, 84179, 'eighty-four thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(5495, 9543, 'nine thousand five hundred forty-three');\nINSERT INTO t3 VALUES(5496, 65201, 'sixty-five thousand two hundred one');\nINSERT INTO t3 VALUES(5497, 83926, 'eighty-three thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(5498, 81078, 'eighty-one thousand seventy-eight');\nINSERT INTO t3 VALUES(5499, 4308, 'four thousand three hundred eight');\nINSERT INTO t3 VALUES(5500, 3702, 'three thousand seven hundred two');\nINSERT INTO t3 VALUES(5501, 25311, 'twenty-five thousand three hundred eleven');\nINSERT INTO t3 VALUES(5502, 8663, 'eight thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(5503, 3981, 'three thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(5504, 97794, 'ninety-seven thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(5505, 68196, 'sixty-eight thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(5506, 26957, 'twenty-six thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(5507, 47667, 'forty-seven thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(5508, 3065, 'three thousand sixty-five');\nINSERT INTO t3 VALUES(5509, 81399, 'eighty-one thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(5510, 81906, 'eighty-one thousand nine hundred six');\nINSERT INTO t3 VALUES(5511, 21399, 'twenty-one thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(5512, 28441, 'twenty-eight thousand four hundred forty-one');\nINSERT INTO t3 VALUES(5513, 59836, 'fifty-nine thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(5514, 89341, 'eighty-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(5515, 40958, 'forty thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(5516, 7744, 'seven thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(5517, 62732, 'sixty-two thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(5518, 25056, 'twenty-five thousand fifty-six');\nINSERT INTO t3 VALUES(5519, 73818, 'seventy-three thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(5520, 35370, 'thirty-five thousand three hundred seventy');\nINSERT INTO t3 VALUES(5521, 42020, 'forty-two thousand twenty');\nINSERT INTO t3 VALUES(5522, 72596, 'seventy-two thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(5523, 23649, 'twenty-three thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(5524, 94298, 'ninety-four thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(5525, 81324, 'eighty-one thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(5526, 95626, 'ninety-five thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(5527, 61068, 'sixty-one thousand sixty-eight');\nINSERT INTO t3 VALUES(5528, 45707, 'forty-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(5529, 4377, 'four thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(5530, 41483, 'forty-one thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(5531, 18560, 'eighteen thousand five hundred sixty');\nINSERT INTO t3 VALUES(5532, 27875, 'twenty-seven thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(5533, 40865, 'forty thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(5534, 6151, 'six thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(5535, 70521, 'seventy thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(5536, 6130, 'six thousand one hundred thirty');\nINSERT INTO t3 VALUES(5537, 1706, 'one thousand seven hundred six');\nINSERT INTO t3 VALUES(5538, 43403, 'forty-three thousand four hundred three');\nINSERT INTO t3 VALUES(5539, 97125, 'ninety-seven thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(5540, 18306, 'eighteen thousand three hundred six');\nINSERT INTO t3 VALUES(5541, 11958, 'eleven thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(5542, 90373, 'ninety thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(5543, 11233, 'eleven thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(5544, 97197, 'ninety-seven thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(5545, 99475, 'ninety-nine thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(5546, 33390, 'thirty-three thousand three hundred ninety');\nINSERT INTO t3 VALUES(5547, 44377, 'forty-four thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(5548, 1956, 'one thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(5549, 57641, 'fifty-seven thousand six hundred forty-one');\nINSERT INTO t3 VALUES(5550, 63739, 'sixty-three thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(5551, 31748, 'thirty-one thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(5552, 51667, 'fifty-one thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(5553, 1485, 'one thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(5554, 60430, 'sixty thousand four hundred thirty');\nINSERT INTO t3 VALUES(5555, 29723, 'twenty-nine thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(5556, 5253, 'five thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(5557, 98521, 'ninety-eight thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(5558, 18462, 'eighteen thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(5559, 58784, 'fifty-eight thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(5560, 9436, 'nine thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(5561, 75146, 'seventy-five thousand one hundred forty-six');\nINSERT INTO t3 VALUES(5562, 84907, 'eighty-four thousand nine hundred seven');\nINSERT INTO t3 VALUES(5563, 6703, 'six thousand seven hundred three');\nINSERT INTO t3 VALUES(5564, 27166, 'twenty-seven thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(5565, 79805, 'seventy-nine thousand eight hundred five');\nINSERT INTO t3 VALUES(5566, 2271, 'two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(5567, 814, 'eight hundred fourteen');\nINSERT INTO t3 VALUES(5568, 76791, 'seventy-six thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(5569, 41445, 'forty-one thousand four hundred forty-five');\nINSERT INTO t3 VALUES(5570, 67739, 'sixty-seven thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(5571, 40762, 'forty thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(5572, 49147, 'forty-nine thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(5573, 68749, 'sixty-eight thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(5574, 24410, 'twenty-four thousand four hundred ten');\nINSERT INTO t3 VALUES(5575, 45029, 'forty-five thousand twenty-nine');\nINSERT INTO t3 VALUES(5576, 33054, 'thirty-three thousand fifty-four');\nINSERT INTO t3 VALUES(5577, 71189, 'seventy-one thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(5578, 26073, 'twenty-six thousand seventy-three');\nINSERT INTO t3 VALUES(5579, 43701, 'forty-three thousand seven hundred one');\nINSERT INTO t3 VALUES(5580, 32492, 'thirty-two thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(5581, 15974, 'fifteen thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(5582, 29783, 'twenty-nine thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(5583, 83848, 'eighty-three thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(5584, 38891, 'thirty-eight thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(5585, 10825, 'ten thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(5586, 67744, 'sixty-seven thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(5587, 18754, 'eighteen thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(5588, 96347, 'ninety-six thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(5589, 65423, 'sixty-five thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(5590, 1812, 'one thousand eight hundred twelve');\nINSERT INTO t3 VALUES(5591, 11898, 'eleven thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(5592, 37945, 'thirty-seven thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(5593, 62917, 'sixty-two thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(5594, 26111, 'twenty-six thousand one hundred eleven');\nINSERT INTO t3 VALUES(5595, 52307, 'fifty-two thousand three hundred seven');\nINSERT INTO t3 VALUES(5596, 83623, 'eighty-three thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(5597, 90761, 'ninety thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(5598, 1138, 'one thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(5599, 31338, 'thirty-one thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(5600, 38653, 'thirty-eight thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(5601, 64253, 'sixty-four thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(5602, 73954, 'seventy-three thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(5603, 10868, 'ten thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(5604, 69293, 'sixty-nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(5605, 36958, 'thirty-six thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(5606, 25181, 'twenty-five thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(5607, 8429, 'eight thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(5608, 30458, 'thirty thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(5609, 34904, 'thirty-four thousand nine hundred four');\nINSERT INTO t3 VALUES(5610, 46150, 'forty-six thousand one hundred fifty');\nINSERT INTO t3 VALUES(5611, 68186, 'sixty-eight thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(5612, 28662, 'twenty-eight thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(5613, 15540, 'fifteen thousand five hundred forty');\nINSERT INTO t3 VALUES(5614, 67848, 'sixty-seven thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(5615, 85163, 'eighty-five thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(5616, 89170, 'eighty-nine thousand one hundred seventy');\nINSERT INTO t3 VALUES(5617, 62467, 'sixty-two thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(5618, 43081, 'forty-three thousand eighty-one');\nINSERT INTO t3 VALUES(5619, 95296, 'ninety-five thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(5620, 68397, 'sixty-eight thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(5621, 99406, 'ninety-nine thousand four hundred six');\nINSERT INTO t3 VALUES(5622, 10050, 'ten thousand fifty');\nINSERT INTO t3 VALUES(5623, 79849, 'seventy-nine thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(5624, 34661, 'thirty-four thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(5625, 72438, 'seventy-two thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(5626, 52913, 'fifty-two thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(5627, 76994, 'seventy-six thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(5628, 77064, 'seventy-seven thousand sixty-four');\nINSERT INTO t3 VALUES(5629, 52451, 'fifty-two thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(5630, 68828, 'sixty-eight thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(5631, 31392, 'thirty-one thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(5632, 20532, 'twenty thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(5633, 69844, 'sixty-nine thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(5634, 13805, 'thirteen thousand eight hundred five');\nINSERT INTO t3 VALUES(5635, 47939, 'forty-seven thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(5636, 83289, 'eighty-three thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(5637, 66895, 'sixty-six thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(5638, 38344, 'thirty-eight thousand three hundred forty-four');\nINSERT INTO t3 VALUES(5639, 18734, 'eighteen thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(5640, 73413, 'seventy-three thousand four hundred thirteen');\nINSERT INTO t3 VALUES(5641, 29702, 'twenty-nine thousand seven hundred two');\nINSERT INTO t3 VALUES(5642, 35329, 'thirty-five thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(5643, 76505, 'seventy-six thousand five hundred five');\nINSERT INTO t3 VALUES(5644, 52903, 'fifty-two thousand nine hundred three');\nINSERT INTO t3 VALUES(5645, 47645, 'forty-seven thousand six hundred forty-five');\nINSERT INTO t3 VALUES(5646, 52273, 'fifty-two thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(5647, 78414, 'seventy-eight thousand four hundred fourteen');\nINSERT INTO t3 VALUES(5648, 68376, 'sixty-eight thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(5649, 9173, 'nine thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(5650, 22863, 'twenty-two thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(5651, 75193, 'seventy-five thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(5652, 71623, 'seventy-one thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(5653, 5613, 'five thousand six hundred thirteen');\nINSERT INTO t3 VALUES(5654, 97606, 'ninety-seven thousand six hundred six');\nINSERT INTO t3 VALUES(5655, 32971, 'thirty-two thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(5656, 8357, 'eight thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(5657, 13702, 'thirteen thousand seven hundred two');\nINSERT INTO t3 VALUES(5658, 15368, 'fifteen thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(5659, 0, 'zero');\nINSERT INTO t3 VALUES(5660, 9272, 'nine thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(5661, 38762, 'thirty-eight thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(5662, 46510, 'forty-six thousand five hundred ten');\nINSERT INTO t3 VALUES(5663, 59925, 'fifty-nine thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(5664, 55025, 'fifty-five thousand twenty-five');\nINSERT INTO t3 VALUES(5665, 9341, 'nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(5666, 6423, 'six thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(5667, 34717, 'thirty-four thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(5668, 71495, 'seventy-one thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(5669, 62372, 'sixty-two thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(5670, 44839, 'forty-four thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(5671, 33771, 'thirty-three thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(5672, 83481, 'eighty-three thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(5673, 64572, 'sixty-four thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(5674, 6422, 'six thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(5675, 660, 'six hundred sixty');\nINSERT INTO t3 VALUES(5676, 42167, 'forty-two thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(5677, 2714, 'two thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(5678, 26872, 'twenty-six thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(5679, 37913, 'thirty-seven thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(5680, 52935, 'fifty-two thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(5681, 85784, 'eighty-five thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(5682, 4393, 'four thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(5683, 34709, 'thirty-four thousand seven hundred nine');\nINSERT INTO t3 VALUES(5684, 63511, 'sixty-three thousand five hundred eleven');\nINSERT INTO t3 VALUES(5685, 59152, 'fifty-nine thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(5686, 17749, 'seventeen thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(5687, 19838, 'nineteen thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(5688, 57184, 'fifty-seven thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(5689, 76478, 'seventy-six thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(5690, 29167, 'twenty-nine thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(5691, 20600, 'twenty thousand six hundred');\nINSERT INTO t3 VALUES(5692, 96537, 'ninety-six thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(5693, 89189, 'eighty-nine thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(5694, 49690, 'forty-nine thousand six hundred ninety');\nINSERT INTO t3 VALUES(5695, 10691, 'ten thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(5696, 64497, 'sixty-four thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(5697, 67310, 'sixty-seven thousand three hundred ten');\nINSERT INTO t3 VALUES(5698, 94114, 'ninety-four thousand one hundred fourteen');\nINSERT INTO t3 VALUES(5699, 12674, 'twelve thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(5700, 90653, 'ninety thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(5701, 53064, 'fifty-three thousand sixty-four');\nINSERT INTO t3 VALUES(5702, 61561, 'sixty-one thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(5703, 34023, 'thirty-four thousand twenty-three');\nINSERT INTO t3 VALUES(5704, 96895, 'ninety-six thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(5705, 41013, 'forty-one thousand thirteen');\nINSERT INTO t3 VALUES(5706, 90944, 'ninety thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(5707, 49251, 'forty-nine thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(5708, 4227, 'four thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(5709, 4355, 'four thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(5710, 70217, 'seventy thousand two hundred seventeen');\nINSERT INTO t3 VALUES(5711, 11124, 'eleven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(5712, 85891, 'eighty-five thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(5713, 47594, 'forty-seven thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(5714, 13720, 'thirteen thousand seven hundred twenty');\nINSERT INTO t3 VALUES(5715, 82368, 'eighty-two thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(5716, 14558, 'fourteen thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(5717, 93849, 'ninety-three thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(5718, 38932, 'thirty-eight thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(5719, 46889, 'forty-six thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(5720, 55006, 'fifty-five thousand six');\nINSERT INTO t3 VALUES(5721, 21140, 'twenty-one thousand one hundred forty');\nINSERT INTO t3 VALUES(5722, 59249, 'fifty-nine thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(5723, 77145, 'seventy-seven thousand one hundred forty-five');\nINSERT INTO t3 VALUES(5724, 61334, 'sixty-one thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(5725, 57733, 'fifty-seven thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(5726, 8850, 'eight thousand eight hundred fifty');\nINSERT INTO t3 VALUES(5727, 11080, 'eleven thousand eighty');\nINSERT INTO t3 VALUES(5728, 87756, 'eighty-seven thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(5729, 82982, 'eighty-two thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(5730, 31389, 'thirty-one thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(5731, 99295, 'ninety-nine thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(5732, 67086, 'sixty-seven thousand eighty-six');\nINSERT INTO t3 VALUES(5733, 25913, 'twenty-five thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(5734, 53918, 'fifty-three thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(5735, 77500, 'seventy-seven thousand five hundred');\nINSERT INTO t3 VALUES(5736, 51047, 'fifty-one thousand forty-seven');\nINSERT INTO t3 VALUES(5737, 79250, 'seventy-nine thousand two hundred fifty');\nINSERT INTO t3 VALUES(5738, 68652, 'sixty-eight thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(5739, 78012, 'seventy-eight thousand twelve');\nINSERT INTO t3 VALUES(5740, 34673, 'thirty-four thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(5741, 40693, 'forty thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(5742, 32195, 'thirty-two thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(5743, 53934, 'fifty-three thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(5744, 52285, 'fifty-two thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(5745, 99119, 'ninety-nine thousand one hundred nineteen');\nINSERT INTO t3 VALUES(5746, 32439, 'thirty-two thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(5747, 67246, 'sixty-seven thousand two hundred forty-six');\nINSERT INTO t3 VALUES(5748, 29120, 'twenty-nine thousand one hundred twenty');\nINSERT INTO t3 VALUES(5749, 58397, 'fifty-eight thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(5750, 71563, 'seventy-one thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(5751, 10636, 'ten thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(5752, 50880, 'fifty thousand eight hundred eighty');\nINSERT INTO t3 VALUES(5753, 97776, 'ninety-seven thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(5754, 21325, 'twenty-one thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(5755, 96183, 'ninety-six thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(5756, 61992, 'sixty-one thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(5757, 13919, 'thirteen thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(5758, 78709, 'seventy-eight thousand seven hundred nine');\nINSERT INTO t3 VALUES(5759, 17924, 'seventeen thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(5760, 40616, 'forty thousand six hundred sixteen');\nINSERT INTO t3 VALUES(5761, 30345, 'thirty thousand three hundred forty-five');\nINSERT INTO t3 VALUES(5762, 38964, 'thirty-eight thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(5763, 2773, 'two thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(5764, 3421, 'three thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(5765, 81825, 'eighty-one thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(5766, 68110, 'sixty-eight thousand one hundred ten');\nINSERT INTO t3 VALUES(5767, 65071, 'sixty-five thousand seventy-one');\nINSERT INTO t3 VALUES(5768, 49628, 'forty-nine thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(5769, 84981, 'eighty-four thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(5770, 94146, 'ninety-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(5771, 93659, 'ninety-three thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(5772, 64318, 'sixty-four thousand three hundred eighteen');\nINSERT INTO t3 VALUES(5773, 31828, 'thirty-one thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(5774, 85160, 'eighty-five thousand one hundred sixty');\nINSERT INTO t3 VALUES(5775, 49836, 'forty-nine thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(5776, 3678, 'three thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(5777, 19652, 'nineteen thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(5778, 7761, 'seven thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(5779, 74211, 'seventy-four thousand two hundred eleven');\nINSERT INTO t3 VALUES(5780, 71500, 'seventy-one thousand five hundred');\nINSERT INTO t3 VALUES(5781, 11908, 'eleven thousand nine hundred eight');\nINSERT INTO t3 VALUES(5782, 66743, 'sixty-six thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(5783, 49898, 'forty-nine thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(5784, 44882, 'forty-four thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(5785, 85537, 'eighty-five thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(5786, 6114, 'six thousand one hundred fourteen');\nINSERT INTO t3 VALUES(5787, 64709, 'sixty-four thousand seven hundred nine');\nINSERT INTO t3 VALUES(5788, 41330, 'forty-one thousand three hundred thirty');\nINSERT INTO t3 VALUES(5789, 51927, 'fifty-one thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(5790, 48156, 'forty-eight thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(5791, 44608, 'forty-four thousand six hundred eight');\nINSERT INTO t3 VALUES(5792, 43763, 'forty-three thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(5793, 94748, 'ninety-four thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(5794, 68301, 'sixty-eight thousand three hundred one');\nINSERT INTO t3 VALUES(5795, 44960, 'forty-four thousand nine hundred sixty');\nINSERT INTO t3 VALUES(5796, 25732, 'twenty-five thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(5797, 30041, 'thirty thousand forty-one');\nINSERT INTO t3 VALUES(5798, 36695, 'thirty-six thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(5799, 14301, 'fourteen thousand three hundred one');\nINSERT INTO t3 VALUES(5800, 31040, 'thirty-one thousand forty');\nINSERT INTO t3 VALUES(5801, 62023, 'sixty-two thousand twenty-three');\nINSERT INTO t3 VALUES(5802, 70438, 'seventy thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(5803, 47811, 'forty-seven thousand eight hundred eleven');\nINSERT INTO t3 VALUES(5804, 1153, 'one thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(5805, 70381, 'seventy thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(5806, 7936, 'seven thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(5807, 47176, 'forty-seven thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(5808, 16829, 'sixteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(5809, 40046, 'forty thousand forty-six');\nINSERT INTO t3 VALUES(5810, 74002, 'seventy-four thousand two');\nINSERT INTO t3 VALUES(5811, 88807, 'eighty-eight thousand eight hundred seven');\nINSERT INTO t3 VALUES(5812, 59044, 'fifty-nine thousand forty-four');\nINSERT INTO t3 VALUES(5813, 92143, 'ninety-two thousand one hundred forty-three');\nINSERT INTO t3 VALUES(5814, 37754, 'thirty-seven thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(5815, 94083, 'ninety-four thousand eighty-three');\nINSERT INTO t3 VALUES(5816, 15225, 'fifteen thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(5817, 55810, 'fifty-five thousand eight hundred ten');\nINSERT INTO t3 VALUES(5818, 71616, 'seventy-one thousand six hundred sixteen');\nINSERT INTO t3 VALUES(5819, 91356, 'ninety-one thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(5820, 18545, 'eighteen thousand five hundred forty-five');\nINSERT INTO t3 VALUES(5821, 16659, 'sixteen thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(5822, 88311, 'eighty-eight thousand three hundred eleven');\nINSERT INTO t3 VALUES(5823, 77535, 'seventy-seven thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(5824, 89952, 'eighty-nine thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(5825, 72542, 'seventy-two thousand five hundred forty-two');\nINSERT INTO t3 VALUES(5826, 33741, 'thirty-three thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(5827, 96591, 'ninety-six thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(5828, 99834, 'ninety-nine thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(5829, 65183, 'sixty-five thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(5830, 90140, 'ninety thousand one hundred forty');\nINSERT INTO t3 VALUES(5831, 55515, 'fifty-five thousand five hundred fifteen');\nINSERT INTO t3 VALUES(5832, 45151, 'forty-five thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(5833, 27098, 'twenty-seven thousand ninety-eight');\nINSERT INTO t3 VALUES(5834, 52417, 'fifty-two thousand four hundred seventeen');\nINSERT INTO t3 VALUES(5835, 56437, 'fifty-six thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(5836, 6983, 'six thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(5837, 65299, 'sixty-five thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(5838, 61929, 'sixty-one thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(5839, 96824, 'ninety-six thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(5840, 31520, 'thirty-one thousand five hundred twenty');\nINSERT INTO t3 VALUES(5841, 7751, 'seven thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(5842, 48850, 'forty-eight thousand eight hundred fifty');\nINSERT INTO t3 VALUES(5843, 7669, 'seven thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(5844, 61495, 'sixty-one thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(5845, 33480, 'thirty-three thousand four hundred eighty');\nINSERT INTO t3 VALUES(5846, 92299, 'ninety-two thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(5847, 83539, 'eighty-three thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(5848, 83700, 'eighty-three thousand seven hundred');\nINSERT INTO t3 VALUES(5849, 34720, 'thirty-four thousand seven hundred twenty');\nINSERT INTO t3 VALUES(5850, 56299, 'fifty-six thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(5851, 73157, 'seventy-three thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(5852, 113, 'one hundred thirteen');\nINSERT INTO t3 VALUES(5853, 99472, 'ninety-nine thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(5854, 35740, 'thirty-five thousand seven hundred forty');\nINSERT INTO t3 VALUES(5855, 37123, 'thirty-seven thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(5856, 56894, 'fifty-six thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(5857, 28628, 'twenty-eight thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(5858, 97994, 'ninety-seven thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(5859, 60818, 'sixty thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(5860, 32606, 'thirty-two thousand six hundred six');\nINSERT INTO t3 VALUES(5861, 66357, 'sixty-six thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(5862, 31200, 'thirty-one thousand two hundred');\nINSERT INTO t3 VALUES(5863, 83780, 'eighty-three thousand seven hundred eighty');\nINSERT INTO t3 VALUES(5864, 37285, 'thirty-seven thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(5865, 84952, 'eighty-four thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(5866, 5673, 'five thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(5867, 88758, 'eighty-eight thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(5868, 15934, 'fifteen thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(5869, 94157, 'ninety-four thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(5870, 97029, 'ninety-seven thousand twenty-nine');\nINSERT INTO t3 VALUES(5871, 22195, 'twenty-two thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(5872, 16194, 'sixteen thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(5873, 11696, 'eleven thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(5874, 8538, 'eight thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(5875, 40134, 'forty thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(5876, 41631, 'forty-one thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(5877, 5585, 'five thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(5878, 16249, 'sixteen thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(5879, 60546, 'sixty thousand five hundred forty-six');\nINSERT INTO t3 VALUES(5880, 61229, 'sixty-one thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(5881, 46172, 'forty-six thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(5882, 48601, 'forty-eight thousand six hundred one');\nINSERT INTO t3 VALUES(5883, 78108, 'seventy-eight thousand one hundred eight');\nINSERT INTO t3 VALUES(5884, 85412, 'eighty-five thousand four hundred twelve');\nINSERT INTO t3 VALUES(5885, 76313, 'seventy-six thousand three hundred thirteen');\nINSERT INTO t3 VALUES(5886, 32664, 'thirty-two thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(5887, 96577, 'ninety-six thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(5888, 33471, 'thirty-three thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(5889, 13233, 'thirteen thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(5890, 7834, 'seven thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(5891, 36432, 'thirty-six thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(5892, 57676, 'fifty-seven thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(5893, 95348, 'ninety-five thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(5894, 51577, 'fifty-one thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(5895, 6095, 'six thousand ninety-five');\nINSERT INTO t3 VALUES(5896, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t3 VALUES(5897, 10000, 'ten thousand');\nINSERT INTO t3 VALUES(5898, 20221, 'twenty thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(5899, 80668, 'eighty thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(5900, 98258, 'ninety-eight thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(5901, 7951, 'seven thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(5902, 4674, 'four thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(5903, 51365, 'fifty-one thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(5904, 5441, 'five thousand four hundred forty-one');\nINSERT INTO t3 VALUES(5905, 78262, 'seventy-eight thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(5906, 35317, 'thirty-five thousand three hundred seventeen');\nINSERT INTO t3 VALUES(5907, 92374, 'ninety-two thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(5908, 6797, 'six thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(5909, 16025, 'sixteen thousand twenty-five');\nINSERT INTO t3 VALUES(5910, 80500, 'eighty thousand five hundred');\nINSERT INTO t3 VALUES(5911, 49666, 'forty-nine thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(5912, 27602, 'twenty-seven thousand six hundred two');\nINSERT INTO t3 VALUES(5913, 79360, 'seventy-nine thousand three hundred sixty');\nINSERT INTO t3 VALUES(5914, 57957, 'fifty-seven thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(5915, 49298, 'forty-nine thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(5916, 36372, 'thirty-six thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(5917, 42100, 'forty-two thousand one hundred');\nINSERT INTO t3 VALUES(5918, 97612, 'ninety-seven thousand six hundred twelve');\nINSERT INTO t3 VALUES(5919, 81689, 'eighty-one thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(5920, 90813, 'ninety thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(5921, 89285, 'eighty-nine thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(5922, 69042, 'sixty-nine thousand forty-two');\nINSERT INTO t3 VALUES(5923, 8290, 'eight thousand two hundred ninety');\nINSERT INTO t3 VALUES(5924, 84675, 'eighty-four thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(5925, 46719, 'forty-six thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(5926, 52118, 'fifty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(5927, 12792, 'twelve thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(5928, 43253, 'forty-three thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(5929, 93656, 'ninety-three thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(5930, 6350, 'six thousand three hundred fifty');\nINSERT INTO t3 VALUES(5931, 9873, 'nine thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(5932, 40829, 'forty thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(5933, 23687, 'twenty-three thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(5934, 84640, 'eighty-four thousand six hundred forty');\nINSERT INTO t3 VALUES(5935, 8003, 'eight thousand three');\nINSERT INTO t3 VALUES(5936, 33545, 'thirty-three thousand five hundred forty-five');\nINSERT INTO t3 VALUES(5937, 10342, 'ten thousand three hundred forty-two');\nINSERT INTO t3 VALUES(5938, 50592, 'fifty thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(5939, 96339, 'ninety-six thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(5940, 42938, 'forty-two thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(5941, 45882, 'forty-five thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(5942, 12284, 'twelve thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(5943, 39289, 'thirty-nine thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(5944, 51979, 'fifty-one thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(5945, 54256, 'fifty-four thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(5946, 11595, 'eleven thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(5947, 34923, 'thirty-four thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(5948, 3290, 'three thousand two hundred ninety');\nINSERT INTO t3 VALUES(5949, 77175, 'seventy-seven thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(5950, 41067, 'forty-one thousand sixty-seven');\nINSERT INTO t3 VALUES(5951, 74802, 'seventy-four thousand eight hundred two');\nINSERT INTO t3 VALUES(5952, 46936, 'forty-six thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(5953, 89141, 'eighty-nine thousand one hundred forty-one');\nINSERT INTO t3 VALUES(5954, 33920, 'thirty-three thousand nine hundred twenty');\nINSERT INTO t3 VALUES(5955, 83400, 'eighty-three thousand four hundred');\nINSERT INTO t3 VALUES(5956, 36079, 'thirty-six thousand seventy-nine');\nINSERT INTO t3 VALUES(5957, 67718, 'sixty-seven thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(5958, 10320, 'ten thousand three hundred twenty');\nINSERT INTO t3 VALUES(5959, 24947, 'twenty-four thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(5960, 91063, 'ninety-one thousand sixty-three');\nINSERT INTO t3 VALUES(5961, 49594, 'forty-nine thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(5962, 6485, 'six thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(5963, 50921, 'fifty thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(5964, 52281, 'fifty-two thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(5965, 22198, 'twenty-two thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(5966, 10588, 'ten thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(5967, 61308, 'sixty-one thousand three hundred eight');\nINSERT INTO t3 VALUES(5968, 58529, 'fifty-eight thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(5969, 4380, 'four thousand three hundred eighty');\nINSERT INTO t3 VALUES(5970, 63363, 'sixty-three thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(5971, 29841, 'twenty-nine thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(5972, 4359, 'four thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(5973, 22187, 'twenty-two thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(5974, 5382, 'five thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(5975, 33673, 'thirty-three thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(5976, 66926, 'sixty-six thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(5977, 43729, 'forty-three thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(5978, 51857, 'fifty-one thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(5979, 5973, 'five thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(5980, 48347, 'forty-eight thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(5981, 49285, 'forty-nine thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(5982, 46546, 'forty-six thousand five hundred forty-six');\nINSERT INTO t3 VALUES(5983, 27825, 'twenty-seven thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(5984, 44198, 'forty-four thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(5985, 60686, 'sixty thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(5986, 4840, 'four thousand eight hundred forty');\nINSERT INTO t3 VALUES(5987, 50882, 'fifty thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(5988, 59679, 'fifty-nine thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(5989, 49542, 'forty-nine thousand five hundred forty-two');\nINSERT INTO t3 VALUES(5990, 35414, 'thirty-five thousand four hundred fourteen');\nINSERT INTO t3 VALUES(5991, 70416, 'seventy thousand four hundred sixteen');\nINSERT INTO t3 VALUES(5992, 94475, 'ninety-four thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(5993, 16106, 'sixteen thousand one hundred six');\nINSERT INTO t3 VALUES(5994, 8453, 'eight thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(5995, 98273, 'ninety-eight thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(5996, 29797, 'twenty-nine thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(5997, 68834, 'sixty-eight thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(5998, 89478, 'eighty-nine thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(5999, 54162, 'fifty-four thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(6000, 24008, 'twenty-four thousand eight');\nINSERT INTO t3 VALUES(6001, 2307, 'two thousand three hundred seven');\nINSERT INTO t3 VALUES(6002, 34992, 'thirty-four thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(6003, 36018, 'thirty-six thousand eighteen');\nINSERT INTO t3 VALUES(6004, 29374, 'twenty-nine thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(6005, 52748, 'fifty-two thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(6006, 53521, 'fifty-three thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(6007, 74448, 'seventy-four thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(6008, 61693, 'sixty-one thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(6009, 35803, 'thirty-five thousand eight hundred three');\nINSERT INTO t3 VALUES(6010, 80114, 'eighty thousand one hundred fourteen');\nINSERT INTO t3 VALUES(6011, 28576, 'twenty-eight thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(6012, 30343, 'thirty thousand three hundred forty-three');\nINSERT INTO t3 VALUES(6013, 55580, 'fifty-five thousand five hundred eighty');\nINSERT INTO t3 VALUES(6014, 46399, 'forty-six thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(6015, 17631, 'seventeen thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(6016, 83831, 'eighty-three thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(6017, 85809, 'eighty-five thousand eight hundred nine');\nINSERT INTO t3 VALUES(6018, 70343, 'seventy thousand three hundred forty-three');\nINSERT INTO t3 VALUES(6019, 10277, 'ten thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(6020, 22823, 'twenty-two thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(6021, 16339, 'sixteen thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(6022, 29104, 'twenty-nine thousand one hundred four');\nINSERT INTO t3 VALUES(6023, 19441, 'nineteen thousand four hundred forty-one');\nINSERT INTO t3 VALUES(6024, 67324, 'sixty-seven thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(6025, 94375, 'ninety-four thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(6026, 24698, 'twenty-four thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(6027, 23410, 'twenty-three thousand four hundred ten');\nINSERT INTO t3 VALUES(6028, 65611, 'sixty-five thousand six hundred eleven');\nINSERT INTO t3 VALUES(6029, 79272, 'seventy-nine thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(6030, 4992, 'four thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(6031, 72564, 'seventy-two thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(6032, 48448, 'forty-eight thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(6033, 62748, 'sixty-two thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(6034, 43446, 'forty-three thousand four hundred forty-six');\nINSERT INTO t3 VALUES(6035, 44380, 'forty-four thousand three hundred eighty');\nINSERT INTO t3 VALUES(6036, 94157, 'ninety-four thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(6037, 92069, 'ninety-two thousand sixty-nine');\nINSERT INTO t3 VALUES(6038, 17669, 'seventeen thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(6039, 60076, 'sixty thousand seventy-six');\nINSERT INTO t3 VALUES(6040, 6630, 'six thousand six hundred thirty');\nINSERT INTO t3 VALUES(6041, 86668, 'eighty-six thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(6042, 31435, 'thirty-one thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(6043, 41854, 'forty-one thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(6044, 88936, 'eighty-eight thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(6045, 72159, 'seventy-two thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(6046, 77692, 'seventy-seven thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(6047, 45804, 'forty-five thousand eight hundred four');\nINSERT INTO t3 VALUES(6048, 94112, 'ninety-four thousand one hundred twelve');\nINSERT INTO t3 VALUES(6049, 42870, 'forty-two thousand eight hundred seventy');\nINSERT INTO t3 VALUES(6050, 63661, 'sixty-three thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(6051, 58049, 'fifty-eight thousand forty-nine');\nINSERT INTO t3 VALUES(6052, 6206, 'six thousand two hundred six');\nINSERT INTO t3 VALUES(6053, 43765, 'forty-three thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(6054, 3409, 'three thousand four hundred nine');\nINSERT INTO t3 VALUES(6055, 93390, 'ninety-three thousand three hundred ninety');\nINSERT INTO t3 VALUES(6056, 47959, 'forty-seven thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(6057, 47920, 'forty-seven thousand nine hundred twenty');\nINSERT INTO t3 VALUES(6058, 35000, 'thirty-five thousand');\nINSERT INTO t3 VALUES(6059, 72544, 'seventy-two thousand five hundred forty-four');\nINSERT INTO t3 VALUES(6060, 53087, 'fifty-three thousand eighty-seven');\nINSERT INTO t3 VALUES(6061, 51653, 'fifty-one thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(6062, 56876, 'fifty-six thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(6063, 53639, 'fifty-three thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(6064, 58465, 'fifty-eight thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(6065, 44217, 'forty-four thousand two hundred seventeen');\nINSERT INTO t3 VALUES(6066, 95345, 'ninety-five thousand three hundred forty-five');\nINSERT INTO t3 VALUES(6067, 11098, 'eleven thousand ninety-eight');\nINSERT INTO t3 VALUES(6068, 35005, 'thirty-five thousand five');\nINSERT INTO t3 VALUES(6069, 16216, 'sixteen thousand two hundred sixteen');\nINSERT INTO t3 VALUES(6070, 78812, 'seventy-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(6071, 50748, 'fifty thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(6072, 63169, 'sixty-three thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(6073, 83759, 'eighty-three thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(6074, 17745, 'seventeen thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(6075, 94833, 'ninety-four thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(6076, 10059, 'ten thousand fifty-nine');\nINSERT INTO t3 VALUES(6077, 42643, 'forty-two thousand six hundred forty-three');\nINSERT INTO t3 VALUES(6078, 77637, 'seventy-seven thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(6079, 8609, 'eight thousand six hundred nine');\nINSERT INTO t3 VALUES(6080, 11434, 'eleven thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(6081, 11045, 'eleven thousand forty-five');\nINSERT INTO t3 VALUES(6082, 31353, 'thirty-one thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(6083, 7984, 'seven thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(6084, 68189, 'sixty-eight thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(6085, 91516, 'ninety-one thousand five hundred sixteen');\nINSERT INTO t3 VALUES(6086, 50204, 'fifty thousand two hundred four');\nINSERT INTO t3 VALUES(6087, 54992, 'fifty-four thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(6088, 77329, 'seventy-seven thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(6089, 32968, 'thirty-two thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(6090, 63719, 'sixty-three thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(6091, 47702, 'forty-seven thousand seven hundred two');\nINSERT INTO t3 VALUES(6092, 52202, 'fifty-two thousand two hundred two');\nINSERT INTO t3 VALUES(6093, 59382, 'fifty-nine thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(6094, 59392, 'fifty-nine thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(6095, 81186, 'eighty-one thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(6096, 18689, 'eighteen thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(6097, 69433, 'sixty-nine thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(6098, 128, 'one hundred twenty-eight');\nINSERT INTO t3 VALUES(6099, 65627, 'sixty-five thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(6100, 23807, 'twenty-three thousand eight hundred seven');\nINSERT INTO t3 VALUES(6101, 43212, 'forty-three thousand two hundred twelve');\nINSERT INTO t3 VALUES(6102, 84247, 'eighty-four thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(6103, 10001, 'ten thousand one');\nINSERT INTO t3 VALUES(6104, 22817, 'twenty-two thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(6105, 10416, 'ten thousand four hundred sixteen');\nINSERT INTO t3 VALUES(6106, 46219, 'forty-six thousand two hundred nineteen');\nINSERT INTO t3 VALUES(6107, 4292, 'four thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(6108, 74762, 'seventy-four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(6109, 89807, 'eighty-nine thousand eight hundred seven');\nINSERT INTO t3 VALUES(6110, 87879, 'eighty-seven thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(6111, 48862, 'forty-eight thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(6112, 2206, 'two thousand two hundred six');\nINSERT INTO t3 VALUES(6113, 49516, 'forty-nine thousand five hundred sixteen');\nINSERT INTO t3 VALUES(6114, 22374, 'twenty-two thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(6115, 47633, 'forty-seven thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(6116, 12390, 'twelve thousand three hundred ninety');\nINSERT INTO t3 VALUES(6117, 18380, 'eighteen thousand three hundred eighty');\nINSERT INTO t3 VALUES(6118, 31722, 'thirty-one thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(6119, 756, 'seven hundred fifty-six');\nINSERT INTO t3 VALUES(6120, 73346, 'seventy-three thousand three hundred forty-six');\nINSERT INTO t3 VALUES(6121, 33008, 'thirty-three thousand eight');\nINSERT INTO t3 VALUES(6122, 18081, 'eighteen thousand eighty-one');\nINSERT INTO t3 VALUES(6123, 79796, 'seventy-nine thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(6124, 28515, 'twenty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(6125, 48112, 'forty-eight thousand one hundred twelve');\nINSERT INTO t3 VALUES(6126, 90871, 'ninety thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(6127, 98029, 'ninety-eight thousand twenty-nine');\nINSERT INTO t3 VALUES(6128, 66186, 'sixty-six thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(6129, 91369, 'ninety-one thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(6130, 99314, 'ninety-nine thousand three hundred fourteen');\nINSERT INTO t3 VALUES(6131, 71977, 'seventy-one thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(6132, 9013, 'nine thousand thirteen');\nINSERT INTO t3 VALUES(6133, 9356, 'nine thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(6134, 76414, 'seventy-six thousand four hundred fourteen');\nINSERT INTO t3 VALUES(6135, 4478, 'four thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(6136, 35494, 'thirty-five thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(6137, 91433, 'ninety-one thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(6138, 94822, 'ninety-four thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(6139, 22465, 'twenty-two thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(6140, 4709, 'four thousand seven hundred nine');\nINSERT INTO t3 VALUES(6141, 60301, 'sixty thousand three hundred one');\nINSERT INTO t3 VALUES(6142, 58405, 'fifty-eight thousand four hundred five');\nINSERT INTO t3 VALUES(6143, 86106, 'eighty-six thousand one hundred six');\nINSERT INTO t3 VALUES(6144, 30029, 'thirty thousand twenty-nine');\nINSERT INTO t3 VALUES(6145, 29208, 'twenty-nine thousand two hundred eight');\nINSERT INTO t3 VALUES(6146, 78173, 'seventy-eight thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(6147, 53904, 'fifty-three thousand nine hundred four');\nINSERT INTO t3 VALUES(6148, 69034, 'sixty-nine thousand thirty-four');\nINSERT INTO t3 VALUES(6149, 1334, 'one thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(6150, 34209, 'thirty-four thousand two hundred nine');\nINSERT INTO t3 VALUES(6151, 79540, 'seventy-nine thousand five hundred forty');\nINSERT INTO t3 VALUES(6152, 95094, 'ninety-five thousand ninety-four');\nINSERT INTO t3 VALUES(6153, 13212, 'thirteen thousand two hundred twelve');\nINSERT INTO t3 VALUES(6154, 5923, 'five thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(6155, 86512, 'eighty-six thousand five hundred twelve');\nINSERT INTO t3 VALUES(6156, 75022, 'seventy-five thousand twenty-two');\nINSERT INTO t3 VALUES(6157, 6507, 'six thousand five hundred seven');\nINSERT INTO t3 VALUES(6158, 61442, 'sixty-one thousand four hundred forty-two');\nINSERT INTO t3 VALUES(6159, 59715, 'fifty-nine thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(6160, 25916, 'twenty-five thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(6161, 64017, 'sixty-four thousand seventeen');\nINSERT INTO t3 VALUES(6162, 31489, 'thirty-one thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(6163, 83785, 'eighty-three thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(6164, 49350, 'forty-nine thousand three hundred fifty');\nINSERT INTO t3 VALUES(6165, 20536, 'twenty thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(6166, 17509, 'seventeen thousand five hundred nine');\nINSERT INTO t3 VALUES(6167, 74261, 'seventy-four thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(6168, 55840, 'fifty-five thousand eight hundred forty');\nINSERT INTO t3 VALUES(6169, 77248, 'seventy-seven thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(6170, 58492, 'fifty-eight thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(6171, 27708, 'twenty-seven thousand seven hundred eight');\nINSERT INTO t3 VALUES(6172, 69359, 'sixty-nine thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(6173, 76926, 'seventy-six thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(6174, 24775, 'twenty-four thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(6175, 58389, 'fifty-eight thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(6176, 11163, 'eleven thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(6177, 69285, 'sixty-nine thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(6178, 54425, 'fifty-four thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(6179, 30885, 'thirty thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(6180, 32422, 'thirty-two thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(6181, 60603, 'sixty thousand six hundred three');\nINSERT INTO t3 VALUES(6182, 20336, 'twenty thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(6183, 19036, 'nineteen thousand thirty-six');\nINSERT INTO t3 VALUES(6184, 5828, 'five thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(6185, 92610, 'ninety-two thousand six hundred ten');\nINSERT INTO t3 VALUES(6186, 18058, 'eighteen thousand fifty-eight');\nINSERT INTO t3 VALUES(6187, 12805, 'twelve thousand eight hundred five');\nINSERT INTO t3 VALUES(6188, 38273, 'thirty-eight thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(6189, 18651, 'eighteen thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(6190, 70334, 'seventy thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(6191, 52816, 'fifty-two thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(6192, 39924, 'thirty-nine thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(6193, 61332, 'sixty-one thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(6194, 79356, 'seventy-nine thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(6195, 91286, 'ninety-one thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(6196, 69651, 'sixty-nine thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(6197, 13648, 'thirteen thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(6198, 51180, 'fifty-one thousand one hundred eighty');\nINSERT INTO t3 VALUES(6199, 55062, 'fifty-five thousand sixty-two');\nINSERT INTO t3 VALUES(6200, 4308, 'four thousand three hundred eight');\nINSERT INTO t3 VALUES(6201, 15057, 'fifteen thousand fifty-seven');\nINSERT INTO t3 VALUES(6202, 47894, 'forty-seven thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(6203, 10893, 'ten thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(6204, 87226, 'eighty-seven thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(6205, 85207, 'eighty-five thousand two hundred seven');\nINSERT INTO t3 VALUES(6206, 43006, 'forty-three thousand six');\nINSERT INTO t3 VALUES(6207, 54781, 'fifty-four thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(6208, 65498, 'sixty-five thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(6209, 85704, 'eighty-five thousand seven hundred four');\nINSERT INTO t3 VALUES(6210, 53787, 'fifty-three thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(6211, 77261, 'seventy-seven thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(6212, 18604, 'eighteen thousand six hundred four');\nINSERT INTO t3 VALUES(6213, 40460, 'forty thousand four hundred sixty');\nINSERT INTO t3 VALUES(6214, 18314, 'eighteen thousand three hundred fourteen');\nINSERT INTO t3 VALUES(6215, 26310, 'twenty-six thousand three hundred ten');\nINSERT INTO t3 VALUES(6216, 2686, 'two thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(6217, 38087, 'thirty-eight thousand eighty-seven');\nINSERT INTO t3 VALUES(6218, 69619, 'sixty-nine thousand six hundred nineteen');\nINSERT INTO t3 VALUES(6219, 26013, 'twenty-six thousand thirteen');\nINSERT INTO t3 VALUES(6220, 50610, 'fifty thousand six hundred ten');\nINSERT INTO t3 VALUES(6221, 85714, 'eighty-five thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(6222, 23353, 'twenty-three thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(6223, 62157, 'sixty-two thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(6224, 37591, 'thirty-seven thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(6225, 78047, 'seventy-eight thousand forty-seven');\nINSERT INTO t3 VALUES(6226, 62726, 'sixty-two thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(6227, 60641, 'sixty thousand six hundred forty-one');\nINSERT INTO t3 VALUES(6228, 97825, 'ninety-seven thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(6229, 2607, 'two thousand six hundred seven');\nINSERT INTO t3 VALUES(6230, 8014, 'eight thousand fourteen');\nINSERT INTO t3 VALUES(6231, 46466, 'forty-six thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(6232, 57806, 'fifty-seven thousand eight hundred six');\nINSERT INTO t3 VALUES(6233, 23166, 'twenty-three thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(6234, 92280, 'ninety-two thousand two hundred eighty');\nINSERT INTO t3 VALUES(6235, 27927, 'twenty-seven thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(6236, 25297, 'twenty-five thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(6237, 43535, 'forty-three thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(6238, 63253, 'sixty-three thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(6239, 69290, 'sixty-nine thousand two hundred ninety');\nINSERT INTO t3 VALUES(6240, 63322, 'sixty-three thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(6241, 464, 'four hundred sixty-four');\nINSERT INTO t3 VALUES(6242, 50530, 'fifty thousand five hundred thirty');\nINSERT INTO t3 VALUES(6243, 74350, 'seventy-four thousand three hundred fifty');\nINSERT INTO t3 VALUES(6244, 17144, 'seventeen thousand one hundred forty-four');\nINSERT INTO t3 VALUES(6245, 44542, 'forty-four thousand five hundred forty-two');\nINSERT INTO t3 VALUES(6246, 99653, 'ninety-nine thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(6247, 86525, 'eighty-six thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(6248, 42008, 'forty-two thousand eight');\nINSERT INTO t3 VALUES(6249, 15948, 'fifteen thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(6250, 74661, 'seventy-four thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(6251, 77191, 'seventy-seven thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(6252, 60985, 'sixty thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(6253, 3124, 'three thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(6254, 19478, 'nineteen thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(6255, 33284, 'thirty-three thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(6256, 29071, 'twenty-nine thousand seventy-one');\nINSERT INTO t3 VALUES(6257, 71597, 'seventy-one thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(6258, 28837, 'twenty-eight thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(6259, 80589, 'eighty thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(6260, 39642, 'thirty-nine thousand six hundred forty-two');\nINSERT INTO t3 VALUES(6261, 1625, 'one thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(6262, 27144, 'twenty-seven thousand one hundred forty-four');\nINSERT INTO t3 VALUES(6263, 45420, 'forty-five thousand four hundred twenty');\nINSERT INTO t3 VALUES(6264, 40640, 'forty thousand six hundred forty');\nINSERT INTO t3 VALUES(6265, 28218, 'twenty-eight thousand two hundred eighteen');\nINSERT INTO t3 VALUES(6266, 15926, 'fifteen thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(6267, 5943, 'five thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(6268, 13862, 'thirteen thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(6269, 45206, 'forty-five thousand two hundred six');\nINSERT INTO t3 VALUES(6270, 17061, 'seventeen thousand sixty-one');\nINSERT INTO t3 VALUES(6271, 75997, 'seventy-five thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(6272, 79348, 'seventy-nine thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(6273, 67597, 'sixty-seven thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(6274, 98651, 'ninety-eight thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(6275, 13566, 'thirteen thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(6276, 61555, 'sixty-one thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(6277, 14152, 'fourteen thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(6278, 39931, 'thirty-nine thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(6279, 63366, 'sixty-three thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(6280, 38078, 'thirty-eight thousand seventy-eight');\nINSERT INTO t3 VALUES(6281, 63552, 'sixty-three thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(6282, 24355, 'twenty-four thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(6283, 76778, 'seventy-six thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(6284, 37704, 'thirty-seven thousand seven hundred four');\nINSERT INTO t3 VALUES(6285, 67452, 'sixty-seven thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(6286, 10168, 'ten thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(6287, 40233, 'forty thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(6288, 57993, 'fifty-seven thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(6289, 44453, 'forty-four thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(6290, 45171, 'forty-five thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(6291, 98533, 'ninety-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(6292, 64136, 'sixty-four thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(6293, 17545, 'seventeen thousand five hundred forty-five');\nINSERT INTO t3 VALUES(6294, 34776, 'thirty-four thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(6295, 44914, 'forty-four thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(6296, 2385, 'two thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(6297, 3427, 'three thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(6298, 90251, 'ninety thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(6299, 48179, 'forty-eight thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(6300, 23545, 'twenty-three thousand five hundred forty-five');\nINSERT INTO t3 VALUES(6301, 91963, 'ninety-one thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(6302, 36205, 'thirty-six thousand two hundred five');\nINSERT INTO t3 VALUES(6303, 39435, 'thirty-nine thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(6304, 29800, 'twenty-nine thousand eight hundred');\nINSERT INTO t3 VALUES(6305, 96509, 'ninety-six thousand five hundred nine');\nINSERT INTO t3 VALUES(6306, 57204, 'fifty-seven thousand two hundred four');\nINSERT INTO t3 VALUES(6307, 79563, 'seventy-nine thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(6308, 80867, 'eighty thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(6309, 45072, 'forty-five thousand seventy-two');\nINSERT INTO t3 VALUES(6310, 65593, 'sixty-five thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(6311, 80577, 'eighty thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(6312, 70703, 'seventy thousand seven hundred three');\nINSERT INTO t3 VALUES(6313, 55931, 'fifty-five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(6314, 81354, 'eighty-one thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(6315, 91349, 'ninety-one thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(6316, 48785, 'forty-eight thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(6317, 34562, 'thirty-four thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(6318, 22034, 'twenty-two thousand thirty-four');\nINSERT INTO t3 VALUES(6319, 69561, 'sixty-nine thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(6320, 13635, 'thirteen thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(6321, 37105, 'thirty-seven thousand one hundred five');\nINSERT INTO t3 VALUES(6322, 78774, 'seventy-eight thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(6323, 75724, 'seventy-five thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(6324, 70917, 'seventy thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(6325, 7787, 'seven thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(6326, 92398, 'ninety-two thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(6327, 11381, 'eleven thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(6328, 75170, 'seventy-five thousand one hundred seventy');\nINSERT INTO t3 VALUES(6329, 28232, 'twenty-eight thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(6330, 90797, 'ninety thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(6331, 47540, 'forty-seven thousand five hundred forty');\nINSERT INTO t3 VALUES(6332, 663, 'six hundred sixty-three');\nINSERT INTO t3 VALUES(6333, 33441, 'thirty-three thousand four hundred forty-one');\nINSERT INTO t3 VALUES(6334, 13129, 'thirteen thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(6335, 16111, 'sixteen thousand one hundred eleven');\nINSERT INTO t3 VALUES(6336, 80935, 'eighty thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(6337, 36369, 'thirty-six thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(6338, 2929, 'two thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(6339, 42061, 'forty-two thousand sixty-one');\nINSERT INTO t3 VALUES(6340, 14756, 'fourteen thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(6341, 36945, 'thirty-six thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(6342, 45863, 'forty-five thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(6343, 49551, 'forty-nine thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(6344, 81406, 'eighty-one thousand four hundred six');\nINSERT INTO t3 VALUES(6345, 33015, 'thirty-three thousand fifteen');\nINSERT INTO t3 VALUES(6346, 89048, 'eighty-nine thousand forty-eight');\nINSERT INTO t3 VALUES(6347, 85800, 'eighty-five thousand eight hundred');\nINSERT INTO t3 VALUES(6348, 56357, 'fifty-six thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(6349, 60330, 'sixty thousand three hundred thirty');\nINSERT INTO t3 VALUES(6350, 59368, 'fifty-nine thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(6351, 7116, 'seven thousand one hundred sixteen');\nINSERT INTO t3 VALUES(6352, 51716, 'fifty-one thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(6353, 30310, 'thirty thousand three hundred ten');\nINSERT INTO t3 VALUES(6354, 97685, 'ninety-seven thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(6355, 10474, 'ten thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(6356, 10999, 'ten thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(6357, 83964, 'eighty-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(6358, 41674, 'forty-one thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(6359, 58272, 'fifty-eight thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(6360, 30137, 'thirty thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(6361, 58812, 'fifty-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(6362, 25428, 'twenty-five thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(6363, 969, 'nine hundred sixty-nine');\nINSERT INTO t3 VALUES(6364, 78111, 'seventy-eight thousand one hundred eleven');\nINSERT INTO t3 VALUES(6365, 36351, 'thirty-six thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(6366, 83450, 'eighty-three thousand four hundred fifty');\nINSERT INTO t3 VALUES(6367, 37254, 'thirty-seven thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(6368, 31765, 'thirty-one thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(6369, 35840, 'thirty-five thousand eight hundred forty');\nINSERT INTO t3 VALUES(6370, 86235, 'eighty-six thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(6371, 46187, 'forty-six thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(6372, 98450, 'ninety-eight thousand four hundred fifty');\nINSERT INTO t3 VALUES(6373, 36362, 'thirty-six thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(6374, 29935, 'twenty-nine thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(6375, 44612, 'forty-four thousand six hundred twelve');\nINSERT INTO t3 VALUES(6376, 29621, 'twenty-nine thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(6377, 53245, 'fifty-three thousand two hundred forty-five');\nINSERT INTO t3 VALUES(6378, 50150, 'fifty thousand one hundred fifty');\nINSERT INTO t3 VALUES(6379, 55048, 'fifty-five thousand forty-eight');\nINSERT INTO t3 VALUES(6380, 86635, 'eighty-six thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(6381, 22673, 'twenty-two thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(6382, 67513, 'sixty-seven thousand five hundred thirteen');\nINSERT INTO t3 VALUES(6383, 11322, 'eleven thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(6384, 81429, 'eighty-one thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(6385, 77694, 'seventy-seven thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(6386, 26955, 'twenty-six thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(6387, 50624, 'fifty thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(6388, 88337, 'eighty-eight thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(6389, 74642, 'seventy-four thousand six hundred forty-two');\nINSERT INTO t3 VALUES(6390, 25409, 'twenty-five thousand four hundred nine');\nINSERT INTO t3 VALUES(6391, 85246, 'eighty-five thousand two hundred forty-six');\nINSERT INTO t3 VALUES(6392, 39308, 'thirty-nine thousand three hundred eight');\nINSERT INTO t3 VALUES(6393, 88919, 'eighty-eight thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(6394, 53281, 'fifty-three thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(6395, 98267, 'ninety-eight thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(6396, 94201, 'ninety-four thousand two hundred one');\nINSERT INTO t3 VALUES(6397, 21657, 'twenty-one thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(6398, 94999, 'ninety-four thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(6399, 88766, 'eighty-eight thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(6400, 31558, 'thirty-one thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(6401, 54436, 'fifty-four thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(6402, 2398, 'two thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(6403, 78834, 'seventy-eight thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(6404, 31629, 'thirty-one thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(6405, 84925, 'eighty-four thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(6406, 39224, 'thirty-nine thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(6407, 46854, 'forty-six thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(6408, 85988, 'eighty-five thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(6409, 96730, 'ninety-six thousand seven hundred thirty');\nINSERT INTO t3 VALUES(6410, 81985, 'eighty-one thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(6411, 28446, 'twenty-eight thousand four hundred forty-six');\nINSERT INTO t3 VALUES(6412, 92945, 'ninety-two thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(6413, 42122, 'forty-two thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(6414, 84171, 'eighty-four thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(6415, 23582, 'twenty-three thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(6416, 32564, 'thirty-two thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(6417, 34568, 'thirty-four thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(6418, 84656, 'eighty-four thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(6419, 48291, 'forty-eight thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(6420, 87243, 'eighty-seven thousand two hundred forty-three');\nINSERT INTO t3 VALUES(6421, 50125, 'fifty thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(6422, 90477, 'ninety thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(6423, 36164, 'thirty-six thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(6424, 23696, 'twenty-three thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(6425, 33040, 'thirty-three thousand forty');\nINSERT INTO t3 VALUES(6426, 72836, 'seventy-two thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(6427, 86980, 'eighty-six thousand nine hundred eighty');\nINSERT INTO t3 VALUES(6428, 40623, 'forty thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(6429, 91390, 'ninety-one thousand three hundred ninety');\nINSERT INTO t3 VALUES(6430, 84724, 'eighty-four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(6431, 35155, 'thirty-five thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(6432, 34401, 'thirty-four thousand four hundred one');\nINSERT INTO t3 VALUES(6433, 33430, 'thirty-three thousand four hundred thirty');\nINSERT INTO t3 VALUES(6434, 14729, 'fourteen thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(6435, 52049, 'fifty-two thousand forty-nine');\nINSERT INTO t3 VALUES(6436, 86968, 'eighty-six thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(6437, 31113, 'thirty-one thousand one hundred thirteen');\nINSERT INTO t3 VALUES(6438, 62694, 'sixty-two thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(6439, 59821, 'fifty-nine thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(6440, 3480, 'three thousand four hundred eighty');\nINSERT INTO t3 VALUES(6441, 30845, 'thirty thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(6442, 31999, 'thirty-one thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(6443, 65500, 'sixty-five thousand five hundred');\nINSERT INTO t3 VALUES(6444, 56122, 'fifty-six thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(6445, 19409, 'nineteen thousand four hundred nine');\nINSERT INTO t3 VALUES(6446, 59094, 'fifty-nine thousand ninety-four');\nINSERT INTO t3 VALUES(6447, 61425, 'sixty-one thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(6448, 90974, 'ninety thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(6449, 4160, 'four thousand one hundred sixty');\nINSERT INTO t3 VALUES(6450, 25228, 'twenty-five thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(6451, 88487, 'eighty-eight thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(6452, 44319, 'forty-four thousand three hundred nineteen');\nINSERT INTO t3 VALUES(6453, 71594, 'seventy-one thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(6454, 29525, 'twenty-nine thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(6455, 96270, 'ninety-six thousand two hundred seventy');\nINSERT INTO t3 VALUES(6456, 71824, 'seventy-one thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(6457, 63054, 'sixty-three thousand fifty-four');\nINSERT INTO t3 VALUES(6458, 667, 'six hundred sixty-seven');\nINSERT INTO t3 VALUES(6459, 87725, 'eighty-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(6460, 7174, 'seven thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(6461, 64534, 'sixty-four thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(6462, 72956, 'seventy-two thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(6463, 28646, 'twenty-eight thousand six hundred forty-six');\nINSERT INTO t3 VALUES(6464, 9232, 'nine thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(6465, 82555, 'eighty-two thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(6466, 30862, 'thirty thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(6467, 18916, 'eighteen thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(6468, 74101, 'seventy-four thousand one hundred one');\nINSERT INTO t3 VALUES(6469, 22953, 'twenty-two thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(6470, 97282, 'ninety-seven thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(6471, 68523, 'sixty-eight thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(6472, 83312, 'eighty-three thousand three hundred twelve');\nINSERT INTO t3 VALUES(6473, 87909, 'eighty-seven thousand nine hundred nine');\nINSERT INTO t3 VALUES(6474, 58630, 'fifty-eight thousand six hundred thirty');\nINSERT INTO t3 VALUES(6475, 89486, 'eighty-nine thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(6476, 61681, 'sixty-one thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(6477, 35167, 'thirty-five thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(6478, 68894, 'sixty-eight thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(6479, 25761, 'twenty-five thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(6480, 25405, 'twenty-five thousand four hundred five');\nINSERT INTO t3 VALUES(6481, 21503, 'twenty-one thousand five hundred three');\nINSERT INTO t3 VALUES(6482, 83719, 'eighty-three thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(6483, 66635, 'sixty-six thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(6484, 57844, 'fifty-seven thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(6485, 38179, 'thirty-eight thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(6486, 53271, 'fifty-three thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(6487, 79881, 'seventy-nine thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(6488, 14889, 'fourteen thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(6489, 67614, 'sixty-seven thousand six hundred fourteen');\nINSERT INTO t3 VALUES(6490, 97143, 'ninety-seven thousand one hundred forty-three');\nINSERT INTO t3 VALUES(6491, 17704, 'seventeen thousand seven hundred four');\nINSERT INTO t3 VALUES(6492, 75236, 'seventy-five thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(6493, 9330, 'nine thousand three hundred thirty');\nINSERT INTO t3 VALUES(6494, 79717, 'seventy-nine thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(6495, 25511, 'twenty-five thousand five hundred eleven');\nINSERT INTO t3 VALUES(6496, 79585, 'seventy-nine thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(6497, 18357, 'eighteen thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(6498, 80700, 'eighty thousand seven hundred');\nINSERT INTO t3 VALUES(6499, 34828, 'thirty-four thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(6500, 98144, 'ninety-eight thousand one hundred forty-four');\nINSERT INTO t3 VALUES(6501, 90813, 'ninety thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(6502, 96512, 'ninety-six thousand five hundred twelve');\nINSERT INTO t3 VALUES(6503, 30119, 'thirty thousand one hundred nineteen');\nINSERT INTO t3 VALUES(6504, 17465, 'seventeen thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(6505, 78894, 'seventy-eight thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(6506, 99059, 'ninety-nine thousand fifty-nine');\nINSERT INTO t3 VALUES(6507, 74179, 'seventy-four thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(6508, 40283, 'forty thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(6509, 36084, 'thirty-six thousand eighty-four');\nINSERT INTO t3 VALUES(6510, 25931, 'twenty-five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(6511, 15410, 'fifteen thousand four hundred ten');\nINSERT INTO t3 VALUES(6512, 36549, 'thirty-six thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(6513, 64300, 'sixty-four thousand three hundred');\nINSERT INTO t3 VALUES(6514, 3839, 'three thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(6515, 49750, 'forty-nine thousand seven hundred fifty');\nINSERT INTO t3 VALUES(6516, 15951, 'fifteen thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(6517, 12595, 'twelve thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(6518, 19644, 'nineteen thousand six hundred forty-four');\nINSERT INTO t3 VALUES(6519, 78167, 'seventy-eight thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(6520, 51664, 'fifty-one thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(6521, 33464, 'thirty-three thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(6522, 53416, 'fifty-three thousand four hundred sixteen');\nINSERT INTO t3 VALUES(6523, 6901, 'six thousand nine hundred one');\nINSERT INTO t3 VALUES(6524, 3388, 'three thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(6525, 55829, 'fifty-five thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(6526, 84538, 'eighty-four thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(6527, 81904, 'eighty-one thousand nine hundred four');\nINSERT INTO t3 VALUES(6528, 81219, 'eighty-one thousand two hundred nineteen');\nINSERT INTO t3 VALUES(6529, 49076, 'forty-nine thousand seventy-six');\nINSERT INTO t3 VALUES(6530, 70818, 'seventy thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(6531, 71645, 'seventy-one thousand six hundred forty-five');\nINSERT INTO t3 VALUES(6532, 56341, 'fifty-six thousand three hundred forty-one');\nINSERT INTO t3 VALUES(6533, 8023, 'eight thousand twenty-three');\nINSERT INTO t3 VALUES(6534, 91055, 'ninety-one thousand fifty-five');\nINSERT INTO t3 VALUES(6535, 97901, 'ninety-seven thousand nine hundred one');\nINSERT INTO t3 VALUES(6536, 7469, 'seven thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(6537, 22260, 'twenty-two thousand two hundred sixty');\nINSERT INTO t3 VALUES(6538, 85026, 'eighty-five thousand twenty-six');\nINSERT INTO t3 VALUES(6539, 11137, 'eleven thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(6540, 5931, 'five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(6541, 25921, 'twenty-five thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(6542, 29376, 'twenty-nine thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(6543, 13252, 'thirteen thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(6544, 98943, 'ninety-eight thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(6545, 75499, 'seventy-five thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(6546, 91582, 'ninety-one thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(6547, 3533, 'three thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(6548, 269, 'two hundred sixty-nine');\nINSERT INTO t3 VALUES(6549, 51498, 'fifty-one thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(6550, 48037, 'forty-eight thousand thirty-seven');\nINSERT INTO t3 VALUES(6551, 77894, 'seventy-seven thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(6552, 28956, 'twenty-eight thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(6553, 91318, 'ninety-one thousand three hundred eighteen');\nINSERT INTO t3 VALUES(6554, 76032, 'seventy-six thousand thirty-two');\nINSERT INTO t3 VALUES(6555, 65407, 'sixty-five thousand four hundred seven');\nINSERT INTO t3 VALUES(6556, 10141, 'ten thousand one hundred forty-one');\nINSERT INTO t3 VALUES(6557, 25177, 'twenty-five thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(6558, 39927, 'thirty-nine thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(6559, 93976, 'ninety-three thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(6560, 17883, 'seventeen thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(6561, 83992, 'eighty-three thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(6562, 70612, 'seventy thousand six hundred twelve');\nINSERT INTO t3 VALUES(6563, 63063, 'sixty-three thousand sixty-three');\nINSERT INTO t3 VALUES(6564, 84038, 'eighty-four thousand thirty-eight');\nINSERT INTO t3 VALUES(6565, 88573, 'eighty-eight thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(6566, 14007, 'fourteen thousand seven');\nINSERT INTO t3 VALUES(6567, 20355, 'twenty thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(6568, 88805, 'eighty-eight thousand eight hundred five');\nINSERT INTO t3 VALUES(6569, 74562, 'seventy-four thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(6570, 29439, 'twenty-nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(6571, 96238, 'ninety-six thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(6572, 69175, 'sixty-nine thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(6573, 98109, 'ninety-eight thousand one hundred nine');\nINSERT INTO t3 VALUES(6574, 32877, 'thirty-two thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(6575, 19990, 'nineteen thousand nine hundred ninety');\nINSERT INTO t3 VALUES(6576, 59341, 'fifty-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(6577, 94034, 'ninety-four thousand thirty-four');\nINSERT INTO t3 VALUES(6578, 66816, 'sixty-six thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(6579, 1549, 'one thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(6580, 71258, 'seventy-one thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(6581, 12978, 'twelve thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(6582, 23457, 'twenty-three thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(6583, 51508, 'fifty-one thousand five hundred eight');\nINSERT INTO t3 VALUES(6584, 35817, 'thirty-five thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(6585, 74355, 'seventy-four thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(6586, 21771, 'twenty-one thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(6587, 21806, 'twenty-one thousand eight hundred six');\nINSERT INTO t3 VALUES(6588, 50591, 'fifty thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(6589, 81906, 'eighty-one thousand nine hundred six');\nINSERT INTO t3 VALUES(6590, 21753, 'twenty-one thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(6591, 76454, 'seventy-six thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(6592, 97959, 'ninety-seven thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(6593, 19861, 'nineteen thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(6594, 74155, 'seventy-four thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(6595, 51804, 'fifty-one thousand eight hundred four');\nINSERT INTO t3 VALUES(6596, 26162, 'twenty-six thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(6597, 27725, 'twenty-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(6598, 75275, 'seventy-five thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(6599, 28772, 'twenty-eight thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(6600, 12111, 'twelve thousand one hundred eleven');\nINSERT INTO t3 VALUES(6601, 86492, 'eighty-six thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(6602, 68872, 'sixty-eight thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(6603, 96635, 'ninety-six thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(6604, 24530, 'twenty-four thousand five hundred thirty');\nINSERT INTO t3 VALUES(6605, 52095, 'fifty-two thousand ninety-five');\nINSERT INTO t3 VALUES(6606, 66430, 'sixty-six thousand four hundred thirty');\nINSERT INTO t3 VALUES(6607, 98708, 'ninety-eight thousand seven hundred eight');\nINSERT INTO t3 VALUES(6608, 81032, 'eighty-one thousand thirty-two');\nINSERT INTO t3 VALUES(6609, 46274, 'forty-six thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(6610, 35214, 'thirty-five thousand two hundred fourteen');\nINSERT INTO t3 VALUES(6611, 25329, 'twenty-five thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(6612, 89958, 'eighty-nine thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(6613, 56115, 'fifty-six thousand one hundred fifteen');\nINSERT INTO t3 VALUES(6614, 1508, 'one thousand five hundred eight');\nINSERT INTO t3 VALUES(6615, 66159, 'sixty-six thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(6616, 94091, 'ninety-four thousand ninety-one');\nINSERT INTO t3 VALUES(6617, 17931, 'seventeen thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(6618, 50776, 'fifty thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(6619, 51778, 'fifty-one thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(6620, 45754, 'forty-five thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(6621, 1673, 'one thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(6622, 41574, 'forty-one thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(6623, 92439, 'ninety-two thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(6624, 62210, 'sixty-two thousand two hundred ten');\nINSERT INTO t3 VALUES(6625, 41533, 'forty-one thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(6626, 7793, 'seven thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(6627, 36450, 'thirty-six thousand four hundred fifty');\nINSERT INTO t3 VALUES(6628, 66720, 'sixty-six thousand seven hundred twenty');\nINSERT INTO t3 VALUES(6629, 37480, 'thirty-seven thousand four hundred eighty');\nINSERT INTO t3 VALUES(6630, 35630, 'thirty-five thousand six hundred thirty');\nINSERT INTO t3 VALUES(6631, 75605, 'seventy-five thousand six hundred five');\nINSERT INTO t3 VALUES(6632, 7352, 'seven thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(6633, 18710, 'eighteen thousand seven hundred ten');\nINSERT INTO t3 VALUES(6634, 83097, 'eighty-three thousand ninety-seven');\nINSERT INTO t3 VALUES(6635, 34271, 'thirty-four thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(6636, 71193, 'seventy-one thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(6637, 34249, 'thirty-four thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(6638, 79802, 'seventy-nine thousand eight hundred two');\nINSERT INTO t3 VALUES(6639, 66577, 'sixty-six thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(6640, 84774, 'eighty-four thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(6641, 67257, 'sixty-seven thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(6642, 55627, 'fifty-five thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(6643, 46698, 'forty-six thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(6644, 40160, 'forty thousand one hundred sixty');\nINSERT INTO t3 VALUES(6645, 99461, 'ninety-nine thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(6646, 25300, 'twenty-five thousand three hundred');\nINSERT INTO t3 VALUES(6647, 75747, 'seventy-five thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(6648, 97000, 'ninety-seven thousand');\nINSERT INTO t3 VALUES(6649, 84151, 'eighty-four thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(6650, 81183, 'eighty-one thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(6651, 65033, 'sixty-five thousand thirty-three');\nINSERT INTO t3 VALUES(6652, 18443, 'eighteen thousand four hundred forty-three');\nINSERT INTO t3 VALUES(6653, 93426, 'ninety-three thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(6654, 66274, 'sixty-six thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(6655, 71661, 'seventy-one thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(6656, 56328, 'fifty-six thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(6657, 77429, 'seventy-seven thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(6658, 49172, 'forty-nine thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(6659, 81563, 'eighty-one thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(6660, 15364, 'fifteen thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(6661, 40289, 'forty thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(6662, 65642, 'sixty-five thousand six hundred forty-two');\nINSERT INTO t3 VALUES(6663, 66392, 'sixty-six thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(6664, 39051, 'thirty-nine thousand fifty-one');\nINSERT INTO t3 VALUES(6665, 50455, 'fifty thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(6666, 86017, 'eighty-six thousand seventeen');\nINSERT INTO t3 VALUES(6667, 47725, 'forty-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(6668, 20778, 'twenty thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(6669, 26718, 'twenty-six thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(6670, 4198, 'four thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(6671, 4003, 'four thousand three');\nINSERT INTO t3 VALUES(6672, 71920, 'seventy-one thousand nine hundred twenty');\nINSERT INTO t3 VALUES(6673, 23405, 'twenty-three thousand four hundred five');\nINSERT INTO t3 VALUES(6674, 45877, 'forty-five thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(6675, 84650, 'eighty-four thousand six hundred fifty');\nINSERT INTO t3 VALUES(6676, 92500, 'ninety-two thousand five hundred');\nINSERT INTO t3 VALUES(6677, 33756, 'thirty-three thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(6678, 16742, 'sixteen thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(6679, 69714, 'sixty-nine thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(6680, 58512, 'fifty-eight thousand five hundred twelve');\nINSERT INTO t3 VALUES(6681, 48, 'forty-eight');\nINSERT INTO t3 VALUES(6682, 68903, 'sixty-eight thousand nine hundred three');\nINSERT INTO t3 VALUES(6683, 63885, 'sixty-three thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(6684, 87619, 'eighty-seven thousand six hundred nineteen');\nINSERT INTO t3 VALUES(6685, 93753, 'ninety-three thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(6686, 62988, 'sixty-two thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(6687, 85093, 'eighty-five thousand ninety-three');\nINSERT INTO t3 VALUES(6688, 76970, 'seventy-six thousand nine hundred seventy');\nINSERT INTO t3 VALUES(6689, 77131, 'seventy-seven thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(6690, 80972, 'eighty thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(6691, 94976, 'ninety-four thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(6692, 91698, 'ninety-one thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(6693, 40421, 'forty thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(6694, 20937, 'twenty thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(6695, 14829, 'fourteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(6696, 54118, 'fifty-four thousand one hundred eighteen');\nINSERT INTO t3 VALUES(6697, 70324, 'seventy thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(6698, 69621, 'sixty-nine thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(6699, 79897, 'seventy-nine thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(6700, 26637, 'twenty-six thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(6701, 4777, 'four thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(6702, 51548, 'fifty-one thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(6703, 90392, 'ninety thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(6704, 86107, 'eighty-six thousand one hundred seven');\nINSERT INTO t3 VALUES(6705, 38488, 'thirty-eight thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(6706, 44084, 'forty-four thousand eighty-four');\nINSERT INTO t3 VALUES(6707, 25919, 'twenty-five thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(6708, 68527, 'sixty-eight thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(6709, 65235, 'sixty-five thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(6710, 49374, 'forty-nine thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(6711, 67287, 'sixty-seven thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(6712, 60554, 'sixty thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(6713, 61828, 'sixty-one thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(6714, 75101, 'seventy-five thousand one hundred one');\nINSERT INTO t3 VALUES(6715, 58843, 'fifty-eight thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(6716, 7528, 'seven thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(6717, 84326, 'eighty-four thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(6718, 26606, 'twenty-six thousand six hundred six');\nINSERT INTO t3 VALUES(6719, 63107, 'sixty-three thousand one hundred seven');\nINSERT INTO t3 VALUES(6720, 85704, 'eighty-five thousand seven hundred four');\nINSERT INTO t3 VALUES(6721, 64592, 'sixty-four thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(6722, 4172, 'four thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(6723, 29724, 'twenty-nine thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(6724, 66256, 'sixty-six thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(6725, 28574, 'twenty-eight thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(6726, 65820, 'sixty-five thousand eight hundred twenty');\nINSERT INTO t3 VALUES(6727, 53820, 'fifty-three thousand eight hundred twenty');\nINSERT INTO t3 VALUES(6728, 94194, 'ninety-four thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(6729, 85547, 'eighty-five thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(6730, 59483, 'fifty-nine thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(6731, 88634, 'eighty-eight thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(6732, 20559, 'twenty thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(6733, 47258, 'forty-seven thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(6734, 87086, 'eighty-seven thousand eighty-six');\nINSERT INTO t3 VALUES(6735, 74994, 'seventy-four thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(6736, 86848, 'eighty-six thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(6737, 38213, 'thirty-eight thousand two hundred thirteen');\nINSERT INTO t3 VALUES(6738, 65854, 'sixty-five thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(6739, 52416, 'fifty-two thousand four hundred sixteen');\nINSERT INTO t3 VALUES(6740, 13950, 'thirteen thousand nine hundred fifty');\nINSERT INTO t3 VALUES(6741, 52315, 'fifty-two thousand three hundred fifteen');\nINSERT INTO t3 VALUES(6742, 5782, 'five thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(6743, 47572, 'forty-seven thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(6744, 70865, 'seventy thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(6745, 13411, 'thirteen thousand four hundred eleven');\nINSERT INTO t3 VALUES(6746, 86184, 'eighty-six thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(6747, 29628, 'twenty-nine thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(6748, 67024, 'sixty-seven thousand twenty-four');\nINSERT INTO t3 VALUES(6749, 64383, 'sixty-four thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(6750, 65944, 'sixty-five thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(6751, 90876, 'ninety thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(6752, 22521, 'twenty-two thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(6753, 45905, 'forty-five thousand nine hundred five');\nINSERT INTO t3 VALUES(6754, 64244, 'sixty-four thousand two hundred forty-four');\nINSERT INTO t3 VALUES(6755, 75421, 'seventy-five thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(6756, 54487, 'fifty-four thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(6757, 30678, 'thirty thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(6758, 66796, 'sixty-six thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(6759, 80073, 'eighty thousand seventy-three');\nINSERT INTO t3 VALUES(6760, 96299, 'ninety-six thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(6761, 11195, 'eleven thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(6762, 33964, 'thirty-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(6763, 46364, 'forty-six thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(6764, 97177, 'ninety-seven thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(6765, 41466, 'forty-one thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(6766, 61475, 'sixty-one thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(6767, 69685, 'sixty-nine thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(6768, 50759, 'fifty thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(6769, 64318, 'sixty-four thousand three hundred eighteen');\nINSERT INTO t3 VALUES(6770, 23477, 'twenty-three thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(6771, 74245, 'seventy-four thousand two hundred forty-five');\nINSERT INTO t3 VALUES(6772, 91218, 'ninety-one thousand two hundred eighteen');\nINSERT INTO t3 VALUES(6773, 64355, 'sixty-four thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(6774, 47803, 'forty-seven thousand eight hundred three');\nINSERT INTO t3 VALUES(6775, 48927, 'forty-eight thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(6776, 60602, 'sixty thousand six hundred two');\nINSERT INTO t3 VALUES(6777, 76210, 'seventy-six thousand two hundred ten');\nINSERT INTO t3 VALUES(6778, 85169, 'eighty-five thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(6779, 8482, 'eight thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(6780, 27640, 'twenty-seven thousand six hundred forty');\nINSERT INTO t3 VALUES(6781, 69276, 'sixty-nine thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(6782, 81289, 'eighty-one thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(6783, 86269, 'eighty-six thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(6784, 38434, 'thirty-eight thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(6785, 40510, 'forty thousand five hundred ten');\nINSERT INTO t3 VALUES(6786, 18913, 'eighteen thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(6787, 28514, 'twenty-eight thousand five hundred fourteen');\nINSERT INTO t3 VALUES(6788, 80994, 'eighty thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(6789, 41680, 'forty-one thousand six hundred eighty');\nINSERT INTO t3 VALUES(6790, 26002, 'twenty-six thousand two');\nINSERT INTO t3 VALUES(6791, 40177, 'forty thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(6792, 72208, 'seventy-two thousand two hundred eight');\nINSERT INTO t3 VALUES(6793, 74431, 'seventy-four thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(6794, 82635, 'eighty-two thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(6795, 30379, 'thirty thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(6796, 65894, 'sixty-five thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(6797, 46011, 'forty-six thousand eleven');\nINSERT INTO t3 VALUES(6798, 17613, 'seventeen thousand six hundred thirteen');\nINSERT INTO t3 VALUES(6799, 4141, 'four thousand one hundred forty-one');\nINSERT INTO t3 VALUES(6800, 50157, 'fifty thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(6801, 48985, 'forty-eight thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(6802, 89454, 'eighty-nine thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(6803, 93896, 'ninety-three thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(6804, 88009, 'eighty-eight thousand nine');\nINSERT INTO t3 VALUES(6805, 89121, 'eighty-nine thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(6806, 35164, 'thirty-five thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(6807, 1979, 'one thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(6808, 86539, 'eighty-six thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(6809, 28833, 'twenty-eight thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(6810, 65279, 'sixty-five thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(6811, 51761, 'fifty-one thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(6812, 77496, 'seventy-seven thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(6813, 66427, 'sixty-six thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(6814, 44762, 'forty-four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(6815, 4346, 'four thousand three hundred forty-six');\nINSERT INTO t3 VALUES(6816, 93476, 'ninety-three thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(6817, 27757, 'twenty-seven thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(6818, 62063, 'sixty-two thousand sixty-three');\nINSERT INTO t3 VALUES(6819, 54096, 'fifty-four thousand ninety-six');\nINSERT INTO t3 VALUES(6820, 49582, 'forty-nine thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(6821, 71309, 'seventy-one thousand three hundred nine');\nINSERT INTO t3 VALUES(6822, 20614, 'twenty thousand six hundred fourteen');\nINSERT INTO t3 VALUES(6823, 35252, 'thirty-five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(6824, 89126, 'eighty-nine thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(6825, 17968, 'seventeen thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(6826, 96107, 'ninety-six thousand one hundred seven');\nINSERT INTO t3 VALUES(6827, 71625, 'seventy-one thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(6828, 78354, 'seventy-eight thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(6829, 68297, 'sixty-eight thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(6830, 19363, 'nineteen thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(6831, 3034, 'three thousand thirty-four');\nINSERT INTO t3 VALUES(6832, 1779, 'one thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(6833, 56414, 'fifty-six thousand four hundred fourteen');\nINSERT INTO t3 VALUES(6834, 97655, 'ninety-seven thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(6835, 62338, 'sixty-two thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(6836, 61279, 'sixty-one thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(6837, 12672, 'twelve thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(6838, 43260, 'forty-three thousand two hundred sixty');\nINSERT INTO t3 VALUES(6839, 41922, 'forty-one thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(6840, 2017, 'two thousand seventeen');\nINSERT INTO t3 VALUES(6841, 38979, 'thirty-eight thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(6842, 61662, 'sixty-one thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(6843, 87046, 'eighty-seven thousand forty-six');\nINSERT INTO t3 VALUES(6844, 9004, 'nine thousand four');\nINSERT INTO t3 VALUES(6845, 63812, 'sixty-three thousand eight hundred twelve');\nINSERT INTO t3 VALUES(6846, 94374, 'ninety-four thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(6847, 14000, 'fourteen thousand');\nINSERT INTO t3 VALUES(6848, 99440, 'ninety-nine thousand four hundred forty');\nINSERT INTO t3 VALUES(6849, 19142, 'nineteen thousand one hundred forty-two');\nINSERT INTO t3 VALUES(6850, 66431, 'sixty-six thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(6851, 31091, 'thirty-one thousand ninety-one');\nINSERT INTO t3 VALUES(6852, 72977, 'seventy-two thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(6853, 6627, 'six thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(6854, 3890, 'three thousand eight hundred ninety');\nINSERT INTO t3 VALUES(6855, 79532, 'seventy-nine thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(6856, 82016, 'eighty-two thousand sixteen');\nINSERT INTO t3 VALUES(6857, 3935, 'three thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(6858, 18287, 'eighteen thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(6859, 67524, 'sixty-seven thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(6860, 88049, 'eighty-eight thousand forty-nine');\nINSERT INTO t3 VALUES(6861, 20482, 'twenty thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(6862, 6539, 'six thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(6863, 32581, 'thirty-two thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(6864, 77558, 'seventy-seven thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(6865, 15775, 'fifteen thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(6866, 66441, 'sixty-six thousand four hundred forty-one');\nINSERT INTO t3 VALUES(6867, 51390, 'fifty-one thousand three hundred ninety');\nINSERT INTO t3 VALUES(6868, 31984, 'thirty-one thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(6869, 3406, 'three thousand four hundred six');\nINSERT INTO t3 VALUES(6870, 93957, 'ninety-three thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(6871, 78392, 'seventy-eight thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(6872, 23683, 'twenty-three thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(6873, 86656, 'eighty-six thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(6874, 26091, 'twenty-six thousand ninety-one');\nINSERT INTO t3 VALUES(6875, 23091, 'twenty-three thousand ninety-one');\nINSERT INTO t3 VALUES(6876, 43220, 'forty-three thousand two hundred twenty');\nINSERT INTO t3 VALUES(6877, 42859, 'forty-two thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(6878, 63640, 'sixty-three thousand six hundred forty');\nINSERT INTO t3 VALUES(6879, 19381, 'nineteen thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(6880, 17280, 'seventeen thousand two hundred eighty');\nINSERT INTO t3 VALUES(6881, 5930, 'five thousand nine hundred thirty');\nINSERT INTO t3 VALUES(6882, 56086, 'fifty-six thousand eighty-six');\nINSERT INTO t3 VALUES(6883, 88653, 'eighty-eight thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(6884, 64320, 'sixty-four thousand three hundred twenty');\nINSERT INTO t3 VALUES(6885, 96914, 'ninety-six thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(6886, 17347, 'seventeen thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(6887, 61599, 'sixty-one thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(6888, 57329, 'fifty-seven thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(6889, 85546, 'eighty-five thousand five hundred forty-six');\nINSERT INTO t3 VALUES(6890, 75083, 'seventy-five thousand eighty-three');\nINSERT INTO t3 VALUES(6891, 58080, 'fifty-eight thousand eighty');\nINSERT INTO t3 VALUES(6892, 68641, 'sixty-eight thousand six hundred forty-one');\nINSERT INTO t3 VALUES(6893, 17888, 'seventeen thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(6894, 38911, 'thirty-eight thousand nine hundred eleven');\nINSERT INTO t3 VALUES(6895, 30958, 'thirty thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(6896, 96449, 'ninety-six thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(6897, 26963, 'twenty-six thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(6898, 13180, 'thirteen thousand one hundred eighty');\nINSERT INTO t3 VALUES(6899, 97822, 'ninety-seven thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(6900, 46022, 'forty-six thousand twenty-two');\nINSERT INTO t3 VALUES(6901, 73946, 'seventy-three thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(6902, 42740, 'forty-two thousand seven hundred forty');\nINSERT INTO t3 VALUES(6903, 68499, 'sixty-eight thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(6904, 29749, 'twenty-nine thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(6905, 6891, 'six thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(6906, 84251, 'eighty-four thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(6907, 29341, 'twenty-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(6908, 40269, 'forty thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(6909, 16199, 'sixteen thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(6910, 76146, 'seventy-six thousand one hundred forty-six');\nINSERT INTO t3 VALUES(6911, 77087, 'seventy-seven thousand eighty-seven');\nINSERT INTO t3 VALUES(6912, 3358, 'three thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(6913, 46544, 'forty-six thousand five hundred forty-four');\nINSERT INTO t3 VALUES(6914, 38597, 'thirty-eight thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(6915, 72810, 'seventy-two thousand eight hundred ten');\nINSERT INTO t3 VALUES(6916, 95688, 'ninety-five thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(6917, 17000, 'seventeen thousand');\nINSERT INTO t3 VALUES(6918, 778, 'seven hundred seventy-eight');\nINSERT INTO t3 VALUES(6919, 73123, 'seventy-three thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(6920, 71200, 'seventy-one thousand two hundred');\nINSERT INTO t3 VALUES(6921, 57124, 'fifty-seven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(6922, 42774, 'forty-two thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(6923, 66072, 'sixty-six thousand seventy-two');\nINSERT INTO t3 VALUES(6924, 35498, 'thirty-five thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(6925, 23749, 'twenty-three thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(6926, 96540, 'ninety-six thousand five hundred forty');\nINSERT INTO t3 VALUES(6927, 90601, 'ninety thousand six hundred one');\nINSERT INTO t3 VALUES(6928, 14570, 'fourteen thousand five hundred seventy');\nINSERT INTO t3 VALUES(6929, 92049, 'ninety-two thousand forty-nine');\nINSERT INTO t3 VALUES(6930, 40567, 'forty thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(6931, 66377, 'sixty-six thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(6932, 29027, 'twenty-nine thousand twenty-seven');\nINSERT INTO t3 VALUES(6933, 56397, 'fifty-six thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(6934, 15267, 'fifteen thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(6935, 28644, 'twenty-eight thousand six hundred forty-four');\nINSERT INTO t3 VALUES(6936, 30506, 'thirty thousand five hundred six');\nINSERT INTO t3 VALUES(6937, 48842, 'forty-eight thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(6938, 84447, 'eighty-four thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(6939, 4814, 'four thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(6940, 56864, 'fifty-six thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(6941, 85799, 'eighty-five thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(6942, 13657, 'thirteen thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(6943, 72959, 'seventy-two thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(6944, 52196, 'fifty-two thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(6945, 64209, 'sixty-four thousand two hundred nine');\nINSERT INTO t3 VALUES(6946, 17592, 'seventeen thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(6947, 17535, 'seventeen thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(6948, 27317, 'twenty-seven thousand three hundred seventeen');\nINSERT INTO t3 VALUES(6949, 58667, 'fifty-eight thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(6950, 39783, 'thirty-nine thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(6951, 37823, 'thirty-seven thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(6952, 33797, 'thirty-three thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(6953, 85768, 'eighty-five thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(6954, 21336, 'twenty-one thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(6955, 36809, 'thirty-six thousand eight hundred nine');\nINSERT INTO t3 VALUES(6956, 26883, 'twenty-six thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(6957, 49084, 'forty-nine thousand eighty-four');\nINSERT INTO t3 VALUES(6958, 2104, 'two thousand one hundred four');\nINSERT INTO t3 VALUES(6959, 58650, 'fifty-eight thousand six hundred fifty');\nINSERT INTO t3 VALUES(6960, 21218, 'twenty-one thousand two hundred eighteen');\nINSERT INTO t3 VALUES(6961, 83841, 'eighty-three thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(6962, 46776, 'forty-six thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(6963, 30017, 'thirty thousand seventeen');\nINSERT INTO t3 VALUES(6964, 12552, 'twelve thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(6965, 27693, 'twenty-seven thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(6966, 66629, 'sixty-six thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(6967, 54683, 'fifty-four thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(6968, 31658, 'thirty-one thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(6969, 11550, 'eleven thousand five hundred fifty');\nINSERT INTO t3 VALUES(6970, 63676, 'sixty-three thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(6971, 82573, 'eighty-two thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(6972, 83389, 'eighty-three thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(6973, 28968, 'twenty-eight thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(6974, 5490, 'five thousand four hundred ninety');\nINSERT INTO t3 VALUES(6975, 52254, 'fifty-two thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(6976, 12891, 'twelve thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(6977, 62032, 'sixty-two thousand thirty-two');\nINSERT INTO t3 VALUES(6978, 14329, 'fourteen thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(6979, 58369, 'fifty-eight thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(6980, 15772, 'fifteen thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(6981, 56013, 'fifty-six thousand thirteen');\nINSERT INTO t3 VALUES(6982, 73181, 'seventy-three thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(6983, 48183, 'forty-eight thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(6984, 76611, 'seventy-six thousand six hundred eleven');\nINSERT INTO t3 VALUES(6985, 84938, 'eighty-four thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(6986, 35308, 'thirty-five thousand three hundred eight');\nINSERT INTO t3 VALUES(6987, 56710, 'fifty-six thousand seven hundred ten');\nINSERT INTO t3 VALUES(6988, 53066, 'fifty-three thousand sixty-six');\nINSERT INTO t3 VALUES(6989, 74782, 'seventy-four thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(6990, 43304, 'forty-three thousand three hundred four');\nINSERT INTO t3 VALUES(6991, 2192, 'two thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(6992, 56252, 'fifty-six thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(6993, 23775, 'twenty-three thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(6994, 1901, 'one thousand nine hundred one');\nINSERT INTO t3 VALUES(6995, 24617, 'twenty-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(6996, 78124, 'seventy-eight thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(6997, 40147, 'forty thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(6998, 41294, 'forty-one thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(6999, 12619, 'twelve thousand six hundred nineteen');\nINSERT INTO t3 VALUES(7000, 99847, 'ninety-nine thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(7001, 24323, 'twenty-four thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(7002, 90492, 'ninety thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(7003, 83106, 'eighty-three thousand one hundred six');\nINSERT INTO t3 VALUES(7004, 36329, 'thirty-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(7005, 80341, 'eighty thousand three hundred forty-one');\nINSERT INTO t3 VALUES(7006, 19238, 'nineteen thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(7007, 44740, 'forty-four thousand seven hundred forty');\nINSERT INTO t3 VALUES(7008, 79234, 'seventy-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(7009, 87291, 'eighty-seven thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(7010, 37049, 'thirty-seven thousand forty-nine');\nINSERT INTO t3 VALUES(7011, 50922, 'fifty thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(7012, 42654, 'forty-two thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(7013, 42608, 'forty-two thousand six hundred eight');\nINSERT INTO t3 VALUES(7014, 94993, 'ninety-four thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(7015, 69001, 'sixty-nine thousand one');\nINSERT INTO t3 VALUES(7016, 97800, 'ninety-seven thousand eight hundred');\nINSERT INTO t3 VALUES(7017, 23734, 'twenty-three thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(7018, 76026, 'seventy-six thousand twenty-six');\nINSERT INTO t3 VALUES(7019, 83205, 'eighty-three thousand two hundred five');\nINSERT INTO t3 VALUES(7020, 98968, 'ninety-eight thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(7021, 95951, 'ninety-five thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(7022, 84634, 'eighty-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(7023, 71311, 'seventy-one thousand three hundred eleven');\nINSERT INTO t3 VALUES(7024, 3536, 'three thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(7025, 34569, 'thirty-four thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(7026, 89148, 'eighty-nine thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(7027, 19223, 'nineteen thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(7028, 46452, 'forty-six thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(7029, 38054, 'thirty-eight thousand fifty-four');\nINSERT INTO t3 VALUES(7030, 3824, 'three thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(7031, 60051, 'sixty thousand fifty-one');\nINSERT INTO t3 VALUES(7032, 71012, 'seventy-one thousand twelve');\nINSERT INTO t3 VALUES(7033, 90260, 'ninety thousand two hundred sixty');\nINSERT INTO t3 VALUES(7034, 85421, 'eighty-five thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(7035, 12239, 'twelve thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(7036, 63714, 'sixty-three thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(7037, 11567, 'eleven thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(7038, 21215, 'twenty-one thousand two hundred fifteen');\nINSERT INTO t3 VALUES(7039, 18088, 'eighteen thousand eighty-eight');\nINSERT INTO t3 VALUES(7040, 36051, 'thirty-six thousand fifty-one');\nINSERT INTO t3 VALUES(7041, 85907, 'eighty-five thousand nine hundred seven');\nINSERT INTO t3 VALUES(7042, 24245, 'twenty-four thousand two hundred forty-five');\nINSERT INTO t3 VALUES(7043, 27277, 'twenty-seven thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(7044, 33901, 'thirty-three thousand nine hundred one');\nINSERT INTO t3 VALUES(7045, 93841, 'ninety-three thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(7046, 84152, 'eighty-four thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(7047, 47889, 'forty-seven thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(7048, 6031, 'six thousand thirty-one');\nINSERT INTO t3 VALUES(7049, 95152, 'ninety-five thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(7050, 19764, 'nineteen thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(7051, 58743, 'fifty-eight thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(7052, 45094, 'forty-five thousand ninety-four');\nINSERT INTO t3 VALUES(7053, 47239, 'forty-seven thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(7054, 55871, 'fifty-five thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(7055, 55700, 'fifty-five thousand seven hundred');\nINSERT INTO t3 VALUES(7056, 97138, 'ninety-seven thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(7057, 68397, 'sixty-eight thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(7058, 86286, 'eighty-six thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(7059, 60433, 'sixty thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(7060, 86295, 'eighty-six thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(7061, 38072, 'thirty-eight thousand seventy-two');\nINSERT INTO t3 VALUES(7062, 74952, 'seventy-four thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(7063, 32070, 'thirty-two thousand seventy');\nINSERT INTO t3 VALUES(7064, 58471, 'fifty-eight thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(7065, 36852, 'thirty-six thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(7066, 61165, 'sixty-one thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(7067, 22089, 'twenty-two thousand eighty-nine');\nINSERT INTO t3 VALUES(7068, 35839, 'thirty-five thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(7069, 85417, 'eighty-five thousand four hundred seventeen');\nINSERT INTO t3 VALUES(7070, 68230, 'sixty-eight thousand two hundred thirty');\nINSERT INTO t3 VALUES(7071, 38104, 'thirty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(7072, 37538, 'thirty-seven thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(7073, 33802, 'thirty-three thousand eight hundred two');\nINSERT INTO t3 VALUES(7074, 69737, 'sixty-nine thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(7075, 5816, 'five thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(7076, 91862, 'ninety-one thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(7077, 68416, 'sixty-eight thousand four hundred sixteen');\nINSERT INTO t3 VALUES(7078, 13016, 'thirteen thousand sixteen');\nINSERT INTO t3 VALUES(7079, 8165, 'eight thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(7080, 84485, 'eighty-four thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(7081, 53664, 'fifty-three thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(7082, 278, 'two hundred seventy-eight');\nINSERT INTO t3 VALUES(7083, 54590, 'fifty-four thousand five hundred ninety');\nINSERT INTO t3 VALUES(7084, 55644, 'fifty-five thousand six hundred forty-four');\nINSERT INTO t3 VALUES(7085, 5222, 'five thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(7086, 89371, 'eighty-nine thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(7087, 14172, 'fourteen thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(7088, 8485, 'eight thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(7089, 66008, 'sixty-six thousand eight');\nINSERT INTO t3 VALUES(7090, 74780, 'seventy-four thousand seven hundred eighty');\nINSERT INTO t3 VALUES(7091, 67764, 'sixty-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(7092, 44389, 'forty-four thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(7093, 79372, 'seventy-nine thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(7094, 75617, 'seventy-five thousand six hundred seventeen');\nINSERT INTO t3 VALUES(7095, 36126, 'thirty-six thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(7096, 79591, 'seventy-nine thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(7097, 61635, 'sixty-one thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(7098, 45116, 'forty-five thousand one hundred sixteen');\nINSERT INTO t3 VALUES(7099, 31220, 'thirty-one thousand two hundred twenty');\nINSERT INTO t3 VALUES(7100, 50726, 'fifty thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(7101, 4479, 'four thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(7102, 93759, 'ninety-three thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(7103, 51972, 'fifty-one thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(7104, 70378, 'seventy thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(7105, 53346, 'fifty-three thousand three hundred forty-six');\nINSERT INTO t3 VALUES(7106, 97684, 'ninety-seven thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(7107, 9978, 'nine thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(7108, 36707, 'thirty-six thousand seven hundred seven');\nINSERT INTO t3 VALUES(7109, 64941, 'sixty-four thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(7110, 93739, 'ninety-three thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(7111, 94948, 'ninety-four thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(7112, 41867, 'forty-one thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(7113, 28515, 'twenty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(7114, 60341, 'sixty thousand three hundred forty-one');\nINSERT INTO t3 VALUES(7115, 4047, 'four thousand forty-seven');\nINSERT INTO t3 VALUES(7116, 59361, 'fifty-nine thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(7117, 11983, 'eleven thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(7118, 1906, 'one thousand nine hundred six');\nINSERT INTO t3 VALUES(7119, 14323, 'fourteen thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(7120, 92640, 'ninety-two thousand six hundred forty');\nINSERT INTO t3 VALUES(7121, 11527, 'eleven thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(7122, 88232, 'eighty-eight thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(7123, 16507, 'sixteen thousand five hundred seven');\nINSERT INTO t3 VALUES(7124, 72272, 'seventy-two thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(7125, 7378, 'seven thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(7126, 14997, 'fourteen thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(7127, 67667, 'sixty-seven thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(7128, 97793, 'ninety-seven thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(7129, 34287, 'thirty-four thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(7130, 39397, 'thirty-nine thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(7131, 83438, 'eighty-three thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(7132, 7585, 'seven thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(7133, 42113, 'forty-two thousand one hundred thirteen');\nINSERT INTO t3 VALUES(7134, 4189, 'four thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(7135, 94919, 'ninety-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(7136, 77199, 'seventy-seven thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(7137, 45667, 'forty-five thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(7138, 42730, 'forty-two thousand seven hundred thirty');\nINSERT INTO t3 VALUES(7139, 35776, 'thirty-five thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(7140, 31408, 'thirty-one thousand four hundred eight');\nINSERT INTO t3 VALUES(7141, 67406, 'sixty-seven thousand four hundred six');\nINSERT INTO t3 VALUES(7142, 43811, 'forty-three thousand eight hundred eleven');\nINSERT INTO t3 VALUES(7143, 66482, 'sixty-six thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(7144, 97833, 'ninety-seven thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(7145, 95012, 'ninety-five thousand twelve');\nINSERT INTO t3 VALUES(7146, 22034, 'twenty-two thousand thirty-four');\nINSERT INTO t3 VALUES(7147, 16761, 'sixteen thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(7148, 21732, 'twenty-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(7149, 18523, 'eighteen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(7150, 4223, 'four thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(7151, 9931, 'nine thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(7152, 78366, 'seventy-eight thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(7153, 20581, 'twenty thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(7154, 357, 'three hundred fifty-seven');\nINSERT INTO t3 VALUES(7155, 43136, 'forty-three thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(7156, 31700, 'thirty-one thousand seven hundred');\nINSERT INTO t3 VALUES(7157, 93442, 'ninety-three thousand four hundred forty-two');\nINSERT INTO t3 VALUES(7158, 48765, 'forty-eight thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(7159, 86211, 'eighty-six thousand two hundred eleven');\nINSERT INTO t3 VALUES(7160, 40331, 'forty thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(7161, 97315, 'ninety-seven thousand three hundred fifteen');\nINSERT INTO t3 VALUES(7162, 66147, 'sixty-six thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(7163, 73241, 'seventy-three thousand two hundred forty-one');\nINSERT INTO t3 VALUES(7164, 64669, 'sixty-four thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(7165, 99813, 'ninety-nine thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(7166, 13616, 'thirteen thousand six hundred sixteen');\nINSERT INTO t3 VALUES(7167, 25387, 'twenty-five thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(7168, 16111, 'sixteen thousand one hundred eleven');\nINSERT INTO t3 VALUES(7169, 66643, 'sixty-six thousand six hundred forty-three');\nINSERT INTO t3 VALUES(7170, 24967, 'twenty-four thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(7171, 80090, 'eighty thousand ninety');\nINSERT INTO t3 VALUES(7172, 88725, 'eighty-eight thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(7173, 10863, 'ten thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(7174, 17830, 'seventeen thousand eight hundred thirty');\nINSERT INTO t3 VALUES(7175, 46076, 'forty-six thousand seventy-six');\nINSERT INTO t3 VALUES(7176, 53475, 'fifty-three thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(7177, 31456, 'thirty-one thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(7178, 85279, 'eighty-five thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(7179, 30140, 'thirty thousand one hundred forty');\nINSERT INTO t3 VALUES(7180, 30633, 'thirty thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(7181, 80244, 'eighty thousand two hundred forty-four');\nINSERT INTO t3 VALUES(7182, 40054, 'forty thousand fifty-four');\nINSERT INTO t3 VALUES(7183, 87970, 'eighty-seven thousand nine hundred seventy');\nINSERT INTO t3 VALUES(7184, 80555, 'eighty thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(7185, 58363, 'fifty-eight thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(7186, 10572, 'ten thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(7187, 913, 'nine hundred thirteen');\nINSERT INTO t3 VALUES(7188, 75543, 'seventy-five thousand five hundred forty-three');\nINSERT INTO t3 VALUES(7189, 20338, 'twenty thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(7190, 60082, 'sixty thousand eighty-two');\nINSERT INTO t3 VALUES(7191, 85893, 'eighty-five thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(7192, 57415, 'fifty-seven thousand four hundred fifteen');\nINSERT INTO t3 VALUES(7193, 29463, 'twenty-nine thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(7194, 57079, 'fifty-seven thousand seventy-nine');\nINSERT INTO t3 VALUES(7195, 62246, 'sixty-two thousand two hundred forty-six');\nINSERT INTO t3 VALUES(7196, 22708, 'twenty-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(7197, 73829, 'seventy-three thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(7198, 18328, 'eighteen thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(7199, 31738, 'thirty-one thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(7200, 3161, 'three thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(7201, 74510, 'seventy-four thousand five hundred ten');\nINSERT INTO t3 VALUES(7202, 83115, 'eighty-three thousand one hundred fifteen');\nINSERT INTO t3 VALUES(7203, 4707, 'four thousand seven hundred seven');\nINSERT INTO t3 VALUES(7204, 20924, 'twenty thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(7205, 96143, 'ninety-six thousand one hundred forty-three');\nINSERT INTO t3 VALUES(7206, 26195, 'twenty-six thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(7207, 59345, 'fifty-nine thousand three hundred forty-five');\nINSERT INTO t3 VALUES(7208, 86450, 'eighty-six thousand four hundred fifty');\nINSERT INTO t3 VALUES(7209, 71425, 'seventy-one thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(7210, 6990, 'six thousand nine hundred ninety');\nINSERT INTO t3 VALUES(7211, 24491, 'twenty-four thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(7212, 98181, 'ninety-eight thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(7213, 47808, 'forty-seven thousand eight hundred eight');\nINSERT INTO t3 VALUES(7214, 25363, 'twenty-five thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(7215, 26427, 'twenty-six thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(7216, 98541, 'ninety-eight thousand five hundred forty-one');\nINSERT INTO t3 VALUES(7217, 58438, 'fifty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(7218, 81857, 'eighty-one thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(7219, 50613, 'fifty thousand six hundred thirteen');\nINSERT INTO t3 VALUES(7220, 69379, 'sixty-nine thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(7221, 89679, 'eighty-nine thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(7222, 5764, 'five thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(7223, 86354, 'eighty-six thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(7224, 5115, 'five thousand one hundred fifteen');\nINSERT INTO t3 VALUES(7225, 62679, 'sixty-two thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(7226, 11391, 'eleven thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(7227, 97281, 'ninety-seven thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(7228, 33539, 'thirty-three thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(7229, 31375, 'thirty-one thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(7230, 77006, 'seventy-seven thousand six');\nINSERT INTO t3 VALUES(7231, 54360, 'fifty-four thousand three hundred sixty');\nINSERT INTO t3 VALUES(7232, 96812, 'ninety-six thousand eight hundred twelve');\nINSERT INTO t3 VALUES(7233, 18611, 'eighteen thousand six hundred eleven');\nINSERT INTO t3 VALUES(7234, 12079, 'twelve thousand seventy-nine');\nINSERT INTO t3 VALUES(7235, 34411, 'thirty-four thousand four hundred eleven');\nINSERT INTO t3 VALUES(7236, 64281, 'sixty-four thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(7237, 17064, 'seventeen thousand sixty-four');\nINSERT INTO t3 VALUES(7238, 95552, 'ninety-five thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(7239, 75158, 'seventy-five thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(7240, 26079, 'twenty-six thousand seventy-nine');\nINSERT INTO t3 VALUES(7241, 87235, 'eighty-seven thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(7242, 36560, 'thirty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(7243, 50239, 'fifty thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(7244, 59601, 'fifty-nine thousand six hundred one');\nINSERT INTO t3 VALUES(7245, 45706, 'forty-five thousand seven hundred six');\nINSERT INTO t3 VALUES(7246, 27308, 'twenty-seven thousand three hundred eight');\nINSERT INTO t3 VALUES(7247, 26573, 'twenty-six thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(7248, 93524, 'ninety-three thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(7249, 47438, 'forty-seven thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(7250, 403, 'four hundred three');\nINSERT INTO t3 VALUES(7251, 51586, 'fifty-one thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(7252, 40570, 'forty thousand five hundred seventy');\nINSERT INTO t3 VALUES(7253, 26997, 'twenty-six thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(7254, 32939, 'thirty-two thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(7255, 21478, 'twenty-one thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(7256, 82551, 'eighty-two thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(7257, 79146, 'seventy-nine thousand one hundred forty-six');\nINSERT INTO t3 VALUES(7258, 78890, 'seventy-eight thousand eight hundred ninety');\nINSERT INTO t3 VALUES(7259, 40685, 'forty thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(7260, 93267, 'ninety-three thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(7261, 60743, 'sixty thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(7262, 40535, 'forty thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(7263, 66248, 'sixty-six thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(7264, 1632, 'one thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(7265, 91926, 'ninety-one thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(7266, 90327, 'ninety thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(7267, 24395, 'twenty-four thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(7268, 98064, 'ninety-eight thousand sixty-four');\nINSERT INTO t3 VALUES(7269, 84829, 'eighty-four thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(7270, 68154, 'sixty-eight thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(7271, 43866, 'forty-three thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(7272, 32063, 'thirty-two thousand sixty-three');\nINSERT INTO t3 VALUES(7273, 86571, 'eighty-six thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(7274, 75604, 'seventy-five thousand six hundred four');\nINSERT INTO t3 VALUES(7275, 26373, 'twenty-six thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(7276, 27365, 'twenty-seven thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(7277, 45389, 'forty-five thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(7278, 32778, 'thirty-two thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(7279, 79641, 'seventy-nine thousand six hundred forty-one');\nINSERT INTO t3 VALUES(7280, 68632, 'sixty-eight thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(7281, 91680, 'ninety-one thousand six hundred eighty');\nINSERT INTO t3 VALUES(7282, 9698, 'nine thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(7283, 10169, 'ten thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(7284, 95137, 'ninety-five thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(7285, 50545, 'fifty thousand five hundred forty-five');\nINSERT INTO t3 VALUES(7286, 28316, 'twenty-eight thousand three hundred sixteen');\nINSERT INTO t3 VALUES(7287, 75939, 'seventy-five thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(7288, 99566, 'ninety-nine thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(7289, 58914, 'fifty-eight thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(7290, 46525, 'forty-six thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(7291, 17180, 'seventeen thousand one hundred eighty');\nINSERT INTO t3 VALUES(7292, 43503, 'forty-three thousand five hundred three');\nINSERT INTO t3 VALUES(7293, 42734, 'forty-two thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(7294, 52603, 'fifty-two thousand six hundred three');\nINSERT INTO t3 VALUES(7295, 37051, 'thirty-seven thousand fifty-one');\nINSERT INTO t3 VALUES(7296, 88547, 'eighty-eight thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(7297, 50661, 'fifty thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(7298, 63879, 'sixty-three thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(7299, 43116, 'forty-three thousand one hundred sixteen');\nINSERT INTO t3 VALUES(7300, 41459, 'forty-one thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(7301, 52667, 'fifty-two thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(7302, 94465, 'ninety-four thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(7303, 1466, 'one thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(7304, 7554, 'seven thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(7305, 63773, 'sixty-three thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(7306, 81490, 'eighty-one thousand four hundred ninety');\nINSERT INTO t3 VALUES(7307, 40160, 'forty thousand one hundred sixty');\nINSERT INTO t3 VALUES(7308, 50116, 'fifty thousand one hundred sixteen');\nINSERT INTO t3 VALUES(7309, 23794, 'twenty-three thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(7310, 16229, 'sixteen thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(7311, 94774, 'ninety-four thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(7312, 81281, 'eighty-one thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(7313, 92361, 'ninety-two thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(7314, 8777, 'eight thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(7315, 82318, 'eighty-two thousand three hundred eighteen');\nINSERT INTO t3 VALUES(7316, 84670, 'eighty-four thousand six hundred seventy');\nINSERT INTO t3 VALUES(7317, 97483, 'ninety-seven thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(7318, 63160, 'sixty-three thousand one hundred sixty');\nINSERT INTO t3 VALUES(7319, 57553, 'fifty-seven thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(7320, 64537, 'sixty-four thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(7321, 82027, 'eighty-two thousand twenty-seven');\nINSERT INTO t3 VALUES(7322, 93718, 'ninety-three thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(7323, 87896, 'eighty-seven thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(7324, 44585, 'forty-four thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(7325, 40057, 'forty thousand fifty-seven');\nINSERT INTO t3 VALUES(7326, 26386, 'twenty-six thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(7327, 1766, 'one thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(7328, 34015, 'thirty-four thousand fifteen');\nINSERT INTO t3 VALUES(7329, 50261, 'fifty thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(7330, 78277, 'seventy-eight thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(7331, 46721, 'forty-six thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(7332, 25314, 'twenty-five thousand three hundred fourteen');\nINSERT INTO t3 VALUES(7333, 16614, 'sixteen thousand six hundred fourteen');\nINSERT INTO t3 VALUES(7334, 48752, 'forty-eight thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(7335, 59627, 'fifty-nine thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(7336, 99314, 'ninety-nine thousand three hundred fourteen');\nINSERT INTO t3 VALUES(7337, 19999, 'nineteen thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(7338, 75660, 'seventy-five thousand six hundred sixty');\nINSERT INTO t3 VALUES(7339, 99677, 'ninety-nine thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(7340, 73009, 'seventy-three thousand nine');\nINSERT INTO t3 VALUES(7341, 22318, 'twenty-two thousand three hundred eighteen');\nINSERT INTO t3 VALUES(7342, 60655, 'sixty thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(7343, 46171, 'forty-six thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(7344, 36168, 'thirty-six thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(7345, 80572, 'eighty thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(7346, 93370, 'ninety-three thousand three hundred seventy');\nINSERT INTO t3 VALUES(7347, 12796, 'twelve thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(7348, 48320, 'forty-eight thousand three hundred twenty');\nINSERT INTO t3 VALUES(7349, 91647, 'ninety-one thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(7350, 41767, 'forty-one thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(7351, 53956, 'fifty-three thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(7352, 39825, 'thirty-nine thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(7353, 31096, 'thirty-one thousand ninety-six');\nINSERT INTO t3 VALUES(7354, 61425, 'sixty-one thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(7355, 22037, 'twenty-two thousand thirty-seven');\nINSERT INTO t3 VALUES(7356, 92717, 'ninety-two thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(7357, 26391, 'twenty-six thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(7358, 52610, 'fifty-two thousand six hundred ten');\nINSERT INTO t3 VALUES(7359, 37210, 'thirty-seven thousand two hundred ten');\nINSERT INTO t3 VALUES(7360, 91766, 'ninety-one thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(7361, 71153, 'seventy-one thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(7362, 99371, 'ninety-nine thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(7363, 54607, 'fifty-four thousand six hundred seven');\nINSERT INTO t3 VALUES(7364, 31431, 'thirty-one thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(7365, 24555, 'twenty-four thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(7366, 68445, 'sixty-eight thousand four hundred forty-five');\nINSERT INTO t3 VALUES(7367, 53641, 'fifty-three thousand six hundred forty-one');\nINSERT INTO t3 VALUES(7368, 64496, 'sixty-four thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(7369, 22525, 'twenty-two thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(7370, 96979, 'ninety-six thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(7371, 26026, 'twenty-six thousand twenty-six');\nINSERT INTO t3 VALUES(7372, 66299, 'sixty-six thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(7373, 63489, 'sixty-three thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(7374, 49429, 'forty-nine thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(7375, 78692, 'seventy-eight thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(7376, 837, 'eight hundred thirty-seven');\nINSERT INTO t3 VALUES(7377, 70519, 'seventy thousand five hundred nineteen');\nINSERT INTO t3 VALUES(7378, 65336, 'sixty-five thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(7379, 32764, 'thirty-two thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(7380, 38253, 'thirty-eight thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(7381, 11074, 'eleven thousand seventy-four');\nINSERT INTO t3 VALUES(7382, 85697, 'eighty-five thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(7383, 39179, 'thirty-nine thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(7384, 65031, 'sixty-five thousand thirty-one');\nINSERT INTO t3 VALUES(7385, 67408, 'sixty-seven thousand four hundred eight');\nINSERT INTO t3 VALUES(7386, 92027, 'ninety-two thousand twenty-seven');\nINSERT INTO t3 VALUES(7387, 67498, 'sixty-seven thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(7388, 53423, 'fifty-three thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(7389, 74263, 'seventy-four thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(7390, 91085, 'ninety-one thousand eighty-five');\nINSERT INTO t3 VALUES(7391, 95463, 'ninety-five thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(7392, 77277, 'seventy-seven thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(7393, 38802, 'thirty-eight thousand eight hundred two');\nINSERT INTO t3 VALUES(7394, 53304, 'fifty-three thousand three hundred four');\nINSERT INTO t3 VALUES(7395, 70192, 'seventy thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(7396, 94906, 'ninety-four thousand nine hundred six');\nINSERT INTO t3 VALUES(7397, 54039, 'fifty-four thousand thirty-nine');\nINSERT INTO t3 VALUES(7398, 20635, 'twenty thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(7399, 79504, 'seventy-nine thousand five hundred four');\nINSERT INTO t3 VALUES(7400, 9461, 'nine thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(7401, 38963, 'thirty-eight thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(7402, 8529, 'eight thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(7403, 81890, 'eighty-one thousand eight hundred ninety');\nINSERT INTO t3 VALUES(7404, 40177, 'forty thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(7405, 64703, 'sixty-four thousand seven hundred three');\nINSERT INTO t3 VALUES(7406, 79332, 'seventy-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(7407, 19102, 'nineteen thousand one hundred two');\nINSERT INTO t3 VALUES(7408, 69980, 'sixty-nine thousand nine hundred eighty');\nINSERT INTO t3 VALUES(7409, 98709, 'ninety-eight thousand seven hundred nine');\nINSERT INTO t3 VALUES(7410, 47286, 'forty-seven thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(7411, 94188, 'ninety-four thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(7412, 9888, 'nine thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(7413, 74431, 'seventy-four thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(7414, 85319, 'eighty-five thousand three hundred nineteen');\nINSERT INTO t3 VALUES(7415, 43359, 'forty-three thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(7416, 59822, 'fifty-nine thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(7417, 54754, 'fifty-four thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(7418, 19939, 'nineteen thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(7419, 27173, 'twenty-seven thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(7420, 39417, 'thirty-nine thousand four hundred seventeen');\nINSERT INTO t3 VALUES(7421, 5050, 'five thousand fifty');\nINSERT INTO t3 VALUES(7422, 82733, 'eighty-two thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(7423, 71513, 'seventy-one thousand five hundred thirteen');\nINSERT INTO t3 VALUES(7424, 61625, 'sixty-one thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(7425, 38970, 'thirty-eight thousand nine hundred seventy');\nINSERT INTO t3 VALUES(7426, 57012, 'fifty-seven thousand twelve');\nINSERT INTO t3 VALUES(7427, 86190, 'eighty-six thousand one hundred ninety');\nINSERT INTO t3 VALUES(7428, 49754, 'forty-nine thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(7429, 3570, 'three thousand five hundred seventy');\nINSERT INTO t3 VALUES(7430, 96076, 'ninety-six thousand seventy-six');\nINSERT INTO t3 VALUES(7431, 4745, 'four thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(7432, 92184, 'ninety-two thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(7433, 72315, 'seventy-two thousand three hundred fifteen');\nINSERT INTO t3 VALUES(7434, 85172, 'eighty-five thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(7435, 35389, 'thirty-five thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(7436, 67991, 'sixty-seven thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(7437, 35787, 'thirty-five thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(7438, 17895, 'seventeen thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(7439, 97226, 'ninety-seven thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(7440, 66758, 'sixty-six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(7441, 51392, 'fifty-one thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(7442, 9569, 'nine thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(7443, 11318, 'eleven thousand three hundred eighteen');\nINSERT INTO t3 VALUES(7444, 65677, 'sixty-five thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(7445, 61757, 'sixty-one thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(7446, 66882, 'sixty-six thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(7447, 70581, 'seventy thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(7448, 34156, 'thirty-four thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(7449, 60205, 'sixty thousand two hundred five');\nINSERT INTO t3 VALUES(7450, 96642, 'ninety-six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(7451, 72517, 'seventy-two thousand five hundred seventeen');\nINSERT INTO t3 VALUES(7452, 61711, 'sixty-one thousand seven hundred eleven');\nINSERT INTO t3 VALUES(7453, 64009, 'sixty-four thousand nine');\nINSERT INTO t3 VALUES(7454, 4585, 'four thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(7455, 2992, 'two thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(7456, 69552, 'sixty-nine thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(7457, 48447, 'forty-eight thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(7458, 40860, 'forty thousand eight hundred sixty');\nINSERT INTO t3 VALUES(7459, 48556, 'forty-eight thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(7460, 54763, 'fifty-four thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(7461, 80128, 'eighty thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(7462, 12294, 'twelve thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(7463, 99064, 'ninety-nine thousand sixty-four');\nINSERT INTO t3 VALUES(7464, 95603, 'ninety-five thousand six hundred three');\nINSERT INTO t3 VALUES(7465, 22560, 'twenty-two thousand five hundred sixty');\nINSERT INTO t3 VALUES(7466, 4045, 'four thousand forty-five');\nINSERT INTO t3 VALUES(7467, 13916, 'thirteen thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(7468, 71415, 'seventy-one thousand four hundred fifteen');\nINSERT INTO t3 VALUES(7469, 96384, 'ninety-six thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(7470, 47370, 'forty-seven thousand three hundred seventy');\nINSERT INTO t3 VALUES(7471, 32635, 'thirty-two thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(7472, 41647, 'forty-one thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(7473, 77570, 'seventy-seven thousand five hundred seventy');\nINSERT INTO t3 VALUES(7474, 16982, 'sixteen thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(7475, 57260, 'fifty-seven thousand two hundred sixty');\nINSERT INTO t3 VALUES(7476, 81874, 'eighty-one thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(7477, 12504, 'twelve thousand five hundred four');\nINSERT INTO t3 VALUES(7478, 6017, 'six thousand seventeen');\nINSERT INTO t3 VALUES(7479, 92489, 'ninety-two thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(7480, 24565, 'twenty-four thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(7481, 66542, 'sixty-six thousand five hundred forty-two');\nINSERT INTO t3 VALUES(7482, 55826, 'fifty-five thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(7483, 58424, 'fifty-eight thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(7484, 35503, 'thirty-five thousand five hundred three');\nINSERT INTO t3 VALUES(7485, 37619, 'thirty-seven thousand six hundred nineteen');\nINSERT INTO t3 VALUES(7486, 35052, 'thirty-five thousand fifty-two');\nINSERT INTO t3 VALUES(7487, 20516, 'twenty thousand five hundred sixteen');\nINSERT INTO t3 VALUES(7488, 28207, 'twenty-eight thousand two hundred seven');\nINSERT INTO t3 VALUES(7489, 37939, 'thirty-seven thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(7490, 64114, 'sixty-four thousand one hundred fourteen');\nINSERT INTO t3 VALUES(7491, 57495, 'fifty-seven thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(7492, 1723, 'one thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(7493, 30893, 'thirty thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(7494, 84887, 'eighty-four thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(7495, 80399, 'eighty thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(7496, 78016, 'seventy-eight thousand sixteen');\nINSERT INTO t3 VALUES(7497, 98840, 'ninety-eight thousand eight hundred forty');\nINSERT INTO t3 VALUES(7498, 46953, 'forty-six thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(7499, 44776, 'forty-four thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(7500, 9547, 'nine thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(7501, 90833, 'ninety thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(7502, 53107, 'fifty-three thousand one hundred seven');\nINSERT INTO t3 VALUES(7503, 52712, 'fifty-two thousand seven hundred twelve');\nINSERT INTO t3 VALUES(7504, 68252, 'sixty-eight thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(7505, 74509, 'seventy-four thousand five hundred nine');\nINSERT INTO t3 VALUES(7506, 65288, 'sixty-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(7507, 50712, 'fifty thousand seven hundred twelve');\nINSERT INTO t3 VALUES(7508, 97665, 'ninety-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(7509, 79046, 'seventy-nine thousand forty-six');\nINSERT INTO t3 VALUES(7510, 41546, 'forty-one thousand five hundred forty-six');\nINSERT INTO t3 VALUES(7511, 12239, 'twelve thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(7512, 27949, 'twenty-seven thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(7513, 7411, 'seven thousand four hundred eleven');\nINSERT INTO t3 VALUES(7514, 34311, 'thirty-four thousand three hundred eleven');\nINSERT INTO t3 VALUES(7515, 74659, 'seventy-four thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(7516, 66488, 'sixty-six thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(7517, 13787, 'thirteen thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(7518, 46028, 'forty-six thousand twenty-eight');\nINSERT INTO t3 VALUES(7519, 11820, 'eleven thousand eight hundred twenty');\nINSERT INTO t3 VALUES(7520, 45427, 'forty-five thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(7521, 52355, 'fifty-two thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(7522, 28745, 'twenty-eight thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(7523, 9026, 'nine thousand twenty-six');\nINSERT INTO t3 VALUES(7524, 94884, 'ninety-four thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(7525, 76702, 'seventy-six thousand seven hundred two');\nINSERT INTO t3 VALUES(7526, 39677, 'thirty-nine thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(7527, 72087, 'seventy-two thousand eighty-seven');\nINSERT INTO t3 VALUES(7528, 97734, 'ninety-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(7529, 32518, 'thirty-two thousand five hundred eighteen');\nINSERT INTO t3 VALUES(7530, 50306, 'fifty thousand three hundred six');\nINSERT INTO t3 VALUES(7531, 37149, 'thirty-seven thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(7532, 97313, 'ninety-seven thousand three hundred thirteen');\nINSERT INTO t3 VALUES(7533, 1129, 'one thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(7534, 12070, 'twelve thousand seventy');\nINSERT INTO t3 VALUES(7535, 30942, 'thirty thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(7536, 77989, 'seventy-seven thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(7537, 54855, 'fifty-four thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(7538, 35213, 'thirty-five thousand two hundred thirteen');\nINSERT INTO t3 VALUES(7539, 39137, 'thirty-nine thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(7540, 14845, 'fourteen thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(7541, 97824, 'ninety-seven thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(7542, 34872, 'thirty-four thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(7543, 35272, 'thirty-five thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(7544, 78747, 'seventy-eight thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(7545, 12609, 'twelve thousand six hundred nine');\nINSERT INTO t3 VALUES(7546, 22610, 'twenty-two thousand six hundred ten');\nINSERT INTO t3 VALUES(7547, 74120, 'seventy-four thousand one hundred twenty');\nINSERT INTO t3 VALUES(7548, 11307, 'eleven thousand three hundred seven');\nINSERT INTO t3 VALUES(7549, 78732, 'seventy-eight thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(7550, 38744, 'thirty-eight thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(7551, 86177, 'eighty-six thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(7552, 76698, 'seventy-six thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(7553, 98127, 'ninety-eight thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(7554, 45165, 'forty-five thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(7555, 20447, 'twenty thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(7556, 50029, 'fifty thousand twenty-nine');\nINSERT INTO t3 VALUES(7557, 45474, 'forty-five thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(7558, 58763, 'fifty-eight thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(7559, 1595, 'one thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(7560, 85801, 'eighty-five thousand eight hundred one');\nINSERT INTO t3 VALUES(7561, 71686, 'seventy-one thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(7562, 48690, 'forty-eight thousand six hundred ninety');\nINSERT INTO t3 VALUES(7563, 69831, 'sixty-nine thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(7564, 41830, 'forty-one thousand eight hundred thirty');\nINSERT INTO t3 VALUES(7565, 39401, 'thirty-nine thousand four hundred one');\nINSERT INTO t3 VALUES(7566, 36409, 'thirty-six thousand four hundred nine');\nINSERT INTO t3 VALUES(7567, 93546, 'ninety-three thousand five hundred forty-six');\nINSERT INTO t3 VALUES(7568, 28623, 'twenty-eight thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(7569, 76447, 'seventy-six thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(7570, 74155, 'seventy-four thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(7571, 27676, 'twenty-seven thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(7572, 93103, 'ninety-three thousand one hundred three');\nINSERT INTO t3 VALUES(7573, 74447, 'seventy-four thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(7574, 15621, 'fifteen thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(7575, 2525, 'two thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(7576, 33109, 'thirty-three thousand one hundred nine');\nINSERT INTO t3 VALUES(7577, 64120, 'sixty-four thousand one hundred twenty');\nINSERT INTO t3 VALUES(7578, 52964, 'fifty-two thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(7579, 76616, 'seventy-six thousand six hundred sixteen');\nINSERT INTO t3 VALUES(7580, 48564, 'forty-eight thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(7581, 16025, 'sixteen thousand twenty-five');\nINSERT INTO t3 VALUES(7582, 80423, 'eighty thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(7583, 70279, 'seventy thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(7584, 5922, 'five thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(7585, 98448, 'ninety-eight thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(7586, 87113, 'eighty-seven thousand one hundred thirteen');\nINSERT INTO t3 VALUES(7587, 94305, 'ninety-four thousand three hundred five');\nINSERT INTO t3 VALUES(7588, 16578, 'sixteen thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(7589, 82326, 'eighty-two thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(7590, 88899, 'eighty-eight thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(7591, 44787, 'forty-four thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(7592, 33204, 'thirty-three thousand two hundred four');\nINSERT INTO t3 VALUES(7593, 57376, 'fifty-seven thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(7594, 13450, 'thirteen thousand four hundred fifty');\nINSERT INTO t3 VALUES(7595, 12044, 'twelve thousand forty-four');\nINSERT INTO t3 VALUES(7596, 44098, 'forty-four thousand ninety-eight');\nINSERT INTO t3 VALUES(7597, 52412, 'fifty-two thousand four hundred twelve');\nINSERT INTO t3 VALUES(7598, 10663, 'ten thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(7599, 99892, 'ninety-nine thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(7600, 63839, 'sixty-three thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(7601, 49410, 'forty-nine thousand four hundred ten');\nINSERT INTO t3 VALUES(7602, 61592, 'sixty-one thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(7603, 24187, 'twenty-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(7604, 697, 'six hundred ninety-seven');\nINSERT INTO t3 VALUES(7605, 73808, 'seventy-three thousand eight hundred eight');\nINSERT INTO t3 VALUES(7606, 51709, 'fifty-one thousand seven hundred nine');\nINSERT INTO t3 VALUES(7607, 28293, 'twenty-eight thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(7608, 10204, 'ten thousand two hundred four');\nINSERT INTO t3 VALUES(7609, 67203, 'sixty-seven thousand two hundred three');\nINSERT INTO t3 VALUES(7610, 12565, 'twelve thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(7611, 25215, 'twenty-five thousand two hundred fifteen');\nINSERT INTO t3 VALUES(7612, 34623, 'thirty-four thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(7613, 69754, 'sixty-nine thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(7614, 11969, 'eleven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(7615, 86414, 'eighty-six thousand four hundred fourteen');\nINSERT INTO t3 VALUES(7616, 77625, 'seventy-seven thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(7617, 73643, 'seventy-three thousand six hundred forty-three');\nINSERT INTO t3 VALUES(7618, 82224, 'eighty-two thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(7619, 86857, 'eighty-six thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(7620, 23712, 'twenty-three thousand seven hundred twelve');\nINSERT INTO t3 VALUES(7621, 9453, 'nine thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(7622, 14528, 'fourteen thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(7623, 44197, 'forty-four thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(7624, 80800, 'eighty thousand eight hundred');\nINSERT INTO t3 VALUES(7625, 36617, 'thirty-six thousand six hundred seventeen');\nINSERT INTO t3 VALUES(7626, 43490, 'forty-three thousand four hundred ninety');\nINSERT INTO t3 VALUES(7627, 40014, 'forty thousand fourteen');\nINSERT INTO t3 VALUES(7628, 27058, 'twenty-seven thousand fifty-eight');\nINSERT INTO t3 VALUES(7629, 31330, 'thirty-one thousand three hundred thirty');\nINSERT INTO t3 VALUES(7630, 18183, 'eighteen thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(7631, 26692, 'twenty-six thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(7632, 2326, 'two thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(7633, 8740, 'eight thousand seven hundred forty');\nINSERT INTO t3 VALUES(7634, 71872, 'seventy-one thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(7635, 94980, 'ninety-four thousand nine hundred eighty');\nINSERT INTO t3 VALUES(7636, 57421, 'fifty-seven thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(7637, 50262, 'fifty thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(7638, 92558, 'ninety-two thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(7639, 28433, 'twenty-eight thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(7640, 38487, 'thirty-eight thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(7641, 57935, 'fifty-seven thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(7642, 80686, 'eighty thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(7643, 82288, 'eighty-two thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(7644, 45145, 'forty-five thousand one hundred forty-five');\nINSERT INTO t3 VALUES(7645, 42731, 'forty-two thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(7646, 92859, 'ninety-two thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(7647, 25249, 'twenty-five thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(7648, 27889, 'twenty-seven thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(7649, 32498, 'thirty-two thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(7650, 67190, 'sixty-seven thousand one hundred ninety');\nINSERT INTO t3 VALUES(7651, 16483, 'sixteen thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(7652, 92921, 'ninety-two thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(7653, 81931, 'eighty-one thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(7654, 62118, 'sixty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(7655, 65606, 'sixty-five thousand six hundred six');\nINSERT INTO t3 VALUES(7656, 80140, 'eighty thousand one hundred forty');\nINSERT INTO t3 VALUES(7657, 17924, 'seventeen thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(7658, 73424, 'seventy-three thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(7659, 44329, 'forty-four thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(7660, 17251, 'seventeen thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(7661, 76550, 'seventy-six thousand five hundred fifty');\nINSERT INTO t3 VALUES(7662, 96373, 'ninety-six thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(7663, 74089, 'seventy-four thousand eighty-nine');\nINSERT INTO t3 VALUES(7664, 59197, 'fifty-nine thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(7665, 33611, 'thirty-three thousand six hundred eleven');\nINSERT INTO t3 VALUES(7666, 95643, 'ninety-five thousand six hundred forty-three');\nINSERT INTO t3 VALUES(7667, 75288, 'seventy-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(7668, 80946, 'eighty thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(7669, 65429, 'sixty-five thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(7670, 93209, 'ninety-three thousand two hundred nine');\nINSERT INTO t3 VALUES(7671, 57171, 'fifty-seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(7672, 7760, 'seven thousand seven hundred sixty');\nINSERT INTO t3 VALUES(7673, 91460, 'ninety-one thousand four hundred sixty');\nINSERT INTO t3 VALUES(7674, 63700, 'sixty-three thousand seven hundred');\nINSERT INTO t3 VALUES(7675, 82372, 'eighty-two thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(7676, 50389, 'fifty thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(7677, 67003, 'sixty-seven thousand three');\nINSERT INTO t3 VALUES(7678, 9189, 'nine thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(7679, 35140, 'thirty-five thousand one hundred forty');\nINSERT INTO t3 VALUES(7680, 23469, 'twenty-three thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(7681, 75837, 'seventy-five thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(7682, 50823, 'fifty thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(7683, 39602, 'thirty-nine thousand six hundred two');\nINSERT INTO t3 VALUES(7684, 2325, 'two thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(7685, 20892, 'twenty thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(7686, 37539, 'thirty-seven thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(7687, 48973, 'forty-eight thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(7688, 30137, 'thirty thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(7689, 64638, 'sixty-four thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(7690, 29011, 'twenty-nine thousand eleven');\nINSERT INTO t3 VALUES(7691, 28390, 'twenty-eight thousand three hundred ninety');\nINSERT INTO t3 VALUES(7692, 46941, 'forty-six thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(7693, 41927, 'forty-one thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(7694, 87484, 'eighty-seven thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(7695, 41679, 'forty-one thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(7696, 26773, 'twenty-six thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(7697, 10393, 'ten thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(7698, 14423, 'fourteen thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(7699, 15814, 'fifteen thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(7700, 89719, 'eighty-nine thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(7701, 28084, 'twenty-eight thousand eighty-four');\nINSERT INTO t3 VALUES(7702, 22485, 'twenty-two thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(7703, 41293, 'forty-one thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(7704, 7387, 'seven thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(7705, 52637, 'fifty-two thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(7706, 88522, 'eighty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(7707, 18970, 'eighteen thousand nine hundred seventy');\nINSERT INTO t3 VALUES(7708, 43657, 'forty-three thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(7709, 97783, 'ninety-seven thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(7710, 54116, 'fifty-four thousand one hundred sixteen');\nINSERT INTO t3 VALUES(7711, 82187, 'eighty-two thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(7712, 73570, 'seventy-three thousand five hundred seventy');\nINSERT INTO t3 VALUES(7713, 44730, 'forty-four thousand seven hundred thirty');\nINSERT INTO t3 VALUES(7714, 34501, 'thirty-four thousand five hundred one');\nINSERT INTO t3 VALUES(7715, 42000, 'forty-two thousand');\nINSERT INTO t3 VALUES(7716, 24661, 'twenty-four thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(7717, 77717, 'seventy-seven thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(7718, 40548, 'forty thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(7719, 50510, 'fifty thousand five hundred ten');\nINSERT INTO t3 VALUES(7720, 3961, 'three thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(7721, 39790, 'thirty-nine thousand seven hundred ninety');\nINSERT INTO t3 VALUES(7722, 38183, 'thirty-eight thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(7723, 66361, 'sixty-six thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(7724, 45077, 'forty-five thousand seventy-seven');\nINSERT INTO t3 VALUES(7725, 28732, 'twenty-eight thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(7726, 38696, 'thirty-eight thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(7727, 30611, 'thirty thousand six hundred eleven');\nINSERT INTO t3 VALUES(7728, 76970, 'seventy-six thousand nine hundred seventy');\nINSERT INTO t3 VALUES(7729, 71637, 'seventy-one thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(7730, 53458, 'fifty-three thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(7731, 59707, 'fifty-nine thousand seven hundred seven');\nINSERT INTO t3 VALUES(7732, 22138, 'twenty-two thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(7733, 98817, 'ninety-eight thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(7734, 65492, 'sixty-five thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(7735, 90389, 'ninety thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(7736, 32177, 'thirty-two thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(7737, 45441, 'forty-five thousand four hundred forty-one');\nINSERT INTO t3 VALUES(7738, 37475, 'thirty-seven thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(7739, 86254, 'eighty-six thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(7740, 67310, 'sixty-seven thousand three hundred ten');\nINSERT INTO t3 VALUES(7741, 44406, 'forty-four thousand four hundred six');\nINSERT INTO t3 VALUES(7742, 92365, 'ninety-two thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(7743, 3669, 'three thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(7744, 72385, 'seventy-two thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(7745, 28656, 'twenty-eight thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(7746, 34393, 'thirty-four thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(7747, 23183, 'twenty-three thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(7748, 94824, 'ninety-four thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(7749, 80816, 'eighty thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(7750, 43350, 'forty-three thousand three hundred fifty');\nINSERT INTO t3 VALUES(7751, 74944, 'seventy-four thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(7752, 57786, 'fifty-seven thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(7753, 76814, 'seventy-six thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(7754, 48104, 'forty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(7755, 65442, 'sixty-five thousand four hundred forty-two');\nINSERT INTO t3 VALUES(7756, 45982, 'forty-five thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(7757, 72415, 'seventy-two thousand four hundred fifteen');\nINSERT INTO t3 VALUES(7758, 49098, 'forty-nine thousand ninety-eight');\nINSERT INTO t3 VALUES(7759, 59919, 'fifty-nine thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(7760, 56507, 'fifty-six thousand five hundred seven');\nINSERT INTO t3 VALUES(7761, 85707, 'eighty-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(7762, 54960, 'fifty-four thousand nine hundred sixty');\nINSERT INTO t3 VALUES(7763, 97175, 'ninety-seven thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(7764, 37918, 'thirty-seven thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(7765, 73860, 'seventy-three thousand eight hundred sixty');\nINSERT INTO t3 VALUES(7766, 31892, 'thirty-one thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(7767, 41566, 'forty-one thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(7768, 82413, 'eighty-two thousand four hundred thirteen');\nINSERT INTO t3 VALUES(7769, 59479, 'fifty-nine thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(7770, 64370, 'sixty-four thousand three hundred seventy');\nINSERT INTO t3 VALUES(7771, 4669, 'four thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(7772, 14769, 'fourteen thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(7773, 53780, 'fifty-three thousand seven hundred eighty');\nINSERT INTO t3 VALUES(7774, 62838, 'sixty-two thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(7775, 34292, 'thirty-four thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(7776, 3466, 'three thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(7777, 76865, 'seventy-six thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(7778, 17160, 'seventeen thousand one hundred sixty');\nINSERT INTO t3 VALUES(7779, 401, 'four hundred one');\nINSERT INTO t3 VALUES(7780, 17164, 'seventeen thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(7781, 75688, 'seventy-five thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(7782, 11361, 'eleven thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(7783, 37011, 'thirty-seven thousand eleven');\nINSERT INTO t3 VALUES(7784, 1004, 'one thousand four');\nINSERT INTO t3 VALUES(7785, 59597, 'fifty-nine thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(7786, 95316, 'ninety-five thousand three hundred sixteen');\nINSERT INTO t3 VALUES(7787, 98556, 'ninety-eight thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(7788, 21101, 'twenty-one thousand one hundred one');\nINSERT INTO t3 VALUES(7789, 61503, 'sixty-one thousand five hundred three');\nINSERT INTO t3 VALUES(7790, 18958, 'eighteen thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(7791, 16053, 'sixteen thousand fifty-three');\nINSERT INTO t3 VALUES(7792, 34345, 'thirty-four thousand three hundred forty-five');\nINSERT INTO t3 VALUES(7793, 71286, 'seventy-one thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(7794, 55079, 'fifty-five thousand seventy-nine');\nINSERT INTO t3 VALUES(7795, 84709, 'eighty-four thousand seven hundred nine');\nINSERT INTO t3 VALUES(7796, 6401, 'six thousand four hundred one');\nINSERT INTO t3 VALUES(7797, 49916, 'forty-nine thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(7798, 16557, 'sixteen thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(7799, 53884, 'fifty-three thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(7800, 49497, 'forty-nine thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(7801, 35399, 'thirty-five thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(7802, 32014, 'thirty-two thousand fourteen');\nINSERT INTO t3 VALUES(7803, 80150, 'eighty thousand one hundred fifty');\nINSERT INTO t3 VALUES(7804, 76209, 'seventy-six thousand two hundred nine');\nINSERT INTO t3 VALUES(7805, 27119, 'twenty-seven thousand one hundred nineteen');\nINSERT INTO t3 VALUES(7806, 1436, 'one thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(7807, 28443, 'twenty-eight thousand four hundred forty-three');\nINSERT INTO t3 VALUES(7808, 5128, 'five thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(7809, 42019, 'forty-two thousand nineteen');\nINSERT INTO t3 VALUES(7810, 67110, 'sixty-seven thousand one hundred ten');\nINSERT INTO t3 VALUES(7811, 72176, 'seventy-two thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(7812, 85266, 'eighty-five thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(7813, 57660, 'fifty-seven thousand six hundred sixty');\nINSERT INTO t3 VALUES(7814, 12268, 'twelve thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(7815, 49656, 'forty-nine thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(7816, 16759, 'sixteen thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(7817, 58515, 'fifty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(7818, 71716, 'seventy-one thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(7819, 3380, 'three thousand three hundred eighty');\nINSERT INTO t3 VALUES(7820, 41427, 'forty-one thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(7821, 45370, 'forty-five thousand three hundred seventy');\nINSERT INTO t3 VALUES(7822, 71901, 'seventy-one thousand nine hundred one');\nINSERT INTO t3 VALUES(7823, 65301, 'sixty-five thousand three hundred one');\nINSERT INTO t3 VALUES(7824, 2670, 'two thousand six hundred seventy');\nINSERT INTO t3 VALUES(7825, 19172, 'nineteen thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(7826, 68339, 'sixty-eight thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(7827, 16225, 'sixteen thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(7828, 18858, 'eighteen thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(7829, 88999, 'eighty-eight thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(7830, 51327, 'fifty-one thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(7831, 48742, 'forty-eight thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(7832, 23314, 'twenty-three thousand three hundred fourteen');\nINSERT INTO t3 VALUES(7833, 91632, 'ninety-one thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(7834, 64090, 'sixty-four thousand ninety');\nINSERT INTO t3 VALUES(7835, 35586, 'thirty-five thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(7836, 68515, 'sixty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(7837, 29135, 'twenty-nine thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(7838, 82777, 'eighty-two thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(7839, 11929, 'eleven thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(7840, 90970, 'ninety thousand nine hundred seventy');\nINSERT INTO t3 VALUES(7841, 28168, 'twenty-eight thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(7842, 33405, 'thirty-three thousand four hundred five');\nINSERT INTO t3 VALUES(7843, 39836, 'thirty-nine thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(7844, 95084, 'ninety-five thousand eighty-four');\nINSERT INTO t3 VALUES(7845, 69434, 'sixty-nine thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(7846, 9721, 'nine thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(7847, 95295, 'ninety-five thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(7848, 67347, 'sixty-seven thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(7849, 98004, 'ninety-eight thousand four');\nINSERT INTO t3 VALUES(7850, 68255, 'sixty-eight thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(7851, 27363, 'twenty-seven thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(7852, 57905, 'fifty-seven thousand nine hundred five');\nINSERT INTO t3 VALUES(7853, 24252, 'twenty-four thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(7854, 67704, 'sixty-seven thousand seven hundred four');\nINSERT INTO t3 VALUES(7855, 21725, 'twenty-one thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(7856, 91845, 'ninety-one thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(7857, 1314, 'one thousand three hundred fourteen');\nINSERT INTO t3 VALUES(7858, 9917, 'nine thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(7859, 75048, 'seventy-five thousand forty-eight');\nINSERT INTO t3 VALUES(7860, 85623, 'eighty-five thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(7861, 71987, 'seventy-one thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(7862, 24285, 'twenty-four thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(7863, 58454, 'fifty-eight thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(7864, 42786, 'forty-two thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(7865, 79234, 'seventy-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(7866, 99516, 'ninety-nine thousand five hundred sixteen');\nINSERT INTO t3 VALUES(7867, 64444, 'sixty-four thousand four hundred forty-four');\nINSERT INTO t3 VALUES(7868, 7352, 'seven thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(7869, 63602, 'sixty-three thousand six hundred two');\nINSERT INTO t3 VALUES(7870, 9958, 'nine thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(7871, 71753, 'seventy-one thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(7872, 86691, 'eighty-six thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(7873, 47792, 'forty-seven thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(7874, 33791, 'thirty-three thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(7875, 51444, 'fifty-one thousand four hundred forty-four');\nINSERT INTO t3 VALUES(7876, 11292, 'eleven thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(7877, 78248, 'seventy-eight thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(7878, 75482, 'seventy-five thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(7879, 20041, 'twenty thousand forty-one');\nINSERT INTO t3 VALUES(7880, 98709, 'ninety-eight thousand seven hundred nine');\nINSERT INTO t3 VALUES(7881, 83684, 'eighty-three thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(7882, 25884, 'twenty-five thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(7883, 4485, 'four thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(7884, 58970, 'fifty-eight thousand nine hundred seventy');\nINSERT INTO t3 VALUES(7885, 56064, 'fifty-six thousand sixty-four');\nINSERT INTO t3 VALUES(7886, 37825, 'thirty-seven thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(7887, 60151, 'sixty thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(7888, 24460, 'twenty-four thousand four hundred sixty');\nINSERT INTO t3 VALUES(7889, 91714, 'ninety-one thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(7890, 8689, 'eight thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(7891, 86106, 'eighty-six thousand one hundred six');\nINSERT INTO t3 VALUES(7892, 67108, 'sixty-seven thousand one hundred eight');\nINSERT INTO t3 VALUES(7893, 2998, 'two thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(7894, 19490, 'nineteen thousand four hundred ninety');\nINSERT INTO t3 VALUES(7895, 94871, 'ninety-four thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(7896, 71871, 'seventy-one thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(7897, 59040, 'fifty-nine thousand forty');\nINSERT INTO t3 VALUES(7898, 30046, 'thirty thousand forty-six');\nINSERT INTO t3 VALUES(7899, 33383, 'thirty-three thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(7900, 90123, 'ninety thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(7901, 59580, 'fifty-nine thousand five hundred eighty');\nINSERT INTO t3 VALUES(7902, 37492, 'thirty-seven thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(7903, 46958, 'forty-six thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(7904, 36796, 'thirty-six thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(7905, 52956, 'fifty-two thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(7906, 50908, 'fifty thousand nine hundred eight');\nINSERT INTO t3 VALUES(7907, 91976, 'ninety-one thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(7908, 22398, 'twenty-two thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(7909, 24275, 'twenty-four thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(7910, 74154, 'seventy-four thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(7911, 34601, 'thirty-four thousand six hundred one');\nINSERT INTO t3 VALUES(7912, 66135, 'sixty-six thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(7913, 16419, 'sixteen thousand four hundred nineteen');\nINSERT INTO t3 VALUES(7914, 78589, 'seventy-eight thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(7915, 15470, 'fifteen thousand four hundred seventy');\nINSERT INTO t3 VALUES(7916, 95304, 'ninety-five thousand three hundred four');\nINSERT INTO t3 VALUES(7917, 86871, 'eighty-six thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(7918, 12575, 'twelve thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(7919, 43291, 'forty-three thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(7920, 15152, 'fifteen thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(7921, 56256, 'fifty-six thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(7922, 57666, 'fifty-seven thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(7923, 44178, 'forty-four thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(7924, 4593, 'four thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(7925, 19782, 'nineteen thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(7926, 40497, 'forty thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(7927, 98209, 'ninety-eight thousand two hundred nine');\nINSERT INTO t3 VALUES(7928, 69063, 'sixty-nine thousand sixty-three');\nINSERT INTO t3 VALUES(7929, 59555, 'fifty-nine thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(7930, 30160, 'thirty thousand one hundred sixty');\nINSERT INTO t3 VALUES(7931, 50693, 'fifty thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(7932, 51358, 'fifty-one thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(7933, 79522, 'seventy-nine thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(7934, 99189, 'ninety-nine thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(7935, 58707, 'fifty-eight thousand seven hundred seven');\nINSERT INTO t3 VALUES(7936, 50317, 'fifty thousand three hundred seventeen');\nINSERT INTO t3 VALUES(7937, 78319, 'seventy-eight thousand three hundred nineteen');\nINSERT INTO t3 VALUES(7938, 94596, 'ninety-four thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(7939, 77718, 'seventy-seven thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(7940, 92647, 'ninety-two thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(7941, 53345, 'fifty-three thousand three hundred forty-five');\nINSERT INTO t3 VALUES(7942, 69238, 'sixty-nine thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(7943, 37157, 'thirty-seven thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(7944, 23715, 'twenty-three thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(7945, 38810, 'thirty-eight thousand eight hundred ten');\nINSERT INTO t3 VALUES(7946, 8941, 'eight thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(7947, 46752, 'forty-six thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(7948, 25448, 'twenty-five thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(7949, 22886, 'twenty-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(7950, 57989, 'fifty-seven thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(7951, 92414, 'ninety-two thousand four hundred fourteen');\nINSERT INTO t3 VALUES(7952, 12194, 'twelve thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(7953, 97932, 'ninety-seven thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(7954, 61142, 'sixty-one thousand one hundred forty-two');\nINSERT INTO t3 VALUES(7955, 84938, 'eighty-four thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(7956, 15406, 'fifteen thousand four hundred six');\nINSERT INTO t3 VALUES(7957, 71546, 'seventy-one thousand five hundred forty-six');\nINSERT INTO t3 VALUES(7958, 41813, 'forty-one thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(7959, 21609, 'twenty-one thousand six hundred nine');\nINSERT INTO t3 VALUES(7960, 19274, 'nineteen thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(7961, 21582, 'twenty-one thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(7962, 22003, 'twenty-two thousand three');\nINSERT INTO t3 VALUES(7963, 49892, 'forty-nine thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(7964, 57352, 'fifty-seven thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(7965, 43051, 'forty-three thousand fifty-one');\nINSERT INTO t3 VALUES(7966, 91397, 'ninety-one thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(7967, 85229, 'eighty-five thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(7968, 39150, 'thirty-nine thousand one hundred fifty');\nINSERT INTO t3 VALUES(7969, 35499, 'thirty-five thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(7970, 72590, 'seventy-two thousand five hundred ninety');\nINSERT INTO t3 VALUES(7971, 20282, 'twenty thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(7972, 27358, 'twenty-seven thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(7973, 27479, 'twenty-seven thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(7974, 65659, 'sixty-five thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(7975, 18603, 'eighteen thousand six hundred three');\nINSERT INTO t3 VALUES(7976, 33109, 'thirty-three thousand one hundred nine');\nINSERT INTO t3 VALUES(7977, 18538, 'eighteen thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(7978, 5783, 'five thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(7979, 69921, 'sixty-nine thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(7980, 33659, 'thirty-three thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(7981, 24916, 'twenty-four thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(7982, 56172, 'fifty-six thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(7983, 2643, 'two thousand six hundred forty-three');\nINSERT INTO t3 VALUES(7984, 40158, 'forty thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(7985, 85074, 'eighty-five thousand seventy-four');\nINSERT INTO t3 VALUES(7986, 70835, 'seventy thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(7987, 99934, 'ninety-nine thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(7988, 57245, 'fifty-seven thousand two hundred forty-five');\nINSERT INTO t3 VALUES(7989, 18632, 'eighteen thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(7990, 39069, 'thirty-nine thousand sixty-nine');\nINSERT INTO t3 VALUES(7991, 1110, 'one thousand one hundred ten');\nINSERT INTO t3 VALUES(7992, 2711, 'two thousand seven hundred eleven');\nINSERT INTO t3 VALUES(7993, 67841, 'sixty-seven thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(7994, 60824, 'sixty thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(7995, 85780, 'eighty-five thousand seven hundred eighty');\nINSERT INTO t3 VALUES(7996, 60914, 'sixty thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(7997, 52986, 'fifty-two thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(7998, 33458, 'thirty-three thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(7999, 2844, 'two thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(8000, 25070, 'twenty-five thousand seventy');\nINSERT INTO t3 VALUES(8001, 8928, 'eight thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(8002, 66324, 'sixty-six thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(8003, 53873, 'fifty-three thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(8004, 42018, 'forty-two thousand eighteen');\nINSERT INTO t3 VALUES(8005, 3208, 'three thousand two hundred eight');\nINSERT INTO t3 VALUES(8006, 43547, 'forty-three thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(8007, 22134, 'twenty-two thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(8008, 77906, 'seventy-seven thousand nine hundred six');\nINSERT INTO t3 VALUES(8009, 61053, 'sixty-one thousand fifty-three');\nINSERT INTO t3 VALUES(8010, 78344, 'seventy-eight thousand three hundred forty-four');\nINSERT INTO t3 VALUES(8011, 70308, 'seventy thousand three hundred eight');\nINSERT INTO t3 VALUES(8012, 16823, 'sixteen thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(8013, 27022, 'twenty-seven thousand twenty-two');\nINSERT INTO t3 VALUES(8014, 64371, 'sixty-four thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(8015, 38814, 'thirty-eight thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(8016, 85065, 'eighty-five thousand sixty-five');\nINSERT INTO t3 VALUES(8017, 34790, 'thirty-four thousand seven hundred ninety');\nINSERT INTO t3 VALUES(8018, 37346, 'thirty-seven thousand three hundred forty-six');\nINSERT INTO t3 VALUES(8019, 30352, 'thirty thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(8020, 32487, 'thirty-two thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(8021, 75987, 'seventy-five thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(8022, 11705, 'eleven thousand seven hundred five');\nINSERT INTO t3 VALUES(8023, 12606, 'twelve thousand six hundred six');\nINSERT INTO t3 VALUES(8024, 74122, 'seventy-four thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(8025, 34554, 'thirty-four thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(8026, 66, 'sixty-six');\nINSERT INTO t3 VALUES(8027, 63000, 'sixty-three thousand');\nINSERT INTO t3 VALUES(8028, 59204, 'fifty-nine thousand two hundred four');\nINSERT INTO t3 VALUES(8029, 46175, 'forty-six thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(8030, 57222, 'fifty-seven thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(8031, 65923, 'sixty-five thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(8032, 45749, 'forty-five thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(8033, 90379, 'ninety thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(8034, 50801, 'fifty thousand eight hundred one');\nINSERT INTO t3 VALUES(8035, 50274, 'fifty thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(8036, 31845, 'thirty-one thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(8037, 60255, 'sixty thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(8038, 46856, 'forty-six thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(8039, 78744, 'seventy-eight thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(8040, 26629, 'twenty-six thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(8041, 2948, 'two thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(8042, 49812, 'forty-nine thousand eight hundred twelve');\nINSERT INTO t3 VALUES(8043, 24675, 'twenty-four thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(8044, 82955, 'eighty-two thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(8045, 13014, 'thirteen thousand fourteen');\nINSERT INTO t3 VALUES(8046, 72677, 'seventy-two thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(8047, 7789, 'seven thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(8048, 745, 'seven hundred forty-five');\nINSERT INTO t3 VALUES(8049, 23420, 'twenty-three thousand four hundred twenty');\nINSERT INTO t3 VALUES(8050, 19677, 'nineteen thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(8051, 33494, 'thirty-three thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(8052, 58613, 'fifty-eight thousand six hundred thirteen');\nINSERT INTO t3 VALUES(8053, 16831, 'sixteen thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(8054, 33938, 'thirty-three thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(8055, 44808, 'forty-four thousand eight hundred eight');\nINSERT INTO t3 VALUES(8056, 83042, 'eighty-three thousand forty-two');\nINSERT INTO t3 VALUES(8057, 69593, 'sixty-nine thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(8058, 43322, 'forty-three thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(8059, 14947, 'fourteen thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(8060, 73891, 'seventy-three thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(8061, 5146, 'five thousand one hundred forty-six');\nINSERT INTO t3 VALUES(8062, 97232, 'ninety-seven thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(8063, 71076, 'seventy-one thousand seventy-six');\nINSERT INTO t3 VALUES(8064, 48429, 'forty-eight thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(8065, 50647, 'fifty thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(8066, 42078, 'forty-two thousand seventy-eight');\nINSERT INTO t3 VALUES(8067, 98266, 'ninety-eight thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(8068, 90976, 'ninety thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(8069, 3942, 'three thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(8070, 14231, 'fourteen thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(8071, 43755, 'forty-three thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(8072, 19136, 'nineteen thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(8073, 87900, 'eighty-seven thousand nine hundred');\nINSERT INTO t3 VALUES(8074, 12572, 'twelve thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(8075, 65299, 'sixty-five thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(8076, 86149, 'eighty-six thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(8077, 70547, 'seventy thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(8078, 70255, 'seventy thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(8079, 53491, 'fifty-three thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(8080, 84856, 'eighty-four thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(8081, 64583, 'sixty-four thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(8082, 15853, 'fifteen thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(8083, 68244, 'sixty-eight thousand two hundred forty-four');\nINSERT INTO t3 VALUES(8084, 94505, 'ninety-four thousand five hundred five');\nINSERT INTO t3 VALUES(8085, 63942, 'sixty-three thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(8086, 12813, 'twelve thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(8087, 74644, 'seventy-four thousand six hundred forty-four');\nINSERT INTO t3 VALUES(8088, 5559, 'five thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(8089, 75874, 'seventy-five thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(8090, 73084, 'seventy-three thousand eighty-four');\nINSERT INTO t3 VALUES(8091, 94530, 'ninety-four thousand five hundred thirty');\nINSERT INTO t3 VALUES(8092, 73051, 'seventy-three thousand fifty-one');\nINSERT INTO t3 VALUES(8093, 67429, 'sixty-seven thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(8094, 90987, 'ninety thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(8095, 69402, 'sixty-nine thousand four hundred two');\nINSERT INTO t3 VALUES(8096, 46649, 'forty-six thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(8097, 83657, 'eighty-three thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(8098, 51060, 'fifty-one thousand sixty');\nINSERT INTO t3 VALUES(8099, 5454, 'five thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(8100, 80481, 'eighty thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(8101, 72941, 'seventy-two thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(8102, 59662, 'fifty-nine thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(8103, 94896, 'ninety-four thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(8104, 43533, 'forty-three thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(8105, 44784, 'forty-four thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(8106, 34969, 'thirty-four thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(8107, 85870, 'eighty-five thousand eight hundred seventy');\nINSERT INTO t3 VALUES(8108, 39439, 'thirty-nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(8109, 69082, 'sixty-nine thousand eighty-two');\nINSERT INTO t3 VALUES(8110, 87282, 'eighty-seven thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(8111, 92034, 'ninety-two thousand thirty-four');\nINSERT INTO t3 VALUES(8112, 51510, 'fifty-one thousand five hundred ten');\nINSERT INTO t3 VALUES(8113, 88207, 'eighty-eight thousand two hundred seven');\nINSERT INTO t3 VALUES(8114, 43004, 'forty-three thousand four');\nINSERT INTO t3 VALUES(8115, 97505, 'ninety-seven thousand five hundred five');\nINSERT INTO t3 VALUES(8116, 95511, 'ninety-five thousand five hundred eleven');\nINSERT INTO t3 VALUES(8117, 56740, 'fifty-six thousand seven hundred forty');\nINSERT INTO t3 VALUES(8118, 55445, 'fifty-five thousand four hundred forty-five');\nINSERT INTO t3 VALUES(8119, 54452, 'fifty-four thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(8120, 12929, 'twelve thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(8121, 14668, 'fourteen thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(8122, 98628, 'ninety-eight thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(8123, 51968, 'fifty-one thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(8124, 77764, 'seventy-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(8125, 20181, 'twenty thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(8126, 69051, 'sixty-nine thousand fifty-one');\nINSERT INTO t3 VALUES(8127, 70075, 'seventy thousand seventy-five');\nINSERT INTO t3 VALUES(8128, 31563, 'thirty-one thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(8129, 7790, 'seven thousand seven hundred ninety');\nINSERT INTO t3 VALUES(8130, 1957, 'one thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(8131, 84808, 'eighty-four thousand eight hundred eight');\nINSERT INTO t3 VALUES(8132, 4292, 'four thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(8133, 44569, 'forty-four thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(8134, 47193, 'forty-seven thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(8135, 36028, 'thirty-six thousand twenty-eight');\nINSERT INTO t3 VALUES(8136, 15304, 'fifteen thousand three hundred four');\nINSERT INTO t3 VALUES(8137, 67755, 'sixty-seven thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(8138, 89332, 'eighty-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(8139, 64504, 'sixty-four thousand five hundred four');\nINSERT INTO t3 VALUES(8140, 7286, 'seven thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(8141, 32677, 'thirty-two thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(8142, 41147, 'forty-one thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(8143, 39377, 'thirty-nine thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(8144, 7483, 'seven thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(8145, 96098, 'ninety-six thousand ninety-eight');\nINSERT INTO t3 VALUES(8146, 83280, 'eighty-three thousand two hundred eighty');\nINSERT INTO t3 VALUES(8147, 54576, 'fifty-four thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(8148, 29133, 'twenty-nine thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(8149, 99857, 'ninety-nine thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(8150, 43188, 'forty-three thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(8151, 85086, 'eighty-five thousand eighty-six');\nINSERT INTO t3 VALUES(8152, 68935, 'sixty-eight thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(8153, 53435, 'fifty-three thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(8154, 79809, 'seventy-nine thousand eight hundred nine');\nINSERT INTO t3 VALUES(8155, 6183, 'six thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(8156, 6566, 'six thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(8157, 54440, 'fifty-four thousand four hundred forty');\nINSERT INTO t3 VALUES(8158, 23358, 'twenty-three thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(8159, 58084, 'fifty-eight thousand eighty-four');\nINSERT INTO t3 VALUES(8160, 84325, 'eighty-four thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(8161, 99143, 'ninety-nine thousand one hundred forty-three');\nINSERT INTO t3 VALUES(8162, 80258, 'eighty thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(8163, 66455, 'sixty-six thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(8164, 92738, 'ninety-two thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(8165, 87998, 'eighty-seven thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(8166, 53623, 'fifty-three thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(8167, 96117, 'ninety-six thousand one hundred seventeen');\nINSERT INTO t3 VALUES(8168, 37290, 'thirty-seven thousand two hundred ninety');\nINSERT INTO t3 VALUES(8169, 24322, 'twenty-four thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(8170, 73911, 'seventy-three thousand nine hundred eleven');\nINSERT INTO t3 VALUES(8171, 12578, 'twelve thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(8172, 21959, 'twenty-one thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(8173, 25342, 'twenty-five thousand three hundred forty-two');\nINSERT INTO t3 VALUES(8174, 21320, 'twenty-one thousand three hundred twenty');\nINSERT INTO t3 VALUES(8175, 71598, 'seventy-one thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(8176, 70198, 'seventy thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(8177, 14674, 'fourteen thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(8178, 6437, 'six thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(8179, 2993, 'two thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(8180, 85920, 'eighty-five thousand nine hundred twenty');\nINSERT INTO t3 VALUES(8181, 3411, 'three thousand four hundred eleven');\nINSERT INTO t3 VALUES(8182, 95554, 'ninety-five thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(8183, 5261, 'five thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(8184, 78776, 'seventy-eight thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(8185, 85782, 'eighty-five thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(8186, 44491, 'forty-four thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(8187, 21749, 'twenty-one thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(8188, 91535, 'ninety-one thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(8189, 32517, 'thirty-two thousand five hundred seventeen');\nINSERT INTO t3 VALUES(8190, 91762, 'ninety-one thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(8191, 3283, 'three thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(8192, 68033, 'sixty-eight thousand thirty-three');\nINSERT INTO t3 VALUES(8193, 64778, 'sixty-four thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(8194, 51967, 'fifty-one thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(8195, 9192, 'nine thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(8196, 21752, 'twenty-one thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(8197, 46847, 'forty-six thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(8198, 42572, 'forty-two thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(8199, 11026, 'eleven thousand twenty-six');\nINSERT INTO t3 VALUES(8200, 35955, 'thirty-five thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(8201, 889, 'eight hundred eighty-nine');\nINSERT INTO t3 VALUES(8202, 82958, 'eighty-two thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(8203, 26821, 'twenty-six thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(8204, 20434, 'twenty thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(8205, 62281, 'sixty-two thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(8206, 83577, 'eighty-three thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(8207, 27138, 'twenty-seven thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(8208, 76683, 'seventy-six thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(8209, 51137, 'fifty-one thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(8210, 72581, 'seventy-two thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(8211, 62964, 'sixty-two thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(8212, 62490, 'sixty-two thousand four hundred ninety');\nINSERT INTO t3 VALUES(8213, 44681, 'forty-four thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(8214, 77074, 'seventy-seven thousand seventy-four');\nINSERT INTO t3 VALUES(8215, 83710, 'eighty-three thousand seven hundred ten');\nINSERT INTO t3 VALUES(8216, 60067, 'sixty thousand sixty-seven');\nINSERT INTO t3 VALUES(8217, 49962, 'forty-nine thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(8218, 61116, 'sixty-one thousand one hundred sixteen');\nINSERT INTO t3 VALUES(8219, 20499, 'twenty thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(8220, 16566, 'sixteen thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(8221, 4896, 'four thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(8222, 99790, 'ninety-nine thousand seven hundred ninety');\nINSERT INTO t3 VALUES(8223, 76178, 'seventy-six thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(8224, 94185, 'ninety-four thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(8225, 40965, 'forty thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(8226, 77461, 'seventy-seven thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(8227, 58507, 'fifty-eight thousand five hundred seven');\nINSERT INTO t3 VALUES(8228, 28533, 'twenty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(8229, 97940, 'ninety-seven thousand nine hundred forty');\nINSERT INTO t3 VALUES(8230, 9378, 'nine thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(8231, 22730, 'twenty-two thousand seven hundred thirty');\nINSERT INTO t3 VALUES(8232, 41840, 'forty-one thousand eight hundred forty');\nINSERT INTO t3 VALUES(8233, 96246, 'ninety-six thousand two hundred forty-six');\nINSERT INTO t3 VALUES(8234, 89165, 'eighty-nine thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(8235, 34253, 'thirty-four thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(8236, 16670, 'sixteen thousand six hundred seventy');\nINSERT INTO t3 VALUES(8237, 7604, 'seven thousand six hundred four');\nINSERT INTO t3 VALUES(8238, 17221, 'seventeen thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(8239, 4489, 'four thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(8240, 6714, 'six thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(8241, 41924, 'forty-one thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(8242, 62639, 'sixty-two thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(8243, 26024, 'twenty-six thousand twenty-four');\nINSERT INTO t3 VALUES(8244, 79183, 'seventy-nine thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(8245, 74813, 'seventy-four thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(8246, 27014, 'twenty-seven thousand fourteen');\nINSERT INTO t3 VALUES(8247, 19087, 'nineteen thousand eighty-seven');\nINSERT INTO t3 VALUES(8248, 12466, 'twelve thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(8249, 99145, 'ninety-nine thousand one hundred forty-five');\nINSERT INTO t3 VALUES(8250, 44735, 'forty-four thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(8251, 62032, 'sixty-two thousand thirty-two');\nINSERT INTO t3 VALUES(8252, 77552, 'seventy-seven thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(8253, 99639, 'ninety-nine thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(8254, 54249, 'fifty-four thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(8255, 61701, 'sixty-one thousand seven hundred one');\nINSERT INTO t3 VALUES(8256, 83396, 'eighty-three thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(8257, 47620, 'forty-seven thousand six hundred twenty');\nINSERT INTO t3 VALUES(8258, 1042, 'one thousand forty-two');\nINSERT INTO t3 VALUES(8259, 15422, 'fifteen thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(8260, 71502, 'seventy-one thousand five hundred two');\nINSERT INTO t3 VALUES(8261, 29782, 'twenty-nine thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(8262, 96449, 'ninety-six thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(8263, 43260, 'forty-three thousand two hundred sixty');\nINSERT INTO t3 VALUES(8264, 30715, 'thirty thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(8265, 19509, 'nineteen thousand five hundred nine');\nINSERT INTO t3 VALUES(8266, 43298, 'forty-three thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(8267, 32807, 'thirty-two thousand eight hundred seven');\nINSERT INTO t3 VALUES(8268, 5203, 'five thousand two hundred three');\nINSERT INTO t3 VALUES(8269, 27490, 'twenty-seven thousand four hundred ninety');\nINSERT INTO t3 VALUES(8270, 13856, 'thirteen thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(8271, 34788, 'thirty-four thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(8272, 79621, 'seventy-nine thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(8273, 82808, 'eighty-two thousand eight hundred eight');\nINSERT INTO t3 VALUES(8274, 37417, 'thirty-seven thousand four hundred seventeen');\nINSERT INTO t3 VALUES(8275, 13244, 'thirteen thousand two hundred forty-four');\nINSERT INTO t3 VALUES(8276, 89970, 'eighty-nine thousand nine hundred seventy');\nINSERT INTO t3 VALUES(8277, 96425, 'ninety-six thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(8278, 34543, 'thirty-four thousand five hundred forty-three');\nINSERT INTO t3 VALUES(8279, 53736, 'fifty-three thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(8280, 9308, 'nine thousand three hundred eight');\nINSERT INTO t3 VALUES(8281, 63750, 'sixty-three thousand seven hundred fifty');\nINSERT INTO t3 VALUES(8282, 82176, 'eighty-two thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(8283, 13194, 'thirteen thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(8284, 13409, 'thirteen thousand four hundred nine');\nINSERT INTO t3 VALUES(8285, 28129, 'twenty-eight thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(8286, 81386, 'eighty-one thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(8287, 85996, 'eighty-five thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(8288, 48277, 'forty-eight thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(8289, 18567, 'eighteen thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(8290, 97133, 'ninety-seven thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(8291, 76330, 'seventy-six thousand three hundred thirty');\nINSERT INTO t3 VALUES(8292, 91044, 'ninety-one thousand forty-four');\nINSERT INTO t3 VALUES(8293, 46072, 'forty-six thousand seventy-two');\nINSERT INTO t3 VALUES(8294, 76296, 'seventy-six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(8295, 48214, 'forty-eight thousand two hundred fourteen');\nINSERT INTO t3 VALUES(8296, 6752, 'six thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(8297, 76845, 'seventy-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(8298, 13543, 'thirteen thousand five hundred forty-three');\nINSERT INTO t3 VALUES(8299, 36318, 'thirty-six thousand three hundred eighteen');\nINSERT INTO t3 VALUES(8300, 889, 'eight hundred eighty-nine');\nINSERT INTO t3 VALUES(8301, 40713, 'forty thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(8302, 70521, 'seventy thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(8303, 89295, 'eighty-nine thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(8304, 44531, 'forty-four thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(8305, 31892, 'thirty-one thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(8306, 86912, 'eighty-six thousand nine hundred twelve');\nINSERT INTO t3 VALUES(8307, 54944, 'fifty-four thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(8308, 68025, 'sixty-eight thousand twenty-five');\nINSERT INTO t3 VALUES(8309, 63382, 'sixty-three thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(8310, 72931, 'seventy-two thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(8311, 50168, 'fifty thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(8312, 32605, 'thirty-two thousand six hundred five');\nINSERT INTO t3 VALUES(8313, 20937, 'twenty thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(8314, 25080, 'twenty-five thousand eighty');\nINSERT INTO t3 VALUES(8315, 9824, 'nine thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(8316, 71137, 'seventy-one thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(8317, 24958, 'twenty-four thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(8318, 99835, 'ninety-nine thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(8319, 28418, 'twenty-eight thousand four hundred eighteen');\nINSERT INTO t3 VALUES(8320, 90929, 'ninety thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(8321, 3172, 'three thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(8322, 46563, 'forty-six thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(8323, 29177, 'twenty-nine thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(8324, 1303, 'one thousand three hundred three');\nINSERT INTO t3 VALUES(8325, 30302, 'thirty thousand three hundred two');\nINSERT INTO t3 VALUES(8326, 52575, 'fifty-two thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(8327, 36542, 'thirty-six thousand five hundred forty-two');\nINSERT INTO t3 VALUES(8328, 12329, 'twelve thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(8329, 92604, 'ninety-two thousand six hundred four');\nINSERT INTO t3 VALUES(8330, 51696, 'fifty-one thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(8331, 61183, 'sixty-one thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(8332, 34611, 'thirty-four thousand six hundred eleven');\nINSERT INTO t3 VALUES(8333, 88779, 'eighty-eight thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(8334, 2666, 'two thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(8335, 6915, 'six thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(8336, 46174, 'forty-six thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(8337, 78896, 'seventy-eight thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(8338, 6459, 'six thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(8339, 27371, 'twenty-seven thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(8340, 15615, 'fifteen thousand six hundred fifteen');\nINSERT INTO t3 VALUES(8341, 80469, 'eighty thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(8342, 35237, 'thirty-five thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(8343, 63927, 'sixty-three thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(8344, 13826, 'thirteen thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(8345, 76699, 'seventy-six thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(8346, 75679, 'seventy-five thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(8347, 6505, 'six thousand five hundred five');\nINSERT INTO t3 VALUES(8348, 2695, 'two thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(8349, 1716, 'one thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(8350, 79143, 'seventy-nine thousand one hundred forty-three');\nINSERT INTO t3 VALUES(8351, 44558, 'forty-four thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(8352, 78615, 'seventy-eight thousand six hundred fifteen');\nINSERT INTO t3 VALUES(8353, 37550, 'thirty-seven thousand five hundred fifty');\nINSERT INTO t3 VALUES(8354, 49053, 'forty-nine thousand fifty-three');\nINSERT INTO t3 VALUES(8355, 47259, 'forty-seven thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(8356, 22621, 'twenty-two thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(8357, 39368, 'thirty-nine thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(8358, 92407, 'ninety-two thousand four hundred seven');\nINSERT INTO t3 VALUES(8359, 77946, 'seventy-seven thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(8360, 34266, 'thirty-four thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(8361, 9912, 'nine thousand nine hundred twelve');\nINSERT INTO t3 VALUES(8362, 85464, 'eighty-five thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(8363, 46679, 'forty-six thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(8364, 14462, 'fourteen thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(8365, 11746, 'eleven thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(8366, 6500, 'six thousand five hundred');\nINSERT INTO t3 VALUES(8367, 54701, 'fifty-four thousand seven hundred one');\nINSERT INTO t3 VALUES(8368, 41957, 'forty-one thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(8369, 48638, 'forty-eight thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(8370, 49833, 'forty-nine thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(8371, 70205, 'seventy thousand two hundred five');\nINSERT INTO t3 VALUES(8372, 41075, 'forty-one thousand seventy-five');\nINSERT INTO t3 VALUES(8373, 60126, 'sixty thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(8374, 26884, 'twenty-six thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(8375, 5956, 'five thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(8376, 46191, 'forty-six thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(8377, 11167, 'eleven thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(8378, 71835, 'seventy-one thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(8379, 65888, 'sixty-five thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(8380, 86164, 'eighty-six thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(8381, 98878, 'ninety-eight thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(8382, 16039, 'sixteen thousand thirty-nine');\nINSERT INTO t3 VALUES(8383, 85445, 'eighty-five thousand four hundred forty-five');\nINSERT INTO t3 VALUES(8384, 64447, 'sixty-four thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(8385, 37932, 'thirty-seven thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(8386, 15854, 'fifteen thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(8387, 28488, 'twenty-eight thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(8388, 99324, 'ninety-nine thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(8389, 5481, 'five thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(8390, 89056, 'eighty-nine thousand fifty-six');\nINSERT INTO t3 VALUES(8391, 20327, 'twenty thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(8392, 37222, 'thirty-seven thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(8393, 43052, 'forty-three thousand fifty-two');\nINSERT INTO t3 VALUES(8394, 90659, 'ninety thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(8395, 27154, 'twenty-seven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(8396, 736, 'seven hundred thirty-six');\nINSERT INTO t3 VALUES(8397, 86046, 'eighty-six thousand forty-six');\nINSERT INTO t3 VALUES(8398, 7500, 'seven thousand five hundred');\nINSERT INTO t3 VALUES(8399, 51472, 'fifty-one thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(8400, 65371, 'sixty-five thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(8401, 49446, 'forty-nine thousand four hundred forty-six');\nINSERT INTO t3 VALUES(8402, 51721, 'fifty-one thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(8403, 25678, 'twenty-five thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(8404, 7300, 'seven thousand three hundred');\nINSERT INTO t3 VALUES(8405, 78695, 'seventy-eight thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(8406, 26671, 'twenty-six thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(8407, 77010, 'seventy-seven thousand ten');\nINSERT INTO t3 VALUES(8408, 63530, 'sixty-three thousand five hundred thirty');\nINSERT INTO t3 VALUES(8409, 164, 'one hundred sixty-four');\nINSERT INTO t3 VALUES(8410, 80868, 'eighty thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(8411, 12023, 'twelve thousand twenty-three');\nINSERT INTO t3 VALUES(8412, 22292, 'twenty-two thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(8413, 58107, 'fifty-eight thousand one hundred seven');\nINSERT INTO t3 VALUES(8414, 13943, 'thirteen thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(8415, 11209, 'eleven thousand two hundred nine');\nINSERT INTO t3 VALUES(8416, 98621, 'ninety-eight thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(8417, 72478, 'seventy-two thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(8418, 59721, 'fifty-nine thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(8419, 9399, 'nine thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(8420, 44360, 'forty-four thousand three hundred sixty');\nINSERT INTO t3 VALUES(8421, 85990, 'eighty-five thousand nine hundred ninety');\nINSERT INTO t3 VALUES(8422, 17766, 'seventeen thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(8423, 65448, 'sixty-five thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(8424, 85640, 'eighty-five thousand six hundred forty');\nINSERT INTO t3 VALUES(8425, 95741, 'ninety-five thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(8426, 83159, 'eighty-three thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(8427, 99747, 'ninety-nine thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(8428, 65036, 'sixty-five thousand thirty-six');\nINSERT INTO t3 VALUES(8429, 21519, 'twenty-one thousand five hundred nineteen');\nINSERT INTO t3 VALUES(8430, 78546, 'seventy-eight thousand five hundred forty-six');\nINSERT INTO t3 VALUES(8431, 56437, 'fifty-six thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(8432, 26476, 'twenty-six thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(8433, 41553, 'forty-one thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(8434, 29048, 'twenty-nine thousand forty-eight');\nINSERT INTO t3 VALUES(8435, 48807, 'forty-eight thousand eight hundred seven');\nINSERT INTO t3 VALUES(8436, 68858, 'sixty-eight thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(8437, 31610, 'thirty-one thousand six hundred ten');\nINSERT INTO t3 VALUES(8438, 64515, 'sixty-four thousand five hundred fifteen');\nINSERT INTO t3 VALUES(8439, 54131, 'fifty-four thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(8440, 58378, 'fifty-eight thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(8441, 51510, 'fifty-one thousand five hundred ten');\nINSERT INTO t3 VALUES(8442, 38323, 'thirty-eight thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(8443, 32906, 'thirty-two thousand nine hundred six');\nINSERT INTO t3 VALUES(8444, 98429, 'ninety-eight thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(8445, 41483, 'forty-one thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(8446, 36830, 'thirty-six thousand eight hundred thirty');\nINSERT INTO t3 VALUES(8447, 56528, 'fifty-six thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(8448, 55012, 'fifty-five thousand twelve');\nINSERT INTO t3 VALUES(8449, 1194, 'one thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(8450, 89068, 'eighty-nine thousand sixty-eight');\nINSERT INTO t3 VALUES(8451, 40667, 'forty thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(8452, 26453, 'twenty-six thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(8453, 82099, 'eighty-two thousand ninety-nine');\nINSERT INTO t3 VALUES(8454, 77124, 'seventy-seven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(8455, 112, 'one hundred twelve');\nINSERT INTO t3 VALUES(8456, 505, 'five hundred five');\nINSERT INTO t3 VALUES(8457, 66191, 'sixty-six thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(8458, 31908, 'thirty-one thousand nine hundred eight');\nINSERT INTO t3 VALUES(8459, 50473, 'fifty thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(8460, 85303, 'eighty-five thousand three hundred three');\nINSERT INTO t3 VALUES(8461, 31574, 'thirty-one thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(8462, 58783, 'fifty-eight thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(8463, 62521, 'sixty-two thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(8464, 51627, 'fifty-one thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(8465, 25990, 'twenty-five thousand nine hundred ninety');\nINSERT INTO t3 VALUES(8466, 13789, 'thirteen thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(8467, 34652, 'thirty-four thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(8468, 63, 'sixty-three');\nINSERT INTO t3 VALUES(8469, 4073, 'four thousand seventy-three');\nINSERT INTO t3 VALUES(8470, 4299, 'four thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(8471, 98594, 'ninety-eight thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(8472, 83104, 'eighty-three thousand one hundred four');\nINSERT INTO t3 VALUES(8473, 9718, 'nine thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(8474, 80496, 'eighty thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(8475, 36709, 'thirty-six thousand seven hundred nine');\nINSERT INTO t3 VALUES(8476, 1097, 'one thousand ninety-seven');\nINSERT INTO t3 VALUES(8477, 82095, 'eighty-two thousand ninety-five');\nINSERT INTO t3 VALUES(8478, 7709, 'seven thousand seven hundred nine');\nINSERT INTO t3 VALUES(8479, 53651, 'fifty-three thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(8480, 75797, 'seventy-five thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(8481, 83547, 'eighty-three thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(8482, 57254, 'fifty-seven thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(8483, 20577, 'twenty thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(8484, 78552, 'seventy-eight thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(8485, 91373, 'ninety-one thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(8486, 88403, 'eighty-eight thousand four hundred three');\nINSERT INTO t3 VALUES(8487, 97507, 'ninety-seven thousand five hundred seven');\nINSERT INTO t3 VALUES(8488, 59476, 'fifty-nine thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(8489, 26359, 'twenty-six thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(8490, 66974, 'sixty-six thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(8491, 4046, 'four thousand forty-six');\nINSERT INTO t3 VALUES(8492, 48533, 'forty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(8493, 63661, 'sixty-three thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(8494, 90604, 'ninety thousand six hundred four');\nINSERT INTO t3 VALUES(8495, 16909, 'sixteen thousand nine hundred nine');\nINSERT INTO t3 VALUES(8496, 15437, 'fifteen thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(8497, 55730, 'fifty-five thousand seven hundred thirty');\nINSERT INTO t3 VALUES(8498, 6950, 'six thousand nine hundred fifty');\nINSERT INTO t3 VALUES(8499, 24277, 'twenty-four thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(8500, 12909, 'twelve thousand nine hundred nine');\nINSERT INTO t3 VALUES(8501, 78383, 'seventy-eight thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(8502, 22091, 'twenty-two thousand ninety-one');\nINSERT INTO t3 VALUES(8503, 38405, 'thirty-eight thousand four hundred five');\nINSERT INTO t3 VALUES(8504, 69844, 'sixty-nine thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(8505, 67603, 'sixty-seven thousand six hundred three');\nINSERT INTO t3 VALUES(8506, 59345, 'fifty-nine thousand three hundred forty-five');\nINSERT INTO t3 VALUES(8507, 80394, 'eighty thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(8508, 30834, 'thirty thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(8509, 33971, 'thirty-three thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(8510, 74079, 'seventy-four thousand seventy-nine');\nINSERT INTO t3 VALUES(8511, 86757, 'eighty-six thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(8512, 60409, 'sixty thousand four hundred nine');\nINSERT INTO t3 VALUES(8513, 84463, 'eighty-four thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(8514, 88810, 'eighty-eight thousand eight hundred ten');\nINSERT INTO t3 VALUES(8515, 26806, 'twenty-six thousand eight hundred six');\nINSERT INTO t3 VALUES(8516, 82994, 'eighty-two thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(8517, 89988, 'eighty-nine thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(8518, 32147, 'thirty-two thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(8519, 9594, 'nine thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(8520, 1445, 'one thousand four hundred forty-five');\nINSERT INTO t3 VALUES(8521, 21467, 'twenty-one thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(8522, 69172, 'sixty-nine thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(8523, 78531, 'seventy-eight thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(8524, 6630, 'six thousand six hundred thirty');\nINSERT INTO t3 VALUES(8525, 90687, 'ninety thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(8526, 82271, 'eighty-two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(8527, 47990, 'forty-seven thousand nine hundred ninety');\nINSERT INTO t3 VALUES(8528, 19897, 'nineteen thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(8529, 12909, 'twelve thousand nine hundred nine');\nINSERT INTO t3 VALUES(8530, 69152, 'sixty-nine thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(8531, 55779, 'fifty-five thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(8532, 95875, 'ninety-five thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(8533, 80275, 'eighty thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(8534, 98215, 'ninety-eight thousand two hundred fifteen');\nINSERT INTO t3 VALUES(8535, 71919, 'seventy-one thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(8536, 43898, 'forty-three thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(8537, 31571, 'thirty-one thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(8538, 18403, 'eighteen thousand four hundred three');\nINSERT INTO t3 VALUES(8539, 92908, 'ninety-two thousand nine hundred eight');\nINSERT INTO t3 VALUES(8540, 81109, 'eighty-one thousand one hundred nine');\nINSERT INTO t3 VALUES(8541, 38809, 'thirty-eight thousand eight hundred nine');\nINSERT INTO t3 VALUES(8542, 67031, 'sixty-seven thousand thirty-one');\nINSERT INTO t3 VALUES(8543, 85667, 'eighty-five thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(8544, 56152, 'fifty-six thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(8545, 66775, 'sixty-six thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(8546, 54679, 'fifty-four thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(8547, 24674, 'twenty-four thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(8548, 19133, 'nineteen thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(8549, 9177, 'nine thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(8550, 40371, 'forty thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(8551, 48097, 'forty-eight thousand ninety-seven');\nINSERT INTO t3 VALUES(8552, 55150, 'fifty-five thousand one hundred fifty');\nINSERT INTO t3 VALUES(8553, 75691, 'seventy-five thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(8554, 48760, 'forty-eight thousand seven hundred sixty');\nINSERT INTO t3 VALUES(8555, 3509, 'three thousand five hundred nine');\nINSERT INTO t3 VALUES(8556, 71295, 'seventy-one thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(8557, 84206, 'eighty-four thousand two hundred six');\nINSERT INTO t3 VALUES(8558, 84802, 'eighty-four thousand eight hundred two');\nINSERT INTO t3 VALUES(8559, 41560, 'forty-one thousand five hundred sixty');\nINSERT INTO t3 VALUES(8560, 20674, 'twenty thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(8561, 77122, 'seventy-seven thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(8562, 69472, 'sixty-nine thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(8563, 71524, 'seventy-one thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(8564, 71472, 'seventy-one thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(8565, 61975, 'sixty-one thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(8566, 51520, 'fifty-one thousand five hundred twenty');\nINSERT INTO t3 VALUES(8567, 34972, 'thirty-four thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(8568, 68854, 'sixty-eight thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(8569, 39970, 'thirty-nine thousand nine hundred seventy');\nINSERT INTO t3 VALUES(8570, 77254, 'seventy-seven thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(8571, 62055, 'sixty-two thousand fifty-five');\nINSERT INTO t3 VALUES(8572, 76553, 'seventy-six thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(8573, 69329, 'sixty-nine thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(8574, 29285, 'twenty-nine thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(8575, 67299, 'sixty-seven thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(8576, 81738, 'eighty-one thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(8577, 58923, 'fifty-eight thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(8578, 88154, 'eighty-eight thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(8579, 65662, 'sixty-five thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(8580, 14772, 'fourteen thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(8581, 80355, 'eighty thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(8582, 38061, 'thirty-eight thousand sixty-one');\nINSERT INTO t3 VALUES(8583, 97193, 'ninety-seven thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(8584, 80250, 'eighty thousand two hundred fifty');\nINSERT INTO t3 VALUES(8585, 78505, 'seventy-eight thousand five hundred five');\nINSERT INTO t3 VALUES(8586, 63134, 'sixty-three thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(8587, 50787, 'fifty thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(8588, 62379, 'sixty-two thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(8589, 63284, 'sixty-three thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(8590, 13024, 'thirteen thousand twenty-four');\nINSERT INTO t3 VALUES(8591, 26078, 'twenty-six thousand seventy-eight');\nINSERT INTO t3 VALUES(8592, 61146, 'sixty-one thousand one hundred forty-six');\nINSERT INTO t3 VALUES(8593, 34917, 'thirty-four thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(8594, 9701, 'nine thousand seven hundred one');\nINSERT INTO t3 VALUES(8595, 47688, 'forty-seven thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(8596, 64719, 'sixty-four thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(8597, 69920, 'sixty-nine thousand nine hundred twenty');\nINSERT INTO t3 VALUES(8598, 72744, 'seventy-two thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(8599, 97489, 'ninety-seven thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(8600, 18853, 'eighteen thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(8601, 86574, 'eighty-six thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(8602, 29577, 'twenty-nine thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(8603, 40183, 'forty thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(8604, 34530, 'thirty-four thousand five hundred thirty');\nINSERT INTO t3 VALUES(8605, 40642, 'forty thousand six hundred forty-two');\nINSERT INTO t3 VALUES(8606, 51141, 'fifty-one thousand one hundred forty-one');\nINSERT INTO t3 VALUES(8607, 26970, 'twenty-six thousand nine hundred seventy');\nINSERT INTO t3 VALUES(8608, 84351, 'eighty-four thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(8609, 37576, 'thirty-seven thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(8610, 46952, 'forty-six thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(8611, 5745, 'five thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(8612, 30098, 'thirty thousand ninety-eight');\nINSERT INTO t3 VALUES(8613, 80019, 'eighty thousand nineteen');\nINSERT INTO t3 VALUES(8614, 96206, 'ninety-six thousand two hundred six');\nINSERT INTO t3 VALUES(8615, 46491, 'forty-six thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(8616, 78279, 'seventy-eight thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(8617, 92949, 'ninety-two thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(8618, 87338, 'eighty-seven thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(8619, 67852, 'sixty-seven thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(8620, 70463, 'seventy thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(8621, 90441, 'ninety thousand four hundred forty-one');\nINSERT INTO t3 VALUES(8622, 2171, 'two thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(8623, 63831, 'sixty-three thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(8624, 44159, 'forty-four thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(8625, 13967, 'thirteen thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(8626, 47445, 'forty-seven thousand four hundred forty-five');\nINSERT INTO t3 VALUES(8627, 7992, 'seven thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(8628, 36205, 'thirty-six thousand two hundred five');\nINSERT INTO t3 VALUES(8629, 14502, 'fourteen thousand five hundred two');\nINSERT INTO t3 VALUES(8630, 6704, 'six thousand seven hundred four');\nINSERT INTO t3 VALUES(8631, 7821, 'seven thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(8632, 24643, 'twenty-four thousand six hundred forty-three');\nINSERT INTO t3 VALUES(8633, 45674, 'forty-five thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(8634, 64487, 'sixty-four thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(8635, 12007, 'twelve thousand seven');\nINSERT INTO t3 VALUES(8636, 39929, 'thirty-nine thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(8637, 53304, 'fifty-three thousand three hundred four');\nINSERT INTO t3 VALUES(8638, 2231, 'two thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(8639, 77189, 'seventy-seven thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(8640, 3887, 'three thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(8641, 44122, 'forty-four thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(8642, 63883, 'sixty-three thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(8643, 9229, 'nine thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(8644, 69943, 'sixty-nine thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(8645, 12970, 'twelve thousand nine hundred seventy');\nINSERT INTO t3 VALUES(8646, 76176, 'seventy-six thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(8647, 17089, 'seventeen thousand eighty-nine');\nINSERT INTO t3 VALUES(8648, 68542, 'sixty-eight thousand five hundred forty-two');\nINSERT INTO t3 VALUES(8649, 43947, 'forty-three thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(8650, 14743, 'fourteen thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(8651, 83124, 'eighty-three thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(8652, 18569, 'eighteen thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(8653, 80463, 'eighty thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(8654, 81819, 'eighty-one thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(8655, 8615, 'eight thousand six hundred fifteen');\nINSERT INTO t3 VALUES(8656, 39918, 'thirty-nine thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(8657, 72064, 'seventy-two thousand sixty-four');\nINSERT INTO t3 VALUES(8658, 90041, 'ninety thousand forty-one');\nINSERT INTO t3 VALUES(8659, 95297, 'ninety-five thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(8660, 70516, 'seventy thousand five hundred sixteen');\nINSERT INTO t3 VALUES(8661, 76766, 'seventy-six thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(8662, 16492, 'sixteen thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(8663, 16189, 'sixteen thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(8664, 91662, 'ninety-one thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(8665, 59057, 'fifty-nine thousand fifty-seven');\nINSERT INTO t3 VALUES(8666, 65902, 'sixty-five thousand nine hundred two');\nINSERT INTO t3 VALUES(8667, 17171, 'seventeen thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(8668, 24003, 'twenty-four thousand three');\nINSERT INTO t3 VALUES(8669, 92149, 'ninety-two thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(8670, 1792, 'one thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(8671, 67411, 'sixty-seven thousand four hundred eleven');\nINSERT INTO t3 VALUES(8672, 66464, 'sixty-six thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(8673, 63074, 'sixty-three thousand seventy-four');\nINSERT INTO t3 VALUES(8674, 10873, 'ten thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(8675, 55524, 'fifty-five thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(8676, 95313, 'ninety-five thousand three hundred thirteen');\nINSERT INTO t3 VALUES(8677, 28052, 'twenty-eight thousand fifty-two');\nINSERT INTO t3 VALUES(8678, 24289, 'twenty-four thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(8679, 68418, 'sixty-eight thousand four hundred eighteen');\nINSERT INTO t3 VALUES(8680, 53276, 'fifty-three thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(8681, 82162, 'eighty-two thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(8682, 41681, 'forty-one thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(8683, 68119, 'sixty-eight thousand one hundred nineteen');\nINSERT INTO t3 VALUES(8684, 70728, 'seventy thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(8685, 8034, 'eight thousand thirty-four');\nINSERT INTO t3 VALUES(8686, 60929, 'sixty thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(8687, 21362, 'twenty-one thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(8688, 74845, 'seventy-four thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(8689, 5697, 'five thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(8690, 93968, 'ninety-three thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(8691, 51095, 'fifty-one thousand ninety-five');\nINSERT INTO t3 VALUES(8692, 83810, 'eighty-three thousand eight hundred ten');\nINSERT INTO t3 VALUES(8693, 15741, 'fifteen thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(8694, 69922, 'sixty-nine thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(8695, 184, 'one hundred eighty-four');\nINSERT INTO t3 VALUES(8696, 91324, 'ninety-one thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(8697, 95777, 'ninety-five thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(8698, 15723, 'fifteen thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(8699, 43921, 'forty-three thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(8700, 58646, 'fifty-eight thousand six hundred forty-six');\nINSERT INTO t3 VALUES(8701, 93710, 'ninety-three thousand seven hundred ten');\nINSERT INTO t3 VALUES(8702, 66251, 'sixty-six thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(8703, 71083, 'seventy-one thousand eighty-three');\nINSERT INTO t3 VALUES(8704, 24317, 'twenty-four thousand three hundred seventeen');\nINSERT INTO t3 VALUES(8705, 24353, 'twenty-four thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(8706, 89820, 'eighty-nine thousand eight hundred twenty');\nINSERT INTO t3 VALUES(8707, 98100, 'ninety-eight thousand one hundred');\nINSERT INTO t3 VALUES(8708, 69014, 'sixty-nine thousand fourteen');\nINSERT INTO t3 VALUES(8709, 99625, 'ninety-nine thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(8710, 91098, 'ninety-one thousand ninety-eight');\nINSERT INTO t3 VALUES(8711, 92458, 'ninety-two thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(8712, 31397, 'thirty-one thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(8713, 432, 'four hundred thirty-two');\nINSERT INTO t3 VALUES(8714, 32584, 'thirty-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(8715, 8666, 'eight thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(8716, 96638, 'ninety-six thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(8717, 7791, 'seven thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(8718, 1427, 'one thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(8719, 14231, 'fourteen thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(8720, 28045, 'twenty-eight thousand forty-five');\nINSERT INTO t3 VALUES(8721, 69475, 'sixty-nine thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(8722, 91064, 'ninety-one thousand sixty-four');\nINSERT INTO t3 VALUES(8723, 39915, 'thirty-nine thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(8724, 83169, 'eighty-three thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(8725, 96548, 'ninety-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(8726, 35018, 'thirty-five thousand eighteen');\nINSERT INTO t3 VALUES(8727, 49950, 'forty-nine thousand nine hundred fifty');\nINSERT INTO t3 VALUES(8728, 70855, 'seventy thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(8729, 11953, 'eleven thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(8730, 43863, 'forty-three thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(8731, 7490, 'seven thousand four hundred ninety');\nINSERT INTO t3 VALUES(8732, 11977, 'eleven thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(8733, 28119, 'twenty-eight thousand one hundred nineteen');\nINSERT INTO t3 VALUES(8734, 59887, 'fifty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(8735, 73473, 'seventy-three thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(8736, 19309, 'nineteen thousand three hundred nine');\nINSERT INTO t3 VALUES(8737, 70079, 'seventy thousand seventy-nine');\nINSERT INTO t3 VALUES(8738, 58537, 'fifty-eight thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(8739, 31414, 'thirty-one thousand four hundred fourteen');\nINSERT INTO t3 VALUES(8740, 29081, 'twenty-nine thousand eighty-one');\nINSERT INTO t3 VALUES(8741, 18025, 'eighteen thousand twenty-five');\nINSERT INTO t3 VALUES(8742, 44324, 'forty-four thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(8743, 99072, 'ninety-nine thousand seventy-two');\nINSERT INTO t3 VALUES(8744, 85289, 'eighty-five thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(8745, 9000, 'nine thousand');\nINSERT INTO t3 VALUES(8746, 3985, 'three thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(8747, 56314, 'fifty-six thousand three hundred fourteen');\nINSERT INTO t3 VALUES(8748, 14264, 'fourteen thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(8749, 89332, 'eighty-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(8750, 69541, 'sixty-nine thousand five hundred forty-one');\nINSERT INTO t3 VALUES(8751, 85916, 'eighty-five thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(8752, 21170, 'twenty-one thousand one hundred seventy');\nINSERT INTO t3 VALUES(8753, 6500, 'six thousand five hundred');\nINSERT INTO t3 VALUES(8754, 9578, 'nine thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(8755, 89787, 'eighty-nine thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(8756, 34742, 'thirty-four thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(8757, 50788, 'fifty thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(8758, 70835, 'seventy thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(8759, 96005, 'ninety-six thousand five');\nINSERT INTO t3 VALUES(8760, 42368, 'forty-two thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(8761, 15670, 'fifteen thousand six hundred seventy');\nINSERT INTO t3 VALUES(8762, 20354, 'twenty thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(8763, 51169, 'fifty-one thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(8764, 79100, 'seventy-nine thousand one hundred');\nINSERT INTO t3 VALUES(8765, 89010, 'eighty-nine thousand ten');\nINSERT INTO t3 VALUES(8766, 41959, 'forty-one thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(8767, 89858, 'eighty-nine thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(8768, 12061, 'twelve thousand sixty-one');\nINSERT INTO t3 VALUES(8769, 34533, 'thirty-four thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(8770, 99846, 'ninety-nine thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(8771, 53210, 'fifty-three thousand two hundred ten');\nINSERT INTO t3 VALUES(8772, 52662, 'fifty-two thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(8773, 86340, 'eighty-six thousand three hundred forty');\nINSERT INTO t3 VALUES(8774, 96204, 'ninety-six thousand two hundred four');\nINSERT INTO t3 VALUES(8775, 41401, 'forty-one thousand four hundred one');\nINSERT INTO t3 VALUES(8776, 53906, 'fifty-three thousand nine hundred six');\nINSERT INTO t3 VALUES(8777, 30974, 'thirty thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(8778, 8229, 'eight thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(8779, 32145, 'thirty-two thousand one hundred forty-five');\nINSERT INTO t3 VALUES(8780, 98200, 'ninety-eight thousand two hundred');\nINSERT INTO t3 VALUES(8781, 66462, 'sixty-six thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(8782, 15757, 'fifteen thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(8783, 41432, 'forty-one thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(8784, 5004, 'five thousand four');\nINSERT INTO t3 VALUES(8785, 65586, 'sixty-five thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(8786, 83446, 'eighty-three thousand four hundred forty-six');\nINSERT INTO t3 VALUES(8787, 40511, 'forty thousand five hundred eleven');\nINSERT INTO t3 VALUES(8788, 86308, 'eighty-six thousand three hundred eight');\nINSERT INTO t3 VALUES(8789, 10066, 'ten thousand sixty-six');\nINSERT INTO t3 VALUES(8790, 87586, 'eighty-seven thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(8791, 36308, 'thirty-six thousand three hundred eight');\nINSERT INTO t3 VALUES(8792, 14513, 'fourteen thousand five hundred thirteen');\nINSERT INTO t3 VALUES(8793, 21879, 'twenty-one thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(8794, 92112, 'ninety-two thousand one hundred twelve');\nINSERT INTO t3 VALUES(8795, 21754, 'twenty-one thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(8796, 83071, 'eighty-three thousand seventy-one');\nINSERT INTO t3 VALUES(8797, 53182, 'fifty-three thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(8798, 14305, 'fourteen thousand three hundred five');\nINSERT INTO t3 VALUES(8799, 91092, 'ninety-one thousand ninety-two');\nINSERT INTO t3 VALUES(8800, 55635, 'fifty-five thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(8801, 51303, 'fifty-one thousand three hundred three');\nINSERT INTO t3 VALUES(8802, 10897, 'ten thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(8803, 86460, 'eighty-six thousand four hundred sixty');\nINSERT INTO t3 VALUES(8804, 4877, 'four thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(8805, 19681, 'nineteen thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(8806, 62275, 'sixty-two thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(8807, 97781, 'ninety-seven thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(8808, 43961, 'forty-three thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(8809, 71519, 'seventy-one thousand five hundred nineteen');\nINSERT INTO t3 VALUES(8810, 84180, 'eighty-four thousand one hundred eighty');\nINSERT INTO t3 VALUES(8811, 14910, 'fourteen thousand nine hundred ten');\nINSERT INTO t3 VALUES(8812, 49664, 'forty-nine thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(8813, 89952, 'eighty-nine thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(8814, 53247, 'fifty-three thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(8815, 66226, 'sixty-six thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(8816, 57384, 'fifty-seven thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(8817, 31951, 'thirty-one thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(8818, 44210, 'forty-four thousand two hundred ten');\nINSERT INTO t3 VALUES(8819, 55985, 'fifty-five thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(8820, 60322, 'sixty thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(8821, 13591, 'thirteen thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(8822, 45349, 'forty-five thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(8823, 44807, 'forty-four thousand eight hundred seven');\nINSERT INTO t3 VALUES(8824, 75197, 'seventy-five thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(8825, 28009, 'twenty-eight thousand nine');\nINSERT INTO t3 VALUES(8826, 51527, 'fifty-one thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(8827, 578, 'five hundred seventy-eight');\nINSERT INTO t3 VALUES(8828, 83112, 'eighty-three thousand one hundred twelve');\nINSERT INTO t3 VALUES(8829, 36658, 'thirty-six thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(8830, 20388, 'twenty thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(8831, 32378, 'thirty-two thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(8832, 22213, 'twenty-two thousand two hundred thirteen');\nINSERT INTO t3 VALUES(8833, 10178, 'ten thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(8834, 75615, 'seventy-five thousand six hundred fifteen');\nINSERT INTO t3 VALUES(8835, 2848, 'two thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(8836, 22770, 'twenty-two thousand seven hundred seventy');\nINSERT INTO t3 VALUES(8837, 1945, 'one thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(8838, 64352, 'sixty-four thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(8839, 66296, 'sixty-six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(8840, 26810, 'twenty-six thousand eight hundred ten');\nINSERT INTO t3 VALUES(8841, 9063, 'nine thousand sixty-three');\nINSERT INTO t3 VALUES(8842, 70208, 'seventy thousand two hundred eight');\nINSERT INTO t3 VALUES(8843, 56121, 'fifty-six thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(8844, 94374, 'ninety-four thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(8845, 5647, 'five thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(8846, 51547, 'fifty-one thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(8847, 73646, 'seventy-three thousand six hundred forty-six');\nINSERT INTO t3 VALUES(8848, 89250, 'eighty-nine thousand two hundred fifty');\nINSERT INTO t3 VALUES(8849, 51303, 'fifty-one thousand three hundred three');\nINSERT INTO t3 VALUES(8850, 41930, 'forty-one thousand nine hundred thirty');\nINSERT INTO t3 VALUES(8851, 87727, 'eighty-seven thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(8852, 28453, 'twenty-eight thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(8853, 50451, 'fifty thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(8854, 38686, 'thirty-eight thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(8855, 82827, 'eighty-two thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(8856, 71581, 'seventy-one thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(8857, 14394, 'fourteen thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(8858, 46068, 'forty-six thousand sixty-eight');\nINSERT INTO t3 VALUES(8859, 76252, 'seventy-six thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(8860, 27505, 'twenty-seven thousand five hundred five');\nINSERT INTO t3 VALUES(8861, 30289, 'thirty thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(8862, 38900, 'thirty-eight thousand nine hundred');\nINSERT INTO t3 VALUES(8863, 97764, 'ninety-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(8864, 49229, 'forty-nine thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(8865, 81206, 'eighty-one thousand two hundred six');\nINSERT INTO t3 VALUES(8866, 25077, 'twenty-five thousand seventy-seven');\nINSERT INTO t3 VALUES(8867, 30768, 'thirty thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(8868, 76620, 'seventy-six thousand six hundred twenty');\nINSERT INTO t3 VALUES(8869, 88283, 'eighty-eight thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(8870, 69601, 'sixty-nine thousand six hundred one');\nINSERT INTO t3 VALUES(8871, 15776, 'fifteen thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(8872, 31227, 'thirty-one thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(8873, 66875, 'sixty-six thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(8874, 11949, 'eleven thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(8875, 43867, 'forty-three thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(8876, 23306, 'twenty-three thousand three hundred six');\nINSERT INTO t3 VALUES(8877, 95692, 'ninety-five thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(8878, 18750, 'eighteen thousand seven hundred fifty');\nINSERT INTO t3 VALUES(8879, 66788, 'sixty-six thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(8880, 29822, 'twenty-nine thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(8881, 76107, 'seventy-six thousand one hundred seven');\nINSERT INTO t3 VALUES(8882, 45957, 'forty-five thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(8883, 73445, 'seventy-three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(8884, 2545, 'two thousand five hundred forty-five');\nINSERT INTO t3 VALUES(8885, 19954, 'nineteen thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(8886, 27381, 'twenty-seven thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(8887, 49683, 'forty-nine thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(8888, 97902, 'ninety-seven thousand nine hundred two');\nINSERT INTO t3 VALUES(8889, 5402, 'five thousand four hundred two');\nINSERT INTO t3 VALUES(8890, 99699, 'ninety-nine thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(8891, 59650, 'fifty-nine thousand six hundred fifty');\nINSERT INTO t3 VALUES(8892, 33569, 'thirty-three thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(8893, 93460, 'ninety-three thousand four hundred sixty');\nINSERT INTO t3 VALUES(8894, 77070, 'seventy-seven thousand seventy');\nINSERT INTO t3 VALUES(8895, 23010, 'twenty-three thousand ten');\nINSERT INTO t3 VALUES(8896, 54896, 'fifty-four thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(8897, 30246, 'thirty thousand two hundred forty-six');\nINSERT INTO t3 VALUES(8898, 29053, 'twenty-nine thousand fifty-three');\nINSERT INTO t3 VALUES(8899, 83920, 'eighty-three thousand nine hundred twenty');\nINSERT INTO t3 VALUES(8900, 99441, 'ninety-nine thousand four hundred forty-one');\nINSERT INTO t3 VALUES(8901, 8083, 'eight thousand eighty-three');\nINSERT INTO t3 VALUES(8902, 47671, 'forty-seven thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(8903, 67591, 'sixty-seven thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(8904, 27541, 'twenty-seven thousand five hundred forty-one');\nINSERT INTO t3 VALUES(8905, 85863, 'eighty-five thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(8906, 53989, 'fifty-three thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(8907, 14198, 'fourteen thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(8908, 6871, 'six thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(8909, 61035, 'sixty-one thousand thirty-five');\nINSERT INTO t3 VALUES(8910, 58806, 'fifty-eight thousand eight hundred six');\nINSERT INTO t3 VALUES(8911, 94134, 'ninety-four thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(8912, 44315, 'forty-four thousand three hundred fifteen');\nINSERT INTO t3 VALUES(8913, 45755, 'forty-five thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(8914, 80281, 'eighty thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(8915, 43508, 'forty-three thousand five hundred eight');\nINSERT INTO t3 VALUES(8916, 5750, 'five thousand seven hundred fifty');\nINSERT INTO t3 VALUES(8917, 41402, 'forty-one thousand four hundred two');\nINSERT INTO t3 VALUES(8918, 37310, 'thirty-seven thousand three hundred ten');\nINSERT INTO t3 VALUES(8919, 50893, 'fifty thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(8920, 183, 'one hundred eighty-three');\nINSERT INTO t3 VALUES(8921, 38346, 'thirty-eight thousand three hundred forty-six');\nINSERT INTO t3 VALUES(8922, 97429, 'ninety-seven thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(8923, 98566, 'ninety-eight thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(8924, 6844, 'six thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(8925, 21894, 'twenty-one thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(8926, 53738, 'fifty-three thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(8927, 72729, 'seventy-two thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(8928, 96701, 'ninety-six thousand seven hundred one');\nINSERT INTO t3 VALUES(8929, 89221, 'eighty-nine thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(8930, 51201, 'fifty-one thousand two hundred one');\nINSERT INTO t3 VALUES(8931, 31702, 'thirty-one thousand seven hundred two');\nINSERT INTO t3 VALUES(8932, 24390, 'twenty-four thousand three hundred ninety');\nINSERT INTO t3 VALUES(8933, 55746, 'fifty-five thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(8934, 68375, 'sixty-eight thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(8935, 87377, 'eighty-seven thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(8936, 30091, 'thirty thousand ninety-one');\nINSERT INTO t3 VALUES(8937, 82666, 'eighty-two thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(8938, 67335, 'sixty-seven thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(8939, 80977, 'eighty thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(8940, 39017, 'thirty-nine thousand seventeen');\nINSERT INTO t3 VALUES(8941, 22438, 'twenty-two thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(8942, 96170, 'ninety-six thousand one hundred seventy');\nINSERT INTO t3 VALUES(8943, 69719, 'sixty-nine thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(8944, 61880, 'sixty-one thousand eight hundred eighty');\nINSERT INTO t3 VALUES(8945, 87408, 'eighty-seven thousand four hundred eight');\nINSERT INTO t3 VALUES(8946, 32094, 'thirty-two thousand ninety-four');\nINSERT INTO t3 VALUES(8947, 54233, 'fifty-four thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(8948, 46995, 'forty-six thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(8949, 75594, 'seventy-five thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(8950, 79004, 'seventy-nine thousand four');\nINSERT INTO t3 VALUES(8951, 24787, 'twenty-four thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(8952, 33917, 'thirty-three thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(8953, 20650, 'twenty thousand six hundred fifty');\nINSERT INTO t3 VALUES(8954, 15545, 'fifteen thousand five hundred forty-five');\nINSERT INTO t3 VALUES(8955, 28465, 'twenty-eight thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(8956, 77966, 'seventy-seven thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(8957, 40490, 'forty thousand four hundred ninety');\nINSERT INTO t3 VALUES(8958, 65944, 'sixty-five thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(8959, 71646, 'seventy-one thousand six hundred forty-six');\nINSERT INTO t3 VALUES(8960, 83584, 'eighty-three thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(8961, 73512, 'seventy-three thousand five hundred twelve');\nINSERT INTO t3 VALUES(8962, 49920, 'forty-nine thousand nine hundred twenty');\nINSERT INTO t3 VALUES(8963, 53318, 'fifty-three thousand three hundred eighteen');\nINSERT INTO t3 VALUES(8964, 39959, 'thirty-nine thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(8965, 72167, 'seventy-two thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(8966, 86184, 'eighty-six thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(8967, 24020, 'twenty-four thousand twenty');\nINSERT INTO t3 VALUES(8968, 51653, 'fifty-one thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(8969, 80578, 'eighty thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(8970, 39003, 'thirty-nine thousand three');\nINSERT INTO t3 VALUES(8971, 80866, 'eighty thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(8972, 14425, 'fourteen thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(8973, 55029, 'fifty-five thousand twenty-nine');\nINSERT INTO t3 VALUES(8974, 57905, 'fifty-seven thousand nine hundred five');\nINSERT INTO t3 VALUES(8975, 20717, 'twenty thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(8976, 89894, 'eighty-nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(8977, 30105, 'thirty thousand one hundred five');\nINSERT INTO t3 VALUES(8978, 78493, 'seventy-eight thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(8979, 17777, 'seventeen thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(8980, 74946, 'seventy-four thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(8981, 72797, 'seventy-two thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(8982, 75024, 'seventy-five thousand twenty-four');\nINSERT INTO t3 VALUES(8983, 51532, 'fifty-one thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(8984, 33724, 'thirty-three thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(8985, 2930, 'two thousand nine hundred thirty');\nINSERT INTO t3 VALUES(8986, 54770, 'fifty-four thousand seven hundred seventy');\nINSERT INTO t3 VALUES(8987, 80780, 'eighty thousand seven hundred eighty');\nINSERT INTO t3 VALUES(8988, 73147, 'seventy-three thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(8989, 89684, 'eighty-nine thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(8990, 71585, 'seventy-one thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(8991, 51694, 'fifty-one thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(8992, 55158, 'fifty-five thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(8993, 28755, 'twenty-eight thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(8994, 66584, 'sixty-six thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(8995, 59752, 'fifty-nine thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(8996, 95143, 'ninety-five thousand one hundred forty-three');\nINSERT INTO t3 VALUES(8997, 5092, 'five thousand ninety-two');\nINSERT INTO t3 VALUES(8998, 56792, 'fifty-six thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(8999, 88899, 'eighty-eight thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(9000, 42062, 'forty-two thousand sixty-two');\nINSERT INTO t3 VALUES(9001, 87458, 'eighty-seven thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(9002, 83037, 'eighty-three thousand thirty-seven');\nINSERT INTO t3 VALUES(9003, 45442, 'forty-five thousand four hundred forty-two');\nINSERT INTO t3 VALUES(9004, 96335, 'ninety-six thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(9005, 17437, 'seventeen thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(9006, 41234, 'forty-one thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(9007, 38464, 'thirty-eight thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(9008, 25912, 'twenty-five thousand nine hundred twelve');\nINSERT INTO t3 VALUES(9009, 18006, 'eighteen thousand six');\nINSERT INTO t3 VALUES(9010, 58518, 'fifty-eight thousand five hundred eighteen');\nINSERT INTO t3 VALUES(9011, 96286, 'ninety-six thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(9012, 88919, 'eighty-eight thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(9013, 86871, 'eighty-six thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(9014, 55545, 'fifty-five thousand five hundred forty-five');\nINSERT INTO t3 VALUES(9015, 52368, 'fifty-two thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(9016, 42202, 'forty-two thousand two hundred two');\nINSERT INTO t3 VALUES(9017, 31564, 'thirty-one thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(9018, 17558, 'seventeen thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(9019, 25854, 'twenty-five thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(9020, 346, 'three hundred forty-six');\nINSERT INTO t3 VALUES(9021, 67734, 'sixty-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(9022, 65704, 'sixty-five thousand seven hundred four');\nINSERT INTO t3 VALUES(9023, 95894, 'ninety-five thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(9024, 18630, 'eighteen thousand six hundred thirty');\nINSERT INTO t3 VALUES(9025, 33634, 'thirty-three thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(9026, 40109, 'forty thousand one hundred nine');\nINSERT INTO t3 VALUES(9027, 63064, 'sixty-three thousand sixty-four');\nINSERT INTO t3 VALUES(9028, 77187, 'seventy-seven thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(9029, 99038, 'ninety-nine thousand thirty-eight');\nINSERT INTO t3 VALUES(9030, 76139, 'seventy-six thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(9031, 82667, 'eighty-two thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(9032, 70647, 'seventy thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(9033, 38367, 'thirty-eight thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(9034, 93294, 'ninety-three thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(9035, 66244, 'sixty-six thousand two hundred forty-four');\nINSERT INTO t3 VALUES(9036, 24895, 'twenty-four thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(9037, 28956, 'twenty-eight thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(9038, 21442, 'twenty-one thousand four hundred forty-two');\nINSERT INTO t3 VALUES(9039, 82489, 'eighty-two thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(9040, 15722, 'fifteen thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(9041, 5325, 'five thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(9042, 3042, 'three thousand forty-two');\nINSERT INTO t3 VALUES(9043, 69840, 'sixty-nine thousand eight hundred forty');\nINSERT INTO t3 VALUES(9044, 86368, 'eighty-six thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(9045, 41213, 'forty-one thousand two hundred thirteen');\nINSERT INTO t3 VALUES(9046, 66450, 'sixty-six thousand four hundred fifty');\nINSERT INTO t3 VALUES(9047, 80470, 'eighty thousand four hundred seventy');\nINSERT INTO t3 VALUES(9048, 63488, 'sixty-three thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(9049, 9774, 'nine thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(9050, 79757, 'seventy-nine thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(9051, 31476, 'thirty-one thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(9052, 54062, 'fifty-four thousand sixty-two');\nINSERT INTO t3 VALUES(9053, 99610, 'ninety-nine thousand six hundred ten');\nINSERT INTO t3 VALUES(9054, 50809, 'fifty thousand eight hundred nine');\nINSERT INTO t3 VALUES(9055, 29135, 'twenty-nine thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(9056, 58535, 'fifty-eight thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(9057, 62396, 'sixty-two thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(9058, 85313, 'eighty-five thousand three hundred thirteen');\nINSERT INTO t3 VALUES(9059, 18362, 'eighteen thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(9060, 33031, 'thirty-three thousand thirty-one');\nINSERT INTO t3 VALUES(9061, 76547, 'seventy-six thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(9062, 18035, 'eighteen thousand thirty-five');\nINSERT INTO t3 VALUES(9063, 93426, 'ninety-three thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(9064, 40275, 'forty thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(9065, 36240, 'thirty-six thousand two hundred forty');\nINSERT INTO t3 VALUES(9066, 95982, 'ninety-five thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(9067, 63305, 'sixty-three thousand three hundred five');\nINSERT INTO t3 VALUES(9068, 49114, 'forty-nine thousand one hundred fourteen');\nINSERT INTO t3 VALUES(9069, 96689, 'ninety-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(9070, 39056, 'thirty-nine thousand fifty-six');\nINSERT INTO t3 VALUES(9071, 39255, 'thirty-nine thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(9072, 18392, 'eighteen thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(9073, 52779, 'fifty-two thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(9074, 70740, 'seventy thousand seven hundred forty');\nINSERT INTO t3 VALUES(9075, 28177, 'twenty-eight thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(9076, 53022, 'fifty-three thousand twenty-two');\nINSERT INTO t3 VALUES(9077, 8438, 'eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(9078, 90857, 'ninety thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(9079, 71045, 'seventy-one thousand forty-five');\nINSERT INTO t3 VALUES(9080, 73389, 'seventy-three thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(9081, 62752, 'sixty-two thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(9082, 68794, 'sixty-eight thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(9083, 61942, 'sixty-one thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(9084, 13103, 'thirteen thousand one hundred three');\nINSERT INTO t3 VALUES(9085, 76440, 'seventy-six thousand four hundred forty');\nINSERT INTO t3 VALUES(9086, 67343, 'sixty-seven thousand three hundred forty-three');\nINSERT INTO t3 VALUES(9087, 96950, 'ninety-six thousand nine hundred fifty');\nINSERT INTO t3 VALUES(9088, 38512, 'thirty-eight thousand five hundred twelve');\nINSERT INTO t3 VALUES(9089, 65977, 'sixty-five thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(9090, 14040, 'fourteen thousand forty');\nINSERT INTO t3 VALUES(9091, 64962, 'sixty-four thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(9092, 57923, 'fifty-seven thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(9093, 39954, 'thirty-nine thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(9094, 44316, 'forty-four thousand three hundred sixteen');\nINSERT INTO t3 VALUES(9095, 59214, 'fifty-nine thousand two hundred fourteen');\nINSERT INTO t3 VALUES(9096, 33593, 'thirty-three thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(9097, 92761, 'ninety-two thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(9098, 10028, 'ten thousand twenty-eight');\nINSERT INTO t3 VALUES(9099, 35798, 'thirty-five thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(9100, 84095, 'eighty-four thousand ninety-five');\nINSERT INTO t3 VALUES(9101, 29822, 'twenty-nine thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(9102, 37880, 'thirty-seven thousand eight hundred eighty');\nINSERT INTO t3 VALUES(9103, 35717, 'thirty-five thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(9104, 68276, 'sixty-eight thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(9105, 19185, 'nineteen thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(9106, 33368, 'thirty-three thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(9107, 93229, 'ninety-three thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(9108, 22248, 'twenty-two thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(9109, 94024, 'ninety-four thousand twenty-four');\nINSERT INTO t3 VALUES(9110, 76816, 'seventy-six thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(9111, 8189, 'eight thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(9112, 14797, 'fourteen thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(9113, 32570, 'thirty-two thousand five hundred seventy');\nINSERT INTO t3 VALUES(9114, 9894, 'nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(9115, 68941, 'sixty-eight thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(9116, 27996, 'twenty-seven thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(9117, 35583, 'thirty-five thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(9118, 25430, 'twenty-five thousand four hundred thirty');\nINSERT INTO t3 VALUES(9119, 22255, 'twenty-two thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(9120, 58894, 'fifty-eight thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(9121, 24066, 'twenty-four thousand sixty-six');\nINSERT INTO t3 VALUES(9122, 38320, 'thirty-eight thousand three hundred twenty');\nINSERT INTO t3 VALUES(9123, 10351, 'ten thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(9124, 8349, 'eight thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(9125, 79192, 'seventy-nine thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(9126, 11116, 'eleven thousand one hundred sixteen');\nINSERT INTO t3 VALUES(9127, 8725, 'eight thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(9128, 65492, 'sixty-five thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(9129, 37008, 'thirty-seven thousand eight');\nINSERT INTO t3 VALUES(9130, 28614, 'twenty-eight thousand six hundred fourteen');\nINSERT INTO t3 VALUES(9131, 2083, 'two thousand eighty-three');\nINSERT INTO t3 VALUES(9132, 15522, 'fifteen thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(9133, 37053, 'thirty-seven thousand fifty-three');\nINSERT INTO t3 VALUES(9134, 54309, 'fifty-four thousand three hundred nine');\nINSERT INTO t3 VALUES(9135, 56198, 'fifty-six thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(9136, 11354, 'eleven thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(9137, 32381, 'thirty-two thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(9138, 11379, 'eleven thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(9139, 79715, 'seventy-nine thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(9140, 99040, 'ninety-nine thousand forty');\nINSERT INTO t3 VALUES(9141, 42907, 'forty-two thousand nine hundred seven');\nINSERT INTO t3 VALUES(9142, 97582, 'ninety-seven thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(9143, 26920, 'twenty-six thousand nine hundred twenty');\nINSERT INTO t3 VALUES(9144, 14972, 'fourteen thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(9145, 99929, 'ninety-nine thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(9146, 18113, 'eighteen thousand one hundred thirteen');\nINSERT INTO t3 VALUES(9147, 48729, 'forty-eight thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(9148, 38634, 'thirty-eight thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(9149, 36178, 'thirty-six thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(9150, 20243, 'twenty thousand two hundred forty-three');\nINSERT INTO t3 VALUES(9151, 42704, 'forty-two thousand seven hundred four');\nINSERT INTO t3 VALUES(9152, 18710, 'eighteen thousand seven hundred ten');\nINSERT INTO t3 VALUES(9153, 16143, 'sixteen thousand one hundred forty-three');\nINSERT INTO t3 VALUES(9154, 32009, 'thirty-two thousand nine');\nINSERT INTO t3 VALUES(9155, 63727, 'sixty-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(9156, 53242, 'fifty-three thousand two hundred forty-two');\nINSERT INTO t3 VALUES(9157, 3236, 'three thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(9158, 55435, 'fifty-five thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(9159, 77610, 'seventy-seven thousand six hundred ten');\nINSERT INTO t3 VALUES(9160, 1072, 'one thousand seventy-two');\nINSERT INTO t3 VALUES(9161, 95288, 'ninety-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(9162, 64213, 'sixty-four thousand two hundred thirteen');\nINSERT INTO t3 VALUES(9163, 92749, 'ninety-two thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(9164, 31485, 'thirty-one thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(9165, 22927, 'twenty-two thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(9166, 89768, 'eighty-nine thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(9167, 10867, 'ten thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(9168, 11046, 'eleven thousand forty-six');\nINSERT INTO t3 VALUES(9169, 98054, 'ninety-eight thousand fifty-four');\nINSERT INTO t3 VALUES(9170, 11549, 'eleven thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(9171, 67832, 'sixty-seven thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(9172, 2112, 'two thousand one hundred twelve');\nINSERT INTO t3 VALUES(9173, 94490, 'ninety-four thousand four hundred ninety');\nINSERT INTO t3 VALUES(9174, 51480, 'fifty-one thousand four hundred eighty');\nINSERT INTO t3 VALUES(9175, 60796, 'sixty thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(9176, 26361, 'twenty-six thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(9177, 67022, 'sixty-seven thousand twenty-two');\nINSERT INTO t3 VALUES(9178, 63130, 'sixty-three thousand one hundred thirty');\nINSERT INTO t3 VALUES(9179, 46755, 'forty-six thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(9180, 21060, 'twenty-one thousand sixty');\nINSERT INTO t3 VALUES(9181, 14523, 'fourteen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(9182, 82727, 'eighty-two thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(9183, 1546, 'one thousand five hundred forty-six');\nINSERT INTO t3 VALUES(9184, 72420, 'seventy-two thousand four hundred twenty');\nINSERT INTO t3 VALUES(9185, 90446, 'ninety thousand four hundred forty-six');\nINSERT INTO t3 VALUES(9186, 2821, 'two thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(9187, 81558, 'eighty-one thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(9188, 91643, 'ninety-one thousand six hundred forty-three');\nINSERT INTO t3 VALUES(9189, 41793, 'forty-one thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(9190, 88071, 'eighty-eight thousand seventy-one');\nINSERT INTO t3 VALUES(9191, 17534, 'seventeen thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(9192, 88129, 'eighty-eight thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(9193, 80657, 'eighty thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(9194, 91355, 'ninety-one thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(9195, 23533, 'twenty-three thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(9196, 27599, 'twenty-seven thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(9197, 72294, 'seventy-two thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(9198, 78603, 'seventy-eight thousand six hundred three');\nINSERT INTO t3 VALUES(9199, 26761, 'twenty-six thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(9200, 59860, 'fifty-nine thousand eight hundred sixty');\nINSERT INTO t3 VALUES(9201, 50947, 'fifty thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(9202, 43175, 'forty-three thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(9203, 48134, 'forty-eight thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(9204, 18280, 'eighteen thousand two hundred eighty');\nINSERT INTO t3 VALUES(9205, 35461, 'thirty-five thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(9206, 91273, 'ninety-one thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(9207, 6046, 'six thousand forty-six');\nINSERT INTO t3 VALUES(9208, 90076, 'ninety thousand seventy-six');\nINSERT INTO t3 VALUES(9209, 66903, 'sixty-six thousand nine hundred three');\nINSERT INTO t3 VALUES(9210, 13199, 'thirteen thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(9211, 83217, 'eighty-three thousand two hundred seventeen');\nINSERT INTO t3 VALUES(9212, 92154, 'ninety-two thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(9213, 38937, 'thirty-eight thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(9214, 20628, 'twenty thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(9215, 62348, 'sixty-two thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(9216, 29919, 'twenty-nine thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(9217, 34281, 'thirty-four thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(9218, 15475, 'fifteen thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(9219, 37942, 'thirty-seven thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(9220, 31341, 'thirty-one thousand three hundred forty-one');\nINSERT INTO t3 VALUES(9221, 59714, 'fifty-nine thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(9222, 33237, 'thirty-three thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(9223, 70487, 'seventy thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(9224, 62617, 'sixty-two thousand six hundred seventeen');\nINSERT INTO t3 VALUES(9225, 61349, 'sixty-one thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(9226, 64067, 'sixty-four thousand sixty-seven');\nINSERT INTO t3 VALUES(9227, 65358, 'sixty-five thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(9228, 88344, 'eighty-eight thousand three hundred forty-four');\nINSERT INTO t3 VALUES(9229, 64528, 'sixty-four thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(9230, 96716, 'ninety-six thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(9231, 77063, 'seventy-seven thousand sixty-three');\nINSERT INTO t3 VALUES(9232, 75673, 'seventy-five thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(9233, 92475, 'ninety-two thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(9234, 50843, 'fifty thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(9235, 97043, 'ninety-seven thousand forty-three');\nINSERT INTO t3 VALUES(9236, 6072, 'six thousand seventy-two');\nINSERT INTO t3 VALUES(9237, 65314, 'sixty-five thousand three hundred fourteen');\nINSERT INTO t3 VALUES(9238, 82344, 'eighty-two thousand three hundred forty-four');\nINSERT INTO t3 VALUES(9239, 74018, 'seventy-four thousand eighteen');\nINSERT INTO t3 VALUES(9240, 32928, 'thirty-two thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(9241, 60082, 'sixty thousand eighty-two');\nINSERT INTO t3 VALUES(9242, 81604, 'eighty-one thousand six hundred four');\nINSERT INTO t3 VALUES(9243, 38115, 'thirty-eight thousand one hundred fifteen');\nINSERT INTO t3 VALUES(9244, 80246, 'eighty thousand two hundred forty-six');\nINSERT INTO t3 VALUES(9245, 50234, 'fifty thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(9246, 8465, 'eight thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(9247, 43140, 'forty-three thousand one hundred forty');\nINSERT INTO t3 VALUES(9248, 17223, 'seventeen thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(9249, 93099, 'ninety-three thousand ninety-nine');\nINSERT INTO t3 VALUES(9250, 70775, 'seventy thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(9251, 77097, 'seventy-seven thousand ninety-seven');\nINSERT INTO t3 VALUES(9252, 26685, 'twenty-six thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(9253, 84011, 'eighty-four thousand eleven');\nINSERT INTO t3 VALUES(9254, 35749, 'thirty-five thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(9255, 43137, 'forty-three thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(9256, 73765, 'seventy-three thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(9257, 61041, 'sixty-one thousand forty-one');\nINSERT INTO t3 VALUES(9258, 59354, 'fifty-nine thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(9259, 19542, 'nineteen thousand five hundred forty-two');\nINSERT INTO t3 VALUES(9260, 71523, 'seventy-one thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(9261, 2298, 'two thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(9262, 715, 'seven hundred fifteen');\nINSERT INTO t3 VALUES(9263, 60243, 'sixty thousand two hundred forty-three');\nINSERT INTO t3 VALUES(9264, 32053, 'thirty-two thousand fifty-three');\nINSERT INTO t3 VALUES(9265, 12963, 'twelve thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(9266, 24250, 'twenty-four thousand two hundred fifty');\nINSERT INTO t3 VALUES(9267, 36631, 'thirty-six thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(9268, 52928, 'fifty-two thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(9269, 16333, 'sixteen thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(9270, 82870, 'eighty-two thousand eight hundred seventy');\nINSERT INTO t3 VALUES(9271, 81515, 'eighty-one thousand five hundred fifteen');\nINSERT INTO t3 VALUES(9272, 99191, 'ninety-nine thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(9273, 87415, 'eighty-seven thousand four hundred fifteen');\nINSERT INTO t3 VALUES(9274, 55020, 'fifty-five thousand twenty');\nINSERT INTO t3 VALUES(9275, 25213, 'twenty-five thousand two hundred thirteen');\nINSERT INTO t3 VALUES(9276, 38515, 'thirty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(9277, 56758, 'fifty-six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(9278, 24777, 'twenty-four thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(9279, 4780, 'four thousand seven hundred eighty');\nINSERT INTO t3 VALUES(9280, 12336, 'twelve thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(9281, 24419, 'twenty-four thousand four hundred nineteen');\nINSERT INTO t3 VALUES(9282, 29000, 'twenty-nine thousand');\nINSERT INTO t3 VALUES(9283, 26475, 'twenty-six thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(9284, 10365, 'ten thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(9285, 4733, 'four thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(9286, 62551, 'sixty-two thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(9287, 9207, 'nine thousand two hundred seven');\nINSERT INTO t3 VALUES(9288, 69259, 'sixty-nine thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(9289, 64025, 'sixty-four thousand twenty-five');\nINSERT INTO t3 VALUES(9290, 79316, 'seventy-nine thousand three hundred sixteen');\nINSERT INTO t3 VALUES(9291, 53916, 'fifty-three thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(9292, 56301, 'fifty-six thousand three hundred one');\nINSERT INTO t3 VALUES(9293, 17156, 'seventeen thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(9294, 81030, 'eighty-one thousand thirty');\nINSERT INTO t3 VALUES(9295, 65931, 'sixty-five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(9296, 70204, 'seventy thousand two hundred four');\nINSERT INTO t3 VALUES(9297, 88942, 'eighty-eight thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(9298, 54425, 'fifty-four thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(9299, 45614, 'forty-five thousand six hundred fourteen');\nINSERT INTO t3 VALUES(9300, 33829, 'thirty-three thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(9301, 47087, 'forty-seven thousand eighty-seven');\nINSERT INTO t3 VALUES(9302, 89386, 'eighty-nine thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(9303, 80191, 'eighty thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(9304, 52285, 'fifty-two thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(9305, 44795, 'forty-four thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(9306, 71836, 'seventy-one thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(9307, 19547, 'nineteen thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(9308, 94144, 'ninety-four thousand one hundred forty-four');\nINSERT INTO t3 VALUES(9309, 50085, 'fifty thousand eighty-five');\nINSERT INTO t3 VALUES(9310, 12091, 'twelve thousand ninety-one');\nINSERT INTO t3 VALUES(9311, 90620, 'ninety thousand six hundred twenty');\nINSERT INTO t3 VALUES(9312, 21667, 'twenty-one thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(9313, 2828, 'two thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(9314, 79979, 'seventy-nine thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(9315, 42653, 'forty-two thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(9316, 22651, 'twenty-two thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(9317, 46836, 'forty-six thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(9318, 6891, 'six thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(9319, 65648, 'sixty-five thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(9320, 4568, 'four thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(9321, 70927, 'seventy thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(9322, 43772, 'forty-three thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(9323, 13829, 'thirteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(9324, 90942, 'ninety thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(9325, 16722, 'sixteen thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(9326, 70488, 'seventy thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(9327, 10181, 'ten thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(9328, 51044, 'fifty-one thousand forty-four');\nINSERT INTO t3 VALUES(9329, 51516, 'fifty-one thousand five hundred sixteen');\nINSERT INTO t3 VALUES(9330, 22091, 'twenty-two thousand ninety-one');\nINSERT INTO t3 VALUES(9331, 46933, 'forty-six thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(9332, 13896, 'thirteen thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(9333, 52569, 'fifty-two thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(9334, 26404, 'twenty-six thousand four hundred four');\nINSERT INTO t3 VALUES(9335, 65553, 'sixty-five thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(9336, 7091, 'seven thousand ninety-one');\nINSERT INTO t3 VALUES(9337, 53998, 'fifty-three thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(9338, 80480, 'eighty thousand four hundred eighty');\nINSERT INTO t3 VALUES(9339, 73810, 'seventy-three thousand eight hundred ten');\nINSERT INTO t3 VALUES(9340, 14807, 'fourteen thousand eight hundred seven');\nINSERT INTO t3 VALUES(9341, 47446, 'forty-seven thousand four hundred forty-six');\nINSERT INTO t3 VALUES(9342, 94755, 'ninety-four thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(9343, 41874, 'forty-one thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(9344, 49840, 'forty-nine thousand eight hundred forty');\nINSERT INTO t3 VALUES(9345, 98442, 'ninety-eight thousand four hundred forty-two');\nINSERT INTO t3 VALUES(9346, 52772, 'fifty-two thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(9347, 29363, 'twenty-nine thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(9348, 22819, 'twenty-two thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(9349, 70973, 'seventy thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(9350, 83032, 'eighty-three thousand thirty-two');\nINSERT INTO t3 VALUES(9351, 22199, 'twenty-two thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(9352, 59295, 'fifty-nine thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(9353, 51235, 'fifty-one thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(9354, 70910, 'seventy thousand nine hundred ten');\nINSERT INTO t3 VALUES(9355, 30627, 'thirty thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(9356, 30518, 'thirty thousand five hundred eighteen');\nINSERT INTO t3 VALUES(9357, 92969, 'ninety-two thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(9358, 25130, 'twenty-five thousand one hundred thirty');\nINSERT INTO t3 VALUES(9359, 54858, 'fifty-four thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(9360, 1656, 'one thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(9361, 96248, 'ninety-six thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(9362, 55331, 'fifty-five thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(9363, 23849, 'twenty-three thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(9364, 68780, 'sixty-eight thousand seven hundred eighty');\nINSERT INTO t3 VALUES(9365, 68674, 'sixty-eight thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(9366, 9263, 'nine thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(9367, 15001, 'fifteen thousand one');\nINSERT INTO t3 VALUES(9368, 44927, 'forty-four thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(9369, 74966, 'seventy-four thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(9370, 77659, 'seventy-seven thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(9371, 16585, 'sixteen thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(9372, 70397, 'seventy thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(9373, 54297, 'fifty-four thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(9374, 16079, 'sixteen thousand seventy-nine');\nINSERT INTO t3 VALUES(9375, 57305, 'fifty-seven thousand three hundred five');\nINSERT INTO t3 VALUES(9376, 28710, 'twenty-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(9377, 72838, 'seventy-two thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(9378, 65613, 'sixty-five thousand six hundred thirteen');\nINSERT INTO t3 VALUES(9379, 2299, 'two thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(9380, 81974, 'eighty-one thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(9381, 74535, 'seventy-four thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(9382, 92645, 'ninety-two thousand six hundred forty-five');\nINSERT INTO t3 VALUES(9383, 46704, 'forty-six thousand seven hundred four');\nINSERT INTO t3 VALUES(9384, 87040, 'eighty-seven thousand forty');\nINSERT INTO t3 VALUES(9385, 17892, 'seventeen thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(9386, 17587, 'seventeen thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(9387, 46374, 'forty-six thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(9388, 33874, 'thirty-three thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(9389, 35921, 'thirty-five thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(9390, 34701, 'thirty-four thousand seven hundred one');\nINSERT INTO t3 VALUES(9391, 69836, 'sixty-nine thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(9392, 25533, 'twenty-five thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(9393, 24734, 'twenty-four thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(9394, 93359, 'ninety-three thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(9395, 85681, 'eighty-five thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(9396, 83898, 'eighty-three thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(9397, 83847, 'eighty-three thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(9398, 91137, 'ninety-one thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(9399, 39397, 'thirty-nine thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(9400, 54919, 'fifty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(9401, 51388, 'fifty-one thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(9402, 2759, 'two thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(9403, 50512, 'fifty thousand five hundred twelve');\nINSERT INTO t3 VALUES(9404, 91961, 'ninety-one thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(9405, 25773, 'twenty-five thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(9406, 90873, 'ninety thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(9407, 48072, 'forty-eight thousand seventy-two');\nINSERT INTO t3 VALUES(9408, 76197, 'seventy-six thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(9409, 23501, 'twenty-three thousand five hundred one');\nINSERT INTO t3 VALUES(9410, 15196, 'fifteen thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(9411, 92399, 'ninety-two thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(9412, 97769, 'ninety-seven thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(9413, 27952, 'twenty-seven thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(9414, 11128, 'eleven thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(9415, 63811, 'sixty-three thousand eight hundred eleven');\nINSERT INTO t3 VALUES(9416, 70663, 'seventy thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(9417, 95007, 'ninety-five thousand seven');\nINSERT INTO t3 VALUES(9418, 58978, 'fifty-eight thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(9419, 31954, 'thirty-one thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(9420, 81219, 'eighty-one thousand two hundred nineteen');\nINSERT INTO t3 VALUES(9421, 5188, 'five thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(9422, 7825, 'seven thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(9423, 9196, 'nine thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(9424, 86791, 'eighty-six thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(9425, 29721, 'twenty-nine thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(9426, 12847, 'twelve thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(9427, 99213, 'ninety-nine thousand two hundred thirteen');\nINSERT INTO t3 VALUES(9428, 66885, 'sixty-six thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(9429, 42654, 'forty-two thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(9430, 20906, 'twenty thousand nine hundred six');\nINSERT INTO t3 VALUES(9431, 62821, 'sixty-two thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(9432, 75368, 'seventy-five thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(9433, 49370, 'forty-nine thousand three hundred seventy');\nINSERT INTO t3 VALUES(9434, 39473, 'thirty-nine thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(9435, 9521, 'nine thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(9436, 89273, 'eighty-nine thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(9437, 12641, 'twelve thousand six hundred forty-one');\nINSERT INTO t3 VALUES(9438, 41305, 'forty-one thousand three hundred five');\nINSERT INTO t3 VALUES(9439, 31247, 'thirty-one thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(9440, 81295, 'eighty-one thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(9441, 86702, 'eighty-six thousand seven hundred two');\nINSERT INTO t3 VALUES(9442, 58812, 'fifty-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(9443, 94537, 'ninety-four thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(9444, 27049, 'twenty-seven thousand forty-nine');\nINSERT INTO t3 VALUES(9445, 17031, 'seventeen thousand thirty-one');\nINSERT INTO t3 VALUES(9446, 69314, 'sixty-nine thousand three hundred fourteen');\nINSERT INTO t3 VALUES(9447, 23716, 'twenty-three thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(9448, 76076, 'seventy-six thousand seventy-six');\nINSERT INTO t3 VALUES(9449, 2717, 'two thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(9450, 44747, 'forty-four thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(9451, 53340, 'fifty-three thousand three hundred forty');\nINSERT INTO t3 VALUES(9452, 95746, 'ninety-five thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(9453, 71187, 'seventy-one thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(9454, 7917, 'seven thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(9455, 28789, 'twenty-eight thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(9456, 60796, 'sixty thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(9457, 81345, 'eighty-one thousand three hundred forty-five');\nINSERT INTO t3 VALUES(9458, 9391, 'nine thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(9459, 64031, 'sixty-four thousand thirty-one');\nINSERT INTO t3 VALUES(9460, 55265, 'fifty-five thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(9461, 34927, 'thirty-four thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(9462, 41428, 'forty-one thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(9463, 83770, 'eighty-three thousand seven hundred seventy');\nINSERT INTO t3 VALUES(9464, 70159, 'seventy thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(9465, 18267, 'eighteen thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(9466, 39244, 'thirty-nine thousand two hundred forty-four');\nINSERT INTO t3 VALUES(9467, 44228, 'forty-four thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(9468, 1947, 'one thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(9469, 72422, 'seventy-two thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(9470, 53802, 'fifty-three thousand eight hundred two');\nINSERT INTO t3 VALUES(9471, 64829, 'sixty-four thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(9472, 6289, 'six thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(9473, 62878, 'sixty-two thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(9474, 22415, 'twenty-two thousand four hundred fifteen');\nINSERT INTO t3 VALUES(9475, 69964, 'sixty-nine thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(9476, 59869, 'fifty-nine thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(9477, 2433, 'two thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(9478, 35295, 'thirty-five thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(9479, 44059, 'forty-four thousand fifty-nine');\nINSERT INTO t3 VALUES(9480, 49410, 'forty-nine thousand four hundred ten');\nINSERT INTO t3 VALUES(9481, 10316, 'ten thousand three hundred sixteen');\nINSERT INTO t3 VALUES(9482, 11864, 'eleven thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(9483, 45783, 'forty-five thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(9484, 71139, 'seventy-one thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(9485, 64769, 'sixty-four thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(9486, 69627, 'sixty-nine thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(9487, 6160, 'six thousand one hundred sixty');\nINSERT INTO t3 VALUES(9488, 1622, 'one thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(9489, 32963, 'thirty-two thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(9490, 4482, 'four thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(9491, 65797, 'sixty-five thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(9492, 6525, 'six thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(9493, 95289, 'ninety-five thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(9494, 94277, 'ninety-four thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(9495, 38195, 'thirty-eight thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(9496, 73136, 'seventy-three thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(9497, 24640, 'twenty-four thousand six hundred forty');\nINSERT INTO t3 VALUES(9498, 50773, 'fifty thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(9499, 53197, 'fifty-three thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(9500, 28393, 'twenty-eight thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(9501, 68463, 'sixty-eight thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(9502, 97319, 'ninety-seven thousand three hundred nineteen');\nINSERT INTO t3 VALUES(9503, 7449, 'seven thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(9504, 40053, 'forty thousand fifty-three');\nINSERT INTO t3 VALUES(9505, 92826, 'ninety-two thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(9506, 92280, 'ninety-two thousand two hundred eighty');\nINSERT INTO t3 VALUES(9507, 66373, 'sixty-six thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(9508, 46904, 'forty-six thousand nine hundred four');\nINSERT INTO t3 VALUES(9509, 36587, 'thirty-six thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(9510, 24990, 'twenty-four thousand nine hundred ninety');\nINSERT INTO t3 VALUES(9511, 34899, 'thirty-four thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(9512, 65838, 'sixty-five thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(9513, 37982, 'thirty-seven thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(9514, 95348, 'ninety-five thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(9515, 99069, 'ninety-nine thousand sixty-nine');\nINSERT INTO t3 VALUES(9516, 19341, 'nineteen thousand three hundred forty-one');\nINSERT INTO t3 VALUES(9517, 34630, 'thirty-four thousand six hundred thirty');\nINSERT INTO t3 VALUES(9518, 62749, 'sixty-two thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(9519, 54795, 'fifty-four thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(9520, 65885, 'sixty-five thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(9521, 42110, 'forty-two thousand one hundred ten');\nINSERT INTO t3 VALUES(9522, 94995, 'ninety-four thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(9523, 44099, 'forty-four thousand ninety-nine');\nINSERT INTO t3 VALUES(9524, 5023, 'five thousand twenty-three');\nINSERT INTO t3 VALUES(9525, 44432, 'forty-four thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(9526, 58385, 'fifty-eight thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(9527, 27411, 'twenty-seven thousand four hundred eleven');\nINSERT INTO t3 VALUES(9528, 46696, 'forty-six thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(9529, 35288, 'thirty-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(9530, 51650, 'fifty-one thousand six hundred fifty');\nINSERT INTO t3 VALUES(9531, 50346, 'fifty thousand three hundred forty-six');\nINSERT INTO t3 VALUES(9532, 53778, 'fifty-three thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(9533, 77104, 'seventy-seven thousand one hundred four');\nINSERT INTO t3 VALUES(9534, 81645, 'eighty-one thousand six hundred forty-five');\nINSERT INTO t3 VALUES(9535, 93730, 'ninety-three thousand seven hundred thirty');\nINSERT INTO t3 VALUES(9536, 53911, 'fifty-three thousand nine hundred eleven');\nINSERT INTO t3 VALUES(9537, 46429, 'forty-six thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(9538, 912, 'nine hundred twelve');\nINSERT INTO t3 VALUES(9539, 80247, 'eighty thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(9540, 59461, 'fifty-nine thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(9541, 85411, 'eighty-five thousand four hundred eleven');\nINSERT INTO t3 VALUES(9542, 88498, 'eighty-eight thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(9543, 64667, 'sixty-four thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(9544, 86721, 'eighty-six thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(9545, 42294, 'forty-two thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(9546, 95975, 'ninety-five thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(9547, 85394, 'eighty-five thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(9548, 2596, 'two thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(9549, 15830, 'fifteen thousand eight hundred thirty');\nINSERT INTO t3 VALUES(9550, 11774, 'eleven thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(9551, 58243, 'fifty-eight thousand two hundred forty-three');\nINSERT INTO t3 VALUES(9552, 49363, 'forty-nine thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(9553, 17763, 'seventeen thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(9554, 37835, 'thirty-seven thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(9555, 62394, 'sixty-two thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(9556, 82566, 'eighty-two thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(9557, 9620, 'nine thousand six hundred twenty');\nINSERT INTO t3 VALUES(9558, 43924, 'forty-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(9559, 13939, 'thirteen thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(9560, 42034, 'forty-two thousand thirty-four');\nINSERT INTO t3 VALUES(9561, 39386, 'thirty-nine thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(9562, 37292, 'thirty-seven thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(9563, 55768, 'fifty-five thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(9564, 12746, 'twelve thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(9565, 15598, 'fifteen thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(9566, 76861, 'seventy-six thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(9567, 88958, 'eighty-eight thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(9568, 57242, 'fifty-seven thousand two hundred forty-two');\nINSERT INTO t3 VALUES(9569, 53535, 'fifty-three thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(9570, 68429, 'sixty-eight thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(9571, 94325, 'ninety-four thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(9572, 61897, 'sixty-one thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(9573, 56375, 'fifty-six thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(9574, 53383, 'fifty-three thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(9575, 75975, 'seventy-five thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(9576, 52430, 'fifty-two thousand four hundred thirty');\nINSERT INTO t3 VALUES(9577, 32397, 'thirty-two thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(9578, 52315, 'fifty-two thousand three hundred fifteen');\nINSERT INTO t3 VALUES(9579, 92937, 'ninety-two thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(9580, 97196, 'ninety-seven thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(9581, 51060, 'fifty-one thousand sixty');\nINSERT INTO t3 VALUES(9582, 73173, 'seventy-three thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(9583, 69205, 'sixty-nine thousand two hundred five');\nINSERT INTO t3 VALUES(9584, 72584, 'seventy-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(9585, 62794, 'sixty-two thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(9586, 95094, 'ninety-five thousand ninety-four');\nINSERT INTO t3 VALUES(9587, 93164, 'ninety-three thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(9588, 31782, 'thirty-one thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(9589, 67414, 'sixty-seven thousand four hundred fourteen');\nINSERT INTO t3 VALUES(9590, 14328, 'fourteen thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(9591, 28027, 'twenty-eight thousand twenty-seven');\nINSERT INTO t3 VALUES(9592, 36845, 'thirty-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(9593, 90582, 'ninety thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(9594, 78397, 'seventy-eight thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(9595, 32621, 'thirty-two thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(9596, 33893, 'thirty-three thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(9597, 3035, 'three thousand thirty-five');\nINSERT INTO t3 VALUES(9598, 2249, 'two thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(9599, 28115, 'twenty-eight thousand one hundred fifteen');\nINSERT INTO t3 VALUES(9600, 48283, 'forty-eight thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(9601, 82132, 'eighty-two thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(9602, 35998, 'thirty-five thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(9603, 1349, 'one thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(9604, 18482, 'eighteen thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(9605, 8550, 'eight thousand five hundred fifty');\nINSERT INTO t3 VALUES(9606, 41277, 'forty-one thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(9607, 63595, 'sixty-three thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(9608, 11102, 'eleven thousand one hundred two');\nINSERT INTO t3 VALUES(9609, 75196, 'seventy-five thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(9610, 21415, 'twenty-one thousand four hundred fifteen');\nINSERT INTO t3 VALUES(9611, 62935, 'sixty-two thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(9612, 60561, 'sixty thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(9613, 42112, 'forty-two thousand one hundred twelve');\nINSERT INTO t3 VALUES(9614, 3546, 'three thousand five hundred forty-six');\nINSERT INTO t3 VALUES(9615, 84965, 'eighty-four thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(9616, 23021, 'twenty-three thousand twenty-one');\nINSERT INTO t3 VALUES(9617, 11024, 'eleven thousand twenty-four');\nINSERT INTO t3 VALUES(9618, 19148, 'nineteen thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(9619, 62660, 'sixty-two thousand six hundred sixty');\nINSERT INTO t3 VALUES(9620, 66222, 'sixty-six thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(9621, 7150, 'seven thousand one hundred fifty');\nINSERT INTO t3 VALUES(9622, 94115, 'ninety-four thousand one hundred fifteen');\nINSERT INTO t3 VALUES(9623, 79455, 'seventy-nine thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(9624, 66501, 'sixty-six thousand five hundred one');\nINSERT INTO t3 VALUES(9625, 25874, 'twenty-five thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(9626, 83933, 'eighty-three thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(9627, 45557, 'forty-five thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(9628, 42680, 'forty-two thousand six hundred eighty');\nINSERT INTO t3 VALUES(9629, 41739, 'forty-one thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(9630, 8693, 'eight thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(9631, 55585, 'fifty-five thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(9632, 38535, 'thirty-eight thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(9633, 21156, 'twenty-one thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(9634, 20406, 'twenty thousand four hundred six');\nINSERT INTO t3 VALUES(9635, 66134, 'sixty-six thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(9636, 52453, 'fifty-two thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(9637, 41268, 'forty-one thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(9638, 63276, 'sixty-three thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(9639, 87526, 'eighty-seven thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(9640, 90635, 'ninety thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(9641, 97688, 'ninety-seven thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(9642, 36016, 'thirty-six thousand sixteen');\nINSERT INTO t3 VALUES(9643, 43498, 'forty-three thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(9644, 22834, 'twenty-two thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(9645, 9528, 'nine thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(9646, 74739, 'seventy-four thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(9647, 536, 'five hundred thirty-six');\nINSERT INTO t3 VALUES(9648, 77270, 'seventy-seven thousand two hundred seventy');\nINSERT INTO t3 VALUES(9649, 97018, 'ninety-seven thousand eighteen');\nINSERT INTO t3 VALUES(9650, 50645, 'fifty thousand six hundred forty-five');\nINSERT INTO t3 VALUES(9651, 69848, 'sixty-nine thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(9652, 11415, 'eleven thousand four hundred fifteen');\nINSERT INTO t3 VALUES(9653, 11438, 'eleven thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(9654, 38760, 'thirty-eight thousand seven hundred sixty');\nINSERT INTO t3 VALUES(9655, 36497, 'thirty-six thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(9656, 9140, 'nine thousand one hundred forty');\nINSERT INTO t3 VALUES(9657, 29546, 'twenty-nine thousand five hundred forty-six');\nINSERT INTO t3 VALUES(9658, 31898, 'thirty-one thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(9659, 25844, 'twenty-five thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(9660, 32481, 'thirty-two thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(9661, 60532, 'sixty thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(9662, 29790, 'twenty-nine thousand seven hundred ninety');\nINSERT INTO t3 VALUES(9663, 74747, 'seventy-four thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(9664, 58643, 'fifty-eight thousand six hundred forty-three');\nINSERT INTO t3 VALUES(9665, 33744, 'thirty-three thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(9666, 59480, 'fifty-nine thousand four hundred eighty');\nINSERT INTO t3 VALUES(9667, 50128, 'fifty thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(9668, 70384, 'seventy thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(9669, 7158, 'seven thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(9670, 80151, 'eighty thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(9671, 24344, 'twenty-four thousand three hundred forty-four');\nINSERT INTO t3 VALUES(9672, 61214, 'sixty-one thousand two hundred fourteen');\nINSERT INTO t3 VALUES(9673, 35741, 'thirty-five thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(9674, 24894, 'twenty-four thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(9675, 19114, 'nineteen thousand one hundred fourteen');\nINSERT INTO t3 VALUES(9676, 12239, 'twelve thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(9677, 88554, 'eighty-eight thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(9678, 36293, 'thirty-six thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(9679, 48425, 'forty-eight thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(9680, 99726, 'ninety-nine thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(9681, 62229, 'sixty-two thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(9682, 63653, 'sixty-three thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(9683, 15592, 'fifteen thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(9684, 33061, 'thirty-three thousand sixty-one');\nINSERT INTO t3 VALUES(9685, 53447, 'fifty-three thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(9686, 63564, 'sixty-three thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(9687, 57386, 'fifty-seven thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(9688, 81975, 'eighty-one thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(9689, 35470, 'thirty-five thousand four hundred seventy');\nINSERT INTO t3 VALUES(9690, 98418, 'ninety-eight thousand four hundred eighteen');\nINSERT INTO t3 VALUES(9691, 88402, 'eighty-eight thousand four hundred two');\nINSERT INTO t3 VALUES(9692, 98496, 'ninety-eight thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(9693, 97784, 'ninety-seven thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(9694, 35214, 'thirty-five thousand two hundred fourteen');\nINSERT INTO t3 VALUES(9695, 42063, 'forty-two thousand sixty-three');\nINSERT INTO t3 VALUES(9696, 76077, 'seventy-six thousand seventy-seven');\nINSERT INTO t3 VALUES(9697, 23088, 'twenty-three thousand eighty-eight');\nINSERT INTO t3 VALUES(9698, 14265, 'fourteen thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(9699, 76827, 'seventy-six thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(9700, 27804, 'twenty-seven thousand eight hundred four');\nINSERT INTO t3 VALUES(9701, 53844, 'fifty-three thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(9702, 4007, 'four thousand seven');\nINSERT INTO t3 VALUES(9703, 96952, 'ninety-six thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(9704, 46585, 'forty-six thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(9705, 83391, 'eighty-three thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(9706, 78111, 'seventy-eight thousand one hundred eleven');\nINSERT INTO t3 VALUES(9707, 80532, 'eighty thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(9708, 43375, 'forty-three thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(9709, 56714, 'fifty-six thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(9710, 57329, 'fifty-seven thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(9711, 16576, 'sixteen thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(9712, 1329, 'one thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(9713, 88054, 'eighty-eight thousand fifty-four');\nINSERT INTO t3 VALUES(9714, 70183, 'seventy thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(9715, 70877, 'seventy thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(9716, 7748, 'seven thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(9717, 53011, 'fifty-three thousand eleven');\nINSERT INTO t3 VALUES(9718, 54458, 'fifty-four thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(9719, 55829, 'fifty-five thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(9720, 23875, 'twenty-three thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(9721, 83438, 'eighty-three thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(9722, 30843, 'thirty thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(9723, 31460, 'thirty-one thousand four hundred sixty');\nINSERT INTO t3 VALUES(9724, 1279, 'one thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(9725, 94085, 'ninety-four thousand eighty-five');\nINSERT INTO t3 VALUES(9726, 9956, 'nine thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(9727, 59878, 'fifty-nine thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(9728, 95406, 'ninety-five thousand four hundred six');\nINSERT INTO t3 VALUES(9729, 78322, 'seventy-eight thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(9730, 54152, 'fifty-four thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(9731, 28924, 'twenty-eight thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(9732, 86051, 'eighty-six thousand fifty-one');\nINSERT INTO t3 VALUES(9733, 54314, 'fifty-four thousand three hundred fourteen');\nINSERT INTO t3 VALUES(9734, 86506, 'eighty-six thousand five hundred six');\nINSERT INTO t3 VALUES(9735, 43503, 'forty-three thousand five hundred three');\nINSERT INTO t3 VALUES(9736, 76407, 'seventy-six thousand four hundred seven');\nINSERT INTO t3 VALUES(9737, 81693, 'eighty-one thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(9738, 68742, 'sixty-eight thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(9739, 93083, 'ninety-three thousand eighty-three');\nINSERT INTO t3 VALUES(9740, 15616, 'fifteen thousand six hundred sixteen');\nINSERT INTO t3 VALUES(9741, 25334, 'twenty-five thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(9742, 16841, 'sixteen thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(9743, 15428, 'fifteen thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(9744, 11639, 'eleven thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(9745, 12882, 'twelve thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(9746, 4539, 'four thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(9747, 12686, 'twelve thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(9748, 76435, 'seventy-six thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(9749, 87542, 'eighty-seven thousand five hundred forty-two');\nINSERT INTO t3 VALUES(9750, 66329, 'sixty-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(9751, 68697, 'sixty-eight thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(9752, 61991, 'sixty-one thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(9753, 30348, 'thirty thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(9754, 45560, 'forty-five thousand five hundred sixty');\nINSERT INTO t3 VALUES(9755, 88732, 'eighty-eight thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(9756, 51458, 'fifty-one thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(9757, 24599, 'twenty-four thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(9758, 72912, 'seventy-two thousand nine hundred twelve');\nINSERT INTO t3 VALUES(9759, 95571, 'ninety-five thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(9760, 20329, 'twenty thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(9761, 57317, 'fifty-seven thousand three hundred seventeen');\nINSERT INTO t3 VALUES(9762, 81954, 'eighty-one thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(9763, 62989, 'sixty-two thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(9764, 27606, 'twenty-seven thousand six hundred six');\nINSERT INTO t3 VALUES(9765, 57035, 'fifty-seven thousand thirty-five');\nINSERT INTO t3 VALUES(9766, 69996, 'sixty-nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(9767, 44204, 'forty-four thousand two hundred four');\nINSERT INTO t3 VALUES(9768, 69784, 'sixty-nine thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(9769, 4270, 'four thousand two hundred seventy');\nINSERT INTO t3 VALUES(9770, 82805, 'eighty-two thousand eight hundred five');\nINSERT INTO t3 VALUES(9771, 13843, 'thirteen thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(9772, 65155, 'sixty-five thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(9773, 87772, 'eighty-seven thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(9774, 22324, 'twenty-two thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(9775, 28212, 'twenty-eight thousand two hundred twelve');\nINSERT INTO t3 VALUES(9776, 3590, 'three thousand five hundred ninety');\nINSERT INTO t3 VALUES(9777, 76740, 'seventy-six thousand seven hundred forty');\nINSERT INTO t3 VALUES(9778, 26033, 'twenty-six thousand thirty-three');\nINSERT INTO t3 VALUES(9779, 70943, 'seventy thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(9780, 78762, 'seventy-eight thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(9781, 30940, 'thirty thousand nine hundred forty');\nINSERT INTO t3 VALUES(9782, 25141, 'twenty-five thousand one hundred forty-one');\nINSERT INTO t3 VALUES(9783, 70917, 'seventy thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(9784, 75039, 'seventy-five thousand thirty-nine');\nINSERT INTO t3 VALUES(9785, 5772, 'five thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(9786, 39799, 'thirty-nine thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(9787, 64216, 'sixty-four thousand two hundred sixteen');\nINSERT INTO t3 VALUES(9788, 53001, 'fifty-three thousand one');\nINSERT INTO t3 VALUES(9789, 83948, 'eighty-three thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(9790, 24615, 'twenty-four thousand six hundred fifteen');\nINSERT INTO t3 VALUES(9791, 78344, 'seventy-eight thousand three hundred forty-four');\nINSERT INTO t3 VALUES(9792, 27521, 'twenty-seven thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(9793, 94991, 'ninety-four thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(9794, 16917, 'sixteen thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(9795, 80476, 'eighty thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(9796, 49562, 'forty-nine thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(9797, 95018, 'ninety-five thousand eighteen');\nINSERT INTO t3 VALUES(9798, 95112, 'ninety-five thousand one hundred twelve');\nINSERT INTO t3 VALUES(9799, 31541, 'thirty-one thousand five hundred forty-one');\nINSERT INTO t3 VALUES(9800, 40264, 'forty thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(9801, 54100, 'fifty-four thousand one hundred');\nINSERT INTO t3 VALUES(9802, 16500, 'sixteen thousand five hundred');\nINSERT INTO t3 VALUES(9803, 95598, 'ninety-five thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(9804, 8549, 'eight thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(9805, 97901, 'ninety-seven thousand nine hundred one');\nINSERT INTO t3 VALUES(9806, 70092, 'seventy thousand ninety-two');\nINSERT INTO t3 VALUES(9807, 65868, 'sixty-five thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(9808, 4120, 'four thousand one hundred twenty');\nINSERT INTO t3 VALUES(9809, 45413, 'forty-five thousand four hundred thirteen');\nINSERT INTO t3 VALUES(9810, 58910, 'fifty-eight thousand nine hundred ten');\nINSERT INTO t3 VALUES(9811, 99750, 'ninety-nine thousand seven hundred fifty');\nINSERT INTO t3 VALUES(9812, 69120, 'sixty-nine thousand one hundred twenty');\nINSERT INTO t3 VALUES(9813, 32266, 'thirty-two thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(9814, 6083, 'six thousand eighty-three');\nINSERT INTO t3 VALUES(9815, 6993, 'six thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(9816, 35572, 'thirty-five thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(9817, 11700, 'eleven thousand seven hundred');\nINSERT INTO t3 VALUES(9818, 28232, 'twenty-eight thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(9819, 28761, 'twenty-eight thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(9820, 56504, 'fifty-six thousand five hundred four');\nINSERT INTO t3 VALUES(9821, 65920, 'sixty-five thousand nine hundred twenty');\nINSERT INTO t3 VALUES(9822, 35287, 'thirty-five thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(9823, 13096, 'thirteen thousand ninety-six');\nINSERT INTO t3 VALUES(9824, 44804, 'forty-four thousand eight hundred four');\nINSERT INTO t3 VALUES(9825, 48610, 'forty-eight thousand six hundred ten');\nINSERT INTO t3 VALUES(9826, 80980, 'eighty thousand nine hundred eighty');\nINSERT INTO t3 VALUES(9827, 12163, 'twelve thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(9828, 52121, 'fifty-two thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(9829, 28802, 'twenty-eight thousand eight hundred two');\nINSERT INTO t3 VALUES(9830, 98320, 'ninety-eight thousand three hundred twenty');\nINSERT INTO t3 VALUES(9831, 38135, 'thirty-eight thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(9832, 75067, 'seventy-five thousand sixty-seven');\nINSERT INTO t3 VALUES(9833, 64249, 'sixty-four thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(9834, 78018, 'seventy-eight thousand eighteen');\nINSERT INTO t3 VALUES(9835, 51877, 'fifty-one thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(9836, 74873, 'seventy-four thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(9837, 18116, 'eighteen thousand one hundred sixteen');\nINSERT INTO t3 VALUES(9838, 12202, 'twelve thousand two hundred two');\nINSERT INTO t3 VALUES(9839, 26133, 'twenty-six thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(9840, 13765, 'thirteen thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(9841, 39184, 'thirty-nine thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(9842, 57565, 'fifty-seven thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(9843, 41440, 'forty-one thousand four hundred forty');\nINSERT INTO t3 VALUES(9844, 3492, 'three thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(9845, 44020, 'forty-four thousand twenty');\nINSERT INTO t3 VALUES(9846, 44709, 'forty-four thousand seven hundred nine');\nINSERT INTO t3 VALUES(9847, 59773, 'fifty-nine thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(9848, 89604, 'eighty-nine thousand six hundred four');\nINSERT INTO t3 VALUES(9849, 37881, 'thirty-seven thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(9850, 5299, 'five thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(9851, 41217, 'forty-one thousand two hundred seventeen');\nINSERT INTO t3 VALUES(9852, 50078, 'fifty thousand seventy-eight');\nINSERT INTO t3 VALUES(9853, 39677, 'thirty-nine thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(9854, 25455, 'twenty-five thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(9855, 74369, 'seventy-four thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(9856, 18940, 'eighteen thousand nine hundred forty');\nINSERT INTO t3 VALUES(9857, 53098, 'fifty-three thousand ninety-eight');\nINSERT INTO t3 VALUES(9858, 88932, 'eighty-eight thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(9859, 45679, 'forty-five thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(9860, 61413, 'sixty-one thousand four hundred thirteen');\nINSERT INTO t3 VALUES(9861, 40594, 'forty thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(9862, 77281, 'seventy-seven thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(9863, 75998, 'seventy-five thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(9864, 72702, 'seventy-two thousand seven hundred two');\nINSERT INTO t3 VALUES(9865, 3295, 'three thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(9866, 92616, 'ninety-two thousand six hundred sixteen');\nINSERT INTO t3 VALUES(9867, 65642, 'sixty-five thousand six hundred forty-two');\nINSERT INTO t3 VALUES(9868, 57131, 'fifty-seven thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(9869, 58547, 'fifty-eight thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(9870, 88583, 'eighty-eight thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(9871, 59711, 'fifty-nine thousand seven hundred eleven');\nINSERT INTO t3 VALUES(9872, 25812, 'twenty-five thousand eight hundred twelve');\nINSERT INTO t3 VALUES(9873, 75902, 'seventy-five thousand nine hundred two');\nINSERT INTO t3 VALUES(9874, 99458, 'ninety-nine thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(9875, 10805, 'ten thousand eight hundred five');\nINSERT INTO t3 VALUES(9876, 49524, 'forty-nine thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(9877, 57630, 'fifty-seven thousand six hundred thirty');\nINSERT INTO t3 VALUES(9878, 46295, 'forty-six thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(9879, 79257, 'seventy-nine thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(9880, 3821, 'three thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(9881, 94527, 'ninety-four thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(9882, 90174, 'ninety thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(9883, 65336, 'sixty-five thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(9884, 9558, 'nine thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(9885, 95116, 'ninety-five thousand one hundred sixteen');\nINSERT INTO t3 VALUES(9886, 5593, 'five thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(9887, 47175, 'forty-seven thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(9888, 82353, 'eighty-two thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(9889, 78374, 'seventy-eight thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(9890, 49833, 'forty-nine thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(9891, 31965, 'thirty-one thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(9892, 50490, 'fifty thousand four hundred ninety');\nINSERT INTO t3 VALUES(9893, 18358, 'eighteen thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(9894, 21924, 'twenty-one thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(9895, 83905, 'eighty-three thousand nine hundred five');\nINSERT INTO t3 VALUES(9896, 15656, 'fifteen thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(9897, 41036, 'forty-one thousand thirty-six');\nINSERT INTO t3 VALUES(9898, 42128, 'forty-two thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(9899, 75773, 'seventy-five thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(9900, 56627, 'fifty-six thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(9901, 71417, 'seventy-one thousand four hundred seventeen');\nINSERT INTO t3 VALUES(9902, 23768, 'twenty-three thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(9903, 88086, 'eighty-eight thousand eighty-six');\nINSERT INTO t3 VALUES(9904, 46849, 'forty-six thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(9905, 36057, 'thirty-six thousand fifty-seven');\nINSERT INTO t3 VALUES(9906, 83187, 'eighty-three thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(9907, 55292, 'fifty-five thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(9908, 80397, 'eighty thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(9909, 29647, 'twenty-nine thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(9910, 50336, 'fifty thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(9911, 74987, 'seventy-four thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(9912, 41905, 'forty-one thousand nine hundred five');\nINSERT INTO t3 VALUES(9913, 9432, 'nine thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(9914, 4855, 'four thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(9915, 7991, 'seven thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(9916, 13472, 'thirteen thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(9917, 29238, 'twenty-nine thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(9918, 6738, 'six thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(9919, 57081, 'fifty-seven thousand eighty-one');\nINSERT INTO t3 VALUES(9920, 10588, 'ten thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(9921, 10879, 'ten thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(9922, 79359, 'seventy-nine thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(9923, 98281, 'ninety-eight thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(9924, 67749, 'sixty-seven thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(9925, 18918, 'eighteen thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(9926, 5137, 'five thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(9927, 74561, 'seventy-four thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(9928, 80642, 'eighty thousand six hundred forty-two');\nINSERT INTO t3 VALUES(9929, 33164, 'thirty-three thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(9930, 65336, 'sixty-five thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(9931, 3439, 'three thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(9932, 52804, 'fifty-two thousand eight hundred four');\nINSERT INTO t3 VALUES(9933, 32821, 'thirty-two thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(9934, 87478, 'eighty-seven thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(9935, 44868, 'forty-four thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(9936, 21660, 'twenty-one thousand six hundred sixty');\nINSERT INTO t3 VALUES(9937, 77320, 'seventy-seven thousand three hundred twenty');\nINSERT INTO t3 VALUES(9938, 8024, 'eight thousand twenty-four');\nINSERT INTO t3 VALUES(9939, 18026, 'eighteen thousand twenty-six');\nINSERT INTO t3 VALUES(9940, 75202, 'seventy-five thousand two hundred two');\nINSERT INTO t3 VALUES(9941, 3285, 'three thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(9942, 37685, 'thirty-seven thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(9943, 31654, 'thirty-one thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(9944, 42470, 'forty-two thousand four hundred seventy');\nINSERT INTO t3 VALUES(9945, 63642, 'sixty-three thousand six hundred forty-two');\nINSERT INTO t3 VALUES(9946, 46964, 'forty-six thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(9947, 22816, 'twenty-two thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(9948, 80389, 'eighty thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(9949, 59048, 'fifty-nine thousand forty-eight');\nINSERT INTO t3 VALUES(9950, 13320, 'thirteen thousand three hundred twenty');\nINSERT INTO t3 VALUES(9951, 27617, 'twenty-seven thousand six hundred seventeen');\nINSERT INTO t3 VALUES(9952, 27069, 'twenty-seven thousand sixty-nine');\nINSERT INTO t3 VALUES(9953, 13166, 'thirteen thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(9954, 62500, 'sixty-two thousand five hundred');\nINSERT INTO t3 VALUES(9955, 89697, 'eighty-nine thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(9956, 94209, 'ninety-four thousand two hundred nine');\nINSERT INTO t3 VALUES(9957, 28971, 'twenty-eight thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(9958, 23306, 'twenty-three thousand three hundred six');\nINSERT INTO t3 VALUES(9959, 85340, 'eighty-five thousand three hundred forty');\nINSERT INTO t3 VALUES(9960, 88517, 'eighty-eight thousand five hundred seventeen');\nINSERT INTO t3 VALUES(9961, 69535, 'sixty-nine thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(9962, 48865, 'forty-eight thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(9963, 21321, 'twenty-one thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(9964, 88185, 'eighty-eight thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(9965, 54339, 'fifty-four thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(9966, 47482, 'forty-seven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(9967, 51378, 'fifty-one thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(9968, 42984, 'forty-two thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(9969, 11213, 'eleven thousand two hundred thirteen');\nINSERT INTO t3 VALUES(9970, 20893, 'twenty thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(9971, 8304, 'eight thousand three hundred four');\nINSERT INTO t3 VALUES(9972, 82458, 'eighty-two thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(9973, 67591, 'sixty-seven thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(9974, 32604, 'thirty-two thousand six hundred four');\nINSERT INTO t3 VALUES(9975, 77734, 'seventy-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(9976, 86587, 'eighty-six thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(9977, 15574, 'fifteen thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(9978, 6699, 'six thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(9979, 49970, 'forty-nine thousand nine hundred seventy');\nINSERT INTO t3 VALUES(9980, 32108, 'thirty-two thousand one hundred eight');\nINSERT INTO t3 VALUES(9981, 79519, 'seventy-nine thousand five hundred nineteen');\nINSERT INTO t3 VALUES(9982, 1760, 'one thousand seven hundred sixty');\nINSERT INTO t3 VALUES(9983, 86997, 'eighty-six thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(9984, 1514, 'one thousand five hundred fourteen');\nINSERT INTO t3 VALUES(9985, 82448, 'eighty-two thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(9986, 20963, 'twenty thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(9987, 43593, 'forty-three thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(9988, 52932, 'fifty-two thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(9989, 22809, 'twenty-two thousand eight hundred nine');\nINSERT INTO t3 VALUES(9990, 2423, 'two thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(9991, 14254, 'fourteen thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(9992, 34857, 'thirty-four thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(9993, 38878, 'thirty-eight thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(9994, 78264, 'seventy-eight thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(9995, 30166, 'thirty thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(9996, 92097, 'ninety-two thousand ninety-seven');\nINSERT INTO t3 VALUES(9997, 90726, 'ninety thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(9998, 77552, 'seventy-seven thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(9999, 90712, 'ninety thousand seven hundred twelve');\nINSERT INTO t3 VALUES(10000, 38233, 'thirty-eight thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(10001, 47108, 'forty-seven thousand one hundred eight');\nINSERT INTO t3 VALUES(10002, 12575, 'twelve thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(10003, 41464, 'forty-one thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(10004, 99617, 'ninety-nine thousand six hundred seventeen');\nINSERT INTO t3 VALUES(10005, 47435, 'forty-seven thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(10006, 40042, 'forty thousand forty-two');\nINSERT INTO t3 VALUES(10007, 15138, 'fifteen thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(10008, 96584, 'ninety-six thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(10009, 61595, 'sixty-one thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(10010, 96037, 'ninety-six thousand thirty-seven');\nINSERT INTO t3 VALUES(10011, 56384, 'fifty-six thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(10012, 86369, 'eighty-six thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(10013, 87206, 'eighty-seven thousand two hundred six');\nINSERT INTO t3 VALUES(10014, 56057, 'fifty-six thousand fifty-seven');\nINSERT INTO t3 VALUES(10015, 39328, 'thirty-nine thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(10016, 3104, 'three thousand one hundred four');\nINSERT INTO t3 VALUES(10017, 56656, 'fifty-six thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(10018, 99538, 'ninety-nine thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(10019, 88851, 'eighty-eight thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(10020, 42842, 'forty-two thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(10021, 9208, 'nine thousand two hundred eight');\nINSERT INTO t3 VALUES(10022, 51921, 'fifty-one thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(10023, 74366, 'seventy-four thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(10024, 11710, 'eleven thousand seven hundred ten');\nINSERT INTO t3 VALUES(10025, 59456, 'fifty-nine thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(10026, 28553, 'twenty-eight thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(10027, 35135, 'thirty-five thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(10028, 9698, 'nine thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(10029, 67917, 'sixty-seven thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(10030, 55651, 'fifty-five thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(10031, 64240, 'sixty-four thousand two hundred forty');\nINSERT INTO t3 VALUES(10032, 4942, 'four thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(10033, 95924, 'ninety-five thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(10034, 93532, 'ninety-three thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(10035, 42543, 'forty-two thousand five hundred forty-three');\nINSERT INTO t3 VALUES(10036, 4791, 'four thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(10037, 2016, 'two thousand sixteen');\nINSERT INTO t3 VALUES(10038, 74850, 'seventy-four thousand eight hundred fifty');\nINSERT INTO t3 VALUES(10039, 84055, 'eighty-four thousand fifty-five');\nINSERT INTO t3 VALUES(10040, 58297, 'fifty-eight thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(10041, 11878, 'eleven thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(10042, 15505, 'fifteen thousand five hundred five');\nINSERT INTO t3 VALUES(10043, 26858, 'twenty-six thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(10044, 93023, 'ninety-three thousand twenty-three');\nINSERT INTO t3 VALUES(10045, 49549, 'forty-nine thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(10046, 41047, 'forty-one thousand forty-seven');\nINSERT INTO t3 VALUES(10047, 69762, 'sixty-nine thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(10048, 26771, 'twenty-six thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(10049, 24496, 'twenty-four thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(10050, 10114, 'ten thousand one hundred fourteen');\nINSERT INTO t3 VALUES(10051, 69017, 'sixty-nine thousand seventeen');\nINSERT INTO t3 VALUES(10052, 68461, 'sixty-eight thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(10053, 85812, 'eighty-five thousand eight hundred twelve');\nINSERT INTO t3 VALUES(10054, 76224, 'seventy-six thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(10055, 26925, 'twenty-six thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(10056, 11490, 'eleven thousand four hundred ninety');\nINSERT INTO t3 VALUES(10057, 29995, 'twenty-nine thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(10058, 62768, 'sixty-two thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(10059, 36851, 'thirty-six thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(10060, 56606, 'fifty-six thousand six hundred six');\nINSERT INTO t3 VALUES(10061, 27400, 'twenty-seven thousand four hundred');\nINSERT INTO t3 VALUES(10062, 7682, 'seven thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(10063, 8759, 'eight thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(10064, 40218, 'forty thousand two hundred eighteen');\nINSERT INTO t3 VALUES(10065, 59475, 'fifty-nine thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(10066, 62438, 'sixty-two thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(10067, 73426, 'seventy-three thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(10068, 14902, 'fourteen thousand nine hundred two');\nINSERT INTO t3 VALUES(10069, 96269, 'ninety-six thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(10070, 95485, 'ninety-five thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(10071, 48764, 'forty-eight thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(10072, 8358, 'eight thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(10073, 41444, 'forty-one thousand four hundred forty-four');\nINSERT INTO t3 VALUES(10074, 2920, 'two thousand nine hundred twenty');\nINSERT INTO t3 VALUES(10075, 77790, 'seventy-seven thousand seven hundred ninety');\nINSERT INTO t3 VALUES(10076, 33153, 'thirty-three thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(10077, 75841, 'seventy-five thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(10078, 14008, 'fourteen thousand eight');\nINSERT INTO t3 VALUES(10079, 69256, 'sixty-nine thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(10080, 66827, 'sixty-six thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(10081, 37227, 'thirty-seven thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(10082, 19492, 'nineteen thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(10083, 79671, 'seventy-nine thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(10084, 79054, 'seventy-nine thousand fifty-four');\nINSERT INTO t3 VALUES(10085, 98994, 'ninety-eight thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(10086, 96096, 'ninety-six thousand ninety-six');\nINSERT INTO t3 VALUES(10087, 80967, 'eighty thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(10088, 48633, 'forty-eight thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(10089, 38057, 'thirty-eight thousand fifty-seven');\nINSERT INTO t3 VALUES(10090, 63749, 'sixty-three thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(10091, 55860, 'fifty-five thousand eight hundred sixty');\nINSERT INTO t3 VALUES(10092, 82701, 'eighty-two thousand seven hundred one');\nINSERT INTO t3 VALUES(10093, 50344, 'fifty thousand three hundred forty-four');\nINSERT INTO t3 VALUES(10094, 47347, 'forty-seven thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(10095, 143, 'one hundred forty-three');\nINSERT INTO t3 VALUES(10096, 59282, 'fifty-nine thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(10097, 46944, 'forty-six thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(10098, 20309, 'twenty thousand three hundred nine');\nINSERT INTO t3 VALUES(10099, 76981, 'seventy-six thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(10100, 89378, 'eighty-nine thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(10101, 11902, 'eleven thousand nine hundred two');\nINSERT INTO t3 VALUES(10102, 21903, 'twenty-one thousand nine hundred three');\nINSERT INTO t3 VALUES(10103, 10377, 'ten thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(10104, 88499, 'eighty-eight thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(10105, 21575, 'twenty-one thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(10106, 93190, 'ninety-three thousand one hundred ninety');\nINSERT INTO t3 VALUES(10107, 61166, 'sixty-one thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(10108, 99043, 'ninety-nine thousand forty-three');\nINSERT INTO t3 VALUES(10109, 41545, 'forty-one thousand five hundred forty-five');\nINSERT INTO t3 VALUES(10110, 17181, 'seventeen thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(10111, 25942, 'twenty-five thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(10112, 69505, 'sixty-nine thousand five hundred five');\nINSERT INTO t3 VALUES(10113, 74574, 'seventy-four thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(10114, 11019, 'eleven thousand nineteen');\nINSERT INTO t3 VALUES(10115, 39297, 'thirty-nine thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(10116, 96084, 'ninety-six thousand eighty-four');\nINSERT INTO t3 VALUES(10117, 95688, 'ninety-five thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(10118, 38350, 'thirty-eight thousand three hundred fifty');\nINSERT INTO t3 VALUES(10119, 8942, 'eight thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(10120, 21936, 'twenty-one thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(10121, 2361, 'two thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(10122, 70758, 'seventy thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(10123, 79416, 'seventy-nine thousand four hundred sixteen');\nINSERT INTO t3 VALUES(10124, 50921, 'fifty thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(10125, 16709, 'sixteen thousand seven hundred nine');\nINSERT INTO t3 VALUES(10126, 86402, 'eighty-six thousand four hundred two');\nINSERT INTO t3 VALUES(10127, 98444, 'ninety-eight thousand four hundred forty-four');\nINSERT INTO t3 VALUES(10128, 81170, 'eighty-one thousand one hundred seventy');\nINSERT INTO t3 VALUES(10129, 67494, 'sixty-seven thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(10130, 68126, 'sixty-eight thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(10131, 29829, 'twenty-nine thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(10132, 7464, 'seven thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(10133, 63402, 'sixty-three thousand four hundred two');\nINSERT INTO t3 VALUES(10134, 32300, 'thirty-two thousand three hundred');\nINSERT INTO t3 VALUES(10135, 79483, 'seventy-nine thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(10136, 48425, 'forty-eight thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(10137, 17150, 'seventeen thousand one hundred fifty');\nINSERT INTO t3 VALUES(10138, 19168, 'nineteen thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(10139, 67698, 'sixty-seven thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(10140, 75516, 'seventy-five thousand five hundred sixteen');\nINSERT INTO t3 VALUES(10141, 57137, 'fifty-seven thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(10142, 80464, 'eighty thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(10143, 80916, 'eighty thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(10144, 42731, 'forty-two thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(10145, 56972, 'fifty-six thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(10146, 70343, 'seventy thousand three hundred forty-three');\nINSERT INTO t3 VALUES(10147, 9097, 'nine thousand ninety-seven');\nINSERT INTO t3 VALUES(10148, 32219, 'thirty-two thousand two hundred nineteen');\nINSERT INTO t3 VALUES(10149, 55485, 'fifty-five thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(10150, 11369, 'eleven thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(10151, 77631, 'seventy-seven thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(10152, 53803, 'fifty-three thousand eight hundred three');\nINSERT INTO t3 VALUES(10153, 69533, 'sixty-nine thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(10154, 41671, 'forty-one thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(10155, 1864, 'one thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(10156, 90970, 'ninety thousand nine hundred seventy');\nINSERT INTO t3 VALUES(10157, 35812, 'thirty-five thousand eight hundred twelve');\nINSERT INTO t3 VALUES(10158, 8564, 'eight thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(10159, 39889, 'thirty-nine thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(10160, 19612, 'nineteen thousand six hundred twelve');\nINSERT INTO t3 VALUES(10161, 52799, 'fifty-two thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(10162, 98925, 'ninety-eight thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(10163, 8366, 'eight thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(10164, 85195, 'eighty-five thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(10165, 51871, 'fifty-one thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(10166, 65532, 'sixty-five thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(10167, 5273, 'five thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(10168, 88582, 'eighty-eight thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(10169, 96024, 'ninety-six thousand twenty-four');\nINSERT INTO t3 VALUES(10170, 57607, 'fifty-seven thousand six hundred seven');\nINSERT INTO t3 VALUES(10171, 98123, 'ninety-eight thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(10172, 97314, 'ninety-seven thousand three hundred fourteen');\nINSERT INTO t3 VALUES(10173, 43727, 'forty-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(10174, 94052, 'ninety-four thousand fifty-two');\nINSERT INTO t3 VALUES(10175, 85173, 'eighty-five thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(10176, 97991, 'ninety-seven thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(10177, 92052, 'ninety-two thousand fifty-two');\nINSERT INTO t3 VALUES(10178, 75865, 'seventy-five thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(10179, 72141, 'seventy-two thousand one hundred forty-one');\nINSERT INTO t3 VALUES(10180, 55382, 'fifty-five thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(10181, 95116, 'ninety-five thousand one hundred sixteen');\nINSERT INTO t3 VALUES(10182, 88060, 'eighty-eight thousand sixty');\nINSERT INTO t3 VALUES(10183, 487, 'four hundred eighty-seven');\nINSERT INTO t3 VALUES(10184, 4659, 'four thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(10185, 80149, 'eighty thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(10186, 16930, 'sixteen thousand nine hundred thirty');\nINSERT INTO t3 VALUES(10187, 10589, 'ten thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(10188, 84137, 'eighty-four thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(10189, 80164, 'eighty thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(10190, 10661, 'ten thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(10191, 76568, 'seventy-six thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(10192, 92075, 'ninety-two thousand seventy-five');\nINSERT INTO t3 VALUES(10193, 26674, 'twenty-six thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(10194, 68303, 'sixty-eight thousand three hundred three');\nINSERT INTO t3 VALUES(10195, 75931, 'seventy-five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(10196, 8152, 'eight thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(10197, 33799, 'thirty-three thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(10198, 21738, 'twenty-one thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(10199, 5672, 'five thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(10200, 99898, 'ninety-nine thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(10201, 16033, 'sixteen thousand thirty-three');\nINSERT INTO t3 VALUES(10202, 3964, 'three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(10203, 24986, 'twenty-four thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(10204, 39973, 'thirty-nine thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(10205, 70562, 'seventy thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(10206, 66954, 'sixty-six thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(10207, 99968, 'ninety-nine thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(10208, 91741, 'ninety-one thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(10209, 66459, 'sixty-six thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(10210, 90387, 'ninety thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(10211, 12882, 'twelve thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(10212, 94967, 'ninety-four thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(10213, 29799, 'twenty-nine thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(10214, 918, 'nine hundred eighteen');\nINSERT INTO t3 VALUES(10215, 86300, 'eighty-six thousand three hundred');\nINSERT INTO t3 VALUES(10216, 29489, 'twenty-nine thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(10217, 26758, 'twenty-six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(10218, 83512, 'eighty-three thousand five hundred twelve');\nINSERT INTO t3 VALUES(10219, 59831, 'fifty-nine thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(10220, 33960, 'thirty-three thousand nine hundred sixty');\nINSERT INTO t3 VALUES(10221, 10857, 'ten thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(10222, 79734, 'seventy-nine thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(10223, 91431, 'ninety-one thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(10224, 85389, 'eighty-five thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(10225, 9711, 'nine thousand seven hundred eleven');\nINSERT INTO t3 VALUES(10226, 817, 'eight hundred seventeen');\nINSERT INTO t3 VALUES(10227, 5281, 'five thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(10228, 18861, 'eighteen thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(10229, 42662, 'forty-two thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(10230, 52754, 'fifty-two thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(10231, 99160, 'ninety-nine thousand one hundred sixty');\nINSERT INTO t3 VALUES(10232, 51631, 'fifty-one thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(10233, 19758, 'nineteen thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(10234, 1128, 'one thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(10235, 13216, 'thirteen thousand two hundred sixteen');\nINSERT INTO t3 VALUES(10236, 40414, 'forty thousand four hundred fourteen');\nINSERT INTO t3 VALUES(10237, 68008, 'sixty-eight thousand eight');\nINSERT INTO t3 VALUES(10238, 55273, 'fifty-five thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(10239, 57731, 'fifty-seven thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(10240, 7753, 'seven thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(10241, 84248, 'eighty-four thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(10242, 73512, 'seventy-three thousand five hundred twelve');\nINSERT INTO t3 VALUES(10243, 5151, 'five thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(10244, 22687, 'twenty-two thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(10245, 87087, 'eighty-seven thousand eighty-seven');\nINSERT INTO t3 VALUES(10246, 96113, 'ninety-six thousand one hundred thirteen');\nINSERT INTO t3 VALUES(10247, 38032, 'thirty-eight thousand thirty-two');\nINSERT INTO t3 VALUES(10248, 37952, 'thirty-seven thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(10249, 29910, 'twenty-nine thousand nine hundred ten');\nINSERT INTO t3 VALUES(10250, 73037, 'seventy-three thousand thirty-seven');\nINSERT INTO t3 VALUES(10251, 37533, 'thirty-seven thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(10252, 25552, 'twenty-five thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(10253, 95890, 'ninety-five thousand eight hundred ninety');\nINSERT INTO t3 VALUES(10254, 73384, 'seventy-three thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(10255, 28153, 'twenty-eight thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(10256, 73075, 'seventy-three thousand seventy-five');\nINSERT INTO t3 VALUES(10257, 37272, 'thirty-seven thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(10258, 76836, 'seventy-six thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(10259, 47128, 'forty-seven thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(10260, 44580, 'forty-four thousand five hundred eighty');\nINSERT INTO t3 VALUES(10261, 25791, 'twenty-five thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(10262, 75732, 'seventy-five thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(10263, 34477, 'thirty-four thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(10264, 17554, 'seventeen thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(10265, 97767, 'ninety-seven thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(10266, 26958, 'twenty-six thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(10267, 7899, 'seven thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(10268, 61767, 'sixty-one thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(10269, 91063, 'ninety-one thousand sixty-three');\nINSERT INTO t3 VALUES(10270, 33260, 'thirty-three thousand two hundred sixty');\nINSERT INTO t3 VALUES(10271, 6346, 'six thousand three hundred forty-six');\nINSERT INTO t3 VALUES(10272, 15264, 'fifteen thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(10273, 30455, 'thirty thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(10274, 68343, 'sixty-eight thousand three hundred forty-three');\nINSERT INTO t3 VALUES(10275, 42090, 'forty-two thousand ninety');\nINSERT INTO t3 VALUES(10276, 64780, 'sixty-four thousand seven hundred eighty');\nINSERT INTO t3 VALUES(10277, 58562, 'fifty-eight thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(10278, 52566, 'fifty-two thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(10279, 31319, 'thirty-one thousand three hundred nineteen');\nINSERT INTO t3 VALUES(10280, 6021, 'six thousand twenty-one');\nINSERT INTO t3 VALUES(10281, 20805, 'twenty thousand eight hundred five');\nINSERT INTO t3 VALUES(10282, 8022, 'eight thousand twenty-two');\nINSERT INTO t3 VALUES(10283, 50421, 'fifty thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(10284, 7331, 'seven thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(10285, 1475, 'one thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(10286, 47424, 'forty-seven thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(10287, 43754, 'forty-three thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(10288, 67350, 'sixty-seven thousand three hundred fifty');\nINSERT INTO t3 VALUES(10289, 12017, 'twelve thousand seventeen');\nINSERT INTO t3 VALUES(10290, 22773, 'twenty-two thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(10291, 46287, 'forty-six thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(10292, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t3 VALUES(10293, 52897, 'fifty-two thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(10294, 39020, 'thirty-nine thousand twenty');\nINSERT INTO t3 VALUES(10295, 27674, 'twenty-seven thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(10296, 21666, 'twenty-one thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(10297, 37082, 'thirty-seven thousand eighty-two');\nINSERT INTO t3 VALUES(10298, 17733, 'seventeen thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(10299, 64767, 'sixty-four thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(10300, 5043, 'five thousand forty-three');\nINSERT INTO t3 VALUES(10301, 91348, 'ninety-one thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(10302, 17016, 'seventeen thousand sixteen');\nINSERT INTO t3 VALUES(10303, 5728, 'five thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(10304, 22891, 'twenty-two thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(10305, 4838, 'four thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(10306, 66294, 'sixty-six thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(10307, 92489, 'ninety-two thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(10308, 51575, 'fifty-one thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(10309, 37191, 'thirty-seven thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(10310, 87785, 'eighty-seven thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(10311, 56922, 'fifty-six thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(10312, 486, 'four hundred eighty-six');\nINSERT INTO t3 VALUES(10313, 48655, 'forty-eight thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(10314, 54416, 'fifty-four thousand four hundred sixteen');\nINSERT INTO t3 VALUES(10315, 12962, 'twelve thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(10316, 6234, 'six thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(10317, 39580, 'thirty-nine thousand five hundred eighty');\nINSERT INTO t3 VALUES(10318, 78548, 'seventy-eight thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(10319, 56983, 'fifty-six thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(10320, 70958, 'seventy thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(10321, 98896, 'ninety-eight thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(10322, 68666, 'sixty-eight thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(10323, 67669, 'sixty-seven thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(10324, 16180, 'sixteen thousand one hundred eighty');\nINSERT INTO t3 VALUES(10325, 17265, 'seventeen thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(10326, 77734, 'seventy-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(10327, 82137, 'eighty-two thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(10328, 21674, 'twenty-one thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(10329, 73095, 'seventy-three thousand ninety-five');\nINSERT INTO t3 VALUES(10330, 26810, 'twenty-six thousand eight hundred ten');\nINSERT INTO t3 VALUES(10331, 40933, 'forty thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(10332, 28879, 'twenty-eight thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(10333, 2228, 'two thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(10334, 12687, 'twelve thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(10335, 21435, 'twenty-one thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(10336, 11286, 'eleven thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(10337, 41422, 'forty-one thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(10338, 65350, 'sixty-five thousand three hundred fifty');\nINSERT INTO t3 VALUES(10339, 20648, 'twenty thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(10340, 83924, 'eighty-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(10341, 1398, 'one thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(10342, 19390, 'nineteen thousand three hundred ninety');\nINSERT INTO t3 VALUES(10343, 10477, 'ten thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(10344, 2545, 'two thousand five hundred forty-five');\nINSERT INTO t3 VALUES(10345, 55331, 'fifty-five thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(10346, 25421, 'twenty-five thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(10347, 9548, 'nine thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(10348, 13150, 'thirteen thousand one hundred fifty');\nINSERT INTO t3 VALUES(10349, 68366, 'sixty-eight thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(10350, 40111, 'forty thousand one hundred eleven');\nINSERT INTO t3 VALUES(10351, 2468, 'two thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(10352, 75127, 'seventy-five thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(10353, 72225, 'seventy-two thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(10354, 67024, 'sixty-seven thousand twenty-four');\nINSERT INTO t3 VALUES(10355, 90483, 'ninety thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(10356, 36430, 'thirty-six thousand four hundred thirty');\nINSERT INTO t3 VALUES(10357, 48789, 'forty-eight thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(10358, 66398, 'sixty-six thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(10359, 42686, 'forty-two thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(10360, 57024, 'fifty-seven thousand twenty-four');\nINSERT INTO t3 VALUES(10361, 99842, 'ninety-nine thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(10362, 48014, 'forty-eight thousand fourteen');\nINSERT INTO t3 VALUES(10363, 44062, 'forty-four thousand sixty-two');\nINSERT INTO t3 VALUES(10364, 33789, 'thirty-three thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(10365, 40954, 'forty thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(10366, 67608, 'sixty-seven thousand six hundred eight');\nINSERT INTO t3 VALUES(10367, 70049, 'seventy thousand forty-nine');\nINSERT INTO t3 VALUES(10368, 27817, 'twenty-seven thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(10369, 1078, 'one thousand seventy-eight');\nINSERT INTO t3 VALUES(10370, 8400, 'eight thousand four hundred');\nINSERT INTO t3 VALUES(10371, 76108, 'seventy-six thousand one hundred eight');\nINSERT INTO t3 VALUES(10372, 72883, 'seventy-two thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(10373, 38984, 'thirty-eight thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(10374, 72397, 'seventy-two thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(10375, 23620, 'twenty-three thousand six hundred twenty');\nINSERT INTO t3 VALUES(10376, 22452, 'twenty-two thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(10377, 77334, 'seventy-seven thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(10378, 61498, 'sixty-one thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(10379, 95522, 'ninety-five thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(10380, 95614, 'ninety-five thousand six hundred fourteen');\nINSERT INTO t3 VALUES(10381, 16085, 'sixteen thousand eighty-five');\nINSERT INTO t3 VALUES(10382, 93566, 'ninety-three thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(10383, 75815, 'seventy-five thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(10384, 34576, 'thirty-four thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(10385, 36145, 'thirty-six thousand one hundred forty-five');\nINSERT INTO t3 VALUES(10386, 18074, 'eighteen thousand seventy-four');\nINSERT INTO t3 VALUES(10387, 84877, 'eighty-four thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(10388, 25586, 'twenty-five thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(10389, 78809, 'seventy-eight thousand eight hundred nine');\nINSERT INTO t3 VALUES(10390, 8662, 'eight thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(10391, 29182, 'twenty-nine thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(10392, 88864, 'eighty-eight thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(10393, 14679, 'fourteen thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(10394, 91224, 'ninety-one thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(10395, 18697, 'eighteen thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(10396, 1975, 'one thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(10397, 35566, 'thirty-five thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(10398, 90649, 'ninety thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(10399, 41587, 'forty-one thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(10400, 92369, 'ninety-two thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(10401, 59313, 'fifty-nine thousand three hundred thirteen');\nINSERT INTO t3 VALUES(10402, 92753, 'ninety-two thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(10403, 67006, 'sixty-seven thousand six');\nINSERT INTO t3 VALUES(10404, 90298, 'ninety thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(10405, 23566, 'twenty-three thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(10406, 48896, 'forty-eight thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(10407, 3496, 'three thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(10408, 15665, 'fifteen thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(10409, 77591, 'seventy-seven thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(10410, 41215, 'forty-one thousand two hundred fifteen');\nINSERT INTO t3 VALUES(10411, 75719, 'seventy-five thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(10412, 56052, 'fifty-six thousand fifty-two');\nINSERT INTO t3 VALUES(10413, 63159, 'sixty-three thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(10414, 37775, 'thirty-seven thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(10415, 80290, 'eighty thousand two hundred ninety');\nINSERT INTO t3 VALUES(10416, 71632, 'seventy-one thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(10417, 55940, 'fifty-five thousand nine hundred forty');\nINSERT INTO t3 VALUES(10418, 17948, 'seventeen thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(10419, 61118, 'sixty-one thousand one hundred eighteen');\nINSERT INTO t3 VALUES(10420, 73096, 'seventy-three thousand ninety-six');\nINSERT INTO t3 VALUES(10421, 84122, 'eighty-four thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(10422, 30211, 'thirty thousand two hundred eleven');\nINSERT INTO t3 VALUES(10423, 12525, 'twelve thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(10424, 31874, 'thirty-one thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(10425, 40188, 'forty thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(10426, 20263, 'twenty thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(10427, 87825, 'eighty-seven thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(10428, 14178, 'fourteen thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(10429, 7006, 'seven thousand six');\nINSERT INTO t3 VALUES(10430, 83573, 'eighty-three thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(10431, 98305, 'ninety-eight thousand three hundred five');\nINSERT INTO t3 VALUES(10432, 47815, 'forty-seven thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(10433, 88362, 'eighty-eight thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(10434, 65333, 'sixty-five thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(10435, 74064, 'seventy-four thousand sixty-four');\nINSERT INTO t3 VALUES(10436, 48996, 'forty-eight thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(10437, 10622, 'ten thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(10438, 37478, 'thirty-seven thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(10439, 73908, 'seventy-three thousand nine hundred eight');\nINSERT INTO t3 VALUES(10440, 51870, 'fifty-one thousand eight hundred seventy');\nINSERT INTO t3 VALUES(10441, 53408, 'fifty-three thousand four hundred eight');\nINSERT INTO t3 VALUES(10442, 71735, 'seventy-one thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(10443, 10872, 'ten thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(10444, 21056, 'twenty-one thousand fifty-six');\nINSERT INTO t3 VALUES(10445, 45370, 'forty-five thousand three hundred seventy');\nINSERT INTO t3 VALUES(10446, 33759, 'thirty-three thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(10447, 79263, 'seventy-nine thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(10448, 28087, 'twenty-eight thousand eighty-seven');\nINSERT INTO t3 VALUES(10449, 70700, 'seventy thousand seven hundred');\nINSERT INTO t3 VALUES(10450, 80511, 'eighty thousand five hundred eleven');\nINSERT INTO t3 VALUES(10451, 85319, 'eighty-five thousand three hundred nineteen');\nINSERT INTO t3 VALUES(10452, 92756, 'ninety-two thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(10453, 85247, 'eighty-five thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(10454, 16858, 'sixteen thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(10455, 10678, 'ten thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(10456, 77277, 'seventy-seven thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(10457, 6750, 'six thousand seven hundred fifty');\nINSERT INTO t3 VALUES(10458, 48205, 'forty-eight thousand two hundred five');\nINSERT INTO t3 VALUES(10459, 96825, 'ninety-six thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(10460, 32918, 'thirty-two thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(10461, 58060, 'fifty-eight thousand sixty');\nINSERT INTO t3 VALUES(10462, 25279, 'twenty-five thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(10463, 88729, 'eighty-eight thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(10464, 70945, 'seventy thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(10465, 6980, 'six thousand nine hundred eighty');\nINSERT INTO t3 VALUES(10466, 23519, 'twenty-three thousand five hundred nineteen');\nINSERT INTO t3 VALUES(10467, 65339, 'sixty-five thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(10468, 81502, 'eighty-one thousand five hundred two');\nINSERT INTO t3 VALUES(10469, 3684, 'three thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(10470, 57249, 'fifty-seven thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(10471, 27618, 'twenty-seven thousand six hundred eighteen');\nINSERT INTO t3 VALUES(10472, 43156, 'forty-three thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(10473, 42109, 'forty-two thousand one hundred nine');\nINSERT INTO t3 VALUES(10474, 96017, 'ninety-six thousand seventeen');\nINSERT INTO t3 VALUES(10475, 22000, 'twenty-two thousand');\nINSERT INTO t3 VALUES(10476, 26633, 'twenty-six thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(10477, 47049, 'forty-seven thousand forty-nine');\nINSERT INTO t3 VALUES(10478, 78305, 'seventy-eight thousand three hundred five');\nINSERT INTO t3 VALUES(10479, 33063, 'thirty-three thousand sixty-three');\nINSERT INTO t3 VALUES(10480, 79879, 'seventy-nine thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(10481, 20387, 'twenty thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(10482, 21999, 'twenty-one thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(10483, 74860, 'seventy-four thousand eight hundred sixty');\nINSERT INTO t3 VALUES(10484, 45815, 'forty-five thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(10485, 93116, 'ninety-three thousand one hundred sixteen');\nINSERT INTO t3 VALUES(10486, 8024, 'eight thousand twenty-four');\nINSERT INTO t3 VALUES(10487, 18762, 'eighteen thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(10488, 57358, 'fifty-seven thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(10489, 82633, 'eighty-two thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(10490, 13679, 'thirteen thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(10491, 91321, 'ninety-one thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(10492, 89799, 'eighty-nine thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(10493, 39322, 'thirty-nine thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(10494, 2976, 'two thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(10495, 62766, 'sixty-two thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(10496, 18157, 'eighteen thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(10497, 76805, 'seventy-six thousand eight hundred five');\nINSERT INTO t3 VALUES(10498, 78640, 'seventy-eight thousand six hundred forty');\nINSERT INTO t3 VALUES(10499, 25320, 'twenty-five thousand three hundred twenty');\nINSERT INTO t3 VALUES(10500, 62990, 'sixty-two thousand nine hundred ninety');\nINSERT INTO t3 VALUES(10501, 68394, 'sixty-eight thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(10502, 46396, 'forty-six thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(10503, 10416, 'ten thousand four hundred sixteen');\nINSERT INTO t3 VALUES(10504, 26590, 'twenty-six thousand five hundred ninety');\nINSERT INTO t3 VALUES(10505, 10628, 'ten thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(10506, 26998, 'twenty-six thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(10507, 84962, 'eighty-four thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(10508, 71326, 'seventy-one thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(10509, 23527, 'twenty-three thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(10510, 34961, 'thirty-four thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(10511, 22176, 'twenty-two thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(10512, 28897, 'twenty-eight thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(10513, 92324, 'ninety-two thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(10514, 34571, 'thirty-four thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(10515, 39630, 'thirty-nine thousand six hundred thirty');\nINSERT INTO t3 VALUES(10516, 32629, 'thirty-two thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(10517, 22073, 'twenty-two thousand seventy-three');\nINSERT INTO t3 VALUES(10518, 61773, 'sixty-one thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(10519, 92914, 'ninety-two thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(10520, 36986, 'thirty-six thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(10521, 8014, 'eight thousand fourteen');\nINSERT INTO t3 VALUES(10522, 620, 'six hundred twenty');\nINSERT INTO t3 VALUES(10523, 62244, 'sixty-two thousand two hundred forty-four');\nINSERT INTO t3 VALUES(10524, 26554, 'twenty-six thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(10525, 18554, 'eighteen thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(10526, 57124, 'fifty-seven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(10527, 60698, 'sixty thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(10528, 94766, 'ninety-four thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(10529, 77812, 'seventy-seven thousand eight hundred twelve');\nINSERT INTO t3 VALUES(10530, 93719, 'ninety-three thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(10531, 47365, 'forty-seven thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(10532, 87389, 'eighty-seven thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(10533, 64982, 'sixty-four thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(10534, 68138, 'sixty-eight thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(10535, 19826, 'nineteen thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(10536, 48277, 'forty-eight thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(10537, 60402, 'sixty thousand four hundred two');\nINSERT INTO t3 VALUES(10538, 95435, 'ninety-five thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(10539, 85718, 'eighty-five thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(10540, 16919, 'sixteen thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(10541, 79484, 'seventy-nine thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(10542, 90653, 'ninety thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(10543, 55175, 'fifty-five thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(10544, 56264, 'fifty-six thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(10545, 15385, 'fifteen thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(10546, 96283, 'ninety-six thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(10547, 14326, 'fourteen thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(10548, 21968, 'twenty-one thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(10549, 76800, 'seventy-six thousand eight hundred');\nINSERT INTO t3 VALUES(10550, 63662, 'sixty-three thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(10551, 381, 'three hundred eighty-one');\nINSERT INTO t3 VALUES(10552, 83093, 'eighty-three thousand ninety-three');\nINSERT INTO t3 VALUES(10553, 33168, 'thirty-three thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(10554, 47298, 'forty-seven thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(10555, 77502, 'seventy-seven thousand five hundred two');\nINSERT INTO t3 VALUES(10556, 93598, 'ninety-three thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(10557, 93288, 'ninety-three thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(10558, 29031, 'twenty-nine thousand thirty-one');\nINSERT INTO t3 VALUES(10559, 72558, 'seventy-two thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(10560, 64221, 'sixty-four thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(10561, 61336, 'sixty-one thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(10562, 47425, 'forty-seven thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(10563, 66118, 'sixty-six thousand one hundred eighteen');\nINSERT INTO t3 VALUES(10564, 94202, 'ninety-four thousand two hundred two');\nINSERT INTO t3 VALUES(10565, 64386, 'sixty-four thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(10566, 23446, 'twenty-three thousand four hundred forty-six');\nINSERT INTO t3 VALUES(10567, 70765, 'seventy thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(10568, 99956, 'ninety-nine thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(10569, 84965, 'eighty-four thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(10570, 34288, 'thirty-four thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(10571, 65799, 'sixty-five thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(10572, 53377, 'fifty-three thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(10573, 75598, 'seventy-five thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(10574, 69838, 'sixty-nine thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(10575, 7407, 'seven thousand four hundred seven');\nINSERT INTO t3 VALUES(10576, 89051, 'eighty-nine thousand fifty-one');\nINSERT INTO t3 VALUES(10577, 79424, 'seventy-nine thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(10578, 23182, 'twenty-three thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(10579, 2439, 'two thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(10580, 82595, 'eighty-two thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(10581, 84904, 'eighty-four thousand nine hundred four');\nINSERT INTO t3 VALUES(10582, 17317, 'seventeen thousand three hundred seventeen');\nINSERT INTO t3 VALUES(10583, 7454, 'seven thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(10584, 26856, 'twenty-six thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(10585, 39450, 'thirty-nine thousand four hundred fifty');\nINSERT INTO t3 VALUES(10586, 46229, 'forty-six thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(10587, 18416, 'eighteen thousand four hundred sixteen');\nINSERT INTO t3 VALUES(10588, 27678, 'twenty-seven thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(10589, 62272, 'sixty-two thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(10590, 28858, 'twenty-eight thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(10591, 29580, 'twenty-nine thousand five hundred eighty');\nINSERT INTO t3 VALUES(10592, 223, 'two hundred twenty-three');\nINSERT INTO t3 VALUES(10593, 32756, 'thirty-two thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(10594, 88077, 'eighty-eight thousand seventy-seven');\nINSERT INTO t3 VALUES(10595, 1615, 'one thousand six hundred fifteen');\nINSERT INTO t3 VALUES(10596, 9083, 'nine thousand eighty-three');\nINSERT INTO t3 VALUES(10597, 76769, 'seventy-six thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(10598, 2127, 'two thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(10599, 7844, 'seven thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(10600, 25991, 'twenty-five thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(10601, 92078, 'ninety-two thousand seventy-eight');\nINSERT INTO t3 VALUES(10602, 77023, 'seventy-seven thousand twenty-three');\nINSERT INTO t3 VALUES(10603, 65345, 'sixty-five thousand three hundred forty-five');\nINSERT INTO t3 VALUES(10604, 29761, 'twenty-nine thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(10605, 22301, 'twenty-two thousand three hundred one');\nINSERT INTO t3 VALUES(10606, 42009, 'forty-two thousand nine');\nINSERT INTO t3 VALUES(10607, 8044, 'eight thousand forty-four');\nINSERT INTO t3 VALUES(10608, 92535, 'ninety-two thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(10609, 18115, 'eighteen thousand one hundred fifteen');\nINSERT INTO t3 VALUES(10610, 69586, 'sixty-nine thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(10611, 21970, 'twenty-one thousand nine hundred seventy');\nINSERT INTO t3 VALUES(10612, 40028, 'forty thousand twenty-eight');\nINSERT INTO t3 VALUES(10613, 95062, 'ninety-five thousand sixty-two');\nINSERT INTO t3 VALUES(10614, 18665, 'eighteen thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(10615, 41276, 'forty-one thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(10616, 58155, 'fifty-eight thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(10617, 26099, 'twenty-six thousand ninety-nine');\nINSERT INTO t3 VALUES(10618, 4490, 'four thousand four hundred ninety');\nINSERT INTO t3 VALUES(10619, 48273, 'forty-eight thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(10620, 62972, 'sixty-two thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(10621, 28466, 'twenty-eight thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(10622, 40135, 'forty thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(10623, 44157, 'forty-four thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(10624, 34688, 'thirty-four thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(10625, 7993, 'seven thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(10626, 56261, 'fifty-six thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(10627, 37344, 'thirty-seven thousand three hundred forty-four');\nINSERT INTO t3 VALUES(10628, 73458, 'seventy-three thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(10629, 73568, 'seventy-three thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(10630, 41156, 'forty-one thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(10631, 88168, 'eighty-eight thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(10632, 85962, 'eighty-five thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(10633, 71189, 'seventy-one thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(10634, 90972, 'ninety thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(10635, 7654, 'seven thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(10636, 18384, 'eighteen thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(10637, 66261, 'sixty-six thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(10638, 38844, 'thirty-eight thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(10639, 28843, 'twenty-eight thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(10640, 66852, 'sixty-six thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(10641, 2329, 'two thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(10642, 40783, 'forty thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(10643, 27332, 'twenty-seven thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(10644, 17419, 'seventeen thousand four hundred nineteen');\nINSERT INTO t3 VALUES(10645, 79638, 'seventy-nine thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(10646, 59611, 'fifty-nine thousand six hundred eleven');\nINSERT INTO t3 VALUES(10647, 16088, 'sixteen thousand eighty-eight');\nINSERT INTO t3 VALUES(10648, 17910, 'seventeen thousand nine hundred ten');\nINSERT INTO t3 VALUES(10649, 33871, 'thirty-three thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(10650, 32269, 'thirty-two thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(10651, 86992, 'eighty-six thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(10652, 84530, 'eighty-four thousand five hundred thirty');\nINSERT INTO t3 VALUES(10653, 35047, 'thirty-five thousand forty-seven');\nINSERT INTO t3 VALUES(10654, 85542, 'eighty-five thousand five hundred forty-two');\nINSERT INTO t3 VALUES(10655, 3445, 'three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(10656, 68836, 'sixty-eight thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(10657, 11956, 'eleven thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(10658, 95292, 'ninety-five thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(10659, 91386, 'ninety-one thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(10660, 71837, 'seventy-one thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(10661, 66915, 'sixty-six thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(10662, 70161, 'seventy thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(10663, 99641, 'ninety-nine thousand six hundred forty-one');\nINSERT INTO t3 VALUES(10664, 96026, 'ninety-six thousand twenty-six');\nINSERT INTO t3 VALUES(10665, 88334, 'eighty-eight thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(10666, 47846, 'forty-seven thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(10667, 17913, 'seventeen thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(10668, 46243, 'forty-six thousand two hundred forty-three');\nINSERT INTO t3 VALUES(10669, 30678, 'thirty thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(10670, 69251, 'sixty-nine thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(10671, 25890, 'twenty-five thousand eight hundred ninety');\nINSERT INTO t3 VALUES(10672, 57601, 'fifty-seven thousand six hundred one');\nINSERT INTO t3 VALUES(10673, 29708, 'twenty-nine thousand seven hundred eight');\nINSERT INTO t3 VALUES(10674, 89733, 'eighty-nine thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(10675, 69295, 'sixty-nine thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(10676, 48895, 'forty-eight thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(10677, 61664, 'sixty-one thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(10678, 55014, 'fifty-five thousand fourteen');\nINSERT INTO t3 VALUES(10679, 99738, 'ninety-nine thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(10680, 29179, 'twenty-nine thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(10681, 9607, 'nine thousand six hundred seven');\nINSERT INTO t3 VALUES(10682, 80451, 'eighty thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(10683, 44822, 'forty-four thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(10684, 84018, 'eighty-four thousand eighteen');\nINSERT INTO t3 VALUES(10685, 16729, 'sixteen thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(10686, 91979, 'ninety-one thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(10687, 60625, 'sixty thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(10688, 99882, 'ninety-nine thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(10689, 24529, 'twenty-four thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(10690, 84733, 'eighty-four thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(10691, 45772, 'forty-five thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(10692, 8, 'eight');\nINSERT INTO t3 VALUES(10693, 98736, 'ninety-eight thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(10694, 93590, 'ninety-three thousand five hundred ninety');\nINSERT INTO t3 VALUES(10695, 49561, 'forty-nine thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(10696, 88854, 'eighty-eight thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(10697, 22625, 'twenty-two thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(10698, 64550, 'sixty-four thousand five hundred fifty');\nINSERT INTO t3 VALUES(10699, 67, 'sixty-seven');\nINSERT INTO t3 VALUES(10700, 59263, 'fifty-nine thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(10701, 72292, 'seventy-two thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(10702, 72744, 'seventy-two thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(10703, 90621, 'ninety thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(10704, 28998, 'twenty-eight thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(10705, 52921, 'fifty-two thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(10706, 23829, 'twenty-three thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(10707, 10467, 'ten thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(10708, 10845, 'ten thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(10709, 75247, 'seventy-five thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(10710, 14709, 'fourteen thousand seven hundred nine');\nINSERT INTO t3 VALUES(10711, 33817, 'thirty-three thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(10712, 43932, 'forty-three thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(10713, 25641, 'twenty-five thousand six hundred forty-one');\nINSERT INTO t3 VALUES(10714, 60279, 'sixty thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(10715, 58241, 'fifty-eight thousand two hundred forty-one');\nINSERT INTO t3 VALUES(10716, 91520, 'ninety-one thousand five hundred twenty');\nINSERT INTO t3 VALUES(10717, 10554, 'ten thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(10718, 72043, 'seventy-two thousand forty-three');\nINSERT INTO t3 VALUES(10719, 14954, 'fourteen thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(10720, 3162, 'three thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(10721, 79965, 'seventy-nine thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(10722, 93779, 'ninety-three thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(10723, 5425, 'five thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(10724, 94473, 'ninety-four thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(10725, 55444, 'fifty-five thousand four hundred forty-four');\nINSERT INTO t3 VALUES(10726, 65769, 'sixty-five thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(10727, 8657, 'eight thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(10728, 74068, 'seventy-four thousand sixty-eight');\nINSERT INTO t3 VALUES(10729, 11370, 'eleven thousand three hundred seventy');\nINSERT INTO t3 VALUES(10730, 48920, 'forty-eight thousand nine hundred twenty');\nINSERT INTO t3 VALUES(10731, 36068, 'thirty-six thousand sixty-eight');\nINSERT INTO t3 VALUES(10732, 5915, 'five thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(10733, 3206, 'three thousand two hundred six');\nINSERT INTO t3 VALUES(10734, 43790, 'forty-three thousand seven hundred ninety');\nINSERT INTO t3 VALUES(10735, 30421, 'thirty thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(10736, 37784, 'thirty-seven thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(10737, 98331, 'ninety-eight thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(10738, 310, 'three hundred ten');\nINSERT INTO t3 VALUES(10739, 13404, 'thirteen thousand four hundred four');\nINSERT INTO t3 VALUES(10740, 11981, 'eleven thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(10741, 59970, 'fifty-nine thousand nine hundred seventy');\nINSERT INTO t3 VALUES(10742, 49494, 'forty-nine thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(10743, 6994, 'six thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(10744, 7963, 'seven thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(10745, 72666, 'seventy-two thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(10746, 64219, 'sixty-four thousand two hundred nineteen');\nINSERT INTO t3 VALUES(10747, 66853, 'sixty-six thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(10748, 40465, 'forty thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(10749, 16456, 'sixteen thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(10750, 33101, 'thirty-three thousand one hundred one');\nINSERT INTO t3 VALUES(10751, 493, 'four hundred ninety-three');\nINSERT INTO t3 VALUES(10752, 93733, 'ninety-three thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(10753, 14553, 'fourteen thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(10754, 67620, 'sixty-seven thousand six hundred twenty');\nINSERT INTO t3 VALUES(10755, 95814, 'ninety-five thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(10756, 38707, 'thirty-eight thousand seven hundred seven');\nINSERT INTO t3 VALUES(10757, 98011, 'ninety-eight thousand eleven');\nINSERT INTO t3 VALUES(10758, 3228, 'three thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(10759, 42719, 'forty-two thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(10760, 66266, 'sixty-six thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(10761, 20277, 'twenty thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(10762, 95086, 'ninety-five thousand eighty-six');\nINSERT INTO t3 VALUES(10763, 77175, 'seventy-seven thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(10764, 73903, 'seventy-three thousand nine hundred three');\nINSERT INTO t3 VALUES(10765, 54567, 'fifty-four thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(10766, 2049, 'two thousand forty-nine');\nINSERT INTO t3 VALUES(10767, 10613, 'ten thousand six hundred thirteen');\nINSERT INTO t3 VALUES(10768, 83046, 'eighty-three thousand forty-six');\nINSERT INTO t3 VALUES(10769, 88476, 'eighty-eight thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(10770, 5472, 'five thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(10771, 64693, 'sixty-four thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(10772, 91556, 'ninety-one thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(10773, 89342, 'eighty-nine thousand three hundred forty-two');\nINSERT INTO t3 VALUES(10774, 40578, 'forty thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(10775, 33641, 'thirty-three thousand six hundred forty-one');\nINSERT INTO t3 VALUES(10776, 89678, 'eighty-nine thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(10777, 29041, 'twenty-nine thousand forty-one');\nINSERT INTO t3 VALUES(10778, 84569, 'eighty-four thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(10779, 39293, 'thirty-nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(10780, 69547, 'sixty-nine thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(10781, 68847, 'sixty-eight thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(10782, 42339, 'forty-two thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(10783, 79802, 'seventy-nine thousand eight hundred two');\nINSERT INTO t3 VALUES(10784, 16404, 'sixteen thousand four hundred four');\nINSERT INTO t3 VALUES(10785, 75227, 'seventy-five thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(10786, 55243, 'fifty-five thousand two hundred forty-three');\nINSERT INTO t3 VALUES(10787, 33653, 'thirty-three thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(10788, 22919, 'twenty-two thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(10789, 32032, 'thirty-two thousand thirty-two');\nINSERT INTO t3 VALUES(10790, 33047, 'thirty-three thousand forty-seven');\nINSERT INTO t3 VALUES(10791, 9311, 'nine thousand three hundred eleven');\nINSERT INTO t3 VALUES(10792, 97304, 'ninety-seven thousand three hundred four');\nINSERT INTO t3 VALUES(10793, 81534, 'eighty-one thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(10794, 71401, 'seventy-one thousand four hundred one');\nINSERT INTO t3 VALUES(10795, 76388, 'seventy-six thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(10796, 53599, 'fifty-three thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(10797, 80347, 'eighty thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(10798, 55653, 'fifty-five thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(10799, 6553, 'six thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(10800, 28492, 'twenty-eight thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(10801, 12151, 'twelve thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(10802, 21140, 'twenty-one thousand one hundred forty');\nINSERT INTO t3 VALUES(10803, 49912, 'forty-nine thousand nine hundred twelve');\nINSERT INTO t3 VALUES(10804, 70308, 'seventy thousand three hundred eight');\nINSERT INTO t3 VALUES(10805, 26252, 'twenty-six thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(10806, 5600, 'five thousand six hundred');\nINSERT INTO t3 VALUES(10807, 92066, 'ninety-two thousand sixty-six');\nINSERT INTO t3 VALUES(10808, 47028, 'forty-seven thousand twenty-eight');\nINSERT INTO t3 VALUES(10809, 94053, 'ninety-four thousand fifty-three');\nINSERT INTO t3 VALUES(10810, 67529, 'sixty-seven thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(10811, 6408, 'six thousand four hundred eight');\nINSERT INTO t3 VALUES(10812, 10116, 'ten thousand one hundred sixteen');\nINSERT INTO t3 VALUES(10813, 53925, 'fifty-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(10814, 69930, 'sixty-nine thousand nine hundred thirty');\nINSERT INTO t3 VALUES(10815, 72684, 'seventy-two thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(10816, 42314, 'forty-two thousand three hundred fourteen');\nINSERT INTO t3 VALUES(10817, 30607, 'thirty thousand six hundred seven');\nINSERT INTO t3 VALUES(10818, 67474, 'sixty-seven thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(10819, 94213, 'ninety-four thousand two hundred thirteen');\nINSERT INTO t3 VALUES(10820, 64568, 'sixty-four thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(10821, 18940, 'eighteen thousand nine hundred forty');\nINSERT INTO t3 VALUES(10822, 68450, 'sixty-eight thousand four hundred fifty');\nINSERT INTO t3 VALUES(10823, 12469, 'twelve thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(10824, 80658, 'eighty thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(10825, 35318, 'thirty-five thousand three hundred eighteen');\nINSERT INTO t3 VALUES(10826, 53041, 'fifty-three thousand forty-one');\nINSERT INTO t3 VALUES(10827, 86618, 'eighty-six thousand six hundred eighteen');\nINSERT INTO t3 VALUES(10828, 29611, 'twenty-nine thousand six hundred eleven');\nINSERT INTO t3 VALUES(10829, 90236, 'ninety thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(10830, 12596, 'twelve thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(10831, 6870, 'six thousand eight hundred seventy');\nINSERT INTO t3 VALUES(10832, 82402, 'eighty-two thousand four hundred two');\nINSERT INTO t3 VALUES(10833, 91415, 'ninety-one thousand four hundred fifteen');\nINSERT INTO t3 VALUES(10834, 48761, 'forty-eight thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(10835, 92362, 'ninety-two thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(10836, 2232, 'two thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(10837, 44704, 'forty-four thousand seven hundred four');\nINSERT INTO t3 VALUES(10838, 57685, 'fifty-seven thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(10839, 65459, 'sixty-five thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(10840, 4310, 'four thousand three hundred ten');\nINSERT INTO t3 VALUES(10841, 24407, 'twenty-four thousand four hundred seven');\nINSERT INTO t3 VALUES(10842, 16371, 'sixteen thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(10843, 90077, 'ninety thousand seventy-seven');\nINSERT INTO t3 VALUES(10844, 84437, 'eighty-four thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(10845, 12623, 'twelve thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(10846, 20706, 'twenty thousand seven hundred six');\nINSERT INTO t3 VALUES(10847, 87851, 'eighty-seven thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(10848, 46832, 'forty-six thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(10849, 13313, 'thirteen thousand three hundred thirteen');\nINSERT INTO t3 VALUES(10850, 27800, 'twenty-seven thousand eight hundred');\nINSERT INTO t3 VALUES(10851, 89290, 'eighty-nine thousand two hundred ninety');\nINSERT INTO t3 VALUES(10852, 36846, 'thirty-six thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(10853, 12370, 'twelve thousand three hundred seventy');\nINSERT INTO t3 VALUES(10854, 46960, 'forty-six thousand nine hundred sixty');\nINSERT INTO t3 VALUES(10855, 96617, 'ninety-six thousand six hundred seventeen');\nINSERT INTO t3 VALUES(10856, 5765, 'five thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(10857, 51413, 'fifty-one thousand four hundred thirteen');\nINSERT INTO t3 VALUES(10858, 63089, 'sixty-three thousand eighty-nine');\nINSERT INTO t3 VALUES(10859, 27286, 'twenty-seven thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(10860, 41034, 'forty-one thousand thirty-four');\nINSERT INTO t3 VALUES(10861, 69970, 'sixty-nine thousand nine hundred seventy');\nINSERT INTO t3 VALUES(10862, 17890, 'seventeen thousand eight hundred ninety');\nINSERT INTO t3 VALUES(10863, 90405, 'ninety thousand four hundred five');\nINSERT INTO t3 VALUES(10864, 38216, 'thirty-eight thousand two hundred sixteen');\nINSERT INTO t3 VALUES(10865, 69559, 'sixty-nine thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(10866, 16568, 'sixteen thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(10867, 70392, 'seventy thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(10868, 77787, 'seventy-seven thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(10869, 76020, 'seventy-six thousand twenty');\nINSERT INTO t3 VALUES(10870, 98387, 'ninety-eight thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(10871, 85823, 'eighty-five thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(10872, 89197, 'eighty-nine thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(10873, 45427, 'forty-five thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(10874, 87352, 'eighty-seven thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(10875, 71029, 'seventy-one thousand twenty-nine');\nINSERT INTO t3 VALUES(10876, 72829, 'seventy-two thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(10877, 11497, 'eleven thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(10878, 93275, 'ninety-three thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(10879, 57055, 'fifty-seven thousand fifty-five');\nINSERT INTO t3 VALUES(10880, 24600, 'twenty-four thousand six hundred');\nINSERT INTO t3 VALUES(10881, 83867, 'eighty-three thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(10882, 66656, 'sixty-six thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(10883, 90995, 'ninety thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(10884, 71675, 'seventy-one thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(10885, 62782, 'sixty-two thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(10886, 92267, 'ninety-two thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(10887, 43924, 'forty-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(10888, 95518, 'ninety-five thousand five hundred eighteen');\nINSERT INTO t3 VALUES(10889, 43147, 'forty-three thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(10890, 49343, 'forty-nine thousand three hundred forty-three');\nINSERT INTO t3 VALUES(10891, 38069, 'thirty-eight thousand sixty-nine');\nINSERT INTO t3 VALUES(10892, 33796, 'thirty-three thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(10893, 24255, 'twenty-four thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(10894, 22434, 'twenty-two thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(10895, 75506, 'seventy-five thousand five hundred six');\nINSERT INTO t3 VALUES(10896, 72279, 'seventy-two thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(10897, 93236, 'ninety-three thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(10898, 88144, 'eighty-eight thousand one hundred forty-four');\nINSERT INTO t3 VALUES(10899, 65763, 'sixty-five thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(10900, 70948, 'seventy thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(10901, 1960, 'one thousand nine hundred sixty');\nINSERT INTO t3 VALUES(10902, 83281, 'eighty-three thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(10903, 84650, 'eighty-four thousand six hundred fifty');\nINSERT INTO t3 VALUES(10904, 16765, 'sixteen thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(10905, 75963, 'seventy-five thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(10906, 69832, 'sixty-nine thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(10907, 44509, 'forty-four thousand five hundred nine');\nINSERT INTO t3 VALUES(10908, 44148, 'forty-four thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(10909, 19685, 'nineteen thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(10910, 85157, 'eighty-five thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(10911, 28159, 'twenty-eight thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(10912, 28786, 'twenty-eight thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(10913, 68380, 'sixty-eight thousand three hundred eighty');\nINSERT INTO t3 VALUES(10914, 69751, 'sixty-nine thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(10915, 24201, 'twenty-four thousand two hundred one');\nINSERT INTO t3 VALUES(10916, 66909, 'sixty-six thousand nine hundred nine');\nINSERT INTO t3 VALUES(10917, 97251, 'ninety-seven thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(10918, 31144, 'thirty-one thousand one hundred forty-four');\nINSERT INTO t3 VALUES(10919, 87052, 'eighty-seven thousand fifty-two');\nINSERT INTO t3 VALUES(10920, 22233, 'twenty-two thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(10921, 36134, 'thirty-six thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(10922, 81986, 'eighty-one thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(10923, 29602, 'twenty-nine thousand six hundred two');\nINSERT INTO t3 VALUES(10924, 31699, 'thirty-one thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(10925, 40368, 'forty thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(10926, 13196, 'thirteen thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(10927, 67233, 'sixty-seven thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(10928, 28292, 'twenty-eight thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(10929, 60938, 'sixty thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(10930, 22981, 'twenty-two thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(10931, 55293, 'fifty-five thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(10932, 1442, 'one thousand four hundred forty-two');\nINSERT INTO t3 VALUES(10933, 89451, 'eighty-nine thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(10934, 74352, 'seventy-four thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(10935, 53110, 'fifty-three thousand one hundred ten');\nINSERT INTO t3 VALUES(10936, 72118, 'seventy-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(10937, 71427, 'seventy-one thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(10938, 73888, 'seventy-three thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(10939, 53151, 'fifty-three thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(10940, 16279, 'sixteen thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(10941, 19747, 'nineteen thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(10942, 69530, 'sixty-nine thousand five hundred thirty');\nINSERT INTO t3 VALUES(10943, 82903, 'eighty-two thousand nine hundred three');\nINSERT INTO t3 VALUES(10944, 10401, 'ten thousand four hundred one');\nINSERT INTO t3 VALUES(10945, 28338, 'twenty-eight thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(10946, 18533, 'eighteen thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(10947, 54540, 'fifty-four thousand five hundred forty');\nINSERT INTO t3 VALUES(10948, 14713, 'fourteen thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(10949, 98920, 'ninety-eight thousand nine hundred twenty');\nINSERT INTO t3 VALUES(10950, 37564, 'thirty-seven thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(10951, 64025, 'sixty-four thousand twenty-five');\nINSERT INTO t3 VALUES(10952, 509, 'five hundred nine');\nINSERT INTO t3 VALUES(10953, 11087, 'eleven thousand eighty-seven');\nINSERT INTO t3 VALUES(10954, 72134, 'seventy-two thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(10955, 47045, 'forty-seven thousand forty-five');\nINSERT INTO t3 VALUES(10956, 65681, 'sixty-five thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(10957, 79936, 'seventy-nine thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(10958, 7810, 'seven thousand eight hundred ten');\nINSERT INTO t3 VALUES(10959, 27203, 'twenty-seven thousand two hundred three');\nINSERT INTO t3 VALUES(10960, 45275, 'forty-five thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(10961, 83078, 'eighty-three thousand seventy-eight');\nINSERT INTO t3 VALUES(10962, 80874, 'eighty thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(10963, 49629, 'forty-nine thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(10964, 44591, 'forty-four thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(10965, 33517, 'thirty-three thousand five hundred seventeen');\nINSERT INTO t3 VALUES(10966, 13108, 'thirteen thousand one hundred eight');\nINSERT INTO t3 VALUES(10967, 78838, 'seventy-eight thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(10968, 55590, 'fifty-five thousand five hundred ninety');\nINSERT INTO t3 VALUES(10969, 46472, 'forty-six thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(10970, 70047, 'seventy thousand forty-seven');\nINSERT INTO t3 VALUES(10971, 10331, 'ten thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(10972, 19159, 'nineteen thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(10973, 76159, 'seventy-six thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(10974, 16310, 'sixteen thousand three hundred ten');\nINSERT INTO t3 VALUES(10975, 12279, 'twelve thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(10976, 28404, 'twenty-eight thousand four hundred four');\nINSERT INTO t3 VALUES(10977, 17025, 'seventeen thousand twenty-five');\nINSERT INTO t3 VALUES(10978, 30381, 'thirty thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(10979, 69400, 'sixty-nine thousand four hundred');\nINSERT INTO t3 VALUES(10980, 73936, 'seventy-three thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(10981, 33825, 'thirty-three thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(10982, 60746, 'sixty thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(10983, 4917, 'four thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(10984, 77692, 'seventy-seven thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(10985, 39683, 'thirty-nine thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(10986, 92658, 'ninety-two thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(10987, 66522, 'sixty-six thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(10988, 23990, 'twenty-three thousand nine hundred ninety');\nINSERT INTO t3 VALUES(10989, 37734, 'thirty-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(10990, 82274, 'eighty-two thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(10991, 45421, 'forty-five thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(10992, 34156, 'thirty-four thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(10993, 3791, 'three thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(10994, 26429, 'twenty-six thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(10995, 84978, 'eighty-four thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(10996, 48180, 'forty-eight thousand one hundred eighty');\nINSERT INTO t3 VALUES(10997, 71311, 'seventy-one thousand three hundred eleven');\nINSERT INTO t3 VALUES(10998, 30852, 'thirty thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(10999, 45959, 'forty-five thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(11000, 10512, 'ten thousand five hundred twelve');\nINSERT INTO t3 VALUES(11001, 30183, 'thirty thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(11002, 73351, 'seventy-three thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(11003, 67270, 'sixty-seven thousand two hundred seventy');\nINSERT INTO t3 VALUES(11004, 89632, 'eighty-nine thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(11005, 4057, 'four thousand fifty-seven');\nINSERT INTO t3 VALUES(11006, 65163, 'sixty-five thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(11007, 39256, 'thirty-nine thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(11008, 86978, 'eighty-six thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(11009, 56962, 'fifty-six thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(11010, 63263, 'sixty-three thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(11011, 18335, 'eighteen thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(11012, 18597, 'eighteen thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(11013, 21035, 'twenty-one thousand thirty-five');\nINSERT INTO t3 VALUES(11014, 23236, 'twenty-three thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(11015, 63952, 'sixty-three thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(11016, 24442, 'twenty-four thousand four hundred forty-two');\nINSERT INTO t3 VALUES(11017, 88347, 'eighty-eight thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(11018, 74322, 'seventy-four thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(11019, 39544, 'thirty-nine thousand five hundred forty-four');\nINSERT INTO t3 VALUES(11020, 5834, 'five thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(11021, 72605, 'seventy-two thousand six hundred five');\nINSERT INTO t3 VALUES(11022, 35217, 'thirty-five thousand two hundred seventeen');\nINSERT INTO t3 VALUES(11023, 43060, 'forty-three thousand sixty');\nINSERT INTO t3 VALUES(11024, 51837, 'fifty-one thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(11025, 45135, 'forty-five thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(11026, 67767, 'sixty-seven thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(11027, 27976, 'twenty-seven thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(11028, 65836, 'sixty-five thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(11029, 18096, 'eighteen thousand ninety-six');\nINSERT INTO t3 VALUES(11030, 84463, 'eighty-four thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(11031, 84247, 'eighty-four thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(11032, 80923, 'eighty thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(11033, 63983, 'sixty-three thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(11034, 92431, 'ninety-two thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(11035, 91538, 'ninety-one thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(11036, 90053, 'ninety thousand fifty-three');\nINSERT INTO t3 VALUES(11037, 61166, 'sixty-one thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(11038, 19959, 'nineteen thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(11039, 81429, 'eighty-one thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(11040, 24863, 'twenty-four thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(11041, 78128, 'seventy-eight thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(11042, 78672, 'seventy-eight thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(11043, 35473, 'thirty-five thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(11044, 80758, 'eighty thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(11045, 26306, 'twenty-six thousand three hundred six');\nINSERT INTO t3 VALUES(11046, 58280, 'fifty-eight thousand two hundred eighty');\nINSERT INTO t3 VALUES(11047, 87616, 'eighty-seven thousand six hundred sixteen');\nINSERT INTO t3 VALUES(11048, 23750, 'twenty-three thousand seven hundred fifty');\nINSERT INTO t3 VALUES(11049, 28679, 'twenty-eight thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(11050, 27309, 'twenty-seven thousand three hundred nine');\nINSERT INTO t3 VALUES(11051, 5706, 'five thousand seven hundred six');\nINSERT INTO t3 VALUES(11052, 18708, 'eighteen thousand seven hundred eight');\nINSERT INTO t3 VALUES(11053, 14416, 'fourteen thousand four hundred sixteen');\nINSERT INTO t3 VALUES(11054, 84060, 'eighty-four thousand sixty');\nINSERT INTO t3 VALUES(11055, 5425, 'five thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(11056, 79057, 'seventy-nine thousand fifty-seven');\nINSERT INTO t3 VALUES(11057, 90187, 'ninety thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(11058, 82494, 'eighty-two thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(11059, 98482, 'ninety-eight thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(11060, 13681, 'thirteen thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(11061, 48138, 'forty-eight thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(11062, 9837, 'nine thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(11063, 33882, 'thirty-three thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(11064, 54906, 'fifty-four thousand nine hundred six');\nINSERT INTO t3 VALUES(11065, 62330, 'sixty-two thousand three hundred thirty');\nINSERT INTO t3 VALUES(11066, 89439, 'eighty-nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(11067, 92900, 'ninety-two thousand nine hundred');\nINSERT INTO t3 VALUES(11068, 7689, 'seven thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(11069, 71557, 'seventy-one thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(11070, 22907, 'twenty-two thousand nine hundred seven');\nINSERT INTO t3 VALUES(11071, 31465, 'thirty-one thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(11072, 83976, 'eighty-three thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(11073, 25962, 'twenty-five thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(11074, 99005, 'ninety-nine thousand five');\nINSERT INTO t3 VALUES(11075, 5751, 'five thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(11076, 78356, 'seventy-eight thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(11077, 94808, 'ninety-four thousand eight hundred eight');\nINSERT INTO t3 VALUES(11078, 45204, 'forty-five thousand two hundred four');\nINSERT INTO t3 VALUES(11079, 45877, 'forty-five thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(11080, 91834, 'ninety-one thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(11081, 3333, 'three thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(11082, 78102, 'seventy-eight thousand one hundred two');\nINSERT INTO t3 VALUES(11083, 5407, 'five thousand four hundred seven');\nINSERT INTO t3 VALUES(11084, 12084, 'twelve thousand eighty-four');\nINSERT INTO t3 VALUES(11085, 4565, 'four thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(11086, 27751, 'twenty-seven thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(11087, 84913, 'eighty-four thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(11088, 70328, 'seventy thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(11089, 61211, 'sixty-one thousand two hundred eleven');\nINSERT INTO t3 VALUES(11090, 403, 'four hundred three');\nINSERT INTO t3 VALUES(11091, 16552, 'sixteen thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(11092, 25030, 'twenty-five thousand thirty');\nINSERT INTO t3 VALUES(11093, 69512, 'sixty-nine thousand five hundred twelve');\nINSERT INTO t3 VALUES(11094, 51926, 'fifty-one thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(11095, 4266, 'four thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(11096, 92534, 'ninety-two thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(11097, 86815, 'eighty-six thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(11098, 49396, 'forty-nine thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(11099, 28502, 'twenty-eight thousand five hundred two');\nINSERT INTO t3 VALUES(11100, 89435, 'eighty-nine thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(11101, 52041, 'fifty-two thousand forty-one');\nINSERT INTO t3 VALUES(11102, 11767, 'eleven thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(11103, 96382, 'ninety-six thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(11104, 48470, 'forty-eight thousand four hundred seventy');\nINSERT INTO t3 VALUES(11105, 76268, 'seventy-six thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(11106, 25589, 'twenty-five thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(11107, 72587, 'seventy-two thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(11108, 67263, 'sixty-seven thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(11109, 66930, 'sixty-six thousand nine hundred thirty');\nINSERT INTO t3 VALUES(11110, 19956, 'nineteen thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(11111, 74380, 'seventy-four thousand three hundred eighty');\nINSERT INTO t3 VALUES(11112, 87688, 'eighty-seven thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(11113, 67537, 'sixty-seven thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(11114, 20848, 'twenty thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(11115, 75957, 'seventy-five thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(11116, 62091, 'sixty-two thousand ninety-one');\nINSERT INTO t3 VALUES(11117, 35331, 'thirty-five thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(11118, 80361, 'eighty thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(11119, 31820, 'thirty-one thousand eight hundred twenty');\nINSERT INTO t3 VALUES(11120, 18194, 'eighteen thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(11121, 32192, 'thirty-two thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(11122, 31710, 'thirty-one thousand seven hundred ten');\nINSERT INTO t3 VALUES(11123, 52760, 'fifty-two thousand seven hundred sixty');\nINSERT INTO t3 VALUES(11124, 44424, 'forty-four thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(11125, 70434, 'seventy thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(11126, 66378, 'sixty-six thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(11127, 67007, 'sixty-seven thousand seven');\nINSERT INTO t3 VALUES(11128, 28218, 'twenty-eight thousand two hundred eighteen');\nINSERT INTO t3 VALUES(11129, 62373, 'sixty-two thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(11130, 79043, 'seventy-nine thousand forty-three');\nINSERT INTO t3 VALUES(11131, 88281, 'eighty-eight thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(11132, 46277, 'forty-six thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(11133, 2777, 'two thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(11134, 65802, 'sixty-five thousand eight hundred two');\nINSERT INTO t3 VALUES(11135, 50437, 'fifty thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(11136, 57691, 'fifty-seven thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(11137, 18696, 'eighteen thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(11138, 48939, 'forty-eight thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(11139, 71127, 'seventy-one thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(11140, 44397, 'forty-four thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(11141, 43218, 'forty-three thousand two hundred eighteen');\nINSERT INTO t3 VALUES(11142, 91156, 'ninety-one thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(11143, 61725, 'sixty-one thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(11144, 3837, 'three thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(11145, 47329, 'forty-seven thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(11146, 70, 'seventy');\nINSERT INTO t3 VALUES(11147, 52445, 'fifty-two thousand four hundred forty-five');\nINSERT INTO t3 VALUES(11148, 60824, 'sixty thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(11149, 36397, 'thirty-six thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(11150, 94180, 'ninety-four thousand one hundred eighty');\nINSERT INTO t3 VALUES(11151, 54837, 'fifty-four thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(11152, 9405, 'nine thousand four hundred five');\nINSERT INTO t3 VALUES(11153, 77189, 'seventy-seven thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(11154, 96640, 'ninety-six thousand six hundred forty');\nINSERT INTO t3 VALUES(11155, 71752, 'seventy-one thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(11156, 29213, 'twenty-nine thousand two hundred thirteen');\nINSERT INTO t3 VALUES(11157, 9410, 'nine thousand four hundred ten');\nINSERT INTO t3 VALUES(11158, 20087, 'twenty thousand eighty-seven');\nINSERT INTO t3 VALUES(11159, 39088, 'thirty-nine thousand eighty-eight');\nINSERT INTO t3 VALUES(11160, 51053, 'fifty-one thousand fifty-three');\nINSERT INTO t3 VALUES(11161, 90947, 'ninety thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(11162, 66163, 'sixty-six thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(11163, 31910, 'thirty-one thousand nine hundred ten');\nINSERT INTO t3 VALUES(11164, 35284, 'thirty-five thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(11165, 56390, 'fifty-six thousand three hundred ninety');\nINSERT INTO t3 VALUES(11166, 55863, 'fifty-five thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(11167, 74, 'seventy-four');\nINSERT INTO t3 VALUES(11168, 32946, 'thirty-two thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(11169, 48776, 'forty-eight thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(11170, 91812, 'ninety-one thousand eight hundred twelve');\nINSERT INTO t3 VALUES(11171, 44538, 'forty-four thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(11172, 55368, 'fifty-five thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(11173, 12683, 'twelve thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(11174, 73514, 'seventy-three thousand five hundred fourteen');\nINSERT INTO t3 VALUES(11175, 28569, 'twenty-eight thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(11176, 1915, 'one thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(11177, 16241, 'sixteen thousand two hundred forty-one');\nINSERT INTO t3 VALUES(11178, 32149, 'thirty-two thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(11179, 55457, 'fifty-five thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(11180, 15350, 'fifteen thousand three hundred fifty');\nINSERT INTO t3 VALUES(11181, 91026, 'ninety-one thousand twenty-six');\nINSERT INTO t3 VALUES(11182, 56756, 'fifty-six thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(11183, 4659, 'four thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(11184, 52715, 'fifty-two thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(11185, 80117, 'eighty thousand one hundred seventeen');\nINSERT INTO t3 VALUES(11186, 1154, 'one thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(11187, 17609, 'seventeen thousand six hundred nine');\nINSERT INTO t3 VALUES(11188, 62436, 'sixty-two thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(11189, 79283, 'seventy-nine thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(11190, 2215, 'two thousand two hundred fifteen');\nINSERT INTO t3 VALUES(11191, 82097, 'eighty-two thousand ninety-seven');\nINSERT INTO t3 VALUES(11192, 13349, 'thirteen thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(11193, 11629, 'eleven thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(11194, 39647, 'thirty-nine thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(11195, 52799, 'fifty-two thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(11196, 6056, 'six thousand fifty-six');\nINSERT INTO t3 VALUES(11197, 72419, 'seventy-two thousand four hundred nineteen');\nINSERT INTO t3 VALUES(11198, 71084, 'seventy-one thousand eighty-four');\nINSERT INTO t3 VALUES(11199, 22972, 'twenty-two thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(11200, 15439, 'fifteen thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(11201, 43453, 'forty-three thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(11202, 51486, 'fifty-one thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(11203, 42007, 'forty-two thousand seven');\nINSERT INTO t3 VALUES(11204, 40911, 'forty thousand nine hundred eleven');\nINSERT INTO t3 VALUES(11205, 71131, 'seventy-one thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(11206, 19540, 'nineteen thousand five hundred forty');\nINSERT INTO t3 VALUES(11207, 70399, 'seventy thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(11208, 86560, 'eighty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(11209, 28959, 'twenty-eight thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(11210, 97042, 'ninety-seven thousand forty-two');\nINSERT INTO t3 VALUES(11211, 83365, 'eighty-three thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(11212, 92641, 'ninety-two thousand six hundred forty-one');\nINSERT INTO t3 VALUES(11213, 4092, 'four thousand ninety-two');\nINSERT INTO t3 VALUES(11214, 39897, 'thirty-nine thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(11215, 22955, 'twenty-two thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(11216, 34836, 'thirty-four thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(11217, 28866, 'twenty-eight thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(11218, 52782, 'fifty-two thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(11219, 17209, 'seventeen thousand two hundred nine');\nINSERT INTO t3 VALUES(11220, 39108, 'thirty-nine thousand one hundred eight');\nINSERT INTO t3 VALUES(11221, 75816, 'seventy-five thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(11222, 72616, 'seventy-two thousand six hundred sixteen');\nINSERT INTO t3 VALUES(11223, 33417, 'thirty-three thousand four hundred seventeen');\nINSERT INTO t3 VALUES(11224, 93679, 'ninety-three thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(11225, 52960, 'fifty-two thousand nine hundred sixty');\nINSERT INTO t3 VALUES(11226, 30311, 'thirty thousand three hundred eleven');\nINSERT INTO t3 VALUES(11227, 12191, 'twelve thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(11228, 89102, 'eighty-nine thousand one hundred two');\nINSERT INTO t3 VALUES(11229, 96198, 'ninety-six thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(11230, 97540, 'ninety-seven thousand five hundred forty');\nINSERT INTO t3 VALUES(11231, 9085, 'nine thousand eighty-five');\nINSERT INTO t3 VALUES(11232, 46069, 'forty-six thousand sixty-nine');\nINSERT INTO t3 VALUES(11233, 75687, 'seventy-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(11234, 25724, 'twenty-five thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(11235, 41590, 'forty-one thousand five hundred ninety');\nINSERT INTO t3 VALUES(11236, 80445, 'eighty thousand four hundred forty-five');\nINSERT INTO t3 VALUES(11237, 63073, 'sixty-three thousand seventy-three');\nINSERT INTO t3 VALUES(11238, 38755, 'thirty-eight thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(11239, 60809, 'sixty thousand eight hundred nine');\nINSERT INTO t3 VALUES(11240, 22330, 'twenty-two thousand three hundred thirty');\nINSERT INTO t3 VALUES(11241, 59893, 'fifty-nine thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(11242, 33710, 'thirty-three thousand seven hundred ten');\nINSERT INTO t3 VALUES(11243, 37837, 'thirty-seven thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(11244, 94588, 'ninety-four thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(11245, 24821, 'twenty-four thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(11246, 83984, 'eighty-three thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(11247, 84558, 'eighty-four thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(11248, 18676, 'eighteen thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(11249, 60062, 'sixty thousand sixty-two');\nINSERT INTO t3 VALUES(11250, 35283, 'thirty-five thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(11251, 28738, 'twenty-eight thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(11252, 83718, 'eighty-three thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(11253, 10063, 'ten thousand sixty-three');\nINSERT INTO t3 VALUES(11254, 86317, 'eighty-six thousand three hundred seventeen');\nINSERT INTO t3 VALUES(11255, 14531, 'fourteen thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(11256, 14168, 'fourteen thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(11257, 2723, 'two thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(11258, 47599, 'forty-seven thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(11259, 53148, 'fifty-three thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(11260, 5570, 'five thousand five hundred seventy');\nINSERT INTO t3 VALUES(11261, 36026, 'thirty-six thousand twenty-six');\nINSERT INTO t3 VALUES(11262, 96930, 'ninety-six thousand nine hundred thirty');\nINSERT INTO t3 VALUES(11263, 17867, 'seventeen thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(11264, 95334, 'ninety-five thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(11265, 70686, 'seventy thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(11266, 12498, 'twelve thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(11267, 92754, 'ninety-two thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(11268, 96156, 'ninety-six thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(11269, 83130, 'eighty-three thousand one hundred thirty');\nINSERT INTO t3 VALUES(11270, 95538, 'ninety-five thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(11271, 71498, 'seventy-one thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(11272, 25488, 'twenty-five thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(11273, 34216, 'thirty-four thousand two hundred sixteen');\nINSERT INTO t3 VALUES(11274, 63954, 'sixty-three thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(11275, 61635, 'sixty-one thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(11276, 89166, 'eighty-nine thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(11277, 66069, 'sixty-six thousand sixty-nine');\nINSERT INTO t3 VALUES(11278, 69532, 'sixty-nine thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(11279, 14136, 'fourteen thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(11280, 56829, 'fifty-six thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(11281, 73841, 'seventy-three thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(11282, 82222, 'eighty-two thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(11283, 68802, 'sixty-eight thousand eight hundred two');\nINSERT INTO t3 VALUES(11284, 54815, 'fifty-four thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(11285, 31933, 'thirty-one thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(11286, 26543, 'twenty-six thousand five hundred forty-three');\nINSERT INTO t3 VALUES(11287, 86579, 'eighty-six thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(11288, 58123, 'fifty-eight thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(11289, 35272, 'thirty-five thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(11290, 83122, 'eighty-three thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(11291, 52857, 'fifty-two thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(11292, 14345, 'fourteen thousand three hundred forty-five');\nINSERT INTO t3 VALUES(11293, 25953, 'twenty-five thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(11294, 76965, 'seventy-six thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(11295, 91485, 'ninety-one thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(11296, 42274, 'forty-two thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(11297, 13176, 'thirteen thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(11298, 9724, 'nine thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(11299, 68239, 'sixty-eight thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(11300, 17095, 'seventeen thousand ninety-five');\nINSERT INTO t3 VALUES(11301, 81118, 'eighty-one thousand one hundred eighteen');\nINSERT INTO t3 VALUES(11302, 75755, 'seventy-five thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(11303, 94959, 'ninety-four thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(11304, 44838, 'forty-four thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(11305, 11998, 'eleven thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(11306, 34732, 'thirty-four thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(11307, 48092, 'forty-eight thousand ninety-two');\nINSERT INTO t3 VALUES(11308, 48208, 'forty-eight thousand two hundred eight');\nINSERT INTO t3 VALUES(11309, 86109, 'eighty-six thousand one hundred nine');\nINSERT INTO t3 VALUES(11310, 84440, 'eighty-four thousand four hundred forty');\nINSERT INTO t3 VALUES(11311, 28070, 'twenty-eight thousand seventy');\nINSERT INTO t3 VALUES(11312, 53496, 'fifty-three thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(11313, 17786, 'seventeen thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(11314, 5016, 'five thousand sixteen');\nINSERT INTO t3 VALUES(11315, 1230, 'one thousand two hundred thirty');\nINSERT INTO t3 VALUES(11316, 35383, 'thirty-five thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(11317, 64270, 'sixty-four thousand two hundred seventy');\nINSERT INTO t3 VALUES(11318, 64500, 'sixty-four thousand five hundred');\nINSERT INTO t3 VALUES(11319, 42906, 'forty-two thousand nine hundred six');\nINSERT INTO t3 VALUES(11320, 92747, 'ninety-two thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(11321, 24862, 'twenty-four thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(11322, 87202, 'eighty-seven thousand two hundred two');\nINSERT INTO t3 VALUES(11323, 63626, 'sixty-three thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(11324, 19956, 'nineteen thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(11325, 37053, 'thirty-seven thousand fifty-three');\nINSERT INTO t3 VALUES(11326, 37830, 'thirty-seven thousand eight hundred thirty');\nINSERT INTO t3 VALUES(11327, 18255, 'eighteen thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(11328, 57473, 'fifty-seven thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(11329, 53078, 'fifty-three thousand seventy-eight');\nINSERT INTO t3 VALUES(11330, 72570, 'seventy-two thousand five hundred seventy');\nINSERT INTO t3 VALUES(11331, 86761, 'eighty-six thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(11332, 62066, 'sixty-two thousand sixty-six');\nINSERT INTO t3 VALUES(11333, 71596, 'seventy-one thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(11334, 6184, 'six thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(11335, 5516, 'five thousand five hundred sixteen');\nINSERT INTO t3 VALUES(11336, 45329, 'forty-five thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(11337, 85884, 'eighty-five thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(11338, 76347, 'seventy-six thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(11339, 82035, 'eighty-two thousand thirty-five');\nINSERT INTO t3 VALUES(11340, 48565, 'forty-eight thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(11341, 15716, 'fifteen thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(11342, 44293, 'forty-four thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(11343, 362, 'three hundred sixty-two');\nINSERT INTO t3 VALUES(11344, 29591, 'twenty-nine thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(11345, 56955, 'fifty-six thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(11346, 38548, 'thirty-eight thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(11347, 17307, 'seventeen thousand three hundred seven');\nINSERT INTO t3 VALUES(11348, 78978, 'seventy-eight thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(11349, 64685, 'sixty-four thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(11350, 47855, 'forty-seven thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(11351, 65951, 'sixty-five thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(11352, 14685, 'fourteen thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(11353, 93213, 'ninety-three thousand two hundred thirteen');\nINSERT INTO t3 VALUES(11354, 51313, 'fifty-one thousand three hundred thirteen');\nINSERT INTO t3 VALUES(11355, 92868, 'ninety-two thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(11356, 31384, 'thirty-one thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(11357, 21938, 'twenty-one thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(11358, 51745, 'fifty-one thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(11359, 87292, 'eighty-seven thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(11360, 45071, 'forty-five thousand seventy-one');\nINSERT INTO t3 VALUES(11361, 67087, 'sixty-seven thousand eighty-seven');\nINSERT INTO t3 VALUES(11362, 67809, 'sixty-seven thousand eight hundred nine');\nINSERT INTO t3 VALUES(11363, 49186, 'forty-nine thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(11364, 46375, 'forty-six thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(11365, 87694, 'eighty-seven thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(11366, 9470, 'nine thousand four hundred seventy');\nINSERT INTO t3 VALUES(11367, 46648, 'forty-six thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(11368, 63094, 'sixty-three thousand ninety-four');\nINSERT INTO t3 VALUES(11369, 97956, 'ninety-seven thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(11370, 40843, 'forty thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(11371, 81668, 'eighty-one thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(11372, 40076, 'forty thousand seventy-six');\nINSERT INTO t3 VALUES(11373, 81790, 'eighty-one thousand seven hundred ninety');\nINSERT INTO t3 VALUES(11374, 8734, 'eight thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(11375, 72734, 'seventy-two thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(11376, 74402, 'seventy-four thousand four hundred two');\nINSERT INTO t3 VALUES(11377, 91455, 'ninety-one thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(11378, 53189, 'fifty-three thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(11379, 22371, 'twenty-two thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(11380, 90031, 'ninety thousand thirty-one');\nINSERT INTO t3 VALUES(11381, 21005, 'twenty-one thousand five');\nINSERT INTO t3 VALUES(11382, 46662, 'forty-six thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(11383, 65611, 'sixty-five thousand six hundred eleven');\nINSERT INTO t3 VALUES(11384, 64529, 'sixty-four thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(11385, 33323, 'thirty-three thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(11386, 26092, 'twenty-six thousand ninety-two');\nINSERT INTO t3 VALUES(11387, 26208, 'twenty-six thousand two hundred eight');\nINSERT INTO t3 VALUES(11388, 23028, 'twenty-three thousand twenty-eight');\nINSERT INTO t3 VALUES(11389, 59263, 'fifty-nine thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(11390, 19355, 'nineteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(11391, 40818, 'forty thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(11392, 13983, 'thirteen thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(11393, 35597, 'thirty-five thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(11394, 70679, 'seventy thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(11395, 140, 'one hundred forty');\nINSERT INTO t3 VALUES(11396, 14735, 'fourteen thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(11397, 9901, 'nine thousand nine hundred one');\nINSERT INTO t3 VALUES(11398, 3850, 'three thousand eight hundred fifty');\nINSERT INTO t3 VALUES(11399, 69256, 'sixty-nine thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(11400, 76261, 'seventy-six thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(11401, 86019, 'eighty-six thousand nineteen');\nINSERT INTO t3 VALUES(11402, 65412, 'sixty-five thousand four hundred twelve');\nINSERT INTO t3 VALUES(11403, 38063, 'thirty-eight thousand sixty-three');\nINSERT INTO t3 VALUES(11404, 68221, 'sixty-eight thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(11405, 51080, 'fifty-one thousand eighty');\nINSERT INTO t3 VALUES(11406, 3324, 'three thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(11407, 77335, 'seventy-seven thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(11408, 15169, 'fifteen thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(11409, 63181, 'sixty-three thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(11410, 11934, 'eleven thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(11411, 20759, 'twenty thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(11412, 79098, 'seventy-nine thousand ninety-eight');\nINSERT INTO t3 VALUES(11413, 8830, 'eight thousand eight hundred thirty');\nINSERT INTO t3 VALUES(11414, 72585, 'seventy-two thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(11415, 79219, 'seventy-nine thousand two hundred nineteen');\nINSERT INTO t3 VALUES(11416, 53323, 'fifty-three thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(11417, 75558, 'seventy-five thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(11418, 98440, 'ninety-eight thousand four hundred forty');\nINSERT INTO t3 VALUES(11419, 64723, 'sixty-four thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(11420, 29164, 'twenty-nine thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(11421, 13905, 'thirteen thousand nine hundred five');\nINSERT INTO t3 VALUES(11422, 53559, 'fifty-three thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(11423, 46375, 'forty-six thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(11424, 49493, 'forty-nine thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(11425, 98149, 'ninety-eight thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(11426, 32086, 'thirty-two thousand eighty-six');\nINSERT INTO t3 VALUES(11427, 98364, 'ninety-eight thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(11428, 61177, 'sixty-one thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(11429, 31358, 'thirty-one thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(11430, 19406, 'nineteen thousand four hundred six');\nINSERT INTO t3 VALUES(11431, 5513, 'five thousand five hundred thirteen');\nINSERT INTO t3 VALUES(11432, 85855, 'eighty-five thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(11433, 39060, 'thirty-nine thousand sixty');\nINSERT INTO t3 VALUES(11434, 59061, 'fifty-nine thousand sixty-one');\nINSERT INTO t3 VALUES(11435, 85856, 'eighty-five thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(11436, 7417, 'seven thousand four hundred seventeen');\nINSERT INTO t3 VALUES(11437, 72822, 'seventy-two thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(11438, 33939, 'thirty-three thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(11439, 27855, 'twenty-seven thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(11440, 83991, 'eighty-three thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(11441, 69927, 'sixty-nine thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(11442, 92195, 'ninety-two thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(11443, 12214, 'twelve thousand two hundred fourteen');\nINSERT INTO t3 VALUES(11444, 79905, 'seventy-nine thousand nine hundred five');\nINSERT INTO t3 VALUES(11445, 40109, 'forty thousand one hundred nine');\nINSERT INTO t3 VALUES(11446, 87472, 'eighty-seven thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(11447, 32641, 'thirty-two thousand six hundred forty-one');\nINSERT INTO t3 VALUES(11448, 98532, 'ninety-eight thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(11449, 9061, 'nine thousand sixty-one');\nINSERT INTO t3 VALUES(11450, 99133, 'ninety-nine thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(11451, 49725, 'forty-nine thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(11452, 27998, 'twenty-seven thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(11453, 65589, 'sixty-five thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(11454, 96383, 'ninety-six thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(11455, 26139, 'twenty-six thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(11456, 99366, 'ninety-nine thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(11457, 52304, 'fifty-two thousand three hundred four');\nINSERT INTO t3 VALUES(11458, 64265, 'sixty-four thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(11459, 1666, 'one thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(11460, 61856, 'sixty-one thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(11461, 59283, 'fifty-nine thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(11462, 81271, 'eighty-one thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(11463, 67156, 'sixty-seven thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(11464, 72906, 'seventy-two thousand nine hundred six');\nINSERT INTO t3 VALUES(11465, 60735, 'sixty thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(11466, 46075, 'forty-six thousand seventy-five');\nINSERT INTO t3 VALUES(11467, 59144, 'fifty-nine thousand one hundred forty-four');\nINSERT INTO t3 VALUES(11468, 10913, 'ten thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(11469, 69991, 'sixty-nine thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(11470, 75679, 'seventy-five thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(11471, 20790, 'twenty thousand seven hundred ninety');\nINSERT INTO t3 VALUES(11472, 76456, 'seventy-six thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(11473, 1974, 'one thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(11474, 87969, 'eighty-seven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(11475, 71298, 'seventy-one thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(11476, 51425, 'fifty-one thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(11477, 42326, 'forty-two thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(11478, 42923, 'forty-two thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(11479, 7171, 'seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(11480, 84697, 'eighty-four thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(11481, 73177, 'seventy-three thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(11482, 44859, 'forty-four thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(11483, 87578, 'eighty-seven thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(11484, 84187, 'eighty-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(11485, 47707, 'forty-seven thousand seven hundred seven');\nINSERT INTO t3 VALUES(11486, 89698, 'eighty-nine thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(11487, 76876, 'seventy-six thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(11488, 87271, 'eighty-seven thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(11489, 4452, 'four thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(11490, 10145, 'ten thousand one hundred forty-five');\nINSERT INTO t3 VALUES(11491, 85193, 'eighty-five thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(11492, 28159, 'twenty-eight thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(11493, 65748, 'sixty-five thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(11494, 90981, 'ninety thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(11495, 42289, 'forty-two thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(11496, 90226, 'ninety thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(11497, 8799, 'eight thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(11498, 30748, 'thirty thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(11499, 75149, 'seventy-five thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(11500, 77633, 'seventy-seven thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(11501, 96361, 'ninety-six thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(11502, 27529, 'twenty-seven thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(11503, 65516, 'sixty-five thousand five hundred sixteen');\nINSERT INTO t3 VALUES(11504, 41684, 'forty-one thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(11505, 6349, 'six thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(11506, 96745, 'ninety-six thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(11507, 72707, 'seventy-two thousand seven hundred seven');\nINSERT INTO t3 VALUES(11508, 54477, 'fifty-four thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(11509, 27248, 'twenty-seven thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(11510, 45589, 'forty-five thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(11511, 56276, 'fifty-six thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(11512, 21843, 'twenty-one thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(11513, 91633, 'ninety-one thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(11514, 99252, 'ninety-nine thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(11515, 87771, 'eighty-seven thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(11516, 83352, 'eighty-three thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(11517, 15402, 'fifteen thousand four hundred two');\nINSERT INTO t3 VALUES(11518, 85261, 'eighty-five thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(11519, 76493, 'seventy-six thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(11520, 64749, 'sixty-four thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(11521, 91714, 'ninety-one thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(11522, 93919, 'ninety-three thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(11523, 10405, 'ten thousand four hundred five');\nINSERT INTO t3 VALUES(11524, 1601, 'one thousand six hundred one');\nINSERT INTO t3 VALUES(11525, 8456, 'eight thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(11526, 97383, 'ninety-seven thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(11527, 60982, 'sixty thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(11528, 31025, 'thirty-one thousand twenty-five');\nINSERT INTO t3 VALUES(11529, 99450, 'ninety-nine thousand four hundred fifty');\nINSERT INTO t3 VALUES(11530, 18995, 'eighteen thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(11531, 62005, 'sixty-two thousand five');\nINSERT INTO t3 VALUES(11532, 72817, 'seventy-two thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(11533, 34325, 'thirty-four thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(11534, 27524, 'twenty-seven thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(11535, 31700, 'thirty-one thousand seven hundred');\nINSERT INTO t3 VALUES(11536, 24894, 'twenty-four thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(11537, 47550, 'forty-seven thousand five hundred fifty');\nINSERT INTO t3 VALUES(11538, 4593, 'four thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(11539, 57504, 'fifty-seven thousand five hundred four');\nINSERT INTO t3 VALUES(11540, 35379, 'thirty-five thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(11541, 46360, 'forty-six thousand three hundred sixty');\nINSERT INTO t3 VALUES(11542, 10016, 'ten thousand sixteen');\nINSERT INTO t3 VALUES(11543, 56653, 'fifty-six thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(11544, 20556, 'twenty thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(11545, 73367, 'seventy-three thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(11546, 39418, 'thirty-nine thousand four hundred eighteen');\nINSERT INTO t3 VALUES(11547, 40785, 'forty thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(11548, 2341, 'two thousand three hundred forty-one');\nINSERT INTO t3 VALUES(11549, 37849, 'thirty-seven thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(11550, 70967, 'seventy thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(11551, 14564, 'fourteen thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(11552, 64094, 'sixty-four thousand ninety-four');\nINSERT INTO t3 VALUES(11553, 74273, 'seventy-four thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(11554, 59823, 'fifty-nine thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(11555, 76224, 'seventy-six thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(11556, 11430, 'eleven thousand four hundred thirty');\nINSERT INTO t3 VALUES(11557, 57467, 'fifty-seven thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(11558, 85942, 'eighty-five thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(11559, 15638, 'fifteen thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(11560, 48558, 'forty-eight thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(11561, 88086, 'eighty-eight thousand eighty-six');\nINSERT INTO t3 VALUES(11562, 70378, 'seventy thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(11563, 23132, 'twenty-three thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(11564, 35014, 'thirty-five thousand fourteen');\nINSERT INTO t3 VALUES(11565, 23330, 'twenty-three thousand three hundred thirty');\nINSERT INTO t3 VALUES(11566, 78371, 'seventy-eight thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(11567, 91395, 'ninety-one thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(11568, 53664, 'fifty-three thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(11569, 61805, 'sixty-one thousand eight hundred five');\nINSERT INTO t3 VALUES(11570, 99207, 'ninety-nine thousand two hundred seven');\nINSERT INTO t3 VALUES(11571, 47569, 'forty-seven thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(11572, 92879, 'ninety-two thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(11573, 36929, 'thirty-six thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(11574, 60151, 'sixty thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(11575, 81954, 'eighty-one thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(11576, 91591, 'ninety-one thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(11577, 10942, 'ten thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(11578, 97663, 'ninety-seven thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(11579, 84918, 'eighty-four thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(11580, 80587, 'eighty thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(11581, 47675, 'forty-seven thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(11582, 41679, 'forty-one thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(11583, 32270, 'thirty-two thousand two hundred seventy');\nINSERT INTO t3 VALUES(11584, 86234, 'eighty-six thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(11585, 88, 'eighty-eight');\nINSERT INTO t3 VALUES(11586, 56924, 'fifty-six thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(11587, 95872, 'ninety-five thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(11588, 8206, 'eight thousand two hundred six');\nINSERT INTO t3 VALUES(11589, 29602, 'twenty-nine thousand six hundred two');\nINSERT INTO t3 VALUES(11590, 71481, 'seventy-one thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(11591, 5352, 'five thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(11592, 68841, 'sixty-eight thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(11593, 36050, 'thirty-six thousand fifty');\nINSERT INTO t3 VALUES(11594, 33688, 'thirty-three thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(11595, 66846, 'sixty-six thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(11596, 28149, 'twenty-eight thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(11597, 25789, 'twenty-five thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(11598, 43626, 'forty-three thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(11599, 27851, 'twenty-seven thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(11600, 52616, 'fifty-two thousand six hundred sixteen');\nINSERT INTO t3 VALUES(11601, 1209, 'one thousand two hundred nine');\nINSERT INTO t3 VALUES(11602, 78254, 'seventy-eight thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(11603, 51943, 'fifty-one thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(11604, 47217, 'forty-seven thousand two hundred seventeen');\nINSERT INTO t3 VALUES(11605, 16252, 'sixteen thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(11606, 95575, 'ninety-five thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(11607, 12198, 'twelve thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(11608, 17119, 'seventeen thousand one hundred nineteen');\nINSERT INTO t3 VALUES(11609, 88907, 'eighty-eight thousand nine hundred seven');\nINSERT INTO t3 VALUES(11610, 40266, 'forty thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(11611, 91620, 'ninety-one thousand six hundred twenty');\nINSERT INTO t3 VALUES(11612, 47029, 'forty-seven thousand twenty-nine');\nINSERT INTO t3 VALUES(11613, 98400, 'ninety-eight thousand four hundred');\nINSERT INTO t3 VALUES(11614, 54738, 'fifty-four thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(11615, 46033, 'forty-six thousand thirty-three');\nINSERT INTO t3 VALUES(11616, 96272, 'ninety-six thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(11617, 15814, 'fifteen thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(11618, 96535, 'ninety-six thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(11619, 17062, 'seventeen thousand sixty-two');\nINSERT INTO t3 VALUES(11620, 87295, 'eighty-seven thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(11621, 66649, 'sixty-six thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(11622, 88056, 'eighty-eight thousand fifty-six');\nINSERT INTO t3 VALUES(11623, 72071, 'seventy-two thousand seventy-one');\nINSERT INTO t3 VALUES(11624, 2343, 'two thousand three hundred forty-three');\nINSERT INTO t3 VALUES(11625, 18142, 'eighteen thousand one hundred forty-two');\nINSERT INTO t3 VALUES(11626, 5621, 'five thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(11627, 95596, 'ninety-five thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(11628, 59760, 'fifty-nine thousand seven hundred sixty');\nINSERT INTO t3 VALUES(11629, 35927, 'thirty-five thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(11630, 26830, 'twenty-six thousand eight hundred thirty');\nINSERT INTO t3 VALUES(11631, 94860, 'ninety-four thousand eight hundred sixty');\nINSERT INTO t3 VALUES(11632, 62995, 'sixty-two thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(11633, 14163, 'fourteen thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(11634, 35378, 'thirty-five thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(11635, 88319, 'eighty-eight thousand three hundred nineteen');\nINSERT INTO t3 VALUES(11636, 99214, 'ninety-nine thousand two hundred fourteen');\nINSERT INTO t3 VALUES(11637, 75969, 'seventy-five thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(11638, 60158, 'sixty thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(11639, 1035, 'one thousand thirty-five');\nINSERT INTO t3 VALUES(11640, 24573, 'twenty-four thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(11641, 92899, 'ninety-two thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(11642, 82980, 'eighty-two thousand nine hundred eighty');\nINSERT INTO t3 VALUES(11643, 57369, 'fifty-seven thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(11644, 67895, 'sixty-seven thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(11645, 55084, 'fifty-five thousand eighty-four');\nINSERT INTO t3 VALUES(11646, 22034, 'twenty-two thousand thirty-four');\nINSERT INTO t3 VALUES(11647, 27815, 'twenty-seven thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(11648, 81056, 'eighty-one thousand fifty-six');\nINSERT INTO t3 VALUES(11649, 83270, 'eighty-three thousand two hundred seventy');\nINSERT INTO t3 VALUES(11650, 92373, 'ninety-two thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(11651, 3912, 'three thousand nine hundred twelve');\nINSERT INTO t3 VALUES(11652, 69180, 'sixty-nine thousand one hundred eighty');\nINSERT INTO t3 VALUES(11653, 27208, 'twenty-seven thousand two hundred eight');\nINSERT INTO t3 VALUES(11654, 66841, 'sixty-six thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(11655, 7032, 'seven thousand thirty-two');\nINSERT INTO t3 VALUES(11656, 84356, 'eighty-four thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(11657, 29853, 'twenty-nine thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(11658, 2066, 'two thousand sixty-six');\nINSERT INTO t3 VALUES(11659, 88164, 'eighty-eight thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(11660, 25832, 'twenty-five thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(11661, 21040, 'twenty-one thousand forty');\nINSERT INTO t3 VALUES(11662, 78441, 'seventy-eight thousand four hundred forty-one');\nINSERT INTO t3 VALUES(11663, 25490, 'twenty-five thousand four hundred ninety');\nINSERT INTO t3 VALUES(11664, 95833, 'ninety-five thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(11665, 44350, 'forty-four thousand three hundred fifty');\nINSERT INTO t3 VALUES(11666, 55410, 'fifty-five thousand four hundred ten');\nINSERT INTO t3 VALUES(11667, 66586, 'sixty-six thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(11668, 48512, 'forty-eight thousand five hundred twelve');\nINSERT INTO t3 VALUES(11669, 31588, 'thirty-one thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(11670, 71438, 'seventy-one thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(11671, 52689, 'fifty-two thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(11672, 70942, 'seventy thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(11673, 60981, 'sixty thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(11674, 7996, 'seven thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(11675, 80461, 'eighty thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(11676, 88784, 'eighty-eight thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(11677, 67574, 'sixty-seven thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(11678, 41129, 'forty-one thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(11679, 85524, 'eighty-five thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(11680, 53194, 'fifty-three thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(11681, 41114, 'forty-one thousand one hundred fourteen');\nINSERT INTO t3 VALUES(11682, 54224, 'fifty-four thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(11683, 10802, 'ten thousand eight hundred two');\nINSERT INTO t3 VALUES(11684, 16472, 'sixteen thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(11685, 17967, 'seventeen thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(11686, 50698, 'fifty thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(11687, 69813, 'sixty-nine thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(11688, 65960, 'sixty-five thousand nine hundred sixty');\nINSERT INTO t3 VALUES(11689, 29887, 'twenty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(11690, 81718, 'eighty-one thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(11691, 51062, 'fifty-one thousand sixty-two');\nINSERT INTO t3 VALUES(11692, 76307, 'seventy-six thousand three hundred seven');\nINSERT INTO t3 VALUES(11693, 60101, 'sixty thousand one hundred one');\nINSERT INTO t3 VALUES(11694, 50075, 'fifty thousand seventy-five');\nINSERT INTO t3 VALUES(11695, 9563, 'nine thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(11696, 70846, 'seventy thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(11697, 79914, 'seventy-nine thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(11698, 1784, 'one thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(11699, 90575, 'ninety thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(11700, 55055, 'fifty-five thousand fifty-five');\nINSERT INTO t3 VALUES(11701, 60297, 'sixty thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(11702, 95805, 'ninety-five thousand eight hundred five');\nINSERT INTO t3 VALUES(11703, 13273, 'thirteen thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(11704, 79815, 'seventy-nine thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(11705, 59620, 'fifty-nine thousand six hundred twenty');\nINSERT INTO t3 VALUES(11706, 21919, 'twenty-one thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(11707, 11005, 'eleven thousand five');\nINSERT INTO t3 VALUES(11708, 77163, 'seventy-seven thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(11709, 26919, 'twenty-six thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(11710, 55824, 'fifty-five thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(11711, 80913, 'eighty thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(11712, 90684, 'ninety thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(11713, 75231, 'seventy-five thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(11714, 98491, 'ninety-eight thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(11715, 73973, 'seventy-three thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(11716, 37283, 'thirty-seven thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(11717, 21152, 'twenty-one thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(11718, 80724, 'eighty thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(11719, 27993, 'twenty-seven thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(11720, 67639, 'sixty-seven thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(11721, 55483, 'fifty-five thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(11722, 72527, 'seventy-two thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(11723, 1344, 'one thousand three hundred forty-four');\nINSERT INTO t3 VALUES(11724, 23303, 'twenty-three thousand three hundred three');\nINSERT INTO t3 VALUES(11725, 51649, 'fifty-one thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(11726, 56219, 'fifty-six thousand two hundred nineteen');\nINSERT INTO t3 VALUES(11727, 83074, 'eighty-three thousand seventy-four');\nINSERT INTO t3 VALUES(11728, 96280, 'ninety-six thousand two hundred eighty');\nINSERT INTO t3 VALUES(11729, 38192, 'thirty-eight thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(11730, 19189, 'nineteen thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(11731, 59908, 'fifty-nine thousand nine hundred eight');\nINSERT INTO t3 VALUES(11732, 96743, 'ninety-six thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(11733, 73681, 'seventy-three thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(11734, 70265, 'seventy thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(11735, 37638, 'thirty-seven thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(11736, 80457, 'eighty thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(11737, 85102, 'eighty-five thousand one hundred two');\nINSERT INTO t3 VALUES(11738, 14923, 'fourteen thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(11739, 26066, 'twenty-six thousand sixty-six');\nINSERT INTO t3 VALUES(11740, 6474, 'six thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(11741, 50681, 'fifty thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(11742, 90915, 'ninety thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(11743, 5375, 'five thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(11744, 96972, 'ninety-six thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(11745, 81165, 'eighty-one thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(11746, 32559, 'thirty-two thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(11747, 21887, 'twenty-one thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(11748, 8227, 'eight thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(11749, 49316, 'forty-nine thousand three hundred sixteen');\nINSERT INTO t3 VALUES(11750, 39034, 'thirty-nine thousand thirty-four');\nINSERT INTO t3 VALUES(11751, 440, 'four hundred forty');\nINSERT INTO t3 VALUES(11752, 18325, 'eighteen thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(11753, 5570, 'five thousand five hundred seventy');\nINSERT INTO t3 VALUES(11754, 75698, 'seventy-five thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(11755, 57080, 'fifty-seven thousand eighty');\nINSERT INTO t3 VALUES(11756, 54906, 'fifty-four thousand nine hundred six');\nINSERT INTO t3 VALUES(11757, 97788, 'ninety-seven thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(11758, 26394, 'twenty-six thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(11759, 12022, 'twelve thousand twenty-two');\nINSERT INTO t3 VALUES(11760, 83671, 'eighty-three thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(11761, 49503, 'forty-nine thousand five hundred three');\nINSERT INTO t3 VALUES(11762, 10326, 'ten thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(11763, 95984, 'ninety-five thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(11764, 36728, 'thirty-six thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(11765, 36439, 'thirty-six thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(11766, 88093, 'eighty-eight thousand ninety-three');\nINSERT INTO t3 VALUES(11767, 33177, 'thirty-three thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(11768, 40412, 'forty thousand four hundred twelve');\nINSERT INTO t3 VALUES(11769, 25415, 'twenty-five thousand four hundred fifteen');\nINSERT INTO t3 VALUES(11770, 37087, 'thirty-seven thousand eighty-seven');\nINSERT INTO t3 VALUES(11771, 55410, 'fifty-five thousand four hundred ten');\nINSERT INTO t3 VALUES(11772, 71558, 'seventy-one thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(11773, 85188, 'eighty-five thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(11774, 33580, 'thirty-three thousand five hundred eighty');\nINSERT INTO t3 VALUES(11775, 23461, 'twenty-three thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(11776, 7467, 'seven thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(11777, 73274, 'seventy-three thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(11778, 49985, 'forty-nine thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(11779, 23604, 'twenty-three thousand six hundred four');\nINSERT INTO t3 VALUES(11780, 87154, 'eighty-seven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(11781, 36464, 'thirty-six thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(11782, 1245, 'one thousand two hundred forty-five');\nINSERT INTO t3 VALUES(11783, 19899, 'nineteen thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(11784, 64, 'sixty-four');\nINSERT INTO t3 VALUES(11785, 35942, 'thirty-five thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(11786, 36544, 'thirty-six thousand five hundred forty-four');\nINSERT INTO t3 VALUES(11787, 39453, 'thirty-nine thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(11788, 35472, 'thirty-five thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(11789, 95839, 'ninety-five thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(11790, 65438, 'sixty-five thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(11791, 80881, 'eighty thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(11792, 91049, 'ninety-one thousand forty-nine');\nINSERT INTO t3 VALUES(11793, 45401, 'forty-five thousand four hundred one');\nINSERT INTO t3 VALUES(11794, 56910, 'fifty-six thousand nine hundred ten');\nINSERT INTO t3 VALUES(11795, 59246, 'fifty-nine thousand two hundred forty-six');\nINSERT INTO t3 VALUES(11796, 60146, 'sixty thousand one hundred forty-six');\nINSERT INTO t3 VALUES(11797, 50273, 'fifty thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(11798, 48601, 'forty-eight thousand six hundred one');\nINSERT INTO t3 VALUES(11799, 32324, 'thirty-two thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(11800, 36917, 'thirty-six thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(11801, 8041, 'eight thousand forty-one');\nINSERT INTO t3 VALUES(11802, 57508, 'fifty-seven thousand five hundred eight');\nINSERT INTO t3 VALUES(11803, 88699, 'eighty-eight thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(11804, 56013, 'fifty-six thousand thirteen');\nINSERT INTO t3 VALUES(11805, 89561, 'eighty-nine thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(11806, 35853, 'thirty-five thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(11807, 91112, 'ninety-one thousand one hundred twelve');\nINSERT INTO t3 VALUES(11808, 72755, 'seventy-two thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(11809, 78468, 'seventy-eight thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(11810, 8638, 'eight thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(11811, 51627, 'fifty-one thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(11812, 15833, 'fifteen thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(11813, 55768, 'fifty-five thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(11814, 51803, 'fifty-one thousand eight hundred three');\nINSERT INTO t3 VALUES(11815, 87582, 'eighty-seven thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(11816, 12511, 'twelve thousand five hundred eleven');\nINSERT INTO t3 VALUES(11817, 31315, 'thirty-one thousand three hundred fifteen');\nINSERT INTO t3 VALUES(11818, 65312, 'sixty-five thousand three hundred twelve');\nINSERT INTO t3 VALUES(11819, 67665, 'sixty-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(11820, 43973, 'forty-three thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(11821, 43589, 'forty-three thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(11822, 5111, 'five thousand one hundred eleven');\nINSERT INTO t3 VALUES(11823, 43796, 'forty-three thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(11824, 65904, 'sixty-five thousand nine hundred four');\nINSERT INTO t3 VALUES(11825, 69766, 'sixty-nine thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(11826, 19447, 'nineteen thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(11827, 20647, 'twenty thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(11828, 6613, 'six thousand six hundred thirteen');\nINSERT INTO t3 VALUES(11829, 62267, 'sixty-two thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(11830, 30086, 'thirty thousand eighty-six');\nINSERT INTO t3 VALUES(11831, 10725, 'ten thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(11832, 3074, 'three thousand seventy-four');\nINSERT INTO t3 VALUES(11833, 19696, 'nineteen thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(11834, 22933, 'twenty-two thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(11835, 67482, 'sixty-seven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(11836, 79397, 'seventy-nine thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(11837, 86421, 'eighty-six thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(11838, 39226, 'thirty-nine thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(11839, 29997, 'twenty-nine thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(11840, 79509, 'seventy-nine thousand five hundred nine');\nINSERT INTO t3 VALUES(11841, 44657, 'forty-four thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(11842, 63587, 'sixty-three thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(11843, 14479, 'fourteen thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(11844, 4629, 'four thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(11845, 74761, 'seventy-four thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(11846, 9036, 'nine thousand thirty-six');\nINSERT INTO t3 VALUES(11847, 25931, 'twenty-five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(11848, 91702, 'ninety-one thousand seven hundred two');\nINSERT INTO t3 VALUES(11849, 63578, 'sixty-three thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(11850, 78491, 'seventy-eight thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(11851, 50923, 'fifty thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(11852, 28873, 'twenty-eight thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(11853, 28932, 'twenty-eight thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(11854, 73152, 'seventy-three thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(11855, 44726, 'forty-four thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(11856, 61010, 'sixty-one thousand ten');\nINSERT INTO t3 VALUES(11857, 70973, 'seventy thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(11858, 77361, 'seventy-seven thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(11859, 21841, 'twenty-one thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(11860, 42493, 'forty-two thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(11861, 6008, 'six thousand eight');\nINSERT INTO t3 VALUES(11862, 33090, 'thirty-three thousand ninety');\nINSERT INTO t3 VALUES(11863, 24484, 'twenty-four thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(11864, 82338, 'eighty-two thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(11865, 72875, 'seventy-two thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(11866, 53087, 'fifty-three thousand eighty-seven');\nINSERT INTO t3 VALUES(11867, 38368, 'thirty-eight thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(11868, 15277, 'fifteen thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(11869, 38838, 'thirty-eight thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(11870, 85835, 'eighty-five thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(11871, 2091, 'two thousand ninety-one');\nINSERT INTO t3 VALUES(11872, 9794, 'nine thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(11873, 89091, 'eighty-nine thousand ninety-one');\nINSERT INTO t3 VALUES(11874, 74736, 'seventy-four thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(11875, 29798, 'twenty-nine thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(11876, 27035, 'twenty-seven thousand thirty-five');\nINSERT INTO t3 VALUES(11877, 12553, 'twelve thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(11878, 73894, 'seventy-three thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(11879, 73009, 'seventy-three thousand nine');\nINSERT INTO t3 VALUES(11880, 6554, 'six thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(11881, 87612, 'eighty-seven thousand six hundred twelve');\nINSERT INTO t3 VALUES(11882, 94342, 'ninety-four thousand three hundred forty-two');\nINSERT INTO t3 VALUES(11883, 42012, 'forty-two thousand twelve');\nINSERT INTO t3 VALUES(11884, 1825, 'one thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(11885, 90919, 'ninety thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(11886, 50519, 'fifty thousand five hundred nineteen');\nINSERT INTO t3 VALUES(11887, 6022, 'six thousand twenty-two');\nINSERT INTO t3 VALUES(11888, 3404, 'three thousand four hundred four');\nINSERT INTO t3 VALUES(11889, 97645, 'ninety-seven thousand six hundred forty-five');\nINSERT INTO t3 VALUES(11890, 32575, 'thirty-two thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(11891, 3982, 'three thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(11892, 71443, 'seventy-one thousand four hundred forty-three');\nINSERT INTO t3 VALUES(11893, 42456, 'forty-two thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(11894, 47404, 'forty-seven thousand four hundred four');\nINSERT INTO t3 VALUES(11895, 97548, 'ninety-seven thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(11896, 55393, 'fifty-five thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(11897, 10696, 'ten thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(11898, 15414, 'fifteen thousand four hundred fourteen');\nINSERT INTO t3 VALUES(11899, 87596, 'eighty-seven thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(11900, 19344, 'nineteen thousand three hundred forty-four');\nINSERT INTO t3 VALUES(11901, 61027, 'sixty-one thousand twenty-seven');\nINSERT INTO t3 VALUES(11902, 14105, 'fourteen thousand one hundred five');\nINSERT INTO t3 VALUES(11903, 45470, 'forty-five thousand four hundred seventy');\nINSERT INTO t3 VALUES(11904, 31957, 'thirty-one thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(11905, 1912, 'one thousand nine hundred twelve');\nINSERT INTO t3 VALUES(11906, 95194, 'ninety-five thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(11907, 48183, 'forty-eight thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(11908, 75915, 'seventy-five thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(11909, 97717, 'ninety-seven thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(11910, 34737, 'thirty-four thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(11911, 67401, 'sixty-seven thousand four hundred one');\nINSERT INTO t3 VALUES(11912, 62222, 'sixty-two thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(11913, 37064, 'thirty-seven thousand sixty-four');\nINSERT INTO t3 VALUES(11914, 81917, 'eighty-one thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(11915, 71965, 'seventy-one thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(11916, 7275, 'seven thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(11917, 20064, 'twenty thousand sixty-four');\nINSERT INTO t3 VALUES(11918, 16388, 'sixteen thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(11919, 62706, 'sixty-two thousand seven hundred six');\nINSERT INTO t3 VALUES(11920, 50645, 'fifty thousand six hundred forty-five');\nINSERT INTO t3 VALUES(11921, 15051, 'fifteen thousand fifty-one');\nINSERT INTO t3 VALUES(11922, 51706, 'fifty-one thousand seven hundred six');\nINSERT INTO t3 VALUES(11923, 81934, 'eighty-one thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(11924, 70976, 'seventy thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(11925, 503, 'five hundred three');\nINSERT INTO t3 VALUES(11926, 78888, 'seventy-eight thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(11927, 58858, 'fifty-eight thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(11928, 93364, 'ninety-three thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(11929, 95068, 'ninety-five thousand sixty-eight');\nINSERT INTO t3 VALUES(11930, 84890, 'eighty-four thousand eight hundred ninety');\nINSERT INTO t3 VALUES(11931, 55955, 'fifty-five thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(11932, 68322, 'sixty-eight thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(11933, 91462, 'ninety-one thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(11934, 14983, 'fourteen thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(11935, 74169, 'seventy-four thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(11936, 16367, 'sixteen thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(11937, 71572, 'seventy-one thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(11938, 72172, 'seventy-two thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(11939, 58667, 'fifty-eight thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(11940, 75015, 'seventy-five thousand fifteen');\nINSERT INTO t3 VALUES(11941, 5744, 'five thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(11942, 72618, 'seventy-two thousand six hundred eighteen');\nINSERT INTO t3 VALUES(11943, 27111, 'twenty-seven thousand one hundred eleven');\nINSERT INTO t3 VALUES(11944, 78011, 'seventy-eight thousand eleven');\nINSERT INTO t3 VALUES(11945, 46133, 'forty-six thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(11946, 18135, 'eighteen thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(11947, 38877, 'thirty-eight thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(11948, 53753, 'fifty-three thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(11949, 73991, 'seventy-three thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(11950, 83165, 'eighty-three thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(11951, 61627, 'sixty-one thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(11952, 84238, 'eighty-four thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(11953, 10115, 'ten thousand one hundred fifteen');\nINSERT INTO t3 VALUES(11954, 85230, 'eighty-five thousand two hundred thirty');\nINSERT INTO t3 VALUES(11955, 7217, 'seven thousand two hundred seventeen');\nINSERT INTO t3 VALUES(11956, 35963, 'thirty-five thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(11957, 9498, 'nine thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(11958, 66553, 'sixty-six thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(11959, 38111, 'thirty-eight thousand one hundred eleven');\nINSERT INTO t3 VALUES(11960, 43959, 'forty-three thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(11961, 63156, 'sixty-three thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(11962, 9518, 'nine thousand five hundred eighteen');\nINSERT INTO t3 VALUES(11963, 97171, 'ninety-seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(11964, 86771, 'eighty-six thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(11965, 69, 'sixty-nine');\nINSERT INTO t3 VALUES(11966, 71894, 'seventy-one thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(11967, 79599, 'seventy-nine thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(11968, 24985, 'twenty-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(11969, 94272, 'ninety-four thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(11970, 62954, 'sixty-two thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(11971, 20343, 'twenty thousand three hundred forty-three');\nINSERT INTO t3 VALUES(11972, 67213, 'sixty-seven thousand two hundred thirteen');\nINSERT INTO t3 VALUES(11973, 3899, 'three thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(11974, 36809, 'thirty-six thousand eight hundred nine');\nINSERT INTO t3 VALUES(11975, 12182, 'twelve thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(11976, 25246, 'twenty-five thousand two hundred forty-six');\nINSERT INTO t3 VALUES(11977, 44154, 'forty-four thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(11978, 863, 'eight hundred sixty-three');\nINSERT INTO t3 VALUES(11979, 17694, 'seventeen thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(11980, 90126, 'ninety thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(11981, 22030, 'twenty-two thousand thirty');\nINSERT INTO t3 VALUES(11982, 97792, 'ninety-seven thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(11983, 53180, 'fifty-three thousand one hundred eighty');\nINSERT INTO t3 VALUES(11984, 28533, 'twenty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(11985, 18468, 'eighteen thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(11986, 89998, 'eighty-nine thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(11987, 72171, 'seventy-two thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(11988, 84881, 'eighty-four thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(11989, 18068, 'eighteen thousand sixty-eight');\nINSERT INTO t3 VALUES(11990, 15229, 'fifteen thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(11991, 69248, 'sixty-nine thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(11992, 16246, 'sixteen thousand two hundred forty-six');\nINSERT INTO t3 VALUES(11993, 86592, 'eighty-six thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(11994, 20767, 'twenty thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(11995, 78504, 'seventy-eight thousand five hundred four');\nINSERT INTO t3 VALUES(11996, 54547, 'fifty-four thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(11997, 48341, 'forty-eight thousand three hundred forty-one');\nINSERT INTO t3 VALUES(11998, 40232, 'forty thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(11999, 68392, 'sixty-eight thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(12000, 51554, 'fifty-one thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(12001, 65801, 'sixty-five thousand eight hundred one');\nINSERT INTO t3 VALUES(12002, 53753, 'fifty-three thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(12003, 32296, 'thirty-two thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(12004, 87943, 'eighty-seven thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(12005, 44196, 'forty-four thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(12006, 16664, 'sixteen thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(12007, 2471, 'two thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(12008, 83255, 'eighty-three thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(12009, 86819, 'eighty-six thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(12010, 26459, 'twenty-six thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(12011, 63043, 'sixty-three thousand forty-three');\nINSERT INTO t3 VALUES(12012, 42042, 'forty-two thousand forty-two');\nINSERT INTO t3 VALUES(12013, 79976, 'seventy-nine thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(12014, 38489, 'thirty-eight thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(12015, 10762, 'ten thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(12016, 84345, 'eighty-four thousand three hundred forty-five');\nINSERT INTO t3 VALUES(12017, 34126, 'thirty-four thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(12018, 92073, 'ninety-two thousand seventy-three');\nINSERT INTO t3 VALUES(12019, 18829, 'eighteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(12020, 93695, 'ninety-three thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(12021, 77837, 'seventy-seven thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(12022, 70889, 'seventy thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(12023, 24732, 'twenty-four thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(12024, 33022, 'thirty-three thousand twenty-two');\nINSERT INTO t3 VALUES(12025, 63120, 'sixty-three thousand one hundred twenty');\nINSERT INTO t3 VALUES(12026, 55172, 'fifty-five thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(12027, 10044, 'ten thousand forty-four');\nINSERT INTO t3 VALUES(12028, 55713, 'fifty-five thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(12029, 95963, 'ninety-five thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(12030, 47040, 'forty-seven thousand forty');\nINSERT INTO t3 VALUES(12031, 32114, 'thirty-two thousand one hundred fourteen');\nINSERT INTO t3 VALUES(12032, 53632, 'fifty-three thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(12033, 26503, 'twenty-six thousand five hundred three');\nINSERT INTO t3 VALUES(12034, 202, 'two hundred two');\nINSERT INTO t3 VALUES(12035, 64647, 'sixty-four thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(12036, 27092, 'twenty-seven thousand ninety-two');\nINSERT INTO t3 VALUES(12037, 93899, 'ninety-three thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(12038, 18597, 'eighteen thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(12039, 43637, 'forty-three thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(12040, 24440, 'twenty-four thousand four hundred forty');\nINSERT INTO t3 VALUES(12041, 33105, 'thirty-three thousand one hundred five');\nINSERT INTO t3 VALUES(12042, 39500, 'thirty-nine thousand five hundred');\nINSERT INTO t3 VALUES(12043, 27059, 'twenty-seven thousand fifty-nine');\nINSERT INTO t3 VALUES(12044, 58717, 'fifty-eight thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(12045, 53111, 'fifty-three thousand one hundred eleven');\nINSERT INTO t3 VALUES(12046, 41779, 'forty-one thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(12047, 15163, 'fifteen thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(12048, 29164, 'twenty-nine thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(12049, 89874, 'eighty-nine thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(12050, 21246, 'twenty-one thousand two hundred forty-six');\nINSERT INTO t3 VALUES(12051, 37226, 'thirty-seven thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(12052, 24850, 'twenty-four thousand eight hundred fifty');\nINSERT INTO t3 VALUES(12053, 54187, 'fifty-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(12054, 95951, 'ninety-five thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(12055, 62399, 'sixty-two thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(12056, 83078, 'eighty-three thousand seventy-eight');\nINSERT INTO t3 VALUES(12057, 6860, 'six thousand eight hundred sixty');\nINSERT INTO t3 VALUES(12058, 60798, 'sixty thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(12059, 76887, 'seventy-six thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(12060, 89067, 'eighty-nine thousand sixty-seven');\nINSERT INTO t3 VALUES(12061, 94654, 'ninety-four thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(12062, 35551, 'thirty-five thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(12063, 82960, 'eighty-two thousand nine hundred sixty');\nINSERT INTO t3 VALUES(12064, 36925, 'thirty-six thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(12065, 8681, 'eight thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(12066, 93072, 'ninety-three thousand seventy-two');\nINSERT INTO t3 VALUES(12067, 41628, 'forty-one thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(12068, 90514, 'ninety thousand five hundred fourteen');\nINSERT INTO t3 VALUES(12069, 22772, 'twenty-two thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(12070, 54182, 'fifty-four thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(12071, 29198, 'twenty-nine thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(12072, 50855, 'fifty thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(12073, 4904, 'four thousand nine hundred four');\nINSERT INTO t3 VALUES(12074, 94642, 'ninety-four thousand six hundred forty-two');\nINSERT INTO t3 VALUES(12075, 10151, 'ten thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(12076, 61006, 'sixty-one thousand six');\nINSERT INTO t3 VALUES(12077, 51419, 'fifty-one thousand four hundred nineteen');\nINSERT INTO t3 VALUES(12078, 2005, 'two thousand five');\nINSERT INTO t3 VALUES(12079, 29342, 'twenty-nine thousand three hundred forty-two');\nINSERT INTO t3 VALUES(12080, 85539, 'eighty-five thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(12081, 29893, 'twenty-nine thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(12082, 46842, 'forty-six thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(12083, 6470, 'six thousand four hundred seventy');\nINSERT INTO t3 VALUES(12084, 890, 'eight hundred ninety');\nINSERT INTO t3 VALUES(12085, 5458, 'five thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(12086, 95722, 'ninety-five thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(12087, 34434, 'thirty-four thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(12088, 65788, 'sixty-five thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(12089, 58906, 'fifty-eight thousand nine hundred six');\nINSERT INTO t3 VALUES(12090, 66846, 'sixty-six thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(12091, 62130, 'sixty-two thousand one hundred thirty');\nINSERT INTO t3 VALUES(12092, 18517, 'eighteen thousand five hundred seventeen');\nINSERT INTO t3 VALUES(12093, 1055, 'one thousand fifty-five');\nINSERT INTO t3 VALUES(12094, 86514, 'eighty-six thousand five hundred fourteen');\nINSERT INTO t3 VALUES(12095, 87724, 'eighty-seven thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(12096, 38686, 'thirty-eight thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(12097, 52524, 'fifty-two thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(12098, 68645, 'sixty-eight thousand six hundred forty-five');\nINSERT INTO t3 VALUES(12099, 86971, 'eighty-six thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(12100, 6454, 'six thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(12101, 13352, 'thirteen thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(12102, 2788, 'two thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(12103, 24667, 'twenty-four thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(12104, 27157, 'twenty-seven thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(12105, 74556, 'seventy-four thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(12106, 17054, 'seventeen thousand fifty-four');\nINSERT INTO t3 VALUES(12107, 28219, 'twenty-eight thousand two hundred nineteen');\nINSERT INTO t3 VALUES(12108, 99698, 'ninety-nine thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(12109, 55770, 'fifty-five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(12110, 95691, 'ninety-five thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(12111, 77680, 'seventy-seven thousand six hundred eighty');\nINSERT INTO t3 VALUES(12112, 82557, 'eighty-two thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(12113, 84289, 'eighty-four thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(12114, 92640, 'ninety-two thousand six hundred forty');\nINSERT INTO t3 VALUES(12115, 24198, 'twenty-four thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(12116, 43715, 'forty-three thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(12117, 94437, 'ninety-four thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(12118, 72542, 'seventy-two thousand five hundred forty-two');\nINSERT INTO t3 VALUES(12119, 97924, 'ninety-seven thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(12120, 75797, 'seventy-five thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(12121, 89770, 'eighty-nine thousand seven hundred seventy');\nINSERT INTO t3 VALUES(12122, 29356, 'twenty-nine thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(12123, 79476, 'seventy-nine thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(12124, 11380, 'eleven thousand three hundred eighty');\nINSERT INTO t3 VALUES(12125, 35412, 'thirty-five thousand four hundred twelve');\nINSERT INTO t3 VALUES(12126, 86036, 'eighty-six thousand thirty-six');\nINSERT INTO t3 VALUES(12127, 51651, 'fifty-one thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(12128, 15728, 'fifteen thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(12129, 50357, 'fifty thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(12130, 39694, 'thirty-nine thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(12131, 51963, 'fifty-one thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(12132, 46895, 'forty-six thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(12133, 17207, 'seventeen thousand two hundred seven');\nINSERT INTO t3 VALUES(12134, 49024, 'forty-nine thousand twenty-four');\nINSERT INTO t3 VALUES(12135, 78280, 'seventy-eight thousand two hundred eighty');\nINSERT INTO t3 VALUES(12136, 83475, 'eighty-three thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(12137, 63565, 'sixty-three thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(12138, 54154, 'fifty-four thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(12139, 57673, 'fifty-seven thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(12140, 85932, 'eighty-five thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(12141, 31555, 'thirty-one thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(12142, 9508, 'nine thousand five hundred eight');\nINSERT INTO t3 VALUES(12143, 73567, 'seventy-three thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(12144, 44988, 'forty-four thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(12145, 21127, 'twenty-one thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(12146, 61012, 'sixty-one thousand twelve');\nINSERT INTO t3 VALUES(12147, 77837, 'seventy-seven thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(12148, 73851, 'seventy-three thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(12149, 2111, 'two thousand one hundred eleven');\nINSERT INTO t3 VALUES(12150, 73767, 'seventy-three thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(12151, 62354, 'sixty-two thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(12152, 61977, 'sixty-one thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(12153, 73744, 'seventy-three thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(12154, 95066, 'ninety-five thousand sixty-six');\nINSERT INTO t3 VALUES(12155, 31700, 'thirty-one thousand seven hundred');\nINSERT INTO t3 VALUES(12156, 72926, 'seventy-two thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(12157, 72676, 'seventy-two thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(12158, 72285, 'seventy-two thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(12159, 49915, 'forty-nine thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(12160, 7776, 'seven thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(12161, 43821, 'forty-three thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(12162, 28575, 'twenty-eight thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(12163, 92576, 'ninety-two thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(12164, 98015, 'ninety-eight thousand fifteen');\nINSERT INTO t3 VALUES(12165, 88258, 'eighty-eight thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(12166, 95707, 'ninety-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(12167, 24589, 'twenty-four thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(12168, 46285, 'forty-six thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(12169, 5068, 'five thousand sixty-eight');\nINSERT INTO t3 VALUES(12170, 51316, 'fifty-one thousand three hundred sixteen');\nINSERT INTO t3 VALUES(12171, 15037, 'fifteen thousand thirty-seven');\nINSERT INTO t3 VALUES(12172, 66199, 'sixty-six thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(12173, 33768, 'thirty-three thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(12174, 24122, 'twenty-four thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(12175, 17389, 'seventeen thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(12176, 65942, 'sixty-five thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(12177, 52529, 'fifty-two thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(12178, 68202, 'sixty-eight thousand two hundred two');\nINSERT INTO t3 VALUES(12179, 72068, 'seventy-two thousand sixty-eight');\nINSERT INTO t3 VALUES(12180, 83937, 'eighty-three thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(12181, 61400, 'sixty-one thousand four hundred');\nINSERT INTO t3 VALUES(12182, 13197, 'thirteen thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(12183, 13985, 'thirteen thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(12184, 52156, 'fifty-two thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(12185, 40126, 'forty thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(12186, 58642, 'fifty-eight thousand six hundred forty-two');\nINSERT INTO t3 VALUES(12187, 58419, 'fifty-eight thousand four hundred nineteen');\nINSERT INTO t3 VALUES(12188, 49468, 'forty-nine thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(12189, 72777, 'seventy-two thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(12190, 95503, 'ninety-five thousand five hundred three');\nINSERT INTO t3 VALUES(12191, 49326, 'forty-nine thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(12192, 42014, 'forty-two thousand fourteen');\nINSERT INTO t3 VALUES(12193, 79926, 'seventy-nine thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(12194, 57119, 'fifty-seven thousand one hundred nineteen');\nINSERT INTO t3 VALUES(12195, 42271, 'forty-two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(12196, 23936, 'twenty-three thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(12197, 42816, 'forty-two thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(12198, 25696, 'twenty-five thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(12199, 37571, 'thirty-seven thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(12200, 59291, 'fifty-nine thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(12201, 15587, 'fifteen thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(12202, 38850, 'thirty-eight thousand eight hundred fifty');\nINSERT INTO t3 VALUES(12203, 96783, 'ninety-six thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(12204, 10262, 'ten thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(12205, 19792, 'nineteen thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(12206, 25424, 'twenty-five thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(12207, 86536, 'eighty-six thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(12208, 91299, 'ninety-one thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(12209, 9903, 'nine thousand nine hundred three');\nINSERT INTO t3 VALUES(12210, 75237, 'seventy-five thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(12211, 53924, 'fifty-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(12212, 25495, 'twenty-five thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(12213, 67720, 'sixty-seven thousand seven hundred twenty');\nINSERT INTO t3 VALUES(12214, 33077, 'thirty-three thousand seventy-seven');\nINSERT INTO t3 VALUES(12215, 65158, 'sixty-five thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(12216, 67488, 'sixty-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(12217, 25822, 'twenty-five thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(12218, 38798, 'thirty-eight thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(12219, 92248, 'ninety-two thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(12220, 3957, 'three thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(12221, 23961, 'twenty-three thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(12222, 83061, 'eighty-three thousand sixty-one');\nINSERT INTO t3 VALUES(12223, 47859, 'forty-seven thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(12224, 23347, 'twenty-three thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(12225, 78524, 'seventy-eight thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(12226, 97047, 'ninety-seven thousand forty-seven');\nINSERT INTO t3 VALUES(12227, 27575, 'twenty-seven thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(12228, 10705, 'ten thousand seven hundred five');\nINSERT INTO t3 VALUES(12229, 49985, 'forty-nine thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(12230, 38058, 'thirty-eight thousand fifty-eight');\nINSERT INTO t3 VALUES(12231, 44581, 'forty-four thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(12232, 91085, 'ninety-one thousand eighty-five');\nINSERT INTO t3 VALUES(12233, 18906, 'eighteen thousand nine hundred six');\nINSERT INTO t3 VALUES(12234, 74999, 'seventy-four thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(12235, 93218, 'ninety-three thousand two hundred eighteen');\nINSERT INTO t3 VALUES(12236, 48374, 'forty-eight thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(12237, 20996, 'twenty thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(12238, 89650, 'eighty-nine thousand six hundred fifty');\nINSERT INTO t3 VALUES(12239, 42672, 'forty-two thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(12240, 44001, 'forty-four thousand one');\nINSERT INTO t3 VALUES(12241, 70701, 'seventy thousand seven hundred one');\nINSERT INTO t3 VALUES(12242, 8247, 'eight thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(12243, 51628, 'fifty-one thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(12244, 63409, 'sixty-three thousand four hundred nine');\nINSERT INTO t3 VALUES(12245, 54207, 'fifty-four thousand two hundred seven');\nINSERT INTO t3 VALUES(12246, 42940, 'forty-two thousand nine hundred forty');\nINSERT INTO t3 VALUES(12247, 18088, 'eighteen thousand eighty-eight');\nINSERT INTO t3 VALUES(12248, 58027, 'fifty-eight thousand twenty-seven');\nINSERT INTO t3 VALUES(12249, 2377, 'two thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(12250, 75368, 'seventy-five thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(12251, 75268, 'seventy-five thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(12252, 30975, 'thirty thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(12253, 20743, 'twenty thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(12254, 88758, 'eighty-eight thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(12255, 84075, 'eighty-four thousand seventy-five');\nINSERT INTO t3 VALUES(12256, 68101, 'sixty-eight thousand one hundred one');\nINSERT INTO t3 VALUES(12257, 99073, 'ninety-nine thousand seventy-three');\nINSERT INTO t3 VALUES(12258, 40425, 'forty thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(12259, 72976, 'seventy-two thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(12260, 94909, 'ninety-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(12261, 14725, 'fourteen thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(12262, 71352, 'seventy-one thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(12263, 70754, 'seventy thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(12264, 56111, 'fifty-six thousand one hundred eleven');\nINSERT INTO t3 VALUES(12265, 24724, 'twenty-four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(12266, 82841, 'eighty-two thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(12267, 14546, 'fourteen thousand five hundred forty-six');\nINSERT INTO t3 VALUES(12268, 68833, 'sixty-eight thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(12269, 13914, 'thirteen thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(12270, 94002, 'ninety-four thousand two');\nINSERT INTO t3 VALUES(12271, 17228, 'seventeen thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(12272, 50320, 'fifty thousand three hundred twenty');\nINSERT INTO t3 VALUES(12273, 81657, 'eighty-one thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(12274, 26352, 'twenty-six thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(12275, 33434, 'thirty-three thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(12276, 63140, 'sixty-three thousand one hundred forty');\nINSERT INTO t3 VALUES(12277, 61847, 'sixty-one thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(12278, 60849, 'sixty thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(12279, 58925, 'fifty-eight thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(12280, 82246, 'eighty-two thousand two hundred forty-six');\nINSERT INTO t3 VALUES(12281, 75025, 'seventy-five thousand twenty-five');\nINSERT INTO t3 VALUES(12282, 16427, 'sixteen thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(12283, 84464, 'eighty-four thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(12284, 85030, 'eighty-five thousand thirty');\nINSERT INTO t3 VALUES(12285, 54040, 'fifty-four thousand forty');\nINSERT INTO t3 VALUES(12286, 57978, 'fifty-seven thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(12287, 32230, 'thirty-two thousand two hundred thirty');\nINSERT INTO t3 VALUES(12288, 62464, 'sixty-two thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(12289, 6503, 'six thousand five hundred three');\nINSERT INTO t3 VALUES(12290, 11213, 'eleven thousand two hundred thirteen');\nINSERT INTO t3 VALUES(12291, 20569, 'twenty thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(12292, 76107, 'seventy-six thousand one hundred seven');\nINSERT INTO t3 VALUES(12293, 69219, 'sixty-nine thousand two hundred nineteen');\nINSERT INTO t3 VALUES(12294, 75998, 'seventy-five thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(12295, 76402, 'seventy-six thousand four hundred two');\nINSERT INTO t3 VALUES(12296, 42049, 'forty-two thousand forty-nine');\nINSERT INTO t3 VALUES(12297, 44074, 'forty-four thousand seventy-four');\nINSERT INTO t3 VALUES(12298, 97327, 'ninety-seven thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(12299, 88499, 'eighty-eight thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(12300, 88271, 'eighty-eight thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(12301, 91414, 'ninety-one thousand four hundred fourteen');\nINSERT INTO t3 VALUES(12302, 25551, 'twenty-five thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(12303, 92869, 'ninety-two thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(12304, 17470, 'seventeen thousand four hundred seventy');\nINSERT INTO t3 VALUES(12305, 49322, 'forty-nine thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(12306, 4405, 'four thousand four hundred five');\nINSERT INTO t3 VALUES(12307, 49683, 'forty-nine thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(12308, 93222, 'ninety-three thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(12309, 36708, 'thirty-six thousand seven hundred eight');\nINSERT INTO t3 VALUES(12310, 66742, 'sixty-six thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(12311, 34969, 'thirty-four thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(12312, 89482, 'eighty-nine thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(12313, 58554, 'fifty-eight thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(12314, 39993, 'thirty-nine thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(12315, 50638, 'fifty thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(12316, 4791, 'four thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(12317, 66854, 'sixty-six thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(12318, 25504, 'twenty-five thousand five hundred four');\nINSERT INTO t3 VALUES(12319, 67298, 'sixty-seven thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(12320, 7335, 'seven thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(12321, 89558, 'eighty-nine thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(12322, 45790, 'forty-five thousand seven hundred ninety');\nINSERT INTO t3 VALUES(12323, 48365, 'forty-eight thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(12324, 19106, 'nineteen thousand one hundred six');\nINSERT INTO t3 VALUES(12325, 51267, 'fifty-one thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(12326, 3146, 'three thousand one hundred forty-six');\nINSERT INTO t3 VALUES(12327, 87813, 'eighty-seven thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(12328, 10331, 'ten thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(12329, 96012, 'ninety-six thousand twelve');\nINSERT INTO t3 VALUES(12330, 28797, 'twenty-eight thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(12331, 91533, 'ninety-one thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(12332, 14340, 'fourteen thousand three hundred forty');\nINSERT INTO t3 VALUES(12333, 52036, 'fifty-two thousand thirty-six');\nINSERT INTO t3 VALUES(12334, 5733, 'five thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(12335, 8866, 'eight thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(12336, 11371, 'eleven thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(12337, 55413, 'fifty-five thousand four hundred thirteen');\nINSERT INTO t3 VALUES(12338, 23904, 'twenty-three thousand nine hundred four');\nINSERT INTO t3 VALUES(12339, 56802, 'fifty-six thousand eight hundred two');\nINSERT INTO t3 VALUES(12340, 87067, 'eighty-seven thousand sixty-seven');\nINSERT INTO t3 VALUES(12341, 83206, 'eighty-three thousand two hundred six');\nINSERT INTO t3 VALUES(12342, 40947, 'forty thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(12343, 72030, 'seventy-two thousand thirty');\nINSERT INTO t3 VALUES(12344, 88626, 'eighty-eight thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(12345, 80309, 'eighty thousand three hundred nine');\nINSERT INTO t3 VALUES(12346, 31106, 'thirty-one thousand one hundred six');\nINSERT INTO t3 VALUES(12347, 33592, 'thirty-three thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(12348, 78295, 'seventy-eight thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(12349, 79065, 'seventy-nine thousand sixty-five');\nINSERT INTO t3 VALUES(12350, 23927, 'twenty-three thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(12351, 54139, 'fifty-four thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(12352, 83607, 'eighty-three thousand six hundred seven');\nINSERT INTO t3 VALUES(12353, 97703, 'ninety-seven thousand seven hundred three');\nINSERT INTO t3 VALUES(12354, 86390, 'eighty-six thousand three hundred ninety');\nINSERT INTO t3 VALUES(12355, 81581, 'eighty-one thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(12356, 65125, 'sixty-five thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(12357, 25619, 'twenty-five thousand six hundred nineteen');\nINSERT INTO t3 VALUES(12358, 45601, 'forty-five thousand six hundred one');\nINSERT INTO t3 VALUES(12359, 65234, 'sixty-five thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(12360, 76715, 'seventy-six thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(12361, 35896, 'thirty-five thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(12362, 69346, 'sixty-nine thousand three hundred forty-six');\nINSERT INTO t3 VALUES(12363, 67174, 'sixty-seven thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(12364, 3094, 'three thousand ninety-four');\nINSERT INTO t3 VALUES(12365, 558, 'five hundred fifty-eight');\nINSERT INTO t3 VALUES(12366, 47389, 'forty-seven thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(12367, 44635, 'forty-four thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(12368, 54662, 'fifty-four thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(12369, 32752, 'thirty-two thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(12370, 78081, 'seventy-eight thousand eighty-one');\nINSERT INTO t3 VALUES(12371, 33368, 'thirty-three thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(12372, 31931, 'thirty-one thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(12373, 43170, 'forty-three thousand one hundred seventy');\nINSERT INTO t3 VALUES(12374, 71960, 'seventy-one thousand nine hundred sixty');\nINSERT INTO t3 VALUES(12375, 38617, 'thirty-eight thousand six hundred seventeen');\nINSERT INTO t3 VALUES(12376, 82807, 'eighty-two thousand eight hundred seven');\nINSERT INTO t3 VALUES(12377, 10336, 'ten thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(12378, 1412, 'one thousand four hundred twelve');\nINSERT INTO t3 VALUES(12379, 32118, 'thirty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(12380, 64392, 'sixty-four thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(12381, 42476, 'forty-two thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(12382, 27134, 'twenty-seven thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(12383, 47740, 'forty-seven thousand seven hundred forty');\nINSERT INTO t3 VALUES(12384, 7011, 'seven thousand eleven');\nINSERT INTO t3 VALUES(12385, 20480, 'twenty thousand four hundred eighty');\nINSERT INTO t3 VALUES(12386, 78531, 'seventy-eight thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(12387, 71055, 'seventy-one thousand fifty-five');\nINSERT INTO t3 VALUES(12388, 8399, 'eight thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(12389, 58006, 'fifty-eight thousand six');\nINSERT INTO t3 VALUES(12390, 69496, 'sixty-nine thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(12391, 96798, 'ninety-six thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(12392, 79086, 'seventy-nine thousand eighty-six');\nINSERT INTO t3 VALUES(12393, 56704, 'fifty-six thousand seven hundred four');\nINSERT INTO t3 VALUES(12394, 32766, 'thirty-two thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(12395, 15365, 'fifteen thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(12396, 56636, 'fifty-six thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(12397, 52152, 'fifty-two thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(12398, 4018, 'four thousand eighteen');\nINSERT INTO t3 VALUES(12399, 95012, 'ninety-five thousand twelve');\nINSERT INTO t3 VALUES(12400, 43967, 'forty-three thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(12401, 30962, 'thirty thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(12402, 51535, 'fifty-one thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(12403, 66800, 'sixty-six thousand eight hundred');\nINSERT INTO t3 VALUES(12404, 46071, 'forty-six thousand seventy-one');\nINSERT INTO t3 VALUES(12405, 63123, 'sixty-three thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(12406, 96410, 'ninety-six thousand four hundred ten');\nINSERT INTO t3 VALUES(12407, 42174, 'forty-two thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(12408, 83887, 'eighty-three thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(12409, 24188, 'twenty-four thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(12410, 41230, 'forty-one thousand two hundred thirty');\nINSERT INTO t3 VALUES(12411, 57121, 'fifty-seven thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(12412, 47047, 'forty-seven thousand forty-seven');\nINSERT INTO t3 VALUES(12413, 65933, 'sixty-five thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(12414, 11440, 'eleven thousand four hundred forty');\nINSERT INTO t3 VALUES(12415, 28993, 'twenty-eight thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(12416, 43252, 'forty-three thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(12417, 59452, 'fifty-nine thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(12418, 67675, 'sixty-seven thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(12419, 4068, 'four thousand sixty-eight');\nINSERT INTO t3 VALUES(12420, 51511, 'fifty-one thousand five hundred eleven');\nINSERT INTO t3 VALUES(12421, 37323, 'thirty-seven thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(12422, 98598, 'ninety-eight thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(12423, 70363, 'seventy thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(12424, 88471, 'eighty-eight thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(12425, 96800, 'ninety-six thousand eight hundred');\nINSERT INTO t3 VALUES(12426, 66953, 'sixty-six thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(12427, 93859, 'ninety-three thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(12428, 85522, 'eighty-five thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(12429, 83734, 'eighty-three thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(12430, 8259, 'eight thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(12431, 39924, 'thirty-nine thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(12432, 75262, 'seventy-five thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(12433, 20752, 'twenty thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(12434, 32105, 'thirty-two thousand one hundred five');\nINSERT INTO t3 VALUES(12435, 16337, 'sixteen thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(12436, 1699, 'one thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(12437, 88600, 'eighty-eight thousand six hundred');\nINSERT INTO t3 VALUES(12438, 15719, 'fifteen thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(12439, 46010, 'forty-six thousand ten');\nINSERT INTO t3 VALUES(12440, 46329, 'forty-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(12441, 60870, 'sixty thousand eight hundred seventy');\nINSERT INTO t3 VALUES(12442, 15013, 'fifteen thousand thirteen');\nINSERT INTO t3 VALUES(12443, 1396, 'one thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(12444, 9929, 'nine thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(12445, 82977, 'eighty-two thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(12446, 20123, 'twenty thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(12447, 18137, 'eighteen thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(12448, 84531, 'eighty-four thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(12449, 22905, 'twenty-two thousand nine hundred five');\nINSERT INTO t3 VALUES(12450, 8244, 'eight thousand two hundred forty-four');\nINSERT INTO t3 VALUES(12451, 79957, 'seventy-nine thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(12452, 6762, 'six thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(12453, 80350, 'eighty thousand three hundred fifty');\nINSERT INTO t3 VALUES(12454, 24058, 'twenty-four thousand fifty-eight');\nINSERT INTO t3 VALUES(12455, 28450, 'twenty-eight thousand four hundred fifty');\nINSERT INTO t3 VALUES(12456, 25114, 'twenty-five thousand one hundred fourteen');\nINSERT INTO t3 VALUES(12457, 25121, 'twenty-five thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(12458, 81767, 'eighty-one thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(12459, 32815, 'thirty-two thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(12460, 58684, 'fifty-eight thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(12461, 12150, 'twelve thousand one hundred fifty');\nINSERT INTO t3 VALUES(12462, 25453, 'twenty-five thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(12463, 94481, 'ninety-four thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(12464, 25271, 'twenty-five thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(12465, 15510, 'fifteen thousand five hundred ten');\nINSERT INTO t3 VALUES(12466, 37587, 'thirty-seven thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(12467, 18037, 'eighteen thousand thirty-seven');\nINSERT INTO t3 VALUES(12468, 47583, 'forty-seven thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(12469, 48867, 'forty-eight thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(12470, 50053, 'fifty thousand fifty-three');\nINSERT INTO t3 VALUES(12471, 94736, 'ninety-four thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(12472, 87965, 'eighty-seven thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(12473, 55778, 'fifty-five thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(12474, 67748, 'sixty-seven thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(12475, 34690, 'thirty-four thousand six hundred ninety');\nINSERT INTO t3 VALUES(12476, 50922, 'fifty thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(12477, 8715, 'eight thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(12478, 12945, 'twelve thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(12479, 68002, 'sixty-eight thousand two');\nINSERT INTO t3 VALUES(12480, 15048, 'fifteen thousand forty-eight');\nINSERT INTO t3 VALUES(12481, 91440, 'ninety-one thousand four hundred forty');\nINSERT INTO t3 VALUES(12482, 51865, 'fifty-one thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(12483, 11627, 'eleven thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(12484, 98039, 'ninety-eight thousand thirty-nine');\nINSERT INTO t3 VALUES(12485, 32256, 'thirty-two thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(12486, 99595, 'ninety-nine thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(12487, 29250, 'twenty-nine thousand two hundred fifty');\nINSERT INTO t3 VALUES(12488, 77049, 'seventy-seven thousand forty-nine');\nINSERT INTO t3 VALUES(12489, 86646, 'eighty-six thousand six hundred forty-six');\nINSERT INTO t3 VALUES(12490, 41257, 'forty-one thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(12491, 77597, 'seventy-seven thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(12492, 9909, 'nine thousand nine hundred nine');\nINSERT INTO t3 VALUES(12493, 72690, 'seventy-two thousand six hundred ninety');\nINSERT INTO t3 VALUES(12494, 73231, 'seventy-three thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(12495, 1184, 'one thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(12496, 27663, 'twenty-seven thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(12497, 29064, 'twenty-nine thousand sixty-four');\nINSERT INTO t3 VALUES(12498, 44542, 'forty-four thousand five hundred forty-two');\nINSERT INTO t3 VALUES(12499, 50700, 'fifty thousand seven hundred');\nINSERT INTO t3 VALUES(12500, 64527, 'sixty-four thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(12501, 27776, 'twenty-seven thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(12502, 71905, 'seventy-one thousand nine hundred five');\nINSERT INTO t3 VALUES(12503, 63327, 'sixty-three thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(12504, 24529, 'twenty-four thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(12505, 53478, 'fifty-three thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(12506, 41381, 'forty-one thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(12507, 12987, 'twelve thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(12508, 94291, 'ninety-four thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(12509, 83630, 'eighty-three thousand six hundred thirty');\nINSERT INTO t3 VALUES(12510, 36087, 'thirty-six thousand eighty-seven');\nINSERT INTO t3 VALUES(12511, 28941, 'twenty-eight thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(12512, 68723, 'sixty-eight thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(12513, 36126, 'thirty-six thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(12514, 63247, 'sixty-three thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(12515, 69046, 'sixty-nine thousand forty-six');\nINSERT INTO t3 VALUES(12516, 23716, 'twenty-three thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(12517, 54643, 'fifty-four thousand six hundred forty-three');\nINSERT INTO t3 VALUES(12518, 68032, 'sixty-eight thousand thirty-two');\nINSERT INTO t3 VALUES(12519, 15832, 'fifteen thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(12520, 28522, 'twenty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(12521, 1615, 'one thousand six hundred fifteen');\nINSERT INTO t3 VALUES(12522, 56734, 'fifty-six thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(12523, 29381, 'twenty-nine thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(12524, 96784, 'ninety-six thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(12525, 25678, 'twenty-five thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(12526, 25660, 'twenty-five thousand six hundred sixty');\nINSERT INTO t3 VALUES(12527, 51583, 'fifty-one thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(12528, 41817, 'forty-one thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(12529, 65995, 'sixty-five thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(12530, 18128, 'eighteen thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(12531, 26780, 'twenty-six thousand seven hundred eighty');\nINSERT INTO t3 VALUES(12532, 35231, 'thirty-five thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(12533, 54947, 'fifty-four thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(12534, 45299, 'forty-five thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(12535, 16410, 'sixteen thousand four hundred ten');\nINSERT INTO t3 VALUES(12536, 28447, 'twenty-eight thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(12537, 34234, 'thirty-four thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(12538, 93067, 'ninety-three thousand sixty-seven');\nINSERT INTO t3 VALUES(12539, 357, 'three hundred fifty-seven');\nINSERT INTO t3 VALUES(12540, 37564, 'thirty-seven thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(12541, 78133, 'seventy-eight thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(12542, 12698, 'twelve thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(12543, 81735, 'eighty-one thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(12544, 85149, 'eighty-five thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(12545, 6787, 'six thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(12546, 8320, 'eight thousand three hundred twenty');\nINSERT INTO t3 VALUES(12547, 7963, 'seven thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(12548, 66394, 'sixty-six thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(12549, 83934, 'eighty-three thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(12550, 67896, 'sixty-seven thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(12551, 18949, 'eighteen thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(12552, 75265, 'seventy-five thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(12553, 12320, 'twelve thousand three hundred twenty');\nINSERT INTO t3 VALUES(12554, 50364, 'fifty thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(12555, 85557, 'eighty-five thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(12556, 61745, 'sixty-one thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(12557, 33129, 'thirty-three thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(12558, 82482, 'eighty-two thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(12559, 29300, 'twenty-nine thousand three hundred');\nINSERT INTO t3 VALUES(12560, 39206, 'thirty-nine thousand two hundred six');\nINSERT INTO t3 VALUES(12561, 31842, 'thirty-one thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(12562, 21973, 'twenty-one thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(12563, 24646, 'twenty-four thousand six hundred forty-six');\nINSERT INTO t3 VALUES(12564, 17006, 'seventeen thousand six');\nINSERT INTO t3 VALUES(12565, 57897, 'fifty-seven thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(12566, 46859, 'forty-six thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(12567, 68650, 'sixty-eight thousand six hundred fifty');\nINSERT INTO t3 VALUES(12568, 19990, 'nineteen thousand nine hundred ninety');\nINSERT INTO t3 VALUES(12569, 54074, 'fifty-four thousand seventy-four');\nINSERT INTO t3 VALUES(12570, 75240, 'seventy-five thousand two hundred forty');\nINSERT INTO t3 VALUES(12571, 53637, 'fifty-three thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(12572, 33994, 'thirty-three thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(12573, 40402, 'forty thousand four hundred two');\nINSERT INTO t3 VALUES(12574, 23534, 'twenty-three thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(12575, 38116, 'thirty-eight thousand one hundred sixteen');\nINSERT INTO t3 VALUES(12576, 63651, 'sixty-three thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(12577, 37906, 'thirty-seven thousand nine hundred six');\nINSERT INTO t3 VALUES(12578, 84345, 'eighty-four thousand three hundred forty-five');\nINSERT INTO t3 VALUES(12579, 24704, 'twenty-four thousand seven hundred four');\nINSERT INTO t3 VALUES(12580, 6299, 'six thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(12581, 13423, 'thirteen thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(12582, 49551, 'forty-nine thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(12583, 61536, 'sixty-one thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(12584, 99195, 'ninety-nine thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(12585, 90974, 'ninety thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(12586, 86382, 'eighty-six thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(12587, 98600, 'ninety-eight thousand six hundred');\nINSERT INTO t3 VALUES(12588, 11341, 'eleven thousand three hundred forty-one');\nINSERT INTO t3 VALUES(12589, 6230, 'six thousand two hundred thirty');\nINSERT INTO t3 VALUES(12590, 84415, 'eighty-four thousand four hundred fifteen');\nINSERT INTO t3 VALUES(12591, 13190, 'thirteen thousand one hundred ninety');\nINSERT INTO t3 VALUES(12592, 40445, 'forty thousand four hundred forty-five');\nINSERT INTO t3 VALUES(12593, 27416, 'twenty-seven thousand four hundred sixteen');\nINSERT INTO t3 VALUES(12594, 22997, 'twenty-two thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(12595, 73654, 'seventy-three thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(12596, 45799, 'forty-five thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(12597, 11809, 'eleven thousand eight hundred nine');\nINSERT INTO t3 VALUES(12598, 71345, 'seventy-one thousand three hundred forty-five');\nINSERT INTO t3 VALUES(12599, 78930, 'seventy-eight thousand nine hundred thirty');\nINSERT INTO t3 VALUES(12600, 44539, 'forty-four thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(12601, 25888, 'twenty-five thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(12602, 55168, 'fifty-five thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(12603, 17408, 'seventeen thousand four hundred eight');\nINSERT INTO t3 VALUES(12604, 91046, 'ninety-one thousand forty-six');\nINSERT INTO t3 VALUES(12605, 60487, 'sixty thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(12606, 38260, 'thirty-eight thousand two hundred sixty');\nINSERT INTO t3 VALUES(12607, 34970, 'thirty-four thousand nine hundred seventy');\nINSERT INTO t3 VALUES(12608, 87774, 'eighty-seven thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(12609, 33514, 'thirty-three thousand five hundred fourteen');\nINSERT INTO t3 VALUES(12610, 6794, 'six thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(12611, 70503, 'seventy thousand five hundred three');\nINSERT INTO t3 VALUES(12612, 51852, 'fifty-one thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(12613, 23008, 'twenty-three thousand eight');\nINSERT INTO t3 VALUES(12614, 2474, 'two thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(12615, 14304, 'fourteen thousand three hundred four');\nINSERT INTO t3 VALUES(12616, 78739, 'seventy-eight thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(12617, 33290, 'thirty-three thousand two hundred ninety');\nINSERT INTO t3 VALUES(12618, 82004, 'eighty-two thousand four');\nINSERT INTO t3 VALUES(12619, 24390, 'twenty-four thousand three hundred ninety');\nINSERT INTO t3 VALUES(12620, 87146, 'eighty-seven thousand one hundred forty-six');\nINSERT INTO t3 VALUES(12621, 8691, 'eight thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(12622, 99344, 'ninety-nine thousand three hundred forty-four');\nINSERT INTO t3 VALUES(12623, 3238, 'three thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(12624, 71113, 'seventy-one thousand one hundred thirteen');\nINSERT INTO t3 VALUES(12625, 71441, 'seventy-one thousand four hundred forty-one');\nINSERT INTO t3 VALUES(12626, 71434, 'seventy-one thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(12627, 82644, 'eighty-two thousand six hundred forty-four');\nINSERT INTO t3 VALUES(12628, 89276, 'eighty-nine thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(12629, 8501, 'eight thousand five hundred one');\nINSERT INTO t3 VALUES(12630, 60214, 'sixty thousand two hundred fourteen');\nINSERT INTO t3 VALUES(12631, 84718, 'eighty-four thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(12632, 87349, 'eighty-seven thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(12633, 91038, 'ninety-one thousand thirty-eight');\nINSERT INTO t3 VALUES(12634, 41025, 'forty-one thousand twenty-five');\nINSERT INTO t3 VALUES(12635, 52699, 'fifty-two thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(12636, 81366, 'eighty-one thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(12637, 9633, 'nine thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(12638, 47238, 'forty-seven thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(12639, 9001, 'nine thousand one');\nINSERT INTO t3 VALUES(12640, 66941, 'sixty-six thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(12641, 52593, 'fifty-two thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(12642, 97813, 'ninety-seven thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(12643, 5987, 'five thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(12644, 82630, 'eighty-two thousand six hundred thirty');\nINSERT INTO t3 VALUES(12645, 98160, 'ninety-eight thousand one hundred sixty');\nINSERT INTO t3 VALUES(12646, 222, 'two hundred twenty-two');\nINSERT INTO t3 VALUES(12647, 86892, 'eighty-six thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(12648, 63743, 'sixty-three thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(12649, 81734, 'eighty-one thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(12650, 48541, 'forty-eight thousand five hundred forty-one');\nINSERT INTO t3 VALUES(12651, 36365, 'thirty-six thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(12652, 20826, 'twenty thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(12653, 85203, 'eighty-five thousand two hundred three');\nINSERT INTO t3 VALUES(12654, 26495, 'twenty-six thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(12655, 19571, 'nineteen thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(12656, 1139, 'one thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(12657, 64406, 'sixty-four thousand four hundred six');\nINSERT INTO t3 VALUES(12658, 57451, 'fifty-seven thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(12659, 79223, 'seventy-nine thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(12660, 57009, 'fifty-seven thousand nine');\nINSERT INTO t3 VALUES(12661, 73333, 'seventy-three thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(12662, 51819, 'fifty-one thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(12663, 63717, 'sixty-three thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(12664, 75607, 'seventy-five thousand six hundred seven');\nINSERT INTO t3 VALUES(12665, 30413, 'thirty thousand four hundred thirteen');\nINSERT INTO t3 VALUES(12666, 43176, 'forty-three thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(12667, 9969, 'nine thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(12668, 84541, 'eighty-four thousand five hundred forty-one');\nINSERT INTO t3 VALUES(12669, 61457, 'sixty-one thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(12670, 39097, 'thirty-nine thousand ninety-seven');\nINSERT INTO t3 VALUES(12671, 10062, 'ten thousand sixty-two');\nINSERT INTO t3 VALUES(12672, 75919, 'seventy-five thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(12673, 33105, 'thirty-three thousand one hundred five');\nINSERT INTO t3 VALUES(12674, 85001, 'eighty-five thousand one');\nINSERT INTO t3 VALUES(12675, 70635, 'seventy thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(12676, 1633, 'one thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(12677, 56254, 'fifty-six thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(12678, 96865, 'ninety-six thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(12679, 32482, 'thirty-two thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(12680, 8805, 'eight thousand eight hundred five');\nINSERT INTO t3 VALUES(12681, 44699, 'forty-four thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(12682, 67454, 'sixty-seven thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(12683, 6728, 'six thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(12684, 60834, 'sixty thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(12685, 69492, 'sixty-nine thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(12686, 75870, 'seventy-five thousand eight hundred seventy');\nINSERT INTO t3 VALUES(12687, 46922, 'forty-six thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(12688, 49954, 'forty-nine thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(12689, 89469, 'eighty-nine thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(12690, 19961, 'nineteen thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(12691, 44740, 'forty-four thousand seven hundred forty');\nINSERT INTO t3 VALUES(12692, 44840, 'forty-four thousand eight hundred forty');\nINSERT INTO t3 VALUES(12693, 92446, 'ninety-two thousand four hundred forty-six');\nINSERT INTO t3 VALUES(12694, 58104, 'fifty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(12695, 85813, 'eighty-five thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(12696, 31356, 'thirty-one thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(12697, 36930, 'thirty-six thousand nine hundred thirty');\nINSERT INTO t3 VALUES(12698, 33444, 'thirty-three thousand four hundred forty-four');\nINSERT INTO t3 VALUES(12699, 49152, 'forty-nine thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(12700, 77609, 'seventy-seven thousand six hundred nine');\nINSERT INTO t3 VALUES(12701, 66681, 'sixty-six thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(12702, 41452, 'forty-one thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(12703, 45766, 'forty-five thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(12704, 30935, 'thirty thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(12705, 67848, 'sixty-seven thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(12706, 20793, 'twenty thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(12707, 20614, 'twenty thousand six hundred fourteen');\nINSERT INTO t3 VALUES(12708, 80832, 'eighty thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(12709, 93210, 'ninety-three thousand two hundred ten');\nINSERT INTO t3 VALUES(12710, 62573, 'sixty-two thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(12711, 34415, 'thirty-four thousand four hundred fifteen');\nINSERT INTO t3 VALUES(12712, 37357, 'thirty-seven thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(12713, 72961, 'seventy-two thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(12714, 14852, 'fourteen thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(12715, 28075, 'twenty-eight thousand seventy-five');\nINSERT INTO t3 VALUES(12716, 83557, 'eighty-three thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(12717, 78992, 'seventy-eight thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(12718, 69052, 'sixty-nine thousand fifty-two');\nINSERT INTO t3 VALUES(12719, 41901, 'forty-one thousand nine hundred one');\nINSERT INTO t3 VALUES(12720, 76886, 'seventy-six thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(12721, 19779, 'nineteen thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(12722, 84912, 'eighty-four thousand nine hundred twelve');\nINSERT INTO t3 VALUES(12723, 66187, 'sixty-six thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(12724, 78636, 'seventy-eight thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(12725, 30044, 'thirty thousand forty-four');\nINSERT INTO t3 VALUES(12726, 28176, 'twenty-eight thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(12727, 27874, 'twenty-seven thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(12728, 95578, 'ninety-five thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(12729, 33681, 'thirty-three thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(12730, 12222, 'twelve thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(12731, 26598, 'twenty-six thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(12732, 62513, 'sixty-two thousand five hundred thirteen');\nINSERT INTO t3 VALUES(12733, 11509, 'eleven thousand five hundred nine');\nINSERT INTO t3 VALUES(12734, 83392, 'eighty-three thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(12735, 97773, 'ninety-seven thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(12736, 3058, 'three thousand fifty-eight');\nINSERT INTO t3 VALUES(12737, 89802, 'eighty-nine thousand eight hundred two');\nINSERT INTO t3 VALUES(12738, 49401, 'forty-nine thousand four hundred one');\nINSERT INTO t3 VALUES(12739, 28921, 'twenty-eight thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(12740, 45066, 'forty-five thousand sixty-six');\nINSERT INTO t3 VALUES(12741, 23035, 'twenty-three thousand thirty-five');\nINSERT INTO t3 VALUES(12742, 63245, 'sixty-three thousand two hundred forty-five');\nINSERT INTO t3 VALUES(12743, 2524, 'two thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(12744, 21784, 'twenty-one thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(12745, 94512, 'ninety-four thousand five hundred twelve');\nINSERT INTO t3 VALUES(12746, 80023, 'eighty thousand twenty-three');\nINSERT INTO t3 VALUES(12747, 22798, 'twenty-two thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(12748, 16485, 'sixteen thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(12749, 29678, 'twenty-nine thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(12750, 4367, 'four thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(12751, 73647, 'seventy-three thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(12752, 24278, 'twenty-four thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(12753, 40519, 'forty thousand five hundred nineteen');\nINSERT INTO t3 VALUES(12754, 15534, 'fifteen thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(12755, 68479, 'sixty-eight thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(12756, 29542, 'twenty-nine thousand five hundred forty-two');\nINSERT INTO t3 VALUES(12757, 20877, 'twenty thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(12758, 80932, 'eighty thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(12759, 66037, 'sixty-six thousand thirty-seven');\nINSERT INTO t3 VALUES(12760, 17970, 'seventeen thousand nine hundred seventy');\nINSERT INTO t3 VALUES(12761, 58418, 'fifty-eight thousand four hundred eighteen');\nINSERT INTO t3 VALUES(12762, 19130, 'nineteen thousand one hundred thirty');\nINSERT INTO t3 VALUES(12763, 77982, 'seventy-seven thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(12764, 61486, 'sixty-one thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(12765, 98514, 'ninety-eight thousand five hundred fourteen');\nINSERT INTO t3 VALUES(12766, 7357, 'seven thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(12767, 3509, 'three thousand five hundred nine');\nINSERT INTO t3 VALUES(12768, 1141, 'one thousand one hundred forty-one');\nINSERT INTO t3 VALUES(12769, 39136, 'thirty-nine thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(12770, 80580, 'eighty thousand five hundred eighty');\nINSERT INTO t3 VALUES(12771, 15069, 'fifteen thousand sixty-nine');\nINSERT INTO t3 VALUES(12772, 87482, 'eighty-seven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(12773, 54223, 'fifty-four thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(12774, 3540, 'three thousand five hundred forty');\nINSERT INTO t3 VALUES(12775, 15949, 'fifteen thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(12776, 12876, 'twelve thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(12777, 96495, 'ninety-six thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(12778, 17739, 'seventeen thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(12779, 93418, 'ninety-three thousand four hundred eighteen');\nINSERT INTO t3 VALUES(12780, 68798, 'sixty-eight thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(12781, 73562, 'seventy-three thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(12782, 89855, 'eighty-nine thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(12783, 52512, 'fifty-two thousand five hundred twelve');\nINSERT INTO t3 VALUES(12784, 70913, 'seventy thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(12785, 19681, 'nineteen thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(12786, 15170, 'fifteen thousand one hundred seventy');\nINSERT INTO t3 VALUES(12787, 1278, 'one thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(12788, 7387, 'seven thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(12789, 76076, 'seventy-six thousand seventy-six');\nINSERT INTO t3 VALUES(12790, 9618, 'nine thousand six hundred eighteen');\nINSERT INTO t3 VALUES(12791, 82352, 'eighty-two thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(12792, 70463, 'seventy thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(12793, 8868, 'eight thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(12794, 71028, 'seventy-one thousand twenty-eight');\nINSERT INTO t3 VALUES(12795, 74951, 'seventy-four thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(12796, 43086, 'forty-three thousand eighty-six');\nINSERT INTO t3 VALUES(12797, 14586, 'fourteen thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(12798, 89832, 'eighty-nine thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(12799, 11578, 'eleven thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(12800, 73228, 'seventy-three thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(12801, 51916, 'fifty-one thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(12802, 75684, 'seventy-five thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(12803, 9282, 'nine thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(12804, 62773, 'sixty-two thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(12805, 76492, 'seventy-six thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(12806, 38490, 'thirty-eight thousand four hundred ninety');\nINSERT INTO t3 VALUES(12807, 77016, 'seventy-seven thousand sixteen');\nINSERT INTO t3 VALUES(12808, 36651, 'thirty-six thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(12809, 32828, 'thirty-two thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(12810, 46669, 'forty-six thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(12811, 5839, 'five thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(12812, 87461, 'eighty-seven thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(12813, 68394, 'sixty-eight thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(12814, 8589, 'eight thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(12815, 36381, 'thirty-six thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(12816, 38955, 'thirty-eight thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(12817, 7651, 'seven thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(12818, 36513, 'thirty-six thousand five hundred thirteen');\nINSERT INTO t3 VALUES(12819, 61571, 'sixty-one thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(12820, 78388, 'seventy-eight thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(12821, 96959, 'ninety-six thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(12822, 64174, 'sixty-four thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(12823, 77853, 'seventy-seven thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(12824, 83875, 'eighty-three thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(12825, 34097, 'thirty-four thousand ninety-seven');\nINSERT INTO t3 VALUES(12826, 49286, 'forty-nine thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(12827, 53306, 'fifty-three thousand three hundred six');\nINSERT INTO t3 VALUES(12828, 50010, 'fifty thousand ten');\nINSERT INTO t3 VALUES(12829, 82545, 'eighty-two thousand five hundred forty-five');\nINSERT INTO t3 VALUES(12830, 10096, 'ten thousand ninety-six');\nINSERT INTO t3 VALUES(12831, 87893, 'eighty-seven thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(12832, 22147, 'twenty-two thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(12833, 35019, 'thirty-five thousand nineteen');\nINSERT INTO t3 VALUES(12834, 88197, 'eighty-eight thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(12835, 1190, 'one thousand one hundred ninety');\nINSERT INTO t3 VALUES(12836, 31003, 'thirty-one thousand three');\nINSERT INTO t3 VALUES(12837, 90966, 'ninety thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(12838, 82353, 'eighty-two thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(12839, 10483, 'ten thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(12840, 34201, 'thirty-four thousand two hundred one');\nINSERT INTO t3 VALUES(12841, 8659, 'eight thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(12842, 4141, 'four thousand one hundred forty-one');\nINSERT INTO t3 VALUES(12843, 99048, 'ninety-nine thousand forty-eight');\nINSERT INTO t3 VALUES(12844, 36881, 'thirty-six thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(12845, 50482, 'fifty thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(12846, 16753, 'sixteen thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(12847, 34601, 'thirty-four thousand six hundred one');\nINSERT INTO t3 VALUES(12848, 69668, 'sixty-nine thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(12849, 5723, 'five thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(12850, 78806, 'seventy-eight thousand eight hundred six');\nINSERT INTO t3 VALUES(12851, 37255, 'thirty-seven thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(12852, 1243, 'one thousand two hundred forty-three');\nINSERT INTO t3 VALUES(12853, 85509, 'eighty-five thousand five hundred nine');\nINSERT INTO t3 VALUES(12854, 23359, 'twenty-three thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(12855, 61139, 'sixty-one thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(12856, 71717, 'seventy-one thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(12857, 83152, 'eighty-three thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(12858, 91280, 'ninety-one thousand two hundred eighty');\nINSERT INTO t3 VALUES(12859, 42023, 'forty-two thousand twenty-three');\nINSERT INTO t3 VALUES(12860, 96972, 'ninety-six thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(12861, 6091, 'six thousand ninety-one');\nINSERT INTO t3 VALUES(12862, 62824, 'sixty-two thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(12863, 512, 'five hundred twelve');\nINSERT INTO t3 VALUES(12864, 49396, 'forty-nine thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(12865, 54919, 'fifty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(12866, 68481, 'sixty-eight thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(12867, 27450, 'twenty-seven thousand four hundred fifty');\nINSERT INTO t3 VALUES(12868, 99983, 'ninety-nine thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(12869, 24262, 'twenty-four thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(12870, 38760, 'thirty-eight thousand seven hundred sixty');\nINSERT INTO t3 VALUES(12871, 43360, 'forty-three thousand three hundred sixty');\nINSERT INTO t3 VALUES(12872, 80619, 'eighty thousand six hundred nineteen');\nINSERT INTO t3 VALUES(12873, 75727, 'seventy-five thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(12874, 2630, 'two thousand six hundred thirty');\nINSERT INTO t3 VALUES(12875, 7541, 'seven thousand five hundred forty-one');\nINSERT INTO t3 VALUES(12876, 7291, 'seven thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(12877, 88162, 'eighty-eight thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(12878, 24432, 'twenty-four thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(12879, 14501, 'fourteen thousand five hundred one');\nINSERT INTO t3 VALUES(12880, 11520, 'eleven thousand five hundred twenty');\nINSERT INTO t3 VALUES(12881, 92393, 'ninety-two thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(12882, 46755, 'forty-six thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(12883, 63663, 'sixty-three thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(12884, 49559, 'forty-nine thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(12885, 56492, 'fifty-six thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(12886, 72253, 'seventy-two thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(12887, 96666, 'ninety-six thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(12888, 71969, 'seventy-one thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(12889, 46863, 'forty-six thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(12890, 15652, 'fifteen thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(12891, 72052, 'seventy-two thousand fifty-two');\nINSERT INTO t3 VALUES(12892, 66925, 'sixty-six thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(12893, 85517, 'eighty-five thousand five hundred seventeen');\nINSERT INTO t3 VALUES(12894, 69393, 'sixty-nine thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(12895, 81891, 'eighty-one thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(12896, 17057, 'seventeen thousand fifty-seven');\nINSERT INTO t3 VALUES(12897, 20521, 'twenty thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(12898, 68199, 'sixty-eight thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(12899, 72803, 'seventy-two thousand eight hundred three');\nINSERT INTO t3 VALUES(12900, 91889, 'ninety-one thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(12901, 78360, 'seventy-eight thousand three hundred sixty');\nINSERT INTO t3 VALUES(12902, 93107, 'ninety-three thousand one hundred seven');\nINSERT INTO t3 VALUES(12903, 45987, 'forty-five thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(12904, 45793, 'forty-five thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(12905, 8970, 'eight thousand nine hundred seventy');\nINSERT INTO t3 VALUES(12906, 56082, 'fifty-six thousand eighty-two');\nINSERT INTO t3 VALUES(12907, 91257, 'ninety-one thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(12908, 62921, 'sixty-two thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(12909, 96689, 'ninety-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(12910, 24205, 'twenty-four thousand two hundred five');\nINSERT INTO t3 VALUES(12911, 11390, 'eleven thousand three hundred ninety');\nINSERT INTO t3 VALUES(12912, 73121, 'seventy-three thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(12913, 95764, 'ninety-five thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(12914, 36677, 'thirty-six thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(12915, 86653, 'eighty-six thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(12916, 65247, 'sixty-five thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(12917, 30872, 'thirty thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(12918, 46363, 'forty-six thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(12919, 42258, 'forty-two thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(12920, 27708, 'twenty-seven thousand seven hundred eight');\nINSERT INTO t3 VALUES(12921, 61779, 'sixty-one thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(12922, 24349, 'twenty-four thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(12923, 96704, 'ninety-six thousand seven hundred four');\nINSERT INTO t3 VALUES(12924, 95275, 'ninety-five thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(12925, 87231, 'eighty-seven thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(12926, 53844, 'fifty-three thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(12927, 41310, 'forty-one thousand three hundred ten');\nINSERT INTO t3 VALUES(12928, 14740, 'fourteen thousand seven hundred forty');\nINSERT INTO t3 VALUES(12929, 25345, 'twenty-five thousand three hundred forty-five');\nINSERT INTO t3 VALUES(12930, 25025, 'twenty-five thousand twenty-five');\nINSERT INTO t3 VALUES(12931, 31759, 'thirty-one thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(12932, 67993, 'sixty-seven thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(12933, 41174, 'forty-one thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(12934, 56221, 'fifty-six thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(12935, 94024, 'ninety-four thousand twenty-four');\nINSERT INTO t3 VALUES(12936, 47734, 'forty-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(12937, 52968, 'fifty-two thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(12938, 28183, 'twenty-eight thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(12939, 90718, 'ninety thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(12940, 26636, 'twenty-six thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(12941, 9657, 'nine thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(12942, 55732, 'fifty-five thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(12943, 3136, 'three thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(12944, 85190, 'eighty-five thousand one hundred ninety');\nINSERT INTO t3 VALUES(12945, 70538, 'seventy thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(12946, 1230, 'one thousand two hundred thirty');\nINSERT INTO t3 VALUES(12947, 22112, 'twenty-two thousand one hundred twelve');\nINSERT INTO t3 VALUES(12948, 72798, 'seventy-two thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(12949, 82090, 'eighty-two thousand ninety');\nINSERT INTO t3 VALUES(12950, 17523, 'seventeen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(12951, 68350, 'sixty-eight thousand three hundred fifty');\nINSERT INTO t3 VALUES(12952, 32789, 'thirty-two thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(12953, 41081, 'forty-one thousand eighty-one');\nINSERT INTO t3 VALUES(12954, 2253, 'two thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(12955, 50080, 'fifty thousand eighty');\nINSERT INTO t3 VALUES(12956, 54578, 'fifty-four thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(12957, 2331, 'two thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(12958, 93221, 'ninety-three thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(12959, 19311, 'nineteen thousand three hundred eleven');\nINSERT INTO t3 VALUES(12960, 90975, 'ninety thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(12961, 19742, 'nineteen thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(12962, 75866, 'seventy-five thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(12963, 93547, 'ninety-three thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(12964, 96560, 'ninety-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(12965, 75627, 'seventy-five thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(12966, 34291, 'thirty-four thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(12967, 32072, 'thirty-two thousand seventy-two');\nINSERT INTO t3 VALUES(12968, 41331, 'forty-one thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(12969, 33966, 'thirty-three thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(12970, 30509, 'thirty thousand five hundred nine');\nINSERT INTO t3 VALUES(12971, 26004, 'twenty-six thousand four');\nINSERT INTO t3 VALUES(12972, 79445, 'seventy-nine thousand four hundred forty-five');\nINSERT INTO t3 VALUES(12973, 59729, 'fifty-nine thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(12974, 58564, 'fifty-eight thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(12975, 50568, 'fifty thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(12976, 97406, 'ninety-seven thousand four hundred six');\nINSERT INTO t3 VALUES(12977, 79150, 'seventy-nine thousand one hundred fifty');\nINSERT INTO t3 VALUES(12978, 5568, 'five thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(12979, 29024, 'twenty-nine thousand twenty-four');\nINSERT INTO t3 VALUES(12980, 36483, 'thirty-six thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(12981, 82251, 'eighty-two thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(12982, 60002, 'sixty thousand two');\nINSERT INTO t3 VALUES(12983, 45482, 'forty-five thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(12984, 93006, 'ninety-three thousand six');\nINSERT INTO t3 VALUES(12985, 27898, 'twenty-seven thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(12986, 61300, 'sixty-one thousand three hundred');\nINSERT INTO t3 VALUES(12987, 92218, 'ninety-two thousand two hundred eighteen');\nINSERT INTO t3 VALUES(12988, 67535, 'sixty-seven thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(12989, 76339, 'seventy-six thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(12990, 72070, 'seventy-two thousand seventy');\nINSERT INTO t3 VALUES(12991, 28943, 'twenty-eight thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(12992, 66395, 'sixty-six thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(12993, 42842, 'forty-two thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(12994, 16532, 'sixteen thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(12995, 34635, 'thirty-four thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(12996, 55582, 'fifty-five thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(12997, 9467, 'nine thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(12998, 64893, 'sixty-four thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(12999, 23940, 'twenty-three thousand nine hundred forty');\nINSERT INTO t3 VALUES(13000, 55126, 'fifty-five thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(13001, 69249, 'sixty-nine thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(13002, 6594, 'six thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(13003, 859, 'eight hundred fifty-nine');\nINSERT INTO t3 VALUES(13004, 73199, 'seventy-three thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(13005, 60033, 'sixty thousand thirty-three');\nINSERT INTO t3 VALUES(13006, 95594, 'ninety-five thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(13007, 74763, 'seventy-four thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(13008, 80143, 'eighty thousand one hundred forty-three');\nINSERT INTO t3 VALUES(13009, 15977, 'fifteen thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(13010, 28553, 'twenty-eight thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(13011, 10883, 'ten thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(13012, 52986, 'fifty-two thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(13013, 98725, 'ninety-eight thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(13014, 23894, 'twenty-three thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(13015, 16058, 'sixteen thousand fifty-eight');\nINSERT INTO t3 VALUES(13016, 28094, 'twenty-eight thousand ninety-four');\nINSERT INTO t3 VALUES(13017, 72037, 'seventy-two thousand thirty-seven');\nINSERT INTO t3 VALUES(13018, 72724, 'seventy-two thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(13019, 29083, 'twenty-nine thousand eighty-three');\nINSERT INTO t3 VALUES(13020, 61504, 'sixty-one thousand five hundred four');\nINSERT INTO t3 VALUES(13021, 98472, 'ninety-eight thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(13022, 22160, 'twenty-two thousand one hundred sixty');\nINSERT INTO t3 VALUES(13023, 36434, 'thirty-six thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(13024, 33592, 'thirty-three thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(13025, 49671, 'forty-nine thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(13026, 78062, 'seventy-eight thousand sixty-two');\nINSERT INTO t3 VALUES(13027, 8393, 'eight thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(13028, 34389, 'thirty-four thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(13029, 15687, 'fifteen thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(13030, 19960, 'nineteen thousand nine hundred sixty');\nINSERT INTO t3 VALUES(13031, 79730, 'seventy-nine thousand seven hundred thirty');\nINSERT INTO t3 VALUES(13032, 73414, 'seventy-three thousand four hundred fourteen');\nINSERT INTO t3 VALUES(13033, 16789, 'sixteen thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(13034, 22755, 'twenty-two thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(13035, 71141, 'seventy-one thousand one hundred forty-one');\nINSERT INTO t3 VALUES(13036, 29026, 'twenty-nine thousand twenty-six');\nINSERT INTO t3 VALUES(13037, 55375, 'fifty-five thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(13038, 15263, 'fifteen thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(13039, 11836, 'eleven thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(13040, 28710, 'twenty-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(13041, 23040, 'twenty-three thousand forty');\nINSERT INTO t3 VALUES(13042, 34904, 'thirty-four thousand nine hundred four');\nINSERT INTO t3 VALUES(13043, 66708, 'sixty-six thousand seven hundred eight');\nINSERT INTO t3 VALUES(13044, 47542, 'forty-seven thousand five hundred forty-two');\nINSERT INTO t3 VALUES(13045, 77947, 'seventy-seven thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(13046, 72736, 'seventy-two thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(13047, 1134, 'one thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(13048, 48033, 'forty-eight thousand thirty-three');\nINSERT INTO t3 VALUES(13049, 27029, 'twenty-seven thousand twenty-nine');\nINSERT INTO t3 VALUES(13050, 35890, 'thirty-five thousand eight hundred ninety');\nINSERT INTO t3 VALUES(13051, 79681, 'seventy-nine thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(13052, 35486, 'thirty-five thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(13053, 66726, 'sixty-six thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(13054, 83162, 'eighty-three thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(13055, 97255, 'ninety-seven thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(13056, 41277, 'forty-one thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(13057, 25423, 'twenty-five thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(13058, 281, 'two hundred eighty-one');\nINSERT INTO t3 VALUES(13059, 90417, 'ninety thousand four hundred seventeen');\nINSERT INTO t3 VALUES(13060, 62305, 'sixty-two thousand three hundred five');\nINSERT INTO t3 VALUES(13061, 49849, 'forty-nine thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(13062, 95997, 'ninety-five thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(13063, 49575, 'forty-nine thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(13064, 12959, 'twelve thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(13065, 78908, 'seventy-eight thousand nine hundred eight');\nINSERT INTO t3 VALUES(13066, 17761, 'seventeen thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(13067, 69050, 'sixty-nine thousand fifty');\nINSERT INTO t3 VALUES(13068, 13445, 'thirteen thousand four hundred forty-five');\nINSERT INTO t3 VALUES(13069, 67021, 'sixty-seven thousand twenty-one');\nINSERT INTO t3 VALUES(13070, 51585, 'fifty-one thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(13071, 11363, 'eleven thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(13072, 36716, 'thirty-six thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(13073, 46088, 'forty-six thousand eighty-eight');\nINSERT INTO t3 VALUES(13074, 92349, 'ninety-two thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(13075, 85292, 'eighty-five thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(13076, 20095, 'twenty thousand ninety-five');\nINSERT INTO t3 VALUES(13077, 28912, 'twenty-eight thousand nine hundred twelve');\nINSERT INTO t3 VALUES(13078, 55114, 'fifty-five thousand one hundred fourteen');\nINSERT INTO t3 VALUES(13079, 68563, 'sixty-eight thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(13080, 80654, 'eighty thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(13081, 74404, 'seventy-four thousand four hundred four');\nINSERT INTO t3 VALUES(13082, 47088, 'forty-seven thousand eighty-eight');\nINSERT INTO t3 VALUES(13083, 94552, 'ninety-four thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(13084, 37271, 'thirty-seven thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(13085, 64669, 'sixty-four thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(13086, 19183, 'nineteen thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(13087, 9634, 'nine thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(13088, 90937, 'ninety thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(13089, 88092, 'eighty-eight thousand ninety-two');\nINSERT INTO t3 VALUES(13090, 54780, 'fifty-four thousand seven hundred eighty');\nINSERT INTO t3 VALUES(13091, 53309, 'fifty-three thousand three hundred nine');\nINSERT INTO t3 VALUES(13092, 99026, 'ninety-nine thousand twenty-six');\nINSERT INTO t3 VALUES(13093, 17, 'seventeen');\nINSERT INTO t3 VALUES(13094, 69486, 'sixty-nine thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(13095, 59899, 'fifty-nine thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(13096, 80285, 'eighty thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(13097, 85509, 'eighty-five thousand five hundred nine');\nINSERT INTO t3 VALUES(13098, 94755, 'ninety-four thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(13099, 67450, 'sixty-seven thousand four hundred fifty');\nINSERT INTO t3 VALUES(13100, 56947, 'fifty-six thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(13101, 42153, 'forty-two thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(13102, 40568, 'forty thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(13103, 91808, 'ninety-one thousand eight hundred eight');\nINSERT INTO t3 VALUES(13104, 92218, 'ninety-two thousand two hundred eighteen');\nINSERT INTO t3 VALUES(13105, 38607, 'thirty-eight thousand six hundred seven');\nINSERT INTO t3 VALUES(13106, 59004, 'fifty-nine thousand four');\nINSERT INTO t3 VALUES(13107, 40999, 'forty thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(13108, 98708, 'ninety-eight thousand seven hundred eight');\nINSERT INTO t3 VALUES(13109, 69257, 'sixty-nine thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(13110, 57812, 'fifty-seven thousand eight hundred twelve');\nINSERT INTO t3 VALUES(13111, 97011, 'ninety-seven thousand eleven');\nINSERT INTO t3 VALUES(13112, 63689, 'sixty-three thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(13113, 47810, 'forty-seven thousand eight hundred ten');\nINSERT INTO t3 VALUES(13114, 48543, 'forty-eight thousand five hundred forty-three');\nINSERT INTO t3 VALUES(13115, 32738, 'thirty-two thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(13116, 98108, 'ninety-eight thousand one hundred eight');\nINSERT INTO t3 VALUES(13117, 85594, 'eighty-five thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(13118, 90226, 'ninety thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(13119, 80261, 'eighty thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(13120, 23272, 'twenty-three thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(13121, 19053, 'nineteen thousand fifty-three');\nINSERT INTO t3 VALUES(13122, 56373, 'fifty-six thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(13123, 19322, 'nineteen thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(13124, 97254, 'ninety-seven thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(13125, 47329, 'forty-seven thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(13126, 84678, 'eighty-four thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(13127, 20059, 'twenty thousand fifty-nine');\nINSERT INTO t3 VALUES(13128, 12108, 'twelve thousand one hundred eight');\nINSERT INTO t3 VALUES(13129, 16420, 'sixteen thousand four hundred twenty');\nINSERT INTO t3 VALUES(13130, 67952, 'sixty-seven thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(13131, 36158, 'thirty-six thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(13132, 34597, 'thirty-four thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(13133, 71732, 'seventy-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(13134, 31284, 'thirty-one thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(13135, 26136, 'twenty-six thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(13136, 39234, 'thirty-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(13137, 66958, 'sixty-six thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(13138, 5617, 'five thousand six hundred seventeen');\nINSERT INTO t3 VALUES(13139, 48970, 'forty-eight thousand nine hundred seventy');\nINSERT INTO t3 VALUES(13140, 76398, 'seventy-six thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(13141, 87695, 'eighty-seven thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(13142, 31650, 'thirty-one thousand six hundred fifty');\nINSERT INTO t3 VALUES(13143, 73864, 'seventy-three thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(13144, 22223, 'twenty-two thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(13145, 63003, 'sixty-three thousand three');\nINSERT INTO t3 VALUES(13146, 98235, 'ninety-eight thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(13147, 73516, 'seventy-three thousand five hundred sixteen');\nINSERT INTO t3 VALUES(13148, 22055, 'twenty-two thousand fifty-five');\nINSERT INTO t3 VALUES(13149, 84687, 'eighty-four thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(13150, 16220, 'sixteen thousand two hundred twenty');\nINSERT INTO t3 VALUES(13151, 20833, 'twenty thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(13152, 7128, 'seven thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(13153, 27644, 'twenty-seven thousand six hundred forty-four');\nINSERT INTO t3 VALUES(13154, 68264, 'sixty-eight thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(13155, 33776, 'thirty-three thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(13156, 49827, 'forty-nine thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(13157, 12916, 'twelve thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(13158, 45687, 'forty-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(13159, 7743, 'seven thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(13160, 63030, 'sixty-three thousand thirty');\nINSERT INTO t3 VALUES(13161, 38906, 'thirty-eight thousand nine hundred six');\nINSERT INTO t3 VALUES(13162, 44710, 'forty-four thousand seven hundred ten');\nINSERT INTO t3 VALUES(13163, 9474, 'nine thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(13164, 37011, 'thirty-seven thousand eleven');\nINSERT INTO t3 VALUES(13165, 77744, 'seventy-seven thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(13166, 57850, 'fifty-seven thousand eight hundred fifty');\nINSERT INTO t3 VALUES(13167, 24437, 'twenty-four thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(13168, 23844, 'twenty-three thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(13169, 49159, 'forty-nine thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(13170, 90603, 'ninety thousand six hundred three');\nINSERT INTO t3 VALUES(13171, 8572, 'eight thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(13172, 56313, 'fifty-six thousand three hundred thirteen');\nINSERT INTO t3 VALUES(13173, 19119, 'nineteen thousand one hundred nineteen');\nINSERT INTO t3 VALUES(13174, 65311, 'sixty-five thousand three hundred eleven');\nINSERT INTO t3 VALUES(13175, 35790, 'thirty-five thousand seven hundred ninety');\nINSERT INTO t3 VALUES(13176, 20728, 'twenty thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(13177, 54455, 'fifty-four thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(13178, 60544, 'sixty thousand five hundred forty-four');\nINSERT INTO t3 VALUES(13179, 57973, 'fifty-seven thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(13180, 7535, 'seven thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(13181, 25572, 'twenty-five thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(13182, 61500, 'sixty-one thousand five hundred');\nINSERT INTO t3 VALUES(13183, 68875, 'sixty-eight thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(13184, 90763, 'ninety thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(13185, 86035, 'eighty-six thousand thirty-five');\nINSERT INTO t3 VALUES(13186, 45854, 'forty-five thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(13187, 11968, 'eleven thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(13188, 81860, 'eighty-one thousand eight hundred sixty');\nINSERT INTO t3 VALUES(13189, 66107, 'sixty-six thousand one hundred seven');\nINSERT INTO t3 VALUES(13190, 70187, 'seventy thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(13191, 17308, 'seventeen thousand three hundred eight');\nINSERT INTO t3 VALUES(13192, 73925, 'seventy-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(13193, 691, 'six hundred ninety-one');\nINSERT INTO t3 VALUES(13194, 94456, 'ninety-four thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(13195, 77428, 'seventy-seven thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(13196, 31298, 'thirty-one thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(13197, 97105, 'ninety-seven thousand one hundred five');\nINSERT INTO t3 VALUES(13198, 57128, 'fifty-seven thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(13199, 46300, 'forty-six thousand three hundred');\nINSERT INTO t3 VALUES(13200, 63106, 'sixty-three thousand one hundred six');\nINSERT INTO t3 VALUES(13201, 89302, 'eighty-nine thousand three hundred two');\nINSERT INTO t3 VALUES(13202, 86112, 'eighty-six thousand one hundred twelve');\nINSERT INTO t3 VALUES(13203, 39338, 'thirty-nine thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(13204, 88424, 'eighty-eight thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(13205, 81912, 'eighty-one thousand nine hundred twelve');\nINSERT INTO t3 VALUES(13206, 74848, 'seventy-four thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(13207, 87127, 'eighty-seven thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(13208, 96602, 'ninety-six thousand six hundred two');\nINSERT INTO t3 VALUES(13209, 48708, 'forty-eight thousand seven hundred eight');\nINSERT INTO t3 VALUES(13210, 61251, 'sixty-one thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(13211, 27573, 'twenty-seven thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(13212, 22015, 'twenty-two thousand fifteen');\nINSERT INTO t3 VALUES(13213, 9616, 'nine thousand six hundred sixteen');\nINSERT INTO t3 VALUES(13214, 93052, 'ninety-three thousand fifty-two');\nINSERT INTO t3 VALUES(13215, 67520, 'sixty-seven thousand five hundred twenty');\nINSERT INTO t3 VALUES(13216, 64749, 'sixty-four thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(13217, 28090, 'twenty-eight thousand ninety');\nINSERT INTO t3 VALUES(13218, 87071, 'eighty-seven thousand seventy-one');\nINSERT INTO t3 VALUES(13219, 25414, 'twenty-five thousand four hundred fourteen');\nINSERT INTO t3 VALUES(13220, 45265, 'forty-five thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(13221, 63788, 'sixty-three thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(13222, 59271, 'fifty-nine thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(13223, 47929, 'forty-seven thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(13224, 40363, 'forty thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(13225, 82602, 'eighty-two thousand six hundred two');\nINSERT INTO t3 VALUES(13226, 63778, 'sixty-three thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(13227, 71237, 'seventy-one thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(13228, 77446, 'seventy-seven thousand four hundred forty-six');\nINSERT INTO t3 VALUES(13229, 18974, 'eighteen thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(13230, 36156, 'thirty-six thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(13231, 1495, 'one thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(13232, 49776, 'forty-nine thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(13233, 10976, 'ten thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(13234, 33832, 'thirty-three thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(13235, 42095, 'forty-two thousand ninety-five');\nINSERT INTO t3 VALUES(13236, 64617, 'sixty-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(13237, 80279, 'eighty thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(13238, 13504, 'thirteen thousand five hundred four');\nINSERT INTO t3 VALUES(13239, 49514, 'forty-nine thousand five hundred fourteen');\nINSERT INTO t3 VALUES(13240, 51916, 'fifty-one thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(13241, 28720, 'twenty-eight thousand seven hundred twenty');\nINSERT INTO t3 VALUES(13242, 17828, 'seventeen thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(13243, 55057, 'fifty-five thousand fifty-seven');\nINSERT INTO t3 VALUES(13244, 24817, 'twenty-four thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(13245, 86737, 'eighty-six thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(13246, 13114, 'thirteen thousand one hundred fourteen');\nINSERT INTO t3 VALUES(13247, 75817, 'seventy-five thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(13248, 26975, 'twenty-six thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(13249, 41421, 'forty-one thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(13250, 33492, 'thirty-three thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(13251, 48601, 'forty-eight thousand six hundred one');\nINSERT INTO t3 VALUES(13252, 46762, 'forty-six thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(13253, 77731, 'seventy-seven thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(13254, 63058, 'sixty-three thousand fifty-eight');\nINSERT INTO t3 VALUES(13255, 37971, 'thirty-seven thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(13256, 68213, 'sixty-eight thousand two hundred thirteen');\nINSERT INTO t3 VALUES(13257, 9320, 'nine thousand three hundred twenty');\nINSERT INTO t3 VALUES(13258, 33706, 'thirty-three thousand seven hundred six');\nINSERT INTO t3 VALUES(13259, 18617, 'eighteen thousand six hundred seventeen');\nINSERT INTO t3 VALUES(13260, 57406, 'fifty-seven thousand four hundred six');\nINSERT INTO t3 VALUES(13261, 34096, 'thirty-four thousand ninety-six');\nINSERT INTO t3 VALUES(13262, 24762, 'twenty-four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(13263, 65449, 'sixty-five thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(13264, 71265, 'seventy-one thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(13265, 88866, 'eighty-eight thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(13266, 3049, 'three thousand forty-nine');\nINSERT INTO t3 VALUES(13267, 6758, 'six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(13268, 69365, 'sixty-nine thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(13269, 30374, 'thirty thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(13270, 91542, 'ninety-one thousand five hundred forty-two');\nINSERT INTO t3 VALUES(13271, 5572, 'five thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(13272, 64239, 'sixty-four thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(13273, 83705, 'eighty-three thousand seven hundred five');\nINSERT INTO t3 VALUES(13274, 39370, 'thirty-nine thousand three hundred seventy');\nINSERT INTO t3 VALUES(13275, 58680, 'fifty-eight thousand six hundred eighty');\nINSERT INTO t3 VALUES(13276, 36183, 'thirty-six thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(13277, 78239, 'seventy-eight thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(13278, 7171, 'seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(13279, 36180, 'thirty-six thousand one hundred eighty');\nINSERT INTO t3 VALUES(13280, 16163, 'sixteen thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(13281, 76747, 'seventy-six thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(13282, 65685, 'sixty-five thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(13283, 25680, 'twenty-five thousand six hundred eighty');\nINSERT INTO t3 VALUES(13284, 33224, 'thirty-three thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(13285, 78, 'seventy-eight');\nINSERT INTO t3 VALUES(13286, 22597, 'twenty-two thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(13287, 13482, 'thirteen thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(13288, 86333, 'eighty-six thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(13289, 70133, 'seventy thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(13290, 13783, 'thirteen thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(13291, 37938, 'thirty-seven thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(13292, 52579, 'fifty-two thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(13293, 68753, 'sixty-eight thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(13294, 70174, 'seventy thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(13295, 13561, 'thirteen thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(13296, 51882, 'fifty-one thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(13297, 28939, 'twenty-eight thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(13298, 3693, 'three thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(13299, 31130, 'thirty-one thousand one hundred thirty');\nINSERT INTO t3 VALUES(13300, 83831, 'eighty-three thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(13301, 77722, 'seventy-seven thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(13302, 65337, 'sixty-five thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(13303, 96037, 'ninety-six thousand thirty-seven');\nINSERT INTO t3 VALUES(13304, 32773, 'thirty-two thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(13305, 2990, 'two thousand nine hundred ninety');\nINSERT INTO t3 VALUES(13306, 49823, 'forty-nine thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(13307, 8124, 'eight thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(13308, 25198, 'twenty-five thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(13309, 49663, 'forty-nine thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(13310, 71537, 'seventy-one thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(13311, 69998, 'sixty-nine thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(13312, 41111, 'forty-one thousand one hundred eleven');\nINSERT INTO t3 VALUES(13313, 78488, 'seventy-eight thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(13314, 17571, 'seventeen thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(13315, 69172, 'sixty-nine thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(13316, 75159, 'seventy-five thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(13317, 83883, 'eighty-three thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(13318, 36430, 'thirty-six thousand four hundred thirty');\nINSERT INTO t3 VALUES(13319, 27033, 'twenty-seven thousand thirty-three');\nINSERT INTO t3 VALUES(13320, 43834, 'forty-three thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(13321, 51292, 'fifty-one thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(13322, 25457, 'twenty-five thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(13323, 48910, 'forty-eight thousand nine hundred ten');\nINSERT INTO t3 VALUES(13324, 80817, 'eighty thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(13325, 99773, 'ninety-nine thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(13326, 33940, 'thirty-three thousand nine hundred forty');\nINSERT INTO t3 VALUES(13327, 90828, 'ninety thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(13328, 55948, 'fifty-five thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(13329, 1767, 'one thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(13330, 56542, 'fifty-six thousand five hundred forty-two');\nINSERT INTO t3 VALUES(13331, 88543, 'eighty-eight thousand five hundred forty-three');\nINSERT INTO t3 VALUES(13332, 32759, 'thirty-two thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(13333, 5327, 'five thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(13334, 76276, 'seventy-six thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(13335, 90742, 'ninety thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(13336, 30611, 'thirty thousand six hundred eleven');\nINSERT INTO t3 VALUES(13337, 25649, 'twenty-five thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(13338, 96874, 'ninety-six thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(13339, 17912, 'seventeen thousand nine hundred twelve');\nINSERT INTO t3 VALUES(13340, 79403, 'seventy-nine thousand four hundred three');\nINSERT INTO t3 VALUES(13341, 91357, 'ninety-one thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(13342, 77050, 'seventy-seven thousand fifty');\nINSERT INTO t3 VALUES(13343, 82053, 'eighty-two thousand fifty-three');\nINSERT INTO t3 VALUES(13344, 64347, 'sixty-four thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(13345, 87792, 'eighty-seven thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(13346, 64101, 'sixty-four thousand one hundred one');\nINSERT INTO t3 VALUES(13347, 63491, 'sixty-three thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(13348, 42040, 'forty-two thousand forty');\nINSERT INTO t3 VALUES(13349, 40355, 'forty thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(13350, 6843, 'six thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(13351, 55892, 'fifty-five thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(13352, 14744, 'fourteen thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(13353, 88165, 'eighty-eight thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(13354, 10518, 'ten thousand five hundred eighteen');\nINSERT INTO t3 VALUES(13355, 19050, 'nineteen thousand fifty');\nINSERT INTO t3 VALUES(13356, 43738, 'forty-three thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(13357, 70895, 'seventy thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(13358, 54828, 'fifty-four thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(13359, 99368, 'ninety-nine thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(13360, 55406, 'fifty-five thousand four hundred six');\nINSERT INTO t3 VALUES(13361, 28328, 'twenty-eight thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(13362, 62528, 'sixty-two thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(13363, 29122, 'twenty-nine thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(13364, 11852, 'eleven thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(13365, 85065, 'eighty-five thousand sixty-five');\nINSERT INTO t3 VALUES(13366, 45208, 'forty-five thousand two hundred eight');\nINSERT INTO t3 VALUES(13367, 55281, 'fifty-five thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(13368, 94404, 'ninety-four thousand four hundred four');\nINSERT INTO t3 VALUES(13369, 43021, 'forty-three thousand twenty-one');\nINSERT INTO t3 VALUES(13370, 10467, 'ten thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(13371, 4830, 'four thousand eight hundred thirty');\nINSERT INTO t3 VALUES(13372, 59383, 'fifty-nine thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(13373, 36140, 'thirty-six thousand one hundred forty');\nINSERT INTO t3 VALUES(13374, 603, 'six hundred three');\nINSERT INTO t3 VALUES(13375, 53699, 'fifty-three thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(13376, 95404, 'ninety-five thousand four hundred four');\nINSERT INTO t3 VALUES(13377, 90574, 'ninety thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(13378, 26510, 'twenty-six thousand five hundred ten');\nINSERT INTO t3 VALUES(13379, 9397, 'nine thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(13380, 36162, 'thirty-six thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(13381, 31027, 'thirty-one thousand twenty-seven');\nINSERT INTO t3 VALUES(13382, 97783, 'ninety-seven thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(13383, 56834, 'fifty-six thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(13384, 89437, 'eighty-nine thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(13385, 92233, 'ninety-two thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(13386, 44514, 'forty-four thousand five hundred fourteen');\nINSERT INTO t3 VALUES(13387, 47258, 'forty-seven thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(13388, 15198, 'fifteen thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(13389, 42412, 'forty-two thousand four hundred twelve');\nINSERT INTO t3 VALUES(13390, 91467, 'ninety-one thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(13391, 75997, 'seventy-five thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(13392, 58256, 'fifty-eight thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(13393, 12222, 'twelve thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(13394, 2419, 'two thousand four hundred nineteen');\nINSERT INTO t3 VALUES(13395, 84900, 'eighty-four thousand nine hundred');\nINSERT INTO t3 VALUES(13396, 98269, 'ninety-eight thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(13397, 17206, 'seventeen thousand two hundred six');\nINSERT INTO t3 VALUES(13398, 51361, 'fifty-one thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(13399, 23467, 'twenty-three thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(13400, 8055, 'eight thousand fifty-five');\nINSERT INTO t3 VALUES(13401, 87241, 'eighty-seven thousand two hundred forty-one');\nINSERT INTO t3 VALUES(13402, 32080, 'thirty-two thousand eighty');\nINSERT INTO t3 VALUES(13403, 83390, 'eighty-three thousand three hundred ninety');\nINSERT INTO t3 VALUES(13404, 23000, 'twenty-three thousand');\nINSERT INTO t3 VALUES(13405, 43354, 'forty-three thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(13406, 44491, 'forty-four thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(13407, 74782, 'seventy-four thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(13408, 90336, 'ninety thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(13409, 15523, 'fifteen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(13410, 11877, 'eleven thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(13411, 67309, 'sixty-seven thousand three hundred nine');\nINSERT INTO t3 VALUES(13412, 99542, 'ninety-nine thousand five hundred forty-two');\nINSERT INTO t3 VALUES(13413, 19838, 'nineteen thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(13414, 22532, 'twenty-two thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(13415, 78981, 'seventy-eight thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(13416, 1052, 'one thousand fifty-two');\nINSERT INTO t3 VALUES(13417, 57547, 'fifty-seven thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(13418, 56696, 'fifty-six thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(13419, 48605, 'forty-eight thousand six hundred five');\nINSERT INTO t3 VALUES(13420, 94545, 'ninety-four thousand five hundred forty-five');\nINSERT INTO t3 VALUES(13421, 55045, 'fifty-five thousand forty-five');\nINSERT INTO t3 VALUES(13422, 74036, 'seventy-four thousand thirty-six');\nINSERT INTO t3 VALUES(13423, 64263, 'sixty-four thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(13424, 28331, 'twenty-eight thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(13425, 35170, 'thirty-five thousand one hundred seventy');\nINSERT INTO t3 VALUES(13426, 78992, 'seventy-eight thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(13427, 83426, 'eighty-three thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(13428, 8310, 'eight thousand three hundred ten');\nINSERT INTO t3 VALUES(13429, 99895, 'ninety-nine thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(13430, 55767, 'fifty-five thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(13431, 44342, 'forty-four thousand three hundred forty-two');\nINSERT INTO t3 VALUES(13432, 2243, 'two thousand two hundred forty-three');\nINSERT INTO t3 VALUES(13433, 41475, 'forty-one thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(13434, 57794, 'fifty-seven thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(13435, 64889, 'sixty-four thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(13436, 86777, 'eighty-six thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(13437, 47762, 'forty-seven thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(13438, 8420, 'eight thousand four hundred twenty');\nINSERT INTO t3 VALUES(13439, 26278, 'twenty-six thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(13440, 42886, 'forty-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(13441, 33345, 'thirty-three thousand three hundred forty-five');\nINSERT INTO t3 VALUES(13442, 66540, 'sixty-six thousand five hundred forty');\nINSERT INTO t3 VALUES(13443, 16851, 'sixteen thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(13444, 93006, 'ninety-three thousand six');\nINSERT INTO t3 VALUES(13445, 82573, 'eighty-two thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(13446, 62178, 'sixty-two thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(13447, 95367, 'ninety-five thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(13448, 31606, 'thirty-one thousand six hundred six');\nINSERT INTO t3 VALUES(13449, 74497, 'seventy-four thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(13450, 83378, 'eighty-three thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(13451, 41392, 'forty-one thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(13452, 33072, 'thirty-three thousand seventy-two');\nINSERT INTO t3 VALUES(13453, 1977, 'one thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(13454, 62995, 'sixty-two thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(13455, 61623, 'sixty-one thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(13456, 49220, 'forty-nine thousand two hundred twenty');\nINSERT INTO t3 VALUES(13457, 60349, 'sixty thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(13458, 22280, 'twenty-two thousand two hundred eighty');\nINSERT INTO t3 VALUES(13459, 48986, 'forty-eight thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(13460, 67323, 'sixty-seven thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(13461, 13842, 'thirteen thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(13462, 79808, 'seventy-nine thousand eight hundred eight');\nINSERT INTO t3 VALUES(13463, 80092, 'eighty thousand ninety-two');\nINSERT INTO t3 VALUES(13464, 90793, 'ninety thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(13465, 76587, 'seventy-six thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(13466, 29211, 'twenty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(13467, 11014, 'eleven thousand fourteen');\nINSERT INTO t3 VALUES(13468, 59699, 'fifty-nine thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(13469, 86477, 'eighty-six thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(13470, 78971, 'seventy-eight thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(13471, 50759, 'fifty thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(13472, 95098, 'ninety-five thousand ninety-eight');\nINSERT INTO t3 VALUES(13473, 2732, 'two thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(13474, 40096, 'forty thousand ninety-six');\nINSERT INTO t3 VALUES(13475, 26418, 'twenty-six thousand four hundred eighteen');\nINSERT INTO t3 VALUES(13476, 71511, 'seventy-one thousand five hundred eleven');\nINSERT INTO t3 VALUES(13477, 61899, 'sixty-one thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(13478, 4927, 'four thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(13479, 52956, 'fifty-two thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(13480, 77986, 'seventy-seven thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(13481, 13187, 'thirteen thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(13482, 22526, 'twenty-two thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(13483, 1377, 'one thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(13484, 20634, 'twenty thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(13485, 81756, 'eighty-one thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(13486, 20205, 'twenty thousand two hundred five');\nINSERT INTO t3 VALUES(13487, 25049, 'twenty-five thousand forty-nine');\nINSERT INTO t3 VALUES(13488, 31776, 'thirty-one thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(13489, 64630, 'sixty-four thousand six hundred thirty');\nINSERT INTO t3 VALUES(13490, 33492, 'thirty-three thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(13491, 12518, 'twelve thousand five hundred eighteen');\nINSERT INTO t3 VALUES(13492, 29394, 'twenty-nine thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(13493, 92382, 'ninety-two thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(13494, 51703, 'fifty-one thousand seven hundred three');\nINSERT INTO t3 VALUES(13495, 516, 'five hundred sixteen');\nINSERT INTO t3 VALUES(13496, 95945, 'ninety-five thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(13497, 9909, 'nine thousand nine hundred nine');\nINSERT INTO t3 VALUES(13498, 23810, 'twenty-three thousand eight hundred ten');\nINSERT INTO t3 VALUES(13499, 14560, 'fourteen thousand five hundred sixty');\nINSERT INTO t3 VALUES(13500, 34702, 'thirty-four thousand seven hundred two');\nINSERT INTO t3 VALUES(13501, 60387, 'sixty thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(13502, 61499, 'sixty-one thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(13503, 19884, 'nineteen thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(13504, 57856, 'fifty-seven thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(13505, 41398, 'forty-one thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(13506, 57526, 'fifty-seven thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(13507, 35265, 'thirty-five thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(13508, 35691, 'thirty-five thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(13509, 818, 'eight hundred eighteen');\nINSERT INTO t3 VALUES(13510, 22039, 'twenty-two thousand thirty-nine');\nINSERT INTO t3 VALUES(13511, 55871, 'fifty-five thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(13512, 92931, 'ninety-two thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(13513, 63543, 'sixty-three thousand five hundred forty-three');\nINSERT INTO t3 VALUES(13514, 84377, 'eighty-four thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(13515, 44593, 'forty-four thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(13516, 51739, 'fifty-one thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(13517, 6910, 'six thousand nine hundred ten');\nINSERT INTO t3 VALUES(13518, 17557, 'seventeen thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(13519, 59217, 'fifty-nine thousand two hundred seventeen');\nINSERT INTO t3 VALUES(13520, 94841, 'ninety-four thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(13521, 66358, 'sixty-six thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(13522, 19619, 'nineteen thousand six hundred nineteen');\nINSERT INTO t3 VALUES(13523, 64737, 'sixty-four thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(13524, 73839, 'seventy-three thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(13525, 35628, 'thirty-five thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(13526, 58372, 'fifty-eight thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(13527, 99278, 'ninety-nine thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(13528, 763, 'seven hundred sixty-three');\nINSERT INTO t3 VALUES(13529, 69991, 'sixty-nine thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(13530, 79568, 'seventy-nine thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(13531, 9667, 'nine thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(13532, 63436, 'sixty-three thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(13533, 991, 'nine hundred ninety-one');\nINSERT INTO t3 VALUES(13534, 73161, 'seventy-three thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(13535, 32088, 'thirty-two thousand eighty-eight');\nINSERT INTO t3 VALUES(13536, 49035, 'forty-nine thousand thirty-five');\nINSERT INTO t3 VALUES(13537, 96727, 'ninety-six thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(13538, 72707, 'seventy-two thousand seven hundred seven');\nINSERT INTO t3 VALUES(13539, 3444, 'three thousand four hundred forty-four');\nINSERT INTO t3 VALUES(13540, 19145, 'nineteen thousand one hundred forty-five');\nINSERT INTO t3 VALUES(13541, 76918, 'seventy-six thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(13542, 63463, 'sixty-three thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(13543, 14934, 'fourteen thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(13544, 68275, 'sixty-eight thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(13545, 88665, 'eighty-eight thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(13546, 8713, 'eight thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(13547, 25661, 'twenty-five thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(13548, 58355, 'fifty-eight thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(13549, 30055, 'thirty thousand fifty-five');\nINSERT INTO t3 VALUES(13550, 67285, 'sixty-seven thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(13551, 23326, 'twenty-three thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(13552, 95446, 'ninety-five thousand four hundred forty-six');\nINSERT INTO t3 VALUES(13553, 63153, 'sixty-three thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(13554, 8540, 'eight thousand five hundred forty');\nINSERT INTO t3 VALUES(13555, 67361, 'sixty-seven thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(13556, 29414, 'twenty-nine thousand four hundred fourteen');\nINSERT INTO t3 VALUES(13557, 44839, 'forty-four thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(13558, 95335, 'ninety-five thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(13559, 86735, 'eighty-six thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(13560, 84792, 'eighty-four thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(13561, 3618, 'three thousand six hundred eighteen');\nINSERT INTO t3 VALUES(13562, 28983, 'twenty-eight thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(13563, 49829, 'forty-nine thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(13564, 53821, 'fifty-three thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(13565, 68650, 'sixty-eight thousand six hundred fifty');\nINSERT INTO t3 VALUES(13566, 68622, 'sixty-eight thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(13567, 80151, 'eighty thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(13568, 64110, 'sixty-four thousand one hundred ten');\nINSERT INTO t3 VALUES(13569, 96810, 'ninety-six thousand eight hundred ten');\nINSERT INTO t3 VALUES(13570, 45608, 'forty-five thousand six hundred eight');\nINSERT INTO t3 VALUES(13571, 56692, 'fifty-six thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(13572, 44602, 'forty-four thousand six hundred two');\nINSERT INTO t3 VALUES(13573, 67918, 'sixty-seven thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(13574, 1803, 'one thousand eight hundred three');\nINSERT INTO t3 VALUES(13575, 15145, 'fifteen thousand one hundred forty-five');\nINSERT INTO t3 VALUES(13576, 36537, 'thirty-six thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(13577, 24109, 'twenty-four thousand one hundred nine');\nINSERT INTO t3 VALUES(13578, 19876, 'nineteen thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(13579, 60207, 'sixty thousand two hundred seven');\nINSERT INTO t3 VALUES(13580, 29207, 'twenty-nine thousand two hundred seven');\nINSERT INTO t3 VALUES(13581, 56429, 'fifty-six thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(13582, 37535, 'thirty-seven thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(13583, 85934, 'eighty-five thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(13584, 41938, 'forty-one thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(13585, 46784, 'forty-six thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(13586, 78580, 'seventy-eight thousand five hundred eighty');\nINSERT INTO t3 VALUES(13587, 45566, 'forty-five thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(13588, 10161, 'ten thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(13589, 6154, 'six thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(13590, 23301, 'twenty-three thousand three hundred one');\nINSERT INTO t3 VALUES(13591, 57986, 'fifty-seven thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(13592, 44499, 'forty-four thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(13593, 99171, 'ninety-nine thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(13594, 29175, 'twenty-nine thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(13595, 92886, 'ninety-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(13596, 18921, 'eighteen thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(13597, 24201, 'twenty-four thousand two hundred one');\nINSERT INTO t3 VALUES(13598, 73123, 'seventy-three thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(13599, 66328, 'sixty-six thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(13600, 55686, 'fifty-five thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(13601, 1943, 'one thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(13602, 81508, 'eighty-one thousand five hundred eight');\nINSERT INTO t3 VALUES(13603, 21239, 'twenty-one thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(13604, 9414, 'nine thousand four hundred fourteen');\nINSERT INTO t3 VALUES(13605, 29164, 'twenty-nine thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(13606, 41613, 'forty-one thousand six hundred thirteen');\nINSERT INTO t3 VALUES(13607, 74457, 'seventy-four thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(13608, 8754, 'eight thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(13609, 10681, 'ten thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(13610, 24393, 'twenty-four thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(13611, 24211, 'twenty-four thousand two hundred eleven');\nINSERT INTO t3 VALUES(13612, 30021, 'thirty thousand twenty-one');\nINSERT INTO t3 VALUES(13613, 50349, 'fifty thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(13614, 66275, 'sixty-six thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(13615, 97350, 'ninety-seven thousand three hundred fifty');\nINSERT INTO t3 VALUES(13616, 92377, 'ninety-two thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(13617, 41627, 'forty-one thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(13618, 41964, 'forty-one thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(13619, 82508, 'eighty-two thousand five hundred eight');\nINSERT INTO t3 VALUES(13620, 48449, 'forty-eight thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(13621, 88595, 'eighty-eight thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(13622, 11994, 'eleven thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(13623, 39306, 'thirty-nine thousand three hundred six');\nINSERT INTO t3 VALUES(13624, 6551, 'six thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(13625, 47896, 'forty-seven thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(13626, 37404, 'thirty-seven thousand four hundred four');\nINSERT INTO t3 VALUES(13627, 93261, 'ninety-three thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(13628, 83021, 'eighty-three thousand twenty-one');\nINSERT INTO t3 VALUES(13629, 56118, 'fifty-six thousand one hundred eighteen');\nINSERT INTO t3 VALUES(13630, 52551, 'fifty-two thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(13631, 47110, 'forty-seven thousand one hundred ten');\nINSERT INTO t3 VALUES(13632, 43167, 'forty-three thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(13633, 79542, 'seventy-nine thousand five hundred forty-two');\nINSERT INTO t3 VALUES(13634, 46939, 'forty-six thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(13635, 71268, 'seventy-one thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(13636, 86534, 'eighty-six thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(13637, 38618, 'thirty-eight thousand six hundred eighteen');\nINSERT INTO t3 VALUES(13638, 99131, 'ninety-nine thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(13639, 84472, 'eighty-four thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(13640, 89328, 'eighty-nine thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(13641, 29245, 'twenty-nine thousand two hundred forty-five');\nINSERT INTO t3 VALUES(13642, 59709, 'fifty-nine thousand seven hundred nine');\nINSERT INTO t3 VALUES(13643, 85723, 'eighty-five thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(13644, 30019, 'thirty thousand nineteen');\nINSERT INTO t3 VALUES(13645, 16138, 'sixteen thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(13646, 52688, 'fifty-two thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(13647, 62478, 'sixty-two thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(13648, 96156, 'ninety-six thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(13649, 88164, 'eighty-eight thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(13650, 71440, 'seventy-one thousand four hundred forty');\nINSERT INTO t3 VALUES(13651, 74688, 'seventy-four thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(13652, 18531, 'eighteen thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(13653, 14557, 'fourteen thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(13654, 89227, 'eighty-nine thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(13655, 32160, 'thirty-two thousand one hundred sixty');\nINSERT INTO t3 VALUES(13656, 42452, 'forty-two thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(13657, 65362, 'sixty-five thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(13658, 13918, 'thirteen thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(13659, 33572, 'thirty-three thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(13660, 82546, 'eighty-two thousand five hundred forty-six');\nINSERT INTO t3 VALUES(13661, 51285, 'fifty-one thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(13662, 95766, 'ninety-five thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(13663, 33710, 'thirty-three thousand seven hundred ten');\nINSERT INTO t3 VALUES(13664, 12569, 'twelve thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(13665, 75196, 'seventy-five thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(13666, 45772, 'forty-five thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(13667, 59020, 'fifty-nine thousand twenty');\nINSERT INTO t3 VALUES(13668, 39879, 'thirty-nine thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(13669, 97366, 'ninety-seven thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(13670, 80589, 'eighty thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(13671, 11067, 'eleven thousand sixty-seven');\nINSERT INTO t3 VALUES(13672, 12016, 'twelve thousand sixteen');\nINSERT INTO t3 VALUES(13673, 92022, 'ninety-two thousand twenty-two');\nINSERT INTO t3 VALUES(13674, 40134, 'forty thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(13675, 30202, 'thirty thousand two hundred two');\nINSERT INTO t3 VALUES(13676, 75688, 'seventy-five thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(13677, 43070, 'forty-three thousand seventy');\nINSERT INTO t3 VALUES(13678, 86228, 'eighty-six thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(13679, 59165, 'fifty-nine thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(13680, 18286, 'eighteen thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(13681, 46328, 'forty-six thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(13682, 86548, 'eighty-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(13683, 97667, 'ninety-seven thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(13684, 7244, 'seven thousand two hundred forty-four');\nINSERT INTO t3 VALUES(13685, 31509, 'thirty-one thousand five hundred nine');\nINSERT INTO t3 VALUES(13686, 41970, 'forty-one thousand nine hundred seventy');\nINSERT INTO t3 VALUES(13687, 9049, 'nine thousand forty-nine');\nINSERT INTO t3 VALUES(13688, 8910, 'eight thousand nine hundred ten');\nINSERT INTO t3 VALUES(13689, 8756, 'eight thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(13690, 64988, 'sixty-four thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(13691, 1099, 'one thousand ninety-nine');\nINSERT INTO t3 VALUES(13692, 15267, 'fifteen thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(13693, 95581, 'ninety-five thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(13694, 20672, 'twenty thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(13695, 99139, 'ninety-nine thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(13696, 64165, 'sixty-four thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(13697, 22449, 'twenty-two thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(13698, 28197, 'twenty-eight thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(13699, 37007, 'thirty-seven thousand seven');\nINSERT INTO t3 VALUES(13700, 22127, 'twenty-two thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(13701, 40755, 'forty thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(13702, 38069, 'thirty-eight thousand sixty-nine');\nINSERT INTO t3 VALUES(13703, 28323, 'twenty-eight thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(13704, 12626, 'twelve thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(13705, 28772, 'twenty-eight thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(13706, 86658, 'eighty-six thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(13707, 73460, 'seventy-three thousand four hundred sixty');\nINSERT INTO t3 VALUES(13708, 38173, 'thirty-eight thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(13709, 98015, 'ninety-eight thousand fifteen');\nINSERT INTO t3 VALUES(13710, 72134, 'seventy-two thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(13711, 61051, 'sixty-one thousand fifty-one');\nINSERT INTO t3 VALUES(13712, 93012, 'ninety-three thousand twelve');\nINSERT INTO t3 VALUES(13713, 73181, 'seventy-three thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(13714, 29444, 'twenty-nine thousand four hundred forty-four');\nINSERT INTO t3 VALUES(13715, 59951, 'fifty-nine thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(13716, 79914, 'seventy-nine thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(13717, 36786, 'thirty-six thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(13718, 55355, 'fifty-five thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(13719, 3937, 'three thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(13720, 27914, 'twenty-seven thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(13721, 89498, 'eighty-nine thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(13722, 68150, 'sixty-eight thousand one hundred fifty');\nINSERT INTO t3 VALUES(13723, 2253, 'two thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(13724, 95501, 'ninety-five thousand five hundred one');\nINSERT INTO t3 VALUES(13725, 97012, 'ninety-seven thousand twelve');\nINSERT INTO t3 VALUES(13726, 99433, 'ninety-nine thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(13727, 45098, 'forty-five thousand ninety-eight');\nINSERT INTO t3 VALUES(13728, 39812, 'thirty-nine thousand eight hundred twelve');\nINSERT INTO t3 VALUES(13729, 50499, 'fifty thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(13730, 43791, 'forty-three thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(13731, 22768, 'twenty-two thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(13732, 91279, 'ninety-one thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(13733, 31694, 'thirty-one thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(13734, 47770, 'forty-seven thousand seven hundred seventy');\nINSERT INTO t3 VALUES(13735, 21564, 'twenty-one thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(13736, 26072, 'twenty-six thousand seventy-two');\nINSERT INTO t3 VALUES(13737, 83165, 'eighty-three thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(13738, 17221, 'seventeen thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(13739, 98498, 'ninety-eight thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(13740, 14842, 'fourteen thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(13741, 90554, 'ninety thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(13742, 62205, 'sixty-two thousand two hundred five');\nINSERT INTO t3 VALUES(13743, 94700, 'ninety-four thousand seven hundred');\nINSERT INTO t3 VALUES(13744, 78382, 'seventy-eight thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(13745, 51795, 'fifty-one thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(13746, 94887, 'ninety-four thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(13747, 79649, 'seventy-nine thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(13748, 92354, 'ninety-two thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(13749, 61632, 'sixty-one thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(13750, 21914, 'twenty-one thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(13751, 54854, 'fifty-four thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(13752, 50764, 'fifty thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(13753, 59233, 'fifty-nine thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(13754, 8977, 'eight thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(13755, 54352, 'fifty-four thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(13756, 92304, 'ninety-two thousand three hundred four');\nINSERT INTO t3 VALUES(13757, 48804, 'forty-eight thousand eight hundred four');\nINSERT INTO t3 VALUES(13758, 68205, 'sixty-eight thousand two hundred five');\nINSERT INTO t3 VALUES(13759, 40565, 'forty thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(13760, 23726, 'twenty-three thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(13761, 68846, 'sixty-eight thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(13762, 50131, 'fifty thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(13763, 87075, 'eighty-seven thousand seventy-five');\nINSERT INTO t3 VALUES(13764, 44491, 'forty-four thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(13765, 51590, 'fifty-one thousand five hundred ninety');\nINSERT INTO t3 VALUES(13766, 82560, 'eighty-two thousand five hundred sixty');\nINSERT INTO t3 VALUES(13767, 37576, 'thirty-seven thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(13768, 30956, 'thirty thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(13769, 18433, 'eighteen thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(13770, 49862, 'forty-nine thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(13771, 26441, 'twenty-six thousand four hundred forty-one');\nINSERT INTO t3 VALUES(13772, 46839, 'forty-six thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(13773, 36345, 'thirty-six thousand three hundred forty-five');\nINSERT INTO t3 VALUES(13774, 42273, 'forty-two thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(13775, 61839, 'sixty-one thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(13776, 23622, 'twenty-three thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(13777, 90466, 'ninety thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(13778, 72220, 'seventy-two thousand two hundred twenty');\nINSERT INTO t3 VALUES(13779, 34782, 'thirty-four thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(13780, 76923, 'seventy-six thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(13781, 47080, 'forty-seven thousand eighty');\nINSERT INTO t3 VALUES(13782, 86362, 'eighty-six thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(13783, 87536, 'eighty-seven thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(13784, 12350, 'twelve thousand three hundred fifty');\nINSERT INTO t3 VALUES(13785, 53004, 'fifty-three thousand four');\nINSERT INTO t3 VALUES(13786, 66595, 'sixty-six thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(13787, 15994, 'fifteen thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(13788, 7954, 'seven thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(13789, 28835, 'twenty-eight thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(13790, 26989, 'twenty-six thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(13791, 53616, 'fifty-three thousand six hundred sixteen');\nINSERT INTO t3 VALUES(13792, 18222, 'eighteen thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(13793, 1916, 'one thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(13794, 53626, 'fifty-three thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(13795, 46533, 'forty-six thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(13796, 82218, 'eighty-two thousand two hundred eighteen');\nINSERT INTO t3 VALUES(13797, 22862, 'twenty-two thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(13798, 42844, 'forty-two thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(13799, 51560, 'fifty-one thousand five hundred sixty');\nINSERT INTO t3 VALUES(13800, 98578, 'ninety-eight thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(13801, 83245, 'eighty-three thousand two hundred forty-five');\nINSERT INTO t3 VALUES(13802, 15231, 'fifteen thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(13803, 62861, 'sixty-two thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(13804, 42344, 'forty-two thousand three hundred forty-four');\nINSERT INTO t3 VALUES(13805, 28132, 'twenty-eight thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(13806, 2983, 'two thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(13807, 10633, 'ten thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(13808, 71782, 'seventy-one thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(13809, 22697, 'twenty-two thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(13810, 26234, 'twenty-six thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(13811, 10511, 'ten thousand five hundred eleven');\nINSERT INTO t3 VALUES(13812, 45386, 'forty-five thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(13813, 63246, 'sixty-three thousand two hundred forty-six');\nINSERT INTO t3 VALUES(13814, 24842, 'twenty-four thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(13815, 56436, 'fifty-six thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(13816, 81131, 'eighty-one thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(13817, 93008, 'ninety-three thousand eight');\nINSERT INTO t3 VALUES(13818, 47600, 'forty-seven thousand six hundred');\nINSERT INTO t3 VALUES(13819, 12384, 'twelve thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(13820, 69453, 'sixty-nine thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(13821, 15467, 'fifteen thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(13822, 59634, 'fifty-nine thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(13823, 84148, 'eighty-four thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(13824, 70593, 'seventy thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(13825, 46990, 'forty-six thousand nine hundred ninety');\nINSERT INTO t3 VALUES(13826, 12809, 'twelve thousand eight hundred nine');\nINSERT INTO t3 VALUES(13827, 49764, 'forty-nine thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(13828, 14476, 'fourteen thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(13829, 25191, 'twenty-five thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(13830, 59687, 'fifty-nine thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(13831, 19781, 'nineteen thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(13832, 32597, 'thirty-two thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(13833, 35175, 'thirty-five thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(13834, 87914, 'eighty-seven thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(13835, 31894, 'thirty-one thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(13836, 70854, 'seventy thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(13837, 17345, 'seventeen thousand three hundred forty-five');\nINSERT INTO t3 VALUES(13838, 86380, 'eighty-six thousand three hundred eighty');\nINSERT INTO t3 VALUES(13839, 3198, 'three thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(13840, 24795, 'twenty-four thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(13841, 26975, 'twenty-six thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(13842, 79249, 'seventy-nine thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(13843, 32446, 'thirty-two thousand four hundred forty-six');\nINSERT INTO t3 VALUES(13844, 67718, 'sixty-seven thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(13845, 50939, 'fifty thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(13846, 43242, 'forty-three thousand two hundred forty-two');\nINSERT INTO t3 VALUES(13847, 19433, 'nineteen thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(13848, 11490, 'eleven thousand four hundred ninety');\nINSERT INTO t3 VALUES(13849, 51334, 'fifty-one thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(13850, 87938, 'eighty-seven thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(13851, 39493, 'thirty-nine thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(13852, 27455, 'twenty-seven thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(13853, 50078, 'fifty thousand seventy-eight');\nINSERT INTO t3 VALUES(13854, 83424, 'eighty-three thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(13855, 4286, 'four thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(13856, 35938, 'thirty-five thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(13857, 53375, 'fifty-three thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(13858, 96106, 'ninety-six thousand one hundred six');\nINSERT INTO t3 VALUES(13859, 85902, 'eighty-five thousand nine hundred two');\nINSERT INTO t3 VALUES(13860, 55837, 'fifty-five thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(13861, 9830, 'nine thousand eight hundred thirty');\nINSERT INTO t3 VALUES(13862, 15241, 'fifteen thousand two hundred forty-one');\nINSERT INTO t3 VALUES(13863, 16384, 'sixteen thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(13864, 41241, 'forty-one thousand two hundred forty-one');\nINSERT INTO t3 VALUES(13865, 74496, 'seventy-four thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(13866, 56352, 'fifty-six thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(13867, 83762, 'eighty-three thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(13868, 69616, 'sixty-nine thousand six hundred sixteen');\nINSERT INTO t3 VALUES(13869, 76765, 'seventy-six thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(13870, 94862, 'ninety-four thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(13871, 34444, 'thirty-four thousand four hundred forty-four');\nINSERT INTO t3 VALUES(13872, 18245, 'eighteen thousand two hundred forty-five');\nINSERT INTO t3 VALUES(13873, 506, 'five hundred six');\nINSERT INTO t3 VALUES(13874, 2004, 'two thousand four');\nINSERT INTO t3 VALUES(13875, 18450, 'eighteen thousand four hundred fifty');\nINSERT INTO t3 VALUES(13876, 93173, 'ninety-three thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(13877, 78260, 'seventy-eight thousand two hundred sixty');\nINSERT INTO t3 VALUES(13878, 53617, 'fifty-three thousand six hundred seventeen');\nINSERT INTO t3 VALUES(13879, 67591, 'sixty-seven thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(13880, 50003, 'fifty thousand three');\nINSERT INTO t3 VALUES(13881, 3881, 'three thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(13882, 24719, 'twenty-four thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(13883, 11308, 'eleven thousand three hundred eight');\nINSERT INTO t3 VALUES(13884, 99283, 'ninety-nine thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(13885, 11004, 'eleven thousand four');\nINSERT INTO t3 VALUES(13886, 72708, 'seventy-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(13887, 36791, 'thirty-six thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(13888, 17542, 'seventeen thousand five hundred forty-two');\nINSERT INTO t3 VALUES(13889, 14809, 'fourteen thousand eight hundred nine');\nINSERT INTO t3 VALUES(13890, 92123, 'ninety-two thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(13891, 17326, 'seventeen thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(13892, 74709, 'seventy-four thousand seven hundred nine');\nINSERT INTO t3 VALUES(13893, 44197, 'forty-four thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(13894, 8078, 'eight thousand seventy-eight');\nINSERT INTO t3 VALUES(13895, 46879, 'forty-six thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(13896, 58011, 'fifty-eight thousand eleven');\nINSERT INTO t3 VALUES(13897, 54352, 'fifty-four thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(13898, 16235, 'sixteen thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(13899, 4278, 'four thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(13900, 85315, 'eighty-five thousand three hundred fifteen');\nINSERT INTO t3 VALUES(13901, 8374, 'eight thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(13902, 17825, 'seventeen thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(13903, 10431, 'ten thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(13904, 74458, 'seventy-four thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(13905, 64768, 'sixty-four thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(13906, 53411, 'fifty-three thousand four hundred eleven');\nINSERT INTO t3 VALUES(13907, 44856, 'forty-four thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(13908, 85283, 'eighty-five thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(13909, 50595, 'fifty thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(13910, 32334, 'thirty-two thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(13911, 72344, 'seventy-two thousand three hundred forty-four');\nINSERT INTO t3 VALUES(13912, 71649, 'seventy-one thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(13913, 89150, 'eighty-nine thousand one hundred fifty');\nINSERT INTO t3 VALUES(13914, 84303, 'eighty-four thousand three hundred three');\nINSERT INTO t3 VALUES(13915, 30665, 'thirty thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(13916, 78780, 'seventy-eight thousand seven hundred eighty');\nINSERT INTO t3 VALUES(13917, 89025, 'eighty-nine thousand twenty-five');\nINSERT INTO t3 VALUES(13918, 41063, 'forty-one thousand sixty-three');\nINSERT INTO t3 VALUES(13919, 33110, 'thirty-three thousand one hundred ten');\nINSERT INTO t3 VALUES(13920, 65803, 'sixty-five thousand eight hundred three');\nINSERT INTO t3 VALUES(13921, 49198, 'forty-nine thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(13922, 90327, 'ninety thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(13923, 68471, 'sixty-eight thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(13924, 7429, 'seven thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(13925, 8150, 'eight thousand one hundred fifty');\nINSERT INTO t3 VALUES(13926, 89548, 'eighty-nine thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(13927, 7171, 'seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(13928, 90836, 'ninety thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(13929, 25283, 'twenty-five thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(13930, 88507, 'eighty-eight thousand five hundred seven');\nINSERT INTO t3 VALUES(13931, 20224, 'twenty thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(13932, 73097, 'seventy-three thousand ninety-seven');\nINSERT INTO t3 VALUES(13933, 4549, 'four thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(13934, 37916, 'thirty-seven thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(13935, 61924, 'sixty-one thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(13936, 67336, 'sixty-seven thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(13937, 95064, 'ninety-five thousand sixty-four');\nINSERT INTO t3 VALUES(13938, 96587, 'ninety-six thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(13939, 29571, 'twenty-nine thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(13940, 28864, 'twenty-eight thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(13941, 23332, 'twenty-three thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(13942, 61389, 'sixty-one thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(13943, 71524, 'seventy-one thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(13944, 57931, 'fifty-seven thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(13945, 4443, 'four thousand four hundred forty-three');\nINSERT INTO t3 VALUES(13946, 6783, 'six thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(13947, 58263, 'fifty-eight thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(13948, 94460, 'ninety-four thousand four hundred sixty');\nINSERT INTO t3 VALUES(13949, 75297, 'seventy-five thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(13950, 61635, 'sixty-one thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(13951, 52074, 'fifty-two thousand seventy-four');\nINSERT INTO t3 VALUES(13952, 53478, 'fifty-three thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(13953, 72076, 'seventy-two thousand seventy-six');\nINSERT INTO t3 VALUES(13954, 17923, 'seventeen thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(13955, 77086, 'seventy-seven thousand eighty-six');\nINSERT INTO t3 VALUES(13956, 10932, 'ten thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(13957, 57580, 'fifty-seven thousand five hundred eighty');\nINSERT INTO t3 VALUES(13958, 31437, 'thirty-one thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(13959, 41326, 'forty-one thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(13960, 80597, 'eighty thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(13961, 46540, 'forty-six thousand five hundred forty');\nINSERT INTO t3 VALUES(13962, 75245, 'seventy-five thousand two hundred forty-five');\nINSERT INTO t3 VALUES(13963, 54585, 'fifty-four thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(13964, 1122, 'one thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(13965, 73413, 'seventy-three thousand four hundred thirteen');\nINSERT INTO t3 VALUES(13966, 20334, 'twenty thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(13967, 95300, 'ninety-five thousand three hundred');\nINSERT INTO t3 VALUES(13968, 7348, 'seven thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(13969, 74165, 'seventy-four thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(13970, 30473, 'thirty thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(13971, 15377, 'fifteen thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(13972, 43499, 'forty-three thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(13973, 22262, 'twenty-two thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(13974, 17978, 'seventeen thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(13975, 78716, 'seventy-eight thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(13976, 62759, 'sixty-two thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(13977, 65360, 'sixty-five thousand three hundred sixty');\nINSERT INTO t3 VALUES(13978, 94651, 'ninety-four thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(13979, 69989, 'sixty-nine thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(13980, 65567, 'sixty-five thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(13981, 81075, 'eighty-one thousand seventy-five');\nINSERT INTO t3 VALUES(13982, 57906, 'fifty-seven thousand nine hundred six');\nINSERT INTO t3 VALUES(13983, 64171, 'sixty-four thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(13984, 41289, 'forty-one thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(13985, 28860, 'twenty-eight thousand eight hundred sixty');\nINSERT INTO t3 VALUES(13986, 22556, 'twenty-two thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(13987, 16439, 'sixteen thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(13988, 95639, 'ninety-five thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(13989, 49010, 'forty-nine thousand ten');\nINSERT INTO t3 VALUES(13990, 90766, 'ninety thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(13991, 84651, 'eighty-four thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(13992, 50935, 'fifty thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(13993, 88748, 'eighty-eight thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(13994, 84745, 'eighty-four thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(13995, 39283, 'thirty-nine thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(13996, 7382, 'seven thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(13997, 90804, 'ninety thousand eight hundred four');\nINSERT INTO t3 VALUES(13998, 33033, 'thirty-three thousand thirty-three');\nINSERT INTO t3 VALUES(13999, 55866, 'fifty-five thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(14000, 27443, 'twenty-seven thousand four hundred forty-three');\nINSERT INTO t3 VALUES(14001, 6070, 'six thousand seventy');\nINSERT INTO t3 VALUES(14002, 80920, 'eighty thousand nine hundred twenty');\nINSERT INTO t3 VALUES(14003, 33757, 'thirty-three thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(14004, 97400, 'ninety-seven thousand four hundred');\nINSERT INTO t3 VALUES(14005, 87218, 'eighty-seven thousand two hundred eighteen');\nINSERT INTO t3 VALUES(14006, 80987, 'eighty thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(14007, 64071, 'sixty-four thousand seventy-one');\nINSERT INTO t3 VALUES(14008, 660, 'six hundred sixty');\nINSERT INTO t3 VALUES(14009, 90275, 'ninety thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(14010, 64638, 'sixty-four thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(14011, 1142, 'one thousand one hundred forty-two');\nINSERT INTO t3 VALUES(14012, 3728, 'three thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(14013, 58292, 'fifty-eight thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(14014, 38028, 'thirty-eight thousand twenty-eight');\nINSERT INTO t3 VALUES(14015, 53442, 'fifty-three thousand four hundred forty-two');\nINSERT INTO t3 VALUES(14016, 24799, 'twenty-four thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(14017, 81197, 'eighty-one thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(14018, 73241, 'seventy-three thousand two hundred forty-one');\nINSERT INTO t3 VALUES(14019, 55543, 'fifty-five thousand five hundred forty-three');\nINSERT INTO t3 VALUES(14020, 94372, 'ninety-four thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(14021, 85179, 'eighty-five thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(14022, 98999, 'ninety-eight thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(14023, 16290, 'sixteen thousand two hundred ninety');\nINSERT INTO t3 VALUES(14024, 47770, 'forty-seven thousand seven hundred seventy');\nINSERT INTO t3 VALUES(14025, 47769, 'forty-seven thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(14026, 25395, 'twenty-five thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(14027, 63378, 'sixty-three thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(14028, 8868, 'eight thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(14029, 53151, 'fifty-three thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(14030, 21042, 'twenty-one thousand forty-two');\nINSERT INTO t3 VALUES(14031, 41835, 'forty-one thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(14032, 16, 'sixteen');\nINSERT INTO t3 VALUES(14033, 91849, 'ninety-one thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(14034, 98327, 'ninety-eight thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(14035, 30459, 'thirty thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(14036, 5717, 'five thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(14037, 46998, 'forty-six thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(14038, 75117, 'seventy-five thousand one hundred seventeen');\nINSERT INTO t3 VALUES(14039, 85536, 'eighty-five thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(14040, 47560, 'forty-seven thousand five hundred sixty');\nINSERT INTO t3 VALUES(14041, 16306, 'sixteen thousand three hundred six');\nINSERT INTO t3 VALUES(14042, 81135, 'eighty-one thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(14043, 5391, 'five thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(14044, 44837, 'forty-four thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(14045, 57077, 'fifty-seven thousand seventy-seven');\nINSERT INTO t3 VALUES(14046, 83177, 'eighty-three thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(14047, 9160, 'nine thousand one hundred sixty');\nINSERT INTO t3 VALUES(14048, 35946, 'thirty-five thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(14049, 279, 'two hundred seventy-nine');\nINSERT INTO t3 VALUES(14050, 64595, 'sixty-four thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(14051, 19603, 'nineteen thousand six hundred three');\nINSERT INTO t3 VALUES(14052, 50428, 'fifty thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(14053, 71887, 'seventy-one thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(14054, 8099, 'eight thousand ninety-nine');\nINSERT INTO t3 VALUES(14055, 98815, 'ninety-eight thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(14056, 34011, 'thirty-four thousand eleven');\nINSERT INTO t3 VALUES(14057, 21291, 'twenty-one thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(14058, 54405, 'fifty-four thousand four hundred five');\nINSERT INTO t3 VALUES(14059, 5340, 'five thousand three hundred forty');\nINSERT INTO t3 VALUES(14060, 17683, 'seventeen thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(14061, 70167, 'seventy thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(14062, 50277, 'fifty thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(14063, 49889, 'forty-nine thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(14064, 74868, 'seventy-four thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(14065, 57759, 'fifty-seven thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(14066, 83959, 'eighty-three thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(14067, 21287, 'twenty-one thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(14068, 7022, 'seven thousand twenty-two');\nINSERT INTO t3 VALUES(14069, 79342, 'seventy-nine thousand three hundred forty-two');\nINSERT INTO t3 VALUES(14070, 18522, 'eighteen thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(14071, 96548, 'ninety-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(14072, 70039, 'seventy thousand thirty-nine');\nINSERT INTO t3 VALUES(14073, 67499, 'sixty-seven thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(14074, 44843, 'forty-four thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(14075, 60852, 'sixty thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(14076, 49005, 'forty-nine thousand five');\nINSERT INTO t3 VALUES(14077, 42691, 'forty-two thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(14078, 76353, 'seventy-six thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(14079, 73231, 'seventy-three thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(14080, 51812, 'fifty-one thousand eight hundred twelve');\nINSERT INTO t3 VALUES(14081, 4065, 'four thousand sixty-five');\nINSERT INTO t3 VALUES(14082, 20048, 'twenty thousand forty-eight');\nINSERT INTO t3 VALUES(14083, 29253, 'twenty-nine thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(14084, 7918, 'seven thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(14085, 46036, 'forty-six thousand thirty-six');\nINSERT INTO t3 VALUES(14086, 80726, 'eighty thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(14087, 41651, 'forty-one thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(14088, 66489, 'sixty-six thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(14089, 90786, 'ninety thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(14090, 70711, 'seventy thousand seven hundred eleven');\nINSERT INTO t3 VALUES(14091, 2226, 'two thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(14092, 34868, 'thirty-four thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(14093, 44909, 'forty-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(14094, 89998, 'eighty-nine thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(14095, 11780, 'eleven thousand seven hundred eighty');\nINSERT INTO t3 VALUES(14096, 70448, 'seventy thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(14097, 32410, 'thirty-two thousand four hundred ten');\nINSERT INTO t3 VALUES(14098, 52775, 'fifty-two thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(14099, 80734, 'eighty thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(14100, 64700, 'sixty-four thousand seven hundred');\nINSERT INTO t3 VALUES(14101, 30, 'thirty');\nINSERT INTO t3 VALUES(14102, 58756, 'fifty-eight thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(14103, 26156, 'twenty-six thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(14104, 29099, 'twenty-nine thousand ninety-nine');\nINSERT INTO t3 VALUES(14105, 32031, 'thirty-two thousand thirty-one');\nINSERT INTO t3 VALUES(14106, 78367, 'seventy-eight thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(14107, 47451, 'forty-seven thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(14108, 25179, 'twenty-five thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(14109, 26956, 'twenty-six thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(14110, 71063, 'seventy-one thousand sixty-three');\nINSERT INTO t3 VALUES(14111, 88631, 'eighty-eight thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(14112, 20676, 'twenty thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(14113, 38569, 'thirty-eight thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(14114, 45862, 'forty-five thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(14115, 97222, 'ninety-seven thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(14116, 23847, 'twenty-three thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(14117, 27914, 'twenty-seven thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(14118, 26343, 'twenty-six thousand three hundred forty-three');\nINSERT INTO t3 VALUES(14119, 5566, 'five thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(14120, 91348, 'ninety-one thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(14121, 72169, 'seventy-two thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(14122, 35229, 'thirty-five thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(14123, 20626, 'twenty thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(14124, 84934, 'eighty-four thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(14125, 97143, 'ninety-seven thousand one hundred forty-three');\nINSERT INTO t3 VALUES(14126, 57316, 'fifty-seven thousand three hundred sixteen');\nINSERT INTO t3 VALUES(14127, 70205, 'seventy thousand two hundred five');\nINSERT INTO t3 VALUES(14128, 55119, 'fifty-five thousand one hundred nineteen');\nINSERT INTO t3 VALUES(14129, 14023, 'fourteen thousand twenty-three');\nINSERT INTO t3 VALUES(14130, 69712, 'sixty-nine thousand seven hundred twelve');\nINSERT INTO t3 VALUES(14131, 69034, 'sixty-nine thousand thirty-four');\nINSERT INTO t3 VALUES(14132, 27592, 'twenty-seven thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(14133, 14323, 'fourteen thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(14134, 56164, 'fifty-six thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(14135, 67875, 'sixty-seven thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(14136, 7556, 'seven thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(14137, 47319, 'forty-seven thousand three hundred nineteen');\nINSERT INTO t3 VALUES(14138, 39533, 'thirty-nine thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(14139, 37545, 'thirty-seven thousand five hundred forty-five');\nINSERT INTO t3 VALUES(14140, 42119, 'forty-two thousand one hundred nineteen');\nINSERT INTO t3 VALUES(14141, 39886, 'thirty-nine thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(14142, 83467, 'eighty-three thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(14143, 65379, 'sixty-five thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(14144, 74107, 'seventy-four thousand one hundred seven');\nINSERT INTO t3 VALUES(14145, 92627, 'ninety-two thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(14146, 20984, 'twenty thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(14147, 72444, 'seventy-two thousand four hundred forty-four');\nINSERT INTO t3 VALUES(14148, 36611, 'thirty-six thousand six hundred eleven');\nINSERT INTO t3 VALUES(14149, 83169, 'eighty-three thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(14150, 22705, 'twenty-two thousand seven hundred five');\nINSERT INTO t3 VALUES(14151, 34171, 'thirty-four thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(14152, 37130, 'thirty-seven thousand one hundred thirty');\nINSERT INTO t3 VALUES(14153, 92769, 'ninety-two thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(14154, 70754, 'seventy thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(14155, 51656, 'fifty-one thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(14156, 50732, 'fifty thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(14157, 16488, 'sixteen thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(14158, 79570, 'seventy-nine thousand five hundred seventy');\nINSERT INTO t3 VALUES(14159, 62083, 'sixty-two thousand eighty-three');\nINSERT INTO t3 VALUES(14160, 4761, 'four thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(14161, 27727, 'twenty-seven thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(14162, 37092, 'thirty-seven thousand ninety-two');\nINSERT INTO t3 VALUES(14163, 64288, 'sixty-four thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(14164, 97438, 'ninety-seven thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(14165, 31498, 'thirty-one thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(14166, 99157, 'ninety-nine thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(14167, 15456, 'fifteen thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(14168, 79114, 'seventy-nine thousand one hundred fourteen');\nINSERT INTO t3 VALUES(14169, 28346, 'twenty-eight thousand three hundred forty-six');\nINSERT INTO t3 VALUES(14170, 48753, 'forty-eight thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(14171, 14314, 'fourteen thousand three hundred fourteen');\nINSERT INTO t3 VALUES(14172, 69211, 'sixty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(14173, 87614, 'eighty-seven thousand six hundred fourteen');\nINSERT INTO t3 VALUES(14174, 21482, 'twenty-one thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(14175, 84555, 'eighty-four thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(14176, 92481, 'ninety-two thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(14177, 80601, 'eighty thousand six hundred one');\nINSERT INTO t3 VALUES(14178, 86326, 'eighty-six thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(14179, 51725, 'fifty-one thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(14180, 25639, 'twenty-five thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(14181, 86604, 'eighty-six thousand six hundred four');\nINSERT INTO t3 VALUES(14182, 9013, 'nine thousand thirteen');\nINSERT INTO t3 VALUES(14183, 10834, 'ten thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(14184, 24644, 'twenty-four thousand six hundred forty-four');\nINSERT INTO t3 VALUES(14185, 69444, 'sixty-nine thousand four hundred forty-four');\nINSERT INTO t3 VALUES(14186, 13141, 'thirteen thousand one hundred forty-one');\nINSERT INTO t3 VALUES(14187, 29103, 'twenty-nine thousand one hundred three');\nINSERT INTO t3 VALUES(14188, 83682, 'eighty-three thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(14189, 43992, 'forty-three thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(14190, 74783, 'seventy-four thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(14191, 42437, 'forty-two thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(14192, 4381, 'four thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(14193, 61759, 'sixty-one thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(14194, 54951, 'fifty-four thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(14195, 19140, 'nineteen thousand one hundred forty');\nINSERT INTO t3 VALUES(14196, 57927, 'fifty-seven thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(14197, 47775, 'forty-seven thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(14198, 52878, 'fifty-two thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(14199, 83869, 'eighty-three thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(14200, 41009, 'forty-one thousand nine');\nINSERT INTO t3 VALUES(14201, 32065, 'thirty-two thousand sixty-five');\nINSERT INTO t3 VALUES(14202, 75242, 'seventy-five thousand two hundred forty-two');\nINSERT INTO t3 VALUES(14203, 88982, 'eighty-eight thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(14204, 84425, 'eighty-four thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(14205, 86469, 'eighty-six thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(14206, 4916, 'four thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(14207, 40930, 'forty thousand nine hundred thirty');\nINSERT INTO t3 VALUES(14208, 43178, 'forty-three thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(14209, 16744, 'sixteen thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(14210, 7823, 'seven thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(14211, 88086, 'eighty-eight thousand eighty-six');\nINSERT INTO t3 VALUES(14212, 19551, 'nineteen thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(14213, 25943, 'twenty-five thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(14214, 89127, 'eighty-nine thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(14215, 63497, 'sixty-three thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(14216, 82765, 'eighty-two thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(14217, 30305, 'thirty thousand three hundred five');\nINSERT INTO t3 VALUES(14218, 58564, 'fifty-eight thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(14219, 28257, 'twenty-eight thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(14220, 77279, 'seventy-seven thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(14221, 51722, 'fifty-one thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(14222, 24282, 'twenty-four thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(14223, 62794, 'sixty-two thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(14224, 44363, 'forty-four thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(14225, 89297, 'eighty-nine thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(14226, 39420, 'thirty-nine thousand four hundred twenty');\nINSERT INTO t3 VALUES(14227, 8990, 'eight thousand nine hundred ninety');\nINSERT INTO t3 VALUES(14228, 92556, 'ninety-two thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(14229, 47958, 'forty-seven thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(14230, 94381, 'ninety-four thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(14231, 94323, 'ninety-four thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(14232, 43972, 'forty-three thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(14233, 2510, 'two thousand five hundred ten');\nINSERT INTO t3 VALUES(14234, 21945, 'twenty-one thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(14235, 23777, 'twenty-three thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(14236, 64407, 'sixty-four thousand four hundred seven');\nINSERT INTO t3 VALUES(14237, 30935, 'thirty thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(14238, 38018, 'thirty-eight thousand eighteen');\nINSERT INTO t3 VALUES(14239, 96118, 'ninety-six thousand one hundred eighteen');\nINSERT INTO t3 VALUES(14240, 45534, 'forty-five thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(14241, 85873, 'eighty-five thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(14242, 67184, 'sixty-seven thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(14243, 65712, 'sixty-five thousand seven hundred twelve');\nINSERT INTO t3 VALUES(14244, 9435, 'nine thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(14245, 35322, 'thirty-five thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(14246, 91405, 'ninety-one thousand four hundred five');\nINSERT INTO t3 VALUES(14247, 62911, 'sixty-two thousand nine hundred eleven');\nINSERT INTO t3 VALUES(14248, 7842, 'seven thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(14249, 51414, 'fifty-one thousand four hundred fourteen');\nINSERT INTO t3 VALUES(14250, 22465, 'twenty-two thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(14251, 32639, 'thirty-two thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(14252, 62212, 'sixty-two thousand two hundred twelve');\nINSERT INTO t3 VALUES(14253, 20304, 'twenty thousand three hundred four');\nINSERT INTO t3 VALUES(14254, 69574, 'sixty-nine thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(14255, 54688, 'fifty-four thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(14256, 59382, 'fifty-nine thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(14257, 63230, 'sixty-three thousand two hundred thirty');\nINSERT INTO t3 VALUES(14258, 94295, 'ninety-four thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(14259, 97845, 'ninety-seven thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(14260, 90665, 'ninety thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(14261, 57241, 'fifty-seven thousand two hundred forty-one');\nINSERT INTO t3 VALUES(14262, 31129, 'thirty-one thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(14263, 52584, 'fifty-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(14264, 64248, 'sixty-four thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(14265, 74634, 'seventy-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(14266, 76404, 'seventy-six thousand four hundred four');\nINSERT INTO t3 VALUES(14267, 29486, 'twenty-nine thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(14268, 17786, 'seventeen thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(14269, 62839, 'sixty-two thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(14270, 36637, 'thirty-six thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(14271, 50990, 'fifty thousand nine hundred ninety');\nINSERT INTO t3 VALUES(14272, 76728, 'seventy-six thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(14273, 52060, 'fifty-two thousand sixty');\nINSERT INTO t3 VALUES(14274, 55154, 'fifty-five thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(14275, 60588, 'sixty thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(14276, 5076, 'five thousand seventy-six');\nINSERT INTO t3 VALUES(14277, 74857, 'seventy-four thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(14278, 46644, 'forty-six thousand six hundred forty-four');\nINSERT INTO t3 VALUES(14279, 60609, 'sixty thousand six hundred nine');\nINSERT INTO t3 VALUES(14280, 69598, 'sixty-nine thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(14281, 57260, 'fifty-seven thousand two hundred sixty');\nINSERT INTO t3 VALUES(14282, 94989, 'ninety-four thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(14283, 58789, 'fifty-eight thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(14284, 73219, 'seventy-three thousand two hundred nineteen');\nINSERT INTO t3 VALUES(14285, 29093, 'twenty-nine thousand ninety-three');\nINSERT INTO t3 VALUES(14286, 21412, 'twenty-one thousand four hundred twelve');\nINSERT INTO t3 VALUES(14287, 90352, 'ninety thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(14288, 7151, 'seven thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(14289, 9830, 'nine thousand eight hundred thirty');\nINSERT INTO t3 VALUES(14290, 70265, 'seventy thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(14291, 7236, 'seven thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(14292, 24213, 'twenty-four thousand two hundred thirteen');\nINSERT INTO t3 VALUES(14293, 34717, 'thirty-four thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(14294, 90624, 'ninety thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(14295, 36920, 'thirty-six thousand nine hundred twenty');\nINSERT INTO t3 VALUES(14296, 5055, 'five thousand fifty-five');\nINSERT INTO t3 VALUES(14297, 9154, 'nine thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(14298, 82441, 'eighty-two thousand four hundred forty-one');\nINSERT INTO t3 VALUES(14299, 40498, 'forty thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(14300, 5931, 'five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(14301, 81847, 'eighty-one thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(14302, 16365, 'sixteen thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(14303, 64044, 'sixty-four thousand forty-four');\nINSERT INTO t3 VALUES(14304, 42828, 'forty-two thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(14305, 77245, 'seventy-seven thousand two hundred forty-five');\nINSERT INTO t3 VALUES(14306, 68101, 'sixty-eight thousand one hundred one');\nINSERT INTO t3 VALUES(14307, 22692, 'twenty-two thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(14308, 33884, 'thirty-three thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(14309, 59114, 'fifty-nine thousand one hundred fourteen');\nINSERT INTO t3 VALUES(14310, 76416, 'seventy-six thousand four hundred sixteen');\nINSERT INTO t3 VALUES(14311, 49710, 'forty-nine thousand seven hundred ten');\nINSERT INTO t3 VALUES(14312, 51303, 'fifty-one thousand three hundred three');\nINSERT INTO t3 VALUES(14313, 72241, 'seventy-two thousand two hundred forty-one');\nINSERT INTO t3 VALUES(14314, 90059, 'ninety thousand fifty-nine');\nINSERT INTO t3 VALUES(14315, 98357, 'ninety-eight thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(14316, 38819, 'thirty-eight thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(14317, 31864, 'thirty-one thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(14318, 60077, 'sixty thousand seventy-seven');\nINSERT INTO t3 VALUES(14319, 76181, 'seventy-six thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(14320, 19692, 'nineteen thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(14321, 97806, 'ninety-seven thousand eight hundred six');\nINSERT INTO t3 VALUES(14322, 61599, 'sixty-one thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(14323, 34611, 'thirty-four thousand six hundred eleven');\nINSERT INTO t3 VALUES(14324, 84140, 'eighty-four thousand one hundred forty');\nINSERT INTO t3 VALUES(14325, 12217, 'twelve thousand two hundred seventeen');\nINSERT INTO t3 VALUES(14326, 82300, 'eighty-two thousand three hundred');\nINSERT INTO t3 VALUES(14327, 74272, 'seventy-four thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(14328, 74265, 'seventy-four thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(14329, 60922, 'sixty thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(14330, 45274, 'forty-five thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(14331, 29864, 'twenty-nine thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(14332, 43869, 'forty-three thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(14333, 97801, 'ninety-seven thousand eight hundred one');\nINSERT INTO t3 VALUES(14334, 44111, 'forty-four thousand one hundred eleven');\nINSERT INTO t3 VALUES(14335, 31140, 'thirty-one thousand one hundred forty');\nINSERT INTO t3 VALUES(14336, 26431, 'twenty-six thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(14337, 95892, 'ninety-five thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(14338, 23643, 'twenty-three thousand six hundred forty-three');\nINSERT INTO t3 VALUES(14339, 9987, 'nine thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(14340, 38559, 'thirty-eight thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(14341, 12285, 'twelve thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(14342, 95915, 'ninety-five thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(14343, 83802, 'eighty-three thousand eight hundred two');\nINSERT INTO t3 VALUES(14344, 27394, 'twenty-seven thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(14345, 2087, 'two thousand eighty-seven');\nINSERT INTO t3 VALUES(14346, 95448, 'ninety-five thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(14347, 68544, 'sixty-eight thousand five hundred forty-four');\nINSERT INTO t3 VALUES(14348, 96637, 'ninety-six thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(14349, 97022, 'ninety-seven thousand twenty-two');\nINSERT INTO t3 VALUES(14350, 22948, 'twenty-two thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(14351, 60979, 'sixty thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(14352, 95824, 'ninety-five thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(14353, 57159, 'fifty-seven thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(14354, 54898, 'fifty-four thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(14355, 35741, 'thirty-five thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(14356, 14997, 'fourteen thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(14357, 79366, 'seventy-nine thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(14358, 99647, 'ninety-nine thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(14359, 65949, 'sixty-five thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(14360, 7391, 'seven thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(14361, 4665, 'four thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(14362, 54674, 'fifty-four thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(14363, 48491, 'forty-eight thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(14364, 64611, 'sixty-four thousand six hundred eleven');\nINSERT INTO t3 VALUES(14365, 5079, 'five thousand seventy-nine');\nINSERT INTO t3 VALUES(14366, 96510, 'ninety-six thousand five hundred ten');\nINSERT INTO t3 VALUES(14367, 19930, 'nineteen thousand nine hundred thirty');\nINSERT INTO t3 VALUES(14368, 14729, 'fourteen thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(14369, 54085, 'fifty-four thousand eighty-five');\nINSERT INTO t3 VALUES(14370, 18388, 'eighteen thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(14371, 47262, 'forty-seven thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(14372, 38350, 'thirty-eight thousand three hundred fifty');\nINSERT INTO t3 VALUES(14373, 14133, 'fourteen thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(14374, 4247, 'four thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(14375, 15359, 'fifteen thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(14376, 10308, 'ten thousand three hundred eight');\nINSERT INTO t3 VALUES(14377, 26455, 'twenty-six thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(14378, 71989, 'seventy-one thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(14379, 2371, 'two thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(14380, 44012, 'forty-four thousand twelve');\nINSERT INTO t3 VALUES(14381, 3578, 'three thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(14382, 33913, 'thirty-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(14383, 87445, 'eighty-seven thousand four hundred forty-five');\nINSERT INTO t3 VALUES(14384, 26229, 'twenty-six thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(14385, 1263, 'one thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(14386, 68279, 'sixty-eight thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(14387, 13226, 'thirteen thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(14388, 87733, 'eighty-seven thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(14389, 79940, 'seventy-nine thousand nine hundred forty');\nINSERT INTO t3 VALUES(14390, 94181, 'ninety-four thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(14391, 98470, 'ninety-eight thousand four hundred seventy');\nINSERT INTO t3 VALUES(14392, 29106, 'twenty-nine thousand one hundred six');\nINSERT INTO t3 VALUES(14393, 325, 'three hundred twenty-five');\nINSERT INTO t3 VALUES(14394, 57983, 'fifty-seven thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(14395, 7554, 'seven thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(14396, 94566, 'ninety-four thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(14397, 10174, 'ten thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(14398, 60058, 'sixty thousand fifty-eight');\nINSERT INTO t3 VALUES(14399, 83177, 'eighty-three thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(14400, 84461, 'eighty-four thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(14401, 10453, 'ten thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(14402, 79568, 'seventy-nine thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(14403, 2432, 'two thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(14404, 22426, 'twenty-two thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(14405, 55022, 'fifty-five thousand twenty-two');\nINSERT INTO t3 VALUES(14406, 54477, 'fifty-four thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(14407, 224, 'two hundred twenty-four');\nINSERT INTO t3 VALUES(14408, 80170, 'eighty thousand one hundred seventy');\nINSERT INTO t3 VALUES(14409, 74617, 'seventy-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(14410, 37826, 'thirty-seven thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(14411, 13481, 'thirteen thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(14412, 55903, 'fifty-five thousand nine hundred three');\nINSERT INTO t3 VALUES(14413, 98563, 'ninety-eight thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(14414, 56487, 'fifty-six thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(14415, 69806, 'sixty-nine thousand eight hundred six');\nINSERT INTO t3 VALUES(14416, 78030, 'seventy-eight thousand thirty');\nINSERT INTO t3 VALUES(14417, 90461, 'ninety thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(14418, 32670, 'thirty-two thousand six hundred seventy');\nINSERT INTO t3 VALUES(14419, 90171, 'ninety thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(14420, 71633, 'seventy-one thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(14421, 34699, 'thirty-four thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(14422, 68435, 'sixty-eight thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(14423, 86962, 'eighty-six thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(14424, 7094, 'seven thousand ninety-four');\nINSERT INTO t3 VALUES(14425, 9991, 'nine thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(14426, 17207, 'seventeen thousand two hundred seven');\nINSERT INTO t3 VALUES(14427, 88226, 'eighty-eight thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(14428, 46157, 'forty-six thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(14429, 99262, 'ninety-nine thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(14430, 45542, 'forty-five thousand five hundred forty-two');\nINSERT INTO t3 VALUES(14431, 85504, 'eighty-five thousand five hundred four');\nINSERT INTO t3 VALUES(14432, 70406, 'seventy thousand four hundred six');\nINSERT INTO t3 VALUES(14433, 12940, 'twelve thousand nine hundred forty');\nINSERT INTO t3 VALUES(14434, 30821, 'thirty thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(14435, 36246, 'thirty-six thousand two hundred forty-six');\nINSERT INTO t3 VALUES(14436, 89217, 'eighty-nine thousand two hundred seventeen');\nINSERT INTO t3 VALUES(14437, 87303, 'eighty-seven thousand three hundred three');\nINSERT INTO t3 VALUES(14438, 10572, 'ten thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(14439, 29156, 'twenty-nine thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(14440, 46980, 'forty-six thousand nine hundred eighty');\nINSERT INTO t3 VALUES(14441, 43683, 'forty-three thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(14442, 95156, 'ninety-five thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(14443, 15716, 'fifteen thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(14444, 44693, 'forty-four thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(14445, 49162, 'forty-nine thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(14446, 48546, 'forty-eight thousand five hundred forty-six');\nINSERT INTO t3 VALUES(14447, 36516, 'thirty-six thousand five hundred sixteen');\nINSERT INTO t3 VALUES(14448, 48270, 'forty-eight thousand two hundred seventy');\nINSERT INTO t3 VALUES(14449, 29979, 'twenty-nine thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(14450, 6000, 'six thousand');\nINSERT INTO t3 VALUES(14451, 89570, 'eighty-nine thousand five hundred seventy');\nINSERT INTO t3 VALUES(14452, 1531, 'one thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(14453, 52598, 'fifty-two thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(14454, 3987, 'three thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(14455, 80410, 'eighty thousand four hundred ten');\nINSERT INTO t3 VALUES(14456, 66354, 'sixty-six thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(14457, 82652, 'eighty-two thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(14458, 16187, 'sixteen thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(14459, 90640, 'ninety thousand six hundred forty');\nINSERT INTO t3 VALUES(14460, 23381, 'twenty-three thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(14461, 24338, 'twenty-four thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(14462, 92652, 'ninety-two thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(14463, 41077, 'forty-one thousand seventy-seven');\nINSERT INTO t3 VALUES(14464, 36577, 'thirty-six thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(14465, 20299, 'twenty thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(14466, 62776, 'sixty-two thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(14467, 67506, 'sixty-seven thousand five hundred six');\nINSERT INTO t3 VALUES(14468, 73012, 'seventy-three thousand twelve');\nINSERT INTO t3 VALUES(14469, 81291, 'eighty-one thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(14470, 51806, 'fifty-one thousand eight hundred six');\nINSERT INTO t3 VALUES(14471, 10356, 'ten thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(14472, 14935, 'fourteen thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(14473, 92150, 'ninety-two thousand one hundred fifty');\nINSERT INTO t3 VALUES(14474, 85918, 'eighty-five thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(14475, 22235, 'twenty-two thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(14476, 22731, 'twenty-two thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(14477, 34465, 'thirty-four thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(14478, 20592, 'twenty thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(14479, 42785, 'forty-two thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(14480, 48326, 'forty-eight thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(14481, 11939, 'eleven thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(14482, 35144, 'thirty-five thousand one hundred forty-four');\nINSERT INTO t3 VALUES(14483, 92610, 'ninety-two thousand six hundred ten');\nINSERT INTO t3 VALUES(14484, 33640, 'thirty-three thousand six hundred forty');\nINSERT INTO t3 VALUES(14485, 69147, 'sixty-nine thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(14486, 59398, 'fifty-nine thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(14487, 72857, 'seventy-two thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(14488, 13955, 'thirteen thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(14489, 14269, 'fourteen thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(14490, 51046, 'fifty-one thousand forty-six');\nINSERT INTO t3 VALUES(14491, 1683, 'one thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(14492, 34176, 'thirty-four thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(14493, 78035, 'seventy-eight thousand thirty-five');\nINSERT INTO t3 VALUES(14494, 6010, 'six thousand ten');\nINSERT INTO t3 VALUES(14495, 25220, 'twenty-five thousand two hundred twenty');\nINSERT INTO t3 VALUES(14496, 10069, 'ten thousand sixty-nine');\nINSERT INTO t3 VALUES(14497, 32014, 'thirty-two thousand fourteen');\nINSERT INTO t3 VALUES(14498, 42905, 'forty-two thousand nine hundred five');\nINSERT INTO t3 VALUES(14499, 38341, 'thirty-eight thousand three hundred forty-one');\nINSERT INTO t3 VALUES(14500, 68819, 'sixty-eight thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(14501, 17996, 'seventeen thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(14502, 13424, 'thirteen thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(14503, 98015, 'ninety-eight thousand fifteen');\nINSERT INTO t3 VALUES(14504, 60066, 'sixty thousand sixty-six');\nINSERT INTO t3 VALUES(14505, 62737, 'sixty-two thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(14506, 43719, 'forty-three thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(14507, 72053, 'seventy-two thousand fifty-three');\nINSERT INTO t3 VALUES(14508, 84111, 'eighty-four thousand one hundred eleven');\nINSERT INTO t3 VALUES(14509, 14871, 'fourteen thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(14510, 51984, 'fifty-one thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(14511, 24022, 'twenty-four thousand twenty-two');\nINSERT INTO t3 VALUES(14512, 82959, 'eighty-two thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(14513, 61332, 'sixty-one thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(14514, 91621, 'ninety-one thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(14515, 79851, 'seventy-nine thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(14516, 62831, 'sixty-two thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(14517, 23427, 'twenty-three thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(14518, 46295, 'forty-six thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(14519, 66657, 'sixty-six thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(14520, 6208, 'six thousand two hundred eight');\nINSERT INTO t3 VALUES(14521, 66380, 'sixty-six thousand three hundred eighty');\nINSERT INTO t3 VALUES(14522, 17450, 'seventeen thousand four hundred fifty');\nINSERT INTO t3 VALUES(14523, 61566, 'sixty-one thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(14524, 89253, 'eighty-nine thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(14525, 59985, 'fifty-nine thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(14526, 97636, 'ninety-seven thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(14527, 9563, 'nine thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(14528, 13734, 'thirteen thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(14529, 5650, 'five thousand six hundred fifty');\nINSERT INTO t3 VALUES(14530, 89709, 'eighty-nine thousand seven hundred nine');\nINSERT INTO t3 VALUES(14531, 24506, 'twenty-four thousand five hundred six');\nINSERT INTO t3 VALUES(14532, 18122, 'eighteen thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(14533, 11118, 'eleven thousand one hundred eighteen');\nINSERT INTO t3 VALUES(14534, 19254, 'nineteen thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(14535, 48795, 'forty-eight thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(14536, 47002, 'forty-seven thousand two');\nINSERT INTO t3 VALUES(14537, 93246, 'ninety-three thousand two hundred forty-six');\nINSERT INTO t3 VALUES(14538, 93657, 'ninety-three thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(14539, 95971, 'ninety-five thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(14540, 19687, 'nineteen thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(14541, 7745, 'seven thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(14542, 95532, 'ninety-five thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(14543, 47374, 'forty-seven thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(14544, 66780, 'sixty-six thousand seven hundred eighty');\nINSERT INTO t3 VALUES(14545, 6678, 'six thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(14546, 1601, 'one thousand six hundred one');\nINSERT INTO t3 VALUES(14547, 56690, 'fifty-six thousand six hundred ninety');\nINSERT INTO t3 VALUES(14548, 61801, 'sixty-one thousand eight hundred one');\nINSERT INTO t3 VALUES(14549, 18009, 'eighteen thousand nine');\nINSERT INTO t3 VALUES(14550, 28747, 'twenty-eight thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(14551, 96227, 'ninety-six thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(14552, 43763, 'forty-three thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(14553, 54158, 'fifty-four thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(14554, 1818, 'one thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(14555, 24612, 'twenty-four thousand six hundred twelve');\nINSERT INTO t3 VALUES(14556, 46670, 'forty-six thousand six hundred seventy');\nINSERT INTO t3 VALUES(14557, 91736, 'ninety-one thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(14558, 17262, 'seventeen thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(14559, 78245, 'seventy-eight thousand two hundred forty-five');\nINSERT INTO t3 VALUES(14560, 97168, 'ninety-seven thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(14561, 80533, 'eighty thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(14562, 55311, 'fifty-five thousand three hundred eleven');\nINSERT INTO t3 VALUES(14563, 54210, 'fifty-four thousand two hundred ten');\nINSERT INTO t3 VALUES(14564, 48670, 'forty-eight thousand six hundred seventy');\nINSERT INTO t3 VALUES(14565, 69117, 'sixty-nine thousand one hundred seventeen');\nINSERT INTO t3 VALUES(14566, 45768, 'forty-five thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(14567, 15407, 'fifteen thousand four hundred seven');\nINSERT INTO t3 VALUES(14568, 50050, 'fifty thousand fifty');\nINSERT INTO t3 VALUES(14569, 94177, 'ninety-four thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(14570, 48762, 'forty-eight thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(14571, 8834, 'eight thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(14572, 21433, 'twenty-one thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(14573, 14194, 'fourteen thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(14574, 38715, 'thirty-eight thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(14575, 62721, 'sixty-two thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(14576, 2339, 'two thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(14577, 35936, 'thirty-five thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(14578, 62465, 'sixty-two thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(14579, 31586, 'thirty-one thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(14580, 95906, 'ninety-five thousand nine hundred six');\nINSERT INTO t3 VALUES(14581, 71334, 'seventy-one thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(14582, 84597, 'eighty-four thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(14583, 43360, 'forty-three thousand three hundred sixty');\nINSERT INTO t3 VALUES(14584, 38515, 'thirty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(14585, 76042, 'seventy-six thousand forty-two');\nINSERT INTO t3 VALUES(14586, 96336, 'ninety-six thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(14587, 42584, 'forty-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(14588, 13018, 'thirteen thousand eighteen');\nINSERT INTO t3 VALUES(14589, 17527, 'seventeen thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(14590, 18176, 'eighteen thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(14591, 545, 'five hundred forty-five');\nINSERT INTO t3 VALUES(14592, 33773, 'thirty-three thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(14593, 56040, 'fifty-six thousand forty');\nINSERT INTO t3 VALUES(14594, 78879, 'seventy-eight thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(14595, 19897, 'nineteen thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(14596, 65648, 'sixty-five thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(14597, 76673, 'seventy-six thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(14598, 61800, 'sixty-one thousand eight hundred');\nINSERT INTO t3 VALUES(14599, 84624, 'eighty-four thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(14600, 431, 'four hundred thirty-one');\nINSERT INTO t3 VALUES(14601, 10560, 'ten thousand five hundred sixty');\nINSERT INTO t3 VALUES(14602, 21302, 'twenty-one thousand three hundred two');\nINSERT INTO t3 VALUES(14603, 39091, 'thirty-nine thousand ninety-one');\nINSERT INTO t3 VALUES(14604, 65297, 'sixty-five thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(14605, 13528, 'thirteen thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(14606, 28883, 'twenty-eight thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(14607, 28028, 'twenty-eight thousand twenty-eight');\nINSERT INTO t3 VALUES(14608, 81862, 'eighty-one thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(14609, 43381, 'forty-three thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(14610, 16975, 'sixteen thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(14611, 8729, 'eight thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(14612, 61607, 'sixty-one thousand six hundred seven');\nINSERT INTO t3 VALUES(14613, 8924, 'eight thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(14614, 45396, 'forty-five thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(14615, 18785, 'eighteen thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(14616, 58059, 'fifty-eight thousand fifty-nine');\nINSERT INTO t3 VALUES(14617, 7730, 'seven thousand seven hundred thirty');\nINSERT INTO t3 VALUES(14618, 92665, 'ninety-two thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(14619, 11839, 'eleven thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(14620, 14363, 'fourteen thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(14621, 44468, 'forty-four thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(14622, 1261, 'one thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(14623, 70566, 'seventy thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(14624, 84631, 'eighty-four thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(14625, 29741, 'twenty-nine thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(14626, 23415, 'twenty-three thousand four hundred fifteen');\nINSERT INTO t3 VALUES(14627, 16647, 'sixteen thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(14628, 96296, 'ninety-six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(14629, 22149, 'twenty-two thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(14630, 96119, 'ninety-six thousand one hundred nineteen');\nINSERT INTO t3 VALUES(14631, 84117, 'eighty-four thousand one hundred seventeen');\nINSERT INTO t3 VALUES(14632, 74454, 'seventy-four thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(14633, 35335, 'thirty-five thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(14634, 17656, 'seventeen thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(14635, 48971, 'forty-eight thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(14636, 30253, 'thirty thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(14637, 69918, 'sixty-nine thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(14638, 15651, 'fifteen thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(14639, 23684, 'twenty-three thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(14640, 53382, 'fifty-three thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(14641, 60408, 'sixty thousand four hundred eight');\nINSERT INTO t3 VALUES(14642, 92, 'ninety-two');\nINSERT INTO t3 VALUES(14643, 96043, 'ninety-six thousand forty-three');\nINSERT INTO t3 VALUES(14644, 32274, 'thirty-two thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(14645, 33194, 'thirty-three thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(14646, 27182, 'twenty-seven thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(14647, 25971, 'twenty-five thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(14648, 61471, 'sixty-one thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(14649, 76607, 'seventy-six thousand six hundred seven');\nINSERT INTO t3 VALUES(14650, 66598, 'sixty-six thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(14651, 73046, 'seventy-three thousand forty-six');\nINSERT INTO t3 VALUES(14652, 60290, 'sixty thousand two hundred ninety');\nINSERT INTO t3 VALUES(14653, 49954, 'forty-nine thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(14654, 40613, 'forty thousand six hundred thirteen');\nINSERT INTO t3 VALUES(14655, 18493, 'eighteen thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(14656, 47749, 'forty-seven thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(14657, 10241, 'ten thousand two hundred forty-one');\nINSERT INTO t3 VALUES(14658, 41418, 'forty-one thousand four hundred eighteen');\nINSERT INTO t3 VALUES(14659, 63347, 'sixty-three thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(14660, 96691, 'ninety-six thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(14661, 36200, 'thirty-six thousand two hundred');\nINSERT INTO t3 VALUES(14662, 40970, 'forty thousand nine hundred seventy');\nINSERT INTO t3 VALUES(14663, 50620, 'fifty thousand six hundred twenty');\nINSERT INTO t3 VALUES(14664, 9166, 'nine thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(14665, 79757, 'seventy-nine thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(14666, 16569, 'sixteen thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(14667, 58815, 'fifty-eight thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(14668, 40528, 'forty thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(14669, 94154, 'ninety-four thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(14670, 26496, 'twenty-six thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(14671, 26876, 'twenty-six thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(14672, 37035, 'thirty-seven thousand thirty-five');\nINSERT INTO t3 VALUES(14673, 9839, 'nine thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(14674, 86149, 'eighty-six thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(14675, 1814, 'one thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(14676, 52484, 'fifty-two thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(14677, 27971, 'twenty-seven thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(14678, 83691, 'eighty-three thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(14679, 90928, 'ninety thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(14680, 38663, 'thirty-eight thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(14681, 1772, 'one thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(14682, 61583, 'sixty-one thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(14683, 53255, 'fifty-three thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(14684, 99600, 'ninety-nine thousand six hundred');\nINSERT INTO t3 VALUES(14685, 76202, 'seventy-six thousand two hundred two');\nINSERT INTO t3 VALUES(14686, 44120, 'forty-four thousand one hundred twenty');\nINSERT INTO t3 VALUES(14687, 24322, 'twenty-four thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(14688, 21637, 'twenty-one thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(14689, 67258, 'sixty-seven thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(14690, 68273, 'sixty-eight thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(14691, 80361, 'eighty thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(14692, 68710, 'sixty-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(14693, 67598, 'sixty-seven thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(14694, 89210, 'eighty-nine thousand two hundred ten');\nINSERT INTO t3 VALUES(14695, 7539, 'seven thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(14696, 97320, 'ninety-seven thousand three hundred twenty');\nINSERT INTO t3 VALUES(14697, 25192, 'twenty-five thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(14698, 94338, 'ninety-four thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(14699, 35995, 'thirty-five thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(14700, 90606, 'ninety thousand six hundred six');\nINSERT INTO t3 VALUES(14701, 10162, 'ten thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(14702, 96067, 'ninety-six thousand sixty-seven');\nINSERT INTO t3 VALUES(14703, 47228, 'forty-seven thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(14704, 24641, 'twenty-four thousand six hundred forty-one');\nINSERT INTO t3 VALUES(14705, 23059, 'twenty-three thousand fifty-nine');\nINSERT INTO t3 VALUES(14706, 10987, 'ten thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(14707, 43983, 'forty-three thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(14708, 91510, 'ninety-one thousand five hundred ten');\nINSERT INTO t3 VALUES(14709, 37927, 'thirty-seven thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(14710, 76941, 'seventy-six thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(14711, 79922, 'seventy-nine thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(14712, 49050, 'forty-nine thousand fifty');\nINSERT INTO t3 VALUES(14713, 58439, 'fifty-eight thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(14714, 28349, 'twenty-eight thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(14715, 94768, 'ninety-four thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(14716, 46010, 'forty-six thousand ten');\nINSERT INTO t3 VALUES(14717, 93285, 'ninety-three thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(14718, 76260, 'seventy-six thousand two hundred sixty');\nINSERT INTO t3 VALUES(14719, 40291, 'forty thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(14720, 58924, 'fifty-eight thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(14721, 7485, 'seven thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(14722, 2979, 'two thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(14723, 96733, 'ninety-six thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(14724, 88617, 'eighty-eight thousand six hundred seventeen');\nINSERT INTO t3 VALUES(14725, 46276, 'forty-six thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(14726, 93069, 'ninety-three thousand sixty-nine');\nINSERT INTO t3 VALUES(14727, 28286, 'twenty-eight thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(14728, 54933, 'fifty-four thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(14729, 10434, 'ten thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(14730, 50818, 'fifty thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(14731, 64699, 'sixty-four thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(14732, 77213, 'seventy-seven thousand two hundred thirteen');\nINSERT INTO t3 VALUES(14733, 31291, 'thirty-one thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(14734, 86987, 'eighty-six thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(14735, 12738, 'twelve thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(14736, 33222, 'thirty-three thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(14737, 64977, 'sixty-four thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(14738, 99141, 'ninety-nine thousand one hundred forty-one');\nINSERT INTO t3 VALUES(14739, 89130, 'eighty-nine thousand one hundred thirty');\nINSERT INTO t3 VALUES(14740, 65348, 'sixty-five thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(14741, 18826, 'eighteen thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(14742, 82411, 'eighty-two thousand four hundred eleven');\nINSERT INTO t3 VALUES(14743, 83515, 'eighty-three thousand five hundred fifteen');\nINSERT INTO t3 VALUES(14744, 16623, 'sixteen thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(14745, 29742, 'twenty-nine thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(14746, 97023, 'ninety-seven thousand twenty-three');\nINSERT INTO t3 VALUES(14747, 21967, 'twenty-one thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(14748, 15804, 'fifteen thousand eight hundred four');\nINSERT INTO t3 VALUES(14749, 84800, 'eighty-four thousand eight hundred');\nINSERT INTO t3 VALUES(14750, 63397, 'sixty-three thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(14751, 49999, 'forty-nine thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(14752, 3108, 'three thousand one hundred eight');\nINSERT INTO t3 VALUES(14753, 87015, 'eighty-seven thousand fifteen');\nINSERT INTO t3 VALUES(14754, 42119, 'forty-two thousand one hundred nineteen');\nINSERT INTO t3 VALUES(14755, 31636, 'thirty-one thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(14756, 33528, 'thirty-three thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(14757, 65330, 'sixty-five thousand three hundred thirty');\nINSERT INTO t3 VALUES(14758, 69672, 'sixty-nine thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(14759, 81612, 'eighty-one thousand six hundred twelve');\nINSERT INTO t3 VALUES(14760, 34074, 'thirty-four thousand seventy-four');\nINSERT INTO t3 VALUES(14761, 7038, 'seven thousand thirty-eight');\nINSERT INTO t3 VALUES(14762, 73759, 'seventy-three thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(14763, 26853, 'twenty-six thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(14764, 79302, 'seventy-nine thousand three hundred two');\nINSERT INTO t3 VALUES(14765, 23506, 'twenty-three thousand five hundred six');\nINSERT INTO t3 VALUES(14766, 69411, 'sixty-nine thousand four hundred eleven');\nINSERT INTO t3 VALUES(14767, 11155, 'eleven thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(14768, 40620, 'forty thousand six hundred twenty');\nINSERT INTO t3 VALUES(14769, 18344, 'eighteen thousand three hundred forty-four');\nINSERT INTO t3 VALUES(14770, 22042, 'twenty-two thousand forty-two');\nINSERT INTO t3 VALUES(14771, 22681, 'twenty-two thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(14772, 71667, 'seventy-one thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(14773, 51150, 'fifty-one thousand one hundred fifty');\nINSERT INTO t3 VALUES(14774, 28543, 'twenty-eight thousand five hundred forty-three');\nINSERT INTO t3 VALUES(14775, 14495, 'fourteen thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(14776, 52373, 'fifty-two thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(14777, 20145, 'twenty thousand one hundred forty-five');\nINSERT INTO t3 VALUES(14778, 25804, 'twenty-five thousand eight hundred four');\nINSERT INTO t3 VALUES(14779, 75745, 'seventy-five thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(14780, 2670, 'two thousand six hundred seventy');\nINSERT INTO t3 VALUES(14781, 31554, 'thirty-one thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(14782, 60319, 'sixty thousand three hundred nineteen');\nINSERT INTO t3 VALUES(14783, 94965, 'ninety-four thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(14784, 68317, 'sixty-eight thousand three hundred seventeen');\nINSERT INTO t3 VALUES(14785, 65496, 'sixty-five thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(14786, 14829, 'fourteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(14787, 62039, 'sixty-two thousand thirty-nine');\nINSERT INTO t3 VALUES(14788, 78255, 'seventy-eight thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(14789, 55623, 'fifty-five thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(14790, 89645, 'eighty-nine thousand six hundred forty-five');\nINSERT INTO t3 VALUES(14791, 83493, 'eighty-three thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(14792, 29073, 'twenty-nine thousand seventy-three');\nINSERT INTO t3 VALUES(14793, 58226, 'fifty-eight thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(14794, 18239, 'eighteen thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(14795, 24851, 'twenty-four thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(14796, 48202, 'forty-eight thousand two hundred two');\nINSERT INTO t3 VALUES(14797, 96300, 'ninety-six thousand three hundred');\nINSERT INTO t3 VALUES(14798, 44737, 'forty-four thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(14799, 26558, 'twenty-six thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(14800, 98718, 'ninety-eight thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(14801, 26845, 'twenty-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(14802, 64692, 'sixty-four thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(14803, 5671, 'five thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(14804, 19624, 'nineteen thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(14805, 14552, 'fourteen thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(14806, 50990, 'fifty thousand nine hundred ninety');\nINSERT INTO t3 VALUES(14807, 13238, 'thirteen thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(14808, 93617, 'ninety-three thousand six hundred seventeen');\nINSERT INTO t3 VALUES(14809, 40089, 'forty thousand eighty-nine');\nINSERT INTO t3 VALUES(14810, 88897, 'eighty-eight thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(14811, 84395, 'eighty-four thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(14812, 8229, 'eight thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(14813, 45799, 'forty-five thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(14814, 41014, 'forty-one thousand fourteen');\nINSERT INTO t3 VALUES(14815, 23969, 'twenty-three thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(14816, 90422, 'ninety thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(14817, 76993, 'seventy-six thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(14818, 4635, 'four thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(14819, 61719, 'sixty-one thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(14820, 63981, 'sixty-three thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(14821, 72436, 'seventy-two thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(14822, 76396, 'seventy-six thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(14823, 36606, 'thirty-six thousand six hundred six');\nINSERT INTO t3 VALUES(14824, 25753, 'twenty-five thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(14825, 2595, 'two thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(14826, 26604, 'twenty-six thousand six hundred four');\nINSERT INTO t3 VALUES(14827, 79310, 'seventy-nine thousand three hundred ten');\nINSERT INTO t3 VALUES(14828, 14786, 'fourteen thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(14829, 63633, 'sixty-three thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(14830, 28430, 'twenty-eight thousand four hundred thirty');\nINSERT INTO t3 VALUES(14831, 84113, 'eighty-four thousand one hundred thirteen');\nINSERT INTO t3 VALUES(14832, 13312, 'thirteen thousand three hundred twelve');\nINSERT INTO t3 VALUES(14833, 2072, 'two thousand seventy-two');\nINSERT INTO t3 VALUES(14834, 95674, 'ninety-five thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(14835, 26157, 'twenty-six thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(14836, 36267, 'thirty-six thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(14837, 62430, 'sixty-two thousand four hundred thirty');\nINSERT INTO t3 VALUES(14838, 37766, 'thirty-seven thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(14839, 76086, 'seventy-six thousand eighty-six');\nINSERT INTO t3 VALUES(14840, 26475, 'twenty-six thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(14841, 43407, 'forty-three thousand four hundred seven');\nINSERT INTO t3 VALUES(14842, 22528, 'twenty-two thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(14843, 44323, 'forty-four thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(14844, 41830, 'forty-one thousand eight hundred thirty');\nINSERT INTO t3 VALUES(14845, 96621, 'ninety-six thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(14846, 33664, 'thirty-three thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(14847, 71976, 'seventy-one thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(14848, 4884, 'four thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(14849, 23942, 'twenty-three thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(14850, 82899, 'eighty-two thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(14851, 11813, 'eleven thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(14852, 71725, 'seventy-one thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(14853, 31297, 'thirty-one thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(14854, 29492, 'twenty-nine thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(14855, 48771, 'forty-eight thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(14856, 45991, 'forty-five thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(14857, 10437, 'ten thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(14858, 54922, 'fifty-four thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(14859, 19106, 'nineteen thousand one hundred six');\nINSERT INTO t3 VALUES(14860, 48819, 'forty-eight thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(14861, 2515, 'two thousand five hundred fifteen');\nINSERT INTO t3 VALUES(14862, 65063, 'sixty-five thousand sixty-three');\nINSERT INTO t3 VALUES(14863, 33414, 'thirty-three thousand four hundred fourteen');\nINSERT INTO t3 VALUES(14864, 66107, 'sixty-six thousand one hundred seven');\nINSERT INTO t3 VALUES(14865, 5307, 'five thousand three hundred seven');\nINSERT INTO t3 VALUES(14866, 979, 'nine hundred seventy-nine');\nINSERT INTO t3 VALUES(14867, 49605, 'forty-nine thousand six hundred five');\nINSERT INTO t3 VALUES(14868, 6170, 'six thousand one hundred seventy');\nINSERT INTO t3 VALUES(14869, 28136, 'twenty-eight thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(14870, 95342, 'ninety-five thousand three hundred forty-two');\nINSERT INTO t3 VALUES(14871, 20883, 'twenty thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(14872, 70619, 'seventy thousand six hundred nineteen');\nINSERT INTO t3 VALUES(14873, 89998, 'eighty-nine thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(14874, 26091, 'twenty-six thousand ninety-one');\nINSERT INTO t3 VALUES(14875, 10527, 'ten thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(14876, 81134, 'eighty-one thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(14877, 39098, 'thirty-nine thousand ninety-eight');\nINSERT INTO t3 VALUES(14878, 70841, 'seventy thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(14879, 51836, 'fifty-one thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(14880, 4935, 'four thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(14881, 7788, 'seven thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(14882, 90595, 'ninety thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(14883, 4865, 'four thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(14884, 88060, 'eighty-eight thousand sixty');\nINSERT INTO t3 VALUES(14885, 20560, 'twenty thousand five hundred sixty');\nINSERT INTO t3 VALUES(14886, 93983, 'ninety-three thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(14887, 4848, 'four thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(14888, 41796, 'forty-one thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(14889, 4761, 'four thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(14890, 93682, 'ninety-three thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(14891, 54567, 'fifty-four thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(14892, 64420, 'sixty-four thousand four hundred twenty');\nINSERT INTO t3 VALUES(14893, 97054, 'ninety-seven thousand fifty-four');\nINSERT INTO t3 VALUES(14894, 53773, 'fifty-three thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(14895, 29994, 'twenty-nine thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(14896, 4332, 'four thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(14897, 88187, 'eighty-eight thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(14898, 38629, 'thirty-eight thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(14899, 91071, 'ninety-one thousand seventy-one');\nINSERT INTO t3 VALUES(14900, 47748, 'forty-seven thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(14901, 65322, 'sixty-five thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(14902, 32041, 'thirty-two thousand forty-one');\nINSERT INTO t3 VALUES(14903, 20425, 'twenty thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(14904, 29704, 'twenty-nine thousand seven hundred four');\nINSERT INTO t3 VALUES(14905, 36747, 'thirty-six thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(14906, 72935, 'seventy-two thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(14907, 66552, 'sixty-six thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(14908, 71347, 'seventy-one thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(14909, 21914, 'twenty-one thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(14910, 75330, 'seventy-five thousand three hundred thirty');\nINSERT INTO t3 VALUES(14911, 74040, 'seventy-four thousand forty');\nINSERT INTO t3 VALUES(14912, 38239, 'thirty-eight thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(14913, 53106, 'fifty-three thousand one hundred six');\nINSERT INTO t3 VALUES(14914, 54499, 'fifty-four thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(14915, 12373, 'twelve thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(14916, 85494, 'eighty-five thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(14917, 32666, 'thirty-two thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(14918, 55173, 'fifty-five thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(14919, 97205, 'ninety-seven thousand two hundred five');\nINSERT INTO t3 VALUES(14920, 33136, 'thirty-three thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(14921, 97678, 'ninety-seven thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(14922, 21070, 'twenty-one thousand seventy');\nINSERT INTO t3 VALUES(14923, 35605, 'thirty-five thousand six hundred five');\nINSERT INTO t3 VALUES(14924, 29698, 'twenty-nine thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(14925, 76243, 'seventy-six thousand two hundred forty-three');\nINSERT INTO t3 VALUES(14926, 19999, 'nineteen thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(14927, 79076, 'seventy-nine thousand seventy-six');\nINSERT INTO t3 VALUES(14928, 65351, 'sixty-five thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(14929, 78249, 'seventy-eight thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(14930, 7308, 'seven thousand three hundred eight');\nINSERT INTO t3 VALUES(14931, 98436, 'ninety-eight thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(14932, 49595, 'forty-nine thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(14933, 96764, 'ninety-six thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(14934, 6612, 'six thousand six hundred twelve');\nINSERT INTO t3 VALUES(14935, 21010, 'twenty-one thousand ten');\nINSERT INTO t3 VALUES(14936, 41545, 'forty-one thousand five hundred forty-five');\nINSERT INTO t3 VALUES(14937, 5713, 'five thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(14938, 69238, 'sixty-nine thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(14939, 21864, 'twenty-one thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(14940, 93295, 'ninety-three thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(14941, 788, 'seven hundred eighty-eight');\nINSERT INTO t3 VALUES(14942, 32785, 'thirty-two thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(14943, 68994, 'sixty-eight thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(14944, 97350, 'ninety-seven thousand three hundred fifty');\nINSERT INTO t3 VALUES(14945, 78785, 'seventy-eight thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(14946, 93985, 'ninety-three thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(14947, 14195, 'fourteen thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(14948, 54921, 'fifty-four thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(14949, 68516, 'sixty-eight thousand five hundred sixteen');\nINSERT INTO t3 VALUES(14950, 50487, 'fifty thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(14951, 20389, 'twenty thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(14952, 37214, 'thirty-seven thousand two hundred fourteen');\nINSERT INTO t3 VALUES(14953, 29725, 'twenty-nine thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(14954, 99687, 'ninety-nine thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(14955, 89462, 'eighty-nine thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(14956, 66416, 'sixty-six thousand four hundred sixteen');\nINSERT INTO t3 VALUES(14957, 64494, 'sixty-four thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(14958, 13542, 'thirteen thousand five hundred forty-two');\nINSERT INTO t3 VALUES(14959, 57723, 'fifty-seven thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(14960, 63327, 'sixty-three thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(14961, 50067, 'fifty thousand sixty-seven');\nINSERT INTO t3 VALUES(14962, 64840, 'sixty-four thousand eight hundred forty');\nINSERT INTO t3 VALUES(14963, 25890, 'twenty-five thousand eight hundred ninety');\nINSERT INTO t3 VALUES(14964, 8217, 'eight thousand two hundred seventeen');\nINSERT INTO t3 VALUES(14965, 95393, 'ninety-five thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(14966, 34495, 'thirty-four thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(14967, 58041, 'fifty-eight thousand forty-one');\nINSERT INTO t3 VALUES(14968, 20691, 'twenty thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(14969, 38165, 'thirty-eight thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(14970, 85633, 'eighty-five thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(14971, 82115, 'eighty-two thousand one hundred fifteen');\nINSERT INTO t3 VALUES(14972, 6720, 'six thousand seven hundred twenty');\nINSERT INTO t3 VALUES(14973, 21940, 'twenty-one thousand nine hundred forty');\nINSERT INTO t3 VALUES(14974, 65468, 'sixty-five thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(14975, 37278, 'thirty-seven thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(14976, 26972, 'twenty-six thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(14977, 55929, 'fifty-five thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(14978, 94039, 'ninety-four thousand thirty-nine');\nINSERT INTO t3 VALUES(14979, 15596, 'fifteen thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(14980, 68242, 'sixty-eight thousand two hundred forty-two');\nINSERT INTO t3 VALUES(14981, 36690, 'thirty-six thousand six hundred ninety');\nINSERT INTO t3 VALUES(14982, 20648, 'twenty thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(14983, 41652, 'forty-one thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(14984, 97396, 'ninety-seven thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(14985, 65387, 'sixty-five thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(14986, 98366, 'ninety-eight thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(14987, 302, 'three hundred two');\nINSERT INTO t3 VALUES(14988, 91288, 'ninety-one thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(14989, 98564, 'ninety-eight thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(14990, 99750, 'ninety-nine thousand seven hundred fifty');\nINSERT INTO t3 VALUES(14991, 19715, 'nineteen thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(14992, 26296, 'twenty-six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(14993, 36436, 'thirty-six thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(14994, 13402, 'thirteen thousand four hundred two');\nINSERT INTO t3 VALUES(14995, 89198, 'eighty-nine thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(14996, 2298, 'two thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(14997, 31320, 'thirty-one thousand three hundred twenty');\nINSERT INTO t3 VALUES(14998, 42469, 'forty-two thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(14999, 98056, 'ninety-eight thousand fifty-six');\nINSERT INTO t3 VALUES(15000, 24312, 'twenty-four thousand three hundred twelve');\nINSERT INTO t3 VALUES(15001, 48459, 'forty-eight thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(15002, 78491, 'seventy-eight thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(15003, 57934, 'fifty-seven thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(15004, 60247, 'sixty thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(15005, 2389, 'two thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(15006, 11267, 'eleven thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(15007, 70173, 'seventy thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(15008, 47493, 'forty-seven thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(15009, 33183, 'thirty-three thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(15010, 83222, 'eighty-three thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(15011, 51238, 'fifty-one thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(15012, 69383, 'sixty-nine thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(15013, 29037, 'twenty-nine thousand thirty-seven');\nINSERT INTO t3 VALUES(15014, 40275, 'forty thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(15015, 65086, 'sixty-five thousand eighty-six');\nINSERT INTO t3 VALUES(15016, 28340, 'twenty-eight thousand three hundred forty');\nINSERT INTO t3 VALUES(15017, 41656, 'forty-one thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(15018, 12641, 'twelve thousand six hundred forty-one');\nINSERT INTO t3 VALUES(15019, 94465, 'ninety-four thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(15020, 32260, 'thirty-two thousand two hundred sixty');\nINSERT INTO t3 VALUES(15021, 40288, 'forty thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(15022, 12452, 'twelve thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(15023, 919, 'nine hundred nineteen');\nINSERT INTO t3 VALUES(15024, 64311, 'sixty-four thousand three hundred eleven');\nINSERT INTO t3 VALUES(15025, 30233, 'thirty thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(15026, 61123, 'sixty-one thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(15027, 41643, 'forty-one thousand six hundred forty-three');\nINSERT INTO t3 VALUES(15028, 47552, 'forty-seven thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(15029, 34309, 'thirty-four thousand three hundred nine');\nINSERT INTO t3 VALUES(15030, 34812, 'thirty-four thousand eight hundred twelve');\nINSERT INTO t3 VALUES(15031, 87831, 'eighty-seven thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(15032, 61005, 'sixty-one thousand five');\nINSERT INTO t3 VALUES(15033, 30859, 'thirty thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(15034, 94069, 'ninety-four thousand sixty-nine');\nINSERT INTO t3 VALUES(15035, 83479, 'eighty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(15036, 5123, 'five thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(15037, 75540, 'seventy-five thousand five hundred forty');\nINSERT INTO t3 VALUES(15038, 9790, 'nine thousand seven hundred ninety');\nINSERT INTO t3 VALUES(15039, 90672, 'ninety thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(15040, 10709, 'ten thousand seven hundred nine');\nINSERT INTO t3 VALUES(15041, 8592, 'eight thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(15042, 43725, 'forty-three thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(15043, 1227, 'one thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(15044, 32559, 'thirty-two thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(15045, 1544, 'one thousand five hundred forty-four');\nINSERT INTO t3 VALUES(15046, 57811, 'fifty-seven thousand eight hundred eleven');\nINSERT INTO t3 VALUES(15047, 78062, 'seventy-eight thousand sixty-two');\nINSERT INTO t3 VALUES(15048, 37334, 'thirty-seven thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(15049, 41926, 'forty-one thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(15050, 95826, 'ninety-five thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(15051, 58909, 'fifty-eight thousand nine hundred nine');\nINSERT INTO t3 VALUES(15052, 89262, 'eighty-nine thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(15053, 34054, 'thirty-four thousand fifty-four');\nINSERT INTO t3 VALUES(15054, 40249, 'forty thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(15055, 35047, 'thirty-five thousand forty-seven');\nINSERT INTO t3 VALUES(15056, 69988, 'sixty-nine thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(15057, 56210, 'fifty-six thousand two hundred ten');\nINSERT INTO t3 VALUES(15058, 99075, 'ninety-nine thousand seventy-five');\nINSERT INTO t3 VALUES(15059, 94545, 'ninety-four thousand five hundred forty-five');\nINSERT INTO t3 VALUES(15060, 85451, 'eighty-five thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(15061, 33577, 'thirty-three thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(15062, 59678, 'fifty-nine thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(15063, 16810, 'sixteen thousand eight hundred ten');\nINSERT INTO t3 VALUES(15064, 8853, 'eight thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(15065, 64193, 'sixty-four thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(15066, 48195, 'forty-eight thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(15067, 36665, 'thirty-six thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(15068, 31579, 'thirty-one thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(15069, 98313, 'ninety-eight thousand three hundred thirteen');\nINSERT INTO t3 VALUES(15070, 88972, 'eighty-eight thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(15071, 90902, 'ninety thousand nine hundred two');\nINSERT INTO t3 VALUES(15072, 10554, 'ten thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(15073, 39186, 'thirty-nine thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(15074, 50974, 'fifty thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(15075, 75245, 'seventy-five thousand two hundred forty-five');\nINSERT INTO t3 VALUES(15076, 53080, 'fifty-three thousand eighty');\nINSERT INTO t3 VALUES(15077, 15656, 'fifteen thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(15078, 62057, 'sixty-two thousand fifty-seven');\nINSERT INTO t3 VALUES(15079, 58774, 'fifty-eight thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(15080, 97382, 'ninety-seven thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(15081, 43349, 'forty-three thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(15082, 6745, 'six thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(15083, 27013, 'twenty-seven thousand thirteen');\nINSERT INTO t3 VALUES(15084, 9994, 'nine thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(15085, 31823, 'thirty-one thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(15086, 78388, 'seventy-eight thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(15087, 77119, 'seventy-seven thousand one hundred nineteen');\nINSERT INTO t3 VALUES(15088, 56016, 'fifty-six thousand sixteen');\nINSERT INTO t3 VALUES(15089, 42894, 'forty-two thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(15090, 66096, 'sixty-six thousand ninety-six');\nINSERT INTO t3 VALUES(15091, 85017, 'eighty-five thousand seventeen');\nINSERT INTO t3 VALUES(15092, 79847, 'seventy-nine thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(15093, 16920, 'sixteen thousand nine hundred twenty');\nINSERT INTO t3 VALUES(15094, 93099, 'ninety-three thousand ninety-nine');\nINSERT INTO t3 VALUES(15095, 35251, 'thirty-five thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(15096, 53434, 'fifty-three thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(15097, 10204, 'ten thousand two hundred four');\nINSERT INTO t3 VALUES(15098, 50288, 'fifty thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(15099, 1180, 'one thousand one hundred eighty');\nINSERT INTO t3 VALUES(15100, 96251, 'ninety-six thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(15101, 45406, 'forty-five thousand four hundred six');\nINSERT INTO t3 VALUES(15102, 53607, 'fifty-three thousand six hundred seven');\nINSERT INTO t3 VALUES(15103, 84373, 'eighty-four thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(15104, 4189, 'four thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(15105, 29865, 'twenty-nine thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(15106, 65752, 'sixty-five thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(15107, 52589, 'fifty-two thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(15108, 9791, 'nine thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(15109, 87316, 'eighty-seven thousand three hundred sixteen');\nINSERT INTO t3 VALUES(15110, 58209, 'fifty-eight thousand two hundred nine');\nINSERT INTO t3 VALUES(15111, 39764, 'thirty-nine thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(15112, 21925, 'twenty-one thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(15113, 61637, 'sixty-one thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(15114, 70146, 'seventy thousand one hundred forty-six');\nINSERT INTO t3 VALUES(15115, 27943, 'twenty-seven thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(15116, 8717, 'eight thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(15117, 5985, 'five thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(15118, 3557, 'three thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(15119, 6136, 'six thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(15120, 53281, 'fifty-three thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(15121, 52900, 'fifty-two thousand nine hundred');\nINSERT INTO t3 VALUES(15122, 16339, 'sixteen thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(15123, 2927, 'two thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(15124, 83020, 'eighty-three thousand twenty');\nINSERT INTO t3 VALUES(15125, 94829, 'ninety-four thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(15126, 8211, 'eight thousand two hundred eleven');\nINSERT INTO t3 VALUES(15127, 92871, 'ninety-two thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(15128, 81871, 'eighty-one thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(15129, 44724, 'forty-four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(15130, 20938, 'twenty thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(15131, 76790, 'seventy-six thousand seven hundred ninety');\nINSERT INTO t3 VALUES(15132, 31461, 'thirty-one thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(15133, 54190, 'fifty-four thousand one hundred ninety');\nINSERT INTO t3 VALUES(15134, 83218, 'eighty-three thousand two hundred eighteen');\nINSERT INTO t3 VALUES(15135, 9374, 'nine thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(15136, 44996, 'forty-four thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(15137, 25919, 'twenty-five thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(15138, 14401, 'fourteen thousand four hundred one');\nINSERT INTO t3 VALUES(15139, 89091, 'eighty-nine thousand ninety-one');\nINSERT INTO t3 VALUES(15140, 7094, 'seven thousand ninety-four');\nINSERT INTO t3 VALUES(15141, 89779, 'eighty-nine thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(15142, 45544, 'forty-five thousand five hundred forty-four');\nINSERT INTO t3 VALUES(15143, 61814, 'sixty-one thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(15144, 75992, 'seventy-five thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(15145, 44953, 'forty-four thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(15146, 87908, 'eighty-seven thousand nine hundred eight');\nINSERT INTO t3 VALUES(15147, 17184, 'seventeen thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(15148, 7494, 'seven thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(15149, 87607, 'eighty-seven thousand six hundred seven');\nINSERT INTO t3 VALUES(15150, 68389, 'sixty-eight thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(15151, 30805, 'thirty thousand eight hundred five');\nINSERT INTO t3 VALUES(15152, 52612, 'fifty-two thousand six hundred twelve');\nINSERT INTO t3 VALUES(15153, 32799, 'thirty-two thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(15154, 51205, 'fifty-one thousand two hundred five');\nINSERT INTO t3 VALUES(15155, 91303, 'ninety-one thousand three hundred three');\nINSERT INTO t3 VALUES(15156, 43134, 'forty-three thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(15157, 40954, 'forty thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(15158, 96839, 'ninety-six thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(15159, 26383, 'twenty-six thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(15160, 22684, 'twenty-two thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(15161, 70925, 'seventy thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(15162, 51971, 'fifty-one thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(15163, 93460, 'ninety-three thousand four hundred sixty');\nINSERT INTO t3 VALUES(15164, 96282, 'ninety-six thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(15165, 49349, 'forty-nine thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(15166, 68247, 'sixty-eight thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(15167, 87528, 'eighty-seven thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(15168, 10749, 'ten thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(15169, 7130, 'seven thousand one hundred thirty');\nINSERT INTO t3 VALUES(15170, 19408, 'nineteen thousand four hundred eight');\nINSERT INTO t3 VALUES(15171, 34355, 'thirty-four thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(15172, 7459, 'seven thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(15173, 98695, 'ninety-eight thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(15174, 74727, 'seventy-four thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(15175, 32950, 'thirty-two thousand nine hundred fifty');\nINSERT INTO t3 VALUES(15176, 73806, 'seventy-three thousand eight hundred six');\nINSERT INTO t3 VALUES(15177, 72083, 'seventy-two thousand eighty-three');\nINSERT INTO t3 VALUES(15178, 70027, 'seventy thousand twenty-seven');\nINSERT INTO t3 VALUES(15179, 30314, 'thirty thousand three hundred fourteen');\nINSERT INTO t3 VALUES(15180, 32293, 'thirty-two thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(15181, 82222, 'eighty-two thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(15182, 89715, 'eighty-nine thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(15183, 27840, 'twenty-seven thousand eight hundred forty');\nINSERT INTO t3 VALUES(15184, 54016, 'fifty-four thousand sixteen');\nINSERT INTO t3 VALUES(15185, 46942, 'forty-six thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(15186, 47854, 'forty-seven thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(15187, 29209, 'twenty-nine thousand two hundred nine');\nINSERT INTO t3 VALUES(15188, 82926, 'eighty-two thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(15189, 89013, 'eighty-nine thousand thirteen');\nINSERT INTO t3 VALUES(15190, 90638, 'ninety thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(15191, 44679, 'forty-four thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(15192, 17617, 'seventeen thousand six hundred seventeen');\nINSERT INTO t3 VALUES(15193, 85687, 'eighty-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(15194, 75840, 'seventy-five thousand eight hundred forty');\nINSERT INTO t3 VALUES(15195, 27339, 'twenty-seven thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(15196, 31892, 'thirty-one thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(15197, 14552, 'fourteen thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(15198, 98296, 'ninety-eight thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(15199, 14840, 'fourteen thousand eight hundred forty');\nINSERT INTO t3 VALUES(15200, 3633, 'three thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(15201, 88171, 'eighty-eight thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(15202, 5315, 'five thousand three hundred fifteen');\nINSERT INTO t3 VALUES(15203, 52524, 'fifty-two thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(15204, 48973, 'forty-eight thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(15205, 53065, 'fifty-three thousand sixty-five');\nINSERT INTO t3 VALUES(15206, 20083, 'twenty thousand eighty-three');\nINSERT INTO t3 VALUES(15207, 18069, 'eighteen thousand sixty-nine');\nINSERT INTO t3 VALUES(15208, 46100, 'forty-six thousand one hundred');\nINSERT INTO t3 VALUES(15209, 4467, 'four thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(15210, 39098, 'thirty-nine thousand ninety-eight');\nINSERT INTO t3 VALUES(15211, 32186, 'thirty-two thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(15212, 73930, 'seventy-three thousand nine hundred thirty');\nINSERT INTO t3 VALUES(15213, 89006, 'eighty-nine thousand six');\nINSERT INTO t3 VALUES(15214, 21675, 'twenty-one thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(15215, 13837, 'thirteen thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(15216, 30740, 'thirty thousand seven hundred forty');\nINSERT INTO t3 VALUES(15217, 53517, 'fifty-three thousand five hundred seventeen');\nINSERT INTO t3 VALUES(15218, 10831, 'ten thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(15219, 85924, 'eighty-five thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(15220, 1226, 'one thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(15221, 75393, 'seventy-five thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(15222, 27748, 'twenty-seven thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(15223, 61966, 'sixty-one thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(15224, 27482, 'twenty-seven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(15225, 34456, 'thirty-four thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(15226, 55243, 'fifty-five thousand two hundred forty-three');\nINSERT INTO t3 VALUES(15227, 81705, 'eighty-one thousand seven hundred five');\nINSERT INTO t3 VALUES(15228, 72449, 'seventy-two thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(15229, 25870, 'twenty-five thousand eight hundred seventy');\nINSERT INTO t3 VALUES(15230, 56666, 'fifty-six thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(15231, 99702, 'ninety-nine thousand seven hundred two');\nINSERT INTO t3 VALUES(15232, 38426, 'thirty-eight thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(15233, 3947, 'three thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(15234, 64428, 'sixty-four thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(15235, 75604, 'seventy-five thousand six hundred four');\nINSERT INTO t3 VALUES(15236, 69304, 'sixty-nine thousand three hundred four');\nINSERT INTO t3 VALUES(15237, 47275, 'forty-seven thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(15238, 189, 'one hundred eighty-nine');\nINSERT INTO t3 VALUES(15239, 37105, 'thirty-seven thousand one hundred five');\nINSERT INTO t3 VALUES(15240, 39332, 'thirty-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(15241, 94420, 'ninety-four thousand four hundred twenty');\nINSERT INTO t3 VALUES(15242, 88422, 'eighty-eight thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(15243, 32271, 'thirty-two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(15244, 6911, 'six thousand nine hundred eleven');\nINSERT INTO t3 VALUES(15245, 2246, 'two thousand two hundred forty-six');\nINSERT INTO t3 VALUES(15246, 57039, 'fifty-seven thousand thirty-nine');\nINSERT INTO t3 VALUES(15247, 83255, 'eighty-three thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(15248, 45845, 'forty-five thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(15249, 45221, 'forty-five thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(15250, 61423, 'sixty-one thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(15251, 32602, 'thirty-two thousand six hundred two');\nINSERT INTO t3 VALUES(15252, 56957, 'fifty-six thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(15253, 60214, 'sixty thousand two hundred fourteen');\nINSERT INTO t3 VALUES(15254, 41559, 'forty-one thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(15255, 13004, 'thirteen thousand four');\nINSERT INTO t3 VALUES(15256, 21032, 'twenty-one thousand thirty-two');\nINSERT INTO t3 VALUES(15257, 63630, 'sixty-three thousand six hundred thirty');\nINSERT INTO t3 VALUES(15258, 54179, 'fifty-four thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(15259, 99707, 'ninety-nine thousand seven hundred seven');\nINSERT INTO t3 VALUES(15260, 65951, 'sixty-five thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(15261, 76709, 'seventy-six thousand seven hundred nine');\nINSERT INTO t3 VALUES(15262, 95585, 'ninety-five thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(15263, 85603, 'eighty-five thousand six hundred three');\nINSERT INTO t3 VALUES(15264, 28235, 'twenty-eight thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(15265, 61653, 'sixty-one thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(15266, 95054, 'ninety-five thousand fifty-four');\nINSERT INTO t3 VALUES(15267, 71257, 'seventy-one thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(15268, 56321, 'fifty-six thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(15269, 29625, 'twenty-nine thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(15270, 30291, 'thirty thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(15271, 33091, 'thirty-three thousand ninety-one');\nINSERT INTO t3 VALUES(15272, 91296, 'ninety-one thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(15273, 52439, 'fifty-two thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(15274, 94504, 'ninety-four thousand five hundred four');\nINSERT INTO t3 VALUES(15275, 56825, 'fifty-six thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(15276, 85384, 'eighty-five thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(15277, 831, 'eight hundred thirty-one');\nINSERT INTO t3 VALUES(15278, 95252, 'ninety-five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(15279, 38926, 'thirty-eight thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(15280, 86963, 'eighty-six thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(15281, 56364, 'fifty-six thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(15282, 62775, 'sixty-two thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(15283, 99223, 'ninety-nine thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(15284, 88778, 'eighty-eight thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(15285, 20115, 'twenty thousand one hundred fifteen');\nINSERT INTO t3 VALUES(15286, 51919, 'fifty-one thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(15287, 98400, 'ninety-eight thousand four hundred');\nINSERT INTO t3 VALUES(15288, 44049, 'forty-four thousand forty-nine');\nINSERT INTO t3 VALUES(15289, 59049, 'fifty-nine thousand forty-nine');\nINSERT INTO t3 VALUES(15290, 38583, 'thirty-eight thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(15291, 96495, 'ninety-six thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(15292, 83335, 'eighty-three thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(15293, 78994, 'seventy-eight thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(15294, 24197, 'twenty-four thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(15295, 56202, 'fifty-six thousand two hundred two');\nINSERT INTO t3 VALUES(15296, 25225, 'twenty-five thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(15297, 29783, 'twenty-nine thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(15298, 41034, 'forty-one thousand thirty-four');\nINSERT INTO t3 VALUES(15299, 97372, 'ninety-seven thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(15300, 95756, 'ninety-five thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(15301, 40816, 'forty thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(15302, 1667, 'one thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(15303, 40673, 'forty thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(15304, 73939, 'seventy-three thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(15305, 71785, 'seventy-one thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(15306, 64919, 'sixty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(15307, 41301, 'forty-one thousand three hundred one');\nINSERT INTO t3 VALUES(15308, 95111, 'ninety-five thousand one hundred eleven');\nINSERT INTO t3 VALUES(15309, 6169, 'six thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(15310, 13050, 'thirteen thousand fifty');\nINSERT INTO t3 VALUES(15311, 6444, 'six thousand four hundred forty-four');\nINSERT INTO t3 VALUES(15312, 1395, 'one thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(15313, 31331, 'thirty-one thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(15314, 92688, 'ninety-two thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(15315, 95693, 'ninety-five thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(15316, 56211, 'fifty-six thousand two hundred eleven');\nINSERT INTO t3 VALUES(15317, 34657, 'thirty-four thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(15318, 26844, 'twenty-six thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(15319, 66581, 'sixty-six thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(15320, 40256, 'forty thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(15321, 81516, 'eighty-one thousand five hundred sixteen');\nINSERT INTO t3 VALUES(15322, 51781, 'fifty-one thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(15323, 16434, 'sixteen thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(15324, 10127, 'ten thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(15325, 41196, 'forty-one thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(15326, 64562, 'sixty-four thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(15327, 19383, 'nineteen thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(15328, 94087, 'ninety-four thousand eighty-seven');\nINSERT INTO t3 VALUES(15329, 51878, 'fifty-one thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(15330, 48812, 'forty-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(15331, 94582, 'ninety-four thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(15332, 20214, 'twenty thousand two hundred fourteen');\nINSERT INTO t3 VALUES(15333, 18830, 'eighteen thousand eight hundred thirty');\nINSERT INTO t3 VALUES(15334, 64582, 'sixty-four thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(15335, 52008, 'fifty-two thousand eight');\nINSERT INTO t3 VALUES(15336, 21911, 'twenty-one thousand nine hundred eleven');\nINSERT INTO t3 VALUES(15337, 76122, 'seventy-six thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(15338, 97286, 'ninety-seven thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(15339, 74177, 'seventy-four thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(15340, 56231, 'fifty-six thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(15341, 51242, 'fifty-one thousand two hundred forty-two');\nINSERT INTO t3 VALUES(15342, 64052, 'sixty-four thousand fifty-two');\nINSERT INTO t3 VALUES(15343, 36548, 'thirty-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(15344, 12798, 'twelve thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(15345, 18539, 'eighteen thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(15346, 89895, 'eighty-nine thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(15347, 64855, 'sixty-four thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(15348, 66380, 'sixty-six thousand three hundred eighty');\nINSERT INTO t3 VALUES(15349, 53006, 'fifty-three thousand six');\nINSERT INTO t3 VALUES(15350, 5062, 'five thousand sixty-two');\nINSERT INTO t3 VALUES(15351, 11178, 'eleven thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(15352, 72292, 'seventy-two thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(15353, 48624, 'forty-eight thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(15354, 48421, 'forty-eight thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(15355, 91356, 'ninety-one thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(15356, 5997, 'five thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(15357, 49684, 'forty-nine thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(15358, 8597, 'eight thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(15359, 87449, 'eighty-seven thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(15360, 63129, 'sixty-three thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(15361, 9320, 'nine thousand three hundred twenty');\nINSERT INTO t3 VALUES(15362, 37962, 'thirty-seven thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(15363, 56329, 'fifty-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(15364, 99423, 'ninety-nine thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(15365, 94529, 'ninety-four thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(15366, 32555, 'thirty-two thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(15367, 61818, 'sixty-one thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(15368, 79419, 'seventy-nine thousand four hundred nineteen');\nINSERT INTO t3 VALUES(15369, 48659, 'forty-eight thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(15370, 6360, 'six thousand three hundred sixty');\nINSERT INTO t3 VALUES(15371, 13590, 'thirteen thousand five hundred ninety');\nINSERT INTO t3 VALUES(15372, 65950, 'sixty-five thousand nine hundred fifty');\nINSERT INTO t3 VALUES(15373, 7124, 'seven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(15374, 30300, 'thirty thousand three hundred');\nINSERT INTO t3 VALUES(15375, 44695, 'forty-four thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(15376, 51090, 'fifty-one thousand ninety');\nINSERT INTO t3 VALUES(15377, 64297, 'sixty-four thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(15378, 75586, 'seventy-five thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(15379, 44763, 'forty-four thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(15380, 76894, 'seventy-six thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(15381, 58198, 'fifty-eight thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(15382, 66968, 'sixty-six thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(15383, 41683, 'forty-one thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(15384, 62876, 'sixty-two thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(15385, 88946, 'eighty-eight thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(15386, 94781, 'ninety-four thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(15387, 75499, 'seventy-five thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(15388, 9810, 'nine thousand eight hundred ten');\nINSERT INTO t3 VALUES(15389, 76002, 'seventy-six thousand two');\nINSERT INTO t3 VALUES(15390, 50520, 'fifty thousand five hundred twenty');\nINSERT INTO t3 VALUES(15391, 73645, 'seventy-three thousand six hundred forty-five');\nINSERT INTO t3 VALUES(15392, 47325, 'forty-seven thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(15393, 9843, 'nine thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(15394, 94023, 'ninety-four thousand twenty-three');\nINSERT INTO t3 VALUES(15395, 67362, 'sixty-seven thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(15396, 24942, 'twenty-four thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(15397, 32226, 'thirty-two thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(15398, 33866, 'thirty-three thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(15399, 51620, 'fifty-one thousand six hundred twenty');\nINSERT INTO t3 VALUES(15400, 38992, 'thirty-eight thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(15401, 36468, 'thirty-six thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(15402, 73214, 'seventy-three thousand two hundred fourteen');\nINSERT INTO t3 VALUES(15403, 14517, 'fourteen thousand five hundred seventeen');\nINSERT INTO t3 VALUES(15404, 59435, 'fifty-nine thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(15405, 12805, 'twelve thousand eight hundred five');\nINSERT INTO t3 VALUES(15406, 9955, 'nine thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(15407, 82672, 'eighty-two thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(15408, 44340, 'forty-four thousand three hundred forty');\nINSERT INTO t3 VALUES(15409, 57866, 'fifty-seven thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(15410, 19575, 'nineteen thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(15411, 47928, 'forty-seven thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(15412, 90723, 'ninety thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(15413, 99434, 'ninety-nine thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(15414, 1969, 'one thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(15415, 82788, 'eighty-two thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(15416, 5265, 'five thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(15417, 47184, 'forty-seven thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(15418, 14677, 'fourteen thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(15419, 76920, 'seventy-six thousand nine hundred twenty');\nINSERT INTO t3 VALUES(15420, 22209, 'twenty-two thousand two hundred nine');\nINSERT INTO t3 VALUES(15421, 58818, 'fifty-eight thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(15422, 70708, 'seventy thousand seven hundred eight');\nINSERT INTO t3 VALUES(15423, 45378, 'forty-five thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(15424, 42092, 'forty-two thousand ninety-two');\nINSERT INTO t3 VALUES(15425, 6883, 'six thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(15426, 20513, 'twenty thousand five hundred thirteen');\nINSERT INTO t3 VALUES(15427, 65932, 'sixty-five thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(15428, 73963, 'seventy-three thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(15429, 18038, 'eighteen thousand thirty-eight');\nINSERT INTO t3 VALUES(15430, 74803, 'seventy-four thousand eight hundred three');\nINSERT INTO t3 VALUES(15431, 31482, 'thirty-one thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(15432, 81695, 'eighty-one thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(15433, 68728, 'sixty-eight thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(15434, 67661, 'sixty-seven thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(15435, 54724, 'fifty-four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(15436, 5391, 'five thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(15437, 44146, 'forty-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(15438, 90343, 'ninety thousand three hundred forty-three');\nINSERT INTO t3 VALUES(15439, 95208, 'ninety-five thousand two hundred eight');\nINSERT INTO t3 VALUES(15440, 64272, 'sixty-four thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(15441, 99068, 'ninety-nine thousand sixty-eight');\nINSERT INTO t3 VALUES(15442, 31652, 'thirty-one thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(15443, 40310, 'forty thousand three hundred ten');\nINSERT INTO t3 VALUES(15444, 96665, 'ninety-six thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(15445, 60894, 'sixty thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(15446, 54553, 'fifty-four thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(15447, 19617, 'nineteen thousand six hundred seventeen');\nINSERT INTO t3 VALUES(15448, 27605, 'twenty-seven thousand six hundred five');\nINSERT INTO t3 VALUES(15449, 57490, 'fifty-seven thousand four hundred ninety');\nINSERT INTO t3 VALUES(15450, 81444, 'eighty-one thousand four hundred forty-four');\nINSERT INTO t3 VALUES(15451, 30833, 'thirty thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(15452, 76711, 'seventy-six thousand seven hundred eleven');\nINSERT INTO t3 VALUES(15453, 9248, 'nine thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(15454, 37547, 'thirty-seven thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(15455, 2020, 'two thousand twenty');\nINSERT INTO t3 VALUES(15456, 43137, 'forty-three thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(15457, 45929, 'forty-five thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(15458, 67445, 'sixty-seven thousand four hundred forty-five');\nINSERT INTO t3 VALUES(15459, 3117, 'three thousand one hundred seventeen');\nINSERT INTO t3 VALUES(15460, 91073, 'ninety-one thousand seventy-three');\nINSERT INTO t3 VALUES(15461, 93809, 'ninety-three thousand eight hundred nine');\nINSERT INTO t3 VALUES(15462, 60740, 'sixty thousand seven hundred forty');\nINSERT INTO t3 VALUES(15463, 84024, 'eighty-four thousand twenty-four');\nINSERT INTO t3 VALUES(15464, 25320, 'twenty-five thousand three hundred twenty');\nINSERT INTO t3 VALUES(15465, 7755, 'seven thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(15466, 55645, 'fifty-five thousand six hundred forty-five');\nINSERT INTO t3 VALUES(15467, 12025, 'twelve thousand twenty-five');\nINSERT INTO t3 VALUES(15468, 88285, 'eighty-eight thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(15469, 68818, 'sixty-eight thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(15470, 74935, 'seventy-four thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(15471, 18407, 'eighteen thousand four hundred seven');\nINSERT INTO t3 VALUES(15472, 72695, 'seventy-two thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(15473, 95558, 'ninety-five thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(15474, 95336, 'ninety-five thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(15475, 81969, 'eighty-one thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(15476, 70686, 'seventy thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(15477, 71231, 'seventy-one thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(15478, 24524, 'twenty-four thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(15479, 94822, 'ninety-four thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(15480, 19421, 'nineteen thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(15481, 30813, 'thirty thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(15482, 93902, 'ninety-three thousand nine hundred two');\nINSERT INTO t3 VALUES(15483, 94260, 'ninety-four thousand two hundred sixty');\nINSERT INTO t3 VALUES(15484, 60975, 'sixty thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(15485, 72872, 'seventy-two thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(15486, 65741, 'sixty-five thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(15487, 82101, 'eighty-two thousand one hundred one');\nINSERT INTO t3 VALUES(15488, 14434, 'fourteen thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(15489, 40356, 'forty thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(15490, 17390, 'seventeen thousand three hundred ninety');\nINSERT INTO t3 VALUES(15491, 43054, 'forty-three thousand fifty-four');\nINSERT INTO t3 VALUES(15492, 30814, 'thirty thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(15493, 78776, 'seventy-eight thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(15494, 3878, 'three thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(15495, 84175, 'eighty-four thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(15496, 2918, 'two thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(15497, 77896, 'seventy-seven thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(15498, 78047, 'seventy-eight thousand forty-seven');\nINSERT INTO t3 VALUES(15499, 91207, 'ninety-one thousand two hundred seven');\nINSERT INTO t3 VALUES(15500, 32139, 'thirty-two thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(15501, 350, 'three hundred fifty');\nINSERT INTO t3 VALUES(15502, 9474, 'nine thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(15503, 26932, 'twenty-six thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(15504, 32224, 'thirty-two thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(15505, 27952, 'twenty-seven thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(15506, 56252, 'fifty-six thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(15507, 31413, 'thirty-one thousand four hundred thirteen');\nINSERT INTO t3 VALUES(15508, 51205, 'fifty-one thousand two hundred five');\nINSERT INTO t3 VALUES(15509, 44065, 'forty-four thousand sixty-five');\nINSERT INTO t3 VALUES(15510, 1268, 'one thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(15511, 46053, 'forty-six thousand fifty-three');\nINSERT INTO t3 VALUES(15512, 26724, 'twenty-six thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(15513, 3986, 'three thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(15514, 31623, 'thirty-one thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(15515, 47262, 'forty-seven thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(15516, 32036, 'thirty-two thousand thirty-six');\nINSERT INTO t3 VALUES(15517, 84270, 'eighty-four thousand two hundred seventy');\nINSERT INTO t3 VALUES(15518, 57826, 'fifty-seven thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(15519, 69694, 'sixty-nine thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(15520, 86780, 'eighty-six thousand seven hundred eighty');\nINSERT INTO t3 VALUES(15521, 29766, 'twenty-nine thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(15522, 70457, 'seventy thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(15523, 12357, 'twelve thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(15524, 6569, 'six thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(15525, 57650, 'fifty-seven thousand six hundred fifty');\nINSERT INTO t3 VALUES(15526, 42102, 'forty-two thousand one hundred two');\nINSERT INTO t3 VALUES(15527, 491, 'four hundred ninety-one');\nINSERT INTO t3 VALUES(15528, 8547, 'eight thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(15529, 3720, 'three thousand seven hundred twenty');\nINSERT INTO t3 VALUES(15530, 20799, 'twenty thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(15531, 48268, 'forty-eight thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(15532, 72420, 'seventy-two thousand four hundred twenty');\nINSERT INTO t3 VALUES(15533, 44593, 'forty-four thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(15534, 87184, 'eighty-seven thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(15535, 37084, 'thirty-seven thousand eighty-four');\nINSERT INTO t3 VALUES(15536, 98810, 'ninety-eight thousand eight hundred ten');\nINSERT INTO t3 VALUES(15537, 71066, 'seventy-one thousand sixty-six');\nINSERT INTO t3 VALUES(15538, 92659, 'ninety-two thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(15539, 44022, 'forty-four thousand twenty-two');\nINSERT INTO t3 VALUES(15540, 45634, 'forty-five thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(15541, 57085, 'fifty-seven thousand eighty-five');\nINSERT INTO t3 VALUES(15542, 73174, 'seventy-three thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(15543, 1105, 'one thousand one hundred five');\nINSERT INTO t3 VALUES(15544, 88577, 'eighty-eight thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(15545, 48066, 'forty-eight thousand sixty-six');\nINSERT INTO t3 VALUES(15546, 4841, 'four thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(15547, 76625, 'seventy-six thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(15548, 40559, 'forty thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(15549, 21395, 'twenty-one thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(15550, 6657, 'six thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(15551, 27024, 'twenty-seven thousand twenty-four');\nINSERT INTO t3 VALUES(15552, 15913, 'fifteen thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(15553, 63823, 'sixty-three thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(15554, 68258, 'sixty-eight thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(15555, 40155, 'forty thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(15556, 75624, 'seventy-five thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(15557, 74218, 'seventy-four thousand two hundred eighteen');\nINSERT INTO t3 VALUES(15558, 57172, 'fifty-seven thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(15559, 35342, 'thirty-five thousand three hundred forty-two');\nINSERT INTO t3 VALUES(15560, 95966, 'ninety-five thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(15561, 1465, 'one thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(15562, 71536, 'seventy-one thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(15563, 84352, 'eighty-four thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(15564, 31812, 'thirty-one thousand eight hundred twelve');\nINSERT INTO t3 VALUES(15565, 23847, 'twenty-three thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(15566, 21254, 'twenty-one thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(15567, 85969, 'eighty-five thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(15568, 98266, 'ninety-eight thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(15569, 22063, 'twenty-two thousand sixty-three');\nINSERT INTO t3 VALUES(15570, 35764, 'thirty-five thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(15571, 4904, 'four thousand nine hundred four');\nINSERT INTO t3 VALUES(15572, 19127, 'nineteen thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(15573, 32867, 'thirty-two thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(15574, 88541, 'eighty-eight thousand five hundred forty-one');\nINSERT INTO t3 VALUES(15575, 87898, 'eighty-seven thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(15576, 98948, 'ninety-eight thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(15577, 93534, 'ninety-three thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(15578, 92973, 'ninety-two thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(15579, 78496, 'seventy-eight thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(15580, 66900, 'sixty-six thousand nine hundred');\nINSERT INTO t3 VALUES(15581, 97447, 'ninety-seven thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(15582, 89535, 'eighty-nine thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(15583, 70522, 'seventy thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(15584, 14458, 'fourteen thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(15585, 18063, 'eighteen thousand sixty-three');\nINSERT INTO t3 VALUES(15586, 80696, 'eighty thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(15587, 95327, 'ninety-five thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(15588, 50265, 'fifty thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(15589, 73877, 'seventy-three thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(15590, 84161, 'eighty-four thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(15591, 44658, 'forty-four thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(15592, 42609, 'forty-two thousand six hundred nine');\nINSERT INTO t3 VALUES(15593, 84581, 'eighty-four thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(15594, 66835, 'sixty-six thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(15595, 61856, 'sixty-one thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(15596, 34083, 'thirty-four thousand eighty-three');\nINSERT INTO t3 VALUES(15597, 69322, 'sixty-nine thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(15598, 66222, 'sixty-six thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(15599, 23245, 'twenty-three thousand two hundred forty-five');\nINSERT INTO t3 VALUES(15600, 44352, 'forty-four thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(15601, 85721, 'eighty-five thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(15602, 21126, 'twenty-one thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(15603, 21775, 'twenty-one thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(15604, 69027, 'sixty-nine thousand twenty-seven');\nINSERT INTO t3 VALUES(15605, 92896, 'ninety-two thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(15606, 6056, 'six thousand fifty-six');\nINSERT INTO t3 VALUES(15607, 21216, 'twenty-one thousand two hundred sixteen');\nINSERT INTO t3 VALUES(15608, 33335, 'thirty-three thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(15609, 46550, 'forty-six thousand five hundred fifty');\nINSERT INTO t3 VALUES(15610, 33635, 'thirty-three thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(15611, 73447, 'seventy-three thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(15612, 42517, 'forty-two thousand five hundred seventeen');\nINSERT INTO t3 VALUES(15613, 45154, 'forty-five thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(15614, 87054, 'eighty-seven thousand fifty-four');\nINSERT INTO t3 VALUES(15615, 95552, 'ninety-five thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(15616, 42509, 'forty-two thousand five hundred nine');\nINSERT INTO t3 VALUES(15617, 53218, 'fifty-three thousand two hundred eighteen');\nINSERT INTO t3 VALUES(15618, 28067, 'twenty-eight thousand sixty-seven');\nINSERT INTO t3 VALUES(15619, 4553, 'four thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(15620, 93782, 'ninety-three thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(15621, 11969, 'eleven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(15622, 83594, 'eighty-three thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(15623, 59747, 'fifty-nine thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(15624, 53397, 'fifty-three thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(15625, 26971, 'twenty-six thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(15626, 11884, 'eleven thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(15627, 30798, 'thirty thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(15628, 20639, 'twenty thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(15629, 48773, 'forty-eight thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(15630, 36322, 'thirty-six thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(15631, 85659, 'eighty-five thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(15632, 60447, 'sixty thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(15633, 62408, 'sixty-two thousand four hundred eight');\nINSERT INTO t3 VALUES(15634, 89423, 'eighty-nine thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(15635, 4500, 'four thousand five hundred');\nINSERT INTO t3 VALUES(15636, 10906, 'ten thousand nine hundred six');\nINSERT INTO t3 VALUES(15637, 43008, 'forty-three thousand eight');\nINSERT INTO t3 VALUES(15638, 538, 'five hundred thirty-eight');\nINSERT INTO t3 VALUES(15639, 74504, 'seventy-four thousand five hundred four');\nINSERT INTO t3 VALUES(15640, 14763, 'fourteen thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(15641, 71382, 'seventy-one thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(15642, 3321, 'three thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(15643, 96983, 'ninety-six thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(15644, 6240, 'six thousand two hundred forty');\nINSERT INTO t3 VALUES(15645, 44308, 'forty-four thousand three hundred eight');\nINSERT INTO t3 VALUES(15646, 31682, 'thirty-one thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(15647, 49152, 'forty-nine thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(15648, 42366, 'forty-two thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(15649, 33822, 'thirty-three thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(15650, 16229, 'sixteen thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(15651, 16421, 'sixteen thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(15652, 64615, 'sixty-four thousand six hundred fifteen');\nINSERT INTO t3 VALUES(15653, 79938, 'seventy-nine thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(15654, 83185, 'eighty-three thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(15655, 17177, 'seventeen thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(15656, 12554, 'twelve thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(15657, 59341, 'fifty-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(15658, 70773, 'seventy thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(15659, 89818, 'eighty-nine thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(15660, 84378, 'eighty-four thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(15661, 59971, 'fifty-nine thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(15662, 91733, 'ninety-one thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(15663, 75806, 'seventy-five thousand eight hundred six');\nINSERT INTO t3 VALUES(15664, 43785, 'forty-three thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(15665, 43764, 'forty-three thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(15666, 57761, 'fifty-seven thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(15667, 85252, 'eighty-five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(15668, 19643, 'nineteen thousand six hundred forty-three');\nINSERT INTO t3 VALUES(15669, 81796, 'eighty-one thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(15670, 94310, 'ninety-four thousand three hundred ten');\nINSERT INTO t3 VALUES(15671, 11687, 'eleven thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(15672, 78338, 'seventy-eight thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(15673, 97652, 'ninety-seven thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(15674, 75142, 'seventy-five thousand one hundred forty-two');\nINSERT INTO t3 VALUES(15675, 54356, 'fifty-four thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(15676, 61108, 'sixty-one thousand one hundred eight');\nINSERT INTO t3 VALUES(15677, 40225, 'forty thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(15678, 67635, 'sixty-seven thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(15679, 36218, 'thirty-six thousand two hundred eighteen');\nINSERT INTO t3 VALUES(15680, 30738, 'thirty thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(15681, 41289, 'forty-one thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(15682, 72411, 'seventy-two thousand four hundred eleven');\nINSERT INTO t3 VALUES(15683, 7192, 'seven thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(15684, 69013, 'sixty-nine thousand thirteen');\nINSERT INTO t3 VALUES(15685, 80966, 'eighty thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(15686, 42431, 'forty-two thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(15687, 42877, 'forty-two thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(15688, 39315, 'thirty-nine thousand three hundred fifteen');\nINSERT INTO t3 VALUES(15689, 34061, 'thirty-four thousand sixty-one');\nINSERT INTO t3 VALUES(15690, 13457, 'thirteen thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(15691, 79104, 'seventy-nine thousand one hundred four');\nINSERT INTO t3 VALUES(15692, 67954, 'sixty-seven thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(15693, 12001, 'twelve thousand one');\nINSERT INTO t3 VALUES(15694, 54317, 'fifty-four thousand three hundred seventeen');\nINSERT INTO t3 VALUES(15695, 15385, 'fifteen thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(15696, 60047, 'sixty thousand forty-seven');\nINSERT INTO t3 VALUES(15697, 61315, 'sixty-one thousand three hundred fifteen');\nINSERT INTO t3 VALUES(15698, 45573, 'forty-five thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(15699, 24967, 'twenty-four thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(15700, 67584, 'sixty-seven thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(15701, 10226, 'ten thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(15702, 95759, 'ninety-five thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(15703, 91262, 'ninety-one thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(15704, 50559, 'fifty thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(15705, 97383, 'ninety-seven thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(15706, 56746, 'fifty-six thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(15707, 20422, 'twenty thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(15708, 38250, 'thirty-eight thousand two hundred fifty');\nINSERT INTO t3 VALUES(15709, 92201, 'ninety-two thousand two hundred one');\nINSERT INTO t3 VALUES(15710, 68104, 'sixty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(15711, 28795, 'twenty-eight thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(15712, 87416, 'eighty-seven thousand four hundred sixteen');\nINSERT INTO t3 VALUES(15713, 20602, 'twenty thousand six hundred two');\nINSERT INTO t3 VALUES(15714, 13791, 'thirteen thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(15715, 79861, 'seventy-nine thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(15716, 20005, 'twenty thousand five');\nINSERT INTO t3 VALUES(15717, 69614, 'sixty-nine thousand six hundred fourteen');\nINSERT INTO t3 VALUES(15718, 25071, 'twenty-five thousand seventy-one');\nINSERT INTO t3 VALUES(15719, 62503, 'sixty-two thousand five hundred three');\nINSERT INTO t3 VALUES(15720, 69073, 'sixty-nine thousand seventy-three');\nINSERT INTO t3 VALUES(15721, 78212, 'seventy-eight thousand two hundred twelve');\nINSERT INTO t3 VALUES(15722, 97084, 'ninety-seven thousand eighty-four');\nINSERT INTO t3 VALUES(15723, 21195, 'twenty-one thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(15724, 60542, 'sixty thousand five hundred forty-two');\nINSERT INTO t3 VALUES(15725, 52533, 'fifty-two thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(15726, 82899, 'eighty-two thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(15727, 68450, 'sixty-eight thousand four hundred fifty');\nINSERT INTO t3 VALUES(15728, 19189, 'nineteen thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(15729, 27181, 'twenty-seven thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(15730, 40376, 'forty thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(15731, 16341, 'sixteen thousand three hundred forty-one');\nINSERT INTO t3 VALUES(15732, 92738, 'ninety-two thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(15733, 53368, 'fifty-three thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(15734, 55383, 'fifty-five thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(15735, 21569, 'twenty-one thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(15736, 11134, 'eleven thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(15737, 44808, 'forty-four thousand eight hundred eight');\nINSERT INTO t3 VALUES(15738, 82905, 'eighty-two thousand nine hundred five');\nINSERT INTO t3 VALUES(15739, 80952, 'eighty thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(15740, 1588, 'one thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(15741, 14497, 'fourteen thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(15742, 4170, 'four thousand one hundred seventy');\nINSERT INTO t3 VALUES(15743, 35543, 'thirty-five thousand five hundred forty-three');\nINSERT INTO t3 VALUES(15744, 61346, 'sixty-one thousand three hundred forty-six');\nINSERT INTO t3 VALUES(15745, 5614, 'five thousand six hundred fourteen');\nINSERT INTO t3 VALUES(15746, 35975, 'thirty-five thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(15747, 48674, 'forty-eight thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(15748, 81427, 'eighty-one thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(15749, 71471, 'seventy-one thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(15750, 71200, 'seventy-one thousand two hundred');\nINSERT INTO t3 VALUES(15751, 75890, 'seventy-five thousand eight hundred ninety');\nINSERT INTO t3 VALUES(15752, 13088, 'thirteen thousand eighty-eight');\nINSERT INTO t3 VALUES(15753, 19567, 'nineteen thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(15754, 88286, 'eighty-eight thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(15755, 10822, 'ten thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(15756, 73853, 'seventy-three thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(15757, 58448, 'fifty-eight thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(15758, 55431, 'fifty-five thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(15759, 898, 'eight hundred ninety-eight');\nINSERT INTO t3 VALUES(15760, 54258, 'fifty-four thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(15761, 58699, 'fifty-eight thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(15762, 44903, 'forty-four thousand nine hundred three');\nINSERT INTO t3 VALUES(15763, 40042, 'forty thousand forty-two');\nINSERT INTO t3 VALUES(15764, 4641, 'four thousand six hundred forty-one');\nINSERT INTO t3 VALUES(15765, 96301, 'ninety-six thousand three hundred one');\nINSERT INTO t3 VALUES(15766, 73044, 'seventy-three thousand forty-four');\nINSERT INTO t3 VALUES(15767, 72434, 'seventy-two thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(15768, 85941, 'eighty-five thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(15769, 14424, 'fourteen thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(15770, 81697, 'eighty-one thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(15771, 91811, 'ninety-one thousand eight hundred eleven');\nINSERT INTO t3 VALUES(15772, 35268, 'thirty-five thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(15773, 70058, 'seventy thousand fifty-eight');\nINSERT INTO t3 VALUES(15774, 36253, 'thirty-six thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(15775, 20459, 'twenty thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(15776, 80544, 'eighty thousand five hundred forty-four');\nINSERT INTO t3 VALUES(15777, 67655, 'sixty-seven thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(15778, 27480, 'twenty-seven thousand four hundred eighty');\nINSERT INTO t3 VALUES(15779, 16348, 'sixteen thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(15780, 75500, 'seventy-five thousand five hundred');\nINSERT INTO t3 VALUES(15781, 21443, 'twenty-one thousand four hundred forty-three');\nINSERT INTO t3 VALUES(15782, 40079, 'forty thousand seventy-nine');\nINSERT INTO t3 VALUES(15783, 62601, 'sixty-two thousand six hundred one');\nINSERT INTO t3 VALUES(15784, 49688, 'forty-nine thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(15785, 74956, 'seventy-four thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(15786, 6530, 'six thousand five hundred thirty');\nINSERT INTO t3 VALUES(15787, 65597, 'sixty-five thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(15788, 24680, 'twenty-four thousand six hundred eighty');\nINSERT INTO t3 VALUES(15789, 48273, 'forty-eight thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(15790, 78826, 'seventy-eight thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(15791, 91324, 'ninety-one thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(15792, 73637, 'seventy-three thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(15793, 53471, 'fifty-three thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(15794, 70629, 'seventy thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(15795, 9735, 'nine thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(15796, 6108, 'six thousand one hundred eight');\nINSERT INTO t3 VALUES(15797, 38855, 'thirty-eight thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(15798, 73926, 'seventy-three thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(15799, 43288, 'forty-three thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(15800, 12859, 'twelve thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(15801, 27847, 'twenty-seven thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(15802, 2827, 'two thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(15803, 54025, 'fifty-four thousand twenty-five');\nINSERT INTO t3 VALUES(15804, 76576, 'seventy-six thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(15805, 72236, 'seventy-two thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(15806, 96420, 'ninety-six thousand four hundred twenty');\nINSERT INTO t3 VALUES(15807, 6322, 'six thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(15808, 73095, 'seventy-three thousand ninety-five');\nINSERT INTO t3 VALUES(15809, 72603, 'seventy-two thousand six hundred three');\nINSERT INTO t3 VALUES(15810, 20120, 'twenty thousand one hundred twenty');\nINSERT INTO t3 VALUES(15811, 92849, 'ninety-two thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(15812, 90127, 'ninety thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(15813, 53449, 'fifty-three thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(15814, 57535, 'fifty-seven thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(15815, 38151, 'thirty-eight thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(15816, 84575, 'eighty-four thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(15817, 57975, 'fifty-seven thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(15818, 54378, 'fifty-four thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(15819, 80231, 'eighty thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(15820, 74490, 'seventy-four thousand four hundred ninety');\nINSERT INTO t3 VALUES(15821, 93000, 'ninety-three thousand');\nINSERT INTO t3 VALUES(15822, 53804, 'fifty-three thousand eight hundred four');\nINSERT INTO t3 VALUES(15823, 72659, 'seventy-two thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(15824, 82196, 'eighty-two thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(15825, 74290, 'seventy-four thousand two hundred ninety');\nINSERT INTO t3 VALUES(15826, 81337, 'eighty-one thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(15827, 65291, 'sixty-five thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(15828, 20270, 'twenty thousand two hundred seventy');\nINSERT INTO t3 VALUES(15829, 50130, 'fifty thousand one hundred thirty');\nINSERT INTO t3 VALUES(15830, 56392, 'fifty-six thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(15831, 75784, 'seventy-five thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(15832, 57274, 'fifty-seven thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(15833, 46715, 'forty-six thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(15834, 74839, 'seventy-four thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(15835, 97753, 'ninety-seven thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(15836, 27198, 'twenty-seven thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(15837, 29151, 'twenty-nine thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(15838, 13052, 'thirteen thousand fifty-two');\nINSERT INTO t3 VALUES(15839, 54863, 'fifty-four thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(15840, 94909, 'ninety-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(15841, 43745, 'forty-three thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(15842, 64386, 'sixty-four thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(15843, 3084, 'three thousand eighty-four');\nINSERT INTO t3 VALUES(15844, 92479, 'ninety-two thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(15845, 35910, 'thirty-five thousand nine hundred ten');\nINSERT INTO t3 VALUES(15846, 65149, 'sixty-five thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(15847, 24507, 'twenty-four thousand five hundred seven');\nINSERT INTO t3 VALUES(15848, 75000, 'seventy-five thousand');\nINSERT INTO t3 VALUES(15849, 82539, 'eighty-two thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(15850, 51689, 'fifty-one thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(15851, 89567, 'eighty-nine thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(15852, 73056, 'seventy-three thousand fifty-six');\nINSERT INTO t3 VALUES(15853, 71067, 'seventy-one thousand sixty-seven');\nINSERT INTO t3 VALUES(15854, 12457, 'twelve thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(15855, 26706, 'twenty-six thousand seven hundred six');\nINSERT INTO t3 VALUES(15856, 2912, 'two thousand nine hundred twelve');\nINSERT INTO t3 VALUES(15857, 55005, 'fifty-five thousand five');\nINSERT INTO t3 VALUES(15858, 37894, 'thirty-seven thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(15859, 39584, 'thirty-nine thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(15860, 51846, 'fifty-one thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(15861, 81164, 'eighty-one thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(15862, 20254, 'twenty thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(15863, 1529, 'one thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(15864, 30952, 'thirty thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(15865, 18580, 'eighteen thousand five hundred eighty');\nINSERT INTO t3 VALUES(15866, 27203, 'twenty-seven thousand two hundred three');\nINSERT INTO t3 VALUES(15867, 29178, 'twenty-nine thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(15868, 2871, 'two thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(15869, 20110, 'twenty thousand one hundred ten');\nINSERT INTO t3 VALUES(15870, 59595, 'fifty-nine thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(15871, 90346, 'ninety thousand three hundred forty-six');\nINSERT INTO t3 VALUES(15872, 49951, 'forty-nine thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(15873, 89218, 'eighty-nine thousand two hundred eighteen');\nINSERT INTO t3 VALUES(15874, 46432, 'forty-six thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(15875, 83179, 'eighty-three thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(15876, 39442, 'thirty-nine thousand four hundred forty-two');\nINSERT INTO t3 VALUES(15877, 56640, 'fifty-six thousand six hundred forty');\nINSERT INTO t3 VALUES(15878, 62928, 'sixty-two thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(15879, 19757, 'nineteen thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(15880, 21134, 'twenty-one thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(15881, 10120, 'ten thousand one hundred twenty');\nINSERT INTO t3 VALUES(15882, 86006, 'eighty-six thousand six');\nINSERT INTO t3 VALUES(15883, 25262, 'twenty-five thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(15884, 99733, 'ninety-nine thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(15885, 42110, 'forty-two thousand one hundred ten');\nINSERT INTO t3 VALUES(15886, 33981, 'thirty-three thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(15887, 88952, 'eighty-eight thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(15888, 43788, 'forty-three thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(15889, 32857, 'thirty-two thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(15890, 30809, 'thirty thousand eight hundred nine');\nINSERT INTO t3 VALUES(15891, 74873, 'seventy-four thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(15892, 39109, 'thirty-nine thousand one hundred nine');\nINSERT INTO t3 VALUES(15893, 90617, 'ninety thousand six hundred seventeen');\nINSERT INTO t3 VALUES(15894, 22633, 'twenty-two thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(15895, 18549, 'eighteen thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(15896, 82776, 'eighty-two thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(15897, 4576, 'four thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(15898, 31219, 'thirty-one thousand two hundred nineteen');\nINSERT INTO t3 VALUES(15899, 9301, 'nine thousand three hundred one');\nINSERT INTO t3 VALUES(15900, 28554, 'twenty-eight thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(15901, 481, 'four hundred eighty-one');\nINSERT INTO t3 VALUES(15902, 29167, 'twenty-nine thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(15903, 11440, 'eleven thousand four hundred forty');\nINSERT INTO t3 VALUES(15904, 16451, 'sixteen thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(15905, 13885, 'thirteen thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(15906, 91841, 'ninety-one thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(15907, 97112, 'ninety-seven thousand one hundred twelve');\nINSERT INTO t3 VALUES(15908, 39319, 'thirty-nine thousand three hundred nineteen');\nINSERT INTO t3 VALUES(15909, 29294, 'twenty-nine thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(15910, 5086, 'five thousand eighty-six');\nINSERT INTO t3 VALUES(15911, 9715, 'nine thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(15912, 29295, 'twenty-nine thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(15913, 29313, 'twenty-nine thousand three hundred thirteen');\nINSERT INTO t3 VALUES(15914, 85821, 'eighty-five thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(15915, 9970, 'nine thousand nine hundred seventy');\nINSERT INTO t3 VALUES(15916, 94835, 'ninety-four thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(15917, 48286, 'forty-eight thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(15918, 47916, 'forty-seven thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(15919, 86919, 'eighty-six thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(15920, 52691, 'fifty-two thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(15921, 18178, 'eighteen thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(15922, 22089, 'twenty-two thousand eighty-nine');\nINSERT INTO t3 VALUES(15923, 23263, 'twenty-three thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(15924, 76782, 'seventy-six thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(15925, 37280, 'thirty-seven thousand two hundred eighty');\nINSERT INTO t3 VALUES(15926, 66211, 'sixty-six thousand two hundred eleven');\nINSERT INTO t3 VALUES(15927, 18769, 'eighteen thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(15928, 52527, 'fifty-two thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(15929, 13964, 'thirteen thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(15930, 77013, 'seventy-seven thousand thirteen');\nINSERT INTO t3 VALUES(15931, 87217, 'eighty-seven thousand two hundred seventeen');\nINSERT INTO t3 VALUES(15932, 58723, 'fifty-eight thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(15933, 45694, 'forty-five thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(15934, 73566, 'seventy-three thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(15935, 4799, 'four thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(15936, 44725, 'forty-four thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(15937, 81732, 'eighty-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(15938, 25916, 'twenty-five thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(15939, 17399, 'seventeen thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(15940, 10941, 'ten thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(15941, 84526, 'eighty-four thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(15942, 29237, 'twenty-nine thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(15943, 16483, 'sixteen thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(15944, 16545, 'sixteen thousand five hundred forty-five');\nINSERT INTO t3 VALUES(15945, 85472, 'eighty-five thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(15946, 90402, 'ninety thousand four hundred two');\nINSERT INTO t3 VALUES(15947, 69356, 'sixty-nine thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(15948, 98401, 'ninety-eight thousand four hundred one');\nINSERT INTO t3 VALUES(15949, 36109, 'thirty-six thousand one hundred nine');\nINSERT INTO t3 VALUES(15950, 85041, 'eighty-five thousand forty-one');\nINSERT INTO t3 VALUES(15951, 22035, 'twenty-two thousand thirty-five');\nINSERT INTO t3 VALUES(15952, 54581, 'fifty-four thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(15953, 19057, 'nineteen thousand fifty-seven');\nINSERT INTO t3 VALUES(15954, 56795, 'fifty-six thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(15955, 95939, 'ninety-five thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(15956, 2417, 'two thousand four hundred seventeen');\nINSERT INTO t3 VALUES(15957, 91270, 'ninety-one thousand two hundred seventy');\nINSERT INTO t3 VALUES(15958, 40899, 'forty thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(15959, 87942, 'eighty-seven thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(15960, 75647, 'seventy-five thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(15961, 24984, 'twenty-four thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(15962, 85564, 'eighty-five thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(15963, 78694, 'seventy-eight thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(15964, 21360, 'twenty-one thousand three hundred sixty');\nINSERT INTO t3 VALUES(15965, 85288, 'eighty-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(15966, 13749, 'thirteen thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(15967, 68260, 'sixty-eight thousand two hundred sixty');\nINSERT INTO t3 VALUES(15968, 16359, 'sixteen thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(15969, 36265, 'thirty-six thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(15970, 52948, 'fifty-two thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(15971, 50751, 'fifty thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(15972, 48659, 'forty-eight thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(15973, 76413, 'seventy-six thousand four hundred thirteen');\nINSERT INTO t3 VALUES(15974, 43925, 'forty-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(15975, 35488, 'thirty-five thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(15976, 47650, 'forty-seven thousand six hundred fifty');\nINSERT INTO t3 VALUES(15977, 64588, 'sixty-four thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(15978, 37111, 'thirty-seven thousand one hundred eleven');\nINSERT INTO t3 VALUES(15979, 1296, 'one thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(15980, 71106, 'seventy-one thousand one hundred six');\nINSERT INTO t3 VALUES(15981, 1978, 'one thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(15982, 7573, 'seven thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(15983, 48238, 'forty-eight thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(15984, 96048, 'ninety-six thousand forty-eight');\nINSERT INTO t3 VALUES(15985, 34429, 'thirty-four thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(15986, 86902, 'eighty-six thousand nine hundred two');\nINSERT INTO t3 VALUES(15987, 71973, 'seventy-one thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(15988, 27220, 'twenty-seven thousand two hundred twenty');\nINSERT INTO t3 VALUES(15989, 97652, 'ninety-seven thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(15990, 40297, 'forty thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(15991, 70229, 'seventy thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(15992, 23440, 'twenty-three thousand four hundred forty');\nINSERT INTO t3 VALUES(15993, 74759, 'seventy-four thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(15994, 77050, 'seventy-seven thousand fifty');\nINSERT INTO t3 VALUES(15995, 99274, 'ninety-nine thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(15996, 98047, 'ninety-eight thousand forty-seven');\nINSERT INTO t3 VALUES(15997, 29133, 'twenty-nine thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(15998, 82205, 'eighty-two thousand two hundred five');\nINSERT INTO t3 VALUES(15999, 70141, 'seventy thousand one hundred forty-one');\nINSERT INTO t3 VALUES(16000, 76251, 'seventy-six thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(16001, 84170, 'eighty-four thousand one hundred seventy');\nINSERT INTO t3 VALUES(16002, 91043, 'ninety-one thousand forty-three');\nINSERT INTO t3 VALUES(16003, 87672, 'eighty-seven thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(16004, 74782, 'seventy-four thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(16005, 58608, 'fifty-eight thousand six hundred eight');\nINSERT INTO t3 VALUES(16006, 96816, 'ninety-six thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(16007, 28584, 'twenty-eight thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(16008, 56670, 'fifty-six thousand six hundred seventy');\nINSERT INTO t3 VALUES(16009, 7630, 'seven thousand six hundred thirty');\nINSERT INTO t3 VALUES(16010, 94290, 'ninety-four thousand two hundred ninety');\nINSERT INTO t3 VALUES(16011, 12913, 'twelve thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(16012, 94587, 'ninety-four thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(16013, 18624, 'eighteen thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(16014, 87441, 'eighty-seven thousand four hundred forty-one');\nINSERT INTO t3 VALUES(16015, 58243, 'fifty-eight thousand two hundred forty-three');\nINSERT INTO t3 VALUES(16016, 71871, 'seventy-one thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(16017, 82033, 'eighty-two thousand thirty-three');\nINSERT INTO t3 VALUES(16018, 14443, 'fourteen thousand four hundred forty-three');\nINSERT INTO t3 VALUES(16019, 42290, 'forty-two thousand two hundred ninety');\nINSERT INTO t3 VALUES(16020, 47334, 'forty-seven thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(16021, 84039, 'eighty-four thousand thirty-nine');\nINSERT INTO t3 VALUES(16022, 31982, 'thirty-one thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(16023, 21716, 'twenty-one thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(16024, 79688, 'seventy-nine thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(16025, 10315, 'ten thousand three hundred fifteen');\nINSERT INTO t3 VALUES(16026, 49694, 'forty-nine thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(16027, 21387, 'twenty-one thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(16028, 5082, 'five thousand eighty-two');\nINSERT INTO t3 VALUES(16029, 63886, 'sixty-three thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(16030, 34656, 'thirty-four thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(16031, 49531, 'forty-nine thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(16032, 95666, 'ninety-five thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(16033, 85709, 'eighty-five thousand seven hundred nine');\nINSERT INTO t3 VALUES(16034, 2086, 'two thousand eighty-six');\nINSERT INTO t3 VALUES(16035, 72110, 'seventy-two thousand one hundred ten');\nINSERT INTO t3 VALUES(16036, 21688, 'twenty-one thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(16037, 46976, 'forty-six thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(16038, 60339, 'sixty thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(16039, 18327, 'eighteen thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(16040, 80395, 'eighty thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(16041, 98302, 'ninety-eight thousand three hundred two');\nINSERT INTO t3 VALUES(16042, 5387, 'five thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(16043, 6078, 'six thousand seventy-eight');\nINSERT INTO t3 VALUES(16044, 9051, 'nine thousand fifty-one');\nINSERT INTO t3 VALUES(16045, 12295, 'twelve thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(16046, 85567, 'eighty-five thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(16047, 61870, 'sixty-one thousand eight hundred seventy');\nINSERT INTO t3 VALUES(16048, 73569, 'seventy-three thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(16049, 30847, 'thirty thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(16050, 57768, 'fifty-seven thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(16051, 87632, 'eighty-seven thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(16052, 10860, 'ten thousand eight hundred sixty');\nINSERT INTO t3 VALUES(16053, 95099, 'ninety-five thousand ninety-nine');\nINSERT INTO t3 VALUES(16054, 16308, 'sixteen thousand three hundred eight');\nINSERT INTO t3 VALUES(16055, 19403, 'nineteen thousand four hundred three');\nINSERT INTO t3 VALUES(16056, 25261, 'twenty-five thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(16057, 25641, 'twenty-five thousand six hundred forty-one');\nINSERT INTO t3 VALUES(16058, 2087, 'two thousand eighty-seven');\nINSERT INTO t3 VALUES(16059, 92824, 'ninety-two thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(16060, 60191, 'sixty thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(16061, 94860, 'ninety-four thousand eight hundred sixty');\nINSERT INTO t3 VALUES(16062, 62525, 'sixty-two thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(16063, 29113, 'twenty-nine thousand one hundred thirteen');\nINSERT INTO t3 VALUES(16064, 44740, 'forty-four thousand seven hundred forty');\nINSERT INTO t3 VALUES(16065, 27831, 'twenty-seven thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(16066, 54713, 'fifty-four thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(16067, 2363, 'two thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(16068, 49810, 'forty-nine thousand eight hundred ten');\nINSERT INTO t3 VALUES(16069, 10021, 'ten thousand twenty-one');\nINSERT INTO t3 VALUES(16070, 63987, 'sixty-three thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(16071, 22812, 'twenty-two thousand eight hundred twelve');\nINSERT INTO t3 VALUES(16072, 48094, 'forty-eight thousand ninety-four');\nINSERT INTO t3 VALUES(16073, 62218, 'sixty-two thousand two hundred eighteen');\nINSERT INTO t3 VALUES(16074, 27155, 'twenty-seven thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(16075, 99053, 'ninety-nine thousand fifty-three');\nINSERT INTO t3 VALUES(16076, 16807, 'sixteen thousand eight hundred seven');\nINSERT INTO t3 VALUES(16077, 23527, 'twenty-three thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(16078, 85282, 'eighty-five thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(16079, 97038, 'ninety-seven thousand thirty-eight');\nINSERT INTO t3 VALUES(16080, 77910, 'seventy-seven thousand nine hundred ten');\nINSERT INTO t3 VALUES(16081, 20870, 'twenty thousand eight hundred seventy');\nINSERT INTO t3 VALUES(16082, 59185, 'fifty-nine thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(16083, 77996, 'seventy-seven thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(16084, 18470, 'eighteen thousand four hundred seventy');\nINSERT INTO t3 VALUES(16085, 81078, 'eighty-one thousand seventy-eight');\nINSERT INTO t3 VALUES(16086, 9262, 'nine thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(16087, 35307, 'thirty-five thousand three hundred seven');\nINSERT INTO t3 VALUES(16088, 39244, 'thirty-nine thousand two hundred forty-four');\nINSERT INTO t3 VALUES(16089, 8882, 'eight thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(16090, 21110, 'twenty-one thousand one hundred ten');\nINSERT INTO t3 VALUES(16091, 37331, 'thirty-seven thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(16092, 70242, 'seventy thousand two hundred forty-two');\nINSERT INTO t3 VALUES(16093, 61850, 'sixty-one thousand eight hundred fifty');\nINSERT INTO t3 VALUES(16094, 75197, 'seventy-five thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(16095, 66512, 'sixty-six thousand five hundred twelve');\nINSERT INTO t3 VALUES(16096, 42722, 'forty-two thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(16097, 99254, 'ninety-nine thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(16098, 61338, 'sixty-one thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(16099, 96694, 'ninety-six thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(16100, 46680, 'forty-six thousand six hundred eighty');\nINSERT INTO t3 VALUES(16101, 7371, 'seven thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(16102, 41255, 'forty-one thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(16103, 56563, 'fifty-six thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(16104, 45600, 'forty-five thousand six hundred');\nINSERT INTO t3 VALUES(16105, 98904, 'ninety-eight thousand nine hundred four');\nINSERT INTO t3 VALUES(16106, 78223, 'seventy-eight thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(16107, 57420, 'fifty-seven thousand four hundred twenty');\nINSERT INTO t3 VALUES(16108, 35945, 'thirty-five thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(16109, 57187, 'fifty-seven thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(16110, 77349, 'seventy-seven thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(16111, 42789, 'forty-two thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(16112, 35906, 'thirty-five thousand nine hundred six');\nINSERT INTO t3 VALUES(16113, 51085, 'fifty-one thousand eighty-five');\nINSERT INTO t3 VALUES(16114, 86768, 'eighty-six thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(16115, 51828, 'fifty-one thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(16116, 19442, 'nineteen thousand four hundred forty-two');\nINSERT INTO t3 VALUES(16117, 27486, 'twenty-seven thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(16118, 15511, 'fifteen thousand five hundred eleven');\nINSERT INTO t3 VALUES(16119, 10224, 'ten thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(16120, 1887, 'one thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(16121, 94072, 'ninety-four thousand seventy-two');\nINSERT INTO t3 VALUES(16122, 38517, 'thirty-eight thousand five hundred seventeen');\nINSERT INTO t3 VALUES(16123, 81149, 'eighty-one thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(16124, 6642, 'six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(16125, 93889, 'ninety-three thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(16126, 13319, 'thirteen thousand three hundred nineteen');\nINSERT INTO t3 VALUES(16127, 47727, 'forty-seven thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(16128, 39412, 'thirty-nine thousand four hundred twelve');\nINSERT INTO t3 VALUES(16129, 63979, 'sixty-three thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(16130, 982, 'nine hundred eighty-two');\nINSERT INTO t3 VALUES(16131, 76188, 'seventy-six thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(16132, 53246, 'fifty-three thousand two hundred forty-six');\nINSERT INTO t3 VALUES(16133, 37034, 'thirty-seven thousand thirty-four');\nINSERT INTO t3 VALUES(16134, 25812, 'twenty-five thousand eight hundred twelve');\nINSERT INTO t3 VALUES(16135, 63184, 'sixty-three thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(16136, 19783, 'nineteen thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(16137, 57997, 'fifty-seven thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(16138, 76135, 'seventy-six thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(16139, 16756, 'sixteen thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(16140, 70935, 'seventy thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(16141, 59119, 'fifty-nine thousand one hundred nineteen');\nINSERT INTO t3 VALUES(16142, 18065, 'eighteen thousand sixty-five');\nINSERT INTO t3 VALUES(16143, 15408, 'fifteen thousand four hundred eight');\nINSERT INTO t3 VALUES(16144, 41387, 'forty-one thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(16145, 33319, 'thirty-three thousand three hundred nineteen');\nINSERT INTO t3 VALUES(16146, 62577, 'sixty-two thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(16147, 46805, 'forty-six thousand eight hundred five');\nINSERT INTO t3 VALUES(16148, 49174, 'forty-nine thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(16149, 89647, 'eighty-nine thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(16150, 1934, 'one thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(16151, 9996, 'nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(16152, 45686, 'forty-five thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(16153, 86495, 'eighty-six thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(16154, 46939, 'forty-six thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(16155, 84358, 'eighty-four thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(16156, 85226, 'eighty-five thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(16157, 3259, 'three thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(16158, 31960, 'thirty-one thousand nine hundred sixty');\nINSERT INTO t3 VALUES(16159, 19489, 'nineteen thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(16160, 13754, 'thirteen thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(16161, 8984, 'eight thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(16162, 32860, 'thirty-two thousand eight hundred sixty');\nINSERT INTO t3 VALUES(16163, 98639, 'ninety-eight thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(16164, 8832, 'eight thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(16165, 25823, 'twenty-five thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(16166, 42372, 'forty-two thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(16167, 20932, 'twenty thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(16168, 646, 'six hundred forty-six');\nINSERT INTO t3 VALUES(16169, 48906, 'forty-eight thousand nine hundred six');\nINSERT INTO t3 VALUES(16170, 48227, 'forty-eight thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(16171, 19963, 'nineteen thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(16172, 49439, 'forty-nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(16173, 48081, 'forty-eight thousand eighty-one');\nINSERT INTO t3 VALUES(16174, 38632, 'thirty-eight thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(16175, 17196, 'seventeen thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(16176, 72207, 'seventy-two thousand two hundred seven');\nINSERT INTO t3 VALUES(16177, 8430, 'eight thousand four hundred thirty');\nINSERT INTO t3 VALUES(16178, 28319, 'twenty-eight thousand three hundred nineteen');\nINSERT INTO t3 VALUES(16179, 85779, 'eighty-five thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(16180, 88955, 'eighty-eight thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(16181, 62648, 'sixty-two thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(16182, 255, 'two hundred fifty-five');\nINSERT INTO t3 VALUES(16183, 6398, 'six thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(16184, 56235, 'fifty-six thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(16185, 82051, 'eighty-two thousand fifty-one');\nINSERT INTO t3 VALUES(16186, 8568, 'eight thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(16187, 77839, 'seventy-seven thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(16188, 82034, 'eighty-two thousand thirty-four');\nINSERT INTO t3 VALUES(16189, 23832, 'twenty-three thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(16190, 36042, 'thirty-six thousand forty-two');\nINSERT INTO t3 VALUES(16191, 21665, 'twenty-one thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(16192, 196, 'one hundred ninety-six');\nINSERT INTO t3 VALUES(16193, 80706, 'eighty thousand seven hundred six');\nINSERT INTO t3 VALUES(16194, 95914, 'ninety-five thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(16195, 42866, 'forty-two thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(16196, 36279, 'thirty-six thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(16197, 54542, 'fifty-four thousand five hundred forty-two');\nINSERT INTO t3 VALUES(16198, 87180, 'eighty-seven thousand one hundred eighty');\nINSERT INTO t3 VALUES(16199, 67856, 'sixty-seven thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(16200, 9116, 'nine thousand one hundred sixteen');\nINSERT INTO t3 VALUES(16201, 64021, 'sixty-four thousand twenty-one');\nINSERT INTO t3 VALUES(16202, 20565, 'twenty thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(16203, 99625, 'ninety-nine thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(16204, 13416, 'thirteen thousand four hundred sixteen');\nINSERT INTO t3 VALUES(16205, 60633, 'sixty thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(16206, 30002, 'thirty thousand two');\nINSERT INTO t3 VALUES(16207, 60622, 'sixty thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(16208, 26307, 'twenty-six thousand three hundred seven');\nINSERT INTO t3 VALUES(16209, 97563, 'ninety-seven thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(16210, 55807, 'fifty-five thousand eight hundred seven');\nINSERT INTO t3 VALUES(16211, 22106, 'twenty-two thousand one hundred six');\nINSERT INTO t3 VALUES(16212, 4490, 'four thousand four hundred ninety');\nINSERT INTO t3 VALUES(16213, 91635, 'ninety-one thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(16214, 31135, 'thirty-one thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(16215, 49872, 'forty-nine thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(16216, 65808, 'sixty-five thousand eight hundred eight');\nINSERT INTO t3 VALUES(16217, 36010, 'thirty-six thousand ten');\nINSERT INTO t3 VALUES(16218, 33265, 'thirty-three thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(16219, 84849, 'eighty-four thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(16220, 11340, 'eleven thousand three hundred forty');\nINSERT INTO t3 VALUES(16221, 85480, 'eighty-five thousand four hundred eighty');\nINSERT INTO t3 VALUES(16222, 7234, 'seven thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(16223, 28974, 'twenty-eight thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(16224, 46542, 'forty-six thousand five hundred forty-two');\nINSERT INTO t3 VALUES(16225, 41413, 'forty-one thousand four hundred thirteen');\nINSERT INTO t3 VALUES(16226, 56244, 'fifty-six thousand two hundred forty-four');\nINSERT INTO t3 VALUES(16227, 18165, 'eighteen thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(16228, 48462, 'forty-eight thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(16229, 96480, 'ninety-six thousand four hundred eighty');\nINSERT INTO t3 VALUES(16230, 29633, 'twenty-nine thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(16231, 44582, 'forty-four thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(16232, 80132, 'eighty thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(16233, 71522, 'seventy-one thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(16234, 62916, 'sixty-two thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(16235, 61373, 'sixty-one thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(16236, 54532, 'fifty-four thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(16237, 71995, 'seventy-one thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(16238, 35558, 'thirty-five thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(16239, 91537, 'ninety-one thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(16240, 22038, 'twenty-two thousand thirty-eight');\nINSERT INTO t3 VALUES(16241, 25339, 'twenty-five thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(16242, 9899, 'nine thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(16243, 75618, 'seventy-five thousand six hundred eighteen');\nINSERT INTO t3 VALUES(16244, 4967, 'four thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(16245, 76204, 'seventy-six thousand two hundred four');\nINSERT INTO t3 VALUES(16246, 46582, 'forty-six thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(16247, 2728, 'two thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(16248, 42985, 'forty-two thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(16249, 31809, 'thirty-one thousand eight hundred nine');\nINSERT INTO t3 VALUES(16250, 93601, 'ninety-three thousand six hundred one');\nINSERT INTO t3 VALUES(16251, 39570, 'thirty-nine thousand five hundred seventy');\nINSERT INTO t3 VALUES(16252, 74782, 'seventy-four thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(16253, 17383, 'seventeen thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(16254, 90613, 'ninety thousand six hundred thirteen');\nINSERT INTO t3 VALUES(16255, 83804, 'eighty-three thousand eight hundred four');\nINSERT INTO t3 VALUES(16256, 72251, 'seventy-two thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(16257, 94840, 'ninety-four thousand eight hundred forty');\nINSERT INTO t3 VALUES(16258, 52977, 'fifty-two thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(16259, 95811, 'ninety-five thousand eight hundred eleven');\nINSERT INTO t3 VALUES(16260, 78113, 'seventy-eight thousand one hundred thirteen');\nINSERT INTO t3 VALUES(16261, 45720, 'forty-five thousand seven hundred twenty');\nINSERT INTO t3 VALUES(16262, 9158, 'nine thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(16263, 64131, 'sixty-four thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(16264, 44225, 'forty-four thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(16265, 46856, 'forty-six thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(16266, 77173, 'seventy-seven thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(16267, 22839, 'twenty-two thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(16268, 57339, 'fifty-seven thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(16269, 29735, 'twenty-nine thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(16270, 4850, 'four thousand eight hundred fifty');\nINSERT INTO t3 VALUES(16271, 99310, 'ninety-nine thousand three hundred ten');\nINSERT INTO t3 VALUES(16272, 83699, 'eighty-three thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(16273, 74231, 'seventy-four thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(16274, 98971, 'ninety-eight thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(16275, 91330, 'ninety-one thousand three hundred thirty');\nINSERT INTO t3 VALUES(16276, 55128, 'fifty-five thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(16277, 36250, 'thirty-six thousand two hundred fifty');\nINSERT INTO t3 VALUES(16278, 89901, 'eighty-nine thousand nine hundred one');\nINSERT INTO t3 VALUES(16279, 67826, 'sixty-seven thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(16280, 64001, 'sixty-four thousand one');\nINSERT INTO t3 VALUES(16281, 70308, 'seventy thousand three hundred eight');\nINSERT INTO t3 VALUES(16282, 67318, 'sixty-seven thousand three hundred eighteen');\nINSERT INTO t3 VALUES(16283, 56771, 'fifty-six thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(16284, 1677, 'one thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(16285, 5888, 'five thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(16286, 94270, 'ninety-four thousand two hundred seventy');\nINSERT INTO t3 VALUES(16287, 10332, 'ten thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(16288, 14107, 'fourteen thousand one hundred seven');\nINSERT INTO t3 VALUES(16289, 948, 'nine hundred forty-eight');\nINSERT INTO t3 VALUES(16290, 202, 'two hundred two');\nINSERT INTO t3 VALUES(16291, 75169, 'seventy-five thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(16292, 79522, 'seventy-nine thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(16293, 71927, 'seventy-one thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(16294, 1138, 'one thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(16295, 98919, 'ninety-eight thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(16296, 58024, 'fifty-eight thousand twenty-four');\nINSERT INTO t3 VALUES(16297, 30489, 'thirty thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(16298, 50409, 'fifty thousand four hundred nine');\nINSERT INTO t3 VALUES(16299, 6894, 'six thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(16300, 53285, 'fifty-three thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(16301, 36270, 'thirty-six thousand two hundred seventy');\nINSERT INTO t3 VALUES(16302, 42252, 'forty-two thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(16303, 30362, 'thirty thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(16304, 52895, 'fifty-two thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(16305, 64909, 'sixty-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(16306, 60806, 'sixty thousand eight hundred six');\nINSERT INTO t3 VALUES(16307, 11936, 'eleven thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(16308, 36296, 'thirty-six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(16309, 99074, 'ninety-nine thousand seventy-four');\nINSERT INTO t3 VALUES(16310, 5695, 'five thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(16311, 91351, 'ninety-one thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(16312, 46110, 'forty-six thousand one hundred ten');\nINSERT INTO t3 VALUES(16313, 59810, 'fifty-nine thousand eight hundred ten');\nINSERT INTO t3 VALUES(16314, 69024, 'sixty-nine thousand twenty-four');\nINSERT INTO t3 VALUES(16315, 46756, 'forty-six thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(16316, 17170, 'seventeen thousand one hundred seventy');\nINSERT INTO t3 VALUES(16317, 71402, 'seventy-one thousand four hundred two');\nINSERT INTO t3 VALUES(16318, 81600, 'eighty-one thousand six hundred');\nINSERT INTO t3 VALUES(16319, 3407, 'three thousand four hundred seven');\nINSERT INTO t3 VALUES(16320, 32188, 'thirty-two thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(16321, 16842, 'sixteen thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(16322, 6375, 'six thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(16323, 62878, 'sixty-two thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(16324, 53426, 'fifty-three thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(16325, 93337, 'ninety-three thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(16326, 55886, 'fifty-five thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(16327, 49437, 'forty-nine thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(16328, 39960, 'thirty-nine thousand nine hundred sixty');\nINSERT INTO t3 VALUES(16329, 30953, 'thirty thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(16330, 23339, 'twenty-three thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(16331, 40207, 'forty thousand two hundred seven');\nINSERT INTO t3 VALUES(16332, 71581, 'seventy-one thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(16333, 62429, 'sixty-two thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(16334, 30739, 'thirty thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(16335, 36016, 'thirty-six thousand sixteen');\nINSERT INTO t3 VALUES(16336, 70272, 'seventy thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(16337, 68870, 'sixty-eight thousand eight hundred seventy');\nINSERT INTO t3 VALUES(16338, 16131, 'sixteen thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(16339, 16757, 'sixteen thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(16340, 61245, 'sixty-one thousand two hundred forty-five');\nINSERT INTO t3 VALUES(16341, 85830, 'eighty-five thousand eight hundred thirty');\nINSERT INTO t3 VALUES(16342, 19743, 'nineteen thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(16343, 15977, 'fifteen thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(16344, 29168, 'twenty-nine thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(16345, 67100, 'sixty-seven thousand one hundred');\nINSERT INTO t3 VALUES(16346, 80098, 'eighty thousand ninety-eight');\nINSERT INTO t3 VALUES(16347, 93153, 'ninety-three thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(16348, 65069, 'sixty-five thousand sixty-nine');\nINSERT INTO t3 VALUES(16349, 45760, 'forty-five thousand seven hundred sixty');\nINSERT INTO t3 VALUES(16350, 57927, 'fifty-seven thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(16351, 94757, 'ninety-four thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(16352, 29768, 'twenty-nine thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(16353, 38222, 'thirty-eight thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(16354, 30870, 'thirty thousand eight hundred seventy');\nINSERT INTO t3 VALUES(16355, 85694, 'eighty-five thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(16356, 71346, 'seventy-one thousand three hundred forty-six');\nINSERT INTO t3 VALUES(16357, 31036, 'thirty-one thousand thirty-six');\nINSERT INTO t3 VALUES(16358, 96987, 'ninety-six thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(16359, 26137, 'twenty-six thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(16360, 86739, 'eighty-six thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(16361, 73896, 'seventy-three thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(16362, 33026, 'thirty-three thousand twenty-six');\nINSERT INTO t3 VALUES(16363, 84924, 'eighty-four thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(16364, 61463, 'sixty-one thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(16365, 19377, 'nineteen thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(16366, 72052, 'seventy-two thousand fifty-two');\nINSERT INTO t3 VALUES(16367, 87059, 'eighty-seven thousand fifty-nine');\nINSERT INTO t3 VALUES(16368, 91232, 'ninety-one thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(16369, 3943, 'three thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(16370, 98321, 'ninety-eight thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(16371, 19363, 'nineteen thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(16372, 31774, 'thirty-one thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(16373, 14384, 'fourteen thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(16374, 61879, 'sixty-one thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(16375, 16085, 'sixteen thousand eighty-five');\nINSERT INTO t3 VALUES(16376, 1008, 'one thousand eight');\nINSERT INTO t3 VALUES(16377, 76827, 'seventy-six thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(16378, 96159, 'ninety-six thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(16379, 44128, 'forty-four thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(16380, 80042, 'eighty thousand forty-two');\nINSERT INTO t3 VALUES(16381, 89518, 'eighty-nine thousand five hundred eighteen');\nINSERT INTO t3 VALUES(16382, 86365, 'eighty-six thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(16383, 91358, 'ninety-one thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(16384, 38116, 'thirty-eight thousand one hundred sixteen');\nINSERT INTO t3 VALUES(16385, 25, 'twenty-five');\nINSERT INTO t3 VALUES(16386, 53486, 'fifty-three thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(16387, 34164, 'thirty-four thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(16388, 91577, 'ninety-one thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(16389, 63052, 'sixty-three thousand fifty-two');\nINSERT INTO t3 VALUES(16390, 73188, 'seventy-three thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(16391, 79627, 'seventy-nine thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(16392, 18066, 'eighteen thousand sixty-six');\nINSERT INTO t3 VALUES(16393, 31726, 'thirty-one thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(16394, 95102, 'ninety-five thousand one hundred two');\nINSERT INTO t3 VALUES(16395, 9848, 'nine thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(16396, 11797, 'eleven thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(16397, 12525, 'twelve thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(16398, 69709, 'sixty-nine thousand seven hundred nine');\nINSERT INTO t3 VALUES(16399, 21914, 'twenty-one thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(16400, 15578, 'fifteen thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(16401, 2941, 'two thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(16402, 44751, 'forty-four thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(16403, 5166, 'five thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(16404, 31610, 'thirty-one thousand six hundred ten');\nINSERT INTO t3 VALUES(16405, 9989, 'nine thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(16406, 38502, 'thirty-eight thousand five hundred two');\nINSERT INTO t3 VALUES(16407, 77586, 'seventy-seven thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(16408, 5357, 'five thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(16409, 60596, 'sixty thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(16410, 43738, 'forty-three thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(16411, 54102, 'fifty-four thousand one hundred two');\nINSERT INTO t3 VALUES(16412, 25696, 'twenty-five thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(16413, 56156, 'fifty-six thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(16414, 52572, 'fifty-two thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(16415, 5467, 'five thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(16416, 25563, 'twenty-five thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(16417, 22000, 'twenty-two thousand');\nINSERT INTO t3 VALUES(16418, 29063, 'twenty-nine thousand sixty-three');\nINSERT INTO t3 VALUES(16419, 87619, 'eighty-seven thousand six hundred nineteen');\nINSERT INTO t3 VALUES(16420, 9880, 'nine thousand eight hundred eighty');\nINSERT INTO t3 VALUES(16421, 84634, 'eighty-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(16422, 58183, 'fifty-eight thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(16423, 17798, 'seventeen thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(16424, 28489, 'twenty-eight thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(16425, 72350, 'seventy-two thousand three hundred fifty');\nINSERT INTO t3 VALUES(16426, 70677, 'seventy thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(16427, 97117, 'ninety-seven thousand one hundred seventeen');\nINSERT INTO t3 VALUES(16428, 50980, 'fifty thousand nine hundred eighty');\nINSERT INTO t3 VALUES(16429, 6242, 'six thousand two hundred forty-two');\nINSERT INTO t3 VALUES(16430, 96689, 'ninety-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(16431, 90942, 'ninety thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(16432, 65985, 'sixty-five thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(16433, 28628, 'twenty-eight thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(16434, 1894, 'one thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(16435, 50375, 'fifty thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(16436, 56479, 'fifty-six thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(16437, 26548, 'twenty-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(16438, 48816, 'forty-eight thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(16439, 26452, 'twenty-six thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(16440, 70126, 'seventy thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(16441, 14081, 'fourteen thousand eighty-one');\nINSERT INTO t3 VALUES(16442, 6910, 'six thousand nine hundred ten');\nINSERT INTO t3 VALUES(16443, 99267, 'ninety-nine thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(16444, 1959, 'one thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(16445, 7385, 'seven thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(16446, 53227, 'fifty-three thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(16447, 3823, 'three thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(16448, 70798, 'seventy thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(16449, 45192, 'forty-five thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(16450, 12664, 'twelve thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(16451, 22962, 'twenty-two thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(16452, 46753, 'forty-six thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(16453, 24233, 'twenty-four thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(16454, 41168, 'forty-one thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(16455, 98612, 'ninety-eight thousand six hundred twelve');\nINSERT INTO t3 VALUES(16456, 46050, 'forty-six thousand fifty');\nINSERT INTO t3 VALUES(16457, 80354, 'eighty thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(16458, 11067, 'eleven thousand sixty-seven');\nINSERT INTO t3 VALUES(16459, 98333, 'ninety-eight thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(16460, 43830, 'forty-three thousand eight hundred thirty');\nINSERT INTO t3 VALUES(16461, 95140, 'ninety-five thousand one hundred forty');\nINSERT INTO t3 VALUES(16462, 34244, 'thirty-four thousand two hundred forty-four');\nINSERT INTO t3 VALUES(16463, 7730, 'seven thousand seven hundred thirty');\nINSERT INTO t3 VALUES(16464, 84998, 'eighty-four thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(16465, 38262, 'thirty-eight thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(16466, 27851, 'twenty-seven thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(16467, 74183, 'seventy-four thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(16468, 71961, 'seventy-one thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(16469, 20150, 'twenty thousand one hundred fifty');\nINSERT INTO t3 VALUES(16470, 97161, 'ninety-seven thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(16471, 37515, 'thirty-seven thousand five hundred fifteen');\nINSERT INTO t3 VALUES(16472, 44636, 'forty-four thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(16473, 54391, 'fifty-four thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(16474, 40704, 'forty thousand seven hundred four');\nINSERT INTO t3 VALUES(16475, 92388, 'ninety-two thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(16476, 23913, 'twenty-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(16477, 5553, 'five thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(16478, 2111, 'two thousand one hundred eleven');\nINSERT INTO t3 VALUES(16479, 10017, 'ten thousand seventeen');\nINSERT INTO t3 VALUES(16480, 59341, 'fifty-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(16481, 6943, 'six thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(16482, 27474, 'twenty-seven thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(16483, 21919, 'twenty-one thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(16484, 75523, 'seventy-five thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(16485, 11804, 'eleven thousand eight hundred four');\nINSERT INTO t3 VALUES(16486, 77689, 'seventy-seven thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(16487, 93631, 'ninety-three thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(16488, 24989, 'twenty-four thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(16489, 43707, 'forty-three thousand seven hundred seven');\nINSERT INTO t3 VALUES(16490, 84187, 'eighty-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(16491, 37401, 'thirty-seven thousand four hundred one');\nINSERT INTO t3 VALUES(16492, 92105, 'ninety-two thousand one hundred five');\nINSERT INTO t3 VALUES(16493, 5740, 'five thousand seven hundred forty');\nINSERT INTO t3 VALUES(16494, 46408, 'forty-six thousand four hundred eight');\nINSERT INTO t3 VALUES(16495, 20796, 'twenty thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(16496, 54911, 'fifty-four thousand nine hundred eleven');\nINSERT INTO t3 VALUES(16497, 57730, 'fifty-seven thousand seven hundred thirty');\nINSERT INTO t3 VALUES(16498, 28369, 'twenty-eight thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(16499, 50018, 'fifty thousand eighteen');\nINSERT INTO t3 VALUES(16500, 5554, 'five thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(16501, 64164, 'sixty-four thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(16502, 22750, 'twenty-two thousand seven hundred fifty');\nINSERT INTO t3 VALUES(16503, 4604, 'four thousand six hundred four');\nINSERT INTO t3 VALUES(16504, 43792, 'forty-three thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(16505, 78767, 'seventy-eight thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(16506, 16689, 'sixteen thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(16507, 73463, 'seventy-three thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(16508, 71135, 'seventy-one thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(16509, 93149, 'ninety-three thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(16510, 3504, 'three thousand five hundred four');\nINSERT INTO t3 VALUES(16511, 98538, 'ninety-eight thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(16512, 89108, 'eighty-nine thousand one hundred eight');\nINSERT INTO t3 VALUES(16513, 97708, 'ninety-seven thousand seven hundred eight');\nINSERT INTO t3 VALUES(16514, 57353, 'fifty-seven thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(16515, 21626, 'twenty-one thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(16516, 89719, 'eighty-nine thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(16517, 94085, 'ninety-four thousand eighty-five');\nINSERT INTO t3 VALUES(16518, 85095, 'eighty-five thousand ninety-five');\nINSERT INTO t3 VALUES(16519, 49252, 'forty-nine thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(16520, 48114, 'forty-eight thousand one hundred fourteen');\nINSERT INTO t3 VALUES(16521, 78855, 'seventy-eight thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(16522, 15596, 'fifteen thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(16523, 94790, 'ninety-four thousand seven hundred ninety');\nINSERT INTO t3 VALUES(16524, 74232, 'seventy-four thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(16525, 37928, 'thirty-seven thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(16526, 4075, 'four thousand seventy-five');\nINSERT INTO t3 VALUES(16527, 81990, 'eighty-one thousand nine hundred ninety');\nINSERT INTO t3 VALUES(16528, 42126, 'forty-two thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(16529, 13943, 'thirteen thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(16530, 94325, 'ninety-four thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(16531, 7122, 'seven thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(16532, 67562, 'sixty-seven thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(16533, 40253, 'forty thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(16534, 70042, 'seventy thousand forty-two');\nINSERT INTO t3 VALUES(16535, 69253, 'sixty-nine thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(16536, 66007, 'sixty-six thousand seven');\nINSERT INTO t3 VALUES(16537, 83630, 'eighty-three thousand six hundred thirty');\nINSERT INTO t3 VALUES(16538, 33589, 'thirty-three thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(16539, 70993, 'seventy thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(16540, 24581, 'twenty-four thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(16541, 12489, 'twelve thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(16542, 37807, 'thirty-seven thousand eight hundred seven');\nINSERT INTO t3 VALUES(16543, 31594, 'thirty-one thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(16544, 6248, 'six thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(16545, 91117, 'ninety-one thousand one hundred seventeen');\nINSERT INTO t3 VALUES(16546, 16096, 'sixteen thousand ninety-six');\nINSERT INTO t3 VALUES(16547, 83898, 'eighty-three thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(16548, 94402, 'ninety-four thousand four hundred two');\nINSERT INTO t3 VALUES(16549, 5180, 'five thousand one hundred eighty');\nINSERT INTO t3 VALUES(16550, 65020, 'sixty-five thousand twenty');\nINSERT INTO t3 VALUES(16551, 82203, 'eighty-two thousand two hundred three');\nINSERT INTO t3 VALUES(16552, 89424, 'eighty-nine thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(16553, 82060, 'eighty-two thousand sixty');\nINSERT INTO t3 VALUES(16554, 34425, 'thirty-four thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(16555, 29211, 'twenty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(16556, 94496, 'ninety-four thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(16557, 26701, 'twenty-six thousand seven hundred one');\nINSERT INTO t3 VALUES(16558, 60958, 'sixty thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(16559, 81826, 'eighty-one thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(16560, 42157, 'forty-two thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(16561, 35660, 'thirty-five thousand six hundred sixty');\nINSERT INTO t3 VALUES(16562, 78893, 'seventy-eight thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(16563, 99288, 'ninety-nine thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(16564, 84784, 'eighty-four thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(16565, 55252, 'fifty-five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(16566, 7686, 'seven thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(16567, 49280, 'forty-nine thousand two hundred eighty');\nINSERT INTO t3 VALUES(16568, 29623, 'twenty-nine thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(16569, 14298, 'fourteen thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(16570, 50356, 'fifty thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(16571, 26867, 'twenty-six thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(16572, 67817, 'sixty-seven thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(16573, 25310, 'twenty-five thousand three hundred ten');\nINSERT INTO t3 VALUES(16574, 24928, 'twenty-four thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(16575, 72510, 'seventy-two thousand five hundred ten');\nINSERT INTO t3 VALUES(16576, 44975, 'forty-four thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(16577, 23957, 'twenty-three thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(16578, 88426, 'eighty-eight thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(16579, 76158, 'seventy-six thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(16580, 16503, 'sixteen thousand five hundred three');\nINSERT INTO t3 VALUES(16581, 97127, 'ninety-seven thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(16582, 93858, 'ninety-three thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(16583, 68715, 'sixty-eight thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(16584, 55142, 'fifty-five thousand one hundred forty-two');\nINSERT INTO t3 VALUES(16585, 56164, 'fifty-six thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(16586, 90967, 'ninety thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(16587, 90260, 'ninety thousand two hundred sixty');\nINSERT INTO t3 VALUES(16588, 5762, 'five thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(16589, 6257, 'six thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(16590, 81436, 'eighty-one thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(16591, 6830, 'six thousand eight hundred thirty');\nINSERT INTO t3 VALUES(16592, 15419, 'fifteen thousand four hundred nineteen');\nINSERT INTO t3 VALUES(16593, 57242, 'fifty-seven thousand two hundred forty-two');\nINSERT INTO t3 VALUES(16594, 45880, 'forty-five thousand eight hundred eighty');\nINSERT INTO t3 VALUES(16595, 95943, 'ninety-five thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(16596, 58916, 'fifty-eight thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(16597, 39368, 'thirty-nine thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(16598, 49719, 'forty-nine thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(16599, 71253, 'seventy-one thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(16600, 78996, 'seventy-eight thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(16601, 85298, 'eighty-five thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(16602, 29028, 'twenty-nine thousand twenty-eight');\nINSERT INTO t3 VALUES(16603, 9968, 'nine thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(16604, 19528, 'nineteen thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(16605, 97740, 'ninety-seven thousand seven hundred forty');\nINSERT INTO t3 VALUES(16606, 82269, 'eighty-two thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(16607, 31525, 'thirty-one thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(16608, 84320, 'eighty-four thousand three hundred twenty');\nINSERT INTO t3 VALUES(16609, 32254, 'thirty-two thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(16610, 82210, 'eighty-two thousand two hundred ten');\nINSERT INTO t3 VALUES(16611, 4707, 'four thousand seven hundred seven');\nINSERT INTO t3 VALUES(16612, 88726, 'eighty-eight thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(16613, 59890, 'fifty-nine thousand eight hundred ninety');\nINSERT INTO t3 VALUES(16614, 48064, 'forty-eight thousand sixty-four');\nINSERT INTO t3 VALUES(16615, 79186, 'seventy-nine thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(16616, 96873, 'ninety-six thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(16617, 67112, 'sixty-seven thousand one hundred twelve');\nINSERT INTO t3 VALUES(16618, 64281, 'sixty-four thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(16619, 51857, 'fifty-one thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(16620, 86019, 'eighty-six thousand nineteen');\nINSERT INTO t3 VALUES(16621, 1557, 'one thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(16622, 70741, 'seventy thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(16623, 71783, 'seventy-one thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(16624, 25620, 'twenty-five thousand six hundred twenty');\nINSERT INTO t3 VALUES(16625, 40113, 'forty thousand one hundred thirteen');\nINSERT INTO t3 VALUES(16626, 97310, 'ninety-seven thousand three hundred ten');\nINSERT INTO t3 VALUES(16627, 19707, 'nineteen thousand seven hundred seven');\nINSERT INTO t3 VALUES(16628, 80869, 'eighty thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(16629, 73997, 'seventy-three thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(16630, 95063, 'ninety-five thousand sixty-three');\nINSERT INTO t3 VALUES(16631, 40131, 'forty thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(16632, 83385, 'eighty-three thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(16633, 17344, 'seventeen thousand three hundred forty-four');\nINSERT INTO t3 VALUES(16634, 81701, 'eighty-one thousand seven hundred one');\nINSERT INTO t3 VALUES(16635, 40864, 'forty thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(16636, 73484, 'seventy-three thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(16637, 47371, 'forty-seven thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(16638, 13680, 'thirteen thousand six hundred eighty');\nINSERT INTO t3 VALUES(16639, 58944, 'fifty-eight thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(16640, 48766, 'forty-eight thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(16641, 56983, 'fifty-six thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(16642, 49063, 'forty-nine thousand sixty-three');\nINSERT INTO t3 VALUES(16643, 35055, 'thirty-five thousand fifty-five');\nINSERT INTO t3 VALUES(16644, 16333, 'sixteen thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(16645, 2595, 'two thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(16646, 74693, 'seventy-four thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(16647, 23070, 'twenty-three thousand seventy');\nINSERT INTO t3 VALUES(16648, 94879, 'ninety-four thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(16649, 78876, 'seventy-eight thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(16650, 40040, 'forty thousand forty');\nINSERT INTO t3 VALUES(16651, 40327, 'forty thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(16652, 94773, 'ninety-four thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(16653, 97894, 'ninety-seven thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(16654, 28232, 'twenty-eight thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(16655, 41606, 'forty-one thousand six hundred six');\nINSERT INTO t3 VALUES(16656, 58347, 'fifty-eight thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(16657, 70372, 'seventy thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(16658, 2307, 'two thousand three hundred seven');\nINSERT INTO t3 VALUES(16659, 10443, 'ten thousand four hundred forty-three');\nINSERT INTO t3 VALUES(16660, 98569, 'ninety-eight thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(16661, 64822, 'sixty-four thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(16662, 4020, 'four thousand twenty');\nINSERT INTO t3 VALUES(16663, 61330, 'sixty-one thousand three hundred thirty');\nINSERT INTO t3 VALUES(16664, 25805, 'twenty-five thousand eight hundred five');\nINSERT INTO t3 VALUES(16665, 85760, 'eighty-five thousand seven hundred sixty');\nINSERT INTO t3 VALUES(16666, 49823, 'forty-nine thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(16667, 13946, 'thirteen thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(16668, 10774, 'ten thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(16669, 70412, 'seventy thousand four hundred twelve');\nINSERT INTO t3 VALUES(16670, 75357, 'seventy-five thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(16671, 40273, 'forty thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(16672, 41325, 'forty-one thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(16673, 80069, 'eighty thousand sixty-nine');\nINSERT INTO t3 VALUES(16674, 79826, 'seventy-nine thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(16675, 40063, 'forty thousand sixty-three');\nINSERT INTO t3 VALUES(16676, 4729, 'four thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(16677, 33520, 'thirty-three thousand five hundred twenty');\nINSERT INTO t3 VALUES(16678, 10896, 'ten thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(16679, 39604, 'thirty-nine thousand six hundred four');\nINSERT INTO t3 VALUES(16680, 91270, 'ninety-one thousand two hundred seventy');\nINSERT INTO t3 VALUES(16681, 31440, 'thirty-one thousand four hundred forty');\nINSERT INTO t3 VALUES(16682, 67528, 'sixty-seven thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(16683, 47873, 'forty-seven thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(16684, 71769, 'seventy-one thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(16685, 41492, 'forty-one thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(16686, 23302, 'twenty-three thousand three hundred two');\nINSERT INTO t3 VALUES(16687, 36299, 'thirty-six thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(16688, 32092, 'thirty-two thousand ninety-two');\nINSERT INTO t3 VALUES(16689, 74985, 'seventy-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(16690, 92065, 'ninety-two thousand sixty-five');\nINSERT INTO t3 VALUES(16691, 18205, 'eighteen thousand two hundred five');\nINSERT INTO t3 VALUES(16692, 94840, 'ninety-four thousand eight hundred forty');\nINSERT INTO t3 VALUES(16693, 41416, 'forty-one thousand four hundred sixteen');\nINSERT INTO t3 VALUES(16694, 88002, 'eighty-eight thousand two');\nINSERT INTO t3 VALUES(16695, 94338, 'ninety-four thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(16696, 95261, 'ninety-five thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(16697, 50277, 'fifty thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(16698, 17066, 'seventeen thousand sixty-six');\nINSERT INTO t3 VALUES(16699, 38162, 'thirty-eight thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(16700, 44807, 'forty-four thousand eight hundred seven');\nINSERT INTO t3 VALUES(16701, 10727, 'ten thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(16702, 14542, 'fourteen thousand five hundred forty-two');\nINSERT INTO t3 VALUES(16703, 95518, 'ninety-five thousand five hundred eighteen');\nINSERT INTO t3 VALUES(16704, 83077, 'eighty-three thousand seventy-seven');\nINSERT INTO t3 VALUES(16705, 55666, 'fifty-five thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(16706, 25202, 'twenty-five thousand two hundred two');\nINSERT INTO t3 VALUES(16707, 73677, 'seventy-three thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(16708, 73768, 'seventy-three thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(16709, 84851, 'eighty-four thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(16710, 37636, 'thirty-seven thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(16711, 18429, 'eighteen thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(16712, 71339, 'seventy-one thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(16713, 55770, 'fifty-five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(16714, 9861, 'nine thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(16715, 17973, 'seventeen thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(16716, 38438, 'thirty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(16717, 67855, 'sixty-seven thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(16718, 40450, 'forty thousand four hundred fifty');\nINSERT INTO t3 VALUES(16719, 40228, 'forty thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(16720, 75986, 'seventy-five thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(16721, 4348, 'four thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(16722, 80956, 'eighty thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(16723, 72242, 'seventy-two thousand two hundred forty-two');\nINSERT INTO t3 VALUES(16724, 50975, 'fifty thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(16725, 66261, 'sixty-six thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(16726, 74527, 'seventy-four thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(16727, 73247, 'seventy-three thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(16728, 39306, 'thirty-nine thousand three hundred six');\nINSERT INTO t3 VALUES(16729, 77488, 'seventy-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(16730, 46180, 'forty-six thousand one hundred eighty');\nINSERT INTO t3 VALUES(16731, 41076, 'forty-one thousand seventy-six');\nINSERT INTO t3 VALUES(16732, 20270, 'twenty thousand two hundred seventy');\nINSERT INTO t3 VALUES(16733, 81210, 'eighty-one thousand two hundred ten');\nINSERT INTO t3 VALUES(16734, 8430, 'eight thousand four hundred thirty');\nINSERT INTO t3 VALUES(16735, 43882, 'forty-three thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(16736, 88178, 'eighty-eight thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(16737, 1745, 'one thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(16738, 50680, 'fifty thousand six hundred eighty');\nINSERT INTO t3 VALUES(16739, 30272, 'thirty thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(16740, 42171, 'forty-two thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(16741, 15460, 'fifteen thousand four hundred sixty');\nINSERT INTO t3 VALUES(16742, 15161, 'fifteen thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(16743, 20855, 'twenty thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(16744, 38718, 'thirty-eight thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(16745, 4495, 'four thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(16746, 25727, 'twenty-five thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(16747, 77573, 'seventy-seven thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(16748, 161, 'one hundred sixty-one');\nINSERT INTO t3 VALUES(16749, 91763, 'ninety-one thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(16750, 96121, 'ninety-six thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(16751, 94514, 'ninety-four thousand five hundred fourteen');\nINSERT INTO t3 VALUES(16752, 84448, 'eighty-four thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(16753, 54246, 'fifty-four thousand two hundred forty-six');\nINSERT INTO t3 VALUES(16754, 70057, 'seventy thousand fifty-seven');\nINSERT INTO t3 VALUES(16755, 1893, 'one thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(16756, 65360, 'sixty-five thousand three hundred sixty');\nINSERT INTO t3 VALUES(16757, 68082, 'sixty-eight thousand eighty-two');\nINSERT INTO t3 VALUES(16758, 94486, 'ninety-four thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(16759, 16424, 'sixteen thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(16760, 8171, 'eight thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(16761, 66650, 'sixty-six thousand six hundred fifty');\nINSERT INTO t3 VALUES(16762, 57761, 'fifty-seven thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(16763, 81716, 'eighty-one thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(16764, 20959, 'twenty thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(16765, 64886, 'sixty-four thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(16766, 11942, 'eleven thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(16767, 43713, 'forty-three thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(16768, 27009, 'twenty-seven thousand nine');\nINSERT INTO t3 VALUES(16769, 65097, 'sixty-five thousand ninety-seven');\nINSERT INTO t3 VALUES(16770, 224, 'two hundred twenty-four');\nINSERT INTO t3 VALUES(16771, 68279, 'sixty-eight thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(16772, 75585, 'seventy-five thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(16773, 25412, 'twenty-five thousand four hundred twelve');\nINSERT INTO t3 VALUES(16774, 8120, 'eight thousand one hundred twenty');\nINSERT INTO t3 VALUES(16775, 77387, 'seventy-seven thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(16776, 55274, 'fifty-five thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(16777, 98376, 'ninety-eight thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(16778, 32920, 'thirty-two thousand nine hundred twenty');\nINSERT INTO t3 VALUES(16779, 9442, 'nine thousand four hundred forty-two');\nINSERT INTO t3 VALUES(16780, 47345, 'forty-seven thousand three hundred forty-five');\nINSERT INTO t3 VALUES(16781, 80701, 'eighty thousand seven hundred one');\nINSERT INTO t3 VALUES(16782, 81536, 'eighty-one thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(16783, 24773, 'twenty-four thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(16784, 43372, 'forty-three thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(16785, 98513, 'ninety-eight thousand five hundred thirteen');\nINSERT INTO t3 VALUES(16786, 75910, 'seventy-five thousand nine hundred ten');\nINSERT INTO t3 VALUES(16787, 43921, 'forty-three thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(16788, 67223, 'sixty-seven thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(16789, 16180, 'sixteen thousand one hundred eighty');\nINSERT INTO t3 VALUES(16790, 5120, 'five thousand one hundred twenty');\nINSERT INTO t3 VALUES(16791, 33007, 'thirty-three thousand seven');\nINSERT INTO t3 VALUES(16792, 16289, 'sixteen thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(16793, 9307, 'nine thousand three hundred seven');\nINSERT INTO t3 VALUES(16794, 99746, 'ninety-nine thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(16795, 4384, 'four thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(16796, 34029, 'thirty-four thousand twenty-nine');\nINSERT INTO t3 VALUES(16797, 52498, 'fifty-two thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(16798, 25558, 'twenty-five thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(16799, 45698, 'forty-five thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(16800, 46660, 'forty-six thousand six hundred sixty');\nINSERT INTO t3 VALUES(16801, 62847, 'sixty-two thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(16802, 87048, 'eighty-seven thousand forty-eight');\nINSERT INTO t3 VALUES(16803, 36782, 'thirty-six thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(16804, 29840, 'twenty-nine thousand eight hundred forty');\nINSERT INTO t3 VALUES(16805, 87985, 'eighty-seven thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(16806, 49742, 'forty-nine thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(16807, 45591, 'forty-five thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(16808, 88951, 'eighty-eight thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(16809, 91650, 'ninety-one thousand six hundred fifty');\nINSERT INTO t3 VALUES(16810, 5211, 'five thousand two hundred eleven');\nINSERT INTO t3 VALUES(16811, 72990, 'seventy-two thousand nine hundred ninety');\nINSERT INTO t3 VALUES(16812, 11207, 'eleven thousand two hundred seven');\nINSERT INTO t3 VALUES(16813, 75821, 'seventy-five thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(16814, 80781, 'eighty thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(16815, 81383, 'eighty-one thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(16816, 54858, 'fifty-four thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(16817, 23954, 'twenty-three thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(16818, 16825, 'sixteen thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(16819, 20043, 'twenty thousand forty-three');\nINSERT INTO t3 VALUES(16820, 25323, 'twenty-five thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(16821, 88853, 'eighty-eight thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(16822, 66251, 'sixty-six thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(16823, 53299, 'fifty-three thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(16824, 73133, 'seventy-three thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(16825, 54252, 'fifty-four thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(16826, 42210, 'forty-two thousand two hundred ten');\nINSERT INTO t3 VALUES(16827, 1008, 'one thousand eight');\nINSERT INTO t3 VALUES(16828, 88511, 'eighty-eight thousand five hundred eleven');\nINSERT INTO t3 VALUES(16829, 94909, 'ninety-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(16830, 90538, 'ninety thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(16831, 5984, 'five thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(16832, 64051, 'sixty-four thousand fifty-one');\nINSERT INTO t3 VALUES(16833, 93119, 'ninety-three thousand one hundred nineteen');\nINSERT INTO t3 VALUES(16834, 2658, 'two thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(16835, 5181, 'five thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(16836, 6647, 'six thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(16837, 13864, 'thirteen thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(16838, 21195, 'twenty-one thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(16839, 31379, 'thirty-one thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(16840, 20884, 'twenty thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(16841, 31841, 'thirty-one thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(16842, 17804, 'seventeen thousand eight hundred four');\nINSERT INTO t3 VALUES(16843, 34418, 'thirty-four thousand four hundred eighteen');\nINSERT INTO t3 VALUES(16844, 81012, 'eighty-one thousand twelve');\nINSERT INTO t3 VALUES(16845, 34202, 'thirty-four thousand two hundred two');\nINSERT INTO t3 VALUES(16846, 41365, 'forty-one thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(16847, 57005, 'fifty-seven thousand five');\nINSERT INTO t3 VALUES(16848, 13783, 'thirteen thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(16849, 26317, 'twenty-six thousand three hundred seventeen');\nINSERT INTO t3 VALUES(16850, 15735, 'fifteen thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(16851, 52702, 'fifty-two thousand seven hundred two');\nINSERT INTO t3 VALUES(16852, 46999, 'forty-six thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(16853, 17673, 'seventeen thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(16854, 34843, 'thirty-four thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(16855, 91000, 'ninety-one thousand');\nINSERT INTO t3 VALUES(16856, 23654, 'twenty-three thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(16857, 39864, 'thirty-nine thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(16858, 36335, 'thirty-six thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(16859, 62564, 'sixty-two thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(16860, 10970, 'ten thousand nine hundred seventy');\nINSERT INTO t3 VALUES(16861, 54194, 'fifty-four thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(16862, 7003, 'seven thousand three');\nINSERT INTO t3 VALUES(16863, 42238, 'forty-two thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(16864, 86694, 'eighty-six thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(16865, 76589, 'seventy-six thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(16866, 2153, 'two thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(16867, 5233, 'five thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(16868, 51793, 'fifty-one thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(16869, 88978, 'eighty-eight thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(16870, 21437, 'twenty-one thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(16871, 49746, 'forty-nine thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(16872, 75343, 'seventy-five thousand three hundred forty-three');\nINSERT INTO t3 VALUES(16873, 84019, 'eighty-four thousand nineteen');\nINSERT INTO t3 VALUES(16874, 5524, 'five thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(16875, 92466, 'ninety-two thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(16876, 94043, 'ninety-four thousand forty-three');\nINSERT INTO t3 VALUES(16877, 41692, 'forty-one thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(16878, 60075, 'sixty thousand seventy-five');\nINSERT INTO t3 VALUES(16879, 57777, 'fifty-seven thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(16880, 63361, 'sixty-three thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(16881, 12691, 'twelve thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(16882, 35852, 'thirty-five thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(16883, 89924, 'eighty-nine thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(16884, 37922, 'thirty-seven thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(16885, 19978, 'nineteen thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(16886, 69874, 'sixty-nine thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(16887, 37673, 'thirty-seven thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(16888, 47718, 'forty-seven thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(16889, 81335, 'eighty-one thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(16890, 20094, 'twenty thousand ninety-four');\nINSERT INTO t3 VALUES(16891, 39051, 'thirty-nine thousand fifty-one');\nINSERT INTO t3 VALUES(16892, 87785, 'eighty-seven thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(16893, 3777, 'three thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(16894, 48554, 'forty-eight thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(16895, 55848, 'fifty-five thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(16896, 65128, 'sixty-five thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(16897, 866, 'eight hundred sixty-six');\nINSERT INTO t3 VALUES(16898, 91552, 'ninety-one thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(16899, 42745, 'forty-two thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(16900, 44360, 'forty-four thousand three hundred sixty');\nINSERT INTO t3 VALUES(16901, 76329, 'seventy-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(16902, 39101, 'thirty-nine thousand one hundred one');\nINSERT INTO t3 VALUES(16903, 87458, 'eighty-seven thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(16904, 11345, 'eleven thousand three hundred forty-five');\nINSERT INTO t3 VALUES(16905, 60509, 'sixty thousand five hundred nine');\nINSERT INTO t3 VALUES(16906, 65765, 'sixty-five thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(16907, 1938, 'one thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(16908, 51533, 'fifty-one thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(16909, 51167, 'fifty-one thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(16910, 32618, 'thirty-two thousand six hundred eighteen');\nINSERT INTO t3 VALUES(16911, 2213, 'two thousand two hundred thirteen');\nINSERT INTO t3 VALUES(16912, 90188, 'ninety thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(16913, 33544, 'thirty-three thousand five hundred forty-four');\nINSERT INTO t3 VALUES(16914, 36602, 'thirty-six thousand six hundred two');\nINSERT INTO t3 VALUES(16915, 59814, 'fifty-nine thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(16916, 58502, 'fifty-eight thousand five hundred two');\nINSERT INTO t3 VALUES(16917, 14464, 'fourteen thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(16918, 60101, 'sixty thousand one hundred one');\nINSERT INTO t3 VALUES(16919, 54040, 'fifty-four thousand forty');\nINSERT INTO t3 VALUES(16920, 90217, 'ninety thousand two hundred seventeen');\nINSERT INTO t3 VALUES(16921, 29392, 'twenty-nine thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(16922, 91626, 'ninety-one thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(16923, 75991, 'seventy-five thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(16924, 15585, 'fifteen thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(16925, 64082, 'sixty-four thousand eighty-two');\nINSERT INTO t3 VALUES(16926, 38232, 'thirty-eight thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(16927, 11196, 'eleven thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(16928, 30689, 'thirty thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(16929, 28855, 'twenty-eight thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(16930, 32059, 'thirty-two thousand fifty-nine');\nINSERT INTO t3 VALUES(16931, 91177, 'ninety-one thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(16932, 53387, 'fifty-three thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(16933, 42930, 'forty-two thousand nine hundred thirty');\nINSERT INTO t3 VALUES(16934, 27797, 'twenty-seven thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(16935, 41899, 'forty-one thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(16936, 77488, 'seventy-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(16937, 79068, 'seventy-nine thousand sixty-eight');\nINSERT INTO t3 VALUES(16938, 47908, 'forty-seven thousand nine hundred eight');\nINSERT INTO t3 VALUES(16939, 19993, 'nineteen thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(16940, 58154, 'fifty-eight thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(16941, 4725, 'four thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(16942, 36570, 'thirty-six thousand five hundred seventy');\nINSERT INTO t3 VALUES(16943, 6516, 'six thousand five hundred sixteen');\nINSERT INTO t3 VALUES(16944, 7855, 'seven thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(16945, 47358, 'forty-seven thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(16946, 99510, 'ninety-nine thousand five hundred ten');\nINSERT INTO t3 VALUES(16947, 81640, 'eighty-one thousand six hundred forty');\nINSERT INTO t3 VALUES(16948, 76124, 'seventy-six thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(16949, 21127, 'twenty-one thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(16950, 23642, 'twenty-three thousand six hundred forty-two');\nINSERT INTO t3 VALUES(16951, 34613, 'thirty-four thousand six hundred thirteen');\nINSERT INTO t3 VALUES(16952, 12952, 'twelve thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(16953, 30383, 'thirty thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(16954, 76084, 'seventy-six thousand eighty-four');\nINSERT INTO t3 VALUES(16955, 32886, 'thirty-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(16956, 82780, 'eighty-two thousand seven hundred eighty');\nINSERT INTO t3 VALUES(16957, 23413, 'twenty-three thousand four hundred thirteen');\nINSERT INTO t3 VALUES(16958, 70806, 'seventy thousand eight hundred six');\nINSERT INTO t3 VALUES(16959, 10306, 'ten thousand three hundred six');\nINSERT INTO t3 VALUES(16960, 96443, 'ninety-six thousand four hundred forty-three');\nINSERT INTO t3 VALUES(16961, 26933, 'twenty-six thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(16962, 34535, 'thirty-four thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(16963, 60531, 'sixty thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(16964, 67857, 'sixty-seven thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(16965, 25588, 'twenty-five thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(16966, 93291, 'ninety-three thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(16967, 75840, 'seventy-five thousand eight hundred forty');\nINSERT INTO t3 VALUES(16968, 54350, 'fifty-four thousand three hundred fifty');\nINSERT INTO t3 VALUES(16969, 9060, 'nine thousand sixty');\nINSERT INTO t3 VALUES(16970, 21383, 'twenty-one thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(16971, 77407, 'seventy-seven thousand four hundred seven');\nINSERT INTO t3 VALUES(16972, 70534, 'seventy thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(16973, 6166, 'six thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(16974, 27907, 'twenty-seven thousand nine hundred seven');\nINSERT INTO t3 VALUES(16975, 14888, 'fourteen thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(16976, 91496, 'ninety-one thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(16977, 74124, 'seventy-four thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(16978, 38036, 'thirty-eight thousand thirty-six');\nINSERT INTO t3 VALUES(16979, 31916, 'thirty-one thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(16980, 81656, 'eighty-one thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(16981, 33247, 'thirty-three thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(16982, 10253, 'ten thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(16983, 66230, 'sixty-six thousand two hundred thirty');\nINSERT INTO t3 VALUES(16984, 9165, 'nine thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(16985, 2763, 'two thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(16986, 63257, 'sixty-three thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(16987, 51111, 'fifty-one thousand one hundred eleven');\nINSERT INTO t3 VALUES(16988, 93673, 'ninety-three thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(16989, 65158, 'sixty-five thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(16990, 25098, 'twenty-five thousand ninety-eight');\nINSERT INTO t3 VALUES(16991, 41649, 'forty-one thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(16992, 92139, 'ninety-two thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(16993, 68270, 'sixty-eight thousand two hundred seventy');\nINSERT INTO t3 VALUES(16994, 89759, 'eighty-nine thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(16995, 58740, 'fifty-eight thousand seven hundred forty');\nINSERT INTO t3 VALUES(16996, 28522, 'twenty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(16997, 65057, 'sixty-five thousand fifty-seven');\nINSERT INTO t3 VALUES(16998, 75102, 'seventy-five thousand one hundred two');\nINSERT INTO t3 VALUES(16999, 95953, 'ninety-five thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(17000, 2106, 'two thousand one hundred six');\nINSERT INTO t3 VALUES(17001, 63494, 'sixty-three thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(17002, 35242, 'thirty-five thousand two hundred forty-two');\nINSERT INTO t3 VALUES(17003, 97552, 'ninety-seven thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(17004, 56337, 'fifty-six thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(17005, 82048, 'eighty-two thousand forty-eight');\nINSERT INTO t3 VALUES(17006, 62080, 'sixty-two thousand eighty');\nINSERT INTO t3 VALUES(17007, 60988, 'sixty thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(17008, 97047, 'ninety-seven thousand forty-seven');\nINSERT INTO t3 VALUES(17009, 81550, 'eighty-one thousand five hundred fifty');\nINSERT INTO t3 VALUES(17010, 46611, 'forty-six thousand six hundred eleven');\nINSERT INTO t3 VALUES(17011, 53479, 'fifty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(17012, 60548, 'sixty thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(17013, 92466, 'ninety-two thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(17014, 21052, 'twenty-one thousand fifty-two');\nINSERT INTO t3 VALUES(17015, 49849, 'forty-nine thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(17016, 34225, 'thirty-four thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(17017, 39376, 'thirty-nine thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(17018, 4686, 'four thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(17019, 81570, 'eighty-one thousand five hundred seventy');\nINSERT INTO t3 VALUES(17020, 46477, 'forty-six thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(17021, 77972, 'seventy-seven thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(17022, 39055, 'thirty-nine thousand fifty-five');\nINSERT INTO t3 VALUES(17023, 95375, 'ninety-five thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(17024, 91815, 'ninety-one thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(17025, 735, 'seven hundred thirty-five');\nINSERT INTO t3 VALUES(17026, 43397, 'forty-three thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(17027, 45161, 'forty-five thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(17028, 39624, 'thirty-nine thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(17029, 16783, 'sixteen thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(17030, 19972, 'nineteen thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(17031, 52155, 'fifty-two thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(17032, 4652, 'four thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(17033, 39468, 'thirty-nine thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(17034, 68683, 'sixty-eight thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(17035, 81991, 'eighty-one thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(17036, 15181, 'fifteen thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(17037, 27494, 'twenty-seven thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(17038, 71154, 'seventy-one thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(17039, 11199, 'eleven thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(17040, 62844, 'sixty-two thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(17041, 15174, 'fifteen thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(17042, 32416, 'thirty-two thousand four hundred sixteen');\nINSERT INTO t3 VALUES(17043, 70650, 'seventy thousand six hundred fifty');\nINSERT INTO t3 VALUES(17044, 18574, 'eighteen thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(17045, 22158, 'twenty-two thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(17046, 49011, 'forty-nine thousand eleven');\nINSERT INTO t3 VALUES(17047, 30590, 'thirty thousand five hundred ninety');\nINSERT INTO t3 VALUES(17048, 24304, 'twenty-four thousand three hundred four');\nINSERT INTO t3 VALUES(17049, 81443, 'eighty-one thousand four hundred forty-three');\nINSERT INTO t3 VALUES(17050, 2895, 'two thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(17051, 85918, 'eighty-five thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(17052, 38673, 'thirty-eight thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(17053, 19919, 'nineteen thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(17054, 31687, 'thirty-one thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(17055, 78710, 'seventy-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(17056, 58359, 'fifty-eight thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(17057, 16313, 'sixteen thousand three hundred thirteen');\nINSERT INTO t3 VALUES(17058, 51524, 'fifty-one thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(17059, 94909, 'ninety-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(17060, 97295, 'ninety-seven thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(17061, 22096, 'twenty-two thousand ninety-six');\nINSERT INTO t3 VALUES(17062, 54751, 'fifty-four thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(17063, 42063, 'forty-two thousand sixty-three');\nINSERT INTO t3 VALUES(17064, 91707, 'ninety-one thousand seven hundred seven');\nINSERT INTO t3 VALUES(17065, 28529, 'twenty-eight thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(17066, 98122, 'ninety-eight thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(17067, 29868, 'twenty-nine thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(17068, 35526, 'thirty-five thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(17069, 59778, 'fifty-nine thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(17070, 22656, 'twenty-two thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(17071, 93149, 'ninety-three thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(17072, 63377, 'sixty-three thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(17073, 93865, 'ninety-three thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(17074, 14180, 'fourteen thousand one hundred eighty');\nINSERT INTO t3 VALUES(17075, 34188, 'thirty-four thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(17076, 89235, 'eighty-nine thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(17077, 93828, 'ninety-three thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(17078, 7899, 'seven thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(17079, 98138, 'ninety-eight thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(17080, 80323, 'eighty thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(17081, 53807, 'fifty-three thousand eight hundred seven');\nINSERT INTO t3 VALUES(17082, 20562, 'twenty thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(17083, 58572, 'fifty-eight thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(17084, 46951, 'forty-six thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(17085, 90458, 'ninety thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(17086, 59746, 'fifty-nine thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(17087, 98561, 'ninety-eight thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(17088, 36478, 'thirty-six thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(17089, 45280, 'forty-five thousand two hundred eighty');\nINSERT INTO t3 VALUES(17090, 12372, 'twelve thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(17091, 60392, 'sixty thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(17092, 62, 'sixty-two');\nINSERT INTO t3 VALUES(17093, 99396, 'ninety-nine thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(17094, 67809, 'sixty-seven thousand eight hundred nine');\nINSERT INTO t3 VALUES(17095, 48807, 'forty-eight thousand eight hundred seven');\nINSERT INTO t3 VALUES(17096, 72405, 'seventy-two thousand four hundred five');\nINSERT INTO t3 VALUES(17097, 57368, 'fifty-seven thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(17098, 69057, 'sixty-nine thousand fifty-seven');\nINSERT INTO t3 VALUES(17099, 15945, 'fifteen thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(17100, 43936, 'forty-three thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(17101, 89880, 'eighty-nine thousand eight hundred eighty');\nINSERT INTO t3 VALUES(17102, 21105, 'twenty-one thousand one hundred five');\nINSERT INTO t3 VALUES(17103, 87808, 'eighty-seven thousand eight hundred eight');\nINSERT INTO t3 VALUES(17104, 55528, 'fifty-five thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(17105, 89706, 'eighty-nine thousand seven hundred six');\nINSERT INTO t3 VALUES(17106, 81463, 'eighty-one thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(17107, 78574, 'seventy-eight thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(17108, 52927, 'fifty-two thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(17109, 93016, 'ninety-three thousand sixteen');\nINSERT INTO t3 VALUES(17110, 3222, 'three thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(17111, 18419, 'eighteen thousand four hundred nineteen');\nINSERT INTO t3 VALUES(17112, 95128, 'ninety-five thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(17113, 64838, 'sixty-four thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(17114, 69028, 'sixty-nine thousand twenty-eight');\nINSERT INTO t3 VALUES(17115, 78468, 'seventy-eight thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(17116, 6485, 'six thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(17117, 55154, 'fifty-five thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(17118, 73539, 'seventy-three thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(17119, 33698, 'thirty-three thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(17120, 83939, 'eighty-three thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(17121, 14141, 'fourteen thousand one hundred forty-one');\nINSERT INTO t3 VALUES(17122, 86954, 'eighty-six thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(17123, 8303, 'eight thousand three hundred three');\nINSERT INTO t3 VALUES(17124, 55917, 'fifty-five thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(17125, 9175, 'nine thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(17126, 96897, 'ninety-six thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(17127, 68871, 'sixty-eight thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(17128, 10538, 'ten thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(17129, 73302, 'seventy-three thousand three hundred two');\nINSERT INTO t3 VALUES(17130, 34807, 'thirty-four thousand eight hundred seven');\nINSERT INTO t3 VALUES(17131, 17621, 'seventeen thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(17132, 4673, 'four thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(17133, 90590, 'ninety thousand five hundred ninety');\nINSERT INTO t3 VALUES(17134, 25996, 'twenty-five thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(17135, 33932, 'thirty-three thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(17136, 40592, 'forty thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(17137, 95991, 'ninety-five thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(17138, 91788, 'ninety-one thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(17139, 41981, 'forty-one thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(17140, 65715, 'sixty-five thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(17141, 22104, 'twenty-two thousand one hundred four');\nINSERT INTO t3 VALUES(17142, 53630, 'fifty-three thousand six hundred thirty');\nINSERT INTO t3 VALUES(17143, 54650, 'fifty-four thousand six hundred fifty');\nINSERT INTO t3 VALUES(17144, 36936, 'thirty-six thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(17145, 93432, 'ninety-three thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(17146, 24318, 'twenty-four thousand three hundred eighteen');\nINSERT INTO t3 VALUES(17147, 92624, 'ninety-two thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(17148, 10678, 'ten thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(17149, 79128, 'seventy-nine thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(17150, 59929, 'fifty-nine thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(17151, 9996, 'nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(17152, 50132, 'fifty thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(17153, 4093, 'four thousand ninety-three');\nINSERT INTO t3 VALUES(17154, 76092, 'seventy-six thousand ninety-two');\nINSERT INTO t3 VALUES(17155, 34664, 'thirty-four thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(17156, 21112, 'twenty-one thousand one hundred twelve');\nINSERT INTO t3 VALUES(17157, 55122, 'fifty-five thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(17158, 59103, 'fifty-nine thousand one hundred three');\nINSERT INTO t3 VALUES(17159, 87026, 'eighty-seven thousand twenty-six');\nINSERT INTO t3 VALUES(17160, 65022, 'sixty-five thousand twenty-two');\nINSERT INTO t3 VALUES(17161, 27318, 'twenty-seven thousand three hundred eighteen');\nINSERT INTO t3 VALUES(17162, 17662, 'seventeen thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(17163, 46278, 'forty-six thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(17164, 77712, 'seventy-seven thousand seven hundred twelve');\nINSERT INTO t3 VALUES(17165, 53207, 'fifty-three thousand two hundred seven');\nINSERT INTO t3 VALUES(17166, 23658, 'twenty-three thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(17167, 26472, 'twenty-six thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(17168, 67377, 'sixty-seven thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(17169, 888, 'eight hundred eighty-eight');\nINSERT INTO t3 VALUES(17170, 8775, 'eight thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(17171, 58278, 'fifty-eight thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(17172, 48347, 'forty-eight thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(17173, 76870, 'seventy-six thousand eight hundred seventy');\nINSERT INTO t3 VALUES(17174, 65663, 'sixty-five thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(17175, 90062, 'ninety thousand sixty-two');\nINSERT INTO t3 VALUES(17176, 8813, 'eight thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(17177, 37052, 'thirty-seven thousand fifty-two');\nINSERT INTO t3 VALUES(17178, 72063, 'seventy-two thousand sixty-three');\nINSERT INTO t3 VALUES(17179, 10988, 'ten thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(17180, 3149, 'three thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(17181, 33735, 'thirty-three thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(17182, 87434, 'eighty-seven thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(17183, 8757, 'eight thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(17184, 95461, 'ninety-five thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(17185, 56422, 'fifty-six thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(17186, 91783, 'ninety-one thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(17187, 10699, 'ten thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(17188, 21675, 'twenty-one thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(17189, 53553, 'fifty-three thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(17190, 88533, 'eighty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(17191, 2480, 'two thousand four hundred eighty');\nINSERT INTO t3 VALUES(17192, 38926, 'thirty-eight thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(17193, 65269, 'sixty-five thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(17194, 26628, 'twenty-six thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(17195, 32774, 'thirty-two thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(17196, 46194, 'forty-six thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(17197, 96839, 'ninety-six thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(17198, 91090, 'ninety-one thousand ninety');\nINSERT INTO t3 VALUES(17199, 8269, 'eight thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(17200, 63390, 'sixty-three thousand three hundred ninety');\nINSERT INTO t3 VALUES(17201, 83483, 'eighty-three thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(17202, 47181, 'forty-seven thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(17203, 13357, 'thirteen thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(17204, 98189, 'ninety-eight thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(17205, 78812, 'seventy-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(17206, 14344, 'fourteen thousand three hundred forty-four');\nINSERT INTO t3 VALUES(17207, 84390, 'eighty-four thousand three hundred ninety');\nINSERT INTO t3 VALUES(17208, 14158, 'fourteen thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(17209, 93841, 'ninety-three thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(17210, 21158, 'twenty-one thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(17211, 50851, 'fifty thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(17212, 70584, 'seventy thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(17213, 85215, 'eighty-five thousand two hundred fifteen');\nINSERT INTO t3 VALUES(17214, 82167, 'eighty-two thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(17215, 41063, 'forty-one thousand sixty-three');\nINSERT INTO t3 VALUES(17216, 93141, 'ninety-three thousand one hundred forty-one');\nINSERT INTO t3 VALUES(17217, 84600, 'eighty-four thousand six hundred');\nINSERT INTO t3 VALUES(17218, 49293, 'forty-nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(17219, 33538, 'thirty-three thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(17220, 30856, 'thirty thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(17221, 48479, 'forty-eight thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(17222, 13694, 'thirteen thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(17223, 76600, 'seventy-six thousand six hundred');\nINSERT INTO t3 VALUES(17224, 59023, 'fifty-nine thousand twenty-three');\nINSERT INTO t3 VALUES(17225, 54963, 'fifty-four thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(17226, 39854, 'thirty-nine thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(17227, 40256, 'forty thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(17228, 28092, 'twenty-eight thousand ninety-two');\nINSERT INTO t3 VALUES(17229, 27349, 'twenty-seven thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(17230, 47690, 'forty-seven thousand six hundred ninety');\nINSERT INTO t3 VALUES(17231, 46433, 'forty-six thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(17232, 41026, 'forty-one thousand twenty-six');\nINSERT INTO t3 VALUES(17233, 53599, 'fifty-three thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(17234, 30550, 'thirty thousand five hundred fifty');\nINSERT INTO t3 VALUES(17235, 61934, 'sixty-one thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(17236, 53803, 'fifty-three thousand eight hundred three');\nINSERT INTO t3 VALUES(17237, 91617, 'ninety-one thousand six hundred seventeen');\nINSERT INTO t3 VALUES(17238, 53567, 'fifty-three thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(17239, 64500, 'sixty-four thousand five hundred');\nINSERT INTO t3 VALUES(17240, 98670, 'ninety-eight thousand six hundred seventy');\nINSERT INTO t3 VALUES(17241, 17892, 'seventeen thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(17242, 27127, 'twenty-seven thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(17243, 96444, 'ninety-six thousand four hundred forty-four');\nINSERT INTO t3 VALUES(17244, 60476, 'sixty thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(17245, 67161, 'sixty-seven thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(17246, 63900, 'sixty-three thousand nine hundred');\nINSERT INTO t3 VALUES(17247, 2094, 'two thousand ninety-four');\nINSERT INTO t3 VALUES(17248, 52811, 'fifty-two thousand eight hundred eleven');\nINSERT INTO t3 VALUES(17249, 74228, 'seventy-four thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(17250, 37440, 'thirty-seven thousand four hundred forty');\nINSERT INTO t3 VALUES(17251, 89085, 'eighty-nine thousand eighty-five');\nINSERT INTO t3 VALUES(17252, 59547, 'fifty-nine thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(17253, 60700, 'sixty thousand seven hundred');\nINSERT INTO t3 VALUES(17254, 53466, 'fifty-three thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(17255, 66011, 'sixty-six thousand eleven');\nINSERT INTO t3 VALUES(17256, 34632, 'thirty-four thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(17257, 41468, 'forty-one thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(17258, 94596, 'ninety-four thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(17259, 55601, 'fifty-five thousand six hundred one');\nINSERT INTO t3 VALUES(17260, 5446, 'five thousand four hundred forty-six');\nINSERT INTO t3 VALUES(17261, 88094, 'eighty-eight thousand ninety-four');\nINSERT INTO t3 VALUES(17262, 72755, 'seventy-two thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(17263, 66707, 'sixty-six thousand seven hundred seven');\nINSERT INTO t3 VALUES(17264, 8056, 'eight thousand fifty-six');\nINSERT INTO t3 VALUES(17265, 30860, 'thirty thousand eight hundred sixty');\nINSERT INTO t3 VALUES(17266, 19647, 'nineteen thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(17267, 77559, 'seventy-seven thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(17268, 35563, 'thirty-five thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(17269, 46642, 'forty-six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(17270, 99099, 'ninety-nine thousand ninety-nine');\nINSERT INTO t3 VALUES(17271, 9219, 'nine thousand two hundred nineteen');\nINSERT INTO t3 VALUES(17272, 79523, 'seventy-nine thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(17273, 91917, 'ninety-one thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(17274, 60014, 'sixty thousand fourteen');\nINSERT INTO t3 VALUES(17275, 71364, 'seventy-one thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(17276, 557, 'five hundred fifty-seven');\nINSERT INTO t3 VALUES(17277, 28117, 'twenty-eight thousand one hundred seventeen');\nINSERT INTO t3 VALUES(17278, 87812, 'eighty-seven thousand eight hundred twelve');\nINSERT INTO t3 VALUES(17279, 93135, 'ninety-three thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(17280, 18468, 'eighteen thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(17281, 56091, 'fifty-six thousand ninety-one');\nINSERT INTO t3 VALUES(17282, 72680, 'seventy-two thousand six hundred eighty');\nINSERT INTO t3 VALUES(17283, 75736, 'seventy-five thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(17284, 83168, 'eighty-three thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(17285, 86728, 'eighty-six thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(17286, 97068, 'ninety-seven thousand sixty-eight');\nINSERT INTO t3 VALUES(17287, 32244, 'thirty-two thousand two hundred forty-four');\nINSERT INTO t3 VALUES(17288, 81858, 'eighty-one thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(17289, 23694, 'twenty-three thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(17290, 56352, 'fifty-six thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(17291, 20224, 'twenty thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(17292, 1067, 'one thousand sixty-seven');\nINSERT INTO t3 VALUES(17293, 46648, 'forty-six thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(17294, 56363, 'fifty-six thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(17295, 88953, 'eighty-eight thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(17296, 43058, 'forty-three thousand fifty-eight');\nINSERT INTO t3 VALUES(17297, 83410, 'eighty-three thousand four hundred ten');\nINSERT INTO t3 VALUES(17298, 97488, 'ninety-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(17299, 39155, 'thirty-nine thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(17300, 42067, 'forty-two thousand sixty-seven');\nINSERT INTO t3 VALUES(17301, 99319, 'ninety-nine thousand three hundred nineteen');\nINSERT INTO t3 VALUES(17302, 13988, 'thirteen thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(17303, 76283, 'seventy-six thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(17304, 19680, 'nineteen thousand six hundred eighty');\nINSERT INTO t3 VALUES(17305, 25786, 'twenty-five thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(17306, 88533, 'eighty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(17307, 93832, 'ninety-three thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(17308, 84794, 'eighty-four thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(17309, 71713, 'seventy-one thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(17310, 76074, 'seventy-six thousand seventy-four');\nINSERT INTO t3 VALUES(17311, 17658, 'seventeen thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(17312, 67593, 'sixty-seven thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(17313, 13007, 'thirteen thousand seven');\nINSERT INTO t3 VALUES(17314, 63949, 'sixty-three thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(17315, 82744, 'eighty-two thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(17316, 65270, 'sixty-five thousand two hundred seventy');\nINSERT INTO t3 VALUES(17317, 43890, 'forty-three thousand eight hundred ninety');\nINSERT INTO t3 VALUES(17318, 49784, 'forty-nine thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(17319, 18125, 'eighteen thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(17320, 75522, 'seventy-five thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(17321, 18754, 'eighteen thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(17322, 88535, 'eighty-eight thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(17323, 12107, 'twelve thousand one hundred seven');\nINSERT INTO t3 VALUES(17324, 75921, 'seventy-five thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(17325, 24134, 'twenty-four thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(17326, 95164, 'ninety-five thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(17327, 61678, 'sixty-one thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(17328, 66420, 'sixty-six thousand four hundred twenty');\nINSERT INTO t3 VALUES(17329, 33320, 'thirty-three thousand three hundred twenty');\nINSERT INTO t3 VALUES(17330, 76596, 'seventy-six thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(17331, 99900, 'ninety-nine thousand nine hundred');\nINSERT INTO t3 VALUES(17332, 31240, 'thirty-one thousand two hundred forty');\nINSERT INTO t3 VALUES(17333, 22729, 'twenty-two thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(17334, 1535, 'one thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(17335, 77161, 'seventy-seven thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(17336, 14523, 'fourteen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(17337, 18582, 'eighteen thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(17338, 60282, 'sixty thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(17339, 87311, 'eighty-seven thousand three hundred eleven');\nINSERT INTO t3 VALUES(17340, 67938, 'sixty-seven thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(17341, 57163, 'fifty-seven thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(17342, 22950, 'twenty-two thousand nine hundred fifty');\nINSERT INTO t3 VALUES(17343, 15736, 'fifteen thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(17344, 24865, 'twenty-four thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(17345, 27625, 'twenty-seven thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(17346, 70419, 'seventy thousand four hundred nineteen');\nINSERT INTO t3 VALUES(17347, 33160, 'thirty-three thousand one hundred sixty');\nINSERT INTO t3 VALUES(17348, 37, 'thirty-seven');\nINSERT INTO t3 VALUES(17349, 59209, 'fifty-nine thousand two hundred nine');\nINSERT INTO t3 VALUES(17350, 82707, 'eighty-two thousand seven hundred seven');\nINSERT INTO t3 VALUES(17351, 41629, 'forty-one thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(17352, 14169, 'fourteen thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(17353, 88522, 'eighty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(17354, 34182, 'thirty-four thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(17355, 78215, 'seventy-eight thousand two hundred fifteen');\nINSERT INTO t3 VALUES(17356, 46537, 'forty-six thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(17357, 9696, 'nine thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(17358, 42283, 'forty-two thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(17359, 80535, 'eighty thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(17360, 78685, 'seventy-eight thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(17361, 37087, 'thirty-seven thousand eighty-seven');\nINSERT INTO t3 VALUES(17362, 37816, 'thirty-seven thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(17363, 60918, 'sixty thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(17364, 18999, 'eighteen thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(17365, 33862, 'thirty-three thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(17366, 24617, 'twenty-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(17367, 10363, 'ten thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(17368, 42079, 'forty-two thousand seventy-nine');\nINSERT INTO t3 VALUES(17369, 67730, 'sixty-seven thousand seven hundred thirty');\nINSERT INTO t3 VALUES(17370, 80735, 'eighty thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(17371, 32515, 'thirty-two thousand five hundred fifteen');\nINSERT INTO t3 VALUES(17372, 74332, 'seventy-four thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(17373, 30849, 'thirty thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(17374, 96863, 'ninety-six thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(17375, 93536, 'ninety-three thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(17376, 91972, 'ninety-one thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(17377, 13228, 'thirteen thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(17378, 91561, 'ninety-one thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(17379, 76561, 'seventy-six thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(17380, 4676, 'four thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(17381, 195, 'one hundred ninety-five');\nINSERT INTO t3 VALUES(17382, 1109, 'one thousand one hundred nine');\nINSERT INTO t3 VALUES(17383, 14509, 'fourteen thousand five hundred nine');\nINSERT INTO t3 VALUES(17384, 26918, 'twenty-six thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(17385, 79922, 'seventy-nine thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(17386, 41019, 'forty-one thousand nineteen');\nINSERT INTO t3 VALUES(17387, 35935, 'thirty-five thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(17388, 89528, 'eighty-nine thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(17389, 47490, 'forty-seven thousand four hundred ninety');\nINSERT INTO t3 VALUES(17390, 25468, 'twenty-five thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(17391, 31467, 'thirty-one thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(17392, 58023, 'fifty-eight thousand twenty-three');\nINSERT INTO t3 VALUES(17393, 4147, 'four thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(17394, 30051, 'thirty thousand fifty-one');\nINSERT INTO t3 VALUES(17395, 90608, 'ninety thousand six hundred eight');\nINSERT INTO t3 VALUES(17396, 25770, 'twenty-five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(17397, 85241, 'eighty-five thousand two hundred forty-one');\nINSERT INTO t3 VALUES(17398, 29384, 'twenty-nine thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(17399, 25326, 'twenty-five thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(17400, 35119, 'thirty-five thousand one hundred nineteen');\nINSERT INTO t3 VALUES(17401, 60678, 'sixty thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(17402, 77889, 'seventy-seven thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(17403, 67076, 'sixty-seven thousand seventy-six');\nINSERT INTO t3 VALUES(17404, 43069, 'forty-three thousand sixty-nine');\nINSERT INTO t3 VALUES(17405, 95869, 'ninety-five thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(17406, 2903, 'two thousand nine hundred three');\nINSERT INTO t3 VALUES(17407, 96462, 'ninety-six thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(17408, 53568, 'fifty-three thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(17409, 85191, 'eighty-five thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(17410, 54962, 'fifty-four thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(17411, 98593, 'ninety-eight thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(17412, 57265, 'fifty-seven thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(17413, 3813, 'three thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(17414, 1201, 'one thousand two hundred one');\nINSERT INTO t3 VALUES(17415, 87004, 'eighty-seven thousand four');\nINSERT INTO t3 VALUES(17416, 44213, 'forty-four thousand two hundred thirteen');\nINSERT INTO t3 VALUES(17417, 23674, 'twenty-three thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(17418, 57964, 'fifty-seven thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(17419, 89736, 'eighty-nine thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(17420, 4479, 'four thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(17421, 16580, 'sixteen thousand five hundred eighty');\nINSERT INTO t3 VALUES(17422, 16003, 'sixteen thousand three');\nINSERT INTO t3 VALUES(17423, 83659, 'eighty-three thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(17424, 33902, 'thirty-three thousand nine hundred two');\nINSERT INTO t3 VALUES(17425, 73288, 'seventy-three thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(17426, 48838, 'forty-eight thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(17427, 91513, 'ninety-one thousand five hundred thirteen');\nINSERT INTO t3 VALUES(17428, 45571, 'forty-five thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(17429, 94675, 'ninety-four thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(17430, 68769, 'sixty-eight thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(17431, 42647, 'forty-two thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(17432, 72533, 'seventy-two thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(17433, 57278, 'fifty-seven thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(17434, 12087, 'twelve thousand eighty-seven');\nINSERT INTO t3 VALUES(17435, 5075, 'five thousand seventy-five');\nINSERT INTO t3 VALUES(17436, 36197, 'thirty-six thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(17437, 19769, 'nineteen thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(17438, 47337, 'forty-seven thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(17439, 56534, 'fifty-six thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(17440, 58181, 'fifty-eight thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(17441, 92020, 'ninety-two thousand twenty');\nINSERT INTO t3 VALUES(17442, 10268, 'ten thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(17443, 5868, 'five thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(17444, 13103, 'thirteen thousand one hundred three');\nINSERT INTO t3 VALUES(17445, 52922, 'fifty-two thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(17446, 51880, 'fifty-one thousand eight hundred eighty');\nINSERT INTO t3 VALUES(17447, 41381, 'forty-one thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(17448, 2827, 'two thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(17449, 55685, 'fifty-five thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(17450, 25345, 'twenty-five thousand three hundred forty-five');\nINSERT INTO t3 VALUES(17451, 24964, 'twenty-four thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(17452, 8355, 'eight thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(17453, 74437, 'seventy-four thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(17454, 74994, 'seventy-four thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(17455, 89371, 'eighty-nine thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(17456, 39282, 'thirty-nine thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(17457, 46014, 'forty-six thousand fourteen');\nINSERT INTO t3 VALUES(17458, 51057, 'fifty-one thousand fifty-seven');\nINSERT INTO t3 VALUES(17459, 91001, 'ninety-one thousand one');\nINSERT INTO t3 VALUES(17460, 33003, 'thirty-three thousand three');\nINSERT INTO t3 VALUES(17461, 56644, 'fifty-six thousand six hundred forty-four');\nINSERT INTO t3 VALUES(17462, 6452, 'six thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(17463, 74031, 'seventy-four thousand thirty-one');\nINSERT INTO t3 VALUES(17464, 56371, 'fifty-six thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(17465, 33284, 'thirty-three thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(17466, 79683, 'seventy-nine thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(17467, 13263, 'thirteen thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(17468, 90917, 'ninety thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(17469, 72584, 'seventy-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(17470, 86612, 'eighty-six thousand six hundred twelve');\nINSERT INTO t3 VALUES(17471, 98649, 'ninety-eight thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(17472, 43030, 'forty-three thousand thirty');\nINSERT INTO t3 VALUES(17473, 26670, 'twenty-six thousand six hundred seventy');\nINSERT INTO t3 VALUES(17474, 26883, 'twenty-six thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(17475, 79136, 'seventy-nine thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(17476, 84623, 'eighty-four thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(17477, 93465, 'ninety-three thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(17478, 53845, 'fifty-three thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(17479, 93261, 'ninety-three thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(17480, 3051, 'three thousand fifty-one');\nINSERT INTO t3 VALUES(17481, 24643, 'twenty-four thousand six hundred forty-three');\nINSERT INTO t3 VALUES(17482, 99914, 'ninety-nine thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(17483, 14836, 'fourteen thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(17484, 10282, 'ten thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(17485, 24457, 'twenty-four thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(17486, 35734, 'thirty-five thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(17487, 15776, 'fifteen thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(17488, 77932, 'seventy-seven thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(17489, 97120, 'ninety-seven thousand one hundred twenty');\nINSERT INTO t3 VALUES(17490, 63723, 'sixty-three thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(17491, 67452, 'sixty-seven thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(17492, 88195, 'eighty-eight thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(17493, 37465, 'thirty-seven thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(17494, 75229, 'seventy-five thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(17495, 43176, 'forty-three thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(17496, 41789, 'forty-one thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(17497, 26937, 'twenty-six thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(17498, 74888, 'seventy-four thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(17499, 11412, 'eleven thousand four hundred twelve');\nINSERT INTO t3 VALUES(17500, 31516, 'thirty-one thousand five hundred sixteen');\nINSERT INTO t3 VALUES(17501, 57568, 'fifty-seven thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(17502, 15612, 'fifteen thousand six hundred twelve');\nINSERT INTO t3 VALUES(17503, 91895, 'ninety-one thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(17504, 17165, 'seventeen thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(17505, 41926, 'forty-one thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(17506, 96692, 'ninety-six thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(17507, 14031, 'fourteen thousand thirty-one');\nINSERT INTO t3 VALUES(17508, 25832, 'twenty-five thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(17509, 67804, 'sixty-seven thousand eight hundred four');\nINSERT INTO t3 VALUES(17510, 93924, 'ninety-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(17511, 42288, 'forty-two thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(17512, 95876, 'ninety-five thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(17513, 69269, 'sixty-nine thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(17514, 12747, 'twelve thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(17515, 41387, 'forty-one thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(17516, 10493, 'ten thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(17517, 45226, 'forty-five thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(17518, 66508, 'sixty-six thousand five hundred eight');\nINSERT INTO t3 VALUES(17519, 37969, 'thirty-seven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(17520, 75665, 'seventy-five thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(17521, 78876, 'seventy-eight thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(17522, 88242, 'eighty-eight thousand two hundred forty-two');\nINSERT INTO t3 VALUES(17523, 73739, 'seventy-three thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(17524, 22731, 'twenty-two thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(17525, 37589, 'thirty-seven thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(17526, 51762, 'fifty-one thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(17527, 61697, 'sixty-one thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(17528, 89318, 'eighty-nine thousand three hundred eighteen');\nINSERT INTO t3 VALUES(17529, 11369, 'eleven thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(17530, 87247, 'eighty-seven thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(17531, 22926, 'twenty-two thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(17532, 94472, 'ninety-four thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(17533, 99708, 'ninety-nine thousand seven hundred eight');\nINSERT INTO t3 VALUES(17534, 12875, 'twelve thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(17535, 88, 'eighty-eight');\nINSERT INTO t3 VALUES(17536, 10150, 'ten thousand one hundred fifty');\nINSERT INTO t3 VALUES(17537, 24199, 'twenty-four thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(17538, 18188, 'eighteen thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(17539, 20030, 'twenty thousand thirty');\nINSERT INTO t3 VALUES(17540, 52891, 'fifty-two thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(17541, 93155, 'ninety-three thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(17542, 93154, 'ninety-three thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(17543, 86312, 'eighty-six thousand three hundred twelve');\nINSERT INTO t3 VALUES(17544, 41385, 'forty-one thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(17545, 75473, 'seventy-five thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(17546, 12444, 'twelve thousand four hundred forty-four');\nINSERT INTO t3 VALUES(17547, 32865, 'thirty-two thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(17548, 20502, 'twenty thousand five hundred two');\nINSERT INTO t3 VALUES(17549, 56523, 'fifty-six thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(17550, 98949, 'ninety-eight thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(17551, 69419, 'sixty-nine thousand four hundred nineteen');\nINSERT INTO t3 VALUES(17552, 10870, 'ten thousand eight hundred seventy');\nINSERT INTO t3 VALUES(17553, 39468, 'thirty-nine thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(17554, 39858, 'thirty-nine thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(17555, 49087, 'forty-nine thousand eighty-seven');\nINSERT INTO t3 VALUES(17556, 77726, 'seventy-seven thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(17557, 7803, 'seven thousand eight hundred three');\nINSERT INTO t3 VALUES(17558, 37196, 'thirty-seven thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(17559, 56807, 'fifty-six thousand eight hundred seven');\nINSERT INTO t3 VALUES(17560, 50037, 'fifty thousand thirty-seven');\nINSERT INTO t3 VALUES(17561, 95382, 'ninety-five thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(17562, 12584, 'twelve thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(17563, 52870, 'fifty-two thousand eight hundred seventy');\nINSERT INTO t3 VALUES(17564, 17676, 'seventeen thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(17565, 65768, 'sixty-five thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(17566, 50764, 'fifty thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(17567, 9737, 'nine thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(17568, 74778, 'seventy-four thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(17569, 60936, 'sixty thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(17570, 62682, 'sixty-two thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(17571, 35256, 'thirty-five thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(17572, 41055, 'forty-one thousand fifty-five');\nINSERT INTO t3 VALUES(17573, 51172, 'fifty-one thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(17574, 95407, 'ninety-five thousand four hundred seven');\nINSERT INTO t3 VALUES(17575, 90030, 'ninety thousand thirty');\nINSERT INTO t3 VALUES(17576, 26852, 'twenty-six thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(17577, 51152, 'fifty-one thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(17578, 67455, 'sixty-seven thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(17579, 21796, 'twenty-one thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(17580, 56047, 'fifty-six thousand forty-seven');\nINSERT INTO t3 VALUES(17581, 65081, 'sixty-five thousand eighty-one');\nINSERT INTO t3 VALUES(17582, 31077, 'thirty-one thousand seventy-seven');\nINSERT INTO t3 VALUES(17583, 74918, 'seventy-four thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(17584, 62546, 'sixty-two thousand five hundred forty-six');\nINSERT INTO t3 VALUES(17585, 90853, 'ninety thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(17586, 55438, 'fifty-five thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(17587, 90330, 'ninety thousand three hundred thirty');\nINSERT INTO t3 VALUES(17588, 77923, 'seventy-seven thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(17589, 80184, 'eighty thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(17590, 35732, 'thirty-five thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(17591, 39709, 'thirty-nine thousand seven hundred nine');\nINSERT INTO t3 VALUES(17592, 17693, 'seventeen thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(17593, 85741, 'eighty-five thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(17594, 51620, 'fifty-one thousand six hundred twenty');\nINSERT INTO t3 VALUES(17595, 30830, 'thirty thousand eight hundred thirty');\nINSERT INTO t3 VALUES(17596, 31848, 'thirty-one thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(17597, 59390, 'fifty-nine thousand three hundred ninety');\nINSERT INTO t3 VALUES(17598, 24918, 'twenty-four thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(17599, 62418, 'sixty-two thousand four hundred eighteen');\nINSERT INTO t3 VALUES(17600, 21171, 'twenty-one thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(17601, 34830, 'thirty-four thousand eight hundred thirty');\nINSERT INTO t3 VALUES(17602, 43768, 'forty-three thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(17603, 59847, 'fifty-nine thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(17604, 89342, 'eighty-nine thousand three hundred forty-two');\nINSERT INTO t3 VALUES(17605, 70383, 'seventy thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(17606, 11726, 'eleven thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(17607, 56860, 'fifty-six thousand eight hundred sixty');\nINSERT INTO t3 VALUES(17608, 41407, 'forty-one thousand four hundred seven');\nINSERT INTO t3 VALUES(17609, 43786, 'forty-three thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(17610, 86377, 'eighty-six thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(17611, 55855, 'fifty-five thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(17612, 7715, 'seven thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(17613, 11419, 'eleven thousand four hundred nineteen');\nINSERT INTO t3 VALUES(17614, 23784, 'twenty-three thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(17615, 17653, 'seventeen thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(17616, 91732, 'ninety-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(17617, 7860, 'seven thousand eight hundred sixty');\nINSERT INTO t3 VALUES(17618, 72271, 'seventy-two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(17619, 83737, 'eighty-three thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(17620, 75751, 'seventy-five thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(17621, 77700, 'seventy-seven thousand seven hundred');\nINSERT INTO t3 VALUES(17622, 79743, 'seventy-nine thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(17623, 56795, 'fifty-six thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(17624, 39975, 'thirty-nine thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(17625, 21684, 'twenty-one thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(17626, 29248, 'twenty-nine thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(17627, 89903, 'eighty-nine thousand nine hundred three');\nINSERT INTO t3 VALUES(17628, 16404, 'sixteen thousand four hundred four');\nINSERT INTO t3 VALUES(17629, 60768, 'sixty thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(17630, 24833, 'twenty-four thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(17631, 52624, 'fifty-two thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(17632, 69077, 'sixty-nine thousand seventy-seven');\nINSERT INTO t3 VALUES(17633, 36519, 'thirty-six thousand five hundred nineteen');\nINSERT INTO t3 VALUES(17634, 96660, 'ninety-six thousand six hundred sixty');\nINSERT INTO t3 VALUES(17635, 74495, 'seventy-four thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(17636, 25592, 'twenty-five thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(17637, 46957, 'forty-six thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(17638, 52685, 'fifty-two thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(17639, 35020, 'thirty-five thousand twenty');\nINSERT INTO t3 VALUES(17640, 15625, 'fifteen thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(17641, 35781, 'thirty-five thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(17642, 99379, 'ninety-nine thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(17643, 98631, 'ninety-eight thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(17644, 80614, 'eighty thousand six hundred fourteen');\nINSERT INTO t3 VALUES(17645, 1920, 'one thousand nine hundred twenty');\nINSERT INTO t3 VALUES(17646, 98111, 'ninety-eight thousand one hundred eleven');\nINSERT INTO t3 VALUES(17647, 14585, 'fourteen thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(17648, 87757, 'eighty-seven thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(17649, 57772, 'fifty-seven thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(17650, 47167, 'forty-seven thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(17651, 17867, 'seventeen thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(17652, 6589, 'six thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(17653, 51462, 'fifty-one thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(17654, 98288, 'ninety-eight thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(17655, 7811, 'seven thousand eight hundred eleven');\nINSERT INTO t3 VALUES(17656, 78378, 'seventy-eight thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(17657, 26411, 'twenty-six thousand four hundred eleven');\nINSERT INTO t3 VALUES(17658, 28167, 'twenty-eight thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(17659, 3454, 'three thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(17660, 39847, 'thirty-nine thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(17661, 82093, 'eighty-two thousand ninety-three');\nINSERT INTO t3 VALUES(17662, 86634, 'eighty-six thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(17663, 37862, 'thirty-seven thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(17664, 63171, 'sixty-three thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(17665, 76944, 'seventy-six thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(17666, 82239, 'eighty-two thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(17667, 54575, 'fifty-four thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(17668, 37685, 'thirty-seven thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(17669, 77488, 'seventy-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(17670, 21665, 'twenty-one thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(17671, 63199, 'sixty-three thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(17672, 21983, 'twenty-one thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(17673, 94443, 'ninety-four thousand four hundred forty-three');\nINSERT INTO t3 VALUES(17674, 91733, 'ninety-one thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(17675, 95647, 'ninety-five thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(17676, 92221, 'ninety-two thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(17677, 87880, 'eighty-seven thousand eight hundred eighty');\nINSERT INTO t3 VALUES(17678, 53685, 'fifty-three thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(17679, 8883, 'eight thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(17680, 31725, 'thirty-one thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(17681, 91081, 'ninety-one thousand eighty-one');\nINSERT INTO t3 VALUES(17682, 82949, 'eighty-two thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(17683, 90581, 'ninety thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(17684, 63938, 'sixty-three thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(17685, 48851, 'forty-eight thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(17686, 19564, 'nineteen thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(17687, 52663, 'fifty-two thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(17688, 75487, 'seventy-five thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(17689, 72695, 'seventy-two thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(17690, 46730, 'forty-six thousand seven hundred thirty');\nINSERT INTO t3 VALUES(17691, 67831, 'sixty-seven thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(17692, 46946, 'forty-six thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(17693, 53113, 'fifty-three thousand one hundred thirteen');\nINSERT INTO t3 VALUES(17694, 13244, 'thirteen thousand two hundred forty-four');\nINSERT INTO t3 VALUES(17695, 87, 'eighty-seven');\nINSERT INTO t3 VALUES(17696, 19494, 'nineteen thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(17697, 99792, 'ninety-nine thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(17698, 73340, 'seventy-three thousand three hundred forty');\nINSERT INTO t3 VALUES(17699, 81613, 'eighty-one thousand six hundred thirteen');\nINSERT INTO t3 VALUES(17700, 93920, 'ninety-three thousand nine hundred twenty');\nINSERT INTO t3 VALUES(17701, 73732, 'seventy-three thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(17702, 80410, 'eighty thousand four hundred ten');\nINSERT INTO t3 VALUES(17703, 51994, 'fifty-one thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(17704, 42307, 'forty-two thousand three hundred seven');\nINSERT INTO t3 VALUES(17705, 36248, 'thirty-six thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(17706, 36489, 'thirty-six thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(17707, 19005, 'nineteen thousand five');\nINSERT INTO t3 VALUES(17708, 37548, 'thirty-seven thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(17709, 69366, 'sixty-nine thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(17710, 14395, 'fourteen thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(17711, 35288, 'thirty-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(17712, 29790, 'twenty-nine thousand seven hundred ninety');\nINSERT INTO t3 VALUES(17713, 13633, 'thirteen thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(17714, 83464, 'eighty-three thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(17715, 22097, 'twenty-two thousand ninety-seven');\nINSERT INTO t3 VALUES(17716, 5682, 'five thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(17717, 73064, 'seventy-three thousand sixty-four');\nINSERT INTO t3 VALUES(17718, 7691, 'seven thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(17719, 13390, 'thirteen thousand three hundred ninety');\nINSERT INTO t3 VALUES(17720, 6306, 'six thousand three hundred six');\nINSERT INTO t3 VALUES(17721, 99715, 'ninety-nine thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(17722, 84750, 'eighty-four thousand seven hundred fifty');\nINSERT INTO t3 VALUES(17723, 12202, 'twelve thousand two hundred two');\nINSERT INTO t3 VALUES(17724, 49268, 'forty-nine thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(17725, 87166, 'eighty-seven thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(17726, 25358, 'twenty-five thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(17727, 54847, 'fifty-four thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(17728, 69387, 'sixty-nine thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(17729, 55417, 'fifty-five thousand four hundred seventeen');\nINSERT INTO t3 VALUES(17730, 9609, 'nine thousand six hundred nine');\nINSERT INTO t3 VALUES(17731, 76930, 'seventy-six thousand nine hundred thirty');\nINSERT INTO t3 VALUES(17732, 91924, 'ninety-one thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(17733, 8422, 'eight thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(17734, 17809, 'seventeen thousand eight hundred nine');\nINSERT INTO t3 VALUES(17735, 46685, 'forty-six thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(17736, 53399, 'fifty-three thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(17737, 29952, 'twenty-nine thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(17738, 90447, 'ninety thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(17739, 16263, 'sixteen thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(17740, 76348, 'seventy-six thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(17741, 8173, 'eight thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(17742, 16328, 'sixteen thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(17743, 58642, 'fifty-eight thousand six hundred forty-two');\nINSERT INTO t3 VALUES(17744, 31944, 'thirty-one thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(17745, 67730, 'sixty-seven thousand seven hundred thirty');\nINSERT INTO t3 VALUES(17746, 59165, 'fifty-nine thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(17747, 8866, 'eight thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(17748, 20806, 'twenty thousand eight hundred six');\nINSERT INTO t3 VALUES(17749, 86418, 'eighty-six thousand four hundred eighteen');\nINSERT INTO t3 VALUES(17750, 82864, 'eighty-two thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(17751, 58171, 'fifty-eight thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(17752, 76204, 'seventy-six thousand two hundred four');\nINSERT INTO t3 VALUES(17753, 89838, 'eighty-nine thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(17754, 52827, 'fifty-two thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(17755, 16458, 'sixteen thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(17756, 14893, 'fourteen thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(17757, 53896, 'fifty-three thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(17758, 8478, 'eight thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(17759, 68662, 'sixty-eight thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(17760, 46437, 'forty-six thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(17761, 63750, 'sixty-three thousand seven hundred fifty');\nINSERT INTO t3 VALUES(17762, 35093, 'thirty-five thousand ninety-three');\nINSERT INTO t3 VALUES(17763, 772, 'seven hundred seventy-two');\nINSERT INTO t3 VALUES(17764, 98314, 'ninety-eight thousand three hundred fourteen');\nINSERT INTO t3 VALUES(17765, 60801, 'sixty thousand eight hundred one');\nINSERT INTO t3 VALUES(17766, 89526, 'eighty-nine thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(17767, 36376, 'thirty-six thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(17768, 94593, 'ninety-four thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(17769, 78598, 'seventy-eight thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(17770, 21062, 'twenty-one thousand sixty-two');\nINSERT INTO t3 VALUES(17771, 27746, 'twenty-seven thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(17772, 76638, 'seventy-six thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(17773, 62875, 'sixty-two thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(17774, 26599, 'twenty-six thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(17775, 5629, 'five thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(17776, 82263, 'eighty-two thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(17777, 61294, 'sixty-one thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(17778, 33953, 'thirty-three thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(17779, 53874, 'fifty-three thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(17780, 14011, 'fourteen thousand eleven');\nINSERT INTO t3 VALUES(17781, 50811, 'fifty thousand eight hundred eleven');\nINSERT INTO t3 VALUES(17782, 53219, 'fifty-three thousand two hundred nineteen');\nINSERT INTO t3 VALUES(17783, 25681, 'twenty-five thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(17784, 1809, 'one thousand eight hundred nine');\nINSERT INTO t3 VALUES(17785, 82258, 'eighty-two thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(17786, 94045, 'ninety-four thousand forty-five');\nINSERT INTO t3 VALUES(17787, 29348, 'twenty-nine thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(17788, 30412, 'thirty thousand four hundred twelve');\nINSERT INTO t3 VALUES(17789, 87681, 'eighty-seven thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(17790, 60273, 'sixty thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(17791, 40092, 'forty thousand ninety-two');\nINSERT INTO t3 VALUES(17792, 81275, 'eighty-one thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(17793, 20076, 'twenty thousand seventy-six');\nINSERT INTO t3 VALUES(17794, 61402, 'sixty-one thousand four hundred two');\nINSERT INTO t3 VALUES(17795, 26374, 'twenty-six thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(17796, 33432, 'thirty-three thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(17797, 61706, 'sixty-one thousand seven hundred six');\nINSERT INTO t3 VALUES(17798, 82056, 'eighty-two thousand fifty-six');\nINSERT INTO t3 VALUES(17799, 68873, 'sixty-eight thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(17800, 6825, 'six thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(17801, 37695, 'thirty-seven thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(17802, 70432, 'seventy thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(17803, 62135, 'sixty-two thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(17804, 28082, 'twenty-eight thousand eighty-two');\nINSERT INTO t3 VALUES(17805, 63759, 'sixty-three thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(17806, 88376, 'eighty-eight thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(17807, 74151, 'seventy-four thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(17808, 29346, 'twenty-nine thousand three hundred forty-six');\nINSERT INTO t3 VALUES(17809, 12150, 'twelve thousand one hundred fifty');\nINSERT INTO t3 VALUES(17810, 85825, 'eighty-five thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(17811, 62769, 'sixty-two thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(17812, 43568, 'forty-three thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(17813, 71883, 'seventy-one thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(17814, 69112, 'sixty-nine thousand one hundred twelve');\nINSERT INTO t3 VALUES(17815, 32911, 'thirty-two thousand nine hundred eleven');\nINSERT INTO t3 VALUES(17816, 12044, 'twelve thousand forty-four');\nINSERT INTO t3 VALUES(17817, 56352, 'fifty-six thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(17818, 45003, 'forty-five thousand three');\nINSERT INTO t3 VALUES(17819, 35502, 'thirty-five thousand five hundred two');\nINSERT INTO t3 VALUES(17820, 22350, 'twenty-two thousand three hundred fifty');\nINSERT INTO t3 VALUES(17821, 56070, 'fifty-six thousand seventy');\nINSERT INTO t3 VALUES(17822, 56816, 'fifty-six thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(17823, 83065, 'eighty-three thousand sixty-five');\nINSERT INTO t3 VALUES(17824, 22631, 'twenty-two thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(17825, 88120, 'eighty-eight thousand one hundred twenty');\nINSERT INTO t3 VALUES(17826, 74633, 'seventy-four thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(17827, 8139, 'eight thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(17828, 79216, 'seventy-nine thousand two hundred sixteen');\nINSERT INTO t3 VALUES(17829, 85046, 'eighty-five thousand forty-six');\nINSERT INTO t3 VALUES(17830, 5617, 'five thousand six hundred seventeen');\nINSERT INTO t3 VALUES(17831, 32949, 'thirty-two thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(17832, 26317, 'twenty-six thousand three hundred seventeen');\nINSERT INTO t3 VALUES(17833, 79722, 'seventy-nine thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(17834, 86904, 'eighty-six thousand nine hundred four');\nINSERT INTO t3 VALUES(17835, 39538, 'thirty-nine thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(17836, 19647, 'nineteen thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(17837, 44283, 'forty-four thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(17838, 39081, 'thirty-nine thousand eighty-one');\nINSERT INTO t3 VALUES(17839, 34624, 'thirty-four thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(17840, 42048, 'forty-two thousand forty-eight');\nINSERT INTO t3 VALUES(17841, 74551, 'seventy-four thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(17842, 59597, 'fifty-nine thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(17843, 8040, 'eight thousand forty');\nINSERT INTO t3 VALUES(17844, 19093, 'nineteen thousand ninety-three');\nINSERT INTO t3 VALUES(17845, 19410, 'nineteen thousand four hundred ten');\nINSERT INTO t3 VALUES(17846, 31251, 'thirty-one thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(17847, 14022, 'fourteen thousand twenty-two');\nINSERT INTO t3 VALUES(17848, 29958, 'twenty-nine thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(17849, 79087, 'seventy-nine thousand eighty-seven');\nINSERT INTO t3 VALUES(17850, 52688, 'fifty-two thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(17851, 15659, 'fifteen thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(17852, 66253, 'sixty-six thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(17853, 83549, 'eighty-three thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(17854, 89996, 'eighty-nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(17855, 65554, 'sixty-five thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(17856, 14523, 'fourteen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(17857, 82825, 'eighty-two thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(17858, 13218, 'thirteen thousand two hundred eighteen');\nINSERT INTO t3 VALUES(17859, 77149, 'seventy-seven thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(17860, 64741, 'sixty-four thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(17861, 15653, 'fifteen thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(17862, 85936, 'eighty-five thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(17863, 65480, 'sixty-five thousand four hundred eighty');\nINSERT INTO t3 VALUES(17864, 47998, 'forty-seven thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(17865, 2382, 'two thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(17866, 93477, 'ninety-three thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(17867, 73813, 'seventy-three thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(17868, 71602, 'seventy-one thousand six hundred two');\nINSERT INTO t3 VALUES(17869, 91069, 'ninety-one thousand sixty-nine');\nINSERT INTO t3 VALUES(17870, 51829, 'fifty-one thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(17871, 75886, 'seventy-five thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(17872, 96103, 'ninety-six thousand one hundred three');\nINSERT INTO t3 VALUES(17873, 23981, 'twenty-three thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(17874, 76315, 'seventy-six thousand three hundred fifteen');\nINSERT INTO t3 VALUES(17875, 16276, 'sixteen thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(17876, 94634, 'ninety-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(17877, 3216, 'three thousand two hundred sixteen');\nINSERT INTO t3 VALUES(17878, 89150, 'eighty-nine thousand one hundred fifty');\nINSERT INTO t3 VALUES(17879, 16375, 'sixteen thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(17880, 12629, 'twelve thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(17881, 95663, 'ninety-five thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(17882, 91220, 'ninety-one thousand two hundred twenty');\nINSERT INTO t3 VALUES(17883, 56519, 'fifty-six thousand five hundred nineteen');\nINSERT INTO t3 VALUES(17884, 13454, 'thirteen thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(17885, 89501, 'eighty-nine thousand five hundred one');\nINSERT INTO t3 VALUES(17886, 92338, 'ninety-two thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(17887, 98119, 'ninety-eight thousand one hundred nineteen');\nINSERT INTO t3 VALUES(17888, 72505, 'seventy-two thousand five hundred five');\nINSERT INTO t3 VALUES(17889, 4299, 'four thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(17890, 64775, 'sixty-four thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(17891, 83595, 'eighty-three thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(17892, 98721, 'ninety-eight thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(17893, 9219, 'nine thousand two hundred nineteen');\nINSERT INTO t3 VALUES(17894, 8209, 'eight thousand two hundred nine');\nINSERT INTO t3 VALUES(17895, 55911, 'fifty-five thousand nine hundred eleven');\nINSERT INTO t3 VALUES(17896, 94223, 'ninety-four thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(17897, 63077, 'sixty-three thousand seventy-seven');\nINSERT INTO t3 VALUES(17898, 5698, 'five thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(17899, 16246, 'sixteen thousand two hundred forty-six');\nINSERT INTO t3 VALUES(17900, 25465, 'twenty-five thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(17901, 67774, 'sixty-seven thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(17902, 49246, 'forty-nine thousand two hundred forty-six');\nINSERT INTO t3 VALUES(17903, 91288, 'ninety-one thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(17904, 72734, 'seventy-two thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(17905, 1354, 'one thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(17906, 84056, 'eighty-four thousand fifty-six');\nINSERT INTO t3 VALUES(17907, 95351, 'ninety-five thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(17908, 15392, 'fifteen thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(17909, 47084, 'forty-seven thousand eighty-four');\nINSERT INTO t3 VALUES(17910, 96227, 'ninety-six thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(17911, 23022, 'twenty-three thousand twenty-two');\nINSERT INTO t3 VALUES(17912, 42752, 'forty-two thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(17913, 63080, 'sixty-three thousand eighty');\nINSERT INTO t3 VALUES(17914, 27426, 'twenty-seven thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(17915, 23584, 'twenty-three thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(17916, 36291, 'thirty-six thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(17917, 13101, 'thirteen thousand one hundred one');\nINSERT INTO t3 VALUES(17918, 48775, 'forty-eight thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(17919, 82615, 'eighty-two thousand six hundred fifteen');\nINSERT INTO t3 VALUES(17920, 55879, 'fifty-five thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(17921, 57494, 'fifty-seven thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(17922, 76448, 'seventy-six thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(17923, 28283, 'twenty-eight thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(17924, 75078, 'seventy-five thousand seventy-eight');\nINSERT INTO t3 VALUES(17925, 88310, 'eighty-eight thousand three hundred ten');\nINSERT INTO t3 VALUES(17926, 95161, 'ninety-five thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(17927, 51378, 'fifty-one thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(17928, 58869, 'fifty-eight thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(17929, 40507, 'forty thousand five hundred seven');\nINSERT INTO t3 VALUES(17930, 24474, 'twenty-four thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(17931, 47542, 'forty-seven thousand five hundred forty-two');\nINSERT INTO t3 VALUES(17932, 52732, 'fifty-two thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(17933, 56947, 'fifty-six thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(17934, 29519, 'twenty-nine thousand five hundred nineteen');\nINSERT INTO t3 VALUES(17935, 99309, 'ninety-nine thousand three hundred nine');\nINSERT INTO t3 VALUES(17936, 70286, 'seventy thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(17937, 9444, 'nine thousand four hundred forty-four');\nINSERT INTO t3 VALUES(17938, 32244, 'thirty-two thousand two hundred forty-four');\nINSERT INTO t3 VALUES(17939, 90349, 'ninety thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(17940, 47663, 'forty-seven thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(17941, 68129, 'sixty-eight thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(17942, 42894, 'forty-two thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(17943, 22371, 'twenty-two thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(17944, 2050, 'two thousand fifty');\nINSERT INTO t3 VALUES(17945, 54080, 'fifty-four thousand eighty');\nINSERT INTO t3 VALUES(17946, 32418, 'thirty-two thousand four hundred eighteen');\nINSERT INTO t3 VALUES(17947, 10752, 'ten thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(17948, 30485, 'thirty thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(17949, 53889, 'fifty-three thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(17950, 20835, 'twenty thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(17951, 96020, 'ninety-six thousand twenty');\nINSERT INTO t3 VALUES(17952, 57995, 'fifty-seven thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(17953, 29325, 'twenty-nine thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(17954, 96345, 'ninety-six thousand three hundred forty-five');\nINSERT INTO t3 VALUES(17955, 68578, 'sixty-eight thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(17956, 17093, 'seventeen thousand ninety-three');\nINSERT INTO t3 VALUES(17957, 62325, 'sixty-two thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(17958, 68485, 'sixty-eight thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(17959, 21071, 'twenty-one thousand seventy-one');\nINSERT INTO t3 VALUES(17960, 52918, 'fifty-two thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(17961, 80859, 'eighty thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(17962, 72353, 'seventy-two thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(17963, 71133, 'seventy-one thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(17964, 73061, 'seventy-three thousand sixty-one');\nINSERT INTO t3 VALUES(17965, 37682, 'thirty-seven thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(17966, 82745, 'eighty-two thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(17967, 40224, 'forty thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(17968, 99229, 'ninety-nine thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(17969, 42472, 'forty-two thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(17970, 93964, 'ninety-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(17971, 7893, 'seven thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(17972, 84563, 'eighty-four thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(17973, 57563, 'fifty-seven thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(17974, 42823, 'forty-two thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(17975, 1971, 'one thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(17976, 96182, 'ninety-six thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(17977, 52709, 'fifty-two thousand seven hundred nine');\nINSERT INTO t3 VALUES(17978, 43323, 'forty-three thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(17979, 16690, 'sixteen thousand six hundred ninety');\nINSERT INTO t3 VALUES(17980, 6635, 'six thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(17981, 64219, 'sixty-four thousand two hundred nineteen');\nINSERT INTO t3 VALUES(17982, 45442, 'forty-five thousand four hundred forty-two');\nINSERT INTO t3 VALUES(17983, 46858, 'forty-six thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(17984, 3606, 'three thousand six hundred six');\nINSERT INTO t3 VALUES(17985, 80516, 'eighty thousand five hundred sixteen');\nINSERT INTO t3 VALUES(17986, 33192, 'thirty-three thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(17987, 64247, 'sixty-four thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(17988, 92874, 'ninety-two thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(17989, 11726, 'eleven thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(17990, 49012, 'forty-nine thousand twelve');\nINSERT INTO t3 VALUES(17991, 38807, 'thirty-eight thousand eight hundred seven');\nINSERT INTO t3 VALUES(17992, 16052, 'sixteen thousand fifty-two');\nINSERT INTO t3 VALUES(17993, 97764, 'ninety-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(17994, 71190, 'seventy-one thousand one hundred ninety');\nINSERT INTO t3 VALUES(17995, 6621, 'six thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(17996, 19299, 'nineteen thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(17997, 43855, 'forty-three thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(17998, 9654, 'nine thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(17999, 1262, 'one thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(18000, 46607, 'forty-six thousand six hundred seven');\nINSERT INTO t3 VALUES(18001, 80357, 'eighty thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(18002, 40502, 'forty thousand five hundred two');\nINSERT INTO t3 VALUES(18003, 7463, 'seven thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(18004, 44920, 'forty-four thousand nine hundred twenty');\nINSERT INTO t3 VALUES(18005, 69025, 'sixty-nine thousand twenty-five');\nINSERT INTO t3 VALUES(18006, 53259, 'fifty-three thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(18007, 95385, 'ninety-five thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(18008, 28584, 'twenty-eight thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(18009, 64394, 'sixty-four thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(18010, 97418, 'ninety-seven thousand four hundred eighteen');\nINSERT INTO t3 VALUES(18011, 60303, 'sixty thousand three hundred three');\nINSERT INTO t3 VALUES(18012, 59579, 'fifty-nine thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(18013, 70024, 'seventy thousand twenty-four');\nINSERT INTO t3 VALUES(18014, 30126, 'thirty thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(18015, 81077, 'eighty-one thousand seventy-seven');\nINSERT INTO t3 VALUES(18016, 56914, 'fifty-six thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(18017, 53828, 'fifty-three thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(18018, 27228, 'twenty-seven thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(18019, 9993, 'nine thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(18020, 3068, 'three thousand sixty-eight');\nINSERT INTO t3 VALUES(18021, 37906, 'thirty-seven thousand nine hundred six');\nINSERT INTO t3 VALUES(18022, 74579, 'seventy-four thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(18023, 65759, 'sixty-five thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(18024, 85183, 'eighty-five thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(18025, 58336, 'fifty-eight thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(18026, 34942, 'thirty-four thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(18027, 47704, 'forty-seven thousand seven hundred four');\nINSERT INTO t3 VALUES(18028, 29699, 'twenty-nine thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(18029, 48239, 'forty-eight thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(18030, 95087, 'ninety-five thousand eighty-seven');\nINSERT INTO t3 VALUES(18031, 4932, 'four thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(18032, 46522, 'forty-six thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(18033, 27530, 'twenty-seven thousand five hundred thirty');\nINSERT INTO t3 VALUES(18034, 30769, 'thirty thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(18035, 36540, 'thirty-six thousand five hundred forty');\nINSERT INTO t3 VALUES(18036, 50683, 'fifty thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(18037, 2368, 'two thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(18038, 94257, 'ninety-four thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(18039, 9613, 'nine thousand six hundred thirteen');\nINSERT INTO t3 VALUES(18040, 55861, 'fifty-five thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(18041, 88442, 'eighty-eight thousand four hundred forty-two');\nINSERT INTO t3 VALUES(18042, 16143, 'sixteen thousand one hundred forty-three');\nINSERT INTO t3 VALUES(18043, 84943, 'eighty-four thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(18044, 68504, 'sixty-eight thousand five hundred four');\nINSERT INTO t3 VALUES(18045, 93843, 'ninety-three thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(18046, 13186, 'thirteen thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(18047, 23238, 'twenty-three thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(18048, 98507, 'ninety-eight thousand five hundred seven');\nINSERT INTO t3 VALUES(18049, 5925, 'five thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(18050, 85957, 'eighty-five thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(18051, 31111, 'thirty-one thousand one hundred eleven');\nINSERT INTO t3 VALUES(18052, 59965, 'fifty-nine thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(18053, 92816, 'ninety-two thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(18054, 52710, 'fifty-two thousand seven hundred ten');\nINSERT INTO t3 VALUES(18055, 10541, 'ten thousand five hundred forty-one');\nINSERT INTO t3 VALUES(18056, 12322, 'twelve thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(18057, 43736, 'forty-three thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(18058, 68988, 'sixty-eight thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(18059, 59005, 'fifty-nine thousand five');\nINSERT INTO t3 VALUES(18060, 51783, 'fifty-one thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(18061, 75873, 'seventy-five thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(18062, 56628, 'fifty-six thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(18063, 65081, 'sixty-five thousand eighty-one');\nINSERT INTO t3 VALUES(18064, 33059, 'thirty-three thousand fifty-nine');\nINSERT INTO t3 VALUES(18065, 34342, 'thirty-four thousand three hundred forty-two');\nINSERT INTO t3 VALUES(18066, 92252, 'ninety-two thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(18067, 88614, 'eighty-eight thousand six hundred fourteen');\nINSERT INTO t3 VALUES(18068, 71734, 'seventy-one thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(18069, 13511, 'thirteen thousand five hundred eleven');\nINSERT INTO t3 VALUES(18070, 1641, 'one thousand six hundred forty-one');\nINSERT INTO t3 VALUES(18071, 60353, 'sixty thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(18072, 55540, 'fifty-five thousand five hundred forty');\nINSERT INTO t3 VALUES(18073, 81987, 'eighty-one thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(18074, 81009, 'eighty-one thousand nine');\nINSERT INTO t3 VALUES(18075, 42246, 'forty-two thousand two hundred forty-six');\nINSERT INTO t3 VALUES(18076, 5935, 'five thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(18077, 62205, 'sixty-two thousand two hundred five');\nINSERT INTO t3 VALUES(18078, 65614, 'sixty-five thousand six hundred fourteen');\nINSERT INTO t3 VALUES(18079, 95842, 'ninety-five thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(18080, 39588, 'thirty-nine thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(18081, 84271, 'eighty-four thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(18082, 50839, 'fifty thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(18083, 53520, 'fifty-three thousand five hundred twenty');\nINSERT INTO t3 VALUES(18084, 46391, 'forty-six thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(18085, 96597, 'ninety-six thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(18086, 50655, 'fifty thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(18087, 70757, 'seventy thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(18088, 14714, 'fourteen thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(18089, 97339, 'ninety-seven thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(18090, 31265, 'thirty-one thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(18091, 27668, 'twenty-seven thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(18092, 43832, 'forty-three thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(18093, 97418, 'ninety-seven thousand four hundred eighteen');\nINSERT INTO t3 VALUES(18094, 65042, 'sixty-five thousand forty-two');\nINSERT INTO t3 VALUES(18095, 90074, 'ninety thousand seventy-four');\nINSERT INTO t3 VALUES(18096, 87805, 'eighty-seven thousand eight hundred five');\nINSERT INTO t3 VALUES(18097, 12612, 'twelve thousand six hundred twelve');\nINSERT INTO t3 VALUES(18098, 86175, 'eighty-six thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(18099, 83403, 'eighty-three thousand four hundred three');\nINSERT INTO t3 VALUES(18100, 97528, 'ninety-seven thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(18101, 18517, 'eighteen thousand five hundred seventeen');\nINSERT INTO t3 VALUES(18102, 51258, 'fifty-one thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(18103, 90469, 'ninety thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(18104, 34809, 'thirty-four thousand eight hundred nine');\nINSERT INTO t3 VALUES(18105, 44780, 'forty-four thousand seven hundred eighty');\nINSERT INTO t3 VALUES(18106, 17402, 'seventeen thousand four hundred two');\nINSERT INTO t3 VALUES(18107, 65102, 'sixty-five thousand one hundred two');\nINSERT INTO t3 VALUES(18108, 36667, 'thirty-six thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(18109, 60010, 'sixty thousand ten');\nINSERT INTO t3 VALUES(18110, 11518, 'eleven thousand five hundred eighteen');\nINSERT INTO t3 VALUES(18111, 20867, 'twenty thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(18112, 23135, 'twenty-three thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(18113, 97125, 'ninety-seven thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(18114, 90884, 'ninety thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(18115, 3753, 'three thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(18116, 84093, 'eighty-four thousand ninety-three');\nINSERT INTO t3 VALUES(18117, 15786, 'fifteen thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(18118, 23000, 'twenty-three thousand');\nINSERT INTO t3 VALUES(18119, 33087, 'thirty-three thousand eighty-seven');\nINSERT INTO t3 VALUES(18120, 64898, 'sixty-four thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(18121, 16200, 'sixteen thousand two hundred');\nINSERT INTO t3 VALUES(18122, 74484, 'seventy-four thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(18123, 33502, 'thirty-three thousand five hundred two');\nINSERT INTO t3 VALUES(18124, 47339, 'forty-seven thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(18125, 96785, 'ninety-six thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(18126, 54734, 'fifty-four thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(18127, 24230, 'twenty-four thousand two hundred thirty');\nINSERT INTO t3 VALUES(18128, 63860, 'sixty-three thousand eight hundred sixty');\nINSERT INTO t3 VALUES(18129, 48822, 'forty-eight thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(18130, 82896, 'eighty-two thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(18131, 10112, 'ten thousand one hundred twelve');\nINSERT INTO t3 VALUES(18132, 9075, 'nine thousand seventy-five');\nINSERT INTO t3 VALUES(18133, 14780, 'fourteen thousand seven hundred eighty');\nINSERT INTO t3 VALUES(18134, 49475, 'forty-nine thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(18135, 24714, 'twenty-four thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(18136, 14943, 'fourteen thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(18137, 24686, 'twenty-four thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(18138, 36880, 'thirty-six thousand eight hundred eighty');\nINSERT INTO t3 VALUES(18139, 79326, 'seventy-nine thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(18140, 30601, 'thirty thousand six hundred one');\nINSERT INTO t3 VALUES(18141, 81379, 'eighty-one thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(18142, 35694, 'thirty-five thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(18143, 5153, 'five thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(18144, 35016, 'thirty-five thousand sixteen');\nINSERT INTO t3 VALUES(18145, 36034, 'thirty-six thousand thirty-four');\nINSERT INTO t3 VALUES(18146, 6296, 'six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(18147, 24982, 'twenty-four thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(18148, 56176, 'fifty-six thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(18149, 3253, 'three thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(18150, 55845, 'fifty-five thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(18151, 81684, 'eighty-one thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(18152, 86517, 'eighty-six thousand five hundred seventeen');\nINSERT INTO t3 VALUES(18153, 99051, 'ninety-nine thousand fifty-one');\nINSERT INTO t3 VALUES(18154, 48695, 'forty-eight thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(18155, 69661, 'sixty-nine thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(18156, 76037, 'seventy-six thousand thirty-seven');\nINSERT INTO t3 VALUES(18157, 41687, 'forty-one thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(18158, 44266, 'forty-four thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(18159, 48769, 'forty-eight thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(18160, 5780, 'five thousand seven hundred eighty');\nINSERT INTO t3 VALUES(18161, 53399, 'fifty-three thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(18162, 2897, 'two thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(18163, 76323, 'seventy-six thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(18164, 49273, 'forty-nine thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(18165, 9685, 'nine thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(18166, 27050, 'twenty-seven thousand fifty');\nINSERT INTO t3 VALUES(18167, 25116, 'twenty-five thousand one hundred sixteen');\nINSERT INTO t3 VALUES(18168, 8942, 'eight thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(18169, 74359, 'seventy-four thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(18170, 16774, 'sixteen thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(18171, 17060, 'seventeen thousand sixty');\nINSERT INTO t3 VALUES(18172, 84211, 'eighty-four thousand two hundred eleven');\nINSERT INTO t3 VALUES(18173, 82852, 'eighty-two thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(18174, 35496, 'thirty-five thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(18175, 59457, 'fifty-nine thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(18176, 47516, 'forty-seven thousand five hundred sixteen');\nINSERT INTO t3 VALUES(18177, 43854, 'forty-three thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(18178, 92712, 'ninety-two thousand seven hundred twelve');\nINSERT INTO t3 VALUES(18179, 79098, 'seventy-nine thousand ninety-eight');\nINSERT INTO t3 VALUES(18180, 21502, 'twenty-one thousand five hundred two');\nINSERT INTO t3 VALUES(18181, 59637, 'fifty-nine thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(18182, 64537, 'sixty-four thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(18183, 84158, 'eighty-four thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(18184, 50642, 'fifty thousand six hundred forty-two');\nINSERT INTO t3 VALUES(18185, 52862, 'fifty-two thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(18186, 53577, 'fifty-three thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(18187, 1878, 'one thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(18188, 22071, 'twenty-two thousand seventy-one');\nINSERT INTO t3 VALUES(18189, 27161, 'twenty-seven thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(18190, 64374, 'sixty-four thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(18191, 20246, 'twenty thousand two hundred forty-six');\nINSERT INTO t3 VALUES(18192, 79039, 'seventy-nine thousand thirty-nine');\nINSERT INTO t3 VALUES(18193, 84932, 'eighty-four thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(18194, 23998, 'twenty-three thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(18195, 11418, 'eleven thousand four hundred eighteen');\nINSERT INTO t3 VALUES(18196, 60607, 'sixty thousand six hundred seven');\nINSERT INTO t3 VALUES(18197, 59348, 'fifty-nine thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(18198, 30387, 'thirty thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(18199, 61315, 'sixty-one thousand three hundred fifteen');\nINSERT INTO t3 VALUES(18200, 81309, 'eighty-one thousand three hundred nine');\nINSERT INTO t3 VALUES(18201, 24516, 'twenty-four thousand five hundred sixteen');\nINSERT INTO t3 VALUES(18202, 50635, 'fifty thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(18203, 51920, 'fifty-one thousand nine hundred twenty');\nINSERT INTO t3 VALUES(18204, 93460, 'ninety-three thousand four hundred sixty');\nINSERT INTO t3 VALUES(18205, 19742, 'nineteen thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(18206, 18636, 'eighteen thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(18207, 46930, 'forty-six thousand nine hundred thirty');\nINSERT INTO t3 VALUES(18208, 9529, 'nine thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(18209, 51897, 'fifty-one thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(18210, 68078, 'sixty-eight thousand seventy-eight');\nINSERT INTO t3 VALUES(18211, 2627, 'two thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(18212, 76397, 'seventy-six thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(18213, 3804, 'three thousand eight hundred four');\nINSERT INTO t3 VALUES(18214, 69943, 'sixty-nine thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(18215, 78204, 'seventy-eight thousand two hundred four');\nINSERT INTO t3 VALUES(18216, 21311, 'twenty-one thousand three hundred eleven');\nINSERT INTO t3 VALUES(18217, 8966, 'eight thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(18218, 52972, 'fifty-two thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(18219, 43969, 'forty-three thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(18220, 11308, 'eleven thousand three hundred eight');\nINSERT INTO t3 VALUES(18221, 7718, 'seven thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(18222, 77721, 'seventy-seven thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(18223, 28942, 'twenty-eight thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(18224, 49210, 'forty-nine thousand two hundred ten');\nINSERT INTO t3 VALUES(18225, 16401, 'sixteen thousand four hundred one');\nINSERT INTO t3 VALUES(18226, 86843, 'eighty-six thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(18227, 30902, 'thirty thousand nine hundred two');\nINSERT INTO t3 VALUES(18228, 56063, 'fifty-six thousand sixty-three');\nINSERT INTO t3 VALUES(18229, 6257, 'six thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(18230, 76737, 'seventy-six thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(18231, 34825, 'thirty-four thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(18232, 16194, 'sixteen thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(18233, 26122, 'twenty-six thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(18234, 70025, 'seventy thousand twenty-five');\nINSERT INTO t3 VALUES(18235, 48124, 'forty-eight thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(18236, 78417, 'seventy-eight thousand four hundred seventeen');\nINSERT INTO t3 VALUES(18237, 86395, 'eighty-six thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(18238, 87713, 'eighty-seven thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(18239, 51009, 'fifty-one thousand nine');\nINSERT INTO t3 VALUES(18240, 73813, 'seventy-three thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(18241, 31835, 'thirty-one thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(18242, 19299, 'nineteen thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(18243, 47732, 'forty-seven thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(18244, 996, 'nine hundred ninety-six');\nINSERT INTO t3 VALUES(18245, 8223, 'eight thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(18246, 10792, 'ten thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(18247, 5085, 'five thousand eighty-five');\nINSERT INTO t3 VALUES(18248, 64617, 'sixty-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(18249, 2321, 'two thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(18250, 38299, 'thirty-eight thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(18251, 80401, 'eighty thousand four hundred one');\nINSERT INTO t3 VALUES(18252, 53315, 'fifty-three thousand three hundred fifteen');\nINSERT INTO t3 VALUES(18253, 58755, 'fifty-eight thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(18254, 64247, 'sixty-four thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(18255, 86587, 'eighty-six thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(18256, 77288, 'seventy-seven thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(18257, 30358, 'thirty thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(18258, 74818, 'seventy-four thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(18259, 77945, 'seventy-seven thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(18260, 7023, 'seven thousand twenty-three');\nINSERT INTO t3 VALUES(18261, 87292, 'eighty-seven thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(18262, 97220, 'ninety-seven thousand two hundred twenty');\nINSERT INTO t3 VALUES(18263, 25983, 'twenty-five thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(18264, 56976, 'fifty-six thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(18265, 84091, 'eighty-four thousand ninety-one');\nINSERT INTO t3 VALUES(18266, 88097, 'eighty-eight thousand ninety-seven');\nINSERT INTO t3 VALUES(18267, 52424, 'fifty-two thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(18268, 19355, 'nineteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(18269, 31643, 'thirty-one thousand six hundred forty-three');\nINSERT INTO t3 VALUES(18270, 54584, 'fifty-four thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(18271, 51599, 'fifty-one thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(18272, 60062, 'sixty thousand sixty-two');\nINSERT INTO t3 VALUES(18273, 54742, 'fifty-four thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(18274, 57724, 'fifty-seven thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(18275, 45933, 'forty-five thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(18276, 29680, 'twenty-nine thousand six hundred eighty');\nINSERT INTO t3 VALUES(18277, 97832, 'ninety-seven thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(18278, 64374, 'sixty-four thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(18279, 42366, 'forty-two thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(18280, 30522, 'thirty thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(18281, 19807, 'nineteen thousand eight hundred seven');\nINSERT INTO t3 VALUES(18282, 59948, 'fifty-nine thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(18283, 6594, 'six thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(18284, 41687, 'forty-one thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(18285, 976, 'nine hundred seventy-six');\nINSERT INTO t3 VALUES(18286, 24438, 'twenty-four thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(18287, 91114, 'ninety-one thousand one hundred fourteen');\nINSERT INTO t3 VALUES(18288, 20747, 'twenty thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(18289, 71132, 'seventy-one thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(18290, 65628, 'sixty-five thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(18291, 68844, 'sixty-eight thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(18292, 78142, 'seventy-eight thousand one hundred forty-two');\nINSERT INTO t3 VALUES(18293, 73195, 'seventy-three thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(18294, 44241, 'forty-four thousand two hundred forty-one');\nINSERT INTO t3 VALUES(18295, 61208, 'sixty-one thousand two hundred eight');\nINSERT INTO t3 VALUES(18296, 38710, 'thirty-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(18297, 15264, 'fifteen thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(18298, 16725, 'sixteen thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(18299, 44131, 'forty-four thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(18300, 55692, 'fifty-five thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(18301, 65051, 'sixty-five thousand fifty-one');\nINSERT INTO t3 VALUES(18302, 46725, 'forty-six thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(18303, 45137, 'forty-five thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(18304, 88708, 'eighty-eight thousand seven hundred eight');\nINSERT INTO t3 VALUES(18305, 22612, 'twenty-two thousand six hundred twelve');\nINSERT INTO t3 VALUES(18306, 51228, 'fifty-one thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(18307, 68304, 'sixty-eight thousand three hundred four');\nINSERT INTO t3 VALUES(18308, 33177, 'thirty-three thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(18309, 57633, 'fifty-seven thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(18310, 25377, 'twenty-five thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(18311, 69279, 'sixty-nine thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(18312, 86015, 'eighty-six thousand fifteen');\nINSERT INTO t3 VALUES(18313, 76678, 'seventy-six thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(18314, 24319, 'twenty-four thousand three hundred nineteen');\nINSERT INTO t3 VALUES(18315, 35107, 'thirty-five thousand one hundred seven');\nINSERT INTO t3 VALUES(18316, 38478, 'thirty-eight thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(18317, 53921, 'fifty-three thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(18318, 81705, 'eighty-one thousand seven hundred five');\nINSERT INTO t3 VALUES(18319, 74888, 'seventy-four thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(18320, 49500, 'forty-nine thousand five hundred');\nINSERT INTO t3 VALUES(18321, 19384, 'nineteen thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(18322, 18388, 'eighteen thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(18323, 61515, 'sixty-one thousand five hundred fifteen');\nINSERT INTO t3 VALUES(18324, 41419, 'forty-one thousand four hundred nineteen');\nINSERT INTO t3 VALUES(18325, 82468, 'eighty-two thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(18326, 99380, 'ninety-nine thousand three hundred eighty');\nINSERT INTO t3 VALUES(18327, 45167, 'forty-five thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(18328, 85160, 'eighty-five thousand one hundred sixty');\nINSERT INTO t3 VALUES(18329, 72739, 'seventy-two thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(18330, 903, 'nine hundred three');\nINSERT INTO t3 VALUES(18331, 3952, 'three thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(18332, 80286, 'eighty thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(18333, 37632, 'thirty-seven thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(18334, 67183, 'sixty-seven thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(18335, 74772, 'seventy-four thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(18336, 45775, 'forty-five thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(18337, 6140, 'six thousand one hundred forty');\nINSERT INTO t3 VALUES(18338, 66729, 'sixty-six thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(18339, 63314, 'sixty-three thousand three hundred fourteen');\nINSERT INTO t3 VALUES(18340, 55524, 'fifty-five thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(18341, 27110, 'twenty-seven thousand one hundred ten');\nINSERT INTO t3 VALUES(18342, 64228, 'sixty-four thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(18343, 94382, 'ninety-four thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(18344, 83692, 'eighty-three thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(18345, 66141, 'sixty-six thousand one hundred forty-one');\nINSERT INTO t3 VALUES(18346, 47972, 'forty-seven thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(18347, 50844, 'fifty thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(18348, 89925, 'eighty-nine thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(18349, 27064, 'twenty-seven thousand sixty-four');\nINSERT INTO t3 VALUES(18350, 28613, 'twenty-eight thousand six hundred thirteen');\nINSERT INTO t3 VALUES(18351, 26202, 'twenty-six thousand two hundred two');\nINSERT INTO t3 VALUES(18352, 77549, 'seventy-seven thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(18353, 63689, 'sixty-three thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(18354, 50428, 'fifty thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(18355, 74060, 'seventy-four thousand sixty');\nINSERT INTO t3 VALUES(18356, 74889, 'seventy-four thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(18357, 1489, 'one thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(18358, 93198, 'ninety-three thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(18359, 64793, 'sixty-four thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(18360, 87947, 'eighty-seven thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(18361, 87510, 'eighty-seven thousand five hundred ten');\nINSERT INTO t3 VALUES(18362, 39211, 'thirty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(18363, 23641, 'twenty-three thousand six hundred forty-one');\nINSERT INTO t3 VALUES(18364, 70192, 'seventy thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(18365, 90185, 'ninety thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(18366, 60627, 'sixty thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(18367, 90277, 'ninety thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(18368, 22697, 'twenty-two thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(18369, 25456, 'twenty-five thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(18370, 27193, 'twenty-seven thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(18371, 83459, 'eighty-three thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(18372, 58361, 'fifty-eight thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(18373, 94507, 'ninety-four thousand five hundred seven');\nINSERT INTO t3 VALUES(18374, 42456, 'forty-two thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(18375, 45775, 'forty-five thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(18376, 78177, 'seventy-eight thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(18377, 99884, 'ninety-nine thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(18378, 89989, 'eighty-nine thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(18379, 3411, 'three thousand four hundred eleven');\nINSERT INTO t3 VALUES(18380, 39445, 'thirty-nine thousand four hundred forty-five');\nINSERT INTO t3 VALUES(18381, 80567, 'eighty thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(18382, 75406, 'seventy-five thousand four hundred six');\nINSERT INTO t3 VALUES(18383, 69302, 'sixty-nine thousand three hundred two');\nINSERT INTO t3 VALUES(18384, 17856, 'seventeen thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(18385, 69150, 'sixty-nine thousand one hundred fifty');\nINSERT INTO t3 VALUES(18386, 91985, 'ninety-one thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(18387, 50213, 'fifty thousand two hundred thirteen');\nINSERT INTO t3 VALUES(18388, 50372, 'fifty thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(18389, 79670, 'seventy-nine thousand six hundred seventy');\nINSERT INTO t3 VALUES(18390, 36403, 'thirty-six thousand four hundred three');\nINSERT INTO t3 VALUES(18391, 67890, 'sixty-seven thousand eight hundred ninety');\nINSERT INTO t3 VALUES(18392, 85477, 'eighty-five thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(18393, 83491, 'eighty-three thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(18394, 62623, 'sixty-two thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(18395, 55489, 'fifty-five thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(18396, 96528, 'ninety-six thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(18397, 92954, 'ninety-two thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(18398, 1654, 'one thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(18399, 30687, 'thirty thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(18400, 43342, 'forty-three thousand three hundred forty-two');\nINSERT INTO t3 VALUES(18401, 11341, 'eleven thousand three hundred forty-one');\nINSERT INTO t3 VALUES(18402, 14932, 'fourteen thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(18403, 61091, 'sixty-one thousand ninety-one');\nINSERT INTO t3 VALUES(18404, 51662, 'fifty-one thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(18405, 94771, 'ninety-four thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(18406, 1972, 'one thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(18407, 58946, 'fifty-eight thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(18408, 92849, 'ninety-two thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(18409, 71729, 'seventy-one thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(18410, 99638, 'ninety-nine thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(18411, 13245, 'thirteen thousand two hundred forty-five');\nINSERT INTO t3 VALUES(18412, 8477, 'eight thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(18413, 17911, 'seventeen thousand nine hundred eleven');\nINSERT INTO t3 VALUES(18414, 53383, 'fifty-three thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(18415, 89717, 'eighty-nine thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(18416, 59461, 'fifty-nine thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(18417, 97991, 'ninety-seven thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(18418, 97374, 'ninety-seven thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(18419, 24503, 'twenty-four thousand five hundred three');\nINSERT INTO t3 VALUES(18420, 42542, 'forty-two thousand five hundred forty-two');\nINSERT INTO t3 VALUES(18421, 75529, 'seventy-five thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(18422, 75777, 'seventy-five thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(18423, 66107, 'sixty-six thousand one hundred seven');\nINSERT INTO t3 VALUES(18424, 35511, 'thirty-five thousand five hundred eleven');\nINSERT INTO t3 VALUES(18425, 32886, 'thirty-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(18426, 46627, 'forty-six thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(18427, 39785, 'thirty-nine thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(18428, 95150, 'ninety-five thousand one hundred fifty');\nINSERT INTO t3 VALUES(18429, 16706, 'sixteen thousand seven hundred six');\nINSERT INTO t3 VALUES(18430, 25967, 'twenty-five thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(18431, 43901, 'forty-three thousand nine hundred one');\nINSERT INTO t3 VALUES(18432, 388, 'three hundred eighty-eight');\nINSERT INTO t3 VALUES(18433, 93434, 'ninety-three thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(18434, 63865, 'sixty-three thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(18435, 55652, 'fifty-five thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(18436, 92549, 'ninety-two thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(18437, 93456, 'ninety-three thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(18438, 46926, 'forty-six thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(18439, 72986, 'seventy-two thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(18440, 87309, 'eighty-seven thousand three hundred nine');\nINSERT INTO t3 VALUES(18441, 14182, 'fourteen thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(18442, 75379, 'seventy-five thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(18443, 17174, 'seventeen thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(18444, 42335, 'forty-two thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(18445, 33390, 'thirty-three thousand three hundred ninety');\nINSERT INTO t3 VALUES(18446, 3238, 'three thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(18447, 41810, 'forty-one thousand eight hundred ten');\nINSERT INTO t3 VALUES(18448, 72465, 'seventy-two thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(18449, 35974, 'thirty-five thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(18450, 52491, 'fifty-two thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(18451, 76467, 'seventy-six thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(18452, 81814, 'eighty-one thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(18453, 93487, 'ninety-three thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(18454, 33693, 'thirty-three thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(18455, 50781, 'fifty thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(18456, 29834, 'twenty-nine thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(18457, 37711, 'thirty-seven thousand seven hundred eleven');\nINSERT INTO t3 VALUES(18458, 33883, 'thirty-three thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(18459, 32302, 'thirty-two thousand three hundred two');\nINSERT INTO t3 VALUES(18460, 67171, 'sixty-seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(18461, 17351, 'seventeen thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(18462, 36245, 'thirty-six thousand two hundred forty-five');\nINSERT INTO t3 VALUES(18463, 55781, 'fifty-five thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(18464, 89311, 'eighty-nine thousand three hundred eleven');\nINSERT INTO t3 VALUES(18465, 2192, 'two thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(18466, 76841, 'seventy-six thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(18467, 8533, 'eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(18468, 2852, 'two thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(18469, 55734, 'fifty-five thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(18470, 96069, 'ninety-six thousand sixty-nine');\nINSERT INTO t3 VALUES(18471, 89693, 'eighty-nine thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(18472, 49818, 'forty-nine thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(18473, 84487, 'eighty-four thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(18474, 88751, 'eighty-eight thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(18475, 12503, 'twelve thousand five hundred three');\nINSERT INTO t3 VALUES(18476, 91114, 'ninety-one thousand one hundred fourteen');\nINSERT INTO t3 VALUES(18477, 57500, 'fifty-seven thousand five hundred');\nINSERT INTO t3 VALUES(18478, 7997, 'seven thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(18479, 62648, 'sixty-two thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(18480, 45973, 'forty-five thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(18481, 10878, 'ten thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(18482, 75158, 'seventy-five thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(18483, 75392, 'seventy-five thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(18484, 95091, 'ninety-five thousand ninety-one');\nINSERT INTO t3 VALUES(18485, 67895, 'sixty-seven thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(18486, 45044, 'forty-five thousand forty-four');\nINSERT INTO t3 VALUES(18487, 98820, 'ninety-eight thousand eight hundred twenty');\nINSERT INTO t3 VALUES(18488, 85904, 'eighty-five thousand nine hundred four');\nINSERT INTO t3 VALUES(18489, 26344, 'twenty-six thousand three hundred forty-four');\nINSERT INTO t3 VALUES(18490, 63503, 'sixty-three thousand five hundred three');\nINSERT INTO t3 VALUES(18491, 59648, 'fifty-nine thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(18492, 90336, 'ninety thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(18493, 34940, 'thirty-four thousand nine hundred forty');\nINSERT INTO t3 VALUES(18494, 57506, 'fifty-seven thousand five hundred six');\nINSERT INTO t3 VALUES(18495, 46592, 'forty-six thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(18496, 42923, 'forty-two thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(18497, 9972, 'nine thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(18498, 26883, 'twenty-six thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(18499, 35845, 'thirty-five thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(18500, 27429, 'twenty-seven thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(18501, 66395, 'sixty-six thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(18502, 38444, 'thirty-eight thousand four hundred forty-four');\nINSERT INTO t3 VALUES(18503, 20797, 'twenty thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(18504, 13173, 'thirteen thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(18505, 27531, 'twenty-seven thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(18506, 28425, 'twenty-eight thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(18507, 65182, 'sixty-five thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(18508, 53616, 'fifty-three thousand six hundred sixteen');\nINSERT INTO t3 VALUES(18509, 88065, 'eighty-eight thousand sixty-five');\nINSERT INTO t3 VALUES(18510, 93708, 'ninety-three thousand seven hundred eight');\nINSERT INTO t3 VALUES(18511, 11671, 'eleven thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(18512, 65037, 'sixty-five thousand thirty-seven');\nINSERT INTO t3 VALUES(18513, 32758, 'thirty-two thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(18514, 67010, 'sixty-seven thousand ten');\nINSERT INTO t3 VALUES(18515, 26448, 'twenty-six thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(18516, 73537, 'seventy-three thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(18517, 64700, 'sixty-four thousand seven hundred');\nINSERT INTO t3 VALUES(18518, 45543, 'forty-five thousand five hundred forty-three');\nINSERT INTO t3 VALUES(18519, 59593, 'fifty-nine thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(18520, 95337, 'ninety-five thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(18521, 54809, 'fifty-four thousand eight hundred nine');\nINSERT INTO t3 VALUES(18522, 29661, 'twenty-nine thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(18523, 14182, 'fourteen thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(18524, 35101, 'thirty-five thousand one hundred one');\nINSERT INTO t3 VALUES(18525, 1288, 'one thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(18526, 60433, 'sixty thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(18527, 5988, 'five thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(18528, 80143, 'eighty thousand one hundred forty-three');\nINSERT INTO t3 VALUES(18529, 89770, 'eighty-nine thousand seven hundred seventy');\nINSERT INTO t3 VALUES(18530, 66060, 'sixty-six thousand sixty');\nINSERT INTO t3 VALUES(18531, 35544, 'thirty-five thousand five hundred forty-four');\nINSERT INTO t3 VALUES(18532, 16239, 'sixteen thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(18533, 87566, 'eighty-seven thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(18534, 87869, 'eighty-seven thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(18535, 36552, 'thirty-six thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(18536, 20681, 'twenty thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(18537, 32961, 'thirty-two thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(18538, 61273, 'sixty-one thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(18539, 28139, 'twenty-eight thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(18540, 62584, 'sixty-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(18541, 61020, 'sixty-one thousand twenty');\nINSERT INTO t3 VALUES(18542, 88856, 'eighty-eight thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(18543, 25926, 'twenty-five thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(18544, 86626, 'eighty-six thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(18545, 32770, 'thirty-two thousand seven hundred seventy');\nINSERT INTO t3 VALUES(18546, 67162, 'sixty-seven thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(18547, 77954, 'seventy-seven thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(18548, 95855, 'ninety-five thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(18549, 92285, 'ninety-two thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(18550, 24628, 'twenty-four thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(18551, 76317, 'seventy-six thousand three hundred seventeen');\nINSERT INTO t3 VALUES(18552, 42831, 'forty-two thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(18553, 43663, 'forty-three thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(18554, 79880, 'seventy-nine thousand eight hundred eighty');\nINSERT INTO t3 VALUES(18555, 42843, 'forty-two thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(18556, 29024, 'twenty-nine thousand twenty-four');\nINSERT INTO t3 VALUES(18557, 49405, 'forty-nine thousand four hundred five');\nINSERT INTO t3 VALUES(18558, 56569, 'fifty-six thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(18559, 51993, 'fifty-one thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(18560, 38950, 'thirty-eight thousand nine hundred fifty');\nINSERT INTO t3 VALUES(18561, 38611, 'thirty-eight thousand six hundred eleven');\nINSERT INTO t3 VALUES(18562, 51912, 'fifty-one thousand nine hundred twelve');\nINSERT INTO t3 VALUES(18563, 95065, 'ninety-five thousand sixty-five');\nINSERT INTO t3 VALUES(18564, 4978, 'four thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(18565, 53049, 'fifty-three thousand forty-nine');\nINSERT INTO t3 VALUES(18566, 50983, 'fifty thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(18567, 61528, 'sixty-one thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(18568, 11574, 'eleven thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(18569, 89229, 'eighty-nine thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(18570, 81508, 'eighty-one thousand five hundred eight');\nINSERT INTO t3 VALUES(18571, 2888, 'two thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(18572, 45677, 'forty-five thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(18573, 35397, 'thirty-five thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(18574, 27297, 'twenty-seven thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(18575, 49487, 'forty-nine thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(18576, 7079, 'seven thousand seventy-nine');\nINSERT INTO t3 VALUES(18577, 1439, 'one thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(18578, 91577, 'ninety-one thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(18579, 52222, 'fifty-two thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(18580, 98450, 'ninety-eight thousand four hundred fifty');\nINSERT INTO t3 VALUES(18581, 96404, 'ninety-six thousand four hundred four');\nINSERT INTO t3 VALUES(18582, 16749, 'sixteen thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(18583, 77369, 'seventy-seven thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(18584, 94287, 'ninety-four thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(18585, 50644, 'fifty thousand six hundred forty-four');\nINSERT INTO t3 VALUES(18586, 16600, 'sixteen thousand six hundred');\nINSERT INTO t3 VALUES(18587, 5604, 'five thousand six hundred four');\nINSERT INTO t3 VALUES(18588, 95991, 'ninety-five thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(18589, 12146, 'twelve thousand one hundred forty-six');\nINSERT INTO t3 VALUES(18590, 94594, 'ninety-four thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(18591, 68674, 'sixty-eight thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(18592, 7973, 'seven thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(18593, 548, 'five hundred forty-eight');\nINSERT INTO t3 VALUES(18594, 15923, 'fifteen thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(18595, 9617, 'nine thousand six hundred seventeen');\nINSERT INTO t3 VALUES(18596, 46310, 'forty-six thousand three hundred ten');\nINSERT INTO t3 VALUES(18597, 38998, 'thirty-eight thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(18598, 57096, 'fifty-seven thousand ninety-six');\nINSERT INTO t3 VALUES(18599, 41587, 'forty-one thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(18600, 42024, 'forty-two thousand twenty-four');\nINSERT INTO t3 VALUES(18601, 83167, 'eighty-three thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(18602, 9964, 'nine thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(18603, 92292, 'ninety-two thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(18604, 46817, 'forty-six thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(18605, 25176, 'twenty-five thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(18606, 17832, 'seventeen thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(18607, 77585, 'seventy-seven thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(18608, 63098, 'sixty-three thousand ninety-eight');\nINSERT INTO t3 VALUES(18609, 84170, 'eighty-four thousand one hundred seventy');\nINSERT INTO t3 VALUES(18610, 14254, 'fourteen thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(18611, 4597, 'four thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(18612, 91313, 'ninety-one thousand three hundred thirteen');\nINSERT INTO t3 VALUES(18613, 25550, 'twenty-five thousand five hundred fifty');\nINSERT INTO t3 VALUES(18614, 33302, 'thirty-three thousand three hundred two');\nINSERT INTO t3 VALUES(18615, 35703, 'thirty-five thousand seven hundred three');\nINSERT INTO t3 VALUES(18616, 82237, 'eighty-two thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(18617, 34118, 'thirty-four thousand one hundred eighteen');\nINSERT INTO t3 VALUES(18618, 46597, 'forty-six thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(18619, 30992, 'thirty thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(18620, 62118, 'sixty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(18621, 79099, 'seventy-nine thousand ninety-nine');\nINSERT INTO t3 VALUES(18622, 9459, 'nine thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(18623, 62395, 'sixty-two thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(18624, 72918, 'seventy-two thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(18625, 26053, 'twenty-six thousand fifty-three');\nINSERT INTO t3 VALUES(18626, 37779, 'thirty-seven thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(18627, 15200, 'fifteen thousand two hundred');\nINSERT INTO t3 VALUES(18628, 1543, 'one thousand five hundred forty-three');\nINSERT INTO t3 VALUES(18629, 59638, 'fifty-nine thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(18630, 44749, 'forty-four thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(18631, 11191, 'eleven thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(18632, 95989, 'ninety-five thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(18633, 49339, 'forty-nine thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(18634, 41797, 'forty-one thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(18635, 23431, 'twenty-three thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(18636, 43870, 'forty-three thousand eight hundred seventy');\nINSERT INTO t3 VALUES(18637, 84647, 'eighty-four thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(18638, 27268, 'twenty-seven thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(18639, 40935, 'forty thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(18640, 60727, 'sixty thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(18641, 96167, 'ninety-six thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(18642, 51546, 'fifty-one thousand five hundred forty-six');\nINSERT INTO t3 VALUES(18643, 25410, 'twenty-five thousand four hundred ten');\nINSERT INTO t3 VALUES(18644, 13248, 'thirteen thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(18645, 97665, 'ninety-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(18646, 4181, 'four thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(18647, 39132, 'thirty-nine thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(18648, 30539, 'thirty thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(18649, 55099, 'fifty-five thousand ninety-nine');\nINSERT INTO t3 VALUES(18650, 48603, 'forty-eight thousand six hundred three');\nINSERT INTO t3 VALUES(18651, 42679, 'forty-two thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(18652, 28675, 'twenty-eight thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(18653, 60301, 'sixty thousand three hundred one');\nINSERT INTO t3 VALUES(18654, 85341, 'eighty-five thousand three hundred forty-one');\nINSERT INTO t3 VALUES(18655, 35306, 'thirty-five thousand three hundred six');\nINSERT INTO t3 VALUES(18656, 49343, 'forty-nine thousand three hundred forty-three');\nINSERT INTO t3 VALUES(18657, 52614, 'fifty-two thousand six hundred fourteen');\nINSERT INTO t3 VALUES(18658, 31677, 'thirty-one thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(18659, 11346, 'eleven thousand three hundred forty-six');\nINSERT INTO t3 VALUES(18660, 53411, 'fifty-three thousand four hundred eleven');\nINSERT INTO t3 VALUES(18661, 99199, 'ninety-nine thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(18662, 32163, 'thirty-two thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(18663, 68289, 'sixty-eight thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(18664, 90230, 'ninety thousand two hundred thirty');\nINSERT INTO t3 VALUES(18665, 75919, 'seventy-five thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(18666, 34044, 'thirty-four thousand forty-four');\nINSERT INTO t3 VALUES(18667, 49904, 'forty-nine thousand nine hundred four');\nINSERT INTO t3 VALUES(18668, 85650, 'eighty-five thousand six hundred fifty');\nINSERT INTO t3 VALUES(18669, 18062, 'eighteen thousand sixty-two');\nINSERT INTO t3 VALUES(18670, 22579, 'twenty-two thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(18671, 11010, 'eleven thousand ten');\nINSERT INTO t3 VALUES(18672, 11271, 'eleven thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(18673, 7284, 'seven thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(18674, 18480, 'eighteen thousand four hundred eighty');\nINSERT INTO t3 VALUES(18675, 9578, 'nine thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(18676, 43174, 'forty-three thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(18677, 75965, 'seventy-five thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(18678, 98446, 'ninety-eight thousand four hundred forty-six');\nINSERT INTO t3 VALUES(18679, 11444, 'eleven thousand four hundred forty-four');\nINSERT INTO t3 VALUES(18680, 98202, 'ninety-eight thousand two hundred two');\nINSERT INTO t3 VALUES(18681, 8258, 'eight thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(18682, 32675, 'thirty-two thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(18683, 78554, 'seventy-eight thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(18684, 16884, 'sixteen thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(18685, 15310, 'fifteen thousand three hundred ten');\nINSERT INTO t3 VALUES(18686, 35758, 'thirty-five thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(18687, 36913, 'thirty-six thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(18688, 92009, 'ninety-two thousand nine');\nINSERT INTO t3 VALUES(18689, 68205, 'sixty-eight thousand two hundred five');\nINSERT INTO t3 VALUES(18690, 84239, 'eighty-four thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(18691, 88664, 'eighty-eight thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(18692, 97755, 'ninety-seven thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(18693, 7560, 'seven thousand five hundred sixty');\nINSERT INTO t3 VALUES(18694, 55386, 'fifty-five thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(18695, 44610, 'forty-four thousand six hundred ten');\nINSERT INTO t3 VALUES(18696, 27478, 'twenty-seven thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(18697, 47371, 'forty-seven thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(18698, 11486, 'eleven thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(18699, 51099, 'fifty-one thousand ninety-nine');\nINSERT INTO t3 VALUES(18700, 78602, 'seventy-eight thousand six hundred two');\nINSERT INTO t3 VALUES(18701, 63112, 'sixty-three thousand one hundred twelve');\nINSERT INTO t3 VALUES(18702, 27265, 'twenty-seven thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(18703, 70689, 'seventy thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(18704, 90717, 'ninety thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(18705, 25091, 'twenty-five thousand ninety-one');\nINSERT INTO t3 VALUES(18706, 18528, 'eighteen thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(18707, 33035, 'thirty-three thousand thirty-five');\nINSERT INTO t3 VALUES(18708, 69001, 'sixty-nine thousand one');\nINSERT INTO t3 VALUES(18709, 78426, 'seventy-eight thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(18710, 13304, 'thirteen thousand three hundred four');\nINSERT INTO t3 VALUES(18711, 89892, 'eighty-nine thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(18712, 84291, 'eighty-four thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(18713, 87791, 'eighty-seven thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(18714, 90040, 'ninety thousand forty');\nINSERT INTO t3 VALUES(18715, 5994, 'five thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(18716, 50395, 'fifty thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(18717, 6911, 'six thousand nine hundred eleven');\nINSERT INTO t3 VALUES(18718, 95743, 'ninety-five thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(18719, 64628, 'sixty-four thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(18720, 22269, 'twenty-two thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(18721, 16314, 'sixteen thousand three hundred fourteen');\nINSERT INTO t3 VALUES(18722, 14946, 'fourteen thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(18723, 52244, 'fifty-two thousand two hundred forty-four');\nINSERT INTO t3 VALUES(18724, 58671, 'fifty-eight thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(18725, 61846, 'sixty-one thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(18726, 74758, 'seventy-four thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(18727, 81530, 'eighty-one thousand five hundred thirty');\nINSERT INTO t3 VALUES(18728, 42428, 'forty-two thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(18729, 24627, 'twenty-four thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(18730, 106, 'one hundred six');\nINSERT INTO t3 VALUES(18731, 42431, 'forty-two thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(18732, 2282, 'two thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(18733, 79844, 'seventy-nine thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(18734, 48786, 'forty-eight thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(18735, 85320, 'eighty-five thousand three hundred twenty');\nINSERT INTO t3 VALUES(18736, 11154, 'eleven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(18737, 97251, 'ninety-seven thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(18738, 92147, 'ninety-two thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(18739, 87396, 'eighty-seven thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(18740, 66999, 'sixty-six thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(18741, 13294, 'thirteen thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(18742, 61125, 'sixty-one thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(18743, 60732, 'sixty thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(18744, 48337, 'forty-eight thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(18745, 6341, 'six thousand three hundred forty-one');\nINSERT INTO t3 VALUES(18746, 74634, 'seventy-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(18747, 86994, 'eighty-six thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(18748, 42118, 'forty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(18749, 31398, 'thirty-one thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(18750, 44913, 'forty-four thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(18751, 34848, 'thirty-four thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(18752, 39400, 'thirty-nine thousand four hundred');\nINSERT INTO t3 VALUES(18753, 56601, 'fifty-six thousand six hundred one');\nINSERT INTO t3 VALUES(18754, 16294, 'sixteen thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(18755, 63656, 'sixty-three thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(18756, 98194, 'ninety-eight thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(18757, 92858, 'ninety-two thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(18758, 65206, 'sixty-five thousand two hundred six');\nINSERT INTO t3 VALUES(18759, 85648, 'eighty-five thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(18760, 96686, 'ninety-six thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(18761, 74897, 'seventy-four thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(18762, 59926, 'fifty-nine thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(18763, 64164, 'sixty-four thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(18764, 33597, 'thirty-three thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(18765, 81268, 'eighty-one thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(18766, 28863, 'twenty-eight thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(18767, 43485, 'forty-three thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(18768, 84159, 'eighty-four thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(18769, 45494, 'forty-five thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(18770, 77193, 'seventy-seven thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(18771, 90676, 'ninety thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(18772, 36719, 'thirty-six thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(18773, 4193, 'four thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(18774, 56371, 'fifty-six thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(18775, 75903, 'seventy-five thousand nine hundred three');\nINSERT INTO t3 VALUES(18776, 42276, 'forty-two thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(18777, 67061, 'sixty-seven thousand sixty-one');\nINSERT INTO t3 VALUES(18778, 19155, 'nineteen thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(18779, 87725, 'eighty-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(18780, 76126, 'seventy-six thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(18781, 17401, 'seventeen thousand four hundred one');\nINSERT INTO t3 VALUES(18782, 6778, 'six thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(18783, 11369, 'eleven thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(18784, 46896, 'forty-six thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(18785, 52100, 'fifty-two thousand one hundred');\nINSERT INTO t3 VALUES(18786, 78444, 'seventy-eight thousand four hundred forty-four');\nINSERT INTO t3 VALUES(18787, 95937, 'ninety-five thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(18788, 59928, 'fifty-nine thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(18789, 66090, 'sixty-six thousand ninety');\nINSERT INTO t3 VALUES(18790, 32284, 'thirty-two thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(18791, 62217, 'sixty-two thousand two hundred seventeen');\nINSERT INTO t3 VALUES(18792, 60527, 'sixty thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(18793, 59742, 'fifty-nine thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(18794, 26273, 'twenty-six thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(18795, 70231, 'seventy thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(18796, 96756, 'ninety-six thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(18797, 79571, 'seventy-nine thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(18798, 53384, 'fifty-three thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(18799, 65062, 'sixty-five thousand sixty-two');\nINSERT INTO t3 VALUES(18800, 72008, 'seventy-two thousand eight');\nINSERT INTO t3 VALUES(18801, 94847, 'ninety-four thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(18802, 3457, 'three thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(18803, 47953, 'forty-seven thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(18804, 44271, 'forty-four thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(18805, 83249, 'eighty-three thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(18806, 70124, 'seventy thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(18807, 76273, 'seventy-six thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(18808, 72531, 'seventy-two thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(18809, 76750, 'seventy-six thousand seven hundred fifty');\nINSERT INTO t3 VALUES(18810, 19297, 'nineteen thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(18811, 98994, 'ninety-eight thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(18812, 59393, 'fifty-nine thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(18813, 36450, 'thirty-six thousand four hundred fifty');\nINSERT INTO t3 VALUES(18814, 29968, 'twenty-nine thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(18815, 97467, 'ninety-seven thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(18816, 72920, 'seventy-two thousand nine hundred twenty');\nINSERT INTO t3 VALUES(18817, 19864, 'nineteen thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(18818, 65690, 'sixty-five thousand six hundred ninety');\nINSERT INTO t3 VALUES(18819, 44368, 'forty-four thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(18820, 59460, 'fifty-nine thousand four hundred sixty');\nINSERT INTO t3 VALUES(18821, 1117, 'one thousand one hundred seventeen');\nINSERT INTO t3 VALUES(18822, 42064, 'forty-two thousand sixty-four');\nINSERT INTO t3 VALUES(18823, 51994, 'fifty-one thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(18824, 21207, 'twenty-one thousand two hundred seven');\nINSERT INTO t3 VALUES(18825, 70781, 'seventy thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(18826, 71788, 'seventy-one thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(18827, 8187, 'eight thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(18828, 52185, 'fifty-two thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(18829, 43560, 'forty-three thousand five hundred sixty');\nINSERT INTO t3 VALUES(18830, 4447, 'four thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(18831, 57691, 'fifty-seven thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(18832, 73173, 'seventy-three thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(18833, 97262, 'ninety-seven thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(18834, 53716, 'fifty-three thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(18835, 27801, 'twenty-seven thousand eight hundred one');\nINSERT INTO t3 VALUES(18836, 24232, 'twenty-four thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(18837, 65524, 'sixty-five thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(18838, 4322, 'four thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(18839, 34317, 'thirty-four thousand three hundred seventeen');\nINSERT INTO t3 VALUES(18840, 91648, 'ninety-one thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(18841, 75457, 'seventy-five thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(18842, 65874, 'sixty-five thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(18843, 24299, 'twenty-four thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(18844, 18617, 'eighteen thousand six hundred seventeen');\nINSERT INTO t3 VALUES(18845, 47054, 'forty-seven thousand fifty-four');\nINSERT INTO t3 VALUES(18846, 76445, 'seventy-six thousand four hundred forty-five');\nINSERT INTO t3 VALUES(18847, 44521, 'forty-four thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(18848, 11903, 'eleven thousand nine hundred three');\nINSERT INTO t3 VALUES(18849, 58548, 'fifty-eight thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(18850, 63366, 'sixty-three thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(18851, 50522, 'fifty thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(18852, 60409, 'sixty thousand four hundred nine');\nINSERT INTO t3 VALUES(18853, 94726, 'ninety-four thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(18854, 8362, 'eight thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(18855, 58704, 'fifty-eight thousand seven hundred four');\nINSERT INTO t3 VALUES(18856, 34083, 'thirty-four thousand eighty-three');\nINSERT INTO t3 VALUES(18857, 32163, 'thirty-two thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(18858, 76585, 'seventy-six thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(18859, 58877, 'fifty-eight thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(18860, 885, 'eight hundred eighty-five');\nINSERT INTO t3 VALUES(18861, 77870, 'seventy-seven thousand eight hundred seventy');\nINSERT INTO t3 VALUES(18862, 7294, 'seven thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(18863, 88072, 'eighty-eight thousand seventy-two');\nINSERT INTO t3 VALUES(18864, 54439, 'fifty-four thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(18865, 85053, 'eighty-five thousand fifty-three');\nINSERT INTO t3 VALUES(18866, 29349, 'twenty-nine thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(18867, 88188, 'eighty-eight thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(18868, 46796, 'forty-six thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(18869, 68455, 'sixty-eight thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(18870, 44864, 'forty-four thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(18871, 89739, 'eighty-nine thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(18872, 74125, 'seventy-four thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(18873, 1383, 'one thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(18874, 26463, 'twenty-six thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(18875, 50189, 'fifty thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(18876, 89975, 'eighty-nine thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(18877, 16997, 'sixteen thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(18878, 98227, 'ninety-eight thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(18879, 7065, 'seven thousand sixty-five');\nINSERT INTO t3 VALUES(18880, 91772, 'ninety-one thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(18881, 72483, 'seventy-two thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(18882, 37213, 'thirty-seven thousand two hundred thirteen');\nINSERT INTO t3 VALUES(18883, 55182, 'fifty-five thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(18884, 65889, 'sixty-five thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(18885, 46315, 'forty-six thousand three hundred fifteen');\nINSERT INTO t3 VALUES(18886, 47201, 'forty-seven thousand two hundred one');\nINSERT INTO t3 VALUES(18887, 92058, 'ninety-two thousand fifty-eight');\nINSERT INTO t3 VALUES(18888, 55764, 'fifty-five thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(18889, 61412, 'sixty-one thousand four hundred twelve');\nINSERT INTO t3 VALUES(18890, 70546, 'seventy thousand five hundred forty-six');\nINSERT INTO t3 VALUES(18891, 46174, 'forty-six thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(18892, 32242, 'thirty-two thousand two hundred forty-two');\nINSERT INTO t3 VALUES(18893, 62182, 'sixty-two thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(18894, 62651, 'sixty-two thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(18895, 5214, 'five thousand two hundred fourteen');\nINSERT INTO t3 VALUES(18896, 18847, 'eighteen thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(18897, 69003, 'sixty-nine thousand three');\nINSERT INTO t3 VALUES(18898, 57563, 'fifty-seven thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(18899, 78251, 'seventy-eight thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(18900, 34366, 'thirty-four thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(18901, 84677, 'eighty-four thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(18902, 34614, 'thirty-four thousand six hundred fourteen');\nINSERT INTO t3 VALUES(18903, 75476, 'seventy-five thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(18904, 76851, 'seventy-six thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(18905, 84055, 'eighty-four thousand fifty-five');\nINSERT INTO t3 VALUES(18906, 32503, 'thirty-two thousand five hundred three');\nINSERT INTO t3 VALUES(18907, 9465, 'nine thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(18908, 18852, 'eighteen thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(18909, 87675, 'eighty-seven thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(18910, 55541, 'fifty-five thousand five hundred forty-one');\nINSERT INTO t3 VALUES(18911, 1378, 'one thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(18912, 97259, 'ninety-seven thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(18913, 82405, 'eighty-two thousand four hundred five');\nINSERT INTO t3 VALUES(18914, 60871, 'sixty thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(18915, 80236, 'eighty thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(18916, 41450, 'forty-one thousand four hundred fifty');\nINSERT INTO t3 VALUES(18917, 71297, 'seventy-one thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(18918, 92569, 'ninety-two thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(18919, 20765, 'twenty thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(18920, 19735, 'nineteen thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(18921, 84972, 'eighty-four thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(18922, 62076, 'sixty-two thousand seventy-six');\nINSERT INTO t3 VALUES(18923, 94141, 'ninety-four thousand one hundred forty-one');\nINSERT INTO t3 VALUES(18924, 59902, 'fifty-nine thousand nine hundred two');\nINSERT INTO t3 VALUES(18925, 97838, 'ninety-seven thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(18926, 85728, 'eighty-five thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(18927, 63132, 'sixty-three thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(18928, 68867, 'sixty-eight thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(18929, 40247, 'forty thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(18930, 77917, 'seventy-seven thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(18931, 81676, 'eighty-one thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(18932, 56925, 'fifty-six thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(18933, 3544, 'three thousand five hundred forty-four');\nINSERT INTO t3 VALUES(18934, 67215, 'sixty-seven thousand two hundred fifteen');\nINSERT INTO t3 VALUES(18935, 45788, 'forty-five thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(18936, 39372, 'thirty-nine thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(18937, 87080, 'eighty-seven thousand eighty');\nINSERT INTO t3 VALUES(18938, 74440, 'seventy-four thousand four hundred forty');\nINSERT INTO t3 VALUES(18939, 70762, 'seventy thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(18940, 13355, 'thirteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(18941, 73977, 'seventy-three thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(18942, 55475, 'fifty-five thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(18943, 66975, 'sixty-six thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(18944, 73274, 'seventy-three thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(18945, 60413, 'sixty thousand four hundred thirteen');\nINSERT INTO t3 VALUES(18946, 80572, 'eighty thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(18947, 42795, 'forty-two thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(18948, 18583, 'eighteen thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(18949, 95420, 'ninety-five thousand four hundred twenty');\nINSERT INTO t3 VALUES(18950, 25248, 'twenty-five thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(18951, 85879, 'eighty-five thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(18952, 51771, 'fifty-one thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(18953, 44598, 'forty-four thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(18954, 30002, 'thirty thousand two');\nINSERT INTO t3 VALUES(18955, 84066, 'eighty-four thousand sixty-six');\nINSERT INTO t3 VALUES(18956, 8118, 'eight thousand one hundred eighteen');\nINSERT INTO t3 VALUES(18957, 74216, 'seventy-four thousand two hundred sixteen');\nINSERT INTO t3 VALUES(18958, 74502, 'seventy-four thousand five hundred two');\nINSERT INTO t3 VALUES(18959, 45132, 'forty-five thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(18960, 66694, 'sixty-six thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(18961, 6417, 'six thousand four hundred seventeen');\nINSERT INTO t3 VALUES(18962, 73161, 'seventy-three thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(18963, 72779, 'seventy-two thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(18964, 53925, 'fifty-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(18965, 12992, 'twelve thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(18966, 56070, 'fifty-six thousand seventy');\nINSERT INTO t3 VALUES(18967, 58621, 'fifty-eight thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(18968, 30892, 'thirty thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(18969, 93924, 'ninety-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(18970, 11515, 'eleven thousand five hundred fifteen');\nINSERT INTO t3 VALUES(18971, 33578, 'thirty-three thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(18972, 50926, 'fifty thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(18973, 59551, 'fifty-nine thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(18974, 32804, 'thirty-two thousand eight hundred four');\nINSERT INTO t3 VALUES(18975, 74070, 'seventy-four thousand seventy');\nINSERT INTO t3 VALUES(18976, 15476, 'fifteen thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(18977, 82143, 'eighty-two thousand one hundred forty-three');\nINSERT INTO t3 VALUES(18978, 60288, 'sixty thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(18979, 34265, 'thirty-four thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(18980, 98020, 'ninety-eight thousand twenty');\nINSERT INTO t3 VALUES(18981, 36902, 'thirty-six thousand nine hundred two');\nINSERT INTO t3 VALUES(18982, 94328, 'ninety-four thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(18983, 96352, 'ninety-six thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(18984, 36689, 'thirty-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(18985, 27598, 'twenty-seven thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(18986, 38840, 'thirty-eight thousand eight hundred forty');\nINSERT INTO t3 VALUES(18987, 44259, 'forty-four thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(18988, 18362, 'eighteen thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(18989, 37280, 'thirty-seven thousand two hundred eighty');\nINSERT INTO t3 VALUES(18990, 83787, 'eighty-three thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(18991, 75121, 'seventy-five thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(18992, 10175, 'ten thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(18993, 33943, 'thirty-three thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(18994, 6876, 'six thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(18995, 97034, 'ninety-seven thousand thirty-four');\nINSERT INTO t3 VALUES(18996, 49544, 'forty-nine thousand five hundred forty-four');\nINSERT INTO t3 VALUES(18997, 30537, 'thirty thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(18998, 48124, 'forty-eight thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(18999, 35328, 'thirty-five thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(19000, 30960, 'thirty thousand nine hundred sixty');\nINSERT INTO t3 VALUES(19001, 26399, 'twenty-six thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(19002, 38409, 'thirty-eight thousand four hundred nine');\nINSERT INTO t3 VALUES(19003, 24082, 'twenty-four thousand eighty-two');\nINSERT INTO t3 VALUES(19004, 62351, 'sixty-two thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(19005, 70781, 'seventy thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(19006, 85776, 'eighty-five thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(19007, 3070, 'three thousand seventy');\nINSERT INTO t3 VALUES(19008, 44907, 'forty-four thousand nine hundred seven');\nINSERT INTO t3 VALUES(19009, 20046, 'twenty thousand forty-six');\nINSERT INTO t3 VALUES(19010, 24002, 'twenty-four thousand two');\nINSERT INTO t3 VALUES(19011, 84822, 'eighty-four thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(19012, 92772, 'ninety-two thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(19013, 27401, 'twenty-seven thousand four hundred one');\nINSERT INTO t3 VALUES(19014, 81771, 'eighty-one thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(19015, 27904, 'twenty-seven thousand nine hundred four');\nINSERT INTO t3 VALUES(19016, 82691, 'eighty-two thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(19017, 96336, 'ninety-six thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(19018, 45300, 'forty-five thousand three hundred');\nINSERT INTO t3 VALUES(19019, 85509, 'eighty-five thousand five hundred nine');\nINSERT INTO t3 VALUES(19020, 69922, 'sixty-nine thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(19021, 57586, 'fifty-seven thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(19022, 70111, 'seventy thousand one hundred eleven');\nINSERT INTO t3 VALUES(19023, 22784, 'twenty-two thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(19024, 92222, 'ninety-two thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(19025, 86158, 'eighty-six thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(19026, 35704, 'thirty-five thousand seven hundred four');\nINSERT INTO t3 VALUES(19027, 21669, 'twenty-one thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(19028, 61658, 'sixty-one thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(19029, 5937, 'five thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(19030, 2332, 'two thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(19031, 3516, 'three thousand five hundred sixteen');\nINSERT INTO t3 VALUES(19032, 79192, 'seventy-nine thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(19033, 55569, 'fifty-five thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(19034, 48449, 'forty-eight thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(19035, 27747, 'twenty-seven thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(19036, 13815, 'thirteen thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(19037, 12806, 'twelve thousand eight hundred six');\nINSERT INTO t3 VALUES(19038, 3871, 'three thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(19039, 92915, 'ninety-two thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(19040, 47689, 'forty-seven thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(19041, 30862, 'thirty thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(19042, 2879, 'two thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(19043, 98883, 'ninety-eight thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(19044, 79072, 'seventy-nine thousand seventy-two');\nINSERT INTO t3 VALUES(19045, 98286, 'ninety-eight thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(19046, 59325, 'fifty-nine thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(19047, 82941, 'eighty-two thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(19048, 52351, 'fifty-two thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(19049, 38304, 'thirty-eight thousand three hundred four');\nINSERT INTO t3 VALUES(19050, 45242, 'forty-five thousand two hundred forty-two');\nINSERT INTO t3 VALUES(19051, 53761, 'fifty-three thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(19052, 78370, 'seventy-eight thousand three hundred seventy');\nINSERT INTO t3 VALUES(19053, 45632, 'forty-five thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(19054, 91602, 'ninety-one thousand six hundred two');\nINSERT INTO t3 VALUES(19055, 73271, 'seventy-three thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(19056, 10216, 'ten thousand two hundred sixteen');\nINSERT INTO t3 VALUES(19057, 99867, 'ninety-nine thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(19058, 98142, 'ninety-eight thousand one hundred forty-two');\nINSERT INTO t3 VALUES(19059, 14549, 'fourteen thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(19060, 14907, 'fourteen thousand nine hundred seven');\nINSERT INTO t3 VALUES(19061, 71373, 'seventy-one thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(19062, 63785, 'sixty-three thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(19063, 5362, 'five thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(19064, 30362, 'thirty thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(19065, 54061, 'fifty-four thousand sixty-one');\nINSERT INTO t3 VALUES(19066, 12468, 'twelve thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(19067, 85315, 'eighty-five thousand three hundred fifteen');\nINSERT INTO t3 VALUES(19068, 82368, 'eighty-two thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(19069, 11763, 'eleven thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(19070, 55905, 'fifty-five thousand nine hundred five');\nINSERT INTO t3 VALUES(19071, 12865, 'twelve thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(19072, 65471, 'sixty-five thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(19073, 82453, 'eighty-two thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(19074, 96920, 'ninety-six thousand nine hundred twenty');\nINSERT INTO t3 VALUES(19075, 23505, 'twenty-three thousand five hundred five');\nINSERT INTO t3 VALUES(19076, 57822, 'fifty-seven thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(19077, 75785, 'seventy-five thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(19078, 33855, 'thirty-three thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(19079, 52546, 'fifty-two thousand five hundred forty-six');\nINSERT INTO t3 VALUES(19080, 16080, 'sixteen thousand eighty');\nINSERT INTO t3 VALUES(19081, 48402, 'forty-eight thousand four hundred two');\nINSERT INTO t3 VALUES(19082, 45543, 'forty-five thousand five hundred forty-three');\nINSERT INTO t3 VALUES(19083, 81897, 'eighty-one thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(19084, 64036, 'sixty-four thousand thirty-six');\nINSERT INTO t3 VALUES(19085, 71160, 'seventy-one thousand one hundred sixty');\nINSERT INTO t3 VALUES(19086, 42053, 'forty-two thousand fifty-three');\nINSERT INTO t3 VALUES(19087, 51602, 'fifty-one thousand six hundred two');\nINSERT INTO t3 VALUES(19088, 8241, 'eight thousand two hundred forty-one');\nINSERT INTO t3 VALUES(19089, 69556, 'sixty-nine thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(19090, 1356, 'one thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(19091, 27155, 'twenty-seven thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(19092, 16002, 'sixteen thousand two');\nINSERT INTO t3 VALUES(19093, 12649, 'twelve thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(19094, 8934, 'eight thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(19095, 26227, 'twenty-six thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(19096, 50221, 'fifty thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(19097, 67833, 'sixty-seven thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(19098, 92708, 'ninety-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(19099, 98898, 'ninety-eight thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(19100, 16873, 'sixteen thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(19101, 88274, 'eighty-eight thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(19102, 13946, 'thirteen thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(19103, 68794, 'sixty-eight thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(19104, 53188, 'fifty-three thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(19105, 82426, 'eighty-two thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(19106, 88988, 'eighty-eight thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(19107, 51507, 'fifty-one thousand five hundred seven');\nINSERT INTO t3 VALUES(19108, 23007, 'twenty-three thousand seven');\nINSERT INTO t3 VALUES(19109, 55150, 'fifty-five thousand one hundred fifty');\nINSERT INTO t3 VALUES(19110, 40871, 'forty thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(19111, 12719, 'twelve thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(19112, 25784, 'twenty-five thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(19113, 96995, 'ninety-six thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(19114, 86974, 'eighty-six thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(19115, 68066, 'sixty-eight thousand sixty-six');\nINSERT INTO t3 VALUES(19116, 77620, 'seventy-seven thousand six hundred twenty');\nINSERT INTO t3 VALUES(19117, 75970, 'seventy-five thousand nine hundred seventy');\nINSERT INTO t3 VALUES(19118, 3491, 'three thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(19119, 6774, 'six thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(19120, 56688, 'fifty-six thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(19121, 55841, 'fifty-five thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(19122, 32028, 'thirty-two thousand twenty-eight');\nINSERT INTO t3 VALUES(19123, 1938, 'one thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(19124, 6840, 'six thousand eight hundred forty');\nINSERT INTO t3 VALUES(19125, 81500, 'eighty-one thousand five hundred');\nINSERT INTO t3 VALUES(19126, 77506, 'seventy-seven thousand five hundred six');\nINSERT INTO t3 VALUES(19127, 74941, 'seventy-four thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(19128, 84442, 'eighty-four thousand four hundred forty-two');\nINSERT INTO t3 VALUES(19129, 19488, 'nineteen thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(19130, 72826, 'seventy-two thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(19131, 51902, 'fifty-one thousand nine hundred two');\nINSERT INTO t3 VALUES(19132, 50409, 'fifty thousand four hundred nine');\nINSERT INTO t3 VALUES(19133, 89130, 'eighty-nine thousand one hundred thirty');\nINSERT INTO t3 VALUES(19134, 25031, 'twenty-five thousand thirty-one');\nINSERT INTO t3 VALUES(19135, 29878, 'twenty-nine thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(19136, 94723, 'ninety-four thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(19137, 44705, 'forty-four thousand seven hundred five');\nINSERT INTO t3 VALUES(19138, 7336, 'seven thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(19139, 71163, 'seventy-one thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(19140, 37845, 'thirty-seven thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(19141, 83676, 'eighty-three thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(19142, 78520, 'seventy-eight thousand five hundred twenty');\nINSERT INTO t3 VALUES(19143, 43294, 'forty-three thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(19144, 15680, 'fifteen thousand six hundred eighty');\nINSERT INTO t3 VALUES(19145, 649, 'six hundred forty-nine');\nINSERT INTO t3 VALUES(19146, 38942, 'thirty-eight thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(19147, 54722, 'fifty-four thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(19148, 32631, 'thirty-two thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(19149, 32537, 'thirty-two thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(19150, 12435, 'twelve thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(19151, 57531, 'fifty-seven thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(19152, 18768, 'eighteen thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(19153, 7575, 'seven thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(19154, 57788, 'fifty-seven thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(19155, 99296, 'ninety-nine thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(19156, 99079, 'ninety-nine thousand seventy-nine');\nINSERT INTO t3 VALUES(19157, 51450, 'fifty-one thousand four hundred fifty');\nINSERT INTO t3 VALUES(19158, 76474, 'seventy-six thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(19159, 25216, 'twenty-five thousand two hundred sixteen');\nINSERT INTO t3 VALUES(19160, 87368, 'eighty-seven thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(19161, 38802, 'thirty-eight thousand eight hundred two');\nINSERT INTO t3 VALUES(19162, 90680, 'ninety thousand six hundred eighty');\nINSERT INTO t3 VALUES(19163, 27929, 'twenty-seven thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(19164, 11041, 'eleven thousand forty-one');\nINSERT INTO t3 VALUES(19165, 29294, 'twenty-nine thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(19166, 40817, 'forty thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(19167, 94846, 'ninety-four thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(19168, 43202, 'forty-three thousand two hundred two');\nINSERT INTO t3 VALUES(19169, 4176, 'four thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(19170, 52655, 'fifty-two thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(19171, 30971, 'thirty thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(19172, 36164, 'thirty-six thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(19173, 21434, 'twenty-one thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(19174, 7540, 'seven thousand five hundred forty');\nINSERT INTO t3 VALUES(19175, 21745, 'twenty-one thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(19176, 74374, 'seventy-four thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(19177, 10027, 'ten thousand twenty-seven');\nINSERT INTO t3 VALUES(19178, 69286, 'sixty-nine thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(19179, 39631, 'thirty-nine thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(19180, 1756, 'one thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(19181, 40258, 'forty thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(19182, 79403, 'seventy-nine thousand four hundred three');\nINSERT INTO t3 VALUES(19183, 63237, 'sixty-three thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(19184, 45039, 'forty-five thousand thirty-nine');\nINSERT INTO t3 VALUES(19185, 3482, 'three thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(19186, 9956, 'nine thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(19187, 84470, 'eighty-four thousand four hundred seventy');\nINSERT INTO t3 VALUES(19188, 42458, 'forty-two thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(19189, 68936, 'sixty-eight thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(19190, 16164, 'sixteen thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(19191, 2558, 'two thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(19192, 8798, 'eight thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(19193, 20677, 'twenty thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(19194, 74619, 'seventy-four thousand six hundred nineteen');\nINSERT INTO t3 VALUES(19195, 8139, 'eight thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(19196, 52851, 'fifty-two thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(19197, 23480, 'twenty-three thousand four hundred eighty');\nINSERT INTO t3 VALUES(19198, 50974, 'fifty thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(19199, 83924, 'eighty-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(19200, 48805, 'forty-eight thousand eight hundred five');\nINSERT INTO t3 VALUES(19201, 74834, 'seventy-four thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(19202, 38775, 'thirty-eight thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(19203, 73541, 'seventy-three thousand five hundred forty-one');\nINSERT INTO t3 VALUES(19204, 5628, 'five thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(19205, 34459, 'thirty-four thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(19206, 99156, 'ninety-nine thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(19207, 14020, 'fourteen thousand twenty');\nINSERT INTO t3 VALUES(19208, 25878, 'twenty-five thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(19209, 3654, 'three thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(19210, 37485, 'thirty-seven thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(19211, 60960, 'sixty thousand nine hundred sixty');\nINSERT INTO t3 VALUES(19212, 42698, 'forty-two thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(19213, 37372, 'thirty-seven thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(19214, 35289, 'thirty-five thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(19215, 63126, 'sixty-three thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(19216, 4885, 'four thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(19217, 82297, 'eighty-two thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(19218, 14835, 'fourteen thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(19219, 89944, 'eighty-nine thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(19220, 29919, 'twenty-nine thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(19221, 76797, 'seventy-six thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(19222, 49302, 'forty-nine thousand three hundred two');\nINSERT INTO t3 VALUES(19223, 26299, 'twenty-six thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(19224, 77060, 'seventy-seven thousand sixty');\nINSERT INTO t3 VALUES(19225, 54919, 'fifty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(19226, 84837, 'eighty-four thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(19227, 14129, 'fourteen thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(19228, 86156, 'eighty-six thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(19229, 38468, 'thirty-eight thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(19230, 3762, 'three thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(19231, 27960, 'twenty-seven thousand nine hundred sixty');\nINSERT INTO t3 VALUES(19232, 10536, 'ten thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(19233, 33587, 'thirty-three thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(19234, 54041, 'fifty-four thousand forty-one');\nINSERT INTO t3 VALUES(19235, 72170, 'seventy-two thousand one hundred seventy');\nINSERT INTO t3 VALUES(19236, 22027, 'twenty-two thousand twenty-seven');\nINSERT INTO t3 VALUES(19237, 86352, 'eighty-six thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(19238, 11058, 'eleven thousand fifty-eight');\nINSERT INTO t3 VALUES(19239, 81770, 'eighty-one thousand seven hundred seventy');\nINSERT INTO t3 VALUES(19240, 66570, 'sixty-six thousand five hundred seventy');\nINSERT INTO t3 VALUES(19241, 58845, 'fifty-eight thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(19242, 47560, 'forty-seven thousand five hundred sixty');\nINSERT INTO t3 VALUES(19243, 24883, 'twenty-four thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(19244, 84170, 'eighty-four thousand one hundred seventy');\nINSERT INTO t3 VALUES(19245, 80654, 'eighty thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(19246, 59459, 'fifty-nine thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(19247, 66891, 'sixty-six thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(19248, 82190, 'eighty-two thousand one hundred ninety');\nINSERT INTO t3 VALUES(19249, 4497, 'four thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(19250, 69744, 'sixty-nine thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(19251, 93005, 'ninety-three thousand five');\nINSERT INTO t3 VALUES(19252, 24295, 'twenty-four thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(19253, 40096, 'forty thousand ninety-six');\nINSERT INTO t3 VALUES(19254, 11787, 'eleven thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(19255, 29662, 'twenty-nine thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(19256, 25747, 'twenty-five thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(19257, 53060, 'fifty-three thousand sixty');\nINSERT INTO t3 VALUES(19258, 42716, 'forty-two thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(19259, 13387, 'thirteen thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(19260, 57184, 'fifty-seven thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(19261, 8762, 'eight thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(19262, 91502, 'ninety-one thousand five hundred two');\nINSERT INTO t3 VALUES(19263, 90584, 'ninety thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(19264, 20696, 'twenty thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(19265, 28461, 'twenty-eight thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(19266, 56947, 'fifty-six thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(19267, 62628, 'sixty-two thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(19268, 36006, 'thirty-six thousand six');\nINSERT INTO t3 VALUES(19269, 62814, 'sixty-two thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(19270, 19012, 'nineteen thousand twelve');\nINSERT INTO t3 VALUES(19271, 5111, 'five thousand one hundred eleven');\nINSERT INTO t3 VALUES(19272, 17350, 'seventeen thousand three hundred fifty');\nINSERT INTO t3 VALUES(19273, 31091, 'thirty-one thousand ninety-one');\nINSERT INTO t3 VALUES(19274, 19263, 'nineteen thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(19275, 15340, 'fifteen thousand three hundred forty');\nINSERT INTO t3 VALUES(19276, 43789, 'forty-three thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(19277, 13304, 'thirteen thousand three hundred four');\nINSERT INTO t3 VALUES(19278, 84999, 'eighty-four thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(19279, 98484, 'ninety-eight thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(19280, 3135, 'three thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(19281, 13038, 'thirteen thousand thirty-eight');\nINSERT INTO t3 VALUES(19282, 27710, 'twenty-seven thousand seven hundred ten');\nINSERT INTO t3 VALUES(19283, 98051, 'ninety-eight thousand fifty-one');\nINSERT INTO t3 VALUES(19284, 72987, 'seventy-two thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(19285, 36497, 'thirty-six thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(19286, 9566, 'nine thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(19287, 22220, 'twenty-two thousand two hundred twenty');\nINSERT INTO t3 VALUES(19288, 55902, 'fifty-five thousand nine hundred two');\nINSERT INTO t3 VALUES(19289, 68522, 'sixty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(19290, 22980, 'twenty-two thousand nine hundred eighty');\nINSERT INTO t3 VALUES(19291, 21642, 'twenty-one thousand six hundred forty-two');\nINSERT INTO t3 VALUES(19292, 74886, 'seventy-four thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(19293, 78815, 'seventy-eight thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(19294, 41243, 'forty-one thousand two hundred forty-three');\nINSERT INTO t3 VALUES(19295, 62219, 'sixty-two thousand two hundred nineteen');\nINSERT INTO t3 VALUES(19296, 8671, 'eight thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(19297, 68166, 'sixty-eight thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(19298, 13329, 'thirteen thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(19299, 62502, 'sixty-two thousand five hundred two');\nINSERT INTO t3 VALUES(19300, 57816, 'fifty-seven thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(19301, 43200, 'forty-three thousand two hundred');\nINSERT INTO t3 VALUES(19302, 73233, 'seventy-three thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(19303, 87550, 'eighty-seven thousand five hundred fifty');\nINSERT INTO t3 VALUES(19304, 48825, 'forty-eight thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(19305, 52004, 'fifty-two thousand four');\nINSERT INTO t3 VALUES(19306, 66329, 'sixty-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(19307, 50483, 'fifty thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(19308, 81052, 'eighty-one thousand fifty-two');\nINSERT INTO t3 VALUES(19309, 42063, 'forty-two thousand sixty-three');\nINSERT INTO t3 VALUES(19310, 63746, 'sixty-three thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(19311, 38013, 'thirty-eight thousand thirteen');\nINSERT INTO t3 VALUES(19312, 83479, 'eighty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(19313, 48264, 'forty-eight thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(19314, 77479, 'seventy-seven thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(19315, 34929, 'thirty-four thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(19316, 93940, 'ninety-three thousand nine hundred forty');\nINSERT INTO t3 VALUES(19317, 74500, 'seventy-four thousand five hundred');\nINSERT INTO t3 VALUES(19318, 32088, 'thirty-two thousand eighty-eight');\nINSERT INTO t3 VALUES(19319, 6824, 'six thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(19320, 29822, 'twenty-nine thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(19321, 35919, 'thirty-five thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(19322, 36168, 'thirty-six thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(19323, 50482, 'fifty thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(19324, 54143, 'fifty-four thousand one hundred forty-three');\nINSERT INTO t3 VALUES(19325, 54764, 'fifty-four thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(19326, 38564, 'thirty-eight thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(19327, 52634, 'fifty-two thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(19328, 21695, 'twenty-one thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(19329, 40688, 'forty thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(19330, 73201, 'seventy-three thousand two hundred one');\nINSERT INTO t3 VALUES(19331, 8022, 'eight thousand twenty-two');\nINSERT INTO t3 VALUES(19332, 45075, 'forty-five thousand seventy-five');\nINSERT INTO t3 VALUES(19333, 24083, 'twenty-four thousand eighty-three');\nINSERT INTO t3 VALUES(19334, 29778, 'twenty-nine thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(19335, 78567, 'seventy-eight thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(19336, 12268, 'twelve thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(19337, 71123, 'seventy-one thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(19338, 61497, 'sixty-one thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(19339, 68928, 'sixty-eight thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(19340, 73731, 'seventy-three thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(19341, 57916, 'fifty-seven thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(19342, 38249, 'thirty-eight thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(19343, 66808, 'sixty-six thousand eight hundred eight');\nINSERT INTO t3 VALUES(19344, 50991, 'fifty thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(19345, 97340, 'ninety-seven thousand three hundred forty');\nINSERT INTO t3 VALUES(19346, 24648, 'twenty-four thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(19347, 61487, 'sixty-one thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(19348, 20005, 'twenty thousand five');\nINSERT INTO t3 VALUES(19349, 10661, 'ten thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(19350, 24221, 'twenty-four thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(19351, 70621, 'seventy thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(19352, 95002, 'ninety-five thousand two');\nINSERT INTO t3 VALUES(19353, 20369, 'twenty thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(19354, 81437, 'eighty-one thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(19355, 38349, 'thirty-eight thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(19356, 95879, 'ninety-five thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(19357, 47986, 'forty-seven thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(19358, 24843, 'twenty-four thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(19359, 62771, 'sixty-two thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(19360, 55203, 'fifty-five thousand two hundred three');\nINSERT INTO t3 VALUES(19361, 20827, 'twenty thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(19362, 75422, 'seventy-five thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(19363, 23511, 'twenty-three thousand five hundred eleven');\nINSERT INTO t3 VALUES(19364, 44941, 'forty-four thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(19365, 76031, 'seventy-six thousand thirty-one');\nINSERT INTO t3 VALUES(19366, 47483, 'forty-seven thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(19367, 22838, 'twenty-two thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(19368, 40943, 'forty thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(19369, 39962, 'thirty-nine thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(19370, 44467, 'forty-four thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(19371, 40881, 'forty thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(19372, 40948, 'forty thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(19373, 15781, 'fifteen thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(19374, 42097, 'forty-two thousand ninety-seven');\nINSERT INTO t3 VALUES(19375, 50040, 'fifty thousand forty');\nINSERT INTO t3 VALUES(19376, 23848, 'twenty-three thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(19377, 34824, 'thirty-four thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(19378, 63401, 'sixty-three thousand four hundred one');\nINSERT INTO t3 VALUES(19379, 4028, 'four thousand twenty-eight');\nINSERT INTO t3 VALUES(19380, 11031, 'eleven thousand thirty-one');\nINSERT INTO t3 VALUES(19381, 20010, 'twenty thousand ten');\nINSERT INTO t3 VALUES(19382, 79127, 'seventy-nine thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(19383, 91267, 'ninety-one thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(19384, 37367, 'thirty-seven thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(19385, 24251, 'twenty-four thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(19386, 4007, 'four thousand seven');\nINSERT INTO t3 VALUES(19387, 93082, 'ninety-three thousand eighty-two');\nINSERT INTO t3 VALUES(19388, 92026, 'ninety-two thousand twenty-six');\nINSERT INTO t3 VALUES(19389, 79191, 'seventy-nine thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(19390, 54203, 'fifty-four thousand two hundred three');\nINSERT INTO t3 VALUES(19391, 23416, 'twenty-three thousand four hundred sixteen');\nINSERT INTO t3 VALUES(19392, 1644, 'one thousand six hundred forty-four');\nINSERT INTO t3 VALUES(19393, 37158, 'thirty-seven thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(19394, 3649, 'three thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(19395, 23719, 'twenty-three thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(19396, 13818, 'thirteen thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(19397, 14942, 'fourteen thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(19398, 47030, 'forty-seven thousand thirty');\nINSERT INTO t3 VALUES(19399, 75713, 'seventy-five thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(19400, 4984, 'four thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(19401, 59030, 'fifty-nine thousand thirty');\nINSERT INTO t3 VALUES(19402, 85772, 'eighty-five thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(19403, 58356, 'fifty-eight thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(19404, 27157, 'twenty-seven thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(19405, 81669, 'eighty-one thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(19406, 12946, 'twelve thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(19407, 10503, 'ten thousand five hundred three');\nINSERT INTO t3 VALUES(19408, 90744, 'ninety thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(19409, 17218, 'seventeen thousand two hundred eighteen');\nINSERT INTO t3 VALUES(19410, 75769, 'seventy-five thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(19411, 20569, 'twenty thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(19412, 4762, 'four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(19413, 52701, 'fifty-two thousand seven hundred one');\nINSERT INTO t3 VALUES(19414, 58258, 'fifty-eight thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(19415, 10573, 'ten thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(19416, 66853, 'sixty-six thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(19417, 30150, 'thirty thousand one hundred fifty');\nINSERT INTO t3 VALUES(19418, 29555, 'twenty-nine thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(19419, 40950, 'forty thousand nine hundred fifty');\nINSERT INTO t3 VALUES(19420, 17094, 'seventeen thousand ninety-four');\nINSERT INTO t3 VALUES(19421, 16641, 'sixteen thousand six hundred forty-one');\nINSERT INTO t3 VALUES(19422, 27514, 'twenty-seven thousand five hundred fourteen');\nINSERT INTO t3 VALUES(19423, 74113, 'seventy-four thousand one hundred thirteen');\nINSERT INTO t3 VALUES(19424, 19084, 'nineteen thousand eighty-four');\nINSERT INTO t3 VALUES(19425, 67528, 'sixty-seven thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(19426, 94108, 'ninety-four thousand one hundred eight');\nINSERT INTO t3 VALUES(19427, 7342, 'seven thousand three hundred forty-two');\nINSERT INTO t3 VALUES(19428, 87382, 'eighty-seven thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(19429, 6274, 'six thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(19430, 8839, 'eight thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(19431, 82365, 'eighty-two thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(19432, 8566, 'eight thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(19433, 81837, 'eighty-one thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(19434, 69217, 'sixty-nine thousand two hundred seventeen');\nINSERT INTO t3 VALUES(19435, 72010, 'seventy-two thousand ten');\nINSERT INTO t3 VALUES(19436, 65223, 'sixty-five thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(19437, 27739, 'twenty-seven thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(19438, 74026, 'seventy-four thousand twenty-six');\nINSERT INTO t3 VALUES(19439, 50419, 'fifty thousand four hundred nineteen');\nINSERT INTO t3 VALUES(19440, 55579, 'fifty-five thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(19441, 34087, 'thirty-four thousand eighty-seven');\nINSERT INTO t3 VALUES(19442, 41468, 'forty-one thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(19443, 60871, 'sixty thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(19444, 76019, 'seventy-six thousand nineteen');\nINSERT INTO t3 VALUES(19445, 46668, 'forty-six thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(19446, 42665, 'forty-two thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(19447, 90446, 'ninety thousand four hundred forty-six');\nINSERT INTO t3 VALUES(19448, 38321, 'thirty-eight thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(19449, 80086, 'eighty thousand eighty-six');\nINSERT INTO t3 VALUES(19450, 39787, 'thirty-nine thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(19451, 19767, 'nineteen thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(19452, 34380, 'thirty-four thousand three hundred eighty');\nINSERT INTO t3 VALUES(19453, 28171, 'twenty-eight thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(19454, 90990, 'ninety thousand nine hundred ninety');\nINSERT INTO t3 VALUES(19455, 79448, 'seventy-nine thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(19456, 76235, 'seventy-six thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(19457, 23829, 'twenty-three thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(19458, 49486, 'forty-nine thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(19459, 34634, 'thirty-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(19460, 52118, 'fifty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(19461, 50940, 'fifty thousand nine hundred forty');\nINSERT INTO t3 VALUES(19462, 71601, 'seventy-one thousand six hundred one');\nINSERT INTO t3 VALUES(19463, 1992, 'one thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(19464, 24335, 'twenty-four thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(19465, 20424, 'twenty thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(19466, 93259, 'ninety-three thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(19467, 26351, 'twenty-six thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(19468, 75270, 'seventy-five thousand two hundred seventy');\nINSERT INTO t3 VALUES(19469, 88988, 'eighty-eight thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(19470, 39984, 'thirty-nine thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(19471, 96634, 'ninety-six thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(19472, 1772, 'one thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(19473, 71056, 'seventy-one thousand fifty-six');\nINSERT INTO t3 VALUES(19474, 62891, 'sixty-two thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(19475, 69856, 'sixty-nine thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(19476, 81369, 'eighty-one thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(19477, 8940, 'eight thousand nine hundred forty');\nINSERT INTO t3 VALUES(19478, 66439, 'sixty-six thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(19479, 66313, 'sixty-six thousand three hundred thirteen');\nINSERT INTO t3 VALUES(19480, 16695, 'sixteen thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(19481, 70150, 'seventy thousand one hundred fifty');\nINSERT INTO t3 VALUES(19482, 79462, 'seventy-nine thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(19483, 21151, 'twenty-one thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(19484, 1070, 'one thousand seventy');\nINSERT INTO t3 VALUES(19485, 34701, 'thirty-four thousand seven hundred one');\nINSERT INTO t3 VALUES(19486, 58249, 'fifty-eight thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(19487, 23890, 'twenty-three thousand eight hundred ninety');\nINSERT INTO t3 VALUES(19488, 48438, 'forty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(19489, 33987, 'thirty-three thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(19490, 6411, 'six thousand four hundred eleven');\nINSERT INTO t3 VALUES(19491, 24962, 'twenty-four thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(19492, 90714, 'ninety thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(19493, 65087, 'sixty-five thousand eighty-seven');\nINSERT INTO t3 VALUES(19494, 93866, 'ninety-three thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(19495, 25135, 'twenty-five thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(19496, 48147, 'forty-eight thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(19497, 42033, 'forty-two thousand thirty-three');\nINSERT INTO t3 VALUES(19498, 71644, 'seventy-one thousand six hundred forty-four');\nINSERT INTO t3 VALUES(19499, 49267, 'forty-nine thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(19500, 90474, 'ninety thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(19501, 24721, 'twenty-four thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(19502, 66812, 'sixty-six thousand eight hundred twelve');\nINSERT INTO t3 VALUES(19503, 85934, 'eighty-five thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(19504, 29788, 'twenty-nine thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(19505, 4555, 'four thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(19506, 78210, 'seventy-eight thousand two hundred ten');\nINSERT INTO t3 VALUES(19507, 29423, 'twenty-nine thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(19508, 99737, 'ninety-nine thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(19509, 65009, 'sixty-five thousand nine');\nINSERT INTO t3 VALUES(19510, 82090, 'eighty-two thousand ninety');\nINSERT INTO t3 VALUES(19511, 12260, 'twelve thousand two hundred sixty');\nINSERT INTO t3 VALUES(19512, 62869, 'sixty-two thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(19513, 29318, 'twenty-nine thousand three hundred eighteen');\nINSERT INTO t3 VALUES(19514, 56175, 'fifty-six thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(19515, 3130, 'three thousand one hundred thirty');\nINSERT INTO t3 VALUES(19516, 51537, 'fifty-one thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(19517, 76463, 'seventy-six thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(19518, 2425, 'two thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(19519, 93173, 'ninety-three thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(19520, 66383, 'sixty-six thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(19521, 99310, 'ninety-nine thousand three hundred ten');\nINSERT INTO t3 VALUES(19522, 32574, 'thirty-two thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(19523, 99192, 'ninety-nine thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(19524, 84320, 'eighty-four thousand three hundred twenty');\nINSERT INTO t3 VALUES(19525, 69763, 'sixty-nine thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(19526, 80323, 'eighty thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(19527, 94322, 'ninety-four thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(19528, 49608, 'forty-nine thousand six hundred eight');\nINSERT INTO t3 VALUES(19529, 1716, 'one thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(19530, 14239, 'fourteen thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(19531, 69469, 'sixty-nine thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(19532, 38129, 'thirty-eight thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(19533, 57751, 'fifty-seven thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(19534, 83980, 'eighty-three thousand nine hundred eighty');\nINSERT INTO t3 VALUES(19535, 3741, 'three thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(19536, 43682, 'forty-three thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(19537, 19228, 'nineteen thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(19538, 27463, 'twenty-seven thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(19539, 66551, 'sixty-six thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(19540, 96082, 'ninety-six thousand eighty-two');\nINSERT INTO t3 VALUES(19541, 56533, 'fifty-six thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(19542, 73140, 'seventy-three thousand one hundred forty');\nINSERT INTO t3 VALUES(19543, 17485, 'seventeen thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(19544, 96640, 'ninety-six thousand six hundred forty');\nINSERT INTO t3 VALUES(19545, 74765, 'seventy-four thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(19546, 42865, 'forty-two thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(19547, 99163, 'ninety-nine thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(19548, 75413, 'seventy-five thousand four hundred thirteen');\nINSERT INTO t3 VALUES(19549, 7084, 'seven thousand eighty-four');\nINSERT INTO t3 VALUES(19550, 17387, 'seventeen thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(19551, 47377, 'forty-seven thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(19552, 5600, 'five thousand six hundred');\nINSERT INTO t3 VALUES(19553, 47422, 'forty-seven thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(19554, 71011, 'seventy-one thousand eleven');\nINSERT INTO t3 VALUES(19555, 13051, 'thirteen thousand fifty-one');\nINSERT INTO t3 VALUES(19556, 49894, 'forty-nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(19557, 9139, 'nine thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(19558, 65841, 'sixty-five thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(19559, 47289, 'forty-seven thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(19560, 32328, 'thirty-two thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(19561, 25482, 'twenty-five thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(19562, 67366, 'sixty-seven thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(19563, 54187, 'fifty-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(19564, 60024, 'sixty thousand twenty-four');\nINSERT INTO t3 VALUES(19565, 81200, 'eighty-one thousand two hundred');\nINSERT INTO t3 VALUES(19566, 92367, 'ninety-two thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(19567, 65367, 'sixty-five thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(19568, 40393, 'forty thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(19569, 43767, 'forty-three thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(19570, 69296, 'sixty-nine thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(19571, 6751, 'six thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(19572, 79303, 'seventy-nine thousand three hundred three');\nINSERT INTO t3 VALUES(19573, 10762, 'ten thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(19574, 56400, 'fifty-six thousand four hundred');\nINSERT INTO t3 VALUES(19575, 28473, 'twenty-eight thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(19576, 70473, 'seventy thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(19577, 79981, 'seventy-nine thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(19578, 53920, 'fifty-three thousand nine hundred twenty');\nINSERT INTO t3 VALUES(19579, 62161, 'sixty-two thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(19580, 22223, 'twenty-two thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(19581, 46901, 'forty-six thousand nine hundred one');\nINSERT INTO t3 VALUES(19582, 1420, 'one thousand four hundred twenty');\nINSERT INTO t3 VALUES(19583, 2379, 'two thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(19584, 56826, 'fifty-six thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(19585, 71097, 'seventy-one thousand ninety-seven');\nINSERT INTO t3 VALUES(19586, 83243, 'eighty-three thousand two hundred forty-three');\nINSERT INTO t3 VALUES(19587, 62366, 'sixty-two thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(19588, 72168, 'seventy-two thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(19589, 34441, 'thirty-four thousand four hundred forty-one');\nINSERT INTO t3 VALUES(19590, 35373, 'thirty-five thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(19591, 66907, 'sixty-six thousand nine hundred seven');\nINSERT INTO t3 VALUES(19592, 51812, 'fifty-one thousand eight hundred twelve');\nINSERT INTO t3 VALUES(19593, 50333, 'fifty thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(19594, 94849, 'ninety-four thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(19595, 68171, 'sixty-eight thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(19596, 56179, 'fifty-six thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(19597, 60905, 'sixty thousand nine hundred five');\nINSERT INTO t3 VALUES(19598, 51465, 'fifty-one thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(19599, 71288, 'seventy-one thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(19600, 10479, 'ten thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(19601, 54583, 'fifty-four thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(19602, 19665, 'nineteen thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(19603, 74329, 'seventy-four thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(19604, 99730, 'ninety-nine thousand seven hundred thirty');\nINSERT INTO t3 VALUES(19605, 27510, 'twenty-seven thousand five hundred ten');\nINSERT INTO t3 VALUES(19606, 61606, 'sixty-one thousand six hundred six');\nINSERT INTO t3 VALUES(19607, 50992, 'fifty thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(19608, 59499, 'fifty-nine thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(19609, 19786, 'nineteen thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(19610, 96247, 'ninety-six thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(19611, 84024, 'eighty-four thousand twenty-four');\nINSERT INTO t3 VALUES(19612, 5501, 'five thousand five hundred one');\nINSERT INTO t3 VALUES(19613, 77281, 'seventy-seven thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(19614, 31446, 'thirty-one thousand four hundred forty-six');\nINSERT INTO t3 VALUES(19615, 13030, 'thirteen thousand thirty');\nINSERT INTO t3 VALUES(19616, 99772, 'ninety-nine thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(19617, 74603, 'seventy-four thousand six hundred three');\nINSERT INTO t3 VALUES(19618, 79584, 'seventy-nine thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(19619, 70165, 'seventy thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(19620, 19582, 'nineteen thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(19621, 84299, 'eighty-four thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(19622, 39072, 'thirty-nine thousand seventy-two');\nINSERT INTO t3 VALUES(19623, 90871, 'ninety thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(19624, 10223, 'ten thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(19625, 13913, 'thirteen thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(19626, 66601, 'sixty-six thousand six hundred one');\nINSERT INTO t3 VALUES(19627, 71461, 'seventy-one thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(19628, 63563, 'sixty-three thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(19629, 18564, 'eighteen thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(19630, 49072, 'forty-nine thousand seventy-two');\nINSERT INTO t3 VALUES(19631, 18366, 'eighteen thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(19632, 20203, 'twenty thousand two hundred three');\nINSERT INTO t3 VALUES(19633, 85191, 'eighty-five thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(19634, 1383, 'one thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(19635, 38597, 'thirty-eight thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(19636, 47337, 'forty-seven thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(19637, 55480, 'fifty-five thousand four hundred eighty');\nINSERT INTO t3 VALUES(19638, 32288, 'thirty-two thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(19639, 37063, 'thirty-seven thousand sixty-three');\nINSERT INTO t3 VALUES(19640, 10462, 'ten thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(19641, 8688, 'eight thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(19642, 39222, 'thirty-nine thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(19643, 54962, 'fifty-four thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(19644, 77710, 'seventy-seven thousand seven hundred ten');\nINSERT INTO t3 VALUES(19645, 43534, 'forty-three thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(19646, 24987, 'twenty-four thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(19647, 85361, 'eighty-five thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(19648, 30092, 'thirty thousand ninety-two');\nINSERT INTO t3 VALUES(19649, 43636, 'forty-three thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(19650, 26230, 'twenty-six thousand two hundred thirty');\nINSERT INTO t3 VALUES(19651, 84234, 'eighty-four thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(19652, 32251, 'thirty-two thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(19653, 882, 'eight hundred eighty-two');\nINSERT INTO t3 VALUES(19654, 92107, 'ninety-two thousand one hundred seven');\nINSERT INTO t3 VALUES(19655, 99716, 'ninety-nine thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(19656, 50542, 'fifty thousand five hundred forty-two');\nINSERT INTO t3 VALUES(19657, 45478, 'forty-five thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(19658, 38320, 'thirty-eight thousand three hundred twenty');\nINSERT INTO t3 VALUES(19659, 15275, 'fifteen thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(19660, 23080, 'twenty-three thousand eighty');\nINSERT INTO t3 VALUES(19661, 68580, 'sixty-eight thousand five hundred eighty');\nINSERT INTO t3 VALUES(19662, 79123, 'seventy-nine thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(19663, 97516, 'ninety-seven thousand five hundred sixteen');\nINSERT INTO t3 VALUES(19664, 59696, 'fifty-nine thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(19665, 25986, 'twenty-five thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(19666, 36244, 'thirty-six thousand two hundred forty-four');\nINSERT INTO t3 VALUES(19667, 48938, 'forty-eight thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(19668, 61749, 'sixty-one thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(19669, 85629, 'eighty-five thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(19670, 27798, 'twenty-seven thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(19671, 60826, 'sixty thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(19672, 19402, 'nineteen thousand four hundred two');\nINSERT INTO t3 VALUES(19673, 40330, 'forty thousand three hundred thirty');\nINSERT INTO t3 VALUES(19674, 88833, 'eighty-eight thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(19675, 77860, 'seventy-seven thousand eight hundred sixty');\nINSERT INTO t3 VALUES(19676, 66794, 'sixty-six thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(19677, 36817, 'thirty-six thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(19678, 67337, 'sixty-seven thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(19679, 8582, 'eight thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(19680, 88205, 'eighty-eight thousand two hundred five');\nINSERT INTO t3 VALUES(19681, 42375, 'forty-two thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(19682, 52953, 'fifty-two thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(19683, 98214, 'ninety-eight thousand two hundred fourteen');\nINSERT INTO t3 VALUES(19684, 44401, 'forty-four thousand four hundred one');\nINSERT INTO t3 VALUES(19685, 39133, 'thirty-nine thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(19686, 39340, 'thirty-nine thousand three hundred forty');\nINSERT INTO t3 VALUES(19687, 21943, 'twenty-one thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(19688, 33226, 'thirty-three thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(19689, 94784, 'ninety-four thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(19690, 50677, 'fifty thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(19691, 60817, 'sixty thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(19692, 2026, 'two thousand twenty-six');\nINSERT INTO t3 VALUES(19693, 90895, 'ninety thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(19694, 86422, 'eighty-six thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(19695, 83445, 'eighty-three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(19696, 65549, 'sixty-five thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(19697, 28657, 'twenty-eight thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(19698, 98125, 'ninety-eight thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(19699, 67725, 'sixty-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(19700, 12133, 'twelve thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(19701, 9044, 'nine thousand forty-four');\nINSERT INTO t3 VALUES(19702, 67802, 'sixty-seven thousand eight hundred two');\nINSERT INTO t3 VALUES(19703, 71589, 'seventy-one thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(19704, 79185, 'seventy-nine thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(19705, 63241, 'sixty-three thousand two hundred forty-one');\nINSERT INTO t3 VALUES(19706, 85620, 'eighty-five thousand six hundred twenty');\nINSERT INTO t3 VALUES(19707, 17780, 'seventeen thousand seven hundred eighty');\nINSERT INTO t3 VALUES(19708, 89943, 'eighty-nine thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(19709, 14640, 'fourteen thousand six hundred forty');\nINSERT INTO t3 VALUES(19710, 45665, 'forty-five thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(19711, 85205, 'eighty-five thousand two hundred five');\nINSERT INTO t3 VALUES(19712, 10290, 'ten thousand two hundred ninety');\nINSERT INTO t3 VALUES(19713, 45735, 'forty-five thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(19714, 80588, 'eighty thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(19715, 15032, 'fifteen thousand thirty-two');\nINSERT INTO t3 VALUES(19716, 33082, 'thirty-three thousand eighty-two');\nINSERT INTO t3 VALUES(19717, 55344, 'fifty-five thousand three hundred forty-four');\nINSERT INTO t3 VALUES(19718, 17423, 'seventeen thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(19719, 75379, 'seventy-five thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(19720, 2893, 'two thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(19721, 66038, 'sixty-six thousand thirty-eight');\nINSERT INTO t3 VALUES(19722, 82191, 'eighty-two thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(19723, 48842, 'forty-eight thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(19724, 31711, 'thirty-one thousand seven hundred eleven');\nINSERT INTO t3 VALUES(19725, 93787, 'ninety-three thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(19726, 25164, 'twenty-five thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(19727, 96793, 'ninety-six thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(19728, 28407, 'twenty-eight thousand four hundred seven');\nINSERT INTO t3 VALUES(19729, 52847, 'fifty-two thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(19730, 49130, 'forty-nine thousand one hundred thirty');\nINSERT INTO t3 VALUES(19731, 46686, 'forty-six thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(19732, 96039, 'ninety-six thousand thirty-nine');\nINSERT INTO t3 VALUES(19733, 61381, 'sixty-one thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(19734, 53597, 'fifty-three thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(19735, 23959, 'twenty-three thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(19736, 61829, 'sixty-one thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(19737, 81176, 'eighty-one thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(19738, 43831, 'forty-three thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(19739, 7036, 'seven thousand thirty-six');\nINSERT INTO t3 VALUES(19740, 32322, 'thirty-two thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(19741, 37934, 'thirty-seven thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(19742, 66758, 'sixty-six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(19743, 45174, 'forty-five thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(19744, 83864, 'eighty-three thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(19745, 75121, 'seventy-five thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(19746, 15547, 'fifteen thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(19747, 42879, 'forty-two thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(19748, 59338, 'fifty-nine thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(19749, 83235, 'eighty-three thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(19750, 81696, 'eighty-one thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(19751, 81932, 'eighty-one thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(19752, 82448, 'eighty-two thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(19753, 18173, 'eighteen thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(19754, 39948, 'thirty-nine thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(19755, 9960, 'nine thousand nine hundred sixty');\nINSERT INTO t3 VALUES(19756, 13506, 'thirteen thousand five hundred six');\nINSERT INTO t3 VALUES(19757, 69330, 'sixty-nine thousand three hundred thirty');\nINSERT INTO t3 VALUES(19758, 41610, 'forty-one thousand six hundred ten');\nINSERT INTO t3 VALUES(19759, 10375, 'ten thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(19760, 12254, 'twelve thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(19761, 27022, 'twenty-seven thousand twenty-two');\nINSERT INTO t3 VALUES(19762, 21672, 'twenty-one thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(19763, 97924, 'ninety-seven thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(19764, 21275, 'twenty-one thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(19765, 41434, 'forty-one thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(19766, 67561, 'sixty-seven thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(19767, 29913, 'twenty-nine thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(19768, 2251, 'two thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(19769, 86272, 'eighty-six thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(19770, 27018, 'twenty-seven thousand eighteen');\nINSERT INTO t3 VALUES(19771, 60262, 'sixty thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(19772, 88037, 'eighty-eight thousand thirty-seven');\nINSERT INTO t3 VALUES(19773, 94890, 'ninety-four thousand eight hundred ninety');\nINSERT INTO t3 VALUES(19774, 58644, 'fifty-eight thousand six hundred forty-four');\nINSERT INTO t3 VALUES(19775, 31719, 'thirty-one thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(19776, 23190, 'twenty-three thousand one hundred ninety');\nINSERT INTO t3 VALUES(19777, 82442, 'eighty-two thousand four hundred forty-two');\nINSERT INTO t3 VALUES(19778, 20141, 'twenty thousand one hundred forty-one');\nINSERT INTO t3 VALUES(19779, 70728, 'seventy thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(19780, 83587, 'eighty-three thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(19781, 60129, 'sixty thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(19782, 70021, 'seventy thousand twenty-one');\nINSERT INTO t3 VALUES(19783, 62802, 'sixty-two thousand eight hundred two');\nINSERT INTO t3 VALUES(19784, 78640, 'seventy-eight thousand six hundred forty');\nINSERT INTO t3 VALUES(19785, 90621, 'ninety thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(19786, 31976, 'thirty-one thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(19787, 37063, 'thirty-seven thousand sixty-three');\nINSERT INTO t3 VALUES(19788, 62699, 'sixty-two thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(19789, 6977, 'six thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(19790, 51912, 'fifty-one thousand nine hundred twelve');\nINSERT INTO t3 VALUES(19791, 90446, 'ninety thousand four hundred forty-six');\nINSERT INTO t3 VALUES(19792, 1478, 'one thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(19793, 72252, 'seventy-two thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(19794, 47687, 'forty-seven thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(19795, 65765, 'sixty-five thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(19796, 61418, 'sixty-one thousand four hundred eighteen');\nINSERT INTO t3 VALUES(19797, 72313, 'seventy-two thousand three hundred thirteen');\nINSERT INTO t3 VALUES(19798, 90370, 'ninety thousand three hundred seventy');\nINSERT INTO t3 VALUES(19799, 1015, 'one thousand fifteen');\nINSERT INTO t3 VALUES(19800, 18947, 'eighteen thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(19801, 17851, 'seventeen thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(19802, 1129, 'one thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(19803, 15667, 'fifteen thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(19804, 50535, 'fifty thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(19805, 70946, 'seventy thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(19806, 70067, 'seventy thousand sixty-seven');\nINSERT INTO t3 VALUES(19807, 2556, 'two thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(19808, 39882, 'thirty-nine thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(19809, 14889, 'fourteen thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(19810, 44477, 'forty-four thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(19811, 86763, 'eighty-six thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(19812, 5665, 'five thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(19813, 94413, 'ninety-four thousand four hundred thirteen');\nINSERT INTO t3 VALUES(19814, 84967, 'eighty-four thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(19815, 72708, 'seventy-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(19816, 59377, 'fifty-nine thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(19817, 25755, 'twenty-five thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(19818, 85276, 'eighty-five thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(19819, 37133, 'thirty-seven thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(19820, 32899, 'thirty-two thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(19821, 46888, 'forty-six thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(19822, 37400, 'thirty-seven thousand four hundred');\nINSERT INTO t3 VALUES(19823, 31553, 'thirty-one thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(19824, 3975, 'three thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(19825, 60602, 'sixty thousand six hundred two');\nINSERT INTO t3 VALUES(19826, 34809, 'thirty-four thousand eight hundred nine');\nINSERT INTO t3 VALUES(19827, 93913, 'ninety-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(19828, 60955, 'sixty thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(19829, 38244, 'thirty-eight thousand two hundred forty-four');\nINSERT INTO t3 VALUES(19830, 41871, 'forty-one thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(19831, 63818, 'sixty-three thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(19832, 71926, 'seventy-one thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(19833, 16497, 'sixteen thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(19834, 43479, 'forty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(19835, 81730, 'eighty-one thousand seven hundred thirty');\nINSERT INTO t3 VALUES(19836, 99727, 'ninety-nine thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(19837, 91659, 'ninety-one thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(19838, 28872, 'twenty-eight thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(19839, 89897, 'eighty-nine thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(19840, 30178, 'thirty thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(19841, 51585, 'fifty-one thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(19842, 69564, 'sixty-nine thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(19843, 63977, 'sixty-three thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(19844, 92869, 'ninety-two thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(19845, 94104, 'ninety-four thousand one hundred four');\nINSERT INTO t3 VALUES(19846, 62170, 'sixty-two thousand one hundred seventy');\nINSERT INTO t3 VALUES(19847, 21038, 'twenty-one thousand thirty-eight');\nINSERT INTO t3 VALUES(19848, 40153, 'forty thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(19849, 58743, 'fifty-eight thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(19850, 87508, 'eighty-seven thousand five hundred eight');\nINSERT INTO t3 VALUES(19851, 47657, 'forty-seven thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(19852, 8778, 'eight thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(19853, 19032, 'nineteen thousand thirty-two');\nINSERT INTO t3 VALUES(19854, 97097, 'ninety-seven thousand ninety-seven');\nINSERT INTO t3 VALUES(19855, 46159, 'forty-six thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(19856, 63827, 'sixty-three thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(19857, 26517, 'twenty-six thousand five hundred seventeen');\nINSERT INTO t3 VALUES(19858, 36600, 'thirty-six thousand six hundred');\nINSERT INTO t3 VALUES(19859, 84267, 'eighty-four thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(19860, 37159, 'thirty-seven thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(19861, 59740, 'fifty-nine thousand seven hundred forty');\nINSERT INTO t3 VALUES(19862, 73271, 'seventy-three thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(19863, 28873, 'twenty-eight thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(19864, 91438, 'ninety-one thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(19865, 20923, 'twenty thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(19866, 27148, 'twenty-seven thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(19867, 64999, 'sixty-four thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(19868, 34313, 'thirty-four thousand three hundred thirteen');\nINSERT INTO t3 VALUES(19869, 12471, 'twelve thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(19870, 73301, 'seventy-three thousand three hundred one');\nINSERT INTO t3 VALUES(19871, 34869, 'thirty-four thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(19872, 61468, 'sixty-one thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(19873, 15136, 'fifteen thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(19874, 15382, 'fifteen thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(19875, 46431, 'forty-six thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(19876, 52555, 'fifty-two thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(19877, 92447, 'ninety-two thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(19878, 92426, 'ninety-two thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(19879, 2934, 'two thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(19880, 35780, 'thirty-five thousand seven hundred eighty');\nINSERT INTO t3 VALUES(19881, 65149, 'sixty-five thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(19882, 99341, 'ninety-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(19883, 34445, 'thirty-four thousand four hundred forty-five');\nINSERT INTO t3 VALUES(19884, 6659, 'six thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(19885, 49294, 'forty-nine thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(19886, 70129, 'seventy thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(19887, 52160, 'fifty-two thousand one hundred sixty');\nINSERT INTO t3 VALUES(19888, 9256, 'nine thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(19889, 27420, 'twenty-seven thousand four hundred twenty');\nINSERT INTO t3 VALUES(19890, 85105, 'eighty-five thousand one hundred five');\nINSERT INTO t3 VALUES(19891, 88313, 'eighty-eight thousand three hundred thirteen');\nINSERT INTO t3 VALUES(19892, 94589, 'ninety-four thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(19893, 50596, 'fifty thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(19894, 1419, 'one thousand four hundred nineteen');\nINSERT INTO t3 VALUES(19895, 98933, 'ninety-eight thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(19896, 23016, 'twenty-three thousand sixteen');\nINSERT INTO t3 VALUES(19897, 33872, 'thirty-three thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(19898, 8746, 'eight thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(19899, 60781, 'sixty thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(19900, 57197, 'fifty-seven thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(19901, 48381, 'forty-eight thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(19902, 36376, 'thirty-six thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(19903, 40747, 'forty thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(19904, 93661, 'ninety-three thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(19905, 39503, 'thirty-nine thousand five hundred three');\nINSERT INTO t3 VALUES(19906, 75834, 'seventy-five thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(19907, 39896, 'thirty-nine thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(19908, 21524, 'twenty-one thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(19909, 28841, 'twenty-eight thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(19910, 84599, 'eighty-four thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(19911, 67626, 'sixty-seven thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(19912, 14462, 'fourteen thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(19913, 34477, 'thirty-four thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(19914, 73679, 'seventy-three thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(19915, 58623, 'fifty-eight thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(19916, 44535, 'forty-four thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(19917, 42057, 'forty-two thousand fifty-seven');\nINSERT INTO t3 VALUES(19918, 50415, 'fifty thousand four hundred fifteen');\nINSERT INTO t3 VALUES(19919, 56208, 'fifty-six thousand two hundred eight');\nINSERT INTO t3 VALUES(19920, 60080, 'sixty thousand eighty');\nINSERT INTO t3 VALUES(19921, 61892, 'sixty-one thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(19922, 2953, 'two thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(19923, 56019, 'fifty-six thousand nineteen');\nINSERT INTO t3 VALUES(19924, 3443, 'three thousand four hundred forty-three');\nINSERT INTO t3 VALUES(19925, 15304, 'fifteen thousand three hundred four');\nINSERT INTO t3 VALUES(19926, 11900, 'eleven thousand nine hundred');\nINSERT INTO t3 VALUES(19927, 82593, 'eighty-two thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(19928, 65750, 'sixty-five thousand seven hundred fifty');\nINSERT INTO t3 VALUES(19929, 57487, 'fifty-seven thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(19930, 49996, 'forty-nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(19931, 25910, 'twenty-five thousand nine hundred ten');\nINSERT INTO t3 VALUES(19932, 37419, 'thirty-seven thousand four hundred nineteen');\nINSERT INTO t3 VALUES(19933, 51058, 'fifty-one thousand fifty-eight');\nINSERT INTO t3 VALUES(19934, 47063, 'forty-seven thousand sixty-three');\nINSERT INTO t3 VALUES(19935, 65359, 'sixty-five thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(19936, 21441, 'twenty-one thousand four hundred forty-one');\nINSERT INTO t3 VALUES(19937, 10523, 'ten thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(19938, 93248, 'ninety-three thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(19939, 40118, 'forty thousand one hundred eighteen');\nINSERT INTO t3 VALUES(19940, 13415, 'thirteen thousand four hundred fifteen');\nINSERT INTO t3 VALUES(19941, 71686, 'seventy-one thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(19942, 23126, 'twenty-three thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(19943, 20988, 'twenty thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(19944, 96562, 'ninety-six thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(19945, 46135, 'forty-six thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(19946, 87688, 'eighty-seven thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(19947, 20017, 'twenty thousand seventeen');\nINSERT INTO t3 VALUES(19948, 64558, 'sixty-four thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(19949, 29409, 'twenty-nine thousand four hundred nine');\nINSERT INTO t3 VALUES(19950, 81852, 'eighty-one thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(19951, 50508, 'fifty thousand five hundred eight');\nINSERT INTO t3 VALUES(19952, 70948, 'seventy thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(19953, 49295, 'forty-nine thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(19954, 14605, 'fourteen thousand six hundred five');\nINSERT INTO t3 VALUES(19955, 58637, 'fifty-eight thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(19956, 67154, 'sixty-seven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(19957, 29958, 'twenty-nine thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(19958, 43635, 'forty-three thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(19959, 45428, 'forty-five thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(19960, 77933, 'seventy-seven thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(19961, 39866, 'thirty-nine thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(19962, 1300, 'one thousand three hundred');\nINSERT INTO t3 VALUES(19963, 71768, 'seventy-one thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(19964, 9086, 'nine thousand eighty-six');\nINSERT INTO t3 VALUES(19965, 81277, 'eighty-one thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(19966, 79415, 'seventy-nine thousand four hundred fifteen');\nINSERT INTO t3 VALUES(19967, 31317, 'thirty-one thousand three hundred seventeen');\nINSERT INTO t3 VALUES(19968, 34975, 'thirty-four thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(19969, 72187, 'seventy-two thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(19970, 59586, 'fifty-nine thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(19971, 61657, 'sixty-one thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(19972, 50029, 'fifty thousand twenty-nine');\nINSERT INTO t3 VALUES(19973, 33323, 'thirty-three thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(19974, 30487, 'thirty thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(19975, 92473, 'ninety-two thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(19976, 39835, 'thirty-nine thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(19977, 93597, 'ninety-three thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(19978, 97398, 'ninety-seven thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(19979, 52199, 'fifty-two thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(19980, 89086, 'eighty-nine thousand eighty-six');\nINSERT INTO t3 VALUES(19981, 88142, 'eighty-eight thousand one hundred forty-two');\nINSERT INTO t3 VALUES(19982, 8792, 'eight thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(19983, 27822, 'twenty-seven thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(19984, 47446, 'forty-seven thousand four hundred forty-six');\nINSERT INTO t3 VALUES(19985, 56479, 'fifty-six thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(19986, 11341, 'eleven thousand three hundred forty-one');\nINSERT INTO t3 VALUES(19987, 69157, 'sixty-nine thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(19988, 96921, 'ninety-six thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(19989, 68806, 'sixty-eight thousand eight hundred six');\nINSERT INTO t3 VALUES(19990, 59805, 'fifty-nine thousand eight hundred five');\nINSERT INTO t3 VALUES(19991, 46439, 'forty-six thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(19992, 9872, 'nine thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(19993, 10598, 'ten thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(19994, 22692, 'twenty-two thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(19995, 72003, 'seventy-two thousand three');\nINSERT INTO t3 VALUES(19996, 31972, 'thirty-one thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(19997, 9513, 'nine thousand five hundred thirteen');\nINSERT INTO t3 VALUES(19998, 85249, 'eighty-five thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(19999, 87644, 'eighty-seven thousand six hundred forty-four');\nINSERT INTO t3 VALUES(20000, 18342, 'eighteen thousand three hundred forty-two');\nINSERT INTO t3 VALUES(20001, 72862, 'seventy-two thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(20002, 27783, 'twenty-seven thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(20003, 49347, 'forty-nine thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(20004, 95687, 'ninety-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(20005, 87797, 'eighty-seven thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(20006, 14516, 'fourteen thousand five hundred sixteen');\nINSERT INTO t3 VALUES(20007, 29523, 'twenty-nine thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(20008, 84355, 'eighty-four thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(20009, 22001, 'twenty-two thousand one');\nINSERT INTO t3 VALUES(20010, 21492, 'twenty-one thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(20011, 27886, 'twenty-seven thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(20012, 39281, 'thirty-nine thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(20013, 78223, 'seventy-eight thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(20014, 84396, 'eighty-four thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(20015, 46422, 'forty-six thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(20016, 77705, 'seventy-seven thousand seven hundred five');\nINSERT INTO t3 VALUES(20017, 79657, 'seventy-nine thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(20018, 29826, 'twenty-nine thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(20019, 64606, 'sixty-four thousand six hundred six');\nINSERT INTO t3 VALUES(20020, 11440, 'eleven thousand four hundred forty');\nINSERT INTO t3 VALUES(20021, 71914, 'seventy-one thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(20022, 7272, 'seven thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(20023, 35100, 'thirty-five thousand one hundred');\nINSERT INTO t3 VALUES(20024, 80122, 'eighty thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(20025, 32695, 'thirty-two thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(20026, 42114, 'forty-two thousand one hundred fourteen');\nINSERT INTO t3 VALUES(20027, 61052, 'sixty-one thousand fifty-two');\nINSERT INTO t3 VALUES(20028, 67891, 'sixty-seven thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(20029, 72012, 'seventy-two thousand twelve');\nINSERT INTO t3 VALUES(20030, 31745, 'thirty-one thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(20031, 24360, 'twenty-four thousand three hundred sixty');\nINSERT INTO t3 VALUES(20032, 63286, 'sixty-three thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(20033, 1827, 'one thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(20034, 350, 'three hundred fifty');\nINSERT INTO t3 VALUES(20035, 80110, 'eighty thousand one hundred ten');\nINSERT INTO t3 VALUES(20036, 92311, 'ninety-two thousand three hundred eleven');\nINSERT INTO t3 VALUES(20037, 19998, 'nineteen thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(20038, 20848, 'twenty thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(20039, 1933, 'one thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(20040, 37059, 'thirty-seven thousand fifty-nine');\nINSERT INTO t3 VALUES(20041, 99283, 'ninety-nine thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(20042, 4257, 'four thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(20043, 55905, 'fifty-five thousand nine hundred five');\nINSERT INTO t3 VALUES(20044, 22092, 'twenty-two thousand ninety-two');\nINSERT INTO t3 VALUES(20045, 26126, 'twenty-six thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(20046, 59006, 'fifty-nine thousand six');\nINSERT INTO t3 VALUES(20047, 89616, 'eighty-nine thousand six hundred sixteen');\nINSERT INTO t3 VALUES(20048, 37275, 'thirty-seven thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(20049, 63717, 'sixty-three thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(20050, 43823, 'forty-three thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(20051, 23976, 'twenty-three thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(20052, 16387, 'sixteen thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(20053, 12225, 'twelve thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(20054, 12405, 'twelve thousand four hundred five');\nINSERT INTO t3 VALUES(20055, 49729, 'forty-nine thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(20056, 74226, 'seventy-four thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(20057, 60049, 'sixty thousand forty-nine');\nINSERT INTO t3 VALUES(20058, 81561, 'eighty-one thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(20059, 44020, 'forty-four thousand twenty');\nINSERT INTO t3 VALUES(20060, 86626, 'eighty-six thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(20061, 16821, 'sixteen thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(20062, 25113, 'twenty-five thousand one hundred thirteen');\nINSERT INTO t3 VALUES(20063, 12880, 'twelve thousand eight hundred eighty');\nINSERT INTO t3 VALUES(20064, 74147, 'seventy-four thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(20065, 97826, 'ninety-seven thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(20066, 45166, 'forty-five thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(20067, 91066, 'ninety-one thousand sixty-six');\nINSERT INTO t3 VALUES(20068, 89402, 'eighty-nine thousand four hundred two');\nINSERT INTO t3 VALUES(20069, 89113, 'eighty-nine thousand one hundred thirteen');\nINSERT INTO t3 VALUES(20070, 8, 'eight');\nINSERT INTO t3 VALUES(20071, 39403, 'thirty-nine thousand four hundred three');\nINSERT INTO t3 VALUES(20072, 7215, 'seven thousand two hundred fifteen');\nINSERT INTO t3 VALUES(20073, 47610, 'forty-seven thousand six hundred ten');\nINSERT INTO t3 VALUES(20074, 88159, 'eighty-eight thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(20075, 40010, 'forty thousand ten');\nINSERT INTO t3 VALUES(20076, 11713, 'eleven thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(20077, 58482, 'fifty-eight thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(20078, 23014, 'twenty-three thousand fourteen');\nINSERT INTO t3 VALUES(20079, 89282, 'eighty-nine thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(20080, 20917, 'twenty thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(20081, 58392, 'fifty-eight thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(20082, 14355, 'fourteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(20083, 29034, 'twenty-nine thousand thirty-four');\nINSERT INTO t3 VALUES(20084, 81063, 'eighty-one thousand sixty-three');\nINSERT INTO t3 VALUES(20085, 49923, 'forty-nine thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(20086, 48645, 'forty-eight thousand six hundred forty-five');\nINSERT INTO t3 VALUES(20087, 59887, 'fifty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(20088, 48516, 'forty-eight thousand five hundred sixteen');\nINSERT INTO t3 VALUES(20089, 75736, 'seventy-five thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(20090, 9612, 'nine thousand six hundred twelve');\nINSERT INTO t3 VALUES(20091, 97975, 'ninety-seven thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(20092, 88628, 'eighty-eight thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(20093, 29287, 'twenty-nine thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(20094, 3449, 'three thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(20095, 31607, 'thirty-one thousand six hundred seven');\nINSERT INTO t3 VALUES(20096, 73131, 'seventy-three thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(20097, 4960, 'four thousand nine hundred sixty');\nINSERT INTO t3 VALUES(20098, 14549, 'fourteen thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(20099, 40715, 'forty thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(20100, 48079, 'forty-eight thousand seventy-nine');\nINSERT INTO t3 VALUES(20101, 16078, 'sixteen thousand seventy-eight');\nINSERT INTO t3 VALUES(20102, 34676, 'thirty-four thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(20103, 63067, 'sixty-three thousand sixty-seven');\nINSERT INTO t3 VALUES(20104, 96366, 'ninety-six thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(20105, 52984, 'fifty-two thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(20106, 72429, 'seventy-two thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(20107, 48630, 'forty-eight thousand six hundred thirty');\nINSERT INTO t3 VALUES(20108, 72547, 'seventy-two thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(20109, 48978, 'forty-eight thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(20110, 99021, 'ninety-nine thousand twenty-one');\nINSERT INTO t3 VALUES(20111, 10349, 'ten thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(20112, 61108, 'sixty-one thousand one hundred eight');\nINSERT INTO t3 VALUES(20113, 19567, 'nineteen thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(20114, 98076, 'ninety-eight thousand seventy-six');\nINSERT INTO t3 VALUES(20115, 32649, 'thirty-two thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(20116, 89376, 'eighty-nine thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(20117, 80259, 'eighty thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(20118, 16508, 'sixteen thousand five hundred eight');\nINSERT INTO t3 VALUES(20119, 40664, 'forty thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(20120, 64867, 'sixty-four thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(20121, 29464, 'twenty-nine thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(20122, 84123, 'eighty-four thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(20123, 10426, 'ten thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(20124, 97138, 'ninety-seven thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(20125, 57609, 'fifty-seven thousand six hundred nine');\nINSERT INTO t3 VALUES(20126, 68905, 'sixty-eight thousand nine hundred five');\nINSERT INTO t3 VALUES(20127, 88566, 'eighty-eight thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(20128, 73735, 'seventy-three thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(20129, 84373, 'eighty-four thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(20130, 23240, 'twenty-three thousand two hundred forty');\nINSERT INTO t3 VALUES(20131, 39150, 'thirty-nine thousand one hundred fifty');\nINSERT INTO t3 VALUES(20132, 28464, 'twenty-eight thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(20133, 84955, 'eighty-four thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(20134, 32704, 'thirty-two thousand seven hundred four');\nINSERT INTO t3 VALUES(20135, 22677, 'twenty-two thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(20136, 65463, 'sixty-five thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(20137, 9486, 'nine thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(20138, 13158, 'thirteen thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(20139, 91570, 'ninety-one thousand five hundred seventy');\nINSERT INTO t3 VALUES(20140, 43322, 'forty-three thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(20141, 88949, 'eighty-eight thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(20142, 78149, 'seventy-eight thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(20143, 72529, 'seventy-two thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(20144, 3711, 'three thousand seven hundred eleven');\nINSERT INTO t3 VALUES(20145, 8649, 'eight thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(20146, 23426, 'twenty-three thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(20147, 34679, 'thirty-four thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(20148, 81451, 'eighty-one thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(20149, 98709, 'ninety-eight thousand seven hundred nine');\nINSERT INTO t3 VALUES(20150, 90607, 'ninety thousand six hundred seven');\nINSERT INTO t3 VALUES(20151, 22375, 'twenty-two thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(20152, 8602, 'eight thousand six hundred two');\nINSERT INTO t3 VALUES(20153, 42276, 'forty-two thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(20154, 52226, 'fifty-two thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(20155, 34057, 'thirty-four thousand fifty-seven');\nINSERT INTO t3 VALUES(20156, 20944, 'twenty thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(20157, 29028, 'twenty-nine thousand twenty-eight');\nINSERT INTO t3 VALUES(20158, 4897, 'four thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(20159, 81555, 'eighty-one thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(20160, 6222, 'six thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(20161, 34985, 'thirty-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(20162, 26548, 'twenty-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(20163, 74916, 'seventy-four thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(20164, 97934, 'ninety-seven thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(20165, 27026, 'twenty-seven thousand twenty-six');\nINSERT INTO t3 VALUES(20166, 11742, 'eleven thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(20167, 1714, 'one thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(20168, 49035, 'forty-nine thousand thirty-five');\nINSERT INTO t3 VALUES(20169, 51243, 'fifty-one thousand two hundred forty-three');\nINSERT INTO t3 VALUES(20170, 66148, 'sixty-six thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(20171, 89710, 'eighty-nine thousand seven hundred ten');\nINSERT INTO t3 VALUES(20172, 54029, 'fifty-four thousand twenty-nine');\nINSERT INTO t3 VALUES(20173, 29283, 'twenty-nine thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(20174, 48651, 'forty-eight thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(20175, 15919, 'fifteen thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(20176, 87723, 'eighty-seven thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(20177, 68795, 'sixty-eight thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(20178, 67533, 'sixty-seven thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(20179, 80581, 'eighty thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(20180, 30384, 'thirty thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(20181, 45186, 'forty-five thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(20182, 67694, 'sixty-seven thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(20183, 29585, 'twenty-nine thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(20184, 34755, 'thirty-four thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(20185, 72418, 'seventy-two thousand four hundred eighteen');\nINSERT INTO t3 VALUES(20186, 87034, 'eighty-seven thousand thirty-four');\nINSERT INTO t3 VALUES(20187, 84495, 'eighty-four thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(20188, 97624, 'ninety-seven thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(20189, 869, 'eight hundred sixty-nine');\nINSERT INTO t3 VALUES(20190, 90134, 'ninety thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(20191, 47882, 'forty-seven thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(20192, 14472, 'fourteen thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(20193, 39259, 'thirty-nine thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(20194, 73963, 'seventy-three thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(20195, 67132, 'sixty-seven thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(20196, 49969, 'forty-nine thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(20197, 77803, 'seventy-seven thousand eight hundred three');\nINSERT INTO t3 VALUES(20198, 45476, 'forty-five thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(20199, 8426, 'eight thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(20200, 21633, 'twenty-one thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(20201, 69279, 'sixty-nine thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(20202, 27395, 'twenty-seven thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(20203, 97795, 'ninety-seven thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(20204, 30638, 'thirty thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(20205, 49290, 'forty-nine thousand two hundred ninety');\nINSERT INTO t3 VALUES(20206, 56915, 'fifty-six thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(20207, 44696, 'forty-four thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(20208, 14745, 'fourteen thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(20209, 92913, 'ninety-two thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(20210, 37422, 'thirty-seven thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(20211, 65899, 'sixty-five thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(20212, 71968, 'seventy-one thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(20213, 89164, 'eighty-nine thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(20214, 66721, 'sixty-six thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(20215, 62756, 'sixty-two thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(20216, 83207, 'eighty-three thousand two hundred seven');\nINSERT INTO t3 VALUES(20217, 4913, 'four thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(20218, 49123, 'forty-nine thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(20219, 69819, 'sixty-nine thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(20220, 70861, 'seventy thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(20221, 14788, 'fourteen thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(20222, 27661, 'twenty-seven thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(20223, 31164, 'thirty-one thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(20224, 85828, 'eighty-five thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(20225, 54919, 'fifty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(20226, 98642, 'ninety-eight thousand six hundred forty-two');\nINSERT INTO t3 VALUES(20227, 63960, 'sixty-three thousand nine hundred sixty');\nINSERT INTO t3 VALUES(20228, 69879, 'sixty-nine thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(20229, 88180, 'eighty-eight thousand one hundred eighty');\nINSERT INTO t3 VALUES(20230, 10061, 'ten thousand sixty-one');\nINSERT INTO t3 VALUES(20231, 44878, 'forty-four thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(20232, 5789, 'five thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(20233, 10630, 'ten thousand six hundred thirty');\nINSERT INTO t3 VALUES(20234, 92864, 'ninety-two thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(20235, 71520, 'seventy-one thousand five hundred twenty');\nINSERT INTO t3 VALUES(20236, 59113, 'fifty-nine thousand one hundred thirteen');\nINSERT INTO t3 VALUES(20237, 55590, 'fifty-five thousand five hundred ninety');\nINSERT INTO t3 VALUES(20238, 41222, 'forty-one thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(20239, 27480, 'twenty-seven thousand four hundred eighty');\nINSERT INTO t3 VALUES(20240, 50519, 'fifty thousand five hundred nineteen');\nINSERT INTO t3 VALUES(20241, 94614, 'ninety-four thousand six hundred fourteen');\nINSERT INTO t3 VALUES(20242, 57474, 'fifty-seven thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(20243, 67847, 'sixty-seven thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(20244, 31556, 'thirty-one thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(20245, 90532, 'ninety thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(20246, 69260, 'sixty-nine thousand two hundred sixty');\nINSERT INTO t3 VALUES(20247, 48035, 'forty-eight thousand thirty-five');\nINSERT INTO t3 VALUES(20248, 73504, 'seventy-three thousand five hundred four');\nINSERT INTO t3 VALUES(20249, 78185, 'seventy-eight thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(20250, 40349, 'forty thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(20251, 74600, 'seventy-four thousand six hundred');\nINSERT INTO t3 VALUES(20252, 47483, 'forty-seven thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(20253, 87093, 'eighty-seven thousand ninety-three');\nINSERT INTO t3 VALUES(20254, 99883, 'ninety-nine thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(20255, 8908, 'eight thousand nine hundred eight');\nINSERT INTO t3 VALUES(20256, 18853, 'eighteen thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(20257, 19762, 'nineteen thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(20258, 7302, 'seven thousand three hundred two');\nINSERT INTO t3 VALUES(20259, 59806, 'fifty-nine thousand eight hundred six');\nINSERT INTO t3 VALUES(20260, 59271, 'fifty-nine thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(20261, 45947, 'forty-five thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(20262, 1535, 'one thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(20263, 17297, 'seventeen thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(20264, 71649, 'seventy-one thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(20265, 30445, 'thirty thousand four hundred forty-five');\nINSERT INTO t3 VALUES(20266, 18312, 'eighteen thousand three hundred twelve');\nINSERT INTO t3 VALUES(20267, 12690, 'twelve thousand six hundred ninety');\nINSERT INTO t3 VALUES(20268, 24478, 'twenty-four thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(20269, 66395, 'sixty-six thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(20270, 78133, 'seventy-eight thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(20271, 93571, 'ninety-three thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(20272, 31625, 'thirty-one thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(20273, 90725, 'ninety thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(20274, 62907, 'sixty-two thousand nine hundred seven');\nINSERT INTO t3 VALUES(20275, 58476, 'fifty-eight thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(20276, 67476, 'sixty-seven thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(20277, 33733, 'thirty-three thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(20278, 87036, 'eighty-seven thousand thirty-six');\nINSERT INTO t3 VALUES(20279, 58642, 'fifty-eight thousand six hundred forty-two');\nINSERT INTO t3 VALUES(20280, 32142, 'thirty-two thousand one hundred forty-two');\nINSERT INTO t3 VALUES(20281, 20472, 'twenty thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(20282, 76455, 'seventy-six thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(20283, 66648, 'sixty-six thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(20284, 19122, 'nineteen thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(20285, 49942, 'forty-nine thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(20286, 54128, 'fifty-four thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(20287, 76092, 'seventy-six thousand ninety-two');\nINSERT INTO t3 VALUES(20288, 51461, 'fifty-one thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(20289, 92708, 'ninety-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(20290, 41224, 'forty-one thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(20291, 50772, 'fifty thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(20292, 25478, 'twenty-five thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(20293, 11329, 'eleven thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(20294, 68580, 'sixty-eight thousand five hundred eighty');\nINSERT INTO t3 VALUES(20295, 58527, 'fifty-eight thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(20296, 307, 'three hundred seven');\nINSERT INTO t3 VALUES(20297, 95577, 'ninety-five thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(20298, 99602, 'ninety-nine thousand six hundred two');\nINSERT INTO t3 VALUES(20299, 74371, 'seventy-four thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(20300, 77802, 'seventy-seven thousand eight hundred two');\nINSERT INTO t3 VALUES(20301, 14037, 'fourteen thousand thirty-seven');\nINSERT INTO t3 VALUES(20302, 65270, 'sixty-five thousand two hundred seventy');\nINSERT INTO t3 VALUES(20303, 83992, 'eighty-three thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(20304, 88705, 'eighty-eight thousand seven hundred five');\nINSERT INTO t3 VALUES(20305, 65671, 'sixty-five thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(20306, 13563, 'thirteen thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(20307, 75158, 'seventy-five thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(20308, 32068, 'thirty-two thousand sixty-eight');\nINSERT INTO t3 VALUES(20309, 64761, 'sixty-four thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(20310, 30331, 'thirty thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(20311, 40, 'forty');\nINSERT INTO t3 VALUES(20312, 44317, 'forty-four thousand three hundred seventeen');\nINSERT INTO t3 VALUES(20313, 17848, 'seventeen thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(20314, 51395, 'fifty-one thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(20315, 87078, 'eighty-seven thousand seventy-eight');\nINSERT INTO t3 VALUES(20316, 73363, 'seventy-three thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(20317, 97750, 'ninety-seven thousand seven hundred fifty');\nINSERT INTO t3 VALUES(20318, 64435, 'sixty-four thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(20319, 90450, 'ninety thousand four hundred fifty');\nINSERT INTO t3 VALUES(20320, 75574, 'seventy-five thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(20321, 19960, 'nineteen thousand nine hundred sixty');\nINSERT INTO t3 VALUES(20322, 74593, 'seventy-four thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(20323, 49745, 'forty-nine thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(20324, 44849, 'forty-four thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(20325, 30015, 'thirty thousand fifteen');\nINSERT INTO t3 VALUES(20326, 78545, 'seventy-eight thousand five hundred forty-five');\nINSERT INTO t3 VALUES(20327, 78699, 'seventy-eight thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(20328, 70392, 'seventy thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(20329, 21027, 'twenty-one thousand twenty-seven');\nINSERT INTO t3 VALUES(20330, 77562, 'seventy-seven thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(20331, 11036, 'eleven thousand thirty-six');\nINSERT INTO t3 VALUES(20332, 68284, 'sixty-eight thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(20333, 49430, 'forty-nine thousand four hundred thirty');\nINSERT INTO t3 VALUES(20334, 96756, 'ninety-six thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(20335, 10476, 'ten thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(20336, 3721, 'three thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(20337, 87464, 'eighty-seven thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(20338, 86393, 'eighty-six thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(20339, 12371, 'twelve thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(20340, 31432, 'thirty-one thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(20341, 18890, 'eighteen thousand eight hundred ninety');\nINSERT INTO t3 VALUES(20342, 25999, 'twenty-five thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(20343, 30466, 'thirty thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(20344, 23117, 'twenty-three thousand one hundred seventeen');\nINSERT INTO t3 VALUES(20345, 54760, 'fifty-four thousand seven hundred sixty');\nINSERT INTO t3 VALUES(20346, 50415, 'fifty thousand four hundred fifteen');\nINSERT INTO t3 VALUES(20347, 41057, 'forty-one thousand fifty-seven');\nINSERT INTO t3 VALUES(20348, 71802, 'seventy-one thousand eight hundred two');\nINSERT INTO t3 VALUES(20349, 51995, 'fifty-one thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(20350, 16583, 'sixteen thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(20351, 89543, 'eighty-nine thousand five hundred forty-three');\nINSERT INTO t3 VALUES(20352, 13374, 'thirteen thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(20353, 66932, 'sixty-six thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(20354, 99473, 'ninety-nine thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(20355, 48022, 'forty-eight thousand twenty-two');\nINSERT INTO t3 VALUES(20356, 75867, 'seventy-five thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(20357, 61328, 'sixty-one thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(20358, 79963, 'seventy-nine thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(20359, 19830, 'nineteen thousand eight hundred thirty');\nINSERT INTO t3 VALUES(20360, 19382, 'nineteen thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(20361, 93361, 'ninety-three thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(20362, 3755, 'three thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(20363, 62155, 'sixty-two thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(20364, 23116, 'twenty-three thousand one hundred sixteen');\nINSERT INTO t3 VALUES(20365, 37229, 'thirty-seven thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(20366, 33044, 'thirty-three thousand forty-four');\nINSERT INTO t3 VALUES(20367, 90842, 'ninety thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(20368, 41054, 'forty-one thousand fifty-four');\nINSERT INTO t3 VALUES(20369, 1813, 'one thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(20370, 73985, 'seventy-three thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(20371, 43705, 'forty-three thousand seven hundred five');\nINSERT INTO t3 VALUES(20372, 71838, 'seventy-one thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(20373, 84602, 'eighty-four thousand six hundred two');\nINSERT INTO t3 VALUES(20374, 29630, 'twenty-nine thousand six hundred thirty');\nINSERT INTO t3 VALUES(20375, 52846, 'fifty-two thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(20376, 92741, 'ninety-two thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(20377, 33094, 'thirty-three thousand ninety-four');\nINSERT INTO t3 VALUES(20378, 76200, 'seventy-six thousand two hundred');\nINSERT INTO t3 VALUES(20379, 65338, 'sixty-five thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(20380, 92689, 'ninety-two thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(20381, 85493, 'eighty-five thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(20382, 91242, 'ninety-one thousand two hundred forty-two');\nINSERT INTO t3 VALUES(20383, 37067, 'thirty-seven thousand sixty-seven');\nINSERT INTO t3 VALUES(20384, 24548, 'twenty-four thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(20385, 20168, 'twenty thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(20386, 89279, 'eighty-nine thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(20387, 44857, 'forty-four thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(20388, 84475, 'eighty-four thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(20389, 48457, 'forty-eight thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(20390, 15727, 'fifteen thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(20391, 89829, 'eighty-nine thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(20392, 97082, 'ninety-seven thousand eighty-two');\nINSERT INTO t3 VALUES(20393, 4575, 'four thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(20394, 76311, 'seventy-six thousand three hundred eleven');\nINSERT INTO t3 VALUES(20395, 13414, 'thirteen thousand four hundred fourteen');\nINSERT INTO t3 VALUES(20396, 44200, 'forty-four thousand two hundred');\nINSERT INTO t3 VALUES(20397, 18718, 'eighteen thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(20398, 14587, 'fourteen thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(20399, 99840, 'ninety-nine thousand eight hundred forty');\nINSERT INTO t3 VALUES(20400, 14243, 'fourteen thousand two hundred forty-three');\nINSERT INTO t3 VALUES(20401, 84287, 'eighty-four thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(20402, 9289, 'nine thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(20403, 10957, 'ten thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(20404, 85839, 'eighty-five thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(20405, 44002, 'forty-four thousand two');\nINSERT INTO t3 VALUES(20406, 54719, 'fifty-four thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(20407, 16367, 'sixteen thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(20408, 20067, 'twenty thousand sixty-seven');\nINSERT INTO t3 VALUES(20409, 11614, 'eleven thousand six hundred fourteen');\nINSERT INTO t3 VALUES(20410, 71523, 'seventy-one thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(20411, 2749, 'two thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(20412, 13229, 'thirteen thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(20413, 98086, 'ninety-eight thousand eighty-six');\nINSERT INTO t3 VALUES(20414, 46089, 'forty-six thousand eighty-nine');\nINSERT INTO t3 VALUES(20415, 10941, 'ten thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(20416, 93739, 'ninety-three thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(20417, 35974, 'thirty-five thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(20418, 4226, 'four thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(20419, 37640, 'thirty-seven thousand six hundred forty');\nINSERT INTO t3 VALUES(20420, 29326, 'twenty-nine thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(20421, 99948, 'ninety-nine thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(20422, 51704, 'fifty-one thousand seven hundred four');\nINSERT INTO t3 VALUES(20423, 32392, 'thirty-two thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(20424, 33479, 'thirty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(20425, 46703, 'forty-six thousand seven hundred three');\nINSERT INTO t3 VALUES(20426, 35829, 'thirty-five thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(20427, 88969, 'eighty-eight thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(20428, 9725, 'nine thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(20429, 29151, 'twenty-nine thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(20430, 3867, 'three thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(20431, 6469, 'six thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(20432, 32910, 'thirty-two thousand nine hundred ten');\nINSERT INTO t3 VALUES(20433, 61884, 'sixty-one thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(20434, 5513, 'five thousand five hundred thirteen');\nINSERT INTO t3 VALUES(20435, 19049, 'nineteen thousand forty-nine');\nINSERT INTO t3 VALUES(20436, 26063, 'twenty-six thousand sixty-three');\nINSERT INTO t3 VALUES(20437, 48597, 'forty-eight thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(20438, 51750, 'fifty-one thousand seven hundred fifty');\nINSERT INTO t3 VALUES(20439, 12557, 'twelve thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(20440, 13770, 'thirteen thousand seven hundred seventy');\nINSERT INTO t3 VALUES(20441, 46516, 'forty-six thousand five hundred sixteen');\nINSERT INTO t3 VALUES(20442, 51217, 'fifty-one thousand two hundred seventeen');\nINSERT INTO t3 VALUES(20443, 17935, 'seventeen thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(20444, 8078, 'eight thousand seventy-eight');\nINSERT INTO t3 VALUES(20445, 43565, 'forty-three thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(20446, 72524, 'seventy-two thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(20447, 59901, 'fifty-nine thousand nine hundred one');\nINSERT INTO t3 VALUES(20448, 59402, 'fifty-nine thousand four hundred two');\nINSERT INTO t3 VALUES(20449, 78458, 'seventy-eight thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(20450, 64109, 'sixty-four thousand one hundred nine');\nINSERT INTO t3 VALUES(20451, 79973, 'seventy-nine thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(20452, 62417, 'sixty-two thousand four hundred seventeen');\nINSERT INTO t3 VALUES(20453, 78484, 'seventy-eight thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(20454, 9569, 'nine thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(20455, 15794, 'fifteen thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(20456, 16175, 'sixteen thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(20457, 15906, 'fifteen thousand nine hundred six');\nINSERT INTO t3 VALUES(20458, 79140, 'seventy-nine thousand one hundred forty');\nINSERT INTO t3 VALUES(20459, 96082, 'ninety-six thousand eighty-two');\nINSERT INTO t3 VALUES(20460, 44463, 'forty-four thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(20461, 50305, 'fifty thousand three hundred five');\nINSERT INTO t3 VALUES(20462, 79389, 'seventy-nine thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(20463, 41931, 'forty-one thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(20464, 76179, 'seventy-six thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(20465, 713, 'seven hundred thirteen');\nINSERT INTO t3 VALUES(20466, 61012, 'sixty-one thousand twelve');\nINSERT INTO t3 VALUES(20467, 25827, 'twenty-five thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(20468, 549, 'five hundred forty-nine');\nINSERT INTO t3 VALUES(20469, 41269, 'forty-one thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(20470, 72172, 'seventy-two thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(20471, 89382, 'eighty-nine thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(20472, 37601, 'thirty-seven thousand six hundred one');\nINSERT INTO t3 VALUES(20473, 16979, 'sixteen thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(20474, 76345, 'seventy-six thousand three hundred forty-five');\nINSERT INTO t3 VALUES(20475, 37696, 'thirty-seven thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(20476, 74669, 'seventy-four thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(20477, 696, 'six hundred ninety-six');\nINSERT INTO t3 VALUES(20478, 19249, 'nineteen thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(20479, 9849, 'nine thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(20480, 31551, 'thirty-one thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(20481, 74125, 'seventy-four thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(20482, 16960, 'sixteen thousand nine hundred sixty');\nINSERT INTO t3 VALUES(20483, 30364, 'thirty thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(20484, 72335, 'seventy-two thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(20485, 94878, 'ninety-four thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(20486, 92301, 'ninety-two thousand three hundred one');\nINSERT INTO t3 VALUES(20487, 60978, 'sixty thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(20488, 69767, 'sixty-nine thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(20489, 13933, 'thirteen thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(20490, 33212, 'thirty-three thousand two hundred twelve');\nINSERT INTO t3 VALUES(20491, 90390, 'ninety thousand three hundred ninety');\nINSERT INTO t3 VALUES(20492, 30667, 'thirty thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(20493, 87652, 'eighty-seven thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(20494, 31049, 'thirty-one thousand forty-nine');\nINSERT INTO t3 VALUES(20495, 59932, 'fifty-nine thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(20496, 68922, 'sixty-eight thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(20497, 12761, 'twelve thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(20498, 81110, 'eighty-one thousand one hundred ten');\nINSERT INTO t3 VALUES(20499, 22859, 'twenty-two thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(20500, 67753, 'sixty-seven thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(20501, 61919, 'sixty-one thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(20502, 97152, 'ninety-seven thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(20503, 41109, 'forty-one thousand one hundred nine');\nINSERT INTO t3 VALUES(20504, 83430, 'eighty-three thousand four hundred thirty');\nINSERT INTO t3 VALUES(20505, 9429, 'nine thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(20506, 8447, 'eight thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(20507, 91117, 'ninety-one thousand one hundred seventeen');\nINSERT INTO t3 VALUES(20508, 99719, 'ninety-nine thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(20509, 11446, 'eleven thousand four hundred forty-six');\nINSERT INTO t3 VALUES(20510, 16205, 'sixteen thousand two hundred five');\nINSERT INTO t3 VALUES(20511, 63051, 'sixty-three thousand fifty-one');\nINSERT INTO t3 VALUES(20512, 58773, 'fifty-eight thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(20513, 81836, 'eighty-one thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(20514, 17045, 'seventeen thousand forty-five');\nINSERT INTO t3 VALUES(20515, 91505, 'ninety-one thousand five hundred five');\nINSERT INTO t3 VALUES(20516, 48991, 'forty-eight thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(20517, 44459, 'forty-four thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(20518, 58453, 'fifty-eight thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(20519, 70909, 'seventy thousand nine hundred nine');\nINSERT INTO t3 VALUES(20520, 60103, 'sixty thousand one hundred three');\nINSERT INTO t3 VALUES(20521, 54991, 'fifty-four thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(20522, 16708, 'sixteen thousand seven hundred eight');\nINSERT INTO t3 VALUES(20523, 17403, 'seventeen thousand four hundred three');\nINSERT INTO t3 VALUES(20524, 9083, 'nine thousand eighty-three');\nINSERT INTO t3 VALUES(20525, 20340, 'twenty thousand three hundred forty');\nINSERT INTO t3 VALUES(20526, 93037, 'ninety-three thousand thirty-seven');\nINSERT INTO t3 VALUES(20527, 7600, 'seven thousand six hundred');\nINSERT INTO t3 VALUES(20528, 86450, 'eighty-six thousand four hundred fifty');\nINSERT INTO t3 VALUES(20529, 84867, 'eighty-four thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(20530, 61092, 'sixty-one thousand ninety-two');\nINSERT INTO t3 VALUES(20531, 24401, 'twenty-four thousand four hundred one');\nINSERT INTO t3 VALUES(20532, 96588, 'ninety-six thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(20533, 97549, 'ninety-seven thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(20534, 32355, 'thirty-two thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(20535, 71714, 'seventy-one thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(20536, 72398, 'seventy-two thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(20537, 18156, 'eighteen thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(20538, 98605, 'ninety-eight thousand six hundred five');\nINSERT INTO t3 VALUES(20539, 61579, 'sixty-one thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(20540, 32126, 'thirty-two thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(20541, 31859, 'thirty-one thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(20542, 17709, 'seventeen thousand seven hundred nine');\nINSERT INTO t3 VALUES(20543, 21756, 'twenty-one thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(20544, 94866, 'ninety-four thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(20545, 43968, 'forty-three thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(20546, 43551, 'forty-three thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(20547, 19538, 'nineteen thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(20548, 49633, 'forty-nine thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(20549, 62508, 'sixty-two thousand five hundred eight');\nINSERT INTO t3 VALUES(20550, 80371, 'eighty thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(20551, 22064, 'twenty-two thousand sixty-four');\nINSERT INTO t3 VALUES(20552, 25577, 'twenty-five thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(20553, 93125, 'ninety-three thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(20554, 44459, 'forty-four thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(20555, 81909, 'eighty-one thousand nine hundred nine');\nINSERT INTO t3 VALUES(20556, 44403, 'forty-four thousand four hundred three');\nINSERT INTO t3 VALUES(20557, 16111, 'sixteen thousand one hundred eleven');\nINSERT INTO t3 VALUES(20558, 66724, 'sixty-six thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(20559, 29464, 'twenty-nine thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(20560, 82143, 'eighty-two thousand one hundred forty-three');\nINSERT INTO t3 VALUES(20561, 32352, 'thirty-two thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(20562, 26542, 'twenty-six thousand five hundred forty-two');\nINSERT INTO t3 VALUES(20563, 19247, 'nineteen thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(20564, 85640, 'eighty-five thousand six hundred forty');\nINSERT INTO t3 VALUES(20565, 43306, 'forty-three thousand three hundred six');\nINSERT INTO t3 VALUES(20566, 3101, 'three thousand one hundred one');\nINSERT INTO t3 VALUES(20567, 93085, 'ninety-three thousand eighty-five');\nINSERT INTO t3 VALUES(20568, 53939, 'fifty-three thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(20569, 90044, 'ninety thousand forty-four');\nINSERT INTO t3 VALUES(20570, 89458, 'eighty-nine thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(20571, 81200, 'eighty-one thousand two hundred');\nINSERT INTO t3 VALUES(20572, 83993, 'eighty-three thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(20573, 21213, 'twenty-one thousand two hundred thirteen');\nINSERT INTO t3 VALUES(20574, 92381, 'ninety-two thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(20575, 27559, 'twenty-seven thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(20576, 25835, 'twenty-five thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(20577, 90657, 'ninety thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(20578, 55662, 'fifty-five thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(20579, 77858, 'seventy-seven thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(20580, 98751, 'ninety-eight thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(20581, 34780, 'thirty-four thousand seven hundred eighty');\nINSERT INTO t3 VALUES(20582, 12787, 'twelve thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(20583, 11822, 'eleven thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(20584, 48995, 'forty-eight thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(20585, 47788, 'forty-seven thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(20586, 93536, 'ninety-three thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(20587, 12965, 'twelve thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(20588, 26793, 'twenty-six thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(20589, 52086, 'fifty-two thousand eighty-six');\nINSERT INTO t3 VALUES(20590, 68691, 'sixty-eight thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(20591, 38386, 'thirty-eight thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(20592, 45715, 'forty-five thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(20593, 60670, 'sixty thousand six hundred seventy');\nINSERT INTO t3 VALUES(20594, 42106, 'forty-two thousand one hundred six');\nINSERT INTO t3 VALUES(20595, 67586, 'sixty-seven thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(20596, 78811, 'seventy-eight thousand eight hundred eleven');\nINSERT INTO t3 VALUES(20597, 4821, 'four thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(20598, 82827, 'eighty-two thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(20599, 30627, 'thirty thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(20600, 68266, 'sixty-eight thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(20601, 10003, 'ten thousand three');\nINSERT INTO t3 VALUES(20602, 34100, 'thirty-four thousand one hundred');\nINSERT INTO t3 VALUES(20603, 51631, 'fifty-one thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(20604, 33292, 'thirty-three thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(20605, 20293, 'twenty thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(20606, 65053, 'sixty-five thousand fifty-three');\nINSERT INTO t3 VALUES(20607, 52574, 'fifty-two thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(20608, 22853, 'twenty-two thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(20609, 85257, 'eighty-five thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(20610, 9757, 'nine thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(20611, 19062, 'nineteen thousand sixty-two');\nINSERT INTO t3 VALUES(20612, 76393, 'seventy-six thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(20613, 1638, 'one thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(20614, 73224, 'seventy-three thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(20615, 11868, 'eleven thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(20616, 37770, 'thirty-seven thousand seven hundred seventy');\nINSERT INTO t3 VALUES(20617, 43848, 'forty-three thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(20618, 46578, 'forty-six thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(20619, 55498, 'fifty-five thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(20620, 67263, 'sixty-seven thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(20621, 39353, 'thirty-nine thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(20622, 68732, 'sixty-eight thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(20623, 95702, 'ninety-five thousand seven hundred two');\nINSERT INTO t3 VALUES(20624, 10960, 'ten thousand nine hundred sixty');\nINSERT INTO t3 VALUES(20625, 54874, 'fifty-four thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(20626, 44253, 'forty-four thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(20627, 60069, 'sixty thousand sixty-nine');\nINSERT INTO t3 VALUES(20628, 55331, 'fifty-five thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(20629, 59255, 'fifty-nine thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(20630, 77786, 'seventy-seven thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(20631, 18752, 'eighteen thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(20632, 71980, 'seventy-one thousand nine hundred eighty');\nINSERT INTO t3 VALUES(20633, 18353, 'eighteen thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(20634, 86345, 'eighty-six thousand three hundred forty-five');\nINSERT INTO t3 VALUES(20635, 6872, 'six thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(20636, 96741, 'ninety-six thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(20637, 18832, 'eighteen thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(20638, 60925, 'sixty thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(20639, 14442, 'fourteen thousand four hundred forty-two');\nINSERT INTO t3 VALUES(20640, 40773, 'forty thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(20641, 32332, 'thirty-two thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(20642, 14262, 'fourteen thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(20643, 23154, 'twenty-three thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(20644, 77453, 'seventy-seven thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(20645, 50006, 'fifty thousand six');\nINSERT INTO t3 VALUES(20646, 48892, 'forty-eight thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(20647, 27647, 'twenty-seven thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(20648, 97154, 'ninety-seven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(20649, 86498, 'eighty-six thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(20650, 45331, 'forty-five thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(20651, 77855, 'seventy-seven thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(20652, 25185, 'twenty-five thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(20653, 87726, 'eighty-seven thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(20654, 95122, 'ninety-five thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(20655, 31884, 'thirty-one thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(20656, 50322, 'fifty thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(20657, 50565, 'fifty thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(20658, 72873, 'seventy-two thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(20659, 97283, 'ninety-seven thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(20660, 54358, 'fifty-four thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(20661, 13863, 'thirteen thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(20662, 23776, 'twenty-three thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(20663, 78957, 'seventy-eight thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(20664, 84058, 'eighty-four thousand fifty-eight');\nINSERT INTO t3 VALUES(20665, 87005, 'eighty-seven thousand five');\nINSERT INTO t3 VALUES(20666, 431, 'four hundred thirty-one');\nINSERT INTO t3 VALUES(20667, 17823, 'seventeen thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(20668, 66985, 'sixty-six thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(20669, 49520, 'forty-nine thousand five hundred twenty');\nINSERT INTO t3 VALUES(20670, 43160, 'forty-three thousand one hundred sixty');\nINSERT INTO t3 VALUES(20671, 4300, 'four thousand three hundred');\nINSERT INTO t3 VALUES(20672, 69912, 'sixty-nine thousand nine hundred twelve');\nINSERT INTO t3 VALUES(20673, 37963, 'thirty-seven thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(20674, 92299, 'ninety-two thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(20675, 89267, 'eighty-nine thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(20676, 45422, 'forty-five thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(20677, 65500, 'sixty-five thousand five hundred');\nINSERT INTO t3 VALUES(20678, 29400, 'twenty-nine thousand four hundred');\nINSERT INTO t3 VALUES(20679, 8494, 'eight thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(20680, 89396, 'eighty-nine thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(20681, 11908, 'eleven thousand nine hundred eight');\nINSERT INTO t3 VALUES(20682, 55665, 'fifty-five thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(20683, 7747, 'seven thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(20684, 74265, 'seventy-four thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(20685, 1858, 'one thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(20686, 50175, 'fifty thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(20687, 24678, 'twenty-four thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(20688, 69402, 'sixty-nine thousand four hundred two');\nINSERT INTO t3 VALUES(20689, 83445, 'eighty-three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(20690, 67624, 'sixty-seven thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(20691, 7340, 'seven thousand three hundred forty');\nINSERT INTO t3 VALUES(20692, 31104, 'thirty-one thousand one hundred four');\nINSERT INTO t3 VALUES(20693, 56268, 'fifty-six thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(20694, 43581, 'forty-three thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(20695, 73953, 'seventy-three thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(20696, 64906, 'sixty-four thousand nine hundred six');\nINSERT INTO t3 VALUES(20697, 80239, 'eighty thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(20698, 21376, 'twenty-one thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(20699, 72485, 'seventy-two thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(20700, 32057, 'thirty-two thousand fifty-seven');\nINSERT INTO t3 VALUES(20701, 10269, 'ten thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(20702, 29113, 'twenty-nine thousand one hundred thirteen');\nINSERT INTO t3 VALUES(20703, 91615, 'ninety-one thousand six hundred fifteen');\nINSERT INTO t3 VALUES(20704, 10517, 'ten thousand five hundred seventeen');\nINSERT INTO t3 VALUES(20705, 41237, 'forty-one thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(20706, 22845, 'twenty-two thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(20707, 5240, 'five thousand two hundred forty');\nINSERT INTO t3 VALUES(20708, 20548, 'twenty thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(20709, 71854, 'seventy-one thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(20710, 82289, 'eighty-two thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(20711, 10179, 'ten thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(20712, 78783, 'seventy-eight thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(20713, 77833, 'seventy-seven thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(20714, 57407, 'fifty-seven thousand four hundred seven');\nINSERT INTO t3 VALUES(20715, 42436, 'forty-two thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(20716, 23594, 'twenty-three thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(20717, 75767, 'seventy-five thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(20718, 4036, 'four thousand thirty-six');\nINSERT INTO t3 VALUES(20719, 3028, 'three thousand twenty-eight');\nINSERT INTO t3 VALUES(20720, 58126, 'fifty-eight thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(20721, 26808, 'twenty-six thousand eight hundred eight');\nINSERT INTO t3 VALUES(20722, 34599, 'thirty-four thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(20723, 72030, 'seventy-two thousand thirty');\nINSERT INTO t3 VALUES(20724, 80484, 'eighty thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(20725, 50928, 'fifty thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(20726, 62459, 'sixty-two thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(20727, 42085, 'forty-two thousand eighty-five');\nINSERT INTO t3 VALUES(20728, 94841, 'ninety-four thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(20729, 13342, 'thirteen thousand three hundred forty-two');\nINSERT INTO t3 VALUES(20730, 18736, 'eighteen thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(20731, 28673, 'twenty-eight thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(20732, 12408, 'twelve thousand four hundred eight');\nINSERT INTO t3 VALUES(20733, 68696, 'sixty-eight thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(20734, 49738, 'forty-nine thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(20735, 18335, 'eighteen thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(20736, 33631, 'thirty-three thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(20737, 81244, 'eighty-one thousand two hundred forty-four');\nINSERT INTO t3 VALUES(20738, 65037, 'sixty-five thousand thirty-seven');\nINSERT INTO t3 VALUES(20739, 40534, 'forty thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(20740, 60564, 'sixty thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(20741, 91139, 'ninety-one thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(20742, 95676, 'ninety-five thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(20743, 69153, 'sixty-nine thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(20744, 47813, 'forty-seven thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(20745, 9933, 'nine thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(20746, 60633, 'sixty thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(20747, 46093, 'forty-six thousand ninety-three');\nINSERT INTO t3 VALUES(20748, 33493, 'thirty-three thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(20749, 29406, 'twenty-nine thousand four hundred six');\nINSERT INTO t3 VALUES(20750, 14327, 'fourteen thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(20751, 18242, 'eighteen thousand two hundred forty-two');\nINSERT INTO t3 VALUES(20752, 56308, 'fifty-six thousand three hundred eight');\nINSERT INTO t3 VALUES(20753, 17229, 'seventeen thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(20754, 91534, 'ninety-one thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(20755, 49420, 'forty-nine thousand four hundred twenty');\nINSERT INTO t3 VALUES(20756, 67885, 'sixty-seven thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(20757, 14332, 'fourteen thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(20758, 59544, 'fifty-nine thousand five hundred forty-four');\nINSERT INTO t3 VALUES(20759, 92431, 'ninety-two thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(20760, 69142, 'sixty-nine thousand one hundred forty-two');\nINSERT INTO t3 VALUES(20761, 97357, 'ninety-seven thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(20762, 25729, 'twenty-five thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(20763, 38656, 'thirty-eight thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(20764, 87577, 'eighty-seven thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(20765, 55181, 'fifty-five thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(20766, 9439, 'nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(20767, 45984, 'forty-five thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(20768, 95565, 'ninety-five thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(20769, 15160, 'fifteen thousand one hundred sixty');\nINSERT INTO t3 VALUES(20770, 20833, 'twenty thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(20771, 74562, 'seventy-four thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(20772, 18534, 'eighteen thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(20773, 71951, 'seventy-one thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(20774, 12861, 'twelve thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(20775, 56609, 'fifty-six thousand six hundred nine');\nINSERT INTO t3 VALUES(20776, 65268, 'sixty-five thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(20777, 56988, 'fifty-six thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(20778, 57434, 'fifty-seven thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(20779, 86747, 'eighty-six thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(20780, 58210, 'fifty-eight thousand two hundred ten');\nINSERT INTO t3 VALUES(20781, 38729, 'thirty-eight thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(20782, 74131, 'seventy-four thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(20783, 45052, 'forty-five thousand fifty-two');\nINSERT INTO t3 VALUES(20784, 64970, 'sixty-four thousand nine hundred seventy');\nINSERT INTO t3 VALUES(20785, 4662, 'four thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(20786, 66009, 'sixty-six thousand nine');\nINSERT INTO t3 VALUES(20787, 36744, 'thirty-six thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(20788, 97665, 'ninety-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(20789, 5712, 'five thousand seven hundred twelve');\nINSERT INTO t3 VALUES(20790, 60735, 'sixty thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(20791, 98961, 'ninety-eight thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(20792, 64648, 'sixty-four thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(20793, 76449, 'seventy-six thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(20794, 57372, 'fifty-seven thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(20795, 17349, 'seventeen thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(20796, 57011, 'fifty-seven thousand eleven');\nINSERT INTO t3 VALUES(20797, 51736, 'fifty-one thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(20798, 97584, 'ninety-seven thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(20799, 22595, 'twenty-two thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(20800, 71976, 'seventy-one thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(20801, 51515, 'fifty-one thousand five hundred fifteen');\nINSERT INTO t3 VALUES(20802, 76089, 'seventy-six thousand eighty-nine');\nINSERT INTO t3 VALUES(20803, 77060, 'seventy-seven thousand sixty');\nINSERT INTO t3 VALUES(20804, 79446, 'seventy-nine thousand four hundred forty-six');\nINSERT INTO t3 VALUES(20805, 33286, 'thirty-three thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(20806, 38066, 'thirty-eight thousand sixty-six');\nINSERT INTO t3 VALUES(20807, 33525, 'thirty-three thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(20808, 91750, 'ninety-one thousand seven hundred fifty');\nINSERT INTO t3 VALUES(20809, 71977, 'seventy-one thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(20810, 87678, 'eighty-seven thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(20811, 98988, 'ninety-eight thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(20812, 25993, 'twenty-five thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(20813, 67531, 'sixty-seven thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(20814, 52159, 'fifty-two thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(20815, 94970, 'ninety-four thousand nine hundred seventy');\nINSERT INTO t3 VALUES(20816, 90655, 'ninety thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(20817, 93054, 'ninety-three thousand fifty-four');\nINSERT INTO t3 VALUES(20818, 47093, 'forty-seven thousand ninety-three');\nINSERT INTO t3 VALUES(20819, 30159, 'thirty thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(20820, 9763, 'nine thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(20821, 54900, 'fifty-four thousand nine hundred');\nINSERT INTO t3 VALUES(20822, 83891, 'eighty-three thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(20823, 5898, 'five thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(20824, 64287, 'sixty-four thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(20825, 78880, 'seventy-eight thousand eight hundred eighty');\nINSERT INTO t3 VALUES(20826, 27520, 'twenty-seven thousand five hundred twenty');\nINSERT INTO t3 VALUES(20827, 72341, 'seventy-two thousand three hundred forty-one');\nINSERT INTO t3 VALUES(20828, 39326, 'thirty-nine thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(20829, 72734, 'seventy-two thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(20830, 75519, 'seventy-five thousand five hundred nineteen');\nINSERT INTO t3 VALUES(20831, 59511, 'fifty-nine thousand five hundred eleven');\nINSERT INTO t3 VALUES(20832, 38423, 'thirty-eight thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(20833, 31019, 'thirty-one thousand nineteen');\nINSERT INTO t3 VALUES(20834, 5794, 'five thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(20835, 95783, 'ninety-five thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(20836, 68949, 'sixty-eight thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(20837, 5955, 'five thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(20838, 46310, 'forty-six thousand three hundred ten');\nINSERT INTO t3 VALUES(20839, 73, 'seventy-three');\nINSERT INTO t3 VALUES(20840, 31497, 'thirty-one thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(20841, 28050, 'twenty-eight thousand fifty');\nINSERT INTO t3 VALUES(20842, 16080, 'sixteen thousand eighty');\nINSERT INTO t3 VALUES(20843, 76546, 'seventy-six thousand five hundred forty-six');\nINSERT INTO t3 VALUES(20844, 35140, 'thirty-five thousand one hundred forty');\nINSERT INTO t3 VALUES(20845, 39018, 'thirty-nine thousand eighteen');\nINSERT INTO t3 VALUES(20846, 35038, 'thirty-five thousand thirty-eight');\nINSERT INTO t3 VALUES(20847, 713, 'seven hundred thirteen');\nINSERT INTO t3 VALUES(20848, 49986, 'forty-nine thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(20849, 12599, 'twelve thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(20850, 44985, 'forty-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(20851, 63869, 'sixty-three thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(20852, 55184, 'fifty-five thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(20853, 18393, 'eighteen thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(20854, 79607, 'seventy-nine thousand six hundred seven');\nINSERT INTO t3 VALUES(20855, 70721, 'seventy thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(20856, 23704, 'twenty-three thousand seven hundred four');\nINSERT INTO t3 VALUES(20857, 94840, 'ninety-four thousand eight hundred forty');\nINSERT INTO t3 VALUES(20858, 18866, 'eighteen thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(20859, 12650, 'twelve thousand six hundred fifty');\nINSERT INTO t3 VALUES(20860, 54339, 'fifty-four thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(20861, 90994, 'ninety thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(20862, 11553, 'eleven thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(20863, 21094, 'twenty-one thousand ninety-four');\nINSERT INTO t3 VALUES(20864, 17314, 'seventeen thousand three hundred fourteen');\nINSERT INTO t3 VALUES(20865, 53828, 'fifty-three thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(20866, 69873, 'sixty-nine thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(20867, 41647, 'forty-one thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(20868, 87110, 'eighty-seven thousand one hundred ten');\nINSERT INTO t3 VALUES(20869, 65001, 'sixty-five thousand one');\nINSERT INTO t3 VALUES(20870, 38710, 'thirty-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(20871, 11303, 'eleven thousand three hundred three');\nINSERT INTO t3 VALUES(20872, 66116, 'sixty-six thousand one hundred sixteen');\nINSERT INTO t3 VALUES(20873, 31910, 'thirty-one thousand nine hundred ten');\nINSERT INTO t3 VALUES(20874, 70287, 'seventy thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(20875, 67464, 'sixty-seven thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(20876, 16312, 'sixteen thousand three hundred twelve');\nINSERT INTO t3 VALUES(20877, 45563, 'forty-five thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(20878, 50869, 'fifty thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(20879, 12900, 'twelve thousand nine hundred');\nINSERT INTO t3 VALUES(20880, 73595, 'seventy-three thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(20881, 3009, 'three thousand nine');\nINSERT INTO t3 VALUES(20882, 83706, 'eighty-three thousand seven hundred six');\nINSERT INTO t3 VALUES(20883, 72886, 'seventy-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(20884, 97365, 'ninety-seven thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(20885, 29661, 'twenty-nine thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(20886, 64571, 'sixty-four thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(20887, 34161, 'thirty-four thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(20888, 7808, 'seven thousand eight hundred eight');\nINSERT INTO t3 VALUES(20889, 58029, 'fifty-eight thousand twenty-nine');\nINSERT INTO t3 VALUES(20890, 58286, 'fifty-eight thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(20891, 45915, 'forty-five thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(20892, 86274, 'eighty-six thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(20893, 19091, 'nineteen thousand ninety-one');\nINSERT INTO t3 VALUES(20894, 92017, 'ninety-two thousand seventeen');\nINSERT INTO t3 VALUES(20895, 10011, 'ten thousand eleven');\nINSERT INTO t3 VALUES(20896, 99703, 'ninety-nine thousand seven hundred three');\nINSERT INTO t3 VALUES(20897, 89702, 'eighty-nine thousand seven hundred two');\nINSERT INTO t3 VALUES(20898, 56605, 'fifty-six thousand six hundred five');\nINSERT INTO t3 VALUES(20899, 89958, 'eighty-nine thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(20900, 84558, 'eighty-four thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(20901, 46970, 'forty-six thousand nine hundred seventy');\nINSERT INTO t3 VALUES(20902, 90213, 'ninety thousand two hundred thirteen');\nINSERT INTO t3 VALUES(20903, 86754, 'eighty-six thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(20904, 94557, 'ninety-four thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(20905, 90431, 'ninety thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(20906, 99255, 'ninety-nine thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(20907, 3510, 'three thousand five hundred ten');\nINSERT INTO t3 VALUES(20908, 92988, 'ninety-two thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(20909, 34617, 'thirty-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(20910, 73710, 'seventy-three thousand seven hundred ten');\nINSERT INTO t3 VALUES(20911, 54479, 'fifty-four thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(20912, 80877, 'eighty thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(20913, 34343, 'thirty-four thousand three hundred forty-three');\nINSERT INTO t3 VALUES(20914, 34552, 'thirty-four thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(20915, 49156, 'forty-nine thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(20916, 59708, 'fifty-nine thousand seven hundred eight');\nINSERT INTO t3 VALUES(20917, 50559, 'fifty thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(20918, 45551, 'forty-five thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(20919, 89426, 'eighty-nine thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(20920, 41571, 'forty-one thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(20921, 28131, 'twenty-eight thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(20922, 81271, 'eighty-one thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(20923, 7342, 'seven thousand three hundred forty-two');\nINSERT INTO t3 VALUES(20924, 84478, 'eighty-four thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(20925, 13500, 'thirteen thousand five hundred');\nINSERT INTO t3 VALUES(20926, 65245, 'sixty-five thousand two hundred forty-five');\nINSERT INTO t3 VALUES(20927, 46142, 'forty-six thousand one hundred forty-two');\nINSERT INTO t3 VALUES(20928, 6124, 'six thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(20929, 81955, 'eighty-one thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(20930, 51579, 'fifty-one thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(20931, 34983, 'thirty-four thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(20932, 31440, 'thirty-one thousand four hundred forty');\nINSERT INTO t3 VALUES(20933, 68096, 'sixty-eight thousand ninety-six');\nINSERT INTO t3 VALUES(20934, 82045, 'eighty-two thousand forty-five');\nINSERT INTO t3 VALUES(20935, 43707, 'forty-three thousand seven hundred seven');\nINSERT INTO t3 VALUES(20936, 69697, 'sixty-nine thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(20937, 93179, 'ninety-three thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(20938, 77302, 'seventy-seven thousand three hundred two');\nINSERT INTO t3 VALUES(20939, 9321, 'nine thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(20940, 37961, 'thirty-seven thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(20941, 40125, 'forty thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(20942, 94848, 'ninety-four thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(20943, 11962, 'eleven thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(20944, 62133, 'sixty-two thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(20945, 35225, 'thirty-five thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(20946, 62811, 'sixty-two thousand eight hundred eleven');\nINSERT INTO t3 VALUES(20947, 25119, 'twenty-five thousand one hundred nineteen');\nINSERT INTO t3 VALUES(20948, 6006, 'six thousand six');\nINSERT INTO t3 VALUES(20949, 32466, 'thirty-two thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(20950, 45101, 'forty-five thousand one hundred one');\nINSERT INTO t3 VALUES(20951, 35736, 'thirty-five thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(20952, 66224, 'sixty-six thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(20953, 46437, 'forty-six thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(20954, 47185, 'forty-seven thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(20955, 57869, 'fifty-seven thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(20956, 41204, 'forty-one thousand two hundred four');\nINSERT INTO t3 VALUES(20957, 64622, 'sixty-four thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(20958, 53458, 'fifty-three thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(20959, 99293, 'ninety-nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(20960, 28997, 'twenty-eight thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(20961, 12820, 'twelve thousand eight hundred twenty');\nINSERT INTO t3 VALUES(20962, 21644, 'twenty-one thousand six hundred forty-four');\nINSERT INTO t3 VALUES(20963, 10764, 'ten thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(20964, 90596, 'ninety thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(20965, 68661, 'sixty-eight thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(20966, 41532, 'forty-one thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(20967, 48499, 'forty-eight thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(20968, 36253, 'thirty-six thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(20969, 45061, 'forty-five thousand sixty-one');\nINSERT INTO t3 VALUES(20970, 84611, 'eighty-four thousand six hundred eleven');\nINSERT INTO t3 VALUES(20971, 77452, 'seventy-seven thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(20972, 57511, 'fifty-seven thousand five hundred eleven');\nINSERT INTO t3 VALUES(20973, 30688, 'thirty thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(20974, 78086, 'seventy-eight thousand eighty-six');\nINSERT INTO t3 VALUES(20975, 70241, 'seventy thousand two hundred forty-one');\nINSERT INTO t3 VALUES(20976, 52250, 'fifty-two thousand two hundred fifty');\nINSERT INTO t3 VALUES(20977, 94213, 'ninety-four thousand two hundred thirteen');\nINSERT INTO t3 VALUES(20978, 45993, 'forty-five thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(20979, 9415, 'nine thousand four hundred fifteen');\nINSERT INTO t3 VALUES(20980, 22496, 'twenty-two thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(20981, 94760, 'ninety-four thousand seven hundred sixty');\nINSERT INTO t3 VALUES(20982, 32736, 'thirty-two thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(20983, 20919, 'twenty thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(20984, 63891, 'sixty-three thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(20985, 5606, 'five thousand six hundred six');\nINSERT INTO t3 VALUES(20986, 86559, 'eighty-six thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(20987, 77443, 'seventy-seven thousand four hundred forty-three');\nINSERT INTO t3 VALUES(20988, 82235, 'eighty-two thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(20989, 92187, 'ninety-two thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(20990, 98638, 'ninety-eight thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(20991, 12531, 'twelve thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(20992, 39949, 'thirty-nine thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(20993, 64361, 'sixty-four thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(20994, 31996, 'thirty-one thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(20995, 12644, 'twelve thousand six hundred forty-four');\nINSERT INTO t3 VALUES(20996, 13802, 'thirteen thousand eight hundred two');\nINSERT INTO t3 VALUES(20997, 81663, 'eighty-one thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(20998, 27831, 'twenty-seven thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(20999, 10136, 'ten thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(21000, 76524, 'seventy-six thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(21001, 37425, 'thirty-seven thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(21002, 84150, 'eighty-four thousand one hundred fifty');\nINSERT INTO t3 VALUES(21003, 85297, 'eighty-five thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(21004, 98034, 'ninety-eight thousand thirty-four');\nINSERT INTO t3 VALUES(21005, 11826, 'eleven thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(21006, 48202, 'forty-eight thousand two hundred two');\nINSERT INTO t3 VALUES(21007, 73272, 'seventy-three thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(21008, 16035, 'sixteen thousand thirty-five');\nINSERT INTO t3 VALUES(21009, 4649, 'four thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(21010, 66088, 'sixty-six thousand eighty-eight');\nINSERT INTO t3 VALUES(21011, 99506, 'ninety-nine thousand five hundred six');\nINSERT INTO t3 VALUES(21012, 61038, 'sixty-one thousand thirty-eight');\nINSERT INTO t3 VALUES(21013, 88196, 'eighty-eight thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(21014, 96517, 'ninety-six thousand five hundred seventeen');\nINSERT INTO t3 VALUES(21015, 26177, 'twenty-six thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(21016, 602, 'six hundred two');\nINSERT INTO t3 VALUES(21017, 21717, 'twenty-one thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(21018, 21469, 'twenty-one thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(21019, 64240, 'sixty-four thousand two hundred forty');\nINSERT INTO t3 VALUES(21020, 65443, 'sixty-five thousand four hundred forty-three');\nINSERT INTO t3 VALUES(21021, 87430, 'eighty-seven thousand four hundred thirty');\nINSERT INTO t3 VALUES(21022, 75716, 'seventy-five thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(21023, 83743, 'eighty-three thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(21024, 70976, 'seventy thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(21025, 54193, 'fifty-four thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(21026, 2466, 'two thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(21027, 23794, 'twenty-three thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(21028, 77808, 'seventy-seven thousand eight hundred eight');\nINSERT INTO t3 VALUES(21029, 82905, 'eighty-two thousand nine hundred five');\nINSERT INTO t3 VALUES(21030, 96527, 'ninety-six thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(21031, 93562, 'ninety-three thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(21032, 83259, 'eighty-three thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(21033, 31672, 'thirty-one thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(21034, 12597, 'twelve thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(21035, 27922, 'twenty-seven thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(21036, 60856, 'sixty thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(21037, 53038, 'fifty-three thousand thirty-eight');\nINSERT INTO t3 VALUES(21038, 39941, 'thirty-nine thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(21039, 91535, 'ninety-one thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(21040, 43868, 'forty-three thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(21041, 22105, 'twenty-two thousand one hundred five');\nINSERT INTO t3 VALUES(21042, 21722, 'twenty-one thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(21043, 5833, 'five thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(21044, 18864, 'eighteen thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(21045, 6383, 'six thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(21046, 53190, 'fifty-three thousand one hundred ninety');\nINSERT INTO t3 VALUES(21047, 15280, 'fifteen thousand two hundred eighty');\nINSERT INTO t3 VALUES(21048, 35362, 'thirty-five thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(21049, 30900, 'thirty thousand nine hundred');\nINSERT INTO t3 VALUES(21050, 18104, 'eighteen thousand one hundred four');\nINSERT INTO t3 VALUES(21051, 62309, 'sixty-two thousand three hundred nine');\nINSERT INTO t3 VALUES(21052, 51843, 'fifty-one thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(21053, 10002, 'ten thousand two');\nINSERT INTO t3 VALUES(21054, 18605, 'eighteen thousand six hundred five');\nINSERT INTO t3 VALUES(21055, 46024, 'forty-six thousand twenty-four');\nINSERT INTO t3 VALUES(21056, 77012, 'seventy-seven thousand twelve');\nINSERT INTO t3 VALUES(21057, 57620, 'fifty-seven thousand six hundred twenty');\nINSERT INTO t3 VALUES(21058, 6770, 'six thousand seven hundred seventy');\nINSERT INTO t3 VALUES(21059, 40298, 'forty thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(21060, 48970, 'forty-eight thousand nine hundred seventy');\nINSERT INTO t3 VALUES(21061, 10779, 'ten thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(21062, 50657, 'fifty thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(21063, 13479, 'thirteen thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(21064, 29909, 'twenty-nine thousand nine hundred nine');\nINSERT INTO t3 VALUES(21065, 75081, 'seventy-five thousand eighty-one');\nINSERT INTO t3 VALUES(21066, 16799, 'sixteen thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(21067, 13987, 'thirteen thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(21068, 78631, 'seventy-eight thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(21069, 32003, 'thirty-two thousand three');\nINSERT INTO t3 VALUES(21070, 71218, 'seventy-one thousand two hundred eighteen');\nINSERT INTO t3 VALUES(21071, 37771, 'thirty-seven thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(21072, 59579, 'fifty-nine thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(21073, 26602, 'twenty-six thousand six hundred two');\nINSERT INTO t3 VALUES(21074, 5604, 'five thousand six hundred four');\nINSERT INTO t3 VALUES(21075, 84568, 'eighty-four thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(21076, 59106, 'fifty-nine thousand one hundred six');\nINSERT INTO t3 VALUES(21077, 45690, 'forty-five thousand six hundred ninety');\nINSERT INTO t3 VALUES(21078, 93610, 'ninety-three thousand six hundred ten');\nINSERT INTO t3 VALUES(21079, 58583, 'fifty-eight thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(21080, 52384, 'fifty-two thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(21081, 65824, 'sixty-five thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(21082, 6716, 'six thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(21083, 84130, 'eighty-four thousand one hundred thirty');\nINSERT INTO t3 VALUES(21084, 62103, 'sixty-two thousand one hundred three');\nINSERT INTO t3 VALUES(21085, 21557, 'twenty-one thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(21086, 4655, 'four thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(21087, 76820, 'seventy-six thousand eight hundred twenty');\nINSERT INTO t3 VALUES(21088, 53337, 'fifty-three thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(21089, 6606, 'six thousand six hundred six');\nINSERT INTO t3 VALUES(21090, 1724, 'one thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(21091, 50844, 'fifty thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(21092, 60610, 'sixty thousand six hundred ten');\nINSERT INTO t3 VALUES(21093, 37681, 'thirty-seven thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(21094, 54741, 'fifty-four thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(21095, 36154, 'thirty-six thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(21096, 54755, 'fifty-four thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(21097, 10418, 'ten thousand four hundred eighteen');\nINSERT INTO t3 VALUES(21098, 41761, 'forty-one thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(21099, 18534, 'eighteen thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(21100, 98917, 'ninety-eight thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(21101, 32256, 'thirty-two thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(21102, 5103, 'five thousand one hundred three');\nINSERT INTO t3 VALUES(21103, 23475, 'twenty-three thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(21104, 7396, 'seven thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(21105, 39952, 'thirty-nine thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(21106, 46510, 'forty-six thousand five hundred ten');\nINSERT INTO t3 VALUES(21107, 90204, 'ninety thousand two hundred four');\nINSERT INTO t3 VALUES(21108, 25762, 'twenty-five thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(21109, 52464, 'fifty-two thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(21110, 49024, 'forty-nine thousand twenty-four');\nINSERT INTO t3 VALUES(21111, 11161, 'eleven thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(21112, 21274, 'twenty-one thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(21113, 78610, 'seventy-eight thousand six hundred ten');\nINSERT INTO t3 VALUES(21114, 35671, 'thirty-five thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(21115, 24578, 'twenty-four thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(21116, 79384, 'seventy-nine thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(21117, 1248, 'one thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(21118, 65359, 'sixty-five thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(21119, 87627, 'eighty-seven thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(21120, 49099, 'forty-nine thousand ninety-nine');\nINSERT INTO t3 VALUES(21121, 77170, 'seventy-seven thousand one hundred seventy');\nINSERT INTO t3 VALUES(21122, 98679, 'ninety-eight thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(21123, 18101, 'eighteen thousand one hundred one');\nINSERT INTO t3 VALUES(21124, 22036, 'twenty-two thousand thirty-six');\nINSERT INTO t3 VALUES(21125, 54864, 'fifty-four thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(21126, 2843, 'two thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(21127, 51339, 'fifty-one thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(21128, 72226, 'seventy-two thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(21129, 27815, 'twenty-seven thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(21130, 58312, 'fifty-eight thousand three hundred twelve');\nINSERT INTO t3 VALUES(21131, 55616, 'fifty-five thousand six hundred sixteen');\nINSERT INTO t3 VALUES(21132, 76763, 'seventy-six thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(21133, 38193, 'thirty-eight thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(21134, 31399, 'thirty-one thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(21135, 94983, 'ninety-four thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(21136, 93605, 'ninety-three thousand six hundred five');\nINSERT INTO t3 VALUES(21137, 59464, 'fifty-nine thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(21138, 56463, 'fifty-six thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(21139, 50245, 'fifty thousand two hundred forty-five');\nINSERT INTO t3 VALUES(21140, 84319, 'eighty-four thousand three hundred nineteen');\nINSERT INTO t3 VALUES(21141, 8338, 'eight thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(21142, 74698, 'seventy-four thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(21143, 56701, 'fifty-six thousand seven hundred one');\nINSERT INTO t3 VALUES(21144, 14385, 'fourteen thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(21145, 56034, 'fifty-six thousand thirty-four');\nINSERT INTO t3 VALUES(21146, 70383, 'seventy thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(21147, 72584, 'seventy-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(21148, 55092, 'fifty-five thousand ninety-two');\nINSERT INTO t3 VALUES(21149, 79780, 'seventy-nine thousand seven hundred eighty');\nINSERT INTO t3 VALUES(21150, 46694, 'forty-six thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(21151, 57961, 'fifty-seven thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(21152, 58173, 'fifty-eight thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(21153, 51989, 'fifty-one thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(21154, 91963, 'ninety-one thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(21155, 47380, 'forty-seven thousand three hundred eighty');\nINSERT INTO t3 VALUES(21156, 44128, 'forty-four thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(21157, 72012, 'seventy-two thousand twelve');\nINSERT INTO t3 VALUES(21158, 53635, 'fifty-three thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(21159, 34624, 'thirty-four thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(21160, 77428, 'seventy-seven thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(21161, 47049, 'forty-seven thousand forty-nine');\nINSERT INTO t3 VALUES(21162, 45050, 'forty-five thousand fifty');\nINSERT INTO t3 VALUES(21163, 74721, 'seventy-four thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(21164, 22718, 'twenty-two thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(21165, 60983, 'sixty thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(21166, 69130, 'sixty-nine thousand one hundred thirty');\nINSERT INTO t3 VALUES(21167, 57466, 'fifty-seven thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(21168, 9803, 'nine thousand eight hundred three');\nINSERT INTO t3 VALUES(21169, 79807, 'seventy-nine thousand eight hundred seven');\nINSERT INTO t3 VALUES(21170, 67194, 'sixty-seven thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(21171, 37746, 'thirty-seven thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(21172, 80860, 'eighty thousand eight hundred sixty');\nINSERT INTO t3 VALUES(21173, 9850, 'nine thousand eight hundred fifty');\nINSERT INTO t3 VALUES(21174, 45383, 'forty-five thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(21175, 65997, 'sixty-five thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(21176, 95738, 'ninety-five thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(21177, 58828, 'fifty-eight thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(21178, 81971, 'eighty-one thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(21179, 7641, 'seven thousand six hundred forty-one');\nINSERT INTO t3 VALUES(21180, 7723, 'seven thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(21181, 3820, 'three thousand eight hundred twenty');\nINSERT INTO t3 VALUES(21182, 73511, 'seventy-three thousand five hundred eleven');\nINSERT INTO t3 VALUES(21183, 60887, 'sixty thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(21184, 33349, 'thirty-three thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(21185, 41303, 'forty-one thousand three hundred three');\nINSERT INTO t3 VALUES(21186, 99307, 'ninety-nine thousand three hundred seven');\nINSERT INTO t3 VALUES(21187, 19969, 'nineteen thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(21188, 78923, 'seventy-eight thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(21189, 92739, 'ninety-two thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(21190, 64022, 'sixty-four thousand twenty-two');\nINSERT INTO t3 VALUES(21191, 13342, 'thirteen thousand three hundred forty-two');\nINSERT INTO t3 VALUES(21192, 66510, 'sixty-six thousand five hundred ten');\nINSERT INTO t3 VALUES(21193, 89912, 'eighty-nine thousand nine hundred twelve');\nINSERT INTO t3 VALUES(21194, 38205, 'thirty-eight thousand two hundred five');\nINSERT INTO t3 VALUES(21195, 11257, 'eleven thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(21196, 88842, 'eighty-eight thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(21197, 21514, 'twenty-one thousand five hundred fourteen');\nINSERT INTO t3 VALUES(21198, 81451, 'eighty-one thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(21199, 37321, 'thirty-seven thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(21200, 12376, 'twelve thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(21201, 94493, 'ninety-four thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(21202, 84579, 'eighty-four thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(21203, 64859, 'sixty-four thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(21204, 70935, 'seventy thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(21205, 64375, 'sixty-four thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(21206, 1923, 'one thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(21207, 11065, 'eleven thousand sixty-five');\nINSERT INTO t3 VALUES(21208, 69769, 'sixty-nine thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(21209, 79690, 'seventy-nine thousand six hundred ninety');\nINSERT INTO t3 VALUES(21210, 27326, 'twenty-seven thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(21211, 46426, 'forty-six thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(21212, 39032, 'thirty-nine thousand thirty-two');\nINSERT INTO t3 VALUES(21213, 16516, 'sixteen thousand five hundred sixteen');\nINSERT INTO t3 VALUES(21214, 56359, 'fifty-six thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(21215, 65516, 'sixty-five thousand five hundred sixteen');\nINSERT INTO t3 VALUES(21216, 96327, 'ninety-six thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(21217, 28013, 'twenty-eight thousand thirteen');\nINSERT INTO t3 VALUES(21218, 19666, 'nineteen thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(21219, 52926, 'fifty-two thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(21220, 18147, 'eighteen thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(21221, 5065, 'five thousand sixty-five');\nINSERT INTO t3 VALUES(21222, 24529, 'twenty-four thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(21223, 69597, 'sixty-nine thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(21224, 99325, 'ninety-nine thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(21225, 68459, 'sixty-eight thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(21226, 10431, 'ten thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(21227, 49123, 'forty-nine thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(21228, 65687, 'sixty-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(21229, 93170, 'ninety-three thousand one hundred seventy');\nINSERT INTO t3 VALUES(21230, 38223, 'thirty-eight thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(21231, 43111, 'forty-three thousand one hundred eleven');\nINSERT INTO t3 VALUES(21232, 77938, 'seventy-seven thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(21233, 72641, 'seventy-two thousand six hundred forty-one');\nINSERT INTO t3 VALUES(21234, 25133, 'twenty-five thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(21235, 16906, 'sixteen thousand nine hundred six');\nINSERT INTO t3 VALUES(21236, 6633, 'six thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(21237, 58631, 'fifty-eight thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(21238, 35253, 'thirty-five thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(21239, 67550, 'sixty-seven thousand five hundred fifty');\nINSERT INTO t3 VALUES(21240, 79461, 'seventy-nine thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(21241, 30295, 'thirty thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(21242, 43785, 'forty-three thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(21243, 89336, 'eighty-nine thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(21244, 73351, 'seventy-three thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(21245, 37262, 'thirty-seven thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(21246, 35129, 'thirty-five thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(21247, 10119, 'ten thousand one hundred nineteen');\nINSERT INTO t3 VALUES(21248, 56112, 'fifty-six thousand one hundred twelve');\nINSERT INTO t3 VALUES(21249, 28548, 'twenty-eight thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(21250, 13115, 'thirteen thousand one hundred fifteen');\nINSERT INTO t3 VALUES(21251, 80286, 'eighty thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(21252, 69147, 'sixty-nine thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(21253, 65728, 'sixty-five thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(21254, 3719, 'three thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(21255, 25014, 'twenty-five thousand fourteen');\nINSERT INTO t3 VALUES(21256, 14991, 'fourteen thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(21257, 70268, 'seventy thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(21258, 54924, 'fifty-four thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(21259, 31017, 'thirty-one thousand seventeen');\nINSERT INTO t3 VALUES(21260, 90810, 'ninety thousand eight hundred ten');\nINSERT INTO t3 VALUES(21261, 26717, 'twenty-six thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(21262, 22031, 'twenty-two thousand thirty-one');\nINSERT INTO t3 VALUES(21263, 61116, 'sixty-one thousand one hundred sixteen');\nINSERT INTO t3 VALUES(21264, 51453, 'fifty-one thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(21265, 11482, 'eleven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(21266, 56454, 'fifty-six thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(21267, 97193, 'ninety-seven thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(21268, 28472, 'twenty-eight thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(21269, 68957, 'sixty-eight thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(21270, 91060, 'ninety-one thousand sixty');\nINSERT INTO t3 VALUES(21271, 95292, 'ninety-five thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(21272, 8577, 'eight thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(21273, 38635, 'thirty-eight thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(21274, 17952, 'seventeen thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(21275, 49788, 'forty-nine thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(21276, 56854, 'fifty-six thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(21277, 16567, 'sixteen thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(21278, 54793, 'fifty-four thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(21279, 95460, 'ninety-five thousand four hundred sixty');\nINSERT INTO t3 VALUES(21280, 37602, 'thirty-seven thousand six hundred two');\nINSERT INTO t3 VALUES(21281, 38717, 'thirty-eight thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(21282, 23758, 'twenty-three thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(21283, 3027, 'three thousand twenty-seven');\nINSERT INTO t3 VALUES(21284, 699, 'six hundred ninety-nine');\nINSERT INTO t3 VALUES(21285, 50325, 'fifty thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(21286, 46260, 'forty-six thousand two hundred sixty');\nINSERT INTO t3 VALUES(21287, 24424, 'twenty-four thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(21288, 43256, 'forty-three thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(21289, 54408, 'fifty-four thousand four hundred eight');\nINSERT INTO t3 VALUES(21290, 83235, 'eighty-three thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(21291, 88866, 'eighty-eight thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(21292, 93809, 'ninety-three thousand eight hundred nine');\nINSERT INTO t3 VALUES(21293, 76333, 'seventy-six thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(21294, 19405, 'nineteen thousand four hundred five');\nINSERT INTO t3 VALUES(21295, 38694, 'thirty-eight thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(21296, 71078, 'seventy-one thousand seventy-eight');\nINSERT INTO t3 VALUES(21297, 43986, 'forty-three thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(21298, 14483, 'fourteen thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(21299, 67360, 'sixty-seven thousand three hundred sixty');\nINSERT INTO t3 VALUES(21300, 51192, 'fifty-one thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(21301, 76933, 'seventy-six thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(21302, 85569, 'eighty-five thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(21303, 68577, 'sixty-eight thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(21304, 2701, 'two thousand seven hundred one');\nINSERT INTO t3 VALUES(21305, 46845, 'forty-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(21306, 53627, 'fifty-three thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(21307, 36701, 'thirty-six thousand seven hundred one');\nINSERT INTO t3 VALUES(21308, 8267, 'eight thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(21309, 81965, 'eighty-one thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(21310, 76699, 'seventy-six thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(21311, 87802, 'eighty-seven thousand eight hundred two');\nINSERT INTO t3 VALUES(21312, 22902, 'twenty-two thousand nine hundred two');\nINSERT INTO t3 VALUES(21313, 57170, 'fifty-seven thousand one hundred seventy');\nINSERT INTO t3 VALUES(21314, 15532, 'fifteen thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(21315, 61255, 'sixty-one thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(21316, 45677, 'forty-five thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(21317, 49736, 'forty-nine thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(21318, 22784, 'twenty-two thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(21319, 67308, 'sixty-seven thousand three hundred eight');\nINSERT INTO t3 VALUES(21320, 77073, 'seventy-seven thousand seventy-three');\nINSERT INTO t3 VALUES(21321, 58, 'fifty-eight');\nINSERT INTO t3 VALUES(21322, 91089, 'ninety-one thousand eighty-nine');\nINSERT INTO t3 VALUES(21323, 31013, 'thirty-one thousand thirteen');\nINSERT INTO t3 VALUES(21324, 60989, 'sixty thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(21325, 45384, 'forty-five thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(21326, 91252, 'ninety-one thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(21327, 92086, 'ninety-two thousand eighty-six');\nINSERT INTO t3 VALUES(21328, 54231, 'fifty-four thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(21329, 56193, 'fifty-six thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(21330, 16542, 'sixteen thousand five hundred forty-two');\nINSERT INTO t3 VALUES(21331, 90770, 'ninety thousand seven hundred seventy');\nINSERT INTO t3 VALUES(21332, 21326, 'twenty-one thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(21333, 7154, 'seven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(21334, 64555, 'sixty-four thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(21335, 15486, 'fifteen thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(21336, 28218, 'twenty-eight thousand two hundred eighteen');\nINSERT INTO t3 VALUES(21337, 19153, 'nineteen thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(21338, 64241, 'sixty-four thousand two hundred forty-one');\nINSERT INTO t3 VALUES(21339, 284, 'two hundred eighty-four');\nINSERT INTO t3 VALUES(21340, 5998, 'five thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(21341, 40075, 'forty thousand seventy-five');\nINSERT INTO t3 VALUES(21342, 1898, 'one thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(21343, 18262, 'eighteen thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(21344, 47969, 'forty-seven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(21345, 72196, 'seventy-two thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(21346, 88168, 'eighty-eight thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(21347, 59900, 'fifty-nine thousand nine hundred');\nINSERT INTO t3 VALUES(21348, 68024, 'sixty-eight thousand twenty-four');\nINSERT INTO t3 VALUES(21349, 18366, 'eighteen thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(21350, 28768, 'twenty-eight thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(21351, 64026, 'sixty-four thousand twenty-six');\nINSERT INTO t3 VALUES(21352, 9538, 'nine thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(21353, 9580, 'nine thousand five hundred eighty');\nINSERT INTO t3 VALUES(21354, 14044, 'fourteen thousand forty-four');\nINSERT INTO t3 VALUES(21355, 66235, 'sixty-six thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(21356, 20381, 'twenty thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(21357, 52306, 'fifty-two thousand three hundred six');\nINSERT INTO t3 VALUES(21358, 44789, 'forty-four thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(21359, 90283, 'ninety thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(21360, 43261, 'forty-three thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(21361, 66986, 'sixty-six thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(21362, 75009, 'seventy-five thousand nine');\nINSERT INTO t3 VALUES(21363, 69385, 'sixty-nine thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(21364, 29806, 'twenty-nine thousand eight hundred six');\nINSERT INTO t3 VALUES(21365, 68438, 'sixty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(21366, 53306, 'fifty-three thousand three hundred six');\nINSERT INTO t3 VALUES(21367, 166, 'one hundred sixty-six');\nINSERT INTO t3 VALUES(21368, 75263, 'seventy-five thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(21369, 18116, 'eighteen thousand one hundred sixteen');\nINSERT INTO t3 VALUES(21370, 23360, 'twenty-three thousand three hundred sixty');\nINSERT INTO t3 VALUES(21371, 70223, 'seventy thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(21372, 14270, 'fourteen thousand two hundred seventy');\nINSERT INTO t3 VALUES(21373, 62807, 'sixty-two thousand eight hundred seven');\nINSERT INTO t3 VALUES(21374, 1479, 'one thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(21375, 25868, 'twenty-five thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(21376, 45842, 'forty-five thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(21377, 38531, 'thirty-eight thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(21378, 28633, 'twenty-eight thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(21379, 89657, 'eighty-nine thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(21380, 50729, 'fifty thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(21381, 6515, 'six thousand five hundred fifteen');\nINSERT INTO t3 VALUES(21382, 25163, 'twenty-five thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(21383, 13325, 'thirteen thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(21384, 33822, 'thirty-three thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(21385, 56555, 'fifty-six thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(21386, 86213, 'eighty-six thousand two hundred thirteen');\nINSERT INTO t3 VALUES(21387, 20050, 'twenty thousand fifty');\nINSERT INTO t3 VALUES(21388, 20905, 'twenty thousand nine hundred five');\nINSERT INTO t3 VALUES(21389, 73578, 'seventy-three thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(21390, 65196, 'sixty-five thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(21391, 98731, 'ninety-eight thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(21392, 49755, 'forty-nine thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(21393, 74855, 'seventy-four thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(21394, 43913, 'forty-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(21395, 72070, 'seventy-two thousand seventy');\nINSERT INTO t3 VALUES(21396, 16311, 'sixteen thousand three hundred eleven');\nINSERT INTO t3 VALUES(21397, 79274, 'seventy-nine thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(21398, 42906, 'forty-two thousand nine hundred six');\nINSERT INTO t3 VALUES(21399, 53052, 'fifty-three thousand fifty-two');\nINSERT INTO t3 VALUES(21400, 87970, 'eighty-seven thousand nine hundred seventy');\nINSERT INTO t3 VALUES(21401, 71868, 'seventy-one thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(21402, 23882, 'twenty-three thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(21403, 59125, 'fifty-nine thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(21404, 90598, 'ninety thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(21405, 55700, 'fifty-five thousand seven hundred');\nINSERT INTO t3 VALUES(21406, 98865, 'ninety-eight thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(21407, 99734, 'ninety-nine thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(21408, 35660, 'thirty-five thousand six hundred sixty');\nINSERT INTO t3 VALUES(21409, 96579, 'ninety-six thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(21410, 97555, 'ninety-seven thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(21411, 10380, 'ten thousand three hundred eighty');\nINSERT INTO t3 VALUES(21412, 57470, 'fifty-seven thousand four hundred seventy');\nINSERT INTO t3 VALUES(21413, 37730, 'thirty-seven thousand seven hundred thirty');\nINSERT INTO t3 VALUES(21414, 49065, 'forty-nine thousand sixty-five');\nINSERT INTO t3 VALUES(21415, 87986, 'eighty-seven thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(21416, 11150, 'eleven thousand one hundred fifty');\nINSERT INTO t3 VALUES(21417, 34808, 'thirty-four thousand eight hundred eight');\nINSERT INTO t3 VALUES(21418, 74280, 'seventy-four thousand two hundred eighty');\nINSERT INTO t3 VALUES(21419, 51963, 'fifty-one thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(21420, 42638, 'forty-two thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(21421, 83882, 'eighty-three thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(21422, 55078, 'fifty-five thousand seventy-eight');\nINSERT INTO t3 VALUES(21423, 22566, 'twenty-two thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(21424, 18029, 'eighteen thousand twenty-nine');\nINSERT INTO t3 VALUES(21425, 32124, 'thirty-two thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(21426, 94122, 'ninety-four thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(21427, 57186, 'fifty-seven thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(21428, 93900, 'ninety-three thousand nine hundred');\nINSERT INTO t3 VALUES(21429, 58253, 'fifty-eight thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(21430, 90206, 'ninety thousand two hundred six');\nINSERT INTO t3 VALUES(21431, 71120, 'seventy-one thousand one hundred twenty');\nINSERT INTO t3 VALUES(21432, 61687, 'sixty-one thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(21433, 57180, 'fifty-seven thousand one hundred eighty');\nINSERT INTO t3 VALUES(21434, 59545, 'fifty-nine thousand five hundred forty-five');\nINSERT INTO t3 VALUES(21435, 85553, 'eighty-five thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(21436, 31645, 'thirty-one thousand six hundred forty-five');\nINSERT INTO t3 VALUES(21437, 97301, 'ninety-seven thousand three hundred one');\nINSERT INTO t3 VALUES(21438, 39198, 'thirty-nine thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(21439, 50337, 'fifty thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(21440, 51918, 'fifty-one thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(21441, 2819, 'two thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(21442, 44434, 'forty-four thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(21443, 45954, 'forty-five thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(21444, 73117, 'seventy-three thousand one hundred seventeen');\nINSERT INTO t3 VALUES(21445, 86892, 'eighty-six thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(21446, 1546, 'one thousand five hundred forty-six');\nINSERT INTO t3 VALUES(21447, 85983, 'eighty-five thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(21448, 45096, 'forty-five thousand ninety-six');\nINSERT INTO t3 VALUES(21449, 38385, 'thirty-eight thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(21450, 89218, 'eighty-nine thousand two hundred eighteen');\nINSERT INTO t3 VALUES(21451, 77057, 'seventy-seven thousand fifty-seven');\nINSERT INTO t3 VALUES(21452, 97983, 'ninety-seven thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(21453, 67145, 'sixty-seven thousand one hundred forty-five');\nINSERT INTO t3 VALUES(21454, 80510, 'eighty thousand five hundred ten');\nINSERT INTO t3 VALUES(21455, 86018, 'eighty-six thousand eighteen');\nINSERT INTO t3 VALUES(21456, 81518, 'eighty-one thousand five hundred eighteen');\nINSERT INTO t3 VALUES(21457, 54371, 'fifty-four thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(21458, 93231, 'ninety-three thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(21459, 63953, 'sixty-three thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(21460, 17209, 'seventeen thousand two hundred nine');\nINSERT INTO t3 VALUES(21461, 90362, 'ninety thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(21462, 47282, 'forty-seven thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(21463, 83240, 'eighty-three thousand two hundred forty');\nINSERT INTO t3 VALUES(21464, 30838, 'thirty thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(21465, 14411, 'fourteen thousand four hundred eleven');\nINSERT INTO t3 VALUES(21466, 7401, 'seven thousand four hundred one');\nINSERT INTO t3 VALUES(21467, 59627, 'fifty-nine thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(21468, 51807, 'fifty-one thousand eight hundred seven');\nINSERT INTO t3 VALUES(21469, 81946, 'eighty-one thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(21470, 67830, 'sixty-seven thousand eight hundred thirty');\nINSERT INTO t3 VALUES(21471, 63413, 'sixty-three thousand four hundred thirteen');\nINSERT INTO t3 VALUES(21472, 47127, 'forty-seven thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(21473, 83482, 'eighty-three thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(21474, 94895, 'ninety-four thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(21475, 303, 'three hundred three');\nINSERT INTO t3 VALUES(21476, 9602, 'nine thousand six hundred two');\nINSERT INTO t3 VALUES(21477, 3700, 'three thousand seven hundred');\nINSERT INTO t3 VALUES(21478, 70204, 'seventy thousand two hundred four');\nINSERT INTO t3 VALUES(21479, 30340, 'thirty thousand three hundred forty');\nINSERT INTO t3 VALUES(21480, 58741, 'fifty-eight thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(21481, 9414, 'nine thousand four hundred fourteen');\nINSERT INTO t3 VALUES(21482, 20273, 'twenty thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(21483, 34814, 'thirty-four thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(21484, 18909, 'eighteen thousand nine hundred nine');\nINSERT INTO t3 VALUES(21485, 7279, 'seven thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(21486, 11667, 'eleven thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(21487, 54898, 'fifty-four thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(21488, 74597, 'seventy-four thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(21489, 60445, 'sixty thousand four hundred forty-five');\nINSERT INTO t3 VALUES(21490, 53461, 'fifty-three thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(21491, 63266, 'sixty-three thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(21492, 52471, 'fifty-two thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(21493, 97454, 'ninety-seven thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(21494, 40920, 'forty thousand nine hundred twenty');\nINSERT INTO t3 VALUES(21495, 83251, 'eighty-three thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(21496, 295, 'two hundred ninety-five');\nINSERT INTO t3 VALUES(21497, 40824, 'forty thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(21498, 94697, 'ninety-four thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(21499, 8574, 'eight thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(21500, 49587, 'forty-nine thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(21501, 38914, 'thirty-eight thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(21502, 98344, 'ninety-eight thousand three hundred forty-four');\nINSERT INTO t3 VALUES(21503, 63146, 'sixty-three thousand one hundred forty-six');\nINSERT INTO t3 VALUES(21504, 74695, 'seventy-four thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(21505, 80843, 'eighty thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(21506, 32987, 'thirty-two thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(21507, 15762, 'fifteen thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(21508, 45077, 'forty-five thousand seventy-seven');\nINSERT INTO t3 VALUES(21509, 59624, 'fifty-nine thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(21510, 18342, 'eighteen thousand three hundred forty-two');\nINSERT INTO t3 VALUES(21511, 95890, 'ninety-five thousand eight hundred ninety');\nINSERT INTO t3 VALUES(21512, 89234, 'eighty-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(21513, 44716, 'forty-four thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(21514, 4542, 'four thousand five hundred forty-two');\nINSERT INTO t3 VALUES(21515, 82616, 'eighty-two thousand six hundred sixteen');\nINSERT INTO t3 VALUES(21516, 57197, 'fifty-seven thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(21517, 17675, 'seventeen thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(21518, 70653, 'seventy thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(21519, 96781, 'ninety-six thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(21520, 51478, 'fifty-one thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(21521, 20295, 'twenty thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(21522, 97421, 'ninety-seven thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(21523, 52905, 'fifty-two thousand nine hundred five');\nINSERT INTO t3 VALUES(21524, 30670, 'thirty thousand six hundred seventy');\nINSERT INTO t3 VALUES(21525, 6862, 'six thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(21526, 37099, 'thirty-seven thousand ninety-nine');\nINSERT INTO t3 VALUES(21527, 5196, 'five thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(21528, 13272, 'thirteen thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(21529, 15139, 'fifteen thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(21530, 49514, 'forty-nine thousand five hundred fourteen');\nINSERT INTO t3 VALUES(21531, 37737, 'thirty-seven thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(21532, 23749, 'twenty-three thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(21533, 97539, 'ninety-seven thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(21534, 91772, 'ninety-one thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(21535, 73126, 'seventy-three thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(21536, 86589, 'eighty-six thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(21537, 96126, 'ninety-six thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(21538, 84447, 'eighty-four thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(21539, 72310, 'seventy-two thousand three hundred ten');\nINSERT INTO t3 VALUES(21540, 18829, 'eighteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(21541, 19148, 'nineteen thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(21542, 97257, 'ninety-seven thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(21543, 98677, 'ninety-eight thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(21544, 29769, 'twenty-nine thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(21545, 54671, 'fifty-four thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(21546, 18598, 'eighteen thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(21547, 53259, 'fifty-three thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(21548, 26847, 'twenty-six thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(21549, 8886, 'eight thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(21550, 99129, 'ninety-nine thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(21551, 74547, 'seventy-four thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(21552, 48185, 'forty-eight thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(21553, 73522, 'seventy-three thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(21554, 88478, 'eighty-eight thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(21555, 61341, 'sixty-one thousand three hundred forty-one');\nINSERT INTO t3 VALUES(21556, 76056, 'seventy-six thousand fifty-six');\nINSERT INTO t3 VALUES(21557, 82915, 'eighty-two thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(21558, 89760, 'eighty-nine thousand seven hundred sixty');\nINSERT INTO t3 VALUES(21559, 86237, 'eighty-six thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(21560, 42146, 'forty-two thousand one hundred forty-six');\nINSERT INTO t3 VALUES(21561, 56689, 'fifty-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(21562, 13458, 'thirteen thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(21563, 66809, 'sixty-six thousand eight hundred nine');\nINSERT INTO t3 VALUES(21564, 59628, 'fifty-nine thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(21565, 4091, 'four thousand ninety-one');\nINSERT INTO t3 VALUES(21566, 6728, 'six thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(21567, 56263, 'fifty-six thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(21568, 64969, 'sixty-four thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(21569, 59894, 'fifty-nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(21570, 34055, 'thirty-four thousand fifty-five');\nINSERT INTO t3 VALUES(21571, 60244, 'sixty thousand two hundred forty-four');\nINSERT INTO t3 VALUES(21572, 39364, 'thirty-nine thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(21573, 10139, 'ten thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(21574, 87016, 'eighty-seven thousand sixteen');\nINSERT INTO t3 VALUES(21575, 86302, 'eighty-six thousand three hundred two');\nINSERT INTO t3 VALUES(21576, 71826, 'seventy-one thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(21577, 72801, 'seventy-two thousand eight hundred one');\nINSERT INTO t3 VALUES(21578, 88955, 'eighty-eight thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(21579, 47171, 'forty-seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(21580, 16583, 'sixteen thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(21581, 12476, 'twelve thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(21582, 73586, 'seventy-three thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(21583, 69546, 'sixty-nine thousand five hundred forty-six');\nINSERT INTO t3 VALUES(21584, 67841, 'sixty-seven thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(21585, 71758, 'seventy-one thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(21586, 96169, 'ninety-six thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(21587, 25453, 'twenty-five thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(21588, 19691, 'nineteen thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(21589, 66236, 'sixty-six thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(21590, 48160, 'forty-eight thousand one hundred sixty');\nINSERT INTO t3 VALUES(21591, 88173, 'eighty-eight thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(21592, 64755, 'sixty-four thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(21593, 81286, 'eighty-one thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(21594, 68945, 'sixty-eight thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(21595, 27970, 'twenty-seven thousand nine hundred seventy');\nINSERT INTO t3 VALUES(21596, 18679, 'eighteen thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(21597, 35565, 'thirty-five thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(21598, 30835, 'thirty thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(21599, 35010, 'thirty-five thousand ten');\nINSERT INTO t3 VALUES(21600, 85539, 'eighty-five thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(21601, 70412, 'seventy thousand four hundred twelve');\nINSERT INTO t3 VALUES(21602, 21032, 'twenty-one thousand thirty-two');\nINSERT INTO t3 VALUES(21603, 57223, 'fifty-seven thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(21604, 60443, 'sixty thousand four hundred forty-three');\nINSERT INTO t3 VALUES(21605, 85621, 'eighty-five thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(21606, 19692, 'nineteen thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(21607, 54266, 'fifty-four thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(21608, 97028, 'ninety-seven thousand twenty-eight');\nINSERT INTO t3 VALUES(21609, 4670, 'four thousand six hundred seventy');\nINSERT INTO t3 VALUES(21610, 98178, 'ninety-eight thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(21611, 98359, 'ninety-eight thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(21612, 61961, 'sixty-one thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(21613, 9739, 'nine thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(21614, 29973, 'twenty-nine thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(21615, 35991, 'thirty-five thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(21616, 28889, 'twenty-eight thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(21617, 55720, 'fifty-five thousand seven hundred twenty');\nINSERT INTO t3 VALUES(21618, 33435, 'thirty-three thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(21619, 37358, 'thirty-seven thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(21620, 54114, 'fifty-four thousand one hundred fourteen');\nINSERT INTO t3 VALUES(21621, 43990, 'forty-three thousand nine hundred ninety');\nINSERT INTO t3 VALUES(21622, 66541, 'sixty-six thousand five hundred forty-one');\nINSERT INTO t3 VALUES(21623, 87493, 'eighty-seven thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(21624, 55828, 'fifty-five thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(21625, 77336, 'seventy-seven thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(21626, 76885, 'seventy-six thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(21627, 94799, 'ninety-four thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(21628, 73560, 'seventy-three thousand five hundred sixty');\nINSERT INTO t3 VALUES(21629, 24910, 'twenty-four thousand nine hundred ten');\nINSERT INTO t3 VALUES(21630, 51904, 'fifty-one thousand nine hundred four');\nINSERT INTO t3 VALUES(21631, 78312, 'seventy-eight thousand three hundred twelve');\nINSERT INTO t3 VALUES(21632, 80111, 'eighty thousand one hundred eleven');\nINSERT INTO t3 VALUES(21633, 47097, 'forty-seven thousand ninety-seven');\nINSERT INTO t3 VALUES(21634, 58822, 'fifty-eight thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(21635, 94797, 'ninety-four thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(21636, 41647, 'forty-one thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(21637, 67488, 'sixty-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(21638, 73991, 'seventy-three thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(21639, 19018, 'nineteen thousand eighteen');\nINSERT INTO t3 VALUES(21640, 46130, 'forty-six thousand one hundred thirty');\nINSERT INTO t3 VALUES(21641, 49619, 'forty-nine thousand six hundred nineteen');\nINSERT INTO t3 VALUES(21642, 86410, 'eighty-six thousand four hundred ten');\nINSERT INTO t3 VALUES(21643, 98746, 'ninety-eight thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(21644, 80081, 'eighty thousand eighty-one');\nINSERT INTO t3 VALUES(21645, 23602, 'twenty-three thousand six hundred two');\nINSERT INTO t3 VALUES(21646, 53738, 'fifty-three thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(21647, 57507, 'fifty-seven thousand five hundred seven');\nINSERT INTO t3 VALUES(21648, 91098, 'ninety-one thousand ninety-eight');\nINSERT INTO t3 VALUES(21649, 22548, 'twenty-two thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(21650, 52949, 'fifty-two thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(21651, 48397, 'forty-eight thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(21652, 68520, 'sixty-eight thousand five hundred twenty');\nINSERT INTO t3 VALUES(21653, 45764, 'forty-five thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(21654, 89042, 'eighty-nine thousand forty-two');\nINSERT INTO t3 VALUES(21655, 81841, 'eighty-one thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(21656, 61921, 'sixty-one thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(21657, 33447, 'thirty-three thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(21658, 23029, 'twenty-three thousand twenty-nine');\nINSERT INTO t3 VALUES(21659, 20860, 'twenty thousand eight hundred sixty');\nINSERT INTO t3 VALUES(21660, 52724, 'fifty-two thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(21661, 27520, 'twenty-seven thousand five hundred twenty');\nINSERT INTO t3 VALUES(21662, 12842, 'twelve thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(21663, 58656, 'fifty-eight thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(21664, 99320, 'ninety-nine thousand three hundred twenty');\nINSERT INTO t3 VALUES(21665, 80694, 'eighty thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(21666, 4065, 'four thousand sixty-five');\nINSERT INTO t3 VALUES(21667, 68726, 'sixty-eight thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(21668, 5703, 'five thousand seven hundred three');\nINSERT INTO t3 VALUES(21669, 42800, 'forty-two thousand eight hundred');\nINSERT INTO t3 VALUES(21670, 36919, 'thirty-six thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(21671, 17720, 'seventeen thousand seven hundred twenty');\nINSERT INTO t3 VALUES(21672, 70908, 'seventy thousand nine hundred eight');\nINSERT INTO t3 VALUES(21673, 64337, 'sixty-four thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(21674, 27963, 'twenty-seven thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(21675, 74404, 'seventy-four thousand four hundred four');\nINSERT INTO t3 VALUES(21676, 62765, 'sixty-two thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(21677, 86854, 'eighty-six thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(21678, 20013, 'twenty thousand thirteen');\nINSERT INTO t3 VALUES(21679, 89292, 'eighty-nine thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(21680, 17617, 'seventeen thousand six hundred seventeen');\nINSERT INTO t3 VALUES(21681, 17373, 'seventeen thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(21682, 1565, 'one thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(21683, 66398, 'sixty-six thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(21684, 90905, 'ninety thousand nine hundred five');\nINSERT INTO t3 VALUES(21685, 82850, 'eighty-two thousand eight hundred fifty');\nINSERT INTO t3 VALUES(21686, 39995, 'thirty-nine thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(21687, 67839, 'sixty-seven thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(21688, 33093, 'thirty-three thousand ninety-three');\nINSERT INTO t3 VALUES(21689, 93729, 'ninety-three thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(21690, 31005, 'thirty-one thousand five');\nINSERT INTO t3 VALUES(21691, 37862, 'thirty-seven thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(21692, 68511, 'sixty-eight thousand five hundred eleven');\nINSERT INTO t3 VALUES(21693, 4341, 'four thousand three hundred forty-one');\nINSERT INTO t3 VALUES(21694, 97807, 'ninety-seven thousand eight hundred seven');\nINSERT INTO t3 VALUES(21695, 23951, 'twenty-three thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(21696, 96296, 'ninety-six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(21697, 5501, 'five thousand five hundred one');\nINSERT INTO t3 VALUES(21698, 97834, 'ninety-seven thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(21699, 45237, 'forty-five thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(21700, 40405, 'forty thousand four hundred five');\nINSERT INTO t3 VALUES(21701, 88857, 'eighty-eight thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(21702, 78751, 'seventy-eight thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(21703, 89831, 'eighty-nine thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(21704, 6171, 'six thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(21705, 90377, 'ninety thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(21706, 43306, 'forty-three thousand three hundred six');\nINSERT INTO t3 VALUES(21707, 56331, 'fifty-six thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(21708, 98964, 'ninety-eight thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(21709, 21825, 'twenty-one thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(21710, 69346, 'sixty-nine thousand three hundred forty-six');\nINSERT INTO t3 VALUES(21711, 53177, 'fifty-three thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(21712, 83594, 'eighty-three thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(21713, 60761, 'sixty thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(21714, 42793, 'forty-two thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(21715, 29174, 'twenty-nine thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(21716, 56968, 'fifty-six thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(21717, 37084, 'thirty-seven thousand eighty-four');\nINSERT INTO t3 VALUES(21718, 61554, 'sixty-one thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(21719, 64985, 'sixty-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(21720, 68130, 'sixty-eight thousand one hundred thirty');\nINSERT INTO t3 VALUES(21721, 30015, 'thirty thousand fifteen');\nINSERT INTO t3 VALUES(21722, 71322, 'seventy-one thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(21723, 15126, 'fifteen thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(21724, 34535, 'thirty-four thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(21725, 65715, 'sixty-five thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(21726, 79774, 'seventy-nine thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(21727, 81942, 'eighty-one thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(21728, 94781, 'ninety-four thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(21729, 83743, 'eighty-three thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(21730, 63858, 'sixty-three thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(21731, 94141, 'ninety-four thousand one hundred forty-one');\nINSERT INTO t3 VALUES(21732, 21591, 'twenty-one thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(21733, 57667, 'fifty-seven thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(21734, 4716, 'four thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(21735, 46004, 'forty-six thousand four');\nINSERT INTO t3 VALUES(21736, 86420, 'eighty-six thousand four hundred twenty');\nINSERT INTO t3 VALUES(21737, 90992, 'ninety thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(21738, 19485, 'nineteen thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(21739, 6993, 'six thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(21740, 25064, 'twenty-five thousand sixty-four');\nINSERT INTO t3 VALUES(21741, 69267, 'sixty-nine thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(21742, 28914, 'twenty-eight thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(21743, 3114, 'three thousand one hundred fourteen');\nINSERT INTO t3 VALUES(21744, 95079, 'ninety-five thousand seventy-nine');\nINSERT INTO t3 VALUES(21745, 27567, 'twenty-seven thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(21746, 60035, 'sixty thousand thirty-five');\nINSERT INTO t3 VALUES(21747, 84652, 'eighty-four thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(21748, 40368, 'forty thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(21749, 51076, 'fifty-one thousand seventy-six');\nINSERT INTO t3 VALUES(21750, 9999, 'nine thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(21751, 54720, 'fifty-four thousand seven hundred twenty');\nINSERT INTO t3 VALUES(21752, 75631, 'seventy-five thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(21753, 15827, 'fifteen thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(21754, 81618, 'eighty-one thousand six hundred eighteen');\nINSERT INTO t3 VALUES(21755, 58561, 'fifty-eight thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(21756, 97117, 'ninety-seven thousand one hundred seventeen');\nINSERT INTO t3 VALUES(21757, 39525, 'thirty-nine thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(21758, 43578, 'forty-three thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(21759, 94515, 'ninety-four thousand five hundred fifteen');\nINSERT INTO t3 VALUES(21760, 72718, 'seventy-two thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(21761, 21522, 'twenty-one thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(21762, 50014, 'fifty thousand fourteen');\nINSERT INTO t3 VALUES(21763, 51048, 'fifty-one thousand forty-eight');\nINSERT INTO t3 VALUES(21764, 67155, 'sixty-seven thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(21765, 25380, 'twenty-five thousand three hundred eighty');\nINSERT INTO t3 VALUES(21766, 80252, 'eighty thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(21767, 68528, 'sixty-eight thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(21768, 73870, 'seventy-three thousand eight hundred seventy');\nINSERT INTO t3 VALUES(21769, 51953, 'fifty-one thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(21770, 39891, 'thirty-nine thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(21771, 16758, 'sixteen thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(21772, 13352, 'thirteen thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(21773, 88431, 'eighty-eight thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(21774, 4485, 'four thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(21775, 53749, 'fifty-three thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(21776, 14934, 'fourteen thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(21777, 70610, 'seventy thousand six hundred ten');\nINSERT INTO t3 VALUES(21778, 23436, 'twenty-three thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(21779, 91687, 'ninety-one thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(21780, 82018, 'eighty-two thousand eighteen');\nINSERT INTO t3 VALUES(21781, 98497, 'ninety-eight thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(21782, 17450, 'seventeen thousand four hundred fifty');\nINSERT INTO t3 VALUES(21783, 93562, 'ninety-three thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(21784, 38979, 'thirty-eight thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(21785, 91797, 'ninety-one thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(21786, 75183, 'seventy-five thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(21787, 94341, 'ninety-four thousand three hundred forty-one');\nINSERT INTO t3 VALUES(21788, 75405, 'seventy-five thousand four hundred five');\nINSERT INTO t3 VALUES(21789, 66537, 'sixty-six thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(21790, 52209, 'fifty-two thousand two hundred nine');\nINSERT INTO t3 VALUES(21791, 99338, 'ninety-nine thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(21792, 20662, 'twenty thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(21793, 10920, 'ten thousand nine hundred twenty');\nINSERT INTO t3 VALUES(21794, 2709, 'two thousand seven hundred nine');\nINSERT INTO t3 VALUES(21795, 72310, 'seventy-two thousand three hundred ten');\nINSERT INTO t3 VALUES(21796, 6286, 'six thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(21797, 87500, 'eighty-seven thousand five hundred');\nINSERT INTO t3 VALUES(21798, 72328, 'seventy-two thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(21799, 76075, 'seventy-six thousand seventy-five');\nINSERT INTO t3 VALUES(21800, 8544, 'eight thousand five hundred forty-four');\nINSERT INTO t3 VALUES(21801, 74734, 'seventy-four thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(21802, 67474, 'sixty-seven thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(21803, 87012, 'eighty-seven thousand twelve');\nINSERT INTO t3 VALUES(21804, 99064, 'ninety-nine thousand sixty-four');\nINSERT INTO t3 VALUES(21805, 29634, 'twenty-nine thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(21806, 47705, 'forty-seven thousand seven hundred five');\nINSERT INTO t3 VALUES(21807, 33764, 'thirty-three thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(21808, 39170, 'thirty-nine thousand one hundred seventy');\nINSERT INTO t3 VALUES(21809, 41108, 'forty-one thousand one hundred eight');\nINSERT INTO t3 VALUES(21810, 57917, 'fifty-seven thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(21811, 8329, 'eight thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(21812, 67604, 'sixty-seven thousand six hundred four');\nINSERT INTO t3 VALUES(21813, 59359, 'fifty-nine thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(21814, 17918, 'seventeen thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(21815, 87327, 'eighty-seven thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(21816, 31095, 'thirty-one thousand ninety-five');\nINSERT INTO t3 VALUES(21817, 27969, 'twenty-seven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(21818, 69506, 'sixty-nine thousand five hundred six');\nINSERT INTO t3 VALUES(21819, 70904, 'seventy thousand nine hundred four');\nINSERT INTO t3 VALUES(21820, 92884, 'ninety-two thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(21821, 32971, 'thirty-two thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(21822, 65546, 'sixty-five thousand five hundred forty-six');\nINSERT INTO t3 VALUES(21823, 50857, 'fifty thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(21824, 35789, 'thirty-five thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(21825, 4288, 'four thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(21826, 90398, 'ninety thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(21827, 42854, 'forty-two thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(21828, 32745, 'thirty-two thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(21829, 48947, 'forty-eight thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(21830, 92941, 'ninety-two thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(21831, 23727, 'twenty-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(21832, 68653, 'sixty-eight thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(21833, 30849, 'thirty thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(21834, 22341, 'twenty-two thousand three hundred forty-one');\nINSERT INTO t3 VALUES(21835, 75943, 'seventy-five thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(21836, 60832, 'sixty thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(21837, 15379, 'fifteen thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(21838, 9633, 'nine thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(21839, 16192, 'sixteen thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(21840, 7455, 'seven thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(21841, 93093, 'ninety-three thousand ninety-three');\nINSERT INTO t3 VALUES(21842, 16607, 'sixteen thousand six hundred seven');\nINSERT INTO t3 VALUES(21843, 44581, 'forty-four thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(21844, 44141, 'forty-four thousand one hundred forty-one');\nINSERT INTO t3 VALUES(21845, 99823, 'ninety-nine thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(21846, 79086, 'seventy-nine thousand eighty-six');\nINSERT INTO t3 VALUES(21847, 53969, 'fifty-three thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(21848, 30312, 'thirty thousand three hundred twelve');\nINSERT INTO t3 VALUES(21849, 65113, 'sixty-five thousand one hundred thirteen');\nINSERT INTO t3 VALUES(21850, 10777, 'ten thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(21851, 47268, 'forty-seven thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(21852, 84667, 'eighty-four thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(21853, 39774, 'thirty-nine thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(21854, 52091, 'fifty-two thousand ninety-one');\nINSERT INTO t3 VALUES(21855, 92660, 'ninety-two thousand six hundred sixty');\nINSERT INTO t3 VALUES(21856, 47736, 'forty-seven thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(21857, 97166, 'ninety-seven thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(21858, 96227, 'ninety-six thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(21859, 33203, 'thirty-three thousand two hundred three');\nINSERT INTO t3 VALUES(21860, 33046, 'thirty-three thousand forty-six');\nINSERT INTO t3 VALUES(21861, 30118, 'thirty thousand one hundred eighteen');\nINSERT INTO t3 VALUES(21862, 56096, 'fifty-six thousand ninety-six');\nINSERT INTO t3 VALUES(21863, 35752, 'thirty-five thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(21864, 33698, 'thirty-three thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(21865, 78295, 'seventy-eight thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(21866, 10199, 'ten thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(21867, 39004, 'thirty-nine thousand four');\nINSERT INTO t3 VALUES(21868, 90378, 'ninety thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(21869, 76915, 'seventy-six thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(21870, 55631, 'fifty-five thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(21871, 74979, 'seventy-four thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(21872, 97225, 'ninety-seven thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(21873, 94842, 'ninety-four thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(21874, 21478, 'twenty-one thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(21875, 4652, 'four thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(21876, 82748, 'eighty-two thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(21877, 47630, 'forty-seven thousand six hundred thirty');\nINSERT INTO t3 VALUES(21878, 43209, 'forty-three thousand two hundred nine');\nINSERT INTO t3 VALUES(21879, 37997, 'thirty-seven thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(21880, 68641, 'sixty-eight thousand six hundred forty-one');\nINSERT INTO t3 VALUES(21881, 56459, 'fifty-six thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(21882, 39403, 'thirty-nine thousand four hundred three');\nINSERT INTO t3 VALUES(21883, 57796, 'fifty-seven thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(21884, 8415, 'eight thousand four hundred fifteen');\nINSERT INTO t3 VALUES(21885, 47413, 'forty-seven thousand four hundred thirteen');\nINSERT INTO t3 VALUES(21886, 38099, 'thirty-eight thousand ninety-nine');\nINSERT INTO t3 VALUES(21887, 5485, 'five thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(21888, 91519, 'ninety-one thousand five hundred nineteen');\nINSERT INTO t3 VALUES(21889, 55128, 'fifty-five thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(21890, 28634, 'twenty-eight thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(21891, 76248, 'seventy-six thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(21892, 89658, 'eighty-nine thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(21893, 91945, 'ninety-one thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(21894, 64582, 'sixty-four thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(21895, 86153, 'eighty-six thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(21896, 78557, 'seventy-eight thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(21897, 67688, 'sixty-seven thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(21898, 66032, 'sixty-six thousand thirty-two');\nINSERT INTO t3 VALUES(21899, 88081, 'eighty-eight thousand eighty-one');\nINSERT INTO t3 VALUES(21900, 36291, 'thirty-six thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(21901, 44679, 'forty-four thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(21902, 31126, 'thirty-one thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(21903, 46538, 'forty-six thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(21904, 77708, 'seventy-seven thousand seven hundred eight');\nINSERT INTO t3 VALUES(21905, 54121, 'fifty-four thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(21906, 76197, 'seventy-six thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(21907, 25453, 'twenty-five thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(21908, 22099, 'twenty-two thousand ninety-nine');\nINSERT INTO t3 VALUES(21909, 8369, 'eight thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(21910, 83817, 'eighty-three thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(21911, 94769, 'ninety-four thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(21912, 47835, 'forty-seven thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(21913, 62419, 'sixty-two thousand four hundred nineteen');\nINSERT INTO t3 VALUES(21914, 44499, 'forty-four thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(21915, 86687, 'eighty-six thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(21916, 21177, 'twenty-one thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(21917, 40121, 'forty thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(21918, 2924, 'two thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(21919, 77515, 'seventy-seven thousand five hundred fifteen');\nINSERT INTO t3 VALUES(21920, 23061, 'twenty-three thousand sixty-one');\nINSERT INTO t3 VALUES(21921, 84221, 'eighty-four thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(21922, 60092, 'sixty thousand ninety-two');\nINSERT INTO t3 VALUES(21923, 69903, 'sixty-nine thousand nine hundred three');\nINSERT INTO t3 VALUES(21924, 45916, 'forty-five thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(21925, 98372, 'ninety-eight thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(21926, 29329, 'twenty-nine thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(21927, 25083, 'twenty-five thousand eighty-three');\nINSERT INTO t3 VALUES(21928, 52504, 'fifty-two thousand five hundred four');\nINSERT INTO t3 VALUES(21929, 65295, 'sixty-five thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(21930, 15269, 'fifteen thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(21931, 87628, 'eighty-seven thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(21932, 77470, 'seventy-seven thousand four hundred seventy');\nINSERT INTO t3 VALUES(21933, 13420, 'thirteen thousand four hundred twenty');\nINSERT INTO t3 VALUES(21934, 83703, 'eighty-three thousand seven hundred three');\nINSERT INTO t3 VALUES(21935, 94774, 'ninety-four thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(21936, 33634, 'thirty-three thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(21937, 25273, 'twenty-five thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(21938, 95282, 'ninety-five thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(21939, 99845, 'ninety-nine thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(21940, 17647, 'seventeen thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(21941, 44078, 'forty-four thousand seventy-eight');\nINSERT INTO t3 VALUES(21942, 75405, 'seventy-five thousand four hundred five');\nINSERT INTO t3 VALUES(21943, 36585, 'thirty-six thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(21944, 6473, 'six thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(21945, 76932, 'seventy-six thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(21946, 14319, 'fourteen thousand three hundred nineteen');\nINSERT INTO t3 VALUES(21947, 63996, 'sixty-three thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(21948, 56276, 'fifty-six thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(21949, 22356, 'twenty-two thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(21950, 40348, 'forty thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(21951, 42079, 'forty-two thousand seventy-nine');\nINSERT INTO t3 VALUES(21952, 80634, 'eighty thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(21953, 70610, 'seventy thousand six hundred ten');\nINSERT INTO t3 VALUES(21954, 66029, 'sixty-six thousand twenty-nine');\nINSERT INTO t3 VALUES(21955, 90633, 'ninety thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(21956, 65380, 'sixty-five thousand three hundred eighty');\nINSERT INTO t3 VALUES(21957, 94403, 'ninety-four thousand four hundred three');\nINSERT INTO t3 VALUES(21958, 46758, 'forty-six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(21959, 26535, 'twenty-six thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(21960, 48445, 'forty-eight thousand four hundred forty-five');\nINSERT INTO t3 VALUES(21961, 8762, 'eight thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(21962, 79914, 'seventy-nine thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(21963, 56382, 'fifty-six thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(21964, 30100, 'thirty thousand one hundred');\nINSERT INTO t3 VALUES(21965, 17523, 'seventeen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(21966, 49851, 'forty-nine thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(21967, 74393, 'seventy-four thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(21968, 68835, 'sixty-eight thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(21969, 18575, 'eighteen thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(21970, 30917, 'thirty thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(21971, 44203, 'forty-four thousand two hundred three');\nINSERT INTO t3 VALUES(21972, 11347, 'eleven thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(21973, 92433, 'ninety-two thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(21974, 60395, 'sixty thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(21975, 90768, 'ninety thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(21976, 82429, 'eighty-two thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(21977, 96538, 'ninety-six thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(21978, 5518, 'five thousand five hundred eighteen');\nINSERT INTO t3 VALUES(21979, 26303, 'twenty-six thousand three hundred three');\nINSERT INTO t3 VALUES(21980, 24734, 'twenty-four thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(21981, 35227, 'thirty-five thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(21982, 50495, 'fifty thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(21983, 93473, 'ninety-three thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(21984, 38333, 'thirty-eight thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(21985, 1973, 'one thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(21986, 72879, 'seventy-two thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(21987, 28969, 'twenty-eight thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(21988, 55017, 'fifty-five thousand seventeen');\nINSERT INTO t3 VALUES(21989, 78751, 'seventy-eight thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(21990, 27198, 'twenty-seven thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(21991, 24835, 'twenty-four thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(21992, 98192, 'ninety-eight thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(21993, 19795, 'nineteen thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(21994, 39801, 'thirty-nine thousand eight hundred one');\nINSERT INTO t3 VALUES(21995, 20349, 'twenty thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(21996, 99510, 'ninety-nine thousand five hundred ten');\nINSERT INTO t3 VALUES(21997, 48628, 'forty-eight thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(21998, 25333, 'twenty-five thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(21999, 36647, 'thirty-six thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(22000, 66560, 'sixty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(22001, 92593, 'ninety-two thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(22002, 60865, 'sixty thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(22003, 26079, 'twenty-six thousand seventy-nine');\nINSERT INTO t3 VALUES(22004, 42325, 'forty-two thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(22005, 46686, 'forty-six thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(22006, 95396, 'ninety-five thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(22007, 19469, 'nineteen thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(22008, 31944, 'thirty-one thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(22009, 50232, 'fifty thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(22010, 87423, 'eighty-seven thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(22011, 70904, 'seventy thousand nine hundred four');\nINSERT INTO t3 VALUES(22012, 11860, 'eleven thousand eight hundred sixty');\nINSERT INTO t3 VALUES(22013, 24315, 'twenty-four thousand three hundred fifteen');\nINSERT INTO t3 VALUES(22014, 21198, 'twenty-one thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(22015, 70848, 'seventy thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(22016, 61107, 'sixty-one thousand one hundred seven');\nINSERT INTO t3 VALUES(22017, 76396, 'seventy-six thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(22018, 16940, 'sixteen thousand nine hundred forty');\nINSERT INTO t3 VALUES(22019, 16966, 'sixteen thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(22020, 63684, 'sixty-three thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(22021, 80970, 'eighty thousand nine hundred seventy');\nINSERT INTO t3 VALUES(22022, 67388, 'sixty-seven thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(22023, 52517, 'fifty-two thousand five hundred seventeen');\nINSERT INTO t3 VALUES(22024, 70927, 'seventy thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(22025, 9211, 'nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(22026, 48190, 'forty-eight thousand one hundred ninety');\nINSERT INTO t3 VALUES(22027, 85062, 'eighty-five thousand sixty-two');\nINSERT INTO t3 VALUES(22028, 63665, 'sixty-three thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(22029, 31791, 'thirty-one thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(22030, 83974, 'eighty-three thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(22031, 38592, 'thirty-eight thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(22032, 60492, 'sixty thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(22033, 67278, 'sixty-seven thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(22034, 40641, 'forty thousand six hundred forty-one');\nINSERT INTO t3 VALUES(22035, 88920, 'eighty-eight thousand nine hundred twenty');\nINSERT INTO t3 VALUES(22036, 98712, 'ninety-eight thousand seven hundred twelve');\nINSERT INTO t3 VALUES(22037, 57458, 'fifty-seven thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(22038, 6475, 'six thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(22039, 85301, 'eighty-five thousand three hundred one');\nINSERT INTO t3 VALUES(22040, 70311, 'seventy thousand three hundred eleven');\nINSERT INTO t3 VALUES(22041, 50789, 'fifty thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(22042, 1718, 'one thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(22043, 40565, 'forty thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(22044, 171, 'one hundred seventy-one');\nINSERT INTO t3 VALUES(22045, 57255, 'fifty-seven thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(22046, 20144, 'twenty thousand one hundred forty-four');\nINSERT INTO t3 VALUES(22047, 75646, 'seventy-five thousand six hundred forty-six');\nINSERT INTO t3 VALUES(22048, 80232, 'eighty thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(22049, 20449, 'twenty thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(22050, 66904, 'sixty-six thousand nine hundred four');\nINSERT INTO t3 VALUES(22051, 4763, 'four thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(22052, 86920, 'eighty-six thousand nine hundred twenty');\nINSERT INTO t3 VALUES(22053, 21218, 'twenty-one thousand two hundred eighteen');\nINSERT INTO t3 VALUES(22054, 5994, 'five thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(22055, 66771, 'sixty-six thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(22056, 82911, 'eighty-two thousand nine hundred eleven');\nINSERT INTO t3 VALUES(22057, 12842, 'twelve thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(22058, 33261, 'thirty-three thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(22059, 82572, 'eighty-two thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(22060, 12893, 'twelve thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(22061, 4185, 'four thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(22062, 21705, 'twenty-one thousand seven hundred five');\nINSERT INTO t3 VALUES(22063, 86817, 'eighty-six thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(22064, 76944, 'seventy-six thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(22065, 92861, 'ninety-two thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(22066, 40617, 'forty thousand six hundred seventeen');\nINSERT INTO t3 VALUES(22067, 78125, 'seventy-eight thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(22068, 84567, 'eighty-four thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(22069, 54283, 'fifty-four thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(22070, 41122, 'forty-one thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(22071, 64794, 'sixty-four thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(22072, 57904, 'fifty-seven thousand nine hundred four');\nINSERT INTO t3 VALUES(22073, 70334, 'seventy thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(22074, 76547, 'seventy-six thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(22075, 41099, 'forty-one thousand ninety-nine');\nINSERT INTO t3 VALUES(22076, 41852, 'forty-one thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(22077, 95399, 'ninety-five thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(22078, 33041, 'thirty-three thousand forty-one');\nINSERT INTO t3 VALUES(22079, 90452, 'ninety thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(22080, 7987, 'seven thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(22081, 24217, 'twenty-four thousand two hundred seventeen');\nINSERT INTO t3 VALUES(22082, 33572, 'thirty-three thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(22083, 85749, 'eighty-five thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(22084, 86845, 'eighty-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(22085, 67807, 'sixty-seven thousand eight hundred seven');\nINSERT INTO t3 VALUES(22086, 80578, 'eighty thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(22087, 23327, 'twenty-three thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(22088, 39754, 'thirty-nine thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(22089, 63761, 'sixty-three thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(22090, 2636, 'two thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(22091, 75310, 'seventy-five thousand three hundred ten');\nINSERT INTO t3 VALUES(22092, 73297, 'seventy-three thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(22093, 14881, 'fourteen thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(22094, 83964, 'eighty-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(22095, 51004, 'fifty-one thousand four');\nINSERT INTO t3 VALUES(22096, 1125, 'one thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(22097, 63339, 'sixty-three thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(22098, 32238, 'thirty-two thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(22099, 3737, 'three thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(22100, 10713, 'ten thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(22101, 58180, 'fifty-eight thousand one hundred eighty');\nINSERT INTO t3 VALUES(22102, 35979, 'thirty-five thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(22103, 85736, 'eighty-five thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(22104, 33023, 'thirty-three thousand twenty-three');\nINSERT INTO t3 VALUES(22105, 97869, 'ninety-seven thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(22106, 40387, 'forty thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(22107, 61887, 'sixty-one thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(22108, 94088, 'ninety-four thousand eighty-eight');\nINSERT INTO t3 VALUES(22109, 25966, 'twenty-five thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(22110, 93545, 'ninety-three thousand five hundred forty-five');\nINSERT INTO t3 VALUES(22111, 82846, 'eighty-two thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(22112, 20382, 'twenty thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(22113, 45079, 'forty-five thousand seventy-nine');\nINSERT INTO t3 VALUES(22114, 73263, 'seventy-three thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(22115, 54981, 'fifty-four thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(22116, 80869, 'eighty thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(22117, 29987, 'twenty-nine thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(22118, 18504, 'eighteen thousand five hundred four');\nINSERT INTO t3 VALUES(22119, 75998, 'seventy-five thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(22120, 48009, 'forty-eight thousand nine');\nINSERT INTO t3 VALUES(22121, 48218, 'forty-eight thousand two hundred eighteen');\nINSERT INTO t3 VALUES(22122, 34127, 'thirty-four thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(22123, 87784, 'eighty-seven thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(22124, 14684, 'fourteen thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(22125, 74809, 'seventy-four thousand eight hundred nine');\nINSERT INTO t3 VALUES(22126, 77260, 'seventy-seven thousand two hundred sixty');\nINSERT INTO t3 VALUES(22127, 30377, 'thirty thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(22128, 94871, 'ninety-four thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(22129, 52853, 'fifty-two thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(22130, 53170, 'fifty-three thousand one hundred seventy');\nINSERT INTO t3 VALUES(22131, 79606, 'seventy-nine thousand six hundred six');\nINSERT INTO t3 VALUES(22132, 72761, 'seventy-two thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(22133, 82911, 'eighty-two thousand nine hundred eleven');\nINSERT INTO t3 VALUES(22134, 70998, 'seventy thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(22135, 72642, 'seventy-two thousand six hundred forty-two');\nINSERT INTO t3 VALUES(22136, 28308, 'twenty-eight thousand three hundred eight');\nINSERT INTO t3 VALUES(22137, 74693, 'seventy-four thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(22138, 63906, 'sixty-three thousand nine hundred six');\nINSERT INTO t3 VALUES(22139, 10514, 'ten thousand five hundred fourteen');\nINSERT INTO t3 VALUES(22140, 91274, 'ninety-one thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(22141, 76512, 'seventy-six thousand five hundred twelve');\nINSERT INTO t3 VALUES(22142, 11170, 'eleven thousand one hundred seventy');\nINSERT INTO t3 VALUES(22143, 82167, 'eighty-two thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(22144, 54032, 'fifty-four thousand thirty-two');\nINSERT INTO t3 VALUES(22145, 42032, 'forty-two thousand thirty-two');\nINSERT INTO t3 VALUES(22146, 89546, 'eighty-nine thousand five hundred forty-six');\nINSERT INTO t3 VALUES(22147, 14355, 'fourteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(22148, 57704, 'fifty-seven thousand seven hundred four');\nINSERT INTO t3 VALUES(22149, 75763, 'seventy-five thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(22150, 11673, 'eleven thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(22151, 51496, 'fifty-one thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(22152, 87000, 'eighty-seven thousand');\nINSERT INTO t3 VALUES(22153, 52696, 'fifty-two thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(22154, 3053, 'three thousand fifty-three');\nINSERT INTO t3 VALUES(22155, 49341, 'forty-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(22156, 74935, 'seventy-four thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(22157, 14683, 'fourteen thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(22158, 89605, 'eighty-nine thousand six hundred five');\nINSERT INTO t3 VALUES(22159, 2163, 'two thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(22160, 17040, 'seventeen thousand forty');\nINSERT INTO t3 VALUES(22161, 21273, 'twenty-one thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(22162, 22030, 'twenty-two thousand thirty');\nINSERT INTO t3 VALUES(22163, 67304, 'sixty-seven thousand three hundred four');\nINSERT INTO t3 VALUES(22164, 60825, 'sixty thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(22165, 36470, 'thirty-six thousand four hundred seventy');\nINSERT INTO t3 VALUES(22166, 24639, 'twenty-four thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(22167, 73691, 'seventy-three thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(22168, 78480, 'seventy-eight thousand four hundred eighty');\nINSERT INTO t3 VALUES(22169, 55117, 'fifty-five thousand one hundred seventeen');\nINSERT INTO t3 VALUES(22170, 81330, 'eighty-one thousand three hundred thirty');\nINSERT INTO t3 VALUES(22171, 59072, 'fifty-nine thousand seventy-two');\nINSERT INTO t3 VALUES(22172, 84281, 'eighty-four thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(22173, 99234, 'ninety-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(22174, 43945, 'forty-three thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(22175, 64726, 'sixty-four thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(22176, 62291, 'sixty-two thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(22177, 85230, 'eighty-five thousand two hundred thirty');\nINSERT INTO t3 VALUES(22178, 73236, 'seventy-three thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(22179, 45742, 'forty-five thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(22180, 66694, 'sixty-six thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(22181, 41176, 'forty-one thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(22182, 3667, 'three thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(22183, 1534, 'one thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(22184, 47968, 'forty-seven thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(22185, 42396, 'forty-two thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(22186, 5384, 'five thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(22187, 84542, 'eighty-four thousand five hundred forty-two');\nINSERT INTO t3 VALUES(22188, 17584, 'seventeen thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(22189, 41676, 'forty-one thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(22190, 63638, 'sixty-three thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(22191, 32257, 'thirty-two thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(22192, 27905, 'twenty-seven thousand nine hundred five');\nINSERT INTO t3 VALUES(22193, 42782, 'forty-two thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(22194, 46624, 'forty-six thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(22195, 36917, 'thirty-six thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(22196, 12763, 'twelve thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(22197, 61144, 'sixty-one thousand one hundred forty-four');\nINSERT INTO t3 VALUES(22198, 62532, 'sixty-two thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(22199, 81763, 'eighty-one thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(22200, 49107, 'forty-nine thousand one hundred seven');\nINSERT INTO t3 VALUES(22201, 28109, 'twenty-eight thousand one hundred nine');\nINSERT INTO t3 VALUES(22202, 64467, 'sixty-four thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(22203, 1124, 'one thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(22204, 26410, 'twenty-six thousand four hundred ten');\nINSERT INTO t3 VALUES(22205, 43587, 'forty-three thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(22206, 34727, 'thirty-four thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(22207, 95716, 'ninety-five thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(22208, 92279, 'ninety-two thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(22209, 35788, 'thirty-five thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(22210, 81985, 'eighty-one thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(22211, 7868, 'seven thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(22212, 71330, 'seventy-one thousand three hundred thirty');\nINSERT INTO t3 VALUES(22213, 58023, 'fifty-eight thousand twenty-three');\nINSERT INTO t3 VALUES(22214, 88477, 'eighty-eight thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(22215, 64213, 'sixty-four thousand two hundred thirteen');\nINSERT INTO t3 VALUES(22216, 80826, 'eighty thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(22217, 16682, 'sixteen thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(22218, 80776, 'eighty thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(22219, 53842, 'fifty-three thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(22220, 7046, 'seven thousand forty-six');\nINSERT INTO t3 VALUES(22221, 60079, 'sixty thousand seventy-nine');\nINSERT INTO t3 VALUES(22222, 87325, 'eighty-seven thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(22223, 44786, 'forty-four thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(22224, 23913, 'twenty-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(22225, 54119, 'fifty-four thousand one hundred nineteen');\nINSERT INTO t3 VALUES(22226, 23761, 'twenty-three thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(22227, 12017, 'twelve thousand seventeen');\nINSERT INTO t3 VALUES(22228, 8419, 'eight thousand four hundred nineteen');\nINSERT INTO t3 VALUES(22229, 43363, 'forty-three thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(22230, 21331, 'twenty-one thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(22231, 79039, 'seventy-nine thousand thirty-nine');\nINSERT INTO t3 VALUES(22232, 99062, 'ninety-nine thousand sixty-two');\nINSERT INTO t3 VALUES(22233, 40008, 'forty thousand eight');\nINSERT INTO t3 VALUES(22234, 51089, 'fifty-one thousand eighty-nine');\nINSERT INTO t3 VALUES(22235, 67742, 'sixty-seven thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(22236, 62695, 'sixty-two thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(22237, 28883, 'twenty-eight thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(22238, 85403, 'eighty-five thousand four hundred three');\nINSERT INTO t3 VALUES(22239, 11587, 'eleven thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(22240, 55658, 'fifty-five thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(22241, 93458, 'ninety-three thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(22242, 90818, 'ninety thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(22243, 30392, 'thirty thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(22244, 49103, 'forty-nine thousand one hundred three');\nINSERT INTO t3 VALUES(22245, 63938, 'sixty-three thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(22246, 82730, 'eighty-two thousand seven hundred thirty');\nINSERT INTO t3 VALUES(22247, 74486, 'seventy-four thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(22248, 48080, 'forty-eight thousand eighty');\nINSERT INTO t3 VALUES(22249, 91120, 'ninety-one thousand one hundred twenty');\nINSERT INTO t3 VALUES(22250, 99009, 'ninety-nine thousand nine');\nINSERT INTO t3 VALUES(22251, 31387, 'thirty-one thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(22252, 9844, 'nine thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(22253, 7762, 'seven thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(22254, 76669, 'seventy-six thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(22255, 99610, 'ninety-nine thousand six hundred ten');\nINSERT INTO t3 VALUES(22256, 95934, 'ninety-five thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(22257, 92261, 'ninety-two thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(22258, 2922, 'two thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(22259, 31718, 'thirty-one thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(22260, 16480, 'sixteen thousand four hundred eighty');\nINSERT INTO t3 VALUES(22261, 45693, 'forty-five thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(22262, 74182, 'seventy-four thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(22263, 77439, 'seventy-seven thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(22264, 1307, 'one thousand three hundred seven');\nINSERT INTO t3 VALUES(22265, 98301, 'ninety-eight thousand three hundred one');\nINSERT INTO t3 VALUES(22266, 52033, 'fifty-two thousand thirty-three');\nINSERT INTO t3 VALUES(22267, 50061, 'fifty thousand sixty-one');\nINSERT INTO t3 VALUES(22268, 42286, 'forty-two thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(22269, 12585, 'twelve thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(22270, 95924, 'ninety-five thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(22271, 11159, 'eleven thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(22272, 98641, 'ninety-eight thousand six hundred forty-one');\nINSERT INTO t3 VALUES(22273, 67024, 'sixty-seven thousand twenty-four');\nINSERT INTO t3 VALUES(22274, 3976, 'three thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(22275, 86312, 'eighty-six thousand three hundred twelve');\nINSERT INTO t3 VALUES(22276, 97764, 'ninety-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(22277, 9204, 'nine thousand two hundred four');\nINSERT INTO t3 VALUES(22278, 66999, 'sixty-six thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(22279, 77110, 'seventy-seven thousand one hundred ten');\nINSERT INTO t3 VALUES(22280, 68710, 'sixty-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(22281, 21654, 'twenty-one thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(22282, 32178, 'thirty-two thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(22283, 50938, 'fifty thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(22284, 60472, 'sixty thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(22285, 57332, 'fifty-seven thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(22286, 81781, 'eighty-one thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(22287, 46591, 'forty-six thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(22288, 61060, 'sixty-one thousand sixty');\nINSERT INTO t3 VALUES(22289, 40000, 'forty thousand');\nINSERT INTO t3 VALUES(22290, 17242, 'seventeen thousand two hundred forty-two');\nINSERT INTO t3 VALUES(22291, 47359, 'forty-seven thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(22292, 53394, 'fifty-three thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(22293, 73258, 'seventy-three thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(22294, 37930, 'thirty-seven thousand nine hundred thirty');\nINSERT INTO t3 VALUES(22295, 88902, 'eighty-eight thousand nine hundred two');\nINSERT INTO t3 VALUES(22296, 23865, 'twenty-three thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(22297, 52522, 'fifty-two thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(22298, 10986, 'ten thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(22299, 67658, 'sixty-seven thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(22300, 80184, 'eighty thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(22301, 59131, 'fifty-nine thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(22302, 12625, 'twelve thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(22303, 8368, 'eight thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(22304, 10908, 'ten thousand nine hundred eight');\nINSERT INTO t3 VALUES(22305, 20317, 'twenty thousand three hundred seventeen');\nINSERT INTO t3 VALUES(22306, 44456, 'forty-four thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(22307, 52754, 'fifty-two thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(22308, 51128, 'fifty-one thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(22309, 3730, 'three thousand seven hundred thirty');\nINSERT INTO t3 VALUES(22310, 84201, 'eighty-four thousand two hundred one');\nINSERT INTO t3 VALUES(22311, 25468, 'twenty-five thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(22312, 773, 'seven hundred seventy-three');\nINSERT INTO t3 VALUES(22313, 52296, 'fifty-two thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(22314, 63724, 'sixty-three thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(22315, 27149, 'twenty-seven thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(22316, 97401, 'ninety-seven thousand four hundred one');\nINSERT INTO t3 VALUES(22317, 56210, 'fifty-six thousand two hundred ten');\nINSERT INTO t3 VALUES(22318, 2715, 'two thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(22319, 35745, 'thirty-five thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(22320, 36475, 'thirty-six thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(22321, 25178, 'twenty-five thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(22322, 82726, 'eighty-two thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(22323, 17715, 'seventeen thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(22324, 90969, 'ninety thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(22325, 35633, 'thirty-five thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(22326, 70702, 'seventy thousand seven hundred two');\nINSERT INTO t3 VALUES(22327, 83992, 'eighty-three thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(22328, 29490, 'twenty-nine thousand four hundred ninety');\nINSERT INTO t3 VALUES(22329, 35399, 'thirty-five thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(22330, 85766, 'eighty-five thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(22331, 2271, 'two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(22332, 16685, 'sixteen thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(22333, 20762, 'twenty thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(22334, 94064, 'ninety-four thousand sixty-four');\nINSERT INTO t3 VALUES(22335, 84347, 'eighty-four thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(22336, 86339, 'eighty-six thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(22337, 19130, 'nineteen thousand one hundred thirty');\nINSERT INTO t3 VALUES(22338, 85596, 'eighty-five thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(22339, 50706, 'fifty thousand seven hundred six');\nINSERT INTO t3 VALUES(22340, 56772, 'fifty-six thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(22341, 52976, 'fifty-two thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(22342, 22760, 'twenty-two thousand seven hundred sixty');\nINSERT INTO t3 VALUES(22343, 24765, 'twenty-four thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(22344, 97206, 'ninety-seven thousand two hundred six');\nINSERT INTO t3 VALUES(22345, 63438, 'sixty-three thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(22346, 72553, 'seventy-two thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(22347, 55990, 'fifty-five thousand nine hundred ninety');\nINSERT INTO t3 VALUES(22348, 51665, 'fifty-one thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(22349, 7379, 'seven thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(22350, 90234, 'ninety thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(22351, 69009, 'sixty-nine thousand nine');\nINSERT INTO t3 VALUES(22352, 69078, 'sixty-nine thousand seventy-eight');\nINSERT INTO t3 VALUES(22353, 18873, 'eighteen thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(22354, 20351, 'twenty thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(22355, 23257, 'twenty-three thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(22356, 47683, 'forty-seven thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(22357, 25129, 'twenty-five thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(22358, 42392, 'forty-two thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(22359, 61533, 'sixty-one thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(22360, 74504, 'seventy-four thousand five hundred four');\nINSERT INTO t3 VALUES(22361, 21283, 'twenty-one thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(22362, 34181, 'thirty-four thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(22363, 90907, 'ninety thousand nine hundred seven');\nINSERT INTO t3 VALUES(22364, 20857, 'twenty thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(22365, 81696, 'eighty-one thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(22366, 40214, 'forty thousand two hundred fourteen');\nINSERT INTO t3 VALUES(22367, 63976, 'sixty-three thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(22368, 50398, 'fifty thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(22369, 13364, 'thirteen thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(22370, 97470, 'ninety-seven thousand four hundred seventy');\nINSERT INTO t3 VALUES(22371, 27065, 'twenty-seven thousand sixty-five');\nINSERT INTO t3 VALUES(22372, 73598, 'seventy-three thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(22373, 89848, 'eighty-nine thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(22374, 42272, 'forty-two thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(22375, 60287, 'sixty thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(22376, 3178, 'three thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(22377, 57321, 'fifty-seven thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(22378, 78679, 'seventy-eight thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(22379, 86227, 'eighty-six thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(22380, 85683, 'eighty-five thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(22381, 47749, 'forty-seven thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(22382, 1655, 'one thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(22383, 98561, 'ninety-eight thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(22384, 66277, 'sixty-six thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(22385, 27619, 'twenty-seven thousand six hundred nineteen');\nINSERT INTO t3 VALUES(22386, 33063, 'thirty-three thousand sixty-three');\nINSERT INTO t3 VALUES(22387, 51934, 'fifty-one thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(22388, 51697, 'fifty-one thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(22389, 94067, 'ninety-four thousand sixty-seven');\nINSERT INTO t3 VALUES(22390, 9406, 'nine thousand four hundred six');\nINSERT INTO t3 VALUES(22391, 77419, 'seventy-seven thousand four hundred nineteen');\nINSERT INTO t3 VALUES(22392, 51600, 'fifty-one thousand six hundred');\nINSERT INTO t3 VALUES(22393, 68734, 'sixty-eight thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(22394, 94698, 'ninety-four thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(22395, 26845, 'twenty-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(22396, 33145, 'thirty-three thousand one hundred forty-five');\nINSERT INTO t3 VALUES(22397, 46414, 'forty-six thousand four hundred fourteen');\nINSERT INTO t3 VALUES(22398, 94506, 'ninety-four thousand five hundred six');\nINSERT INTO t3 VALUES(22399, 95090, 'ninety-five thousand ninety');\nINSERT INTO t3 VALUES(22400, 6585, 'six thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(22401, 40779, 'forty thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(22402, 96607, 'ninety-six thousand six hundred seven');\nINSERT INTO t3 VALUES(22403, 64492, 'sixty-four thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(22404, 84078, 'eighty-four thousand seventy-eight');\nINSERT INTO t3 VALUES(22405, 36908, 'thirty-six thousand nine hundred eight');\nINSERT INTO t3 VALUES(22406, 40657, 'forty thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(22407, 20646, 'twenty thousand six hundred forty-six');\nINSERT INTO t3 VALUES(22408, 60510, 'sixty thousand five hundred ten');\nINSERT INTO t3 VALUES(22409, 73961, 'seventy-three thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(22410, 13169, 'thirteen thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(22411, 21915, 'twenty-one thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(22412, 11303, 'eleven thousand three hundred three');\nINSERT INTO t3 VALUES(22413, 39326, 'thirty-nine thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(22414, 5671, 'five thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(22415, 52919, 'fifty-two thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(22416, 75336, 'seventy-five thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(22417, 99578, 'ninety-nine thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(22418, 32711, 'thirty-two thousand seven hundred eleven');\nINSERT INTO t3 VALUES(22419, 36038, 'thirty-six thousand thirty-eight');\nINSERT INTO t3 VALUES(22420, 6707, 'six thousand seven hundred seven');\nINSERT INTO t3 VALUES(22421, 3678, 'three thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(22422, 30427, 'thirty thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(22423, 25681, 'twenty-five thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(22424, 86599, 'eighty-six thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(22425, 80271, 'eighty thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(22426, 43175, 'forty-three thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(22427, 81706, 'eighty-one thousand seven hundred six');\nINSERT INTO t3 VALUES(22428, 83982, 'eighty-three thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(22429, 54881, 'fifty-four thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(22430, 31451, 'thirty-one thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(22431, 4086, 'four thousand eighty-six');\nINSERT INTO t3 VALUES(22432, 69995, 'sixty-nine thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(22433, 49166, 'forty-nine thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(22434, 89482, 'eighty-nine thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(22435, 82005, 'eighty-two thousand five');\nINSERT INTO t3 VALUES(22436, 49004, 'forty-nine thousand four');\nINSERT INTO t3 VALUES(22437, 63147, 'sixty-three thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(22438, 80267, 'eighty thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(22439, 50796, 'fifty thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(22440, 75097, 'seventy-five thousand ninety-seven');\nINSERT INTO t3 VALUES(22441, 13363, 'thirteen thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(22442, 8339, 'eight thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(22443, 34388, 'thirty-four thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(22444, 3952, 'three thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(22445, 13186, 'thirteen thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(22446, 30296, 'thirty thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(22447, 31017, 'thirty-one thousand seventeen');\nINSERT INTO t3 VALUES(22448, 17804, 'seventeen thousand eight hundred four');\nINSERT INTO t3 VALUES(22449, 34962, 'thirty-four thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(22450, 55189, 'fifty-five thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(22451, 91833, 'ninety-one thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(22452, 49688, 'forty-nine thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(22453, 66182, 'sixty-six thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(22454, 99582, 'ninety-nine thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(22455, 86313, 'eighty-six thousand three hundred thirteen');\nINSERT INTO t3 VALUES(22456, 35188, 'thirty-five thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(22457, 96210, 'ninety-six thousand two hundred ten');\nINSERT INTO t3 VALUES(22458, 95687, 'ninety-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(22459, 91745, 'ninety-one thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(22460, 82713, 'eighty-two thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(22461, 46026, 'forty-six thousand twenty-six');\nINSERT INTO t3 VALUES(22462, 96590, 'ninety-six thousand five hundred ninety');\nINSERT INTO t3 VALUES(22463, 26335, 'twenty-six thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(22464, 73744, 'seventy-three thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(22465, 4912, 'four thousand nine hundred twelve');\nINSERT INTO t3 VALUES(22466, 74079, 'seventy-four thousand seventy-nine');\nINSERT INTO t3 VALUES(22467, 71283, 'seventy-one thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(22468, 82510, 'eighty-two thousand five hundred ten');\nINSERT INTO t3 VALUES(22469, 36400, 'thirty-six thousand four hundred');\nINSERT INTO t3 VALUES(22470, 24584, 'twenty-four thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(22471, 62690, 'sixty-two thousand six hundred ninety');\nINSERT INTO t3 VALUES(22472, 74182, 'seventy-four thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(22473, 59501, 'fifty-nine thousand five hundred one');\nINSERT INTO t3 VALUES(22474, 73906, 'seventy-three thousand nine hundred six');\nINSERT INTO t3 VALUES(22475, 84201, 'eighty-four thousand two hundred one');\nINSERT INTO t3 VALUES(22476, 19013, 'nineteen thousand thirteen');\nINSERT INTO t3 VALUES(22477, 21821, 'twenty-one thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(22478, 47711, 'forty-seven thousand seven hundred eleven');\nINSERT INTO t3 VALUES(22479, 10009, 'ten thousand nine');\nINSERT INTO t3 VALUES(22480, 23909, 'twenty-three thousand nine hundred nine');\nINSERT INTO t3 VALUES(22481, 39934, 'thirty-nine thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(22482, 76259, 'seventy-six thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(22483, 26065, 'twenty-six thousand sixty-five');\nINSERT INTO t3 VALUES(22484, 39543, 'thirty-nine thousand five hundred forty-three');\nINSERT INTO t3 VALUES(22485, 49427, 'forty-nine thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(22486, 91481, 'ninety-one thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(22487, 51955, 'fifty-one thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(22488, 73018, 'seventy-three thousand eighteen');\nINSERT INTO t3 VALUES(22489, 42658, 'forty-two thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(22490, 1012, 'one thousand twelve');\nINSERT INTO t3 VALUES(22491, 66699, 'sixty-six thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(22492, 99683, 'ninety-nine thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(22493, 26364, 'twenty-six thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(22494, 14630, 'fourteen thousand six hundred thirty');\nINSERT INTO t3 VALUES(22495, 97375, 'ninety-seven thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(22496, 97080, 'ninety-seven thousand eighty');\nINSERT INTO t3 VALUES(22497, 2373, 'two thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(22498, 41211, 'forty-one thousand two hundred eleven');\nINSERT INTO t3 VALUES(22499, 29659, 'twenty-nine thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(22500, 6419, 'six thousand four hundred nineteen');\nINSERT INTO t3 VALUES(22501, 17338, 'seventeen thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(22502, 76924, 'seventy-six thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(22503, 19371, 'nineteen thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(22504, 20685, 'twenty thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(22505, 36069, 'thirty-six thousand sixty-nine');\nINSERT INTO t3 VALUES(22506, 73981, 'seventy-three thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(22507, 13129, 'thirteen thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(22508, 88970, 'eighty-eight thousand nine hundred seventy');\nINSERT INTO t3 VALUES(22509, 82916, 'eighty-two thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(22510, 38938, 'thirty-eight thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(22511, 94741, 'ninety-four thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(22512, 38227, 'thirty-eight thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(22513, 68239, 'sixty-eight thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(22514, 81326, 'eighty-one thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(22515, 94805, 'ninety-four thousand eight hundred five');\nINSERT INTO t3 VALUES(22516, 6101, 'six thousand one hundred one');\nINSERT INTO t3 VALUES(22517, 14592, 'fourteen thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(22518, 99163, 'ninety-nine thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(22519, 18708, 'eighteen thousand seven hundred eight');\nINSERT INTO t3 VALUES(22520, 51549, 'fifty-one thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(22521, 56196, 'fifty-six thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(22522, 13361, 'thirteen thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(22523, 821, 'eight hundred twenty-one');\nINSERT INTO t3 VALUES(22524, 67528, 'sixty-seven thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(22525, 44933, 'forty-four thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(22526, 54841, 'fifty-four thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(22527, 77904, 'seventy-seven thousand nine hundred four');\nINSERT INTO t3 VALUES(22528, 12606, 'twelve thousand six hundred six');\nINSERT INTO t3 VALUES(22529, 14951, 'fourteen thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(22530, 62014, 'sixty-two thousand fourteen');\nINSERT INTO t3 VALUES(22531, 14627, 'fourteen thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(22532, 99277, 'ninety-nine thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(22533, 69933, 'sixty-nine thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(22534, 58272, 'fifty-eight thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(22535, 47217, 'forty-seven thousand two hundred seventeen');\nINSERT INTO t3 VALUES(22536, 78599, 'seventy-eight thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(22537, 10699, 'ten thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(22538, 60801, 'sixty thousand eight hundred one');\nINSERT INTO t3 VALUES(22539, 23594, 'twenty-three thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(22540, 91715, 'ninety-one thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(22541, 10879, 'ten thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(22542, 53661, 'fifty-three thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(22543, 8007, 'eight thousand seven');\nINSERT INTO t3 VALUES(22544, 54731, 'fifty-four thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(22545, 38540, 'thirty-eight thousand five hundred forty');\nINSERT INTO t3 VALUES(22546, 1512, 'one thousand five hundred twelve');\nINSERT INTO t3 VALUES(22547, 5898, 'five thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(22548, 79462, 'seventy-nine thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(22549, 68885, 'sixty-eight thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(22550, 9204, 'nine thousand two hundred four');\nINSERT INTO t3 VALUES(22551, 40727, 'forty thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(22552, 63189, 'sixty-three thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(22553, 8225, 'eight thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(22554, 10054, 'ten thousand fifty-four');\nINSERT INTO t3 VALUES(22555, 91146, 'ninety-one thousand one hundred forty-six');\nINSERT INTO t3 VALUES(22556, 15561, 'fifteen thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(22557, 99349, 'ninety-nine thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(22558, 13638, 'thirteen thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(22559, 77478, 'seventy-seven thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(22560, 70421, 'seventy thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(22561, 63773, 'sixty-three thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(22562, 21984, 'twenty-one thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(22563, 26207, 'twenty-six thousand two hundred seven');\nINSERT INTO t3 VALUES(22564, 57262, 'fifty-seven thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(22565, 14062, 'fourteen thousand sixty-two');\nINSERT INTO t3 VALUES(22566, 54079, 'fifty-four thousand seventy-nine');\nINSERT INTO t3 VALUES(22567, 67119, 'sixty-seven thousand one hundred nineteen');\nINSERT INTO t3 VALUES(22568, 52911, 'fifty-two thousand nine hundred eleven');\nINSERT INTO t3 VALUES(22569, 68926, 'sixty-eight thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(22570, 20437, 'twenty thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(22571, 10588, 'ten thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(22572, 60399, 'sixty thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(22573, 45134, 'forty-five thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(22574, 38698, 'thirty-eight thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(22575, 89621, 'eighty-nine thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(22576, 13891, 'thirteen thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(22577, 42727, 'forty-two thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(22578, 17700, 'seventeen thousand seven hundred');\nINSERT INTO t3 VALUES(22579, 78109, 'seventy-eight thousand one hundred nine');\nINSERT INTO t3 VALUES(22580, 13448, 'thirteen thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(22581, 80599, 'eighty thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(22582, 85955, 'eighty-five thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(22583, 47326, 'forty-seven thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(22584, 95948, 'ninety-five thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(22585, 80920, 'eighty thousand nine hundred twenty');\nINSERT INTO t3 VALUES(22586, 71642, 'seventy-one thousand six hundred forty-two');\nINSERT INTO t3 VALUES(22587, 35628, 'thirty-five thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(22588, 63218, 'sixty-three thousand two hundred eighteen');\nINSERT INTO t3 VALUES(22589, 88825, 'eighty-eight thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(22590, 62320, 'sixty-two thousand three hundred twenty');\nINSERT INTO t3 VALUES(22591, 46363, 'forty-six thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(22592, 14135, 'fourteen thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(22593, 34076, 'thirty-four thousand seventy-six');\nINSERT INTO t3 VALUES(22594, 53105, 'fifty-three thousand one hundred five');\nINSERT INTO t3 VALUES(22595, 31265, 'thirty-one thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(22596, 86163, 'eighty-six thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(22597, 68260, 'sixty-eight thousand two hundred sixty');\nINSERT INTO t3 VALUES(22598, 59241, 'fifty-nine thousand two hundred forty-one');\nINSERT INTO t3 VALUES(22599, 68074, 'sixty-eight thousand seventy-four');\nINSERT INTO t3 VALUES(22600, 96699, 'ninety-six thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(22601, 29323, 'twenty-nine thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(22602, 69624, 'sixty-nine thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(22603, 68641, 'sixty-eight thousand six hundred forty-one');\nINSERT INTO t3 VALUES(22604, 10943, 'ten thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(22605, 86206, 'eighty-six thousand two hundred six');\nINSERT INTO t3 VALUES(22606, 17687, 'seventeen thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(22607, 69124, 'sixty-nine thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(22608, 37262, 'thirty-seven thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(22609, 76436, 'seventy-six thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(22610, 8463, 'eight thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(22611, 77467, 'seventy-seven thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(22612, 8572, 'eight thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(22613, 68056, 'sixty-eight thousand fifty-six');\nINSERT INTO t3 VALUES(22614, 93635, 'ninety-three thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(22615, 54697, 'fifty-four thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(22616, 21655, 'twenty-one thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(22617, 99454, 'ninety-nine thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(22618, 48855, 'forty-eight thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(22619, 86744, 'eighty-six thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(22620, 10357, 'ten thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(22621, 37591, 'thirty-seven thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(22622, 44149, 'forty-four thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(22623, 13913, 'thirteen thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(22624, 38012, 'thirty-eight thousand twelve');\nINSERT INTO t3 VALUES(22625, 77186, 'seventy-seven thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(22626, 38275, 'thirty-eight thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(22627, 82596, 'eighty-two thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(22628, 31863, 'thirty-one thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(22629, 59071, 'fifty-nine thousand seventy-one');\nINSERT INTO t3 VALUES(22630, 17881, 'seventeen thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(22631, 67570, 'sixty-seven thousand five hundred seventy');\nINSERT INTO t3 VALUES(22632, 43826, 'forty-three thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(22633, 83633, 'eighty-three thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(22634, 31002, 'thirty-one thousand two');\nINSERT INTO t3 VALUES(22635, 60684, 'sixty thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(22636, 28923, 'twenty-eight thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(22637, 22175, 'twenty-two thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(22638, 89221, 'eighty-nine thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(22639, 63361, 'sixty-three thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(22640, 58237, 'fifty-eight thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(22641, 35054, 'thirty-five thousand fifty-four');\nINSERT INTO t3 VALUES(22642, 1424, 'one thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(22643, 43666, 'forty-three thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(22644, 40409, 'forty thousand four hundred nine');\nINSERT INTO t3 VALUES(22645, 33682, 'thirty-three thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(22646, 65654, 'sixty-five thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(22647, 38851, 'thirty-eight thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(22648, 90697, 'ninety thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(22649, 55186, 'fifty-five thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(22650, 47660, 'forty-seven thousand six hundred sixty');\nINSERT INTO t3 VALUES(22651, 73333, 'seventy-three thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(22652, 80656, 'eighty thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(22653, 90456, 'ninety thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(22654, 80206, 'eighty thousand two hundred six');\nINSERT INTO t3 VALUES(22655, 13317, 'thirteen thousand three hundred seventeen');\nINSERT INTO t3 VALUES(22656, 92130, 'ninety-two thousand one hundred thirty');\nINSERT INTO t3 VALUES(22657, 69691, 'sixty-nine thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(22658, 49643, 'forty-nine thousand six hundred forty-three');\nINSERT INTO t3 VALUES(22659, 72908, 'seventy-two thousand nine hundred eight');\nINSERT INTO t3 VALUES(22660, 17863, 'seventeen thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(22661, 56125, 'fifty-six thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(22662, 56476, 'fifty-six thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(22663, 47629, 'forty-seven thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(22664, 95842, 'ninety-five thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(22665, 30306, 'thirty thousand three hundred six');\nINSERT INTO t3 VALUES(22666, 73791, 'seventy-three thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(22667, 93124, 'ninety-three thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(22668, 72960, 'seventy-two thousand nine hundred sixty');\nINSERT INTO t3 VALUES(22669, 39190, 'thirty-nine thousand one hundred ninety');\nINSERT INTO t3 VALUES(22670, 31214, 'thirty-one thousand two hundred fourteen');\nINSERT INTO t3 VALUES(22671, 24897, 'twenty-four thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(22672, 36517, 'thirty-six thousand five hundred seventeen');\nINSERT INTO t3 VALUES(22673, 1381, 'one thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(22674, 81193, 'eighty-one thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(22675, 49723, 'forty-nine thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(22676, 58089, 'fifty-eight thousand eighty-nine');\nINSERT INTO t3 VALUES(22677, 42656, 'forty-two thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(22678, 53931, 'fifty-three thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(22679, 98745, 'ninety-eight thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(22680, 70780, 'seventy thousand seven hundred eighty');\nINSERT INTO t3 VALUES(22681, 42708, 'forty-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(22682, 94266, 'ninety-four thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(22683, 35797, 'thirty-five thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(22684, 94661, 'ninety-four thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(22685, 725, 'seven hundred twenty-five');\nINSERT INTO t3 VALUES(22686, 66150, 'sixty-six thousand one hundred fifty');\nINSERT INTO t3 VALUES(22687, 47855, 'forty-seven thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(22688, 51487, 'fifty-one thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(22689, 85336, 'eighty-five thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(22690, 58295, 'fifty-eight thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(22691, 79736, 'seventy-nine thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(22692, 62021, 'sixty-two thousand twenty-one');\nINSERT INTO t3 VALUES(22693, 47243, 'forty-seven thousand two hundred forty-three');\nINSERT INTO t3 VALUES(22694, 71839, 'seventy-one thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(22695, 80541, 'eighty thousand five hundred forty-one');\nINSERT INTO t3 VALUES(22696, 55725, 'fifty-five thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(22697, 12857, 'twelve thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(22698, 80649, 'eighty thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(22699, 24997, 'twenty-four thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(22700, 56304, 'fifty-six thousand three hundred four');\nINSERT INTO t3 VALUES(22701, 5252, 'five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(22702, 43552, 'forty-three thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(22703, 5, 'five');\nINSERT INTO t3 VALUES(22704, 13340, 'thirteen thousand three hundred forty');\nINSERT INTO t3 VALUES(22705, 2375, 'two thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(22706, 44108, 'forty-four thousand one hundred eight');\nINSERT INTO t3 VALUES(22707, 95838, 'ninety-five thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(22708, 8189, 'eight thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(22709, 84953, 'eighty-four thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(22710, 24689, 'twenty-four thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(22711, 84885, 'eighty-four thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(22712, 1806, 'one thousand eight hundred six');\nINSERT INTO t3 VALUES(22713, 49348, 'forty-nine thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(22714, 67161, 'sixty-seven thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(22715, 94487, 'ninety-four thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(22716, 38308, 'thirty-eight thousand three hundred eight');\nINSERT INTO t3 VALUES(22717, 17704, 'seventeen thousand seven hundred four');\nINSERT INTO t3 VALUES(22718, 22828, 'twenty-two thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(22719, 48924, 'forty-eight thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(22720, 49914, 'forty-nine thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(22721, 97594, 'ninety-seven thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(22722, 74533, 'seventy-four thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(22723, 35492, 'thirty-five thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(22724, 22402, 'twenty-two thousand four hundred two');\nINSERT INTO t3 VALUES(22725, 19780, 'nineteen thousand seven hundred eighty');\nINSERT INTO t3 VALUES(22726, 33038, 'thirty-three thousand thirty-eight');\nINSERT INTO t3 VALUES(22727, 66726, 'sixty-six thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(22728, 30253, 'thirty thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(22729, 76364, 'seventy-six thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(22730, 9212, 'nine thousand two hundred twelve');\nINSERT INTO t3 VALUES(22731, 11843, 'eleven thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(22732, 58408, 'fifty-eight thousand four hundred eight');\nINSERT INTO t3 VALUES(22733, 33650, 'thirty-three thousand six hundred fifty');\nINSERT INTO t3 VALUES(22734, 9744, 'nine thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(22735, 82056, 'eighty-two thousand fifty-six');\nINSERT INTO t3 VALUES(22736, 94458, 'ninety-four thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(22737, 26991, 'twenty-six thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(22738, 42960, 'forty-two thousand nine hundred sixty');\nINSERT INTO t3 VALUES(22739, 13422, 'thirteen thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(22740, 9496, 'nine thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(22741, 30449, 'thirty thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(22742, 57562, 'fifty-seven thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(22743, 54016, 'fifty-four thousand sixteen');\nINSERT INTO t3 VALUES(22744, 97907, 'ninety-seven thousand nine hundred seven');\nINSERT INTO t3 VALUES(22745, 81128, 'eighty-one thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(22746, 27930, 'twenty-seven thousand nine hundred thirty');\nINSERT INTO t3 VALUES(22747, 85207, 'eighty-five thousand two hundred seven');\nINSERT INTO t3 VALUES(22748, 39185, 'thirty-nine thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(22749, 77846, 'seventy-seven thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(22750, 51781, 'fifty-one thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(22751, 79854, 'seventy-nine thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(22752, 9606, 'nine thousand six hundred six');\nINSERT INTO t3 VALUES(22753, 50958, 'fifty thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(22754, 16512, 'sixteen thousand five hundred twelve');\nINSERT INTO t3 VALUES(22755, 61013, 'sixty-one thousand thirteen');\nINSERT INTO t3 VALUES(22756, 18658, 'eighteen thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(22757, 58300, 'fifty-eight thousand three hundred');\nINSERT INTO t3 VALUES(22758, 98007, 'ninety-eight thousand seven');\nINSERT INTO t3 VALUES(22759, 71426, 'seventy-one thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(22760, 75233, 'seventy-five thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(22761, 47294, 'forty-seven thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(22762, 15051, 'fifteen thousand fifty-one');\nINSERT INTO t3 VALUES(22763, 70283, 'seventy thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(22764, 31152, 'thirty-one thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(22765, 3590, 'three thousand five hundred ninety');\nINSERT INTO t3 VALUES(22766, 65487, 'sixty-five thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(22767, 24637, 'twenty-four thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(22768, 70476, 'seventy thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(22769, 22345, 'twenty-two thousand three hundred forty-five');\nINSERT INTO t3 VALUES(22770, 53565, 'fifty-three thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(22771, 69842, 'sixty-nine thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(22772, 57504, 'fifty-seven thousand five hundred four');\nINSERT INTO t3 VALUES(22773, 13734, 'thirteen thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(22774, 64786, 'sixty-four thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(22775, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t3 VALUES(22776, 76605, 'seventy-six thousand six hundred five');\nINSERT INTO t3 VALUES(22777, 40969, 'forty thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(22778, 7010, 'seven thousand ten');\nINSERT INTO t3 VALUES(22779, 14256, 'fourteen thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(22780, 80568, 'eighty thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(22781, 86164, 'eighty-six thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(22782, 30268, 'thirty thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(22783, 45155, 'forty-five thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(22784, 89211, 'eighty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(22785, 32628, 'thirty-two thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(22786, 63124, 'sixty-three thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(22787, 34098, 'thirty-four thousand ninety-eight');\nINSERT INTO t3 VALUES(22788, 81545, 'eighty-one thousand five hundred forty-five');\nINSERT INTO t3 VALUES(22789, 18780, 'eighteen thousand seven hundred eighty');\nINSERT INTO t3 VALUES(22790, 94641, 'ninety-four thousand six hundred forty-one');\nINSERT INTO t3 VALUES(22791, 11975, 'eleven thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(22792, 18230, 'eighteen thousand two hundred thirty');\nINSERT INTO t3 VALUES(22793, 97006, 'ninety-seven thousand six');\nINSERT INTO t3 VALUES(22794, 44021, 'forty-four thousand twenty-one');\nINSERT INTO t3 VALUES(22795, 90412, 'ninety thousand four hundred twelve');\nINSERT INTO t3 VALUES(22796, 58337, 'fifty-eight thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(22797, 64127, 'sixty-four thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(22798, 18269, 'eighteen thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(22799, 4267, 'four thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(22800, 68632, 'sixty-eight thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(22801, 53660, 'fifty-three thousand six hundred sixty');\nINSERT INTO t3 VALUES(22802, 59516, 'fifty-nine thousand five hundred sixteen');\nINSERT INTO t3 VALUES(22803, 84911, 'eighty-four thousand nine hundred eleven');\nINSERT INTO t3 VALUES(22804, 68153, 'sixty-eight thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(22805, 20918, 'twenty thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(22806, 51369, 'fifty-one thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(22807, 98827, 'ninety-eight thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(22808, 31139, 'thirty-one thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(22809, 30834, 'thirty thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(22810, 47328, 'forty-seven thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(22811, 12819, 'twelve thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(22812, 95853, 'ninety-five thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(22813, 56234, 'fifty-six thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(22814, 63364, 'sixty-three thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(22815, 50632, 'fifty thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(22816, 96322, 'ninety-six thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(22817, 31209, 'thirty-one thousand two hundred nine');\nINSERT INTO t3 VALUES(22818, 79984, 'seventy-nine thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(22819, 14699, 'fourteen thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(22820, 46747, 'forty-six thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(22821, 67471, 'sixty-seven thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(22822, 58140, 'fifty-eight thousand one hundred forty');\nINSERT INTO t3 VALUES(22823, 66496, 'sixty-six thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(22824, 1201, 'one thousand two hundred one');\nINSERT INTO t3 VALUES(22825, 73674, 'seventy-three thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(22826, 54786, 'fifty-four thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(22827, 17528, 'seventeen thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(22828, 97169, 'ninety-seven thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(22829, 29489, 'twenty-nine thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(22830, 53143, 'fifty-three thousand one hundred forty-three');\nINSERT INTO t3 VALUES(22831, 60344, 'sixty thousand three hundred forty-four');\nINSERT INTO t3 VALUES(22832, 40566, 'forty thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(22833, 53504, 'fifty-three thousand five hundred four');\nINSERT INTO t3 VALUES(22834, 68612, 'sixty-eight thousand six hundred twelve');\nINSERT INTO t3 VALUES(22835, 47093, 'forty-seven thousand ninety-three');\nINSERT INTO t3 VALUES(22836, 10012, 'ten thousand twelve');\nINSERT INTO t3 VALUES(22837, 38837, 'thirty-eight thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(22838, 32262, 'thirty-two thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(22839, 92035, 'ninety-two thousand thirty-five');\nINSERT INTO t3 VALUES(22840, 45549, 'forty-five thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(22841, 59702, 'fifty-nine thousand seven hundred two');\nINSERT INTO t3 VALUES(22842, 86555, 'eighty-six thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(22843, 29582, 'twenty-nine thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(22844, 55207, 'fifty-five thousand two hundred seven');\nINSERT INTO t3 VALUES(22845, 61230, 'sixty-one thousand two hundred thirty');\nINSERT INTO t3 VALUES(22846, 42412, 'forty-two thousand four hundred twelve');\nINSERT INTO t3 VALUES(22847, 58210, 'fifty-eight thousand two hundred ten');\nINSERT INTO t3 VALUES(22848, 44653, 'forty-four thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(22849, 12389, 'twelve thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(22850, 35040, 'thirty-five thousand forty');\nINSERT INTO t3 VALUES(22851, 28941, 'twenty-eight thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(22852, 93101, 'ninety-three thousand one hundred one');\nINSERT INTO t3 VALUES(22853, 10222, 'ten thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(22854, 82013, 'eighty-two thousand thirteen');\nINSERT INTO t3 VALUES(22855, 275, 'two hundred seventy-five');\nINSERT INTO t3 VALUES(22856, 4327, 'four thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(22857, 49325, 'forty-nine thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(22858, 2367, 'two thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(22859, 63900, 'sixty-three thousand nine hundred');\nINSERT INTO t3 VALUES(22860, 97488, 'ninety-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(22861, 49314, 'forty-nine thousand three hundred fourteen');\nINSERT INTO t3 VALUES(22862, 80974, 'eighty thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(22863, 16594, 'sixteen thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(22864, 41280, 'forty-one thousand two hundred eighty');\nINSERT INTO t3 VALUES(22865, 61373, 'sixty-one thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(22866, 19224, 'nineteen thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(22867, 43507, 'forty-three thousand five hundred seven');\nINSERT INTO t3 VALUES(22868, 31376, 'thirty-one thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(22869, 39992, 'thirty-nine thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(22870, 31748, 'thirty-one thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(22871, 99487, 'ninety-nine thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(22872, 35881, 'thirty-five thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(22873, 33317, 'thirty-three thousand three hundred seventeen');\nINSERT INTO t3 VALUES(22874, 13641, 'thirteen thousand six hundred forty-one');\nINSERT INTO t3 VALUES(22875, 3369, 'three thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(22876, 68216, 'sixty-eight thousand two hundred sixteen');\nINSERT INTO t3 VALUES(22877, 48698, 'forty-eight thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(22878, 45380, 'forty-five thousand three hundred eighty');\nINSERT INTO t3 VALUES(22879, 54102, 'fifty-four thousand one hundred two');\nINSERT INTO t3 VALUES(22880, 92108, 'ninety-two thousand one hundred eight');\nINSERT INTO t3 VALUES(22881, 46749, 'forty-six thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(22882, 69667, 'sixty-nine thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(22883, 3973, 'three thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(22884, 62945, 'sixty-two thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(22885, 49955, 'forty-nine thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(22886, 86100, 'eighty-six thousand one hundred');\nINSERT INTO t3 VALUES(22887, 85299, 'eighty-five thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(22888, 65291, 'sixty-five thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(22889, 11694, 'eleven thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(22890, 90309, 'ninety thousand three hundred nine');\nINSERT INTO t3 VALUES(22891, 16983, 'sixteen thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(22892, 12167, 'twelve thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(22893, 24894, 'twenty-four thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(22894, 39342, 'thirty-nine thousand three hundred forty-two');\nINSERT INTO t3 VALUES(22895, 660, 'six hundred sixty');\nINSERT INTO t3 VALUES(22896, 15285, 'fifteen thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(22897, 61519, 'sixty-one thousand five hundred nineteen');\nINSERT INTO t3 VALUES(22898, 40291, 'forty thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(22899, 36560, 'thirty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(22900, 84379, 'eighty-four thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(22901, 76362, 'seventy-six thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(22902, 89723, 'eighty-nine thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(22903, 58355, 'fifty-eight thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(22904, 45419, 'forty-five thousand four hundred nineteen');\nINSERT INTO t3 VALUES(22905, 32225, 'thirty-two thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(22906, 97406, 'ninety-seven thousand four hundred six');\nINSERT INTO t3 VALUES(22907, 56868, 'fifty-six thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(22908, 93462, 'ninety-three thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(22909, 63205, 'sixty-three thousand two hundred five');\nINSERT INTO t3 VALUES(22910, 27987, 'twenty-seven thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(22911, 59525, 'fifty-nine thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(22912, 70262, 'seventy thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(22913, 39374, 'thirty-nine thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(22914, 40047, 'forty thousand forty-seven');\nINSERT INTO t3 VALUES(22915, 22047, 'twenty-two thousand forty-seven');\nINSERT INTO t3 VALUES(22916, 81424, 'eighty-one thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(22917, 20440, 'twenty thousand four hundred forty');\nINSERT INTO t3 VALUES(22918, 75087, 'seventy-five thousand eighty-seven');\nINSERT INTO t3 VALUES(22919, 81908, 'eighty-one thousand nine hundred eight');\nINSERT INTO t3 VALUES(22920, 21473, 'twenty-one thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(22921, 35063, 'thirty-five thousand sixty-three');\nINSERT INTO t3 VALUES(22922, 62545, 'sixty-two thousand five hundred forty-five');\nINSERT INTO t3 VALUES(22923, 59027, 'fifty-nine thousand twenty-seven');\nINSERT INTO t3 VALUES(22924, 23539, 'twenty-three thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(22925, 67118, 'sixty-seven thousand one hundred eighteen');\nINSERT INTO t3 VALUES(22926, 32933, 'thirty-two thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(22927, 18681, 'eighteen thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(22928, 58604, 'fifty-eight thousand six hundred four');\nINSERT INTO t3 VALUES(22929, 40455, 'forty thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(22930, 88400, 'eighty-eight thousand four hundred');\nINSERT INTO t3 VALUES(22931, 28814, 'twenty-eight thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(22932, 63577, 'sixty-three thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(22933, 4947, 'four thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(22934, 6039, 'six thousand thirty-nine');\nINSERT INTO t3 VALUES(22935, 8664, 'eight thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(22936, 15823, 'fifteen thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(22937, 64187, 'sixty-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(22938, 24621, 'twenty-four thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(22939, 83123, 'eighty-three thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(22940, 67581, 'sixty-seven thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(22941, 74700, 'seventy-four thousand seven hundred');\nINSERT INTO t3 VALUES(22942, 16105, 'sixteen thousand one hundred five');\nINSERT INTO t3 VALUES(22943, 80916, 'eighty thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(22944, 34414, 'thirty-four thousand four hundred fourteen');\nINSERT INTO t3 VALUES(22945, 47875, 'forty-seven thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(22946, 90804, 'ninety thousand eight hundred four');\nINSERT INTO t3 VALUES(22947, 2445, 'two thousand four hundred forty-five');\nINSERT INTO t3 VALUES(22948, 95420, 'ninety-five thousand four hundred twenty');\nINSERT INTO t3 VALUES(22949, 25641, 'twenty-five thousand six hundred forty-one');\nINSERT INTO t3 VALUES(22950, 42960, 'forty-two thousand nine hundred sixty');\nINSERT INTO t3 VALUES(22951, 79147, 'seventy-nine thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(22952, 44372, 'forty-four thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(22953, 97313, 'ninety-seven thousand three hundred thirteen');\nINSERT INTO t3 VALUES(22954, 14157, 'fourteen thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(22955, 52264, 'fifty-two thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(22956, 35769, 'thirty-five thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(22957, 1400, 'one thousand four hundred');\nINSERT INTO t3 VALUES(22958, 8281, 'eight thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(22959, 18991, 'eighteen thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(22960, 38254, 'thirty-eight thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(22961, 26838, 'twenty-six thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(22962, 76795, 'seventy-six thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(22963, 62194, 'sixty-two thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(22964, 16614, 'sixteen thousand six hundred fourteen');\nINSERT INTO t3 VALUES(22965, 94025, 'ninety-four thousand twenty-five');\nINSERT INTO t3 VALUES(22966, 70055, 'seventy thousand fifty-five');\nINSERT INTO t3 VALUES(22967, 37001, 'thirty-seven thousand one');\nINSERT INTO t3 VALUES(22968, 1595, 'one thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(22969, 41386, 'forty-one thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(22970, 80505, 'eighty thousand five hundred five');\nINSERT INTO t3 VALUES(22971, 19489, 'nineteen thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(22972, 3409, 'three thousand four hundred nine');\nINSERT INTO t3 VALUES(22973, 72882, 'seventy-two thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(22974, 48677, 'forty-eight thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(22975, 23885, 'twenty-three thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(22976, 14376, 'fourteen thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(22977, 53459, 'fifty-three thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(22978, 64701, 'sixty-four thousand seven hundred one');\nINSERT INTO t3 VALUES(22979, 34054, 'thirty-four thousand fifty-four');\nINSERT INTO t3 VALUES(22980, 46734, 'forty-six thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(22981, 91189, 'ninety-one thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(22982, 14075, 'fourteen thousand seventy-five');\nINSERT INTO t3 VALUES(22983, 39615, 'thirty-nine thousand six hundred fifteen');\nINSERT INTO t3 VALUES(22984, 85059, 'eighty-five thousand fifty-nine');\nINSERT INTO t3 VALUES(22985, 59457, 'fifty-nine thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(22986, 10143, 'ten thousand one hundred forty-three');\nINSERT INTO t3 VALUES(22987, 75054, 'seventy-five thousand fifty-four');\nINSERT INTO t3 VALUES(22988, 61469, 'sixty-one thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(22989, 12803, 'twelve thousand eight hundred three');\nINSERT INTO t3 VALUES(22990, 15617, 'fifteen thousand six hundred seventeen');\nINSERT INTO t3 VALUES(22991, 23181, 'twenty-three thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(22992, 65662, 'sixty-five thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(22993, 23783, 'twenty-three thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(22994, 12011, 'twelve thousand eleven');\nINSERT INTO t3 VALUES(22995, 40657, 'forty thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(22996, 18837, 'eighteen thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(22997, 68983, 'sixty-eight thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(22998, 78511, 'seventy-eight thousand five hundred eleven');\nINSERT INTO t3 VALUES(22999, 10581, 'ten thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(23000, 11350, 'eleven thousand three hundred fifty');\nINSERT INTO t3 VALUES(23001, 66567, 'sixty-six thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(23002, 48073, 'forty-eight thousand seventy-three');\nINSERT INTO t3 VALUES(23003, 76384, 'seventy-six thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(23004, 25536, 'twenty-five thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(23005, 6861, 'six thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(23006, 99209, 'ninety-nine thousand two hundred nine');\nINSERT INTO t3 VALUES(23007, 66833, 'sixty-six thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(23008, 14114, 'fourteen thousand one hundred fourteen');\nINSERT INTO t3 VALUES(23009, 24192, 'twenty-four thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(23010, 9552, 'nine thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(23011, 36135, 'thirty-six thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(23012, 91087, 'ninety-one thousand eighty-seven');\nINSERT INTO t3 VALUES(23013, 61946, 'sixty-one thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(23014, 16485, 'sixteen thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(23015, 98493, 'ninety-eight thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(23016, 67539, 'sixty-seven thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(23017, 78278, 'seventy-eight thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(23018, 41429, 'forty-one thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(23019, 19827, 'nineteen thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(23020, 79489, 'seventy-nine thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(23021, 91287, 'ninety-one thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(23022, 91843, 'ninety-one thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(23023, 76153, 'seventy-six thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(23024, 50683, 'fifty thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(23025, 28875, 'twenty-eight thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(23026, 81191, 'eighty-one thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(23027, 58883, 'fifty-eight thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(23028, 25628, 'twenty-five thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(23029, 30816, 'thirty thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(23030, 63716, 'sixty-three thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(23031, 41084, 'forty-one thousand eighty-four');\nINSERT INTO t3 VALUES(23032, 20720, 'twenty thousand seven hundred twenty');\nINSERT INTO t3 VALUES(23033, 42353, 'forty-two thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(23034, 56594, 'fifty-six thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(23035, 87754, 'eighty-seven thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(23036, 5313, 'five thousand three hundred thirteen');\nINSERT INTO t3 VALUES(23037, 72281, 'seventy-two thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(23038, 85904, 'eighty-five thousand nine hundred four');\nINSERT INTO t3 VALUES(23039, 34449, 'thirty-four thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(23040, 1053, 'one thousand fifty-three');\nINSERT INTO t3 VALUES(23041, 71285, 'seventy-one thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(23042, 43866, 'forty-three thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(23043, 51646, 'fifty-one thousand six hundred forty-six');\nINSERT INTO t3 VALUES(23044, 53961, 'fifty-three thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(23045, 52878, 'fifty-two thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(23046, 4008, 'four thousand eight');\nINSERT INTO t3 VALUES(23047, 34585, 'thirty-four thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(23048, 35507, 'thirty-five thousand five hundred seven');\nINSERT INTO t3 VALUES(23049, 21406, 'twenty-one thousand four hundred six');\nINSERT INTO t3 VALUES(23050, 48613, 'forty-eight thousand six hundred thirteen');\nINSERT INTO t3 VALUES(23051, 95326, 'ninety-five thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(23052, 66962, 'sixty-six thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(23053, 5894, 'five thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(23054, 70930, 'seventy thousand nine hundred thirty');\nINSERT INTO t3 VALUES(23055, 99180, 'ninety-nine thousand one hundred eighty');\nINSERT INTO t3 VALUES(23056, 54294, 'fifty-four thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(23057, 72453, 'seventy-two thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(23058, 27943, 'twenty-seven thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(23059, 6644, 'six thousand six hundred forty-four');\nINSERT INTO t3 VALUES(23060, 23131, 'twenty-three thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(23061, 52234, 'fifty-two thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(23062, 34433, 'thirty-four thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(23063, 11985, 'eleven thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(23064, 83619, 'eighty-three thousand six hundred nineteen');\nINSERT INTO t3 VALUES(23065, 7549, 'seven thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(23066, 61214, 'sixty-one thousand two hundred fourteen');\nINSERT INTO t3 VALUES(23067, 83855, 'eighty-three thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(23068, 46128, 'forty-six thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(23069, 86560, 'eighty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(23070, 96219, 'ninety-six thousand two hundred nineteen');\nINSERT INTO t3 VALUES(23071, 73016, 'seventy-three thousand sixteen');\nINSERT INTO t3 VALUES(23072, 10887, 'ten thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(23073, 75265, 'seventy-five thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(23074, 98835, 'ninety-eight thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(23075, 91250, 'ninety-one thousand two hundred fifty');\nINSERT INTO t3 VALUES(23076, 27001, 'twenty-seven thousand one');\nINSERT INTO t3 VALUES(23077, 18930, 'eighteen thousand nine hundred thirty');\nINSERT INTO t3 VALUES(23078, 76974, 'seventy-six thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(23079, 19006, 'nineteen thousand six');\nINSERT INTO t3 VALUES(23080, 95770, 'ninety-five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(23081, 40934, 'forty thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(23082, 39149, 'thirty-nine thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(23083, 76963, 'seventy-six thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(23084, 46497, 'forty-six thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(23085, 92177, 'ninety-two thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(23086, 62186, 'sixty-two thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(23087, 481, 'four hundred eighty-one');\nINSERT INTO t3 VALUES(23088, 82975, 'eighty-two thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(23089, 96149, 'ninety-six thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(23090, 94670, 'ninety-four thousand six hundred seventy');\nINSERT INTO t3 VALUES(23091, 94696, 'ninety-four thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(23092, 39892, 'thirty-nine thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(23093, 68058, 'sixty-eight thousand fifty-eight');\nINSERT INTO t3 VALUES(23094, 37851, 'thirty-seven thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(23095, 67218, 'sixty-seven thousand two hundred eighteen');\nINSERT INTO t3 VALUES(23096, 52925, 'fifty-two thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(23097, 64368, 'sixty-four thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(23098, 29304, 'twenty-nine thousand three hundred four');\nINSERT INTO t3 VALUES(23099, 20209, 'twenty thousand two hundred nine');\nINSERT INTO t3 VALUES(23100, 5995, 'five thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(23101, 12562, 'twelve thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(23102, 18938, 'eighteen thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(23103, 10478, 'ten thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(23104, 61098, 'sixty-one thousand ninety-eight');\nINSERT INTO t3 VALUES(23105, 99284, 'ninety-nine thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(23106, 17911, 'seventeen thousand nine hundred eleven');\nINSERT INTO t3 VALUES(23107, 18150, 'eighteen thousand one hundred fifty');\nINSERT INTO t3 VALUES(23108, 6214, 'six thousand two hundred fourteen');\nINSERT INTO t3 VALUES(23109, 47205, 'forty-seven thousand two hundred five');\nINSERT INTO t3 VALUES(23110, 9065, 'nine thousand sixty-five');\nINSERT INTO t3 VALUES(23111, 46042, 'forty-six thousand forty-two');\nINSERT INTO t3 VALUES(23112, 55490, 'fifty-five thousand four hundred ninety');\nINSERT INTO t3 VALUES(23113, 68322, 'sixty-eight thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(23114, 60574, 'sixty thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(23115, 73601, 'seventy-three thousand six hundred one');\nINSERT INTO t3 VALUES(23116, 32783, 'thirty-two thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(23117, 98620, 'ninety-eight thousand six hundred twenty');\nINSERT INTO t3 VALUES(23118, 31790, 'thirty-one thousand seven hundred ninety');\nINSERT INTO t3 VALUES(23119, 1375, 'one thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(23120, 10330, 'ten thousand three hundred thirty');\nINSERT INTO t3 VALUES(23121, 30552, 'thirty thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(23122, 60630, 'sixty thousand six hundred thirty');\nINSERT INTO t3 VALUES(23123, 71198, 'seventy-one thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(23124, 86487, 'eighty-six thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(23125, 19938, 'nineteen thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(23126, 79990, 'seventy-nine thousand nine hundred ninety');\nINSERT INTO t3 VALUES(23127, 27717, 'twenty-seven thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(23128, 96471, 'ninety-six thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(23129, 51872, 'fifty-one thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(23130, 80786, 'eighty thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(23131, 54547, 'fifty-four thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(23132, 82645, 'eighty-two thousand six hundred forty-five');\nINSERT INTO t3 VALUES(23133, 85876, 'eighty-five thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(23134, 41386, 'forty-one thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(23135, 20498, 'twenty thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(23136, 26093, 'twenty-six thousand ninety-three');\nINSERT INTO t3 VALUES(23137, 19592, 'nineteen thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(23138, 79794, 'seventy-nine thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(23139, 52073, 'fifty-two thousand seventy-three');\nINSERT INTO t3 VALUES(23140, 19289, 'nineteen thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(23141, 66033, 'sixty-six thousand thirty-three');\nINSERT INTO t3 VALUES(23142, 81274, 'eighty-one thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(23143, 73729, 'seventy-three thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(23144, 96530, 'ninety-six thousand five hundred thirty');\nINSERT INTO t3 VALUES(23145, 99634, 'ninety-nine thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(23146, 68224, 'sixty-eight thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(23147, 15392, 'fifteen thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(23148, 16454, 'sixteen thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(23149, 9850, 'nine thousand eight hundred fifty');\nINSERT INTO t3 VALUES(23150, 87416, 'eighty-seven thousand four hundred sixteen');\nINSERT INTO t3 VALUES(23151, 44719, 'forty-four thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(23152, 24418, 'twenty-four thousand four hundred eighteen');\nINSERT INTO t3 VALUES(23153, 45169, 'forty-five thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(23154, 84136, 'eighty-four thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(23155, 11471, 'eleven thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(23156, 97232, 'ninety-seven thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(23157, 95879, 'ninety-five thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(23158, 39264, 'thirty-nine thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(23159, 54919, 'fifty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(23160, 59821, 'fifty-nine thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(23161, 85477, 'eighty-five thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(23162, 56209, 'fifty-six thousand two hundred nine');\nINSERT INTO t3 VALUES(23163, 91301, 'ninety-one thousand three hundred one');\nINSERT INTO t3 VALUES(23164, 48433, 'forty-eight thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(23165, 46090, 'forty-six thousand ninety');\nINSERT INTO t3 VALUES(23166, 84253, 'eighty-four thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(23167, 45992, 'forty-five thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(23168, 72540, 'seventy-two thousand five hundred forty');\nINSERT INTO t3 VALUES(23169, 68022, 'sixty-eight thousand twenty-two');\nINSERT INTO t3 VALUES(23170, 93401, 'ninety-three thousand four hundred one');\nINSERT INTO t3 VALUES(23171, 58412, 'fifty-eight thousand four hundred twelve');\nINSERT INTO t3 VALUES(23172, 56328, 'fifty-six thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(23173, 98224, 'ninety-eight thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(23174, 99950, 'ninety-nine thousand nine hundred fifty');\nINSERT INTO t3 VALUES(23175, 25006, 'twenty-five thousand six');\nINSERT INTO t3 VALUES(23176, 85041, 'eighty-five thousand forty-one');\nINSERT INTO t3 VALUES(23177, 29170, 'twenty-nine thousand one hundred seventy');\nINSERT INTO t3 VALUES(23178, 59211, 'fifty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(23179, 42934, 'forty-two thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(23180, 8273, 'eight thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(23181, 2480, 'two thousand four hundred eighty');\nINSERT INTO t3 VALUES(23182, 21749, 'twenty-one thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(23183, 50524, 'fifty thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(23184, 34177, 'thirty-four thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(23185, 32279, 'thirty-two thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(23186, 24393, 'twenty-four thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(23187, 40406, 'forty thousand four hundred six');\nINSERT INTO t3 VALUES(23188, 12174, 'twelve thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(23189, 89902, 'eighty-nine thousand nine hundred two');\nINSERT INTO t3 VALUES(23190, 7553, 'seven thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(23191, 32574, 'thirty-two thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(23192, 12878, 'twelve thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(23193, 58930, 'fifty-eight thousand nine hundred thirty');\nINSERT INTO t3 VALUES(23194, 15381, 'fifteen thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(23195, 52001, 'fifty-two thousand one');\nINSERT INTO t3 VALUES(23196, 52185, 'fifty-two thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(23197, 77302, 'seventy-seven thousand three hundred two');\nINSERT INTO t3 VALUES(23198, 71116, 'seventy-one thousand one hundred sixteen');\nINSERT INTO t3 VALUES(23199, 6608, 'six thousand six hundred eight');\nINSERT INTO t3 VALUES(23200, 18785, 'eighteen thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(23201, 22015, 'twenty-two thousand fifteen');\nINSERT INTO t3 VALUES(23202, 52050, 'fifty-two thousand fifty');\nINSERT INTO t3 VALUES(23203, 46707, 'forty-six thousand seven hundred seven');\nINSERT INTO t3 VALUES(23204, 57026, 'fifty-seven thousand twenty-six');\nINSERT INTO t3 VALUES(23205, 5542, 'five thousand five hundred forty-two');\nINSERT INTO t3 VALUES(23206, 59209, 'fifty-nine thousand two hundred nine');\nINSERT INTO t3 VALUES(23207, 73010, 'seventy-three thousand ten');\nINSERT INTO t3 VALUES(23208, 4497, 'four thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(23209, 21277, 'twenty-one thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(23210, 21827, 'twenty-one thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(23211, 20842, 'twenty thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(23212, 61158, 'sixty-one thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(23213, 64285, 'sixty-four thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(23214, 38411, 'thirty-eight thousand four hundred eleven');\nINSERT INTO t3 VALUES(23215, 35084, 'thirty-five thousand eighty-four');\nINSERT INTO t3 VALUES(23216, 56475, 'fifty-six thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(23217, 36618, 'thirty-six thousand six hundred eighteen');\nINSERT INTO t3 VALUES(23218, 69348, 'sixty-nine thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(23219, 95593, 'ninety-five thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(23220, 45175, 'forty-five thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(23221, 23965, 'twenty-three thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(23222, 10674, 'ten thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(23223, 40173, 'forty thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(23224, 43460, 'forty-three thousand four hundred sixty');\nINSERT INTO t3 VALUES(23225, 69230, 'sixty-nine thousand two hundred thirty');\nINSERT INTO t3 VALUES(23226, 12050, 'twelve thousand fifty');\nINSERT INTO t3 VALUES(23227, 82804, 'eighty-two thousand eight hundred four');\nINSERT INTO t3 VALUES(23228, 81191, 'eighty-one thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(23229, 16192, 'sixteen thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(23230, 21229, 'twenty-one thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(23231, 54057, 'fifty-four thousand fifty-seven');\nINSERT INTO t3 VALUES(23232, 89477, 'eighty-nine thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(23233, 45420, 'forty-five thousand four hundred twenty');\nINSERT INTO t3 VALUES(23234, 42627, 'forty-two thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(23235, 41618, 'forty-one thousand six hundred eighteen');\nINSERT INTO t3 VALUES(23236, 51029, 'fifty-one thousand twenty-nine');\nINSERT INTO t3 VALUES(23237, 30136, 'thirty thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(23238, 94738, 'ninety-four thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(23239, 36657, 'thirty-six thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(23240, 1490, 'one thousand four hundred ninety');\nINSERT INTO t3 VALUES(23241, 45710, 'forty-five thousand seven hundred ten');\nINSERT INTO t3 VALUES(23242, 53264, 'fifty-three thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(23243, 42754, 'forty-two thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(23244, 6321, 'six thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(23245, 78860, 'seventy-eight thousand eight hundred sixty');\nINSERT INTO t3 VALUES(23246, 3726, 'three thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(23247, 65819, 'sixty-five thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(23248, 98692, 'ninety-eight thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(23249, 9544, 'nine thousand five hundred forty-four');\nINSERT INTO t3 VALUES(23250, 83446, 'eighty-three thousand four hundred forty-six');\nINSERT INTO t3 VALUES(23251, 13012, 'thirteen thousand twelve');\nINSERT INTO t3 VALUES(23252, 744, 'seven hundred forty-four');\nINSERT INTO t3 VALUES(23253, 43721, 'forty-three thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(23254, 2573, 'two thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(23255, 28905, 'twenty-eight thousand nine hundred five');\nINSERT INTO t3 VALUES(23256, 88956, 'eighty-eight thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(23257, 4478, 'four thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(23258, 3243, 'three thousand two hundred forty-three');\nINSERT INTO t3 VALUES(23259, 80055, 'eighty thousand fifty-five');\nINSERT INTO t3 VALUES(23260, 14059, 'fourteen thousand fifty-nine');\nINSERT INTO t3 VALUES(23261, 69373, 'sixty-nine thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(23262, 67952, 'sixty-seven thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(23263, 47982, 'forty-seven thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(23264, 19665, 'nineteen thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(23265, 51533, 'fifty-one thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(23266, 37268, 'thirty-seven thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(23267, 34734, 'thirty-four thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(23268, 18763, 'eighteen thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(23269, 57121, 'fifty-seven thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(23270, 21212, 'twenty-one thousand two hundred twelve');\nINSERT INTO t3 VALUES(23271, 569, 'five hundred sixty-nine');\nINSERT INTO t3 VALUES(23272, 10095, 'ten thousand ninety-five');\nINSERT INTO t3 VALUES(23273, 20709, 'twenty thousand seven hundred nine');\nINSERT INTO t3 VALUES(23274, 64638, 'sixty-four thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(23275, 73673, 'seventy-three thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(23276, 65355, 'sixty-five thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(23277, 35863, 'thirty-five thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(23278, 58863, 'fifty-eight thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(23279, 28257, 'twenty-eight thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(23280, 68402, 'sixty-eight thousand four hundred two');\nINSERT INTO t3 VALUES(23281, 56490, 'fifty-six thousand four hundred ninety');\nINSERT INTO t3 VALUES(23282, 27938, 'twenty-seven thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(23283, 35348, 'thirty-five thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(23284, 78663, 'seventy-eight thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(23285, 33958, 'thirty-three thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(23286, 5746, 'five thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(23287, 19777, 'nineteen thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(23288, 399, 'three hundred ninety-nine');\nINSERT INTO t3 VALUES(23289, 23170, 'twenty-three thousand one hundred seventy');\nINSERT INTO t3 VALUES(23290, 51670, 'fifty-one thousand six hundred seventy');\nINSERT INTO t3 VALUES(23291, 74796, 'seventy-four thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(23292, 8410, 'eight thousand four hundred ten');\nINSERT INTO t3 VALUES(23293, 21286, 'twenty-one thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(23294, 23409, 'twenty-three thousand four hundred nine');\nINSERT INTO t3 VALUES(23295, 46798, 'forty-six thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(23296, 76767, 'seventy-six thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(23297, 42024, 'forty-two thousand twenty-four');\nINSERT INTO t3 VALUES(23298, 20189, 'twenty thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(23299, 2198, 'two thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(23300, 95112, 'ninety-five thousand one hundred twelve');\nINSERT INTO t3 VALUES(23301, 82485, 'eighty-two thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(23302, 52747, 'fifty-two thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(23303, 52766, 'fifty-two thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(23304, 55894, 'fifty-five thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(23305, 22554, 'twenty-two thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(23306, 93021, 'ninety-three thousand twenty-one');\nINSERT INTO t3 VALUES(23307, 44701, 'forty-four thousand seven hundred one');\nINSERT INTO t3 VALUES(23308, 38275, 'thirty-eight thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(23309, 7581, 'seven thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(23310, 29117, 'twenty-nine thousand one hundred seventeen');\nINSERT INTO t3 VALUES(23311, 4578, 'four thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(23312, 69371, 'sixty-nine thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(23313, 48153, 'forty-eight thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(23314, 94113, 'ninety-four thousand one hundred thirteen');\nINSERT INTO t3 VALUES(23315, 60997, 'sixty thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(23316, 80722, 'eighty thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(23317, 2000, 'two thousand');\nINSERT INTO t3 VALUES(23318, 32432, 'thirty-two thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(23319, 57304, 'fifty-seven thousand three hundred four');\nINSERT INTO t3 VALUES(23320, 58126, 'fifty-eight thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(23321, 53084, 'fifty-three thousand eighty-four');\nINSERT INTO t3 VALUES(23322, 25830, 'twenty-five thousand eight hundred thirty');\nINSERT INTO t3 VALUES(23323, 90572, 'ninety thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(23324, 16442, 'sixteen thousand four hundred forty-two');\nINSERT INTO t3 VALUES(23325, 86995, 'eighty-six thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(23326, 94924, 'ninety-four thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(23327, 65952, 'sixty-five thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(23328, 15351, 'fifteen thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(23329, 61859, 'sixty-one thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(23330, 88223, 'eighty-eight thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(23331, 77162, 'seventy-seven thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(23332, 9451, 'nine thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(23333, 40002, 'forty thousand two');\nINSERT INTO t3 VALUES(23334, 44649, 'forty-four thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(23335, 43516, 'forty-three thousand five hundred sixteen');\nINSERT INTO t3 VALUES(23336, 44651, 'forty-four thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(23337, 94737, 'ninety-four thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(23338, 79897, 'seventy-nine thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(23339, 25784, 'twenty-five thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(23340, 63329, 'sixty-three thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(23341, 8716, 'eight thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(23342, 48804, 'forty-eight thousand eight hundred four');\nINSERT INTO t3 VALUES(23343, 25234, 'twenty-five thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(23344, 64381, 'sixty-four thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(23345, 21241, 'twenty-one thousand two hundred forty-one');\nINSERT INTO t3 VALUES(23346, 20190, 'twenty thousand one hundred ninety');\nINSERT INTO t3 VALUES(23347, 50515, 'fifty thousand five hundred fifteen');\nINSERT INTO t3 VALUES(23348, 85348, 'eighty-five thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(23349, 74973, 'seventy-four thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(23350, 24942, 'twenty-four thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(23351, 59084, 'fifty-nine thousand eighty-four');\nINSERT INTO t3 VALUES(23352, 99109, 'ninety-nine thousand one hundred nine');\nINSERT INTO t3 VALUES(23353, 90129, 'ninety thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(23354, 48853, 'forty-eight thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(23355, 81315, 'eighty-one thousand three hundred fifteen');\nINSERT INTO t3 VALUES(23356, 72127, 'seventy-two thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(23357, 83360, 'eighty-three thousand three hundred sixty');\nINSERT INTO t3 VALUES(23358, 70460, 'seventy thousand four hundred sixty');\nINSERT INTO t3 VALUES(23359, 44305, 'forty-four thousand three hundred five');\nINSERT INTO t3 VALUES(23360, 70984, 'seventy thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(23361, 75792, 'seventy-five thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(23362, 72626, 'seventy-two thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(23363, 12300, 'twelve thousand three hundred');\nINSERT INTO t3 VALUES(23364, 97133, 'ninety-seven thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(23365, 64205, 'sixty-four thousand two hundred five');\nINSERT INTO t3 VALUES(23366, 76703, 'seventy-six thousand seven hundred three');\nINSERT INTO t3 VALUES(23367, 22185, 'twenty-two thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(23368, 29390, 'twenty-nine thousand three hundred ninety');\nINSERT INTO t3 VALUES(23369, 81470, 'eighty-one thousand four hundred seventy');\nINSERT INTO t3 VALUES(23370, 80574, 'eighty thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(23371, 90910, 'ninety thousand nine hundred ten');\nINSERT INTO t3 VALUES(23372, 40383, 'forty thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(23373, 53280, 'fifty-three thousand two hundred eighty');\nINSERT INTO t3 VALUES(23374, 86649, 'eighty-six thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(23375, 82652, 'eighty-two thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(23376, 83720, 'eighty-three thousand seven hundred twenty');\nINSERT INTO t3 VALUES(23377, 3875, 'three thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(23378, 3651, 'three thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(23379, 30530, 'thirty thousand five hundred thirty');\nINSERT INTO t3 VALUES(23380, 27788, 'twenty-seven thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(23381, 53028, 'fifty-three thousand twenty-eight');\nINSERT INTO t3 VALUES(23382, 36076, 'thirty-six thousand seventy-six');\nINSERT INTO t3 VALUES(23383, 24208, 'twenty-four thousand two hundred eight');\nINSERT INTO t3 VALUES(23384, 92257, 'ninety-two thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(23385, 80550, 'eighty thousand five hundred fifty');\nINSERT INTO t3 VALUES(23386, 8594, 'eight thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(23387, 65989, 'sixty-five thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(23388, 51032, 'fifty-one thousand thirty-two');\nINSERT INTO t3 VALUES(23389, 9293, 'nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(23390, 25268, 'twenty-five thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(23391, 32198, 'thirty-two thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(23392, 98849, 'ninety-eight thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(23393, 46353, 'forty-six thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(23394, 98513, 'ninety-eight thousand five hundred thirteen');\nINSERT INTO t3 VALUES(23395, 16495, 'sixteen thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(23396, 39765, 'thirty-nine thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(23397, 19160, 'nineteen thousand one hundred sixty');\nINSERT INTO t3 VALUES(23398, 97219, 'ninety-seven thousand two hundred nineteen');\nINSERT INTO t3 VALUES(23399, 66678, 'sixty-six thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(23400, 78864, 'seventy-eight thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(23401, 23579, 'twenty-three thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(23402, 50445, 'fifty thousand four hundred forty-five');\nINSERT INTO t3 VALUES(23403, 49582, 'forty-nine thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(23404, 49279, 'forty-nine thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(23405, 32229, 'thirty-two thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(23406, 31784, 'thirty-one thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(23407, 12278, 'twelve thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(23408, 15041, 'fifteen thousand forty-one');\nINSERT INTO t3 VALUES(23409, 97946, 'ninety-seven thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(23410, 34219, 'thirty-four thousand two hundred nineteen');\nINSERT INTO t3 VALUES(23411, 69063, 'sixty-nine thousand sixty-three');\nINSERT INTO t3 VALUES(23412, 67278, 'sixty-seven thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(23413, 93825, 'ninety-three thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(23414, 86096, 'eighty-six thousand ninety-six');\nINSERT INTO t3 VALUES(23415, 69699, 'sixty-nine thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(23416, 67540, 'sixty-seven thousand five hundred forty');\nINSERT INTO t3 VALUES(23417, 36108, 'thirty-six thousand one hundred eight');\nINSERT INTO t3 VALUES(23418, 14792, 'fourteen thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(23419, 28293, 'twenty-eight thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(23420, 24306, 'twenty-four thousand three hundred six');\nINSERT INTO t3 VALUES(23421, 65701, 'sixty-five thousand seven hundred one');\nINSERT INTO t3 VALUES(23422, 43083, 'forty-three thousand eighty-three');\nINSERT INTO t3 VALUES(23423, 5437, 'five thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(23424, 75594, 'seventy-five thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(23425, 32724, 'thirty-two thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(23426, 26494, 'twenty-six thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(23427, 51796, 'fifty-one thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(23428, 22504, 'twenty-two thousand five hundred four');\nINSERT INTO t3 VALUES(23429, 5493, 'five thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(23430, 28605, 'twenty-eight thousand six hundred five');\nINSERT INTO t3 VALUES(23431, 75751, 'seventy-five thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(23432, 14295, 'fourteen thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(23433, 95044, 'ninety-five thousand forty-four');\nINSERT INTO t3 VALUES(23434, 22419, 'twenty-two thousand four hundred nineteen');\nINSERT INTO t3 VALUES(23435, 92444, 'ninety-two thousand four hundred forty-four');\nINSERT INTO t3 VALUES(23436, 18709, 'eighteen thousand seven hundred nine');\nINSERT INTO t3 VALUES(23437, 8409, 'eight thousand four hundred nine');\nINSERT INTO t3 VALUES(23438, 55631, 'fifty-five thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(23439, 43624, 'forty-three thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(23440, 64917, 'sixty-four thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(23441, 2672, 'two thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(23442, 94243, 'ninety-four thousand two hundred forty-three');\nINSERT INTO t3 VALUES(23443, 3445, 'three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(23444, 93716, 'ninety-three thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(23445, 33007, 'thirty-three thousand seven');\nINSERT INTO t3 VALUES(23446, 1623, 'one thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(23447, 63865, 'sixty-three thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(23448, 99659, 'ninety-nine thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(23449, 2847, 'two thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(23450, 91135, 'ninety-one thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(23451, 68236, 'sixty-eight thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(23452, 564, 'five hundred sixty-four');\nINSERT INTO t3 VALUES(23453, 74617, 'seventy-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(23454, 24814, 'twenty-four thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(23455, 96192, 'ninety-six thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(23456, 59102, 'fifty-nine thousand one hundred two');\nINSERT INTO t3 VALUES(23457, 76018, 'seventy-six thousand eighteen');\nINSERT INTO t3 VALUES(23458, 8029, 'eight thousand twenty-nine');\nINSERT INTO t3 VALUES(23459, 57431, 'fifty-seven thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(23460, 1815, 'one thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(23461, 17772, 'seventeen thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(23462, 65183, 'sixty-five thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(23463, 72540, 'seventy-two thousand five hundred forty');\nINSERT INTO t3 VALUES(23464, 24482, 'twenty-four thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(23465, 8490, 'eight thousand four hundred ninety');\nINSERT INTO t3 VALUES(23466, 18404, 'eighteen thousand four hundred four');\nINSERT INTO t3 VALUES(23467, 37344, 'thirty-seven thousand three hundred forty-four');\nINSERT INTO t3 VALUES(23468, 48478, 'forty-eight thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(23469, 98727, 'ninety-eight thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(23470, 52604, 'fifty-two thousand six hundred four');\nINSERT INTO t3 VALUES(23471, 97024, 'ninety-seven thousand twenty-four');\nINSERT INTO t3 VALUES(23472, 86328, 'eighty-six thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(23473, 21559, 'twenty-one thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(23474, 21147, 'twenty-one thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(23475, 15058, 'fifteen thousand fifty-eight');\nINSERT INTO t3 VALUES(23476, 54076, 'fifty-four thousand seventy-six');\nINSERT INTO t3 VALUES(23477, 22547, 'twenty-two thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(23478, 77433, 'seventy-seven thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(23479, 26859, 'twenty-six thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(23480, 21962, 'twenty-one thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(23481, 76856, 'seventy-six thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(23482, 27754, 'twenty-seven thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(23483, 28591, 'twenty-eight thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(23484, 17376, 'seventeen thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(23485, 18813, 'eighteen thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(23486, 5282, 'five thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(23487, 52488, 'fifty-two thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(23488, 10655, 'ten thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(23489, 16162, 'sixteen thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(23490, 43793, 'forty-three thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(23491, 10226, 'ten thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(23492, 11628, 'eleven thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(23493, 18775, 'eighteen thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(23494, 50433, 'fifty thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(23495, 13932, 'thirteen thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(23496, 82111, 'eighty-two thousand one hundred eleven');\nINSERT INTO t3 VALUES(23497, 96458, 'ninety-six thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(23498, 10118, 'ten thousand one hundred eighteen');\nINSERT INTO t3 VALUES(23499, 95958, 'ninety-five thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(23500, 67526, 'sixty-seven thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(23501, 70795, 'seventy thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(23502, 17859, 'seventeen thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(23503, 14355, 'fourteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(23504, 22810, 'twenty-two thousand eight hundred ten');\nINSERT INTO t3 VALUES(23505, 90886, 'ninety thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(23506, 8603, 'eight thousand six hundred three');\nINSERT INTO t3 VALUES(23507, 84909, 'eighty-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(23508, 83846, 'eighty-three thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(23509, 71714, 'seventy-one thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(23510, 48247, 'forty-eight thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(23511, 86614, 'eighty-six thousand six hundred fourteen');\nINSERT INTO t3 VALUES(23512, 26186, 'twenty-six thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(23513, 16558, 'sixteen thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(23514, 30360, 'thirty thousand three hundred sixty');\nINSERT INTO t3 VALUES(23515, 38691, 'thirty-eight thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(23516, 71548, 'seventy-one thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(23517, 54678, 'fifty-four thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(23518, 47737, 'forty-seven thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(23519, 18355, 'eighteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(23520, 74423, 'seventy-four thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(23521, 95437, 'ninety-five thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(23522, 9469, 'nine thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(23523, 92722, 'ninety-two thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(23524, 26722, 'twenty-six thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(23525, 26761, 'twenty-six thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(23526, 3402, 'three thousand four hundred two');\nINSERT INTO t3 VALUES(23527, 74672, 'seventy-four thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(23528, 71706, 'seventy-one thousand seven hundred six');\nINSERT INTO t3 VALUES(23529, 2883, 'two thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(23530, 31197, 'thirty-one thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(23531, 17244, 'seventeen thousand two hundred forty-four');\nINSERT INTO t3 VALUES(23532, 37093, 'thirty-seven thousand ninety-three');\nINSERT INTO t3 VALUES(23533, 38294, 'thirty-eight thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(23534, 61466, 'sixty-one thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(23535, 54430, 'fifty-four thousand four hundred thirty');\nINSERT INTO t3 VALUES(23536, 87720, 'eighty-seven thousand seven hundred twenty');\nINSERT INTO t3 VALUES(23537, 51579, 'fifty-one thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(23538, 61482, 'sixty-one thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(23539, 93483, 'ninety-three thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(23540, 1278, 'one thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(23541, 39606, 'thirty-nine thousand six hundred six');\nINSERT INTO t3 VALUES(23542, 38473, 'thirty-eight thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(23543, 55195, 'fifty-five thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(23544, 64507, 'sixty-four thousand five hundred seven');\nINSERT INTO t3 VALUES(23545, 3334, 'three thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(23546, 53799, 'fifty-three thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(23547, 92707, 'ninety-two thousand seven hundred seven');\nINSERT INTO t3 VALUES(23548, 18125, 'eighteen thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(23549, 62649, 'sixty-two thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(23550, 69419, 'sixty-nine thousand four hundred nineteen');\nINSERT INTO t3 VALUES(23551, 2370, 'two thousand three hundred seventy');\nINSERT INTO t3 VALUES(23552, 16396, 'sixteen thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(23553, 61512, 'sixty-one thousand five hundred twelve');\nINSERT INTO t3 VALUES(23554, 30759, 'thirty thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(23555, 40746, 'forty thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(23556, 10091, 'ten thousand ninety-one');\nINSERT INTO t3 VALUES(23557, 36710, 'thirty-six thousand seven hundred ten');\nINSERT INTO t3 VALUES(23558, 83900, 'eighty-three thousand nine hundred');\nINSERT INTO t3 VALUES(23559, 30959, 'thirty thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(23560, 60182, 'sixty thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(23561, 59887, 'fifty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(23562, 42941, 'forty-two thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(23563, 94187, 'ninety-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(23564, 5987, 'five thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(23565, 39046, 'thirty-nine thousand forty-six');\nINSERT INTO t3 VALUES(23566, 7399, 'seven thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(23567, 69957, 'sixty-nine thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(23568, 86820, 'eighty-six thousand eight hundred twenty');\nINSERT INTO t3 VALUES(23569, 23573, 'twenty-three thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(23570, 54932, 'fifty-four thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(23571, 2182, 'two thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(23572, 81298, 'eighty-one thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(23573, 2196, 'two thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(23574, 27319, 'twenty-seven thousand three hundred nineteen');\nINSERT INTO t3 VALUES(23575, 13215, 'thirteen thousand two hundred fifteen');\nINSERT INTO t3 VALUES(23576, 80871, 'eighty thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(23577, 30735, 'thirty thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(23578, 64550, 'sixty-four thousand five hundred fifty');\nINSERT INTO t3 VALUES(23579, 42344, 'forty-two thousand three hundred forty-four');\nINSERT INTO t3 VALUES(23580, 4413, 'four thousand four hundred thirteen');\nINSERT INTO t3 VALUES(23581, 26455, 'twenty-six thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(23582, 62610, 'sixty-two thousand six hundred ten');\nINSERT INTO t3 VALUES(23583, 8899, 'eight thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(23584, 50846, 'fifty thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(23585, 49248, 'forty-nine thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(23586, 52575, 'fifty-two thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(23587, 57411, 'fifty-seven thousand four hundred eleven');\nINSERT INTO t3 VALUES(23588, 25151, 'twenty-five thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(23589, 57624, 'fifty-seven thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(23590, 49571, 'forty-nine thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(23591, 67799, 'sixty-seven thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(23592, 40059, 'forty thousand fifty-nine');\nINSERT INTO t3 VALUES(23593, 62167, 'sixty-two thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(23594, 20583, 'twenty thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(23595, 24724, 'twenty-four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(23596, 40703, 'forty thousand seven hundred three');\nINSERT INTO t3 VALUES(23597, 85707, 'eighty-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(23598, 38209, 'thirty-eight thousand two hundred nine');\nINSERT INTO t3 VALUES(23599, 58826, 'fifty-eight thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(23600, 99341, 'ninety-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(23601, 23133, 'twenty-three thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(23602, 73103, 'seventy-three thousand one hundred three');\nINSERT INTO t3 VALUES(23603, 97851, 'ninety-seven thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(23604, 79555, 'seventy-nine thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(23605, 95111, 'ninety-five thousand one hundred eleven');\nINSERT INTO t3 VALUES(23606, 73440, 'seventy-three thousand four hundred forty');\nINSERT INTO t3 VALUES(23607, 90824, 'ninety thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(23608, 53358, 'fifty-three thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(23609, 65004, 'sixty-five thousand four');\nINSERT INTO t3 VALUES(23610, 82717, 'eighty-two thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(23611, 16867, 'sixteen thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(23612, 60442, 'sixty thousand four hundred forty-two');\nINSERT INTO t3 VALUES(23613, 77593, 'seventy-seven thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(23614, 73115, 'seventy-three thousand one hundred fifteen');\nINSERT INTO t3 VALUES(23615, 16073, 'sixteen thousand seventy-three');\nINSERT INTO t3 VALUES(23616, 34014, 'thirty-four thousand fourteen');\nINSERT INTO t3 VALUES(23617, 17573, 'seventeen thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(23618, 35465, 'thirty-five thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(23619, 82501, 'eighty-two thousand five hundred one');\nINSERT INTO t3 VALUES(23620, 96795, 'ninety-six thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(23621, 30923, 'thirty thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(23622, 86696, 'eighty-six thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(23623, 66602, 'sixty-six thousand six hundred two');\nINSERT INTO t3 VALUES(23624, 64764, 'sixty-four thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(23625, 40955, 'forty thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(23626, 17818, 'seventeen thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(23627, 14627, 'fourteen thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(23628, 50966, 'fifty thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(23629, 28307, 'twenty-eight thousand three hundred seven');\nINSERT INTO t3 VALUES(23630, 5343, 'five thousand three hundred forty-three');\nINSERT INTO t3 VALUES(23631, 75438, 'seventy-five thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(23632, 18477, 'eighteen thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(23633, 70317, 'seventy thousand three hundred seventeen');\nINSERT INTO t3 VALUES(23634, 24792, 'twenty-four thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(23635, 14079, 'fourteen thousand seventy-nine');\nINSERT INTO t3 VALUES(23636, 71084, 'seventy-one thousand eighty-four');\nINSERT INTO t3 VALUES(23637, 12620, 'twelve thousand six hundred twenty');\nINSERT INTO t3 VALUES(23638, 17480, 'seventeen thousand four hundred eighty');\nINSERT INTO t3 VALUES(23639, 24724, 'twenty-four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(23640, 16185, 'sixteen thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(23641, 74936, 'seventy-four thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(23642, 86982, 'eighty-six thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(23643, 64673, 'sixty-four thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(23644, 27413, 'twenty-seven thousand four hundred thirteen');\nINSERT INTO t3 VALUES(23645, 76881, 'seventy-six thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(23646, 96176, 'ninety-six thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(23647, 4524, 'four thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(23648, 38103, 'thirty-eight thousand one hundred three');\nINSERT INTO t3 VALUES(23649, 44713, 'forty-four thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(23650, 51531, 'fifty-one thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(23651, 17723, 'seventeen thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(23652, 33190, 'thirty-three thousand one hundred ninety');\nINSERT INTO t3 VALUES(23653, 92518, 'ninety-two thousand five hundred eighteen');\nINSERT INTO t3 VALUES(23654, 90485, 'ninety thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(23655, 86879, 'eighty-six thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(23656, 48126, 'forty-eight thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(23657, 86738, 'eighty-six thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(23658, 99642, 'ninety-nine thousand six hundred forty-two');\nINSERT INTO t3 VALUES(23659, 76021, 'seventy-six thousand twenty-one');\nINSERT INTO t3 VALUES(23660, 81664, 'eighty-one thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(23661, 50538, 'fifty thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(23662, 51732, 'fifty-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(23663, 37218, 'thirty-seven thousand two hundred eighteen');\nINSERT INTO t3 VALUES(23664, 87061, 'eighty-seven thousand sixty-one');\nINSERT INTO t3 VALUES(23665, 26895, 'twenty-six thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(23666, 8686, 'eight thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(23667, 81487, 'eighty-one thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(23668, 28329, 'twenty-eight thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(23669, 88527, 'eighty-eight thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(23670, 28915, 'twenty-eight thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(23671, 25845, 'twenty-five thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(23672, 42529, 'forty-two thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(23673, 13321, 'thirteen thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(23674, 4907, 'four thousand nine hundred seven');\nINSERT INTO t3 VALUES(23675, 28057, 'twenty-eight thousand fifty-seven');\nINSERT INTO t3 VALUES(23676, 4316, 'four thousand three hundred sixteen');\nINSERT INTO t3 VALUES(23677, 88438, 'eighty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(23678, 46994, 'forty-six thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(23679, 57761, 'fifty-seven thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(23680, 25477, 'twenty-five thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(23681, 56481, 'fifty-six thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(23682, 35285, 'thirty-five thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(23683, 40414, 'forty thousand four hundred fourteen');\nINSERT INTO t3 VALUES(23684, 33727, 'thirty-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(23685, 42403, 'forty-two thousand four hundred three');\nINSERT INTO t3 VALUES(23686, 10077, 'ten thousand seventy-seven');\nINSERT INTO t3 VALUES(23687, 82837, 'eighty-two thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(23688, 89782, 'eighty-nine thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(23689, 50995, 'fifty thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(23690, 49859, 'forty-nine thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(23691, 4843, 'four thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(23692, 60366, 'sixty thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(23693, 85857, 'eighty-five thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(23694, 92262, 'ninety-two thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(23695, 51111, 'fifty-one thousand one hundred eleven');\nINSERT INTO t3 VALUES(23696, 54124, 'fifty-four thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(23697, 68038, 'sixty-eight thousand thirty-eight');\nINSERT INTO t3 VALUES(23698, 4959, 'four thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(23699, 78719, 'seventy-eight thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(23700, 71954, 'seventy-one thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(23701, 50224, 'fifty thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(23702, 48630, 'forty-eight thousand six hundred thirty');\nINSERT INTO t3 VALUES(23703, 6606, 'six thousand six hundred six');\nINSERT INTO t3 VALUES(23704, 12784, 'twelve thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(23705, 48375, 'forty-eight thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(23706, 59890, 'fifty-nine thousand eight hundred ninety');\nINSERT INTO t3 VALUES(23707, 1834, 'one thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(23708, 16932, 'sixteen thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(23709, 93071, 'ninety-three thousand seventy-one');\nINSERT INTO t3 VALUES(23710, 25041, 'twenty-five thousand forty-one');\nINSERT INTO t3 VALUES(23711, 18141, 'eighteen thousand one hundred forty-one');\nINSERT INTO t3 VALUES(23712, 66856, 'sixty-six thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(23713, 73727, 'seventy-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(23714, 73236, 'seventy-three thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(23715, 39925, 'thirty-nine thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(23716, 14269, 'fourteen thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(23717, 87148, 'eighty-seven thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(23718, 45589, 'forty-five thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(23719, 70828, 'seventy thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(23720, 47337, 'forty-seven thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(23721, 57009, 'fifty-seven thousand nine');\nINSERT INTO t3 VALUES(23722, 13121, 'thirteen thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(23723, 97971, 'ninety-seven thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(23724, 54488, 'fifty-four thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(23725, 76314, 'seventy-six thousand three hundred fourteen');\nINSERT INTO t3 VALUES(23726, 37727, 'thirty-seven thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(23727, 45799, 'forty-five thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(23728, 13502, 'thirteen thousand five hundred two');\nINSERT INTO t3 VALUES(23729, 27634, 'twenty-seven thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(23730, 42985, 'forty-two thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(23731, 86995, 'eighty-six thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(23732, 9107, 'nine thousand one hundred seven');\nINSERT INTO t3 VALUES(23733, 98628, 'ninety-eight thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(23734, 49058, 'forty-nine thousand fifty-eight');\nINSERT INTO t3 VALUES(23735, 80684, 'eighty thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(23736, 13313, 'thirteen thousand three hundred thirteen');\nINSERT INTO t3 VALUES(23737, 68137, 'sixty-eight thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(23738, 13307, 'thirteen thousand three hundred seven');\nINSERT INTO t3 VALUES(23739, 6261, 'six thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(23740, 84216, 'eighty-four thousand two hundred sixteen');\nINSERT INTO t3 VALUES(23741, 21375, 'twenty-one thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(23742, 56627, 'fifty-six thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(23743, 97402, 'ninety-seven thousand four hundred two');\nINSERT INTO t3 VALUES(23744, 32714, 'thirty-two thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(23745, 72907, 'seventy-two thousand nine hundred seven');\nINSERT INTO t3 VALUES(23746, 25554, 'twenty-five thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(23747, 90319, 'ninety thousand three hundred nineteen');\nINSERT INTO t3 VALUES(23748, 75026, 'seventy-five thousand twenty-six');\nINSERT INTO t3 VALUES(23749, 14558, 'fourteen thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(23750, 39151, 'thirty-nine thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(23751, 67247, 'sixty-seven thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(23752, 34646, 'thirty-four thousand six hundred forty-six');\nINSERT INTO t3 VALUES(23753, 8971, 'eight thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(23754, 53488, 'fifty-three thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(23755, 54866, 'fifty-four thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(23756, 87762, 'eighty-seven thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(23757, 57999, 'fifty-seven thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(23758, 14097, 'fourteen thousand ninety-seven');\nINSERT INTO t3 VALUES(23759, 11700, 'eleven thousand seven hundred');\nINSERT INTO t3 VALUES(23760, 56779, 'fifty-six thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(23761, 97944, 'ninety-seven thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(23762, 52631, 'fifty-two thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(23763, 26939, 'twenty-six thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(23764, 30676, 'thirty thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(23765, 23913, 'twenty-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(23766, 85419, 'eighty-five thousand four hundred nineteen');\nINSERT INTO t3 VALUES(23767, 23862, 'twenty-three thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(23768, 76562, 'seventy-six thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(23769, 47077, 'forty-seven thousand seventy-seven');\nINSERT INTO t3 VALUES(23770, 27829, 'twenty-seven thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(23771, 72686, 'seventy-two thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(23772, 47292, 'forty-seven thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(23773, 20328, 'twenty thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(23774, 5901, 'five thousand nine hundred one');\nINSERT INTO t3 VALUES(23775, 39359, 'thirty-nine thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(23776, 84815, 'eighty-four thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(23777, 84465, 'eighty-four thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(23778, 50404, 'fifty thousand four hundred four');\nINSERT INTO t3 VALUES(23779, 7769, 'seven thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(23780, 17334, 'seventeen thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(23781, 54708, 'fifty-four thousand seven hundred eight');\nINSERT INTO t3 VALUES(23782, 168, 'one hundred sixty-eight');\nINSERT INTO t3 VALUES(23783, 27381, 'twenty-seven thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(23784, 4711, 'four thousand seven hundred eleven');\nINSERT INTO t3 VALUES(23785, 79371, 'seventy-nine thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(23786, 28455, 'twenty-eight thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(23787, 80271, 'eighty thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(23788, 42986, 'forty-two thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(23789, 65728, 'sixty-five thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(23790, 40154, 'forty thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(23791, 34146, 'thirty-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(23792, 45928, 'forty-five thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(23793, 22438, 'twenty-two thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(23794, 95764, 'ninety-five thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(23795, 98693, 'ninety-eight thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(23796, 88040, 'eighty-eight thousand forty');\nINSERT INTO t3 VALUES(23797, 57179, 'fifty-seven thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(23798, 44329, 'forty-four thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(23799, 47526, 'forty-seven thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(23800, 74130, 'seventy-four thousand one hundred thirty');\nINSERT INTO t3 VALUES(23801, 59210, 'fifty-nine thousand two hundred ten');\nINSERT INTO t3 VALUES(23802, 76351, 'seventy-six thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(23803, 74751, 'seventy-four thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(23804, 5642, 'five thousand six hundred forty-two');\nINSERT INTO t3 VALUES(23805, 81823, 'eighty-one thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(23806, 44736, 'forty-four thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(23807, 29374, 'twenty-nine thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(23808, 85145, 'eighty-five thousand one hundred forty-five');\nINSERT INTO t3 VALUES(23809, 6764, 'six thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(23810, 96775, 'ninety-six thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(23811, 18354, 'eighteen thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(23812, 20977, 'twenty thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(23813, 43564, 'forty-three thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(23814, 3869, 'three thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(23815, 18821, 'eighteen thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(23816, 46133, 'forty-six thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(23817, 1495, 'one thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(23818, 57541, 'fifty-seven thousand five hundred forty-one');\nINSERT INTO t3 VALUES(23819, 72573, 'seventy-two thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(23820, 33494, 'thirty-three thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(23821, 51918, 'fifty-one thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(23822, 93391, 'ninety-three thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(23823, 58255, 'fifty-eight thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(23824, 1356, 'one thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(23825, 68965, 'sixty-eight thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(23826, 33007, 'thirty-three thousand seven');\nINSERT INTO t3 VALUES(23827, 3477, 'three thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(23828, 83162, 'eighty-three thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(23829, 54242, 'fifty-four thousand two hundred forty-two');\nINSERT INTO t3 VALUES(23830, 74037, 'seventy-four thousand thirty-seven');\nINSERT INTO t3 VALUES(23831, 36860, 'thirty-six thousand eight hundred sixty');\nINSERT INTO t3 VALUES(23832, 28096, 'twenty-eight thousand ninety-six');\nINSERT INTO t3 VALUES(23833, 12737, 'twelve thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(23834, 79159, 'seventy-nine thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(23835, 57547, 'fifty-seven thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(23836, 51154, 'fifty-one thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(23837, 77439, 'seventy-seven thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(23838, 93124, 'ninety-three thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(23839, 67347, 'sixty-seven thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(23840, 39833, 'thirty-nine thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(23841, 5447, 'five thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(23842, 12911, 'twelve thousand nine hundred eleven');\nINSERT INTO t3 VALUES(23843, 12916, 'twelve thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(23844, 92452, 'ninety-two thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(23845, 50515, 'fifty thousand five hundred fifteen');\nINSERT INTO t3 VALUES(23846, 15898, 'fifteen thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(23847, 68416, 'sixty-eight thousand four hundred sixteen');\nINSERT INTO t3 VALUES(23848, 72179, 'seventy-two thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(23849, 37175, 'thirty-seven thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(23850, 50495, 'fifty thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(23851, 56026, 'fifty-six thousand twenty-six');\nINSERT INTO t3 VALUES(23852, 60961, 'sixty thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(23853, 76351, 'seventy-six thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(23854, 73053, 'seventy-three thousand fifty-three');\nINSERT INTO t3 VALUES(23855, 19211, 'nineteen thousand two hundred eleven');\nINSERT INTO t3 VALUES(23856, 73516, 'seventy-three thousand five hundred sixteen');\nINSERT INTO t3 VALUES(23857, 26319, 'twenty-six thousand three hundred nineteen');\nINSERT INTO t3 VALUES(23858, 41276, 'forty-one thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(23859, 45926, 'forty-five thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(23860, 5171, 'five thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(23861, 78829, 'seventy-eight thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(23862, 66865, 'sixty-six thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(23863, 34401, 'thirty-four thousand four hundred one');\nINSERT INTO t3 VALUES(23864, 55621, 'fifty-five thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(23865, 51118, 'fifty-one thousand one hundred eighteen');\nINSERT INTO t3 VALUES(23866, 27574, 'twenty-seven thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(23867, 98813, 'ninety-eight thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(23868, 68913, 'sixty-eight thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(23869, 36079, 'thirty-six thousand seventy-nine');\nINSERT INTO t3 VALUES(23870, 19794, 'nineteen thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(23871, 59294, 'fifty-nine thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(23872, 82700, 'eighty-two thousand seven hundred');\nINSERT INTO t3 VALUES(23873, 51582, 'fifty-one thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(23874, 71711, 'seventy-one thousand seven hundred eleven');\nINSERT INTO t3 VALUES(23875, 20373, 'twenty thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(23876, 99834, 'ninety-nine thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(23877, 18089, 'eighteen thousand eighty-nine');\nINSERT INTO t3 VALUES(23878, 46778, 'forty-six thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(23879, 61674, 'sixty-one thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(23880, 35359, 'thirty-five thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(23881, 3556, 'three thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(23882, 44793, 'forty-four thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(23883, 46168, 'forty-six thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(23884, 3762, 'three thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(23885, 49049, 'forty-nine thousand forty-nine');\nINSERT INTO t3 VALUES(23886, 47010, 'forty-seven thousand ten');\nINSERT INTO t3 VALUES(23887, 31400, 'thirty-one thousand four hundred');\nINSERT INTO t3 VALUES(23888, 66239, 'sixty-six thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(23889, 2061, 'two thousand sixty-one');\nINSERT INTO t3 VALUES(23890, 19073, 'nineteen thousand seventy-three');\nINSERT INTO t3 VALUES(23891, 57056, 'fifty-seven thousand fifty-six');\nINSERT INTO t3 VALUES(23892, 48949, 'forty-eight thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(23893, 78308, 'seventy-eight thousand three hundred eight');\nINSERT INTO t3 VALUES(23894, 40673, 'forty thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(23895, 48027, 'forty-eight thousand twenty-seven');\nINSERT INTO t3 VALUES(23896, 91316, 'ninety-one thousand three hundred sixteen');\nINSERT INTO t3 VALUES(23897, 64895, 'sixty-four thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(23898, 82672, 'eighty-two thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(23899, 61551, 'sixty-one thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(23900, 26406, 'twenty-six thousand four hundred six');\nINSERT INTO t3 VALUES(23901, 88116, 'eighty-eight thousand one hundred sixteen');\nINSERT INTO t3 VALUES(23902, 47210, 'forty-seven thousand two hundred ten');\nINSERT INTO t3 VALUES(23903, 67816, 'sixty-seven thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(23904, 6575, 'six thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(23905, 54459, 'fifty-four thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(23906, 41446, 'forty-one thousand four hundred forty-six');\nINSERT INTO t3 VALUES(23907, 84563, 'eighty-four thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(23908, 6719, 'six thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(23909, 15279, 'fifteen thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(23910, 35365, 'thirty-five thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(23911, 33572, 'thirty-three thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(23912, 60664, 'sixty thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(23913, 780, 'seven hundred eighty');\nINSERT INTO t3 VALUES(23914, 65557, 'sixty-five thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(23915, 99238, 'ninety-nine thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(23916, 31940, 'thirty-one thousand nine hundred forty');\nINSERT INTO t3 VALUES(23917, 59345, 'fifty-nine thousand three hundred forty-five');\nINSERT INTO t3 VALUES(23918, 30947, 'thirty thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(23919, 8137, 'eight thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(23920, 66843, 'sixty-six thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(23921, 52685, 'fifty-two thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(23922, 65848, 'sixty-five thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(23923, 24628, 'twenty-four thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(23924, 98908, 'ninety-eight thousand nine hundred eight');\nINSERT INTO t3 VALUES(23925, 14938, 'fourteen thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(23926, 93863, 'ninety-three thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(23927, 64580, 'sixty-four thousand five hundred eighty');\nINSERT INTO t3 VALUES(23928, 50642, 'fifty thousand six hundred forty-two');\nINSERT INTO t3 VALUES(23929, 94055, 'ninety-four thousand fifty-five');\nINSERT INTO t3 VALUES(23930, 87291, 'eighty-seven thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(23931, 77405, 'seventy-seven thousand four hundred five');\nINSERT INTO t3 VALUES(23932, 62586, 'sixty-two thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(23933, 58411, 'fifty-eight thousand four hundred eleven');\nINSERT INTO t3 VALUES(23934, 30530, 'thirty thousand five hundred thirty');\nINSERT INTO t3 VALUES(23935, 72649, 'seventy-two thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(23936, 51197, 'fifty-one thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(23937, 52636, 'fifty-two thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(23938, 78415, 'seventy-eight thousand four hundred fifteen');\nINSERT INTO t3 VALUES(23939, 67547, 'sixty-seven thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(23940, 12626, 'twelve thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(23941, 86230, 'eighty-six thousand two hundred thirty');\nINSERT INTO t3 VALUES(23942, 72504, 'seventy-two thousand five hundred four');\nINSERT INTO t3 VALUES(23943, 43234, 'forty-three thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(23944, 18554, 'eighteen thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(23945, 59763, 'fifty-nine thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(23946, 36924, 'thirty-six thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(23947, 75737, 'seventy-five thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(23948, 21297, 'twenty-one thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(23949, 74578, 'seventy-four thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(23950, 65189, 'sixty-five thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(23951, 16955, 'sixteen thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(23952, 13351, 'thirteen thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(23953, 74175, 'seventy-four thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(23954, 75675, 'seventy-five thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(23955, 31054, 'thirty-one thousand fifty-four');\nINSERT INTO t3 VALUES(23956, 32687, 'thirty-two thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(23957, 26821, 'twenty-six thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(23958, 47698, 'forty-seven thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(23959, 27589, 'twenty-seven thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(23960, 14029, 'fourteen thousand twenty-nine');\nINSERT INTO t3 VALUES(23961, 58632, 'fifty-eight thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(23962, 39282, 'thirty-nine thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(23963, 80040, 'eighty thousand forty');\nINSERT INTO t3 VALUES(23964, 20882, 'twenty thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(23965, 94832, 'ninety-four thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(23966, 21360, 'twenty-one thousand three hundred sixty');\nINSERT INTO t3 VALUES(23967, 87114, 'eighty-seven thousand one hundred fourteen');\nINSERT INTO t3 VALUES(23968, 39850, 'thirty-nine thousand eight hundred fifty');\nINSERT INTO t3 VALUES(23969, 80942, 'eighty thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(23970, 64624, 'sixty-four thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(23971, 50071, 'fifty thousand seventy-one');\nINSERT INTO t3 VALUES(23972, 7611, 'seven thousand six hundred eleven');\nINSERT INTO t3 VALUES(23973, 26896, 'twenty-six thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(23974, 25091, 'twenty-five thousand ninety-one');\nINSERT INTO t3 VALUES(23975, 55911, 'fifty-five thousand nine hundred eleven');\nINSERT INTO t3 VALUES(23976, 78769, 'seventy-eight thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(23977, 61944, 'sixty-one thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(23978, 98430, 'ninety-eight thousand four hundred thirty');\nINSERT INTO t3 VALUES(23979, 68960, 'sixty-eight thousand nine hundred sixty');\nINSERT INTO t3 VALUES(23980, 87121, 'eighty-seven thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(23981, 98309, 'ninety-eight thousand three hundred nine');\nINSERT INTO t3 VALUES(23982, 88462, 'eighty-eight thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(23983, 55234, 'fifty-five thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(23984, 21077, 'twenty-one thousand seventy-seven');\nINSERT INTO t3 VALUES(23985, 90825, 'ninety thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(23986, 25076, 'twenty-five thousand seventy-six');\nINSERT INTO t3 VALUES(23987, 17326, 'seventeen thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(23988, 87564, 'eighty-seven thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(23989, 52365, 'fifty-two thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(23990, 14533, 'fourteen thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(23991, 28964, 'twenty-eight thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(23992, 35622, 'thirty-five thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(23993, 86396, 'eighty-six thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(23994, 86612, 'eighty-six thousand six hundred twelve');\nINSERT INTO t3 VALUES(23995, 49887, 'forty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(23996, 21185, 'twenty-one thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(23997, 19313, 'nineteen thousand three hundred thirteen');\nINSERT INTO t3 VALUES(23998, 78892, 'seventy-eight thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(23999, 54790, 'fifty-four thousand seven hundred ninety');\nINSERT INTO t3 VALUES(24000, 90071, 'ninety thousand seventy-one');\nINSERT INTO t3 VALUES(24001, 94931, 'ninety-four thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(24002, 99001, 'ninety-nine thousand one');\nINSERT INTO t3 VALUES(24003, 8140, 'eight thousand one hundred forty');\nINSERT INTO t3 VALUES(24004, 23335, 'twenty-three thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(24005, 55695, 'fifty-five thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(24006, 52109, 'fifty-two thousand one hundred nine');\nINSERT INTO t3 VALUES(24007, 33912, 'thirty-three thousand nine hundred twelve');\nINSERT INTO t3 VALUES(24008, 55636, 'fifty-five thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(24009, 27909, 'twenty-seven thousand nine hundred nine');\nINSERT INTO t3 VALUES(24010, 55259, 'fifty-five thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(24011, 49855, 'forty-nine thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(24012, 20303, 'twenty thousand three hundred three');\nINSERT INTO t3 VALUES(24013, 4110, 'four thousand one hundred ten');\nINSERT INTO t3 VALUES(24014, 8022, 'eight thousand twenty-two');\nINSERT INTO t3 VALUES(24015, 93612, 'ninety-three thousand six hundred twelve');\nINSERT INTO t3 VALUES(24016, 65783, 'sixty-five thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(24017, 95618, 'ninety-five thousand six hundred eighteen');\nINSERT INTO t3 VALUES(24018, 12357, 'twelve thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(24019, 23889, 'twenty-three thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(24020, 53220, 'fifty-three thousand two hundred twenty');\nINSERT INTO t3 VALUES(24021, 43163, 'forty-three thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(24022, 1629, 'one thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(24023, 36, 'thirty-six');\nINSERT INTO t3 VALUES(24024, 31719, 'thirty-one thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(24025, 59172, 'fifty-nine thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(24026, 76172, 'seventy-six thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(24027, 21949, 'twenty-one thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(24028, 54965, 'fifty-four thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(24029, 21240, 'twenty-one thousand two hundred forty');\nINSERT INTO t3 VALUES(24030, 26377, 'twenty-six thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(24031, 45731, 'forty-five thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(24032, 7966, 'seven thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(24033, 39163, 'thirty-nine thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(24034, 47215, 'forty-seven thousand two hundred fifteen');\nINSERT INTO t3 VALUES(24035, 83299, 'eighty-three thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(24036, 15845, 'fifteen thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(24037, 87940, 'eighty-seven thousand nine hundred forty');\nINSERT INTO t3 VALUES(24038, 15816, 'fifteen thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(24039, 29868, 'twenty-nine thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(24040, 37258, 'thirty-seven thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(24041, 40164, 'forty thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(24042, 3427, 'three thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(24043, 88676, 'eighty-eight thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(24044, 19320, 'nineteen thousand three hundred twenty');\nINSERT INTO t3 VALUES(24045, 54068, 'fifty-four thousand sixty-eight');\nINSERT INTO t3 VALUES(24046, 87190, 'eighty-seven thousand one hundred ninety');\nINSERT INTO t3 VALUES(24047, 66933, 'sixty-six thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(24048, 23351, 'twenty-three thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(24049, 21806, 'twenty-one thousand eight hundred six');\nINSERT INTO t3 VALUES(24050, 62236, 'sixty-two thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(24051, 54484, 'fifty-four thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(24052, 29894, 'twenty-nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(24053, 97769, 'ninety-seven thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(24054, 95203, 'ninety-five thousand two hundred three');\nINSERT INTO t3 VALUES(24055, 75525, 'seventy-five thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(24056, 30261, 'thirty thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(24057, 44374, 'forty-four thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(24058, 49104, 'forty-nine thousand one hundred four');\nINSERT INTO t3 VALUES(24059, 92160, 'ninety-two thousand one hundred sixty');\nINSERT INTO t3 VALUES(24060, 36988, 'thirty-six thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(24061, 46423, 'forty-six thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(24062, 74489, 'seventy-four thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(24063, 16584, 'sixteen thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(24064, 5688, 'five thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(24065, 92117, 'ninety-two thousand one hundred seventeen');\nINSERT INTO t3 VALUES(24066, 90923, 'ninety thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(24067, 21477, 'twenty-one thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(24068, 70451, 'seventy thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(24069, 14295, 'fourteen thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(24070, 81918, 'eighty-one thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(24071, 26764, 'twenty-six thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(24072, 60454, 'sixty thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(24073, 16923, 'sixteen thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(24074, 22959, 'twenty-two thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(24075, 2292, 'two thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(24076, 71398, 'seventy-one thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(24077, 56500, 'fifty-six thousand five hundred');\nINSERT INTO t3 VALUES(24078, 35466, 'thirty-five thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(24079, 60552, 'sixty thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(24080, 39432, 'thirty-nine thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(24081, 22183, 'twenty-two thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(24082, 20019, 'twenty thousand nineteen');\nINSERT INTO t3 VALUES(24083, 84798, 'eighty-four thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(24084, 35652, 'thirty-five thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(24085, 43387, 'forty-three thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(24086, 41270, 'forty-one thousand two hundred seventy');\nINSERT INTO t3 VALUES(24087, 57567, 'fifty-seven thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(24088, 56276, 'fifty-six thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(24089, 49037, 'forty-nine thousand thirty-seven');\nINSERT INTO t3 VALUES(24090, 96718, 'ninety-six thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(24091, 83590, 'eighty-three thousand five hundred ninety');\nINSERT INTO t3 VALUES(24092, 52886, 'fifty-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(24093, 59046, 'fifty-nine thousand forty-six');\nINSERT INTO t3 VALUES(24094, 50641, 'fifty thousand six hundred forty-one');\nINSERT INTO t3 VALUES(24095, 41908, 'forty-one thousand nine hundred eight');\nINSERT INTO t3 VALUES(24096, 56235, 'fifty-six thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(24097, 68318, 'sixty-eight thousand three hundred eighteen');\nINSERT INTO t3 VALUES(24098, 20710, 'twenty thousand seven hundred ten');\nINSERT INTO t3 VALUES(24099, 74069, 'seventy-four thousand sixty-nine');\nINSERT INTO t3 VALUES(24100, 99157, 'ninety-nine thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(24101, 34599, 'thirty-four thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(24102, 55257, 'fifty-five thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(24103, 75281, 'seventy-five thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(24104, 54087, 'fifty-four thousand eighty-seven');\nINSERT INTO t3 VALUES(24105, 71767, 'seventy-one thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(24106, 6888, 'six thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(24107, 84461, 'eighty-four thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(24108, 51451, 'fifty-one thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(24109, 85769, 'eighty-five thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(24110, 16592, 'sixteen thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(24111, 1479, 'one thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(24112, 58823, 'fifty-eight thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(24113, 70422, 'seventy thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(24114, 87284, 'eighty-seven thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(24115, 1718, 'one thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(24116, 87246, 'eighty-seven thousand two hundred forty-six');\nINSERT INTO t3 VALUES(24117, 16900, 'sixteen thousand nine hundred');\nINSERT INTO t3 VALUES(24118, 7435, 'seven thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(24119, 45711, 'forty-five thousand seven hundred eleven');\nINSERT INTO t3 VALUES(24120, 40317, 'forty thousand three hundred seventeen');\nINSERT INTO t3 VALUES(24121, 79996, 'seventy-nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(24122, 2859, 'two thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(24123, 6234, 'six thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(24124, 77863, 'seventy-seven thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(24125, 73021, 'seventy-three thousand twenty-one');\nINSERT INTO t3 VALUES(24126, 45377, 'forty-five thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(24127, 17756, 'seventeen thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(24128, 744, 'seven hundred forty-four');\nINSERT INTO t3 VALUES(24129, 37629, 'thirty-seven thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(24130, 75416, 'seventy-five thousand four hundred sixteen');\nINSERT INTO t3 VALUES(24131, 88361, 'eighty-eight thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(24132, 86522, 'eighty-six thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(24133, 55572, 'fifty-five thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(24134, 94502, 'ninety-four thousand five hundred two');\nINSERT INTO t3 VALUES(24135, 66135, 'sixty-six thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(24136, 19773, 'nineteen thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(24137, 5160, 'five thousand one hundred sixty');\nINSERT INTO t3 VALUES(24138, 57793, 'fifty-seven thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(24139, 96035, 'ninety-six thousand thirty-five');\nINSERT INTO t3 VALUES(24140, 90243, 'ninety thousand two hundred forty-three');\nINSERT INTO t3 VALUES(24141, 96147, 'ninety-six thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(24142, 50901, 'fifty thousand nine hundred one');\nINSERT INTO t3 VALUES(24143, 61566, 'sixty-one thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(24144, 26813, 'twenty-six thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(24145, 36899, 'thirty-six thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(24146, 63756, 'sixty-three thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(24147, 86063, 'eighty-six thousand sixty-three');\nINSERT INTO t3 VALUES(24148, 18273, 'eighteen thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(24149, 32548, 'thirty-two thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(24150, 49109, 'forty-nine thousand one hundred nine');\nINSERT INTO t3 VALUES(24151, 26996, 'twenty-six thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(24152, 80234, 'eighty thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(24153, 91248, 'ninety-one thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(24154, 84814, 'eighty-four thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(24155, 45555, 'forty-five thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(24156, 20686, 'twenty thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(24157, 1059, 'one thousand fifty-nine');\nINSERT INTO t3 VALUES(24158, 70472, 'seventy thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(24159, 9753, 'nine thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(24160, 74767, 'seventy-four thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(24161, 42393, 'forty-two thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(24162, 6867, 'six thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(24163, 36977, 'thirty-six thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(24164, 82076, 'eighty-two thousand seventy-six');\nINSERT INTO t3 VALUES(24165, 57751, 'fifty-seven thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(24166, 62165, 'sixty-two thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(24167, 76151, 'seventy-six thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(24168, 27540, 'twenty-seven thousand five hundred forty');\nINSERT INTO t3 VALUES(24169, 5612, 'five thousand six hundred twelve');\nINSERT INTO t3 VALUES(24170, 46837, 'forty-six thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(24171, 86651, 'eighty-six thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(24172, 1344, 'one thousand three hundred forty-four');\nINSERT INTO t3 VALUES(24173, 27004, 'twenty-seven thousand four');\nINSERT INTO t3 VALUES(24174, 32518, 'thirty-two thousand five hundred eighteen');\nINSERT INTO t3 VALUES(24175, 35958, 'thirty-five thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(24176, 73739, 'seventy-three thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(24177, 99477, 'ninety-nine thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(24178, 42384, 'forty-two thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(24179, 57017, 'fifty-seven thousand seventeen');\nINSERT INTO t3 VALUES(24180, 30865, 'thirty thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(24181, 6790, 'six thousand seven hundred ninety');\nINSERT INTO t3 VALUES(24182, 46218, 'forty-six thousand two hundred eighteen');\nINSERT INTO t3 VALUES(24183, 63425, 'sixty-three thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(24184, 1656, 'one thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(24185, 60484, 'sixty thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(24186, 57439, 'fifty-seven thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(24187, 26347, 'twenty-six thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(24188, 99269, 'ninety-nine thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(24189, 85963, 'eighty-five thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(24190, 60815, 'sixty thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(24191, 61964, 'sixty-one thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(24192, 70323, 'seventy thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(24193, 43133, 'forty-three thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(24194, 54654, 'fifty-four thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(24195, 65737, 'sixty-five thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(24196, 19142, 'nineteen thousand one hundred forty-two');\nINSERT INTO t3 VALUES(24197, 82550, 'eighty-two thousand five hundred fifty');\nINSERT INTO t3 VALUES(24198, 30351, 'thirty thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(24199, 90266, 'ninety thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(24200, 20746, 'twenty thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(24201, 87818, 'eighty-seven thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(24202, 6139, 'six thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(24203, 53332, 'fifty-three thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(24204, 23784, 'twenty-three thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(24205, 34886, 'thirty-four thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(24206, 76745, 'seventy-six thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(24207, 88544, 'eighty-eight thousand five hundred forty-four');\nINSERT INTO t3 VALUES(24208, 39137, 'thirty-nine thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(24209, 32481, 'thirty-two thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(24210, 30267, 'thirty thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(24211, 83100, 'eighty-three thousand one hundred');\nINSERT INTO t3 VALUES(24212, 18315, 'eighteen thousand three hundred fifteen');\nINSERT INTO t3 VALUES(24213, 30801, 'thirty thousand eight hundred one');\nINSERT INTO t3 VALUES(24214, 71607, 'seventy-one thousand six hundred seven');\nINSERT INTO t3 VALUES(24215, 88756, 'eighty-eight thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(24216, 85504, 'eighty-five thousand five hundred four');\nINSERT INTO t3 VALUES(24217, 32305, 'thirty-two thousand three hundred five');\nINSERT INTO t3 VALUES(24218, 10714, 'ten thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(24219, 90610, 'ninety thousand six hundred ten');\nINSERT INTO t3 VALUES(24220, 75072, 'seventy-five thousand seventy-two');\nINSERT INTO t3 VALUES(24221, 99570, 'ninety-nine thousand five hundred seventy');\nINSERT INTO t3 VALUES(24222, 9757, 'nine thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(24223, 49580, 'forty-nine thousand five hundred eighty');\nINSERT INTO t3 VALUES(24224, 55609, 'fifty-five thousand six hundred nine');\nINSERT INTO t3 VALUES(24225, 17004, 'seventeen thousand four');\nINSERT INTO t3 VALUES(24226, 20095, 'twenty thousand ninety-five');\nINSERT INTO t3 VALUES(24227, 85427, 'eighty-five thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(24228, 90566, 'ninety thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(24229, 70564, 'seventy thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(24230, 54460, 'fifty-four thousand four hundred sixty');\nINSERT INTO t3 VALUES(24231, 18412, 'eighteen thousand four hundred twelve');\nINSERT INTO t3 VALUES(24232, 21185, 'twenty-one thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(24233, 60896, 'sixty thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(24234, 30189, 'thirty thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(24235, 3247, 'three thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(24236, 75625, 'seventy-five thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(24237, 14206, 'fourteen thousand two hundred six');\nINSERT INTO t3 VALUES(24238, 61125, 'sixty-one thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(24239, 60035, 'sixty thousand thirty-five');\nINSERT INTO t3 VALUES(24240, 46132, 'forty-six thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(24241, 4114, 'four thousand one hundred fourteen');\nINSERT INTO t3 VALUES(24242, 67192, 'sixty-seven thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(24243, 34113, 'thirty-four thousand one hundred thirteen');\nINSERT INTO t3 VALUES(24244, 89568, 'eighty-nine thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(24245, 67747, 'sixty-seven thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(24246, 90778, 'ninety thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(24247, 55695, 'fifty-five thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(24248, 4052, 'four thousand fifty-two');\nINSERT INTO t3 VALUES(24249, 9363, 'nine thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(24250, 47164, 'forty-seven thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(24251, 89184, 'eighty-nine thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(24252, 45096, 'forty-five thousand ninety-six');\nINSERT INTO t3 VALUES(24253, 92163, 'ninety-two thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(24254, 29439, 'twenty-nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(24255, 70999, 'seventy thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(24256, 7325, 'seven thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(24257, 81525, 'eighty-one thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(24258, 34198, 'thirty-four thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(24259, 87047, 'eighty-seven thousand forty-seven');\nINSERT INTO t3 VALUES(24260, 95417, 'ninety-five thousand four hundred seventeen');\nINSERT INTO t3 VALUES(24261, 12295, 'twelve thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(24262, 53309, 'fifty-three thousand three hundred nine');\nINSERT INTO t3 VALUES(24263, 94748, 'ninety-four thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(24264, 51279, 'fifty-one thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(24265, 9246, 'nine thousand two hundred forty-six');\nINSERT INTO t3 VALUES(24266, 26322, 'twenty-six thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(24267, 99822, 'ninety-nine thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(24268, 22495, 'twenty-two thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(24269, 86576, 'eighty-six thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(24270, 6341, 'six thousand three hundred forty-one');\nINSERT INTO t3 VALUES(24271, 19839, 'nineteen thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(24272, 14212, 'fourteen thousand two hundred twelve');\nINSERT INTO t3 VALUES(24273, 7512, 'seven thousand five hundred twelve');\nINSERT INTO t3 VALUES(24274, 3569, 'three thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(24275, 30740, 'thirty thousand seven hundred forty');\nINSERT INTO t3 VALUES(24276, 22887, 'twenty-two thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(24277, 90008, 'ninety thousand eight');\nINSERT INTO t3 VALUES(24278, 11432, 'eleven thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(24279, 9524, 'nine thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(24280, 8545, 'eight thousand five hundred forty-five');\nINSERT INTO t3 VALUES(24281, 24301, 'twenty-four thousand three hundred one');\nINSERT INTO t3 VALUES(24282, 27592, 'twenty-seven thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(24283, 46187, 'forty-six thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(24284, 87906, 'eighty-seven thousand nine hundred six');\nINSERT INTO t3 VALUES(24285, 82874, 'eighty-two thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(24286, 14103, 'fourteen thousand one hundred three');\nINSERT INTO t3 VALUES(24287, 36336, 'thirty-six thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(24288, 413, 'four hundred thirteen');\nINSERT INTO t3 VALUES(24289, 80380, 'eighty thousand three hundred eighty');\nINSERT INTO t3 VALUES(24290, 12130, 'twelve thousand one hundred thirty');\nINSERT INTO t3 VALUES(24291, 33388, 'thirty-three thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(24292, 27234, 'twenty-seven thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(24293, 23303, 'twenty-three thousand three hundred three');\nINSERT INTO t3 VALUES(24294, 23785, 'twenty-three thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(24295, 58047, 'fifty-eight thousand forty-seven');\nINSERT INTO t3 VALUES(24296, 86222, 'eighty-six thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(24297, 72942, 'seventy-two thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(24298, 34234, 'thirty-four thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(24299, 95952, 'ninety-five thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(24300, 67529, 'sixty-seven thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(24301, 20170, 'twenty thousand one hundred seventy');\nINSERT INTO t3 VALUES(24302, 16044, 'sixteen thousand forty-four');\nINSERT INTO t3 VALUES(24303, 13010, 'thirteen thousand ten');\nINSERT INTO t3 VALUES(24304, 61784, 'sixty-one thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(24305, 67607, 'sixty-seven thousand six hundred seven');\nINSERT INTO t3 VALUES(24306, 66520, 'sixty-six thousand five hundred twenty');\nINSERT INTO t3 VALUES(24307, 24561, 'twenty-four thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(24308, 21322, 'twenty-one thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(24309, 91048, 'ninety-one thousand forty-eight');\nINSERT INTO t3 VALUES(24310, 62144, 'sixty-two thousand one hundred forty-four');\nINSERT INTO t3 VALUES(24311, 82240, 'eighty-two thousand two hundred forty');\nINSERT INTO t3 VALUES(24312, 37167, 'thirty-seven thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(24313, 64451, 'sixty-four thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(24314, 77498, 'seventy-seven thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(24315, 92266, 'ninety-two thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(24316, 98716, 'ninety-eight thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(24317, 86872, 'eighty-six thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(24318, 23925, 'twenty-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(24319, 99540, 'ninety-nine thousand five hundred forty');\nINSERT INTO t3 VALUES(24320, 17365, 'seventeen thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(24321, 37740, 'thirty-seven thousand seven hundred forty');\nINSERT INTO t3 VALUES(24322, 4820, 'four thousand eight hundred twenty');\nINSERT INTO t3 VALUES(24323, 42174, 'forty-two thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(24324, 70809, 'seventy thousand eight hundred nine');\nINSERT INTO t3 VALUES(24325, 40942, 'forty thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(24326, 16925, 'sixteen thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(24327, 33847, 'thirty-three thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(24328, 16270, 'sixteen thousand two hundred seventy');\nINSERT INTO t3 VALUES(24329, 49039, 'forty-nine thousand thirty-nine');\nINSERT INTO t3 VALUES(24330, 97879, 'ninety-seven thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(24331, 38094, 'thirty-eight thousand ninety-four');\nINSERT INTO t3 VALUES(24332, 10820, 'ten thousand eight hundred twenty');\nINSERT INTO t3 VALUES(24333, 42248, 'forty-two thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(24334, 4932, 'four thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(24335, 94550, 'ninety-four thousand five hundred fifty');\nINSERT INTO t3 VALUES(24336, 44146, 'forty-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(24337, 68447, 'sixty-eight thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(24338, 4194, 'four thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(24339, 35231, 'thirty-five thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(24340, 14755, 'fourteen thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(24341, 44146, 'forty-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(24342, 38066, 'thirty-eight thousand sixty-six');\nINSERT INTO t3 VALUES(24343, 22902, 'twenty-two thousand nine hundred two');\nINSERT INTO t3 VALUES(24344, 93823, 'ninety-three thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(24345, 86633, 'eighty-six thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(24346, 72782, 'seventy-two thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(24347, 27207, 'twenty-seven thousand two hundred seven');\nINSERT INTO t3 VALUES(24348, 68015, 'sixty-eight thousand fifteen');\nINSERT INTO t3 VALUES(24349, 30868, 'thirty thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(24350, 70852, 'seventy thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(24351, 56358, 'fifty-six thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(24352, 57722, 'fifty-seven thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(24353, 67819, 'sixty-seven thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(24354, 869, 'eight hundred sixty-nine');\nINSERT INTO t3 VALUES(24355, 23457, 'twenty-three thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(24356, 72507, 'seventy-two thousand five hundred seven');\nINSERT INTO t3 VALUES(24357, 90593, 'ninety thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(24358, 29056, 'twenty-nine thousand fifty-six');\nINSERT INTO t3 VALUES(24359, 73383, 'seventy-three thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(24360, 81575, 'eighty-one thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(24361, 52289, 'fifty-two thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(24362, 48070, 'forty-eight thousand seventy');\nINSERT INTO t3 VALUES(24363, 2194, 'two thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(24364, 88547, 'eighty-eight thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(24365, 37819, 'thirty-seven thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(24366, 50800, 'fifty thousand eight hundred');\nINSERT INTO t3 VALUES(24367, 47428, 'forty-seven thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(24368, 75210, 'seventy-five thousand two hundred ten');\nINSERT INTO t3 VALUES(24369, 82060, 'eighty-two thousand sixty');\nINSERT INTO t3 VALUES(24370, 70475, 'seventy thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(24371, 90114, 'ninety thousand one hundred fourteen');\nINSERT INTO t3 VALUES(24372, 2140, 'two thousand one hundred forty');\nINSERT INTO t3 VALUES(24373, 38748, 'thirty-eight thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(24374, 38895, 'thirty-eight thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(24375, 56230, 'fifty-six thousand two hundred thirty');\nINSERT INTO t3 VALUES(24376, 89212, 'eighty-nine thousand two hundred twelve');\nINSERT INTO t3 VALUES(24377, 50995, 'fifty thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(24378, 8667, 'eight thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(24379, 76985, 'seventy-six thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(24380, 19323, 'nineteen thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(24381, 28715, 'twenty-eight thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(24382, 95333, 'ninety-five thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(24383, 87775, 'eighty-seven thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(24384, 79217, 'seventy-nine thousand two hundred seventeen');\nINSERT INTO t3 VALUES(24385, 17528, 'seventeen thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(24386, 19807, 'nineteen thousand eight hundred seven');\nINSERT INTO t3 VALUES(24387, 50780, 'fifty thousand seven hundred eighty');\nINSERT INTO t3 VALUES(24388, 1177, 'one thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(24389, 2770, 'two thousand seven hundred seventy');\nINSERT INTO t3 VALUES(24390, 23640, 'twenty-three thousand six hundred forty');\nINSERT INTO t3 VALUES(24391, 3431, 'three thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(24392, 38215, 'thirty-eight thousand two hundred fifteen');\nINSERT INTO t3 VALUES(24393, 54120, 'fifty-four thousand one hundred twenty');\nINSERT INTO t3 VALUES(24394, 27689, 'twenty-seven thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(24395, 76466, 'seventy-six thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(24396, 11482, 'eleven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(24397, 34690, 'thirty-four thousand six hundred ninety');\nINSERT INTO t3 VALUES(24398, 16757, 'sixteen thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(24399, 2875, 'two thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(24400, 68747, 'sixty-eight thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(24401, 67288, 'sixty-seven thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(24402, 93617, 'ninety-three thousand six hundred seventeen');\nINSERT INTO t3 VALUES(24403, 35251, 'thirty-five thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(24404, 9498, 'nine thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(24405, 96559, 'ninety-six thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(24406, 91503, 'ninety-one thousand five hundred three');\nINSERT INTO t3 VALUES(24407, 66708, 'sixty-six thousand seven hundred eight');\nINSERT INTO t3 VALUES(24408, 61119, 'sixty-one thousand one hundred nineteen');\nINSERT INTO t3 VALUES(24409, 48100, 'forty-eight thousand one hundred');\nINSERT INTO t3 VALUES(24410, 40588, 'forty thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(24411, 16282, 'sixteen thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(24412, 19994, 'nineteen thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(24413, 93293, 'ninety-three thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(24414, 75901, 'seventy-five thousand nine hundred one');\nINSERT INTO t3 VALUES(24415, 62213, 'sixty-two thousand two hundred thirteen');\nINSERT INTO t3 VALUES(24416, 45938, 'forty-five thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(24417, 23092, 'twenty-three thousand ninety-two');\nINSERT INTO t3 VALUES(24418, 10660, 'ten thousand six hundred sixty');\nINSERT INTO t3 VALUES(24419, 90159, 'ninety thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(24420, 35123, 'thirty-five thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(24421, 77560, 'seventy-seven thousand five hundred sixty');\nINSERT INTO t3 VALUES(24422, 34337, 'thirty-four thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(24423, 90351, 'ninety thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(24424, 37659, 'thirty-seven thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(24425, 35335, 'thirty-five thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(24426, 93515, 'ninety-three thousand five hundred fifteen');\nINSERT INTO t3 VALUES(24427, 19652, 'nineteen thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(24428, 86115, 'eighty-six thousand one hundred fifteen');\nINSERT INTO t3 VALUES(24429, 27073, 'twenty-seven thousand seventy-three');\nINSERT INTO t3 VALUES(24430, 14415, 'fourteen thousand four hundred fifteen');\nINSERT INTO t3 VALUES(24431, 47214, 'forty-seven thousand two hundred fourteen');\nINSERT INTO t3 VALUES(24432, 48815, 'forty-eight thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(24433, 24870, 'twenty-four thousand eight hundred seventy');\nINSERT INTO t3 VALUES(24434, 58889, 'fifty-eight thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(24435, 71158, 'seventy-one thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(24436, 39961, 'thirty-nine thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(24437, 98540, 'ninety-eight thousand five hundred forty');\nINSERT INTO t3 VALUES(24438, 37466, 'thirty-seven thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(24439, 56040, 'fifty-six thousand forty');\nINSERT INTO t3 VALUES(24440, 70629, 'seventy thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(24441, 37860, 'thirty-seven thousand eight hundred sixty');\nINSERT INTO t3 VALUES(24442, 15740, 'fifteen thousand seven hundred forty');\nINSERT INTO t3 VALUES(24443, 93234, 'ninety-three thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(24444, 89390, 'eighty-nine thousand three hundred ninety');\nINSERT INTO t3 VALUES(24445, 14526, 'fourteen thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(24446, 97962, 'ninety-seven thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(24447, 42909, 'forty-two thousand nine hundred nine');\nINSERT INTO t3 VALUES(24448, 74360, 'seventy-four thousand three hundred sixty');\nINSERT INTO t3 VALUES(24449, 60817, 'sixty thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(24450, 25841, 'twenty-five thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(24451, 9101, 'nine thousand one hundred one');\nINSERT INTO t3 VALUES(24452, 18890, 'eighteen thousand eight hundred ninety');\nINSERT INTO t3 VALUES(24453, 81233, 'eighty-one thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(24454, 92974, 'ninety-two thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(24455, 89356, 'eighty-nine thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(24456, 18243, 'eighteen thousand two hundred forty-three');\nINSERT INTO t3 VALUES(24457, 98125, 'ninety-eight thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(24458, 52567, 'fifty-two thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(24459, 3050, 'three thousand fifty');\nINSERT INTO t3 VALUES(24460, 98478, 'ninety-eight thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(24461, 55677, 'fifty-five thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(24462, 90817, 'ninety thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(24463, 15455, 'fifteen thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(24464, 84762, 'eighty-four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(24465, 73081, 'seventy-three thousand eighty-one');\nINSERT INTO t3 VALUES(24466, 15422, 'fifteen thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(24467, 24890, 'twenty-four thousand eight hundred ninety');\nINSERT INTO t3 VALUES(24468, 90029, 'ninety thousand twenty-nine');\nINSERT INTO t3 VALUES(24469, 61562, 'sixty-one thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(24470, 29744, 'twenty-nine thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(24471, 58936, 'fifty-eight thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(24472, 71971, 'seventy-one thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(24473, 70982, 'seventy thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(24474, 41725, 'forty-one thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(24475, 92927, 'ninety-two thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(24476, 33862, 'thirty-three thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(24477, 93382, 'ninety-three thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(24478, 77954, 'seventy-seven thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(24479, 15383, 'fifteen thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(24480, 28813, 'twenty-eight thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(24481, 5512, 'five thousand five hundred twelve');\nINSERT INTO t3 VALUES(24482, 51480, 'fifty-one thousand four hundred eighty');\nINSERT INTO t3 VALUES(24483, 6514, 'six thousand five hundred fourteen');\nINSERT INTO t3 VALUES(24484, 30236, 'thirty thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(24485, 11104, 'eleven thousand one hundred four');\nINSERT INTO t3 VALUES(24486, 86824, 'eighty-six thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(24487, 78228, 'seventy-eight thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(24488, 41145, 'forty-one thousand one hundred forty-five');\nINSERT INTO t3 VALUES(24489, 29657, 'twenty-nine thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(24490, 85757, 'eighty-five thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(24491, 69398, 'sixty-nine thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(24492, 79563, 'seventy-nine thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(24493, 92682, 'ninety-two thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(24494, 2935, 'two thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(24495, 35906, 'thirty-five thousand nine hundred six');\nINSERT INTO t3 VALUES(24496, 75457, 'seventy-five thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(24497, 26969, 'twenty-six thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(24498, 92773, 'ninety-two thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(24499, 31957, 'thirty-one thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(24500, 70185, 'seventy thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(24501, 29928, 'twenty-nine thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(24502, 32432, 'thirty-two thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(24503, 25115, 'twenty-five thousand one hundred fifteen');\nINSERT INTO t3 VALUES(24504, 50198, 'fifty thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(24505, 79471, 'seventy-nine thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(24506, 42183, 'forty-two thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(24507, 84705, 'eighty-four thousand seven hundred five');\nINSERT INTO t3 VALUES(24508, 46781, 'forty-six thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(24509, 3406, 'three thousand four hundred six');\nINSERT INTO t3 VALUES(24510, 82340, 'eighty-two thousand three hundred forty');\nINSERT INTO t3 VALUES(24511, 72548, 'seventy-two thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(24512, 69097, 'sixty-nine thousand ninety-seven');\nINSERT INTO t3 VALUES(24513, 78159, 'seventy-eight thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(24514, 7241, 'seven thousand two hundred forty-one');\nINSERT INTO t3 VALUES(24515, 11154, 'eleven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(24516, 72759, 'seventy-two thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(24517, 37411, 'thirty-seven thousand four hundred eleven');\nINSERT INTO t3 VALUES(24518, 90691, 'ninety thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(24519, 17329, 'seventeen thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(24520, 21136, 'twenty-one thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(24521, 73397, 'seventy-three thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(24522, 58848, 'fifty-eight thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(24523, 29869, 'twenty-nine thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(24524, 74504, 'seventy-four thousand five hundred four');\nINSERT INTO t3 VALUES(24525, 29171, 'twenty-nine thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(24526, 67023, 'sixty-seven thousand twenty-three');\nINSERT INTO t3 VALUES(24527, 16021, 'sixteen thousand twenty-one');\nINSERT INTO t3 VALUES(24528, 76889, 'seventy-six thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(24529, 13227, 'thirteen thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(24530, 60563, 'sixty thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(24531, 9637, 'nine thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(24532, 70863, 'seventy thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(24533, 36076, 'thirty-six thousand seventy-six');\nINSERT INTO t3 VALUES(24534, 98410, 'ninety-eight thousand four hundred ten');\nINSERT INTO t3 VALUES(24535, 12095, 'twelve thousand ninety-five');\nINSERT INTO t3 VALUES(24536, 24406, 'twenty-four thousand four hundred six');\nINSERT INTO t3 VALUES(24537, 73409, 'seventy-three thousand four hundred nine');\nINSERT INTO t3 VALUES(24538, 29768, 'twenty-nine thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(24539, 84265, 'eighty-four thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(24540, 26609, 'twenty-six thousand six hundred nine');\nINSERT INTO t3 VALUES(24541, 35668, 'thirty-five thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(24542, 85458, 'eighty-five thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(24543, 12571, 'twelve thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(24544, 30268, 'thirty thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(24545, 66940, 'sixty-six thousand nine hundred forty');\nINSERT INTO t3 VALUES(24546, 89088, 'eighty-nine thousand eighty-eight');\nINSERT INTO t3 VALUES(24547, 52116, 'fifty-two thousand one hundred sixteen');\nINSERT INTO t3 VALUES(24548, 52044, 'fifty-two thousand forty-four');\nINSERT INTO t3 VALUES(24549, 43022, 'forty-three thousand twenty-two');\nINSERT INTO t3 VALUES(24550, 82921, 'eighty-two thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(24551, 74469, 'seventy-four thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(24552, 32766, 'thirty-two thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(24553, 36163, 'thirty-six thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(24554, 42630, 'forty-two thousand six hundred thirty');\nINSERT INTO t3 VALUES(24555, 40683, 'forty thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(24556, 19842, 'nineteen thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(24557, 33550, 'thirty-three thousand five hundred fifty');\nINSERT INTO t3 VALUES(24558, 7122, 'seven thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(24559, 68362, 'sixty-eight thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(24560, 60637, 'sixty thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(24561, 21302, 'twenty-one thousand three hundred two');\nINSERT INTO t3 VALUES(24562, 77989, 'seventy-seven thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(24563, 73376, 'seventy-three thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(24564, 43376, 'forty-three thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(24565, 87694, 'eighty-seven thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(24566, 90797, 'ninety thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(24567, 46321, 'forty-six thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(24568, 19654, 'nineteen thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(24569, 28489, 'twenty-eight thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(24570, 83580, 'eighty-three thousand five hundred eighty');\nINSERT INTO t3 VALUES(24571, 24168, 'twenty-four thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(24572, 35300, 'thirty-five thousand three hundred');\nINSERT INTO t3 VALUES(24573, 86199, 'eighty-six thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(24574, 39534, 'thirty-nine thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(24575, 53386, 'fifty-three thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(24576, 96527, 'ninety-six thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(24577, 70262, 'seventy thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(24578, 56369, 'fifty-six thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(24579, 71474, 'seventy-one thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(24580, 24093, 'twenty-four thousand ninety-three');\nINSERT INTO t3 VALUES(24581, 48149, 'forty-eight thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(24582, 9717, 'nine thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(24583, 20205, 'twenty thousand two hundred five');\nINSERT INTO t3 VALUES(24584, 15770, 'fifteen thousand seven hundred seventy');\nINSERT INTO t3 VALUES(24585, 8601, 'eight thousand six hundred one');\nINSERT INTO t3 VALUES(24586, 33272, 'thirty-three thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(24587, 9620, 'nine thousand six hundred twenty');\nINSERT INTO t3 VALUES(24588, 19035, 'nineteen thousand thirty-five');\nINSERT INTO t3 VALUES(24589, 77898, 'seventy-seven thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(24590, 43891, 'forty-three thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(24591, 7341, 'seven thousand three hundred forty-one');\nINSERT INTO t3 VALUES(24592, 21012, 'twenty-one thousand twelve');\nINSERT INTO t3 VALUES(24593, 47304, 'forty-seven thousand three hundred four');\nINSERT INTO t3 VALUES(24594, 13771, 'thirteen thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(24595, 56852, 'fifty-six thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(24596, 1092, 'one thousand ninety-two');\nINSERT INTO t3 VALUES(24597, 10527, 'ten thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(24598, 24351, 'twenty-four thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(24599, 3185, 'three thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(24600, 20932, 'twenty thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(24601, 2044, 'two thousand forty-four');\nINSERT INTO t3 VALUES(24602, 79491, 'seventy-nine thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(24603, 63479, 'sixty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(24604, 64144, 'sixty-four thousand one hundred forty-four');\nINSERT INTO t3 VALUES(24605, 11553, 'eleven thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(24606, 80080, 'eighty thousand eighty');\nINSERT INTO t3 VALUES(24607, 42841, 'forty-two thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(24608, 26094, 'twenty-six thousand ninety-four');\nINSERT INTO t3 VALUES(24609, 38439, 'thirty-eight thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(24610, 28474, 'twenty-eight thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(24611, 58847, 'fifty-eight thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(24612, 8319, 'eight thousand three hundred nineteen');\nINSERT INTO t3 VALUES(24613, 85074, 'eighty-five thousand seventy-four');\nINSERT INTO t3 VALUES(24614, 26116, 'twenty-six thousand one hundred sixteen');\nINSERT INTO t3 VALUES(24615, 32315, 'thirty-two thousand three hundred fifteen');\nINSERT INTO t3 VALUES(24616, 23304, 'twenty-three thousand three hundred four');\nINSERT INTO t3 VALUES(24617, 69448, 'sixty-nine thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(24618, 79351, 'seventy-nine thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(24619, 80548, 'eighty thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(24620, 74037, 'seventy-four thousand thirty-seven');\nINSERT INTO t3 VALUES(24621, 11683, 'eleven thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(24622, 32115, 'thirty-two thousand one hundred fifteen');\nINSERT INTO t3 VALUES(24623, 90383, 'ninety thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(24624, 95459, 'ninety-five thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(24625, 6463, 'six thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(24626, 72425, 'seventy-two thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(24627, 96118, 'ninety-six thousand one hundred eighteen');\nINSERT INTO t3 VALUES(24628, 99948, 'ninety-nine thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(24629, 40496, 'forty thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(24630, 57027, 'fifty-seven thousand twenty-seven');\nINSERT INTO t3 VALUES(24631, 54806, 'fifty-four thousand eight hundred six');\nINSERT INTO t3 VALUES(24632, 74192, 'seventy-four thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(24633, 1458, 'one thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(24634, 60022, 'sixty thousand twenty-two');\nINSERT INTO t3 VALUES(24635, 13015, 'thirteen thousand fifteen');\nINSERT INTO t3 VALUES(24636, 4182, 'four thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(24637, 47728, 'forty-seven thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(24638, 48780, 'forty-eight thousand seven hundred eighty');\nINSERT INTO t3 VALUES(24639, 35252, 'thirty-five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(24640, 5917, 'five thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(24641, 80663, 'eighty thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(24642, 16943, 'sixteen thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(24643, 14529, 'fourteen thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(24644, 13366, 'thirteen thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(24645, 94467, 'ninety-four thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(24646, 26831, 'twenty-six thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(24647, 64859, 'sixty-four thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(24648, 79940, 'seventy-nine thousand nine hundred forty');\nINSERT INTO t3 VALUES(24649, 56200, 'fifty-six thousand two hundred');\nINSERT INTO t3 VALUES(24650, 48830, 'forty-eight thousand eight hundred thirty');\nINSERT INTO t3 VALUES(24651, 90965, 'ninety thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(24652, 67810, 'sixty-seven thousand eight hundred ten');\nINSERT INTO t3 VALUES(24653, 77419, 'seventy-seven thousand four hundred nineteen');\nINSERT INTO t3 VALUES(24654, 16345, 'sixteen thousand three hundred forty-five');\nINSERT INTO t3 VALUES(24655, 28572, 'twenty-eight thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(24656, 24503, 'twenty-four thousand five hundred three');\nINSERT INTO t3 VALUES(24657, 52829, 'fifty-two thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(24658, 9201, 'nine thousand two hundred one');\nINSERT INTO t3 VALUES(24659, 60184, 'sixty thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(24660, 65258, 'sixty-five thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(24661, 68277, 'sixty-eight thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(24662, 12632, 'twelve thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(24663, 88871, 'eighty-eight thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(24664, 88888, 'eighty-eight thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(24665, 94189, 'ninety-four thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(24666, 17742, 'seventeen thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(24667, 46197, 'forty-six thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(24668, 28493, 'twenty-eight thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(24669, 21476, 'twenty-one thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(24670, 59660, 'fifty-nine thousand six hundred sixty');\nINSERT INTO t3 VALUES(24671, 33157, 'thirty-three thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(24672, 70806, 'seventy thousand eight hundred six');\nINSERT INTO t3 VALUES(24673, 10282, 'ten thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(24674, 46608, 'forty-six thousand six hundred eight');\nINSERT INTO t3 VALUES(24675, 93057, 'ninety-three thousand fifty-seven');\nINSERT INTO t3 VALUES(24676, 87137, 'eighty-seven thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(24677, 59914, 'fifty-nine thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(24678, 15138, 'fifteen thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(24679, 66081, 'sixty-six thousand eighty-one');\nINSERT INTO t3 VALUES(24680, 2872, 'two thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(24681, 58182, 'fifty-eight thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(24682, 98693, 'ninety-eight thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(24683, 6402, 'six thousand four hundred two');\nINSERT INTO t3 VALUES(24684, 81893, 'eighty-one thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(24685, 82769, 'eighty-two thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(24686, 28132, 'twenty-eight thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(24687, 23087, 'twenty-three thousand eighty-seven');\nINSERT INTO t3 VALUES(24688, 39363, 'thirty-nine thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(24689, 33263, 'thirty-three thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(24690, 8211, 'eight thousand two hundred eleven');\nINSERT INTO t3 VALUES(24691, 41329, 'forty-one thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(24692, 95183, 'ninety-five thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(24693, 47040, 'forty-seven thousand forty');\nINSERT INTO t3 VALUES(24694, 59347, 'fifty-nine thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(24695, 19887, 'nineteen thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(24696, 10700, 'ten thousand seven hundred');\nINSERT INTO t3 VALUES(24697, 44206, 'forty-four thousand two hundred six');\nINSERT INTO t3 VALUES(24698, 66580, 'sixty-six thousand five hundred eighty');\nINSERT INTO t3 VALUES(24699, 47669, 'forty-seven thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(24700, 80892, 'eighty thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(24701, 75755, 'seventy-five thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(24702, 70814, 'seventy thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(24703, 84205, 'eighty-four thousand two hundred five');\nINSERT INTO t3 VALUES(24704, 49501, 'forty-nine thousand five hundred one');\nINSERT INTO t3 VALUES(24705, 61490, 'sixty-one thousand four hundred ninety');\nINSERT INTO t3 VALUES(24706, 95982, 'ninety-five thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(24707, 15473, 'fifteen thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(24708, 59440, 'fifty-nine thousand four hundred forty');\nINSERT INTO t3 VALUES(24709, 2995, 'two thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(24710, 38547, 'thirty-eight thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(24711, 85352, 'eighty-five thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(24712, 10539, 'ten thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(24713, 78665, 'seventy-eight thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(24714, 46340, 'forty-six thousand three hundred forty');\nINSERT INTO t3 VALUES(24715, 52171, 'fifty-two thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(24716, 79592, 'seventy-nine thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(24717, 80347, 'eighty thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(24718, 36969, 'thirty-six thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(24719, 58825, 'fifty-eight thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(24720, 50497, 'fifty thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(24721, 52942, 'fifty-two thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(24722, 53225, 'fifty-three thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(24723, 35595, 'thirty-five thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(24724, 70411, 'seventy thousand four hundred eleven');\nINSERT INTO t3 VALUES(24725, 23175, 'twenty-three thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(24726, 20256, 'twenty thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(24727, 75444, 'seventy-five thousand four hundred forty-four');\nINSERT INTO t3 VALUES(24728, 29472, 'twenty-nine thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(24729, 74873, 'seventy-four thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(24730, 96570, 'ninety-six thousand five hundred seventy');\nINSERT INTO t3 VALUES(24731, 34886, 'thirty-four thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(24732, 5332, 'five thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(24733, 2099, 'two thousand ninety-nine');\nINSERT INTO t3 VALUES(24734, 54409, 'fifty-four thousand four hundred nine');\nINSERT INTO t3 VALUES(24735, 3586, 'three thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(24736, 70081, 'seventy thousand eighty-one');\nINSERT INTO t3 VALUES(24737, 44769, 'forty-four thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(24738, 9967, 'nine thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(24739, 86997, 'eighty-six thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(24740, 22978, 'twenty-two thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(24741, 41041, 'forty-one thousand forty-one');\nINSERT INTO t3 VALUES(24742, 12900, 'twelve thousand nine hundred');\nINSERT INTO t3 VALUES(24743, 16669, 'sixteen thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(24744, 97688, 'ninety-seven thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(24745, 33963, 'thirty-three thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(24746, 13508, 'thirteen thousand five hundred eight');\nINSERT INTO t3 VALUES(24747, 39008, 'thirty-nine thousand eight');\nINSERT INTO t3 VALUES(24748, 53052, 'fifty-three thousand fifty-two');\nINSERT INTO t3 VALUES(24749, 92622, 'ninety-two thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(24750, 95918, 'ninety-five thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(24751, 67927, 'sixty-seven thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(24752, 8489, 'eight thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(24753, 38917, 'thirty-eight thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(24754, 13065, 'thirteen thousand sixty-five');\nINSERT INTO t3 VALUES(24755, 15772, 'fifteen thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(24756, 71996, 'seventy-one thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(24757, 93804, 'ninety-three thousand eight hundred four');\nINSERT INTO t3 VALUES(24758, 62376, 'sixty-two thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(24759, 19210, 'nineteen thousand two hundred ten');\nINSERT INTO t3 VALUES(24760, 55669, 'fifty-five thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(24761, 60397, 'sixty thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(24762, 15157, 'fifteen thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(24763, 17765, 'seventeen thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(24764, 24303, 'twenty-four thousand three hundred three');\nINSERT INTO t3 VALUES(24765, 74762, 'seventy-four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(24766, 12660, 'twelve thousand six hundred sixty');\nINSERT INTO t3 VALUES(24767, 71115, 'seventy-one thousand one hundred fifteen');\nINSERT INTO t3 VALUES(24768, 75727, 'seventy-five thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(24769, 81886, 'eighty-one thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(24770, 93418, 'ninety-three thousand four hundred eighteen');\nINSERT INTO t3 VALUES(24771, 55993, 'fifty-five thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(24772, 98380, 'ninety-eight thousand three hundred eighty');\nINSERT INTO t3 VALUES(24773, 58971, 'fifty-eight thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(24774, 16900, 'sixteen thousand nine hundred');\nINSERT INTO t3 VALUES(24775, 93345, 'ninety-three thousand three hundred forty-five');\nINSERT INTO t3 VALUES(24776, 60673, 'sixty thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(24777, 50247, 'fifty thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(24778, 78763, 'seventy-eight thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(24779, 2916, 'two thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(24780, 38779, 'thirty-eight thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(24781, 9671, 'nine thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(24782, 75048, 'seventy-five thousand forty-eight');\nINSERT INTO t3 VALUES(24783, 71339, 'seventy-one thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(24784, 99363, 'ninety-nine thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(24785, 43445, 'forty-three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(24786, 15216, 'fifteen thousand two hundred sixteen');\nINSERT INTO t3 VALUES(24787, 86770, 'eighty-six thousand seven hundred seventy');\nINSERT INTO t3 VALUES(24788, 94108, 'ninety-four thousand one hundred eight');\nINSERT INTO t3 VALUES(24789, 53313, 'fifty-three thousand three hundred thirteen');\nINSERT INTO t3 VALUES(24790, 62927, 'sixty-two thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(24791, 2633, 'two thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(24792, 71987, 'seventy-one thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(24793, 31816, 'thirty-one thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(24794, 44145, 'forty-four thousand one hundred forty-five');\nINSERT INTO t3 VALUES(24795, 44670, 'forty-four thousand six hundred seventy');\nINSERT INTO t3 VALUES(24796, 32652, 'thirty-two thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(24797, 86370, 'eighty-six thousand three hundred seventy');\nINSERT INTO t3 VALUES(24798, 77806, 'seventy-seven thousand eight hundred six');\nINSERT INTO t3 VALUES(24799, 49010, 'forty-nine thousand ten');\nINSERT INTO t3 VALUES(24800, 41469, 'forty-one thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(24801, 86497, 'eighty-six thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(24802, 89416, 'eighty-nine thousand four hundred sixteen');\nINSERT INTO t3 VALUES(24803, 22795, 'twenty-two thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(24804, 16486, 'sixteen thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(24805, 83767, 'eighty-three thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(24806, 69813, 'sixty-nine thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(24807, 24398, 'twenty-four thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(24808, 4641, 'four thousand six hundred forty-one');\nINSERT INTO t3 VALUES(24809, 19155, 'nineteen thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(24810, 10874, 'ten thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(24811, 35546, 'thirty-five thousand five hundred forty-six');\nINSERT INTO t3 VALUES(24812, 13792, 'thirteen thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(24813, 47786, 'forty-seven thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(24814, 43075, 'forty-three thousand seventy-five');\nINSERT INTO t3 VALUES(24815, 63969, 'sixty-three thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(24816, 42942, 'forty-two thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(24817, 46118, 'forty-six thousand one hundred eighteen');\nINSERT INTO t3 VALUES(24818, 58231, 'fifty-eight thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(24819, 10334, 'ten thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(24820, 34774, 'thirty-four thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(24821, 10146, 'ten thousand one hundred forty-six');\nINSERT INTO t3 VALUES(24822, 99742, 'ninety-nine thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(24823, 11418, 'eleven thousand four hundred eighteen');\nINSERT INTO t3 VALUES(24824, 69613, 'sixty-nine thousand six hundred thirteen');\nINSERT INTO t3 VALUES(24825, 66806, 'sixty-six thousand eight hundred six');\nINSERT INTO t3 VALUES(24826, 34060, 'thirty-four thousand sixty');\nINSERT INTO t3 VALUES(24827, 40116, 'forty thousand one hundred sixteen');\nINSERT INTO t3 VALUES(24828, 25042, 'twenty-five thousand forty-two');\nINSERT INTO t3 VALUES(24829, 77863, 'seventy-seven thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(24830, 97334, 'ninety-seven thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(24831, 84687, 'eighty-four thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(24832, 44197, 'forty-four thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(24833, 94141, 'ninety-four thousand one hundred forty-one');\nINSERT INTO t3 VALUES(24834, 87283, 'eighty-seven thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(24835, 80045, 'eighty thousand forty-five');\nINSERT INTO t3 VALUES(24836, 57110, 'fifty-seven thousand one hundred ten');\nINSERT INTO t3 VALUES(24837, 98823, 'ninety-eight thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(24838, 10560, 'ten thousand five hundred sixty');\nINSERT INTO t3 VALUES(24839, 48709, 'forty-eight thousand seven hundred nine');\nINSERT INTO t3 VALUES(24840, 84826, 'eighty-four thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(24841, 8743, 'eight thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(24842, 5747, 'five thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(24843, 96079, 'ninety-six thousand seventy-nine');\nINSERT INTO t3 VALUES(24844, 29287, 'twenty-nine thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(24845, 10503, 'ten thousand five hundred three');\nINSERT INTO t3 VALUES(24846, 42835, 'forty-two thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(24847, 39803, 'thirty-nine thousand eight hundred three');\nINSERT INTO t3 VALUES(24848, 47531, 'forty-seven thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(24849, 12240, 'twelve thousand two hundred forty');\nINSERT INTO t3 VALUES(24850, 41777, 'forty-one thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(24851, 21596, 'twenty-one thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(24852, 24048, 'twenty-four thousand forty-eight');\nINSERT INTO t3 VALUES(24853, 36560, 'thirty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(24854, 13578, 'thirteen thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(24855, 49976, 'forty-nine thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(24856, 54781, 'fifty-four thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(24857, 94365, 'ninety-four thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(24858, 67888, 'sixty-seven thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(24859, 60940, 'sixty thousand nine hundred forty');\nINSERT INTO t3 VALUES(24860, 45712, 'forty-five thousand seven hundred twelve');\nINSERT INTO t3 VALUES(24861, 74303, 'seventy-four thousand three hundred three');\nINSERT INTO t3 VALUES(24862, 21345, 'twenty-one thousand three hundred forty-five');\nINSERT INTO t3 VALUES(24863, 22554, 'twenty-two thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(24864, 54730, 'fifty-four thousand seven hundred thirty');\nINSERT INTO t3 VALUES(24865, 79057, 'seventy-nine thousand fifty-seven');\nINSERT INTO t3 VALUES(24866, 13523, 'thirteen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(24867, 43990, 'forty-three thousand nine hundred ninety');\nINSERT INTO t3 VALUES(24868, 25902, 'twenty-five thousand nine hundred two');\nINSERT INTO t3 VALUES(24869, 51825, 'fifty-one thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(24870, 50909, 'fifty thousand nine hundred nine');\nINSERT INTO t3 VALUES(24871, 18586, 'eighteen thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(24872, 6607, 'six thousand six hundred seven');\nINSERT INTO t3 VALUES(24873, 3890, 'three thousand eight hundred ninety');\nINSERT INTO t3 VALUES(24874, 46905, 'forty-six thousand nine hundred five');\nINSERT INTO t3 VALUES(24875, 13209, 'thirteen thousand two hundred nine');\nINSERT INTO t3 VALUES(24876, 63392, 'sixty-three thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(24877, 91399, 'ninety-one thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(24878, 31171, 'thirty-one thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(24879, 35561, 'thirty-five thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(24880, 1318, 'one thousand three hundred eighteen');\nINSERT INTO t3 VALUES(24881, 32933, 'thirty-two thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(24882, 41733, 'forty-one thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(24883, 65985, 'sixty-five thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(24884, 57242, 'fifty-seven thousand two hundred forty-two');\nINSERT INTO t3 VALUES(24885, 10678, 'ten thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(24886, 12854, 'twelve thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(24887, 14436, 'fourteen thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(24888, 23988, 'twenty-three thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(24889, 32428, 'thirty-two thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(24890, 31980, 'thirty-one thousand nine hundred eighty');\nINSERT INTO t3 VALUES(24891, 42592, 'forty-two thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(24892, 10777, 'ten thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(24893, 90039, 'ninety thousand thirty-nine');\nINSERT INTO t3 VALUES(24894, 98488, 'ninety-eight thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(24895, 66119, 'sixty-six thousand one hundred nineteen');\nINSERT INTO t3 VALUES(24896, 90906, 'ninety thousand nine hundred six');\nINSERT INTO t3 VALUES(24897, 43273, 'forty-three thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(24898, 86923, 'eighty-six thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(24899, 24398, 'twenty-four thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(24900, 70697, 'seventy thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(24901, 67776, 'sixty-seven thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(24902, 72999, 'seventy-two thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(24903, 64202, 'sixty-four thousand two hundred two');\nINSERT INTO t3 VALUES(24904, 246, 'two hundred forty-six');\nINSERT INTO t3 VALUES(24905, 8602, 'eight thousand six hundred two');\nINSERT INTO t3 VALUES(24906, 2864, 'two thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(24907, 7330, 'seven thousand three hundred thirty');\nINSERT INTO t3 VALUES(24908, 21614, 'twenty-one thousand six hundred fourteen');\nINSERT INTO t3 VALUES(24909, 98092, 'ninety-eight thousand ninety-two');\nINSERT INTO t3 VALUES(24910, 53159, 'fifty-three thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(24911, 24758, 'twenty-four thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(24912, 83464, 'eighty-three thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(24913, 79332, 'seventy-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(24914, 73379, 'seventy-three thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(24915, 78436, 'seventy-eight thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(24916, 55314, 'fifty-five thousand three hundred fourteen');\nINSERT INTO t3 VALUES(24917, 49986, 'forty-nine thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(24918, 20172, 'twenty thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(24919, 46094, 'forty-six thousand ninety-four');\nINSERT INTO t3 VALUES(24920, 52678, 'fifty-two thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(24921, 20785, 'twenty thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(24922, 19531, 'nineteen thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(24923, 70323, 'seventy thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(24924, 29816, 'twenty-nine thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(24925, 95128, 'ninety-five thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(24926, 95759, 'ninety-five thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(24927, 5910, 'five thousand nine hundred ten');\nINSERT INTO t3 VALUES(24928, 72781, 'seventy-two thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(24929, 71098, 'seventy-one thousand ninety-eight');\nINSERT INTO t3 VALUES(24930, 52832, 'fifty-two thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(24931, 96014, 'ninety-six thousand fourteen');\nINSERT INTO t3 VALUES(24932, 70544, 'seventy thousand five hundred forty-four');\nINSERT INTO t3 VALUES(24933, 161, 'one hundred sixty-one');\nINSERT INTO t3 VALUES(24934, 623, 'six hundred twenty-three');\nINSERT INTO t3 VALUES(24935, 72399, 'seventy-two thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(24936, 83929, 'eighty-three thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(24937, 97985, 'ninety-seven thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(24938, 25597, 'twenty-five thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(24939, 78421, 'seventy-eight thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(24940, 60639, 'sixty thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(24941, 50903, 'fifty thousand nine hundred three');\nINSERT INTO t3 VALUES(24942, 934, 'nine hundred thirty-four');\nINSERT INTO t3 VALUES(24943, 53684, 'fifty-three thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(24944, 12930, 'twelve thousand nine hundred thirty');\nINSERT INTO t3 VALUES(24945, 38638, 'thirty-eight thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(24946, 1269, 'one thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(24947, 36603, 'thirty-six thousand six hundred three');\nINSERT INTO t3 VALUES(24948, 43295, 'forty-three thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(24949, 58480, 'fifty-eight thousand four hundred eighty');\nINSERT INTO t3 VALUES(24950, 74075, 'seventy-four thousand seventy-five');\nINSERT INTO t3 VALUES(24951, 24688, 'twenty-four thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(24952, 83209, 'eighty-three thousand two hundred nine');\nINSERT INTO t3 VALUES(24953, 59084, 'fifty-nine thousand eighty-four');\nINSERT INTO t3 VALUES(24954, 20663, 'twenty thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(24955, 79179, 'seventy-nine thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(24956, 1978, 'one thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(24957, 66295, 'sixty-six thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(24958, 22993, 'twenty-two thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(24959, 90318, 'ninety thousand three hundred eighteen');\nINSERT INTO t3 VALUES(24960, 30818, 'thirty thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(24961, 83489, 'eighty-three thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(24962, 50881, 'fifty thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(24963, 91104, 'ninety-one thousand one hundred four');\nINSERT INTO t3 VALUES(24964, 83683, 'eighty-three thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(24965, 27051, 'twenty-seven thousand fifty-one');\nINSERT INTO t3 VALUES(24966, 84694, 'eighty-four thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(24967, 16269, 'sixteen thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(24968, 21299, 'twenty-one thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(24969, 21036, 'twenty-one thousand thirty-six');\nINSERT INTO t3 VALUES(24970, 85042, 'eighty-five thousand forty-two');\nINSERT INTO t3 VALUES(24971, 5100, 'five thousand one hundred');\nINSERT INTO t3 VALUES(24972, 73645, 'seventy-three thousand six hundred forty-five');\nINSERT INTO t3 VALUES(24973, 45681, 'forty-five thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(24974, 43656, 'forty-three thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(24975, 71105, 'seventy-one thousand one hundred five');\nINSERT INTO t3 VALUES(24976, 7628, 'seven thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(24977, 23163, 'twenty-three thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(24978, 146, 'one hundred forty-six');\nINSERT INTO t3 VALUES(24979, 12055, 'twelve thousand fifty-five');\nINSERT INTO t3 VALUES(24980, 36730, 'thirty-six thousand seven hundred thirty');\nINSERT INTO t3 VALUES(24981, 96387, 'ninety-six thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(24982, 30707, 'thirty thousand seven hundred seven');\nINSERT INTO t3 VALUES(24983, 85821, 'eighty-five thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(24984, 72713, 'seventy-two thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(24985, 89071, 'eighty-nine thousand seventy-one');\nINSERT INTO t3 VALUES(24986, 95729, 'ninety-five thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(24987, 19944, 'nineteen thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(24988, 63977, 'sixty-three thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(24989, 80696, 'eighty thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(24990, 80543, 'eighty thousand five hundred forty-three');\nINSERT INTO t3 VALUES(24991, 93012, 'ninety-three thousand twelve');\nINSERT INTO t3 VALUES(24992, 53561, 'fifty-three thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(24993, 96345, 'ninety-six thousand three hundred forty-five');\nINSERT INTO t3 VALUES(24994, 45500, 'forty-five thousand five hundred');\nINSERT INTO t3 VALUES(24995, 71895, 'seventy-one thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(24996, 88950, 'eighty-eight thousand nine hundred fifty');\nINSERT INTO t3 VALUES(24997, 10863, 'ten thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(24998, 94124, 'ninety-four thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(24999, 44871, 'forty-four thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(25000, 35764, 'thirty-five thousand seven hundred sixty-four');\nCOMMIT;\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark4.sql",
    "content": "BEGIN;\nSELECT count(*), avg(b) FROM t2 WHERE b>=0 AND b<1000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100 AND b<1100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200 AND b<1200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300 AND b<1300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400 AND b<1400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=500 AND b<1500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=600 AND b<1600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=700 AND b<1700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=800 AND b<1800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=900 AND b<1900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1000 AND b<2000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1100 AND b<2100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1200 AND b<2200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1300 AND b<2300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1400 AND b<2400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1500 AND b<2500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1600 AND b<2600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1700 AND b<2700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1800 AND b<2800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1900 AND b<2900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2000 AND b<3000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2100 AND b<3100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2200 AND b<3200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2300 AND b<3300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2400 AND b<3400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2500 AND b<3500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2600 AND b<3600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2700 AND b<3700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2800 AND b<3800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2900 AND b<3900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3000 AND b<4000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3100 AND b<4100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3200 AND b<4200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3300 AND b<4300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3400 AND b<4400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3500 AND b<4500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3600 AND b<4600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3700 AND b<4700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3800 AND b<4800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3900 AND b<4900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4000 AND b<5000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4100 AND b<5100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4200 AND b<5200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4300 AND b<5300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4400 AND b<5400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4500 AND b<5500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4600 AND b<5600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4700 AND b<5700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4800 AND b<5800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4900 AND b<5900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5000 AND b<6000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5100 AND b<6100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5200 AND b<6200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5300 AND b<6300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5400 AND b<6400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5500 AND b<6500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5600 AND b<6600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5700 AND b<6700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5800 AND b<6800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5900 AND b<6900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6000 AND b<7000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6100 AND b<7100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6200 AND b<7200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6300 AND b<7300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6400 AND b<7400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6500 AND b<7500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6600 AND b<7600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6700 AND b<7700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6800 AND b<7800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6900 AND b<7900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7000 AND b<8000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7100 AND b<8100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7200 AND b<8200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7300 AND b<8300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7400 AND b<8400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7500 AND b<8500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7600 AND b<8600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7700 AND b<8700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7800 AND b<8800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7900 AND b<8900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8000 AND b<9000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8100 AND b<9100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8200 AND b<9200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8300 AND b<9300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8400 AND b<9400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8500 AND b<9500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8600 AND b<9600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8700 AND b<9700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8800 AND b<9800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8900 AND b<9900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9000 AND b<10000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9100 AND b<10100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9200 AND b<10200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9300 AND b<10300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9400 AND b<10400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9500 AND b<10500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9600 AND b<10600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9700 AND b<10700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9800 AND b<10800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9900 AND b<10900;\nCOMMIT;\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark5.sql",
    "content": "BEGIN;\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ten%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eleven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twelve%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirteen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fourteen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifteen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixteen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventeen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighteen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%nineteen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%one hundred%';\nCOMMIT;\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark6.sql",
    "content": "CREATE INDEX i2a ON t2(a);\nCREATE INDEX i2b ON t2(b);\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark7.sql",
    "content": "BEGIN;\nSELECT count(*), avg(b) FROM t2 WHERE b>=0 AND b<100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100 AND b<200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200 AND b<300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300 AND b<400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400 AND b<500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=500 AND b<600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=600 AND b<700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=700 AND b<800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=800 AND b<900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=900 AND b<1000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1000 AND b<1100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1100 AND b<1200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1200 AND b<1300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1300 AND b<1400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1400 AND b<1500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1500 AND b<1600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1600 AND b<1700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1700 AND b<1800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1800 AND b<1900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1900 AND b<2000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2000 AND b<2100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2100 AND b<2200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2200 AND b<2300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2300 AND b<2400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2400 AND b<2500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2500 AND b<2600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2600 AND b<2700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2700 AND b<2800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2800 AND b<2900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2900 AND b<3000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3000 AND b<3100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3100 AND b<3200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3200 AND b<3300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3300 AND b<3400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3400 AND b<3500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3500 AND b<3600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3600 AND b<3700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3700 AND b<3800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3800 AND b<3900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3900 AND b<4000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4000 AND b<4100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4100 AND b<4200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4200 AND b<4300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4300 AND b<4400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4400 AND b<4500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4500 AND b<4600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4600 AND b<4700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4700 AND b<4800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4800 AND b<4900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4900 AND b<5000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5000 AND b<5100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5100 AND b<5200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5200 AND b<5300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5300 AND b<5400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5400 AND b<5500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5500 AND b<5600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5600 AND b<5700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5700 AND b<5800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5800 AND b<5900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5900 AND b<6000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6000 AND b<6100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6100 AND b<6200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6200 AND b<6300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6300 AND b<6400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6400 AND b<6500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6500 AND b<6600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6600 AND b<6700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6700 AND b<6800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6800 AND b<6900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6900 AND b<7000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7000 AND b<7100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7100 AND b<7200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7200 AND b<7300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7300 AND b<7400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7400 AND b<7500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7500 AND b<7600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7600 AND b<7700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7700 AND b<7800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7800 AND b<7900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7900 AND b<8000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8000 AND b<8100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8100 AND b<8200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8200 AND b<8300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8300 AND b<8400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8400 AND b<8500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8500 AND b<8600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8600 AND b<8700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8700 AND b<8800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8800 AND b<8900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8900 AND b<9000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9000 AND b<9100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9100 AND b<9200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9200 AND b<9300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9300 AND b<9400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9400 AND b<9500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9500 AND b<9600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9600 AND b<9700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9700 AND b<9800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9800 AND b<9900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9900 AND b<10000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10000 AND b<10100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10100 AND b<10200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10200 AND b<10300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10300 AND b<10400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10400 AND b<10500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10500 AND b<10600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10600 AND b<10700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10700 AND b<10800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10800 AND b<10900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10900 AND b<11000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11000 AND b<11100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11100 AND b<11200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11200 AND b<11300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11300 AND b<11400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11400 AND b<11500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11500 AND b<11600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11600 AND b<11700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11700 AND b<11800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11800 AND b<11900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11900 AND b<12000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12000 AND b<12100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12100 AND b<12200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12200 AND b<12300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12300 AND b<12400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12400 AND b<12500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12500 AND b<12600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12600 AND b<12700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12700 AND b<12800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12800 AND b<12900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12900 AND b<13000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13000 AND b<13100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13100 AND b<13200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13200 AND b<13300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13300 AND b<13400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13400 AND b<13500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13500 AND b<13600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13600 AND b<13700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13700 AND b<13800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13800 AND b<13900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13900 AND b<14000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14000 AND b<14100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14100 AND b<14200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14200 AND b<14300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14300 AND b<14400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14400 AND b<14500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14500 AND b<14600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14600 AND b<14700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14700 AND b<14800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14800 AND b<14900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14900 AND b<15000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15000 AND b<15100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15100 AND b<15200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15200 AND b<15300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15300 AND b<15400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15400 AND b<15500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15500 AND b<15600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15600 AND b<15700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15700 AND b<15800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15800 AND b<15900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15900 AND b<16000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16000 AND b<16100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16100 AND b<16200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16200 AND b<16300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16300 AND b<16400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16400 AND b<16500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16500 AND b<16600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16600 AND b<16700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16700 AND b<16800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16800 AND b<16900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16900 AND b<17000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17000 AND b<17100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17100 AND b<17200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17200 AND b<17300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17300 AND b<17400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17400 AND b<17500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17500 AND b<17600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17600 AND b<17700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17700 AND b<17800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17800 AND b<17900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17900 AND b<18000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18000 AND b<18100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18100 AND b<18200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18200 AND b<18300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18300 AND b<18400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18400 AND b<18500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18500 AND b<18600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18600 AND b<18700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18700 AND b<18800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18800 AND b<18900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18900 AND b<19000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19000 AND b<19100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19100 AND b<19200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19200 AND b<19300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19300 AND b<19400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19400 AND b<19500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19500 AND b<19600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19600 AND b<19700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19700 AND b<19800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19800 AND b<19900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19900 AND b<20000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20000 AND b<20100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20100 AND b<20200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20200 AND b<20300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20300 AND b<20400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20400 AND b<20500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20500 AND b<20600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20600 AND b<20700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20700 AND b<20800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20800 AND b<20900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20900 AND b<21000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21000 AND b<21100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21100 AND b<21200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21200 AND b<21300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21300 AND b<21400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21400 AND b<21500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21500 AND b<21600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21600 AND b<21700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21700 AND b<21800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21800 AND b<21900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21900 AND b<22000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22000 AND b<22100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22100 AND b<22200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22200 AND b<22300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22300 AND b<22400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22400 AND b<22500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22500 AND b<22600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22600 AND b<22700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22700 AND b<22800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22800 AND b<22900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22900 AND b<23000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23000 AND b<23100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23100 AND b<23200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23200 AND b<23300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23300 AND b<23400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23400 AND b<23500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23500 AND b<23600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23600 AND b<23700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23700 AND b<23800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23800 AND b<23900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23900 AND b<24000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24000 AND b<24100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24100 AND b<24200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24200 AND b<24300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24300 AND b<24400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24400 AND b<24500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24500 AND b<24600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24600 AND b<24700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24700 AND b<24800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24800 AND b<24900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24900 AND b<25000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25000 AND b<25100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25100 AND b<25200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25200 AND b<25300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25300 AND b<25400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25400 AND b<25500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25500 AND b<25600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25600 AND b<25700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25700 AND b<25800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25800 AND b<25900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25900 AND b<26000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26000 AND b<26100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26100 AND b<26200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26200 AND b<26300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26300 AND b<26400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26400 AND b<26500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26500 AND b<26600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26600 AND b<26700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26700 AND b<26800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26800 AND b<26900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26900 AND b<27000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27000 AND b<27100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27100 AND b<27200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27200 AND b<27300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27300 AND b<27400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27400 AND b<27500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27500 AND b<27600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27600 AND b<27700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27700 AND b<27800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27800 AND b<27900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27900 AND b<28000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28000 AND b<28100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28100 AND b<28200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28200 AND b<28300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28300 AND b<28400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28400 AND b<28500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28500 AND b<28600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28600 AND b<28700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28700 AND b<28800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28800 AND b<28900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28900 AND b<29000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29000 AND b<29100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29100 AND b<29200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29200 AND b<29300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29300 AND b<29400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29400 AND b<29500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29500 AND b<29600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29600 AND b<29700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29700 AND b<29800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29800 AND b<29900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29900 AND b<30000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30000 AND b<30100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30100 AND b<30200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30200 AND b<30300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30300 AND b<30400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30400 AND b<30500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30500 AND b<30600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30600 AND b<30700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30700 AND b<30800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30800 AND b<30900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30900 AND b<31000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31000 AND b<31100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31100 AND b<31200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31200 AND b<31300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31300 AND b<31400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31400 AND b<31500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31500 AND b<31600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31600 AND b<31700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31700 AND b<31800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31800 AND b<31900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31900 AND b<32000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32000 AND b<32100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32100 AND b<32200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32200 AND b<32300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32300 AND b<32400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32400 AND b<32500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32500 AND b<32600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32600 AND b<32700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32700 AND b<32800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32800 AND b<32900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32900 AND b<33000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33000 AND b<33100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33100 AND b<33200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33200 AND b<33300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33300 AND b<33400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33400 AND b<33500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33500 AND b<33600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33600 AND b<33700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33700 AND b<33800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33800 AND b<33900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33900 AND b<34000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34000 AND b<34100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34100 AND b<34200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34200 AND b<34300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34300 AND b<34400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34400 AND b<34500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34500 AND b<34600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34600 AND b<34700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34700 AND b<34800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34800 AND b<34900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34900 AND b<35000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35000 AND b<35100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35100 AND b<35200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35200 AND b<35300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35300 AND b<35400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35400 AND b<35500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35500 AND b<35600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35600 AND b<35700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35700 AND b<35800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35800 AND b<35900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35900 AND b<36000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36000 AND b<36100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36100 AND b<36200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36200 AND b<36300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36300 AND b<36400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36400 AND b<36500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36500 AND b<36600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36600 AND b<36700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36700 AND b<36800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36800 AND b<36900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36900 AND b<37000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37000 AND b<37100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37100 AND b<37200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37200 AND b<37300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37300 AND b<37400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37400 AND b<37500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37500 AND b<37600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37600 AND b<37700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37700 AND b<37800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37800 AND b<37900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37900 AND b<38000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38000 AND b<38100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38100 AND b<38200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38200 AND b<38300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38300 AND b<38400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38400 AND b<38500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38500 AND b<38600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38600 AND b<38700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38700 AND b<38800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38800 AND b<38900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38900 AND b<39000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39000 AND b<39100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39100 AND b<39200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39200 AND b<39300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39300 AND b<39400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39400 AND b<39500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39500 AND b<39600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39600 AND b<39700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39700 AND b<39800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39800 AND b<39900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39900 AND b<40000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40000 AND b<40100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40100 AND b<40200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40200 AND b<40300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40300 AND b<40400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40400 AND b<40500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40500 AND b<40600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40600 AND b<40700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40700 AND b<40800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40800 AND b<40900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40900 AND b<41000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41000 AND b<41100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41100 AND b<41200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41200 AND b<41300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41300 AND b<41400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41400 AND b<41500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41500 AND b<41600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41600 AND b<41700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41700 AND b<41800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41800 AND b<41900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41900 AND b<42000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42000 AND b<42100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42100 AND b<42200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42200 AND b<42300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42300 AND b<42400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42400 AND b<42500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42500 AND b<42600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42600 AND b<42700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42700 AND b<42800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42800 AND b<42900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42900 AND b<43000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43000 AND b<43100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43100 AND b<43200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43200 AND b<43300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43300 AND b<43400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43400 AND b<43500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43500 AND b<43600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43600 AND b<43700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43700 AND b<43800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43800 AND b<43900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43900 AND b<44000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44000 AND b<44100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44100 AND b<44200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44200 AND b<44300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44300 AND b<44400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44400 AND b<44500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44500 AND b<44600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44600 AND b<44700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44700 AND b<44800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44800 AND b<44900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44900 AND b<45000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45000 AND b<45100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45100 AND b<45200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45200 AND b<45300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45300 AND b<45400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45400 AND b<45500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45500 AND b<45600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45600 AND b<45700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45700 AND b<45800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45800 AND b<45900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45900 AND b<46000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46000 AND b<46100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46100 AND b<46200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46200 AND b<46300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46300 AND b<46400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46400 AND b<46500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46500 AND b<46600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46600 AND b<46700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46700 AND b<46800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46800 AND b<46900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46900 AND b<47000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47000 AND b<47100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47100 AND b<47200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47200 AND b<47300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47300 AND b<47400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47400 AND b<47500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47500 AND b<47600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47600 AND b<47700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47700 AND b<47800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47800 AND b<47900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47900 AND b<48000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48000 AND b<48100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48100 AND b<48200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48200 AND b<48300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48300 AND b<48400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48400 AND b<48500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48500 AND b<48600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48600 AND b<48700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48700 AND b<48800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48800 AND b<48900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48900 AND b<49000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49000 AND b<49100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49100 AND b<49200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49200 AND b<49300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49300 AND b<49400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49400 AND b<49500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49500 AND b<49600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49600 AND b<49700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49700 AND b<49800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49800 AND b<49900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49900 AND b<50000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50000 AND b<50100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50100 AND b<50200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50200 AND b<50300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50300 AND b<50400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50400 AND b<50500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50500 AND b<50600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50600 AND b<50700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50700 AND b<50800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50800 AND b<50900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50900 AND b<51000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51000 AND b<51100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51100 AND b<51200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51200 AND b<51300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51300 AND b<51400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51400 AND b<51500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51500 AND b<51600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51600 AND b<51700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51700 AND b<51800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51800 AND b<51900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51900 AND b<52000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52000 AND b<52100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52100 AND b<52200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52200 AND b<52300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52300 AND b<52400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52400 AND b<52500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52500 AND b<52600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52600 AND b<52700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52700 AND b<52800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52800 AND b<52900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52900 AND b<53000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53000 AND b<53100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53100 AND b<53200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53200 AND b<53300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53300 AND b<53400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53400 AND b<53500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53500 AND b<53600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53600 AND b<53700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53700 AND b<53800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53800 AND b<53900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53900 AND b<54000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54000 AND b<54100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54100 AND b<54200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54200 AND b<54300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54300 AND b<54400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54400 AND b<54500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54500 AND b<54600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54600 AND b<54700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54700 AND b<54800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54800 AND b<54900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54900 AND b<55000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55000 AND b<55100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55100 AND b<55200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55200 AND b<55300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55300 AND b<55400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55400 AND b<55500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55500 AND b<55600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55600 AND b<55700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55700 AND b<55800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55800 AND b<55900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55900 AND b<56000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56000 AND b<56100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56100 AND b<56200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56200 AND b<56300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56300 AND b<56400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56400 AND b<56500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56500 AND b<56600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56600 AND b<56700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56700 AND b<56800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56800 AND b<56900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56900 AND b<57000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57000 AND b<57100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57100 AND b<57200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57200 AND b<57300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57300 AND b<57400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57400 AND b<57500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57500 AND b<57600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57600 AND b<57700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57700 AND b<57800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57800 AND b<57900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57900 AND b<58000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58000 AND b<58100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58100 AND b<58200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58200 AND b<58300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58300 AND b<58400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58400 AND b<58500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58500 AND b<58600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58600 AND b<58700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58700 AND b<58800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58800 AND b<58900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58900 AND b<59000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59000 AND b<59100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59100 AND b<59200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59200 AND b<59300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59300 AND b<59400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59400 AND b<59500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59500 AND b<59600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59600 AND b<59700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59700 AND b<59800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59800 AND b<59900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59900 AND b<60000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60000 AND b<60100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60100 AND b<60200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60200 AND b<60300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60300 AND b<60400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60400 AND b<60500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60500 AND b<60600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60600 AND b<60700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60700 AND b<60800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60800 AND b<60900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60900 AND b<61000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61000 AND b<61100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61100 AND b<61200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61200 AND b<61300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61300 AND b<61400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61400 AND b<61500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61500 AND b<61600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61600 AND b<61700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61700 AND b<61800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61800 AND b<61900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61900 AND b<62000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62000 AND b<62100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62100 AND b<62200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62200 AND b<62300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62300 AND b<62400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62400 AND b<62500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62500 AND b<62600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62600 AND b<62700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62700 AND b<62800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62800 AND b<62900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62900 AND b<63000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63000 AND b<63100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63100 AND b<63200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63200 AND b<63300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63300 AND b<63400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63400 AND b<63500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63500 AND b<63600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63600 AND b<63700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63700 AND b<63800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63800 AND b<63900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63900 AND b<64000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64000 AND b<64100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64100 AND b<64200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64200 AND b<64300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64300 AND b<64400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64400 AND b<64500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64500 AND b<64600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64600 AND b<64700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64700 AND b<64800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64800 AND b<64900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64900 AND b<65000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65000 AND b<65100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65100 AND b<65200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65200 AND b<65300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65300 AND b<65400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65400 AND b<65500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65500 AND b<65600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65600 AND b<65700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65700 AND b<65800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65800 AND b<65900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65900 AND b<66000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66000 AND b<66100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66100 AND b<66200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66200 AND b<66300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66300 AND b<66400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66400 AND b<66500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66500 AND b<66600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66600 AND b<66700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66700 AND b<66800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66800 AND b<66900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66900 AND b<67000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67000 AND b<67100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67100 AND b<67200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67200 AND b<67300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67300 AND b<67400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67400 AND b<67500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67500 AND b<67600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67600 AND b<67700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67700 AND b<67800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67800 AND b<67900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67900 AND b<68000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68000 AND b<68100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68100 AND b<68200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68200 AND b<68300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68300 AND b<68400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68400 AND b<68500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68500 AND b<68600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68600 AND b<68700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68700 AND b<68800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68800 AND b<68900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68900 AND b<69000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69000 AND b<69100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69100 AND b<69200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69200 AND b<69300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69300 AND b<69400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69400 AND b<69500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69500 AND b<69600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69600 AND b<69700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69700 AND b<69800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69800 AND b<69900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69900 AND b<70000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70000 AND b<70100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70100 AND b<70200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70200 AND b<70300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70300 AND b<70400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70400 AND b<70500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70500 AND b<70600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70600 AND b<70700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70700 AND b<70800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70800 AND b<70900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70900 AND b<71000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71000 AND b<71100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71100 AND b<71200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71200 AND b<71300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71300 AND b<71400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71400 AND b<71500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71500 AND b<71600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71600 AND b<71700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71700 AND b<71800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71800 AND b<71900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71900 AND b<72000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72000 AND b<72100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72100 AND b<72200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72200 AND b<72300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72300 AND b<72400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72400 AND b<72500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72500 AND b<72600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72600 AND b<72700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72700 AND b<72800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72800 AND b<72900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72900 AND b<73000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73000 AND b<73100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73100 AND b<73200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73200 AND b<73300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73300 AND b<73400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73400 AND b<73500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73500 AND b<73600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73600 AND b<73700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73700 AND b<73800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73800 AND b<73900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73900 AND b<74000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74000 AND b<74100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74100 AND b<74200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74200 AND b<74300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74300 AND b<74400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74400 AND b<74500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74500 AND b<74600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74600 AND b<74700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74700 AND b<74800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74800 AND b<74900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74900 AND b<75000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75000 AND b<75100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75100 AND b<75200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75200 AND b<75300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75300 AND b<75400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75400 AND b<75500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75500 AND b<75600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75600 AND b<75700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75700 AND b<75800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75800 AND b<75900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75900 AND b<76000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76000 AND b<76100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76100 AND b<76200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76200 AND b<76300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76300 AND b<76400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76400 AND b<76500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76500 AND b<76600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76600 AND b<76700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76700 AND b<76800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76800 AND b<76900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76900 AND b<77000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77000 AND b<77100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77100 AND b<77200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77200 AND b<77300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77300 AND b<77400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77400 AND b<77500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77500 AND b<77600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77600 AND b<77700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77700 AND b<77800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77800 AND b<77900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77900 AND b<78000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78000 AND b<78100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78100 AND b<78200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78200 AND b<78300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78300 AND b<78400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78400 AND b<78500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78500 AND b<78600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78600 AND b<78700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78700 AND b<78800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78800 AND b<78900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78900 AND b<79000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79000 AND b<79100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79100 AND b<79200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79200 AND b<79300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79300 AND b<79400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79400 AND b<79500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79500 AND b<79600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79600 AND b<79700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79700 AND b<79800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79800 AND b<79900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79900 AND b<80000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80000 AND b<80100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80100 AND b<80200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80200 AND b<80300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80300 AND b<80400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80400 AND b<80500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80500 AND b<80600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80600 AND b<80700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80700 AND b<80800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80800 AND b<80900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80900 AND b<81000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81000 AND b<81100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81100 AND b<81200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81200 AND b<81300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81300 AND b<81400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81400 AND b<81500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81500 AND b<81600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81600 AND b<81700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81700 AND b<81800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81800 AND b<81900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81900 AND b<82000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82000 AND b<82100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82100 AND b<82200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82200 AND b<82300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82300 AND b<82400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82400 AND b<82500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82500 AND b<82600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82600 AND b<82700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82700 AND b<82800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82800 AND b<82900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82900 AND b<83000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83000 AND b<83100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83100 AND b<83200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83200 AND b<83300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83300 AND b<83400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83400 AND b<83500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83500 AND b<83600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83600 AND b<83700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83700 AND b<83800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83800 AND b<83900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83900 AND b<84000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84000 AND b<84100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84100 AND b<84200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84200 AND b<84300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84300 AND b<84400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84400 AND b<84500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84500 AND b<84600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84600 AND b<84700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84700 AND b<84800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84800 AND b<84900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84900 AND b<85000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85000 AND b<85100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85100 AND b<85200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85200 AND b<85300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85300 AND b<85400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85400 AND b<85500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85500 AND b<85600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85600 AND b<85700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85700 AND b<85800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85800 AND b<85900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85900 AND b<86000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86000 AND b<86100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86100 AND b<86200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86200 AND b<86300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86300 AND b<86400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86400 AND b<86500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86500 AND b<86600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86600 AND b<86700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86700 AND b<86800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86800 AND b<86900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86900 AND b<87000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87000 AND b<87100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87100 AND b<87200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87200 AND b<87300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87300 AND b<87400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87400 AND b<87500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87500 AND b<87600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87600 AND b<87700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87700 AND b<87800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87800 AND b<87900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87900 AND b<88000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88000 AND b<88100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88100 AND b<88200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88200 AND b<88300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88300 AND b<88400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88400 AND b<88500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88500 AND b<88600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88600 AND b<88700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88700 AND b<88800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88800 AND b<88900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88900 AND b<89000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89000 AND b<89100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89100 AND b<89200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89200 AND b<89300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89300 AND b<89400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89400 AND b<89500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89500 AND b<89600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89600 AND b<89700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89700 AND b<89800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89800 AND b<89900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89900 AND b<90000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90000 AND b<90100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90100 AND b<90200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90200 AND b<90300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90300 AND b<90400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90400 AND b<90500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90500 AND b<90600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90600 AND b<90700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90700 AND b<90800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90800 AND b<90900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90900 AND b<91000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91000 AND b<91100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91100 AND b<91200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91200 AND b<91300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91300 AND b<91400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91400 AND b<91500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91500 AND b<91600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91600 AND b<91700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91700 AND b<91800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91800 AND b<91900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91900 AND b<92000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92000 AND b<92100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92100 AND b<92200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92200 AND b<92300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92300 AND b<92400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92400 AND b<92500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92500 AND b<92600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92600 AND b<92700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92700 AND b<92800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92800 AND b<92900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92900 AND b<93000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93000 AND b<93100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93100 AND b<93200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93200 AND b<93300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93300 AND b<93400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93400 AND b<93500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93500 AND b<93600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93600 AND b<93700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93700 AND b<93800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93800 AND b<93900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93900 AND b<94000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94000 AND b<94100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94100 AND b<94200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94200 AND b<94300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94300 AND b<94400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94400 AND b<94500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94500 AND b<94600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94600 AND b<94700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94700 AND b<94800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94800 AND b<94900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94900 AND b<95000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95000 AND b<95100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95100 AND b<95200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95200 AND b<95300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95300 AND b<95400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95400 AND b<95500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95500 AND b<95600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95600 AND b<95700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95700 AND b<95800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95800 AND b<95900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95900 AND b<96000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96000 AND b<96100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96100 AND b<96200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96200 AND b<96300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96300 AND b<96400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96400 AND b<96500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96500 AND b<96600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96600 AND b<96700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96700 AND b<96800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96800 AND b<96900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96900 AND b<97000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97000 AND b<97100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97100 AND b<97200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97200 AND b<97300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97300 AND b<97400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97400 AND b<97500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97500 AND b<97600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97600 AND b<97700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97700 AND b<97800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97800 AND b<97900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97900 AND b<98000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98000 AND b<98100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98100 AND b<98200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98200 AND b<98300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98300 AND b<98400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98400 AND b<98500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98500 AND b<98600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98600 AND b<98700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98700 AND b<98800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98800 AND b<98900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98900 AND b<99000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99000 AND b<99100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99100 AND b<99200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99200 AND b<99300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99300 AND b<99400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99400 AND b<99500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99500 AND b<99600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99600 AND b<99700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99700 AND b<99800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99800 AND b<99900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99900 AND b<100000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100000 AND b<100100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100100 AND b<100200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100200 AND b<100300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100300 AND b<100400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100400 AND b<100500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100500 AND b<100600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100600 AND b<100700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100700 AND b<100800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100800 AND b<100900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100900 AND b<101000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101000 AND b<101100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101100 AND b<101200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101200 AND b<101300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101300 AND b<101400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101400 AND b<101500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101500 AND b<101600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101600 AND b<101700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101700 AND b<101800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101800 AND b<101900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101900 AND b<102000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102000 AND b<102100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102100 AND b<102200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102200 AND b<102300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102300 AND b<102400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102400 AND b<102500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102500 AND b<102600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102600 AND b<102700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102700 AND b<102800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102800 AND b<102900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102900 AND b<103000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103000 AND b<103100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103100 AND b<103200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103200 AND b<103300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103300 AND b<103400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103400 AND b<103500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103500 AND b<103600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103600 AND b<103700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103700 AND b<103800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103800 AND b<103900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103900 AND b<104000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104000 AND b<104100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104100 AND b<104200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104200 AND b<104300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104300 AND b<104400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104400 AND b<104500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104500 AND b<104600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104600 AND b<104700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104700 AND b<104800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104800 AND b<104900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104900 AND b<105000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105000 AND b<105100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105100 AND b<105200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105200 AND b<105300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105300 AND b<105400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105400 AND b<105500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105500 AND b<105600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105600 AND b<105700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105700 AND b<105800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105800 AND b<105900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105900 AND b<106000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106000 AND b<106100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106100 AND b<106200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106200 AND b<106300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106300 AND b<106400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106400 AND b<106500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106500 AND b<106600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106600 AND b<106700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106700 AND b<106800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106800 AND b<106900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106900 AND b<107000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107000 AND b<107100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107100 AND b<107200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107200 AND b<107300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107300 AND b<107400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107400 AND b<107500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107500 AND b<107600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107600 AND b<107700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107700 AND b<107800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107800 AND b<107900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107900 AND b<108000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108000 AND b<108100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108100 AND b<108200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108200 AND b<108300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108300 AND b<108400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108400 AND b<108500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108500 AND b<108600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108600 AND b<108700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108700 AND b<108800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108800 AND b<108900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108900 AND b<109000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109000 AND b<109100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109100 AND b<109200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109200 AND b<109300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109300 AND b<109400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109400 AND b<109500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109500 AND b<109600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109600 AND b<109700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109700 AND b<109800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109800 AND b<109900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109900 AND b<110000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110000 AND b<110100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110100 AND b<110200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110200 AND b<110300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110300 AND b<110400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110400 AND b<110500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110500 AND b<110600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110600 AND b<110700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110700 AND b<110800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110800 AND b<110900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110900 AND b<111000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111000 AND b<111100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111100 AND b<111200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111200 AND b<111300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111300 AND b<111400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111400 AND b<111500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111500 AND b<111600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111600 AND b<111700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111700 AND b<111800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111800 AND b<111900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111900 AND b<112000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112000 AND b<112100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112100 AND b<112200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112200 AND b<112300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112300 AND b<112400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112400 AND b<112500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112500 AND b<112600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112600 AND b<112700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112700 AND b<112800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112800 AND b<112900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112900 AND b<113000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113000 AND b<113100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113100 AND b<113200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113200 AND b<113300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113300 AND b<113400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113400 AND b<113500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113500 AND b<113600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113600 AND b<113700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113700 AND b<113800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113800 AND b<113900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113900 AND b<114000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114000 AND b<114100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114100 AND b<114200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114200 AND b<114300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114300 AND b<114400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114400 AND b<114500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114500 AND b<114600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114600 AND b<114700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114700 AND b<114800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114800 AND b<114900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114900 AND b<115000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115000 AND b<115100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115100 AND b<115200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115200 AND b<115300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115300 AND b<115400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115400 AND b<115500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115500 AND b<115600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115600 AND b<115700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115700 AND b<115800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115800 AND b<115900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115900 AND b<116000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116000 AND b<116100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116100 AND b<116200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116200 AND b<116300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116300 AND b<116400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116400 AND b<116500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116500 AND b<116600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116600 AND b<116700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116700 AND b<116800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116800 AND b<116900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116900 AND b<117000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117000 AND b<117100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117100 AND b<117200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117200 AND b<117300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117300 AND b<117400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117400 AND b<117500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117500 AND b<117600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117600 AND b<117700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117700 AND b<117800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117800 AND b<117900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117900 AND b<118000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118000 AND b<118100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118100 AND b<118200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118200 AND b<118300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118300 AND b<118400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118400 AND b<118500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118500 AND b<118600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118600 AND b<118700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118700 AND b<118800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118800 AND b<118900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118900 AND b<119000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119000 AND b<119100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119100 AND b<119200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119200 AND b<119300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119300 AND b<119400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119400 AND b<119500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119500 AND b<119600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119600 AND b<119700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119700 AND b<119800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119800 AND b<119900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119900 AND b<120000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120000 AND b<120100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120100 AND b<120200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120200 AND b<120300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120300 AND b<120400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120400 AND b<120500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120500 AND b<120600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120600 AND b<120700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120700 AND b<120800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120800 AND b<120900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120900 AND b<121000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121000 AND b<121100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121100 AND b<121200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121200 AND b<121300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121300 AND b<121400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121400 AND b<121500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121500 AND b<121600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121600 AND b<121700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121700 AND b<121800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121800 AND b<121900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121900 AND b<122000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122000 AND b<122100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122100 AND b<122200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122200 AND b<122300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122300 AND b<122400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122400 AND b<122500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122500 AND b<122600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122600 AND b<122700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122700 AND b<122800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122800 AND b<122900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122900 AND b<123000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123000 AND b<123100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123100 AND b<123200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123200 AND b<123300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123300 AND b<123400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123400 AND b<123500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123500 AND b<123600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123600 AND b<123700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123700 AND b<123800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123800 AND b<123900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123900 AND b<124000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124000 AND b<124100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124100 AND b<124200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124200 AND b<124300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124300 AND b<124400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124400 AND b<124500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124500 AND b<124600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124600 AND b<124700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124700 AND b<124800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124800 AND b<124900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124900 AND b<125000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125000 AND b<125100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125100 AND b<125200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125200 AND b<125300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125300 AND b<125400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125400 AND b<125500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125500 AND b<125600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125600 AND b<125700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125700 AND b<125800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125800 AND b<125900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125900 AND b<126000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126000 AND b<126100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126100 AND b<126200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126200 AND b<126300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126300 AND b<126400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126400 AND b<126500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126500 AND b<126600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126600 AND b<126700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126700 AND b<126800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126800 AND b<126900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126900 AND b<127000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127000 AND b<127100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127100 AND b<127200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127200 AND b<127300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127300 AND b<127400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127400 AND b<127500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127500 AND b<127600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127600 AND b<127700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127700 AND b<127800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127800 AND b<127900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127900 AND b<128000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128000 AND b<128100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128100 AND b<128200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128200 AND b<128300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128300 AND b<128400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128400 AND b<128500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128500 AND b<128600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128600 AND b<128700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128700 AND b<128800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128800 AND b<128900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128900 AND b<129000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129000 AND b<129100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129100 AND b<129200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129200 AND b<129300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129300 AND b<129400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129400 AND b<129500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129500 AND b<129600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129600 AND b<129700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129700 AND b<129800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129800 AND b<129900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129900 AND b<130000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130000 AND b<130100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130100 AND b<130200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130200 AND b<130300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130300 AND b<130400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130400 AND b<130500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130500 AND b<130600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130600 AND b<130700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130700 AND b<130800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130800 AND b<130900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130900 AND b<131000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131000 AND b<131100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131100 AND b<131200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131200 AND b<131300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131300 AND b<131400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131400 AND b<131500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131500 AND b<131600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131600 AND b<131700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131700 AND b<131800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131800 AND b<131900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131900 AND b<132000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132000 AND b<132100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132100 AND b<132200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132200 AND b<132300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132300 AND b<132400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132400 AND b<132500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132500 AND b<132600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132600 AND b<132700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132700 AND b<132800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132800 AND b<132900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132900 AND b<133000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133000 AND b<133100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133100 AND b<133200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133200 AND b<133300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133300 AND b<133400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133400 AND b<133500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133500 AND b<133600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133600 AND b<133700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133700 AND b<133800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133800 AND b<133900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133900 AND b<134000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134000 AND b<134100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134100 AND b<134200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134200 AND b<134300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134300 AND b<134400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134400 AND b<134500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134500 AND b<134600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134600 AND b<134700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134700 AND b<134800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134800 AND b<134900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134900 AND b<135000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135000 AND b<135100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135100 AND b<135200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135200 AND b<135300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135300 AND b<135400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135400 AND b<135500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135500 AND b<135600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135600 AND b<135700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135700 AND b<135800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135800 AND b<135900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135900 AND b<136000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136000 AND b<136100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136100 AND b<136200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136200 AND b<136300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136300 AND b<136400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136400 AND b<136500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136500 AND b<136600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136600 AND b<136700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136700 AND b<136800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136800 AND b<136900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136900 AND b<137000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137000 AND b<137100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137100 AND b<137200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137200 AND b<137300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137300 AND b<137400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137400 AND b<137500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137500 AND b<137600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137600 AND b<137700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137700 AND b<137800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137800 AND b<137900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137900 AND b<138000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138000 AND b<138100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138100 AND b<138200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138200 AND b<138300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138300 AND b<138400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138400 AND b<138500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138500 AND b<138600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138600 AND b<138700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138700 AND b<138800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138800 AND b<138900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138900 AND b<139000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139000 AND b<139100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139100 AND b<139200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139200 AND b<139300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139300 AND b<139400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139400 AND b<139500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139500 AND b<139600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139600 AND b<139700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139700 AND b<139800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139800 AND b<139900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139900 AND b<140000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140000 AND b<140100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140100 AND b<140200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140200 AND b<140300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140300 AND b<140400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140400 AND b<140500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140500 AND b<140600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140600 AND b<140700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140700 AND b<140800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140800 AND b<140900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140900 AND b<141000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141000 AND b<141100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141100 AND b<141200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141200 AND b<141300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141300 AND b<141400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141400 AND b<141500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141500 AND b<141600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141600 AND b<141700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141700 AND b<141800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141800 AND b<141900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141900 AND b<142000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142000 AND b<142100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142100 AND b<142200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142200 AND b<142300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142300 AND b<142400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142400 AND b<142500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142500 AND b<142600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142600 AND b<142700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142700 AND b<142800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142800 AND b<142900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142900 AND b<143000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143000 AND b<143100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143100 AND b<143200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143200 AND b<143300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143300 AND b<143400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143400 AND b<143500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143500 AND b<143600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143600 AND b<143700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143700 AND b<143800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143800 AND b<143900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143900 AND b<144000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144000 AND b<144100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144100 AND b<144200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144200 AND b<144300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144300 AND b<144400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144400 AND b<144500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144500 AND b<144600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144600 AND b<144700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144700 AND b<144800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144800 AND b<144900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144900 AND b<145000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145000 AND b<145100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145100 AND b<145200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145200 AND b<145300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145300 AND b<145400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145400 AND b<145500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145500 AND b<145600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145600 AND b<145700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145700 AND b<145800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145800 AND b<145900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145900 AND b<146000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146000 AND b<146100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146100 AND b<146200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146200 AND b<146300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146300 AND b<146400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146400 AND b<146500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146500 AND b<146600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146600 AND b<146700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146700 AND b<146800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146800 AND b<146900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146900 AND b<147000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147000 AND b<147100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147100 AND b<147200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147200 AND b<147300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147300 AND b<147400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147400 AND b<147500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147500 AND b<147600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147600 AND b<147700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147700 AND b<147800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147800 AND b<147900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147900 AND b<148000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148000 AND b<148100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148100 AND b<148200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148200 AND b<148300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148300 AND b<148400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148400 AND b<148500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148500 AND b<148600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148600 AND b<148700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148700 AND b<148800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148800 AND b<148900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148900 AND b<149000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149000 AND b<149100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149100 AND b<149200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149200 AND b<149300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149300 AND b<149400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149400 AND b<149500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149500 AND b<149600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149600 AND b<149700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149700 AND b<149800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149800 AND b<149900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149900 AND b<150000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150000 AND b<150100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150100 AND b<150200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150200 AND b<150300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150300 AND b<150400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150400 AND b<150500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150500 AND b<150600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150600 AND b<150700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150700 AND b<150800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150800 AND b<150900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150900 AND b<151000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151000 AND b<151100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151100 AND b<151200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151200 AND b<151300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151300 AND b<151400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151400 AND b<151500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151500 AND b<151600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151600 AND b<151700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151700 AND b<151800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151800 AND b<151900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151900 AND b<152000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152000 AND b<152100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152100 AND b<152200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152200 AND b<152300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152300 AND b<152400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152400 AND b<152500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152500 AND b<152600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152600 AND b<152700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152700 AND b<152800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152800 AND b<152900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152900 AND b<153000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153000 AND b<153100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153100 AND b<153200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153200 AND b<153300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153300 AND b<153400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153400 AND b<153500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153500 AND b<153600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153600 AND b<153700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153700 AND b<153800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153800 AND b<153900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153900 AND b<154000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154000 AND b<154100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154100 AND b<154200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154200 AND b<154300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154300 AND b<154400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154400 AND b<154500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154500 AND b<154600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154600 AND b<154700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154700 AND b<154800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154800 AND b<154900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154900 AND b<155000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155000 AND b<155100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155100 AND b<155200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155200 AND b<155300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155300 AND b<155400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155400 AND b<155500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155500 AND b<155600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155600 AND b<155700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155700 AND b<155800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155800 AND b<155900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155900 AND b<156000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156000 AND b<156100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156100 AND b<156200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156200 AND b<156300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156300 AND b<156400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156400 AND b<156500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156500 AND b<156600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156600 AND b<156700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156700 AND b<156800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156800 AND b<156900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156900 AND b<157000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157000 AND b<157100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157100 AND b<157200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157200 AND b<157300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157300 AND b<157400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157400 AND b<157500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157500 AND b<157600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157600 AND b<157700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157700 AND b<157800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157800 AND b<157900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157900 AND b<158000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158000 AND b<158100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158100 AND b<158200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158200 AND b<158300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158300 AND b<158400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158400 AND b<158500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158500 AND b<158600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158600 AND b<158700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158700 AND b<158800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158800 AND b<158900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158900 AND b<159000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159000 AND b<159100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159100 AND b<159200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159200 AND b<159300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159300 AND b<159400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159400 AND b<159500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159500 AND b<159600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159600 AND b<159700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159700 AND b<159800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159800 AND b<159900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159900 AND b<160000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160000 AND b<160100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160100 AND b<160200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160200 AND b<160300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160300 AND b<160400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160400 AND b<160500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160500 AND b<160600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160600 AND b<160700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160700 AND b<160800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160800 AND b<160900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160900 AND b<161000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161000 AND b<161100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161100 AND b<161200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161200 AND b<161300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161300 AND b<161400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161400 AND b<161500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161500 AND b<161600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161600 AND b<161700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161700 AND b<161800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161800 AND b<161900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161900 AND b<162000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162000 AND b<162100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162100 AND b<162200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162200 AND b<162300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162300 AND b<162400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162400 AND b<162500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162500 AND b<162600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162600 AND b<162700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162700 AND b<162800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162800 AND b<162900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162900 AND b<163000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163000 AND b<163100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163100 AND b<163200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163200 AND b<163300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163300 AND b<163400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163400 AND b<163500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163500 AND b<163600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163600 AND b<163700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163700 AND b<163800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163800 AND b<163900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163900 AND b<164000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164000 AND b<164100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164100 AND b<164200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164200 AND b<164300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164300 AND b<164400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164400 AND b<164500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164500 AND b<164600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164600 AND b<164700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164700 AND b<164800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164800 AND b<164900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164900 AND b<165000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165000 AND b<165100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165100 AND b<165200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165200 AND b<165300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165300 AND b<165400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165400 AND b<165500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165500 AND b<165600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165600 AND b<165700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165700 AND b<165800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165800 AND b<165900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165900 AND b<166000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166000 AND b<166100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166100 AND b<166200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166200 AND b<166300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166300 AND b<166400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166400 AND b<166500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166500 AND b<166600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166600 AND b<166700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166700 AND b<166800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166800 AND b<166900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166900 AND b<167000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167000 AND b<167100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167100 AND b<167200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167200 AND b<167300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167300 AND b<167400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167400 AND b<167500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167500 AND b<167600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167600 AND b<167700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167700 AND b<167800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167800 AND b<167900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167900 AND b<168000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168000 AND b<168100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168100 AND b<168200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168200 AND b<168300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168300 AND b<168400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168400 AND b<168500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168500 AND b<168600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168600 AND b<168700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168700 AND b<168800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168800 AND b<168900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168900 AND b<169000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169000 AND b<169100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169100 AND b<169200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169200 AND b<169300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169300 AND b<169400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169400 AND b<169500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169500 AND b<169600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169600 AND b<169700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169700 AND b<169800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169800 AND b<169900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169900 AND b<170000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170000 AND b<170100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170100 AND b<170200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170200 AND b<170300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170300 AND b<170400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170400 AND b<170500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170500 AND b<170600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170600 AND b<170700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170700 AND b<170800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170800 AND b<170900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170900 AND b<171000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171000 AND b<171100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171100 AND b<171200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171200 AND b<171300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171300 AND b<171400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171400 AND b<171500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171500 AND b<171600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171600 AND b<171700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171700 AND b<171800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171800 AND b<171900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171900 AND b<172000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172000 AND b<172100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172100 AND b<172200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172200 AND b<172300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172300 AND b<172400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172400 AND b<172500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172500 AND b<172600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172600 AND b<172700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172700 AND b<172800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172800 AND b<172900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172900 AND b<173000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173000 AND b<173100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173100 AND b<173200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173200 AND b<173300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173300 AND b<173400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173400 AND b<173500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173500 AND b<173600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173600 AND b<173700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173700 AND b<173800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173800 AND b<173900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173900 AND b<174000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174000 AND b<174100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174100 AND b<174200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174200 AND b<174300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174300 AND b<174400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174400 AND b<174500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174500 AND b<174600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174600 AND b<174700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174700 AND b<174800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174800 AND b<174900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174900 AND b<175000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175000 AND b<175100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175100 AND b<175200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175200 AND b<175300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175300 AND b<175400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175400 AND b<175500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175500 AND b<175600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175600 AND b<175700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175700 AND b<175800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175800 AND b<175900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175900 AND b<176000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176000 AND b<176100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176100 AND b<176200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176200 AND b<176300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176300 AND b<176400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176400 AND b<176500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176500 AND b<176600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176600 AND b<176700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176700 AND b<176800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176800 AND b<176900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176900 AND b<177000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177000 AND b<177100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177100 AND b<177200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177200 AND b<177300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177300 AND b<177400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177400 AND b<177500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177500 AND b<177600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177600 AND b<177700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177700 AND b<177800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177800 AND b<177900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177900 AND b<178000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178000 AND b<178100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178100 AND b<178200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178200 AND b<178300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178300 AND b<178400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178400 AND b<178500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178500 AND b<178600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178600 AND b<178700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178700 AND b<178800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178800 AND b<178900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178900 AND b<179000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179000 AND b<179100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179100 AND b<179200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179200 AND b<179300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179300 AND b<179400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179400 AND b<179500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179500 AND b<179600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179600 AND b<179700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179700 AND b<179800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179800 AND b<179900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179900 AND b<180000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180000 AND b<180100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180100 AND b<180200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180200 AND b<180300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180300 AND b<180400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180400 AND b<180500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180500 AND b<180600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180600 AND b<180700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180700 AND b<180800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180800 AND b<180900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180900 AND b<181000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181000 AND b<181100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181100 AND b<181200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181200 AND b<181300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181300 AND b<181400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181400 AND b<181500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181500 AND b<181600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181600 AND b<181700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181700 AND b<181800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181800 AND b<181900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181900 AND b<182000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182000 AND b<182100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182100 AND b<182200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182200 AND b<182300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182300 AND b<182400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182400 AND b<182500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182500 AND b<182600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182600 AND b<182700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182700 AND b<182800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182800 AND b<182900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182900 AND b<183000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183000 AND b<183100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183100 AND b<183200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183200 AND b<183300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183300 AND b<183400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183400 AND b<183500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183500 AND b<183600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183600 AND b<183700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183700 AND b<183800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183800 AND b<183900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183900 AND b<184000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184000 AND b<184100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184100 AND b<184200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184200 AND b<184300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184300 AND b<184400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184400 AND b<184500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184500 AND b<184600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184600 AND b<184700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184700 AND b<184800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184800 AND b<184900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184900 AND b<185000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185000 AND b<185100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185100 AND b<185200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185200 AND b<185300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185300 AND b<185400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185400 AND b<185500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185500 AND b<185600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185600 AND b<185700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185700 AND b<185800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185800 AND b<185900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185900 AND b<186000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186000 AND b<186100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186100 AND b<186200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186200 AND b<186300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186300 AND b<186400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186400 AND b<186500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186500 AND b<186600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186600 AND b<186700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186700 AND b<186800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186800 AND b<186900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186900 AND b<187000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187000 AND b<187100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187100 AND b<187200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187200 AND b<187300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187300 AND b<187400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187400 AND b<187500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187500 AND b<187600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187600 AND b<187700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187700 AND b<187800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187800 AND b<187900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187900 AND b<188000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188000 AND b<188100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188100 AND b<188200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188200 AND b<188300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188300 AND b<188400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188400 AND b<188500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188500 AND b<188600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188600 AND b<188700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188700 AND b<188800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188800 AND b<188900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188900 AND b<189000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189000 AND b<189100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189100 AND b<189200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189200 AND b<189300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189300 AND b<189400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189400 AND b<189500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189500 AND b<189600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189600 AND b<189700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189700 AND b<189800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189800 AND b<189900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189900 AND b<190000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190000 AND b<190100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190100 AND b<190200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190200 AND b<190300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190300 AND b<190400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190400 AND b<190500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190500 AND b<190600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190600 AND b<190700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190700 AND b<190800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190800 AND b<190900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190900 AND b<191000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191000 AND b<191100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191100 AND b<191200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191200 AND b<191300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191300 AND b<191400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191400 AND b<191500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191500 AND b<191600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191600 AND b<191700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191700 AND b<191800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191800 AND b<191900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191900 AND b<192000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192000 AND b<192100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192100 AND b<192200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192200 AND b<192300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192300 AND b<192400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192400 AND b<192500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192500 AND b<192600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192600 AND b<192700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192700 AND b<192800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192800 AND b<192900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192900 AND b<193000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193000 AND b<193100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193100 AND b<193200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193200 AND b<193300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193300 AND b<193400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193400 AND b<193500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193500 AND b<193600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193600 AND b<193700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193700 AND b<193800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193800 AND b<193900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193900 AND b<194000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194000 AND b<194100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194100 AND b<194200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194200 AND b<194300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194300 AND b<194400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194400 AND b<194500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194500 AND b<194600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194600 AND b<194700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194700 AND b<194800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194800 AND b<194900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194900 AND b<195000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195000 AND b<195100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195100 AND b<195200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195200 AND b<195300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195300 AND b<195400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195400 AND b<195500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195500 AND b<195600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195600 AND b<195700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195700 AND b<195800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195800 AND b<195900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195900 AND b<196000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196000 AND b<196100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196100 AND b<196200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196200 AND b<196300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196300 AND b<196400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196400 AND b<196500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196500 AND b<196600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196600 AND b<196700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196700 AND b<196800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196800 AND b<196900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196900 AND b<197000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197000 AND b<197100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197100 AND b<197200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197200 AND b<197300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197300 AND b<197400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197400 AND b<197500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197500 AND b<197600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197600 AND b<197700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197700 AND b<197800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197800 AND b<197900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197900 AND b<198000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198000 AND b<198100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198100 AND b<198200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198200 AND b<198300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198300 AND b<198400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198400 AND b<198500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198500 AND b<198600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198600 AND b<198700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198700 AND b<198800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198800 AND b<198900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198900 AND b<199000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199000 AND b<199100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199100 AND b<199200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199200 AND b<199300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199300 AND b<199400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199400 AND b<199500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199500 AND b<199600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199600 AND b<199700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199700 AND b<199800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199800 AND b<199900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199900 AND b<200000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200000 AND b<200100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200100 AND b<200200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200200 AND b<200300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200300 AND b<200400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200400 AND b<200500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200500 AND b<200600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200600 AND b<200700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200700 AND b<200800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200800 AND b<200900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200900 AND b<201000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201000 AND b<201100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201100 AND b<201200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201200 AND b<201300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201300 AND b<201400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201400 AND b<201500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201500 AND b<201600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201600 AND b<201700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201700 AND b<201800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201800 AND b<201900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201900 AND b<202000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202000 AND b<202100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202100 AND b<202200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202200 AND b<202300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202300 AND b<202400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202400 AND b<202500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202500 AND b<202600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202600 AND b<202700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202700 AND b<202800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202800 AND b<202900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202900 AND b<203000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203000 AND b<203100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203100 AND b<203200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203200 AND b<203300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203300 AND b<203400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203400 AND b<203500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203500 AND b<203600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203600 AND b<203700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203700 AND b<203800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203800 AND b<203900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203900 AND b<204000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204000 AND b<204100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204100 AND b<204200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204200 AND b<204300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204300 AND b<204400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204400 AND b<204500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204500 AND b<204600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204600 AND b<204700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204700 AND b<204800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204800 AND b<204900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204900 AND b<205000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205000 AND b<205100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205100 AND b<205200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205200 AND b<205300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205300 AND b<205400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205400 AND b<205500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205500 AND b<205600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205600 AND b<205700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205700 AND b<205800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205800 AND b<205900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205900 AND b<206000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206000 AND b<206100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206100 AND b<206200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206200 AND b<206300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206300 AND b<206400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206400 AND b<206500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206500 AND b<206600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206600 AND b<206700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206700 AND b<206800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206800 AND b<206900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206900 AND b<207000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207000 AND b<207100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207100 AND b<207200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207200 AND b<207300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207300 AND b<207400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207400 AND b<207500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207500 AND b<207600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207600 AND b<207700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207700 AND b<207800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207800 AND b<207900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207900 AND b<208000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208000 AND b<208100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208100 AND b<208200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208200 AND b<208300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208300 AND b<208400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208400 AND b<208500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208500 AND b<208600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208600 AND b<208700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208700 AND b<208800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208800 AND b<208900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208900 AND b<209000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209000 AND b<209100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209100 AND b<209200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209200 AND b<209300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209300 AND b<209400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209400 AND b<209500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209500 AND b<209600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209600 AND b<209700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209700 AND b<209800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209800 AND b<209900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209900 AND b<210000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210000 AND b<210100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210100 AND b<210200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210200 AND b<210300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210300 AND b<210400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210400 AND b<210500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210500 AND b<210600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210600 AND b<210700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210700 AND b<210800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210800 AND b<210900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210900 AND b<211000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211000 AND b<211100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211100 AND b<211200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211200 AND b<211300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211300 AND b<211400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211400 AND b<211500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211500 AND b<211600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211600 AND b<211700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211700 AND b<211800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211800 AND b<211900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211900 AND b<212000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212000 AND b<212100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212100 AND b<212200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212200 AND b<212300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212300 AND b<212400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212400 AND b<212500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212500 AND b<212600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212600 AND b<212700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212700 AND b<212800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212800 AND b<212900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212900 AND b<213000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213000 AND b<213100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213100 AND b<213200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213200 AND b<213300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213300 AND b<213400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213400 AND b<213500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213500 AND b<213600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213600 AND b<213700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213700 AND b<213800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213800 AND b<213900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213900 AND b<214000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214000 AND b<214100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214100 AND b<214200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214200 AND b<214300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214300 AND b<214400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214400 AND b<214500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214500 AND b<214600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214600 AND b<214700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214700 AND b<214800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214800 AND b<214900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214900 AND b<215000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215000 AND b<215100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215100 AND b<215200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215200 AND b<215300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215300 AND b<215400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215400 AND b<215500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215500 AND b<215600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215600 AND b<215700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215700 AND b<215800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215800 AND b<215900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215900 AND b<216000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216000 AND b<216100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216100 AND b<216200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216200 AND b<216300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216300 AND b<216400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216400 AND b<216500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216500 AND b<216600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216600 AND b<216700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216700 AND b<216800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216800 AND b<216900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216900 AND b<217000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217000 AND b<217100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217100 AND b<217200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217200 AND b<217300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217300 AND b<217400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217400 AND b<217500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217500 AND b<217600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217600 AND b<217700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217700 AND b<217800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217800 AND b<217900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217900 AND b<218000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218000 AND b<218100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218100 AND b<218200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218200 AND b<218300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218300 AND b<218400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218400 AND b<218500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218500 AND b<218600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218600 AND b<218700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218700 AND b<218800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218800 AND b<218900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218900 AND b<219000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219000 AND b<219100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219100 AND b<219200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219200 AND b<219300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219300 AND b<219400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219400 AND b<219500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219500 AND b<219600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219600 AND b<219700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219700 AND b<219800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219800 AND b<219900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219900 AND b<220000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220000 AND b<220100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220100 AND b<220200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220200 AND b<220300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220300 AND b<220400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220400 AND b<220500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220500 AND b<220600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220600 AND b<220700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220700 AND b<220800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220800 AND b<220900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220900 AND b<221000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221000 AND b<221100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221100 AND b<221200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221200 AND b<221300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221300 AND b<221400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221400 AND b<221500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221500 AND b<221600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221600 AND b<221700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221700 AND b<221800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221800 AND b<221900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221900 AND b<222000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222000 AND b<222100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222100 AND b<222200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222200 AND b<222300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222300 AND b<222400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222400 AND b<222500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222500 AND b<222600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222600 AND b<222700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222700 AND b<222800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222800 AND b<222900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222900 AND b<223000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223000 AND b<223100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223100 AND b<223200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223200 AND b<223300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223300 AND b<223400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223400 AND b<223500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223500 AND b<223600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223600 AND b<223700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223700 AND b<223800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223800 AND b<223900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223900 AND b<224000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224000 AND b<224100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224100 AND b<224200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224200 AND b<224300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224300 AND b<224400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224400 AND b<224500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224500 AND b<224600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224600 AND b<224700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224700 AND b<224800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224800 AND b<224900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224900 AND b<225000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225000 AND b<225100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225100 AND b<225200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225200 AND b<225300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225300 AND b<225400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225400 AND b<225500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225500 AND b<225600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225600 AND b<225700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225700 AND b<225800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225800 AND b<225900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225900 AND b<226000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226000 AND b<226100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226100 AND b<226200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226200 AND b<226300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226300 AND b<226400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226400 AND b<226500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226500 AND b<226600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226600 AND b<226700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226700 AND b<226800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226800 AND b<226900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226900 AND b<227000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227000 AND b<227100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227100 AND b<227200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227200 AND b<227300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227300 AND b<227400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227400 AND b<227500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227500 AND b<227600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227600 AND b<227700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227700 AND b<227800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227800 AND b<227900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227900 AND b<228000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228000 AND b<228100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228100 AND b<228200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228200 AND b<228300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228300 AND b<228400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228400 AND b<228500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228500 AND b<228600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228600 AND b<228700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228700 AND b<228800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228800 AND b<228900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228900 AND b<229000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229000 AND b<229100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229100 AND b<229200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229200 AND b<229300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229300 AND b<229400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229400 AND b<229500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229500 AND b<229600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229600 AND b<229700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229700 AND b<229800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229800 AND b<229900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229900 AND b<230000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230000 AND b<230100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230100 AND b<230200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230200 AND b<230300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230300 AND b<230400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230400 AND b<230500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230500 AND b<230600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230600 AND b<230700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230700 AND b<230800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230800 AND b<230900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230900 AND b<231000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231000 AND b<231100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231100 AND b<231200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231200 AND b<231300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231300 AND b<231400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231400 AND b<231500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231500 AND b<231600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231600 AND b<231700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231700 AND b<231800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231800 AND b<231900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231900 AND b<232000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232000 AND b<232100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232100 AND b<232200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232200 AND b<232300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232300 AND b<232400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232400 AND b<232500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232500 AND b<232600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232600 AND b<232700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232700 AND b<232800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232800 AND b<232900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232900 AND b<233000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233000 AND b<233100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233100 AND b<233200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233200 AND b<233300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233300 AND b<233400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233400 AND b<233500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233500 AND b<233600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233600 AND b<233700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233700 AND b<233800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233800 AND b<233900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233900 AND b<234000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234000 AND b<234100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234100 AND b<234200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234200 AND b<234300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234300 AND b<234400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234400 AND b<234500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234500 AND b<234600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234600 AND b<234700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234700 AND b<234800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234800 AND b<234900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234900 AND b<235000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235000 AND b<235100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235100 AND b<235200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235200 AND b<235300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235300 AND b<235400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235400 AND b<235500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235500 AND b<235600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235600 AND b<235700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235700 AND b<235800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235800 AND b<235900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235900 AND b<236000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236000 AND b<236100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236100 AND b<236200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236200 AND b<236300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236300 AND b<236400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236400 AND b<236500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236500 AND b<236600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236600 AND b<236700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236700 AND b<236800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236800 AND b<236900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236900 AND b<237000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237000 AND b<237100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237100 AND b<237200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237200 AND b<237300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237300 AND b<237400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237400 AND b<237500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237500 AND b<237600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237600 AND b<237700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237700 AND b<237800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237800 AND b<237900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237900 AND b<238000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238000 AND b<238100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238100 AND b<238200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238200 AND b<238300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238300 AND b<238400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238400 AND b<238500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238500 AND b<238600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238600 AND b<238700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238700 AND b<238800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238800 AND b<238900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238900 AND b<239000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239000 AND b<239100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239100 AND b<239200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239200 AND b<239300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239300 AND b<239400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239400 AND b<239500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239500 AND b<239600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239600 AND b<239700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239700 AND b<239800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239800 AND b<239900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239900 AND b<240000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240000 AND b<240100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240100 AND b<240200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240200 AND b<240300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240300 AND b<240400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240400 AND b<240500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240500 AND b<240600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240600 AND b<240700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240700 AND b<240800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240800 AND b<240900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240900 AND b<241000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241000 AND b<241100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241100 AND b<241200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241200 AND b<241300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241300 AND b<241400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241400 AND b<241500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241500 AND b<241600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241600 AND b<241700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241700 AND b<241800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241800 AND b<241900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241900 AND b<242000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242000 AND b<242100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242100 AND b<242200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242200 AND b<242300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242300 AND b<242400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242400 AND b<242500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242500 AND b<242600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242600 AND b<242700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242700 AND b<242800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242800 AND b<242900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242900 AND b<243000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243000 AND b<243100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243100 AND b<243200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243200 AND b<243300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243300 AND b<243400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243400 AND b<243500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243500 AND b<243600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243600 AND b<243700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243700 AND b<243800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243800 AND b<243900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243900 AND b<244000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244000 AND b<244100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244100 AND b<244200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244200 AND b<244300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244300 AND b<244400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244400 AND b<244500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244500 AND b<244600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244600 AND b<244700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244700 AND b<244800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244800 AND b<244900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244900 AND b<245000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245000 AND b<245100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245100 AND b<245200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245200 AND b<245300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245300 AND b<245400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245400 AND b<245500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245500 AND b<245600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245600 AND b<245700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245700 AND b<245800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245800 AND b<245900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245900 AND b<246000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246000 AND b<246100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246100 AND b<246200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246200 AND b<246300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246300 AND b<246400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246400 AND b<246500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246500 AND b<246600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246600 AND b<246700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246700 AND b<246800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246800 AND b<246900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246900 AND b<247000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247000 AND b<247100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247100 AND b<247200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247200 AND b<247300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247300 AND b<247400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247400 AND b<247500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247500 AND b<247600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247600 AND b<247700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247700 AND b<247800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247800 AND b<247900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247900 AND b<248000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248000 AND b<248100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248100 AND b<248200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248200 AND b<248300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248300 AND b<248400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248400 AND b<248500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248500 AND b<248600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248600 AND b<248700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248700 AND b<248800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248800 AND b<248900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248900 AND b<249000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249000 AND b<249100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249100 AND b<249200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249200 AND b<249300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249300 AND b<249400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249400 AND b<249500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249500 AND b<249600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249600 AND b<249700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249700 AND b<249800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249800 AND b<249900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249900 AND b<250000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250000 AND b<250100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250100 AND b<250200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250200 AND b<250300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250300 AND b<250400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250400 AND b<250500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250500 AND b<250600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250600 AND b<250700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250700 AND b<250800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250800 AND b<250900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250900 AND b<251000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251000 AND b<251100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251100 AND b<251200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251200 AND b<251300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251300 AND b<251400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251400 AND b<251500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251500 AND b<251600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251600 AND b<251700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251700 AND b<251800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251800 AND b<251900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251900 AND b<252000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252000 AND b<252100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252100 AND b<252200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252200 AND b<252300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252300 AND b<252400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252400 AND b<252500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252500 AND b<252600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252600 AND b<252700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252700 AND b<252800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252800 AND b<252900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252900 AND b<253000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253000 AND b<253100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253100 AND b<253200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253200 AND b<253300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253300 AND b<253400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253400 AND b<253500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253500 AND b<253600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253600 AND b<253700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253700 AND b<253800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253800 AND b<253900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253900 AND b<254000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254000 AND b<254100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254100 AND b<254200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254200 AND b<254300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254300 AND b<254400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254400 AND b<254500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254500 AND b<254600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254600 AND b<254700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254700 AND b<254800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254800 AND b<254900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254900 AND b<255000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255000 AND b<255100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255100 AND b<255200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255200 AND b<255300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255300 AND b<255400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255400 AND b<255500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255500 AND b<255600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255600 AND b<255700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255700 AND b<255800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255800 AND b<255900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255900 AND b<256000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256000 AND b<256100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256100 AND b<256200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256200 AND b<256300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256300 AND b<256400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256400 AND b<256500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256500 AND b<256600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256600 AND b<256700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256700 AND b<256800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256800 AND b<256900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256900 AND b<257000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257000 AND b<257100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257100 AND b<257200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257200 AND b<257300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257300 AND b<257400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257400 AND b<257500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257500 AND b<257600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257600 AND b<257700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257700 AND b<257800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257800 AND b<257900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257900 AND b<258000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258000 AND b<258100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258100 AND b<258200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258200 AND b<258300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258300 AND b<258400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258400 AND b<258500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258500 AND b<258600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258600 AND b<258700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258700 AND b<258800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258800 AND b<258900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258900 AND b<259000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259000 AND b<259100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259100 AND b<259200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259200 AND b<259300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259300 AND b<259400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259400 AND b<259500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259500 AND b<259600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259600 AND b<259700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259700 AND b<259800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259800 AND b<259900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259900 AND b<260000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260000 AND b<260100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260100 AND b<260200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260200 AND b<260300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260300 AND b<260400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260400 AND b<260500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260500 AND b<260600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260600 AND b<260700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260700 AND b<260800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260800 AND b<260900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260900 AND b<261000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261000 AND b<261100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261100 AND b<261200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261200 AND b<261300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261300 AND b<261400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261400 AND b<261500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261500 AND b<261600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261600 AND b<261700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261700 AND b<261800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261800 AND b<261900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261900 AND b<262000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262000 AND b<262100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262100 AND b<262200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262200 AND b<262300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262300 AND b<262400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262400 AND b<262500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262500 AND b<262600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262600 AND b<262700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262700 AND b<262800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262800 AND b<262900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262900 AND b<263000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263000 AND b<263100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263100 AND b<263200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263200 AND b<263300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263300 AND b<263400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263400 AND b<263500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263500 AND b<263600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263600 AND b<263700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263700 AND b<263800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263800 AND b<263900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263900 AND b<264000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264000 AND b<264100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264100 AND b<264200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264200 AND b<264300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264300 AND b<264400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264400 AND b<264500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264500 AND b<264600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264600 AND b<264700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264700 AND b<264800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264800 AND b<264900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264900 AND b<265000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265000 AND b<265100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265100 AND b<265200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265200 AND b<265300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265300 AND b<265400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265400 AND b<265500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265500 AND b<265600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265600 AND b<265700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265700 AND b<265800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265800 AND b<265900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265900 AND b<266000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266000 AND b<266100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266100 AND b<266200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266200 AND b<266300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266300 AND b<266400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266400 AND b<266500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266500 AND b<266600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266600 AND b<266700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266700 AND b<266800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266800 AND b<266900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266900 AND b<267000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267000 AND b<267100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267100 AND b<267200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267200 AND b<267300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267300 AND b<267400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267400 AND b<267500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267500 AND b<267600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267600 AND b<267700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267700 AND b<267800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267800 AND b<267900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267900 AND b<268000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268000 AND b<268100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268100 AND b<268200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268200 AND b<268300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268300 AND b<268400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268400 AND b<268500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268500 AND b<268600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268600 AND b<268700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268700 AND b<268800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268800 AND b<268900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268900 AND b<269000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269000 AND b<269100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269100 AND b<269200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269200 AND b<269300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269300 AND b<269400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269400 AND b<269500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269500 AND b<269600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269600 AND b<269700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269700 AND b<269800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269800 AND b<269900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269900 AND b<270000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270000 AND b<270100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270100 AND b<270200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270200 AND b<270300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270300 AND b<270400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270400 AND b<270500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270500 AND b<270600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270600 AND b<270700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270700 AND b<270800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270800 AND b<270900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270900 AND b<271000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271000 AND b<271100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271100 AND b<271200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271200 AND b<271300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271300 AND b<271400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271400 AND b<271500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271500 AND b<271600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271600 AND b<271700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271700 AND b<271800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271800 AND b<271900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271900 AND b<272000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272000 AND b<272100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272100 AND b<272200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272200 AND b<272300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272300 AND b<272400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272400 AND b<272500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272500 AND b<272600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272600 AND b<272700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272700 AND b<272800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272800 AND b<272900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272900 AND b<273000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273000 AND b<273100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273100 AND b<273200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273200 AND b<273300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273300 AND b<273400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273400 AND b<273500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273500 AND b<273600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273600 AND b<273700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273700 AND b<273800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273800 AND b<273900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273900 AND b<274000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274000 AND b<274100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274100 AND b<274200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274200 AND b<274300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274300 AND b<274400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274400 AND b<274500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274500 AND b<274600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274600 AND b<274700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274700 AND b<274800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274800 AND b<274900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274900 AND b<275000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275000 AND b<275100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275100 AND b<275200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275200 AND b<275300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275300 AND b<275400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275400 AND b<275500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275500 AND b<275600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275600 AND b<275700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275700 AND b<275800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275800 AND b<275900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275900 AND b<276000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276000 AND b<276100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276100 AND b<276200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276200 AND b<276300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276300 AND b<276400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276400 AND b<276500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276500 AND b<276600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276600 AND b<276700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276700 AND b<276800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276800 AND b<276900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276900 AND b<277000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277000 AND b<277100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277100 AND b<277200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277200 AND b<277300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277300 AND b<277400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277400 AND b<277500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277500 AND b<277600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277600 AND b<277700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277700 AND b<277800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277800 AND b<277900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277900 AND b<278000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278000 AND b<278100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278100 AND b<278200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278200 AND b<278300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278300 AND b<278400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278400 AND b<278500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278500 AND b<278600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278600 AND b<278700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278700 AND b<278800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278800 AND b<278900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278900 AND b<279000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279000 AND b<279100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279100 AND b<279200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279200 AND b<279300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279300 AND b<279400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279400 AND b<279500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279500 AND b<279600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279600 AND b<279700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279700 AND b<279800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279800 AND b<279900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279900 AND b<280000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280000 AND b<280100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280100 AND b<280200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280200 AND b<280300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280300 AND b<280400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280400 AND b<280500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280500 AND b<280600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280600 AND b<280700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280700 AND b<280800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280800 AND b<280900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280900 AND b<281000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281000 AND b<281100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281100 AND b<281200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281200 AND b<281300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281300 AND b<281400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281400 AND b<281500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281500 AND b<281600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281600 AND b<281700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281700 AND b<281800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281800 AND b<281900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281900 AND b<282000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282000 AND b<282100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282100 AND b<282200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282200 AND b<282300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282300 AND b<282400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282400 AND b<282500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282500 AND b<282600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282600 AND b<282700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282700 AND b<282800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282800 AND b<282900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282900 AND b<283000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283000 AND b<283100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283100 AND b<283200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283200 AND b<283300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283300 AND b<283400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283400 AND b<283500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283500 AND b<283600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283600 AND b<283700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283700 AND b<283800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283800 AND b<283900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283900 AND b<284000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284000 AND b<284100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284100 AND b<284200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284200 AND b<284300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284300 AND b<284400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284400 AND b<284500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284500 AND b<284600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284600 AND b<284700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284700 AND b<284800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284800 AND b<284900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284900 AND b<285000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285000 AND b<285100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285100 AND b<285200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285200 AND b<285300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285300 AND b<285400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285400 AND b<285500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285500 AND b<285600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285600 AND b<285700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285700 AND b<285800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285800 AND b<285900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285900 AND b<286000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286000 AND b<286100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286100 AND b<286200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286200 AND b<286300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286300 AND b<286400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286400 AND b<286500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286500 AND b<286600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286600 AND b<286700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286700 AND b<286800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286800 AND b<286900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286900 AND b<287000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287000 AND b<287100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287100 AND b<287200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287200 AND b<287300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287300 AND b<287400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287400 AND b<287500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287500 AND b<287600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287600 AND b<287700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287700 AND b<287800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287800 AND b<287900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287900 AND b<288000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288000 AND b<288100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288100 AND b<288200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288200 AND b<288300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288300 AND b<288400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288400 AND b<288500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288500 AND b<288600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288600 AND b<288700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288700 AND b<288800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288800 AND b<288900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288900 AND b<289000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289000 AND b<289100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289100 AND b<289200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289200 AND b<289300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289300 AND b<289400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289400 AND b<289500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289500 AND b<289600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289600 AND b<289700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289700 AND b<289800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289800 AND b<289900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289900 AND b<290000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290000 AND b<290100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290100 AND b<290200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290200 AND b<290300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290300 AND b<290400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290400 AND b<290500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290500 AND b<290600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290600 AND b<290700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290700 AND b<290800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290800 AND b<290900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290900 AND b<291000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291000 AND b<291100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291100 AND b<291200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291200 AND b<291300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291300 AND b<291400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291400 AND b<291500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291500 AND b<291600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291600 AND b<291700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291700 AND b<291800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291800 AND b<291900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291900 AND b<292000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292000 AND b<292100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292100 AND b<292200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292200 AND b<292300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292300 AND b<292400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292400 AND b<292500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292500 AND b<292600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292600 AND b<292700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292700 AND b<292800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292800 AND b<292900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292900 AND b<293000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293000 AND b<293100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293100 AND b<293200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293200 AND b<293300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293300 AND b<293400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293400 AND b<293500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293500 AND b<293600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293600 AND b<293700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293700 AND b<293800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293800 AND b<293900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293900 AND b<294000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294000 AND b<294100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294100 AND b<294200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294200 AND b<294300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294300 AND b<294400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294400 AND b<294500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294500 AND b<294600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294600 AND b<294700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294700 AND b<294800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294800 AND b<294900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294900 AND b<295000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295000 AND b<295100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295100 AND b<295200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295200 AND b<295300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295300 AND b<295400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295400 AND b<295500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295500 AND b<295600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295600 AND b<295700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295700 AND b<295800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295800 AND b<295900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295900 AND b<296000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296000 AND b<296100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296100 AND b<296200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296200 AND b<296300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296300 AND b<296400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296400 AND b<296500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296500 AND b<296600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296600 AND b<296700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296700 AND b<296800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296800 AND b<296900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296900 AND b<297000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297000 AND b<297100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297100 AND b<297200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297200 AND b<297300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297300 AND b<297400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297400 AND b<297500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297500 AND b<297600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297600 AND b<297700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297700 AND b<297800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297800 AND b<297900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297900 AND b<298000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298000 AND b<298100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298100 AND b<298200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298200 AND b<298300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298300 AND b<298400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298400 AND b<298500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298500 AND b<298600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298600 AND b<298700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298700 AND b<298800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298800 AND b<298900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298900 AND b<299000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299000 AND b<299100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299100 AND b<299200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299200 AND b<299300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299300 AND b<299400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299400 AND b<299500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299500 AND b<299600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299600 AND b<299700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299700 AND b<299800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299800 AND b<299900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299900 AND b<300000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300000 AND b<300100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300100 AND b<300200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300200 AND b<300300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300300 AND b<300400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300400 AND b<300500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300500 AND b<300600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300600 AND b<300700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300700 AND b<300800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300800 AND b<300900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300900 AND b<301000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301000 AND b<301100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301100 AND b<301200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301200 AND b<301300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301300 AND b<301400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301400 AND b<301500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301500 AND b<301600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301600 AND b<301700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301700 AND b<301800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301800 AND b<301900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301900 AND b<302000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302000 AND b<302100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302100 AND b<302200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302200 AND b<302300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302300 AND b<302400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302400 AND b<302500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302500 AND b<302600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302600 AND b<302700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302700 AND b<302800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302800 AND b<302900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302900 AND b<303000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303000 AND b<303100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303100 AND b<303200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303200 AND b<303300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303300 AND b<303400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303400 AND b<303500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303500 AND b<303600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303600 AND b<303700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303700 AND b<303800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303800 AND b<303900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303900 AND b<304000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304000 AND b<304100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304100 AND b<304200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304200 AND b<304300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304300 AND b<304400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304400 AND b<304500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304500 AND b<304600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304600 AND b<304700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304700 AND b<304800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304800 AND b<304900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304900 AND b<305000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305000 AND b<305100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305100 AND b<305200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305200 AND b<305300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305300 AND b<305400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305400 AND b<305500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305500 AND b<305600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305600 AND b<305700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305700 AND b<305800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305800 AND b<305900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305900 AND b<306000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306000 AND b<306100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306100 AND b<306200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306200 AND b<306300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306300 AND b<306400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306400 AND b<306500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306500 AND b<306600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306600 AND b<306700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306700 AND b<306800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306800 AND b<306900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306900 AND b<307000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307000 AND b<307100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307100 AND b<307200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307200 AND b<307300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307300 AND b<307400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307400 AND b<307500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307500 AND b<307600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307600 AND b<307700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307700 AND b<307800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307800 AND b<307900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307900 AND b<308000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308000 AND b<308100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308100 AND b<308200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308200 AND b<308300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308300 AND b<308400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308400 AND b<308500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308500 AND b<308600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308600 AND b<308700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308700 AND b<308800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308800 AND b<308900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308900 AND b<309000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309000 AND b<309100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309100 AND b<309200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309200 AND b<309300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309300 AND b<309400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309400 AND b<309500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309500 AND b<309600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309600 AND b<309700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309700 AND b<309800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309800 AND b<309900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309900 AND b<310000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310000 AND b<310100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310100 AND b<310200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310200 AND b<310300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310300 AND b<310400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310400 AND b<310500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310500 AND b<310600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310600 AND b<310700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310700 AND b<310800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310800 AND b<310900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310900 AND b<311000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311000 AND b<311100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311100 AND b<311200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311200 AND b<311300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311300 AND b<311400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311400 AND b<311500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311500 AND b<311600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311600 AND b<311700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311700 AND b<311800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311800 AND b<311900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311900 AND b<312000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312000 AND b<312100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312100 AND b<312200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312200 AND b<312300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312300 AND b<312400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312400 AND b<312500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312500 AND b<312600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312600 AND b<312700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312700 AND b<312800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312800 AND b<312900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312900 AND b<313000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313000 AND b<313100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313100 AND b<313200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313200 AND b<313300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313300 AND b<313400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313400 AND b<313500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313500 AND b<313600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313600 AND b<313700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313700 AND b<313800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313800 AND b<313900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313900 AND b<314000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314000 AND b<314100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314100 AND b<314200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314200 AND b<314300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314300 AND b<314400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314400 AND b<314500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314500 AND b<314600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314600 AND b<314700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314700 AND b<314800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314800 AND b<314900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314900 AND b<315000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315000 AND b<315100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315100 AND b<315200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315200 AND b<315300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315300 AND b<315400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315400 AND b<315500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315500 AND b<315600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315600 AND b<315700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315700 AND b<315800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315800 AND b<315900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315900 AND b<316000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316000 AND b<316100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316100 AND b<316200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316200 AND b<316300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316300 AND b<316400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316400 AND b<316500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316500 AND b<316600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316600 AND b<316700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316700 AND b<316800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316800 AND b<316900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316900 AND b<317000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317000 AND b<317100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317100 AND b<317200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317200 AND b<317300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317300 AND b<317400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317400 AND b<317500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317500 AND b<317600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317600 AND b<317700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317700 AND b<317800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317800 AND b<317900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317900 AND b<318000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318000 AND b<318100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318100 AND b<318200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318200 AND b<318300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318300 AND b<318400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318400 AND b<318500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318500 AND b<318600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318600 AND b<318700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318700 AND b<318800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318800 AND b<318900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318900 AND b<319000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319000 AND b<319100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319100 AND b<319200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319200 AND b<319300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319300 AND b<319400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319400 AND b<319500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319500 AND b<319600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319600 AND b<319700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319700 AND b<319800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319800 AND b<319900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319900 AND b<320000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320000 AND b<320100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320100 AND b<320200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320200 AND b<320300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320300 AND b<320400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320400 AND b<320500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320500 AND b<320600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320600 AND b<320700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320700 AND b<320800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320800 AND b<320900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320900 AND b<321000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321000 AND b<321100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321100 AND b<321200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321200 AND b<321300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321300 AND b<321400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321400 AND b<321500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321500 AND b<321600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321600 AND b<321700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321700 AND b<321800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321800 AND b<321900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321900 AND b<322000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322000 AND b<322100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322100 AND b<322200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322200 AND b<322300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322300 AND b<322400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322400 AND b<322500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322500 AND b<322600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322600 AND b<322700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322700 AND b<322800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322800 AND b<322900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322900 AND b<323000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323000 AND b<323100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323100 AND b<323200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323200 AND b<323300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323300 AND b<323400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323400 AND b<323500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323500 AND b<323600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323600 AND b<323700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323700 AND b<323800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323800 AND b<323900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323900 AND b<324000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324000 AND b<324100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324100 AND b<324200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324200 AND b<324300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324300 AND b<324400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324400 AND b<324500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324500 AND b<324600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324600 AND b<324700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324700 AND b<324800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324800 AND b<324900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324900 AND b<325000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325000 AND b<325100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325100 AND b<325200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325200 AND b<325300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325300 AND b<325400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325400 AND b<325500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325500 AND b<325600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325600 AND b<325700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325700 AND b<325800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325800 AND b<325900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325900 AND b<326000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326000 AND b<326100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326100 AND b<326200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326200 AND b<326300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326300 AND b<326400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326400 AND b<326500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326500 AND b<326600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326600 AND b<326700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326700 AND b<326800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326800 AND b<326900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326900 AND b<327000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327000 AND b<327100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327100 AND b<327200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327200 AND b<327300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327300 AND b<327400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327400 AND b<327500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327500 AND b<327600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327600 AND b<327700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327700 AND b<327800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327800 AND b<327900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327900 AND b<328000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328000 AND b<328100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328100 AND b<328200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328200 AND b<328300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328300 AND b<328400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328400 AND b<328500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328500 AND b<328600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328600 AND b<328700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328700 AND b<328800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328800 AND b<328900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328900 AND b<329000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329000 AND b<329100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329100 AND b<329200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329200 AND b<329300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329300 AND b<329400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329400 AND b<329500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329500 AND b<329600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329600 AND b<329700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329700 AND b<329800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329800 AND b<329900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329900 AND b<330000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330000 AND b<330100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330100 AND b<330200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330200 AND b<330300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330300 AND b<330400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330400 AND b<330500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330500 AND b<330600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330600 AND b<330700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330700 AND b<330800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330800 AND b<330900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330900 AND b<331000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331000 AND b<331100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331100 AND b<331200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331200 AND b<331300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331300 AND b<331400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331400 AND b<331500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331500 AND b<331600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331600 AND b<331700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331700 AND b<331800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331800 AND b<331900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331900 AND b<332000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332000 AND b<332100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332100 AND b<332200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332200 AND b<332300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332300 AND b<332400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332400 AND b<332500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332500 AND b<332600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332600 AND b<332700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332700 AND b<332800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332800 AND b<332900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332900 AND b<333000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333000 AND b<333100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333100 AND b<333200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333200 AND b<333300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333300 AND b<333400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333400 AND b<333500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333500 AND b<333600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333600 AND b<333700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333700 AND b<333800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333800 AND b<333900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333900 AND b<334000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334000 AND b<334100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334100 AND b<334200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334200 AND b<334300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334300 AND b<334400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334400 AND b<334500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334500 AND b<334600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334600 AND b<334700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334700 AND b<334800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334800 AND b<334900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334900 AND b<335000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335000 AND b<335100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335100 AND b<335200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335200 AND b<335300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335300 AND b<335400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335400 AND b<335500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335500 AND b<335600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335600 AND b<335700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335700 AND b<335800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335800 AND b<335900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335900 AND b<336000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336000 AND b<336100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336100 AND b<336200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336200 AND b<336300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336300 AND b<336400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336400 AND b<336500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336500 AND b<336600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336600 AND b<336700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336700 AND b<336800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336800 AND b<336900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336900 AND b<337000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337000 AND b<337100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337100 AND b<337200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337200 AND b<337300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337300 AND b<337400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337400 AND b<337500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337500 AND b<337600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337600 AND b<337700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337700 AND b<337800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337800 AND b<337900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337900 AND b<338000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338000 AND b<338100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338100 AND b<338200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338200 AND b<338300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338300 AND b<338400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338400 AND b<338500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338500 AND b<338600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338600 AND b<338700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338700 AND b<338800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338800 AND b<338900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338900 AND b<339000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339000 AND b<339100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339100 AND b<339200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339200 AND b<339300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339300 AND b<339400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339400 AND b<339500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339500 AND b<339600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339600 AND b<339700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339700 AND b<339800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339800 AND b<339900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339900 AND b<340000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340000 AND b<340100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340100 AND b<340200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340200 AND b<340300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340300 AND b<340400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340400 AND b<340500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340500 AND b<340600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340600 AND b<340700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340700 AND b<340800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340800 AND b<340900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340900 AND b<341000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341000 AND b<341100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341100 AND b<341200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341200 AND b<341300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341300 AND b<341400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341400 AND b<341500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341500 AND b<341600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341600 AND b<341700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341700 AND b<341800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341800 AND b<341900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341900 AND b<342000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342000 AND b<342100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342100 AND b<342200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342200 AND b<342300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342300 AND b<342400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342400 AND b<342500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342500 AND b<342600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342600 AND b<342700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342700 AND b<342800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342800 AND b<342900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342900 AND b<343000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343000 AND b<343100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343100 AND b<343200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343200 AND b<343300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343300 AND b<343400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343400 AND b<343500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343500 AND b<343600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343600 AND b<343700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343700 AND b<343800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343800 AND b<343900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343900 AND b<344000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344000 AND b<344100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344100 AND b<344200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344200 AND b<344300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344300 AND b<344400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344400 AND b<344500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344500 AND b<344600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344600 AND b<344700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344700 AND b<344800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344800 AND b<344900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344900 AND b<345000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345000 AND b<345100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345100 AND b<345200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345200 AND b<345300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345300 AND b<345400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345400 AND b<345500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345500 AND b<345600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345600 AND b<345700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345700 AND b<345800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345800 AND b<345900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345900 AND b<346000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346000 AND b<346100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346100 AND b<346200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346200 AND b<346300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346300 AND b<346400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346400 AND b<346500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346500 AND b<346600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346600 AND b<346700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346700 AND b<346800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346800 AND b<346900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346900 AND b<347000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347000 AND b<347100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347100 AND b<347200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347200 AND b<347300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347300 AND b<347400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347400 AND b<347500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347500 AND b<347600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347600 AND b<347700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347700 AND b<347800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347800 AND b<347900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347900 AND b<348000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348000 AND b<348100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348100 AND b<348200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348200 AND b<348300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348300 AND b<348400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348400 AND b<348500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348500 AND b<348600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348600 AND b<348700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348700 AND b<348800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348800 AND b<348900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348900 AND b<349000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349000 AND b<349100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349100 AND b<349200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349200 AND b<349300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349300 AND b<349400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349400 AND b<349500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349500 AND b<349600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349600 AND b<349700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349700 AND b<349800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349800 AND b<349900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349900 AND b<350000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350000 AND b<350100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350100 AND b<350200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350200 AND b<350300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350300 AND b<350400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350400 AND b<350500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350500 AND b<350600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350600 AND b<350700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350700 AND b<350800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350800 AND b<350900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350900 AND b<351000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351000 AND b<351100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351100 AND b<351200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351200 AND b<351300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351300 AND b<351400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351400 AND b<351500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351500 AND b<351600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351600 AND b<351700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351700 AND b<351800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351800 AND b<351900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351900 AND b<352000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352000 AND b<352100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352100 AND b<352200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352200 AND b<352300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352300 AND b<352400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352400 AND b<352500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352500 AND b<352600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352600 AND b<352700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352700 AND b<352800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352800 AND b<352900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352900 AND b<353000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353000 AND b<353100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353100 AND b<353200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353200 AND b<353300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353300 AND b<353400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353400 AND b<353500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353500 AND b<353600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353600 AND b<353700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353700 AND b<353800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353800 AND b<353900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353900 AND b<354000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354000 AND b<354100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354100 AND b<354200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354200 AND b<354300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354300 AND b<354400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354400 AND b<354500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354500 AND b<354600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354600 AND b<354700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354700 AND b<354800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354800 AND b<354900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354900 AND b<355000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355000 AND b<355100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355100 AND b<355200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355200 AND b<355300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355300 AND b<355400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355400 AND b<355500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355500 AND b<355600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355600 AND b<355700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355700 AND b<355800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355800 AND b<355900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355900 AND b<356000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356000 AND b<356100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356100 AND b<356200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356200 AND b<356300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356300 AND b<356400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356400 AND b<356500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356500 AND b<356600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356600 AND b<356700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356700 AND b<356800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356800 AND b<356900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356900 AND b<357000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357000 AND b<357100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357100 AND b<357200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357200 AND b<357300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357300 AND b<357400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357400 AND b<357500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357500 AND b<357600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357600 AND b<357700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357700 AND b<357800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357800 AND b<357900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357900 AND b<358000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358000 AND b<358100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358100 AND b<358200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358200 AND b<358300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358300 AND b<358400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358400 AND b<358500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358500 AND b<358600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358600 AND b<358700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358700 AND b<358800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358800 AND b<358900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358900 AND b<359000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359000 AND b<359100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359100 AND b<359200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359200 AND b<359300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359300 AND b<359400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359400 AND b<359500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359500 AND b<359600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359600 AND b<359700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359700 AND b<359800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359800 AND b<359900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359900 AND b<360000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360000 AND b<360100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360100 AND b<360200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360200 AND b<360300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360300 AND b<360400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360400 AND b<360500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360500 AND b<360600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360600 AND b<360700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360700 AND b<360800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360800 AND b<360900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360900 AND b<361000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361000 AND b<361100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361100 AND b<361200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361200 AND b<361300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361300 AND b<361400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361400 AND b<361500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361500 AND b<361600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361600 AND b<361700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361700 AND b<361800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361800 AND b<361900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361900 AND b<362000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362000 AND b<362100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362100 AND b<362200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362200 AND b<362300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362300 AND b<362400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362400 AND b<362500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362500 AND b<362600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362600 AND b<362700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362700 AND b<362800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362800 AND b<362900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362900 AND b<363000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363000 AND b<363100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363100 AND b<363200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363200 AND b<363300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363300 AND b<363400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363400 AND b<363500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363500 AND b<363600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363600 AND b<363700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363700 AND b<363800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363800 AND b<363900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363900 AND b<364000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364000 AND b<364100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364100 AND b<364200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364200 AND b<364300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364300 AND b<364400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364400 AND b<364500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364500 AND b<364600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364600 AND b<364700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364700 AND b<364800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364800 AND b<364900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364900 AND b<365000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365000 AND b<365100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365100 AND b<365200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365200 AND b<365300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365300 AND b<365400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365400 AND b<365500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365500 AND b<365600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365600 AND b<365700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365700 AND b<365800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365800 AND b<365900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365900 AND b<366000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366000 AND b<366100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366100 AND b<366200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366200 AND b<366300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366300 AND b<366400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366400 AND b<366500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366500 AND b<366600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366600 AND b<366700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366700 AND b<366800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366800 AND b<366900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366900 AND b<367000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367000 AND b<367100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367100 AND b<367200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367200 AND b<367300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367300 AND b<367400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367400 AND b<367500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367500 AND b<367600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367600 AND b<367700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367700 AND b<367800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367800 AND b<367900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367900 AND b<368000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368000 AND b<368100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368100 AND b<368200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368200 AND b<368300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368300 AND b<368400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368400 AND b<368500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368500 AND b<368600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368600 AND b<368700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368700 AND b<368800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368800 AND b<368900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368900 AND b<369000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369000 AND b<369100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369100 AND b<369200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369200 AND b<369300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369300 AND b<369400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369400 AND b<369500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369500 AND b<369600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369600 AND b<369700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369700 AND b<369800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369800 AND b<369900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369900 AND b<370000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370000 AND b<370100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370100 AND b<370200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370200 AND b<370300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370300 AND b<370400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370400 AND b<370500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370500 AND b<370600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370600 AND b<370700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370700 AND b<370800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370800 AND b<370900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370900 AND b<371000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371000 AND b<371100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371100 AND b<371200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371200 AND b<371300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371300 AND b<371400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371400 AND b<371500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371500 AND b<371600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371600 AND b<371700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371700 AND b<371800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371800 AND b<371900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371900 AND b<372000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372000 AND b<372100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372100 AND b<372200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372200 AND b<372300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372300 AND b<372400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372400 AND b<372500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372500 AND b<372600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372600 AND b<372700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372700 AND b<372800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372800 AND b<372900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372900 AND b<373000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373000 AND b<373100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373100 AND b<373200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373200 AND b<373300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373300 AND b<373400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373400 AND b<373500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373500 AND b<373600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373600 AND b<373700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373700 AND b<373800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373800 AND b<373900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373900 AND b<374000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374000 AND b<374100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374100 AND b<374200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374200 AND b<374300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374300 AND b<374400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374400 AND b<374500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374500 AND b<374600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374600 AND b<374700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374700 AND b<374800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374800 AND b<374900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374900 AND b<375000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375000 AND b<375100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375100 AND b<375200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375200 AND b<375300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375300 AND b<375400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375400 AND b<375500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375500 AND b<375600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375600 AND b<375700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375700 AND b<375800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375800 AND b<375900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375900 AND b<376000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376000 AND b<376100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376100 AND b<376200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376200 AND b<376300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376300 AND b<376400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376400 AND b<376500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376500 AND b<376600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376600 AND b<376700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376700 AND b<376800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376800 AND b<376900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376900 AND b<377000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377000 AND b<377100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377100 AND b<377200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377200 AND b<377300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377300 AND b<377400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377400 AND b<377500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377500 AND b<377600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377600 AND b<377700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377700 AND b<377800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377800 AND b<377900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377900 AND b<378000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378000 AND b<378100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378100 AND b<378200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378200 AND b<378300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378300 AND b<378400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378400 AND b<378500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378500 AND b<378600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378600 AND b<378700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378700 AND b<378800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378800 AND b<378900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378900 AND b<379000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379000 AND b<379100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379100 AND b<379200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379200 AND b<379300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379300 AND b<379400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379400 AND b<379500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379500 AND b<379600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379600 AND b<379700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379700 AND b<379800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379800 AND b<379900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379900 AND b<380000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380000 AND b<380100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380100 AND b<380200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380200 AND b<380300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380300 AND b<380400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380400 AND b<380500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380500 AND b<380600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380600 AND b<380700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380700 AND b<380800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380800 AND b<380900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380900 AND b<381000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381000 AND b<381100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381100 AND b<381200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381200 AND b<381300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381300 AND b<381400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381400 AND b<381500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381500 AND b<381600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381600 AND b<381700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381700 AND b<381800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381800 AND b<381900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381900 AND b<382000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382000 AND b<382100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382100 AND b<382200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382200 AND b<382300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382300 AND b<382400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382400 AND b<382500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382500 AND b<382600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382600 AND b<382700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382700 AND b<382800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382800 AND b<382900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382900 AND b<383000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383000 AND b<383100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383100 AND b<383200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383200 AND b<383300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383300 AND b<383400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383400 AND b<383500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383500 AND b<383600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383600 AND b<383700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383700 AND b<383800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383800 AND b<383900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383900 AND b<384000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384000 AND b<384100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384100 AND b<384200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384200 AND b<384300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384300 AND b<384400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384400 AND b<384500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384500 AND b<384600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384600 AND b<384700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384700 AND b<384800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384800 AND b<384900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384900 AND b<385000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385000 AND b<385100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385100 AND b<385200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385200 AND b<385300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385300 AND b<385400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385400 AND b<385500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385500 AND b<385600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385600 AND b<385700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385700 AND b<385800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385800 AND b<385900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385900 AND b<386000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386000 AND b<386100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386100 AND b<386200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386200 AND b<386300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386300 AND b<386400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386400 AND b<386500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386500 AND b<386600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386600 AND b<386700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386700 AND b<386800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386800 AND b<386900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386900 AND b<387000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387000 AND b<387100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387100 AND b<387200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387200 AND b<387300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387300 AND b<387400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387400 AND b<387500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387500 AND b<387600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387600 AND b<387700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387700 AND b<387800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387800 AND b<387900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387900 AND b<388000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388000 AND b<388100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388100 AND b<388200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388200 AND b<388300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388300 AND b<388400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388400 AND b<388500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388500 AND b<388600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388600 AND b<388700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388700 AND b<388800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388800 AND b<388900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388900 AND b<389000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389000 AND b<389100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389100 AND b<389200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389200 AND b<389300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389300 AND b<389400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389400 AND b<389500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389500 AND b<389600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389600 AND b<389700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389700 AND b<389800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389800 AND b<389900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389900 AND b<390000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390000 AND b<390100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390100 AND b<390200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390200 AND b<390300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390300 AND b<390400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390400 AND b<390500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390500 AND b<390600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390600 AND b<390700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390700 AND b<390800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390800 AND b<390900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390900 AND b<391000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391000 AND b<391100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391100 AND b<391200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391200 AND b<391300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391300 AND b<391400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391400 AND b<391500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391500 AND b<391600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391600 AND b<391700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391700 AND b<391800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391800 AND b<391900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391900 AND b<392000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392000 AND b<392100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392100 AND b<392200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392200 AND b<392300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392300 AND b<392400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392400 AND b<392500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392500 AND b<392600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392600 AND b<392700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392700 AND b<392800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392800 AND b<392900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392900 AND b<393000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393000 AND b<393100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393100 AND b<393200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393200 AND b<393300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393300 AND b<393400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393400 AND b<393500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393500 AND b<393600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393600 AND b<393700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393700 AND b<393800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393800 AND b<393900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393900 AND b<394000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394000 AND b<394100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394100 AND b<394200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394200 AND b<394300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394300 AND b<394400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394400 AND b<394500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394500 AND b<394600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394600 AND b<394700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394700 AND b<394800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394800 AND b<394900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394900 AND b<395000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395000 AND b<395100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395100 AND b<395200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395200 AND b<395300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395300 AND b<395400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395400 AND b<395500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395500 AND b<395600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395600 AND b<395700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395700 AND b<395800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395800 AND b<395900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395900 AND b<396000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396000 AND b<396100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396100 AND b<396200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396200 AND b<396300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396300 AND b<396400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396400 AND b<396500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396500 AND b<396600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396600 AND b<396700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396700 AND b<396800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396800 AND b<396900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396900 AND b<397000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397000 AND b<397100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397100 AND b<397200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397200 AND b<397300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397300 AND b<397400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397400 AND b<397500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397500 AND b<397600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397600 AND b<397700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397700 AND b<397800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397800 AND b<397900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397900 AND b<398000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398000 AND b<398100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398100 AND b<398200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398200 AND b<398300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398300 AND b<398400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398400 AND b<398500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398500 AND b<398600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398600 AND b<398700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398700 AND b<398800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398800 AND b<398900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398900 AND b<399000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399000 AND b<399100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399100 AND b<399200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399200 AND b<399300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399300 AND b<399400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399400 AND b<399500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399500 AND b<399600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399600 AND b<399700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399700 AND b<399800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399800 AND b<399900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399900 AND b<400000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400000 AND b<400100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400100 AND b<400200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400200 AND b<400300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400300 AND b<400400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400400 AND b<400500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400500 AND b<400600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400600 AND b<400700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400700 AND b<400800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400800 AND b<400900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400900 AND b<401000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401000 AND b<401100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401100 AND b<401200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401200 AND b<401300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401300 AND b<401400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401400 AND b<401500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401500 AND b<401600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401600 AND b<401700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401700 AND b<401800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401800 AND b<401900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401900 AND b<402000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402000 AND b<402100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402100 AND b<402200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402200 AND b<402300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402300 AND b<402400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402400 AND b<402500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402500 AND b<402600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402600 AND b<402700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402700 AND b<402800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402800 AND b<402900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402900 AND b<403000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403000 AND b<403100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403100 AND b<403200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403200 AND b<403300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403300 AND b<403400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403400 AND b<403500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403500 AND b<403600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403600 AND b<403700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403700 AND b<403800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403800 AND b<403900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403900 AND b<404000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404000 AND b<404100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404100 AND b<404200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404200 AND b<404300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404300 AND b<404400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404400 AND b<404500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404500 AND b<404600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404600 AND b<404700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404700 AND b<404800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404800 AND b<404900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404900 AND b<405000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405000 AND b<405100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405100 AND b<405200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405200 AND b<405300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405300 AND b<405400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405400 AND b<405500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405500 AND b<405600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405600 AND b<405700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405700 AND b<405800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405800 AND b<405900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405900 AND b<406000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406000 AND b<406100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406100 AND b<406200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406200 AND b<406300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406300 AND b<406400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406400 AND b<406500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406500 AND b<406600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406600 AND b<406700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406700 AND b<406800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406800 AND b<406900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406900 AND b<407000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407000 AND b<407100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407100 AND b<407200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407200 AND b<407300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407300 AND b<407400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407400 AND b<407500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407500 AND b<407600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407600 AND b<407700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407700 AND b<407800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407800 AND b<407900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407900 AND b<408000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408000 AND b<408100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408100 AND b<408200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408200 AND b<408300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408300 AND b<408400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408400 AND b<408500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408500 AND b<408600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408600 AND b<408700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408700 AND b<408800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408800 AND b<408900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408900 AND b<409000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409000 AND b<409100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409100 AND b<409200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409200 AND b<409300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409300 AND b<409400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409400 AND b<409500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409500 AND b<409600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409600 AND b<409700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409700 AND b<409800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409800 AND b<409900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409900 AND b<410000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410000 AND b<410100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410100 AND b<410200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410200 AND b<410300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410300 AND b<410400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410400 AND b<410500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410500 AND b<410600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410600 AND b<410700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410700 AND b<410800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410800 AND b<410900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410900 AND b<411000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411000 AND b<411100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411100 AND b<411200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411200 AND b<411300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411300 AND b<411400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411400 AND b<411500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411500 AND b<411600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411600 AND b<411700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411700 AND b<411800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411800 AND b<411900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411900 AND b<412000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412000 AND b<412100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412100 AND b<412200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412200 AND b<412300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412300 AND b<412400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412400 AND b<412500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412500 AND b<412600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412600 AND b<412700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412700 AND b<412800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412800 AND b<412900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412900 AND b<413000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413000 AND b<413100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413100 AND b<413200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413200 AND b<413300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413300 AND b<413400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413400 AND b<413500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413500 AND b<413600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413600 AND b<413700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413700 AND b<413800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413800 AND b<413900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413900 AND b<414000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414000 AND b<414100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414100 AND b<414200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414200 AND b<414300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414300 AND b<414400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414400 AND b<414500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414500 AND b<414600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414600 AND b<414700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414700 AND b<414800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414800 AND b<414900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414900 AND b<415000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415000 AND b<415100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415100 AND b<415200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415200 AND b<415300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415300 AND b<415400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415400 AND b<415500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415500 AND b<415600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415600 AND b<415700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415700 AND b<415800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415800 AND b<415900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415900 AND b<416000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416000 AND b<416100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416100 AND b<416200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416200 AND b<416300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416300 AND b<416400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416400 AND b<416500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416500 AND b<416600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416600 AND b<416700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416700 AND b<416800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416800 AND b<416900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416900 AND b<417000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417000 AND b<417100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417100 AND b<417200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417200 AND b<417300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417300 AND b<417400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417400 AND b<417500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417500 AND b<417600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417600 AND b<417700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417700 AND b<417800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417800 AND b<417900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417900 AND b<418000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418000 AND b<418100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418100 AND b<418200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418200 AND b<418300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418300 AND b<418400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418400 AND b<418500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418500 AND b<418600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418600 AND b<418700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418700 AND b<418800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418800 AND b<418900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418900 AND b<419000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419000 AND b<419100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419100 AND b<419200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419200 AND b<419300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419300 AND b<419400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419400 AND b<419500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419500 AND b<419600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419600 AND b<419700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419700 AND b<419800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419800 AND b<419900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419900 AND b<420000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420000 AND b<420100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420100 AND b<420200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420200 AND b<420300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420300 AND b<420400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420400 AND b<420500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420500 AND b<420600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420600 AND b<420700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420700 AND b<420800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420800 AND b<420900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420900 AND b<421000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421000 AND b<421100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421100 AND b<421200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421200 AND b<421300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421300 AND b<421400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421400 AND b<421500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421500 AND b<421600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421600 AND b<421700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421700 AND b<421800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421800 AND b<421900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421900 AND b<422000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422000 AND b<422100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422100 AND b<422200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422200 AND b<422300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422300 AND b<422400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422400 AND b<422500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422500 AND b<422600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422600 AND b<422700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422700 AND b<422800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422800 AND b<422900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422900 AND b<423000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423000 AND b<423100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423100 AND b<423200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423200 AND b<423300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423300 AND b<423400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423400 AND b<423500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423500 AND b<423600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423600 AND b<423700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423700 AND b<423800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423800 AND b<423900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423900 AND b<424000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424000 AND b<424100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424100 AND b<424200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424200 AND b<424300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424300 AND b<424400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424400 AND b<424500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424500 AND b<424600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424600 AND b<424700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424700 AND b<424800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424800 AND b<424900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424900 AND b<425000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425000 AND b<425100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425100 AND b<425200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425200 AND b<425300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425300 AND b<425400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425400 AND b<425500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425500 AND b<425600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425600 AND b<425700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425700 AND b<425800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425800 AND b<425900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425900 AND b<426000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426000 AND b<426100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426100 AND b<426200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426200 AND b<426300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426300 AND b<426400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426400 AND b<426500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426500 AND b<426600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426600 AND b<426700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426700 AND b<426800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426800 AND b<426900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426900 AND b<427000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427000 AND b<427100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427100 AND b<427200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427200 AND b<427300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427300 AND b<427400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427400 AND b<427500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427500 AND b<427600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427600 AND b<427700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427700 AND b<427800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427800 AND b<427900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427900 AND b<428000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428000 AND b<428100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428100 AND b<428200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428200 AND b<428300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428300 AND b<428400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428400 AND b<428500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428500 AND b<428600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428600 AND b<428700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428700 AND b<428800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428800 AND b<428900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428900 AND b<429000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429000 AND b<429100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429100 AND b<429200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429200 AND b<429300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429300 AND b<429400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429400 AND b<429500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429500 AND b<429600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429600 AND b<429700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429700 AND b<429800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429800 AND b<429900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429900 AND b<430000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430000 AND b<430100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430100 AND b<430200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430200 AND b<430300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430300 AND b<430400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430400 AND b<430500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430500 AND b<430600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430600 AND b<430700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430700 AND b<430800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430800 AND b<430900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430900 AND b<431000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431000 AND b<431100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431100 AND b<431200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431200 AND b<431300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431300 AND b<431400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431400 AND b<431500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431500 AND b<431600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431600 AND b<431700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431700 AND b<431800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431800 AND b<431900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431900 AND b<432000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432000 AND b<432100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432100 AND b<432200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432200 AND b<432300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432300 AND b<432400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432400 AND b<432500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432500 AND b<432600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432600 AND b<432700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432700 AND b<432800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432800 AND b<432900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432900 AND b<433000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433000 AND b<433100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433100 AND b<433200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433200 AND b<433300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433300 AND b<433400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433400 AND b<433500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433500 AND b<433600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433600 AND b<433700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433700 AND b<433800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433800 AND b<433900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433900 AND b<434000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434000 AND b<434100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434100 AND b<434200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434200 AND b<434300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434300 AND b<434400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434400 AND b<434500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434500 AND b<434600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434600 AND b<434700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434700 AND b<434800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434800 AND b<434900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434900 AND b<435000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435000 AND b<435100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435100 AND b<435200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435200 AND b<435300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435300 AND b<435400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435400 AND b<435500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435500 AND b<435600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435600 AND b<435700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435700 AND b<435800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435800 AND b<435900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435900 AND b<436000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436000 AND b<436100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436100 AND b<436200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436200 AND b<436300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436300 AND b<436400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436400 AND b<436500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436500 AND b<436600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436600 AND b<436700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436700 AND b<436800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436800 AND b<436900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436900 AND b<437000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437000 AND b<437100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437100 AND b<437200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437200 AND b<437300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437300 AND b<437400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437400 AND b<437500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437500 AND b<437600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437600 AND b<437700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437700 AND b<437800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437800 AND b<437900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437900 AND b<438000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438000 AND b<438100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438100 AND b<438200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438200 AND b<438300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438300 AND b<438400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438400 AND b<438500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438500 AND b<438600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438600 AND b<438700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438700 AND b<438800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438800 AND b<438900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438900 AND b<439000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439000 AND b<439100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439100 AND b<439200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439200 AND b<439300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439300 AND b<439400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439400 AND b<439500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439500 AND b<439600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439600 AND b<439700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439700 AND b<439800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439800 AND b<439900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439900 AND b<440000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440000 AND b<440100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440100 AND b<440200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440200 AND b<440300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440300 AND b<440400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440400 AND b<440500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440500 AND b<440600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440600 AND b<440700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440700 AND b<440800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440800 AND b<440900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440900 AND b<441000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441000 AND b<441100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441100 AND b<441200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441200 AND b<441300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441300 AND b<441400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441400 AND b<441500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441500 AND b<441600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441600 AND b<441700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441700 AND b<441800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441800 AND b<441900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441900 AND b<442000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442000 AND b<442100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442100 AND b<442200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442200 AND b<442300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442300 AND b<442400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442400 AND b<442500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442500 AND b<442600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442600 AND b<442700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442700 AND b<442800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442800 AND b<442900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442900 AND b<443000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443000 AND b<443100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443100 AND b<443200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443200 AND b<443300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443300 AND b<443400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443400 AND b<443500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443500 AND b<443600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443600 AND b<443700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443700 AND b<443800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443800 AND b<443900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443900 AND b<444000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444000 AND b<444100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444100 AND b<444200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444200 AND b<444300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444300 AND b<444400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444400 AND b<444500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444500 AND b<444600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444600 AND b<444700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444700 AND b<444800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444800 AND b<444900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444900 AND b<445000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445000 AND b<445100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445100 AND b<445200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445200 AND b<445300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445300 AND b<445400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445400 AND b<445500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445500 AND b<445600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445600 AND b<445700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445700 AND b<445800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445800 AND b<445900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445900 AND b<446000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446000 AND b<446100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446100 AND b<446200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446200 AND b<446300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446300 AND b<446400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446400 AND b<446500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446500 AND b<446600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446600 AND b<446700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446700 AND b<446800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446800 AND b<446900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446900 AND b<447000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447000 AND b<447100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447100 AND b<447200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447200 AND b<447300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447300 AND b<447400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447400 AND b<447500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447500 AND b<447600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447600 AND b<447700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447700 AND b<447800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447800 AND b<447900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447900 AND b<448000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448000 AND b<448100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448100 AND b<448200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448200 AND b<448300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448300 AND b<448400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448400 AND b<448500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448500 AND b<448600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448600 AND b<448700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448700 AND b<448800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448800 AND b<448900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448900 AND b<449000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449000 AND b<449100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449100 AND b<449200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449200 AND b<449300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449300 AND b<449400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449400 AND b<449500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449500 AND b<449600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449600 AND b<449700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449700 AND b<449800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449800 AND b<449900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449900 AND b<450000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450000 AND b<450100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450100 AND b<450200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450200 AND b<450300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450300 AND b<450400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450400 AND b<450500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450500 AND b<450600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450600 AND b<450700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450700 AND b<450800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450800 AND b<450900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450900 AND b<451000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451000 AND b<451100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451100 AND b<451200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451200 AND b<451300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451300 AND b<451400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451400 AND b<451500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451500 AND b<451600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451600 AND b<451700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451700 AND b<451800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451800 AND b<451900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451900 AND b<452000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452000 AND b<452100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452100 AND b<452200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452200 AND b<452300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452300 AND b<452400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452400 AND b<452500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452500 AND b<452600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452600 AND b<452700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452700 AND b<452800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452800 AND b<452900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452900 AND b<453000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453000 AND b<453100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453100 AND b<453200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453200 AND b<453300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453300 AND b<453400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453400 AND b<453500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453500 AND b<453600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453600 AND b<453700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453700 AND b<453800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453800 AND b<453900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453900 AND b<454000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454000 AND b<454100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454100 AND b<454200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454200 AND b<454300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454300 AND b<454400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454400 AND b<454500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454500 AND b<454600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454600 AND b<454700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454700 AND b<454800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454800 AND b<454900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454900 AND b<455000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455000 AND b<455100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455100 AND b<455200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455200 AND b<455300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455300 AND b<455400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455400 AND b<455500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455500 AND b<455600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455600 AND b<455700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455700 AND b<455800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455800 AND b<455900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455900 AND b<456000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456000 AND b<456100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456100 AND b<456200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456200 AND b<456300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456300 AND b<456400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456400 AND b<456500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456500 AND b<456600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456600 AND b<456700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456700 AND b<456800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456800 AND b<456900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456900 AND b<457000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457000 AND b<457100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457100 AND b<457200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457200 AND b<457300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457300 AND b<457400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457400 AND b<457500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457500 AND b<457600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457600 AND b<457700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457700 AND b<457800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457800 AND b<457900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457900 AND b<458000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458000 AND b<458100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458100 AND b<458200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458200 AND b<458300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458300 AND b<458400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458400 AND b<458500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458500 AND b<458600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458600 AND b<458700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458700 AND b<458800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458800 AND b<458900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458900 AND b<459000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459000 AND b<459100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459100 AND b<459200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459200 AND b<459300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459300 AND b<459400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459400 AND b<459500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459500 AND b<459600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459600 AND b<459700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459700 AND b<459800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459800 AND b<459900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459900 AND b<460000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460000 AND b<460100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460100 AND b<460200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460200 AND b<460300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460300 AND b<460400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460400 AND b<460500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460500 AND b<460600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460600 AND b<460700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460700 AND b<460800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460800 AND b<460900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460900 AND b<461000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461000 AND b<461100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461100 AND b<461200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461200 AND b<461300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461300 AND b<461400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461400 AND b<461500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461500 AND b<461600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461600 AND b<461700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461700 AND b<461800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461800 AND b<461900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461900 AND b<462000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462000 AND b<462100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462100 AND b<462200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462200 AND b<462300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462300 AND b<462400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462400 AND b<462500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462500 AND b<462600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462600 AND b<462700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462700 AND b<462800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462800 AND b<462900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462900 AND b<463000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463000 AND b<463100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463100 AND b<463200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463200 AND b<463300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463300 AND b<463400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463400 AND b<463500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463500 AND b<463600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463600 AND b<463700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463700 AND b<463800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463800 AND b<463900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463900 AND b<464000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464000 AND b<464100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464100 AND b<464200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464200 AND b<464300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464300 AND b<464400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464400 AND b<464500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464500 AND b<464600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464600 AND b<464700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464700 AND b<464800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464800 AND b<464900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464900 AND b<465000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465000 AND b<465100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465100 AND b<465200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465200 AND b<465300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465300 AND b<465400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465400 AND b<465500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465500 AND b<465600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465600 AND b<465700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465700 AND b<465800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465800 AND b<465900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465900 AND b<466000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466000 AND b<466100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466100 AND b<466200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466200 AND b<466300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466300 AND b<466400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466400 AND b<466500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466500 AND b<466600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466600 AND b<466700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466700 AND b<466800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466800 AND b<466900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466900 AND b<467000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467000 AND b<467100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467100 AND b<467200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467200 AND b<467300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467300 AND b<467400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467400 AND b<467500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467500 AND b<467600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467600 AND b<467700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467700 AND b<467800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467800 AND b<467900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467900 AND b<468000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468000 AND b<468100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468100 AND b<468200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468200 AND b<468300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468300 AND b<468400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468400 AND b<468500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468500 AND b<468600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468600 AND b<468700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468700 AND b<468800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468800 AND b<468900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468900 AND b<469000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469000 AND b<469100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469100 AND b<469200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469200 AND b<469300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469300 AND b<469400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469400 AND b<469500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469500 AND b<469600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469600 AND b<469700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469700 AND b<469800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469800 AND b<469900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469900 AND b<470000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470000 AND b<470100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470100 AND b<470200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470200 AND b<470300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470300 AND b<470400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470400 AND b<470500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470500 AND b<470600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470600 AND b<470700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470700 AND b<470800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470800 AND b<470900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470900 AND b<471000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471000 AND b<471100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471100 AND b<471200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471200 AND b<471300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471300 AND b<471400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471400 AND b<471500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471500 AND b<471600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471600 AND b<471700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471700 AND b<471800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471800 AND b<471900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471900 AND b<472000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472000 AND b<472100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472100 AND b<472200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472200 AND b<472300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472300 AND b<472400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472400 AND b<472500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472500 AND b<472600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472600 AND b<472700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472700 AND b<472800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472800 AND b<472900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472900 AND b<473000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473000 AND b<473100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473100 AND b<473200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473200 AND b<473300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473300 AND b<473400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473400 AND b<473500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473500 AND b<473600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473600 AND b<473700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473700 AND b<473800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473800 AND b<473900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473900 AND b<474000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474000 AND b<474100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474100 AND b<474200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474200 AND b<474300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474300 AND b<474400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474400 AND b<474500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474500 AND b<474600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474600 AND b<474700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474700 AND b<474800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474800 AND b<474900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474900 AND b<475000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475000 AND b<475100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475100 AND b<475200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475200 AND b<475300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475300 AND b<475400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475400 AND b<475500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475500 AND b<475600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475600 AND b<475700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475700 AND b<475800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475800 AND b<475900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475900 AND b<476000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476000 AND b<476100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476100 AND b<476200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476200 AND b<476300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476300 AND b<476400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476400 AND b<476500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476500 AND b<476600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476600 AND b<476700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476700 AND b<476800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476800 AND b<476900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476900 AND b<477000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477000 AND b<477100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477100 AND b<477200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477200 AND b<477300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477300 AND b<477400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477400 AND b<477500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477500 AND b<477600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477600 AND b<477700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477700 AND b<477800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477800 AND b<477900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477900 AND b<478000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478000 AND b<478100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478100 AND b<478200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478200 AND b<478300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478300 AND b<478400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478400 AND b<478500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478500 AND b<478600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478600 AND b<478700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478700 AND b<478800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478800 AND b<478900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478900 AND b<479000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479000 AND b<479100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479100 AND b<479200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479200 AND b<479300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479300 AND b<479400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479400 AND b<479500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479500 AND b<479600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479600 AND b<479700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479700 AND b<479800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479800 AND b<479900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479900 AND b<480000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480000 AND b<480100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480100 AND b<480200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480200 AND b<480300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480300 AND b<480400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480400 AND b<480500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480500 AND b<480600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480600 AND b<480700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480700 AND b<480800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480800 AND b<480900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480900 AND b<481000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481000 AND b<481100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481100 AND b<481200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481200 AND b<481300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481300 AND b<481400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481400 AND b<481500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481500 AND b<481600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481600 AND b<481700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481700 AND b<481800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481800 AND b<481900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481900 AND b<482000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482000 AND b<482100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482100 AND b<482200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482200 AND b<482300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482300 AND b<482400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482400 AND b<482500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482500 AND b<482600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482600 AND b<482700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482700 AND b<482800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482800 AND b<482900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482900 AND b<483000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483000 AND b<483100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483100 AND b<483200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483200 AND b<483300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483300 AND b<483400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483400 AND b<483500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483500 AND b<483600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483600 AND b<483700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483700 AND b<483800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483800 AND b<483900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483900 AND b<484000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484000 AND b<484100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484100 AND b<484200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484200 AND b<484300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484300 AND b<484400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484400 AND b<484500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484500 AND b<484600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484600 AND b<484700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484700 AND b<484800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484800 AND b<484900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484900 AND b<485000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485000 AND b<485100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485100 AND b<485200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485200 AND b<485300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485300 AND b<485400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485400 AND b<485500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485500 AND b<485600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485600 AND b<485700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485700 AND b<485800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485800 AND b<485900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485900 AND b<486000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486000 AND b<486100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486100 AND b<486200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486200 AND b<486300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486300 AND b<486400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486400 AND b<486500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486500 AND b<486600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486600 AND b<486700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486700 AND b<486800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486800 AND b<486900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486900 AND b<487000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487000 AND b<487100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487100 AND b<487200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487200 AND b<487300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487300 AND b<487400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487400 AND b<487500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487500 AND b<487600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487600 AND b<487700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487700 AND b<487800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487800 AND b<487900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487900 AND b<488000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488000 AND b<488100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488100 AND b<488200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488200 AND b<488300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488300 AND b<488400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488400 AND b<488500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488500 AND b<488600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488600 AND b<488700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488700 AND b<488800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488800 AND b<488900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488900 AND b<489000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489000 AND b<489100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489100 AND b<489200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489200 AND b<489300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489300 AND b<489400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489400 AND b<489500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489500 AND b<489600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489600 AND b<489700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489700 AND b<489800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489800 AND b<489900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489900 AND b<490000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490000 AND b<490100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490100 AND b<490200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490200 AND b<490300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490300 AND b<490400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490400 AND b<490500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490500 AND b<490600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490600 AND b<490700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490700 AND b<490800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490800 AND b<490900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490900 AND b<491000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491000 AND b<491100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491100 AND b<491200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491200 AND b<491300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491300 AND b<491400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491400 AND b<491500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491500 AND b<491600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491600 AND b<491700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491700 AND b<491800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491800 AND b<491900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491900 AND b<492000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492000 AND b<492100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492100 AND b<492200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492200 AND b<492300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492300 AND b<492400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492400 AND b<492500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492500 AND b<492600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492600 AND b<492700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492700 AND b<492800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492800 AND b<492900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492900 AND b<493000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493000 AND b<493100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493100 AND b<493200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493200 AND b<493300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493300 AND b<493400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493400 AND b<493500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493500 AND b<493600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493600 AND b<493700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493700 AND b<493800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493800 AND b<493900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493900 AND b<494000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494000 AND b<494100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494100 AND b<494200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494200 AND b<494300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494300 AND b<494400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494400 AND b<494500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494500 AND b<494600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494600 AND b<494700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494700 AND b<494800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494800 AND b<494900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494900 AND b<495000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495000 AND b<495100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495100 AND b<495200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495200 AND b<495300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495300 AND b<495400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495400 AND b<495500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495500 AND b<495600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495600 AND b<495700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495700 AND b<495800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495800 AND b<495900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495900 AND b<496000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496000 AND b<496100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496100 AND b<496200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496200 AND b<496300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496300 AND b<496400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496400 AND b<496500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496500 AND b<496600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496600 AND b<496700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496700 AND b<496800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496800 AND b<496900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496900 AND b<497000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497000 AND b<497100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497100 AND b<497200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497200 AND b<497300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497300 AND b<497400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497400 AND b<497500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497500 AND b<497600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497600 AND b<497700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497700 AND b<497800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497800 AND b<497900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497900 AND b<498000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498000 AND b<498100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498100 AND b<498200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498200 AND b<498300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498300 AND b<498400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498400 AND b<498500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498500 AND b<498600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498600 AND b<498700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498700 AND b<498800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498800 AND b<498900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498900 AND b<499000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499000 AND b<499100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499100 AND b<499200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499200 AND b<499300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499300 AND b<499400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499400 AND b<499500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499500 AND b<499600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499600 AND b<499700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499700 AND b<499800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499800 AND b<499900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499900 AND b<500000;\nCOMMIT;\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark8.sql",
    "content": "BEGIN;\nUPDATE t1 SET b=b*2 WHERE a>=0 AND a<10;\nUPDATE t1 SET b=b*2 WHERE a>=10 AND a<20;\nUPDATE t1 SET b=b*2 WHERE a>=20 AND a<30;\nUPDATE t1 SET b=b*2 WHERE a>=30 AND a<40;\nUPDATE t1 SET b=b*2 WHERE a>=40 AND a<50;\nUPDATE t1 SET b=b*2 WHERE a>=50 AND a<60;\nUPDATE t1 SET b=b*2 WHERE a>=60 AND a<70;\nUPDATE t1 SET b=b*2 WHERE a>=70 AND a<80;\nUPDATE t1 SET b=b*2 WHERE a>=80 AND a<90;\nUPDATE t1 SET b=b*2 WHERE a>=90 AND a<100;\nUPDATE t1 SET b=b*2 WHERE a>=100 AND a<110;\nUPDATE t1 SET b=b*2 WHERE a>=110 AND a<120;\nUPDATE t1 SET b=b*2 WHERE a>=120 AND a<130;\nUPDATE t1 SET b=b*2 WHERE a>=130 AND a<140;\nUPDATE t1 SET b=b*2 WHERE a>=140 AND a<150;\nUPDATE t1 SET b=b*2 WHERE a>=150 AND a<160;\nUPDATE t1 SET b=b*2 WHERE a>=160 AND a<170;\nUPDATE t1 SET b=b*2 WHERE a>=170 AND a<180;\nUPDATE t1 SET b=b*2 WHERE a>=180 AND a<190;\nUPDATE t1 SET b=b*2 WHERE a>=190 AND a<200;\nUPDATE t1 SET b=b*2 WHERE a>=200 AND a<210;\nUPDATE t1 SET b=b*2 WHERE a>=210 AND a<220;\nUPDATE t1 SET b=b*2 WHERE a>=220 AND a<230;\nUPDATE t1 SET b=b*2 WHERE a>=230 AND a<240;\nUPDATE t1 SET b=b*2 WHERE a>=240 AND a<250;\nUPDATE t1 SET b=b*2 WHERE a>=250 AND a<260;\nUPDATE t1 SET b=b*2 WHERE a>=260 AND a<270;\nUPDATE t1 SET b=b*2 WHERE a>=270 AND a<280;\nUPDATE t1 SET b=b*2 WHERE a>=280 AND a<290;\nUPDATE t1 SET b=b*2 WHERE a>=290 AND a<300;\nUPDATE t1 SET b=b*2 WHERE a>=300 AND a<310;\nUPDATE t1 SET b=b*2 WHERE a>=310 AND a<320;\nUPDATE t1 SET b=b*2 WHERE a>=320 AND a<330;\nUPDATE t1 SET b=b*2 WHERE a>=330 AND a<340;\nUPDATE t1 SET b=b*2 WHERE a>=340 AND a<350;\nUPDATE t1 SET b=b*2 WHERE a>=350 AND a<360;\nUPDATE t1 SET b=b*2 WHERE a>=360 AND a<370;\nUPDATE t1 SET b=b*2 WHERE a>=370 AND a<380;\nUPDATE t1 SET b=b*2 WHERE a>=380 AND a<390;\nUPDATE t1 SET b=b*2 WHERE a>=390 AND a<400;\nUPDATE t1 SET b=b*2 WHERE a>=400 AND a<410;\nUPDATE t1 SET b=b*2 WHERE a>=410 AND a<420;\nUPDATE t1 SET b=b*2 WHERE a>=420 AND a<430;\nUPDATE t1 SET b=b*2 WHERE a>=430 AND a<440;\nUPDATE t1 SET b=b*2 WHERE a>=440 AND a<450;\nUPDATE t1 SET b=b*2 WHERE a>=450 AND a<460;\nUPDATE t1 SET b=b*2 WHERE a>=460 AND a<470;\nUPDATE t1 SET b=b*2 WHERE a>=470 AND a<480;\nUPDATE t1 SET b=b*2 WHERE a>=480 AND a<490;\nUPDATE t1 SET b=b*2 WHERE a>=490 AND a<500;\nUPDATE t1 SET b=b*2 WHERE a>=500 AND a<510;\nUPDATE t1 SET b=b*2 WHERE a>=510 AND a<520;\nUPDATE t1 SET b=b*2 WHERE a>=520 AND a<530;\nUPDATE t1 SET b=b*2 WHERE a>=530 AND a<540;\nUPDATE t1 SET b=b*2 WHERE a>=540 AND a<550;\nUPDATE t1 SET b=b*2 WHERE a>=550 AND a<560;\nUPDATE t1 SET b=b*2 WHERE a>=560 AND a<570;\nUPDATE t1 SET b=b*2 WHERE a>=570 AND a<580;\nUPDATE t1 SET b=b*2 WHERE a>=580 AND a<590;\nUPDATE t1 SET b=b*2 WHERE a>=590 AND a<600;\nUPDATE t1 SET b=b*2 WHERE a>=600 AND a<610;\nUPDATE t1 SET b=b*2 WHERE a>=610 AND a<620;\nUPDATE t1 SET b=b*2 WHERE a>=620 AND a<630;\nUPDATE t1 SET b=b*2 WHERE a>=630 AND a<640;\nUPDATE t1 SET b=b*2 WHERE a>=640 AND a<650;\nUPDATE t1 SET b=b*2 WHERE a>=650 AND a<660;\nUPDATE t1 SET b=b*2 WHERE a>=660 AND a<670;\nUPDATE t1 SET b=b*2 WHERE a>=670 AND a<680;\nUPDATE t1 SET b=b*2 WHERE a>=680 AND a<690;\nUPDATE t1 SET b=b*2 WHERE a>=690 AND a<700;\nUPDATE t1 SET b=b*2 WHERE a>=700 AND a<710;\nUPDATE t1 SET b=b*2 WHERE a>=710 AND a<720;\nUPDATE t1 SET b=b*2 WHERE a>=720 AND a<730;\nUPDATE t1 SET b=b*2 WHERE a>=730 AND a<740;\nUPDATE t1 SET b=b*2 WHERE a>=740 AND a<750;\nUPDATE t1 SET b=b*2 WHERE a>=750 AND a<760;\nUPDATE t1 SET b=b*2 WHERE a>=760 AND a<770;\nUPDATE t1 SET b=b*2 WHERE a>=770 AND a<780;\nUPDATE t1 SET b=b*2 WHERE a>=780 AND a<790;\nUPDATE t1 SET b=b*2 WHERE a>=790 AND a<800;\nUPDATE t1 SET b=b*2 WHERE a>=800 AND a<810;\nUPDATE t1 SET b=b*2 WHERE a>=810 AND a<820;\nUPDATE t1 SET b=b*2 WHERE a>=820 AND a<830;\nUPDATE t1 SET b=b*2 WHERE a>=830 AND a<840;\nUPDATE t1 SET b=b*2 WHERE a>=840 AND a<850;\nUPDATE t1 SET b=b*2 WHERE a>=850 AND a<860;\nUPDATE t1 SET b=b*2 WHERE a>=860 AND a<870;\nUPDATE t1 SET b=b*2 WHERE a>=870 AND a<880;\nUPDATE t1 SET b=b*2 WHERE a>=880 AND a<890;\nUPDATE t1 SET b=b*2 WHERE a>=890 AND a<900;\nUPDATE t1 SET b=b*2 WHERE a>=900 AND a<910;\nUPDATE t1 SET b=b*2 WHERE a>=910 AND a<920;\nUPDATE t1 SET b=b*2 WHERE a>=920 AND a<930;\nUPDATE t1 SET b=b*2 WHERE a>=930 AND a<940;\nUPDATE t1 SET b=b*2 WHERE a>=940 AND a<950;\nUPDATE t1 SET b=b*2 WHERE a>=950 AND a<960;\nUPDATE t1 SET b=b*2 WHERE a>=960 AND a<970;\nUPDATE t1 SET b=b*2 WHERE a>=970 AND a<980;\nUPDATE t1 SET b=b*2 WHERE a>=980 AND a<990;\nUPDATE t1 SET b=b*2 WHERE a>=990 AND a<1000;\nUPDATE t1 SET b=b*2 WHERE a>=1000 AND a<1010;\nUPDATE t1 SET b=b*2 WHERE a>=1010 AND a<1020;\nUPDATE t1 SET b=b*2 WHERE a>=1020 AND a<1030;\nUPDATE t1 SET b=b*2 WHERE a>=1030 AND a<1040;\nUPDATE t1 SET b=b*2 WHERE a>=1040 AND a<1050;\nUPDATE t1 SET b=b*2 WHERE a>=1050 AND a<1060;\nUPDATE t1 SET b=b*2 WHERE a>=1060 AND a<1070;\nUPDATE t1 SET b=b*2 WHERE a>=1070 AND a<1080;\nUPDATE t1 SET b=b*2 WHERE a>=1080 AND a<1090;\nUPDATE t1 SET b=b*2 WHERE a>=1090 AND a<1100;\nUPDATE t1 SET b=b*2 WHERE a>=1100 AND a<1110;\nUPDATE t1 SET b=b*2 WHERE a>=1110 AND a<1120;\nUPDATE t1 SET b=b*2 WHERE a>=1120 AND a<1130;\nUPDATE t1 SET b=b*2 WHERE a>=1130 AND a<1140;\nUPDATE t1 SET b=b*2 WHERE a>=1140 AND a<1150;\nUPDATE t1 SET b=b*2 WHERE a>=1150 AND a<1160;\nUPDATE t1 SET b=b*2 WHERE a>=1160 AND a<1170;\nUPDATE t1 SET b=b*2 WHERE a>=1170 AND a<1180;\nUPDATE t1 SET b=b*2 WHERE a>=1180 AND a<1190;\nUPDATE t1 SET b=b*2 WHERE a>=1190 AND a<1200;\nUPDATE t1 SET b=b*2 WHERE a>=1200 AND a<1210;\nUPDATE t1 SET b=b*2 WHERE a>=1210 AND a<1220;\nUPDATE t1 SET b=b*2 WHERE a>=1220 AND a<1230;\nUPDATE t1 SET b=b*2 WHERE a>=1230 AND a<1240;\nUPDATE t1 SET b=b*2 WHERE a>=1240 AND a<1250;\nUPDATE t1 SET b=b*2 WHERE a>=1250 AND a<1260;\nUPDATE t1 SET b=b*2 WHERE a>=1260 AND a<1270;\nUPDATE t1 SET b=b*2 WHERE a>=1270 AND a<1280;\nUPDATE t1 SET b=b*2 WHERE a>=1280 AND a<1290;\nUPDATE t1 SET b=b*2 WHERE a>=1290 AND a<1300;\nUPDATE t1 SET b=b*2 WHERE a>=1300 AND a<1310;\nUPDATE t1 SET b=b*2 WHERE a>=1310 AND a<1320;\nUPDATE t1 SET b=b*2 WHERE a>=1320 AND a<1330;\nUPDATE t1 SET b=b*2 WHERE a>=1330 AND a<1340;\nUPDATE t1 SET b=b*2 WHERE a>=1340 AND a<1350;\nUPDATE t1 SET b=b*2 WHERE a>=1350 AND a<1360;\nUPDATE t1 SET b=b*2 WHERE a>=1360 AND a<1370;\nUPDATE t1 SET b=b*2 WHERE a>=1370 AND a<1380;\nUPDATE t1 SET b=b*2 WHERE a>=1380 AND a<1390;\nUPDATE t1 SET b=b*2 WHERE a>=1390 AND a<1400;\nUPDATE t1 SET b=b*2 WHERE a>=1400 AND a<1410;\nUPDATE t1 SET b=b*2 WHERE a>=1410 AND a<1420;\nUPDATE t1 SET b=b*2 WHERE a>=1420 AND a<1430;\nUPDATE t1 SET b=b*2 WHERE a>=1430 AND a<1440;\nUPDATE t1 SET b=b*2 WHERE a>=1440 AND a<1450;\nUPDATE t1 SET b=b*2 WHERE a>=1450 AND a<1460;\nUPDATE t1 SET b=b*2 WHERE a>=1460 AND a<1470;\nUPDATE t1 SET b=b*2 WHERE a>=1470 AND a<1480;\nUPDATE t1 SET b=b*2 WHERE a>=1480 AND a<1490;\nUPDATE t1 SET b=b*2 WHERE a>=1490 AND a<1500;\nUPDATE t1 SET b=b*2 WHERE a>=1500 AND a<1510;\nUPDATE t1 SET b=b*2 WHERE a>=1510 AND a<1520;\nUPDATE t1 SET b=b*2 WHERE a>=1520 AND a<1530;\nUPDATE t1 SET b=b*2 WHERE a>=1530 AND a<1540;\nUPDATE t1 SET b=b*2 WHERE a>=1540 AND a<1550;\nUPDATE t1 SET b=b*2 WHERE a>=1550 AND a<1560;\nUPDATE t1 SET b=b*2 WHERE a>=1560 AND a<1570;\nUPDATE t1 SET b=b*2 WHERE a>=1570 AND a<1580;\nUPDATE t1 SET b=b*2 WHERE a>=1580 AND a<1590;\nUPDATE t1 SET b=b*2 WHERE a>=1590 AND a<1600;\nUPDATE t1 SET b=b*2 WHERE a>=1600 AND a<1610;\nUPDATE t1 SET b=b*2 WHERE a>=1610 AND a<1620;\nUPDATE t1 SET b=b*2 WHERE a>=1620 AND a<1630;\nUPDATE t1 SET b=b*2 WHERE a>=1630 AND a<1640;\nUPDATE t1 SET b=b*2 WHERE a>=1640 AND a<1650;\nUPDATE t1 SET b=b*2 WHERE a>=1650 AND a<1660;\nUPDATE t1 SET b=b*2 WHERE a>=1660 AND a<1670;\nUPDATE t1 SET b=b*2 WHERE a>=1670 AND a<1680;\nUPDATE t1 SET b=b*2 WHERE a>=1680 AND a<1690;\nUPDATE t1 SET b=b*2 WHERE a>=1690 AND a<1700;\nUPDATE t1 SET b=b*2 WHERE a>=1700 AND a<1710;\nUPDATE t1 SET b=b*2 WHERE a>=1710 AND a<1720;\nUPDATE t1 SET b=b*2 WHERE a>=1720 AND a<1730;\nUPDATE t1 SET b=b*2 WHERE a>=1730 AND a<1740;\nUPDATE t1 SET b=b*2 WHERE a>=1740 AND a<1750;\nUPDATE t1 SET b=b*2 WHERE a>=1750 AND a<1760;\nUPDATE t1 SET b=b*2 WHERE a>=1760 AND a<1770;\nUPDATE t1 SET b=b*2 WHERE a>=1770 AND a<1780;\nUPDATE t1 SET b=b*2 WHERE a>=1780 AND a<1790;\nUPDATE t1 SET b=b*2 WHERE a>=1790 AND a<1800;\nUPDATE t1 SET b=b*2 WHERE a>=1800 AND a<1810;\nUPDATE t1 SET b=b*2 WHERE a>=1810 AND a<1820;\nUPDATE t1 SET b=b*2 WHERE a>=1820 AND a<1830;\nUPDATE t1 SET b=b*2 WHERE a>=1830 AND a<1840;\nUPDATE t1 SET b=b*2 WHERE a>=1840 AND a<1850;\nUPDATE t1 SET b=b*2 WHERE a>=1850 AND a<1860;\nUPDATE t1 SET b=b*2 WHERE a>=1860 AND a<1870;\nUPDATE t1 SET b=b*2 WHERE a>=1870 AND a<1880;\nUPDATE t1 SET b=b*2 WHERE a>=1880 AND a<1890;\nUPDATE t1 SET b=b*2 WHERE a>=1890 AND a<1900;\nUPDATE t1 SET b=b*2 WHERE a>=1900 AND a<1910;\nUPDATE t1 SET b=b*2 WHERE a>=1910 AND a<1920;\nUPDATE t1 SET b=b*2 WHERE a>=1920 AND a<1930;\nUPDATE t1 SET b=b*2 WHERE a>=1930 AND a<1940;\nUPDATE t1 SET b=b*2 WHERE a>=1940 AND a<1950;\nUPDATE t1 SET b=b*2 WHERE a>=1950 AND a<1960;\nUPDATE t1 SET b=b*2 WHERE a>=1960 AND a<1970;\nUPDATE t1 SET b=b*2 WHERE a>=1970 AND a<1980;\nUPDATE t1 SET b=b*2 WHERE a>=1980 AND a<1990;\nUPDATE t1 SET b=b*2 WHERE a>=1990 AND a<2000;\nUPDATE t1 SET b=b*2 WHERE a>=2000 AND a<2010;\nUPDATE t1 SET b=b*2 WHERE a>=2010 AND a<2020;\nUPDATE t1 SET b=b*2 WHERE a>=2020 AND a<2030;\nUPDATE t1 SET b=b*2 WHERE a>=2030 AND a<2040;\nUPDATE t1 SET b=b*2 WHERE a>=2040 AND a<2050;\nUPDATE t1 SET b=b*2 WHERE a>=2050 AND a<2060;\nUPDATE t1 SET b=b*2 WHERE a>=2060 AND a<2070;\nUPDATE t1 SET b=b*2 WHERE a>=2070 AND a<2080;\nUPDATE t1 SET b=b*2 WHERE a>=2080 AND a<2090;\nUPDATE t1 SET b=b*2 WHERE a>=2090 AND a<2100;\nUPDATE t1 SET b=b*2 WHERE a>=2100 AND a<2110;\nUPDATE t1 SET b=b*2 WHERE a>=2110 AND a<2120;\nUPDATE t1 SET b=b*2 WHERE a>=2120 AND a<2130;\nUPDATE t1 SET b=b*2 WHERE a>=2130 AND a<2140;\nUPDATE t1 SET b=b*2 WHERE a>=2140 AND a<2150;\nUPDATE t1 SET b=b*2 WHERE a>=2150 AND a<2160;\nUPDATE t1 SET b=b*2 WHERE a>=2160 AND a<2170;\nUPDATE t1 SET b=b*2 WHERE a>=2170 AND a<2180;\nUPDATE t1 SET b=b*2 WHERE a>=2180 AND a<2190;\nUPDATE t1 SET b=b*2 WHERE a>=2190 AND a<2200;\nUPDATE t1 SET b=b*2 WHERE a>=2200 AND a<2210;\nUPDATE t1 SET b=b*2 WHERE a>=2210 AND a<2220;\nUPDATE t1 SET b=b*2 WHERE a>=2220 AND a<2230;\nUPDATE t1 SET b=b*2 WHERE a>=2230 AND a<2240;\nUPDATE t1 SET b=b*2 WHERE a>=2240 AND a<2250;\nUPDATE t1 SET b=b*2 WHERE a>=2250 AND a<2260;\nUPDATE t1 SET b=b*2 WHERE a>=2260 AND a<2270;\nUPDATE t1 SET b=b*2 WHERE a>=2270 AND a<2280;\nUPDATE t1 SET b=b*2 WHERE a>=2280 AND a<2290;\nUPDATE t1 SET b=b*2 WHERE a>=2290 AND a<2300;\nUPDATE t1 SET b=b*2 WHERE a>=2300 AND a<2310;\nUPDATE t1 SET b=b*2 WHERE a>=2310 AND a<2320;\nUPDATE t1 SET b=b*2 WHERE a>=2320 AND a<2330;\nUPDATE t1 SET b=b*2 WHERE a>=2330 AND a<2340;\nUPDATE t1 SET b=b*2 WHERE a>=2340 AND a<2350;\nUPDATE t1 SET b=b*2 WHERE a>=2350 AND a<2360;\nUPDATE t1 SET b=b*2 WHERE a>=2360 AND a<2370;\nUPDATE t1 SET b=b*2 WHERE a>=2370 AND a<2380;\nUPDATE t1 SET b=b*2 WHERE a>=2380 AND a<2390;\nUPDATE t1 SET b=b*2 WHERE a>=2390 AND a<2400;\nUPDATE t1 SET b=b*2 WHERE a>=2400 AND a<2410;\nUPDATE t1 SET b=b*2 WHERE a>=2410 AND a<2420;\nUPDATE t1 SET b=b*2 WHERE a>=2420 AND a<2430;\nUPDATE t1 SET b=b*2 WHERE a>=2430 AND a<2440;\nUPDATE t1 SET b=b*2 WHERE a>=2440 AND a<2450;\nUPDATE t1 SET b=b*2 WHERE a>=2450 AND a<2460;\nUPDATE t1 SET b=b*2 WHERE a>=2460 AND a<2470;\nUPDATE t1 SET b=b*2 WHERE a>=2470 AND a<2480;\nUPDATE t1 SET b=b*2 WHERE a>=2480 AND a<2490;\nUPDATE t1 SET b=b*2 WHERE a>=2490 AND a<2500;\nUPDATE t1 SET b=b*2 WHERE a>=2500 AND a<2510;\nUPDATE t1 SET b=b*2 WHERE a>=2510 AND a<2520;\nUPDATE t1 SET b=b*2 WHERE a>=2520 AND a<2530;\nUPDATE t1 SET b=b*2 WHERE a>=2530 AND a<2540;\nUPDATE t1 SET b=b*2 WHERE a>=2540 AND a<2550;\nUPDATE t1 SET b=b*2 WHERE a>=2550 AND a<2560;\nUPDATE t1 SET b=b*2 WHERE a>=2560 AND a<2570;\nUPDATE t1 SET b=b*2 WHERE a>=2570 AND a<2580;\nUPDATE t1 SET b=b*2 WHERE a>=2580 AND a<2590;\nUPDATE t1 SET b=b*2 WHERE a>=2590 AND a<2600;\nUPDATE t1 SET b=b*2 WHERE a>=2600 AND a<2610;\nUPDATE t1 SET b=b*2 WHERE a>=2610 AND a<2620;\nUPDATE t1 SET b=b*2 WHERE a>=2620 AND a<2630;\nUPDATE t1 SET b=b*2 WHERE a>=2630 AND a<2640;\nUPDATE t1 SET b=b*2 WHERE a>=2640 AND a<2650;\nUPDATE t1 SET b=b*2 WHERE a>=2650 AND a<2660;\nUPDATE t1 SET b=b*2 WHERE a>=2660 AND a<2670;\nUPDATE t1 SET b=b*2 WHERE a>=2670 AND a<2680;\nUPDATE t1 SET b=b*2 WHERE a>=2680 AND a<2690;\nUPDATE t1 SET b=b*2 WHERE a>=2690 AND a<2700;\nUPDATE t1 SET b=b*2 WHERE a>=2700 AND a<2710;\nUPDATE t1 SET b=b*2 WHERE a>=2710 AND a<2720;\nUPDATE t1 SET b=b*2 WHERE a>=2720 AND a<2730;\nUPDATE t1 SET b=b*2 WHERE a>=2730 AND a<2740;\nUPDATE t1 SET b=b*2 WHERE a>=2740 AND a<2750;\nUPDATE t1 SET b=b*2 WHERE a>=2750 AND a<2760;\nUPDATE t1 SET b=b*2 WHERE a>=2760 AND a<2770;\nUPDATE t1 SET b=b*2 WHERE a>=2770 AND a<2780;\nUPDATE t1 SET b=b*2 WHERE a>=2780 AND a<2790;\nUPDATE t1 SET b=b*2 WHERE a>=2790 AND a<2800;\nUPDATE t1 SET b=b*2 WHERE a>=2800 AND a<2810;\nUPDATE t1 SET b=b*2 WHERE a>=2810 AND a<2820;\nUPDATE t1 SET b=b*2 WHERE a>=2820 AND a<2830;\nUPDATE t1 SET b=b*2 WHERE a>=2830 AND a<2840;\nUPDATE t1 SET b=b*2 WHERE a>=2840 AND a<2850;\nUPDATE t1 SET b=b*2 WHERE a>=2850 AND a<2860;\nUPDATE t1 SET b=b*2 WHERE a>=2860 AND a<2870;\nUPDATE t1 SET b=b*2 WHERE a>=2870 AND a<2880;\nUPDATE t1 SET b=b*2 WHERE a>=2880 AND a<2890;\nUPDATE t1 SET b=b*2 WHERE a>=2890 AND a<2900;\nUPDATE t1 SET b=b*2 WHERE a>=2900 AND a<2910;\nUPDATE t1 SET b=b*2 WHERE a>=2910 AND a<2920;\nUPDATE t1 SET b=b*2 WHERE a>=2920 AND a<2930;\nUPDATE t1 SET b=b*2 WHERE a>=2930 AND a<2940;\nUPDATE t1 SET b=b*2 WHERE a>=2940 AND a<2950;\nUPDATE t1 SET b=b*2 WHERE a>=2950 AND a<2960;\nUPDATE t1 SET b=b*2 WHERE a>=2960 AND a<2970;\nUPDATE t1 SET b=b*2 WHERE a>=2970 AND a<2980;\nUPDATE t1 SET b=b*2 WHERE a>=2980 AND a<2990;\nUPDATE t1 SET b=b*2 WHERE a>=2990 AND a<3000;\nUPDATE t1 SET b=b*2 WHERE a>=3000 AND a<3010;\nUPDATE t1 SET b=b*2 WHERE a>=3010 AND a<3020;\nUPDATE t1 SET b=b*2 WHERE a>=3020 AND a<3030;\nUPDATE t1 SET b=b*2 WHERE a>=3030 AND a<3040;\nUPDATE t1 SET b=b*2 WHERE a>=3040 AND a<3050;\nUPDATE t1 SET b=b*2 WHERE a>=3050 AND a<3060;\nUPDATE t1 SET b=b*2 WHERE a>=3060 AND a<3070;\nUPDATE t1 SET b=b*2 WHERE a>=3070 AND a<3080;\nUPDATE t1 SET b=b*2 WHERE a>=3080 AND a<3090;\nUPDATE t1 SET b=b*2 WHERE a>=3090 AND a<3100;\nUPDATE t1 SET b=b*2 WHERE a>=3100 AND a<3110;\nUPDATE t1 SET b=b*2 WHERE a>=3110 AND a<3120;\nUPDATE t1 SET b=b*2 WHERE a>=3120 AND a<3130;\nUPDATE t1 SET b=b*2 WHERE a>=3130 AND a<3140;\nUPDATE t1 SET b=b*2 WHERE a>=3140 AND a<3150;\nUPDATE t1 SET b=b*2 WHERE a>=3150 AND a<3160;\nUPDATE t1 SET b=b*2 WHERE a>=3160 AND a<3170;\nUPDATE t1 SET b=b*2 WHERE a>=3170 AND a<3180;\nUPDATE t1 SET b=b*2 WHERE a>=3180 AND a<3190;\nUPDATE t1 SET b=b*2 WHERE a>=3190 AND a<3200;\nUPDATE t1 SET b=b*2 WHERE a>=3200 AND a<3210;\nUPDATE t1 SET b=b*2 WHERE a>=3210 AND a<3220;\nUPDATE t1 SET b=b*2 WHERE a>=3220 AND a<3230;\nUPDATE t1 SET b=b*2 WHERE a>=3230 AND a<3240;\nUPDATE t1 SET b=b*2 WHERE a>=3240 AND a<3250;\nUPDATE t1 SET b=b*2 WHERE a>=3250 AND a<3260;\nUPDATE t1 SET b=b*2 WHERE a>=3260 AND a<3270;\nUPDATE t1 SET b=b*2 WHERE a>=3270 AND a<3280;\nUPDATE t1 SET b=b*2 WHERE a>=3280 AND a<3290;\nUPDATE t1 SET b=b*2 WHERE a>=3290 AND a<3300;\nUPDATE t1 SET b=b*2 WHERE a>=3300 AND a<3310;\nUPDATE t1 SET b=b*2 WHERE a>=3310 AND a<3320;\nUPDATE t1 SET b=b*2 WHERE a>=3320 AND a<3330;\nUPDATE t1 SET b=b*2 WHERE a>=3330 AND a<3340;\nUPDATE t1 SET b=b*2 WHERE a>=3340 AND a<3350;\nUPDATE t1 SET b=b*2 WHERE a>=3350 AND a<3360;\nUPDATE t1 SET b=b*2 WHERE a>=3360 AND a<3370;\nUPDATE t1 SET b=b*2 WHERE a>=3370 AND a<3380;\nUPDATE t1 SET b=b*2 WHERE a>=3380 AND a<3390;\nUPDATE t1 SET b=b*2 WHERE a>=3390 AND a<3400;\nUPDATE t1 SET b=b*2 WHERE a>=3400 AND a<3410;\nUPDATE t1 SET b=b*2 WHERE a>=3410 AND a<3420;\nUPDATE t1 SET b=b*2 WHERE a>=3420 AND a<3430;\nUPDATE t1 SET b=b*2 WHERE a>=3430 AND a<3440;\nUPDATE t1 SET b=b*2 WHERE a>=3440 AND a<3450;\nUPDATE t1 SET b=b*2 WHERE a>=3450 AND a<3460;\nUPDATE t1 SET b=b*2 WHERE a>=3460 AND a<3470;\nUPDATE t1 SET b=b*2 WHERE a>=3470 AND a<3480;\nUPDATE t1 SET b=b*2 WHERE a>=3480 AND a<3490;\nUPDATE t1 SET b=b*2 WHERE a>=3490 AND a<3500;\nUPDATE t1 SET b=b*2 WHERE a>=3500 AND a<3510;\nUPDATE t1 SET b=b*2 WHERE a>=3510 AND a<3520;\nUPDATE t1 SET b=b*2 WHERE a>=3520 AND a<3530;\nUPDATE t1 SET b=b*2 WHERE a>=3530 AND a<3540;\nUPDATE t1 SET b=b*2 WHERE a>=3540 AND a<3550;\nUPDATE t1 SET b=b*2 WHERE a>=3550 AND a<3560;\nUPDATE t1 SET b=b*2 WHERE a>=3560 AND a<3570;\nUPDATE t1 SET b=b*2 WHERE a>=3570 AND a<3580;\nUPDATE t1 SET b=b*2 WHERE a>=3580 AND a<3590;\nUPDATE t1 SET b=b*2 WHERE a>=3590 AND a<3600;\nUPDATE t1 SET b=b*2 WHERE a>=3600 AND a<3610;\nUPDATE t1 SET b=b*2 WHERE a>=3610 AND a<3620;\nUPDATE t1 SET b=b*2 WHERE a>=3620 AND a<3630;\nUPDATE t1 SET b=b*2 WHERE a>=3630 AND a<3640;\nUPDATE t1 SET b=b*2 WHERE a>=3640 AND a<3650;\nUPDATE t1 SET b=b*2 WHERE a>=3650 AND a<3660;\nUPDATE t1 SET b=b*2 WHERE a>=3660 AND a<3670;\nUPDATE t1 SET b=b*2 WHERE a>=3670 AND a<3680;\nUPDATE t1 SET b=b*2 WHERE a>=3680 AND a<3690;\nUPDATE t1 SET b=b*2 WHERE a>=3690 AND a<3700;\nUPDATE t1 SET b=b*2 WHERE a>=3700 AND a<3710;\nUPDATE t1 SET b=b*2 WHERE a>=3710 AND a<3720;\nUPDATE t1 SET b=b*2 WHERE a>=3720 AND a<3730;\nUPDATE t1 SET b=b*2 WHERE a>=3730 AND a<3740;\nUPDATE t1 SET b=b*2 WHERE a>=3740 AND a<3750;\nUPDATE t1 SET b=b*2 WHERE a>=3750 AND a<3760;\nUPDATE t1 SET b=b*2 WHERE a>=3760 AND a<3770;\nUPDATE t1 SET b=b*2 WHERE a>=3770 AND a<3780;\nUPDATE t1 SET b=b*2 WHERE a>=3780 AND a<3790;\nUPDATE t1 SET b=b*2 WHERE a>=3790 AND a<3800;\nUPDATE t1 SET b=b*2 WHERE a>=3800 AND a<3810;\nUPDATE t1 SET b=b*2 WHERE a>=3810 AND a<3820;\nUPDATE t1 SET b=b*2 WHERE a>=3820 AND a<3830;\nUPDATE t1 SET b=b*2 WHERE a>=3830 AND a<3840;\nUPDATE t1 SET b=b*2 WHERE a>=3840 AND a<3850;\nUPDATE t1 SET b=b*2 WHERE a>=3850 AND a<3860;\nUPDATE t1 SET b=b*2 WHERE a>=3860 AND a<3870;\nUPDATE t1 SET b=b*2 WHERE a>=3870 AND a<3880;\nUPDATE t1 SET b=b*2 WHERE a>=3880 AND a<3890;\nUPDATE t1 SET b=b*2 WHERE a>=3890 AND a<3900;\nUPDATE t1 SET b=b*2 WHERE a>=3900 AND a<3910;\nUPDATE t1 SET b=b*2 WHERE a>=3910 AND a<3920;\nUPDATE t1 SET b=b*2 WHERE a>=3920 AND a<3930;\nUPDATE t1 SET b=b*2 WHERE a>=3930 AND a<3940;\nUPDATE t1 SET b=b*2 WHERE a>=3940 AND a<3950;\nUPDATE t1 SET b=b*2 WHERE a>=3950 AND a<3960;\nUPDATE t1 SET b=b*2 WHERE a>=3960 AND a<3970;\nUPDATE t1 SET b=b*2 WHERE a>=3970 AND a<3980;\nUPDATE t1 SET b=b*2 WHERE a>=3980 AND a<3990;\nUPDATE t1 SET b=b*2 WHERE a>=3990 AND a<4000;\nUPDATE t1 SET b=b*2 WHERE a>=4000 AND a<4010;\nUPDATE t1 SET b=b*2 WHERE a>=4010 AND a<4020;\nUPDATE t1 SET b=b*2 WHERE a>=4020 AND a<4030;\nUPDATE t1 SET b=b*2 WHERE a>=4030 AND a<4040;\nUPDATE t1 SET b=b*2 WHERE a>=4040 AND a<4050;\nUPDATE t1 SET b=b*2 WHERE a>=4050 AND a<4060;\nUPDATE t1 SET b=b*2 WHERE a>=4060 AND a<4070;\nUPDATE t1 SET b=b*2 WHERE a>=4070 AND a<4080;\nUPDATE t1 SET b=b*2 WHERE a>=4080 AND a<4090;\nUPDATE t1 SET b=b*2 WHERE a>=4090 AND a<4100;\nUPDATE t1 SET b=b*2 WHERE a>=4100 AND a<4110;\nUPDATE t1 SET b=b*2 WHERE a>=4110 AND a<4120;\nUPDATE t1 SET b=b*2 WHERE a>=4120 AND a<4130;\nUPDATE t1 SET b=b*2 WHERE a>=4130 AND a<4140;\nUPDATE t1 SET b=b*2 WHERE a>=4140 AND a<4150;\nUPDATE t1 SET b=b*2 WHERE a>=4150 AND a<4160;\nUPDATE t1 SET b=b*2 WHERE a>=4160 AND a<4170;\nUPDATE t1 SET b=b*2 WHERE a>=4170 AND a<4180;\nUPDATE t1 SET b=b*2 WHERE a>=4180 AND a<4190;\nUPDATE t1 SET b=b*2 WHERE a>=4190 AND a<4200;\nUPDATE t1 SET b=b*2 WHERE a>=4200 AND a<4210;\nUPDATE t1 SET b=b*2 WHERE a>=4210 AND a<4220;\nUPDATE t1 SET b=b*2 WHERE a>=4220 AND a<4230;\nUPDATE t1 SET b=b*2 WHERE a>=4230 AND a<4240;\nUPDATE t1 SET b=b*2 WHERE a>=4240 AND a<4250;\nUPDATE t1 SET b=b*2 WHERE a>=4250 AND a<4260;\nUPDATE t1 SET b=b*2 WHERE a>=4260 AND a<4270;\nUPDATE t1 SET b=b*2 WHERE a>=4270 AND a<4280;\nUPDATE t1 SET b=b*2 WHERE a>=4280 AND a<4290;\nUPDATE t1 SET b=b*2 WHERE a>=4290 AND a<4300;\nUPDATE t1 SET b=b*2 WHERE a>=4300 AND a<4310;\nUPDATE t1 SET b=b*2 WHERE a>=4310 AND a<4320;\nUPDATE t1 SET b=b*2 WHERE a>=4320 AND a<4330;\nUPDATE t1 SET b=b*2 WHERE a>=4330 AND a<4340;\nUPDATE t1 SET b=b*2 WHERE a>=4340 AND a<4350;\nUPDATE t1 SET b=b*2 WHERE a>=4350 AND a<4360;\nUPDATE t1 SET b=b*2 WHERE a>=4360 AND a<4370;\nUPDATE t1 SET b=b*2 WHERE a>=4370 AND a<4380;\nUPDATE t1 SET b=b*2 WHERE a>=4380 AND a<4390;\nUPDATE t1 SET b=b*2 WHERE a>=4390 AND a<4400;\nUPDATE t1 SET b=b*2 WHERE a>=4400 AND a<4410;\nUPDATE t1 SET b=b*2 WHERE a>=4410 AND a<4420;\nUPDATE t1 SET b=b*2 WHERE a>=4420 AND a<4430;\nUPDATE t1 SET b=b*2 WHERE a>=4430 AND a<4440;\nUPDATE t1 SET b=b*2 WHERE a>=4440 AND a<4450;\nUPDATE t1 SET b=b*2 WHERE a>=4450 AND a<4460;\nUPDATE t1 SET b=b*2 WHERE a>=4460 AND a<4470;\nUPDATE t1 SET b=b*2 WHERE a>=4470 AND a<4480;\nUPDATE t1 SET b=b*2 WHERE a>=4480 AND a<4490;\nUPDATE t1 SET b=b*2 WHERE a>=4490 AND a<4500;\nUPDATE t1 SET b=b*2 WHERE a>=4500 AND a<4510;\nUPDATE t1 SET b=b*2 WHERE a>=4510 AND a<4520;\nUPDATE t1 SET b=b*2 WHERE a>=4520 AND a<4530;\nUPDATE t1 SET b=b*2 WHERE a>=4530 AND a<4540;\nUPDATE t1 SET b=b*2 WHERE a>=4540 AND a<4550;\nUPDATE t1 SET b=b*2 WHERE a>=4550 AND a<4560;\nUPDATE t1 SET b=b*2 WHERE a>=4560 AND a<4570;\nUPDATE t1 SET b=b*2 WHERE a>=4570 AND a<4580;\nUPDATE t1 SET b=b*2 WHERE a>=4580 AND a<4590;\nUPDATE t1 SET b=b*2 WHERE a>=4590 AND a<4600;\nUPDATE t1 SET b=b*2 WHERE a>=4600 AND a<4610;\nUPDATE t1 SET b=b*2 WHERE a>=4610 AND a<4620;\nUPDATE t1 SET b=b*2 WHERE a>=4620 AND a<4630;\nUPDATE t1 SET b=b*2 WHERE a>=4630 AND a<4640;\nUPDATE t1 SET b=b*2 WHERE a>=4640 AND a<4650;\nUPDATE t1 SET b=b*2 WHERE a>=4650 AND a<4660;\nUPDATE t1 SET b=b*2 WHERE a>=4660 AND a<4670;\nUPDATE t1 SET b=b*2 WHERE a>=4670 AND a<4680;\nUPDATE t1 SET b=b*2 WHERE a>=4680 AND a<4690;\nUPDATE t1 SET b=b*2 WHERE a>=4690 AND a<4700;\nUPDATE t1 SET b=b*2 WHERE a>=4700 AND a<4710;\nUPDATE t1 SET b=b*2 WHERE a>=4710 AND a<4720;\nUPDATE t1 SET b=b*2 WHERE a>=4720 AND a<4730;\nUPDATE t1 SET b=b*2 WHERE a>=4730 AND a<4740;\nUPDATE t1 SET b=b*2 WHERE a>=4740 AND a<4750;\nUPDATE t1 SET b=b*2 WHERE a>=4750 AND a<4760;\nUPDATE t1 SET b=b*2 WHERE a>=4760 AND a<4770;\nUPDATE t1 SET b=b*2 WHERE a>=4770 AND a<4780;\nUPDATE t1 SET b=b*2 WHERE a>=4780 AND a<4790;\nUPDATE t1 SET b=b*2 WHERE a>=4790 AND a<4800;\nUPDATE t1 SET b=b*2 WHERE a>=4800 AND a<4810;\nUPDATE t1 SET b=b*2 WHERE a>=4810 AND a<4820;\nUPDATE t1 SET b=b*2 WHERE a>=4820 AND a<4830;\nUPDATE t1 SET b=b*2 WHERE a>=4830 AND a<4840;\nUPDATE t1 SET b=b*2 WHERE a>=4840 AND a<4850;\nUPDATE t1 SET b=b*2 WHERE a>=4850 AND a<4860;\nUPDATE t1 SET b=b*2 WHERE a>=4860 AND a<4870;\nUPDATE t1 SET b=b*2 WHERE a>=4870 AND a<4880;\nUPDATE t1 SET b=b*2 WHERE a>=4880 AND a<4890;\nUPDATE t1 SET b=b*2 WHERE a>=4890 AND a<4900;\nUPDATE t1 SET b=b*2 WHERE a>=4900 AND a<4910;\nUPDATE t1 SET b=b*2 WHERE a>=4910 AND a<4920;\nUPDATE t1 SET b=b*2 WHERE a>=4920 AND a<4930;\nUPDATE t1 SET b=b*2 WHERE a>=4930 AND a<4940;\nUPDATE t1 SET b=b*2 WHERE a>=4940 AND a<4950;\nUPDATE t1 SET b=b*2 WHERE a>=4950 AND a<4960;\nUPDATE t1 SET b=b*2 WHERE a>=4960 AND a<4970;\nUPDATE t1 SET b=b*2 WHERE a>=4970 AND a<4980;\nUPDATE t1 SET b=b*2 WHERE a>=4980 AND a<4990;\nUPDATE t1 SET b=b*2 WHERE a>=4990 AND a<5000;\nUPDATE t1 SET b=b*2 WHERE a>=5000 AND a<5010;\nUPDATE t1 SET b=b*2 WHERE a>=5010 AND a<5020;\nUPDATE t1 SET b=b*2 WHERE a>=5020 AND a<5030;\nUPDATE t1 SET b=b*2 WHERE a>=5030 AND a<5040;\nUPDATE t1 SET b=b*2 WHERE a>=5040 AND a<5050;\nUPDATE t1 SET b=b*2 WHERE a>=5050 AND a<5060;\nUPDATE t1 SET b=b*2 WHERE a>=5060 AND a<5070;\nUPDATE t1 SET b=b*2 WHERE a>=5070 AND a<5080;\nUPDATE t1 SET b=b*2 WHERE a>=5080 AND a<5090;\nUPDATE t1 SET b=b*2 WHERE a>=5090 AND a<5100;\nUPDATE t1 SET b=b*2 WHERE a>=5100 AND a<5110;\nUPDATE t1 SET b=b*2 WHERE a>=5110 AND a<5120;\nUPDATE t1 SET b=b*2 WHERE a>=5120 AND a<5130;\nUPDATE t1 SET b=b*2 WHERE a>=5130 AND a<5140;\nUPDATE t1 SET b=b*2 WHERE a>=5140 AND a<5150;\nUPDATE t1 SET b=b*2 WHERE a>=5150 AND a<5160;\nUPDATE t1 SET b=b*2 WHERE a>=5160 AND a<5170;\nUPDATE t1 SET b=b*2 WHERE a>=5170 AND a<5180;\nUPDATE t1 SET b=b*2 WHERE a>=5180 AND a<5190;\nUPDATE t1 SET b=b*2 WHERE a>=5190 AND a<5200;\nUPDATE t1 SET b=b*2 WHERE a>=5200 AND a<5210;\nUPDATE t1 SET b=b*2 WHERE a>=5210 AND a<5220;\nUPDATE t1 SET b=b*2 WHERE a>=5220 AND a<5230;\nUPDATE t1 SET b=b*2 WHERE a>=5230 AND a<5240;\nUPDATE t1 SET b=b*2 WHERE a>=5240 AND a<5250;\nUPDATE t1 SET b=b*2 WHERE a>=5250 AND a<5260;\nUPDATE t1 SET b=b*2 WHERE a>=5260 AND a<5270;\nUPDATE t1 SET b=b*2 WHERE a>=5270 AND a<5280;\nUPDATE t1 SET b=b*2 WHERE a>=5280 AND a<5290;\nUPDATE t1 SET b=b*2 WHERE a>=5290 AND a<5300;\nUPDATE t1 SET b=b*2 WHERE a>=5300 AND a<5310;\nUPDATE t1 SET b=b*2 WHERE a>=5310 AND a<5320;\nUPDATE t1 SET b=b*2 WHERE a>=5320 AND a<5330;\nUPDATE t1 SET b=b*2 WHERE a>=5330 AND a<5340;\nUPDATE t1 SET b=b*2 WHERE a>=5340 AND a<5350;\nUPDATE t1 SET b=b*2 WHERE a>=5350 AND a<5360;\nUPDATE t1 SET b=b*2 WHERE a>=5360 AND a<5370;\nUPDATE t1 SET b=b*2 WHERE a>=5370 AND a<5380;\nUPDATE t1 SET b=b*2 WHERE a>=5380 AND a<5390;\nUPDATE t1 SET b=b*2 WHERE a>=5390 AND a<5400;\nUPDATE t1 SET b=b*2 WHERE a>=5400 AND a<5410;\nUPDATE t1 SET b=b*2 WHERE a>=5410 AND a<5420;\nUPDATE t1 SET b=b*2 WHERE a>=5420 AND a<5430;\nUPDATE t1 SET b=b*2 WHERE a>=5430 AND a<5440;\nUPDATE t1 SET b=b*2 WHERE a>=5440 AND a<5450;\nUPDATE t1 SET b=b*2 WHERE a>=5450 AND a<5460;\nUPDATE t1 SET b=b*2 WHERE a>=5460 AND a<5470;\nUPDATE t1 SET b=b*2 WHERE a>=5470 AND a<5480;\nUPDATE t1 SET b=b*2 WHERE a>=5480 AND a<5490;\nUPDATE t1 SET b=b*2 WHERE a>=5490 AND a<5500;\nUPDATE t1 SET b=b*2 WHERE a>=5500 AND a<5510;\nUPDATE t1 SET b=b*2 WHERE a>=5510 AND a<5520;\nUPDATE t1 SET b=b*2 WHERE a>=5520 AND a<5530;\nUPDATE t1 SET b=b*2 WHERE a>=5530 AND a<5540;\nUPDATE t1 SET b=b*2 WHERE a>=5540 AND a<5550;\nUPDATE t1 SET b=b*2 WHERE a>=5550 AND a<5560;\nUPDATE t1 SET b=b*2 WHERE a>=5560 AND a<5570;\nUPDATE t1 SET b=b*2 WHERE a>=5570 AND a<5580;\nUPDATE t1 SET b=b*2 WHERE a>=5580 AND a<5590;\nUPDATE t1 SET b=b*2 WHERE a>=5590 AND a<5600;\nUPDATE t1 SET b=b*2 WHERE a>=5600 AND a<5610;\nUPDATE t1 SET b=b*2 WHERE a>=5610 AND a<5620;\nUPDATE t1 SET b=b*2 WHERE a>=5620 AND a<5630;\nUPDATE t1 SET b=b*2 WHERE a>=5630 AND a<5640;\nUPDATE t1 SET b=b*2 WHERE a>=5640 AND a<5650;\nUPDATE t1 SET b=b*2 WHERE a>=5650 AND a<5660;\nUPDATE t1 SET b=b*2 WHERE a>=5660 AND a<5670;\nUPDATE t1 SET b=b*2 WHERE a>=5670 AND a<5680;\nUPDATE t1 SET b=b*2 WHERE a>=5680 AND a<5690;\nUPDATE t1 SET b=b*2 WHERE a>=5690 AND a<5700;\nUPDATE t1 SET b=b*2 WHERE a>=5700 AND a<5710;\nUPDATE t1 SET b=b*2 WHERE a>=5710 AND a<5720;\nUPDATE t1 SET b=b*2 WHERE a>=5720 AND a<5730;\nUPDATE t1 SET b=b*2 WHERE a>=5730 AND a<5740;\nUPDATE t1 SET b=b*2 WHERE a>=5740 AND a<5750;\nUPDATE t1 SET b=b*2 WHERE a>=5750 AND a<5760;\nUPDATE t1 SET b=b*2 WHERE a>=5760 AND a<5770;\nUPDATE t1 SET b=b*2 WHERE a>=5770 AND a<5780;\nUPDATE t1 SET b=b*2 WHERE a>=5780 AND a<5790;\nUPDATE t1 SET b=b*2 WHERE a>=5790 AND a<5800;\nUPDATE t1 SET b=b*2 WHERE a>=5800 AND a<5810;\nUPDATE t1 SET b=b*2 WHERE a>=5810 AND a<5820;\nUPDATE t1 SET b=b*2 WHERE a>=5820 AND a<5830;\nUPDATE t1 SET b=b*2 WHERE a>=5830 AND a<5840;\nUPDATE t1 SET b=b*2 WHERE a>=5840 AND a<5850;\nUPDATE t1 SET b=b*2 WHERE a>=5850 AND a<5860;\nUPDATE t1 SET b=b*2 WHERE a>=5860 AND a<5870;\nUPDATE t1 SET b=b*2 WHERE a>=5870 AND a<5880;\nUPDATE t1 SET b=b*2 WHERE a>=5880 AND a<5890;\nUPDATE t1 SET b=b*2 WHERE a>=5890 AND a<5900;\nUPDATE t1 SET b=b*2 WHERE a>=5900 AND a<5910;\nUPDATE t1 SET b=b*2 WHERE a>=5910 AND a<5920;\nUPDATE t1 SET b=b*2 WHERE a>=5920 AND a<5930;\nUPDATE t1 SET b=b*2 WHERE a>=5930 AND a<5940;\nUPDATE t1 SET b=b*2 WHERE a>=5940 AND a<5950;\nUPDATE t1 SET b=b*2 WHERE a>=5950 AND a<5960;\nUPDATE t1 SET b=b*2 WHERE a>=5960 AND a<5970;\nUPDATE t1 SET b=b*2 WHERE a>=5970 AND a<5980;\nUPDATE t1 SET b=b*2 WHERE a>=5980 AND a<5990;\nUPDATE t1 SET b=b*2 WHERE a>=5990 AND a<6000;\nUPDATE t1 SET b=b*2 WHERE a>=6000 AND a<6010;\nUPDATE t1 SET b=b*2 WHERE a>=6010 AND a<6020;\nUPDATE t1 SET b=b*2 WHERE a>=6020 AND a<6030;\nUPDATE t1 SET b=b*2 WHERE a>=6030 AND a<6040;\nUPDATE t1 SET b=b*2 WHERE a>=6040 AND a<6050;\nUPDATE t1 SET b=b*2 WHERE a>=6050 AND a<6060;\nUPDATE t1 SET b=b*2 WHERE a>=6060 AND a<6070;\nUPDATE t1 SET b=b*2 WHERE a>=6070 AND a<6080;\nUPDATE t1 SET b=b*2 WHERE a>=6080 AND a<6090;\nUPDATE t1 SET b=b*2 WHERE a>=6090 AND a<6100;\nUPDATE t1 SET b=b*2 WHERE a>=6100 AND a<6110;\nUPDATE t1 SET b=b*2 WHERE a>=6110 AND a<6120;\nUPDATE t1 SET b=b*2 WHERE a>=6120 AND a<6130;\nUPDATE t1 SET b=b*2 WHERE a>=6130 AND a<6140;\nUPDATE t1 SET b=b*2 WHERE a>=6140 AND a<6150;\nUPDATE t1 SET b=b*2 WHERE a>=6150 AND a<6160;\nUPDATE t1 SET b=b*2 WHERE a>=6160 AND a<6170;\nUPDATE t1 SET b=b*2 WHERE a>=6170 AND a<6180;\nUPDATE t1 SET b=b*2 WHERE a>=6180 AND a<6190;\nUPDATE t1 SET b=b*2 WHERE a>=6190 AND a<6200;\nUPDATE t1 SET b=b*2 WHERE a>=6200 AND a<6210;\nUPDATE t1 SET b=b*2 WHERE a>=6210 AND a<6220;\nUPDATE t1 SET b=b*2 WHERE a>=6220 AND a<6230;\nUPDATE t1 SET b=b*2 WHERE a>=6230 AND a<6240;\nUPDATE t1 SET b=b*2 WHERE a>=6240 AND a<6250;\nUPDATE t1 SET b=b*2 WHERE a>=6250 AND a<6260;\nUPDATE t1 SET b=b*2 WHERE a>=6260 AND a<6270;\nUPDATE t1 SET b=b*2 WHERE a>=6270 AND a<6280;\nUPDATE t1 SET b=b*2 WHERE a>=6280 AND a<6290;\nUPDATE t1 SET b=b*2 WHERE a>=6290 AND a<6300;\nUPDATE t1 SET b=b*2 WHERE a>=6300 AND a<6310;\nUPDATE t1 SET b=b*2 WHERE a>=6310 AND a<6320;\nUPDATE t1 SET b=b*2 WHERE a>=6320 AND a<6330;\nUPDATE t1 SET b=b*2 WHERE a>=6330 AND a<6340;\nUPDATE t1 SET b=b*2 WHERE a>=6340 AND a<6350;\nUPDATE t1 SET b=b*2 WHERE a>=6350 AND a<6360;\nUPDATE t1 SET b=b*2 WHERE a>=6360 AND a<6370;\nUPDATE t1 SET b=b*2 WHERE a>=6370 AND a<6380;\nUPDATE t1 SET b=b*2 WHERE a>=6380 AND a<6390;\nUPDATE t1 SET b=b*2 WHERE a>=6390 AND a<6400;\nUPDATE t1 SET b=b*2 WHERE a>=6400 AND a<6410;\nUPDATE t1 SET b=b*2 WHERE a>=6410 AND a<6420;\nUPDATE t1 SET b=b*2 WHERE a>=6420 AND a<6430;\nUPDATE t1 SET b=b*2 WHERE a>=6430 AND a<6440;\nUPDATE t1 SET b=b*2 WHERE a>=6440 AND a<6450;\nUPDATE t1 SET b=b*2 WHERE a>=6450 AND a<6460;\nUPDATE t1 SET b=b*2 WHERE a>=6460 AND a<6470;\nUPDATE t1 SET b=b*2 WHERE a>=6470 AND a<6480;\nUPDATE t1 SET b=b*2 WHERE a>=6480 AND a<6490;\nUPDATE t1 SET b=b*2 WHERE a>=6490 AND a<6500;\nUPDATE t1 SET b=b*2 WHERE a>=6500 AND a<6510;\nUPDATE t1 SET b=b*2 WHERE a>=6510 AND a<6520;\nUPDATE t1 SET b=b*2 WHERE a>=6520 AND a<6530;\nUPDATE t1 SET b=b*2 WHERE a>=6530 AND a<6540;\nUPDATE t1 SET b=b*2 WHERE a>=6540 AND a<6550;\nUPDATE t1 SET b=b*2 WHERE a>=6550 AND a<6560;\nUPDATE t1 SET b=b*2 WHERE a>=6560 AND a<6570;\nUPDATE t1 SET b=b*2 WHERE a>=6570 AND a<6580;\nUPDATE t1 SET b=b*2 WHERE a>=6580 AND a<6590;\nUPDATE t1 SET b=b*2 WHERE a>=6590 AND a<6600;\nUPDATE t1 SET b=b*2 WHERE a>=6600 AND a<6610;\nUPDATE t1 SET b=b*2 WHERE a>=6610 AND a<6620;\nUPDATE t1 SET b=b*2 WHERE a>=6620 AND a<6630;\nUPDATE t1 SET b=b*2 WHERE a>=6630 AND a<6640;\nUPDATE t1 SET b=b*2 WHERE a>=6640 AND a<6650;\nUPDATE t1 SET b=b*2 WHERE a>=6650 AND a<6660;\nUPDATE t1 SET b=b*2 WHERE a>=6660 AND a<6670;\nUPDATE t1 SET b=b*2 WHERE a>=6670 AND a<6680;\nUPDATE t1 SET b=b*2 WHERE a>=6680 AND a<6690;\nUPDATE t1 SET b=b*2 WHERE a>=6690 AND a<6700;\nUPDATE t1 SET b=b*2 WHERE a>=6700 AND a<6710;\nUPDATE t1 SET b=b*2 WHERE a>=6710 AND a<6720;\nUPDATE t1 SET b=b*2 WHERE a>=6720 AND a<6730;\nUPDATE t1 SET b=b*2 WHERE a>=6730 AND a<6740;\nUPDATE t1 SET b=b*2 WHERE a>=6740 AND a<6750;\nUPDATE t1 SET b=b*2 WHERE a>=6750 AND a<6760;\nUPDATE t1 SET b=b*2 WHERE a>=6760 AND a<6770;\nUPDATE t1 SET b=b*2 WHERE a>=6770 AND a<6780;\nUPDATE t1 SET b=b*2 WHERE a>=6780 AND a<6790;\nUPDATE t1 SET b=b*2 WHERE a>=6790 AND a<6800;\nUPDATE t1 SET b=b*2 WHERE a>=6800 AND a<6810;\nUPDATE t1 SET b=b*2 WHERE a>=6810 AND a<6820;\nUPDATE t1 SET b=b*2 WHERE a>=6820 AND a<6830;\nUPDATE t1 SET b=b*2 WHERE a>=6830 AND a<6840;\nUPDATE t1 SET b=b*2 WHERE a>=6840 AND a<6850;\nUPDATE t1 SET b=b*2 WHERE a>=6850 AND a<6860;\nUPDATE t1 SET b=b*2 WHERE a>=6860 AND a<6870;\nUPDATE t1 SET b=b*2 WHERE a>=6870 AND a<6880;\nUPDATE t1 SET b=b*2 WHERE a>=6880 AND a<6890;\nUPDATE t1 SET b=b*2 WHERE a>=6890 AND a<6900;\nUPDATE t1 SET b=b*2 WHERE a>=6900 AND a<6910;\nUPDATE t1 SET b=b*2 WHERE a>=6910 AND a<6920;\nUPDATE t1 SET b=b*2 WHERE a>=6920 AND a<6930;\nUPDATE t1 SET b=b*2 WHERE a>=6930 AND a<6940;\nUPDATE t1 SET b=b*2 WHERE a>=6940 AND a<6950;\nUPDATE t1 SET b=b*2 WHERE a>=6950 AND a<6960;\nUPDATE t1 SET b=b*2 WHERE a>=6960 AND a<6970;\nUPDATE t1 SET b=b*2 WHERE a>=6970 AND a<6980;\nUPDATE t1 SET b=b*2 WHERE a>=6980 AND a<6990;\nUPDATE t1 SET b=b*2 WHERE a>=6990 AND a<7000;\nUPDATE t1 SET b=b*2 WHERE a>=7000 AND a<7010;\nUPDATE t1 SET b=b*2 WHERE a>=7010 AND a<7020;\nUPDATE t1 SET b=b*2 WHERE a>=7020 AND a<7030;\nUPDATE t1 SET b=b*2 WHERE a>=7030 AND a<7040;\nUPDATE t1 SET b=b*2 WHERE a>=7040 AND a<7050;\nUPDATE t1 SET b=b*2 WHERE a>=7050 AND a<7060;\nUPDATE t1 SET b=b*2 WHERE a>=7060 AND a<7070;\nUPDATE t1 SET b=b*2 WHERE a>=7070 AND a<7080;\nUPDATE t1 SET b=b*2 WHERE a>=7080 AND a<7090;\nUPDATE t1 SET b=b*2 WHERE a>=7090 AND a<7100;\nUPDATE t1 SET b=b*2 WHERE a>=7100 AND a<7110;\nUPDATE t1 SET b=b*2 WHERE a>=7110 AND a<7120;\nUPDATE t1 SET b=b*2 WHERE a>=7120 AND a<7130;\nUPDATE t1 SET b=b*2 WHERE a>=7130 AND a<7140;\nUPDATE t1 SET b=b*2 WHERE a>=7140 AND a<7150;\nUPDATE t1 SET b=b*2 WHERE a>=7150 AND a<7160;\nUPDATE t1 SET b=b*2 WHERE a>=7160 AND a<7170;\nUPDATE t1 SET b=b*2 WHERE a>=7170 AND a<7180;\nUPDATE t1 SET b=b*2 WHERE a>=7180 AND a<7190;\nUPDATE t1 SET b=b*2 WHERE a>=7190 AND a<7200;\nUPDATE t1 SET b=b*2 WHERE a>=7200 AND a<7210;\nUPDATE t1 SET b=b*2 WHERE a>=7210 AND a<7220;\nUPDATE t1 SET b=b*2 WHERE a>=7220 AND a<7230;\nUPDATE t1 SET b=b*2 WHERE a>=7230 AND a<7240;\nUPDATE t1 SET b=b*2 WHERE a>=7240 AND a<7250;\nUPDATE t1 SET b=b*2 WHERE a>=7250 AND a<7260;\nUPDATE t1 SET b=b*2 WHERE a>=7260 AND a<7270;\nUPDATE t1 SET b=b*2 WHERE a>=7270 AND a<7280;\nUPDATE t1 SET b=b*2 WHERE a>=7280 AND a<7290;\nUPDATE t1 SET b=b*2 WHERE a>=7290 AND a<7300;\nUPDATE t1 SET b=b*2 WHERE a>=7300 AND a<7310;\nUPDATE t1 SET b=b*2 WHERE a>=7310 AND a<7320;\nUPDATE t1 SET b=b*2 WHERE a>=7320 AND a<7330;\nUPDATE t1 SET b=b*2 WHERE a>=7330 AND a<7340;\nUPDATE t1 SET b=b*2 WHERE a>=7340 AND a<7350;\nUPDATE t1 SET b=b*2 WHERE a>=7350 AND a<7360;\nUPDATE t1 SET b=b*2 WHERE a>=7360 AND a<7370;\nUPDATE t1 SET b=b*2 WHERE a>=7370 AND a<7380;\nUPDATE t1 SET b=b*2 WHERE a>=7380 AND a<7390;\nUPDATE t1 SET b=b*2 WHERE a>=7390 AND a<7400;\nUPDATE t1 SET b=b*2 WHERE a>=7400 AND a<7410;\nUPDATE t1 SET b=b*2 WHERE a>=7410 AND a<7420;\nUPDATE t1 SET b=b*2 WHERE a>=7420 AND a<7430;\nUPDATE t1 SET b=b*2 WHERE a>=7430 AND a<7440;\nUPDATE t1 SET b=b*2 WHERE a>=7440 AND a<7450;\nUPDATE t1 SET b=b*2 WHERE a>=7450 AND a<7460;\nUPDATE t1 SET b=b*2 WHERE a>=7460 AND a<7470;\nUPDATE t1 SET b=b*2 WHERE a>=7470 AND a<7480;\nUPDATE t1 SET b=b*2 WHERE a>=7480 AND a<7490;\nUPDATE t1 SET b=b*2 WHERE a>=7490 AND a<7500;\nUPDATE t1 SET b=b*2 WHERE a>=7500 AND a<7510;\nUPDATE t1 SET b=b*2 WHERE a>=7510 AND a<7520;\nUPDATE t1 SET b=b*2 WHERE a>=7520 AND a<7530;\nUPDATE t1 SET b=b*2 WHERE a>=7530 AND a<7540;\nUPDATE t1 SET b=b*2 WHERE a>=7540 AND a<7550;\nUPDATE t1 SET b=b*2 WHERE a>=7550 AND a<7560;\nUPDATE t1 SET b=b*2 WHERE a>=7560 AND a<7570;\nUPDATE t1 SET b=b*2 WHERE a>=7570 AND a<7580;\nUPDATE t1 SET b=b*2 WHERE a>=7580 AND a<7590;\nUPDATE t1 SET b=b*2 WHERE a>=7590 AND a<7600;\nUPDATE t1 SET b=b*2 WHERE a>=7600 AND a<7610;\nUPDATE t1 SET b=b*2 WHERE a>=7610 AND a<7620;\nUPDATE t1 SET b=b*2 WHERE a>=7620 AND a<7630;\nUPDATE t1 SET b=b*2 WHERE a>=7630 AND a<7640;\nUPDATE t1 SET b=b*2 WHERE a>=7640 AND a<7650;\nUPDATE t1 SET b=b*2 WHERE a>=7650 AND a<7660;\nUPDATE t1 SET b=b*2 WHERE a>=7660 AND a<7670;\nUPDATE t1 SET b=b*2 WHERE a>=7670 AND a<7680;\nUPDATE t1 SET b=b*2 WHERE a>=7680 AND a<7690;\nUPDATE t1 SET b=b*2 WHERE a>=7690 AND a<7700;\nUPDATE t1 SET b=b*2 WHERE a>=7700 AND a<7710;\nUPDATE t1 SET b=b*2 WHERE a>=7710 AND a<7720;\nUPDATE t1 SET b=b*2 WHERE a>=7720 AND a<7730;\nUPDATE t1 SET b=b*2 WHERE a>=7730 AND a<7740;\nUPDATE t1 SET b=b*2 WHERE a>=7740 AND a<7750;\nUPDATE t1 SET b=b*2 WHERE a>=7750 AND a<7760;\nUPDATE t1 SET b=b*2 WHERE a>=7760 AND a<7770;\nUPDATE t1 SET b=b*2 WHERE a>=7770 AND a<7780;\nUPDATE t1 SET b=b*2 WHERE a>=7780 AND a<7790;\nUPDATE t1 SET b=b*2 WHERE a>=7790 AND a<7800;\nUPDATE t1 SET b=b*2 WHERE a>=7800 AND a<7810;\nUPDATE t1 SET b=b*2 WHERE a>=7810 AND a<7820;\nUPDATE t1 SET b=b*2 WHERE a>=7820 AND a<7830;\nUPDATE t1 SET b=b*2 WHERE a>=7830 AND a<7840;\nUPDATE t1 SET b=b*2 WHERE a>=7840 AND a<7850;\nUPDATE t1 SET b=b*2 WHERE a>=7850 AND a<7860;\nUPDATE t1 SET b=b*2 WHERE a>=7860 AND a<7870;\nUPDATE t1 SET b=b*2 WHERE a>=7870 AND a<7880;\nUPDATE t1 SET b=b*2 WHERE a>=7880 AND a<7890;\nUPDATE t1 SET b=b*2 WHERE a>=7890 AND a<7900;\nUPDATE t1 SET b=b*2 WHERE a>=7900 AND a<7910;\nUPDATE t1 SET b=b*2 WHERE a>=7910 AND a<7920;\nUPDATE t1 SET b=b*2 WHERE a>=7920 AND a<7930;\nUPDATE t1 SET b=b*2 WHERE a>=7930 AND a<7940;\nUPDATE t1 SET b=b*2 WHERE a>=7940 AND a<7950;\nUPDATE t1 SET b=b*2 WHERE a>=7950 AND a<7960;\nUPDATE t1 SET b=b*2 WHERE a>=7960 AND a<7970;\nUPDATE t1 SET b=b*2 WHERE a>=7970 AND a<7980;\nUPDATE t1 SET b=b*2 WHERE a>=7980 AND a<7990;\nUPDATE t1 SET b=b*2 WHERE a>=7990 AND a<8000;\nUPDATE t1 SET b=b*2 WHERE a>=8000 AND a<8010;\nUPDATE t1 SET b=b*2 WHERE a>=8010 AND a<8020;\nUPDATE t1 SET b=b*2 WHERE a>=8020 AND a<8030;\nUPDATE t1 SET b=b*2 WHERE a>=8030 AND a<8040;\nUPDATE t1 SET b=b*2 WHERE a>=8040 AND a<8050;\nUPDATE t1 SET b=b*2 WHERE a>=8050 AND a<8060;\nUPDATE t1 SET b=b*2 WHERE a>=8060 AND a<8070;\nUPDATE t1 SET b=b*2 WHERE a>=8070 AND a<8080;\nUPDATE t1 SET b=b*2 WHERE a>=8080 AND a<8090;\nUPDATE t1 SET b=b*2 WHERE a>=8090 AND a<8100;\nUPDATE t1 SET b=b*2 WHERE a>=8100 AND a<8110;\nUPDATE t1 SET b=b*2 WHERE a>=8110 AND a<8120;\nUPDATE t1 SET b=b*2 WHERE a>=8120 AND a<8130;\nUPDATE t1 SET b=b*2 WHERE a>=8130 AND a<8140;\nUPDATE t1 SET b=b*2 WHERE a>=8140 AND a<8150;\nUPDATE t1 SET b=b*2 WHERE a>=8150 AND a<8160;\nUPDATE t1 SET b=b*2 WHERE a>=8160 AND a<8170;\nUPDATE t1 SET b=b*2 WHERE a>=8170 AND a<8180;\nUPDATE t1 SET b=b*2 WHERE a>=8180 AND a<8190;\nUPDATE t1 SET b=b*2 WHERE a>=8190 AND a<8200;\nUPDATE t1 SET b=b*2 WHERE a>=8200 AND a<8210;\nUPDATE t1 SET b=b*2 WHERE a>=8210 AND a<8220;\nUPDATE t1 SET b=b*2 WHERE a>=8220 AND a<8230;\nUPDATE t1 SET b=b*2 WHERE a>=8230 AND a<8240;\nUPDATE t1 SET b=b*2 WHERE a>=8240 AND a<8250;\nUPDATE t1 SET b=b*2 WHERE a>=8250 AND a<8260;\nUPDATE t1 SET b=b*2 WHERE a>=8260 AND a<8270;\nUPDATE t1 SET b=b*2 WHERE a>=8270 AND a<8280;\nUPDATE t1 SET b=b*2 WHERE a>=8280 AND a<8290;\nUPDATE t1 SET b=b*2 WHERE a>=8290 AND a<8300;\nUPDATE t1 SET b=b*2 WHERE a>=8300 AND a<8310;\nUPDATE t1 SET b=b*2 WHERE a>=8310 AND a<8320;\nUPDATE t1 SET b=b*2 WHERE a>=8320 AND a<8330;\nUPDATE t1 SET b=b*2 WHERE a>=8330 AND a<8340;\nUPDATE t1 SET b=b*2 WHERE a>=8340 AND a<8350;\nUPDATE t1 SET b=b*2 WHERE a>=8350 AND a<8360;\nUPDATE t1 SET b=b*2 WHERE a>=8360 AND a<8370;\nUPDATE t1 SET b=b*2 WHERE a>=8370 AND a<8380;\nUPDATE t1 SET b=b*2 WHERE a>=8380 AND a<8390;\nUPDATE t1 SET b=b*2 WHERE a>=8390 AND a<8400;\nUPDATE t1 SET b=b*2 WHERE a>=8400 AND a<8410;\nUPDATE t1 SET b=b*2 WHERE a>=8410 AND a<8420;\nUPDATE t1 SET b=b*2 WHERE a>=8420 AND a<8430;\nUPDATE t1 SET b=b*2 WHERE a>=8430 AND a<8440;\nUPDATE t1 SET b=b*2 WHERE a>=8440 AND a<8450;\nUPDATE t1 SET b=b*2 WHERE a>=8450 AND a<8460;\nUPDATE t1 SET b=b*2 WHERE a>=8460 AND a<8470;\nUPDATE t1 SET b=b*2 WHERE a>=8470 AND a<8480;\nUPDATE t1 SET b=b*2 WHERE a>=8480 AND a<8490;\nUPDATE t1 SET b=b*2 WHERE a>=8490 AND a<8500;\nUPDATE t1 SET b=b*2 WHERE a>=8500 AND a<8510;\nUPDATE t1 SET b=b*2 WHERE a>=8510 AND a<8520;\nUPDATE t1 SET b=b*2 WHERE a>=8520 AND a<8530;\nUPDATE t1 SET b=b*2 WHERE a>=8530 AND a<8540;\nUPDATE t1 SET b=b*2 WHERE a>=8540 AND a<8550;\nUPDATE t1 SET b=b*2 WHERE a>=8550 AND a<8560;\nUPDATE t1 SET b=b*2 WHERE a>=8560 AND a<8570;\nUPDATE t1 SET b=b*2 WHERE a>=8570 AND a<8580;\nUPDATE t1 SET b=b*2 WHERE a>=8580 AND a<8590;\nUPDATE t1 SET b=b*2 WHERE a>=8590 AND a<8600;\nUPDATE t1 SET b=b*2 WHERE a>=8600 AND a<8610;\nUPDATE t1 SET b=b*2 WHERE a>=8610 AND a<8620;\nUPDATE t1 SET b=b*2 WHERE a>=8620 AND a<8630;\nUPDATE t1 SET b=b*2 WHERE a>=8630 AND a<8640;\nUPDATE t1 SET b=b*2 WHERE a>=8640 AND a<8650;\nUPDATE t1 SET b=b*2 WHERE a>=8650 AND a<8660;\nUPDATE t1 SET b=b*2 WHERE a>=8660 AND a<8670;\nUPDATE t1 SET b=b*2 WHERE a>=8670 AND a<8680;\nUPDATE t1 SET b=b*2 WHERE a>=8680 AND a<8690;\nUPDATE t1 SET b=b*2 WHERE a>=8690 AND a<8700;\nUPDATE t1 SET b=b*2 WHERE a>=8700 AND a<8710;\nUPDATE t1 SET b=b*2 WHERE a>=8710 AND a<8720;\nUPDATE t1 SET b=b*2 WHERE a>=8720 AND a<8730;\nUPDATE t1 SET b=b*2 WHERE a>=8730 AND a<8740;\nUPDATE t1 SET b=b*2 WHERE a>=8740 AND a<8750;\nUPDATE t1 SET b=b*2 WHERE a>=8750 AND a<8760;\nUPDATE t1 SET b=b*2 WHERE a>=8760 AND a<8770;\nUPDATE t1 SET b=b*2 WHERE a>=8770 AND a<8780;\nUPDATE t1 SET b=b*2 WHERE a>=8780 AND a<8790;\nUPDATE t1 SET b=b*2 WHERE a>=8790 AND a<8800;\nUPDATE t1 SET b=b*2 WHERE a>=8800 AND a<8810;\nUPDATE t1 SET b=b*2 WHERE a>=8810 AND a<8820;\nUPDATE t1 SET b=b*2 WHERE a>=8820 AND a<8830;\nUPDATE t1 SET b=b*2 WHERE a>=8830 AND a<8840;\nUPDATE t1 SET b=b*2 WHERE a>=8840 AND a<8850;\nUPDATE t1 SET b=b*2 WHERE a>=8850 AND a<8860;\nUPDATE t1 SET b=b*2 WHERE a>=8860 AND a<8870;\nUPDATE t1 SET b=b*2 WHERE a>=8870 AND a<8880;\nUPDATE t1 SET b=b*2 WHERE a>=8880 AND a<8890;\nUPDATE t1 SET b=b*2 WHERE a>=8890 AND a<8900;\nUPDATE t1 SET b=b*2 WHERE a>=8900 AND a<8910;\nUPDATE t1 SET b=b*2 WHERE a>=8910 AND a<8920;\nUPDATE t1 SET b=b*2 WHERE a>=8920 AND a<8930;\nUPDATE t1 SET b=b*2 WHERE a>=8930 AND a<8940;\nUPDATE t1 SET b=b*2 WHERE a>=8940 AND a<8950;\nUPDATE t1 SET b=b*2 WHERE a>=8950 AND a<8960;\nUPDATE t1 SET b=b*2 WHERE a>=8960 AND a<8970;\nUPDATE t1 SET b=b*2 WHERE a>=8970 AND a<8980;\nUPDATE t1 SET b=b*2 WHERE a>=8980 AND a<8990;\nUPDATE t1 SET b=b*2 WHERE a>=8990 AND a<9000;\nUPDATE t1 SET b=b*2 WHERE a>=9000 AND a<9010;\nUPDATE t1 SET b=b*2 WHERE a>=9010 AND a<9020;\nUPDATE t1 SET b=b*2 WHERE a>=9020 AND a<9030;\nUPDATE t1 SET b=b*2 WHERE a>=9030 AND a<9040;\nUPDATE t1 SET b=b*2 WHERE a>=9040 AND a<9050;\nUPDATE t1 SET b=b*2 WHERE a>=9050 AND a<9060;\nUPDATE t1 SET b=b*2 WHERE a>=9060 AND a<9070;\nUPDATE t1 SET b=b*2 WHERE a>=9070 AND a<9080;\nUPDATE t1 SET b=b*2 WHERE a>=9080 AND a<9090;\nUPDATE t1 SET b=b*2 WHERE a>=9090 AND a<9100;\nUPDATE t1 SET b=b*2 WHERE a>=9100 AND a<9110;\nUPDATE t1 SET b=b*2 WHERE a>=9110 AND a<9120;\nUPDATE t1 SET b=b*2 WHERE a>=9120 AND a<9130;\nUPDATE t1 SET b=b*2 WHERE a>=9130 AND a<9140;\nUPDATE t1 SET b=b*2 WHERE a>=9140 AND a<9150;\nUPDATE t1 SET b=b*2 WHERE a>=9150 AND a<9160;\nUPDATE t1 SET b=b*2 WHERE a>=9160 AND a<9170;\nUPDATE t1 SET b=b*2 WHERE a>=9170 AND a<9180;\nUPDATE t1 SET b=b*2 WHERE a>=9180 AND a<9190;\nUPDATE t1 SET b=b*2 WHERE a>=9190 AND a<9200;\nUPDATE t1 SET b=b*2 WHERE a>=9200 AND a<9210;\nUPDATE t1 SET b=b*2 WHERE a>=9210 AND a<9220;\nUPDATE t1 SET b=b*2 WHERE a>=9220 AND a<9230;\nUPDATE t1 SET b=b*2 WHERE a>=9230 AND a<9240;\nUPDATE t1 SET b=b*2 WHERE a>=9240 AND a<9250;\nUPDATE t1 SET b=b*2 WHERE a>=9250 AND a<9260;\nUPDATE t1 SET b=b*2 WHERE a>=9260 AND a<9270;\nUPDATE t1 SET b=b*2 WHERE a>=9270 AND a<9280;\nUPDATE t1 SET b=b*2 WHERE a>=9280 AND a<9290;\nUPDATE t1 SET b=b*2 WHERE a>=9290 AND a<9300;\nUPDATE t1 SET b=b*2 WHERE a>=9300 AND a<9310;\nUPDATE t1 SET b=b*2 WHERE a>=9310 AND a<9320;\nUPDATE t1 SET b=b*2 WHERE a>=9320 AND a<9330;\nUPDATE t1 SET b=b*2 WHERE a>=9330 AND a<9340;\nUPDATE t1 SET b=b*2 WHERE a>=9340 AND a<9350;\nUPDATE t1 SET b=b*2 WHERE a>=9350 AND a<9360;\nUPDATE t1 SET b=b*2 WHERE a>=9360 AND a<9370;\nUPDATE t1 SET b=b*2 WHERE a>=9370 AND a<9380;\nUPDATE t1 SET b=b*2 WHERE a>=9380 AND a<9390;\nUPDATE t1 SET b=b*2 WHERE a>=9390 AND a<9400;\nUPDATE t1 SET b=b*2 WHERE a>=9400 AND a<9410;\nUPDATE t1 SET b=b*2 WHERE a>=9410 AND a<9420;\nUPDATE t1 SET b=b*2 WHERE a>=9420 AND a<9430;\nUPDATE t1 SET b=b*2 WHERE a>=9430 AND a<9440;\nUPDATE t1 SET b=b*2 WHERE a>=9440 AND a<9450;\nUPDATE t1 SET b=b*2 WHERE a>=9450 AND a<9460;\nUPDATE t1 SET b=b*2 WHERE a>=9460 AND a<9470;\nUPDATE t1 SET b=b*2 WHERE a>=9470 AND a<9480;\nUPDATE t1 SET b=b*2 WHERE a>=9480 AND a<9490;\nUPDATE t1 SET b=b*2 WHERE a>=9490 AND a<9500;\nUPDATE t1 SET b=b*2 WHERE a>=9500 AND a<9510;\nUPDATE t1 SET b=b*2 WHERE a>=9510 AND a<9520;\nUPDATE t1 SET b=b*2 WHERE a>=9520 AND a<9530;\nUPDATE t1 SET b=b*2 WHERE a>=9530 AND a<9540;\nUPDATE t1 SET b=b*2 WHERE a>=9540 AND a<9550;\nUPDATE t1 SET b=b*2 WHERE a>=9550 AND a<9560;\nUPDATE t1 SET b=b*2 WHERE a>=9560 AND a<9570;\nUPDATE t1 SET b=b*2 WHERE a>=9570 AND a<9580;\nUPDATE t1 SET b=b*2 WHERE a>=9580 AND a<9590;\nUPDATE t1 SET b=b*2 WHERE a>=9590 AND a<9600;\nUPDATE t1 SET b=b*2 WHERE a>=9600 AND a<9610;\nUPDATE t1 SET b=b*2 WHERE a>=9610 AND a<9620;\nUPDATE t1 SET b=b*2 WHERE a>=9620 AND a<9630;\nUPDATE t1 SET b=b*2 WHERE a>=9630 AND a<9640;\nUPDATE t1 SET b=b*2 WHERE a>=9640 AND a<9650;\nUPDATE t1 SET b=b*2 WHERE a>=9650 AND a<9660;\nUPDATE t1 SET b=b*2 WHERE a>=9660 AND a<9670;\nUPDATE t1 SET b=b*2 WHERE a>=9670 AND a<9680;\nUPDATE t1 SET b=b*2 WHERE a>=9680 AND a<9690;\nUPDATE t1 SET b=b*2 WHERE a>=9690 AND a<9700;\nUPDATE t1 SET b=b*2 WHERE a>=9700 AND a<9710;\nUPDATE t1 SET b=b*2 WHERE a>=9710 AND a<9720;\nUPDATE t1 SET b=b*2 WHERE a>=9720 AND a<9730;\nUPDATE t1 SET b=b*2 WHERE a>=9730 AND a<9740;\nUPDATE t1 SET b=b*2 WHERE a>=9740 AND a<9750;\nUPDATE t1 SET b=b*2 WHERE a>=9750 AND a<9760;\nUPDATE t1 SET b=b*2 WHERE a>=9760 AND a<9770;\nUPDATE t1 SET b=b*2 WHERE a>=9770 AND a<9780;\nUPDATE t1 SET b=b*2 WHERE a>=9780 AND a<9790;\nUPDATE t1 SET b=b*2 WHERE a>=9790 AND a<9800;\nUPDATE t1 SET b=b*2 WHERE a>=9800 AND a<9810;\nUPDATE t1 SET b=b*2 WHERE a>=9810 AND a<9820;\nUPDATE t1 SET b=b*2 WHERE a>=9820 AND a<9830;\nUPDATE t1 SET b=b*2 WHERE a>=9830 AND a<9840;\nUPDATE t1 SET b=b*2 WHERE a>=9840 AND a<9850;\nUPDATE t1 SET b=b*2 WHERE a>=9850 AND a<9860;\nUPDATE t1 SET b=b*2 WHERE a>=9860 AND a<9870;\nUPDATE t1 SET b=b*2 WHERE a>=9870 AND a<9880;\nUPDATE t1 SET b=b*2 WHERE a>=9880 AND a<9890;\nUPDATE t1 SET b=b*2 WHERE a>=9890 AND a<9900;\nUPDATE t1 SET b=b*2 WHERE a>=9900 AND a<9910;\nUPDATE t1 SET b=b*2 WHERE a>=9910 AND a<9920;\nUPDATE t1 SET b=b*2 WHERE a>=9920 AND a<9930;\nUPDATE t1 SET b=b*2 WHERE a>=9930 AND a<9940;\nUPDATE t1 SET b=b*2 WHERE a>=9940 AND a<9950;\nUPDATE t1 SET b=b*2 WHERE a>=9950 AND a<9960;\nUPDATE t1 SET b=b*2 WHERE a>=9960 AND a<9970;\nUPDATE t1 SET b=b*2 WHERE a>=9970 AND a<9980;\nUPDATE t1 SET b=b*2 WHERE a>=9980 AND a<9990;\nUPDATE t1 SET b=b*2 WHERE a>=9990 AND a<10000;\nCOMMIT;\n"
  },
  {
    "path": "sqlite3_web/benchmark/sql/benchmark9.sql",
    "content": "BEGIN;\nUPDATE t2 SET b=6669 WHERE a=1;\nUPDATE t2 SET b=58207 WHERE a=2;\nUPDATE t2 SET b=83400 WHERE a=3;\nUPDATE t2 SET b=91722 WHERE a=4;\nUPDATE t2 SET b=11247 WHERE a=5;\nUPDATE t2 SET b=75095 WHERE a=6;\nUPDATE t2 SET b=92982 WHERE a=7;\nUPDATE t2 SET b=10496 WHERE a=8;\nUPDATE t2 SET b=70141 WHERE a=9;\nUPDATE t2 SET b=64704 WHERE a=10;\nUPDATE t2 SET b=38561 WHERE a=11;\nUPDATE t2 SET b=15203 WHERE a=12;\nUPDATE t2 SET b=52211 WHERE a=13;\nUPDATE t2 SET b=77433 WHERE a=14;\nUPDATE t2 SET b=60818 WHERE a=15;\nUPDATE t2 SET b=55485 WHERE a=16;\nUPDATE t2 SET b=32116 WHERE a=17;\nUPDATE t2 SET b=80787 WHERE a=18;\nUPDATE t2 SET b=37771 WHERE a=19;\nUPDATE t2 SET b=1476 WHERE a=20;\nUPDATE t2 SET b=82241 WHERE a=21;\nUPDATE t2 SET b=59022 WHERE a=22;\nUPDATE t2 SET b=38096 WHERE a=23;\nUPDATE t2 SET b=29130 WHERE a=24;\nUPDATE t2 SET b=21104 WHERE a=25;\nUPDATE t2 SET b=80535 WHERE a=26;\nUPDATE t2 SET b=71037 WHERE a=27;\nUPDATE t2 SET b=62045 WHERE a=28;\nUPDATE t2 SET b=36063 WHERE a=29;\nUPDATE t2 SET b=35922 WHERE a=30;\nUPDATE t2 SET b=41498 WHERE a=31;\nUPDATE t2 SET b=85270 WHERE a=32;\nUPDATE t2 SET b=53733 WHERE a=33;\nUPDATE t2 SET b=21604 WHERE a=34;\nUPDATE t2 SET b=20848 WHERE a=35;\nUPDATE t2 SET b=86887 WHERE a=36;\nUPDATE t2 SET b=35708 WHERE a=37;\nUPDATE t2 SET b=10901 WHERE a=38;\nUPDATE t2 SET b=57681 WHERE a=39;\nUPDATE t2 SET b=37050 WHERE a=40;\nUPDATE t2 SET b=30360 WHERE a=41;\nUPDATE t2 SET b=71454 WHERE a=42;\nUPDATE t2 SET b=29133 WHERE a=43;\nUPDATE t2 SET b=21615 WHERE a=44;\nUPDATE t2 SET b=98374 WHERE a=45;\nUPDATE t2 SET b=34330 WHERE a=46;\nUPDATE t2 SET b=38527 WHERE a=47;\nUPDATE t2 SET b=52498 WHERE a=48;\nUPDATE t2 SET b=31683 WHERE a=49;\nUPDATE t2 SET b=11434 WHERE a=50;\nUPDATE t2 SET b=99658 WHERE a=51;\nUPDATE t2 SET b=77139 WHERE a=52;\nUPDATE t2 SET b=54368 WHERE a=53;\nUPDATE t2 SET b=29097 WHERE a=54;\nUPDATE t2 SET b=69273 WHERE a=55;\nUPDATE t2 SET b=18972 WHERE a=56;\nUPDATE t2 SET b=91620 WHERE a=57;\nUPDATE t2 SET b=23760 WHERE a=58;\nUPDATE t2 SET b=9500 WHERE a=59;\nUPDATE t2 SET b=85355 WHERE a=60;\nUPDATE t2 SET b=83568 WHERE a=61;\nUPDATE t2 SET b=26554 WHERE a=62;\nUPDATE t2 SET b=13030 WHERE a=63;\nUPDATE t2 SET b=65100 WHERE a=64;\nUPDATE t2 SET b=75539 WHERE a=65;\nUPDATE t2 SET b=37393 WHERE a=66;\nUPDATE t2 SET b=56147 WHERE a=67;\nUPDATE t2 SET b=59775 WHERE a=68;\nUPDATE t2 SET b=18514 WHERE a=69;\nUPDATE t2 SET b=91781 WHERE a=70;\nUPDATE t2 SET b=64406 WHERE a=71;\nUPDATE t2 SET b=40508 WHERE a=72;\nUPDATE t2 SET b=73330 WHERE a=73;\nUPDATE t2 SET b=2679 WHERE a=74;\nUPDATE t2 SET b=10046 WHERE a=75;\nUPDATE t2 SET b=77279 WHERE a=76;\nUPDATE t2 SET b=82910 WHERE a=77;\nUPDATE t2 SET b=51608 WHERE a=78;\nUPDATE t2 SET b=48058 WHERE a=79;\nUPDATE t2 SET b=9877 WHERE a=80;\nUPDATE t2 SET b=80158 WHERE a=81;\nUPDATE t2 SET b=58819 WHERE a=82;\nUPDATE t2 SET b=47732 WHERE a=83;\nUPDATE t2 SET b=89055 WHERE a=84;\nUPDATE t2 SET b=10851 WHERE a=85;\nUPDATE t2 SET b=65614 WHERE a=86;\nUPDATE t2 SET b=71846 WHERE a=87;\nUPDATE t2 SET b=65251 WHERE a=88;\nUPDATE t2 SET b=2812 WHERE a=89;\nUPDATE t2 SET b=94814 WHERE a=90;\nUPDATE t2 SET b=69766 WHERE a=91;\nUPDATE t2 SET b=41955 WHERE a=92;\nUPDATE t2 SET b=79487 WHERE a=93;\nUPDATE t2 SET b=67735 WHERE a=94;\nUPDATE t2 SET b=60717 WHERE a=95;\nUPDATE t2 SET b=1862 WHERE a=96;\nUPDATE t2 SET b=15641 WHERE a=97;\nUPDATE t2 SET b=52620 WHERE a=98;\nUPDATE t2 SET b=7277 WHERE a=99;\nUPDATE t2 SET b=73185 WHERE a=100;\nUPDATE t2 SET b=14200 WHERE a=101;\nUPDATE t2 SET b=21475 WHERE a=102;\nUPDATE t2 SET b=20311 WHERE a=103;\nUPDATE t2 SET b=93535 WHERE a=104;\nUPDATE t2 SET b=41429 WHERE a=105;\nUPDATE t2 SET b=18933 WHERE a=106;\nUPDATE t2 SET b=87187 WHERE a=107;\nUPDATE t2 SET b=99663 WHERE a=108;\nUPDATE t2 SET b=81237 WHERE a=109;\nUPDATE t2 SET b=37028 WHERE a=110;\nUPDATE t2 SET b=60128 WHERE a=111;\nUPDATE t2 SET b=22505 WHERE a=112;\nUPDATE t2 SET b=89022 WHERE a=113;\nUPDATE t2 SET b=73490 WHERE a=114;\nUPDATE t2 SET b=17059 WHERE a=115;\nUPDATE t2 SET b=20510 WHERE a=116;\nUPDATE t2 SET b=7031 WHERE a=117;\nUPDATE t2 SET b=3586 WHERE a=118;\nUPDATE t2 SET b=83876 WHERE a=119;\nUPDATE t2 SET b=43344 WHERE a=120;\nUPDATE t2 SET b=30411 WHERE a=121;\nUPDATE t2 SET b=61320 WHERE a=122;\nUPDATE t2 SET b=88653 WHERE a=123;\nUPDATE t2 SET b=83221 WHERE a=124;\nUPDATE t2 SET b=64966 WHERE a=125;\nUPDATE t2 SET b=44723 WHERE a=126;\nUPDATE t2 SET b=22643 WHERE a=127;\nUPDATE t2 SET b=79724 WHERE a=128;\nUPDATE t2 SET b=58262 WHERE a=129;\nUPDATE t2 SET b=98250 WHERE a=130;\nUPDATE t2 SET b=28853 WHERE a=131;\nUPDATE t2 SET b=33715 WHERE a=132;\nUPDATE t2 SET b=14208 WHERE a=133;\nUPDATE t2 SET b=8649 WHERE a=134;\nUPDATE t2 SET b=88557 WHERE a=135;\nUPDATE t2 SET b=45495 WHERE a=136;\nUPDATE t2 SET b=15043 WHERE a=137;\nUPDATE t2 SET b=28378 WHERE a=138;\nUPDATE t2 SET b=49378 WHERE a=139;\nUPDATE t2 SET b=39729 WHERE a=140;\nUPDATE t2 SET b=62898 WHERE a=141;\nUPDATE t2 SET b=46764 WHERE a=142;\nUPDATE t2 SET b=68297 WHERE a=143;\nUPDATE t2 SET b=92400 WHERE a=144;\nUPDATE t2 SET b=38793 WHERE a=145;\nUPDATE t2 SET b=58097 WHERE a=146;\nUPDATE t2 SET b=26266 WHERE a=147;\nUPDATE t2 SET b=70828 WHERE a=148;\nUPDATE t2 SET b=41777 WHERE a=149;\nUPDATE t2 SET b=62612 WHERE a=150;\nUPDATE t2 SET b=3494 WHERE a=151;\nUPDATE t2 SET b=4812 WHERE a=152;\nUPDATE t2 SET b=88066 WHERE a=153;\nUPDATE t2 SET b=81989 WHERE a=154;\nUPDATE t2 SET b=223 WHERE a=155;\nUPDATE t2 SET b=52776 WHERE a=156;\nUPDATE t2 SET b=31495 WHERE a=157;\nUPDATE t2 SET b=93507 WHERE a=158;\nUPDATE t2 SET b=90523 WHERE a=159;\nUPDATE t2 SET b=63344 WHERE a=160;\nUPDATE t2 SET b=9017 WHERE a=161;\nUPDATE t2 SET b=97362 WHERE a=162;\nUPDATE t2 SET b=65929 WHERE a=163;\nUPDATE t2 SET b=7795 WHERE a=164;\nUPDATE t2 SET b=63658 WHERE a=165;\nUPDATE t2 SET b=58401 WHERE a=166;\nUPDATE t2 SET b=16958 WHERE a=167;\nUPDATE t2 SET b=37187 WHERE a=168;\nUPDATE t2 SET b=61829 WHERE a=169;\nUPDATE t2 SET b=18196 WHERE a=170;\nUPDATE t2 SET b=67885 WHERE a=171;\nUPDATE t2 SET b=79908 WHERE a=172;\nUPDATE t2 SET b=64437 WHERE a=173;\nUPDATE t2 SET b=98130 WHERE a=174;\nUPDATE t2 SET b=84323 WHERE a=175;\nUPDATE t2 SET b=24078 WHERE a=176;\nUPDATE t2 SET b=91927 WHERE a=177;\nUPDATE t2 SET b=82883 WHERE a=178;\nUPDATE t2 SET b=14651 WHERE a=179;\nUPDATE t2 SET b=27533 WHERE a=180;\nUPDATE t2 SET b=89763 WHERE a=181;\nUPDATE t2 SET b=40450 WHERE a=182;\nUPDATE t2 SET b=31171 WHERE a=183;\nUPDATE t2 SET b=85716 WHERE a=184;\nUPDATE t2 SET b=16884 WHERE a=185;\nUPDATE t2 SET b=26852 WHERE a=186;\nUPDATE t2 SET b=54477 WHERE a=187;\nUPDATE t2 SET b=11849 WHERE a=188;\nUPDATE t2 SET b=90233 WHERE a=189;\nUPDATE t2 SET b=30188 WHERE a=190;\nUPDATE t2 SET b=26037 WHERE a=191;\nUPDATE t2 SET b=59831 WHERE a=192;\nUPDATE t2 SET b=59792 WHERE a=193;\nUPDATE t2 SET b=66506 WHERE a=194;\nUPDATE t2 SET b=51150 WHERE a=195;\nUPDATE t2 SET b=76292 WHERE a=196;\nUPDATE t2 SET b=23179 WHERE a=197;\nUPDATE t2 SET b=62800 WHERE a=198;\nUPDATE t2 SET b=3556 WHERE a=199;\nUPDATE t2 SET b=55533 WHERE a=200;\nUPDATE t2 SET b=82821 WHERE a=201;\nUPDATE t2 SET b=25555 WHERE a=202;\nUPDATE t2 SET b=99731 WHERE a=203;\nUPDATE t2 SET b=33504 WHERE a=204;\nUPDATE t2 SET b=38936 WHERE a=205;\nUPDATE t2 SET b=98371 WHERE a=206;\nUPDATE t2 SET b=33021 WHERE a=207;\nUPDATE t2 SET b=26047 WHERE a=208;\nUPDATE t2 SET b=371 WHERE a=209;\nUPDATE t2 SET b=85371 WHERE a=210;\nUPDATE t2 SET b=8852 WHERE a=211;\nUPDATE t2 SET b=89737 WHERE a=212;\nUPDATE t2 SET b=57954 WHERE a=213;\nUPDATE t2 SET b=37172 WHERE a=214;\nUPDATE t2 SET b=57389 WHERE a=215;\nUPDATE t2 SET b=7253 WHERE a=216;\nUPDATE t2 SET b=39314 WHERE a=217;\nUPDATE t2 SET b=40762 WHERE a=218;\nUPDATE t2 SET b=98942 WHERE a=219;\nUPDATE t2 SET b=29247 WHERE a=220;\nUPDATE t2 SET b=89133 WHERE a=221;\nUPDATE t2 SET b=45781 WHERE a=222;\nUPDATE t2 SET b=4834 WHERE a=223;\nUPDATE t2 SET b=4275 WHERE a=224;\nUPDATE t2 SET b=27373 WHERE a=225;\nUPDATE t2 SET b=60865 WHERE a=226;\nUPDATE t2 SET b=2682 WHERE a=227;\nUPDATE t2 SET b=73451 WHERE a=228;\nUPDATE t2 SET b=45438 WHERE a=229;\nUPDATE t2 SET b=97505 WHERE a=230;\nUPDATE t2 SET b=82597 WHERE a=231;\nUPDATE t2 SET b=35758 WHERE a=232;\nUPDATE t2 SET b=48008 WHERE a=233;\nUPDATE t2 SET b=93855 WHERE a=234;\nUPDATE t2 SET b=47673 WHERE a=235;\nUPDATE t2 SET b=49459 WHERE a=236;\nUPDATE t2 SET b=98403 WHERE a=237;\nUPDATE t2 SET b=98573 WHERE a=238;\nUPDATE t2 SET b=88384 WHERE a=239;\nUPDATE t2 SET b=51068 WHERE a=240;\nUPDATE t2 SET b=86901 WHERE a=241;\nUPDATE t2 SET b=32796 WHERE a=242;\nUPDATE t2 SET b=62638 WHERE a=243;\nUPDATE t2 SET b=74424 WHERE a=244;\nUPDATE t2 SET b=86330 WHERE a=245;\nUPDATE t2 SET b=69131 WHERE a=246;\nUPDATE t2 SET b=18726 WHERE a=247;\nUPDATE t2 SET b=25837 WHERE a=248;\nUPDATE t2 SET b=58140 WHERE a=249;\nUPDATE t2 SET b=61864 WHERE a=250;\nUPDATE t2 SET b=45068 WHERE a=251;\nUPDATE t2 SET b=25411 WHERE a=252;\nUPDATE t2 SET b=74567 WHERE a=253;\nUPDATE t2 SET b=59100 WHERE a=254;\nUPDATE t2 SET b=88328 WHERE a=255;\nUPDATE t2 SET b=32204 WHERE a=256;\nUPDATE t2 SET b=66617 WHERE a=257;\nUPDATE t2 SET b=84113 WHERE a=258;\nUPDATE t2 SET b=81418 WHERE a=259;\nUPDATE t2 SET b=89475 WHERE a=260;\nUPDATE t2 SET b=75496 WHERE a=261;\nUPDATE t2 SET b=73972 WHERE a=262;\nUPDATE t2 SET b=7069 WHERE a=263;\nUPDATE t2 SET b=12769 WHERE a=264;\nUPDATE t2 SET b=68972 WHERE a=265;\nUPDATE t2 SET b=13777 WHERE a=266;\nUPDATE t2 SET b=73537 WHERE a=267;\nUPDATE t2 SET b=8524 WHERE a=268;\nUPDATE t2 SET b=74712 WHERE a=269;\nUPDATE t2 SET b=59066 WHERE a=270;\nUPDATE t2 SET b=25487 WHERE a=271;\nUPDATE t2 SET b=79158 WHERE a=272;\nUPDATE t2 SET b=17302 WHERE a=273;\nUPDATE t2 SET b=89849 WHERE a=274;\nUPDATE t2 SET b=35088 WHERE a=275;\nUPDATE t2 SET b=37529 WHERE a=276;\nUPDATE t2 SET b=92261 WHERE a=277;\nUPDATE t2 SET b=52581 WHERE a=278;\nUPDATE t2 SET b=74033 WHERE a=279;\nUPDATE t2 SET b=90116 WHERE a=280;\nUPDATE t2 SET b=52845 WHERE a=281;\nUPDATE t2 SET b=92102 WHERE a=282;\nUPDATE t2 SET b=56480 WHERE a=283;\nUPDATE t2 SET b=47321 WHERE a=284;\nUPDATE t2 SET b=10036 WHERE a=285;\nUPDATE t2 SET b=32140 WHERE a=286;\nUPDATE t2 SET b=35681 WHERE a=287;\nUPDATE t2 SET b=54214 WHERE a=288;\nUPDATE t2 SET b=98356 WHERE a=289;\nUPDATE t2 SET b=33910 WHERE a=290;\nUPDATE t2 SET b=94607 WHERE a=291;\nUPDATE t2 SET b=17443 WHERE a=292;\nUPDATE t2 SET b=31488 WHERE a=293;\nUPDATE t2 SET b=76668 WHERE a=294;\nUPDATE t2 SET b=57119 WHERE a=295;\nUPDATE t2 SET b=5576 WHERE a=296;\nUPDATE t2 SET b=17913 WHERE a=297;\nUPDATE t2 SET b=12060 WHERE a=298;\nUPDATE t2 SET b=78741 WHERE a=299;\nUPDATE t2 SET b=26395 WHERE a=300;\nUPDATE t2 SET b=55504 WHERE a=301;\nUPDATE t2 SET b=88720 WHERE a=302;\nUPDATE t2 SET b=6512 WHERE a=303;\nUPDATE t2 SET b=84121 WHERE a=304;\nUPDATE t2 SET b=820 WHERE a=305;\nUPDATE t2 SET b=42516 WHERE a=306;\nUPDATE t2 SET b=24887 WHERE a=307;\nUPDATE t2 SET b=38372 WHERE a=308;\nUPDATE t2 SET b=40248 WHERE a=309;\nUPDATE t2 SET b=47310 WHERE a=310;\nUPDATE t2 SET b=9758 WHERE a=311;\nUPDATE t2 SET b=17585 WHERE a=312;\nUPDATE t2 SET b=23075 WHERE a=313;\nUPDATE t2 SET b=61069 WHERE a=314;\nUPDATE t2 SET b=55199 WHERE a=315;\nUPDATE t2 SET b=92228 WHERE a=316;\nUPDATE t2 SET b=71279 WHERE a=317;\nUPDATE t2 SET b=37971 WHERE a=318;\nUPDATE t2 SET b=24001 WHERE a=319;\nUPDATE t2 SET b=16664 WHERE a=320;\nUPDATE t2 SET b=61835 WHERE a=321;\nUPDATE t2 SET b=98951 WHERE a=322;\nUPDATE t2 SET b=25386 WHERE a=323;\nUPDATE t2 SET b=57931 WHERE a=324;\nUPDATE t2 SET b=75750 WHERE a=325;\nUPDATE t2 SET b=63642 WHERE a=326;\nUPDATE t2 SET b=99548 WHERE a=327;\nUPDATE t2 SET b=55581 WHERE a=328;\nUPDATE t2 SET b=34688 WHERE a=329;\nUPDATE t2 SET b=1103 WHERE a=330;\nUPDATE t2 SET b=92888 WHERE a=331;\nUPDATE t2 SET b=68111 WHERE a=332;\nUPDATE t2 SET b=10753 WHERE a=333;\nUPDATE t2 SET b=49177 WHERE a=334;\nUPDATE t2 SET b=47528 WHERE a=335;\nUPDATE t2 SET b=30778 WHERE a=336;\nUPDATE t2 SET b=42126 WHERE a=337;\nUPDATE t2 SET b=33107 WHERE a=338;\nUPDATE t2 SET b=5605 WHERE a=339;\nUPDATE t2 SET b=49003 WHERE a=340;\nUPDATE t2 SET b=14582 WHERE a=341;\nUPDATE t2 SET b=40329 WHERE a=342;\nUPDATE t2 SET b=69752 WHERE a=343;\nUPDATE t2 SET b=4627 WHERE a=344;\nUPDATE t2 SET b=11989 WHERE a=345;\nUPDATE t2 SET b=62077 WHERE a=346;\nUPDATE t2 SET b=38264 WHERE a=347;\nUPDATE t2 SET b=51381 WHERE a=348;\nUPDATE t2 SET b=49507 WHERE a=349;\nUPDATE t2 SET b=26874 WHERE a=350;\nUPDATE t2 SET b=27116 WHERE a=351;\nUPDATE t2 SET b=45418 WHERE a=352;\nUPDATE t2 SET b=70923 WHERE a=353;\nUPDATE t2 SET b=33507 WHERE a=354;\nUPDATE t2 SET b=4961 WHERE a=355;\nUPDATE t2 SET b=19802 WHERE a=356;\nUPDATE t2 SET b=30937 WHERE a=357;\nUPDATE t2 SET b=97131 WHERE a=358;\nUPDATE t2 SET b=46379 WHERE a=359;\nUPDATE t2 SET b=13939 WHERE a=360;\nUPDATE t2 SET b=74249 WHERE a=361;\nUPDATE t2 SET b=17922 WHERE a=362;\nUPDATE t2 SET b=83932 WHERE a=363;\nUPDATE t2 SET b=28600 WHERE a=364;\nUPDATE t2 SET b=90012 WHERE a=365;\nUPDATE t2 SET b=1187 WHERE a=366;\nUPDATE t2 SET b=14870 WHERE a=367;\nUPDATE t2 SET b=31517 WHERE a=368;\nUPDATE t2 SET b=52869 WHERE a=369;\nUPDATE t2 SET b=68215 WHERE a=370;\nUPDATE t2 SET b=73289 WHERE a=371;\nUPDATE t2 SET b=30347 WHERE a=372;\nUPDATE t2 SET b=54093 WHERE a=373;\nUPDATE t2 SET b=10699 WHERE a=374;\nUPDATE t2 SET b=6155 WHERE a=375;\nUPDATE t2 SET b=68103 WHERE a=376;\nUPDATE t2 SET b=44163 WHERE a=377;\nUPDATE t2 SET b=23873 WHERE a=378;\nUPDATE t2 SET b=24355 WHERE a=379;\nUPDATE t2 SET b=93688 WHERE a=380;\nUPDATE t2 SET b=79016 WHERE a=381;\nUPDATE t2 SET b=67660 WHERE a=382;\nUPDATE t2 SET b=67733 WHERE a=383;\nUPDATE t2 SET b=45379 WHERE a=384;\nUPDATE t2 SET b=46171 WHERE a=385;\nUPDATE t2 SET b=25373 WHERE a=386;\nUPDATE t2 SET b=62074 WHERE a=387;\nUPDATE t2 SET b=30111 WHERE a=388;\nUPDATE t2 SET b=34040 WHERE a=389;\nUPDATE t2 SET b=38680 WHERE a=390;\nUPDATE t2 SET b=33598 WHERE a=391;\nUPDATE t2 SET b=64623 WHERE a=392;\nUPDATE t2 SET b=99608 WHERE a=393;\nUPDATE t2 SET b=62097 WHERE a=394;\nUPDATE t2 SET b=83969 WHERE a=395;\nUPDATE t2 SET b=42696 WHERE a=396;\nUPDATE t2 SET b=62206 WHERE a=397;\nUPDATE t2 SET b=27313 WHERE a=398;\nUPDATE t2 SET b=36858 WHERE a=399;\nUPDATE t2 SET b=90061 WHERE a=400;\nUPDATE t2 SET b=74735 WHERE a=401;\nUPDATE t2 SET b=28742 WHERE a=402;\nUPDATE t2 SET b=35019 WHERE a=403;\nUPDATE t2 SET b=49030 WHERE a=404;\nUPDATE t2 SET b=12834 WHERE a=405;\nUPDATE t2 SET b=32600 WHERE a=406;\nUPDATE t2 SET b=11773 WHERE a=407;\nUPDATE t2 SET b=80265 WHERE a=408;\nUPDATE t2 SET b=73406 WHERE a=409;\nUPDATE t2 SET b=66427 WHERE a=410;\nUPDATE t2 SET b=12764 WHERE a=411;\nUPDATE t2 SET b=12453 WHERE a=412;\nUPDATE t2 SET b=57545 WHERE a=413;\nUPDATE t2 SET b=70198 WHERE a=414;\nUPDATE t2 SET b=39421 WHERE a=415;\nUPDATE t2 SET b=46942 WHERE a=416;\nUPDATE t2 SET b=25216 WHERE a=417;\nUPDATE t2 SET b=90662 WHERE a=418;\nUPDATE t2 SET b=59846 WHERE a=419;\nUPDATE t2 SET b=96954 WHERE a=420;\nUPDATE t2 SET b=10732 WHERE a=421;\nUPDATE t2 SET b=47356 WHERE a=422;\nUPDATE t2 SET b=77155 WHERE a=423;\nUPDATE t2 SET b=20023 WHERE a=424;\nUPDATE t2 SET b=58889 WHERE a=425;\nUPDATE t2 SET b=20850 WHERE a=426;\nUPDATE t2 SET b=93880 WHERE a=427;\nUPDATE t2 SET b=50801 WHERE a=428;\nUPDATE t2 SET b=10204 WHERE a=429;\nUPDATE t2 SET b=19780 WHERE a=430;\nUPDATE t2 SET b=53143 WHERE a=431;\nUPDATE t2 SET b=28085 WHERE a=432;\nUPDATE t2 SET b=12256 WHERE a=433;\nUPDATE t2 SET b=31626 WHERE a=434;\nUPDATE t2 SET b=19661 WHERE a=435;\nUPDATE t2 SET b=57179 WHERE a=436;\nUPDATE t2 SET b=94903 WHERE a=437;\nUPDATE t2 SET b=64847 WHERE a=438;\nUPDATE t2 SET b=6484 WHERE a=439;\nUPDATE t2 SET b=70679 WHERE a=440;\nUPDATE t2 SET b=4293 WHERE a=441;\nUPDATE t2 SET b=59781 WHERE a=442;\nUPDATE t2 SET b=62794 WHERE a=443;\nUPDATE t2 SET b=64849 WHERE a=444;\nUPDATE t2 SET b=62119 WHERE a=445;\nUPDATE t2 SET b=23519 WHERE a=446;\nUPDATE t2 SET b=99687 WHERE a=447;\nUPDATE t2 SET b=607 WHERE a=448;\nUPDATE t2 SET b=26010 WHERE a=449;\nUPDATE t2 SET b=59444 WHERE a=450;\nUPDATE t2 SET b=68502 WHERE a=451;\nUPDATE t2 SET b=70914 WHERE a=452;\nUPDATE t2 SET b=25051 WHERE a=453;\nUPDATE t2 SET b=82911 WHERE a=454;\nUPDATE t2 SET b=78826 WHERE a=455;\nUPDATE t2 SET b=51231 WHERE a=456;\nUPDATE t2 SET b=85487 WHERE a=457;\nUPDATE t2 SET b=31005 WHERE a=458;\nUPDATE t2 SET b=98227 WHERE a=459;\nUPDATE t2 SET b=45523 WHERE a=460;\nUPDATE t2 SET b=51172 WHERE a=461;\nUPDATE t2 SET b=83244 WHERE a=462;\nUPDATE t2 SET b=60307 WHERE a=463;\nUPDATE t2 SET b=13428 WHERE a=464;\nUPDATE t2 SET b=82812 WHERE a=465;\nUPDATE t2 SET b=8897 WHERE a=466;\nUPDATE t2 SET b=99154 WHERE a=467;\nUPDATE t2 SET b=47602 WHERE a=468;\nUPDATE t2 SET b=78653 WHERE a=469;\nUPDATE t2 SET b=52966 WHERE a=470;\nUPDATE t2 SET b=59912 WHERE a=471;\nUPDATE t2 SET b=28038 WHERE a=472;\nUPDATE t2 SET b=42864 WHERE a=473;\nUPDATE t2 SET b=92057 WHERE a=474;\nUPDATE t2 SET b=28213 WHERE a=475;\nUPDATE t2 SET b=91385 WHERE a=476;\nUPDATE t2 SET b=13187 WHERE a=477;\nUPDATE t2 SET b=50035 WHERE a=478;\nUPDATE t2 SET b=48559 WHERE a=479;\nUPDATE t2 SET b=45187 WHERE a=480;\nUPDATE t2 SET b=43832 WHERE a=481;\nUPDATE t2 SET b=2579 WHERE a=482;\nUPDATE t2 SET b=18071 WHERE a=483;\nUPDATE t2 SET b=67818 WHERE a=484;\nUPDATE t2 SET b=3849 WHERE a=485;\nUPDATE t2 SET b=54027 WHERE a=486;\nUPDATE t2 SET b=87596 WHERE a=487;\nUPDATE t2 SET b=87920 WHERE a=488;\nUPDATE t2 SET b=5092 WHERE a=489;\nUPDATE t2 SET b=54089 WHERE a=490;\nUPDATE t2 SET b=46207 WHERE a=491;\nUPDATE t2 SET b=58313 WHERE a=492;\nUPDATE t2 SET b=9037 WHERE a=493;\nUPDATE t2 SET b=96712 WHERE a=494;\nUPDATE t2 SET b=67931 WHERE a=495;\nUPDATE t2 SET b=55508 WHERE a=496;\nUPDATE t2 SET b=42839 WHERE a=497;\nUPDATE t2 SET b=38059 WHERE a=498;\nUPDATE t2 SET b=47086 WHERE a=499;\nUPDATE t2 SET b=54183 WHERE a=500;\nUPDATE t2 SET b=90184 WHERE a=501;\nUPDATE t2 SET b=78419 WHERE a=502;\nUPDATE t2 SET b=55310 WHERE a=503;\nUPDATE t2 SET b=41309 WHERE a=504;\nUPDATE t2 SET b=57408 WHERE a=505;\nUPDATE t2 SET b=36600 WHERE a=506;\nUPDATE t2 SET b=15918 WHERE a=507;\nUPDATE t2 SET b=33790 WHERE a=508;\nUPDATE t2 SET b=67443 WHERE a=509;\nUPDATE t2 SET b=57710 WHERE a=510;\nUPDATE t2 SET b=37097 WHERE a=511;\nUPDATE t2 SET b=26415 WHERE a=512;\nUPDATE t2 SET b=79702 WHERE a=513;\nUPDATE t2 SET b=90818 WHERE a=514;\nUPDATE t2 SET b=12985 WHERE a=515;\nUPDATE t2 SET b=13813 WHERE a=516;\nUPDATE t2 SET b=63643 WHERE a=517;\nUPDATE t2 SET b=76844 WHERE a=518;\nUPDATE t2 SET b=45486 WHERE a=519;\nUPDATE t2 SET b=38784 WHERE a=520;\nUPDATE t2 SET b=81952 WHERE a=521;\nUPDATE t2 SET b=59623 WHERE a=522;\nUPDATE t2 SET b=24657 WHERE a=523;\nUPDATE t2 SET b=24726 WHERE a=524;\nUPDATE t2 SET b=15738 WHERE a=525;\nUPDATE t2 SET b=39910 WHERE a=526;\nUPDATE t2 SET b=70173 WHERE a=527;\nUPDATE t2 SET b=81959 WHERE a=528;\nUPDATE t2 SET b=10079 WHERE a=529;\nUPDATE t2 SET b=65317 WHERE a=530;\nUPDATE t2 SET b=57010 WHERE a=531;\nUPDATE t2 SET b=9464 WHERE a=532;\nUPDATE t2 SET b=96509 WHERE a=533;\nUPDATE t2 SET b=48316 WHERE a=534;\nUPDATE t2 SET b=39933 WHERE a=535;\nUPDATE t2 SET b=59417 WHERE a=536;\nUPDATE t2 SET b=85787 WHERE a=537;\nUPDATE t2 SET b=52108 WHERE a=538;\nUPDATE t2 SET b=8716 WHERE a=539;\nUPDATE t2 SET b=71474 WHERE a=540;\nUPDATE t2 SET b=91767 WHERE a=541;\nUPDATE t2 SET b=14926 WHERE a=542;\nUPDATE t2 SET b=68208 WHERE a=543;\nUPDATE t2 SET b=45499 WHERE a=544;\nUPDATE t2 SET b=66820 WHERE a=545;\nUPDATE t2 SET b=7731 WHERE a=546;\nUPDATE t2 SET b=86751 WHERE a=547;\nUPDATE t2 SET b=3993 WHERE a=548;\nUPDATE t2 SET b=45586 WHERE a=549;\nUPDATE t2 SET b=98870 WHERE a=550;\nUPDATE t2 SET b=38138 WHERE a=551;\nUPDATE t2 SET b=42291 WHERE a=552;\nUPDATE t2 SET b=37593 WHERE a=553;\nUPDATE t2 SET b=29317 WHERE a=554;\nUPDATE t2 SET b=12337 WHERE a=555;\nUPDATE t2 SET b=19669 WHERE a=556;\nUPDATE t2 SET b=8843 WHERE a=557;\nUPDATE t2 SET b=29335 WHERE a=558;\nUPDATE t2 SET b=12774 WHERE a=559;\nUPDATE t2 SET b=82270 WHERE a=560;\nUPDATE t2 SET b=3504 WHERE a=561;\nUPDATE t2 SET b=18436 WHERE a=562;\nUPDATE t2 SET b=49846 WHERE a=563;\nUPDATE t2 SET b=61496 WHERE a=564;\nUPDATE t2 SET b=61566 WHERE a=565;\nUPDATE t2 SET b=57641 WHERE a=566;\nUPDATE t2 SET b=34221 WHERE a=567;\nUPDATE t2 SET b=97295 WHERE a=568;\nUPDATE t2 SET b=50645 WHERE a=569;\nUPDATE t2 SET b=71626 WHERE a=570;\nUPDATE t2 SET b=89276 WHERE a=571;\nUPDATE t2 SET b=21307 WHERE a=572;\nUPDATE t2 SET b=63337 WHERE a=573;\nUPDATE t2 SET b=39470 WHERE a=574;\nUPDATE t2 SET b=46517 WHERE a=575;\nUPDATE t2 SET b=70876 WHERE a=576;\nUPDATE t2 SET b=4481 WHERE a=577;\nUPDATE t2 SET b=27895 WHERE a=578;\nUPDATE t2 SET b=74546 WHERE a=579;\nUPDATE t2 SET b=1106 WHERE a=580;\nUPDATE t2 SET b=45277 WHERE a=581;\nUPDATE t2 SET b=31786 WHERE a=582;\nUPDATE t2 SET b=98454 WHERE a=583;\nUPDATE t2 SET b=28088 WHERE a=584;\nUPDATE t2 SET b=71484 WHERE a=585;\nUPDATE t2 SET b=17905 WHERE a=586;\nUPDATE t2 SET b=84346 WHERE a=587;\nUPDATE t2 SET b=23804 WHERE a=588;\nUPDATE t2 SET b=7468 WHERE a=589;\nUPDATE t2 SET b=12387 WHERE a=590;\nUPDATE t2 SET b=16695 WHERE a=591;\nUPDATE t2 SET b=91788 WHERE a=592;\nUPDATE t2 SET b=49611 WHERE a=593;\nUPDATE t2 SET b=22526 WHERE a=594;\nUPDATE t2 SET b=83978 WHERE a=595;\nUPDATE t2 SET b=46956 WHERE a=596;\nUPDATE t2 SET b=57202 WHERE a=597;\nUPDATE t2 SET b=20238 WHERE a=598;\nUPDATE t2 SET b=37521 WHERE a=599;\nUPDATE t2 SET b=67354 WHERE a=600;\nUPDATE t2 SET b=29677 WHERE a=601;\nUPDATE t2 SET b=34743 WHERE a=602;\nUPDATE t2 SET b=6523 WHERE a=603;\nUPDATE t2 SET b=76633 WHERE a=604;\nUPDATE t2 SET b=42878 WHERE a=605;\nUPDATE t2 SET b=44327 WHERE a=606;\nUPDATE t2 SET b=51179 WHERE a=607;\nUPDATE t2 SET b=95996 WHERE a=608;\nUPDATE t2 SET b=20969 WHERE a=609;\nUPDATE t2 SET b=81299 WHERE a=610;\nUPDATE t2 SET b=60994 WHERE a=611;\nUPDATE t2 SET b=54334 WHERE a=612;\nUPDATE t2 SET b=54624 WHERE a=613;\nUPDATE t2 SET b=27785 WHERE a=614;\nUPDATE t2 SET b=41405 WHERE a=615;\nUPDATE t2 SET b=93105 WHERE a=616;\nUPDATE t2 SET b=51724 WHERE a=617;\nUPDATE t2 SET b=83712 WHERE a=618;\nUPDATE t2 SET b=87404 WHERE a=619;\nUPDATE t2 SET b=27282 WHERE a=620;\nUPDATE t2 SET b=82755 WHERE a=621;\nUPDATE t2 SET b=29587 WHERE a=622;\nUPDATE t2 SET b=16205 WHERE a=623;\nUPDATE t2 SET b=19959 WHERE a=624;\nUPDATE t2 SET b=24650 WHERE a=625;\nUPDATE t2 SET b=52389 WHERE a=626;\nUPDATE t2 SET b=7380 WHERE a=627;\nUPDATE t2 SET b=78630 WHERE a=628;\nUPDATE t2 SET b=63847 WHERE a=629;\nUPDATE t2 SET b=40364 WHERE a=630;\nUPDATE t2 SET b=39407 WHERE a=631;\nUPDATE t2 SET b=80689 WHERE a=632;\nUPDATE t2 SET b=14992 WHERE a=633;\nUPDATE t2 SET b=43560 WHERE a=634;\nUPDATE t2 SET b=46215 WHERE a=635;\nUPDATE t2 SET b=15426 WHERE a=636;\nUPDATE t2 SET b=60742 WHERE a=637;\nUPDATE t2 SET b=89186 WHERE a=638;\nUPDATE t2 SET b=22956 WHERE a=639;\nUPDATE t2 SET b=43184 WHERE a=640;\nUPDATE t2 SET b=90118 WHERE a=641;\nUPDATE t2 SET b=81148 WHERE a=642;\nUPDATE t2 SET b=49654 WHERE a=643;\nUPDATE t2 SET b=9239 WHERE a=644;\nUPDATE t2 SET b=74499 WHERE a=645;\nUPDATE t2 SET b=51533 WHERE a=646;\nUPDATE t2 SET b=29186 WHERE a=647;\nUPDATE t2 SET b=52262 WHERE a=648;\nUPDATE t2 SET b=21475 WHERE a=649;\nUPDATE t2 SET b=85872 WHERE a=650;\nUPDATE t2 SET b=5706 WHERE a=651;\nUPDATE t2 SET b=90553 WHERE a=652;\nUPDATE t2 SET b=2725 WHERE a=653;\nUPDATE t2 SET b=52510 WHERE a=654;\nUPDATE t2 SET b=3366 WHERE a=655;\nUPDATE t2 SET b=62655 WHERE a=656;\nUPDATE t2 SET b=72232 WHERE a=657;\nUPDATE t2 SET b=67890 WHERE a=658;\nUPDATE t2 SET b=41708 WHERE a=659;\nUPDATE t2 SET b=88459 WHERE a=660;\nUPDATE t2 SET b=14487 WHERE a=661;\nUPDATE t2 SET b=25477 WHERE a=662;\nUPDATE t2 SET b=64226 WHERE a=663;\nUPDATE t2 SET b=663 WHERE a=664;\nUPDATE t2 SET b=24878 WHERE a=665;\nUPDATE t2 SET b=91312 WHERE a=666;\nUPDATE t2 SET b=91224 WHERE a=667;\nUPDATE t2 SET b=98467 WHERE a=668;\nUPDATE t2 SET b=52496 WHERE a=669;\nUPDATE t2 SET b=25936 WHERE a=670;\nUPDATE t2 SET b=86681 WHERE a=671;\nUPDATE t2 SET b=9517 WHERE a=672;\nUPDATE t2 SET b=55975 WHERE a=673;\nUPDATE t2 SET b=77017 WHERE a=674;\nUPDATE t2 SET b=70740 WHERE a=675;\nUPDATE t2 SET b=93624 WHERE a=676;\nUPDATE t2 SET b=66849 WHERE a=677;\nUPDATE t2 SET b=38376 WHERE a=678;\nUPDATE t2 SET b=72919 WHERE a=679;\nUPDATE t2 SET b=56899 WHERE a=680;\nUPDATE t2 SET b=60875 WHERE a=681;\nUPDATE t2 SET b=96983 WHERE a=682;\nUPDATE t2 SET b=29418 WHERE a=683;\nUPDATE t2 SET b=1955 WHERE a=684;\nUPDATE t2 SET b=31107 WHERE a=685;\nUPDATE t2 SET b=3201 WHERE a=686;\nUPDATE t2 SET b=88496 WHERE a=687;\nUPDATE t2 SET b=9826 WHERE a=688;\nUPDATE t2 SET b=97486 WHERE a=689;\nUPDATE t2 SET b=17281 WHERE a=690;\nUPDATE t2 SET b=65005 WHERE a=691;\nUPDATE t2 SET b=23782 WHERE a=692;\nUPDATE t2 SET b=42032 WHERE a=693;\nUPDATE t2 SET b=97966 WHERE a=694;\nUPDATE t2 SET b=82533 WHERE a=695;\nUPDATE t2 SET b=25137 WHERE a=696;\nUPDATE t2 SET b=32721 WHERE a=697;\nUPDATE t2 SET b=80663 WHERE a=698;\nUPDATE t2 SET b=83626 WHERE a=699;\nUPDATE t2 SET b=35082 WHERE a=700;\nUPDATE t2 SET b=43093 WHERE a=701;\nUPDATE t2 SET b=8542 WHERE a=702;\nUPDATE t2 SET b=13705 WHERE a=703;\nUPDATE t2 SET b=24749 WHERE a=704;\nUPDATE t2 SET b=64434 WHERE a=705;\nUPDATE t2 SET b=18402 WHERE a=706;\nUPDATE t2 SET b=31058 WHERE a=707;\nUPDATE t2 SET b=68325 WHERE a=708;\nUPDATE t2 SET b=99079 WHERE a=709;\nUPDATE t2 SET b=84089 WHERE a=710;\nUPDATE t2 SET b=6114 WHERE a=711;\nUPDATE t2 SET b=7787 WHERE a=712;\nUPDATE t2 SET b=67156 WHERE a=713;\nUPDATE t2 SET b=60201 WHERE a=714;\nUPDATE t2 SET b=20411 WHERE a=715;\nUPDATE t2 SET b=53593 WHERE a=716;\nUPDATE t2 SET b=48918 WHERE a=717;\nUPDATE t2 SET b=19632 WHERE a=718;\nUPDATE t2 SET b=86134 WHERE a=719;\nUPDATE t2 SET b=65874 WHERE a=720;\nUPDATE t2 SET b=34120 WHERE a=721;\nUPDATE t2 SET b=67271 WHERE a=722;\nUPDATE t2 SET b=59012 WHERE a=723;\nUPDATE t2 SET b=99855 WHERE a=724;\nUPDATE t2 SET b=54937 WHERE a=725;\nUPDATE t2 SET b=53722 WHERE a=726;\nUPDATE t2 SET b=386 WHERE a=727;\nUPDATE t2 SET b=85774 WHERE a=728;\nUPDATE t2 SET b=60129 WHERE a=729;\nUPDATE t2 SET b=62790 WHERE a=730;\nUPDATE t2 SET b=32870 WHERE a=731;\nUPDATE t2 SET b=37907 WHERE a=732;\nUPDATE t2 SET b=98086 WHERE a=733;\nUPDATE t2 SET b=74994 WHERE a=734;\nUPDATE t2 SET b=98229 WHERE a=735;\nUPDATE t2 SET b=6821 WHERE a=736;\nUPDATE t2 SET b=67730 WHERE a=737;\nUPDATE t2 SET b=15167 WHERE a=738;\nUPDATE t2 SET b=76005 WHERE a=739;\nUPDATE t2 SET b=46649 WHERE a=740;\nUPDATE t2 SET b=18202 WHERE a=741;\nUPDATE t2 SET b=69954 WHERE a=742;\nUPDATE t2 SET b=95972 WHERE a=743;\nUPDATE t2 SET b=18268 WHERE a=744;\nUPDATE t2 SET b=97184 WHERE a=745;\nUPDATE t2 SET b=95353 WHERE a=746;\nUPDATE t2 SET b=39015 WHERE a=747;\nUPDATE t2 SET b=72416 WHERE a=748;\nUPDATE t2 SET b=60523 WHERE a=749;\nUPDATE t2 SET b=263 WHERE a=750;\nUPDATE t2 SET b=70590 WHERE a=751;\nUPDATE t2 SET b=8146 WHERE a=752;\nUPDATE t2 SET b=64654 WHERE a=753;\nUPDATE t2 SET b=94545 WHERE a=754;\nUPDATE t2 SET b=48915 WHERE a=755;\nUPDATE t2 SET b=18334 WHERE a=756;\nUPDATE t2 SET b=16629 WHERE a=757;\nUPDATE t2 SET b=13026 WHERE a=758;\nUPDATE t2 SET b=18416 WHERE a=759;\nUPDATE t2 SET b=84370 WHERE a=760;\nUPDATE t2 SET b=97212 WHERE a=761;\nUPDATE t2 SET b=33658 WHERE a=762;\nUPDATE t2 SET b=55325 WHERE a=763;\nUPDATE t2 SET b=21771 WHERE a=764;\nUPDATE t2 SET b=64727 WHERE a=765;\nUPDATE t2 SET b=93925 WHERE a=766;\nUPDATE t2 SET b=89128 WHERE a=767;\nUPDATE t2 SET b=25242 WHERE a=768;\nUPDATE t2 SET b=59190 WHERE a=769;\nUPDATE t2 SET b=86311 WHERE a=770;\nUPDATE t2 SET b=96768 WHERE a=771;\nUPDATE t2 SET b=53025 WHERE a=772;\nUPDATE t2 SET b=81015 WHERE a=773;\nUPDATE t2 SET b=94187 WHERE a=774;\nUPDATE t2 SET b=81570 WHERE a=775;\nUPDATE t2 SET b=60320 WHERE a=776;\nUPDATE t2 SET b=74870 WHERE a=777;\nUPDATE t2 SET b=66628 WHERE a=778;\nUPDATE t2 SET b=26018 WHERE a=779;\nUPDATE t2 SET b=74528 WHERE a=780;\nUPDATE t2 SET b=18277 WHERE a=781;\nUPDATE t2 SET b=58328 WHERE a=782;\nUPDATE t2 SET b=53461 WHERE a=783;\nUPDATE t2 SET b=19660 WHERE a=784;\nUPDATE t2 SET b=40604 WHERE a=785;\nUPDATE t2 SET b=91365 WHERE a=786;\nUPDATE t2 SET b=10521 WHERE a=787;\nUPDATE t2 SET b=23459 WHERE a=788;\nUPDATE t2 SET b=69983 WHERE a=789;\nUPDATE t2 SET b=88480 WHERE a=790;\nUPDATE t2 SET b=89824 WHERE a=791;\nUPDATE t2 SET b=11295 WHERE a=792;\nUPDATE t2 SET b=63133 WHERE a=793;\nUPDATE t2 SET b=84384 WHERE a=794;\nUPDATE t2 SET b=98409 WHERE a=795;\nUPDATE t2 SET b=77994 WHERE a=796;\nUPDATE t2 SET b=90062 WHERE a=797;\nUPDATE t2 SET b=91800 WHERE a=798;\nUPDATE t2 SET b=8468 WHERE a=799;\nUPDATE t2 SET b=60415 WHERE a=800;\nUPDATE t2 SET b=2352 WHERE a=801;\nUPDATE t2 SET b=12615 WHERE a=802;\nUPDATE t2 SET b=56694 WHERE a=803;\nUPDATE t2 SET b=5733 WHERE a=804;\nUPDATE t2 SET b=20319 WHERE a=805;\nUPDATE t2 SET b=40662 WHERE a=806;\nUPDATE t2 SET b=54652 WHERE a=807;\nUPDATE t2 SET b=80123 WHERE a=808;\nUPDATE t2 SET b=64593 WHERE a=809;\nUPDATE t2 SET b=63598 WHERE a=810;\nUPDATE t2 SET b=60804 WHERE a=811;\nUPDATE t2 SET b=31762 WHERE a=812;\nUPDATE t2 SET b=56747 WHERE a=813;\nUPDATE t2 SET b=92180 WHERE a=814;\nUPDATE t2 SET b=79033 WHERE a=815;\nUPDATE t2 SET b=73503 WHERE a=816;\nUPDATE t2 SET b=21517 WHERE a=817;\nUPDATE t2 SET b=79620 WHERE a=818;\nUPDATE t2 SET b=44046 WHERE a=819;\nUPDATE t2 SET b=56879 WHERE a=820;\nUPDATE t2 SET b=54085 WHERE a=821;\nUPDATE t2 SET b=99002 WHERE a=822;\nUPDATE t2 SET b=54627 WHERE a=823;\nUPDATE t2 SET b=63916 WHERE a=824;\nUPDATE t2 SET b=3929 WHERE a=825;\nUPDATE t2 SET b=34474 WHERE a=826;\nUPDATE t2 SET b=17015 WHERE a=827;\nUPDATE t2 SET b=15847 WHERE a=828;\nUPDATE t2 SET b=44325 WHERE a=829;\nUPDATE t2 SET b=42723 WHERE a=830;\nUPDATE t2 SET b=39234 WHERE a=831;\nUPDATE t2 SET b=24560 WHERE a=832;\nUPDATE t2 SET b=90905 WHERE a=833;\nUPDATE t2 SET b=78239 WHERE a=834;\nUPDATE t2 SET b=98216 WHERE a=835;\nUPDATE t2 SET b=63533 WHERE a=836;\nUPDATE t2 SET b=12198 WHERE a=837;\nUPDATE t2 SET b=97049 WHERE a=838;\nUPDATE t2 SET b=24364 WHERE a=839;\nUPDATE t2 SET b=62169 WHERE a=840;\nUPDATE t2 SET b=92479 WHERE a=841;\nUPDATE t2 SET b=49702 WHERE a=842;\nUPDATE t2 SET b=70453 WHERE a=843;\nUPDATE t2 SET b=84670 WHERE a=844;\nUPDATE t2 SET b=68220 WHERE a=845;\nUPDATE t2 SET b=92644 WHERE a=846;\nUPDATE t2 SET b=13345 WHERE a=847;\nUPDATE t2 SET b=20942 WHERE a=848;\nUPDATE t2 SET b=4838 WHERE a=849;\nUPDATE t2 SET b=51905 WHERE a=850;\nUPDATE t2 SET b=80403 WHERE a=851;\nUPDATE t2 SET b=73785 WHERE a=852;\nUPDATE t2 SET b=63956 WHERE a=853;\nUPDATE t2 SET b=9176 WHERE a=854;\nUPDATE t2 SET b=62020 WHERE a=855;\nUPDATE t2 SET b=99506 WHERE a=856;\nUPDATE t2 SET b=36118 WHERE a=857;\nUPDATE t2 SET b=85824 WHERE a=858;\nUPDATE t2 SET b=11095 WHERE a=859;\nUPDATE t2 SET b=1872 WHERE a=860;\nUPDATE t2 SET b=97730 WHERE a=861;\nUPDATE t2 SET b=50368 WHERE a=862;\nUPDATE t2 SET b=21183 WHERE a=863;\nUPDATE t2 SET b=40590 WHERE a=864;\nUPDATE t2 SET b=10902 WHERE a=865;\nUPDATE t2 SET b=92429 WHERE a=866;\nUPDATE t2 SET b=63025 WHERE a=867;\nUPDATE t2 SET b=3084 WHERE a=868;\nUPDATE t2 SET b=34283 WHERE a=869;\nUPDATE t2 SET b=85390 WHERE a=870;\nUPDATE t2 SET b=94762 WHERE a=871;\nUPDATE t2 SET b=94421 WHERE a=872;\nUPDATE t2 SET b=14212 WHERE a=873;\nUPDATE t2 SET b=36683 WHERE a=874;\nUPDATE t2 SET b=27770 WHERE a=875;\nUPDATE t2 SET b=39365 WHERE a=876;\nUPDATE t2 SET b=15598 WHERE a=877;\nUPDATE t2 SET b=25057 WHERE a=878;\nUPDATE t2 SET b=27956 WHERE a=879;\nUPDATE t2 SET b=66878 WHERE a=880;\nUPDATE t2 SET b=6794 WHERE a=881;\nUPDATE t2 SET b=4870 WHERE a=882;\nUPDATE t2 SET b=20297 WHERE a=883;\nUPDATE t2 SET b=75681 WHERE a=884;\nUPDATE t2 SET b=75800 WHERE a=885;\nUPDATE t2 SET b=82836 WHERE a=886;\nUPDATE t2 SET b=9111 WHERE a=887;\nUPDATE t2 SET b=60883 WHERE a=888;\nUPDATE t2 SET b=46444 WHERE a=889;\nUPDATE t2 SET b=92590 WHERE a=890;\nUPDATE t2 SET b=83947 WHERE a=891;\nUPDATE t2 SET b=53543 WHERE a=892;\nUPDATE t2 SET b=71106 WHERE a=893;\nUPDATE t2 SET b=86481 WHERE a=894;\nUPDATE t2 SET b=15791 WHERE a=895;\nUPDATE t2 SET b=41232 WHERE a=896;\nUPDATE t2 SET b=79374 WHERE a=897;\nUPDATE t2 SET b=55203 WHERE a=898;\nUPDATE t2 SET b=28681 WHERE a=899;\nUPDATE t2 SET b=9151 WHERE a=900;\nUPDATE t2 SET b=35825 WHERE a=901;\nUPDATE t2 SET b=6357 WHERE a=902;\nUPDATE t2 SET b=50248 WHERE a=903;\nUPDATE t2 SET b=74260 WHERE a=904;\nUPDATE t2 SET b=70963 WHERE a=905;\nUPDATE t2 SET b=5906 WHERE a=906;\nUPDATE t2 SET b=10164 WHERE a=907;\nUPDATE t2 SET b=69099 WHERE a=908;\nUPDATE t2 SET b=37129 WHERE a=909;\nUPDATE t2 SET b=19438 WHERE a=910;\nUPDATE t2 SET b=83238 WHERE a=911;\nUPDATE t2 SET b=8761 WHERE a=912;\nUPDATE t2 SET b=81654 WHERE a=913;\nUPDATE t2 SET b=69648 WHERE a=914;\nUPDATE t2 SET b=35670 WHERE a=915;\nUPDATE t2 SET b=16543 WHERE a=916;\nUPDATE t2 SET b=48688 WHERE a=917;\nUPDATE t2 SET b=38804 WHERE a=918;\nUPDATE t2 SET b=98985 WHERE a=919;\nUPDATE t2 SET b=61715 WHERE a=920;\nUPDATE t2 SET b=41008 WHERE a=921;\nUPDATE t2 SET b=66376 WHERE a=922;\nUPDATE t2 SET b=10497 WHERE a=923;\nUPDATE t2 SET b=92418 WHERE a=924;\nUPDATE t2 SET b=29499 WHERE a=925;\nUPDATE t2 SET b=98397 WHERE a=926;\nUPDATE t2 SET b=76221 WHERE a=927;\nUPDATE t2 SET b=31920 WHERE a=928;\nUPDATE t2 SET b=15830 WHERE a=929;\nUPDATE t2 SET b=36175 WHERE a=930;\nUPDATE t2 SET b=25656 WHERE a=931;\nUPDATE t2 SET b=62531 WHERE a=932;\nUPDATE t2 SET b=50927 WHERE a=933;\nUPDATE t2 SET b=49245 WHERE a=934;\nUPDATE t2 SET b=61006 WHERE a=935;\nUPDATE t2 SET b=54160 WHERE a=936;\nUPDATE t2 SET b=12424 WHERE a=937;\nUPDATE t2 SET b=6761 WHERE a=938;\nUPDATE t2 SET b=14729 WHERE a=939;\nUPDATE t2 SET b=91887 WHERE a=940;\nUPDATE t2 SET b=59064 WHERE a=941;\nUPDATE t2 SET b=29820 WHERE a=942;\nUPDATE t2 SET b=90122 WHERE a=943;\nUPDATE t2 SET b=57980 WHERE a=944;\nUPDATE t2 SET b=10396 WHERE a=945;\nUPDATE t2 SET b=75442 WHERE a=946;\nUPDATE t2 SET b=92534 WHERE a=947;\nUPDATE t2 SET b=19292 WHERE a=948;\nUPDATE t2 SET b=27768 WHERE a=949;\nUPDATE t2 SET b=27090 WHERE a=950;\nUPDATE t2 SET b=98753 WHERE a=951;\nUPDATE t2 SET b=10208 WHERE a=952;\nUPDATE t2 SET b=51478 WHERE a=953;\nUPDATE t2 SET b=60869 WHERE a=954;\nUPDATE t2 SET b=76917 WHERE a=955;\nUPDATE t2 SET b=14247 WHERE a=956;\nUPDATE t2 SET b=85323 WHERE a=957;\nUPDATE t2 SET b=67138 WHERE a=958;\nUPDATE t2 SET b=74632 WHERE a=959;\nUPDATE t2 SET b=20397 WHERE a=960;\nUPDATE t2 SET b=69259 WHERE a=961;\nUPDATE t2 SET b=87064 WHERE a=962;\nUPDATE t2 SET b=45637 WHERE a=963;\nUPDATE t2 SET b=2518 WHERE a=964;\nUPDATE t2 SET b=10426 WHERE a=965;\nUPDATE t2 SET b=39079 WHERE a=966;\nUPDATE t2 SET b=57460 WHERE a=967;\nUPDATE t2 SET b=14554 WHERE a=968;\nUPDATE t2 SET b=61595 WHERE a=969;\nUPDATE t2 SET b=47093 WHERE a=970;\nUPDATE t2 SET b=21988 WHERE a=971;\nUPDATE t2 SET b=57326 WHERE a=972;\nUPDATE t2 SET b=50936 WHERE a=973;\nUPDATE t2 SET b=94110 WHERE a=974;\nUPDATE t2 SET b=9589 WHERE a=975;\nUPDATE t2 SET b=69198 WHERE a=976;\nUPDATE t2 SET b=80683 WHERE a=977;\nUPDATE t2 SET b=99933 WHERE a=978;\nUPDATE t2 SET b=79751 WHERE a=979;\nUPDATE t2 SET b=20700 WHERE a=980;\nUPDATE t2 SET b=72980 WHERE a=981;\nUPDATE t2 SET b=85253 WHERE a=982;\nUPDATE t2 SET b=32493 WHERE a=983;\nUPDATE t2 SET b=82135 WHERE a=984;\nUPDATE t2 SET b=63082 WHERE a=985;\nUPDATE t2 SET b=76683 WHERE a=986;\nUPDATE t2 SET b=23751 WHERE a=987;\nUPDATE t2 SET b=69207 WHERE a=988;\nUPDATE t2 SET b=55699 WHERE a=989;\nUPDATE t2 SET b=12854 WHERE a=990;\nUPDATE t2 SET b=75077 WHERE a=991;\nUPDATE t2 SET b=86584 WHERE a=992;\nUPDATE t2 SET b=42224 WHERE a=993;\nUPDATE t2 SET b=21804 WHERE a=994;\nUPDATE t2 SET b=15261 WHERE a=995;\nUPDATE t2 SET b=5042 WHERE a=996;\nUPDATE t2 SET b=70116 WHERE a=997;\nUPDATE t2 SET b=75678 WHERE a=998;\nUPDATE t2 SET b=2860 WHERE a=999;\nUPDATE t2 SET b=73520 WHERE a=1000;\nUPDATE t2 SET b=35324 WHERE a=1001;\nUPDATE t2 SET b=69640 WHERE a=1002;\nUPDATE t2 SET b=68759 WHERE a=1003;\nUPDATE t2 SET b=57526 WHERE a=1004;\nUPDATE t2 SET b=56161 WHERE a=1005;\nUPDATE t2 SET b=54651 WHERE a=1006;\nUPDATE t2 SET b=1033 WHERE a=1007;\nUPDATE t2 SET b=63232 WHERE a=1008;\nUPDATE t2 SET b=83257 WHERE a=1009;\nUPDATE t2 SET b=73770 WHERE a=1010;\nUPDATE t2 SET b=40406 WHERE a=1011;\nUPDATE t2 SET b=3865 WHERE a=1012;\nUPDATE t2 SET b=66486 WHERE a=1013;\nUPDATE t2 SET b=57785 WHERE a=1014;\nUPDATE t2 SET b=63799 WHERE a=1015;\nUPDATE t2 SET b=97371 WHERE a=1016;\nUPDATE t2 SET b=63341 WHERE a=1017;\nUPDATE t2 SET b=12422 WHERE a=1018;\nUPDATE t2 SET b=55988 WHERE a=1019;\nUPDATE t2 SET b=20785 WHERE a=1020;\nUPDATE t2 SET b=98940 WHERE a=1021;\nUPDATE t2 SET b=11066 WHERE a=1022;\nUPDATE t2 SET b=1823 WHERE a=1023;\nUPDATE t2 SET b=43574 WHERE a=1024;\nUPDATE t2 SET b=92755 WHERE a=1025;\nUPDATE t2 SET b=11319 WHERE a=1026;\nUPDATE t2 SET b=33267 WHERE a=1027;\nUPDATE t2 SET b=56563 WHERE a=1028;\nUPDATE t2 SET b=92236 WHERE a=1029;\nUPDATE t2 SET b=5183 WHERE a=1030;\nUPDATE t2 SET b=31913 WHERE a=1031;\nUPDATE t2 SET b=77300 WHERE a=1032;\nUPDATE t2 SET b=28071 WHERE a=1033;\nUPDATE t2 SET b=66015 WHERE a=1034;\nUPDATE t2 SET b=13628 WHERE a=1035;\nUPDATE t2 SET b=40631 WHERE a=1036;\nUPDATE t2 SET b=82604 WHERE a=1037;\nUPDATE t2 SET b=61483 WHERE a=1038;\nUPDATE t2 SET b=10941 WHERE a=1039;\nUPDATE t2 SET b=86595 WHERE a=1040;\nUPDATE t2 SET b=94727 WHERE a=1041;\nUPDATE t2 SET b=82666 WHERE a=1042;\nUPDATE t2 SET b=73258 WHERE a=1043;\nUPDATE t2 SET b=97009 WHERE a=1044;\nUPDATE t2 SET b=50493 WHERE a=1045;\nUPDATE t2 SET b=88654 WHERE a=1046;\nUPDATE t2 SET b=44274 WHERE a=1047;\nUPDATE t2 SET b=3558 WHERE a=1048;\nUPDATE t2 SET b=60117 WHERE a=1049;\nUPDATE t2 SET b=9040 WHERE a=1050;\nUPDATE t2 SET b=76563 WHERE a=1051;\nUPDATE t2 SET b=80706 WHERE a=1052;\nUPDATE t2 SET b=89293 WHERE a=1053;\nUPDATE t2 SET b=95204 WHERE a=1054;\nUPDATE t2 SET b=52524 WHERE a=1055;\nUPDATE t2 SET b=8980 WHERE a=1056;\nUPDATE t2 SET b=76164 WHERE a=1057;\nUPDATE t2 SET b=96542 WHERE a=1058;\nUPDATE t2 SET b=10939 WHERE a=1059;\nUPDATE t2 SET b=61854 WHERE a=1060;\nUPDATE t2 SET b=31385 WHERE a=1061;\nUPDATE t2 SET b=63883 WHERE a=1062;\nUPDATE t2 SET b=2065 WHERE a=1063;\nUPDATE t2 SET b=30291 WHERE a=1064;\nUPDATE t2 SET b=13537 WHERE a=1065;\nUPDATE t2 SET b=14118 WHERE a=1066;\nUPDATE t2 SET b=24145 WHERE a=1067;\nUPDATE t2 SET b=6142 WHERE a=1068;\nUPDATE t2 SET b=9575 WHERE a=1069;\nUPDATE t2 SET b=90007 WHERE a=1070;\nUPDATE t2 SET b=23957 WHERE a=1071;\nUPDATE t2 SET b=84304 WHERE a=1072;\nUPDATE t2 SET b=69022 WHERE a=1073;\nUPDATE t2 SET b=50612 WHERE a=1074;\nUPDATE t2 SET b=22557 WHERE a=1075;\nUPDATE t2 SET b=57521 WHERE a=1076;\nUPDATE t2 SET b=27431 WHERE a=1077;\nUPDATE t2 SET b=91415 WHERE a=1078;\nUPDATE t2 SET b=91981 WHERE a=1079;\nUPDATE t2 SET b=60357 WHERE a=1080;\nUPDATE t2 SET b=90082 WHERE a=1081;\nUPDATE t2 SET b=96171 WHERE a=1082;\nUPDATE t2 SET b=76637 WHERE a=1083;\nUPDATE t2 SET b=14658 WHERE a=1084;\nUPDATE t2 SET b=60189 WHERE a=1085;\nUPDATE t2 SET b=67751 WHERE a=1086;\nUPDATE t2 SET b=69928 WHERE a=1087;\nUPDATE t2 SET b=47829 WHERE a=1088;\nUPDATE t2 SET b=11117 WHERE a=1089;\nUPDATE t2 SET b=58945 WHERE a=1090;\nUPDATE t2 SET b=31497 WHERE a=1091;\nUPDATE t2 SET b=6297 WHERE a=1092;\nUPDATE t2 SET b=90268 WHERE a=1093;\nUPDATE t2 SET b=38005 WHERE a=1094;\nUPDATE t2 SET b=5322 WHERE a=1095;\nUPDATE t2 SET b=39102 WHERE a=1096;\nUPDATE t2 SET b=92108 WHERE a=1097;\nUPDATE t2 SET b=16913 WHERE a=1098;\nUPDATE t2 SET b=33889 WHERE a=1099;\nUPDATE t2 SET b=47733 WHERE a=1100;\nUPDATE t2 SET b=40407 WHERE a=1101;\nUPDATE t2 SET b=65198 WHERE a=1102;\nUPDATE t2 SET b=57741 WHERE a=1103;\nUPDATE t2 SET b=66042 WHERE a=1104;\nUPDATE t2 SET b=51775 WHERE a=1105;\nUPDATE t2 SET b=52650 WHERE a=1106;\nUPDATE t2 SET b=32705 WHERE a=1107;\nUPDATE t2 SET b=95813 WHERE a=1108;\nUPDATE t2 SET b=23606 WHERE a=1109;\nUPDATE t2 SET b=18114 WHERE a=1110;\nUPDATE t2 SET b=95538 WHERE a=1111;\nUPDATE t2 SET b=96529 WHERE a=1112;\nUPDATE t2 SET b=40081 WHERE a=1113;\nUPDATE t2 SET b=3185 WHERE a=1114;\nUPDATE t2 SET b=92899 WHERE a=1115;\nUPDATE t2 SET b=17923 WHERE a=1116;\nUPDATE t2 SET b=50305 WHERE a=1117;\nUPDATE t2 SET b=74829 WHERE a=1118;\nUPDATE t2 SET b=93064 WHERE a=1119;\nUPDATE t2 SET b=62754 WHERE a=1120;\nUPDATE t2 SET b=27701 WHERE a=1121;\nUPDATE t2 SET b=98676 WHERE a=1122;\nUPDATE t2 SET b=63678 WHERE a=1123;\nUPDATE t2 SET b=31139 WHERE a=1124;\nUPDATE t2 SET b=60631 WHERE a=1125;\nUPDATE t2 SET b=12674 WHERE a=1126;\nUPDATE t2 SET b=18160 WHERE a=1127;\nUPDATE t2 SET b=38233 WHERE a=1128;\nUPDATE t2 SET b=20336 WHERE a=1129;\nUPDATE t2 SET b=56419 WHERE a=1130;\nUPDATE t2 SET b=21288 WHERE a=1131;\nUPDATE t2 SET b=26042 WHERE a=1132;\nUPDATE t2 SET b=79012 WHERE a=1133;\nUPDATE t2 SET b=61769 WHERE a=1134;\nUPDATE t2 SET b=54926 WHERE a=1135;\nUPDATE t2 SET b=18957 WHERE a=1136;\nUPDATE t2 SET b=51034 WHERE a=1137;\nUPDATE t2 SET b=70751 WHERE a=1138;\nUPDATE t2 SET b=69863 WHERE a=1139;\nUPDATE t2 SET b=70761 WHERE a=1140;\nUPDATE t2 SET b=15056 WHERE a=1141;\nUPDATE t2 SET b=41725 WHERE a=1142;\nUPDATE t2 SET b=82359 WHERE a=1143;\nUPDATE t2 SET b=78117 WHERE a=1144;\nUPDATE t2 SET b=65854 WHERE a=1145;\nUPDATE t2 SET b=270 WHERE a=1146;\nUPDATE t2 SET b=94414 WHERE a=1147;\nUPDATE t2 SET b=67109 WHERE a=1148;\nUPDATE t2 SET b=7443 WHERE a=1149;\nUPDATE t2 SET b=86941 WHERE a=1150;\nUPDATE t2 SET b=70323 WHERE a=1151;\nUPDATE t2 SET b=97818 WHERE a=1152;\nUPDATE t2 SET b=99343 WHERE a=1153;\nUPDATE t2 SET b=35300 WHERE a=1154;\nUPDATE t2 SET b=18734 WHERE a=1155;\nUPDATE t2 SET b=6308 WHERE a=1156;\nUPDATE t2 SET b=48975 WHERE a=1157;\nUPDATE t2 SET b=57923 WHERE a=1158;\nUPDATE t2 SET b=39556 WHERE a=1159;\nUPDATE t2 SET b=28745 WHERE a=1160;\nUPDATE t2 SET b=8573 WHERE a=1161;\nUPDATE t2 SET b=30063 WHERE a=1162;\nUPDATE t2 SET b=68834 WHERE a=1163;\nUPDATE t2 SET b=24861 WHERE a=1164;\nUPDATE t2 SET b=80744 WHERE a=1165;\nUPDATE t2 SET b=50942 WHERE a=1166;\nUPDATE t2 SET b=50653 WHERE a=1167;\nUPDATE t2 SET b=39673 WHERE a=1168;\nUPDATE t2 SET b=89506 WHERE a=1169;\nUPDATE t2 SET b=66354 WHERE a=1170;\nUPDATE t2 SET b=424 WHERE a=1171;\nUPDATE t2 SET b=45751 WHERE a=1172;\nUPDATE t2 SET b=93551 WHERE a=1173;\nUPDATE t2 SET b=94478 WHERE a=1174;\nUPDATE t2 SET b=6148 WHERE a=1175;\nUPDATE t2 SET b=94341 WHERE a=1176;\nUPDATE t2 SET b=62454 WHERE a=1177;\nUPDATE t2 SET b=52243 WHERE a=1178;\nUPDATE t2 SET b=51874 WHERE a=1179;\nUPDATE t2 SET b=55975 WHERE a=1180;\nUPDATE t2 SET b=2369 WHERE a=1181;\nUPDATE t2 SET b=94950 WHERE a=1182;\nUPDATE t2 SET b=98017 WHERE a=1183;\nUPDATE t2 SET b=80290 WHERE a=1184;\nUPDATE t2 SET b=1082 WHERE a=1185;\nUPDATE t2 SET b=68414 WHERE a=1186;\nUPDATE t2 SET b=46627 WHERE a=1187;\nUPDATE t2 SET b=60558 WHERE a=1188;\nUPDATE t2 SET b=72690 WHERE a=1189;\nUPDATE t2 SET b=13521 WHERE a=1190;\nUPDATE t2 SET b=49388 WHERE a=1191;\nUPDATE t2 SET b=55873 WHERE a=1192;\nUPDATE t2 SET b=87048 WHERE a=1193;\nUPDATE t2 SET b=47631 WHERE a=1194;\nUPDATE t2 SET b=50970 WHERE a=1195;\nUPDATE t2 SET b=80946 WHERE a=1196;\nUPDATE t2 SET b=79826 WHERE a=1197;\nUPDATE t2 SET b=13232 WHERE a=1198;\nUPDATE t2 SET b=29793 WHERE a=1199;\nUPDATE t2 SET b=50660 WHERE a=1200;\nUPDATE t2 SET b=82929 WHERE a=1201;\nUPDATE t2 SET b=10239 WHERE a=1202;\nUPDATE t2 SET b=91768 WHERE a=1203;\nUPDATE t2 SET b=9267 WHERE a=1204;\nUPDATE t2 SET b=6581 WHERE a=1205;\nUPDATE t2 SET b=39983 WHERE a=1206;\nUPDATE t2 SET b=88643 WHERE a=1207;\nUPDATE t2 SET b=22138 WHERE a=1208;\nUPDATE t2 SET b=49724 WHERE a=1209;\nUPDATE t2 SET b=74233 WHERE a=1210;\nUPDATE t2 SET b=30351 WHERE a=1211;\nUPDATE t2 SET b=33242 WHERE a=1212;\nUPDATE t2 SET b=71091 WHERE a=1213;\nUPDATE t2 SET b=64463 WHERE a=1214;\nUPDATE t2 SET b=11207 WHERE a=1215;\nUPDATE t2 SET b=77025 WHERE a=1216;\nUPDATE t2 SET b=62115 WHERE a=1217;\nUPDATE t2 SET b=25751 WHERE a=1218;\nUPDATE t2 SET b=23822 WHERE a=1219;\nUPDATE t2 SET b=47250 WHERE a=1220;\nUPDATE t2 SET b=12202 WHERE a=1221;\nUPDATE t2 SET b=41005 WHERE a=1222;\nUPDATE t2 SET b=27909 WHERE a=1223;\nUPDATE t2 SET b=59023 WHERE a=1224;\nUPDATE t2 SET b=9116 WHERE a=1225;\nUPDATE t2 SET b=16955 WHERE a=1226;\nUPDATE t2 SET b=42231 WHERE a=1227;\nUPDATE t2 SET b=63870 WHERE a=1228;\nUPDATE t2 SET b=25916 WHERE a=1229;\nUPDATE t2 SET b=86000 WHERE a=1230;\nUPDATE t2 SET b=45562 WHERE a=1231;\nUPDATE t2 SET b=46125 WHERE a=1232;\nUPDATE t2 SET b=52818 WHERE a=1233;\nUPDATE t2 SET b=80284 WHERE a=1234;\nUPDATE t2 SET b=81569 WHERE a=1235;\nUPDATE t2 SET b=73134 WHERE a=1236;\nUPDATE t2 SET b=40806 WHERE a=1237;\nUPDATE t2 SET b=68227 WHERE a=1238;\nUPDATE t2 SET b=90687 WHERE a=1239;\nUPDATE t2 SET b=64543 WHERE a=1240;\nUPDATE t2 SET b=8925 WHERE a=1241;\nUPDATE t2 SET b=35709 WHERE a=1242;\nUPDATE t2 SET b=69213 WHERE a=1243;\nUPDATE t2 SET b=46642 WHERE a=1244;\nUPDATE t2 SET b=59967 WHERE a=1245;\nUPDATE t2 SET b=42911 WHERE a=1246;\nUPDATE t2 SET b=83395 WHERE a=1247;\nUPDATE t2 SET b=27164 WHERE a=1248;\nUPDATE t2 SET b=89316 WHERE a=1249;\nUPDATE t2 SET b=98302 WHERE a=1250;\nUPDATE t2 SET b=67700 WHERE a=1251;\nUPDATE t2 SET b=40554 WHERE a=1252;\nUPDATE t2 SET b=29961 WHERE a=1253;\nUPDATE t2 SET b=28610 WHERE a=1254;\nUPDATE t2 SET b=56426 WHERE a=1255;\nUPDATE t2 SET b=67242 WHERE a=1256;\nUPDATE t2 SET b=96389 WHERE a=1257;\nUPDATE t2 SET b=14973 WHERE a=1258;\nUPDATE t2 SET b=45650 WHERE a=1259;\nUPDATE t2 SET b=24604 WHERE a=1260;\nUPDATE t2 SET b=29529 WHERE a=1261;\nUPDATE t2 SET b=21106 WHERE a=1262;\nUPDATE t2 SET b=53679 WHERE a=1263;\nUPDATE t2 SET b=80511 WHERE a=1264;\nUPDATE t2 SET b=81222 WHERE a=1265;\nUPDATE t2 SET b=66059 WHERE a=1266;\nUPDATE t2 SET b=92739 WHERE a=1267;\nUPDATE t2 SET b=65683 WHERE a=1268;\nUPDATE t2 SET b=23668 WHERE a=1269;\nUPDATE t2 SET b=76646 WHERE a=1270;\nUPDATE t2 SET b=83023 WHERE a=1271;\nUPDATE t2 SET b=40605 WHERE a=1272;\nUPDATE t2 SET b=92416 WHERE a=1273;\nUPDATE t2 SET b=25802 WHERE a=1274;\nUPDATE t2 SET b=80128 WHERE a=1275;\nUPDATE t2 SET b=91627 WHERE a=1276;\nUPDATE t2 SET b=44567 WHERE a=1277;\nUPDATE t2 SET b=78949 WHERE a=1278;\nUPDATE t2 SET b=88137 WHERE a=1279;\nUPDATE t2 SET b=41766 WHERE a=1280;\nUPDATE t2 SET b=41665 WHERE a=1281;\nUPDATE t2 SET b=87664 WHERE a=1282;\nUPDATE t2 SET b=43391 WHERE a=1283;\nUPDATE t2 SET b=64281 WHERE a=1284;\nUPDATE t2 SET b=19113 WHERE a=1285;\nUPDATE t2 SET b=91463 WHERE a=1286;\nUPDATE t2 SET b=27289 WHERE a=1287;\nUPDATE t2 SET b=40075 WHERE a=1288;\nUPDATE t2 SET b=64372 WHERE a=1289;\nUPDATE t2 SET b=95176 WHERE a=1290;\nUPDATE t2 SET b=16249 WHERE a=1291;\nUPDATE t2 SET b=62981 WHERE a=1292;\nUPDATE t2 SET b=79100 WHERE a=1293;\nUPDATE t2 SET b=75346 WHERE a=1294;\nUPDATE t2 SET b=55042 WHERE a=1295;\nUPDATE t2 SET b=85304 WHERE a=1296;\nUPDATE t2 SET b=330 WHERE a=1297;\nUPDATE t2 SET b=51281 WHERE a=1298;\nUPDATE t2 SET b=24966 WHERE a=1299;\nUPDATE t2 SET b=68301 WHERE a=1300;\nUPDATE t2 SET b=96205 WHERE a=1301;\nUPDATE t2 SET b=44024 WHERE a=1302;\nUPDATE t2 SET b=57916 WHERE a=1303;\nUPDATE t2 SET b=76019 WHERE a=1304;\nUPDATE t2 SET b=70905 WHERE a=1305;\nUPDATE t2 SET b=34707 WHERE a=1306;\nUPDATE t2 SET b=93749 WHERE a=1307;\nUPDATE t2 SET b=25721 WHERE a=1308;\nUPDATE t2 SET b=7282 WHERE a=1309;\nUPDATE t2 SET b=61957 WHERE a=1310;\nUPDATE t2 SET b=65685 WHERE a=1311;\nUPDATE t2 SET b=18782 WHERE a=1312;\nUPDATE t2 SET b=55544 WHERE a=1313;\nUPDATE t2 SET b=93557 WHERE a=1314;\nUPDATE t2 SET b=69417 WHERE a=1315;\nUPDATE t2 SET b=8297 WHERE a=1316;\nUPDATE t2 SET b=36178 WHERE a=1317;\nUPDATE t2 SET b=92164 WHERE a=1318;\nUPDATE t2 SET b=46629 WHERE a=1319;\nUPDATE t2 SET b=16248 WHERE a=1320;\nUPDATE t2 SET b=80988 WHERE a=1321;\nUPDATE t2 SET b=53275 WHERE a=1322;\nUPDATE t2 SET b=7152 WHERE a=1323;\nUPDATE t2 SET b=3971 WHERE a=1324;\nUPDATE t2 SET b=71241 WHERE a=1325;\nUPDATE t2 SET b=66641 WHERE a=1326;\nUPDATE t2 SET b=27351 WHERE a=1327;\nUPDATE t2 SET b=53686 WHERE a=1328;\nUPDATE t2 SET b=38297 WHERE a=1329;\nUPDATE t2 SET b=4750 WHERE a=1330;\nUPDATE t2 SET b=66742 WHERE a=1331;\nUPDATE t2 SET b=65784 WHERE a=1332;\nUPDATE t2 SET b=17089 WHERE a=1333;\nUPDATE t2 SET b=40448 WHERE a=1334;\nUPDATE t2 SET b=78740 WHERE a=1335;\nUPDATE t2 SET b=34341 WHERE a=1336;\nUPDATE t2 SET b=60663 WHERE a=1337;\nUPDATE t2 SET b=28776 WHERE a=1338;\nUPDATE t2 SET b=79771 WHERE a=1339;\nUPDATE t2 SET b=37695 WHERE a=1340;\nUPDATE t2 SET b=26359 WHERE a=1341;\nUPDATE t2 SET b=7932 WHERE a=1342;\nUPDATE t2 SET b=62028 WHERE a=1343;\nUPDATE t2 SET b=95677 WHERE a=1344;\nUPDATE t2 SET b=4093 WHERE a=1345;\nUPDATE t2 SET b=86440 WHERE a=1346;\nUPDATE t2 SET b=88414 WHERE a=1347;\nUPDATE t2 SET b=36103 WHERE a=1348;\nUPDATE t2 SET b=19839 WHERE a=1349;\nUPDATE t2 SET b=17725 WHERE a=1350;\nUPDATE t2 SET b=47358 WHERE a=1351;\nUPDATE t2 SET b=9719 WHERE a=1352;\nUPDATE t2 SET b=63422 WHERE a=1353;\nUPDATE t2 SET b=81659 WHERE a=1354;\nUPDATE t2 SET b=3430 WHERE a=1355;\nUPDATE t2 SET b=73774 WHERE a=1356;\nUPDATE t2 SET b=75198 WHERE a=1357;\nUPDATE t2 SET b=87499 WHERE a=1358;\nUPDATE t2 SET b=8519 WHERE a=1359;\nUPDATE t2 SET b=30633 WHERE a=1360;\nUPDATE t2 SET b=2588 WHERE a=1361;\nUPDATE t2 SET b=59381 WHERE a=1362;\nUPDATE t2 SET b=93506 WHERE a=1363;\nUPDATE t2 SET b=10136 WHERE a=1364;\nUPDATE t2 SET b=63241 WHERE a=1365;\nUPDATE t2 SET b=27768 WHERE a=1366;\nUPDATE t2 SET b=850 WHERE a=1367;\nUPDATE t2 SET b=18906 WHERE a=1368;\nUPDATE t2 SET b=70347 WHERE a=1369;\nUPDATE t2 SET b=63558 WHERE a=1370;\nUPDATE t2 SET b=7201 WHERE a=1371;\nUPDATE t2 SET b=83557 WHERE a=1372;\nUPDATE t2 SET b=81344 WHERE a=1373;\nUPDATE t2 SET b=47778 WHERE a=1374;\nUPDATE t2 SET b=68043 WHERE a=1375;\nUPDATE t2 SET b=68711 WHERE a=1376;\nUPDATE t2 SET b=68495 WHERE a=1377;\nUPDATE t2 SET b=52651 WHERE a=1378;\nUPDATE t2 SET b=23383 WHERE a=1379;\nUPDATE t2 SET b=38604 WHERE a=1380;\nUPDATE t2 SET b=58960 WHERE a=1381;\nUPDATE t2 SET b=72140 WHERE a=1382;\nUPDATE t2 SET b=94235 WHERE a=1383;\nUPDATE t2 SET b=33344 WHERE a=1384;\nUPDATE t2 SET b=96070 WHERE a=1385;\nUPDATE t2 SET b=96025 WHERE a=1386;\nUPDATE t2 SET b=65829 WHERE a=1387;\nUPDATE t2 SET b=670 WHERE a=1388;\nUPDATE t2 SET b=61805 WHERE a=1389;\nUPDATE t2 SET b=96762 WHERE a=1390;\nUPDATE t2 SET b=63174 WHERE a=1391;\nUPDATE t2 SET b=84358 WHERE a=1392;\nUPDATE t2 SET b=2638 WHERE a=1393;\nUPDATE t2 SET b=95390 WHERE a=1394;\nUPDATE t2 SET b=4374 WHERE a=1395;\nUPDATE t2 SET b=25039 WHERE a=1396;\nUPDATE t2 SET b=31081 WHERE a=1397;\nUPDATE t2 SET b=42701 WHERE a=1398;\nUPDATE t2 SET b=49189 WHERE a=1399;\nUPDATE t2 SET b=9657 WHERE a=1400;\nUPDATE t2 SET b=36391 WHERE a=1401;\nUPDATE t2 SET b=23884 WHERE a=1402;\nUPDATE t2 SET b=95063 WHERE a=1403;\nUPDATE t2 SET b=85140 WHERE a=1404;\nUPDATE t2 SET b=77749 WHERE a=1405;\nUPDATE t2 SET b=57567 WHERE a=1406;\nUPDATE t2 SET b=38806 WHERE a=1407;\nUPDATE t2 SET b=13185 WHERE a=1408;\nUPDATE t2 SET b=38866 WHERE a=1409;\nUPDATE t2 SET b=53180 WHERE a=1410;\nUPDATE t2 SET b=37810 WHERE a=1411;\nUPDATE t2 SET b=51311 WHERE a=1412;\nUPDATE t2 SET b=21001 WHERE a=1413;\nUPDATE t2 SET b=59707 WHERE a=1414;\nUPDATE t2 SET b=76433 WHERE a=1415;\nUPDATE t2 SET b=94343 WHERE a=1416;\nUPDATE t2 SET b=68211 WHERE a=1417;\nUPDATE t2 SET b=9497 WHERE a=1418;\nUPDATE t2 SET b=84187 WHERE a=1419;\nUPDATE t2 SET b=14605 WHERE a=1420;\nUPDATE t2 SET b=38372 WHERE a=1421;\nUPDATE t2 SET b=91438 WHERE a=1422;\nUPDATE t2 SET b=38980 WHERE a=1423;\nUPDATE t2 SET b=11631 WHERE a=1424;\nUPDATE t2 SET b=76249 WHERE a=1425;\nUPDATE t2 SET b=35489 WHERE a=1426;\nUPDATE t2 SET b=31688 WHERE a=1427;\nUPDATE t2 SET b=77978 WHERE a=1428;\nUPDATE t2 SET b=96169 WHERE a=1429;\nUPDATE t2 SET b=42445 WHERE a=1430;\nUPDATE t2 SET b=25232 WHERE a=1431;\nUPDATE t2 SET b=11715 WHERE a=1432;\nUPDATE t2 SET b=85116 WHERE a=1433;\nUPDATE t2 SET b=64479 WHERE a=1434;\nUPDATE t2 SET b=26283 WHERE a=1435;\nUPDATE t2 SET b=18335 WHERE a=1436;\nUPDATE t2 SET b=33630 WHERE a=1437;\nUPDATE t2 SET b=40134 WHERE a=1438;\nUPDATE t2 SET b=51829 WHERE a=1439;\nUPDATE t2 SET b=24712 WHERE a=1440;\nUPDATE t2 SET b=62203 WHERE a=1441;\nUPDATE t2 SET b=10741 WHERE a=1442;\nUPDATE t2 SET b=25196 WHERE a=1443;\nUPDATE t2 SET b=76490 WHERE a=1444;\nUPDATE t2 SET b=22861 WHERE a=1445;\nUPDATE t2 SET b=75189 WHERE a=1446;\nUPDATE t2 SET b=72919 WHERE a=1447;\nUPDATE t2 SET b=34626 WHERE a=1448;\nUPDATE t2 SET b=87951 WHERE a=1449;\nUPDATE t2 SET b=25143 WHERE a=1450;\nUPDATE t2 SET b=10290 WHERE a=1451;\nUPDATE t2 SET b=67495 WHERE a=1452;\nUPDATE t2 SET b=95028 WHERE a=1453;\nUPDATE t2 SET b=33394 WHERE a=1454;\nUPDATE t2 SET b=35270 WHERE a=1455;\nUPDATE t2 SET b=10677 WHERE a=1456;\nUPDATE t2 SET b=71545 WHERE a=1457;\nUPDATE t2 SET b=91833 WHERE a=1458;\nUPDATE t2 SET b=41250 WHERE a=1459;\nUPDATE t2 SET b=52711 WHERE a=1460;\nUPDATE t2 SET b=92413 WHERE a=1461;\nUPDATE t2 SET b=624 WHERE a=1462;\nUPDATE t2 SET b=71210 WHERE a=1463;\nUPDATE t2 SET b=57027 WHERE a=1464;\nUPDATE t2 SET b=67661 WHERE a=1465;\nUPDATE t2 SET b=79484 WHERE a=1466;\nUPDATE t2 SET b=55338 WHERE a=1467;\nUPDATE t2 SET b=20808 WHERE a=1468;\nUPDATE t2 SET b=64268 WHERE a=1469;\nUPDATE t2 SET b=95531 WHERE a=1470;\nUPDATE t2 SET b=63958 WHERE a=1471;\nUPDATE t2 SET b=8474 WHERE a=1472;\nUPDATE t2 SET b=21307 WHERE a=1473;\nUPDATE t2 SET b=78640 WHERE a=1474;\nUPDATE t2 SET b=36487 WHERE a=1475;\nUPDATE t2 SET b=30630 WHERE a=1476;\nUPDATE t2 SET b=2184 WHERE a=1477;\nUPDATE t2 SET b=91480 WHERE a=1478;\nUPDATE t2 SET b=84652 WHERE a=1479;\nUPDATE t2 SET b=84993 WHERE a=1480;\nUPDATE t2 SET b=23079 WHERE a=1481;\nUPDATE t2 SET b=24905 WHERE a=1482;\nUPDATE t2 SET b=73170 WHERE a=1483;\nUPDATE t2 SET b=54680 WHERE a=1484;\nUPDATE t2 SET b=71599 WHERE a=1485;\nUPDATE t2 SET b=85984 WHERE a=1486;\nUPDATE t2 SET b=52926 WHERE a=1487;\nUPDATE t2 SET b=48915 WHERE a=1488;\nUPDATE t2 SET b=96709 WHERE a=1489;\nUPDATE t2 SET b=11722 WHERE a=1490;\nUPDATE t2 SET b=28456 WHERE a=1491;\nUPDATE t2 SET b=97696 WHERE a=1492;\nUPDATE t2 SET b=48994 WHERE a=1493;\nUPDATE t2 SET b=13601 WHERE a=1494;\nUPDATE t2 SET b=94169 WHERE a=1495;\nUPDATE t2 SET b=98127 WHERE a=1496;\nUPDATE t2 SET b=92699 WHERE a=1497;\nUPDATE t2 SET b=33147 WHERE a=1498;\nUPDATE t2 SET b=69098 WHERE a=1499;\nUPDATE t2 SET b=99949 WHERE a=1500;\nUPDATE t2 SET b=31260 WHERE a=1501;\nUPDATE t2 SET b=19004 WHERE a=1502;\nUPDATE t2 SET b=20216 WHERE a=1503;\nUPDATE t2 SET b=61664 WHERE a=1504;\nUPDATE t2 SET b=51757 WHERE a=1505;\nUPDATE t2 SET b=93711 WHERE a=1506;\nUPDATE t2 SET b=31895 WHERE a=1507;\nUPDATE t2 SET b=51993 WHERE a=1508;\nUPDATE t2 SET b=43763 WHERE a=1509;\nUPDATE t2 SET b=39943 WHERE a=1510;\nUPDATE t2 SET b=60640 WHERE a=1511;\nUPDATE t2 SET b=66859 WHERE a=1512;\nUPDATE t2 SET b=73554 WHERE a=1513;\nUPDATE t2 SET b=42205 WHERE a=1514;\nUPDATE t2 SET b=72977 WHERE a=1515;\nUPDATE t2 SET b=10977 WHERE a=1516;\nUPDATE t2 SET b=68265 WHERE a=1517;\nUPDATE t2 SET b=94724 WHERE a=1518;\nUPDATE t2 SET b=89724 WHERE a=1519;\nUPDATE t2 SET b=46914 WHERE a=1520;\nUPDATE t2 SET b=8895 WHERE a=1521;\nUPDATE t2 SET b=94295 WHERE a=1522;\nUPDATE t2 SET b=46549 WHERE a=1523;\nUPDATE t2 SET b=83429 WHERE a=1524;\nUPDATE t2 SET b=22169 WHERE a=1525;\nUPDATE t2 SET b=45046 WHERE a=1526;\nUPDATE t2 SET b=58689 WHERE a=1527;\nUPDATE t2 SET b=79529 WHERE a=1528;\nUPDATE t2 SET b=54805 WHERE a=1529;\nUPDATE t2 SET b=27059 WHERE a=1530;\nUPDATE t2 SET b=51674 WHERE a=1531;\nUPDATE t2 SET b=89931 WHERE a=1532;\nUPDATE t2 SET b=42289 WHERE a=1533;\nUPDATE t2 SET b=46165 WHERE a=1534;\nUPDATE t2 SET b=41760 WHERE a=1535;\nUPDATE t2 SET b=50249 WHERE a=1536;\nUPDATE t2 SET b=12485 WHERE a=1537;\nUPDATE t2 SET b=24842 WHERE a=1538;\nUPDATE t2 SET b=10299 WHERE a=1539;\nUPDATE t2 SET b=37436 WHERE a=1540;\nUPDATE t2 SET b=28450 WHERE a=1541;\nUPDATE t2 SET b=99219 WHERE a=1542;\nUPDATE t2 SET b=26228 WHERE a=1543;\nUPDATE t2 SET b=35815 WHERE a=1544;\nUPDATE t2 SET b=46609 WHERE a=1545;\nUPDATE t2 SET b=44025 WHERE a=1546;\nUPDATE t2 SET b=94075 WHERE a=1547;\nUPDATE t2 SET b=72045 WHERE a=1548;\nUPDATE t2 SET b=98832 WHERE a=1549;\nUPDATE t2 SET b=79964 WHERE a=1550;\nUPDATE t2 SET b=78071 WHERE a=1551;\nUPDATE t2 SET b=17775 WHERE a=1552;\nUPDATE t2 SET b=76638 WHERE a=1553;\nUPDATE t2 SET b=5857 WHERE a=1554;\nUPDATE t2 SET b=21742 WHERE a=1555;\nUPDATE t2 SET b=12481 WHERE a=1556;\nUPDATE t2 SET b=70281 WHERE a=1557;\nUPDATE t2 SET b=63295 WHERE a=1558;\nUPDATE t2 SET b=89024 WHERE a=1559;\nUPDATE t2 SET b=3647 WHERE a=1560;\nUPDATE t2 SET b=90353 WHERE a=1561;\nUPDATE t2 SET b=71147 WHERE a=1562;\nUPDATE t2 SET b=541 WHERE a=1563;\nUPDATE t2 SET b=98039 WHERE a=1564;\nUPDATE t2 SET b=91091 WHERE a=1565;\nUPDATE t2 SET b=25759 WHERE a=1566;\nUPDATE t2 SET b=23020 WHERE a=1567;\nUPDATE t2 SET b=36290 WHERE a=1568;\nUPDATE t2 SET b=97601 WHERE a=1569;\nUPDATE t2 SET b=53301 WHERE a=1570;\nUPDATE t2 SET b=25776 WHERE a=1571;\nUPDATE t2 SET b=87472 WHERE a=1572;\nUPDATE t2 SET b=97994 WHERE a=1573;\nUPDATE t2 SET b=38406 WHERE a=1574;\nUPDATE t2 SET b=81322 WHERE a=1575;\nUPDATE t2 SET b=1474 WHERE a=1576;\nUPDATE t2 SET b=59496 WHERE a=1577;\nUPDATE t2 SET b=7907 WHERE a=1578;\nUPDATE t2 SET b=68871 WHERE a=1579;\nUPDATE t2 SET b=15041 WHERE a=1580;\nUPDATE t2 SET b=7777 WHERE a=1581;\nUPDATE t2 SET b=82428 WHERE a=1582;\nUPDATE t2 SET b=66658 WHERE a=1583;\nUPDATE t2 SET b=87411 WHERE a=1584;\nUPDATE t2 SET b=81450 WHERE a=1585;\nUPDATE t2 SET b=81999 WHERE a=1586;\nUPDATE t2 SET b=95678 WHERE a=1587;\nUPDATE t2 SET b=34120 WHERE a=1588;\nUPDATE t2 SET b=99659 WHERE a=1589;\nUPDATE t2 SET b=2154 WHERE a=1590;\nUPDATE t2 SET b=79139 WHERE a=1591;\nUPDATE t2 SET b=7994 WHERE a=1592;\nUPDATE t2 SET b=67075 WHERE a=1593;\nUPDATE t2 SET b=26016 WHERE a=1594;\nUPDATE t2 SET b=47306 WHERE a=1595;\nUPDATE t2 SET b=84653 WHERE a=1596;\nUPDATE t2 SET b=80817 WHERE a=1597;\nUPDATE t2 SET b=99072 WHERE a=1598;\nUPDATE t2 SET b=85382 WHERE a=1599;\nUPDATE t2 SET b=14574 WHERE a=1600;\nUPDATE t2 SET b=80757 WHERE a=1601;\nUPDATE t2 SET b=45239 WHERE a=1602;\nUPDATE t2 SET b=39036 WHERE a=1603;\nUPDATE t2 SET b=24862 WHERE a=1604;\nUPDATE t2 SET b=48716 WHERE a=1605;\nUPDATE t2 SET b=263 WHERE a=1606;\nUPDATE t2 SET b=13188 WHERE a=1607;\nUPDATE t2 SET b=86419 WHERE a=1608;\nUPDATE t2 SET b=75841 WHERE a=1609;\nUPDATE t2 SET b=6214 WHERE a=1610;\nUPDATE t2 SET b=59577 WHERE a=1611;\nUPDATE t2 SET b=52187 WHERE a=1612;\nUPDATE t2 SET b=18786 WHERE a=1613;\nUPDATE t2 SET b=32788 WHERE a=1614;\nUPDATE t2 SET b=23901 WHERE a=1615;\nUPDATE t2 SET b=79601 WHERE a=1616;\nUPDATE t2 SET b=48345 WHERE a=1617;\nUPDATE t2 SET b=79072 WHERE a=1618;\nUPDATE t2 SET b=23782 WHERE a=1619;\nUPDATE t2 SET b=24500 WHERE a=1620;\nUPDATE t2 SET b=23634 WHERE a=1621;\nUPDATE t2 SET b=8517 WHERE a=1622;\nUPDATE t2 SET b=86768 WHERE a=1623;\nUPDATE t2 SET b=91626 WHERE a=1624;\nUPDATE t2 SET b=25092 WHERE a=1625;\nUPDATE t2 SET b=46597 WHERE a=1626;\nUPDATE t2 SET b=88207 WHERE a=1627;\nUPDATE t2 SET b=84630 WHERE a=1628;\nUPDATE t2 SET b=95889 WHERE a=1629;\nUPDATE t2 SET b=88160 WHERE a=1630;\nUPDATE t2 SET b=4981 WHERE a=1631;\nUPDATE t2 SET b=5060 WHERE a=1632;\nUPDATE t2 SET b=47290 WHERE a=1633;\nUPDATE t2 SET b=20062 WHERE a=1634;\nUPDATE t2 SET b=33250 WHERE a=1635;\nUPDATE t2 SET b=48319 WHERE a=1636;\nUPDATE t2 SET b=43065 WHERE a=1637;\nUPDATE t2 SET b=1698 WHERE a=1638;\nUPDATE t2 SET b=46036 WHERE a=1639;\nUPDATE t2 SET b=66285 WHERE a=1640;\nUPDATE t2 SET b=32543 WHERE a=1641;\nUPDATE t2 SET b=53223 WHERE a=1642;\nUPDATE t2 SET b=73747 WHERE a=1643;\nUPDATE t2 SET b=41843 WHERE a=1644;\nUPDATE t2 SET b=11283 WHERE a=1645;\nUPDATE t2 SET b=60796 WHERE a=1646;\nUPDATE t2 SET b=51566 WHERE a=1647;\nUPDATE t2 SET b=98679 WHERE a=1648;\nUPDATE t2 SET b=19937 WHERE a=1649;\nUPDATE t2 SET b=95933 WHERE a=1650;\nUPDATE t2 SET b=94215 WHERE a=1651;\nUPDATE t2 SET b=4336 WHERE a=1652;\nUPDATE t2 SET b=96742 WHERE a=1653;\nUPDATE t2 SET b=51558 WHERE a=1654;\nUPDATE t2 SET b=35436 WHERE a=1655;\nUPDATE t2 SET b=34813 WHERE a=1656;\nUPDATE t2 SET b=28365 WHERE a=1657;\nUPDATE t2 SET b=90873 WHERE a=1658;\nUPDATE t2 SET b=19479 WHERE a=1659;\nUPDATE t2 SET b=39412 WHERE a=1660;\nUPDATE t2 SET b=86381 WHERE a=1661;\nUPDATE t2 SET b=3546 WHERE a=1662;\nUPDATE t2 SET b=68339 WHERE a=1663;\nUPDATE t2 SET b=7387 WHERE a=1664;\nUPDATE t2 SET b=89162 WHERE a=1665;\nUPDATE t2 SET b=81560 WHERE a=1666;\nUPDATE t2 SET b=94384 WHERE a=1667;\nUPDATE t2 SET b=79137 WHERE a=1668;\nUPDATE t2 SET b=78959 WHERE a=1669;\nUPDATE t2 SET b=70737 WHERE a=1670;\nUPDATE t2 SET b=71540 WHERE a=1671;\nUPDATE t2 SET b=92760 WHERE a=1672;\nUPDATE t2 SET b=1471 WHERE a=1673;\nUPDATE t2 SET b=63966 WHERE a=1674;\nUPDATE t2 SET b=47247 WHERE a=1675;\nUPDATE t2 SET b=76207 WHERE a=1676;\nUPDATE t2 SET b=74893 WHERE a=1677;\nUPDATE t2 SET b=91669 WHERE a=1678;\nUPDATE t2 SET b=60222 WHERE a=1679;\nUPDATE t2 SET b=19227 WHERE a=1680;\nUPDATE t2 SET b=31265 WHERE a=1681;\nUPDATE t2 SET b=74579 WHERE a=1682;\nUPDATE t2 SET b=2800 WHERE a=1683;\nUPDATE t2 SET b=63917 WHERE a=1684;\nUPDATE t2 SET b=19757 WHERE a=1685;\nUPDATE t2 SET b=68221 WHERE a=1686;\nUPDATE t2 SET b=5290 WHERE a=1687;\nUPDATE t2 SET b=39246 WHERE a=1688;\nUPDATE t2 SET b=69716 WHERE a=1689;\nUPDATE t2 SET b=79688 WHERE a=1690;\nUPDATE t2 SET b=38050 WHERE a=1691;\nUPDATE t2 SET b=35948 WHERE a=1692;\nUPDATE t2 SET b=89302 WHERE a=1693;\nUPDATE t2 SET b=83123 WHERE a=1694;\nUPDATE t2 SET b=84610 WHERE a=1695;\nUPDATE t2 SET b=16136 WHERE a=1696;\nUPDATE t2 SET b=49943 WHERE a=1697;\nUPDATE t2 SET b=12709 WHERE a=1698;\nUPDATE t2 SET b=8865 WHERE a=1699;\nUPDATE t2 SET b=15759 WHERE a=1700;\nUPDATE t2 SET b=86226 WHERE a=1701;\nUPDATE t2 SET b=78892 WHERE a=1702;\nUPDATE t2 SET b=67569 WHERE a=1703;\nUPDATE t2 SET b=53163 WHERE a=1704;\nUPDATE t2 SET b=29987 WHERE a=1705;\nUPDATE t2 SET b=92508 WHERE a=1706;\nUPDATE t2 SET b=74437 WHERE a=1707;\nUPDATE t2 SET b=35752 WHERE a=1708;\nUPDATE t2 SET b=8428 WHERE a=1709;\nUPDATE t2 SET b=60537 WHERE a=1710;\nUPDATE t2 SET b=71254 WHERE a=1711;\nUPDATE t2 SET b=92411 WHERE a=1712;\nUPDATE t2 SET b=29136 WHERE a=1713;\nUPDATE t2 SET b=1859 WHERE a=1714;\nUPDATE t2 SET b=3865 WHERE a=1715;\nUPDATE t2 SET b=31929 WHERE a=1716;\nUPDATE t2 SET b=77111 WHERE a=1717;\nUPDATE t2 SET b=55354 WHERE a=1718;\nUPDATE t2 SET b=32145 WHERE a=1719;\nUPDATE t2 SET b=44815 WHERE a=1720;\nUPDATE t2 SET b=61207 WHERE a=1721;\nUPDATE t2 SET b=81112 WHERE a=1722;\nUPDATE t2 SET b=14553 WHERE a=1723;\nUPDATE t2 SET b=4543 WHERE a=1724;\nUPDATE t2 SET b=73284 WHERE a=1725;\nUPDATE t2 SET b=79034 WHERE a=1726;\nUPDATE t2 SET b=72896 WHERE a=1727;\nUPDATE t2 SET b=63701 WHERE a=1728;\nUPDATE t2 SET b=43828 WHERE a=1729;\nUPDATE t2 SET b=7318 WHERE a=1730;\nUPDATE t2 SET b=67353 WHERE a=1731;\nUPDATE t2 SET b=10494 WHERE a=1732;\nUPDATE t2 SET b=16229 WHERE a=1733;\nUPDATE t2 SET b=724 WHERE a=1734;\nUPDATE t2 SET b=48211 WHERE a=1735;\nUPDATE t2 SET b=59823 WHERE a=1736;\nUPDATE t2 SET b=22901 WHERE a=1737;\nUPDATE t2 SET b=97019 WHERE a=1738;\nUPDATE t2 SET b=38327 WHERE a=1739;\nUPDATE t2 SET b=95936 WHERE a=1740;\nUPDATE t2 SET b=4138 WHERE a=1741;\nUPDATE t2 SET b=57908 WHERE a=1742;\nUPDATE t2 SET b=3302 WHERE a=1743;\nUPDATE t2 SET b=45121 WHERE a=1744;\nUPDATE t2 SET b=37529 WHERE a=1745;\nUPDATE t2 SET b=67474 WHERE a=1746;\nUPDATE t2 SET b=56423 WHERE a=1747;\nUPDATE t2 SET b=19182 WHERE a=1748;\nUPDATE t2 SET b=25436 WHERE a=1749;\nUPDATE t2 SET b=2981 WHERE a=1750;\nUPDATE t2 SET b=13561 WHERE a=1751;\nUPDATE t2 SET b=65360 WHERE a=1752;\nUPDATE t2 SET b=1877 WHERE a=1753;\nUPDATE t2 SET b=31841 WHERE a=1754;\nUPDATE t2 SET b=63465 WHERE a=1755;\nUPDATE t2 SET b=17829 WHERE a=1756;\nUPDATE t2 SET b=83223 WHERE a=1757;\nUPDATE t2 SET b=78876 WHERE a=1758;\nUPDATE t2 SET b=67153 WHERE a=1759;\nUPDATE t2 SET b=2972 WHERE a=1760;\nUPDATE t2 SET b=15482 WHERE a=1761;\nUPDATE t2 SET b=40306 WHERE a=1762;\nUPDATE t2 SET b=98678 WHERE a=1763;\nUPDATE t2 SET b=41544 WHERE a=1764;\nUPDATE t2 SET b=20263 WHERE a=1765;\nUPDATE t2 SET b=80149 WHERE a=1766;\nUPDATE t2 SET b=48196 WHERE a=1767;\nUPDATE t2 SET b=47179 WHERE a=1768;\nUPDATE t2 SET b=79986 WHERE a=1769;\nUPDATE t2 SET b=39229 WHERE a=1770;\nUPDATE t2 SET b=53663 WHERE a=1771;\nUPDATE t2 SET b=2832 WHERE a=1772;\nUPDATE t2 SET b=33819 WHERE a=1773;\nUPDATE t2 SET b=2747 WHERE a=1774;\nUPDATE t2 SET b=28013 WHERE a=1775;\nUPDATE t2 SET b=12435 WHERE a=1776;\nUPDATE t2 SET b=1148 WHERE a=1777;\nUPDATE t2 SET b=33486 WHERE a=1778;\nUPDATE t2 SET b=55151 WHERE a=1779;\nUPDATE t2 SET b=78687 WHERE a=1780;\nUPDATE t2 SET b=96327 WHERE a=1781;\nUPDATE t2 SET b=51158 WHERE a=1782;\nUPDATE t2 SET b=45152 WHERE a=1783;\nUPDATE t2 SET b=64961 WHERE a=1784;\nUPDATE t2 SET b=66431 WHERE a=1785;\nUPDATE t2 SET b=88001 WHERE a=1786;\nUPDATE t2 SET b=73406 WHERE a=1787;\nUPDATE t2 SET b=39250 WHERE a=1788;\nUPDATE t2 SET b=24971 WHERE a=1789;\nUPDATE t2 SET b=8101 WHERE a=1790;\nUPDATE t2 SET b=35152 WHERE a=1791;\nUPDATE t2 SET b=43944 WHERE a=1792;\nUPDATE t2 SET b=23938 WHERE a=1793;\nUPDATE t2 SET b=63342 WHERE a=1794;\nUPDATE t2 SET b=94192 WHERE a=1795;\nUPDATE t2 SET b=33342 WHERE a=1796;\nUPDATE t2 SET b=79382 WHERE a=1797;\nUPDATE t2 SET b=94438 WHERE a=1798;\nUPDATE t2 SET b=89155 WHERE a=1799;\nUPDATE t2 SET b=38474 WHERE a=1800;\nUPDATE t2 SET b=63153 WHERE a=1801;\nUPDATE t2 SET b=50560 WHERE a=1802;\nUPDATE t2 SET b=20860 WHERE a=1803;\nUPDATE t2 SET b=49106 WHERE a=1804;\nUPDATE t2 SET b=71242 WHERE a=1805;\nUPDATE t2 SET b=92914 WHERE a=1806;\nUPDATE t2 SET b=29787 WHERE a=1807;\nUPDATE t2 SET b=69233 WHERE a=1808;\nUPDATE t2 SET b=75343 WHERE a=1809;\nUPDATE t2 SET b=86805 WHERE a=1810;\nUPDATE t2 SET b=59806 WHERE a=1811;\nUPDATE t2 SET b=58894 WHERE a=1812;\nUPDATE t2 SET b=10447 WHERE a=1813;\nUPDATE t2 SET b=23690 WHERE a=1814;\nUPDATE t2 SET b=52131 WHERE a=1815;\nUPDATE t2 SET b=87440 WHERE a=1816;\nUPDATE t2 SET b=30469 WHERE a=1817;\nUPDATE t2 SET b=31633 WHERE a=1818;\nUPDATE t2 SET b=10710 WHERE a=1819;\nUPDATE t2 SET b=49780 WHERE a=1820;\nUPDATE t2 SET b=50557 WHERE a=1821;\nUPDATE t2 SET b=4741 WHERE a=1822;\nUPDATE t2 SET b=14139 WHERE a=1823;\nUPDATE t2 SET b=20386 WHERE a=1824;\nUPDATE t2 SET b=7870 WHERE a=1825;\nUPDATE t2 SET b=52491 WHERE a=1826;\nUPDATE t2 SET b=14183 WHERE a=1827;\nUPDATE t2 SET b=25303 WHERE a=1828;\nUPDATE t2 SET b=69480 WHERE a=1829;\nUPDATE t2 SET b=74237 WHERE a=1830;\nUPDATE t2 SET b=53762 WHERE a=1831;\nUPDATE t2 SET b=16010 WHERE a=1832;\nUPDATE t2 SET b=5014 WHERE a=1833;\nUPDATE t2 SET b=99133 WHERE a=1834;\nUPDATE t2 SET b=98973 WHERE a=1835;\nUPDATE t2 SET b=12359 WHERE a=1836;\nUPDATE t2 SET b=44678 WHERE a=1837;\nUPDATE t2 SET b=2892 WHERE a=1838;\nUPDATE t2 SET b=3904 WHERE a=1839;\nUPDATE t2 SET b=51970 WHERE a=1840;\nUPDATE t2 SET b=82130 WHERE a=1841;\nUPDATE t2 SET b=36260 WHERE a=1842;\nUPDATE t2 SET b=59395 WHERE a=1843;\nUPDATE t2 SET b=87852 WHERE a=1844;\nUPDATE t2 SET b=75381 WHERE a=1845;\nUPDATE t2 SET b=40466 WHERE a=1846;\nUPDATE t2 SET b=33983 WHERE a=1847;\nUPDATE t2 SET b=83879 WHERE a=1848;\nUPDATE t2 SET b=20421 WHERE a=1849;\nUPDATE t2 SET b=54779 WHERE a=1850;\nUPDATE t2 SET b=79505 WHERE a=1851;\nUPDATE t2 SET b=49454 WHERE a=1852;\nUPDATE t2 SET b=2931 WHERE a=1853;\nUPDATE t2 SET b=55335 WHERE a=1854;\nUPDATE t2 SET b=20263 WHERE a=1855;\nUPDATE t2 SET b=93446 WHERE a=1856;\nUPDATE t2 SET b=74087 WHERE a=1857;\nUPDATE t2 SET b=42717 WHERE a=1858;\nUPDATE t2 SET b=99513 WHERE a=1859;\nUPDATE t2 SET b=65291 WHERE a=1860;\nUPDATE t2 SET b=92888 WHERE a=1861;\nUPDATE t2 SET b=65795 WHERE a=1862;\nUPDATE t2 SET b=11837 WHERE a=1863;\nUPDATE t2 SET b=84522 WHERE a=1864;\nUPDATE t2 SET b=58654 WHERE a=1865;\nUPDATE t2 SET b=96217 WHERE a=1866;\nUPDATE t2 SET b=35612 WHERE a=1867;\nUPDATE t2 SET b=36556 WHERE a=1868;\nUPDATE t2 SET b=4537 WHERE a=1869;\nUPDATE t2 SET b=31409 WHERE a=1870;\nUPDATE t2 SET b=11556 WHERE a=1871;\nUPDATE t2 SET b=89235 WHERE a=1872;\nUPDATE t2 SET b=24366 WHERE a=1873;\nUPDATE t2 SET b=75223 WHERE a=1874;\nUPDATE t2 SET b=16536 WHERE a=1875;\nUPDATE t2 SET b=60430 WHERE a=1876;\nUPDATE t2 SET b=12201 WHERE a=1877;\nUPDATE t2 SET b=67967 WHERE a=1878;\nUPDATE t2 SET b=69026 WHERE a=1879;\nUPDATE t2 SET b=77163 WHERE a=1880;\nUPDATE t2 SET b=51313 WHERE a=1881;\nUPDATE t2 SET b=52532 WHERE a=1882;\nUPDATE t2 SET b=21486 WHERE a=1883;\nUPDATE t2 SET b=22113 WHERE a=1884;\nUPDATE t2 SET b=24687 WHERE a=1885;\nUPDATE t2 SET b=72009 WHERE a=1886;\nUPDATE t2 SET b=18449 WHERE a=1887;\nUPDATE t2 SET b=70141 WHERE a=1888;\nUPDATE t2 SET b=67946 WHERE a=1889;\nUPDATE t2 SET b=93593 WHERE a=1890;\nUPDATE t2 SET b=92804 WHERE a=1891;\nUPDATE t2 SET b=80023 WHERE a=1892;\nUPDATE t2 SET b=85625 WHERE a=1893;\nUPDATE t2 SET b=67915 WHERE a=1894;\nUPDATE t2 SET b=78104 WHERE a=1895;\nUPDATE t2 SET b=74225 WHERE a=1896;\nUPDATE t2 SET b=28903 WHERE a=1897;\nUPDATE t2 SET b=29423 WHERE a=1898;\nUPDATE t2 SET b=84283 WHERE a=1899;\nUPDATE t2 SET b=37231 WHERE a=1900;\nUPDATE t2 SET b=93509 WHERE a=1901;\nUPDATE t2 SET b=92796 WHERE a=1902;\nUPDATE t2 SET b=65684 WHERE a=1903;\nUPDATE t2 SET b=49246 WHERE a=1904;\nUPDATE t2 SET b=37400 WHERE a=1905;\nUPDATE t2 SET b=70503 WHERE a=1906;\nUPDATE t2 SET b=82976 WHERE a=1907;\nUPDATE t2 SET b=30074 WHERE a=1908;\nUPDATE t2 SET b=17497 WHERE a=1909;\nUPDATE t2 SET b=59390 WHERE a=1910;\nUPDATE t2 SET b=4100 WHERE a=1911;\nUPDATE t2 SET b=37529 WHERE a=1912;\nUPDATE t2 SET b=64603 WHERE a=1913;\nUPDATE t2 SET b=94944 WHERE a=1914;\nUPDATE t2 SET b=20039 WHERE a=1915;\nUPDATE t2 SET b=52834 WHERE a=1916;\nUPDATE t2 SET b=79146 WHERE a=1917;\nUPDATE t2 SET b=62904 WHERE a=1918;\nUPDATE t2 SET b=97240 WHERE a=1919;\nUPDATE t2 SET b=37218 WHERE a=1920;\nUPDATE t2 SET b=31305 WHERE a=1921;\nUPDATE t2 SET b=37187 WHERE a=1922;\nUPDATE t2 SET b=64977 WHERE a=1923;\nUPDATE t2 SET b=32476 WHERE a=1924;\nUPDATE t2 SET b=95732 WHERE a=1925;\nUPDATE t2 SET b=9338 WHERE a=1926;\nUPDATE t2 SET b=5130 WHERE a=1927;\nUPDATE t2 SET b=55313 WHERE a=1928;\nUPDATE t2 SET b=88679 WHERE a=1929;\nUPDATE t2 SET b=96427 WHERE a=1930;\nUPDATE t2 SET b=26450 WHERE a=1931;\nUPDATE t2 SET b=33107 WHERE a=1932;\nUPDATE t2 SET b=65529 WHERE a=1933;\nUPDATE t2 SET b=27795 WHERE a=1934;\nUPDATE t2 SET b=32174 WHERE a=1935;\nUPDATE t2 SET b=69320 WHERE a=1936;\nUPDATE t2 SET b=95096 WHERE a=1937;\nUPDATE t2 SET b=68238 WHERE a=1938;\nUPDATE t2 SET b=61843 WHERE a=1939;\nUPDATE t2 SET b=37722 WHERE a=1940;\nUPDATE t2 SET b=8401 WHERE a=1941;\nUPDATE t2 SET b=38849 WHERE a=1942;\nUPDATE t2 SET b=65880 WHERE a=1943;\nUPDATE t2 SET b=86725 WHERE a=1944;\nUPDATE t2 SET b=30397 WHERE a=1945;\nUPDATE t2 SET b=93321 WHERE a=1946;\nUPDATE t2 SET b=57680 WHERE a=1947;\nUPDATE t2 SET b=4174 WHERE a=1948;\nUPDATE t2 SET b=3722 WHERE a=1949;\nUPDATE t2 SET b=5330 WHERE a=1950;\nUPDATE t2 SET b=17637 WHERE a=1951;\nUPDATE t2 SET b=57254 WHERE a=1952;\nUPDATE t2 SET b=50233 WHERE a=1953;\nUPDATE t2 SET b=36668 WHERE a=1954;\nUPDATE t2 SET b=25452 WHERE a=1955;\nUPDATE t2 SET b=83902 WHERE a=1956;\nUPDATE t2 SET b=76343 WHERE a=1957;\nUPDATE t2 SET b=1634 WHERE a=1958;\nUPDATE t2 SET b=85478 WHERE a=1959;\nUPDATE t2 SET b=32573 WHERE a=1960;\nUPDATE t2 SET b=37391 WHERE a=1961;\nUPDATE t2 SET b=83778 WHERE a=1962;\nUPDATE t2 SET b=19577 WHERE a=1963;\nUPDATE t2 SET b=54530 WHERE a=1964;\nUPDATE t2 SET b=97107 WHERE a=1965;\nUPDATE t2 SET b=81565 WHERE a=1966;\nUPDATE t2 SET b=62876 WHERE a=1967;\nUPDATE t2 SET b=27671 WHERE a=1968;\nUPDATE t2 SET b=50776 WHERE a=1969;\nUPDATE t2 SET b=38974 WHERE a=1970;\nUPDATE t2 SET b=35548 WHERE a=1971;\nUPDATE t2 SET b=15158 WHERE a=1972;\nUPDATE t2 SET b=63009 WHERE a=1973;\nUPDATE t2 SET b=71243 WHERE a=1974;\nUPDATE t2 SET b=64453 WHERE a=1975;\nUPDATE t2 SET b=84873 WHERE a=1976;\nUPDATE t2 SET b=71035 WHERE a=1977;\nUPDATE t2 SET b=14499 WHERE a=1978;\nUPDATE t2 SET b=74951 WHERE a=1979;\nUPDATE t2 SET b=52764 WHERE a=1980;\nUPDATE t2 SET b=9891 WHERE a=1981;\nUPDATE t2 SET b=33542 WHERE a=1982;\nUPDATE t2 SET b=6222 WHERE a=1983;\nUPDATE t2 SET b=21912 WHERE a=1984;\nUPDATE t2 SET b=10715 WHERE a=1985;\nUPDATE t2 SET b=97857 WHERE a=1986;\nUPDATE t2 SET b=10594 WHERE a=1987;\nUPDATE t2 SET b=4448 WHERE a=1988;\nUPDATE t2 SET b=66137 WHERE a=1989;\nUPDATE t2 SET b=37487 WHERE a=1990;\nUPDATE t2 SET b=31104 WHERE a=1991;\nUPDATE t2 SET b=39110 WHERE a=1992;\nUPDATE t2 SET b=12660 WHERE a=1993;\nUPDATE t2 SET b=75411 WHERE a=1994;\nUPDATE t2 SET b=81495 WHERE a=1995;\nUPDATE t2 SET b=37488 WHERE a=1996;\nUPDATE t2 SET b=34744 WHERE a=1997;\nUPDATE t2 SET b=84261 WHERE a=1998;\nUPDATE t2 SET b=56171 WHERE a=1999;\nUPDATE t2 SET b=91319 WHERE a=2000;\nUPDATE t2 SET b=77530 WHERE a=2001;\nUPDATE t2 SET b=80060 WHERE a=2002;\nUPDATE t2 SET b=39720 WHERE a=2003;\nUPDATE t2 SET b=31239 WHERE a=2004;\nUPDATE t2 SET b=13046 WHERE a=2005;\nUPDATE t2 SET b=66703 WHERE a=2006;\nUPDATE t2 SET b=84357 WHERE a=2007;\nUPDATE t2 SET b=53804 WHERE a=2008;\nUPDATE t2 SET b=21405 WHERE a=2009;\nUPDATE t2 SET b=66932 WHERE a=2010;\nUPDATE t2 SET b=97541 WHERE a=2011;\nUPDATE t2 SET b=12780 WHERE a=2012;\nUPDATE t2 SET b=35119 WHERE a=2013;\nUPDATE t2 SET b=81237 WHERE a=2014;\nUPDATE t2 SET b=70091 WHERE a=2015;\nUPDATE t2 SET b=15688 WHERE a=2016;\nUPDATE t2 SET b=49489 WHERE a=2017;\nUPDATE t2 SET b=64308 WHERE a=2018;\nUPDATE t2 SET b=9797 WHERE a=2019;\nUPDATE t2 SET b=70472 WHERE a=2020;\nUPDATE t2 SET b=84251 WHERE a=2021;\nUPDATE t2 SET b=9826 WHERE a=2022;\nUPDATE t2 SET b=83078 WHERE a=2023;\nUPDATE t2 SET b=76214 WHERE a=2024;\nUPDATE t2 SET b=65906 WHERE a=2025;\nUPDATE t2 SET b=68776 WHERE a=2026;\nUPDATE t2 SET b=38925 WHERE a=2027;\nUPDATE t2 SET b=54330 WHERE a=2028;\nUPDATE t2 SET b=30722 WHERE a=2029;\nUPDATE t2 SET b=18597 WHERE a=2030;\nUPDATE t2 SET b=27265 WHERE a=2031;\nUPDATE t2 SET b=48581 WHERE a=2032;\nUPDATE t2 SET b=57884 WHERE a=2033;\nUPDATE t2 SET b=90533 WHERE a=2034;\nUPDATE t2 SET b=67524 WHERE a=2035;\nUPDATE t2 SET b=26633 WHERE a=2036;\nUPDATE t2 SET b=48502 WHERE a=2037;\nUPDATE t2 SET b=86188 WHERE a=2038;\nUPDATE t2 SET b=38123 WHERE a=2039;\nUPDATE t2 SET b=44510 WHERE a=2040;\nUPDATE t2 SET b=16432 WHERE a=2041;\nUPDATE t2 SET b=24092 WHERE a=2042;\nUPDATE t2 SET b=26438 WHERE a=2043;\nUPDATE t2 SET b=58177 WHERE a=2044;\nUPDATE t2 SET b=64902 WHERE a=2045;\nUPDATE t2 SET b=71038 WHERE a=2046;\nUPDATE t2 SET b=70628 WHERE a=2047;\nUPDATE t2 SET b=39286 WHERE a=2048;\nUPDATE t2 SET b=52722 WHERE a=2049;\nUPDATE t2 SET b=99691 WHERE a=2050;\nUPDATE t2 SET b=42810 WHERE a=2051;\nUPDATE t2 SET b=37484 WHERE a=2052;\nUPDATE t2 SET b=94576 WHERE a=2053;\nUPDATE t2 SET b=15859 WHERE a=2054;\nUPDATE t2 SET b=89081 WHERE a=2055;\nUPDATE t2 SET b=23658 WHERE a=2056;\nUPDATE t2 SET b=63383 WHERE a=2057;\nUPDATE t2 SET b=99170 WHERE a=2058;\nUPDATE t2 SET b=50974 WHERE a=2059;\nUPDATE t2 SET b=68414 WHERE a=2060;\nUPDATE t2 SET b=47379 WHERE a=2061;\nUPDATE t2 SET b=28871 WHERE a=2062;\nUPDATE t2 SET b=76260 WHERE a=2063;\nUPDATE t2 SET b=29624 WHERE a=2064;\nUPDATE t2 SET b=14322 WHERE a=2065;\nUPDATE t2 SET b=39038 WHERE a=2066;\nUPDATE t2 SET b=41124 WHERE a=2067;\nUPDATE t2 SET b=20050 WHERE a=2068;\nUPDATE t2 SET b=95876 WHERE a=2069;\nUPDATE t2 SET b=1361 WHERE a=2070;\nUPDATE t2 SET b=56669 WHERE a=2071;\nUPDATE t2 SET b=33877 WHERE a=2072;\nUPDATE t2 SET b=80305 WHERE a=2073;\nUPDATE t2 SET b=39980 WHERE a=2074;\nUPDATE t2 SET b=86704 WHERE a=2075;\nUPDATE t2 SET b=48587 WHERE a=2076;\nUPDATE t2 SET b=31370 WHERE a=2077;\nUPDATE t2 SET b=36187 WHERE a=2078;\nUPDATE t2 SET b=60655 WHERE a=2079;\nUPDATE t2 SET b=80717 WHERE a=2080;\nUPDATE t2 SET b=28264 WHERE a=2081;\nUPDATE t2 SET b=60619 WHERE a=2082;\nUPDATE t2 SET b=78611 WHERE a=2083;\nUPDATE t2 SET b=85619 WHERE a=2084;\nUPDATE t2 SET b=59224 WHERE a=2085;\nUPDATE t2 SET b=28749 WHERE a=2086;\nUPDATE t2 SET b=52813 WHERE a=2087;\nUPDATE t2 SET b=70662 WHERE a=2088;\nUPDATE t2 SET b=63368 WHERE a=2089;\nUPDATE t2 SET b=47500 WHERE a=2090;\nUPDATE t2 SET b=7978 WHERE a=2091;\nUPDATE t2 SET b=17010 WHERE a=2092;\nUPDATE t2 SET b=82829 WHERE a=2093;\nUPDATE t2 SET b=77423 WHERE a=2094;\nUPDATE t2 SET b=70582 WHERE a=2095;\nUPDATE t2 SET b=99240 WHERE a=2096;\nUPDATE t2 SET b=34980 WHERE a=2097;\nUPDATE t2 SET b=42243 WHERE a=2098;\nUPDATE t2 SET b=2833 WHERE a=2099;\nUPDATE t2 SET b=21494 WHERE a=2100;\nUPDATE t2 SET b=68020 WHERE a=2101;\nUPDATE t2 SET b=18877 WHERE a=2102;\nUPDATE t2 SET b=25929 WHERE a=2103;\nUPDATE t2 SET b=80543 WHERE a=2104;\nUPDATE t2 SET b=87869 WHERE a=2105;\nUPDATE t2 SET b=54905 WHERE a=2106;\nUPDATE t2 SET b=6709 WHERE a=2107;\nUPDATE t2 SET b=30639 WHERE a=2108;\nUPDATE t2 SET b=55388 WHERE a=2109;\nUPDATE t2 SET b=7999 WHERE a=2110;\nUPDATE t2 SET b=77204 WHERE a=2111;\nUPDATE t2 SET b=44651 WHERE a=2112;\nUPDATE t2 SET b=78549 WHERE a=2113;\nUPDATE t2 SET b=78296 WHERE a=2114;\nUPDATE t2 SET b=15586 WHERE a=2115;\nUPDATE t2 SET b=92896 WHERE a=2116;\nUPDATE t2 SET b=11917 WHERE a=2117;\nUPDATE t2 SET b=46128 WHERE a=2118;\nUPDATE t2 SET b=40806 WHERE a=2119;\nUPDATE t2 SET b=9751 WHERE a=2120;\nUPDATE t2 SET b=4686 WHERE a=2121;\nUPDATE t2 SET b=17317 WHERE a=2122;\nUPDATE t2 SET b=1394 WHERE a=2123;\nUPDATE t2 SET b=48532 WHERE a=2124;\nUPDATE t2 SET b=92069 WHERE a=2125;\nUPDATE t2 SET b=9832 WHERE a=2126;\nUPDATE t2 SET b=25171 WHERE a=2127;\nUPDATE t2 SET b=43074 WHERE a=2128;\nUPDATE t2 SET b=2943 WHERE a=2129;\nUPDATE t2 SET b=67134 WHERE a=2130;\nUPDATE t2 SET b=56114 WHERE a=2131;\nUPDATE t2 SET b=92655 WHERE a=2132;\nUPDATE t2 SET b=97279 WHERE a=2133;\nUPDATE t2 SET b=94407 WHERE a=2134;\nUPDATE t2 SET b=21907 WHERE a=2135;\nUPDATE t2 SET b=11089 WHERE a=2136;\nUPDATE t2 SET b=13620 WHERE a=2137;\nUPDATE t2 SET b=40007 WHERE a=2138;\nUPDATE t2 SET b=71803 WHERE a=2139;\nUPDATE t2 SET b=25828 WHERE a=2140;\nUPDATE t2 SET b=32382 WHERE a=2141;\nUPDATE t2 SET b=99111 WHERE a=2142;\nUPDATE t2 SET b=14986 WHERE a=2143;\nUPDATE t2 SET b=48155 WHERE a=2144;\nUPDATE t2 SET b=5974 WHERE a=2145;\nUPDATE t2 SET b=29208 WHERE a=2146;\nUPDATE t2 SET b=61140 WHERE a=2147;\nUPDATE t2 SET b=13909 WHERE a=2148;\nUPDATE t2 SET b=99199 WHERE a=2149;\nUPDATE t2 SET b=70312 WHERE a=2150;\nUPDATE t2 SET b=25552 WHERE a=2151;\nUPDATE t2 SET b=61493 WHERE a=2152;\nUPDATE t2 SET b=62195 WHERE a=2153;\nUPDATE t2 SET b=19107 WHERE a=2154;\nUPDATE t2 SET b=41454 WHERE a=2155;\nUPDATE t2 SET b=55147 WHERE a=2156;\nUPDATE t2 SET b=17982 WHERE a=2157;\nUPDATE t2 SET b=52311 WHERE a=2158;\nUPDATE t2 SET b=17760 WHERE a=2159;\nUPDATE t2 SET b=4720 WHERE a=2160;\nUPDATE t2 SET b=1432 WHERE a=2161;\nUPDATE t2 SET b=51173 WHERE a=2162;\nUPDATE t2 SET b=1411 WHERE a=2163;\nUPDATE t2 SET b=55164 WHERE a=2164;\nUPDATE t2 SET b=2356 WHERE a=2165;\nUPDATE t2 SET b=94117 WHERE a=2166;\nUPDATE t2 SET b=81522 WHERE a=2167;\nUPDATE t2 SET b=71824 WHERE a=2168;\nUPDATE t2 SET b=6537 WHERE a=2169;\nUPDATE t2 SET b=27707 WHERE a=2170;\nUPDATE t2 SET b=71121 WHERE a=2171;\nUPDATE t2 SET b=59042 WHERE a=2172;\nUPDATE t2 SET b=59019 WHERE a=2173;\nUPDATE t2 SET b=67786 WHERE a=2174;\nUPDATE t2 SET b=65842 WHERE a=2175;\nUPDATE t2 SET b=40228 WHERE a=2176;\nUPDATE t2 SET b=58283 WHERE a=2177;\nUPDATE t2 SET b=12024 WHERE a=2178;\nUPDATE t2 SET b=34988 WHERE a=2179;\nUPDATE t2 SET b=88438 WHERE a=2180;\nUPDATE t2 SET b=30589 WHERE a=2181;\nUPDATE t2 SET b=57710 WHERE a=2182;\nUPDATE t2 SET b=50559 WHERE a=2183;\nUPDATE t2 SET b=77033 WHERE a=2184;\nUPDATE t2 SET b=19073 WHERE a=2185;\nUPDATE t2 SET b=85646 WHERE a=2186;\nUPDATE t2 SET b=29335 WHERE a=2187;\nUPDATE t2 SET b=56804 WHERE a=2188;\nUPDATE t2 SET b=77177 WHERE a=2189;\nUPDATE t2 SET b=80070 WHERE a=2190;\nUPDATE t2 SET b=93915 WHERE a=2191;\nUPDATE t2 SET b=15983 WHERE a=2192;\nUPDATE t2 SET b=55117 WHERE a=2193;\nUPDATE t2 SET b=42947 WHERE a=2194;\nUPDATE t2 SET b=75227 WHERE a=2195;\nUPDATE t2 SET b=36258 WHERE a=2196;\nUPDATE t2 SET b=74799 WHERE a=2197;\nUPDATE t2 SET b=80915 WHERE a=2198;\nUPDATE t2 SET b=31039 WHERE a=2199;\nUPDATE t2 SET b=45438 WHERE a=2200;\nUPDATE t2 SET b=61043 WHERE a=2201;\nUPDATE t2 SET b=26322 WHERE a=2202;\nUPDATE t2 SET b=39155 WHERE a=2203;\nUPDATE t2 SET b=59991 WHERE a=2204;\nUPDATE t2 SET b=61272 WHERE a=2205;\nUPDATE t2 SET b=10242 WHERE a=2206;\nUPDATE t2 SET b=35119 WHERE a=2207;\nUPDATE t2 SET b=71806 WHERE a=2208;\nUPDATE t2 SET b=10339 WHERE a=2209;\nUPDATE t2 SET b=49046 WHERE a=2210;\nUPDATE t2 SET b=96317 WHERE a=2211;\nUPDATE t2 SET b=87846 WHERE a=2212;\nUPDATE t2 SET b=31596 WHERE a=2213;\nUPDATE t2 SET b=3906 WHERE a=2214;\nUPDATE t2 SET b=69886 WHERE a=2215;\nUPDATE t2 SET b=82998 WHERE a=2216;\nUPDATE t2 SET b=26344 WHERE a=2217;\nUPDATE t2 SET b=84208 WHERE a=2218;\nUPDATE t2 SET b=9805 WHERE a=2219;\nUPDATE t2 SET b=72321 WHERE a=2220;\nUPDATE t2 SET b=31803 WHERE a=2221;\nUPDATE t2 SET b=34282 WHERE a=2222;\nUPDATE t2 SET b=61721 WHERE a=2223;\nUPDATE t2 SET b=88823 WHERE a=2224;\nUPDATE t2 SET b=85825 WHERE a=2225;\nUPDATE t2 SET b=30561 WHERE a=2226;\nUPDATE t2 SET b=37485 WHERE a=2227;\nUPDATE t2 SET b=37415 WHERE a=2228;\nUPDATE t2 SET b=56797 WHERE a=2229;\nUPDATE t2 SET b=18081 WHERE a=2230;\nUPDATE t2 SET b=47667 WHERE a=2231;\nUPDATE t2 SET b=40082 WHERE a=2232;\nUPDATE t2 SET b=13168 WHERE a=2233;\nUPDATE t2 SET b=20115 WHERE a=2234;\nUPDATE t2 SET b=1282 WHERE a=2235;\nUPDATE t2 SET b=23327 WHERE a=2236;\nUPDATE t2 SET b=30075 WHERE a=2237;\nUPDATE t2 SET b=55795 WHERE a=2238;\nUPDATE t2 SET b=83614 WHERE a=2239;\nUPDATE t2 SET b=76017 WHERE a=2240;\nUPDATE t2 SET b=21726 WHERE a=2241;\nUPDATE t2 SET b=79299 WHERE a=2242;\nUPDATE t2 SET b=50402 WHERE a=2243;\nUPDATE t2 SET b=37957 WHERE a=2244;\nUPDATE t2 SET b=16815 WHERE a=2245;\nUPDATE t2 SET b=42748 WHERE a=2246;\nUPDATE t2 SET b=5573 WHERE a=2247;\nUPDATE t2 SET b=41044 WHERE a=2248;\nUPDATE t2 SET b=5639 WHERE a=2249;\nUPDATE t2 SET b=41607 WHERE a=2250;\nUPDATE t2 SET b=98710 WHERE a=2251;\nUPDATE t2 SET b=90258 WHERE a=2252;\nUPDATE t2 SET b=37061 WHERE a=2253;\nUPDATE t2 SET b=24722 WHERE a=2254;\nUPDATE t2 SET b=58489 WHERE a=2255;\nUPDATE t2 SET b=11123 WHERE a=2256;\nUPDATE t2 SET b=83187 WHERE a=2257;\nUPDATE t2 SET b=36203 WHERE a=2258;\nUPDATE t2 SET b=97273 WHERE a=2259;\nUPDATE t2 SET b=9542 WHERE a=2260;\nUPDATE t2 SET b=76079 WHERE a=2261;\nUPDATE t2 SET b=79711 WHERE a=2262;\nUPDATE t2 SET b=45490 WHERE a=2263;\nUPDATE t2 SET b=62990 WHERE a=2264;\nUPDATE t2 SET b=86011 WHERE a=2265;\nUPDATE t2 SET b=91763 WHERE a=2266;\nUPDATE t2 SET b=62810 WHERE a=2267;\nUPDATE t2 SET b=53037 WHERE a=2268;\nUPDATE t2 SET b=58487 WHERE a=2269;\nUPDATE t2 SET b=90746 WHERE a=2270;\nUPDATE t2 SET b=14999 WHERE a=2271;\nUPDATE t2 SET b=83721 WHERE a=2272;\nUPDATE t2 SET b=32898 WHERE a=2273;\nUPDATE t2 SET b=99156 WHERE a=2274;\nUPDATE t2 SET b=43807 WHERE a=2275;\nUPDATE t2 SET b=71760 WHERE a=2276;\nUPDATE t2 SET b=85906 WHERE a=2277;\nUPDATE t2 SET b=43052 WHERE a=2278;\nUPDATE t2 SET b=74756 WHERE a=2279;\nUPDATE t2 SET b=70042 WHERE a=2280;\nUPDATE t2 SET b=64430 WHERE a=2281;\nUPDATE t2 SET b=4101 WHERE a=2282;\nUPDATE t2 SET b=53910 WHERE a=2283;\nUPDATE t2 SET b=27983 WHERE a=2284;\nUPDATE t2 SET b=17957 WHERE a=2285;\nUPDATE t2 SET b=18304 WHERE a=2286;\nUPDATE t2 SET b=89445 WHERE a=2287;\nUPDATE t2 SET b=25885 WHERE a=2288;\nUPDATE t2 SET b=29332 WHERE a=2289;\nUPDATE t2 SET b=76237 WHERE a=2290;\nUPDATE t2 SET b=15352 WHERE a=2291;\nUPDATE t2 SET b=93073 WHERE a=2292;\nUPDATE t2 SET b=65797 WHERE a=2293;\nUPDATE t2 SET b=71949 WHERE a=2294;\nUPDATE t2 SET b=14594 WHERE a=2295;\nUPDATE t2 SET b=50947 WHERE a=2296;\nUPDATE t2 SET b=35436 WHERE a=2297;\nUPDATE t2 SET b=76372 WHERE a=2298;\nUPDATE t2 SET b=4282 WHERE a=2299;\nUPDATE t2 SET b=89059 WHERE a=2300;\nUPDATE t2 SET b=51709 WHERE a=2301;\nUPDATE t2 SET b=43391 WHERE a=2302;\nUPDATE t2 SET b=51689 WHERE a=2303;\nUPDATE t2 SET b=58678 WHERE a=2304;\nUPDATE t2 SET b=79352 WHERE a=2305;\nUPDATE t2 SET b=68746 WHERE a=2306;\nUPDATE t2 SET b=71527 WHERE a=2307;\nUPDATE t2 SET b=7027 WHERE a=2308;\nUPDATE t2 SET b=94663 WHERE a=2309;\nUPDATE t2 SET b=70956 WHERE a=2310;\nUPDATE t2 SET b=2888 WHERE a=2311;\nUPDATE t2 SET b=51747 WHERE a=2312;\nUPDATE t2 SET b=46242 WHERE a=2313;\nUPDATE t2 SET b=38536 WHERE a=2314;\nUPDATE t2 SET b=50034 WHERE a=2315;\nUPDATE t2 SET b=4887 WHERE a=2316;\nUPDATE t2 SET b=16587 WHERE a=2317;\nUPDATE t2 SET b=36870 WHERE a=2318;\nUPDATE t2 SET b=80386 WHERE a=2319;\nUPDATE t2 SET b=52621 WHERE a=2320;\nUPDATE t2 SET b=87757 WHERE a=2321;\nUPDATE t2 SET b=21630 WHERE a=2322;\nUPDATE t2 SET b=25039 WHERE a=2323;\nUPDATE t2 SET b=81062 WHERE a=2324;\nUPDATE t2 SET b=87365 WHERE a=2325;\nUPDATE t2 SET b=16749 WHERE a=2326;\nUPDATE t2 SET b=33369 WHERE a=2327;\nUPDATE t2 SET b=3427 WHERE a=2328;\nUPDATE t2 SET b=59457 WHERE a=2329;\nUPDATE t2 SET b=89583 WHERE a=2330;\nUPDATE t2 SET b=49237 WHERE a=2331;\nUPDATE t2 SET b=87284 WHERE a=2332;\nUPDATE t2 SET b=19306 WHERE a=2333;\nUPDATE t2 SET b=44142 WHERE a=2334;\nUPDATE t2 SET b=75222 WHERE a=2335;\nUPDATE t2 SET b=26880 WHERE a=2336;\nUPDATE t2 SET b=80202 WHERE a=2337;\nUPDATE t2 SET b=36224 WHERE a=2338;\nUPDATE t2 SET b=30686 WHERE a=2339;\nUPDATE t2 SET b=16715 WHERE a=2340;\nUPDATE t2 SET b=17906 WHERE a=2341;\nUPDATE t2 SET b=54821 WHERE a=2342;\nUPDATE t2 SET b=74410 WHERE a=2343;\nUPDATE t2 SET b=4617 WHERE a=2344;\nUPDATE t2 SET b=25294 WHERE a=2345;\nUPDATE t2 SET b=30226 WHERE a=2346;\nUPDATE t2 SET b=77152 WHERE a=2347;\nUPDATE t2 SET b=6199 WHERE a=2348;\nUPDATE t2 SET b=4010 WHERE a=2349;\nUPDATE t2 SET b=35817 WHERE a=2350;\nUPDATE t2 SET b=94072 WHERE a=2351;\nUPDATE t2 SET b=19721 WHERE a=2352;\nUPDATE t2 SET b=17377 WHERE a=2353;\nUPDATE t2 SET b=97091 WHERE a=2354;\nUPDATE t2 SET b=20618 WHERE a=2355;\nUPDATE t2 SET b=83618 WHERE a=2356;\nUPDATE t2 SET b=50499 WHERE a=2357;\nUPDATE t2 SET b=40208 WHERE a=2358;\nUPDATE t2 SET b=48683 WHERE a=2359;\nUPDATE t2 SET b=68869 WHERE a=2360;\nUPDATE t2 SET b=39766 WHERE a=2361;\nUPDATE t2 SET b=56288 WHERE a=2362;\nUPDATE t2 SET b=30121 WHERE a=2363;\nUPDATE t2 SET b=43638 WHERE a=2364;\nUPDATE t2 SET b=70617 WHERE a=2365;\nUPDATE t2 SET b=98855 WHERE a=2366;\nUPDATE t2 SET b=46211 WHERE a=2367;\nUPDATE t2 SET b=50440 WHERE a=2368;\nUPDATE t2 SET b=14246 WHERE a=2369;\nUPDATE t2 SET b=80049 WHERE a=2370;\nUPDATE t2 SET b=82495 WHERE a=2371;\nUPDATE t2 SET b=57475 WHERE a=2372;\nUPDATE t2 SET b=72133 WHERE a=2373;\nUPDATE t2 SET b=69332 WHERE a=2374;\nUPDATE t2 SET b=33241 WHERE a=2375;\nUPDATE t2 SET b=57149 WHERE a=2376;\nUPDATE t2 SET b=22568 WHERE a=2377;\nUPDATE t2 SET b=7282 WHERE a=2378;\nUPDATE t2 SET b=58213 WHERE a=2379;\nUPDATE t2 SET b=91539 WHERE a=2380;\nUPDATE t2 SET b=42062 WHERE a=2381;\nUPDATE t2 SET b=72957 WHERE a=2382;\nUPDATE t2 SET b=98309 WHERE a=2383;\nUPDATE t2 SET b=35597 WHERE a=2384;\nUPDATE t2 SET b=7877 WHERE a=2385;\nUPDATE t2 SET b=9633 WHERE a=2386;\nUPDATE t2 SET b=51686 WHERE a=2387;\nUPDATE t2 SET b=93786 WHERE a=2388;\nUPDATE t2 SET b=65135 WHERE a=2389;\nUPDATE t2 SET b=90859 WHERE a=2390;\nUPDATE t2 SET b=77915 WHERE a=2391;\nUPDATE t2 SET b=44276 WHERE a=2392;\nUPDATE t2 SET b=98364 WHERE a=2393;\nUPDATE t2 SET b=75112 WHERE a=2394;\nUPDATE t2 SET b=63871 WHERE a=2395;\nUPDATE t2 SET b=87258 WHERE a=2396;\nUPDATE t2 SET b=25693 WHERE a=2397;\nUPDATE t2 SET b=34926 WHERE a=2398;\nUPDATE t2 SET b=64993 WHERE a=2399;\nUPDATE t2 SET b=52425 WHERE a=2400;\nUPDATE t2 SET b=27407 WHERE a=2401;\nUPDATE t2 SET b=76700 WHERE a=2402;\nUPDATE t2 SET b=62790 WHERE a=2403;\nUPDATE t2 SET b=20223 WHERE a=2404;\nUPDATE t2 SET b=85992 WHERE a=2405;\nUPDATE t2 SET b=99264 WHERE a=2406;\nUPDATE t2 SET b=24598 WHERE a=2407;\nUPDATE t2 SET b=62506 WHERE a=2408;\nUPDATE t2 SET b=92113 WHERE a=2409;\nUPDATE t2 SET b=86374 WHERE a=2410;\nUPDATE t2 SET b=13271 WHERE a=2411;\nUPDATE t2 SET b=11755 WHERE a=2412;\nUPDATE t2 SET b=79023 WHERE a=2413;\nUPDATE t2 SET b=14552 WHERE a=2414;\nUPDATE t2 SET b=37506 WHERE a=2415;\nUPDATE t2 SET b=87454 WHERE a=2416;\nUPDATE t2 SET b=1577 WHERE a=2417;\nUPDATE t2 SET b=33973 WHERE a=2418;\nUPDATE t2 SET b=11240 WHERE a=2419;\nUPDATE t2 SET b=39497 WHERE a=2420;\nUPDATE t2 SET b=36436 WHERE a=2421;\nUPDATE t2 SET b=66300 WHERE a=2422;\nUPDATE t2 SET b=69506 WHERE a=2423;\nUPDATE t2 SET b=11303 WHERE a=2424;\nUPDATE t2 SET b=94587 WHERE a=2425;\nUPDATE t2 SET b=86566 WHERE a=2426;\nUPDATE t2 SET b=70651 WHERE a=2427;\nUPDATE t2 SET b=77317 WHERE a=2428;\nUPDATE t2 SET b=9179 WHERE a=2429;\nUPDATE t2 SET b=53124 WHERE a=2430;\nUPDATE t2 SET b=31889 WHERE a=2431;\nUPDATE t2 SET b=20881 WHERE a=2432;\nUPDATE t2 SET b=53887 WHERE a=2433;\nUPDATE t2 SET b=19994 WHERE a=2434;\nUPDATE t2 SET b=653 WHERE a=2435;\nUPDATE t2 SET b=2085 WHERE a=2436;\nUPDATE t2 SET b=79395 WHERE a=2437;\nUPDATE t2 SET b=98727 WHERE a=2438;\nUPDATE t2 SET b=73481 WHERE a=2439;\nUPDATE t2 SET b=91671 WHERE a=2440;\nUPDATE t2 SET b=341 WHERE a=2441;\nUPDATE t2 SET b=78062 WHERE a=2442;\nUPDATE t2 SET b=34283 WHERE a=2443;\nUPDATE t2 SET b=77604 WHERE a=2444;\nUPDATE t2 SET b=17590 WHERE a=2445;\nUPDATE t2 SET b=40947 WHERE a=2446;\nUPDATE t2 SET b=9392 WHERE a=2447;\nUPDATE t2 SET b=79099 WHERE a=2448;\nUPDATE t2 SET b=45996 WHERE a=2449;\nUPDATE t2 SET b=62747 WHERE a=2450;\nUPDATE t2 SET b=25230 WHERE a=2451;\nUPDATE t2 SET b=23182 WHERE a=2452;\nUPDATE t2 SET b=93046 WHERE a=2453;\nUPDATE t2 SET b=25865 WHERE a=2454;\nUPDATE t2 SET b=88775 WHERE a=2455;\nUPDATE t2 SET b=85250 WHERE a=2456;\nUPDATE t2 SET b=83400 WHERE a=2457;\nUPDATE t2 SET b=1291 WHERE a=2458;\nUPDATE t2 SET b=98570 WHERE a=2459;\nUPDATE t2 SET b=99065 WHERE a=2460;\nUPDATE t2 SET b=17860 WHERE a=2461;\nUPDATE t2 SET b=81452 WHERE a=2462;\nUPDATE t2 SET b=37701 WHERE a=2463;\nUPDATE t2 SET b=37357 WHERE a=2464;\nUPDATE t2 SET b=94936 WHERE a=2465;\nUPDATE t2 SET b=39636 WHERE a=2466;\nUPDATE t2 SET b=28795 WHERE a=2467;\nUPDATE t2 SET b=75247 WHERE a=2468;\nUPDATE t2 SET b=50975 WHERE a=2469;\nUPDATE t2 SET b=78020 WHERE a=2470;\nUPDATE t2 SET b=90600 WHERE a=2471;\nUPDATE t2 SET b=57640 WHERE a=2472;\nUPDATE t2 SET b=80403 WHERE a=2473;\nUPDATE t2 SET b=25328 WHERE a=2474;\nUPDATE t2 SET b=69787 WHERE a=2475;\nUPDATE t2 SET b=12407 WHERE a=2476;\nUPDATE t2 SET b=78732 WHERE a=2477;\nUPDATE t2 SET b=78240 WHERE a=2478;\nUPDATE t2 SET b=24151 WHERE a=2479;\nUPDATE t2 SET b=20827 WHERE a=2480;\nUPDATE t2 SET b=5129 WHERE a=2481;\nUPDATE t2 SET b=38738 WHERE a=2482;\nUPDATE t2 SET b=93539 WHERE a=2483;\nUPDATE t2 SET b=34352 WHERE a=2484;\nUPDATE t2 SET b=69017 WHERE a=2485;\nUPDATE t2 SET b=14279 WHERE a=2486;\nUPDATE t2 SET b=18188 WHERE a=2487;\nUPDATE t2 SET b=97210 WHERE a=2488;\nUPDATE t2 SET b=10387 WHERE a=2489;\nUPDATE t2 SET b=45590 WHERE a=2490;\nUPDATE t2 SET b=21072 WHERE a=2491;\nUPDATE t2 SET b=42167 WHERE a=2492;\nUPDATE t2 SET b=51546 WHERE a=2493;\nUPDATE t2 SET b=49906 WHERE a=2494;\nUPDATE t2 SET b=86558 WHERE a=2495;\nUPDATE t2 SET b=63156 WHERE a=2496;\nUPDATE t2 SET b=25603 WHERE a=2497;\nUPDATE t2 SET b=47798 WHERE a=2498;\nUPDATE t2 SET b=61526 WHERE a=2499;\nUPDATE t2 SET b=64713 WHERE a=2500;\nUPDATE t2 SET b=15479 WHERE a=2501;\nUPDATE t2 SET b=87517 WHERE a=2502;\nUPDATE t2 SET b=78568 WHERE a=2503;\nUPDATE t2 SET b=71643 WHERE a=2504;\nUPDATE t2 SET b=65176 WHERE a=2505;\nUPDATE t2 SET b=26125 WHERE a=2506;\nUPDATE t2 SET b=51919 WHERE a=2507;\nUPDATE t2 SET b=85528 WHERE a=2508;\nUPDATE t2 SET b=89719 WHERE a=2509;\nUPDATE t2 SET b=97099 WHERE a=2510;\nUPDATE t2 SET b=37113 WHERE a=2511;\nUPDATE t2 SET b=35467 WHERE a=2512;\nUPDATE t2 SET b=62404 WHERE a=2513;\nUPDATE t2 SET b=93280 WHERE a=2514;\nUPDATE t2 SET b=90784 WHERE a=2515;\nUPDATE t2 SET b=98286 WHERE a=2516;\nUPDATE t2 SET b=70263 WHERE a=2517;\nUPDATE t2 SET b=9035 WHERE a=2518;\nUPDATE t2 SET b=57796 WHERE a=2519;\nUPDATE t2 SET b=96295 WHERE a=2520;\nUPDATE t2 SET b=99213 WHERE a=2521;\nUPDATE t2 SET b=51058 WHERE a=2522;\nUPDATE t2 SET b=19157 WHERE a=2523;\nUPDATE t2 SET b=42104 WHERE a=2524;\nUPDATE t2 SET b=23070 WHERE a=2525;\nUPDATE t2 SET b=94187 WHERE a=2526;\nUPDATE t2 SET b=7069 WHERE a=2527;\nUPDATE t2 SET b=96697 WHERE a=2528;\nUPDATE t2 SET b=42187 WHERE a=2529;\nUPDATE t2 SET b=57329 WHERE a=2530;\nUPDATE t2 SET b=80901 WHERE a=2531;\nUPDATE t2 SET b=6349 WHERE a=2532;\nUPDATE t2 SET b=29038 WHERE a=2533;\nUPDATE t2 SET b=45682 WHERE a=2534;\nUPDATE t2 SET b=74026 WHERE a=2535;\nUPDATE t2 SET b=94152 WHERE a=2536;\nUPDATE t2 SET b=33413 WHERE a=2537;\nUPDATE t2 SET b=10701 WHERE a=2538;\nUPDATE t2 SET b=38192 WHERE a=2539;\nUPDATE t2 SET b=9612 WHERE a=2540;\nUPDATE t2 SET b=29949 WHERE a=2541;\nUPDATE t2 SET b=53656 WHERE a=2542;\nUPDATE t2 SET b=41019 WHERE a=2543;\nUPDATE t2 SET b=48066 WHERE a=2544;\nUPDATE t2 SET b=84029 WHERE a=2545;\nUPDATE t2 SET b=28070 WHERE a=2546;\nUPDATE t2 SET b=34306 WHERE a=2547;\nUPDATE t2 SET b=38398 WHERE a=2548;\nUPDATE t2 SET b=97714 WHERE a=2549;\nUPDATE t2 SET b=22050 WHERE a=2550;\nUPDATE t2 SET b=10693 WHERE a=2551;\nUPDATE t2 SET b=85098 WHERE a=2552;\nUPDATE t2 SET b=99385 WHERE a=2553;\nUPDATE t2 SET b=60177 WHERE a=2554;\nUPDATE t2 SET b=1874 WHERE a=2555;\nUPDATE t2 SET b=9981 WHERE a=2556;\nUPDATE t2 SET b=33059 WHERE a=2557;\nUPDATE t2 SET b=44943 WHERE a=2558;\nUPDATE t2 SET b=90730 WHERE a=2559;\nUPDATE t2 SET b=59022 WHERE a=2560;\nUPDATE t2 SET b=10837 WHERE a=2561;\nUPDATE t2 SET b=54829 WHERE a=2562;\nUPDATE t2 SET b=80665 WHERE a=2563;\nUPDATE t2 SET b=1618 WHERE a=2564;\nUPDATE t2 SET b=18768 WHERE a=2565;\nUPDATE t2 SET b=73673 WHERE a=2566;\nUPDATE t2 SET b=76298 WHERE a=2567;\nUPDATE t2 SET b=6147 WHERE a=2568;\nUPDATE t2 SET b=79052 WHERE a=2569;\nUPDATE t2 SET b=6287 WHERE a=2570;\nUPDATE t2 SET b=87121 WHERE a=2571;\nUPDATE t2 SET b=12356 WHERE a=2572;\nUPDATE t2 SET b=3271 WHERE a=2573;\nUPDATE t2 SET b=82257 WHERE a=2574;\nUPDATE t2 SET b=76756 WHERE a=2575;\nUPDATE t2 SET b=66974 WHERE a=2576;\nUPDATE t2 SET b=53676 WHERE a=2577;\nUPDATE t2 SET b=93126 WHERE a=2578;\nUPDATE t2 SET b=38939 WHERE a=2579;\nUPDATE t2 SET b=1248 WHERE a=2580;\nUPDATE t2 SET b=28796 WHERE a=2581;\nUPDATE t2 SET b=10916 WHERE a=2582;\nUPDATE t2 SET b=21892 WHERE a=2583;\nUPDATE t2 SET b=92850 WHERE a=2584;\nUPDATE t2 SET b=79316 WHERE a=2585;\nUPDATE t2 SET b=66722 WHERE a=2586;\nUPDATE t2 SET b=52778 WHERE a=2587;\nUPDATE t2 SET b=44739 WHERE a=2588;\nUPDATE t2 SET b=95008 WHERE a=2589;\nUPDATE t2 SET b=75164 WHERE a=2590;\nUPDATE t2 SET b=63542 WHERE a=2591;\nUPDATE t2 SET b=39979 WHERE a=2592;\nUPDATE t2 SET b=98410 WHERE a=2593;\nUPDATE t2 SET b=54392 WHERE a=2594;\nUPDATE t2 SET b=53389 WHERE a=2595;\nUPDATE t2 SET b=29602 WHERE a=2596;\nUPDATE t2 SET b=2132 WHERE a=2597;\nUPDATE t2 SET b=51869 WHERE a=2598;\nUPDATE t2 SET b=73445 WHERE a=2599;\nUPDATE t2 SET b=59355 WHERE a=2600;\nUPDATE t2 SET b=97417 WHERE a=2601;\nUPDATE t2 SET b=8818 WHERE a=2602;\nUPDATE t2 SET b=9891 WHERE a=2603;\nUPDATE t2 SET b=1807 WHERE a=2604;\nUPDATE t2 SET b=9010 WHERE a=2605;\nUPDATE t2 SET b=38388 WHERE a=2606;\nUPDATE t2 SET b=77356 WHERE a=2607;\nUPDATE t2 SET b=39829 WHERE a=2608;\nUPDATE t2 SET b=36747 WHERE a=2609;\nUPDATE t2 SET b=48490 WHERE a=2610;\nUPDATE t2 SET b=42272 WHERE a=2611;\nUPDATE t2 SET b=26695 WHERE a=2612;\nUPDATE t2 SET b=18782 WHERE a=2613;\nUPDATE t2 SET b=28440 WHERE a=2614;\nUPDATE t2 SET b=13471 WHERE a=2615;\nUPDATE t2 SET b=64714 WHERE a=2616;\nUPDATE t2 SET b=32480 WHERE a=2617;\nUPDATE t2 SET b=27055 WHERE a=2618;\nUPDATE t2 SET b=27036 WHERE a=2619;\nUPDATE t2 SET b=18568 WHERE a=2620;\nUPDATE t2 SET b=83419 WHERE a=2621;\nUPDATE t2 SET b=47174 WHERE a=2622;\nUPDATE t2 SET b=97438 WHERE a=2623;\nUPDATE t2 SET b=81844 WHERE a=2624;\nUPDATE t2 SET b=77031 WHERE a=2625;\nUPDATE t2 SET b=27900 WHERE a=2626;\nUPDATE t2 SET b=2337 WHERE a=2627;\nUPDATE t2 SET b=49799 WHERE a=2628;\nUPDATE t2 SET b=75751 WHERE a=2629;\nUPDATE t2 SET b=47149 WHERE a=2630;\nUPDATE t2 SET b=83251 WHERE a=2631;\nUPDATE t2 SET b=10818 WHERE a=2632;\nUPDATE t2 SET b=72452 WHERE a=2633;\nUPDATE t2 SET b=33441 WHERE a=2634;\nUPDATE t2 SET b=98267 WHERE a=2635;\nUPDATE t2 SET b=13528 WHERE a=2636;\nUPDATE t2 SET b=75306 WHERE a=2637;\nUPDATE t2 SET b=67513 WHERE a=2638;\nUPDATE t2 SET b=44130 WHERE a=2639;\nUPDATE t2 SET b=33459 WHERE a=2640;\nUPDATE t2 SET b=64650 WHERE a=2641;\nUPDATE t2 SET b=48146 WHERE a=2642;\nUPDATE t2 SET b=7270 WHERE a=2643;\nUPDATE t2 SET b=25583 WHERE a=2644;\nUPDATE t2 SET b=97942 WHERE a=2645;\nUPDATE t2 SET b=82624 WHERE a=2646;\nUPDATE t2 SET b=77699 WHERE a=2647;\nUPDATE t2 SET b=10639 WHERE a=2648;\nUPDATE t2 SET b=14395 WHERE a=2649;\nUPDATE t2 SET b=28765 WHERE a=2650;\nUPDATE t2 SET b=40738 WHERE a=2651;\nUPDATE t2 SET b=52505 WHERE a=2652;\nUPDATE t2 SET b=63171 WHERE a=2653;\nUPDATE t2 SET b=52590 WHERE a=2654;\nUPDATE t2 SET b=87445 WHERE a=2655;\nUPDATE t2 SET b=11782 WHERE a=2656;\nUPDATE t2 SET b=35556 WHERE a=2657;\nUPDATE t2 SET b=13353 WHERE a=2658;\nUPDATE t2 SET b=12331 WHERE a=2659;\nUPDATE t2 SET b=51773 WHERE a=2660;\nUPDATE t2 SET b=19754 WHERE a=2661;\nUPDATE t2 SET b=94281 WHERE a=2662;\nUPDATE t2 SET b=12799 WHERE a=2663;\nUPDATE t2 SET b=72000 WHERE a=2664;\nUPDATE t2 SET b=43463 WHERE a=2665;\nUPDATE t2 SET b=49889 WHERE a=2666;\nUPDATE t2 SET b=11854 WHERE a=2667;\nUPDATE t2 SET b=51499 WHERE a=2668;\nUPDATE t2 SET b=94878 WHERE a=2669;\nUPDATE t2 SET b=32376 WHERE a=2670;\nUPDATE t2 SET b=30638 WHERE a=2671;\nUPDATE t2 SET b=34674 WHERE a=2672;\nUPDATE t2 SET b=90247 WHERE a=2673;\nUPDATE t2 SET b=29897 WHERE a=2674;\nUPDATE t2 SET b=39665 WHERE a=2675;\nUPDATE t2 SET b=36908 WHERE a=2676;\nUPDATE t2 SET b=14087 WHERE a=2677;\nUPDATE t2 SET b=21295 WHERE a=2678;\nUPDATE t2 SET b=88863 WHERE a=2679;\nUPDATE t2 SET b=21343 WHERE a=2680;\nUPDATE t2 SET b=1651 WHERE a=2681;\nUPDATE t2 SET b=25944 WHERE a=2682;\nUPDATE t2 SET b=55732 WHERE a=2683;\nUPDATE t2 SET b=81256 WHERE a=2684;\nUPDATE t2 SET b=43294 WHERE a=2685;\nUPDATE t2 SET b=12172 WHERE a=2686;\nUPDATE t2 SET b=69536 WHERE a=2687;\nUPDATE t2 SET b=78750 WHERE a=2688;\nUPDATE t2 SET b=5302 WHERE a=2689;\nUPDATE t2 SET b=52251 WHERE a=2690;\nUPDATE t2 SET b=35521 WHERE a=2691;\nUPDATE t2 SET b=89304 WHERE a=2692;\nUPDATE t2 SET b=38880 WHERE a=2693;\nUPDATE t2 SET b=64644 WHERE a=2694;\nUPDATE t2 SET b=59151 WHERE a=2695;\nUPDATE t2 SET b=95114 WHERE a=2696;\nUPDATE t2 SET b=67707 WHERE a=2697;\nUPDATE t2 SET b=46651 WHERE a=2698;\nUPDATE t2 SET b=87894 WHERE a=2699;\nUPDATE t2 SET b=7338 WHERE a=2700;\nUPDATE t2 SET b=766 WHERE a=2701;\nUPDATE t2 SET b=30469 WHERE a=2702;\nUPDATE t2 SET b=21465 WHERE a=2703;\nUPDATE t2 SET b=28505 WHERE a=2704;\nUPDATE t2 SET b=73364 WHERE a=2705;\nUPDATE t2 SET b=30526 WHERE a=2706;\nUPDATE t2 SET b=75256 WHERE a=2707;\nUPDATE t2 SET b=86111 WHERE a=2708;\nUPDATE t2 SET b=84140 WHERE a=2709;\nUPDATE t2 SET b=37226 WHERE a=2710;\nUPDATE t2 SET b=64138 WHERE a=2711;\nUPDATE t2 SET b=54131 WHERE a=2712;\nUPDATE t2 SET b=84395 WHERE a=2713;\nUPDATE t2 SET b=99631 WHERE a=2714;\nUPDATE t2 SET b=83471 WHERE a=2715;\nUPDATE t2 SET b=73816 WHERE a=2716;\nUPDATE t2 SET b=17181 WHERE a=2717;\nUPDATE t2 SET b=45463 WHERE a=2718;\nUPDATE t2 SET b=38056 WHERE a=2719;\nUPDATE t2 SET b=75972 WHERE a=2720;\nUPDATE t2 SET b=73651 WHERE a=2721;\nUPDATE t2 SET b=59821 WHERE a=2722;\nUPDATE t2 SET b=40560 WHERE a=2723;\nUPDATE t2 SET b=92628 WHERE a=2724;\nUPDATE t2 SET b=86504 WHERE a=2725;\nUPDATE t2 SET b=12609 WHERE a=2726;\nUPDATE t2 SET b=5296 WHERE a=2727;\nUPDATE t2 SET b=41017 WHERE a=2728;\nUPDATE t2 SET b=95183 WHERE a=2729;\nUPDATE t2 SET b=93142 WHERE a=2730;\nUPDATE t2 SET b=86482 WHERE a=2731;\nUPDATE t2 SET b=22762 WHERE a=2732;\nUPDATE t2 SET b=37912 WHERE a=2733;\nUPDATE t2 SET b=97680 WHERE a=2734;\nUPDATE t2 SET b=16943 WHERE a=2735;\nUPDATE t2 SET b=403 WHERE a=2736;\nUPDATE t2 SET b=7622 WHERE a=2737;\nUPDATE t2 SET b=55656 WHERE a=2738;\nUPDATE t2 SET b=86206 WHERE a=2739;\nUPDATE t2 SET b=32970 WHERE a=2740;\nUPDATE t2 SET b=88208 WHERE a=2741;\nUPDATE t2 SET b=57371 WHERE a=2742;\nUPDATE t2 SET b=38934 WHERE a=2743;\nUPDATE t2 SET b=35150 WHERE a=2744;\nUPDATE t2 SET b=6627 WHERE a=2745;\nUPDATE t2 SET b=32525 WHERE a=2746;\nUPDATE t2 SET b=28904 WHERE a=2747;\nUPDATE t2 SET b=20602 WHERE a=2748;\nUPDATE t2 SET b=80722 WHERE a=2749;\nUPDATE t2 SET b=52441 WHERE a=2750;\nUPDATE t2 SET b=60497 WHERE a=2751;\nUPDATE t2 SET b=48402 WHERE a=2752;\nUPDATE t2 SET b=8250 WHERE a=2753;\nUPDATE t2 SET b=86344 WHERE a=2754;\nUPDATE t2 SET b=24412 WHERE a=2755;\nUPDATE t2 SET b=25723 WHERE a=2756;\nUPDATE t2 SET b=38066 WHERE a=2757;\nUPDATE t2 SET b=98999 WHERE a=2758;\nUPDATE t2 SET b=52574 WHERE a=2759;\nUPDATE t2 SET b=72333 WHERE a=2760;\nUPDATE t2 SET b=34734 WHERE a=2761;\nUPDATE t2 SET b=5886 WHERE a=2762;\nUPDATE t2 SET b=14103 WHERE a=2763;\nUPDATE t2 SET b=98165 WHERE a=2764;\nUPDATE t2 SET b=59018 WHERE a=2765;\nUPDATE t2 SET b=55192 WHERE a=2766;\nUPDATE t2 SET b=79366 WHERE a=2767;\nUPDATE t2 SET b=22368 WHERE a=2768;\nUPDATE t2 SET b=38517 WHERE a=2769;\nUPDATE t2 SET b=52763 WHERE a=2770;\nUPDATE t2 SET b=47658 WHERE a=2771;\nUPDATE t2 SET b=48705 WHERE a=2772;\nUPDATE t2 SET b=30506 WHERE a=2773;\nUPDATE t2 SET b=30052 WHERE a=2774;\nUPDATE t2 SET b=59299 WHERE a=2775;\nUPDATE t2 SET b=23260 WHERE a=2776;\nUPDATE t2 SET b=26842 WHERE a=2777;\nUPDATE t2 SET b=83550 WHERE a=2778;\nUPDATE t2 SET b=43295 WHERE a=2779;\nUPDATE t2 SET b=38587 WHERE a=2780;\nUPDATE t2 SET b=61149 WHERE a=2781;\nUPDATE t2 SET b=92268 WHERE a=2782;\nUPDATE t2 SET b=24058 WHERE a=2783;\nUPDATE t2 SET b=96685 WHERE a=2784;\nUPDATE t2 SET b=11793 WHERE a=2785;\nUPDATE t2 SET b=26372 WHERE a=2786;\nUPDATE t2 SET b=87177 WHERE a=2787;\nUPDATE t2 SET b=96447 WHERE a=2788;\nUPDATE t2 SET b=2360 WHERE a=2789;\nUPDATE t2 SET b=84076 WHERE a=2790;\nUPDATE t2 SET b=95977 WHERE a=2791;\nUPDATE t2 SET b=2202 WHERE a=2792;\nUPDATE t2 SET b=67029 WHERE a=2793;\nUPDATE t2 SET b=67000 WHERE a=2794;\nUPDATE t2 SET b=61213 WHERE a=2795;\nUPDATE t2 SET b=76922 WHERE a=2796;\nUPDATE t2 SET b=9316 WHERE a=2797;\nUPDATE t2 SET b=42006 WHERE a=2798;\nUPDATE t2 SET b=8793 WHERE a=2799;\nUPDATE t2 SET b=48489 WHERE a=2800;\nUPDATE t2 SET b=99821 WHERE a=2801;\nUPDATE t2 SET b=28213 WHERE a=2802;\nUPDATE t2 SET b=60783 WHERE a=2803;\nUPDATE t2 SET b=82366 WHERE a=2804;\nUPDATE t2 SET b=17031 WHERE a=2805;\nUPDATE t2 SET b=63712 WHERE a=2806;\nUPDATE t2 SET b=40462 WHERE a=2807;\nUPDATE t2 SET b=32678 WHERE a=2808;\nUPDATE t2 SET b=84856 WHERE a=2809;\nUPDATE t2 SET b=47503 WHERE a=2810;\nUPDATE t2 SET b=22516 WHERE a=2811;\nUPDATE t2 SET b=67515 WHERE a=2812;\nUPDATE t2 SET b=20402 WHERE a=2813;\nUPDATE t2 SET b=51138 WHERE a=2814;\nUPDATE t2 SET b=82182 WHERE a=2815;\nUPDATE t2 SET b=97647 WHERE a=2816;\nUPDATE t2 SET b=70534 WHERE a=2817;\nUPDATE t2 SET b=52572 WHERE a=2818;\nUPDATE t2 SET b=86154 WHERE a=2819;\nUPDATE t2 SET b=51846 WHERE a=2820;\nUPDATE t2 SET b=82014 WHERE a=2821;\nUPDATE t2 SET b=74265 WHERE a=2822;\nUPDATE t2 SET b=48697 WHERE a=2823;\nUPDATE t2 SET b=21980 WHERE a=2824;\nUPDATE t2 SET b=64043 WHERE a=2825;\nUPDATE t2 SET b=27884 WHERE a=2826;\nUPDATE t2 SET b=24801 WHERE a=2827;\nUPDATE t2 SET b=55408 WHERE a=2828;\nUPDATE t2 SET b=53130 WHERE a=2829;\nUPDATE t2 SET b=32994 WHERE a=2830;\nUPDATE t2 SET b=94903 WHERE a=2831;\nUPDATE t2 SET b=98578 WHERE a=2832;\nUPDATE t2 SET b=25960 WHERE a=2833;\nUPDATE t2 SET b=58181 WHERE a=2834;\nUPDATE t2 SET b=36848 WHERE a=2835;\nUPDATE t2 SET b=2081 WHERE a=2836;\nUPDATE t2 SET b=51297 WHERE a=2837;\nUPDATE t2 SET b=34764 WHERE a=2838;\nUPDATE t2 SET b=48317 WHERE a=2839;\nUPDATE t2 SET b=14494 WHERE a=2840;\nUPDATE t2 SET b=52281 WHERE a=2841;\nUPDATE t2 SET b=71804 WHERE a=2842;\nUPDATE t2 SET b=99273 WHERE a=2843;\nUPDATE t2 SET b=95560 WHERE a=2844;\nUPDATE t2 SET b=81867 WHERE a=2845;\nUPDATE t2 SET b=77480 WHERE a=2846;\nUPDATE t2 SET b=76577 WHERE a=2847;\nUPDATE t2 SET b=73760 WHERE a=2848;\nUPDATE t2 SET b=33579 WHERE a=2849;\nUPDATE t2 SET b=5118 WHERE a=2850;\nUPDATE t2 SET b=27734 WHERE a=2851;\nUPDATE t2 SET b=66212 WHERE a=2852;\nUPDATE t2 SET b=77094 WHERE a=2853;\nUPDATE t2 SET b=10616 WHERE a=2854;\nUPDATE t2 SET b=16909 WHERE a=2855;\nUPDATE t2 SET b=34064 WHERE a=2856;\nUPDATE t2 SET b=75447 WHERE a=2857;\nUPDATE t2 SET b=84912 WHERE a=2858;\nUPDATE t2 SET b=91641 WHERE a=2859;\nUPDATE t2 SET b=91661 WHERE a=2860;\nUPDATE t2 SET b=50685 WHERE a=2861;\nUPDATE t2 SET b=36960 WHERE a=2862;\nUPDATE t2 SET b=29437 WHERE a=2863;\nUPDATE t2 SET b=74864 WHERE a=2864;\nUPDATE t2 SET b=29417 WHERE a=2865;\nUPDATE t2 SET b=57860 WHERE a=2866;\nUPDATE t2 SET b=4498 WHERE a=2867;\nUPDATE t2 SET b=49739 WHERE a=2868;\nUPDATE t2 SET b=84504 WHERE a=2869;\nUPDATE t2 SET b=81924 WHERE a=2870;\nUPDATE t2 SET b=58828 WHERE a=2871;\nUPDATE t2 SET b=84653 WHERE a=2872;\nUPDATE t2 SET b=67364 WHERE a=2873;\nUPDATE t2 SET b=79420 WHERE a=2874;\nUPDATE t2 SET b=68778 WHERE a=2875;\nUPDATE t2 SET b=43864 WHERE a=2876;\nUPDATE t2 SET b=1973 WHERE a=2877;\nUPDATE t2 SET b=75261 WHERE a=2878;\nUPDATE t2 SET b=22023 WHERE a=2879;\nUPDATE t2 SET b=76793 WHERE a=2880;\nUPDATE t2 SET b=14646 WHERE a=2881;\nUPDATE t2 SET b=48685 WHERE a=2882;\nUPDATE t2 SET b=72281 WHERE a=2883;\nUPDATE t2 SET b=90995 WHERE a=2884;\nUPDATE t2 SET b=3441 WHERE a=2885;\nUPDATE t2 SET b=5918 WHERE a=2886;\nUPDATE t2 SET b=9997 WHERE a=2887;\nUPDATE t2 SET b=40929 WHERE a=2888;\nUPDATE t2 SET b=30193 WHERE a=2889;\nUPDATE t2 SET b=99463 WHERE a=2890;\nUPDATE t2 SET b=5118 WHERE a=2891;\nUPDATE t2 SET b=223 WHERE a=2892;\nUPDATE t2 SET b=43308 WHERE a=2893;\nUPDATE t2 SET b=79765 WHERE a=2894;\nUPDATE t2 SET b=25798 WHERE a=2895;\nUPDATE t2 SET b=16699 WHERE a=2896;\nUPDATE t2 SET b=81634 WHERE a=2897;\nUPDATE t2 SET b=59443 WHERE a=2898;\nUPDATE t2 SET b=2465 WHERE a=2899;\nUPDATE t2 SET b=34652 WHERE a=2900;\nUPDATE t2 SET b=67207 WHERE a=2901;\nUPDATE t2 SET b=87888 WHERE a=2902;\nUPDATE t2 SET b=44521 WHERE a=2903;\nUPDATE t2 SET b=86338 WHERE a=2904;\nUPDATE t2 SET b=35952 WHERE a=2905;\nUPDATE t2 SET b=19904 WHERE a=2906;\nUPDATE t2 SET b=24984 WHERE a=2907;\nUPDATE t2 SET b=39695 WHERE a=2908;\nUPDATE t2 SET b=59859 WHERE a=2909;\nUPDATE t2 SET b=31837 WHERE a=2910;\nUPDATE t2 SET b=29087 WHERE a=2911;\nUPDATE t2 SET b=94691 WHERE a=2912;\nUPDATE t2 SET b=70404 WHERE a=2913;\nUPDATE t2 SET b=80539 WHERE a=2914;\nUPDATE t2 SET b=29107 WHERE a=2915;\nUPDATE t2 SET b=64195 WHERE a=2916;\nUPDATE t2 SET b=35777 WHERE a=2917;\nUPDATE t2 SET b=81117 WHERE a=2918;\nUPDATE t2 SET b=55572 WHERE a=2919;\nUPDATE t2 SET b=83002 WHERE a=2920;\nUPDATE t2 SET b=85565 WHERE a=2921;\nUPDATE t2 SET b=99244 WHERE a=2922;\nUPDATE t2 SET b=38122 WHERE a=2923;\nUPDATE t2 SET b=90503 WHERE a=2924;\nUPDATE t2 SET b=144 WHERE a=2925;\nUPDATE t2 SET b=3101 WHERE a=2926;\nUPDATE t2 SET b=46888 WHERE a=2927;\nUPDATE t2 SET b=11222 WHERE a=2928;\nUPDATE t2 SET b=62821 WHERE a=2929;\nUPDATE t2 SET b=59961 WHERE a=2930;\nUPDATE t2 SET b=29398 WHERE a=2931;\nUPDATE t2 SET b=5946 WHERE a=2932;\nUPDATE t2 SET b=53789 WHERE a=2933;\nUPDATE t2 SET b=0 WHERE a=2934;\nUPDATE t2 SET b=25773 WHERE a=2935;\nUPDATE t2 SET b=55952 WHERE a=2936;\nUPDATE t2 SET b=68945 WHERE a=2937;\nUPDATE t2 SET b=13862 WHERE a=2938;\nUPDATE t2 SET b=58579 WHERE a=2939;\nUPDATE t2 SET b=88473 WHERE a=2940;\nUPDATE t2 SET b=76345 WHERE a=2941;\nUPDATE t2 SET b=70221 WHERE a=2942;\nUPDATE t2 SET b=63003 WHERE a=2943;\nUPDATE t2 SET b=85249 WHERE a=2944;\nUPDATE t2 SET b=99584 WHERE a=2945;\nUPDATE t2 SET b=434 WHERE a=2946;\nUPDATE t2 SET b=46392 WHERE a=2947;\nUPDATE t2 SET b=2492 WHERE a=2948;\nUPDATE t2 SET b=34943 WHERE a=2949;\nUPDATE t2 SET b=37010 WHERE a=2950;\nUPDATE t2 SET b=17938 WHERE a=2951;\nUPDATE t2 SET b=11015 WHERE a=2952;\nUPDATE t2 SET b=18208 WHERE a=2953;\nUPDATE t2 SET b=88816 WHERE a=2954;\nUPDATE t2 SET b=64656 WHERE a=2955;\nUPDATE t2 SET b=84589 WHERE a=2956;\nUPDATE t2 SET b=86736 WHERE a=2957;\nUPDATE t2 SET b=58494 WHERE a=2958;\nUPDATE t2 SET b=526 WHERE a=2959;\nUPDATE t2 SET b=32884 WHERE a=2960;\nUPDATE t2 SET b=85672 WHERE a=2961;\nUPDATE t2 SET b=21576 WHERE a=2962;\nUPDATE t2 SET b=71142 WHERE a=2963;\nUPDATE t2 SET b=94169 WHERE a=2964;\nUPDATE t2 SET b=90760 WHERE a=2965;\nUPDATE t2 SET b=18769 WHERE a=2966;\nUPDATE t2 SET b=54197 WHERE a=2967;\nUPDATE t2 SET b=33740 WHERE a=2968;\nUPDATE t2 SET b=25115 WHERE a=2969;\nUPDATE t2 SET b=9804 WHERE a=2970;\nUPDATE t2 SET b=44355 WHERE a=2971;\nUPDATE t2 SET b=94920 WHERE a=2972;\nUPDATE t2 SET b=61041 WHERE a=2973;\nUPDATE t2 SET b=43771 WHERE a=2974;\nUPDATE t2 SET b=63350 WHERE a=2975;\nUPDATE t2 SET b=60873 WHERE a=2976;\nUPDATE t2 SET b=69796 WHERE a=2977;\nUPDATE t2 SET b=66123 WHERE a=2978;\nUPDATE t2 SET b=26007 WHERE a=2979;\nUPDATE t2 SET b=10747 WHERE a=2980;\nUPDATE t2 SET b=18735 WHERE a=2981;\nUPDATE t2 SET b=78801 WHERE a=2982;\nUPDATE t2 SET b=87142 WHERE a=2983;\nUPDATE t2 SET b=28885 WHERE a=2984;\nUPDATE t2 SET b=3424 WHERE a=2985;\nUPDATE t2 SET b=2244 WHERE a=2986;\nUPDATE t2 SET b=80723 WHERE a=2987;\nUPDATE t2 SET b=62070 WHERE a=2988;\nUPDATE t2 SET b=40707 WHERE a=2989;\nUPDATE t2 SET b=64918 WHERE a=2990;\nUPDATE t2 SET b=33745 WHERE a=2991;\nUPDATE t2 SET b=40997 WHERE a=2992;\nUPDATE t2 SET b=75669 WHERE a=2993;\nUPDATE t2 SET b=686 WHERE a=2994;\nUPDATE t2 SET b=84540 WHERE a=2995;\nUPDATE t2 SET b=70861 WHERE a=2996;\nUPDATE t2 SET b=26745 WHERE a=2997;\nUPDATE t2 SET b=30457 WHERE a=2998;\nUPDATE t2 SET b=42619 WHERE a=2999;\nUPDATE t2 SET b=82299 WHERE a=3000;\nUPDATE t2 SET b=83333 WHERE a=3001;\nUPDATE t2 SET b=42220 WHERE a=3002;\nUPDATE t2 SET b=47960 WHERE a=3003;\nUPDATE t2 SET b=48944 WHERE a=3004;\nUPDATE t2 SET b=34384 WHERE a=3005;\nUPDATE t2 SET b=64993 WHERE a=3006;\nUPDATE t2 SET b=5993 WHERE a=3007;\nUPDATE t2 SET b=11352 WHERE a=3008;\nUPDATE t2 SET b=58988 WHERE a=3009;\nUPDATE t2 SET b=7343 WHERE a=3010;\nUPDATE t2 SET b=77925 WHERE a=3011;\nUPDATE t2 SET b=98214 WHERE a=3012;\nUPDATE t2 SET b=30171 WHERE a=3013;\nUPDATE t2 SET b=2361 WHERE a=3014;\nUPDATE t2 SET b=88714 WHERE a=3015;\nUPDATE t2 SET b=11922 WHERE a=3016;\nUPDATE t2 SET b=84151 WHERE a=3017;\nUPDATE t2 SET b=6231 WHERE a=3018;\nUPDATE t2 SET b=70765 WHERE a=3019;\nUPDATE t2 SET b=73510 WHERE a=3020;\nUPDATE t2 SET b=61448 WHERE a=3021;\nUPDATE t2 SET b=44154 WHERE a=3022;\nUPDATE t2 SET b=74495 WHERE a=3023;\nUPDATE t2 SET b=43527 WHERE a=3024;\nUPDATE t2 SET b=37049 WHERE a=3025;\nUPDATE t2 SET b=85655 WHERE a=3026;\nUPDATE t2 SET b=87214 WHERE a=3027;\nUPDATE t2 SET b=34125 WHERE a=3028;\nUPDATE t2 SET b=56764 WHERE a=3029;\nUPDATE t2 SET b=37316 WHERE a=3030;\nUPDATE t2 SET b=2105 WHERE a=3031;\nUPDATE t2 SET b=26954 WHERE a=3032;\nUPDATE t2 SET b=84144 WHERE a=3033;\nUPDATE t2 SET b=96574 WHERE a=3034;\nUPDATE t2 SET b=63545 WHERE a=3035;\nUPDATE t2 SET b=72005 WHERE a=3036;\nUPDATE t2 SET b=6193 WHERE a=3037;\nUPDATE t2 SET b=24507 WHERE a=3038;\nUPDATE t2 SET b=56219 WHERE a=3039;\nUPDATE t2 SET b=24793 WHERE a=3040;\nUPDATE t2 SET b=40696 WHERE a=3041;\nUPDATE t2 SET b=81224 WHERE a=3042;\nUPDATE t2 SET b=24821 WHERE a=3043;\nUPDATE t2 SET b=61112 WHERE a=3044;\nUPDATE t2 SET b=74770 WHERE a=3045;\nUPDATE t2 SET b=32834 WHERE a=3046;\nUPDATE t2 SET b=48644 WHERE a=3047;\nUPDATE t2 SET b=62811 WHERE a=3048;\nUPDATE t2 SET b=75150 WHERE a=3049;\nUPDATE t2 SET b=23274 WHERE a=3050;\nUPDATE t2 SET b=47553 WHERE a=3051;\nUPDATE t2 SET b=14433 WHERE a=3052;\nUPDATE t2 SET b=49919 WHERE a=3053;\nUPDATE t2 SET b=99161 WHERE a=3054;\nUPDATE t2 SET b=10638 WHERE a=3055;\nUPDATE t2 SET b=22442 WHERE a=3056;\nUPDATE t2 SET b=55039 WHERE a=3057;\nUPDATE t2 SET b=72656 WHERE a=3058;\nUPDATE t2 SET b=86681 WHERE a=3059;\nUPDATE t2 SET b=13116 WHERE a=3060;\nUPDATE t2 SET b=3540 WHERE a=3061;\nUPDATE t2 SET b=28940 WHERE a=3062;\nUPDATE t2 SET b=42561 WHERE a=3063;\nUPDATE t2 SET b=70094 WHERE a=3064;\nUPDATE t2 SET b=52246 WHERE a=3065;\nUPDATE t2 SET b=27726 WHERE a=3066;\nUPDATE t2 SET b=29144 WHERE a=3067;\nUPDATE t2 SET b=82914 WHERE a=3068;\nUPDATE t2 SET b=87556 WHERE a=3069;\nUPDATE t2 SET b=2177 WHERE a=3070;\nUPDATE t2 SET b=97283 WHERE a=3071;\nUPDATE t2 SET b=81946 WHERE a=3072;\nUPDATE t2 SET b=8555 WHERE a=3073;\nUPDATE t2 SET b=81696 WHERE a=3074;\nUPDATE t2 SET b=16955 WHERE a=3075;\nUPDATE t2 SET b=40755 WHERE a=3076;\nUPDATE t2 SET b=35702 WHERE a=3077;\nUPDATE t2 SET b=10720 WHERE a=3078;\nUPDATE t2 SET b=59236 WHERE a=3079;\nUPDATE t2 SET b=14701 WHERE a=3080;\nUPDATE t2 SET b=91786 WHERE a=3081;\nUPDATE t2 SET b=78011 WHERE a=3082;\nUPDATE t2 SET b=36540 WHERE a=3083;\nUPDATE t2 SET b=17359 WHERE a=3084;\nUPDATE t2 SET b=7731 WHERE a=3085;\nUPDATE t2 SET b=3650 WHERE a=3086;\nUPDATE t2 SET b=81042 WHERE a=3087;\nUPDATE t2 SET b=23382 WHERE a=3088;\nUPDATE t2 SET b=14686 WHERE a=3089;\nUPDATE t2 SET b=67007 WHERE a=3090;\nUPDATE t2 SET b=64014 WHERE a=3091;\nUPDATE t2 SET b=91917 WHERE a=3092;\nUPDATE t2 SET b=78377 WHERE a=3093;\nUPDATE t2 SET b=65183 WHERE a=3094;\nUPDATE t2 SET b=76433 WHERE a=3095;\nUPDATE t2 SET b=51317 WHERE a=3096;\nUPDATE t2 SET b=11411 WHERE a=3097;\nUPDATE t2 SET b=28063 WHERE a=3098;\nUPDATE t2 SET b=25200 WHERE a=3099;\nUPDATE t2 SET b=57363 WHERE a=3100;\nUPDATE t2 SET b=5443 WHERE a=3101;\nUPDATE t2 SET b=44771 WHERE a=3102;\nUPDATE t2 SET b=87884 WHERE a=3103;\nUPDATE t2 SET b=4863 WHERE a=3104;\nUPDATE t2 SET b=77865 WHERE a=3105;\nUPDATE t2 SET b=81153 WHERE a=3106;\nUPDATE t2 SET b=8651 WHERE a=3107;\nUPDATE t2 SET b=3050 WHERE a=3108;\nUPDATE t2 SET b=95916 WHERE a=3109;\nUPDATE t2 SET b=91500 WHERE a=3110;\nUPDATE t2 SET b=22532 WHERE a=3111;\nUPDATE t2 SET b=861 WHERE a=3112;\nUPDATE t2 SET b=51815 WHERE a=3113;\nUPDATE t2 SET b=33854 WHERE a=3114;\nUPDATE t2 SET b=33433 WHERE a=3115;\nUPDATE t2 SET b=57283 WHERE a=3116;\nUPDATE t2 SET b=6732 WHERE a=3117;\nUPDATE t2 SET b=73827 WHERE a=3118;\nUPDATE t2 SET b=13157 WHERE a=3119;\nUPDATE t2 SET b=33728 WHERE a=3120;\nUPDATE t2 SET b=42987 WHERE a=3121;\nUPDATE t2 SET b=33448 WHERE a=3122;\nUPDATE t2 SET b=50407 WHERE a=3123;\nUPDATE t2 SET b=38785 WHERE a=3124;\nUPDATE t2 SET b=79836 WHERE a=3125;\nUPDATE t2 SET b=81126 WHERE a=3126;\nUPDATE t2 SET b=35954 WHERE a=3127;\nUPDATE t2 SET b=73464 WHERE a=3128;\nUPDATE t2 SET b=35793 WHERE a=3129;\nUPDATE t2 SET b=18941 WHERE a=3130;\nUPDATE t2 SET b=52770 WHERE a=3131;\nUPDATE t2 SET b=97418 WHERE a=3132;\nUPDATE t2 SET b=59637 WHERE a=3133;\nUPDATE t2 SET b=27549 WHERE a=3134;\nUPDATE t2 SET b=84220 WHERE a=3135;\nUPDATE t2 SET b=90069 WHERE a=3136;\nUPDATE t2 SET b=22402 WHERE a=3137;\nUPDATE t2 SET b=63737 WHERE a=3138;\nUPDATE t2 SET b=92189 WHERE a=3139;\nUPDATE t2 SET b=88325 WHERE a=3140;\nUPDATE t2 SET b=60523 WHERE a=3141;\nUPDATE t2 SET b=57992 WHERE a=3142;\nUPDATE t2 SET b=84052 WHERE a=3143;\nUPDATE t2 SET b=6014 WHERE a=3144;\nUPDATE t2 SET b=30880 WHERE a=3145;\nUPDATE t2 SET b=36910 WHERE a=3146;\nUPDATE t2 SET b=51506 WHERE a=3147;\nUPDATE t2 SET b=20017 WHERE a=3148;\nUPDATE t2 SET b=72182 WHERE a=3149;\nUPDATE t2 SET b=1577 WHERE a=3150;\nUPDATE t2 SET b=55630 WHERE a=3151;\nUPDATE t2 SET b=50244 WHERE a=3152;\nUPDATE t2 SET b=44135 WHERE a=3153;\nUPDATE t2 SET b=61457 WHERE a=3154;\nUPDATE t2 SET b=90772 WHERE a=3155;\nUPDATE t2 SET b=33279 WHERE a=3156;\nUPDATE t2 SET b=85242 WHERE a=3157;\nUPDATE t2 SET b=43318 WHERE a=3158;\nUPDATE t2 SET b=96715 WHERE a=3159;\nUPDATE t2 SET b=1439 WHERE a=3160;\nUPDATE t2 SET b=68319 WHERE a=3161;\nUPDATE t2 SET b=20625 WHERE a=3162;\nUPDATE t2 SET b=55472 WHERE a=3163;\nUPDATE t2 SET b=15748 WHERE a=3164;\nUPDATE t2 SET b=28842 WHERE a=3165;\nUPDATE t2 SET b=8837 WHERE a=3166;\nUPDATE t2 SET b=94861 WHERE a=3167;\nUPDATE t2 SET b=79792 WHERE a=3168;\nUPDATE t2 SET b=45625 WHERE a=3169;\nUPDATE t2 SET b=36338 WHERE a=3170;\nUPDATE t2 SET b=12261 WHERE a=3171;\nUPDATE t2 SET b=27374 WHERE a=3172;\nUPDATE t2 SET b=55237 WHERE a=3173;\nUPDATE t2 SET b=56050 WHERE a=3174;\nUPDATE t2 SET b=50016 WHERE a=3175;\nUPDATE t2 SET b=82253 WHERE a=3176;\nUPDATE t2 SET b=38335 WHERE a=3177;\nUPDATE t2 SET b=58204 WHERE a=3178;\nUPDATE t2 SET b=31306 WHERE a=3179;\nUPDATE t2 SET b=62336 WHERE a=3180;\nUPDATE t2 SET b=9423 WHERE a=3181;\nUPDATE t2 SET b=71792 WHERE a=3182;\nUPDATE t2 SET b=39464 WHERE a=3183;\nUPDATE t2 SET b=33133 WHERE a=3184;\nUPDATE t2 SET b=83825 WHERE a=3185;\nUPDATE t2 SET b=25281 WHERE a=3186;\nUPDATE t2 SET b=60003 WHERE a=3187;\nUPDATE t2 SET b=30408 WHERE a=3188;\nUPDATE t2 SET b=65324 WHERE a=3189;\nUPDATE t2 SET b=39222 WHERE a=3190;\nUPDATE t2 SET b=65242 WHERE a=3191;\nUPDATE t2 SET b=18427 WHERE a=3192;\nUPDATE t2 SET b=95947 WHERE a=3193;\nUPDATE t2 SET b=74013 WHERE a=3194;\nUPDATE t2 SET b=30668 WHERE a=3195;\nUPDATE t2 SET b=5899 WHERE a=3196;\nUPDATE t2 SET b=82472 WHERE a=3197;\nUPDATE t2 SET b=67213 WHERE a=3198;\nUPDATE t2 SET b=93795 WHERE a=3199;\nUPDATE t2 SET b=53023 WHERE a=3200;\nUPDATE t2 SET b=85894 WHERE a=3201;\nUPDATE t2 SET b=36484 WHERE a=3202;\nUPDATE t2 SET b=90838 WHERE a=3203;\nUPDATE t2 SET b=7000 WHERE a=3204;\nUPDATE t2 SET b=21820 WHERE a=3205;\nUPDATE t2 SET b=67851 WHERE a=3206;\nUPDATE t2 SET b=95761 WHERE a=3207;\nUPDATE t2 SET b=19567 WHERE a=3208;\nUPDATE t2 SET b=80859 WHERE a=3209;\nUPDATE t2 SET b=20562 WHERE a=3210;\nUPDATE t2 SET b=51045 WHERE a=3211;\nUPDATE t2 SET b=23577 WHERE a=3212;\nUPDATE t2 SET b=84807 WHERE a=3213;\nUPDATE t2 SET b=72577 WHERE a=3214;\nUPDATE t2 SET b=55666 WHERE a=3215;\nUPDATE t2 SET b=1249 WHERE a=3216;\nUPDATE t2 SET b=79041 WHERE a=3217;\nUPDATE t2 SET b=99714 WHERE a=3218;\nUPDATE t2 SET b=65831 WHERE a=3219;\nUPDATE t2 SET b=31021 WHERE a=3220;\nUPDATE t2 SET b=59227 WHERE a=3221;\nUPDATE t2 SET b=32857 WHERE a=3222;\nUPDATE t2 SET b=78414 WHERE a=3223;\nUPDATE t2 SET b=18719 WHERE a=3224;\nUPDATE t2 SET b=64144 WHERE a=3225;\nUPDATE t2 SET b=8110 WHERE a=3226;\nUPDATE t2 SET b=7217 WHERE a=3227;\nUPDATE t2 SET b=70925 WHERE a=3228;\nUPDATE t2 SET b=79545 WHERE a=3229;\nUPDATE t2 SET b=85823 WHERE a=3230;\nUPDATE t2 SET b=98242 WHERE a=3231;\nUPDATE t2 SET b=73079 WHERE a=3232;\nUPDATE t2 SET b=31207 WHERE a=3233;\nUPDATE t2 SET b=35311 WHERE a=3234;\nUPDATE t2 SET b=50663 WHERE a=3235;\nUPDATE t2 SET b=82693 WHERE a=3236;\nUPDATE t2 SET b=75643 WHERE a=3237;\nUPDATE t2 SET b=32142 WHERE a=3238;\nUPDATE t2 SET b=62226 WHERE a=3239;\nUPDATE t2 SET b=22024 WHERE a=3240;\nUPDATE t2 SET b=3599 WHERE a=3241;\nUPDATE t2 SET b=85986 WHERE a=3242;\nUPDATE t2 SET b=38217 WHERE a=3243;\nUPDATE t2 SET b=30315 WHERE a=3244;\nUPDATE t2 SET b=81734 WHERE a=3245;\nUPDATE t2 SET b=646 WHERE a=3246;\nUPDATE t2 SET b=56437 WHERE a=3247;\nUPDATE t2 SET b=80124 WHERE a=3248;\nUPDATE t2 SET b=55766 WHERE a=3249;\nUPDATE t2 SET b=3274 WHERE a=3250;\nUPDATE t2 SET b=37057 WHERE a=3251;\nUPDATE t2 SET b=16745 WHERE a=3252;\nUPDATE t2 SET b=92652 WHERE a=3253;\nUPDATE t2 SET b=45038 WHERE a=3254;\nUPDATE t2 SET b=67415 WHERE a=3255;\nUPDATE t2 SET b=29980 WHERE a=3256;\nUPDATE t2 SET b=94004 WHERE a=3257;\nUPDATE t2 SET b=4252 WHERE a=3258;\nUPDATE t2 SET b=28709 WHERE a=3259;\nUPDATE t2 SET b=57427 WHERE a=3260;\nUPDATE t2 SET b=95625 WHERE a=3261;\nUPDATE t2 SET b=95697 WHERE a=3262;\nUPDATE t2 SET b=86344 WHERE a=3263;\nUPDATE t2 SET b=54993 WHERE a=3264;\nUPDATE t2 SET b=14115 WHERE a=3265;\nUPDATE t2 SET b=31726 WHERE a=3266;\nUPDATE t2 SET b=81962 WHERE a=3267;\nUPDATE t2 SET b=58514 WHERE a=3268;\nUPDATE t2 SET b=44791 WHERE a=3269;\nUPDATE t2 SET b=36673 WHERE a=3270;\nUPDATE t2 SET b=36106 WHERE a=3271;\nUPDATE t2 SET b=79511 WHERE a=3272;\nUPDATE t2 SET b=56699 WHERE a=3273;\nUPDATE t2 SET b=17745 WHERE a=3274;\nUPDATE t2 SET b=15641 WHERE a=3275;\nUPDATE t2 SET b=18479 WHERE a=3276;\nUPDATE t2 SET b=60652 WHERE a=3277;\nUPDATE t2 SET b=81138 WHERE a=3278;\nUPDATE t2 SET b=85435 WHERE a=3279;\nUPDATE t2 SET b=56771 WHERE a=3280;\nUPDATE t2 SET b=3796 WHERE a=3281;\nUPDATE t2 SET b=61540 WHERE a=3282;\nUPDATE t2 SET b=89765 WHERE a=3283;\nUPDATE t2 SET b=4712 WHERE a=3284;\nUPDATE t2 SET b=70227 WHERE a=3285;\nUPDATE t2 SET b=32819 WHERE a=3286;\nUPDATE t2 SET b=76889 WHERE a=3287;\nUPDATE t2 SET b=80375 WHERE a=3288;\nUPDATE t2 SET b=64611 WHERE a=3289;\nUPDATE t2 SET b=32431 WHERE a=3290;\nUPDATE t2 SET b=47612 WHERE a=3291;\nUPDATE t2 SET b=48890 WHERE a=3292;\nUPDATE t2 SET b=31547 WHERE a=3293;\nUPDATE t2 SET b=98177 WHERE a=3294;\nUPDATE t2 SET b=40540 WHERE a=3295;\nUPDATE t2 SET b=56491 WHERE a=3296;\nUPDATE t2 SET b=13495 WHERE a=3297;\nUPDATE t2 SET b=20932 WHERE a=3298;\nUPDATE t2 SET b=17136 WHERE a=3299;\nUPDATE t2 SET b=31243 WHERE a=3300;\nUPDATE t2 SET b=3278 WHERE a=3301;\nUPDATE t2 SET b=90574 WHERE a=3302;\nUPDATE t2 SET b=77954 WHERE a=3303;\nUPDATE t2 SET b=14030 WHERE a=3304;\nUPDATE t2 SET b=57367 WHERE a=3305;\nUPDATE t2 SET b=4983 WHERE a=3306;\nUPDATE t2 SET b=61872 WHERE a=3307;\nUPDATE t2 SET b=53373 WHERE a=3308;\nUPDATE t2 SET b=37733 WHERE a=3309;\nUPDATE t2 SET b=16695 WHERE a=3310;\nUPDATE t2 SET b=12209 WHERE a=3311;\nUPDATE t2 SET b=9834 WHERE a=3312;\nUPDATE t2 SET b=29546 WHERE a=3313;\nUPDATE t2 SET b=66246 WHERE a=3314;\nUPDATE t2 SET b=85448 WHERE a=3315;\nUPDATE t2 SET b=10670 WHERE a=3316;\nUPDATE t2 SET b=13866 WHERE a=3317;\nUPDATE t2 SET b=82129 WHERE a=3318;\nUPDATE t2 SET b=78787 WHERE a=3319;\nUPDATE t2 SET b=71269 WHERE a=3320;\nUPDATE t2 SET b=76623 WHERE a=3321;\nUPDATE t2 SET b=36267 WHERE a=3322;\nUPDATE t2 SET b=67663 WHERE a=3323;\nUPDATE t2 SET b=4122 WHERE a=3324;\nUPDATE t2 SET b=11683 WHERE a=3325;\nUPDATE t2 SET b=51689 WHERE a=3326;\nUPDATE t2 SET b=42746 WHERE a=3327;\nUPDATE t2 SET b=14310 WHERE a=3328;\nUPDATE t2 SET b=5077 WHERE a=3329;\nUPDATE t2 SET b=75291 WHERE a=3330;\nUPDATE t2 SET b=54244 WHERE a=3331;\nUPDATE t2 SET b=53463 WHERE a=3332;\nUPDATE t2 SET b=64505 WHERE a=3333;\nUPDATE t2 SET b=22196 WHERE a=3334;\nUPDATE t2 SET b=94372 WHERE a=3335;\nUPDATE t2 SET b=55161 WHERE a=3336;\nUPDATE t2 SET b=97801 WHERE a=3337;\nUPDATE t2 SET b=97196 WHERE a=3338;\nUPDATE t2 SET b=86248 WHERE a=3339;\nUPDATE t2 SET b=58313 WHERE a=3340;\nUPDATE t2 SET b=36126 WHERE a=3341;\nUPDATE t2 SET b=60240 WHERE a=3342;\nUPDATE t2 SET b=46257 WHERE a=3343;\nUPDATE t2 SET b=87476 WHERE a=3344;\nUPDATE t2 SET b=28190 WHERE a=3345;\nUPDATE t2 SET b=8035 WHERE a=3346;\nUPDATE t2 SET b=25486 WHERE a=3347;\nUPDATE t2 SET b=27361 WHERE a=3348;\nUPDATE t2 SET b=34675 WHERE a=3349;\nUPDATE t2 SET b=22550 WHERE a=3350;\nUPDATE t2 SET b=53839 WHERE a=3351;\nUPDATE t2 SET b=39578 WHERE a=3352;\nUPDATE t2 SET b=21220 WHERE a=3353;\nUPDATE t2 SET b=62471 WHERE a=3354;\nUPDATE t2 SET b=99636 WHERE a=3355;\nUPDATE t2 SET b=28459 WHERE a=3356;\nUPDATE t2 SET b=96065 WHERE a=3357;\nUPDATE t2 SET b=6552 WHERE a=3358;\nUPDATE t2 SET b=64982 WHERE a=3359;\nUPDATE t2 SET b=46850 WHERE a=3360;\nUPDATE t2 SET b=90420 WHERE a=3361;\nUPDATE t2 SET b=48602 WHERE a=3362;\nUPDATE t2 SET b=17474 WHERE a=3363;\nUPDATE t2 SET b=88190 WHERE a=3364;\nUPDATE t2 SET b=37182 WHERE a=3365;\nUPDATE t2 SET b=27969 WHERE a=3366;\nUPDATE t2 SET b=99639 WHERE a=3367;\nUPDATE t2 SET b=58211 WHERE a=3368;\nUPDATE t2 SET b=21256 WHERE a=3369;\nUPDATE t2 SET b=45467 WHERE a=3370;\nUPDATE t2 SET b=65898 WHERE a=3371;\nUPDATE t2 SET b=50276 WHERE a=3372;\nUPDATE t2 SET b=5201 WHERE a=3373;\nUPDATE t2 SET b=59064 WHERE a=3374;\nUPDATE t2 SET b=62270 WHERE a=3375;\nUPDATE t2 SET b=91505 WHERE a=3376;\nUPDATE t2 SET b=45185 WHERE a=3377;\nUPDATE t2 SET b=34384 WHERE a=3378;\nUPDATE t2 SET b=76835 WHERE a=3379;\nUPDATE t2 SET b=42203 WHERE a=3380;\nUPDATE t2 SET b=49320 WHERE a=3381;\nUPDATE t2 SET b=86272 WHERE a=3382;\nUPDATE t2 SET b=65391 WHERE a=3383;\nUPDATE t2 SET b=45656 WHERE a=3384;\nUPDATE t2 SET b=67054 WHERE a=3385;\nUPDATE t2 SET b=57836 WHERE a=3386;\nUPDATE t2 SET b=83580 WHERE a=3387;\nUPDATE t2 SET b=88977 WHERE a=3388;\nUPDATE t2 SET b=66649 WHERE a=3389;\nUPDATE t2 SET b=28802 WHERE a=3390;\nUPDATE t2 SET b=11473 WHERE a=3391;\nUPDATE t2 SET b=16644 WHERE a=3392;\nUPDATE t2 SET b=41580 WHERE a=3393;\nUPDATE t2 SET b=18364 WHERE a=3394;\nUPDATE t2 SET b=29258 WHERE a=3395;\nUPDATE t2 SET b=695 WHERE a=3396;\nUPDATE t2 SET b=36045 WHERE a=3397;\nUPDATE t2 SET b=27811 WHERE a=3398;\nUPDATE t2 SET b=96361 WHERE a=3399;\nUPDATE t2 SET b=26403 WHERE a=3400;\nUPDATE t2 SET b=91254 WHERE a=3401;\nUPDATE t2 SET b=14549 WHERE a=3402;\nUPDATE t2 SET b=53101 WHERE a=3403;\nUPDATE t2 SET b=52350 WHERE a=3404;\nUPDATE t2 SET b=4235 WHERE a=3405;\nUPDATE t2 SET b=48322 WHERE a=3406;\nUPDATE t2 SET b=66617 WHERE a=3407;\nUPDATE t2 SET b=87005 WHERE a=3408;\nUPDATE t2 SET b=84830 WHERE a=3409;\nUPDATE t2 SET b=69146 WHERE a=3410;\nUPDATE t2 SET b=6336 WHERE a=3411;\nUPDATE t2 SET b=46356 WHERE a=3412;\nUPDATE t2 SET b=65650 WHERE a=3413;\nUPDATE t2 SET b=10183 WHERE a=3414;\nUPDATE t2 SET b=45761 WHERE a=3415;\nUPDATE t2 SET b=82245 WHERE a=3416;\nUPDATE t2 SET b=23702 WHERE a=3417;\nUPDATE t2 SET b=18677 WHERE a=3418;\nUPDATE t2 SET b=26042 WHERE a=3419;\nUPDATE t2 SET b=89821 WHERE a=3420;\nUPDATE t2 SET b=62143 WHERE a=3421;\nUPDATE t2 SET b=24612 WHERE a=3422;\nUPDATE t2 SET b=91689 WHERE a=3423;\nUPDATE t2 SET b=92255 WHERE a=3424;\nUPDATE t2 SET b=112 WHERE a=3425;\nUPDATE t2 SET b=639 WHERE a=3426;\nUPDATE t2 SET b=95454 WHERE a=3427;\nUPDATE t2 SET b=97834 WHERE a=3428;\nUPDATE t2 SET b=56314 WHERE a=3429;\nUPDATE t2 SET b=59548 WHERE a=3430;\nUPDATE t2 SET b=75216 WHERE a=3431;\nUPDATE t2 SET b=40281 WHERE a=3432;\nUPDATE t2 SET b=48058 WHERE a=3433;\nUPDATE t2 SET b=10581 WHERE a=3434;\nUPDATE t2 SET b=36550 WHERE a=3435;\nUPDATE t2 SET b=76606 WHERE a=3436;\nUPDATE t2 SET b=66683 WHERE a=3437;\nUPDATE t2 SET b=56053 WHERE a=3438;\nUPDATE t2 SET b=36609 WHERE a=3439;\nUPDATE t2 SET b=68735 WHERE a=3440;\nUPDATE t2 SET b=76309 WHERE a=3441;\nUPDATE t2 SET b=95270 WHERE a=3442;\nUPDATE t2 SET b=37475 WHERE a=3443;\nUPDATE t2 SET b=29793 WHERE a=3444;\nUPDATE t2 SET b=90396 WHERE a=3445;\nUPDATE t2 SET b=11852 WHERE a=3446;\nUPDATE t2 SET b=78244 WHERE a=3447;\nUPDATE t2 SET b=68948 WHERE a=3448;\nUPDATE t2 SET b=81810 WHERE a=3449;\nUPDATE t2 SET b=42891 WHERE a=3450;\nUPDATE t2 SET b=38857 WHERE a=3451;\nUPDATE t2 SET b=31560 WHERE a=3452;\nUPDATE t2 SET b=4925 WHERE a=3453;\nUPDATE t2 SET b=82490 WHERE a=3454;\nUPDATE t2 SET b=55542 WHERE a=3455;\nUPDATE t2 SET b=56988 WHERE a=3456;\nUPDATE t2 SET b=77412 WHERE a=3457;\nUPDATE t2 SET b=94031 WHERE a=3458;\nUPDATE t2 SET b=57164 WHERE a=3459;\nUPDATE t2 SET b=66755 WHERE a=3460;\nUPDATE t2 SET b=33513 WHERE a=3461;\nUPDATE t2 SET b=98722 WHERE a=3462;\nUPDATE t2 SET b=72383 WHERE a=3463;\nUPDATE t2 SET b=32180 WHERE a=3464;\nUPDATE t2 SET b=94012 WHERE a=3465;\nUPDATE t2 SET b=91288 WHERE a=3466;\nUPDATE t2 SET b=414 WHERE a=3467;\nUPDATE t2 SET b=65484 WHERE a=3468;\nUPDATE t2 SET b=86670 WHERE a=3469;\nUPDATE t2 SET b=73467 WHERE a=3470;\nUPDATE t2 SET b=45361 WHERE a=3471;\nUPDATE t2 SET b=11078 WHERE a=3472;\nUPDATE t2 SET b=77917 WHERE a=3473;\nUPDATE t2 SET b=41661 WHERE a=3474;\nUPDATE t2 SET b=93666 WHERE a=3475;\nUPDATE t2 SET b=14863 WHERE a=3476;\nUPDATE t2 SET b=79768 WHERE a=3477;\nUPDATE t2 SET b=97765 WHERE a=3478;\nUPDATE t2 SET b=68679 WHERE a=3479;\nUPDATE t2 SET b=38741 WHERE a=3480;\nUPDATE t2 SET b=68766 WHERE a=3481;\nUPDATE t2 SET b=2827 WHERE a=3482;\nUPDATE t2 SET b=58472 WHERE a=3483;\nUPDATE t2 SET b=88795 WHERE a=3484;\nUPDATE t2 SET b=33260 WHERE a=3485;\nUPDATE t2 SET b=78687 WHERE a=3486;\nUPDATE t2 SET b=89905 WHERE a=3487;\nUPDATE t2 SET b=59315 WHERE a=3488;\nUPDATE t2 SET b=68449 WHERE a=3489;\nUPDATE t2 SET b=84861 WHERE a=3490;\nUPDATE t2 SET b=62250 WHERE a=3491;\nUPDATE t2 SET b=40042 WHERE a=3492;\nUPDATE t2 SET b=56527 WHERE a=3493;\nUPDATE t2 SET b=43795 WHERE a=3494;\nUPDATE t2 SET b=85328 WHERE a=3495;\nUPDATE t2 SET b=53297 WHERE a=3496;\nUPDATE t2 SET b=60894 WHERE a=3497;\nUPDATE t2 SET b=37829 WHERE a=3498;\nUPDATE t2 SET b=95877 WHERE a=3499;\nUPDATE t2 SET b=30905 WHERE a=3500;\nUPDATE t2 SET b=48028 WHERE a=3501;\nUPDATE t2 SET b=8737 WHERE a=3502;\nUPDATE t2 SET b=69232 WHERE a=3503;\nUPDATE t2 SET b=83037 WHERE a=3504;\nUPDATE t2 SET b=17260 WHERE a=3505;\nUPDATE t2 SET b=90517 WHERE a=3506;\nUPDATE t2 SET b=88284 WHERE a=3507;\nUPDATE t2 SET b=61296 WHERE a=3508;\nUPDATE t2 SET b=95133 WHERE a=3509;\nUPDATE t2 SET b=28741 WHERE a=3510;\nUPDATE t2 SET b=86272 WHERE a=3511;\nUPDATE t2 SET b=49074 WHERE a=3512;\nUPDATE t2 SET b=25332 WHERE a=3513;\nUPDATE t2 SET b=13472 WHERE a=3514;\nUPDATE t2 SET b=30677 WHERE a=3515;\nUPDATE t2 SET b=87338 WHERE a=3516;\nUPDATE t2 SET b=7700 WHERE a=3517;\nUPDATE t2 SET b=56126 WHERE a=3518;\nUPDATE t2 SET b=9201 WHERE a=3519;\nUPDATE t2 SET b=92411 WHERE a=3520;\nUPDATE t2 SET b=58419 WHERE a=3521;\nUPDATE t2 SET b=9098 WHERE a=3522;\nUPDATE t2 SET b=45066 WHERE a=3523;\nUPDATE t2 SET b=24792 WHERE a=3524;\nUPDATE t2 SET b=15015 WHERE a=3525;\nUPDATE t2 SET b=81386 WHERE a=3526;\nUPDATE t2 SET b=72293 WHERE a=3527;\nUPDATE t2 SET b=66922 WHERE a=3528;\nUPDATE t2 SET b=4376 WHERE a=3529;\nUPDATE t2 SET b=5016 WHERE a=3530;\nUPDATE t2 SET b=61928 WHERE a=3531;\nUPDATE t2 SET b=37200 WHERE a=3532;\nUPDATE t2 SET b=20578 WHERE a=3533;\nUPDATE t2 SET b=35259 WHERE a=3534;\nUPDATE t2 SET b=77055 WHERE a=3535;\nUPDATE t2 SET b=18728 WHERE a=3536;\nUPDATE t2 SET b=97497 WHERE a=3537;\nUPDATE t2 SET b=36500 WHERE a=3538;\nUPDATE t2 SET b=59490 WHERE a=3539;\nUPDATE t2 SET b=40885 WHERE a=3540;\nUPDATE t2 SET b=54428 WHERE a=3541;\nUPDATE t2 SET b=57468 WHERE a=3542;\nUPDATE t2 SET b=28385 WHERE a=3543;\nUPDATE t2 SET b=36764 WHERE a=3544;\nUPDATE t2 SET b=50293 WHERE a=3545;\nUPDATE t2 SET b=93887 WHERE a=3546;\nUPDATE t2 SET b=43208 WHERE a=3547;\nUPDATE t2 SET b=41508 WHERE a=3548;\nUPDATE t2 SET b=14016 WHERE a=3549;\nUPDATE t2 SET b=74195 WHERE a=3550;\nUPDATE t2 SET b=21956 WHERE a=3551;\nUPDATE t2 SET b=73949 WHERE a=3552;\nUPDATE t2 SET b=40514 WHERE a=3553;\nUPDATE t2 SET b=6170 WHERE a=3554;\nUPDATE t2 SET b=34329 WHERE a=3555;\nUPDATE t2 SET b=69806 WHERE a=3556;\nUPDATE t2 SET b=66713 WHERE a=3557;\nUPDATE t2 SET b=65302 WHERE a=3558;\nUPDATE t2 SET b=72779 WHERE a=3559;\nUPDATE t2 SET b=60445 WHERE a=3560;\nUPDATE t2 SET b=85909 WHERE a=3561;\nUPDATE t2 SET b=27835 WHERE a=3562;\nUPDATE t2 SET b=83110 WHERE a=3563;\nUPDATE t2 SET b=76340 WHERE a=3564;\nUPDATE t2 SET b=27456 WHERE a=3565;\nUPDATE t2 SET b=68188 WHERE a=3566;\nUPDATE t2 SET b=62902 WHERE a=3567;\nUPDATE t2 SET b=41950 WHERE a=3568;\nUPDATE t2 SET b=49055 WHERE a=3569;\nUPDATE t2 SET b=76590 WHERE a=3570;\nUPDATE t2 SET b=33120 WHERE a=3571;\nUPDATE t2 SET b=74545 WHERE a=3572;\nUPDATE t2 SET b=89351 WHERE a=3573;\nUPDATE t2 SET b=80889 WHERE a=3574;\nUPDATE t2 SET b=23129 WHERE a=3575;\nUPDATE t2 SET b=9307 WHERE a=3576;\nUPDATE t2 SET b=39593 WHERE a=3577;\nUPDATE t2 SET b=63216 WHERE a=3578;\nUPDATE t2 SET b=58901 WHERE a=3579;\nUPDATE t2 SET b=24590 WHERE a=3580;\nUPDATE t2 SET b=92288 WHERE a=3581;\nUPDATE t2 SET b=7015 WHERE a=3582;\nUPDATE t2 SET b=69923 WHERE a=3583;\nUPDATE t2 SET b=21248 WHERE a=3584;\nUPDATE t2 SET b=21642 WHERE a=3585;\nUPDATE t2 SET b=50733 WHERE a=3586;\nUPDATE t2 SET b=22977 WHERE a=3587;\nUPDATE t2 SET b=60881 WHERE a=3588;\nUPDATE t2 SET b=71155 WHERE a=3589;\nUPDATE t2 SET b=15846 WHERE a=3590;\nUPDATE t2 SET b=39916 WHERE a=3591;\nUPDATE t2 SET b=92496 WHERE a=3592;\nUPDATE t2 SET b=89363 WHERE a=3593;\nUPDATE t2 SET b=44513 WHERE a=3594;\nUPDATE t2 SET b=68798 WHERE a=3595;\nUPDATE t2 SET b=98990 WHERE a=3596;\nUPDATE t2 SET b=5247 WHERE a=3597;\nUPDATE t2 SET b=5644 WHERE a=3598;\nUPDATE t2 SET b=44625 WHERE a=3599;\nUPDATE t2 SET b=89126 WHERE a=3600;\nUPDATE t2 SET b=99172 WHERE a=3601;\nUPDATE t2 SET b=64652 WHERE a=3602;\nUPDATE t2 SET b=44461 WHERE a=3603;\nUPDATE t2 SET b=80461 WHERE a=3604;\nUPDATE t2 SET b=14373 WHERE a=3605;\nUPDATE t2 SET b=12371 WHERE a=3606;\nUPDATE t2 SET b=71528 WHERE a=3607;\nUPDATE t2 SET b=20826 WHERE a=3608;\nUPDATE t2 SET b=60780 WHERE a=3609;\nUPDATE t2 SET b=98456 WHERE a=3610;\nUPDATE t2 SET b=88534 WHERE a=3611;\nUPDATE t2 SET b=1398 WHERE a=3612;\nUPDATE t2 SET b=64431 WHERE a=3613;\nUPDATE t2 SET b=21271 WHERE a=3614;\nUPDATE t2 SET b=82641 WHERE a=3615;\nUPDATE t2 SET b=14263 WHERE a=3616;\nUPDATE t2 SET b=98792 WHERE a=3617;\nUPDATE t2 SET b=96588 WHERE a=3618;\nUPDATE t2 SET b=58097 WHERE a=3619;\nUPDATE t2 SET b=75720 WHERE a=3620;\nUPDATE t2 SET b=40415 WHERE a=3621;\nUPDATE t2 SET b=20859 WHERE a=3622;\nUPDATE t2 SET b=72084 WHERE a=3623;\nUPDATE t2 SET b=47736 WHERE a=3624;\nUPDATE t2 SET b=93202 WHERE a=3625;\nUPDATE t2 SET b=98670 WHERE a=3626;\nUPDATE t2 SET b=55814 WHERE a=3627;\nUPDATE t2 SET b=35064 WHERE a=3628;\nUPDATE t2 SET b=35472 WHERE a=3629;\nUPDATE t2 SET b=88568 WHERE a=3630;\nUPDATE t2 SET b=3217 WHERE a=3631;\nUPDATE t2 SET b=12024 WHERE a=3632;\nUPDATE t2 SET b=32586 WHERE a=3633;\nUPDATE t2 SET b=70690 WHERE a=3634;\nUPDATE t2 SET b=94141 WHERE a=3635;\nUPDATE t2 SET b=73179 WHERE a=3636;\nUPDATE t2 SET b=4308 WHERE a=3637;\nUPDATE t2 SET b=6391 WHERE a=3638;\nUPDATE t2 SET b=6334 WHERE a=3639;\nUPDATE t2 SET b=552 WHERE a=3640;\nUPDATE t2 SET b=39539 WHERE a=3641;\nUPDATE t2 SET b=63757 WHERE a=3642;\nUPDATE t2 SET b=18003 WHERE a=3643;\nUPDATE t2 SET b=68916 WHERE a=3644;\nUPDATE t2 SET b=1498 WHERE a=3645;\nUPDATE t2 SET b=37201 WHERE a=3646;\nUPDATE t2 SET b=97836 WHERE a=3647;\nUPDATE t2 SET b=4509 WHERE a=3648;\nUPDATE t2 SET b=89707 WHERE a=3649;\nUPDATE t2 SET b=97323 WHERE a=3650;\nUPDATE t2 SET b=93633 WHERE a=3651;\nUPDATE t2 SET b=79946 WHERE a=3652;\nUPDATE t2 SET b=15339 WHERE a=3653;\nUPDATE t2 SET b=91269 WHERE a=3654;\nUPDATE t2 SET b=49537 WHERE a=3655;\nUPDATE t2 SET b=41685 WHERE a=3656;\nUPDATE t2 SET b=33325 WHERE a=3657;\nUPDATE t2 SET b=52688 WHERE a=3658;\nUPDATE t2 SET b=4552 WHERE a=3659;\nUPDATE t2 SET b=20690 WHERE a=3660;\nUPDATE t2 SET b=87703 WHERE a=3661;\nUPDATE t2 SET b=40495 WHERE a=3662;\nUPDATE t2 SET b=14743 WHERE a=3663;\nUPDATE t2 SET b=5403 WHERE a=3664;\nUPDATE t2 SET b=67136 WHERE a=3665;\nUPDATE t2 SET b=72259 WHERE a=3666;\nUPDATE t2 SET b=77813 WHERE a=3667;\nUPDATE t2 SET b=92122 WHERE a=3668;\nUPDATE t2 SET b=6894 WHERE a=3669;\nUPDATE t2 SET b=39437 WHERE a=3670;\nUPDATE t2 SET b=42717 WHERE a=3671;\nUPDATE t2 SET b=5009 WHERE a=3672;\nUPDATE t2 SET b=7987 WHERE a=3673;\nUPDATE t2 SET b=91164 WHERE a=3674;\nUPDATE t2 SET b=18381 WHERE a=3675;\nUPDATE t2 SET b=61498 WHERE a=3676;\nUPDATE t2 SET b=91128 WHERE a=3677;\nUPDATE t2 SET b=64640 WHERE a=3678;\nUPDATE t2 SET b=2799 WHERE a=3679;\nUPDATE t2 SET b=44846 WHERE a=3680;\nUPDATE t2 SET b=83228 WHERE a=3681;\nUPDATE t2 SET b=75383 WHERE a=3682;\nUPDATE t2 SET b=30583 WHERE a=3683;\nUPDATE t2 SET b=3299 WHERE a=3684;\nUPDATE t2 SET b=79779 WHERE a=3685;\nUPDATE t2 SET b=25469 WHERE a=3686;\nUPDATE t2 SET b=79217 WHERE a=3687;\nUPDATE t2 SET b=15266 WHERE a=3688;\nUPDATE t2 SET b=21272 WHERE a=3689;\nUPDATE t2 SET b=56433 WHERE a=3690;\nUPDATE t2 SET b=29954 WHERE a=3691;\nUPDATE t2 SET b=48440 WHERE a=3692;\nUPDATE t2 SET b=55115 WHERE a=3693;\nUPDATE t2 SET b=84334 WHERE a=3694;\nUPDATE t2 SET b=18574 WHERE a=3695;\nUPDATE t2 SET b=48171 WHERE a=3696;\nUPDATE t2 SET b=84571 WHERE a=3697;\nUPDATE t2 SET b=98235 WHERE a=3698;\nUPDATE t2 SET b=57046 WHERE a=3699;\nUPDATE t2 SET b=76988 WHERE a=3700;\nUPDATE t2 SET b=18741 WHERE a=3701;\nUPDATE t2 SET b=84086 WHERE a=3702;\nUPDATE t2 SET b=10948 WHERE a=3703;\nUPDATE t2 SET b=73311 WHERE a=3704;\nUPDATE t2 SET b=93465 WHERE a=3705;\nUPDATE t2 SET b=6026 WHERE a=3706;\nUPDATE t2 SET b=87320 WHERE a=3707;\nUPDATE t2 SET b=61247 WHERE a=3708;\nUPDATE t2 SET b=63196 WHERE a=3709;\nUPDATE t2 SET b=59352 WHERE a=3710;\nUPDATE t2 SET b=63195 WHERE a=3711;\nUPDATE t2 SET b=45615 WHERE a=3712;\nUPDATE t2 SET b=95620 WHERE a=3713;\nUPDATE t2 SET b=74705 WHERE a=3714;\nUPDATE t2 SET b=7228 WHERE a=3715;\nUPDATE t2 SET b=13642 WHERE a=3716;\nUPDATE t2 SET b=61980 WHERE a=3717;\nUPDATE t2 SET b=53726 WHERE a=3718;\nUPDATE t2 SET b=61840 WHERE a=3719;\nUPDATE t2 SET b=30441 WHERE a=3720;\nUPDATE t2 SET b=75058 WHERE a=3721;\nUPDATE t2 SET b=47297 WHERE a=3722;\nUPDATE t2 SET b=97051 WHERE a=3723;\nUPDATE t2 SET b=65384 WHERE a=3724;\nUPDATE t2 SET b=82963 WHERE a=3725;\nUPDATE t2 SET b=96933 WHERE a=3726;\nUPDATE t2 SET b=91654 WHERE a=3727;\nUPDATE t2 SET b=1196 WHERE a=3728;\nUPDATE t2 SET b=80878 WHERE a=3729;\nUPDATE t2 SET b=31372 WHERE a=3730;\nUPDATE t2 SET b=45849 WHERE a=3731;\nUPDATE t2 SET b=15886 WHERE a=3732;\nUPDATE t2 SET b=90365 WHERE a=3733;\nUPDATE t2 SET b=20298 WHERE a=3734;\nUPDATE t2 SET b=68040 WHERE a=3735;\nUPDATE t2 SET b=35448 WHERE a=3736;\nUPDATE t2 SET b=63409 WHERE a=3737;\nUPDATE t2 SET b=63451 WHERE a=3738;\nUPDATE t2 SET b=41468 WHERE a=3739;\nUPDATE t2 SET b=49361 WHERE a=3740;\nUPDATE t2 SET b=51934 WHERE a=3741;\nUPDATE t2 SET b=8459 WHERE a=3742;\nUPDATE t2 SET b=28284 WHERE a=3743;\nUPDATE t2 SET b=48627 WHERE a=3744;\nUPDATE t2 SET b=31914 WHERE a=3745;\nUPDATE t2 SET b=57440 WHERE a=3746;\nUPDATE t2 SET b=31280 WHERE a=3747;\nUPDATE t2 SET b=76301 WHERE a=3748;\nUPDATE t2 SET b=28448 WHERE a=3749;\nUPDATE t2 SET b=1769 WHERE a=3750;\nUPDATE t2 SET b=88553 WHERE a=3751;\nUPDATE t2 SET b=51135 WHERE a=3752;\nUPDATE t2 SET b=84835 WHERE a=3753;\nUPDATE t2 SET b=60343 WHERE a=3754;\nUPDATE t2 SET b=34326 WHERE a=3755;\nUPDATE t2 SET b=10286 WHERE a=3756;\nUPDATE t2 SET b=93082 WHERE a=3757;\nUPDATE t2 SET b=14952 WHERE a=3758;\nUPDATE t2 SET b=32291 WHERE a=3759;\nUPDATE t2 SET b=19643 WHERE a=3760;\nUPDATE t2 SET b=59572 WHERE a=3761;\nUPDATE t2 SET b=47283 WHERE a=3762;\nUPDATE t2 SET b=16308 WHERE a=3763;\nUPDATE t2 SET b=61038 WHERE a=3764;\nUPDATE t2 SET b=15529 WHERE a=3765;\nUPDATE t2 SET b=30668 WHERE a=3766;\nUPDATE t2 SET b=11948 WHERE a=3767;\nUPDATE t2 SET b=97637 WHERE a=3768;\nUPDATE t2 SET b=87188 WHERE a=3769;\nUPDATE t2 SET b=64833 WHERE a=3770;\nUPDATE t2 SET b=95774 WHERE a=3771;\nUPDATE t2 SET b=20798 WHERE a=3772;\nUPDATE t2 SET b=64724 WHERE a=3773;\nUPDATE t2 SET b=55475 WHERE a=3774;\nUPDATE t2 SET b=77540 WHERE a=3775;\nUPDATE t2 SET b=37769 WHERE a=3776;\nUPDATE t2 SET b=40422 WHERE a=3777;\nUPDATE t2 SET b=25831 WHERE a=3778;\nUPDATE t2 SET b=86180 WHERE a=3779;\nUPDATE t2 SET b=54458 WHERE a=3780;\nUPDATE t2 SET b=64895 WHERE a=3781;\nUPDATE t2 SET b=31803 WHERE a=3782;\nUPDATE t2 SET b=51700 WHERE a=3783;\nUPDATE t2 SET b=71397 WHERE a=3784;\nUPDATE t2 SET b=96916 WHERE a=3785;\nUPDATE t2 SET b=68624 WHERE a=3786;\nUPDATE t2 SET b=87980 WHERE a=3787;\nUPDATE t2 SET b=21563 WHERE a=3788;\nUPDATE t2 SET b=36501 WHERE a=3789;\nUPDATE t2 SET b=71696 WHERE a=3790;\nUPDATE t2 SET b=86663 WHERE a=3791;\nUPDATE t2 SET b=57815 WHERE a=3792;\nUPDATE t2 SET b=56274 WHERE a=3793;\nUPDATE t2 SET b=34640 WHERE a=3794;\nUPDATE t2 SET b=52749 WHERE a=3795;\nUPDATE t2 SET b=35160 WHERE a=3796;\nUPDATE t2 SET b=17934 WHERE a=3797;\nUPDATE t2 SET b=57767 WHERE a=3798;\nUPDATE t2 SET b=27409 WHERE a=3799;\nUPDATE t2 SET b=70034 WHERE a=3800;\nUPDATE t2 SET b=28483 WHERE a=3801;\nUPDATE t2 SET b=53181 WHERE a=3802;\nUPDATE t2 SET b=75055 WHERE a=3803;\nUPDATE t2 SET b=70851 WHERE a=3804;\nUPDATE t2 SET b=71471 WHERE a=3805;\nUPDATE t2 SET b=48613 WHERE a=3806;\nUPDATE t2 SET b=91209 WHERE a=3807;\nUPDATE t2 SET b=23101 WHERE a=3808;\nUPDATE t2 SET b=39626 WHERE a=3809;\nUPDATE t2 SET b=89379 WHERE a=3810;\nUPDATE t2 SET b=19741 WHERE a=3811;\nUPDATE t2 SET b=94607 WHERE a=3812;\nUPDATE t2 SET b=17672 WHERE a=3813;\nUPDATE t2 SET b=95338 WHERE a=3814;\nUPDATE t2 SET b=68259 WHERE a=3815;\nUPDATE t2 SET b=24716 WHERE a=3816;\nUPDATE t2 SET b=9670 WHERE a=3817;\nUPDATE t2 SET b=49462 WHERE a=3818;\nUPDATE t2 SET b=2756 WHERE a=3819;\nUPDATE t2 SET b=27135 WHERE a=3820;\nUPDATE t2 SET b=7267 WHERE a=3821;\nUPDATE t2 SET b=72948 WHERE a=3822;\nUPDATE t2 SET b=45528 WHERE a=3823;\nUPDATE t2 SET b=6404 WHERE a=3824;\nUPDATE t2 SET b=66168 WHERE a=3825;\nUPDATE t2 SET b=35242 WHERE a=3826;\nUPDATE t2 SET b=72262 WHERE a=3827;\nUPDATE t2 SET b=91297 WHERE a=3828;\nUPDATE t2 SET b=40682 WHERE a=3829;\nUPDATE t2 SET b=24042 WHERE a=3830;\nUPDATE t2 SET b=32221 WHERE a=3831;\nUPDATE t2 SET b=51899 WHERE a=3832;\nUPDATE t2 SET b=57342 WHERE a=3833;\nUPDATE t2 SET b=1333 WHERE a=3834;\nUPDATE t2 SET b=79483 WHERE a=3835;\nUPDATE t2 SET b=37746 WHERE a=3836;\nUPDATE t2 SET b=90557 WHERE a=3837;\nUPDATE t2 SET b=27567 WHERE a=3838;\nUPDATE t2 SET b=71603 WHERE a=3839;\nUPDATE t2 SET b=96255 WHERE a=3840;\nUPDATE t2 SET b=80635 WHERE a=3841;\nUPDATE t2 SET b=26682 WHERE a=3842;\nUPDATE t2 SET b=63835 WHERE a=3843;\nUPDATE t2 SET b=83222 WHERE a=3844;\nUPDATE t2 SET b=39789 WHERE a=3845;\nUPDATE t2 SET b=61678 WHERE a=3846;\nUPDATE t2 SET b=44821 WHERE a=3847;\nUPDATE t2 SET b=72423 WHERE a=3848;\nUPDATE t2 SET b=67515 WHERE a=3849;\nUPDATE t2 SET b=17556 WHERE a=3850;\nUPDATE t2 SET b=81207 WHERE a=3851;\nUPDATE t2 SET b=80376 WHERE a=3852;\nUPDATE t2 SET b=69797 WHERE a=3853;\nUPDATE t2 SET b=55147 WHERE a=3854;\nUPDATE t2 SET b=10090 WHERE a=3855;\nUPDATE t2 SET b=6595 WHERE a=3856;\nUPDATE t2 SET b=97323 WHERE a=3857;\nUPDATE t2 SET b=10329 WHERE a=3858;\nUPDATE t2 SET b=99207 WHERE a=3859;\nUPDATE t2 SET b=79539 WHERE a=3860;\nUPDATE t2 SET b=2879 WHERE a=3861;\nUPDATE t2 SET b=68955 WHERE a=3862;\nUPDATE t2 SET b=80125 WHERE a=3863;\nUPDATE t2 SET b=69898 WHERE a=3864;\nUPDATE t2 SET b=34401 WHERE a=3865;\nUPDATE t2 SET b=26103 WHERE a=3866;\nUPDATE t2 SET b=40785 WHERE a=3867;\nUPDATE t2 SET b=20460 WHERE a=3868;\nUPDATE t2 SET b=68242 WHERE a=3869;\nUPDATE t2 SET b=34323 WHERE a=3870;\nUPDATE t2 SET b=65579 WHERE a=3871;\nUPDATE t2 SET b=14535 WHERE a=3872;\nUPDATE t2 SET b=62295 WHERE a=3873;\nUPDATE t2 SET b=35343 WHERE a=3874;\nUPDATE t2 SET b=39492 WHERE a=3875;\nUPDATE t2 SET b=95123 WHERE a=3876;\nUPDATE t2 SET b=56106 WHERE a=3877;\nUPDATE t2 SET b=68820 WHERE a=3878;\nUPDATE t2 SET b=2402 WHERE a=3879;\nUPDATE t2 SET b=34291 WHERE a=3880;\nUPDATE t2 SET b=33080 WHERE a=3881;\nUPDATE t2 SET b=64435 WHERE a=3882;\nUPDATE t2 SET b=95889 WHERE a=3883;\nUPDATE t2 SET b=89702 WHERE a=3884;\nUPDATE t2 SET b=47393 WHERE a=3885;\nUPDATE t2 SET b=98103 WHERE a=3886;\nUPDATE t2 SET b=89831 WHERE a=3887;\nUPDATE t2 SET b=28184 WHERE a=3888;\nUPDATE t2 SET b=7008 WHERE a=3889;\nUPDATE t2 SET b=38157 WHERE a=3890;\nUPDATE t2 SET b=10052 WHERE a=3891;\nUPDATE t2 SET b=3948 WHERE a=3892;\nUPDATE t2 SET b=41515 WHERE a=3893;\nUPDATE t2 SET b=48972 WHERE a=3894;\nUPDATE t2 SET b=24550 WHERE a=3895;\nUPDATE t2 SET b=89192 WHERE a=3896;\nUPDATE t2 SET b=18693 WHERE a=3897;\nUPDATE t2 SET b=5239 WHERE a=3898;\nUPDATE t2 SET b=59662 WHERE a=3899;\nUPDATE t2 SET b=18290 WHERE a=3900;\nUPDATE t2 SET b=76132 WHERE a=3901;\nUPDATE t2 SET b=31491 WHERE a=3902;\nUPDATE t2 SET b=51110 WHERE a=3903;\nUPDATE t2 SET b=11090 WHERE a=3904;\nUPDATE t2 SET b=29854 WHERE a=3905;\nUPDATE t2 SET b=31457 WHERE a=3906;\nUPDATE t2 SET b=63295 WHERE a=3907;\nUPDATE t2 SET b=10735 WHERE a=3908;\nUPDATE t2 SET b=12662 WHERE a=3909;\nUPDATE t2 SET b=50657 WHERE a=3910;\nUPDATE t2 SET b=34212 WHERE a=3911;\nUPDATE t2 SET b=98664 WHERE a=3912;\nUPDATE t2 SET b=2931 WHERE a=3913;\nUPDATE t2 SET b=64213 WHERE a=3914;\nUPDATE t2 SET b=32145 WHERE a=3915;\nUPDATE t2 SET b=98031 WHERE a=3916;\nUPDATE t2 SET b=48296 WHERE a=3917;\nUPDATE t2 SET b=53969 WHERE a=3918;\nUPDATE t2 SET b=2438 WHERE a=3919;\nUPDATE t2 SET b=53239 WHERE a=3920;\nUPDATE t2 SET b=35291 WHERE a=3921;\nUPDATE t2 SET b=44833 WHERE a=3922;\nUPDATE t2 SET b=19716 WHERE a=3923;\nUPDATE t2 SET b=87803 WHERE a=3924;\nUPDATE t2 SET b=51116 WHERE a=3925;\nUPDATE t2 SET b=27704 WHERE a=3926;\nUPDATE t2 SET b=12843 WHERE a=3927;\nUPDATE t2 SET b=5236 WHERE a=3928;\nUPDATE t2 SET b=77761 WHERE a=3929;\nUPDATE t2 SET b=48772 WHERE a=3930;\nUPDATE t2 SET b=96177 WHERE a=3931;\nUPDATE t2 SET b=81700 WHERE a=3932;\nUPDATE t2 SET b=53149 WHERE a=3933;\nUPDATE t2 SET b=85080 WHERE a=3934;\nUPDATE t2 SET b=96467 WHERE a=3935;\nUPDATE t2 SET b=2472 WHERE a=3936;\nUPDATE t2 SET b=2152 WHERE a=3937;\nUPDATE t2 SET b=67117 WHERE a=3938;\nUPDATE t2 SET b=57022 WHERE a=3939;\nUPDATE t2 SET b=92662 WHERE a=3940;\nUPDATE t2 SET b=78773 WHERE a=3941;\nUPDATE t2 SET b=78536 WHERE a=3942;\nUPDATE t2 SET b=7290 WHERE a=3943;\nUPDATE t2 SET b=43066 WHERE a=3944;\nUPDATE t2 SET b=18066 WHERE a=3945;\nUPDATE t2 SET b=82622 WHERE a=3946;\nUPDATE t2 SET b=17218 WHERE a=3947;\nUPDATE t2 SET b=62651 WHERE a=3948;\nUPDATE t2 SET b=72594 WHERE a=3949;\nUPDATE t2 SET b=22022 WHERE a=3950;\nUPDATE t2 SET b=49369 WHERE a=3951;\nUPDATE t2 SET b=37147 WHERE a=3952;\nUPDATE t2 SET b=57160 WHERE a=3953;\nUPDATE t2 SET b=97708 WHERE a=3954;\nUPDATE t2 SET b=36428 WHERE a=3955;\nUPDATE t2 SET b=61018 WHERE a=3956;\nUPDATE t2 SET b=93004 WHERE a=3957;\nUPDATE t2 SET b=38075 WHERE a=3958;\nUPDATE t2 SET b=20553 WHERE a=3959;\nUPDATE t2 SET b=33674 WHERE a=3960;\nUPDATE t2 SET b=19020 WHERE a=3961;\nUPDATE t2 SET b=91051 WHERE a=3962;\nUPDATE t2 SET b=44968 WHERE a=3963;\nUPDATE t2 SET b=47451 WHERE a=3964;\nUPDATE t2 SET b=53883 WHERE a=3965;\nUPDATE t2 SET b=96906 WHERE a=3966;\nUPDATE t2 SET b=26120 WHERE a=3967;\nUPDATE t2 SET b=55054 WHERE a=3968;\nUPDATE t2 SET b=22576 WHERE a=3969;\nUPDATE t2 SET b=49669 WHERE a=3970;\nUPDATE t2 SET b=84304 WHERE a=3971;\nUPDATE t2 SET b=37706 WHERE a=3972;\nUPDATE t2 SET b=48906 WHERE a=3973;\nUPDATE t2 SET b=95379 WHERE a=3974;\nUPDATE t2 SET b=50476 WHERE a=3975;\nUPDATE t2 SET b=9581 WHERE a=3976;\nUPDATE t2 SET b=83175 WHERE a=3977;\nUPDATE t2 SET b=64176 WHERE a=3978;\nUPDATE t2 SET b=64796 WHERE a=3979;\nUPDATE t2 SET b=4237 WHERE a=3980;\nUPDATE t2 SET b=65421 WHERE a=3981;\nUPDATE t2 SET b=67880 WHERE a=3982;\nUPDATE t2 SET b=93796 WHERE a=3983;\nUPDATE t2 SET b=7824 WHERE a=3984;\nUPDATE t2 SET b=53929 WHERE a=3985;\nUPDATE t2 SET b=4902 WHERE a=3986;\nUPDATE t2 SET b=16030 WHERE a=3987;\nUPDATE t2 SET b=22709 WHERE a=3988;\nUPDATE t2 SET b=42257 WHERE a=3989;\nUPDATE t2 SET b=18146 WHERE a=3990;\nUPDATE t2 SET b=70232 WHERE a=3991;\nUPDATE t2 SET b=69215 WHERE a=3992;\nUPDATE t2 SET b=30924 WHERE a=3993;\nUPDATE t2 SET b=16008 WHERE a=3994;\nUPDATE t2 SET b=1434 WHERE a=3995;\nUPDATE t2 SET b=37512 WHERE a=3996;\nUPDATE t2 SET b=32761 WHERE a=3997;\nUPDATE t2 SET b=19646 WHERE a=3998;\nUPDATE t2 SET b=49283 WHERE a=3999;\nUPDATE t2 SET b=67332 WHERE a=4000;\nUPDATE t2 SET b=44221 WHERE a=4001;\nUPDATE t2 SET b=83185 WHERE a=4002;\nUPDATE t2 SET b=48324 WHERE a=4003;\nUPDATE t2 SET b=20860 WHERE a=4004;\nUPDATE t2 SET b=16615 WHERE a=4005;\nUPDATE t2 SET b=77223 WHERE a=4006;\nUPDATE t2 SET b=88303 WHERE a=4007;\nUPDATE t2 SET b=38462 WHERE a=4008;\nUPDATE t2 SET b=95645 WHERE a=4009;\nUPDATE t2 SET b=262 WHERE a=4010;\nUPDATE t2 SET b=20645 WHERE a=4011;\nUPDATE t2 SET b=86671 WHERE a=4012;\nUPDATE t2 SET b=65345 WHERE a=4013;\nUPDATE t2 SET b=88411 WHERE a=4014;\nUPDATE t2 SET b=13365 WHERE a=4015;\nUPDATE t2 SET b=39624 WHERE a=4016;\nUPDATE t2 SET b=82308 WHERE a=4017;\nUPDATE t2 SET b=15492 WHERE a=4018;\nUPDATE t2 SET b=93488 WHERE a=4019;\nUPDATE t2 SET b=3192 WHERE a=4020;\nUPDATE t2 SET b=68695 WHERE a=4021;\nUPDATE t2 SET b=51393 WHERE a=4022;\nUPDATE t2 SET b=84425 WHERE a=4023;\nUPDATE t2 SET b=49472 WHERE a=4024;\nUPDATE t2 SET b=32617 WHERE a=4025;\nUPDATE t2 SET b=61579 WHERE a=4026;\nUPDATE t2 SET b=40736 WHERE a=4027;\nUPDATE t2 SET b=35992 WHERE a=4028;\nUPDATE t2 SET b=29094 WHERE a=4029;\nUPDATE t2 SET b=7724 WHERE a=4030;\nUPDATE t2 SET b=5166 WHERE a=4031;\nUPDATE t2 SET b=39110 WHERE a=4032;\nUPDATE t2 SET b=89330 WHERE a=4033;\nUPDATE t2 SET b=35096 WHERE a=4034;\nUPDATE t2 SET b=62751 WHERE a=4035;\nUPDATE t2 SET b=75878 WHERE a=4036;\nUPDATE t2 SET b=95606 WHERE a=4037;\nUPDATE t2 SET b=29321 WHERE a=4038;\nUPDATE t2 SET b=30391 WHERE a=4039;\nUPDATE t2 SET b=96135 WHERE a=4040;\nUPDATE t2 SET b=64414 WHERE a=4041;\nUPDATE t2 SET b=91390 WHERE a=4042;\nUPDATE t2 SET b=83429 WHERE a=4043;\nUPDATE t2 SET b=66647 WHERE a=4044;\nUPDATE t2 SET b=4182 WHERE a=4045;\nUPDATE t2 SET b=33134 WHERE a=4046;\nUPDATE t2 SET b=18315 WHERE a=4047;\nUPDATE t2 SET b=12411 WHERE a=4048;\nUPDATE t2 SET b=4881 WHERE a=4049;\nUPDATE t2 SET b=3601 WHERE a=4050;\nUPDATE t2 SET b=12231 WHERE a=4051;\nUPDATE t2 SET b=60473 WHERE a=4052;\nUPDATE t2 SET b=55472 WHERE a=4053;\nUPDATE t2 SET b=53094 WHERE a=4054;\nUPDATE t2 SET b=70220 WHERE a=4055;\nUPDATE t2 SET b=73661 WHERE a=4056;\nUPDATE t2 SET b=27558 WHERE a=4057;\nUPDATE t2 SET b=44704 WHERE a=4058;\nUPDATE t2 SET b=51361 WHERE a=4059;\nUPDATE t2 SET b=82145 WHERE a=4060;\nUPDATE t2 SET b=56858 WHERE a=4061;\nUPDATE t2 SET b=64385 WHERE a=4062;\nUPDATE t2 SET b=70632 WHERE a=4063;\nUPDATE t2 SET b=81567 WHERE a=4064;\nUPDATE t2 SET b=47584 WHERE a=4065;\nUPDATE t2 SET b=5672 WHERE a=4066;\nUPDATE t2 SET b=54504 WHERE a=4067;\nUPDATE t2 SET b=99016 WHERE a=4068;\nUPDATE t2 SET b=33227 WHERE a=4069;\nUPDATE t2 SET b=6560 WHERE a=4070;\nUPDATE t2 SET b=73408 WHERE a=4071;\nUPDATE t2 SET b=99629 WHERE a=4072;\nUPDATE t2 SET b=9432 WHERE a=4073;\nUPDATE t2 SET b=20977 WHERE a=4074;\nUPDATE t2 SET b=42919 WHERE a=4075;\nUPDATE t2 SET b=6533 WHERE a=4076;\nUPDATE t2 SET b=23921 WHERE a=4077;\nUPDATE t2 SET b=79752 WHERE a=4078;\nUPDATE t2 SET b=12874 WHERE a=4079;\nUPDATE t2 SET b=48225 WHERE a=4080;\nUPDATE t2 SET b=64896 WHERE a=4081;\nUPDATE t2 SET b=45943 WHERE a=4082;\nUPDATE t2 SET b=18597 WHERE a=4083;\nUPDATE t2 SET b=88359 WHERE a=4084;\nUPDATE t2 SET b=69003 WHERE a=4085;\nUPDATE t2 SET b=68546 WHERE a=4086;\nUPDATE t2 SET b=6176 WHERE a=4087;\nUPDATE t2 SET b=91445 WHERE a=4088;\nUPDATE t2 SET b=12003 WHERE a=4089;\nUPDATE t2 SET b=55175 WHERE a=4090;\nUPDATE t2 SET b=29532 WHERE a=4091;\nUPDATE t2 SET b=37051 WHERE a=4092;\nUPDATE t2 SET b=46678 WHERE a=4093;\nUPDATE t2 SET b=63583 WHERE a=4094;\nUPDATE t2 SET b=58496 WHERE a=4095;\nUPDATE t2 SET b=65470 WHERE a=4096;\nUPDATE t2 SET b=90779 WHERE a=4097;\nUPDATE t2 SET b=66979 WHERE a=4098;\nUPDATE t2 SET b=81198 WHERE a=4099;\nUPDATE t2 SET b=96498 WHERE a=4100;\nUPDATE t2 SET b=89818 WHERE a=4101;\nUPDATE t2 SET b=65983 WHERE a=4102;\nUPDATE t2 SET b=76774 WHERE a=4103;\nUPDATE t2 SET b=22850 WHERE a=4104;\nUPDATE t2 SET b=53488 WHERE a=4105;\nUPDATE t2 SET b=50384 WHERE a=4106;\nUPDATE t2 SET b=91604 WHERE a=4107;\nUPDATE t2 SET b=83047 WHERE a=4108;\nUPDATE t2 SET b=48058 WHERE a=4109;\nUPDATE t2 SET b=16309 WHERE a=4110;\nUPDATE t2 SET b=4706 WHERE a=4111;\nUPDATE t2 SET b=36727 WHERE a=4112;\nUPDATE t2 SET b=65249 WHERE a=4113;\nUPDATE t2 SET b=71026 WHERE a=4114;\nUPDATE t2 SET b=45918 WHERE a=4115;\nUPDATE t2 SET b=46189 WHERE a=4116;\nUPDATE t2 SET b=60290 WHERE a=4117;\nUPDATE t2 SET b=57157 WHERE a=4118;\nUPDATE t2 SET b=33539 WHERE a=4119;\nUPDATE t2 SET b=53004 WHERE a=4120;\nUPDATE t2 SET b=8376 WHERE a=4121;\nUPDATE t2 SET b=3999 WHERE a=4122;\nUPDATE t2 SET b=49197 WHERE a=4123;\nUPDATE t2 SET b=68876 WHERE a=4124;\nUPDATE t2 SET b=74500 WHERE a=4125;\nUPDATE t2 SET b=59739 WHERE a=4126;\nUPDATE t2 SET b=18555 WHERE a=4127;\nUPDATE t2 SET b=90010 WHERE a=4128;\nUPDATE t2 SET b=34207 WHERE a=4129;\nUPDATE t2 SET b=3888 WHERE a=4130;\nUPDATE t2 SET b=24780 WHERE a=4131;\nUPDATE t2 SET b=63486 WHERE a=4132;\nUPDATE t2 SET b=72332 WHERE a=4133;\nUPDATE t2 SET b=67212 WHERE a=4134;\nUPDATE t2 SET b=41663 WHERE a=4135;\nUPDATE t2 SET b=73863 WHERE a=4136;\nUPDATE t2 SET b=73947 WHERE a=4137;\nUPDATE t2 SET b=97798 WHERE a=4138;\nUPDATE t2 SET b=49698 WHERE a=4139;\nUPDATE t2 SET b=15373 WHERE a=4140;\nUPDATE t2 SET b=5946 WHERE a=4141;\nUPDATE t2 SET b=91858 WHERE a=4142;\nUPDATE t2 SET b=25508 WHERE a=4143;\nUPDATE t2 SET b=9059 WHERE a=4144;\nUPDATE t2 SET b=72131 WHERE a=4145;\nUPDATE t2 SET b=52255 WHERE a=4146;\nUPDATE t2 SET b=98195 WHERE a=4147;\nUPDATE t2 SET b=92048 WHERE a=4148;\nUPDATE t2 SET b=56526 WHERE a=4149;\nUPDATE t2 SET b=12040 WHERE a=4150;\nUPDATE t2 SET b=762 WHERE a=4151;\nUPDATE t2 SET b=70157 WHERE a=4152;\nUPDATE t2 SET b=8684 WHERE a=4153;\nUPDATE t2 SET b=92086 WHERE a=4154;\nUPDATE t2 SET b=40971 WHERE a=4155;\nUPDATE t2 SET b=93093 WHERE a=4156;\nUPDATE t2 SET b=15563 WHERE a=4157;\nUPDATE t2 SET b=85458 WHERE a=4158;\nUPDATE t2 SET b=52005 WHERE a=4159;\nUPDATE t2 SET b=65675 WHERE a=4160;\nUPDATE t2 SET b=60469 WHERE a=4161;\nUPDATE t2 SET b=23231 WHERE a=4162;\nUPDATE t2 SET b=68412 WHERE a=4163;\nUPDATE t2 SET b=58905 WHERE a=4164;\nUPDATE t2 SET b=83290 WHERE a=4165;\nUPDATE t2 SET b=23326 WHERE a=4166;\nUPDATE t2 SET b=31614 WHERE a=4167;\nUPDATE t2 SET b=30696 WHERE a=4168;\nUPDATE t2 SET b=12382 WHERE a=4169;\nUPDATE t2 SET b=15242 WHERE a=4170;\nUPDATE t2 SET b=21144 WHERE a=4171;\nUPDATE t2 SET b=28649 WHERE a=4172;\nUPDATE t2 SET b=40326 WHERE a=4173;\nUPDATE t2 SET b=69000 WHERE a=4174;\nUPDATE t2 SET b=36049 WHERE a=4175;\nUPDATE t2 SET b=15926 WHERE a=4176;\nUPDATE t2 SET b=26950 WHERE a=4177;\nUPDATE t2 SET b=19439 WHERE a=4178;\nUPDATE t2 SET b=65061 WHERE a=4179;\nUPDATE t2 SET b=3400 WHERE a=4180;\nUPDATE t2 SET b=17309 WHERE a=4181;\nUPDATE t2 SET b=29015 WHERE a=4182;\nUPDATE t2 SET b=19711 WHERE a=4183;\nUPDATE t2 SET b=79663 WHERE a=4184;\nUPDATE t2 SET b=43896 WHERE a=4185;\nUPDATE t2 SET b=1073 WHERE a=4186;\nUPDATE t2 SET b=43356 WHERE a=4187;\nUPDATE t2 SET b=47792 WHERE a=4188;\nUPDATE t2 SET b=49680 WHERE a=4189;\nUPDATE t2 SET b=89729 WHERE a=4190;\nUPDATE t2 SET b=18262 WHERE a=4191;\nUPDATE t2 SET b=53567 WHERE a=4192;\nUPDATE t2 SET b=52019 WHERE a=4193;\nUPDATE t2 SET b=29065 WHERE a=4194;\nUPDATE t2 SET b=59858 WHERE a=4195;\nUPDATE t2 SET b=8551 WHERE a=4196;\nUPDATE t2 SET b=22869 WHERE a=4197;\nUPDATE t2 SET b=87529 WHERE a=4198;\nUPDATE t2 SET b=70528 WHERE a=4199;\nUPDATE t2 SET b=33896 WHERE a=4200;\nUPDATE t2 SET b=34028 WHERE a=4201;\nUPDATE t2 SET b=62913 WHERE a=4202;\nUPDATE t2 SET b=74719 WHERE a=4203;\nUPDATE t2 SET b=5822 WHERE a=4204;\nUPDATE t2 SET b=63791 WHERE a=4205;\nUPDATE t2 SET b=57695 WHERE a=4206;\nUPDATE t2 SET b=15762 WHERE a=4207;\nUPDATE t2 SET b=77659 WHERE a=4208;\nUPDATE t2 SET b=27559 WHERE a=4209;\nUPDATE t2 SET b=60393 WHERE a=4210;\nUPDATE t2 SET b=82367 WHERE a=4211;\nUPDATE t2 SET b=15610 WHERE a=4212;\nUPDATE t2 SET b=31088 WHERE a=4213;\nUPDATE t2 SET b=6716 WHERE a=4214;\nUPDATE t2 SET b=76993 WHERE a=4215;\nUPDATE t2 SET b=87049 WHERE a=4216;\nUPDATE t2 SET b=18570 WHERE a=4217;\nUPDATE t2 SET b=9061 WHERE a=4218;\nUPDATE t2 SET b=55038 WHERE a=4219;\nUPDATE t2 SET b=68480 WHERE a=4220;\nUPDATE t2 SET b=20819 WHERE a=4221;\nUPDATE t2 SET b=7370 WHERE a=4222;\nUPDATE t2 SET b=83526 WHERE a=4223;\nUPDATE t2 SET b=41982 WHERE a=4224;\nUPDATE t2 SET b=51722 WHERE a=4225;\nUPDATE t2 SET b=22038 WHERE a=4226;\nUPDATE t2 SET b=29766 WHERE a=4227;\nUPDATE t2 SET b=1272 WHERE a=4228;\nUPDATE t2 SET b=11982 WHERE a=4229;\nUPDATE t2 SET b=53001 WHERE a=4230;\nUPDATE t2 SET b=62825 WHERE a=4231;\nUPDATE t2 SET b=5177 WHERE a=4232;\nUPDATE t2 SET b=65760 WHERE a=4233;\nUPDATE t2 SET b=61112 WHERE a=4234;\nUPDATE t2 SET b=30304 WHERE a=4235;\nUPDATE t2 SET b=79220 WHERE a=4236;\nUPDATE t2 SET b=26556 WHERE a=4237;\nUPDATE t2 SET b=3934 WHERE a=4238;\nUPDATE t2 SET b=30441 WHERE a=4239;\nUPDATE t2 SET b=97318 WHERE a=4240;\nUPDATE t2 SET b=9074 WHERE a=4241;\nUPDATE t2 SET b=18355 WHERE a=4242;\nUPDATE t2 SET b=36365 WHERE a=4243;\nUPDATE t2 SET b=46725 WHERE a=4244;\nUPDATE t2 SET b=11282 WHERE a=4245;\nUPDATE t2 SET b=32225 WHERE a=4246;\nUPDATE t2 SET b=76906 WHERE a=4247;\nUPDATE t2 SET b=64933 WHERE a=4248;\nUPDATE t2 SET b=39435 WHERE a=4249;\nUPDATE t2 SET b=45516 WHERE a=4250;\nUPDATE t2 SET b=80510 WHERE a=4251;\nUPDATE t2 SET b=76129 WHERE a=4252;\nUPDATE t2 SET b=20912 WHERE a=4253;\nUPDATE t2 SET b=50578 WHERE a=4254;\nUPDATE t2 SET b=89360 WHERE a=4255;\nUPDATE t2 SET b=72678 WHERE a=4256;\nUPDATE t2 SET b=7157 WHERE a=4257;\nUPDATE t2 SET b=6758 WHERE a=4258;\nUPDATE t2 SET b=29194 WHERE a=4259;\nUPDATE t2 SET b=67415 WHERE a=4260;\nUPDATE t2 SET b=63240 WHERE a=4261;\nUPDATE t2 SET b=4177 WHERE a=4262;\nUPDATE t2 SET b=58435 WHERE a=4263;\nUPDATE t2 SET b=43437 WHERE a=4264;\nUPDATE t2 SET b=5294 WHERE a=4265;\nUPDATE t2 SET b=46045 WHERE a=4266;\nUPDATE t2 SET b=8183 WHERE a=4267;\nUPDATE t2 SET b=9828 WHERE a=4268;\nUPDATE t2 SET b=85708 WHERE a=4269;\nUPDATE t2 SET b=39613 WHERE a=4270;\nUPDATE t2 SET b=89942 WHERE a=4271;\nUPDATE t2 SET b=28678 WHERE a=4272;\nUPDATE t2 SET b=14728 WHERE a=4273;\nUPDATE t2 SET b=55014 WHERE a=4274;\nUPDATE t2 SET b=8293 WHERE a=4275;\nUPDATE t2 SET b=39126 WHERE a=4276;\nUPDATE t2 SET b=5064 WHERE a=4277;\nUPDATE t2 SET b=22047 WHERE a=4278;\nUPDATE t2 SET b=78653 WHERE a=4279;\nUPDATE t2 SET b=47392 WHERE a=4280;\nUPDATE t2 SET b=68045 WHERE a=4281;\nUPDATE t2 SET b=64678 WHERE a=4282;\nUPDATE t2 SET b=96254 WHERE a=4283;\nUPDATE t2 SET b=7127 WHERE a=4284;\nUPDATE t2 SET b=5949 WHERE a=4285;\nUPDATE t2 SET b=8194 WHERE a=4286;\nUPDATE t2 SET b=76595 WHERE a=4287;\nUPDATE t2 SET b=4630 WHERE a=4288;\nUPDATE t2 SET b=10850 WHERE a=4289;\nUPDATE t2 SET b=76241 WHERE a=4290;\nUPDATE t2 SET b=26037 WHERE a=4291;\nUPDATE t2 SET b=60212 WHERE a=4292;\nUPDATE t2 SET b=92582 WHERE a=4293;\nUPDATE t2 SET b=68208 WHERE a=4294;\nUPDATE t2 SET b=11276 WHERE a=4295;\nUPDATE t2 SET b=24539 WHERE a=4296;\nUPDATE t2 SET b=46948 WHERE a=4297;\nUPDATE t2 SET b=26559 WHERE a=4298;\nUPDATE t2 SET b=88002 WHERE a=4299;\nUPDATE t2 SET b=47324 WHERE a=4300;\nUPDATE t2 SET b=84591 WHERE a=4301;\nUPDATE t2 SET b=6412 WHERE a=4302;\nUPDATE t2 SET b=12241 WHERE a=4303;\nUPDATE t2 SET b=22774 WHERE a=4304;\nUPDATE t2 SET b=84940 WHERE a=4305;\nUPDATE t2 SET b=96349 WHERE a=4306;\nUPDATE t2 SET b=89048 WHERE a=4307;\nUPDATE t2 SET b=97455 WHERE a=4308;\nUPDATE t2 SET b=17703 WHERE a=4309;\nUPDATE t2 SET b=52313 WHERE a=4310;\nUPDATE t2 SET b=77837 WHERE a=4311;\nUPDATE t2 SET b=68167 WHERE a=4312;\nUPDATE t2 SET b=34873 WHERE a=4313;\nUPDATE t2 SET b=2888 WHERE a=4314;\nUPDATE t2 SET b=77183 WHERE a=4315;\nUPDATE t2 SET b=17943 WHERE a=4316;\nUPDATE t2 SET b=99913 WHERE a=4317;\nUPDATE t2 SET b=49895 WHERE a=4318;\nUPDATE t2 SET b=48900 WHERE a=4319;\nUPDATE t2 SET b=14056 WHERE a=4320;\nUPDATE t2 SET b=99063 WHERE a=4321;\nUPDATE t2 SET b=98030 WHERE a=4322;\nUPDATE t2 SET b=60626 WHERE a=4323;\nUPDATE t2 SET b=16770 WHERE a=4324;\nUPDATE t2 SET b=21479 WHERE a=4325;\nUPDATE t2 SET b=30993 WHERE a=4326;\nUPDATE t2 SET b=88404 WHERE a=4327;\nUPDATE t2 SET b=19208 WHERE a=4328;\nUPDATE t2 SET b=78469 WHERE a=4329;\nUPDATE t2 SET b=69950 WHERE a=4330;\nUPDATE t2 SET b=17473 WHERE a=4331;\nUPDATE t2 SET b=69982 WHERE a=4332;\nUPDATE t2 SET b=97419 WHERE a=4333;\nUPDATE t2 SET b=53622 WHERE a=4334;\nUPDATE t2 SET b=2233 WHERE a=4335;\nUPDATE t2 SET b=6554 WHERE a=4336;\nUPDATE t2 SET b=62883 WHERE a=4337;\nUPDATE t2 SET b=25017 WHERE a=4338;\nUPDATE t2 SET b=14755 WHERE a=4339;\nUPDATE t2 SET b=96428 WHERE a=4340;\nUPDATE t2 SET b=50661 WHERE a=4341;\nUPDATE t2 SET b=58607 WHERE a=4342;\nUPDATE t2 SET b=64816 WHERE a=4343;\nUPDATE t2 SET b=38310 WHERE a=4344;\nUPDATE t2 SET b=76521 WHERE a=4345;\nUPDATE t2 SET b=91008 WHERE a=4346;\nUPDATE t2 SET b=11129 WHERE a=4347;\nUPDATE t2 SET b=51522 WHERE a=4348;\nUPDATE t2 SET b=57973 WHERE a=4349;\nUPDATE t2 SET b=28416 WHERE a=4350;\nUPDATE t2 SET b=29602 WHERE a=4351;\nUPDATE t2 SET b=51326 WHERE a=4352;\nUPDATE t2 SET b=32596 WHERE a=4353;\nUPDATE t2 SET b=68256 WHERE a=4354;\nUPDATE t2 SET b=81207 WHERE a=4355;\nUPDATE t2 SET b=56077 WHERE a=4356;\nUPDATE t2 SET b=63119 WHERE a=4357;\nUPDATE t2 SET b=73287 WHERE a=4358;\nUPDATE t2 SET b=47914 WHERE a=4359;\nUPDATE t2 SET b=40821 WHERE a=4360;\nUPDATE t2 SET b=28346 WHERE a=4361;\nUPDATE t2 SET b=67126 WHERE a=4362;\nUPDATE t2 SET b=96965 WHERE a=4363;\nUPDATE t2 SET b=6815 WHERE a=4364;\nUPDATE t2 SET b=97374 WHERE a=4365;\nUPDATE t2 SET b=49846 WHERE a=4366;\nUPDATE t2 SET b=97090 WHERE a=4367;\nUPDATE t2 SET b=19123 WHERE a=4368;\nUPDATE t2 SET b=23243 WHERE a=4369;\nUPDATE t2 SET b=32051 WHERE a=4370;\nUPDATE t2 SET b=42276 WHERE a=4371;\nUPDATE t2 SET b=5279 WHERE a=4372;\nUPDATE t2 SET b=32553 WHERE a=4373;\nUPDATE t2 SET b=66489 WHERE a=4374;\nUPDATE t2 SET b=36963 WHERE a=4375;\nUPDATE t2 SET b=27080 WHERE a=4376;\nUPDATE t2 SET b=58786 WHERE a=4377;\nUPDATE t2 SET b=20988 WHERE a=4378;\nUPDATE t2 SET b=7409 WHERE a=4379;\nUPDATE t2 SET b=66975 WHERE a=4380;\nUPDATE t2 SET b=69740 WHERE a=4381;\nUPDATE t2 SET b=26914 WHERE a=4382;\nUPDATE t2 SET b=8652 WHERE a=4383;\nUPDATE t2 SET b=97698 WHERE a=4384;\nUPDATE t2 SET b=68636 WHERE a=4385;\nUPDATE t2 SET b=6635 WHERE a=4386;\nUPDATE t2 SET b=13088 WHERE a=4387;\nUPDATE t2 SET b=39913 WHERE a=4388;\nUPDATE t2 SET b=81025 WHERE a=4389;\nUPDATE t2 SET b=54903 WHERE a=4390;\nUPDATE t2 SET b=97664 WHERE a=4391;\nUPDATE t2 SET b=8232 WHERE a=4392;\nUPDATE t2 SET b=89249 WHERE a=4393;\nUPDATE t2 SET b=97446 WHERE a=4394;\nUPDATE t2 SET b=17862 WHERE a=4395;\nUPDATE t2 SET b=98927 WHERE a=4396;\nUPDATE t2 SET b=94172 WHERE a=4397;\nUPDATE t2 SET b=73440 WHERE a=4398;\nUPDATE t2 SET b=21703 WHERE a=4399;\nUPDATE t2 SET b=11708 WHERE a=4400;\nUPDATE t2 SET b=87405 WHERE a=4401;\nUPDATE t2 SET b=95830 WHERE a=4402;\nUPDATE t2 SET b=79264 WHERE a=4403;\nUPDATE t2 SET b=59068 WHERE a=4404;\nUPDATE t2 SET b=72671 WHERE a=4405;\nUPDATE t2 SET b=92259 WHERE a=4406;\nUPDATE t2 SET b=90449 WHERE a=4407;\nUPDATE t2 SET b=85216 WHERE a=4408;\nUPDATE t2 SET b=73453 WHERE a=4409;\nUPDATE t2 SET b=80847 WHERE a=4410;\nUPDATE t2 SET b=34528 WHERE a=4411;\nUPDATE t2 SET b=65377 WHERE a=4412;\nUPDATE t2 SET b=86481 WHERE a=4413;\nUPDATE t2 SET b=74542 WHERE a=4414;\nUPDATE t2 SET b=83092 WHERE a=4415;\nUPDATE t2 SET b=39650 WHERE a=4416;\nUPDATE t2 SET b=31118 WHERE a=4417;\nUPDATE t2 SET b=36819 WHERE a=4418;\nUPDATE t2 SET b=17436 WHERE a=4419;\nUPDATE t2 SET b=28081 WHERE a=4420;\nUPDATE t2 SET b=96766 WHERE a=4421;\nUPDATE t2 SET b=70832 WHERE a=4422;\nUPDATE t2 SET b=92121 WHERE a=4423;\nUPDATE t2 SET b=37408 WHERE a=4424;\nUPDATE t2 SET b=70068 WHERE a=4425;\nUPDATE t2 SET b=53708 WHERE a=4426;\nUPDATE t2 SET b=82235 WHERE a=4427;\nUPDATE t2 SET b=15638 WHERE a=4428;\nUPDATE t2 SET b=46304 WHERE a=4429;\nUPDATE t2 SET b=85065 WHERE a=4430;\nUPDATE t2 SET b=29385 WHERE a=4431;\nUPDATE t2 SET b=69463 WHERE a=4432;\nUPDATE t2 SET b=65464 WHERE a=4433;\nUPDATE t2 SET b=48688 WHERE a=4434;\nUPDATE t2 SET b=91111 WHERE a=4435;\nUPDATE t2 SET b=2529 WHERE a=4436;\nUPDATE t2 SET b=49625 WHERE a=4437;\nUPDATE t2 SET b=14901 WHERE a=4438;\nUPDATE t2 SET b=67296 WHERE a=4439;\nUPDATE t2 SET b=33779 WHERE a=4440;\nUPDATE t2 SET b=12738 WHERE a=4441;\nUPDATE t2 SET b=40948 WHERE a=4442;\nUPDATE t2 SET b=85367 WHERE a=4443;\nUPDATE t2 SET b=98221 WHERE a=4444;\nUPDATE t2 SET b=44774 WHERE a=4445;\nUPDATE t2 SET b=44508 WHERE a=4446;\nUPDATE t2 SET b=35262 WHERE a=4447;\nUPDATE t2 SET b=45074 WHERE a=4448;\nUPDATE t2 SET b=53619 WHERE a=4449;\nUPDATE t2 SET b=42589 WHERE a=4450;\nUPDATE t2 SET b=83169 WHERE a=4451;\nUPDATE t2 SET b=56589 WHERE a=4452;\nUPDATE t2 SET b=27301 WHERE a=4453;\nUPDATE t2 SET b=66255 WHERE a=4454;\nUPDATE t2 SET b=85184 WHERE a=4455;\nUPDATE t2 SET b=31868 WHERE a=4456;\nUPDATE t2 SET b=29142 WHERE a=4457;\nUPDATE t2 SET b=3616 WHERE a=4458;\nUPDATE t2 SET b=31426 WHERE a=4459;\nUPDATE t2 SET b=82901 WHERE a=4460;\nUPDATE t2 SET b=81074 WHERE a=4461;\nUPDATE t2 SET b=17722 WHERE a=4462;\nUPDATE t2 SET b=27459 WHERE a=4463;\nUPDATE t2 SET b=11300 WHERE a=4464;\nUPDATE t2 SET b=33423 WHERE a=4465;\nUPDATE t2 SET b=56698 WHERE a=4466;\nUPDATE t2 SET b=56963 WHERE a=4467;\nUPDATE t2 SET b=55554 WHERE a=4468;\nUPDATE t2 SET b=13279 WHERE a=4469;\nUPDATE t2 SET b=85633 WHERE a=4470;\nUPDATE t2 SET b=21483 WHERE a=4471;\nUPDATE t2 SET b=647 WHERE a=4472;\nUPDATE t2 SET b=49807 WHERE a=4473;\nUPDATE t2 SET b=59619 WHERE a=4474;\nUPDATE t2 SET b=28163 WHERE a=4475;\nUPDATE t2 SET b=14408 WHERE a=4476;\nUPDATE t2 SET b=20460 WHERE a=4477;\nUPDATE t2 SET b=23159 WHERE a=4478;\nUPDATE t2 SET b=31228 WHERE a=4479;\nUPDATE t2 SET b=21679 WHERE a=4480;\nUPDATE t2 SET b=63670 WHERE a=4481;\nUPDATE t2 SET b=13505 WHERE a=4482;\nUPDATE t2 SET b=67946 WHERE a=4483;\nUPDATE t2 SET b=80772 WHERE a=4484;\nUPDATE t2 SET b=47670 WHERE a=4485;\nUPDATE t2 SET b=93005 WHERE a=4486;\nUPDATE t2 SET b=61174 WHERE a=4487;\nUPDATE t2 SET b=16210 WHERE a=4488;\nUPDATE t2 SET b=71338 WHERE a=4489;\nUPDATE t2 SET b=20934 WHERE a=4490;\nUPDATE t2 SET b=18792 WHERE a=4491;\nUPDATE t2 SET b=31423 WHERE a=4492;\nUPDATE t2 SET b=24297 WHERE a=4493;\nUPDATE t2 SET b=6098 WHERE a=4494;\nUPDATE t2 SET b=72341 WHERE a=4495;\nUPDATE t2 SET b=96181 WHERE a=4496;\nUPDATE t2 SET b=4173 WHERE a=4497;\nUPDATE t2 SET b=91014 WHERE a=4498;\nUPDATE t2 SET b=5064 WHERE a=4499;\nUPDATE t2 SET b=8710 WHERE a=4500;\nUPDATE t2 SET b=86004 WHERE a=4501;\nUPDATE t2 SET b=84512 WHERE a=4502;\nUPDATE t2 SET b=91383 WHERE a=4503;\nUPDATE t2 SET b=80523 WHERE a=4504;\nUPDATE t2 SET b=30135 WHERE a=4505;\nUPDATE t2 SET b=38877 WHERE a=4506;\nUPDATE t2 SET b=15285 WHERE a=4507;\nUPDATE t2 SET b=32985 WHERE a=4508;\nUPDATE t2 SET b=31491 WHERE a=4509;\nUPDATE t2 SET b=4309 WHERE a=4510;\nUPDATE t2 SET b=79800 WHERE a=4511;\nUPDATE t2 SET b=86651 WHERE a=4512;\nUPDATE t2 SET b=45865 WHERE a=4513;\nUPDATE t2 SET b=88679 WHERE a=4514;\nUPDATE t2 SET b=97173 WHERE a=4515;\nUPDATE t2 SET b=56314 WHERE a=4516;\nUPDATE t2 SET b=20144 WHERE a=4517;\nUPDATE t2 SET b=51157 WHERE a=4518;\nUPDATE t2 SET b=670 WHERE a=4519;\nUPDATE t2 SET b=74663 WHERE a=4520;\nUPDATE t2 SET b=29283 WHERE a=4521;\nUPDATE t2 SET b=86099 WHERE a=4522;\nUPDATE t2 SET b=15283 WHERE a=4523;\nUPDATE t2 SET b=9331 WHERE a=4524;\nUPDATE t2 SET b=97626 WHERE a=4525;\nUPDATE t2 SET b=36460 WHERE a=4526;\nUPDATE t2 SET b=91232 WHERE a=4527;\nUPDATE t2 SET b=19368 WHERE a=4528;\nUPDATE t2 SET b=14129 WHERE a=4529;\nUPDATE t2 SET b=53306 WHERE a=4530;\nUPDATE t2 SET b=57019 WHERE a=4531;\nUPDATE t2 SET b=11503 WHERE a=4532;\nUPDATE t2 SET b=55901 WHERE a=4533;\nUPDATE t2 SET b=2099 WHERE a=4534;\nUPDATE t2 SET b=27976 WHERE a=4535;\nUPDATE t2 SET b=27261 WHERE a=4536;\nUPDATE t2 SET b=55897 WHERE a=4537;\nUPDATE t2 SET b=56584 WHERE a=4538;\nUPDATE t2 SET b=87484 WHERE a=4539;\nUPDATE t2 SET b=28022 WHERE a=4540;\nUPDATE t2 SET b=48192 WHERE a=4541;\nUPDATE t2 SET b=89491 WHERE a=4542;\nUPDATE t2 SET b=3036 WHERE a=4543;\nUPDATE t2 SET b=22499 WHERE a=4544;\nUPDATE t2 SET b=76414 WHERE a=4545;\nUPDATE t2 SET b=1771 WHERE a=4546;\nUPDATE t2 SET b=22441 WHERE a=4547;\nUPDATE t2 SET b=31107 WHERE a=4548;\nUPDATE t2 SET b=32680 WHERE a=4549;\nUPDATE t2 SET b=21384 WHERE a=4550;\nUPDATE t2 SET b=8683 WHERE a=4551;\nUPDATE t2 SET b=32462 WHERE a=4552;\nUPDATE t2 SET b=52576 WHERE a=4553;\nUPDATE t2 SET b=38970 WHERE a=4554;\nUPDATE t2 SET b=30612 WHERE a=4555;\nUPDATE t2 SET b=22172 WHERE a=4556;\nUPDATE t2 SET b=51015 WHERE a=4557;\nUPDATE t2 SET b=35838 WHERE a=4558;\nUPDATE t2 SET b=37031 WHERE a=4559;\nUPDATE t2 SET b=38532 WHERE a=4560;\nUPDATE t2 SET b=2678 WHERE a=4561;\nUPDATE t2 SET b=80301 WHERE a=4562;\nUPDATE t2 SET b=13121 WHERE a=4563;\nUPDATE t2 SET b=84352 WHERE a=4564;\nUPDATE t2 SET b=23178 WHERE a=4565;\nUPDATE t2 SET b=70228 WHERE a=4566;\nUPDATE t2 SET b=97732 WHERE a=4567;\nUPDATE t2 SET b=81667 WHERE a=4568;\nUPDATE t2 SET b=89137 WHERE a=4569;\nUPDATE t2 SET b=73111 WHERE a=4570;\nUPDATE t2 SET b=91427 WHERE a=4571;\nUPDATE t2 SET b=28684 WHERE a=4572;\nUPDATE t2 SET b=40202 WHERE a=4573;\nUPDATE t2 SET b=93795 WHERE a=4574;\nUPDATE t2 SET b=79201 WHERE a=4575;\nUPDATE t2 SET b=42971 WHERE a=4576;\nUPDATE t2 SET b=66265 WHERE a=4577;\nUPDATE t2 SET b=26691 WHERE a=4578;\nUPDATE t2 SET b=91417 WHERE a=4579;\nUPDATE t2 SET b=47388 WHERE a=4580;\nUPDATE t2 SET b=53155 WHERE a=4581;\nUPDATE t2 SET b=51999 WHERE a=4582;\nUPDATE t2 SET b=24092 WHERE a=4583;\nUPDATE t2 SET b=50676 WHERE a=4584;\nUPDATE t2 SET b=44180 WHERE a=4585;\nUPDATE t2 SET b=93709 WHERE a=4586;\nUPDATE t2 SET b=26912 WHERE a=4587;\nUPDATE t2 SET b=1248 WHERE a=4588;\nUPDATE t2 SET b=98065 WHERE a=4589;\nUPDATE t2 SET b=41575 WHERE a=4590;\nUPDATE t2 SET b=92246 WHERE a=4591;\nUPDATE t2 SET b=29740 WHERE a=4592;\nUPDATE t2 SET b=17941 WHERE a=4593;\nUPDATE t2 SET b=48064 WHERE a=4594;\nUPDATE t2 SET b=90084 WHERE a=4595;\nUPDATE t2 SET b=15577 WHERE a=4596;\nUPDATE t2 SET b=30701 WHERE a=4597;\nUPDATE t2 SET b=46256 WHERE a=4598;\nUPDATE t2 SET b=94457 WHERE a=4599;\nUPDATE t2 SET b=81948 WHERE a=4600;\nUPDATE t2 SET b=93660 WHERE a=4601;\nUPDATE t2 SET b=41590 WHERE a=4602;\nUPDATE t2 SET b=63541 WHERE a=4603;\nUPDATE t2 SET b=99775 WHERE a=4604;\nUPDATE t2 SET b=66430 WHERE a=4605;\nUPDATE t2 SET b=91522 WHERE a=4606;\nUPDATE t2 SET b=12738 WHERE a=4607;\nUPDATE t2 SET b=4123 WHERE a=4608;\nUPDATE t2 SET b=89976 WHERE a=4609;\nUPDATE t2 SET b=80750 WHERE a=4610;\nUPDATE t2 SET b=58816 WHERE a=4611;\nUPDATE t2 SET b=2536 WHERE a=4612;\nUPDATE t2 SET b=23890 WHERE a=4613;\nUPDATE t2 SET b=3526 WHERE a=4614;\nUPDATE t2 SET b=20109 WHERE a=4615;\nUPDATE t2 SET b=3835 WHERE a=4616;\nUPDATE t2 SET b=98853 WHERE a=4617;\nUPDATE t2 SET b=80533 WHERE a=4618;\nUPDATE t2 SET b=2175 WHERE a=4619;\nUPDATE t2 SET b=15700 WHERE a=4620;\nUPDATE t2 SET b=57804 WHERE a=4621;\nUPDATE t2 SET b=99193 WHERE a=4622;\nUPDATE t2 SET b=95160 WHERE a=4623;\nUPDATE t2 SET b=27233 WHERE a=4624;\nUPDATE t2 SET b=1066 WHERE a=4625;\nUPDATE t2 SET b=82562 WHERE a=4626;\nUPDATE t2 SET b=78645 WHERE a=4627;\nUPDATE t2 SET b=76544 WHERE a=4628;\nUPDATE t2 SET b=92788 WHERE a=4629;\nUPDATE t2 SET b=7590 WHERE a=4630;\nUPDATE t2 SET b=1115 WHERE a=4631;\nUPDATE t2 SET b=90911 WHERE a=4632;\nUPDATE t2 SET b=62448 WHERE a=4633;\nUPDATE t2 SET b=79219 WHERE a=4634;\nUPDATE t2 SET b=86532 WHERE a=4635;\nUPDATE t2 SET b=16461 WHERE a=4636;\nUPDATE t2 SET b=90579 WHERE a=4637;\nUPDATE t2 SET b=42004 WHERE a=4638;\nUPDATE t2 SET b=94159 WHERE a=4639;\nUPDATE t2 SET b=9315 WHERE a=4640;\nUPDATE t2 SET b=39902 WHERE a=4641;\nUPDATE t2 SET b=45212 WHERE a=4642;\nUPDATE t2 SET b=58510 WHERE a=4643;\nUPDATE t2 SET b=19514 WHERE a=4644;\nUPDATE t2 SET b=77993 WHERE a=4645;\nUPDATE t2 SET b=94695 WHERE a=4646;\nUPDATE t2 SET b=14301 WHERE a=4647;\nUPDATE t2 SET b=94888 WHERE a=4648;\nUPDATE t2 SET b=22071 WHERE a=4649;\nUPDATE t2 SET b=38512 WHERE a=4650;\nUPDATE t2 SET b=15557 WHERE a=4651;\nUPDATE t2 SET b=7914 WHERE a=4652;\nUPDATE t2 SET b=68816 WHERE a=4653;\nUPDATE t2 SET b=75693 WHERE a=4654;\nUPDATE t2 SET b=61514 WHERE a=4655;\nUPDATE t2 SET b=33113 WHERE a=4656;\nUPDATE t2 SET b=93336 WHERE a=4657;\nUPDATE t2 SET b=76428 WHERE a=4658;\nUPDATE t2 SET b=43170 WHERE a=4659;\nUPDATE t2 SET b=88312 WHERE a=4660;\nUPDATE t2 SET b=98956 WHERE a=4661;\nUPDATE t2 SET b=95998 WHERE a=4662;\nUPDATE t2 SET b=23465 WHERE a=4663;\nUPDATE t2 SET b=36648 WHERE a=4664;\nUPDATE t2 SET b=95692 WHERE a=4665;\nUPDATE t2 SET b=23428 WHERE a=4666;\nUPDATE t2 SET b=77554 WHERE a=4667;\nUPDATE t2 SET b=71498 WHERE a=4668;\nUPDATE t2 SET b=59938 WHERE a=4669;\nUPDATE t2 SET b=85003 WHERE a=4670;\nUPDATE t2 SET b=77394 WHERE a=4671;\nUPDATE t2 SET b=84855 WHERE a=4672;\nUPDATE t2 SET b=87901 WHERE a=4673;\nUPDATE t2 SET b=9970 WHERE a=4674;\nUPDATE t2 SET b=72857 WHERE a=4675;\nUPDATE t2 SET b=19329 WHERE a=4676;\nUPDATE t2 SET b=76341 WHERE a=4677;\nUPDATE t2 SET b=82218 WHERE a=4678;\nUPDATE t2 SET b=95386 WHERE a=4679;\nUPDATE t2 SET b=10283 WHERE a=4680;\nUPDATE t2 SET b=91338 WHERE a=4681;\nUPDATE t2 SET b=63511 WHERE a=4682;\nUPDATE t2 SET b=99623 WHERE a=4683;\nUPDATE t2 SET b=56210 WHERE a=4684;\nUPDATE t2 SET b=38363 WHERE a=4685;\nUPDATE t2 SET b=94284 WHERE a=4686;\nUPDATE t2 SET b=85406 WHERE a=4687;\nUPDATE t2 SET b=57664 WHERE a=4688;\nUPDATE t2 SET b=88779 WHERE a=4689;\nUPDATE t2 SET b=92941 WHERE a=4690;\nUPDATE t2 SET b=93496 WHERE a=4691;\nUPDATE t2 SET b=2712 WHERE a=4692;\nUPDATE t2 SET b=94977 WHERE a=4693;\nUPDATE t2 SET b=4474 WHERE a=4694;\nUPDATE t2 SET b=33166 WHERE a=4695;\nUPDATE t2 SET b=79988 WHERE a=4696;\nUPDATE t2 SET b=72179 WHERE a=4697;\nUPDATE t2 SET b=93894 WHERE a=4698;\nUPDATE t2 SET b=96200 WHERE a=4699;\nUPDATE t2 SET b=3167 WHERE a=4700;\nUPDATE t2 SET b=73895 WHERE a=4701;\nUPDATE t2 SET b=92089 WHERE a=4702;\nUPDATE t2 SET b=67719 WHERE a=4703;\nUPDATE t2 SET b=3719 WHERE a=4704;\nUPDATE t2 SET b=50167 WHERE a=4705;\nUPDATE t2 SET b=11904 WHERE a=4706;\nUPDATE t2 SET b=8089 WHERE a=4707;\nUPDATE t2 SET b=7230 WHERE a=4708;\nUPDATE t2 SET b=1152 WHERE a=4709;\nUPDATE t2 SET b=99446 WHERE a=4710;\nUPDATE t2 SET b=77752 WHERE a=4711;\nUPDATE t2 SET b=35100 WHERE a=4712;\nUPDATE t2 SET b=66324 WHERE a=4713;\nUPDATE t2 SET b=92369 WHERE a=4714;\nUPDATE t2 SET b=94759 WHERE a=4715;\nUPDATE t2 SET b=97914 WHERE a=4716;\nUPDATE t2 SET b=85324 WHERE a=4717;\nUPDATE t2 SET b=31630 WHERE a=4718;\nUPDATE t2 SET b=12231 WHERE a=4719;\nUPDATE t2 SET b=73128 WHERE a=4720;\nUPDATE t2 SET b=2349 WHERE a=4721;\nUPDATE t2 SET b=8653 WHERE a=4722;\nUPDATE t2 SET b=64548 WHERE a=4723;\nUPDATE t2 SET b=46409 WHERE a=4724;\nUPDATE t2 SET b=22686 WHERE a=4725;\nUPDATE t2 SET b=87664 WHERE a=4726;\nUPDATE t2 SET b=63465 WHERE a=4727;\nUPDATE t2 SET b=67853 WHERE a=4728;\nUPDATE t2 SET b=97855 WHERE a=4729;\nUPDATE t2 SET b=43555 WHERE a=4730;\nUPDATE t2 SET b=55048 WHERE a=4731;\nUPDATE t2 SET b=21679 WHERE a=4732;\nUPDATE t2 SET b=32904 WHERE a=4733;\nUPDATE t2 SET b=8433 WHERE a=4734;\nUPDATE t2 SET b=29156 WHERE a=4735;\nUPDATE t2 SET b=47718 WHERE a=4736;\nUPDATE t2 SET b=53632 WHERE a=4737;\nUPDATE t2 SET b=54385 WHERE a=4738;\nUPDATE t2 SET b=295 WHERE a=4739;\nUPDATE t2 SET b=50617 WHERE a=4740;\nUPDATE t2 SET b=67084 WHERE a=4741;\nUPDATE t2 SET b=63010 WHERE a=4742;\nUPDATE t2 SET b=79089 WHERE a=4743;\nUPDATE t2 SET b=45216 WHERE a=4744;\nUPDATE t2 SET b=15864 WHERE a=4745;\nUPDATE t2 SET b=40051 WHERE a=4746;\nUPDATE t2 SET b=20126 WHERE a=4747;\nUPDATE t2 SET b=91092 WHERE a=4748;\nUPDATE t2 SET b=22392 WHERE a=4749;\nUPDATE t2 SET b=25380 WHERE a=4750;\nUPDATE t2 SET b=66844 WHERE a=4751;\nUPDATE t2 SET b=45143 WHERE a=4752;\nUPDATE t2 SET b=35455 WHERE a=4753;\nUPDATE t2 SET b=43687 WHERE a=4754;\nUPDATE t2 SET b=79594 WHERE a=4755;\nUPDATE t2 SET b=37978 WHERE a=4756;\nUPDATE t2 SET b=68812 WHERE a=4757;\nUPDATE t2 SET b=86226 WHERE a=4758;\nUPDATE t2 SET b=90555 WHERE a=4759;\nUPDATE t2 SET b=62433 WHERE a=4760;\nUPDATE t2 SET b=49356 WHERE a=4761;\nUPDATE t2 SET b=9397 WHERE a=4762;\nUPDATE t2 SET b=1652 WHERE a=4763;\nUPDATE t2 SET b=14174 WHERE a=4764;\nUPDATE t2 SET b=56936 WHERE a=4765;\nUPDATE t2 SET b=98659 WHERE a=4766;\nUPDATE t2 SET b=8100 WHERE a=4767;\nUPDATE t2 SET b=87777 WHERE a=4768;\nUPDATE t2 SET b=78187 WHERE a=4769;\nUPDATE t2 SET b=88844 WHERE a=4770;\nUPDATE t2 SET b=9276 WHERE a=4771;\nUPDATE t2 SET b=40236 WHERE a=4772;\nUPDATE t2 SET b=64424 WHERE a=4773;\nUPDATE t2 SET b=60657 WHERE a=4774;\nUPDATE t2 SET b=11758 WHERE a=4775;\nUPDATE t2 SET b=24701 WHERE a=4776;\nUPDATE t2 SET b=54816 WHERE a=4777;\nUPDATE t2 SET b=72769 WHERE a=4778;\nUPDATE t2 SET b=85302 WHERE a=4779;\nUPDATE t2 SET b=52819 WHERE a=4780;\nUPDATE t2 SET b=51867 WHERE a=4781;\nUPDATE t2 SET b=42317 WHERE a=4782;\nUPDATE t2 SET b=33582 WHERE a=4783;\nUPDATE t2 SET b=54191 WHERE a=4784;\nUPDATE t2 SET b=87104 WHERE a=4785;\nUPDATE t2 SET b=76729 WHERE a=4786;\nUPDATE t2 SET b=10804 WHERE a=4787;\nUPDATE t2 SET b=75548 WHERE a=4788;\nUPDATE t2 SET b=19189 WHERE a=4789;\nUPDATE t2 SET b=61107 WHERE a=4790;\nUPDATE t2 SET b=55198 WHERE a=4791;\nUPDATE t2 SET b=81839 WHERE a=4792;\nUPDATE t2 SET b=81254 WHERE a=4793;\nUPDATE t2 SET b=52546 WHERE a=4794;\nUPDATE t2 SET b=91428 WHERE a=4795;\nUPDATE t2 SET b=33574 WHERE a=4796;\nUPDATE t2 SET b=59071 WHERE a=4797;\nUPDATE t2 SET b=47313 WHERE a=4798;\nUPDATE t2 SET b=15644 WHERE a=4799;\nUPDATE t2 SET b=40805 WHERE a=4800;\nUPDATE t2 SET b=52029 WHERE a=4801;\nUPDATE t2 SET b=49052 WHERE a=4802;\nUPDATE t2 SET b=50935 WHERE a=4803;\nUPDATE t2 SET b=36843 WHERE a=4804;\nUPDATE t2 SET b=57401 WHERE a=4805;\nUPDATE t2 SET b=70128 WHERE a=4806;\nUPDATE t2 SET b=95905 WHERE a=4807;\nUPDATE t2 SET b=42884 WHERE a=4808;\nUPDATE t2 SET b=21957 WHERE a=4809;\nUPDATE t2 SET b=4124 WHERE a=4810;\nUPDATE t2 SET b=57076 WHERE a=4811;\nUPDATE t2 SET b=27014 WHERE a=4812;\nUPDATE t2 SET b=12550 WHERE a=4813;\nUPDATE t2 SET b=11984 WHERE a=4814;\nUPDATE t2 SET b=8371 WHERE a=4815;\nUPDATE t2 SET b=27287 WHERE a=4816;\nUPDATE t2 SET b=31629 WHERE a=4817;\nUPDATE t2 SET b=97743 WHERE a=4818;\nUPDATE t2 SET b=53655 WHERE a=4819;\nUPDATE t2 SET b=44218 WHERE a=4820;\nUPDATE t2 SET b=15554 WHERE a=4821;\nUPDATE t2 SET b=23786 WHERE a=4822;\nUPDATE t2 SET b=43885 WHERE a=4823;\nUPDATE t2 SET b=51766 WHERE a=4824;\nUPDATE t2 SET b=60268 WHERE a=4825;\nUPDATE t2 SET b=16791 WHERE a=4826;\nUPDATE t2 SET b=99592 WHERE a=4827;\nUPDATE t2 SET b=3953 WHERE a=4828;\nUPDATE t2 SET b=72121 WHERE a=4829;\nUPDATE t2 SET b=2295 WHERE a=4830;\nUPDATE t2 SET b=25012 WHERE a=4831;\nUPDATE t2 SET b=41329 WHERE a=4832;\nUPDATE t2 SET b=79872 WHERE a=4833;\nUPDATE t2 SET b=69443 WHERE a=4834;\nUPDATE t2 SET b=96777 WHERE a=4835;\nUPDATE t2 SET b=16836 WHERE a=4836;\nUPDATE t2 SET b=20294 WHERE a=4837;\nUPDATE t2 SET b=28443 WHERE a=4838;\nUPDATE t2 SET b=34405 WHERE a=4839;\nUPDATE t2 SET b=34846 WHERE a=4840;\nUPDATE t2 SET b=28199 WHERE a=4841;\nUPDATE t2 SET b=56788 WHERE a=4842;\nUPDATE t2 SET b=47846 WHERE a=4843;\nUPDATE t2 SET b=96351 WHERE a=4844;\nUPDATE t2 SET b=32727 WHERE a=4845;\nUPDATE t2 SET b=79867 WHERE a=4846;\nUPDATE t2 SET b=85247 WHERE a=4847;\nUPDATE t2 SET b=7135 WHERE a=4848;\nUPDATE t2 SET b=37387 WHERE a=4849;\nUPDATE t2 SET b=49526 WHERE a=4850;\nUPDATE t2 SET b=84675 WHERE a=4851;\nUPDATE t2 SET b=23698 WHERE a=4852;\nUPDATE t2 SET b=16589 WHERE a=4853;\nUPDATE t2 SET b=51270 WHERE a=4854;\nUPDATE t2 SET b=45273 WHERE a=4855;\nUPDATE t2 SET b=13909 WHERE a=4856;\nUPDATE t2 SET b=78713 WHERE a=4857;\nUPDATE t2 SET b=15552 WHERE a=4858;\nUPDATE t2 SET b=52339 WHERE a=4859;\nUPDATE t2 SET b=53470 WHERE a=4860;\nUPDATE t2 SET b=3807 WHERE a=4861;\nUPDATE t2 SET b=11373 WHERE a=4862;\nUPDATE t2 SET b=98962 WHERE a=4863;\nUPDATE t2 SET b=11390 WHERE a=4864;\nUPDATE t2 SET b=83475 WHERE a=4865;\nUPDATE t2 SET b=75309 WHERE a=4866;\nUPDATE t2 SET b=8820 WHERE a=4867;\nUPDATE t2 SET b=17729 WHERE a=4868;\nUPDATE t2 SET b=74187 WHERE a=4869;\nUPDATE t2 SET b=16657 WHERE a=4870;\nUPDATE t2 SET b=47984 WHERE a=4871;\nUPDATE t2 SET b=60926 WHERE a=4872;\nUPDATE t2 SET b=84774 WHERE a=4873;\nUPDATE t2 SET b=17744 WHERE a=4874;\nUPDATE t2 SET b=91576 WHERE a=4875;\nUPDATE t2 SET b=99317 WHERE a=4876;\nUPDATE t2 SET b=1988 WHERE a=4877;\nUPDATE t2 SET b=19702 WHERE a=4878;\nUPDATE t2 SET b=48481 WHERE a=4879;\nUPDATE t2 SET b=81794 WHERE a=4880;\nUPDATE t2 SET b=77376 WHERE a=4881;\nUPDATE t2 SET b=82353 WHERE a=4882;\nUPDATE t2 SET b=2966 WHERE a=4883;\nUPDATE t2 SET b=37564 WHERE a=4884;\nUPDATE t2 SET b=24446 WHERE a=4885;\nUPDATE t2 SET b=96863 WHERE a=4886;\nUPDATE t2 SET b=59073 WHERE a=4887;\nUPDATE t2 SET b=18174 WHERE a=4888;\nUPDATE t2 SET b=18655 WHERE a=4889;\nUPDATE t2 SET b=92766 WHERE a=4890;\nUPDATE t2 SET b=75507 WHERE a=4891;\nUPDATE t2 SET b=60629 WHERE a=4892;\nUPDATE t2 SET b=83029 WHERE a=4893;\nUPDATE t2 SET b=83210 WHERE a=4894;\nUPDATE t2 SET b=33416 WHERE a=4895;\nUPDATE t2 SET b=96472 WHERE a=4896;\nUPDATE t2 SET b=18183 WHERE a=4897;\nUPDATE t2 SET b=41350 WHERE a=4898;\nUPDATE t2 SET b=587 WHERE a=4899;\nUPDATE t2 SET b=65961 WHERE a=4900;\nUPDATE t2 SET b=20601 WHERE a=4901;\nUPDATE t2 SET b=37344 WHERE a=4902;\nUPDATE t2 SET b=14702 WHERE a=4903;\nUPDATE t2 SET b=70297 WHERE a=4904;\nUPDATE t2 SET b=28005 WHERE a=4905;\nUPDATE t2 SET b=73633 WHERE a=4906;\nUPDATE t2 SET b=96826 WHERE a=4907;\nUPDATE t2 SET b=74835 WHERE a=4908;\nUPDATE t2 SET b=59202 WHERE a=4909;\nUPDATE t2 SET b=72113 WHERE a=4910;\nUPDATE t2 SET b=94937 WHERE a=4911;\nUPDATE t2 SET b=46741 WHERE a=4912;\nUPDATE t2 SET b=11544 WHERE a=4913;\nUPDATE t2 SET b=19135 WHERE a=4914;\nUPDATE t2 SET b=97493 WHERE a=4915;\nUPDATE t2 SET b=58598 WHERE a=4916;\nUPDATE t2 SET b=90347 WHERE a=4917;\nUPDATE t2 SET b=61052 WHERE a=4918;\nUPDATE t2 SET b=25192 WHERE a=4919;\nUPDATE t2 SET b=55254 WHERE a=4920;\nUPDATE t2 SET b=70919 WHERE a=4921;\nUPDATE t2 SET b=65699 WHERE a=4922;\nUPDATE t2 SET b=30013 WHERE a=4923;\nUPDATE t2 SET b=46484 WHERE a=4924;\nUPDATE t2 SET b=58979 WHERE a=4925;\nUPDATE t2 SET b=86335 WHERE a=4926;\nUPDATE t2 SET b=22839 WHERE a=4927;\nUPDATE t2 SET b=81616 WHERE a=4928;\nUPDATE t2 SET b=53423 WHERE a=4929;\nUPDATE t2 SET b=20402 WHERE a=4930;\nUPDATE t2 SET b=27791 WHERE a=4931;\nUPDATE t2 SET b=44321 WHERE a=4932;\nUPDATE t2 SET b=69097 WHERE a=4933;\nUPDATE t2 SET b=21124 WHERE a=4934;\nUPDATE t2 SET b=30633 WHERE a=4935;\nUPDATE t2 SET b=73736 WHERE a=4936;\nUPDATE t2 SET b=2723 WHERE a=4937;\nUPDATE t2 SET b=28673 WHERE a=4938;\nUPDATE t2 SET b=75227 WHERE a=4939;\nUPDATE t2 SET b=52086 WHERE a=4940;\nUPDATE t2 SET b=21822 WHERE a=4941;\nUPDATE t2 SET b=28309 WHERE a=4942;\nUPDATE t2 SET b=41740 WHERE a=4943;\nUPDATE t2 SET b=63965 WHERE a=4944;\nUPDATE t2 SET b=76552 WHERE a=4945;\nUPDATE t2 SET b=19187 WHERE a=4946;\nUPDATE t2 SET b=84148 WHERE a=4947;\nUPDATE t2 SET b=46556 WHERE a=4948;\nUPDATE t2 SET b=9990 WHERE a=4949;\nUPDATE t2 SET b=26424 WHERE a=4950;\nUPDATE t2 SET b=20277 WHERE a=4951;\nUPDATE t2 SET b=90304 WHERE a=4952;\nUPDATE t2 SET b=78813 WHERE a=4953;\nUPDATE t2 SET b=41017 WHERE a=4954;\nUPDATE t2 SET b=38879 WHERE a=4955;\nUPDATE t2 SET b=18997 WHERE a=4956;\nUPDATE t2 SET b=78506 WHERE a=4957;\nUPDATE t2 SET b=15049 WHERE a=4958;\nUPDATE t2 SET b=80989 WHERE a=4959;\nUPDATE t2 SET b=54887 WHERE a=4960;\nUPDATE t2 SET b=98406 WHERE a=4961;\nUPDATE t2 SET b=10777 WHERE a=4962;\nUPDATE t2 SET b=70548 WHERE a=4963;\nUPDATE t2 SET b=75341 WHERE a=4964;\nUPDATE t2 SET b=92936 WHERE a=4965;\nUPDATE t2 SET b=56489 WHERE a=4966;\nUPDATE t2 SET b=44376 WHERE a=4967;\nUPDATE t2 SET b=74966 WHERE a=4968;\nUPDATE t2 SET b=65774 WHERE a=4969;\nUPDATE t2 SET b=54681 WHERE a=4970;\nUPDATE t2 SET b=59028 WHERE a=4971;\nUPDATE t2 SET b=94430 WHERE a=4972;\nUPDATE t2 SET b=4751 WHERE a=4973;\nUPDATE t2 SET b=91973 WHERE a=4974;\nUPDATE t2 SET b=25443 WHERE a=4975;\nUPDATE t2 SET b=54266 WHERE a=4976;\nUPDATE t2 SET b=26737 WHERE a=4977;\nUPDATE t2 SET b=29163 WHERE a=4978;\nUPDATE t2 SET b=86004 WHERE a=4979;\nUPDATE t2 SET b=7129 WHERE a=4980;\nUPDATE t2 SET b=56063 WHERE a=4981;\nUPDATE t2 SET b=95301 WHERE a=4982;\nUPDATE t2 SET b=12717 WHERE a=4983;\nUPDATE t2 SET b=19377 WHERE a=4984;\nUPDATE t2 SET b=20622 WHERE a=4985;\nUPDATE t2 SET b=41126 WHERE a=4986;\nUPDATE t2 SET b=8994 WHERE a=4987;\nUPDATE t2 SET b=16290 WHERE a=4988;\nUPDATE t2 SET b=56873 WHERE a=4989;\nUPDATE t2 SET b=26124 WHERE a=4990;\nUPDATE t2 SET b=61311 WHERE a=4991;\nUPDATE t2 SET b=8432 WHERE a=4992;\nUPDATE t2 SET b=32958 WHERE a=4993;\nUPDATE t2 SET b=93549 WHERE a=4994;\nUPDATE t2 SET b=88900 WHERE a=4995;\nUPDATE t2 SET b=39857 WHERE a=4996;\nUPDATE t2 SET b=86239 WHERE a=4997;\nUPDATE t2 SET b=8619 WHERE a=4998;\nUPDATE t2 SET b=55492 WHERE a=4999;\nUPDATE t2 SET b=57990 WHERE a=5000;\nUPDATE t2 SET b=25619 WHERE a=5001;\nUPDATE t2 SET b=25022 WHERE a=5002;\nUPDATE t2 SET b=57376 WHERE a=5003;\nUPDATE t2 SET b=54472 WHERE a=5004;\nUPDATE t2 SET b=34405 WHERE a=5005;\nUPDATE t2 SET b=13789 WHERE a=5006;\nUPDATE t2 SET b=99855 WHERE a=5007;\nUPDATE t2 SET b=10602 WHERE a=5008;\nUPDATE t2 SET b=87857 WHERE a=5009;\nUPDATE t2 SET b=78527 WHERE a=5010;\nUPDATE t2 SET b=72815 WHERE a=5011;\nUPDATE t2 SET b=17843 WHERE a=5012;\nUPDATE t2 SET b=83820 WHERE a=5013;\nUPDATE t2 SET b=81568 WHERE a=5014;\nUPDATE t2 SET b=98705 WHERE a=5015;\nUPDATE t2 SET b=5444 WHERE a=5016;\nUPDATE t2 SET b=20816 WHERE a=5017;\nUPDATE t2 SET b=73902 WHERE a=5018;\nUPDATE t2 SET b=19182 WHERE a=5019;\nUPDATE t2 SET b=35941 WHERE a=5020;\nUPDATE t2 SET b=91336 WHERE a=5021;\nUPDATE t2 SET b=52713 WHERE a=5022;\nUPDATE t2 SET b=30661 WHERE a=5023;\nUPDATE t2 SET b=9194 WHERE a=5024;\nUPDATE t2 SET b=85384 WHERE a=5025;\nUPDATE t2 SET b=46210 WHERE a=5026;\nUPDATE t2 SET b=62577 WHERE a=5027;\nUPDATE t2 SET b=86329 WHERE a=5028;\nUPDATE t2 SET b=59558 WHERE a=5029;\nUPDATE t2 SET b=48356 WHERE a=5030;\nUPDATE t2 SET b=88502 WHERE a=5031;\nUPDATE t2 SET b=14425 WHERE a=5032;\nUPDATE t2 SET b=41399 WHERE a=5033;\nUPDATE t2 SET b=87182 WHERE a=5034;\nUPDATE t2 SET b=76092 WHERE a=5035;\nUPDATE t2 SET b=26377 WHERE a=5036;\nUPDATE t2 SET b=95600 WHERE a=5037;\nUPDATE t2 SET b=87470 WHERE a=5038;\nUPDATE t2 SET b=61087 WHERE a=5039;\nUPDATE t2 SET b=35259 WHERE a=5040;\nUPDATE t2 SET b=39942 WHERE a=5041;\nUPDATE t2 SET b=5102 WHERE a=5042;\nUPDATE t2 SET b=77843 WHERE a=5043;\nUPDATE t2 SET b=9192 WHERE a=5044;\nUPDATE t2 SET b=85718 WHERE a=5045;\nUPDATE t2 SET b=86413 WHERE a=5046;\nUPDATE t2 SET b=36616 WHERE a=5047;\nUPDATE t2 SET b=21581 WHERE a=5048;\nUPDATE t2 SET b=7808 WHERE a=5049;\nUPDATE t2 SET b=20617 WHERE a=5050;\nUPDATE t2 SET b=8253 WHERE a=5051;\nUPDATE t2 SET b=59989 WHERE a=5052;\nUPDATE t2 SET b=6316 WHERE a=5053;\nUPDATE t2 SET b=69699 WHERE a=5054;\nUPDATE t2 SET b=89858 WHERE a=5055;\nUPDATE t2 SET b=11136 WHERE a=5056;\nUPDATE t2 SET b=48839 WHERE a=5057;\nUPDATE t2 SET b=1640 WHERE a=5058;\nUPDATE t2 SET b=58332 WHERE a=5059;\nUPDATE t2 SET b=55753 WHERE a=5060;\nUPDATE t2 SET b=79616 WHERE a=5061;\nUPDATE t2 SET b=19705 WHERE a=5062;\nUPDATE t2 SET b=77312 WHERE a=5063;\nUPDATE t2 SET b=5141 WHERE a=5064;\nUPDATE t2 SET b=98667 WHERE a=5065;\nUPDATE t2 SET b=28122 WHERE a=5066;\nUPDATE t2 SET b=37955 WHERE a=5067;\nUPDATE t2 SET b=70960 WHERE a=5068;\nUPDATE t2 SET b=72626 WHERE a=5069;\nUPDATE t2 SET b=36916 WHERE a=5070;\nUPDATE t2 SET b=20821 WHERE a=5071;\nUPDATE t2 SET b=77772 WHERE a=5072;\nUPDATE t2 SET b=99443 WHERE a=5073;\nUPDATE t2 SET b=84513 WHERE a=5074;\nUPDATE t2 SET b=79673 WHERE a=5075;\nUPDATE t2 SET b=76516 WHERE a=5076;\nUPDATE t2 SET b=87800 WHERE a=5077;\nUPDATE t2 SET b=39367 WHERE a=5078;\nUPDATE t2 SET b=58530 WHERE a=5079;\nUPDATE t2 SET b=94022 WHERE a=5080;\nUPDATE t2 SET b=7694 WHERE a=5081;\nUPDATE t2 SET b=71921 WHERE a=5082;\nUPDATE t2 SET b=77566 WHERE a=5083;\nUPDATE t2 SET b=21777 WHERE a=5084;\nUPDATE t2 SET b=17542 WHERE a=5085;\nUPDATE t2 SET b=74204 WHERE a=5086;\nUPDATE t2 SET b=76369 WHERE a=5087;\nUPDATE t2 SET b=81555 WHERE a=5088;\nUPDATE t2 SET b=77620 WHERE a=5089;\nUPDATE t2 SET b=59110 WHERE a=5090;\nUPDATE t2 SET b=72801 WHERE a=5091;\nUPDATE t2 SET b=66412 WHERE a=5092;\nUPDATE t2 SET b=28345 WHERE a=5093;\nUPDATE t2 SET b=17342 WHERE a=5094;\nUPDATE t2 SET b=77128 WHERE a=5095;\nUPDATE t2 SET b=40058 WHERE a=5096;\nUPDATE t2 SET b=69325 WHERE a=5097;\nUPDATE t2 SET b=64114 WHERE a=5098;\nUPDATE t2 SET b=54907 WHERE a=5099;\nUPDATE t2 SET b=42334 WHERE a=5100;\nUPDATE t2 SET b=28999 WHERE a=5101;\nUPDATE t2 SET b=59319 WHERE a=5102;\nUPDATE t2 SET b=48257 WHERE a=5103;\nUPDATE t2 SET b=65314 WHERE a=5104;\nUPDATE t2 SET b=61221 WHERE a=5105;\nUPDATE t2 SET b=28620 WHERE a=5106;\nUPDATE t2 SET b=44678 WHERE a=5107;\nUPDATE t2 SET b=61303 WHERE a=5108;\nUPDATE t2 SET b=84180 WHERE a=5109;\nUPDATE t2 SET b=98754 WHERE a=5110;\nUPDATE t2 SET b=41036 WHERE a=5111;\nUPDATE t2 SET b=41463 WHERE a=5112;\nUPDATE t2 SET b=63185 WHERE a=5113;\nUPDATE t2 SET b=64259 WHERE a=5114;\nUPDATE t2 SET b=46136 WHERE a=5115;\nUPDATE t2 SET b=12477 WHERE a=5116;\nUPDATE t2 SET b=96005 WHERE a=5117;\nUPDATE t2 SET b=69154 WHERE a=5118;\nUPDATE t2 SET b=21100 WHERE a=5119;\nUPDATE t2 SET b=11655 WHERE a=5120;\nUPDATE t2 SET b=89170 WHERE a=5121;\nUPDATE t2 SET b=44183 WHERE a=5122;\nUPDATE t2 SET b=69063 WHERE a=5123;\nUPDATE t2 SET b=45475 WHERE a=5124;\nUPDATE t2 SET b=72207 WHERE a=5125;\nUPDATE t2 SET b=2509 WHERE a=5126;\nUPDATE t2 SET b=14225 WHERE a=5127;\nUPDATE t2 SET b=47628 WHERE a=5128;\nUPDATE t2 SET b=77360 WHERE a=5129;\nUPDATE t2 SET b=88044 WHERE a=5130;\nUPDATE t2 SET b=58000 WHERE a=5131;\nUPDATE t2 SET b=50598 WHERE a=5132;\nUPDATE t2 SET b=2153 WHERE a=5133;\nUPDATE t2 SET b=22178 WHERE a=5134;\nUPDATE t2 SET b=1516 WHERE a=5135;\nUPDATE t2 SET b=10836 WHERE a=5136;\nUPDATE t2 SET b=20152 WHERE a=5137;\nUPDATE t2 SET b=21947 WHERE a=5138;\nUPDATE t2 SET b=7497 WHERE a=5139;\nUPDATE t2 SET b=16539 WHERE a=5140;\nUPDATE t2 SET b=85135 WHERE a=5141;\nUPDATE t2 SET b=97858 WHERE a=5142;\nUPDATE t2 SET b=88011 WHERE a=5143;\nUPDATE t2 SET b=14111 WHERE a=5144;\nUPDATE t2 SET b=15746 WHERE a=5145;\nUPDATE t2 SET b=19151 WHERE a=5146;\nUPDATE t2 SET b=23347 WHERE a=5147;\nUPDATE t2 SET b=78152 WHERE a=5148;\nUPDATE t2 SET b=84243 WHERE a=5149;\nUPDATE t2 SET b=86449 WHERE a=5150;\nUPDATE t2 SET b=85648 WHERE a=5151;\nUPDATE t2 SET b=54662 WHERE a=5152;\nUPDATE t2 SET b=3973 WHERE a=5153;\nUPDATE t2 SET b=88992 WHERE a=5154;\nUPDATE t2 SET b=35008 WHERE a=5155;\nUPDATE t2 SET b=81189 WHERE a=5156;\nUPDATE t2 SET b=49744 WHERE a=5157;\nUPDATE t2 SET b=86233 WHERE a=5158;\nUPDATE t2 SET b=59104 WHERE a=5159;\nUPDATE t2 SET b=51150 WHERE a=5160;\nUPDATE t2 SET b=94176 WHERE a=5161;\nUPDATE t2 SET b=29816 WHERE a=5162;\nUPDATE t2 SET b=47059 WHERE a=5163;\nUPDATE t2 SET b=5515 WHERE a=5164;\nUPDATE t2 SET b=88969 WHERE a=5165;\nUPDATE t2 SET b=66408 WHERE a=5166;\nUPDATE t2 SET b=41615 WHERE a=5167;\nUPDATE t2 SET b=54246 WHERE a=5168;\nUPDATE t2 SET b=52858 WHERE a=5169;\nUPDATE t2 SET b=72422 WHERE a=5170;\nUPDATE t2 SET b=93315 WHERE a=5171;\nUPDATE t2 SET b=27528 WHERE a=5172;\nUPDATE t2 SET b=45273 WHERE a=5173;\nUPDATE t2 SET b=66670 WHERE a=5174;\nUPDATE t2 SET b=73266 WHERE a=5175;\nUPDATE t2 SET b=45124 WHERE a=5176;\nUPDATE t2 SET b=27264 WHERE a=5177;\nUPDATE t2 SET b=4510 WHERE a=5178;\nUPDATE t2 SET b=27667 WHERE a=5179;\nUPDATE t2 SET b=60306 WHERE a=5180;\nUPDATE t2 SET b=88400 WHERE a=5181;\nUPDATE t2 SET b=55738 WHERE a=5182;\nUPDATE t2 SET b=2886 WHERE a=5183;\nUPDATE t2 SET b=51080 WHERE a=5184;\nUPDATE t2 SET b=78041 WHERE a=5185;\nUPDATE t2 SET b=79699 WHERE a=5186;\nUPDATE t2 SET b=40774 WHERE a=5187;\nUPDATE t2 SET b=631 WHERE a=5188;\nUPDATE t2 SET b=48173 WHERE a=5189;\nUPDATE t2 SET b=49435 WHERE a=5190;\nUPDATE t2 SET b=69632 WHERE a=5191;\nUPDATE t2 SET b=56753 WHERE a=5192;\nUPDATE t2 SET b=33564 WHERE a=5193;\nUPDATE t2 SET b=72742 WHERE a=5194;\nUPDATE t2 SET b=51550 WHERE a=5195;\nUPDATE t2 SET b=86233 WHERE a=5196;\nUPDATE t2 SET b=95170 WHERE a=5197;\nUPDATE t2 SET b=26876 WHERE a=5198;\nUPDATE t2 SET b=2149 WHERE a=5199;\nUPDATE t2 SET b=81537 WHERE a=5200;\nUPDATE t2 SET b=27048 WHERE a=5201;\nUPDATE t2 SET b=40360 WHERE a=5202;\nUPDATE t2 SET b=8957 WHERE a=5203;\nUPDATE t2 SET b=26834 WHERE a=5204;\nUPDATE t2 SET b=49449 WHERE a=5205;\nUPDATE t2 SET b=25770 WHERE a=5206;\nUPDATE t2 SET b=57169 WHERE a=5207;\nUPDATE t2 SET b=9122 WHERE a=5208;\nUPDATE t2 SET b=11176 WHERE a=5209;\nUPDATE t2 SET b=58720 WHERE a=5210;\nUPDATE t2 SET b=81339 WHERE a=5211;\nUPDATE t2 SET b=76978 WHERE a=5212;\nUPDATE t2 SET b=69658 WHERE a=5213;\nUPDATE t2 SET b=79841 WHERE a=5214;\nUPDATE t2 SET b=11675 WHERE a=5215;\nUPDATE t2 SET b=71896 WHERE a=5216;\nUPDATE t2 SET b=69546 WHERE a=5217;\nUPDATE t2 SET b=96379 WHERE a=5218;\nUPDATE t2 SET b=92153 WHERE a=5219;\nUPDATE t2 SET b=36393 WHERE a=5220;\nUPDATE t2 SET b=44759 WHERE a=5221;\nUPDATE t2 SET b=23378 WHERE a=5222;\nUPDATE t2 SET b=10621 WHERE a=5223;\nUPDATE t2 SET b=55844 WHERE a=5224;\nUPDATE t2 SET b=36769 WHERE a=5225;\nUPDATE t2 SET b=33528 WHERE a=5226;\nUPDATE t2 SET b=23561 WHERE a=5227;\nUPDATE t2 SET b=51325 WHERE a=5228;\nUPDATE t2 SET b=93409 WHERE a=5229;\nUPDATE t2 SET b=57265 WHERE a=5230;\nUPDATE t2 SET b=8042 WHERE a=5231;\nUPDATE t2 SET b=8388 WHERE a=5232;\nUPDATE t2 SET b=62176 WHERE a=5233;\nUPDATE t2 SET b=9434 WHERE a=5234;\nUPDATE t2 SET b=49933 WHERE a=5235;\nUPDATE t2 SET b=80101 WHERE a=5236;\nUPDATE t2 SET b=17365 WHERE a=5237;\nUPDATE t2 SET b=75644 WHERE a=5238;\nUPDATE t2 SET b=13560 WHERE a=5239;\nUPDATE t2 SET b=72212 WHERE a=5240;\nUPDATE t2 SET b=44764 WHERE a=5241;\nUPDATE t2 SET b=9930 WHERE a=5242;\nUPDATE t2 SET b=17121 WHERE a=5243;\nUPDATE t2 SET b=52537 WHERE a=5244;\nUPDATE t2 SET b=22526 WHERE a=5245;\nUPDATE t2 SET b=55831 WHERE a=5246;\nUPDATE t2 SET b=76535 WHERE a=5247;\nUPDATE t2 SET b=96591 WHERE a=5248;\nUPDATE t2 SET b=29309 WHERE a=5249;\nUPDATE t2 SET b=3804 WHERE a=5250;\nUPDATE t2 SET b=6865 WHERE a=5251;\nUPDATE t2 SET b=94179 WHERE a=5252;\nUPDATE t2 SET b=28480 WHERE a=5253;\nUPDATE t2 SET b=15057 WHERE a=5254;\nUPDATE t2 SET b=95597 WHERE a=5255;\nUPDATE t2 SET b=5180 WHERE a=5256;\nUPDATE t2 SET b=7590 WHERE a=5257;\nUPDATE t2 SET b=8325 WHERE a=5258;\nUPDATE t2 SET b=86972 WHERE a=5259;\nUPDATE t2 SET b=20257 WHERE a=5260;\nUPDATE t2 SET b=9446 WHERE a=5261;\nUPDATE t2 SET b=75812 WHERE a=5262;\nUPDATE t2 SET b=27343 WHERE a=5263;\nUPDATE t2 SET b=17522 WHERE a=5264;\nUPDATE t2 SET b=91714 WHERE a=5265;\nUPDATE t2 SET b=38230 WHERE a=5266;\nUPDATE t2 SET b=95715 WHERE a=5267;\nUPDATE t2 SET b=26351 WHERE a=5268;\nUPDATE t2 SET b=10970 WHERE a=5269;\nUPDATE t2 SET b=77812 WHERE a=5270;\nUPDATE t2 SET b=38335 WHERE a=5271;\nUPDATE t2 SET b=42737 WHERE a=5272;\nUPDATE t2 SET b=25818 WHERE a=5273;\nUPDATE t2 SET b=14535 WHERE a=5274;\nUPDATE t2 SET b=15591 WHERE a=5275;\nUPDATE t2 SET b=11255 WHERE a=5276;\nUPDATE t2 SET b=91199 WHERE a=5277;\nUPDATE t2 SET b=78822 WHERE a=5278;\nUPDATE t2 SET b=80718 WHERE a=5279;\nUPDATE t2 SET b=62296 WHERE a=5280;\nUPDATE t2 SET b=39778 WHERE a=5281;\nUPDATE t2 SET b=92055 WHERE a=5282;\nUPDATE t2 SET b=89861 WHERE a=5283;\nUPDATE t2 SET b=71693 WHERE a=5284;\nUPDATE t2 SET b=22922 WHERE a=5285;\nUPDATE t2 SET b=5170 WHERE a=5286;\nUPDATE t2 SET b=69061 WHERE a=5287;\nUPDATE t2 SET b=14735 WHERE a=5288;\nUPDATE t2 SET b=72648 WHERE a=5289;\nUPDATE t2 SET b=67291 WHERE a=5290;\nUPDATE t2 SET b=81093 WHERE a=5291;\nUPDATE t2 SET b=60678 WHERE a=5292;\nUPDATE t2 SET b=55458 WHERE a=5293;\nUPDATE t2 SET b=64738 WHERE a=5294;\nUPDATE t2 SET b=27058 WHERE a=5295;\nUPDATE t2 SET b=26585 WHERE a=5296;\nUPDATE t2 SET b=83523 WHERE a=5297;\nUPDATE t2 SET b=88238 WHERE a=5298;\nUPDATE t2 SET b=74011 WHERE a=5299;\nUPDATE t2 SET b=38582 WHERE a=5300;\nUPDATE t2 SET b=41149 WHERE a=5301;\nUPDATE t2 SET b=54883 WHERE a=5302;\nUPDATE t2 SET b=90922 WHERE a=5303;\nUPDATE t2 SET b=99319 WHERE a=5304;\nUPDATE t2 SET b=94594 WHERE a=5305;\nUPDATE t2 SET b=31881 WHERE a=5306;\nUPDATE t2 SET b=31403 WHERE a=5307;\nUPDATE t2 SET b=76550 WHERE a=5308;\nUPDATE t2 SET b=64838 WHERE a=5309;\nUPDATE t2 SET b=42652 WHERE a=5310;\nUPDATE t2 SET b=34082 WHERE a=5311;\nUPDATE t2 SET b=56892 WHERE a=5312;\nUPDATE t2 SET b=85019 WHERE a=5313;\nUPDATE t2 SET b=9724 WHERE a=5314;\nUPDATE t2 SET b=52565 WHERE a=5315;\nUPDATE t2 SET b=88248 WHERE a=5316;\nUPDATE t2 SET b=50166 WHERE a=5317;\nUPDATE t2 SET b=58262 WHERE a=5318;\nUPDATE t2 SET b=13748 WHERE a=5319;\nUPDATE t2 SET b=81288 WHERE a=5320;\nUPDATE t2 SET b=26003 WHERE a=5321;\nUPDATE t2 SET b=99619 WHERE a=5322;\nUPDATE t2 SET b=84887 WHERE a=5323;\nUPDATE t2 SET b=466 WHERE a=5324;\nUPDATE t2 SET b=81538 WHERE a=5325;\nUPDATE t2 SET b=84358 WHERE a=5326;\nUPDATE t2 SET b=95365 WHERE a=5327;\nUPDATE t2 SET b=48377 WHERE a=5328;\nUPDATE t2 SET b=3639 WHERE a=5329;\nUPDATE t2 SET b=88274 WHERE a=5330;\nUPDATE t2 SET b=42446 WHERE a=5331;\nUPDATE t2 SET b=78751 WHERE a=5332;\nUPDATE t2 SET b=36782 WHERE a=5333;\nUPDATE t2 SET b=89498 WHERE a=5334;\nUPDATE t2 SET b=29537 WHERE a=5335;\nUPDATE t2 SET b=65223 WHERE a=5336;\nUPDATE t2 SET b=2971 WHERE a=5337;\nUPDATE t2 SET b=21896 WHERE a=5338;\nUPDATE t2 SET b=92523 WHERE a=5339;\nUPDATE t2 SET b=1772 WHERE a=5340;\nUPDATE t2 SET b=57008 WHERE a=5341;\nUPDATE t2 SET b=27199 WHERE a=5342;\nUPDATE t2 SET b=75827 WHERE a=5343;\nUPDATE t2 SET b=40819 WHERE a=5344;\nUPDATE t2 SET b=71507 WHERE a=5345;\nUPDATE t2 SET b=74291 WHERE a=5346;\nUPDATE t2 SET b=87099 WHERE a=5347;\nUPDATE t2 SET b=8148 WHERE a=5348;\nUPDATE t2 SET b=21704 WHERE a=5349;\nUPDATE t2 SET b=21176 WHERE a=5350;\nUPDATE t2 SET b=52116 WHERE a=5351;\nUPDATE t2 SET b=56973 WHERE a=5352;\nUPDATE t2 SET b=7747 WHERE a=5353;\nUPDATE t2 SET b=54254 WHERE a=5354;\nUPDATE t2 SET b=9128 WHERE a=5355;\nUPDATE t2 SET b=28287 WHERE a=5356;\nUPDATE t2 SET b=82994 WHERE a=5357;\nUPDATE t2 SET b=9088 WHERE a=5358;\nUPDATE t2 SET b=29339 WHERE a=5359;\nUPDATE t2 SET b=97258 WHERE a=5360;\nUPDATE t2 SET b=40082 WHERE a=5361;\nUPDATE t2 SET b=83520 WHERE a=5362;\nUPDATE t2 SET b=77109 WHERE a=5363;\nUPDATE t2 SET b=47883 WHERE a=5364;\nUPDATE t2 SET b=17162 WHERE a=5365;\nUPDATE t2 SET b=48899 WHERE a=5366;\nUPDATE t2 SET b=53919 WHERE a=5367;\nUPDATE t2 SET b=39671 WHERE a=5368;\nUPDATE t2 SET b=43801 WHERE a=5369;\nUPDATE t2 SET b=42124 WHERE a=5370;\nUPDATE t2 SET b=99924 WHERE a=5371;\nUPDATE t2 SET b=2976 WHERE a=5372;\nUPDATE t2 SET b=10266 WHERE a=5373;\nUPDATE t2 SET b=41423 WHERE a=5374;\nUPDATE t2 SET b=70369 WHERE a=5375;\nUPDATE t2 SET b=74126 WHERE a=5376;\nUPDATE t2 SET b=26162 WHERE a=5377;\nUPDATE t2 SET b=68805 WHERE a=5378;\nUPDATE t2 SET b=27169 WHERE a=5379;\nUPDATE t2 SET b=53553 WHERE a=5380;\nUPDATE t2 SET b=7308 WHERE a=5381;\nUPDATE t2 SET b=44857 WHERE a=5382;\nUPDATE t2 SET b=84946 WHERE a=5383;\nUPDATE t2 SET b=90624 WHERE a=5384;\nUPDATE t2 SET b=52786 WHERE a=5385;\nUPDATE t2 SET b=30633 WHERE a=5386;\nUPDATE t2 SET b=23658 WHERE a=5387;\nUPDATE t2 SET b=70788 WHERE a=5388;\nUPDATE t2 SET b=87714 WHERE a=5389;\nUPDATE t2 SET b=84752 WHERE a=5390;\nUPDATE t2 SET b=20818 WHERE a=5391;\nUPDATE t2 SET b=88184 WHERE a=5392;\nUPDATE t2 SET b=1976 WHERE a=5393;\nUPDATE t2 SET b=58792 WHERE a=5394;\nUPDATE t2 SET b=38603 WHERE a=5395;\nUPDATE t2 SET b=53550 WHERE a=5396;\nUPDATE t2 SET b=61609 WHERE a=5397;\nUPDATE t2 SET b=86039 WHERE a=5398;\nUPDATE t2 SET b=92769 WHERE a=5399;\nUPDATE t2 SET b=22547 WHERE a=5400;\nUPDATE t2 SET b=6617 WHERE a=5401;\nUPDATE t2 SET b=20210 WHERE a=5402;\nUPDATE t2 SET b=41303 WHERE a=5403;\nUPDATE t2 SET b=52986 WHERE a=5404;\nUPDATE t2 SET b=52845 WHERE a=5405;\nUPDATE t2 SET b=63342 WHERE a=5406;\nUPDATE t2 SET b=99936 WHERE a=5407;\nUPDATE t2 SET b=99957 WHERE a=5408;\nUPDATE t2 SET b=30118 WHERE a=5409;\nUPDATE t2 SET b=36790 WHERE a=5410;\nUPDATE t2 SET b=86258 WHERE a=5411;\nUPDATE t2 SET b=76716 WHERE a=5412;\nUPDATE t2 SET b=81112 WHERE a=5413;\nUPDATE t2 SET b=6703 WHERE a=5414;\nUPDATE t2 SET b=67630 WHERE a=5415;\nUPDATE t2 SET b=83331 WHERE a=5416;\nUPDATE t2 SET b=78856 WHERE a=5417;\nUPDATE t2 SET b=30558 WHERE a=5418;\nUPDATE t2 SET b=44017 WHERE a=5419;\nUPDATE t2 SET b=25544 WHERE a=5420;\nUPDATE t2 SET b=40506 WHERE a=5421;\nUPDATE t2 SET b=74008 WHERE a=5422;\nUPDATE t2 SET b=95049 WHERE a=5423;\nUPDATE t2 SET b=75004 WHERE a=5424;\nUPDATE t2 SET b=83206 WHERE a=5425;\nUPDATE t2 SET b=17663 WHERE a=5426;\nUPDATE t2 SET b=42349 WHERE a=5427;\nUPDATE t2 SET b=53775 WHERE a=5428;\nUPDATE t2 SET b=73837 WHERE a=5429;\nUPDATE t2 SET b=91622 WHERE a=5430;\nUPDATE t2 SET b=19766 WHERE a=5431;\nUPDATE t2 SET b=27338 WHERE a=5432;\nUPDATE t2 SET b=25720 WHERE a=5433;\nUPDATE t2 SET b=41103 WHERE a=5434;\nUPDATE t2 SET b=67644 WHERE a=5435;\nUPDATE t2 SET b=59764 WHERE a=5436;\nUPDATE t2 SET b=40785 WHERE a=5437;\nUPDATE t2 SET b=39193 WHERE a=5438;\nUPDATE t2 SET b=60445 WHERE a=5439;\nUPDATE t2 SET b=50978 WHERE a=5440;\nUPDATE t2 SET b=80841 WHERE a=5441;\nUPDATE t2 SET b=38335 WHERE a=5442;\nUPDATE t2 SET b=76290 WHERE a=5443;\nUPDATE t2 SET b=59311 WHERE a=5444;\nUPDATE t2 SET b=34370 WHERE a=5445;\nUPDATE t2 SET b=94754 WHERE a=5446;\nUPDATE t2 SET b=79092 WHERE a=5447;\nUPDATE t2 SET b=66729 WHERE a=5448;\nUPDATE t2 SET b=10822 WHERE a=5449;\nUPDATE t2 SET b=446 WHERE a=5450;\nUPDATE t2 SET b=44215 WHERE a=5451;\nUPDATE t2 SET b=92008 WHERE a=5452;\nUPDATE t2 SET b=34954 WHERE a=5453;\nUPDATE t2 SET b=68373 WHERE a=5454;\nUPDATE t2 SET b=95948 WHERE a=5455;\nUPDATE t2 SET b=32163 WHERE a=5456;\nUPDATE t2 SET b=6776 WHERE a=5457;\nUPDATE t2 SET b=38291 WHERE a=5458;\nUPDATE t2 SET b=21431 WHERE a=5459;\nUPDATE t2 SET b=29795 WHERE a=5460;\nUPDATE t2 SET b=94459 WHERE a=5461;\nUPDATE t2 SET b=92700 WHERE a=5462;\nUPDATE t2 SET b=91003 WHERE a=5463;\nUPDATE t2 SET b=16201 WHERE a=5464;\nUPDATE t2 SET b=20677 WHERE a=5465;\nUPDATE t2 SET b=91945 WHERE a=5466;\nUPDATE t2 SET b=5200 WHERE a=5467;\nUPDATE t2 SET b=58616 WHERE a=5468;\nUPDATE t2 SET b=85413 WHERE a=5469;\nUPDATE t2 SET b=59172 WHERE a=5470;\nUPDATE t2 SET b=72390 WHERE a=5471;\nUPDATE t2 SET b=3971 WHERE a=5472;\nUPDATE t2 SET b=66193 WHERE a=5473;\nUPDATE t2 SET b=97433 WHERE a=5474;\nUPDATE t2 SET b=98154 WHERE a=5475;\nUPDATE t2 SET b=3959 WHERE a=5476;\nUPDATE t2 SET b=8107 WHERE a=5477;\nUPDATE t2 SET b=96621 WHERE a=5478;\nUPDATE t2 SET b=35277 WHERE a=5479;\nUPDATE t2 SET b=9981 WHERE a=5480;\nUPDATE t2 SET b=44010 WHERE a=5481;\nUPDATE t2 SET b=76766 WHERE a=5482;\nUPDATE t2 SET b=6240 WHERE a=5483;\nUPDATE t2 SET b=56166 WHERE a=5484;\nUPDATE t2 SET b=99086 WHERE a=5485;\nUPDATE t2 SET b=56554 WHERE a=5486;\nUPDATE t2 SET b=78730 WHERE a=5487;\nUPDATE t2 SET b=91436 WHERE a=5488;\nUPDATE t2 SET b=14347 WHERE a=5489;\nUPDATE t2 SET b=71131 WHERE a=5490;\nUPDATE t2 SET b=74513 WHERE a=5491;\nUPDATE t2 SET b=32649 WHERE a=5492;\nUPDATE t2 SET b=77311 WHERE a=5493;\nUPDATE t2 SET b=36960 WHERE a=5494;\nUPDATE t2 SET b=2562 WHERE a=5495;\nUPDATE t2 SET b=42443 WHERE a=5496;\nUPDATE t2 SET b=18986 WHERE a=5497;\nUPDATE t2 SET b=53986 WHERE a=5498;\nUPDATE t2 SET b=83180 WHERE a=5499;\nUPDATE t2 SET b=65225 WHERE a=5500;\nUPDATE t2 SET b=64543 WHERE a=5501;\nUPDATE t2 SET b=94028 WHERE a=5502;\nUPDATE t2 SET b=68784 WHERE a=5503;\nUPDATE t2 SET b=2184 WHERE a=5504;\nUPDATE t2 SET b=61669 WHERE a=5505;\nUPDATE t2 SET b=64425 WHERE a=5506;\nUPDATE t2 SET b=9898 WHERE a=5507;\nUPDATE t2 SET b=89367 WHERE a=5508;\nUPDATE t2 SET b=76846 WHERE a=5509;\nUPDATE t2 SET b=39353 WHERE a=5510;\nUPDATE t2 SET b=9883 WHERE a=5511;\nUPDATE t2 SET b=49992 WHERE a=5512;\nUPDATE t2 SET b=3482 WHERE a=5513;\nUPDATE t2 SET b=25602 WHERE a=5514;\nUPDATE t2 SET b=33207 WHERE a=5515;\nUPDATE t2 SET b=56112 WHERE a=5516;\nUPDATE t2 SET b=79388 WHERE a=5517;\nUPDATE t2 SET b=6743 WHERE a=5518;\nUPDATE t2 SET b=70162 WHERE a=5519;\nUPDATE t2 SET b=60603 WHERE a=5520;\nUPDATE t2 SET b=61984 WHERE a=5521;\nUPDATE t2 SET b=8303 WHERE a=5522;\nUPDATE t2 SET b=65543 WHERE a=5523;\nUPDATE t2 SET b=6556 WHERE a=5524;\nUPDATE t2 SET b=42644 WHERE a=5525;\nUPDATE t2 SET b=73092 WHERE a=5526;\nUPDATE t2 SET b=54055 WHERE a=5527;\nUPDATE t2 SET b=39377 WHERE a=5528;\nUPDATE t2 SET b=5042 WHERE a=5529;\nUPDATE t2 SET b=86646 WHERE a=5530;\nUPDATE t2 SET b=15311 WHERE a=5531;\nUPDATE t2 SET b=90314 WHERE a=5532;\nUPDATE t2 SET b=42943 WHERE a=5533;\nUPDATE t2 SET b=74000 WHERE a=5534;\nUPDATE t2 SET b=48374 WHERE a=5535;\nUPDATE t2 SET b=19072 WHERE a=5536;\nUPDATE t2 SET b=44881 WHERE a=5537;\nUPDATE t2 SET b=83794 WHERE a=5538;\nUPDATE t2 SET b=31226 WHERE a=5539;\nUPDATE t2 SET b=81695 WHERE a=5540;\nUPDATE t2 SET b=58707 WHERE a=5541;\nUPDATE t2 SET b=45026 WHERE a=5542;\nUPDATE t2 SET b=56334 WHERE a=5543;\nUPDATE t2 SET b=88128 WHERE a=5544;\nUPDATE t2 SET b=17379 WHERE a=5545;\nUPDATE t2 SET b=74244 WHERE a=5546;\nUPDATE t2 SET b=51092 WHERE a=5547;\nUPDATE t2 SET b=45685 WHERE a=5548;\nUPDATE t2 SET b=50267 WHERE a=5549;\nUPDATE t2 SET b=48877 WHERE a=5550;\nUPDATE t2 SET b=324 WHERE a=5551;\nUPDATE t2 SET b=46450 WHERE a=5552;\nUPDATE t2 SET b=10195 WHERE a=5553;\nUPDATE t2 SET b=35882 WHERE a=5554;\nUPDATE t2 SET b=59362 WHERE a=5555;\nUPDATE t2 SET b=56788 WHERE a=5556;\nUPDATE t2 SET b=62130 WHERE a=5557;\nUPDATE t2 SET b=55544 WHERE a=5558;\nUPDATE t2 SET b=59063 WHERE a=5559;\nUPDATE t2 SET b=22803 WHERE a=5560;\nUPDATE t2 SET b=71944 WHERE a=5561;\nUPDATE t2 SET b=35390 WHERE a=5562;\nUPDATE t2 SET b=76308 WHERE a=5563;\nUPDATE t2 SET b=83199 WHERE a=5564;\nUPDATE t2 SET b=79216 WHERE a=5565;\nUPDATE t2 SET b=74366 WHERE a=5566;\nUPDATE t2 SET b=42250 WHERE a=5567;\nUPDATE t2 SET b=12777 WHERE a=5568;\nUPDATE t2 SET b=60428 WHERE a=5569;\nUPDATE t2 SET b=73776 WHERE a=5570;\nUPDATE t2 SET b=68259 WHERE a=5571;\nUPDATE t2 SET b=32650 WHERE a=5572;\nUPDATE t2 SET b=87970 WHERE a=5573;\nUPDATE t2 SET b=29836 WHERE a=5574;\nUPDATE t2 SET b=68345 WHERE a=5575;\nUPDATE t2 SET b=97267 WHERE a=5576;\nUPDATE t2 SET b=53042 WHERE a=5577;\nUPDATE t2 SET b=79761 WHERE a=5578;\nUPDATE t2 SET b=17009 WHERE a=5579;\nUPDATE t2 SET b=94803 WHERE a=5580;\nUPDATE t2 SET b=20021 WHERE a=5581;\nUPDATE t2 SET b=72817 WHERE a=5582;\nUPDATE t2 SET b=34527 WHERE a=5583;\nUPDATE t2 SET b=84337 WHERE a=5584;\nUPDATE t2 SET b=9217 WHERE a=5585;\nUPDATE t2 SET b=25546 WHERE a=5586;\nUPDATE t2 SET b=85753 WHERE a=5587;\nUPDATE t2 SET b=75364 WHERE a=5588;\nUPDATE t2 SET b=8641 WHERE a=5589;\nUPDATE t2 SET b=39445 WHERE a=5590;\nUPDATE t2 SET b=28394 WHERE a=5591;\nUPDATE t2 SET b=13472 WHERE a=5592;\nUPDATE t2 SET b=6972 WHERE a=5593;\nUPDATE t2 SET b=63925 WHERE a=5594;\nUPDATE t2 SET b=99837 WHERE a=5595;\nUPDATE t2 SET b=78319 WHERE a=5596;\nUPDATE t2 SET b=92787 WHERE a=5597;\nUPDATE t2 SET b=14772 WHERE a=5598;\nUPDATE t2 SET b=8191 WHERE a=5599;\nUPDATE t2 SET b=69467 WHERE a=5600;\nUPDATE t2 SET b=30388 WHERE a=5601;\nUPDATE t2 SET b=52608 WHERE a=5602;\nUPDATE t2 SET b=30755 WHERE a=5603;\nUPDATE t2 SET b=68218 WHERE a=5604;\nUPDATE t2 SET b=23433 WHERE a=5605;\nUPDATE t2 SET b=21425 WHERE a=5606;\nUPDATE t2 SET b=80204 WHERE a=5607;\nUPDATE t2 SET b=78762 WHERE a=5608;\nUPDATE t2 SET b=51791 WHERE a=5609;\nUPDATE t2 SET b=97221 WHERE a=5610;\nUPDATE t2 SET b=44222 WHERE a=5611;\nUPDATE t2 SET b=17553 WHERE a=5612;\nUPDATE t2 SET b=56324 WHERE a=5613;\nUPDATE t2 SET b=22326 WHERE a=5614;\nUPDATE t2 SET b=66315 WHERE a=5615;\nUPDATE t2 SET b=36874 WHERE a=5616;\nUPDATE t2 SET b=30025 WHERE a=5617;\nUPDATE t2 SET b=53161 WHERE a=5618;\nUPDATE t2 SET b=96703 WHERE a=5619;\nUPDATE t2 SET b=86914 WHERE a=5620;\nUPDATE t2 SET b=27849 WHERE a=5621;\nUPDATE t2 SET b=63487 WHERE a=5622;\nUPDATE t2 SET b=37621 WHERE a=5623;\nUPDATE t2 SET b=56925 WHERE a=5624;\nUPDATE t2 SET b=28000 WHERE a=5625;\nUPDATE t2 SET b=4174 WHERE a=5626;\nUPDATE t2 SET b=34143 WHERE a=5627;\nUPDATE t2 SET b=82837 WHERE a=5628;\nUPDATE t2 SET b=54909 WHERE a=5629;\nUPDATE t2 SET b=10293 WHERE a=5630;\nUPDATE t2 SET b=86438 WHERE a=5631;\nUPDATE t2 SET b=70007 WHERE a=5632;\nUPDATE t2 SET b=85357 WHERE a=5633;\nUPDATE t2 SET b=6757 WHERE a=5634;\nUPDATE t2 SET b=89844 WHERE a=5635;\nUPDATE t2 SET b=27285 WHERE a=5636;\nUPDATE t2 SET b=63017 WHERE a=5637;\nUPDATE t2 SET b=53320 WHERE a=5638;\nUPDATE t2 SET b=30110 WHERE a=5639;\nUPDATE t2 SET b=59790 WHERE a=5640;\nUPDATE t2 SET b=18100 WHERE a=5641;\nUPDATE t2 SET b=84925 WHERE a=5642;\nUPDATE t2 SET b=82149 WHERE a=5643;\nUPDATE t2 SET b=37006 WHERE a=5644;\nUPDATE t2 SET b=99269 WHERE a=5645;\nUPDATE t2 SET b=12030 WHERE a=5646;\nUPDATE t2 SET b=15937 WHERE a=5647;\nUPDATE t2 SET b=83970 WHERE a=5648;\nUPDATE t2 SET b=79436 WHERE a=5649;\nUPDATE t2 SET b=21585 WHERE a=5650;\nUPDATE t2 SET b=1349 WHERE a=5651;\nUPDATE t2 SET b=26098 WHERE a=5652;\nUPDATE t2 SET b=73285 WHERE a=5653;\nUPDATE t2 SET b=72267 WHERE a=5654;\nUPDATE t2 SET b=69295 WHERE a=5655;\nUPDATE t2 SET b=72014 WHERE a=5656;\nUPDATE t2 SET b=39131 WHERE a=5657;\nUPDATE t2 SET b=54467 WHERE a=5658;\nUPDATE t2 SET b=1204 WHERE a=5659;\nUPDATE t2 SET b=85135 WHERE a=5660;\nUPDATE t2 SET b=67846 WHERE a=5661;\nUPDATE t2 SET b=17472 WHERE a=5662;\nUPDATE t2 SET b=16067 WHERE a=5663;\nUPDATE t2 SET b=41979 WHERE a=5664;\nUPDATE t2 SET b=35140 WHERE a=5665;\nUPDATE t2 SET b=28458 WHERE a=5666;\nUPDATE t2 SET b=96354 WHERE a=5667;\nUPDATE t2 SET b=24862 WHERE a=5668;\nUPDATE t2 SET b=62441 WHERE a=5669;\nUPDATE t2 SET b=42025 WHERE a=5670;\nUPDATE t2 SET b=21482 WHERE a=5671;\nUPDATE t2 SET b=8450 WHERE a=5672;\nUPDATE t2 SET b=32286 WHERE a=5673;\nUPDATE t2 SET b=63298 WHERE a=5674;\nUPDATE t2 SET b=59216 WHERE a=5675;\nUPDATE t2 SET b=90766 WHERE a=5676;\nUPDATE t2 SET b=31954 WHERE a=5677;\nUPDATE t2 SET b=8287 WHERE a=5678;\nUPDATE t2 SET b=56152 WHERE a=5679;\nUPDATE t2 SET b=91 WHERE a=5680;\nUPDATE t2 SET b=83445 WHERE a=5681;\nUPDATE t2 SET b=49593 WHERE a=5682;\nUPDATE t2 SET b=98891 WHERE a=5683;\nUPDATE t2 SET b=61961 WHERE a=5684;\nUPDATE t2 SET b=18257 WHERE a=5685;\nUPDATE t2 SET b=5772 WHERE a=5686;\nUPDATE t2 SET b=6130 WHERE a=5687;\nUPDATE t2 SET b=71348 WHERE a=5688;\nUPDATE t2 SET b=27099 WHERE a=5689;\nUPDATE t2 SET b=15129 WHERE a=5690;\nUPDATE t2 SET b=7826 WHERE a=5691;\nUPDATE t2 SET b=83965 WHERE a=5692;\nUPDATE t2 SET b=69626 WHERE a=5693;\nUPDATE t2 SET b=11659 WHERE a=5694;\nUPDATE t2 SET b=18872 WHERE a=5695;\nUPDATE t2 SET b=90004 WHERE a=5696;\nUPDATE t2 SET b=48052 WHERE a=5697;\nUPDATE t2 SET b=36559 WHERE a=5698;\nUPDATE t2 SET b=97987 WHERE a=5699;\nUPDATE t2 SET b=79582 WHERE a=5700;\nUPDATE t2 SET b=2037 WHERE a=5701;\nUPDATE t2 SET b=8187 WHERE a=5702;\nUPDATE t2 SET b=92538 WHERE a=5703;\nUPDATE t2 SET b=80875 WHERE a=5704;\nUPDATE t2 SET b=8513 WHERE a=5705;\nUPDATE t2 SET b=837 WHERE a=5706;\nUPDATE t2 SET b=13228 WHERE a=5707;\nUPDATE t2 SET b=67681 WHERE a=5708;\nUPDATE t2 SET b=4183 WHERE a=5709;\nUPDATE t2 SET b=97425 WHERE a=5710;\nUPDATE t2 SET b=12197 WHERE a=5711;\nUPDATE t2 SET b=10158 WHERE a=5712;\nUPDATE t2 SET b=70152 WHERE a=5713;\nUPDATE t2 SET b=65814 WHERE a=5714;\nUPDATE t2 SET b=15738 WHERE a=5715;\nUPDATE t2 SET b=22717 WHERE a=5716;\nUPDATE t2 SET b=51239 WHERE a=5717;\nUPDATE t2 SET b=59927 WHERE a=5718;\nUPDATE t2 SET b=7420 WHERE a=5719;\nUPDATE t2 SET b=66496 WHERE a=5720;\nUPDATE t2 SET b=18505 WHERE a=5721;\nUPDATE t2 SET b=70492 WHERE a=5722;\nUPDATE t2 SET b=63612 WHERE a=5723;\nUPDATE t2 SET b=22727 WHERE a=5724;\nUPDATE t2 SET b=99509 WHERE a=5725;\nUPDATE t2 SET b=50401 WHERE a=5726;\nUPDATE t2 SET b=25978 WHERE a=5727;\nUPDATE t2 SET b=64870 WHERE a=5728;\nUPDATE t2 SET b=26557 WHERE a=5729;\nUPDATE t2 SET b=17091 WHERE a=5730;\nUPDATE t2 SET b=44141 WHERE a=5731;\nUPDATE t2 SET b=1501 WHERE a=5732;\nUPDATE t2 SET b=12102 WHERE a=5733;\nUPDATE t2 SET b=16411 WHERE a=5734;\nUPDATE t2 SET b=95446 WHERE a=5735;\nUPDATE t2 SET b=48594 WHERE a=5736;\nUPDATE t2 SET b=31430 WHERE a=5737;\nUPDATE t2 SET b=94768 WHERE a=5738;\nUPDATE t2 SET b=84860 WHERE a=5739;\nUPDATE t2 SET b=92824 WHERE a=5740;\nUPDATE t2 SET b=50811 WHERE a=5741;\nUPDATE t2 SET b=88666 WHERE a=5742;\nUPDATE t2 SET b=26948 WHERE a=5743;\nUPDATE t2 SET b=52682 WHERE a=5744;\nUPDATE t2 SET b=43790 WHERE a=5745;\nUPDATE t2 SET b=28849 WHERE a=5746;\nUPDATE t2 SET b=38509 WHERE a=5747;\nUPDATE t2 SET b=7666 WHERE a=5748;\nUPDATE t2 SET b=37331 WHERE a=5749;\nUPDATE t2 SET b=63139 WHERE a=5750;\nUPDATE t2 SET b=77660 WHERE a=5751;\nUPDATE t2 SET b=37897 WHERE a=5752;\nUPDATE t2 SET b=50090 WHERE a=5753;\nUPDATE t2 SET b=83079 WHERE a=5754;\nUPDATE t2 SET b=80102 WHERE a=5755;\nUPDATE t2 SET b=93456 WHERE a=5756;\nUPDATE t2 SET b=38519 WHERE a=5757;\nUPDATE t2 SET b=25201 WHERE a=5758;\nUPDATE t2 SET b=36343 WHERE a=5759;\nUPDATE t2 SET b=46392 WHERE a=5760;\nUPDATE t2 SET b=38356 WHERE a=5761;\nUPDATE t2 SET b=55398 WHERE a=5762;\nUPDATE t2 SET b=12991 WHERE a=5763;\nUPDATE t2 SET b=20052 WHERE a=5764;\nUPDATE t2 SET b=71033 WHERE a=5765;\nUPDATE t2 SET b=84541 WHERE a=5766;\nUPDATE t2 SET b=36010 WHERE a=5767;\nUPDATE t2 SET b=42590 WHERE a=5768;\nUPDATE t2 SET b=53544 WHERE a=5769;\nUPDATE t2 SET b=71333 WHERE a=5770;\nUPDATE t2 SET b=54647 WHERE a=5771;\nUPDATE t2 SET b=19053 WHERE a=5772;\nUPDATE t2 SET b=19385 WHERE a=5773;\nUPDATE t2 SET b=49548 WHERE a=5774;\nUPDATE t2 SET b=87935 WHERE a=5775;\nUPDATE t2 SET b=96671 WHERE a=5776;\nUPDATE t2 SET b=9902 WHERE a=5777;\nUPDATE t2 SET b=18086 WHERE a=5778;\nUPDATE t2 SET b=18021 WHERE a=5779;\nUPDATE t2 SET b=90215 WHERE a=5780;\nUPDATE t2 SET b=23837 WHERE a=5781;\nUPDATE t2 SET b=91235 WHERE a=5782;\nUPDATE t2 SET b=82109 WHERE a=5783;\nUPDATE t2 SET b=67282 WHERE a=5784;\nUPDATE t2 SET b=62982 WHERE a=5785;\nUPDATE t2 SET b=74549 WHERE a=5786;\nUPDATE t2 SET b=74815 WHERE a=5787;\nUPDATE t2 SET b=27166 WHERE a=5788;\nUPDATE t2 SET b=38160 WHERE a=5789;\nUPDATE t2 SET b=82471 WHERE a=5790;\nUPDATE t2 SET b=79942 WHERE a=5791;\nUPDATE t2 SET b=71630 WHERE a=5792;\nUPDATE t2 SET b=29939 WHERE a=5793;\nUPDATE t2 SET b=5177 WHERE a=5794;\nUPDATE t2 SET b=26407 WHERE a=5795;\nUPDATE t2 SET b=62223 WHERE a=5796;\nUPDATE t2 SET b=85014 WHERE a=5797;\nUPDATE t2 SET b=41191 WHERE a=5798;\nUPDATE t2 SET b=52711 WHERE a=5799;\nUPDATE t2 SET b=51761 WHERE a=5800;\nUPDATE t2 SET b=51576 WHERE a=5801;\nUPDATE t2 SET b=82767 WHERE a=5802;\nUPDATE t2 SET b=76209 WHERE a=5803;\nUPDATE t2 SET b=95010 WHERE a=5804;\nUPDATE t2 SET b=17402 WHERE a=5805;\nUPDATE t2 SET b=25999 WHERE a=5806;\nUPDATE t2 SET b=20379 WHERE a=5807;\nUPDATE t2 SET b=27299 WHERE a=5808;\nUPDATE t2 SET b=92221 WHERE a=5809;\nUPDATE t2 SET b=27516 WHERE a=5810;\nUPDATE t2 SET b=63161 WHERE a=5811;\nUPDATE t2 SET b=22735 WHERE a=5812;\nUPDATE t2 SET b=10601 WHERE a=5813;\nUPDATE t2 SET b=79931 WHERE a=5814;\nUPDATE t2 SET b=11909 WHERE a=5815;\nUPDATE t2 SET b=14868 WHERE a=5816;\nUPDATE t2 SET b=80882 WHERE a=5817;\nUPDATE t2 SET b=99044 WHERE a=5818;\nUPDATE t2 SET b=68022 WHERE a=5819;\nUPDATE t2 SET b=53735 WHERE a=5820;\nUPDATE t2 SET b=8695 WHERE a=5821;\nUPDATE t2 SET b=5655 WHERE a=5822;\nUPDATE t2 SET b=54461 WHERE a=5823;\nUPDATE t2 SET b=46721 WHERE a=5824;\nUPDATE t2 SET b=58591 WHERE a=5825;\nUPDATE t2 SET b=94986 WHERE a=5826;\nUPDATE t2 SET b=78876 WHERE a=5827;\nUPDATE t2 SET b=35748 WHERE a=5828;\nUPDATE t2 SET b=65185 WHERE a=5829;\nUPDATE t2 SET b=49884 WHERE a=5830;\nUPDATE t2 SET b=86767 WHERE a=5831;\nUPDATE t2 SET b=56366 WHERE a=5832;\nUPDATE t2 SET b=71809 WHERE a=5833;\nUPDATE t2 SET b=73274 WHERE a=5834;\nUPDATE t2 SET b=34492 WHERE a=5835;\nUPDATE t2 SET b=39433 WHERE a=5836;\nUPDATE t2 SET b=28534 WHERE a=5837;\nUPDATE t2 SET b=25911 WHERE a=5838;\nUPDATE t2 SET b=90905 WHERE a=5839;\nUPDATE t2 SET b=41623 WHERE a=5840;\nUPDATE t2 SET b=71952 WHERE a=5841;\nUPDATE t2 SET b=19286 WHERE a=5842;\nUPDATE t2 SET b=41438 WHERE a=5843;\nUPDATE t2 SET b=39158 WHERE a=5844;\nUPDATE t2 SET b=43368 WHERE a=5845;\nUPDATE t2 SET b=48271 WHERE a=5846;\nUPDATE t2 SET b=3024 WHERE a=5847;\nUPDATE t2 SET b=86622 WHERE a=5848;\nUPDATE t2 SET b=18410 WHERE a=5849;\nUPDATE t2 SET b=12813 WHERE a=5850;\nUPDATE t2 SET b=93426 WHERE a=5851;\nUPDATE t2 SET b=65959 WHERE a=5852;\nUPDATE t2 SET b=59407 WHERE a=5853;\nUPDATE t2 SET b=65385 WHERE a=5854;\nUPDATE t2 SET b=35441 WHERE a=5855;\nUPDATE t2 SET b=25173 WHERE a=5856;\nUPDATE t2 SET b=84133 WHERE a=5857;\nUPDATE t2 SET b=88523 WHERE a=5858;\nUPDATE t2 SET b=48123 WHERE a=5859;\nUPDATE t2 SET b=84567 WHERE a=5860;\nUPDATE t2 SET b=24738 WHERE a=5861;\nUPDATE t2 SET b=39131 WHERE a=5862;\nUPDATE t2 SET b=81674 WHERE a=5863;\nUPDATE t2 SET b=44965 WHERE a=5864;\nUPDATE t2 SET b=24253 WHERE a=5865;\nUPDATE t2 SET b=83570 WHERE a=5866;\nUPDATE t2 SET b=60327 WHERE a=5867;\nUPDATE t2 SET b=30699 WHERE a=5868;\nUPDATE t2 SET b=36922 WHERE a=5869;\nUPDATE t2 SET b=70606 WHERE a=5870;\nUPDATE t2 SET b=2733 WHERE a=5871;\nUPDATE t2 SET b=11203 WHERE a=5872;\nUPDATE t2 SET b=80323 WHERE a=5873;\nUPDATE t2 SET b=99299 WHERE a=5874;\nUPDATE t2 SET b=24165 WHERE a=5875;\nUPDATE t2 SET b=79990 WHERE a=5876;\nUPDATE t2 SET b=25105 WHERE a=5877;\nUPDATE t2 SET b=50957 WHERE a=5878;\nUPDATE t2 SET b=82188 WHERE a=5879;\nUPDATE t2 SET b=48568 WHERE a=5880;\nUPDATE t2 SET b=23806 WHERE a=5881;\nUPDATE t2 SET b=75542 WHERE a=5882;\nUPDATE t2 SET b=23645 WHERE a=5883;\nUPDATE t2 SET b=77523 WHERE a=5884;\nUPDATE t2 SET b=25241 WHERE a=5885;\nUPDATE t2 SET b=64975 WHERE a=5886;\nUPDATE t2 SET b=27145 WHERE a=5887;\nUPDATE t2 SET b=74387 WHERE a=5888;\nUPDATE t2 SET b=9584 WHERE a=5889;\nUPDATE t2 SET b=56061 WHERE a=5890;\nUPDATE t2 SET b=82007 WHERE a=5891;\nUPDATE t2 SET b=65923 WHERE a=5892;\nUPDATE t2 SET b=5654 WHERE a=5893;\nUPDATE t2 SET b=19355 WHERE a=5894;\nUPDATE t2 SET b=53910 WHERE a=5895;\nUPDATE t2 SET b=41294 WHERE a=5896;\nUPDATE t2 SET b=97429 WHERE a=5897;\nUPDATE t2 SET b=28446 WHERE a=5898;\nUPDATE t2 SET b=87082 WHERE a=5899;\nUPDATE t2 SET b=58226 WHERE a=5900;\nUPDATE t2 SET b=37499 WHERE a=5901;\nUPDATE t2 SET b=64691 WHERE a=5902;\nUPDATE t2 SET b=44449 WHERE a=5903;\nUPDATE t2 SET b=70702 WHERE a=5904;\nUPDATE t2 SET b=77662 WHERE a=5905;\nUPDATE t2 SET b=87821 WHERE a=5906;\nUPDATE t2 SET b=83197 WHERE a=5907;\nUPDATE t2 SET b=18682 WHERE a=5908;\nUPDATE t2 SET b=18142 WHERE a=5909;\nUPDATE t2 SET b=99113 WHERE a=5910;\nUPDATE t2 SET b=29295 WHERE a=5911;\nUPDATE t2 SET b=47356 WHERE a=5912;\nUPDATE t2 SET b=85108 WHERE a=5913;\nUPDATE t2 SET b=39469 WHERE a=5914;\nUPDATE t2 SET b=20592 WHERE a=5915;\nUPDATE t2 SET b=22372 WHERE a=5916;\nUPDATE t2 SET b=20034 WHERE a=5917;\nUPDATE t2 SET b=99483 WHERE a=5918;\nUPDATE t2 SET b=12462 WHERE a=5919;\nUPDATE t2 SET b=77822 WHERE a=5920;\nUPDATE t2 SET b=51531 WHERE a=5921;\nUPDATE t2 SET b=67234 WHERE a=5922;\nUPDATE t2 SET b=33048 WHERE a=5923;\nUPDATE t2 SET b=43856 WHERE a=5924;\nUPDATE t2 SET b=19708 WHERE a=5925;\nUPDATE t2 SET b=79574 WHERE a=5926;\nUPDATE t2 SET b=18297 WHERE a=5927;\nUPDATE t2 SET b=1514 WHERE a=5928;\nUPDATE t2 SET b=17492 WHERE a=5929;\nUPDATE t2 SET b=82176 WHERE a=5930;\nUPDATE t2 SET b=56766 WHERE a=5931;\nUPDATE t2 SET b=78515 WHERE a=5932;\nUPDATE t2 SET b=83984 WHERE a=5933;\nUPDATE t2 SET b=25164 WHERE a=5934;\nUPDATE t2 SET b=60481 WHERE a=5935;\nUPDATE t2 SET b=10462 WHERE a=5936;\nUPDATE t2 SET b=53169 WHERE a=5937;\nUPDATE t2 SET b=19484 WHERE a=5938;\nUPDATE t2 SET b=71522 WHERE a=5939;\nUPDATE t2 SET b=35355 WHERE a=5940;\nUPDATE t2 SET b=13332 WHERE a=5941;\nUPDATE t2 SET b=51238 WHERE a=5942;\nUPDATE t2 SET b=96323 WHERE a=5943;\nUPDATE t2 SET b=49286 WHERE a=5944;\nUPDATE t2 SET b=81007 WHERE a=5945;\nUPDATE t2 SET b=78677 WHERE a=5946;\nUPDATE t2 SET b=5041 WHERE a=5947;\nUPDATE t2 SET b=44598 WHERE a=5948;\nUPDATE t2 SET b=417 WHERE a=5949;\nUPDATE t2 SET b=65063 WHERE a=5950;\nUPDATE t2 SET b=21497 WHERE a=5951;\nUPDATE t2 SET b=113 WHERE a=5952;\nUPDATE t2 SET b=8916 WHERE a=5953;\nUPDATE t2 SET b=57367 WHERE a=5954;\nUPDATE t2 SET b=96710 WHERE a=5955;\nUPDATE t2 SET b=21039 WHERE a=5956;\nUPDATE t2 SET b=170 WHERE a=5957;\nUPDATE t2 SET b=49513 WHERE a=5958;\nUPDATE t2 SET b=57057 WHERE a=5959;\nUPDATE t2 SET b=62630 WHERE a=5960;\nUPDATE t2 SET b=80493 WHERE a=5961;\nUPDATE t2 SET b=58772 WHERE a=5962;\nUPDATE t2 SET b=80674 WHERE a=5963;\nUPDATE t2 SET b=11587 WHERE a=5964;\nUPDATE t2 SET b=36163 WHERE a=5965;\nUPDATE t2 SET b=97196 WHERE a=5966;\nUPDATE t2 SET b=39645 WHERE a=5967;\nUPDATE t2 SET b=33160 WHERE a=5968;\nUPDATE t2 SET b=73401 WHERE a=5969;\nUPDATE t2 SET b=43956 WHERE a=5970;\nUPDATE t2 SET b=97213 WHERE a=5971;\nUPDATE t2 SET b=8819 WHERE a=5972;\nUPDATE t2 SET b=90304 WHERE a=5973;\nUPDATE t2 SET b=80890 WHERE a=5974;\nUPDATE t2 SET b=96063 WHERE a=5975;\nUPDATE t2 SET b=55976 WHERE a=5976;\nUPDATE t2 SET b=51863 WHERE a=5977;\nUPDATE t2 SET b=97677 WHERE a=5978;\nUPDATE t2 SET b=74487 WHERE a=5979;\nUPDATE t2 SET b=81396 WHERE a=5980;\nUPDATE t2 SET b=46819 WHERE a=5981;\nUPDATE t2 SET b=55811 WHERE a=5982;\nUPDATE t2 SET b=4394 WHERE a=5983;\nUPDATE t2 SET b=32669 WHERE a=5984;\nUPDATE t2 SET b=44938 WHERE a=5985;\nUPDATE t2 SET b=68028 WHERE a=5986;\nUPDATE t2 SET b=43266 WHERE a=5987;\nUPDATE t2 SET b=83877 WHERE a=5988;\nUPDATE t2 SET b=13449 WHERE a=5989;\nUPDATE t2 SET b=55214 WHERE a=5990;\nUPDATE t2 SET b=85040 WHERE a=5991;\nUPDATE t2 SET b=32142 WHERE a=5992;\nUPDATE t2 SET b=75360 WHERE a=5993;\nUPDATE t2 SET b=37947 WHERE a=5994;\nUPDATE t2 SET b=26171 WHERE a=5995;\nUPDATE t2 SET b=2043 WHERE a=5996;\nUPDATE t2 SET b=28005 WHERE a=5997;\nUPDATE t2 SET b=66442 WHERE a=5998;\nUPDATE t2 SET b=80819 WHERE a=5999;\nUPDATE t2 SET b=2177 WHERE a=6000;\nUPDATE t2 SET b=7498 WHERE a=6001;\nUPDATE t2 SET b=7399 WHERE a=6002;\nUPDATE t2 SET b=40022 WHERE a=6003;\nUPDATE t2 SET b=25616 WHERE a=6004;\nUPDATE t2 SET b=77296 WHERE a=6005;\nUPDATE t2 SET b=83731 WHERE a=6006;\nUPDATE t2 SET b=42856 WHERE a=6007;\nUPDATE t2 SET b=35320 WHERE a=6008;\nUPDATE t2 SET b=80233 WHERE a=6009;\nUPDATE t2 SET b=56006 WHERE a=6010;\nUPDATE t2 SET b=81131 WHERE a=6011;\nUPDATE t2 SET b=3306 WHERE a=6012;\nUPDATE t2 SET b=23882 WHERE a=6013;\nUPDATE t2 SET b=23577 WHERE a=6014;\nUPDATE t2 SET b=74863 WHERE a=6015;\nUPDATE t2 SET b=78903 WHERE a=6016;\nUPDATE t2 SET b=22974 WHERE a=6017;\nUPDATE t2 SET b=5228 WHERE a=6018;\nUPDATE t2 SET b=15422 WHERE a=6019;\nUPDATE t2 SET b=32042 WHERE a=6020;\nUPDATE t2 SET b=45229 WHERE a=6021;\nUPDATE t2 SET b=85092 WHERE a=6022;\nUPDATE t2 SET b=57699 WHERE a=6023;\nUPDATE t2 SET b=3844 WHERE a=6024;\nUPDATE t2 SET b=84694 WHERE a=6025;\nUPDATE t2 SET b=46427 WHERE a=6026;\nUPDATE t2 SET b=12071 WHERE a=6027;\nUPDATE t2 SET b=18365 WHERE a=6028;\nUPDATE t2 SET b=80833 WHERE a=6029;\nUPDATE t2 SET b=56021 WHERE a=6030;\nUPDATE t2 SET b=76998 WHERE a=6031;\nUPDATE t2 SET b=66024 WHERE a=6032;\nUPDATE t2 SET b=48736 WHERE a=6033;\nUPDATE t2 SET b=97658 WHERE a=6034;\nUPDATE t2 SET b=81120 WHERE a=6035;\nUPDATE t2 SET b=25244 WHERE a=6036;\nUPDATE t2 SET b=26793 WHERE a=6037;\nUPDATE t2 SET b=30503 WHERE a=6038;\nUPDATE t2 SET b=839 WHERE a=6039;\nUPDATE t2 SET b=54408 WHERE a=6040;\nUPDATE t2 SET b=74199 WHERE a=6041;\nUPDATE t2 SET b=75659 WHERE a=6042;\nUPDATE t2 SET b=32836 WHERE a=6043;\nUPDATE t2 SET b=48717 WHERE a=6044;\nUPDATE t2 SET b=71846 WHERE a=6045;\nUPDATE t2 SET b=15428 WHERE a=6046;\nUPDATE t2 SET b=78084 WHERE a=6047;\nUPDATE t2 SET b=79626 WHERE a=6048;\nUPDATE t2 SET b=36137 WHERE a=6049;\nUPDATE t2 SET b=75117 WHERE a=6050;\nUPDATE t2 SET b=36171 WHERE a=6051;\nUPDATE t2 SET b=47529 WHERE a=6052;\nUPDATE t2 SET b=86454 WHERE a=6053;\nUPDATE t2 SET b=27971 WHERE a=6054;\nUPDATE t2 SET b=38973 WHERE a=6055;\nUPDATE t2 SET b=81705 WHERE a=6056;\nUPDATE t2 SET b=66479 WHERE a=6057;\nUPDATE t2 SET b=32376 WHERE a=6058;\nUPDATE t2 SET b=6122 WHERE a=6059;\nUPDATE t2 SET b=86026 WHERE a=6060;\nUPDATE t2 SET b=35666 WHERE a=6061;\nUPDATE t2 SET b=99619 WHERE a=6062;\nUPDATE t2 SET b=12578 WHERE a=6063;\nUPDATE t2 SET b=23274 WHERE a=6064;\nUPDATE t2 SET b=42576 WHERE a=6065;\nUPDATE t2 SET b=43460 WHERE a=6066;\nUPDATE t2 SET b=61804 WHERE a=6067;\nUPDATE t2 SET b=98418 WHERE a=6068;\nUPDATE t2 SET b=14839 WHERE a=6069;\nUPDATE t2 SET b=77938 WHERE a=6070;\nUPDATE t2 SET b=53519 WHERE a=6071;\nUPDATE t2 SET b=67247 WHERE a=6072;\nUPDATE t2 SET b=60569 WHERE a=6073;\nUPDATE t2 SET b=5422 WHERE a=6074;\nUPDATE t2 SET b=98303 WHERE a=6075;\nUPDATE t2 SET b=19611 WHERE a=6076;\nUPDATE t2 SET b=72931 WHERE a=6077;\nUPDATE t2 SET b=55070 WHERE a=6078;\nUPDATE t2 SET b=25609 WHERE a=6079;\nUPDATE t2 SET b=36954 WHERE a=6080;\nUPDATE t2 SET b=32082 WHERE a=6081;\nUPDATE t2 SET b=98431 WHERE a=6082;\nUPDATE t2 SET b=57334 WHERE a=6083;\nUPDATE t2 SET b=49118 WHERE a=6084;\nUPDATE t2 SET b=11085 WHERE a=6085;\nUPDATE t2 SET b=10710 WHERE a=6086;\nUPDATE t2 SET b=79137 WHERE a=6087;\nUPDATE t2 SET b=10815 WHERE a=6088;\nUPDATE t2 SET b=60350 WHERE a=6089;\nUPDATE t2 SET b=86387 WHERE a=6090;\nUPDATE t2 SET b=44068 WHERE a=6091;\nUPDATE t2 SET b=12218 WHERE a=6092;\nUPDATE t2 SET b=60717 WHERE a=6093;\nUPDATE t2 SET b=99898 WHERE a=6094;\nUPDATE t2 SET b=34204 WHERE a=6095;\nUPDATE t2 SET b=80549 WHERE a=6096;\nUPDATE t2 SET b=34571 WHERE a=6097;\nUPDATE t2 SET b=71503 WHERE a=6098;\nUPDATE t2 SET b=91732 WHERE a=6099;\nUPDATE t2 SET b=54605 WHERE a=6100;\nUPDATE t2 SET b=90508 WHERE a=6101;\nUPDATE t2 SET b=52456 WHERE a=6102;\nUPDATE t2 SET b=57101 WHERE a=6103;\nUPDATE t2 SET b=87629 WHERE a=6104;\nUPDATE t2 SET b=44074 WHERE a=6105;\nUPDATE t2 SET b=95527 WHERE a=6106;\nUPDATE t2 SET b=31484 WHERE a=6107;\nUPDATE t2 SET b=55326 WHERE a=6108;\nUPDATE t2 SET b=61156 WHERE a=6109;\nUPDATE t2 SET b=39514 WHERE a=6110;\nUPDATE t2 SET b=48442 WHERE a=6111;\nUPDATE t2 SET b=37240 WHERE a=6112;\nUPDATE t2 SET b=20673 WHERE a=6113;\nUPDATE t2 SET b=68158 WHERE a=6114;\nUPDATE t2 SET b=19610 WHERE a=6115;\nUPDATE t2 SET b=83381 WHERE a=6116;\nUPDATE t2 SET b=49827 WHERE a=6117;\nUPDATE t2 SET b=39368 WHERE a=6118;\nUPDATE t2 SET b=1510 WHERE a=6119;\nUPDATE t2 SET b=38865 WHERE a=6120;\nUPDATE t2 SET b=19584 WHERE a=6121;\nUPDATE t2 SET b=21718 WHERE a=6122;\nUPDATE t2 SET b=65342 WHERE a=6123;\nUPDATE t2 SET b=24285 WHERE a=6124;\nUPDATE t2 SET b=43244 WHERE a=6125;\nUPDATE t2 SET b=45227 WHERE a=6126;\nUPDATE t2 SET b=47240 WHERE a=6127;\nUPDATE t2 SET b=94154 WHERE a=6128;\nUPDATE t2 SET b=73894 WHERE a=6129;\nUPDATE t2 SET b=74537 WHERE a=6130;\nUPDATE t2 SET b=65395 WHERE a=6131;\nUPDATE t2 SET b=80139 WHERE a=6132;\nUPDATE t2 SET b=25656 WHERE a=6133;\nUPDATE t2 SET b=80167 WHERE a=6134;\nUPDATE t2 SET b=3278 WHERE a=6135;\nUPDATE t2 SET b=68794 WHERE a=6136;\nUPDATE t2 SET b=16466 WHERE a=6137;\nUPDATE t2 SET b=23976 WHERE a=6138;\nUPDATE t2 SET b=42528 WHERE a=6139;\nUPDATE t2 SET b=90140 WHERE a=6140;\nUPDATE t2 SET b=4280 WHERE a=6141;\nUPDATE t2 SET b=69973 WHERE a=6142;\nUPDATE t2 SET b=33123 WHERE a=6143;\nUPDATE t2 SET b=5532 WHERE a=6144;\nUPDATE t2 SET b=10098 WHERE a=6145;\nUPDATE t2 SET b=92821 WHERE a=6146;\nUPDATE t2 SET b=40899 WHERE a=6147;\nUPDATE t2 SET b=80347 WHERE a=6148;\nUPDATE t2 SET b=24873 WHERE a=6149;\nUPDATE t2 SET b=15315 WHERE a=6150;\nUPDATE t2 SET b=77548 WHERE a=6151;\nUPDATE t2 SET b=72462 WHERE a=6152;\nUPDATE t2 SET b=55829 WHERE a=6153;\nUPDATE t2 SET b=36215 WHERE a=6154;\nUPDATE t2 SET b=26107 WHERE a=6155;\nUPDATE t2 SET b=42179 WHERE a=6156;\nUPDATE t2 SET b=1377 WHERE a=6157;\nUPDATE t2 SET b=45171 WHERE a=6158;\nUPDATE t2 SET b=42604 WHERE a=6159;\nUPDATE t2 SET b=74380 WHERE a=6160;\nUPDATE t2 SET b=1175 WHERE a=6161;\nUPDATE t2 SET b=74243 WHERE a=6162;\nUPDATE t2 SET b=99353 WHERE a=6163;\nUPDATE t2 SET b=66910 WHERE a=6164;\nUPDATE t2 SET b=22891 WHERE a=6165;\nUPDATE t2 SET b=54038 WHERE a=6166;\nUPDATE t2 SET b=55320 WHERE a=6167;\nUPDATE t2 SET b=7074 WHERE a=6168;\nUPDATE t2 SET b=68971 WHERE a=6169;\nUPDATE t2 SET b=22781 WHERE a=6170;\nUPDATE t2 SET b=61479 WHERE a=6171;\nUPDATE t2 SET b=78494 WHERE a=6172;\nUPDATE t2 SET b=1649 WHERE a=6173;\nUPDATE t2 SET b=93369 WHERE a=6174;\nUPDATE t2 SET b=42689 WHERE a=6175;\nUPDATE t2 SET b=49804 WHERE a=6176;\nUPDATE t2 SET b=82876 WHERE a=6177;\nUPDATE t2 SET b=57836 WHERE a=6178;\nUPDATE t2 SET b=50496 WHERE a=6179;\nUPDATE t2 SET b=22550 WHERE a=6180;\nUPDATE t2 SET b=26605 WHERE a=6181;\nUPDATE t2 SET b=59836 WHERE a=6182;\nUPDATE t2 SET b=7642 WHERE a=6183;\nUPDATE t2 SET b=23587 WHERE a=6184;\nUPDATE t2 SET b=70194 WHERE a=6185;\nUPDATE t2 SET b=39549 WHERE a=6186;\nUPDATE t2 SET b=46514 WHERE a=6187;\nUPDATE t2 SET b=98773 WHERE a=6188;\nUPDATE t2 SET b=33124 WHERE a=6189;\nUPDATE t2 SET b=20306 WHERE a=6190;\nUPDATE t2 SET b=14682 WHERE a=6191;\nUPDATE t2 SET b=41918 WHERE a=6192;\nUPDATE t2 SET b=7026 WHERE a=6193;\nUPDATE t2 SET b=63581 WHERE a=6194;\nUPDATE t2 SET b=22466 WHERE a=6195;\nUPDATE t2 SET b=1283 WHERE a=6196;\nUPDATE t2 SET b=9397 WHERE a=6197;\nUPDATE t2 SET b=837 WHERE a=6198;\nUPDATE t2 SET b=60852 WHERE a=6199;\nUPDATE t2 SET b=45284 WHERE a=6200;\nUPDATE t2 SET b=40126 WHERE a=6201;\nUPDATE t2 SET b=96426 WHERE a=6202;\nUPDATE t2 SET b=85524 WHERE a=6203;\nUPDATE t2 SET b=93449 WHERE a=6204;\nUPDATE t2 SET b=50254 WHERE a=6205;\nUPDATE t2 SET b=7196 WHERE a=6206;\nUPDATE t2 SET b=68727 WHERE a=6207;\nUPDATE t2 SET b=58895 WHERE a=6208;\nUPDATE t2 SET b=91170 WHERE a=6209;\nUPDATE t2 SET b=67843 WHERE a=6210;\nUPDATE t2 SET b=58145 WHERE a=6211;\nUPDATE t2 SET b=64200 WHERE a=6212;\nUPDATE t2 SET b=45891 WHERE a=6213;\nUPDATE t2 SET b=30988 WHERE a=6214;\nUPDATE t2 SET b=50170 WHERE a=6215;\nUPDATE t2 SET b=12004 WHERE a=6216;\nUPDATE t2 SET b=6512 WHERE a=6217;\nUPDATE t2 SET b=10770 WHERE a=6218;\nUPDATE t2 SET b=8697 WHERE a=6219;\nUPDATE t2 SET b=46467 WHERE a=6220;\nUPDATE t2 SET b=15742 WHERE a=6221;\nUPDATE t2 SET b=92371 WHERE a=6222;\nUPDATE t2 SET b=36505 WHERE a=6223;\nUPDATE t2 SET b=81914 WHERE a=6224;\nUPDATE t2 SET b=31216 WHERE a=6225;\nUPDATE t2 SET b=91064 WHERE a=6226;\nUPDATE t2 SET b=45582 WHERE a=6227;\nUPDATE t2 SET b=53116 WHERE a=6228;\nUPDATE t2 SET b=24497 WHERE a=6229;\nUPDATE t2 SET b=4509 WHERE a=6230;\nUPDATE t2 SET b=79209 WHERE a=6231;\nUPDATE t2 SET b=55395 WHERE a=6232;\nUPDATE t2 SET b=16632 WHERE a=6233;\nUPDATE t2 SET b=6870 WHERE a=6234;\nUPDATE t2 SET b=80258 WHERE a=6235;\nUPDATE t2 SET b=13784 WHERE a=6236;\nUPDATE t2 SET b=42298 WHERE a=6237;\nUPDATE t2 SET b=91498 WHERE a=6238;\nUPDATE t2 SET b=16334 WHERE a=6239;\nUPDATE t2 SET b=65072 WHERE a=6240;\nUPDATE t2 SET b=74035 WHERE a=6241;\nUPDATE t2 SET b=67542 WHERE a=6242;\nUPDATE t2 SET b=80348 WHERE a=6243;\nUPDATE t2 SET b=3597 WHERE a=6244;\nUPDATE t2 SET b=30565 WHERE a=6245;\nUPDATE t2 SET b=41410 WHERE a=6246;\nUPDATE t2 SET b=95825 WHERE a=6247;\nUPDATE t2 SET b=99170 WHERE a=6248;\nUPDATE t2 SET b=47790 WHERE a=6249;\nUPDATE t2 SET b=25580 WHERE a=6250;\nUPDATE t2 SET b=18618 WHERE a=6251;\nUPDATE t2 SET b=156 WHERE a=6252;\nUPDATE t2 SET b=10028 WHERE a=6253;\nUPDATE t2 SET b=23177 WHERE a=6254;\nUPDATE t2 SET b=12557 WHERE a=6255;\nUPDATE t2 SET b=71941 WHERE a=6256;\nUPDATE t2 SET b=39905 WHERE a=6257;\nUPDATE t2 SET b=97710 WHERE a=6258;\nUPDATE t2 SET b=66797 WHERE a=6259;\nUPDATE t2 SET b=62243 WHERE a=6260;\nUPDATE t2 SET b=76339 WHERE a=6261;\nUPDATE t2 SET b=7928 WHERE a=6262;\nUPDATE t2 SET b=80971 WHERE a=6263;\nUPDATE t2 SET b=31555 WHERE a=6264;\nUPDATE t2 SET b=47388 WHERE a=6265;\nUPDATE t2 SET b=20286 WHERE a=6266;\nUPDATE t2 SET b=20585 WHERE a=6267;\nUPDATE t2 SET b=91266 WHERE a=6268;\nUPDATE t2 SET b=12605 WHERE a=6269;\nUPDATE t2 SET b=3318 WHERE a=6270;\nUPDATE t2 SET b=69166 WHERE a=6271;\nUPDATE t2 SET b=11072 WHERE a=6272;\nUPDATE t2 SET b=18331 WHERE a=6273;\nUPDATE t2 SET b=46249 WHERE a=6274;\nUPDATE t2 SET b=82174 WHERE a=6275;\nUPDATE t2 SET b=31058 WHERE a=6276;\nUPDATE t2 SET b=67157 WHERE a=6277;\nUPDATE t2 SET b=84326 WHERE a=6278;\nUPDATE t2 SET b=61339 WHERE a=6279;\nUPDATE t2 SET b=53539 WHERE a=6280;\nUPDATE t2 SET b=17264 WHERE a=6281;\nUPDATE t2 SET b=33677 WHERE a=6282;\nUPDATE t2 SET b=48966 WHERE a=6283;\nUPDATE t2 SET b=98545 WHERE a=6284;\nUPDATE t2 SET b=85749 WHERE a=6285;\nUPDATE t2 SET b=74689 WHERE a=6286;\nUPDATE t2 SET b=75538 WHERE a=6287;\nUPDATE t2 SET b=38074 WHERE a=6288;\nUPDATE t2 SET b=77956 WHERE a=6289;\nUPDATE t2 SET b=50222 WHERE a=6290;\nUPDATE t2 SET b=48902 WHERE a=6291;\nUPDATE t2 SET b=51074 WHERE a=6292;\nUPDATE t2 SET b=37407 WHERE a=6293;\nUPDATE t2 SET b=13060 WHERE a=6294;\nUPDATE t2 SET b=37511 WHERE a=6295;\nUPDATE t2 SET b=43415 WHERE a=6296;\nUPDATE t2 SET b=63497 WHERE a=6297;\nUPDATE t2 SET b=90091 WHERE a=6298;\nUPDATE t2 SET b=74566 WHERE a=6299;\nUPDATE t2 SET b=93764 WHERE a=6300;\nUPDATE t2 SET b=48711 WHERE a=6301;\nUPDATE t2 SET b=7 WHERE a=6302;\nUPDATE t2 SET b=56239 WHERE a=6303;\nUPDATE t2 SET b=91019 WHERE a=6304;\nUPDATE t2 SET b=57403 WHERE a=6305;\nUPDATE t2 SET b=82785 WHERE a=6306;\nUPDATE t2 SET b=25636 WHERE a=6307;\nUPDATE t2 SET b=61080 WHERE a=6308;\nUPDATE t2 SET b=60527 WHERE a=6309;\nUPDATE t2 SET b=22326 WHERE a=6310;\nUPDATE t2 SET b=52390 WHERE a=6311;\nUPDATE t2 SET b=2927 WHERE a=6312;\nUPDATE t2 SET b=99754 WHERE a=6313;\nUPDATE t2 SET b=6421 WHERE a=6314;\nUPDATE t2 SET b=17689 WHERE a=6315;\nUPDATE t2 SET b=27198 WHERE a=6316;\nUPDATE t2 SET b=73794 WHERE a=6317;\nUPDATE t2 SET b=40455 WHERE a=6318;\nUPDATE t2 SET b=11844 WHERE a=6319;\nUPDATE t2 SET b=13662 WHERE a=6320;\nUPDATE t2 SET b=39155 WHERE a=6321;\nUPDATE t2 SET b=71625 WHERE a=6322;\nUPDATE t2 SET b=33711 WHERE a=6323;\nUPDATE t2 SET b=85275 WHERE a=6324;\nUPDATE t2 SET b=42306 WHERE a=6325;\nUPDATE t2 SET b=23403 WHERE a=6326;\nUPDATE t2 SET b=8036 WHERE a=6327;\nUPDATE t2 SET b=3220 WHERE a=6328;\nUPDATE t2 SET b=97476 WHERE a=6329;\nUPDATE t2 SET b=51362 WHERE a=6330;\nUPDATE t2 SET b=70523 WHERE a=6331;\nUPDATE t2 SET b=78425 WHERE a=6332;\nUPDATE t2 SET b=36759 WHERE a=6333;\nUPDATE t2 SET b=80149 WHERE a=6334;\nUPDATE t2 SET b=98260 WHERE a=6335;\nUPDATE t2 SET b=95629 WHERE a=6336;\nUPDATE t2 SET b=52537 WHERE a=6337;\nUPDATE t2 SET b=66037 WHERE a=6338;\nUPDATE t2 SET b=55692 WHERE a=6339;\nUPDATE t2 SET b=1724 WHERE a=6340;\nUPDATE t2 SET b=17779 WHERE a=6341;\nUPDATE t2 SET b=97797 WHERE a=6342;\nUPDATE t2 SET b=13302 WHERE a=6343;\nUPDATE t2 SET b=76519 WHERE a=6344;\nUPDATE t2 SET b=43347 WHERE a=6345;\nUPDATE t2 SET b=2386 WHERE a=6346;\nUPDATE t2 SET b=159 WHERE a=6347;\nUPDATE t2 SET b=22388 WHERE a=6348;\nUPDATE t2 SET b=85561 WHERE a=6349;\nUPDATE t2 SET b=79617 WHERE a=6350;\nUPDATE t2 SET b=20329 WHERE a=6351;\nUPDATE t2 SET b=24386 WHERE a=6352;\nUPDATE t2 SET b=84287 WHERE a=6353;\nUPDATE t2 SET b=92799 WHERE a=6354;\nUPDATE t2 SET b=95169 WHERE a=6355;\nUPDATE t2 SET b=81240 WHERE a=6356;\nUPDATE t2 SET b=7188 WHERE a=6357;\nUPDATE t2 SET b=3544 WHERE a=6358;\nUPDATE t2 SET b=78374 WHERE a=6359;\nUPDATE t2 SET b=87782 WHERE a=6360;\nUPDATE t2 SET b=69044 WHERE a=6361;\nUPDATE t2 SET b=85068 WHERE a=6362;\nUPDATE t2 SET b=51997 WHERE a=6363;\nUPDATE t2 SET b=29015 WHERE a=6364;\nUPDATE t2 SET b=77139 WHERE a=6365;\nUPDATE t2 SET b=39708 WHERE a=6366;\nUPDATE t2 SET b=95736 WHERE a=6367;\nUPDATE t2 SET b=52624 WHERE a=6368;\nUPDATE t2 SET b=28121 WHERE a=6369;\nUPDATE t2 SET b=11694 WHERE a=6370;\nUPDATE t2 SET b=69610 WHERE a=6371;\nUPDATE t2 SET b=95334 WHERE a=6372;\nUPDATE t2 SET b=29084 WHERE a=6373;\nUPDATE t2 SET b=91716 WHERE a=6374;\nUPDATE t2 SET b=17757 WHERE a=6375;\nUPDATE t2 SET b=93429 WHERE a=6376;\nUPDATE t2 SET b=12368 WHERE a=6377;\nUPDATE t2 SET b=8956 WHERE a=6378;\nUPDATE t2 SET b=15223 WHERE a=6379;\nUPDATE t2 SET b=44078 WHERE a=6380;\nUPDATE t2 SET b=10277 WHERE a=6381;\nUPDATE t2 SET b=85380 WHERE a=6382;\nUPDATE t2 SET b=55843 WHERE a=6383;\nUPDATE t2 SET b=75765 WHERE a=6384;\nUPDATE t2 SET b=27704 WHERE a=6385;\nUPDATE t2 SET b=50144 WHERE a=6386;\nUPDATE t2 SET b=64912 WHERE a=6387;\nUPDATE t2 SET b=51113 WHERE a=6388;\nUPDATE t2 SET b=68340 WHERE a=6389;\nUPDATE t2 SET b=95798 WHERE a=6390;\nUPDATE t2 SET b=39644 WHERE a=6391;\nUPDATE t2 SET b=6586 WHERE a=6392;\nUPDATE t2 SET b=94539 WHERE a=6393;\nUPDATE t2 SET b=21607 WHERE a=6394;\nUPDATE t2 SET b=19083 WHERE a=6395;\nUPDATE t2 SET b=45641 WHERE a=6396;\nUPDATE t2 SET b=53663 WHERE a=6397;\nUPDATE t2 SET b=9443 WHERE a=6398;\nUPDATE t2 SET b=33530 WHERE a=6399;\nUPDATE t2 SET b=49486 WHERE a=6400;\nUPDATE t2 SET b=67559 WHERE a=6401;\nUPDATE t2 SET b=76982 WHERE a=6402;\nUPDATE t2 SET b=17370 WHERE a=6403;\nUPDATE t2 SET b=36932 WHERE a=6404;\nUPDATE t2 SET b=27737 WHERE a=6405;\nUPDATE t2 SET b=72397 WHERE a=6406;\nUPDATE t2 SET b=49933 WHERE a=6407;\nUPDATE t2 SET b=28988 WHERE a=6408;\nUPDATE t2 SET b=24074 WHERE a=6409;\nUPDATE t2 SET b=94526 WHERE a=6410;\nUPDATE t2 SET b=28416 WHERE a=6411;\nUPDATE t2 SET b=48959 WHERE a=6412;\nUPDATE t2 SET b=55233 WHERE a=6413;\nUPDATE t2 SET b=93673 WHERE a=6414;\nUPDATE t2 SET b=84465 WHERE a=6415;\nUPDATE t2 SET b=36734 WHERE a=6416;\nUPDATE t2 SET b=27450 WHERE a=6417;\nUPDATE t2 SET b=76938 WHERE a=6418;\nUPDATE t2 SET b=92785 WHERE a=6419;\nUPDATE t2 SET b=37819 WHERE a=6420;\nUPDATE t2 SET b=17583 WHERE a=6421;\nUPDATE t2 SET b=33606 WHERE a=6422;\nUPDATE t2 SET b=19399 WHERE a=6423;\nUPDATE t2 SET b=2168 WHERE a=6424;\nUPDATE t2 SET b=36856 WHERE a=6425;\nUPDATE t2 SET b=25841 WHERE a=6426;\nUPDATE t2 SET b=74933 WHERE a=6427;\nUPDATE t2 SET b=17299 WHERE a=6428;\nUPDATE t2 SET b=88633 WHERE a=6429;\nUPDATE t2 SET b=27749 WHERE a=6430;\nUPDATE t2 SET b=25847 WHERE a=6431;\nUPDATE t2 SET b=20666 WHERE a=6432;\nUPDATE t2 SET b=37665 WHERE a=6433;\nUPDATE t2 SET b=58594 WHERE a=6434;\nUPDATE t2 SET b=95307 WHERE a=6435;\nUPDATE t2 SET b=51825 WHERE a=6436;\nUPDATE t2 SET b=26536 WHERE a=6437;\nUPDATE t2 SET b=14539 WHERE a=6438;\nUPDATE t2 SET b=3508 WHERE a=6439;\nUPDATE t2 SET b=62321 WHERE a=6440;\nUPDATE t2 SET b=66119 WHERE a=6441;\nUPDATE t2 SET b=97 WHERE a=6442;\nUPDATE t2 SET b=77539 WHERE a=6443;\nUPDATE t2 SET b=13291 WHERE a=6444;\nUPDATE t2 SET b=39195 WHERE a=6445;\nUPDATE t2 SET b=21767 WHERE a=6446;\nUPDATE t2 SET b=73152 WHERE a=6447;\nUPDATE t2 SET b=40138 WHERE a=6448;\nUPDATE t2 SET b=87988 WHERE a=6449;\nUPDATE t2 SET b=52641 WHERE a=6450;\nUPDATE t2 SET b=67307 WHERE a=6451;\nUPDATE t2 SET b=79070 WHERE a=6452;\nUPDATE t2 SET b=86198 WHERE a=6453;\nUPDATE t2 SET b=85940 WHERE a=6454;\nUPDATE t2 SET b=65067 WHERE a=6455;\nUPDATE t2 SET b=76541 WHERE a=6456;\nUPDATE t2 SET b=76322 WHERE a=6457;\nUPDATE t2 SET b=2298 WHERE a=6458;\nUPDATE t2 SET b=65899 WHERE a=6459;\nUPDATE t2 SET b=72008 WHERE a=6460;\nUPDATE t2 SET b=64800 WHERE a=6461;\nUPDATE t2 SET b=40093 WHERE a=6462;\nUPDATE t2 SET b=16191 WHERE a=6463;\nUPDATE t2 SET b=25040 WHERE a=6464;\nUPDATE t2 SET b=92463 WHERE a=6465;\nUPDATE t2 SET b=61802 WHERE a=6466;\nUPDATE t2 SET b=57756 WHERE a=6467;\nUPDATE t2 SET b=15267 WHERE a=6468;\nUPDATE t2 SET b=26284 WHERE a=6469;\nUPDATE t2 SET b=28865 WHERE a=6470;\nUPDATE t2 SET b=19264 WHERE a=6471;\nUPDATE t2 SET b=10434 WHERE a=6472;\nUPDATE t2 SET b=7865 WHERE a=6473;\nUPDATE t2 SET b=496 WHERE a=6474;\nUPDATE t2 SET b=84507 WHERE a=6475;\nUPDATE t2 SET b=12745 WHERE a=6476;\nUPDATE t2 SET b=98045 WHERE a=6477;\nUPDATE t2 SET b=57812 WHERE a=6478;\nUPDATE t2 SET b=28547 WHERE a=6479;\nUPDATE t2 SET b=93968 WHERE a=6480;\nUPDATE t2 SET b=12097 WHERE a=6481;\nUPDATE t2 SET b=17402 WHERE a=6482;\nUPDATE t2 SET b=22856 WHERE a=6483;\nUPDATE t2 SET b=32026 WHERE a=6484;\nUPDATE t2 SET b=94362 WHERE a=6485;\nUPDATE t2 SET b=20659 WHERE a=6486;\nUPDATE t2 SET b=34180 WHERE a=6487;\nUPDATE t2 SET b=32004 WHERE a=6488;\nUPDATE t2 SET b=55721 WHERE a=6489;\nUPDATE t2 SET b=37339 WHERE a=6490;\nUPDATE t2 SET b=59082 WHERE a=6491;\nUPDATE t2 SET b=21000 WHERE a=6492;\nUPDATE t2 SET b=92083 WHERE a=6493;\nUPDATE t2 SET b=91825 WHERE a=6494;\nUPDATE t2 SET b=97977 WHERE a=6495;\nUPDATE t2 SET b=70016 WHERE a=6496;\nUPDATE t2 SET b=41189 WHERE a=6497;\nUPDATE t2 SET b=2563 WHERE a=6498;\nUPDATE t2 SET b=89223 WHERE a=6499;\nUPDATE t2 SET b=2325 WHERE a=6500;\nUPDATE t2 SET b=10041 WHERE a=6501;\nUPDATE t2 SET b=37877 WHERE a=6502;\nUPDATE t2 SET b=33368 WHERE a=6503;\nUPDATE t2 SET b=61969 WHERE a=6504;\nUPDATE t2 SET b=89884 WHERE a=6505;\nUPDATE t2 SET b=69323 WHERE a=6506;\nUPDATE t2 SET b=31860 WHERE a=6507;\nUPDATE t2 SET b=3396 WHERE a=6508;\nUPDATE t2 SET b=58710 WHERE a=6509;\nUPDATE t2 SET b=68021 WHERE a=6510;\nUPDATE t2 SET b=56101 WHERE a=6511;\nUPDATE t2 SET b=52717 WHERE a=6512;\nUPDATE t2 SET b=36117 WHERE a=6513;\nUPDATE t2 SET b=23228 WHERE a=6514;\nUPDATE t2 SET b=31581 WHERE a=6515;\nUPDATE t2 SET b=71657 WHERE a=6516;\nUPDATE t2 SET b=31590 WHERE a=6517;\nUPDATE t2 SET b=46270 WHERE a=6518;\nUPDATE t2 SET b=97381 WHERE a=6519;\nUPDATE t2 SET b=92681 WHERE a=6520;\nUPDATE t2 SET b=92738 WHERE a=6521;\nUPDATE t2 SET b=16293 WHERE a=6522;\nUPDATE t2 SET b=89538 WHERE a=6523;\nUPDATE t2 SET b=53186 WHERE a=6524;\nUPDATE t2 SET b=7875 WHERE a=6525;\nUPDATE t2 SET b=57146 WHERE a=6526;\nUPDATE t2 SET b=17824 WHERE a=6527;\nUPDATE t2 SET b=85686 WHERE a=6528;\nUPDATE t2 SET b=34592 WHERE a=6529;\nUPDATE t2 SET b=96786 WHERE a=6530;\nUPDATE t2 SET b=65682 WHERE a=6531;\nUPDATE t2 SET b=52371 WHERE a=6532;\nUPDATE t2 SET b=38649 WHERE a=6533;\nUPDATE t2 SET b=78370 WHERE a=6534;\nUPDATE t2 SET b=87291 WHERE a=6535;\nUPDATE t2 SET b=51920 WHERE a=6536;\nUPDATE t2 SET b=31570 WHERE a=6537;\nUPDATE t2 SET b=84240 WHERE a=6538;\nUPDATE t2 SET b=73160 WHERE a=6539;\nUPDATE t2 SET b=56850 WHERE a=6540;\nUPDATE t2 SET b=64076 WHERE a=6541;\nUPDATE t2 SET b=48558 WHERE a=6542;\nUPDATE t2 SET b=42974 WHERE a=6543;\nUPDATE t2 SET b=2980 WHERE a=6544;\nUPDATE t2 SET b=96809 WHERE a=6545;\nUPDATE t2 SET b=84846 WHERE a=6546;\nUPDATE t2 SET b=18923 WHERE a=6547;\nUPDATE t2 SET b=52467 WHERE a=6548;\nUPDATE t2 SET b=7198 WHERE a=6549;\nUPDATE t2 SET b=71308 WHERE a=6550;\nUPDATE t2 SET b=73577 WHERE a=6551;\nUPDATE t2 SET b=96434 WHERE a=6552;\nUPDATE t2 SET b=54848 WHERE a=6553;\nUPDATE t2 SET b=5367 WHERE a=6554;\nUPDATE t2 SET b=47949 WHERE a=6555;\nUPDATE t2 SET b=21913 WHERE a=6556;\nUPDATE t2 SET b=95675 WHERE a=6557;\nUPDATE t2 SET b=23161 WHERE a=6558;\nUPDATE t2 SET b=94671 WHERE a=6559;\nUPDATE t2 SET b=53717 WHERE a=6560;\nUPDATE t2 SET b=96165 WHERE a=6561;\nUPDATE t2 SET b=98821 WHERE a=6562;\nUPDATE t2 SET b=29763 WHERE a=6563;\nUPDATE t2 SET b=19452 WHERE a=6564;\nUPDATE t2 SET b=54521 WHERE a=6565;\nUPDATE t2 SET b=34950 WHERE a=6566;\nUPDATE t2 SET b=18075 WHERE a=6567;\nUPDATE t2 SET b=84366 WHERE a=6568;\nUPDATE t2 SET b=88795 WHERE a=6569;\nUPDATE t2 SET b=9313 WHERE a=6570;\nUPDATE t2 SET b=14024 WHERE a=6571;\nUPDATE t2 SET b=23594 WHERE a=6572;\nUPDATE t2 SET b=30544 WHERE a=6573;\nUPDATE t2 SET b=39508 WHERE a=6574;\nUPDATE t2 SET b=23614 WHERE a=6575;\nUPDATE t2 SET b=61544 WHERE a=6576;\nUPDATE t2 SET b=4649 WHERE a=6577;\nUPDATE t2 SET b=92175 WHERE a=6578;\nUPDATE t2 SET b=79990 WHERE a=6579;\nUPDATE t2 SET b=7553 WHERE a=6580;\nUPDATE t2 SET b=8972 WHERE a=6581;\nUPDATE t2 SET b=63971 WHERE a=6582;\nUPDATE t2 SET b=91791 WHERE a=6583;\nUPDATE t2 SET b=55231 WHERE a=6584;\nUPDATE t2 SET b=74639 WHERE a=6585;\nUPDATE t2 SET b=9045 WHERE a=6586;\nUPDATE t2 SET b=3357 WHERE a=6587;\nUPDATE t2 SET b=34520 WHERE a=6588;\nUPDATE t2 SET b=99230 WHERE a=6589;\nUPDATE t2 SET b=11400 WHERE a=6590;\nUPDATE t2 SET b=27467 WHERE a=6591;\nUPDATE t2 SET b=12154 WHERE a=6592;\nUPDATE t2 SET b=5765 WHERE a=6593;\nUPDATE t2 SET b=53453 WHERE a=6594;\nUPDATE t2 SET b=78963 WHERE a=6595;\nUPDATE t2 SET b=90652 WHERE a=6596;\nUPDATE t2 SET b=48168 WHERE a=6597;\nUPDATE t2 SET b=24898 WHERE a=6598;\nUPDATE t2 SET b=29305 WHERE a=6599;\nUPDATE t2 SET b=56164 WHERE a=6600;\nUPDATE t2 SET b=41776 WHERE a=6601;\nUPDATE t2 SET b=98200 WHERE a=6602;\nUPDATE t2 SET b=42578 WHERE a=6603;\nUPDATE t2 SET b=72533 WHERE a=6604;\nUPDATE t2 SET b=9466 WHERE a=6605;\nUPDATE t2 SET b=44753 WHERE a=6606;\nUPDATE t2 SET b=69135 WHERE a=6607;\nUPDATE t2 SET b=4505 WHERE a=6608;\nUPDATE t2 SET b=33490 WHERE a=6609;\nUPDATE t2 SET b=14329 WHERE a=6610;\nUPDATE t2 SET b=95419 WHERE a=6611;\nUPDATE t2 SET b=56355 WHERE a=6612;\nUPDATE t2 SET b=11673 WHERE a=6613;\nUPDATE t2 SET b=26267 WHERE a=6614;\nUPDATE t2 SET b=48860 WHERE a=6615;\nUPDATE t2 SET b=40570 WHERE a=6616;\nUPDATE t2 SET b=42127 WHERE a=6617;\nUPDATE t2 SET b=17155 WHERE a=6618;\nUPDATE t2 SET b=91647 WHERE a=6619;\nUPDATE t2 SET b=2245 WHERE a=6620;\nUPDATE t2 SET b=75551 WHERE a=6621;\nUPDATE t2 SET b=16893 WHERE a=6622;\nUPDATE t2 SET b=48973 WHERE a=6623;\nUPDATE t2 SET b=45628 WHERE a=6624;\nUPDATE t2 SET b=81570 WHERE a=6625;\nUPDATE t2 SET b=72515 WHERE a=6626;\nUPDATE t2 SET b=84315 WHERE a=6627;\nUPDATE t2 SET b=51236 WHERE a=6628;\nUPDATE t2 SET b=85908 WHERE a=6629;\nUPDATE t2 SET b=27349 WHERE a=6630;\nUPDATE t2 SET b=87226 WHERE a=6631;\nUPDATE t2 SET b=55536 WHERE a=6632;\nUPDATE t2 SET b=38019 WHERE a=6633;\nUPDATE t2 SET b=93406 WHERE a=6634;\nUPDATE t2 SET b=45901 WHERE a=6635;\nUPDATE t2 SET b=70048 WHERE a=6636;\nUPDATE t2 SET b=60079 WHERE a=6637;\nUPDATE t2 SET b=49715 WHERE a=6638;\nUPDATE t2 SET b=20359 WHERE a=6639;\nUPDATE t2 SET b=78554 WHERE a=6640;\nUPDATE t2 SET b=80028 WHERE a=6641;\nUPDATE t2 SET b=84811 WHERE a=6642;\nUPDATE t2 SET b=16718 WHERE a=6643;\nUPDATE t2 SET b=23178 WHERE a=6644;\nUPDATE t2 SET b=77411 WHERE a=6645;\nUPDATE t2 SET b=31724 WHERE a=6646;\nUPDATE t2 SET b=81665 WHERE a=6647;\nUPDATE t2 SET b=75440 WHERE a=6648;\nUPDATE t2 SET b=40299 WHERE a=6649;\nUPDATE t2 SET b=19223 WHERE a=6650;\nUPDATE t2 SET b=26800 WHERE a=6651;\nUPDATE t2 SET b=10490 WHERE a=6652;\nUPDATE t2 SET b=75223 WHERE a=6653;\nUPDATE t2 SET b=86720 WHERE a=6654;\nUPDATE t2 SET b=85467 WHERE a=6655;\nUPDATE t2 SET b=32553 WHERE a=6656;\nUPDATE t2 SET b=70131 WHERE a=6657;\nUPDATE t2 SET b=59848 WHERE a=6658;\nUPDATE t2 SET b=43299 WHERE a=6659;\nUPDATE t2 SET b=75771 WHERE a=6660;\nUPDATE t2 SET b=54780 WHERE a=6661;\nUPDATE t2 SET b=80500 WHERE a=6662;\nUPDATE t2 SET b=29143 WHERE a=6663;\nUPDATE t2 SET b=59057 WHERE a=6664;\nUPDATE t2 SET b=49705 WHERE a=6665;\nUPDATE t2 SET b=23045 WHERE a=6666;\nUPDATE t2 SET b=85408 WHERE a=6667;\nUPDATE t2 SET b=94635 WHERE a=6668;\nUPDATE t2 SET b=27403 WHERE a=6669;\nUPDATE t2 SET b=65019 WHERE a=6670;\nUPDATE t2 SET b=35721 WHERE a=6671;\nUPDATE t2 SET b=65174 WHERE a=6672;\nUPDATE t2 SET b=34770 WHERE a=6673;\nUPDATE t2 SET b=63849 WHERE a=6674;\nUPDATE t2 SET b=79948 WHERE a=6675;\nUPDATE t2 SET b=60418 WHERE a=6676;\nUPDATE t2 SET b=88799 WHERE a=6677;\nUPDATE t2 SET b=96176 WHERE a=6678;\nUPDATE t2 SET b=7160 WHERE a=6679;\nUPDATE t2 SET b=67069 WHERE a=6680;\nUPDATE t2 SET b=7970 WHERE a=6681;\nUPDATE t2 SET b=27296 WHERE a=6682;\nUPDATE t2 SET b=17183 WHERE a=6683;\nUPDATE t2 SET b=56338 WHERE a=6684;\nUPDATE t2 SET b=18523 WHERE a=6685;\nUPDATE t2 SET b=13180 WHERE a=6686;\nUPDATE t2 SET b=46298 WHERE a=6687;\nUPDATE t2 SET b=63305 WHERE a=6688;\nUPDATE t2 SET b=69151 WHERE a=6689;\nUPDATE t2 SET b=1195 WHERE a=6690;\nUPDATE t2 SET b=56207 WHERE a=6691;\nUPDATE t2 SET b=1383 WHERE a=6692;\nUPDATE t2 SET b=52046 WHERE a=6693;\nUPDATE t2 SET b=16719 WHERE a=6694;\nUPDATE t2 SET b=54094 WHERE a=6695;\nUPDATE t2 SET b=34696 WHERE a=6696;\nUPDATE t2 SET b=88609 WHERE a=6697;\nUPDATE t2 SET b=91210 WHERE a=6698;\nUPDATE t2 SET b=46901 WHERE a=6699;\nUPDATE t2 SET b=97315 WHERE a=6700;\nUPDATE t2 SET b=35659 WHERE a=6701;\nUPDATE t2 SET b=46831 WHERE a=6702;\nUPDATE t2 SET b=36901 WHERE a=6703;\nUPDATE t2 SET b=28551 WHERE a=6704;\nUPDATE t2 SET b=95956 WHERE a=6705;\nUPDATE t2 SET b=41634 WHERE a=6706;\nUPDATE t2 SET b=83616 WHERE a=6707;\nUPDATE t2 SET b=38001 WHERE a=6708;\nUPDATE t2 SET b=20467 WHERE a=6709;\nUPDATE t2 SET b=52239 WHERE a=6710;\nUPDATE t2 SET b=60177 WHERE a=6711;\nUPDATE t2 SET b=88328 WHERE a=6712;\nUPDATE t2 SET b=81887 WHERE a=6713;\nUPDATE t2 SET b=61670 WHERE a=6714;\nUPDATE t2 SET b=64910 WHERE a=6715;\nUPDATE t2 SET b=76635 WHERE a=6716;\nUPDATE t2 SET b=22264 WHERE a=6717;\nUPDATE t2 SET b=87007 WHERE a=6718;\nUPDATE t2 SET b=14803 WHERE a=6719;\nUPDATE t2 SET b=62755 WHERE a=6720;\nUPDATE t2 SET b=31376 WHERE a=6721;\nUPDATE t2 SET b=42250 WHERE a=6722;\nUPDATE t2 SET b=91126 WHERE a=6723;\nUPDATE t2 SET b=57698 WHERE a=6724;\nUPDATE t2 SET b=57643 WHERE a=6725;\nUPDATE t2 SET b=50329 WHERE a=6726;\nUPDATE t2 SET b=97781 WHERE a=6727;\nUPDATE t2 SET b=73723 WHERE a=6728;\nUPDATE t2 SET b=51404 WHERE a=6729;\nUPDATE t2 SET b=78773 WHERE a=6730;\nUPDATE t2 SET b=91542 WHERE a=6731;\nUPDATE t2 SET b=51119 WHERE a=6732;\nUPDATE t2 SET b=59285 WHERE a=6733;\nUPDATE t2 SET b=23073 WHERE a=6734;\nUPDATE t2 SET b=40076 WHERE a=6735;\nUPDATE t2 SET b=71610 WHERE a=6736;\nUPDATE t2 SET b=70810 WHERE a=6737;\nUPDATE t2 SET b=55505 WHERE a=6738;\nUPDATE t2 SET b=74238 WHERE a=6739;\nUPDATE t2 SET b=59328 WHERE a=6740;\nUPDATE t2 SET b=89743 WHERE a=6741;\nUPDATE t2 SET b=29796 WHERE a=6742;\nUPDATE t2 SET b=60473 WHERE a=6743;\nUPDATE t2 SET b=59658 WHERE a=6744;\nUPDATE t2 SET b=59575 WHERE a=6745;\nUPDATE t2 SET b=73999 WHERE a=6746;\nUPDATE t2 SET b=35243 WHERE a=6747;\nUPDATE t2 SET b=11142 WHERE a=6748;\nUPDATE t2 SET b=34081 WHERE a=6749;\nUPDATE t2 SET b=4802 WHERE a=6750;\nUPDATE t2 SET b=24509 WHERE a=6751;\nUPDATE t2 SET b=13494 WHERE a=6752;\nUPDATE t2 SET b=67696 WHERE a=6753;\nUPDATE t2 SET b=12147 WHERE a=6754;\nUPDATE t2 SET b=85713 WHERE a=6755;\nUPDATE t2 SET b=13848 WHERE a=6756;\nUPDATE t2 SET b=82310 WHERE a=6757;\nUPDATE t2 SET b=10304 WHERE a=6758;\nUPDATE t2 SET b=76098 WHERE a=6759;\nUPDATE t2 SET b=3689 WHERE a=6760;\nUPDATE t2 SET b=59771 WHERE a=6761;\nUPDATE t2 SET b=39129 WHERE a=6762;\nUPDATE t2 SET b=37284 WHERE a=6763;\nUPDATE t2 SET b=83630 WHERE a=6764;\nUPDATE t2 SET b=76605 WHERE a=6765;\nUPDATE t2 SET b=5758 WHERE a=6766;\nUPDATE t2 SET b=3521 WHERE a=6767;\nUPDATE t2 SET b=24754 WHERE a=6768;\nUPDATE t2 SET b=81242 WHERE a=6769;\nUPDATE t2 SET b=19597 WHERE a=6770;\nUPDATE t2 SET b=28408 WHERE a=6771;\nUPDATE t2 SET b=40778 WHERE a=6772;\nUPDATE t2 SET b=72220 WHERE a=6773;\nUPDATE t2 SET b=55862 WHERE a=6774;\nUPDATE t2 SET b=89707 WHERE a=6775;\nUPDATE t2 SET b=2895 WHERE a=6776;\nUPDATE t2 SET b=38924 WHERE a=6777;\nUPDATE t2 SET b=88660 WHERE a=6778;\nUPDATE t2 SET b=73995 WHERE a=6779;\nUPDATE t2 SET b=16164 WHERE a=6780;\nUPDATE t2 SET b=25830 WHERE a=6781;\nUPDATE t2 SET b=70313 WHERE a=6782;\nUPDATE t2 SET b=82360 WHERE a=6783;\nUPDATE t2 SET b=3409 WHERE a=6784;\nUPDATE t2 SET b=86673 WHERE a=6785;\nUPDATE t2 SET b=52043 WHERE a=6786;\nUPDATE t2 SET b=87544 WHERE a=6787;\nUPDATE t2 SET b=98088 WHERE a=6788;\nUPDATE t2 SET b=83321 WHERE a=6789;\nUPDATE t2 SET b=53703 WHERE a=6790;\nUPDATE t2 SET b=78473 WHERE a=6791;\nUPDATE t2 SET b=41327 WHERE a=6792;\nUPDATE t2 SET b=60435 WHERE a=6793;\nUPDATE t2 SET b=49798 WHERE a=6794;\nUPDATE t2 SET b=64750 WHERE a=6795;\nUPDATE t2 SET b=80043 WHERE a=6796;\nUPDATE t2 SET b=18553 WHERE a=6797;\nUPDATE t2 SET b=84866 WHERE a=6798;\nUPDATE t2 SET b=8655 WHERE a=6799;\nUPDATE t2 SET b=79720 WHERE a=6800;\nUPDATE t2 SET b=2257 WHERE a=6801;\nUPDATE t2 SET b=48553 WHERE a=6802;\nUPDATE t2 SET b=26685 WHERE a=6803;\nUPDATE t2 SET b=9980 WHERE a=6804;\nUPDATE t2 SET b=31483 WHERE a=6805;\nUPDATE t2 SET b=37534 WHERE a=6806;\nUPDATE t2 SET b=46001 WHERE a=6807;\nUPDATE t2 SET b=25724 WHERE a=6808;\nUPDATE t2 SET b=68165 WHERE a=6809;\nUPDATE t2 SET b=62719 WHERE a=6810;\nUPDATE t2 SET b=52563 WHERE a=6811;\nUPDATE t2 SET b=92104 WHERE a=6812;\nUPDATE t2 SET b=25243 WHERE a=6813;\nUPDATE t2 SET b=4940 WHERE a=6814;\nUPDATE t2 SET b=95132 WHERE a=6815;\nUPDATE t2 SET b=18992 WHERE a=6816;\nUPDATE t2 SET b=24135 WHERE a=6817;\nUPDATE t2 SET b=40702 WHERE a=6818;\nUPDATE t2 SET b=42468 WHERE a=6819;\nUPDATE t2 SET b=36133 WHERE a=6820;\nUPDATE t2 SET b=93529 WHERE a=6821;\nUPDATE t2 SET b=16712 WHERE a=6822;\nUPDATE t2 SET b=17891 WHERE a=6823;\nUPDATE t2 SET b=72698 WHERE a=6824;\nUPDATE t2 SET b=9710 WHERE a=6825;\nUPDATE t2 SET b=36515 WHERE a=6826;\nUPDATE t2 SET b=381 WHERE a=6827;\nUPDATE t2 SET b=43749 WHERE a=6828;\nUPDATE t2 SET b=81619 WHERE a=6829;\nUPDATE t2 SET b=50540 WHERE a=6830;\nUPDATE t2 SET b=40182 WHERE a=6831;\nUPDATE t2 SET b=10838 WHERE a=6832;\nUPDATE t2 SET b=97704 WHERE a=6833;\nUPDATE t2 SET b=82731 WHERE a=6834;\nUPDATE t2 SET b=26078 WHERE a=6835;\nUPDATE t2 SET b=71686 WHERE a=6836;\nUPDATE t2 SET b=17656 WHERE a=6837;\nUPDATE t2 SET b=49641 WHERE a=6838;\nUPDATE t2 SET b=79782 WHERE a=6839;\nUPDATE t2 SET b=99054 WHERE a=6840;\nUPDATE t2 SET b=22543 WHERE a=6841;\nUPDATE t2 SET b=12546 WHERE a=6842;\nUPDATE t2 SET b=89373 WHERE a=6843;\nUPDATE t2 SET b=86360 WHERE a=6844;\nUPDATE t2 SET b=30321 WHERE a=6845;\nUPDATE t2 SET b=50669 WHERE a=6846;\nUPDATE t2 SET b=32582 WHERE a=6847;\nUPDATE t2 SET b=60287 WHERE a=6848;\nUPDATE t2 SET b=49112 WHERE a=6849;\nUPDATE t2 SET b=51490 WHERE a=6850;\nUPDATE t2 SET b=17865 WHERE a=6851;\nUPDATE t2 SET b=40349 WHERE a=6852;\nUPDATE t2 SET b=13528 WHERE a=6853;\nUPDATE t2 SET b=80547 WHERE a=6854;\nUPDATE t2 SET b=73352 WHERE a=6855;\nUPDATE t2 SET b=45066 WHERE a=6856;\nUPDATE t2 SET b=7211 WHERE a=6857;\nUPDATE t2 SET b=53871 WHERE a=6858;\nUPDATE t2 SET b=42528 WHERE a=6859;\nUPDATE t2 SET b=10128 WHERE a=6860;\nUPDATE t2 SET b=71562 WHERE a=6861;\nUPDATE t2 SET b=42865 WHERE a=6862;\nUPDATE t2 SET b=99523 WHERE a=6863;\nUPDATE t2 SET b=17641 WHERE a=6864;\nUPDATE t2 SET b=71769 WHERE a=6865;\nUPDATE t2 SET b=14421 WHERE a=6866;\nUPDATE t2 SET b=43078 WHERE a=6867;\nUPDATE t2 SET b=71552 WHERE a=6868;\nUPDATE t2 SET b=2576 WHERE a=6869;\nUPDATE t2 SET b=12868 WHERE a=6870;\nUPDATE t2 SET b=58050 WHERE a=6871;\nUPDATE t2 SET b=71341 WHERE a=6872;\nUPDATE t2 SET b=92889 WHERE a=6873;\nUPDATE t2 SET b=4119 WHERE a=6874;\nUPDATE t2 SET b=58704 WHERE a=6875;\nUPDATE t2 SET b=54579 WHERE a=6876;\nUPDATE t2 SET b=39992 WHERE a=6877;\nUPDATE t2 SET b=83772 WHERE a=6878;\nUPDATE t2 SET b=22681 WHERE a=6879;\nUPDATE t2 SET b=45746 WHERE a=6880;\nUPDATE t2 SET b=36975 WHERE a=6881;\nUPDATE t2 SET b=47524 WHERE a=6882;\nUPDATE t2 SET b=92618 WHERE a=6883;\nUPDATE t2 SET b=93652 WHERE a=6884;\nUPDATE t2 SET b=87653 WHERE a=6885;\nUPDATE t2 SET b=1959 WHERE a=6886;\nUPDATE t2 SET b=65208 WHERE a=6887;\nUPDATE t2 SET b=8305 WHERE a=6888;\nUPDATE t2 SET b=2050 WHERE a=6889;\nUPDATE t2 SET b=59245 WHERE a=6890;\nUPDATE t2 SET b=68648 WHERE a=6891;\nUPDATE t2 SET b=88119 WHERE a=6892;\nUPDATE t2 SET b=95759 WHERE a=6893;\nUPDATE t2 SET b=79263 WHERE a=6894;\nUPDATE t2 SET b=51873 WHERE a=6895;\nUPDATE t2 SET b=41812 WHERE a=6896;\nUPDATE t2 SET b=18101 WHERE a=6897;\nUPDATE t2 SET b=48878 WHERE a=6898;\nUPDATE t2 SET b=76680 WHERE a=6899;\nUPDATE t2 SET b=60251 WHERE a=6900;\nUPDATE t2 SET b=3478 WHERE a=6901;\nUPDATE t2 SET b=61091 WHERE a=6902;\nUPDATE t2 SET b=29967 WHERE a=6903;\nUPDATE t2 SET b=5625 WHERE a=6904;\nUPDATE t2 SET b=30508 WHERE a=6905;\nUPDATE t2 SET b=66731 WHERE a=6906;\nUPDATE t2 SET b=31636 WHERE a=6907;\nUPDATE t2 SET b=67859 WHERE a=6908;\nUPDATE t2 SET b=33133 WHERE a=6909;\nUPDATE t2 SET b=92010 WHERE a=6910;\nUPDATE t2 SET b=62589 WHERE a=6911;\nUPDATE t2 SET b=35844 WHERE a=6912;\nUPDATE t2 SET b=18634 WHERE a=6913;\nUPDATE t2 SET b=32796 WHERE a=6914;\nUPDATE t2 SET b=10622 WHERE a=6915;\nUPDATE t2 SET b=27927 WHERE a=6916;\nUPDATE t2 SET b=75051 WHERE a=6917;\nUPDATE t2 SET b=73952 WHERE a=6918;\nUPDATE t2 SET b=53543 WHERE a=6919;\nUPDATE t2 SET b=94034 WHERE a=6920;\nUPDATE t2 SET b=85245 WHERE a=6921;\nUPDATE t2 SET b=11979 WHERE a=6922;\nUPDATE t2 SET b=77991 WHERE a=6923;\nUPDATE t2 SET b=31738 WHERE a=6924;\nUPDATE t2 SET b=60774 WHERE a=6925;\nUPDATE t2 SET b=64860 WHERE a=6926;\nUPDATE t2 SET b=72816 WHERE a=6927;\nUPDATE t2 SET b=83118 WHERE a=6928;\nUPDATE t2 SET b=61375 WHERE a=6929;\nUPDATE t2 SET b=77135 WHERE a=6930;\nUPDATE t2 SET b=84269 WHERE a=6931;\nUPDATE t2 SET b=99615 WHERE a=6932;\nUPDATE t2 SET b=62743 WHERE a=6933;\nUPDATE t2 SET b=91969 WHERE a=6934;\nUPDATE t2 SET b=21247 WHERE a=6935;\nUPDATE t2 SET b=38378 WHERE a=6936;\nUPDATE t2 SET b=76358 WHERE a=6937;\nUPDATE t2 SET b=50360 WHERE a=6938;\nUPDATE t2 SET b=79002 WHERE a=6939;\nUPDATE t2 SET b=94386 WHERE a=6940;\nUPDATE t2 SET b=71263 WHERE a=6941;\nUPDATE t2 SET b=84370 WHERE a=6942;\nUPDATE t2 SET b=88836 WHERE a=6943;\nUPDATE t2 SET b=41972 WHERE a=6944;\nUPDATE t2 SET b=33905 WHERE a=6945;\nUPDATE t2 SET b=29867 WHERE a=6946;\nUPDATE t2 SET b=39020 WHERE a=6947;\nUPDATE t2 SET b=96393 WHERE a=6948;\nUPDATE t2 SET b=1325 WHERE a=6949;\nUPDATE t2 SET b=89261 WHERE a=6950;\nUPDATE t2 SET b=93689 WHERE a=6951;\nUPDATE t2 SET b=36452 WHERE a=6952;\nUPDATE t2 SET b=19468 WHERE a=6953;\nUPDATE t2 SET b=19889 WHERE a=6954;\nUPDATE t2 SET b=99915 WHERE a=6955;\nUPDATE t2 SET b=24374 WHERE a=6956;\nUPDATE t2 SET b=84908 WHERE a=6957;\nUPDATE t2 SET b=28037 WHERE a=6958;\nUPDATE t2 SET b=82507 WHERE a=6959;\nUPDATE t2 SET b=20528 WHERE a=6960;\nUPDATE t2 SET b=27029 WHERE a=6961;\nUPDATE t2 SET b=81831 WHERE a=6962;\nUPDATE t2 SET b=74590 WHERE a=6963;\nUPDATE t2 SET b=19141 WHERE a=6964;\nUPDATE t2 SET b=12226 WHERE a=6965;\nUPDATE t2 SET b=16175 WHERE a=6966;\nUPDATE t2 SET b=40583 WHERE a=6967;\nUPDATE t2 SET b=43005 WHERE a=6968;\nUPDATE t2 SET b=28202 WHERE a=6969;\nUPDATE t2 SET b=21811 WHERE a=6970;\nUPDATE t2 SET b=60374 WHERE a=6971;\nUPDATE t2 SET b=72376 WHERE a=6972;\nUPDATE t2 SET b=46503 WHERE a=6973;\nUPDATE t2 SET b=61436 WHERE a=6974;\nUPDATE t2 SET b=38816 WHERE a=6975;\nUPDATE t2 SET b=52648 WHERE a=6976;\nUPDATE t2 SET b=81128 WHERE a=6977;\nUPDATE t2 SET b=15773 WHERE a=6978;\nUPDATE t2 SET b=33126 WHERE a=6979;\nUPDATE t2 SET b=67226 WHERE a=6980;\nUPDATE t2 SET b=4341 WHERE a=6981;\nUPDATE t2 SET b=7485 WHERE a=6982;\nUPDATE t2 SET b=47070 WHERE a=6983;\nUPDATE t2 SET b=36564 WHERE a=6984;\nUPDATE t2 SET b=68495 WHERE a=6985;\nUPDATE t2 SET b=40234 WHERE a=6986;\nUPDATE t2 SET b=39293 WHERE a=6987;\nUPDATE t2 SET b=31183 WHERE a=6988;\nUPDATE t2 SET b=55883 WHERE a=6989;\nUPDATE t2 SET b=35333 WHERE a=6990;\nUPDATE t2 SET b=96600 WHERE a=6991;\nUPDATE t2 SET b=1118 WHERE a=6992;\nUPDATE t2 SET b=44873 WHERE a=6993;\nUPDATE t2 SET b=77829 WHERE a=6994;\nUPDATE t2 SET b=4230 WHERE a=6995;\nUPDATE t2 SET b=55761 WHERE a=6996;\nUPDATE t2 SET b=36821 WHERE a=6997;\nUPDATE t2 SET b=43934 WHERE a=6998;\nUPDATE t2 SET b=49128 WHERE a=6999;\nUPDATE t2 SET b=76653 WHERE a=7000;\nUPDATE t2 SET b=53264 WHERE a=7001;\nUPDATE t2 SET b=88349 WHERE a=7002;\nUPDATE t2 SET b=38097 WHERE a=7003;\nUPDATE t2 SET b=56450 WHERE a=7004;\nUPDATE t2 SET b=56103 WHERE a=7005;\nUPDATE t2 SET b=93780 WHERE a=7006;\nUPDATE t2 SET b=53408 WHERE a=7007;\nUPDATE t2 SET b=36458 WHERE a=7008;\nUPDATE t2 SET b=92141 WHERE a=7009;\nUPDATE t2 SET b=27504 WHERE a=7010;\nUPDATE t2 SET b=44574 WHERE a=7011;\nUPDATE t2 SET b=5308 WHERE a=7012;\nUPDATE t2 SET b=22671 WHERE a=7013;\nUPDATE t2 SET b=34657 WHERE a=7014;\nUPDATE t2 SET b=59111 WHERE a=7015;\nUPDATE t2 SET b=26808 WHERE a=7016;\nUPDATE t2 SET b=51639 WHERE a=7017;\nUPDATE t2 SET b=19350 WHERE a=7018;\nUPDATE t2 SET b=38762 WHERE a=7019;\nUPDATE t2 SET b=59912 WHERE a=7020;\nUPDATE t2 SET b=92851 WHERE a=7021;\nUPDATE t2 SET b=72830 WHERE a=7022;\nUPDATE t2 SET b=96322 WHERE a=7023;\nUPDATE t2 SET b=90467 WHERE a=7024;\nUPDATE t2 SET b=31861 WHERE a=7025;\nUPDATE t2 SET b=77701 WHERE a=7026;\nUPDATE t2 SET b=63689 WHERE a=7027;\nUPDATE t2 SET b=60716 WHERE a=7028;\nUPDATE t2 SET b=33029 WHERE a=7029;\nUPDATE t2 SET b=29134 WHERE a=7030;\nUPDATE t2 SET b=6545 WHERE a=7031;\nUPDATE t2 SET b=64714 WHERE a=7032;\nUPDATE t2 SET b=46779 WHERE a=7033;\nUPDATE t2 SET b=61866 WHERE a=7034;\nUPDATE t2 SET b=50375 WHERE a=7035;\nUPDATE t2 SET b=24120 WHERE a=7036;\nUPDATE t2 SET b=10640 WHERE a=7037;\nUPDATE t2 SET b=85662 WHERE a=7038;\nUPDATE t2 SET b=86364 WHERE a=7039;\nUPDATE t2 SET b=17622 WHERE a=7040;\nUPDATE t2 SET b=18772 WHERE a=7041;\nUPDATE t2 SET b=57306 WHERE a=7042;\nUPDATE t2 SET b=75031 WHERE a=7043;\nUPDATE t2 SET b=61932 WHERE a=7044;\nUPDATE t2 SET b=76792 WHERE a=7045;\nUPDATE t2 SET b=44274 WHERE a=7046;\nUPDATE t2 SET b=95194 WHERE a=7047;\nUPDATE t2 SET b=91204 WHERE a=7048;\nUPDATE t2 SET b=99540 WHERE a=7049;\nUPDATE t2 SET b=82897 WHERE a=7050;\nUPDATE t2 SET b=24128 WHERE a=7051;\nUPDATE t2 SET b=68462 WHERE a=7052;\nUPDATE t2 SET b=64344 WHERE a=7053;\nUPDATE t2 SET b=30938 WHERE a=7054;\nUPDATE t2 SET b=76715 WHERE a=7055;\nUPDATE t2 SET b=44205 WHERE a=7056;\nUPDATE t2 SET b=80395 WHERE a=7057;\nUPDATE t2 SET b=10127 WHERE a=7058;\nUPDATE t2 SET b=13633 WHERE a=7059;\nUPDATE t2 SET b=55320 WHERE a=7060;\nUPDATE t2 SET b=80051 WHERE a=7061;\nUPDATE t2 SET b=81401 WHERE a=7062;\nUPDATE t2 SET b=69820 WHERE a=7063;\nUPDATE t2 SET b=35808 WHERE a=7064;\nUPDATE t2 SET b=95185 WHERE a=7065;\nUPDATE t2 SET b=64635 WHERE a=7066;\nUPDATE t2 SET b=60914 WHERE a=7067;\nUPDATE t2 SET b=61773 WHERE a=7068;\nUPDATE t2 SET b=30902 WHERE a=7069;\nUPDATE t2 SET b=49322 WHERE a=7070;\nUPDATE t2 SET b=2852 WHERE a=7071;\nUPDATE t2 SET b=74137 WHERE a=7072;\nUPDATE t2 SET b=58383 WHERE a=7073;\nUPDATE t2 SET b=16870 WHERE a=7074;\nUPDATE t2 SET b=55374 WHERE a=7075;\nUPDATE t2 SET b=95817 WHERE a=7076;\nUPDATE t2 SET b=415 WHERE a=7077;\nUPDATE t2 SET b=43535 WHERE a=7078;\nUPDATE t2 SET b=28068 WHERE a=7079;\nUPDATE t2 SET b=88732 WHERE a=7080;\nUPDATE t2 SET b=60081 WHERE a=7081;\nUPDATE t2 SET b=28692 WHERE a=7082;\nUPDATE t2 SET b=65221 WHERE a=7083;\nUPDATE t2 SET b=1861 WHERE a=7084;\nUPDATE t2 SET b=71234 WHERE a=7085;\nUPDATE t2 SET b=34568 WHERE a=7086;\nUPDATE t2 SET b=75835 WHERE a=7087;\nUPDATE t2 SET b=95403 WHERE a=7088;\nUPDATE t2 SET b=18630 WHERE a=7089;\nUPDATE t2 SET b=27942 WHERE a=7090;\nUPDATE t2 SET b=71114 WHERE a=7091;\nUPDATE t2 SET b=90757 WHERE a=7092;\nUPDATE t2 SET b=28398 WHERE a=7093;\nUPDATE t2 SET b=35937 WHERE a=7094;\nUPDATE t2 SET b=4412 WHERE a=7095;\nUPDATE t2 SET b=78933 WHERE a=7096;\nUPDATE t2 SET b=46916 WHERE a=7097;\nUPDATE t2 SET b=24679 WHERE a=7098;\nUPDATE t2 SET b=31461 WHERE a=7099;\nUPDATE t2 SET b=25765 WHERE a=7100;\nUPDATE t2 SET b=51035 WHERE a=7101;\nUPDATE t2 SET b=31159 WHERE a=7102;\nUPDATE t2 SET b=69511 WHERE a=7103;\nUPDATE t2 SET b=57067 WHERE a=7104;\nUPDATE t2 SET b=3582 WHERE a=7105;\nUPDATE t2 SET b=69274 WHERE a=7106;\nUPDATE t2 SET b=62518 WHERE a=7107;\nUPDATE t2 SET b=32818 WHERE a=7108;\nUPDATE t2 SET b=11870 WHERE a=7109;\nUPDATE t2 SET b=439 WHERE a=7110;\nUPDATE t2 SET b=31476 WHERE a=7111;\nUPDATE t2 SET b=20181 WHERE a=7112;\nUPDATE t2 SET b=47363 WHERE a=7113;\nUPDATE t2 SET b=41816 WHERE a=7114;\nUPDATE t2 SET b=38130 WHERE a=7115;\nUPDATE t2 SET b=33415 WHERE a=7116;\nUPDATE t2 SET b=67778 WHERE a=7117;\nUPDATE t2 SET b=99678 WHERE a=7118;\nUPDATE t2 SET b=30444 WHERE a=7119;\nUPDATE t2 SET b=3614 WHERE a=7120;\nUPDATE t2 SET b=99374 WHERE a=7121;\nUPDATE t2 SET b=46174 WHERE a=7122;\nUPDATE t2 SET b=3186 WHERE a=7123;\nUPDATE t2 SET b=54009 WHERE a=7124;\nUPDATE t2 SET b=31068 WHERE a=7125;\nUPDATE t2 SET b=90456 WHERE a=7126;\nUPDATE t2 SET b=73095 WHERE a=7127;\nUPDATE t2 SET b=15552 WHERE a=7128;\nUPDATE t2 SET b=99119 WHERE a=7129;\nUPDATE t2 SET b=37165 WHERE a=7130;\nUPDATE t2 SET b=80213 WHERE a=7131;\nUPDATE t2 SET b=22921 WHERE a=7132;\nUPDATE t2 SET b=74045 WHERE a=7133;\nUPDATE t2 SET b=46966 WHERE a=7134;\nUPDATE t2 SET b=75796 WHERE a=7135;\nUPDATE t2 SET b=26289 WHERE a=7136;\nUPDATE t2 SET b=35071 WHERE a=7137;\nUPDATE t2 SET b=65853 WHERE a=7138;\nUPDATE t2 SET b=74800 WHERE a=7139;\nUPDATE t2 SET b=90253 WHERE a=7140;\nUPDATE t2 SET b=28130 WHERE a=7141;\nUPDATE t2 SET b=19659 WHERE a=7142;\nUPDATE t2 SET b=91469 WHERE a=7143;\nUPDATE t2 SET b=19313 WHERE a=7144;\nUPDATE t2 SET b=59306 WHERE a=7145;\nUPDATE t2 SET b=78946 WHERE a=7146;\nUPDATE t2 SET b=41666 WHERE a=7147;\nUPDATE t2 SET b=59590 WHERE a=7148;\nUPDATE t2 SET b=36588 WHERE a=7149;\nUPDATE t2 SET b=77916 WHERE a=7150;\nUPDATE t2 SET b=41450 WHERE a=7151;\nUPDATE t2 SET b=9133 WHERE a=7152;\nUPDATE t2 SET b=56031 WHERE a=7153;\nUPDATE t2 SET b=16291 WHERE a=7154;\nUPDATE t2 SET b=66758 WHERE a=7155;\nUPDATE t2 SET b=48958 WHERE a=7156;\nUPDATE t2 SET b=84835 WHERE a=7157;\nUPDATE t2 SET b=17670 WHERE a=7158;\nUPDATE t2 SET b=65734 WHERE a=7159;\nUPDATE t2 SET b=16455 WHERE a=7160;\nUPDATE t2 SET b=31329 WHERE a=7161;\nUPDATE t2 SET b=88626 WHERE a=7162;\nUPDATE t2 SET b=6410 WHERE a=7163;\nUPDATE t2 SET b=58456 WHERE a=7164;\nUPDATE t2 SET b=67709 WHERE a=7165;\nUPDATE t2 SET b=33023 WHERE a=7166;\nUPDATE t2 SET b=93145 WHERE a=7167;\nUPDATE t2 SET b=2404 WHERE a=7168;\nUPDATE t2 SET b=36217 WHERE a=7169;\nUPDATE t2 SET b=79082 WHERE a=7170;\nUPDATE t2 SET b=81 WHERE a=7171;\nUPDATE t2 SET b=1263 WHERE a=7172;\nUPDATE t2 SET b=99400 WHERE a=7173;\nUPDATE t2 SET b=48182 WHERE a=7174;\nUPDATE t2 SET b=3695 WHERE a=7175;\nUPDATE t2 SET b=35706 WHERE a=7176;\nUPDATE t2 SET b=45451 WHERE a=7177;\nUPDATE t2 SET b=47638 WHERE a=7178;\nUPDATE t2 SET b=26124 WHERE a=7179;\nUPDATE t2 SET b=5503 WHERE a=7180;\nUPDATE t2 SET b=99099 WHERE a=7181;\nUPDATE t2 SET b=86891 WHERE a=7182;\nUPDATE t2 SET b=1820 WHERE a=7183;\nUPDATE t2 SET b=72033 WHERE a=7184;\nUPDATE t2 SET b=35409 WHERE a=7185;\nUPDATE t2 SET b=12696 WHERE a=7186;\nUPDATE t2 SET b=96329 WHERE a=7187;\nUPDATE t2 SET b=27568 WHERE a=7188;\nUPDATE t2 SET b=32742 WHERE a=7189;\nUPDATE t2 SET b=43456 WHERE a=7190;\nUPDATE t2 SET b=45956 WHERE a=7191;\nUPDATE t2 SET b=39716 WHERE a=7192;\nUPDATE t2 SET b=33883 WHERE a=7193;\nUPDATE t2 SET b=34980 WHERE a=7194;\nUPDATE t2 SET b=50915 WHERE a=7195;\nUPDATE t2 SET b=78280 WHERE a=7196;\nUPDATE t2 SET b=37732 WHERE a=7197;\nUPDATE t2 SET b=33751 WHERE a=7198;\nUPDATE t2 SET b=86239 WHERE a=7199;\nUPDATE t2 SET b=49265 WHERE a=7200;\nUPDATE t2 SET b=85769 WHERE a=7201;\nUPDATE t2 SET b=27364 WHERE a=7202;\nUPDATE t2 SET b=48895 WHERE a=7203;\nUPDATE t2 SET b=98049 WHERE a=7204;\nUPDATE t2 SET b=97748 WHERE a=7205;\nUPDATE t2 SET b=78663 WHERE a=7206;\nUPDATE t2 SET b=19771 WHERE a=7207;\nUPDATE t2 SET b=4328 WHERE a=7208;\nUPDATE t2 SET b=79608 WHERE a=7209;\nUPDATE t2 SET b=70131 WHERE a=7210;\nUPDATE t2 SET b=84897 WHERE a=7211;\nUPDATE t2 SET b=84556 WHERE a=7212;\nUPDATE t2 SET b=20474 WHERE a=7213;\nUPDATE t2 SET b=85062 WHERE a=7214;\nUPDATE t2 SET b=53404 WHERE a=7215;\nUPDATE t2 SET b=22409 WHERE a=7216;\nUPDATE t2 SET b=13949 WHERE a=7217;\nUPDATE t2 SET b=14929 WHERE a=7218;\nUPDATE t2 SET b=10925 WHERE a=7219;\nUPDATE t2 SET b=68170 WHERE a=7220;\nUPDATE t2 SET b=71476 WHERE a=7221;\nUPDATE t2 SET b=55959 WHERE a=7222;\nUPDATE t2 SET b=52578 WHERE a=7223;\nUPDATE t2 SET b=7779 WHERE a=7224;\nUPDATE t2 SET b=54889 WHERE a=7225;\nUPDATE t2 SET b=96013 WHERE a=7226;\nUPDATE t2 SET b=746 WHERE a=7227;\nUPDATE t2 SET b=79542 WHERE a=7228;\nUPDATE t2 SET b=54634 WHERE a=7229;\nUPDATE t2 SET b=60279 WHERE a=7230;\nUPDATE t2 SET b=1763 WHERE a=7231;\nUPDATE t2 SET b=42083 WHERE a=7232;\nUPDATE t2 SET b=40855 WHERE a=7233;\nUPDATE t2 SET b=98867 WHERE a=7234;\nUPDATE t2 SET b=99366 WHERE a=7235;\nUPDATE t2 SET b=53777 WHERE a=7236;\nUPDATE t2 SET b=2529 WHERE a=7237;\nUPDATE t2 SET b=15886 WHERE a=7238;\nUPDATE t2 SET b=58878 WHERE a=7239;\nUPDATE t2 SET b=71792 WHERE a=7240;\nUPDATE t2 SET b=35177 WHERE a=7241;\nUPDATE t2 SET b=7990 WHERE a=7242;\nUPDATE t2 SET b=18388 WHERE a=7243;\nUPDATE t2 SET b=53552 WHERE a=7244;\nUPDATE t2 SET b=44359 WHERE a=7245;\nUPDATE t2 SET b=33165 WHERE a=7246;\nUPDATE t2 SET b=34081 WHERE a=7247;\nUPDATE t2 SET b=43577 WHERE a=7248;\nUPDATE t2 SET b=33674 WHERE a=7249;\nUPDATE t2 SET b=30449 WHERE a=7250;\nUPDATE t2 SET b=32305 WHERE a=7251;\nUPDATE t2 SET b=83685 WHERE a=7252;\nUPDATE t2 SET b=37110 WHERE a=7253;\nUPDATE t2 SET b=52532 WHERE a=7254;\nUPDATE t2 SET b=45241 WHERE a=7255;\nUPDATE t2 SET b=39648 WHERE a=7256;\nUPDATE t2 SET b=62748 WHERE a=7257;\nUPDATE t2 SET b=91820 WHERE a=7258;\nUPDATE t2 SET b=95489 WHERE a=7259;\nUPDATE t2 SET b=70343 WHERE a=7260;\nUPDATE t2 SET b=67718 WHERE a=7261;\nUPDATE t2 SET b=81334 WHERE a=7262;\nUPDATE t2 SET b=20435 WHERE a=7263;\nUPDATE t2 SET b=73478 WHERE a=7264;\nUPDATE t2 SET b=25795 WHERE a=7265;\nUPDATE t2 SET b=75010 WHERE a=7266;\nUPDATE t2 SET b=47411 WHERE a=7267;\nUPDATE t2 SET b=25109 WHERE a=7268;\nUPDATE t2 SET b=44254 WHERE a=7269;\nUPDATE t2 SET b=35468 WHERE a=7270;\nUPDATE t2 SET b=615 WHERE a=7271;\nUPDATE t2 SET b=72024 WHERE a=7272;\nUPDATE t2 SET b=42008 WHERE a=7273;\nUPDATE t2 SET b=41522 WHERE a=7274;\nUPDATE t2 SET b=38494 WHERE a=7275;\nUPDATE t2 SET b=87155 WHERE a=7276;\nUPDATE t2 SET b=79391 WHERE a=7277;\nUPDATE t2 SET b=97081 WHERE a=7278;\nUPDATE t2 SET b=37561 WHERE a=7279;\nUPDATE t2 SET b=85914 WHERE a=7280;\nUPDATE t2 SET b=5048 WHERE a=7281;\nUPDATE t2 SET b=47018 WHERE a=7282;\nUPDATE t2 SET b=1443 WHERE a=7283;\nUPDATE t2 SET b=67218 WHERE a=7284;\nUPDATE t2 SET b=46308 WHERE a=7285;\nUPDATE t2 SET b=85902 WHERE a=7286;\nUPDATE t2 SET b=22090 WHERE a=7287;\nUPDATE t2 SET b=63751 WHERE a=7288;\nUPDATE t2 SET b=19309 WHERE a=7289;\nUPDATE t2 SET b=9408 WHERE a=7290;\nUPDATE t2 SET b=80810 WHERE a=7291;\nUPDATE t2 SET b=94204 WHERE a=7292;\nUPDATE t2 SET b=76675 WHERE a=7293;\nUPDATE t2 SET b=47815 WHERE a=7294;\nUPDATE t2 SET b=80823 WHERE a=7295;\nUPDATE t2 SET b=41704 WHERE a=7296;\nUPDATE t2 SET b=39549 WHERE a=7297;\nUPDATE t2 SET b=385 WHERE a=7298;\nUPDATE t2 SET b=85361 WHERE a=7299;\nUPDATE t2 SET b=71559 WHERE a=7300;\nUPDATE t2 SET b=31381 WHERE a=7301;\nUPDATE t2 SET b=8330 WHERE a=7302;\nUPDATE t2 SET b=70272 WHERE a=7303;\nUPDATE t2 SET b=28034 WHERE a=7304;\nUPDATE t2 SET b=77354 WHERE a=7305;\nUPDATE t2 SET b=46550 WHERE a=7306;\nUPDATE t2 SET b=37272 WHERE a=7307;\nUPDATE t2 SET b=33666 WHERE a=7308;\nUPDATE t2 SET b=40117 WHERE a=7309;\nUPDATE t2 SET b=19077 WHERE a=7310;\nUPDATE t2 SET b=41050 WHERE a=7311;\nUPDATE t2 SET b=42168 WHERE a=7312;\nUPDATE t2 SET b=82196 WHERE a=7313;\nUPDATE t2 SET b=41508 WHERE a=7314;\nUPDATE t2 SET b=57023 WHERE a=7315;\nUPDATE t2 SET b=94851 WHERE a=7316;\nUPDATE t2 SET b=89954 WHERE a=7317;\nUPDATE t2 SET b=76260 WHERE a=7318;\nUPDATE t2 SET b=83573 WHERE a=7319;\nUPDATE t2 SET b=55916 WHERE a=7320;\nUPDATE t2 SET b=28043 WHERE a=7321;\nUPDATE t2 SET b=76315 WHERE a=7322;\nUPDATE t2 SET b=30884 WHERE a=7323;\nUPDATE t2 SET b=45502 WHERE a=7324;\nUPDATE t2 SET b=42156 WHERE a=7325;\nUPDATE t2 SET b=64898 WHERE a=7326;\nUPDATE t2 SET b=13326 WHERE a=7327;\nUPDATE t2 SET b=96262 WHERE a=7328;\nUPDATE t2 SET b=18357 WHERE a=7329;\nUPDATE t2 SET b=40061 WHERE a=7330;\nUPDATE t2 SET b=28610 WHERE a=7331;\nUPDATE t2 SET b=52103 WHERE a=7332;\nUPDATE t2 SET b=71349 WHERE a=7333;\nUPDATE t2 SET b=89047 WHERE a=7334;\nUPDATE t2 SET b=33054 WHERE a=7335;\nUPDATE t2 SET b=37124 WHERE a=7336;\nUPDATE t2 SET b=97337 WHERE a=7337;\nUPDATE t2 SET b=49379 WHERE a=7338;\nUPDATE t2 SET b=4663 WHERE a=7339;\nUPDATE t2 SET b=64597 WHERE a=7340;\nUPDATE t2 SET b=31390 WHERE a=7341;\nUPDATE t2 SET b=70106 WHERE a=7342;\nUPDATE t2 SET b=62779 WHERE a=7343;\nUPDATE t2 SET b=88370 WHERE a=7344;\nUPDATE t2 SET b=29616 WHERE a=7345;\nUPDATE t2 SET b=47770 WHERE a=7346;\nUPDATE t2 SET b=96851 WHERE a=7347;\nUPDATE t2 SET b=96374 WHERE a=7348;\nUPDATE t2 SET b=31177 WHERE a=7349;\nUPDATE t2 SET b=44022 WHERE a=7350;\nUPDATE t2 SET b=73103 WHERE a=7351;\nUPDATE t2 SET b=87322 WHERE a=7352;\nUPDATE t2 SET b=45260 WHERE a=7353;\nUPDATE t2 SET b=53034 WHERE a=7354;\nUPDATE t2 SET b=17313 WHERE a=7355;\nUPDATE t2 SET b=19376 WHERE a=7356;\nUPDATE t2 SET b=73830 WHERE a=7357;\nUPDATE t2 SET b=25867 WHERE a=7358;\nUPDATE t2 SET b=30057 WHERE a=7359;\nUPDATE t2 SET b=81459 WHERE a=7360;\nUPDATE t2 SET b=9055 WHERE a=7361;\nUPDATE t2 SET b=6538 WHERE a=7362;\nUPDATE t2 SET b=38750 WHERE a=7363;\nUPDATE t2 SET b=53977 WHERE a=7364;\nUPDATE t2 SET b=51895 WHERE a=7365;\nUPDATE t2 SET b=26556 WHERE a=7366;\nUPDATE t2 SET b=23835 WHERE a=7367;\nUPDATE t2 SET b=92324 WHERE a=7368;\nUPDATE t2 SET b=7936 WHERE a=7369;\nUPDATE t2 SET b=31912 WHERE a=7370;\nUPDATE t2 SET b=86305 WHERE a=7371;\nUPDATE t2 SET b=91246 WHERE a=7372;\nUPDATE t2 SET b=44087 WHERE a=7373;\nUPDATE t2 SET b=77556 WHERE a=7374;\nUPDATE t2 SET b=92389 WHERE a=7375;\nUPDATE t2 SET b=16427 WHERE a=7376;\nUPDATE t2 SET b=82339 WHERE a=7377;\nUPDATE t2 SET b=81171 WHERE a=7378;\nUPDATE t2 SET b=39355 WHERE a=7379;\nUPDATE t2 SET b=17677 WHERE a=7380;\nUPDATE t2 SET b=65217 WHERE a=7381;\nUPDATE t2 SET b=53770 WHERE a=7382;\nUPDATE t2 SET b=4185 WHERE a=7383;\nUPDATE t2 SET b=83511 WHERE a=7384;\nUPDATE t2 SET b=20674 WHERE a=7385;\nUPDATE t2 SET b=52793 WHERE a=7386;\nUPDATE t2 SET b=85088 WHERE a=7387;\nUPDATE t2 SET b=31956 WHERE a=7388;\nUPDATE t2 SET b=69919 WHERE a=7389;\nUPDATE t2 SET b=73728 WHERE a=7390;\nUPDATE t2 SET b=97196 WHERE a=7391;\nUPDATE t2 SET b=9062 WHERE a=7392;\nUPDATE t2 SET b=76267 WHERE a=7393;\nUPDATE t2 SET b=49509 WHERE a=7394;\nUPDATE t2 SET b=46220 WHERE a=7395;\nUPDATE t2 SET b=61793 WHERE a=7396;\nUPDATE t2 SET b=38720 WHERE a=7397;\nUPDATE t2 SET b=92253 WHERE a=7398;\nUPDATE t2 SET b=14737 WHERE a=7399;\nUPDATE t2 SET b=44958 WHERE a=7400;\nUPDATE t2 SET b=17110 WHERE a=7401;\nUPDATE t2 SET b=31889 WHERE a=7402;\nUPDATE t2 SET b=92879 WHERE a=7403;\nUPDATE t2 SET b=37533 WHERE a=7404;\nUPDATE t2 SET b=46706 WHERE a=7405;\nUPDATE t2 SET b=25714 WHERE a=7406;\nUPDATE t2 SET b=80149 WHERE a=7407;\nUPDATE t2 SET b=62668 WHERE a=7408;\nUPDATE t2 SET b=25450 WHERE a=7409;\nUPDATE t2 SET b=31161 WHERE a=7410;\nUPDATE t2 SET b=62802 WHERE a=7411;\nUPDATE t2 SET b=8665 WHERE a=7412;\nUPDATE t2 SET b=3990 WHERE a=7413;\nUPDATE t2 SET b=64373 WHERE a=7414;\nUPDATE t2 SET b=45401 WHERE a=7415;\nUPDATE t2 SET b=30492 WHERE a=7416;\nUPDATE t2 SET b=59008 WHERE a=7417;\nUPDATE t2 SET b=12902 WHERE a=7418;\nUPDATE t2 SET b=1274 WHERE a=7419;\nUPDATE t2 SET b=86024 WHERE a=7420;\nUPDATE t2 SET b=22373 WHERE a=7421;\nUPDATE t2 SET b=92392 WHERE a=7422;\nUPDATE t2 SET b=13587 WHERE a=7423;\nUPDATE t2 SET b=42810 WHERE a=7424;\nUPDATE t2 SET b=35982 WHERE a=7425;\nUPDATE t2 SET b=28064 WHERE a=7426;\nUPDATE t2 SET b=97489 WHERE a=7427;\nUPDATE t2 SET b=54785 WHERE a=7428;\nUPDATE t2 SET b=90557 WHERE a=7429;\nUPDATE t2 SET b=60457 WHERE a=7430;\nUPDATE t2 SET b=29591 WHERE a=7431;\nUPDATE t2 SET b=59305 WHERE a=7432;\nUPDATE t2 SET b=4048 WHERE a=7433;\nUPDATE t2 SET b=527 WHERE a=7434;\nUPDATE t2 SET b=45184 WHERE a=7435;\nUPDATE t2 SET b=63808 WHERE a=7436;\nUPDATE t2 SET b=23549 WHERE a=7437;\nUPDATE t2 SET b=30776 WHERE a=7438;\nUPDATE t2 SET b=69489 WHERE a=7439;\nUPDATE t2 SET b=13758 WHERE a=7440;\nUPDATE t2 SET b=1422 WHERE a=7441;\nUPDATE t2 SET b=61121 WHERE a=7442;\nUPDATE t2 SET b=80727 WHERE a=7443;\nUPDATE t2 SET b=33899 WHERE a=7444;\nUPDATE t2 SET b=45877 WHERE a=7445;\nUPDATE t2 SET b=22637 WHERE a=7446;\nUPDATE t2 SET b=76674 WHERE a=7447;\nUPDATE t2 SET b=54787 WHERE a=7448;\nUPDATE t2 SET b=14275 WHERE a=7449;\nUPDATE t2 SET b=50909 WHERE a=7450;\nUPDATE t2 SET b=4877 WHERE a=7451;\nUPDATE t2 SET b=9130 WHERE a=7452;\nUPDATE t2 SET b=85357 WHERE a=7453;\nUPDATE t2 SET b=90753 WHERE a=7454;\nUPDATE t2 SET b=52972 WHERE a=7455;\nUPDATE t2 SET b=93966 WHERE a=7456;\nUPDATE t2 SET b=449 WHERE a=7457;\nUPDATE t2 SET b=47164 WHERE a=7458;\nUPDATE t2 SET b=2571 WHERE a=7459;\nUPDATE t2 SET b=19172 WHERE a=7460;\nUPDATE t2 SET b=78964 WHERE a=7461;\nUPDATE t2 SET b=59533 WHERE a=7462;\nUPDATE t2 SET b=94333 WHERE a=7463;\nUPDATE t2 SET b=57369 WHERE a=7464;\nUPDATE t2 SET b=81370 WHERE a=7465;\nUPDATE t2 SET b=69114 WHERE a=7466;\nUPDATE t2 SET b=96794 WHERE a=7467;\nUPDATE t2 SET b=34023 WHERE a=7468;\nUPDATE t2 SET b=31726 WHERE a=7469;\nUPDATE t2 SET b=9634 WHERE a=7470;\nUPDATE t2 SET b=73495 WHERE a=7471;\nUPDATE t2 SET b=59092 WHERE a=7472;\nUPDATE t2 SET b=50538 WHERE a=7473;\nUPDATE t2 SET b=30376 WHERE a=7474;\nUPDATE t2 SET b=91908 WHERE a=7475;\nUPDATE t2 SET b=63446 WHERE a=7476;\nUPDATE t2 SET b=61881 WHERE a=7477;\nUPDATE t2 SET b=22431 WHERE a=7478;\nUPDATE t2 SET b=97343 WHERE a=7479;\nUPDATE t2 SET b=21720 WHERE a=7480;\nUPDATE t2 SET b=63865 WHERE a=7481;\nUPDATE t2 SET b=12100 WHERE a=7482;\nUPDATE t2 SET b=5635 WHERE a=7483;\nUPDATE t2 SET b=34622 WHERE a=7484;\nUPDATE t2 SET b=28754 WHERE a=7485;\nUPDATE t2 SET b=29175 WHERE a=7486;\nUPDATE t2 SET b=57677 WHERE a=7487;\nUPDATE t2 SET b=31093 WHERE a=7488;\nUPDATE t2 SET b=63214 WHERE a=7489;\nUPDATE t2 SET b=10199 WHERE a=7490;\nUPDATE t2 SET b=25077 WHERE a=7491;\nUPDATE t2 SET b=7123 WHERE a=7492;\nUPDATE t2 SET b=43142 WHERE a=7493;\nUPDATE t2 SET b=53228 WHERE a=7494;\nUPDATE t2 SET b=89792 WHERE a=7495;\nUPDATE t2 SET b=604 WHERE a=7496;\nUPDATE t2 SET b=91262 WHERE a=7497;\nUPDATE t2 SET b=37376 WHERE a=7498;\nUPDATE t2 SET b=41362 WHERE a=7499;\nUPDATE t2 SET b=2419 WHERE a=7500;\nUPDATE t2 SET b=67079 WHERE a=7501;\nUPDATE t2 SET b=48298 WHERE a=7502;\nUPDATE t2 SET b=54948 WHERE a=7503;\nUPDATE t2 SET b=18499 WHERE a=7504;\nUPDATE t2 SET b=16578 WHERE a=7505;\nUPDATE t2 SET b=8776 WHERE a=7506;\nUPDATE t2 SET b=92673 WHERE a=7507;\nUPDATE t2 SET b=76828 WHERE a=7508;\nUPDATE t2 SET b=56560 WHERE a=7509;\nUPDATE t2 SET b=5214 WHERE a=7510;\nUPDATE t2 SET b=11663 WHERE a=7511;\nUPDATE t2 SET b=6287 WHERE a=7512;\nUPDATE t2 SET b=76774 WHERE a=7513;\nUPDATE t2 SET b=16464 WHERE a=7514;\nUPDATE t2 SET b=72583 WHERE a=7515;\nUPDATE t2 SET b=13919 WHERE a=7516;\nUPDATE t2 SET b=74967 WHERE a=7517;\nUPDATE t2 SET b=38814 WHERE a=7518;\nUPDATE t2 SET b=92866 WHERE a=7519;\nUPDATE t2 SET b=44084 WHERE a=7520;\nUPDATE t2 SET b=8368 WHERE a=7521;\nUPDATE t2 SET b=24301 WHERE a=7522;\nUPDATE t2 SET b=50170 WHERE a=7523;\nUPDATE t2 SET b=41700 WHERE a=7524;\nUPDATE t2 SET b=64432 WHERE a=7525;\nUPDATE t2 SET b=30861 WHERE a=7526;\nUPDATE t2 SET b=65295 WHERE a=7527;\nUPDATE t2 SET b=21202 WHERE a=7528;\nUPDATE t2 SET b=83777 WHERE a=7529;\nUPDATE t2 SET b=58512 WHERE a=7530;\nUPDATE t2 SET b=90814 WHERE a=7531;\nUPDATE t2 SET b=70054 WHERE a=7532;\nUPDATE t2 SET b=39152 WHERE a=7533;\nUPDATE t2 SET b=43798 WHERE a=7534;\nUPDATE t2 SET b=40807 WHERE a=7535;\nUPDATE t2 SET b=45113 WHERE a=7536;\nUPDATE t2 SET b=39353 WHERE a=7537;\nUPDATE t2 SET b=5537 WHERE a=7538;\nUPDATE t2 SET b=40541 WHERE a=7539;\nUPDATE t2 SET b=25959 WHERE a=7540;\nUPDATE t2 SET b=97112 WHERE a=7541;\nUPDATE t2 SET b=36748 WHERE a=7542;\nUPDATE t2 SET b=77513 WHERE a=7543;\nUPDATE t2 SET b=26390 WHERE a=7544;\nUPDATE t2 SET b=66040 WHERE a=7545;\nUPDATE t2 SET b=79844 WHERE a=7546;\nUPDATE t2 SET b=761 WHERE a=7547;\nUPDATE t2 SET b=88611 WHERE a=7548;\nUPDATE t2 SET b=3543 WHERE a=7549;\nUPDATE t2 SET b=43687 WHERE a=7550;\nUPDATE t2 SET b=76401 WHERE a=7551;\nUPDATE t2 SET b=40509 WHERE a=7552;\nUPDATE t2 SET b=94027 WHERE a=7553;\nUPDATE t2 SET b=30854 WHERE a=7554;\nUPDATE t2 SET b=54979 WHERE a=7555;\nUPDATE t2 SET b=77249 WHERE a=7556;\nUPDATE t2 SET b=85563 WHERE a=7557;\nUPDATE t2 SET b=78236 WHERE a=7558;\nUPDATE t2 SET b=56678 WHERE a=7559;\nUPDATE t2 SET b=38843 WHERE a=7560;\nUPDATE t2 SET b=45072 WHERE a=7561;\nUPDATE t2 SET b=82226 WHERE a=7562;\nUPDATE t2 SET b=36378 WHERE a=7563;\nUPDATE t2 SET b=17936 WHERE a=7564;\nUPDATE t2 SET b=79332 WHERE a=7565;\nUPDATE t2 SET b=10240 WHERE a=7566;\nUPDATE t2 SET b=23262 WHERE a=7567;\nUPDATE t2 SET b=24179 WHERE a=7568;\nUPDATE t2 SET b=42293 WHERE a=7569;\nUPDATE t2 SET b=55300 WHERE a=7570;\nUPDATE t2 SET b=29980 WHERE a=7571;\nUPDATE t2 SET b=442 WHERE a=7572;\nUPDATE t2 SET b=51117 WHERE a=7573;\nUPDATE t2 SET b=45283 WHERE a=7574;\nUPDATE t2 SET b=64622 WHERE a=7575;\nUPDATE t2 SET b=71381 WHERE a=7576;\nUPDATE t2 SET b=64189 WHERE a=7577;\nUPDATE t2 SET b=36899 WHERE a=7578;\nUPDATE t2 SET b=49746 WHERE a=7579;\nUPDATE t2 SET b=66481 WHERE a=7580;\nUPDATE t2 SET b=10227 WHERE a=7581;\nUPDATE t2 SET b=73708 WHERE a=7582;\nUPDATE t2 SET b=97636 WHERE a=7583;\nUPDATE t2 SET b=60912 WHERE a=7584;\nUPDATE t2 SET b=32913 WHERE a=7585;\nUPDATE t2 SET b=16851 WHERE a=7586;\nUPDATE t2 SET b=41642 WHERE a=7587;\nUPDATE t2 SET b=88365 WHERE a=7588;\nUPDATE t2 SET b=37098 WHERE a=7589;\nUPDATE t2 SET b=96423 WHERE a=7590;\nUPDATE t2 SET b=30296 WHERE a=7591;\nUPDATE t2 SET b=31603 WHERE a=7592;\nUPDATE t2 SET b=62462 WHERE a=7593;\nUPDATE t2 SET b=22636 WHERE a=7594;\nUPDATE t2 SET b=3669 WHERE a=7595;\nUPDATE t2 SET b=80 WHERE a=7596;\nUPDATE t2 SET b=69076 WHERE a=7597;\nUPDATE t2 SET b=3905 WHERE a=7598;\nUPDATE t2 SET b=54240 WHERE a=7599;\nUPDATE t2 SET b=24112 WHERE a=7600;\nUPDATE t2 SET b=39054 WHERE a=7601;\nUPDATE t2 SET b=57636 WHERE a=7602;\nUPDATE t2 SET b=45953 WHERE a=7603;\nUPDATE t2 SET b=7171 WHERE a=7604;\nUPDATE t2 SET b=63009 WHERE a=7605;\nUPDATE t2 SET b=34395 WHERE a=7606;\nUPDATE t2 SET b=6345 WHERE a=7607;\nUPDATE t2 SET b=537 WHERE a=7608;\nUPDATE t2 SET b=69741 WHERE a=7609;\nUPDATE t2 SET b=61962 WHERE a=7610;\nUPDATE t2 SET b=34016 WHERE a=7611;\nUPDATE t2 SET b=15417 WHERE a=7612;\nUPDATE t2 SET b=88414 WHERE a=7613;\nUPDATE t2 SET b=48850 WHERE a=7614;\nUPDATE t2 SET b=18629 WHERE a=7615;\nUPDATE t2 SET b=43253 WHERE a=7616;\nUPDATE t2 SET b=93242 WHERE a=7617;\nUPDATE t2 SET b=16883 WHERE a=7618;\nUPDATE t2 SET b=37319 WHERE a=7619;\nUPDATE t2 SET b=65481 WHERE a=7620;\nUPDATE t2 SET b=50862 WHERE a=7621;\nUPDATE t2 SET b=85547 WHERE a=7622;\nUPDATE t2 SET b=56926 WHERE a=7623;\nUPDATE t2 SET b=35200 WHERE a=7624;\nUPDATE t2 SET b=88156 WHERE a=7625;\nUPDATE t2 SET b=29263 WHERE a=7626;\nUPDATE t2 SET b=51180 WHERE a=7627;\nUPDATE t2 SET b=31823 WHERE a=7628;\nUPDATE t2 SET b=54557 WHERE a=7629;\nUPDATE t2 SET b=36078 WHERE a=7630;\nUPDATE t2 SET b=40704 WHERE a=7631;\nUPDATE t2 SET b=44888 WHERE a=7632;\nUPDATE t2 SET b=82270 WHERE a=7633;\nUPDATE t2 SET b=18781 WHERE a=7634;\nUPDATE t2 SET b=19008 WHERE a=7635;\nUPDATE t2 SET b=31048 WHERE a=7636;\nUPDATE t2 SET b=86586 WHERE a=7637;\nUPDATE t2 SET b=18710 WHERE a=7638;\nUPDATE t2 SET b=34165 WHERE a=7639;\nUPDATE t2 SET b=14599 WHERE a=7640;\nUPDATE t2 SET b=16735 WHERE a=7641;\nUPDATE t2 SET b=11893 WHERE a=7642;\nUPDATE t2 SET b=93746 WHERE a=7643;\nUPDATE t2 SET b=81929 WHERE a=7644;\nUPDATE t2 SET b=62360 WHERE a=7645;\nUPDATE t2 SET b=47407 WHERE a=7646;\nUPDATE t2 SET b=54963 WHERE a=7647;\nUPDATE t2 SET b=49855 WHERE a=7648;\nUPDATE t2 SET b=73606 WHERE a=7649;\nUPDATE t2 SET b=40443 WHERE a=7650;\nUPDATE t2 SET b=14769 WHERE a=7651;\nUPDATE t2 SET b=12307 WHERE a=7652;\nUPDATE t2 SET b=61694 WHERE a=7653;\nUPDATE t2 SET b=29172 WHERE a=7654;\nUPDATE t2 SET b=93780 WHERE a=7655;\nUPDATE t2 SET b=97131 WHERE a=7656;\nUPDATE t2 SET b=55546 WHERE a=7657;\nUPDATE t2 SET b=74424 WHERE a=7658;\nUPDATE t2 SET b=39406 WHERE a=7659;\nUPDATE t2 SET b=52920 WHERE a=7660;\nUPDATE t2 SET b=53526 WHERE a=7661;\nUPDATE t2 SET b=60397 WHERE a=7662;\nUPDATE t2 SET b=56007 WHERE a=7663;\nUPDATE t2 SET b=78823 WHERE a=7664;\nUPDATE t2 SET b=16976 WHERE a=7665;\nUPDATE t2 SET b=70742 WHERE a=7666;\nUPDATE t2 SET b=64947 WHERE a=7667;\nUPDATE t2 SET b=55619 WHERE a=7668;\nUPDATE t2 SET b=62336 WHERE a=7669;\nUPDATE t2 SET b=98596 WHERE a=7670;\nUPDATE t2 SET b=61665 WHERE a=7671;\nUPDATE t2 SET b=67864 WHERE a=7672;\nUPDATE t2 SET b=35370 WHERE a=7673;\nUPDATE t2 SET b=31813 WHERE a=7674;\nUPDATE t2 SET b=93348 WHERE a=7675;\nUPDATE t2 SET b=51723 WHERE a=7676;\nUPDATE t2 SET b=42364 WHERE a=7677;\nUPDATE t2 SET b=94378 WHERE a=7678;\nUPDATE t2 SET b=81563 WHERE a=7679;\nUPDATE t2 SET b=50241 WHERE a=7680;\nUPDATE t2 SET b=35861 WHERE a=7681;\nUPDATE t2 SET b=37937 WHERE a=7682;\nUPDATE t2 SET b=85978 WHERE a=7683;\nUPDATE t2 SET b=87420 WHERE a=7684;\nUPDATE t2 SET b=26193 WHERE a=7685;\nUPDATE t2 SET b=35069 WHERE a=7686;\nUPDATE t2 SET b=88290 WHERE a=7687;\nUPDATE t2 SET b=49441 WHERE a=7688;\nUPDATE t2 SET b=76567 WHERE a=7689;\nUPDATE t2 SET b=89553 WHERE a=7690;\nUPDATE t2 SET b=83268 WHERE a=7691;\nUPDATE t2 SET b=47669 WHERE a=7692;\nUPDATE t2 SET b=72789 WHERE a=7693;\nUPDATE t2 SET b=66280 WHERE a=7694;\nUPDATE t2 SET b=47798 WHERE a=7695;\nUPDATE t2 SET b=87764 WHERE a=7696;\nUPDATE t2 SET b=67193 WHERE a=7697;\nUPDATE t2 SET b=19360 WHERE a=7698;\nUPDATE t2 SET b=32888 WHERE a=7699;\nUPDATE t2 SET b=83244 WHERE a=7700;\nUPDATE t2 SET b=62586 WHERE a=7701;\nUPDATE t2 SET b=9604 WHERE a=7702;\nUPDATE t2 SET b=83326 WHERE a=7703;\nUPDATE t2 SET b=48915 WHERE a=7704;\nUPDATE t2 SET b=70511 WHERE a=7705;\nUPDATE t2 SET b=3720 WHERE a=7706;\nUPDATE t2 SET b=92927 WHERE a=7707;\nUPDATE t2 SET b=7142 WHERE a=7708;\nUPDATE t2 SET b=39584 WHERE a=7709;\nUPDATE t2 SET b=77641 WHERE a=7710;\nUPDATE t2 SET b=91101 WHERE a=7711;\nUPDATE t2 SET b=59094 WHERE a=7712;\nUPDATE t2 SET b=94296 WHERE a=7713;\nUPDATE t2 SET b=39758 WHERE a=7714;\nUPDATE t2 SET b=22732 WHERE a=7715;\nUPDATE t2 SET b=96530 WHERE a=7716;\nUPDATE t2 SET b=23390 WHERE a=7717;\nUPDATE t2 SET b=87700 WHERE a=7718;\nUPDATE t2 SET b=64578 WHERE a=7719;\nUPDATE t2 SET b=36066 WHERE a=7720;\nUPDATE t2 SET b=71245 WHERE a=7721;\nUPDATE t2 SET b=95787 WHERE a=7722;\nUPDATE t2 SET b=44778 WHERE a=7723;\nUPDATE t2 SET b=26872 WHERE a=7724;\nUPDATE t2 SET b=52109 WHERE a=7725;\nUPDATE t2 SET b=34414 WHERE a=7726;\nUPDATE t2 SET b=90086 WHERE a=7727;\nUPDATE t2 SET b=62405 WHERE a=7728;\nUPDATE t2 SET b=51260 WHERE a=7729;\nUPDATE t2 SET b=14609 WHERE a=7730;\nUPDATE t2 SET b=50757 WHERE a=7731;\nUPDATE t2 SET b=84759 WHERE a=7732;\nUPDATE t2 SET b=951 WHERE a=7733;\nUPDATE t2 SET b=46705 WHERE a=7734;\nUPDATE t2 SET b=47616 WHERE a=7735;\nUPDATE t2 SET b=25111 WHERE a=7736;\nUPDATE t2 SET b=86032 WHERE a=7737;\nUPDATE t2 SET b=29193 WHERE a=7738;\nUPDATE t2 SET b=2316 WHERE a=7739;\nUPDATE t2 SET b=19647 WHERE a=7740;\nUPDATE t2 SET b=21379 WHERE a=7741;\nUPDATE t2 SET b=90464 WHERE a=7742;\nUPDATE t2 SET b=68706 WHERE a=7743;\nUPDATE t2 SET b=99725 WHERE a=7744;\nUPDATE t2 SET b=92695 WHERE a=7745;\nUPDATE t2 SET b=12207 WHERE a=7746;\nUPDATE t2 SET b=35881 WHERE a=7747;\nUPDATE t2 SET b=20264 WHERE a=7748;\nUPDATE t2 SET b=7317 WHERE a=7749;\nUPDATE t2 SET b=32354 WHERE a=7750;\nUPDATE t2 SET b=38834 WHERE a=7751;\nUPDATE t2 SET b=49115 WHERE a=7752;\nUPDATE t2 SET b=15466 WHERE a=7753;\nUPDATE t2 SET b=59544 WHERE a=7754;\nUPDATE t2 SET b=39008 WHERE a=7755;\nUPDATE t2 SET b=61652 WHERE a=7756;\nUPDATE t2 SET b=51176 WHERE a=7757;\nUPDATE t2 SET b=97482 WHERE a=7758;\nUPDATE t2 SET b=89372 WHERE a=7759;\nUPDATE t2 SET b=33702 WHERE a=7760;\nUPDATE t2 SET b=76174 WHERE a=7761;\nUPDATE t2 SET b=80785 WHERE a=7762;\nUPDATE t2 SET b=21802 WHERE a=7763;\nUPDATE t2 SET b=41527 WHERE a=7764;\nUPDATE t2 SET b=82089 WHERE a=7765;\nUPDATE t2 SET b=21270 WHERE a=7766;\nUPDATE t2 SET b=90250 WHERE a=7767;\nUPDATE t2 SET b=35360 WHERE a=7768;\nUPDATE t2 SET b=6995 WHERE a=7769;\nUPDATE t2 SET b=21378 WHERE a=7770;\nUPDATE t2 SET b=23680 WHERE a=7771;\nUPDATE t2 SET b=47514 WHERE a=7772;\nUPDATE t2 SET b=25835 WHERE a=7773;\nUPDATE t2 SET b=12791 WHERE a=7774;\nUPDATE t2 SET b=77639 WHERE a=7775;\nUPDATE t2 SET b=5786 WHERE a=7776;\nUPDATE t2 SET b=64601 WHERE a=7777;\nUPDATE t2 SET b=50469 WHERE a=7778;\nUPDATE t2 SET b=65743 WHERE a=7779;\nUPDATE t2 SET b=3229 WHERE a=7780;\nUPDATE t2 SET b=87213 WHERE a=7781;\nUPDATE t2 SET b=39920 WHERE a=7782;\nUPDATE t2 SET b=84747 WHERE a=7783;\nUPDATE t2 SET b=58618 WHERE a=7784;\nUPDATE t2 SET b=25485 WHERE a=7785;\nUPDATE t2 SET b=84949 WHERE a=7786;\nUPDATE t2 SET b=9692 WHERE a=7787;\nUPDATE t2 SET b=88932 WHERE a=7788;\nUPDATE t2 SET b=76530 WHERE a=7789;\nUPDATE t2 SET b=7168 WHERE a=7790;\nUPDATE t2 SET b=19995 WHERE a=7791;\nUPDATE t2 SET b=18365 WHERE a=7792;\nUPDATE t2 SET b=9465 WHERE a=7793;\nUPDATE t2 SET b=32681 WHERE a=7794;\nUPDATE t2 SET b=34050 WHERE a=7795;\nUPDATE t2 SET b=48747 WHERE a=7796;\nUPDATE t2 SET b=94129 WHERE a=7797;\nUPDATE t2 SET b=16574 WHERE a=7798;\nUPDATE t2 SET b=62900 WHERE a=7799;\nUPDATE t2 SET b=7562 WHERE a=7800;\nUPDATE t2 SET b=60380 WHERE a=7801;\nUPDATE t2 SET b=45402 WHERE a=7802;\nUPDATE t2 SET b=34405 WHERE a=7803;\nUPDATE t2 SET b=60686 WHERE a=7804;\nUPDATE t2 SET b=55818 WHERE a=7805;\nUPDATE t2 SET b=68468 WHERE a=7806;\nUPDATE t2 SET b=65965 WHERE a=7807;\nUPDATE t2 SET b=38018 WHERE a=7808;\nUPDATE t2 SET b=92984 WHERE a=7809;\nUPDATE t2 SET b=98525 WHERE a=7810;\nUPDATE t2 SET b=64496 WHERE a=7811;\nUPDATE t2 SET b=84996 WHERE a=7812;\nUPDATE t2 SET b=94513 WHERE a=7813;\nUPDATE t2 SET b=17359 WHERE a=7814;\nUPDATE t2 SET b=35344 WHERE a=7815;\nUPDATE t2 SET b=3454 WHERE a=7816;\nUPDATE t2 SET b=42405 WHERE a=7817;\nUPDATE t2 SET b=58274 WHERE a=7818;\nUPDATE t2 SET b=44420 WHERE a=7819;\nUPDATE t2 SET b=21226 WHERE a=7820;\nUPDATE t2 SET b=90491 WHERE a=7821;\nUPDATE t2 SET b=69698 WHERE a=7822;\nUPDATE t2 SET b=93764 WHERE a=7823;\nUPDATE t2 SET b=99589 WHERE a=7824;\nUPDATE t2 SET b=26315 WHERE a=7825;\nUPDATE t2 SET b=16015 WHERE a=7826;\nUPDATE t2 SET b=71269 WHERE a=7827;\nUPDATE t2 SET b=82593 WHERE a=7828;\nUPDATE t2 SET b=84517 WHERE a=7829;\nUPDATE t2 SET b=67495 WHERE a=7830;\nUPDATE t2 SET b=81449 WHERE a=7831;\nUPDATE t2 SET b=88267 WHERE a=7832;\nUPDATE t2 SET b=23847 WHERE a=7833;\nUPDATE t2 SET b=58318 WHERE a=7834;\nUPDATE t2 SET b=11245 WHERE a=7835;\nUPDATE t2 SET b=390 WHERE a=7836;\nUPDATE t2 SET b=37443 WHERE a=7837;\nUPDATE t2 SET b=45782 WHERE a=7838;\nUPDATE t2 SET b=61795 WHERE a=7839;\nUPDATE t2 SET b=60129 WHERE a=7840;\nUPDATE t2 SET b=24696 WHERE a=7841;\nUPDATE t2 SET b=66705 WHERE a=7842;\nUPDATE t2 SET b=35555 WHERE a=7843;\nUPDATE t2 SET b=7464 WHERE a=7844;\nUPDATE t2 SET b=59643 WHERE a=7845;\nUPDATE t2 SET b=37368 WHERE a=7846;\nUPDATE t2 SET b=26126 WHERE a=7847;\nUPDATE t2 SET b=27234 WHERE a=7848;\nUPDATE t2 SET b=48645 WHERE a=7849;\nUPDATE t2 SET b=58668 WHERE a=7850;\nUPDATE t2 SET b=44465 WHERE a=7851;\nUPDATE t2 SET b=74894 WHERE a=7852;\nUPDATE t2 SET b=21521 WHERE a=7853;\nUPDATE t2 SET b=20602 WHERE a=7854;\nUPDATE t2 SET b=38418 WHERE a=7855;\nUPDATE t2 SET b=24190 WHERE a=7856;\nUPDATE t2 SET b=76515 WHERE a=7857;\nUPDATE t2 SET b=46389 WHERE a=7858;\nUPDATE t2 SET b=32462 WHERE a=7859;\nUPDATE t2 SET b=62514 WHERE a=7860;\nUPDATE t2 SET b=69520 WHERE a=7861;\nUPDATE t2 SET b=75775 WHERE a=7862;\nUPDATE t2 SET b=20424 WHERE a=7863;\nUPDATE t2 SET b=33645 WHERE a=7864;\nUPDATE t2 SET b=9572 WHERE a=7865;\nUPDATE t2 SET b=33088 WHERE a=7866;\nUPDATE t2 SET b=67116 WHERE a=7867;\nUPDATE t2 SET b=55249 WHERE a=7868;\nUPDATE t2 SET b=80394 WHERE a=7869;\nUPDATE t2 SET b=58583 WHERE a=7870;\nUPDATE t2 SET b=74113 WHERE a=7871;\nUPDATE t2 SET b=38103 WHERE a=7872;\nUPDATE t2 SET b=73495 WHERE a=7873;\nUPDATE t2 SET b=58351 WHERE a=7874;\nUPDATE t2 SET b=34129 WHERE a=7875;\nUPDATE t2 SET b=89653 WHERE a=7876;\nUPDATE t2 SET b=85015 WHERE a=7877;\nUPDATE t2 SET b=18948 WHERE a=7878;\nUPDATE t2 SET b=75803 WHERE a=7879;\nUPDATE t2 SET b=50893 WHERE a=7880;\nUPDATE t2 SET b=92163 WHERE a=7881;\nUPDATE t2 SET b=55134 WHERE a=7882;\nUPDATE t2 SET b=50258 WHERE a=7883;\nUPDATE t2 SET b=3020 WHERE a=7884;\nUPDATE t2 SET b=9844 WHERE a=7885;\nUPDATE t2 SET b=67596 WHERE a=7886;\nUPDATE t2 SET b=9941 WHERE a=7887;\nUPDATE t2 SET b=81742 WHERE a=7888;\nUPDATE t2 SET b=93131 WHERE a=7889;\nUPDATE t2 SET b=86113 WHERE a=7890;\nUPDATE t2 SET b=25136 WHERE a=7891;\nUPDATE t2 SET b=98692 WHERE a=7892;\nUPDATE t2 SET b=41770 WHERE a=7893;\nUPDATE t2 SET b=50222 WHERE a=7894;\nUPDATE t2 SET b=25521 WHERE a=7895;\nUPDATE t2 SET b=9472 WHERE a=7896;\nUPDATE t2 SET b=2638 WHERE a=7897;\nUPDATE t2 SET b=68681 WHERE a=7898;\nUPDATE t2 SET b=52115 WHERE a=7899;\nUPDATE t2 SET b=59614 WHERE a=7900;\nUPDATE t2 SET b=25731 WHERE a=7901;\nUPDATE t2 SET b=55320 WHERE a=7902;\nUPDATE t2 SET b=15672 WHERE a=7903;\nUPDATE t2 SET b=98702 WHERE a=7904;\nUPDATE t2 SET b=25785 WHERE a=7905;\nUPDATE t2 SET b=31377 WHERE a=7906;\nUPDATE t2 SET b=23233 WHERE a=7907;\nUPDATE t2 SET b=46203 WHERE a=7908;\nUPDATE t2 SET b=48046 WHERE a=7909;\nUPDATE t2 SET b=91829 WHERE a=7910;\nUPDATE t2 SET b=59982 WHERE a=7911;\nUPDATE t2 SET b=80202 WHERE a=7912;\nUPDATE t2 SET b=68032 WHERE a=7913;\nUPDATE t2 SET b=50556 WHERE a=7914;\nUPDATE t2 SET b=16470 WHERE a=7915;\nUPDATE t2 SET b=28017 WHERE a=7916;\nUPDATE t2 SET b=57900 WHERE a=7917;\nUPDATE t2 SET b=72610 WHERE a=7918;\nUPDATE t2 SET b=72865 WHERE a=7919;\nUPDATE t2 SET b=13852 WHERE a=7920;\nUPDATE t2 SET b=68058 WHERE a=7921;\nUPDATE t2 SET b=71483 WHERE a=7922;\nUPDATE t2 SET b=33465 WHERE a=7923;\nUPDATE t2 SET b=51742 WHERE a=7924;\nUPDATE t2 SET b=29624 WHERE a=7925;\nUPDATE t2 SET b=25041 WHERE a=7926;\nUPDATE t2 SET b=52414 WHERE a=7927;\nUPDATE t2 SET b=27914 WHERE a=7928;\nUPDATE t2 SET b=23597 WHERE a=7929;\nUPDATE t2 SET b=62882 WHERE a=7930;\nUPDATE t2 SET b=4795 WHERE a=7931;\nUPDATE t2 SET b=45980 WHERE a=7932;\nUPDATE t2 SET b=55592 WHERE a=7933;\nUPDATE t2 SET b=77057 WHERE a=7934;\nUPDATE t2 SET b=74579 WHERE a=7935;\nUPDATE t2 SET b=2996 WHERE a=7936;\nUPDATE t2 SET b=22531 WHERE a=7937;\nUPDATE t2 SET b=4733 WHERE a=7938;\nUPDATE t2 SET b=14086 WHERE a=7939;\nUPDATE t2 SET b=60920 WHERE a=7940;\nUPDATE t2 SET b=63996 WHERE a=7941;\nUPDATE t2 SET b=18671 WHERE a=7942;\nUPDATE t2 SET b=59371 WHERE a=7943;\nUPDATE t2 SET b=60459 WHERE a=7944;\nUPDATE t2 SET b=39059 WHERE a=7945;\nUPDATE t2 SET b=13382 WHERE a=7946;\nUPDATE t2 SET b=29791 WHERE a=7947;\nUPDATE t2 SET b=62469 WHERE a=7948;\nUPDATE t2 SET b=24571 WHERE a=7949;\nUPDATE t2 SET b=78886 WHERE a=7950;\nUPDATE t2 SET b=40480 WHERE a=7951;\nUPDATE t2 SET b=82310 WHERE a=7952;\nUPDATE t2 SET b=27923 WHERE a=7953;\nUPDATE t2 SET b=57219 WHERE a=7954;\nUPDATE t2 SET b=81907 WHERE a=7955;\nUPDATE t2 SET b=17824 WHERE a=7956;\nUPDATE t2 SET b=49251 WHERE a=7957;\nUPDATE t2 SET b=30644 WHERE a=7958;\nUPDATE t2 SET b=63318 WHERE a=7959;\nUPDATE t2 SET b=10678 WHERE a=7960;\nUPDATE t2 SET b=81315 WHERE a=7961;\nUPDATE t2 SET b=8466 WHERE a=7962;\nUPDATE t2 SET b=93643 WHERE a=7963;\nUPDATE t2 SET b=65471 WHERE a=7964;\nUPDATE t2 SET b=28087 WHERE a=7965;\nUPDATE t2 SET b=84448 WHERE a=7966;\nUPDATE t2 SET b=96832 WHERE a=7967;\nUPDATE t2 SET b=92149 WHERE a=7968;\nUPDATE t2 SET b=20953 WHERE a=7969;\nUPDATE t2 SET b=72180 WHERE a=7970;\nUPDATE t2 SET b=42759 WHERE a=7971;\nUPDATE t2 SET b=41466 WHERE a=7972;\nUPDATE t2 SET b=33839 WHERE a=7973;\nUPDATE t2 SET b=9575 WHERE a=7974;\nUPDATE t2 SET b=47619 WHERE a=7975;\nUPDATE t2 SET b=85159 WHERE a=7976;\nUPDATE t2 SET b=54190 WHERE a=7977;\nUPDATE t2 SET b=10679 WHERE a=7978;\nUPDATE t2 SET b=14843 WHERE a=7979;\nUPDATE t2 SET b=43583 WHERE a=7980;\nUPDATE t2 SET b=98614 WHERE a=7981;\nUPDATE t2 SET b=97353 WHERE a=7982;\nUPDATE t2 SET b=65233 WHERE a=7983;\nUPDATE t2 SET b=8525 WHERE a=7984;\nUPDATE t2 SET b=92791 WHERE a=7985;\nUPDATE t2 SET b=88157 WHERE a=7986;\nUPDATE t2 SET b=43815 WHERE a=7987;\nUPDATE t2 SET b=62753 WHERE a=7988;\nUPDATE t2 SET b=74468 WHERE a=7989;\nUPDATE t2 SET b=74050 WHERE a=7990;\nUPDATE t2 SET b=9558 WHERE a=7991;\nUPDATE t2 SET b=79225 WHERE a=7992;\nUPDATE t2 SET b=40388 WHERE a=7993;\nUPDATE t2 SET b=52681 WHERE a=7994;\nUPDATE t2 SET b=52424 WHERE a=7995;\nUPDATE t2 SET b=54717 WHERE a=7996;\nUPDATE t2 SET b=38066 WHERE a=7997;\nUPDATE t2 SET b=86010 WHERE a=7998;\nUPDATE t2 SET b=411 WHERE a=7999;\nUPDATE t2 SET b=66984 WHERE a=8000;\nUPDATE t2 SET b=94812 WHERE a=8001;\nUPDATE t2 SET b=40123 WHERE a=8002;\nUPDATE t2 SET b=94565 WHERE a=8003;\nUPDATE t2 SET b=46444 WHERE a=8004;\nUPDATE t2 SET b=97579 WHERE a=8005;\nUPDATE t2 SET b=99286 WHERE a=8006;\nUPDATE t2 SET b=56677 WHERE a=8007;\nUPDATE t2 SET b=6491 WHERE a=8008;\nUPDATE t2 SET b=71986 WHERE a=8009;\nUPDATE t2 SET b=4429 WHERE a=8010;\nUPDATE t2 SET b=18021 WHERE a=8011;\nUPDATE t2 SET b=47915 WHERE a=8012;\nUPDATE t2 SET b=41606 WHERE a=8013;\nUPDATE t2 SET b=43081 WHERE a=8014;\nUPDATE t2 SET b=12157 WHERE a=8015;\nUPDATE t2 SET b=89786 WHERE a=8016;\nUPDATE t2 SET b=90409 WHERE a=8017;\nUPDATE t2 SET b=47933 WHERE a=8018;\nUPDATE t2 SET b=11315 WHERE a=8019;\nUPDATE t2 SET b=20943 WHERE a=8020;\nUPDATE t2 SET b=63751 WHERE a=8021;\nUPDATE t2 SET b=12391 WHERE a=8022;\nUPDATE t2 SET b=13411 WHERE a=8023;\nUPDATE t2 SET b=66131 WHERE a=8024;\nUPDATE t2 SET b=39884 WHERE a=8025;\nUPDATE t2 SET b=78608 WHERE a=8026;\nUPDATE t2 SET b=46744 WHERE a=8027;\nUPDATE t2 SET b=59409 WHERE a=8028;\nUPDATE t2 SET b=57756 WHERE a=8029;\nUPDATE t2 SET b=80971 WHERE a=8030;\nUPDATE t2 SET b=27553 WHERE a=8031;\nUPDATE t2 SET b=60904 WHERE a=8032;\nUPDATE t2 SET b=86316 WHERE a=8033;\nUPDATE t2 SET b=36250 WHERE a=8034;\nUPDATE t2 SET b=54852 WHERE a=8035;\nUPDATE t2 SET b=79848 WHERE a=8036;\nUPDATE t2 SET b=6448 WHERE a=8037;\nUPDATE t2 SET b=26502 WHERE a=8038;\nUPDATE t2 SET b=96937 WHERE a=8039;\nUPDATE t2 SET b=97169 WHERE a=8040;\nUPDATE t2 SET b=23244 WHERE a=8041;\nUPDATE t2 SET b=20756 WHERE a=8042;\nUPDATE t2 SET b=1225 WHERE a=8043;\nUPDATE t2 SET b=97872 WHERE a=8044;\nUPDATE t2 SET b=67093 WHERE a=8045;\nUPDATE t2 SET b=79446 WHERE a=8046;\nUPDATE t2 SET b=65059 WHERE a=8047;\nUPDATE t2 SET b=57386 WHERE a=8048;\nUPDATE t2 SET b=86346 WHERE a=8049;\nUPDATE t2 SET b=58001 WHERE a=8050;\nUPDATE t2 SET b=48601 WHERE a=8051;\nUPDATE t2 SET b=89282 WHERE a=8052;\nUPDATE t2 SET b=71679 WHERE a=8053;\nUPDATE t2 SET b=13325 WHERE a=8054;\nUPDATE t2 SET b=71194 WHERE a=8055;\nUPDATE t2 SET b=18836 WHERE a=8056;\nUPDATE t2 SET b=46264 WHERE a=8057;\nUPDATE t2 SET b=47387 WHERE a=8058;\nUPDATE t2 SET b=94447 WHERE a=8059;\nUPDATE t2 SET b=45161 WHERE a=8060;\nUPDATE t2 SET b=82912 WHERE a=8061;\nUPDATE t2 SET b=159 WHERE a=8062;\nUPDATE t2 SET b=2279 WHERE a=8063;\nUPDATE t2 SET b=731 WHERE a=8064;\nUPDATE t2 SET b=51617 WHERE a=8065;\nUPDATE t2 SET b=92031 WHERE a=8066;\nUPDATE t2 SET b=39960 WHERE a=8067;\nUPDATE t2 SET b=90244 WHERE a=8068;\nUPDATE t2 SET b=94025 WHERE a=8069;\nUPDATE t2 SET b=69330 WHERE a=8070;\nUPDATE t2 SET b=72944 WHERE a=8071;\nUPDATE t2 SET b=85225 WHERE a=8072;\nUPDATE t2 SET b=72877 WHERE a=8073;\nUPDATE t2 SET b=43044 WHERE a=8074;\nUPDATE t2 SET b=20332 WHERE a=8075;\nUPDATE t2 SET b=66182 WHERE a=8076;\nUPDATE t2 SET b=24332 WHERE a=8077;\nUPDATE t2 SET b=17842 WHERE a=8078;\nUPDATE t2 SET b=76402 WHERE a=8079;\nUPDATE t2 SET b=12004 WHERE a=8080;\nUPDATE t2 SET b=98914 WHERE a=8081;\nUPDATE t2 SET b=74983 WHERE a=8082;\nUPDATE t2 SET b=62436 WHERE a=8083;\nUPDATE t2 SET b=67799 WHERE a=8084;\nUPDATE t2 SET b=65948 WHERE a=8085;\nUPDATE t2 SET b=13213 WHERE a=8086;\nUPDATE t2 SET b=43155 WHERE a=8087;\nUPDATE t2 SET b=90414 WHERE a=8088;\nUPDATE t2 SET b=44037 WHERE a=8089;\nUPDATE t2 SET b=28033 WHERE a=8090;\nUPDATE t2 SET b=53591 WHERE a=8091;\nUPDATE t2 SET b=36780 WHERE a=8092;\nUPDATE t2 SET b=81500 WHERE a=8093;\nUPDATE t2 SET b=62514 WHERE a=8094;\nUPDATE t2 SET b=93894 WHERE a=8095;\nUPDATE t2 SET b=47608 WHERE a=8096;\nUPDATE t2 SET b=48269 WHERE a=8097;\nUPDATE t2 SET b=58503 WHERE a=8098;\nUPDATE t2 SET b=77805 WHERE a=8099;\nUPDATE t2 SET b=69708 WHERE a=8100;\nUPDATE t2 SET b=9109 WHERE a=8101;\nUPDATE t2 SET b=94892 WHERE a=8102;\nUPDATE t2 SET b=16646 WHERE a=8103;\nUPDATE t2 SET b=50158 WHERE a=8104;\nUPDATE t2 SET b=67235 WHERE a=8105;\nUPDATE t2 SET b=92217 WHERE a=8106;\nUPDATE t2 SET b=28908 WHERE a=8107;\nUPDATE t2 SET b=89306 WHERE a=8108;\nUPDATE t2 SET b=27496 WHERE a=8109;\nUPDATE t2 SET b=8964 WHERE a=8110;\nUPDATE t2 SET b=42135 WHERE a=8111;\nUPDATE t2 SET b=47102 WHERE a=8112;\nUPDATE t2 SET b=18427 WHERE a=8113;\nUPDATE t2 SET b=76063 WHERE a=8114;\nUPDATE t2 SET b=48873 WHERE a=8115;\nUPDATE t2 SET b=7560 WHERE a=8116;\nUPDATE t2 SET b=71500 WHERE a=8117;\nUPDATE t2 SET b=70616 WHERE a=8118;\nUPDATE t2 SET b=74693 WHERE a=8119;\nUPDATE t2 SET b=80632 WHERE a=8120;\nUPDATE t2 SET b=27870 WHERE a=8121;\nUPDATE t2 SET b=89043 WHERE a=8122;\nUPDATE t2 SET b=20689 WHERE a=8123;\nUPDATE t2 SET b=98281 WHERE a=8124;\nUPDATE t2 SET b=60618 WHERE a=8125;\nUPDATE t2 SET b=78946 WHERE a=8126;\nUPDATE t2 SET b=40141 WHERE a=8127;\nUPDATE t2 SET b=27615 WHERE a=8128;\nUPDATE t2 SET b=15150 WHERE a=8129;\nUPDATE t2 SET b=1182 WHERE a=8130;\nUPDATE t2 SET b=82447 WHERE a=8131;\nUPDATE t2 SET b=77462 WHERE a=8132;\nUPDATE t2 SET b=15484 WHERE a=8133;\nUPDATE t2 SET b=30420 WHERE a=8134;\nUPDATE t2 SET b=86351 WHERE a=8135;\nUPDATE t2 SET b=70688 WHERE a=8136;\nUPDATE t2 SET b=36650 WHERE a=8137;\nUPDATE t2 SET b=24840 WHERE a=8138;\nUPDATE t2 SET b=90460 WHERE a=8139;\nUPDATE t2 SET b=87843 WHERE a=8140;\nUPDATE t2 SET b=80374 WHERE a=8141;\nUPDATE t2 SET b=60437 WHERE a=8142;\nUPDATE t2 SET b=55078 WHERE a=8143;\nUPDATE t2 SET b=82890 WHERE a=8144;\nUPDATE t2 SET b=35362 WHERE a=8145;\nUPDATE t2 SET b=42336 WHERE a=8146;\nUPDATE t2 SET b=87712 WHERE a=8147;\nUPDATE t2 SET b=90035 WHERE a=8148;\nUPDATE t2 SET b=67236 WHERE a=8149;\nUPDATE t2 SET b=60007 WHERE a=8150;\nUPDATE t2 SET b=26392 WHERE a=8151;\nUPDATE t2 SET b=58253 WHERE a=8152;\nUPDATE t2 SET b=61246 WHERE a=8153;\nUPDATE t2 SET b=55269 WHERE a=8154;\nUPDATE t2 SET b=97313 WHERE a=8155;\nUPDATE t2 SET b=61531 WHERE a=8156;\nUPDATE t2 SET b=1966 WHERE a=8157;\nUPDATE t2 SET b=88324 WHERE a=8158;\nUPDATE t2 SET b=81995 WHERE a=8159;\nUPDATE t2 SET b=15221 WHERE a=8160;\nUPDATE t2 SET b=53432 WHERE a=8161;\nUPDATE t2 SET b=41958 WHERE a=8162;\nUPDATE t2 SET b=58475 WHERE a=8163;\nUPDATE t2 SET b=74220 WHERE a=8164;\nUPDATE t2 SET b=97531 WHERE a=8165;\nUPDATE t2 SET b=49137 WHERE a=8166;\nUPDATE t2 SET b=59990 WHERE a=8167;\nUPDATE t2 SET b=80624 WHERE a=8168;\nUPDATE t2 SET b=35736 WHERE a=8169;\nUPDATE t2 SET b=86273 WHERE a=8170;\nUPDATE t2 SET b=70695 WHERE a=8171;\nUPDATE t2 SET b=2849 WHERE a=8172;\nUPDATE t2 SET b=6191 WHERE a=8173;\nUPDATE t2 SET b=10315 WHERE a=8174;\nUPDATE t2 SET b=71473 WHERE a=8175;\nUPDATE t2 SET b=90928 WHERE a=8176;\nUPDATE t2 SET b=2219 WHERE a=8177;\nUPDATE t2 SET b=31794 WHERE a=8178;\nUPDATE t2 SET b=48503 WHERE a=8179;\nUPDATE t2 SET b=82352 WHERE a=8180;\nUPDATE t2 SET b=86084 WHERE a=8181;\nUPDATE t2 SET b=28326 WHERE a=8182;\nUPDATE t2 SET b=91378 WHERE a=8183;\nUPDATE t2 SET b=5988 WHERE a=8184;\nUPDATE t2 SET b=13032 WHERE a=8185;\nUPDATE t2 SET b=66940 WHERE a=8186;\nUPDATE t2 SET b=13219 WHERE a=8187;\nUPDATE t2 SET b=8348 WHERE a=8188;\nUPDATE t2 SET b=48348 WHERE a=8189;\nUPDATE t2 SET b=62874 WHERE a=8190;\nUPDATE t2 SET b=35968 WHERE a=8191;\nUPDATE t2 SET b=7093 WHERE a=8192;\nUPDATE t2 SET b=24911 WHERE a=8193;\nUPDATE t2 SET b=90327 WHERE a=8194;\nUPDATE t2 SET b=11042 WHERE a=8195;\nUPDATE t2 SET b=39361 WHERE a=8196;\nUPDATE t2 SET b=60883 WHERE a=8197;\nUPDATE t2 SET b=3903 WHERE a=8198;\nUPDATE t2 SET b=39320 WHERE a=8199;\nUPDATE t2 SET b=57538 WHERE a=8200;\nUPDATE t2 SET b=43640 WHERE a=8201;\nUPDATE t2 SET b=78601 WHERE a=8202;\nUPDATE t2 SET b=86112 WHERE a=8203;\nUPDATE t2 SET b=12351 WHERE a=8204;\nUPDATE t2 SET b=29721 WHERE a=8205;\nUPDATE t2 SET b=18864 WHERE a=8206;\nUPDATE t2 SET b=22637 WHERE a=8207;\nUPDATE t2 SET b=90372 WHERE a=8208;\nUPDATE t2 SET b=72683 WHERE a=8209;\nUPDATE t2 SET b=8871 WHERE a=8210;\nUPDATE t2 SET b=13948 WHERE a=8211;\nUPDATE t2 SET b=98491 WHERE a=8212;\nUPDATE t2 SET b=58855 WHERE a=8213;\nUPDATE t2 SET b=24813 WHERE a=8214;\nUPDATE t2 SET b=35820 WHERE a=8215;\nUPDATE t2 SET b=78554 WHERE a=8216;\nUPDATE t2 SET b=27463 WHERE a=8217;\nUPDATE t2 SET b=7328 WHERE a=8218;\nUPDATE t2 SET b=78722 WHERE a=8219;\nUPDATE t2 SET b=8989 WHERE a=8220;\nUPDATE t2 SET b=75324 WHERE a=8221;\nUPDATE t2 SET b=60101 WHERE a=8222;\nUPDATE t2 SET b=99011 WHERE a=8223;\nUPDATE t2 SET b=41938 WHERE a=8224;\nUPDATE t2 SET b=87341 WHERE a=8225;\nUPDATE t2 SET b=97895 WHERE a=8226;\nUPDATE t2 SET b=53274 WHERE a=8227;\nUPDATE t2 SET b=34824 WHERE a=8228;\nUPDATE t2 SET b=11054 WHERE a=8229;\nUPDATE t2 SET b=92035 WHERE a=8230;\nUPDATE t2 SET b=15083 WHERE a=8231;\nUPDATE t2 SET b=56141 WHERE a=8232;\nUPDATE t2 SET b=71154 WHERE a=8233;\nUPDATE t2 SET b=92574 WHERE a=8234;\nUPDATE t2 SET b=89246 WHERE a=8235;\nUPDATE t2 SET b=39106 WHERE a=8236;\nUPDATE t2 SET b=39274 WHERE a=8237;\nUPDATE t2 SET b=86377 WHERE a=8238;\nUPDATE t2 SET b=4180 WHERE a=8239;\nUPDATE t2 SET b=1234 WHERE a=8240;\nUPDATE t2 SET b=70770 WHERE a=8241;\nUPDATE t2 SET b=51211 WHERE a=8242;\nUPDATE t2 SET b=88550 WHERE a=8243;\nUPDATE t2 SET b=62820 WHERE a=8244;\nUPDATE t2 SET b=15374 WHERE a=8245;\nUPDATE t2 SET b=70820 WHERE a=8246;\nUPDATE t2 SET b=12017 WHERE a=8247;\nUPDATE t2 SET b=48708 WHERE a=8248;\nUPDATE t2 SET b=4063 WHERE a=8249;\nUPDATE t2 SET b=4436 WHERE a=8250;\nUPDATE t2 SET b=12474 WHERE a=8251;\nUPDATE t2 SET b=50472 WHERE a=8252;\nUPDATE t2 SET b=41365 WHERE a=8253;\nUPDATE t2 SET b=64605 WHERE a=8254;\nUPDATE t2 SET b=64547 WHERE a=8255;\nUPDATE t2 SET b=20858 WHERE a=8256;\nUPDATE t2 SET b=63199 WHERE a=8257;\nUPDATE t2 SET b=21641 WHERE a=8258;\nUPDATE t2 SET b=29604 WHERE a=8259;\nUPDATE t2 SET b=19315 WHERE a=8260;\nUPDATE t2 SET b=1885 WHERE a=8261;\nUPDATE t2 SET b=42441 WHERE a=8262;\nUPDATE t2 SET b=45704 WHERE a=8263;\nUPDATE t2 SET b=18697 WHERE a=8264;\nUPDATE t2 SET b=31870 WHERE a=8265;\nUPDATE t2 SET b=83957 WHERE a=8266;\nUPDATE t2 SET b=10201 WHERE a=8267;\nUPDATE t2 SET b=66846 WHERE a=8268;\nUPDATE t2 SET b=77190 WHERE a=8269;\nUPDATE t2 SET b=21479 WHERE a=8270;\nUPDATE t2 SET b=46143 WHERE a=8271;\nUPDATE t2 SET b=4681 WHERE a=8272;\nUPDATE t2 SET b=88519 WHERE a=8273;\nUPDATE t2 SET b=94646 WHERE a=8274;\nUPDATE t2 SET b=3361 WHERE a=8275;\nUPDATE t2 SET b=17547 WHERE a=8276;\nUPDATE t2 SET b=29436 WHERE a=8277;\nUPDATE t2 SET b=8296 WHERE a=8278;\nUPDATE t2 SET b=92168 WHERE a=8279;\nUPDATE t2 SET b=40455 WHERE a=8280;\nUPDATE t2 SET b=40823 WHERE a=8281;\nUPDATE t2 SET b=32140 WHERE a=8282;\nUPDATE t2 SET b=56123 WHERE a=8283;\nUPDATE t2 SET b=89213 WHERE a=8284;\nUPDATE t2 SET b=84813 WHERE a=8285;\nUPDATE t2 SET b=82820 WHERE a=8286;\nUPDATE t2 SET b=68669 WHERE a=8287;\nUPDATE t2 SET b=28300 WHERE a=8288;\nUPDATE t2 SET b=45013 WHERE a=8289;\nUPDATE t2 SET b=71780 WHERE a=8290;\nUPDATE t2 SET b=54498 WHERE a=8291;\nUPDATE t2 SET b=74038 WHERE a=8292;\nUPDATE t2 SET b=84404 WHERE a=8293;\nUPDATE t2 SET b=91228 WHERE a=8294;\nUPDATE t2 SET b=69974 WHERE a=8295;\nUPDATE t2 SET b=61171 WHERE a=8296;\nUPDATE t2 SET b=93954 WHERE a=8297;\nUPDATE t2 SET b=56054 WHERE a=8298;\nUPDATE t2 SET b=84651 WHERE a=8299;\nUPDATE t2 SET b=96995 WHERE a=8300;\nUPDATE t2 SET b=65084 WHERE a=8301;\nUPDATE t2 SET b=69536 WHERE a=8302;\nUPDATE t2 SET b=53279 WHERE a=8303;\nUPDATE t2 SET b=36331 WHERE a=8304;\nUPDATE t2 SET b=31356 WHERE a=8305;\nUPDATE t2 SET b=47136 WHERE a=8306;\nUPDATE t2 SET b=69763 WHERE a=8307;\nUPDATE t2 SET b=43402 WHERE a=8308;\nUPDATE t2 SET b=52983 WHERE a=8309;\nUPDATE t2 SET b=96750 WHERE a=8310;\nUPDATE t2 SET b=21211 WHERE a=8311;\nUPDATE t2 SET b=83360 WHERE a=8312;\nUPDATE t2 SET b=8087 WHERE a=8313;\nUPDATE t2 SET b=49679 WHERE a=8314;\nUPDATE t2 SET b=34648 WHERE a=8315;\nUPDATE t2 SET b=63557 WHERE a=8316;\nUPDATE t2 SET b=7250 WHERE a=8317;\nUPDATE t2 SET b=80921 WHERE a=8318;\nUPDATE t2 SET b=55184 WHERE a=8319;\nUPDATE t2 SET b=15534 WHERE a=8320;\nUPDATE t2 SET b=60171 WHERE a=8321;\nUPDATE t2 SET b=52846 WHERE a=8322;\nUPDATE t2 SET b=50166 WHERE a=8323;\nUPDATE t2 SET b=4883 WHERE a=8324;\nUPDATE t2 SET b=77893 WHERE a=8325;\nUPDATE t2 SET b=52442 WHERE a=8326;\nUPDATE t2 SET b=65918 WHERE a=8327;\nUPDATE t2 SET b=75607 WHERE a=8328;\nUPDATE t2 SET b=86464 WHERE a=8329;\nUPDATE t2 SET b=90676 WHERE a=8330;\nUPDATE t2 SET b=48958 WHERE a=8331;\nUPDATE t2 SET b=2297 WHERE a=8332;\nUPDATE t2 SET b=40894 WHERE a=8333;\nUPDATE t2 SET b=76694 WHERE a=8334;\nUPDATE t2 SET b=10784 WHERE a=8335;\nUPDATE t2 SET b=88192 WHERE a=8336;\nUPDATE t2 SET b=58575 WHERE a=8337;\nUPDATE t2 SET b=7947 WHERE a=8338;\nUPDATE t2 SET b=8500 WHERE a=8339;\nUPDATE t2 SET b=28833 WHERE a=8340;\nUPDATE t2 SET b=95122 WHERE a=8341;\nUPDATE t2 SET b=9653 WHERE a=8342;\nUPDATE t2 SET b=41501 WHERE a=8343;\nUPDATE t2 SET b=37618 WHERE a=8344;\nUPDATE t2 SET b=33064 WHERE a=8345;\nUPDATE t2 SET b=33945 WHERE a=8346;\nUPDATE t2 SET b=4339 WHERE a=8347;\nUPDATE t2 SET b=35537 WHERE a=8348;\nUPDATE t2 SET b=29061 WHERE a=8349;\nUPDATE t2 SET b=2381 WHERE a=8350;\nUPDATE t2 SET b=35180 WHERE a=8351;\nUPDATE t2 SET b=67829 WHERE a=8352;\nUPDATE t2 SET b=87992 WHERE a=8353;\nUPDATE t2 SET b=12731 WHERE a=8354;\nUPDATE t2 SET b=33902 WHERE a=8355;\nUPDATE t2 SET b=81214 WHERE a=8356;\nUPDATE t2 SET b=93230 WHERE a=8357;\nUPDATE t2 SET b=49093 WHERE a=8358;\nUPDATE t2 SET b=50752 WHERE a=8359;\nUPDATE t2 SET b=88288 WHERE a=8360;\nUPDATE t2 SET b=17137 WHERE a=8361;\nUPDATE t2 SET b=78844 WHERE a=8362;\nUPDATE t2 SET b=82584 WHERE a=8363;\nUPDATE t2 SET b=42954 WHERE a=8364;\nUPDATE t2 SET b=2668 WHERE a=8365;\nUPDATE t2 SET b=42402 WHERE a=8366;\nUPDATE t2 SET b=52635 WHERE a=8367;\nUPDATE t2 SET b=30156 WHERE a=8368;\nUPDATE t2 SET b=78841 WHERE a=8369;\nUPDATE t2 SET b=17973 WHERE a=8370;\nUPDATE t2 SET b=65542 WHERE a=8371;\nUPDATE t2 SET b=53911 WHERE a=8372;\nUPDATE t2 SET b=61111 WHERE a=8373;\nUPDATE t2 SET b=97250 WHERE a=8374;\nUPDATE t2 SET b=44261 WHERE a=8375;\nUPDATE t2 SET b=6218 WHERE a=8376;\nUPDATE t2 SET b=54013 WHERE a=8377;\nUPDATE t2 SET b=42619 WHERE a=8378;\nUPDATE t2 SET b=23845 WHERE a=8379;\nUPDATE t2 SET b=56595 WHERE a=8380;\nUPDATE t2 SET b=21808 WHERE a=8381;\nUPDATE t2 SET b=84312 WHERE a=8382;\nUPDATE t2 SET b=68289 WHERE a=8383;\nUPDATE t2 SET b=93661 WHERE a=8384;\nUPDATE t2 SET b=43821 WHERE a=8385;\nUPDATE t2 SET b=31115 WHERE a=8386;\nUPDATE t2 SET b=30218 WHERE a=8387;\nUPDATE t2 SET b=65646 WHERE a=8388;\nUPDATE t2 SET b=89007 WHERE a=8389;\nUPDATE t2 SET b=95087 WHERE a=8390;\nUPDATE t2 SET b=49357 WHERE a=8391;\nUPDATE t2 SET b=40306 WHERE a=8392;\nUPDATE t2 SET b=88564 WHERE a=8393;\nUPDATE t2 SET b=12309 WHERE a=8394;\nUPDATE t2 SET b=30157 WHERE a=8395;\nUPDATE t2 SET b=3238 WHERE a=8396;\nUPDATE t2 SET b=11773 WHERE a=8397;\nUPDATE t2 SET b=56635 WHERE a=8398;\nUPDATE t2 SET b=75173 WHERE a=8399;\nUPDATE t2 SET b=83542 WHERE a=8400;\nUPDATE t2 SET b=73235 WHERE a=8401;\nUPDATE t2 SET b=40489 WHERE a=8402;\nUPDATE t2 SET b=40750 WHERE a=8403;\nUPDATE t2 SET b=69870 WHERE a=8404;\nUPDATE t2 SET b=83807 WHERE a=8405;\nUPDATE t2 SET b=46913 WHERE a=8406;\nUPDATE t2 SET b=84696 WHERE a=8407;\nUPDATE t2 SET b=57378 WHERE a=8408;\nUPDATE t2 SET b=36807 WHERE a=8409;\nUPDATE t2 SET b=40660 WHERE a=8410;\nUPDATE t2 SET b=90525 WHERE a=8411;\nUPDATE t2 SET b=76013 WHERE a=8412;\nUPDATE t2 SET b=10624 WHERE a=8413;\nUPDATE t2 SET b=37776 WHERE a=8414;\nUPDATE t2 SET b=83799 WHERE a=8415;\nUPDATE t2 SET b=71391 WHERE a=8416;\nUPDATE t2 SET b=98365 WHERE a=8417;\nUPDATE t2 SET b=16315 WHERE a=8418;\nUPDATE t2 SET b=42016 WHERE a=8419;\nUPDATE t2 SET b=7157 WHERE a=8420;\nUPDATE t2 SET b=37980 WHERE a=8421;\nUPDATE t2 SET b=4957 WHERE a=8422;\nUPDATE t2 SET b=80902 WHERE a=8423;\nUPDATE t2 SET b=48608 WHERE a=8424;\nUPDATE t2 SET b=6270 WHERE a=8425;\nUPDATE t2 SET b=53994 WHERE a=8426;\nUPDATE t2 SET b=4240 WHERE a=8427;\nUPDATE t2 SET b=12782 WHERE a=8428;\nUPDATE t2 SET b=10465 WHERE a=8429;\nUPDATE t2 SET b=20464 WHERE a=8430;\nUPDATE t2 SET b=36242 WHERE a=8431;\nUPDATE t2 SET b=51788 WHERE a=8432;\nUPDATE t2 SET b=1412 WHERE a=8433;\nUPDATE t2 SET b=66864 WHERE a=8434;\nUPDATE t2 SET b=76161 WHERE a=8435;\nUPDATE t2 SET b=51807 WHERE a=8436;\nUPDATE t2 SET b=3838 WHERE a=8437;\nUPDATE t2 SET b=22495 WHERE a=8438;\nUPDATE t2 SET b=26333 WHERE a=8439;\nUPDATE t2 SET b=70502 WHERE a=8440;\nUPDATE t2 SET b=28861 WHERE a=8441;\nUPDATE t2 SET b=26636 WHERE a=8442;\nUPDATE t2 SET b=90876 WHERE a=8443;\nUPDATE t2 SET b=96445 WHERE a=8444;\nUPDATE t2 SET b=19849 WHERE a=8445;\nUPDATE t2 SET b=72216 WHERE a=8446;\nUPDATE t2 SET b=36374 WHERE a=8447;\nUPDATE t2 SET b=98987 WHERE a=8448;\nUPDATE t2 SET b=83001 WHERE a=8449;\nUPDATE t2 SET b=15025 WHERE a=8450;\nUPDATE t2 SET b=7585 WHERE a=8451;\nUPDATE t2 SET b=75126 WHERE a=8452;\nUPDATE t2 SET b=98742 WHERE a=8453;\nUPDATE t2 SET b=7685 WHERE a=8454;\nUPDATE t2 SET b=58627 WHERE a=8455;\nUPDATE t2 SET b=48136 WHERE a=8456;\nUPDATE t2 SET b=15803 WHERE a=8457;\nUPDATE t2 SET b=3078 WHERE a=8458;\nUPDATE t2 SET b=45281 WHERE a=8459;\nUPDATE t2 SET b=12569 WHERE a=8460;\nUPDATE t2 SET b=41613 WHERE a=8461;\nUPDATE t2 SET b=65364 WHERE a=8462;\nUPDATE t2 SET b=15349 WHERE a=8463;\nUPDATE t2 SET b=38433 WHERE a=8464;\nUPDATE t2 SET b=76774 WHERE a=8465;\nUPDATE t2 SET b=31884 WHERE a=8466;\nUPDATE t2 SET b=27458 WHERE a=8467;\nUPDATE t2 SET b=11425 WHERE a=8468;\nUPDATE t2 SET b=55465 WHERE a=8469;\nUPDATE t2 SET b=39985 WHERE a=8470;\nUPDATE t2 SET b=4427 WHERE a=8471;\nUPDATE t2 SET b=86705 WHERE a=8472;\nUPDATE t2 SET b=88088 WHERE a=8473;\nUPDATE t2 SET b=43864 WHERE a=8474;\nUPDATE t2 SET b=72451 WHERE a=8475;\nUPDATE t2 SET b=18072 WHERE a=8476;\nUPDATE t2 SET b=71884 WHERE a=8477;\nUPDATE t2 SET b=50100 WHERE a=8478;\nUPDATE t2 SET b=51131 WHERE a=8479;\nUPDATE t2 SET b=39450 WHERE a=8480;\nUPDATE t2 SET b=4057 WHERE a=8481;\nUPDATE t2 SET b=11649 WHERE a=8482;\nUPDATE t2 SET b=98272 WHERE a=8483;\nUPDATE t2 SET b=68526 WHERE a=8484;\nUPDATE t2 SET b=35724 WHERE a=8485;\nUPDATE t2 SET b=25501 WHERE a=8486;\nUPDATE t2 SET b=47885 WHERE a=8487;\nUPDATE t2 SET b=34060 WHERE a=8488;\nUPDATE t2 SET b=82318 WHERE a=8489;\nUPDATE t2 SET b=19833 WHERE a=8490;\nUPDATE t2 SET b=18967 WHERE a=8491;\nUPDATE t2 SET b=98300 WHERE a=8492;\nUPDATE t2 SET b=60038 WHERE a=8493;\nUPDATE t2 SET b=42885 WHERE a=8494;\nUPDATE t2 SET b=90786 WHERE a=8495;\nUPDATE t2 SET b=45264 WHERE a=8496;\nUPDATE t2 SET b=83032 WHERE a=8497;\nUPDATE t2 SET b=61019 WHERE a=8498;\nUPDATE t2 SET b=12747 WHERE a=8499;\nUPDATE t2 SET b=19494 WHERE a=8500;\nUPDATE t2 SET b=73268 WHERE a=8501;\nUPDATE t2 SET b=90839 WHERE a=8502;\nUPDATE t2 SET b=54200 WHERE a=8503;\nUPDATE t2 SET b=22424 WHERE a=8504;\nUPDATE t2 SET b=76210 WHERE a=8505;\nUPDATE t2 SET b=93670 WHERE a=8506;\nUPDATE t2 SET b=16828 WHERE a=8507;\nUPDATE t2 SET b=34904 WHERE a=8508;\nUPDATE t2 SET b=55381 WHERE a=8509;\nUPDATE t2 SET b=79556 WHERE a=8510;\nUPDATE t2 SET b=57740 WHERE a=8511;\nUPDATE t2 SET b=68544 WHERE a=8512;\nUPDATE t2 SET b=87044 WHERE a=8513;\nUPDATE t2 SET b=17613 WHERE a=8514;\nUPDATE t2 SET b=74027 WHERE a=8515;\nUPDATE t2 SET b=8226 WHERE a=8516;\nUPDATE t2 SET b=82668 WHERE a=8517;\nUPDATE t2 SET b=179 WHERE a=8518;\nUPDATE t2 SET b=26174 WHERE a=8519;\nUPDATE t2 SET b=94682 WHERE a=8520;\nUPDATE t2 SET b=13267 WHERE a=8521;\nUPDATE t2 SET b=82896 WHERE a=8522;\nUPDATE t2 SET b=70350 WHERE a=8523;\nUPDATE t2 SET b=45864 WHERE a=8524;\nUPDATE t2 SET b=97054 WHERE a=8525;\nUPDATE t2 SET b=64007 WHERE a=8526;\nUPDATE t2 SET b=77441 WHERE a=8527;\nUPDATE t2 SET b=43185 WHERE a=8528;\nUPDATE t2 SET b=85770 WHERE a=8529;\nUPDATE t2 SET b=26727 WHERE a=8530;\nUPDATE t2 SET b=13988 WHERE a=8531;\nUPDATE t2 SET b=93457 WHERE a=8532;\nUPDATE t2 SET b=14491 WHERE a=8533;\nUPDATE t2 SET b=13584 WHERE a=8534;\nUPDATE t2 SET b=72394 WHERE a=8535;\nUPDATE t2 SET b=97433 WHERE a=8536;\nUPDATE t2 SET b=51751 WHERE a=8537;\nUPDATE t2 SET b=32997 WHERE a=8538;\nUPDATE t2 SET b=62029 WHERE a=8539;\nUPDATE t2 SET b=89936 WHERE a=8540;\nUPDATE t2 SET b=18943 WHERE a=8541;\nUPDATE t2 SET b=20389 WHERE a=8542;\nUPDATE t2 SET b=63744 WHERE a=8543;\nUPDATE t2 SET b=60146 WHERE a=8544;\nUPDATE t2 SET b=35182 WHERE a=8545;\nUPDATE t2 SET b=84955 WHERE a=8546;\nUPDATE t2 SET b=95377 WHERE a=8547;\nUPDATE t2 SET b=46174 WHERE a=8548;\nUPDATE t2 SET b=79583 WHERE a=8549;\nUPDATE t2 SET b=90875 WHERE a=8550;\nUPDATE t2 SET b=60644 WHERE a=8551;\nUPDATE t2 SET b=2546 WHERE a=8552;\nUPDATE t2 SET b=18842 WHERE a=8553;\nUPDATE t2 SET b=8440 WHERE a=8554;\nUPDATE t2 SET b=3519 WHERE a=8555;\nUPDATE t2 SET b=49682 WHERE a=8556;\nUPDATE t2 SET b=82947 WHERE a=8557;\nUPDATE t2 SET b=20490 WHERE a=8558;\nUPDATE t2 SET b=880 WHERE a=8559;\nUPDATE t2 SET b=77905 WHERE a=8560;\nUPDATE t2 SET b=79187 WHERE a=8561;\nUPDATE t2 SET b=8199 WHERE a=8562;\nUPDATE t2 SET b=91076 WHERE a=8563;\nUPDATE t2 SET b=98145 WHERE a=8564;\nUPDATE t2 SET b=88470 WHERE a=8565;\nUPDATE t2 SET b=49372 WHERE a=8566;\nUPDATE t2 SET b=74426 WHERE a=8567;\nUPDATE t2 SET b=37540 WHERE a=8568;\nUPDATE t2 SET b=77026 WHERE a=8569;\nUPDATE t2 SET b=38790 WHERE a=8570;\nUPDATE t2 SET b=62249 WHERE a=8571;\nUPDATE t2 SET b=34526 WHERE a=8572;\nUPDATE t2 SET b=46515 WHERE a=8573;\nUPDATE t2 SET b=79045 WHERE a=8574;\nUPDATE t2 SET b=48745 WHERE a=8575;\nUPDATE t2 SET b=75818 WHERE a=8576;\nUPDATE t2 SET b=82684 WHERE a=8577;\nUPDATE t2 SET b=70407 WHERE a=8578;\nUPDATE t2 SET b=34 WHERE a=8579;\nUPDATE t2 SET b=30798 WHERE a=8580;\nUPDATE t2 SET b=79163 WHERE a=8581;\nUPDATE t2 SET b=49831 WHERE a=8582;\nUPDATE t2 SET b=57543 WHERE a=8583;\nUPDATE t2 SET b=60331 WHERE a=8584;\nUPDATE t2 SET b=40026 WHERE a=8585;\nUPDATE t2 SET b=87894 WHERE a=8586;\nUPDATE t2 SET b=25007 WHERE a=8587;\nUPDATE t2 SET b=57273 WHERE a=8588;\nUPDATE t2 SET b=79795 WHERE a=8589;\nUPDATE t2 SET b=5947 WHERE a=8590;\nUPDATE t2 SET b=45881 WHERE a=8591;\nUPDATE t2 SET b=23043 WHERE a=8592;\nUPDATE t2 SET b=12200 WHERE a=8593;\nUPDATE t2 SET b=80714 WHERE a=8594;\nUPDATE t2 SET b=91322 WHERE a=8595;\nUPDATE t2 SET b=99411 WHERE a=8596;\nUPDATE t2 SET b=66753 WHERE a=8597;\nUPDATE t2 SET b=63012 WHERE a=8598;\nUPDATE t2 SET b=24859 WHERE a=8599;\nUPDATE t2 SET b=44251 WHERE a=8600;\nUPDATE t2 SET b=62474 WHERE a=8601;\nUPDATE t2 SET b=94589 WHERE a=8602;\nUPDATE t2 SET b=4135 WHERE a=8603;\nUPDATE t2 SET b=11010 WHERE a=8604;\nUPDATE t2 SET b=49942 WHERE a=8605;\nUPDATE t2 SET b=49943 WHERE a=8606;\nUPDATE t2 SET b=53042 WHERE a=8607;\nUPDATE t2 SET b=41062 WHERE a=8608;\nUPDATE t2 SET b=28478 WHERE a=8609;\nUPDATE t2 SET b=44792 WHERE a=8610;\nUPDATE t2 SET b=939 WHERE a=8611;\nUPDATE t2 SET b=65882 WHERE a=8612;\nUPDATE t2 SET b=13546 WHERE a=8613;\nUPDATE t2 SET b=25280 WHERE a=8614;\nUPDATE t2 SET b=33144 WHERE a=8615;\nUPDATE t2 SET b=1039 WHERE a=8616;\nUPDATE t2 SET b=33506 WHERE a=8617;\nUPDATE t2 SET b=50173 WHERE a=8618;\nUPDATE t2 SET b=53764 WHERE a=8619;\nUPDATE t2 SET b=79754 WHERE a=8620;\nUPDATE t2 SET b=68055 WHERE a=8621;\nUPDATE t2 SET b=93226 WHERE a=8622;\nUPDATE t2 SET b=99111 WHERE a=8623;\nUPDATE t2 SET b=84378 WHERE a=8624;\nUPDATE t2 SET b=2520 WHERE a=8625;\nUPDATE t2 SET b=64422 WHERE a=8626;\nUPDATE t2 SET b=11706 WHERE a=8627;\nUPDATE t2 SET b=73649 WHERE a=8628;\nUPDATE t2 SET b=6007 WHERE a=8629;\nUPDATE t2 SET b=7218 WHERE a=8630;\nUPDATE t2 SET b=72984 WHERE a=8631;\nUPDATE t2 SET b=62652 WHERE a=8632;\nUPDATE t2 SET b=77641 WHERE a=8633;\nUPDATE t2 SET b=66808 WHERE a=8634;\nUPDATE t2 SET b=51769 WHERE a=8635;\nUPDATE t2 SET b=18279 WHERE a=8636;\nUPDATE t2 SET b=68398 WHERE a=8637;\nUPDATE t2 SET b=46109 WHERE a=8638;\nUPDATE t2 SET b=36755 WHERE a=8639;\nUPDATE t2 SET b=54456 WHERE a=8640;\nUPDATE t2 SET b=79142 WHERE a=8641;\nUPDATE t2 SET b=16437 WHERE a=8642;\nUPDATE t2 SET b=13465 WHERE a=8643;\nUPDATE t2 SET b=73879 WHERE a=8644;\nUPDATE t2 SET b=49337 WHERE a=8645;\nUPDATE t2 SET b=33882 WHERE a=8646;\nUPDATE t2 SET b=78402 WHERE a=8647;\nUPDATE t2 SET b=57601 WHERE a=8648;\nUPDATE t2 SET b=79801 WHERE a=8649;\nUPDATE t2 SET b=50623 WHERE a=8650;\nUPDATE t2 SET b=20186 WHERE a=8651;\nUPDATE t2 SET b=26110 WHERE a=8652;\nUPDATE t2 SET b=76868 WHERE a=8653;\nUPDATE t2 SET b=66810 WHERE a=8654;\nUPDATE t2 SET b=37076 WHERE a=8655;\nUPDATE t2 SET b=96615 WHERE a=8656;\nUPDATE t2 SET b=71156 WHERE a=8657;\nUPDATE t2 SET b=79916 WHERE a=8658;\nUPDATE t2 SET b=88174 WHERE a=8659;\nUPDATE t2 SET b=30389 WHERE a=8660;\nUPDATE t2 SET b=26047 WHERE a=8661;\nUPDATE t2 SET b=62239 WHERE a=8662;\nUPDATE t2 SET b=5015 WHERE a=8663;\nUPDATE t2 SET b=261 WHERE a=8664;\nUPDATE t2 SET b=49655 WHERE a=8665;\nUPDATE t2 SET b=47106 WHERE a=8666;\nUPDATE t2 SET b=31370 WHERE a=8667;\nUPDATE t2 SET b=73147 WHERE a=8668;\nUPDATE t2 SET b=37607 WHERE a=8669;\nUPDATE t2 SET b=16328 WHERE a=8670;\nUPDATE t2 SET b=46111 WHERE a=8671;\nUPDATE t2 SET b=46343 WHERE a=8672;\nUPDATE t2 SET b=6042 WHERE a=8673;\nUPDATE t2 SET b=88067 WHERE a=8674;\nUPDATE t2 SET b=18154 WHERE a=8675;\nUPDATE t2 SET b=68019 WHERE a=8676;\nUPDATE t2 SET b=8724 WHERE a=8677;\nUPDATE t2 SET b=96665 WHERE a=8678;\nUPDATE t2 SET b=82528 WHERE a=8679;\nUPDATE t2 SET b=61282 WHERE a=8680;\nUPDATE t2 SET b=81651 WHERE a=8681;\nUPDATE t2 SET b=37846 WHERE a=8682;\nUPDATE t2 SET b=63464 WHERE a=8683;\nUPDATE t2 SET b=54918 WHERE a=8684;\nUPDATE t2 SET b=81083 WHERE a=8685;\nUPDATE t2 SET b=10005 WHERE a=8686;\nUPDATE t2 SET b=17815 WHERE a=8687;\nUPDATE t2 SET b=77420 WHERE a=8688;\nUPDATE t2 SET b=34567 WHERE a=8689;\nUPDATE t2 SET b=69327 WHERE a=8690;\nUPDATE t2 SET b=39972 WHERE a=8691;\nUPDATE t2 SET b=60348 WHERE a=8692;\nUPDATE t2 SET b=59710 WHERE a=8693;\nUPDATE t2 SET b=49094 WHERE a=8694;\nUPDATE t2 SET b=69171 WHERE a=8695;\nUPDATE t2 SET b=82127 WHERE a=8696;\nUPDATE t2 SET b=53007 WHERE a=8697;\nUPDATE t2 SET b=3537 WHERE a=8698;\nUPDATE t2 SET b=34530 WHERE a=8699;\nUPDATE t2 SET b=5201 WHERE a=8700;\nUPDATE t2 SET b=98242 WHERE a=8701;\nUPDATE t2 SET b=25825 WHERE a=8702;\nUPDATE t2 SET b=26907 WHERE a=8703;\nUPDATE t2 SET b=14590 WHERE a=8704;\nUPDATE t2 SET b=12540 WHERE a=8705;\nUPDATE t2 SET b=20698 WHERE a=8706;\nUPDATE t2 SET b=38217 WHERE a=8707;\nUPDATE t2 SET b=15592 WHERE a=8708;\nUPDATE t2 SET b=201 WHERE a=8709;\nUPDATE t2 SET b=7936 WHERE a=8710;\nUPDATE t2 SET b=54978 WHERE a=8711;\nUPDATE t2 SET b=53030 WHERE a=8712;\nUPDATE t2 SET b=10140 WHERE a=8713;\nUPDATE t2 SET b=9702 WHERE a=8714;\nUPDATE t2 SET b=27584 WHERE a=8715;\nUPDATE t2 SET b=13078 WHERE a=8716;\nUPDATE t2 SET b=56193 WHERE a=8717;\nUPDATE t2 SET b=23676 WHERE a=8718;\nUPDATE t2 SET b=82429 WHERE a=8719;\nUPDATE t2 SET b=16651 WHERE a=8720;\nUPDATE t2 SET b=88167 WHERE a=8721;\nUPDATE t2 SET b=45218 WHERE a=8722;\nUPDATE t2 SET b=52150 WHERE a=8723;\nUPDATE t2 SET b=71773 WHERE a=8724;\nUPDATE t2 SET b=51680 WHERE a=8725;\nUPDATE t2 SET b=80797 WHERE a=8726;\nUPDATE t2 SET b=61110 WHERE a=8727;\nUPDATE t2 SET b=42892 WHERE a=8728;\nUPDATE t2 SET b=19833 WHERE a=8729;\nUPDATE t2 SET b=45058 WHERE a=8730;\nUPDATE t2 SET b=12202 WHERE a=8731;\nUPDATE t2 SET b=51058 WHERE a=8732;\nUPDATE t2 SET b=34205 WHERE a=8733;\nUPDATE t2 SET b=7697 WHERE a=8734;\nUPDATE t2 SET b=78201 WHERE a=8735;\nUPDATE t2 SET b=77890 WHERE a=8736;\nUPDATE t2 SET b=39948 WHERE a=8737;\nUPDATE t2 SET b=93174 WHERE a=8738;\nUPDATE t2 SET b=77657 WHERE a=8739;\nUPDATE t2 SET b=14460 WHERE a=8740;\nUPDATE t2 SET b=59709 WHERE a=8741;\nUPDATE t2 SET b=38420 WHERE a=8742;\nUPDATE t2 SET b=47500 WHERE a=8743;\nUPDATE t2 SET b=78250 WHERE a=8744;\nUPDATE t2 SET b=31939 WHERE a=8745;\nUPDATE t2 SET b=65240 WHERE a=8746;\nUPDATE t2 SET b=16160 WHERE a=8747;\nUPDATE t2 SET b=26161 WHERE a=8748;\nUPDATE t2 SET b=89368 WHERE a=8749;\nUPDATE t2 SET b=79315 WHERE a=8750;\nUPDATE t2 SET b=55250 WHERE a=8751;\nUPDATE t2 SET b=26421 WHERE a=8752;\nUPDATE t2 SET b=41326 WHERE a=8753;\nUPDATE t2 SET b=45139 WHERE a=8754;\nUPDATE t2 SET b=30934 WHERE a=8755;\nUPDATE t2 SET b=10506 WHERE a=8756;\nUPDATE t2 SET b=52538 WHERE a=8757;\nUPDATE t2 SET b=96900 WHERE a=8758;\nUPDATE t2 SET b=89249 WHERE a=8759;\nUPDATE t2 SET b=72585 WHERE a=8760;\nUPDATE t2 SET b=41835 WHERE a=8761;\nUPDATE t2 SET b=11085 WHERE a=8762;\nUPDATE t2 SET b=60771 WHERE a=8763;\nUPDATE t2 SET b=66723 WHERE a=8764;\nUPDATE t2 SET b=92891 WHERE a=8765;\nUPDATE t2 SET b=36305 WHERE a=8766;\nUPDATE t2 SET b=71913 WHERE a=8767;\nUPDATE t2 SET b=67565 WHERE a=8768;\nUPDATE t2 SET b=53404 WHERE a=8769;\nUPDATE t2 SET b=23421 WHERE a=8770;\nUPDATE t2 SET b=10072 WHERE a=8771;\nUPDATE t2 SET b=34863 WHERE a=8772;\nUPDATE t2 SET b=45433 WHERE a=8773;\nUPDATE t2 SET b=51991 WHERE a=8774;\nUPDATE t2 SET b=86973 WHERE a=8775;\nUPDATE t2 SET b=12661 WHERE a=8776;\nUPDATE t2 SET b=36000 WHERE a=8777;\nUPDATE t2 SET b=93456 WHERE a=8778;\nUPDATE t2 SET b=14881 WHERE a=8779;\nUPDATE t2 SET b=66846 WHERE a=8780;\nUPDATE t2 SET b=22429 WHERE a=8781;\nUPDATE t2 SET b=27358 WHERE a=8782;\nUPDATE t2 SET b=37612 WHERE a=8783;\nUPDATE t2 SET b=19490 WHERE a=8784;\nUPDATE t2 SET b=74548 WHERE a=8785;\nUPDATE t2 SET b=79999 WHERE a=8786;\nUPDATE t2 SET b=53185 WHERE a=8787;\nUPDATE t2 SET b=14200 WHERE a=8788;\nUPDATE t2 SET b=90594 WHERE a=8789;\nUPDATE t2 SET b=97838 WHERE a=8790;\nUPDATE t2 SET b=26036 WHERE a=8791;\nUPDATE t2 SET b=61973 WHERE a=8792;\nUPDATE t2 SET b=23442 WHERE a=8793;\nUPDATE t2 SET b=61550 WHERE a=8794;\nUPDATE t2 SET b=70616 WHERE a=8795;\nUPDATE t2 SET b=32674 WHERE a=8796;\nUPDATE t2 SET b=67804 WHERE a=8797;\nUPDATE t2 SET b=63229 WHERE a=8798;\nUPDATE t2 SET b=74744 WHERE a=8799;\nUPDATE t2 SET b=87769 WHERE a=8800;\nUPDATE t2 SET b=30992 WHERE a=8801;\nUPDATE t2 SET b=30790 WHERE a=8802;\nUPDATE t2 SET b=54660 WHERE a=8803;\nUPDATE t2 SET b=29078 WHERE a=8804;\nUPDATE t2 SET b=1258 WHERE a=8805;\nUPDATE t2 SET b=37008 WHERE a=8806;\nUPDATE t2 SET b=33339 WHERE a=8807;\nUPDATE t2 SET b=71060 WHERE a=8808;\nUPDATE t2 SET b=81724 WHERE a=8809;\nUPDATE t2 SET b=91275 WHERE a=8810;\nUPDATE t2 SET b=14262 WHERE a=8811;\nUPDATE t2 SET b=29506 WHERE a=8812;\nUPDATE t2 SET b=60397 WHERE a=8813;\nUPDATE t2 SET b=22580 WHERE a=8814;\nUPDATE t2 SET b=88097 WHERE a=8815;\nUPDATE t2 SET b=66463 WHERE a=8816;\nUPDATE t2 SET b=12787 WHERE a=8817;\nUPDATE t2 SET b=75170 WHERE a=8818;\nUPDATE t2 SET b=49504 WHERE a=8819;\nUPDATE t2 SET b=73215 WHERE a=8820;\nUPDATE t2 SET b=81275 WHERE a=8821;\nUPDATE t2 SET b=63432 WHERE a=8822;\nUPDATE t2 SET b=58941 WHERE a=8823;\nUPDATE t2 SET b=1412 WHERE a=8824;\nUPDATE t2 SET b=99325 WHERE a=8825;\nUPDATE t2 SET b=53788 WHERE a=8826;\nUPDATE t2 SET b=89730 WHERE a=8827;\nUPDATE t2 SET b=55200 WHERE a=8828;\nUPDATE t2 SET b=35686 WHERE a=8829;\nUPDATE t2 SET b=47644 WHERE a=8830;\nUPDATE t2 SET b=20461 WHERE a=8831;\nUPDATE t2 SET b=36865 WHERE a=8832;\nUPDATE t2 SET b=39302 WHERE a=8833;\nUPDATE t2 SET b=8378 WHERE a=8834;\nUPDATE t2 SET b=11282 WHERE a=8835;\nUPDATE t2 SET b=61649 WHERE a=8836;\nUPDATE t2 SET b=65556 WHERE a=8837;\nUPDATE t2 SET b=90413 WHERE a=8838;\nUPDATE t2 SET b=83277 WHERE a=8839;\nUPDATE t2 SET b=42205 WHERE a=8840;\nUPDATE t2 SET b=26043 WHERE a=8841;\nUPDATE t2 SET b=25262 WHERE a=8842;\nUPDATE t2 SET b=56412 WHERE a=8843;\nUPDATE t2 SET b=74887 WHERE a=8844;\nUPDATE t2 SET b=64090 WHERE a=8845;\nUPDATE t2 SET b=42353 WHERE a=8846;\nUPDATE t2 SET b=71918 WHERE a=8847;\nUPDATE t2 SET b=17318 WHERE a=8848;\nUPDATE t2 SET b=47722 WHERE a=8849;\nUPDATE t2 SET b=55062 WHERE a=8850;\nUPDATE t2 SET b=29344 WHERE a=8851;\nUPDATE t2 SET b=19566 WHERE a=8852;\nUPDATE t2 SET b=60298 WHERE a=8853;\nUPDATE t2 SET b=58692 WHERE a=8854;\nUPDATE t2 SET b=97789 WHERE a=8855;\nUPDATE t2 SET b=43184 WHERE a=8856;\nUPDATE t2 SET b=45028 WHERE a=8857;\nUPDATE t2 SET b=20564 WHERE a=8858;\nUPDATE t2 SET b=77389 WHERE a=8859;\nUPDATE t2 SET b=23193 WHERE a=8860;\nUPDATE t2 SET b=63919 WHERE a=8861;\nUPDATE t2 SET b=61038 WHERE a=8862;\nUPDATE t2 SET b=77343 WHERE a=8863;\nUPDATE t2 SET b=90434 WHERE a=8864;\nUPDATE t2 SET b=70224 WHERE a=8865;\nUPDATE t2 SET b=88810 WHERE a=8866;\nUPDATE t2 SET b=56163 WHERE a=8867;\nUPDATE t2 SET b=53030 WHERE a=8868;\nUPDATE t2 SET b=4615 WHERE a=8869;\nUPDATE t2 SET b=90565 WHERE a=8870;\nUPDATE t2 SET b=9368 WHERE a=8871;\nUPDATE t2 SET b=35004 WHERE a=8872;\nUPDATE t2 SET b=60913 WHERE a=8873;\nUPDATE t2 SET b=48870 WHERE a=8874;\nUPDATE t2 SET b=35479 WHERE a=8875;\nUPDATE t2 SET b=36368 WHERE a=8876;\nUPDATE t2 SET b=62923 WHERE a=8877;\nUPDATE t2 SET b=92587 WHERE a=8878;\nUPDATE t2 SET b=24426 WHERE a=8879;\nUPDATE t2 SET b=16663 WHERE a=8880;\nUPDATE t2 SET b=40563 WHERE a=8881;\nUPDATE t2 SET b=79374 WHERE a=8882;\nUPDATE t2 SET b=75663 WHERE a=8883;\nUPDATE t2 SET b=48184 WHERE a=8884;\nUPDATE t2 SET b=81822 WHERE a=8885;\nUPDATE t2 SET b=85803 WHERE a=8886;\nUPDATE t2 SET b=24903 WHERE a=8887;\nUPDATE t2 SET b=19785 WHERE a=8888;\nUPDATE t2 SET b=55522 WHERE a=8889;\nUPDATE t2 SET b=35714 WHERE a=8890;\nUPDATE t2 SET b=58355 WHERE a=8891;\nUPDATE t2 SET b=79565 WHERE a=8892;\nUPDATE t2 SET b=75213 WHERE a=8893;\nUPDATE t2 SET b=30230 WHERE a=8894;\nUPDATE t2 SET b=99607 WHERE a=8895;\nUPDATE t2 SET b=43167 WHERE a=8896;\nUPDATE t2 SET b=64071 WHERE a=8897;\nUPDATE t2 SET b=67765 WHERE a=8898;\nUPDATE t2 SET b=56407 WHERE a=8899;\nUPDATE t2 SET b=60230 WHERE a=8900;\nUPDATE t2 SET b=3767 WHERE a=8901;\nUPDATE t2 SET b=88412 WHERE a=8902;\nUPDATE t2 SET b=32135 WHERE a=8903;\nUPDATE t2 SET b=56275 WHERE a=8904;\nUPDATE t2 SET b=7151 WHERE a=8905;\nUPDATE t2 SET b=40358 WHERE a=8906;\nUPDATE t2 SET b=80262 WHERE a=8907;\nUPDATE t2 SET b=36614 WHERE a=8908;\nUPDATE t2 SET b=88591 WHERE a=8909;\nUPDATE t2 SET b=42912 WHERE a=8910;\nUPDATE t2 SET b=17814 WHERE a=8911;\nUPDATE t2 SET b=84148 WHERE a=8912;\nUPDATE t2 SET b=26128 WHERE a=8913;\nUPDATE t2 SET b=64669 WHERE a=8914;\nUPDATE t2 SET b=19650 WHERE a=8915;\nUPDATE t2 SET b=84935 WHERE a=8916;\nUPDATE t2 SET b=84761 WHERE a=8917;\nUPDATE t2 SET b=10474 WHERE a=8918;\nUPDATE t2 SET b=68499 WHERE a=8919;\nUPDATE t2 SET b=16624 WHERE a=8920;\nUPDATE t2 SET b=26426 WHERE a=8921;\nUPDATE t2 SET b=28791 WHERE a=8922;\nUPDATE t2 SET b=67869 WHERE a=8923;\nUPDATE t2 SET b=53182 WHERE a=8924;\nUPDATE t2 SET b=54089 WHERE a=8925;\nUPDATE t2 SET b=87558 WHERE a=8926;\nUPDATE t2 SET b=88754 WHERE a=8927;\nUPDATE t2 SET b=65868 WHERE a=8928;\nUPDATE t2 SET b=93719 WHERE a=8929;\nUPDATE t2 SET b=91828 WHERE a=8930;\nUPDATE t2 SET b=61168 WHERE a=8931;\nUPDATE t2 SET b=75540 WHERE a=8932;\nUPDATE t2 SET b=71015 WHERE a=8933;\nUPDATE t2 SET b=41473 WHERE a=8934;\nUPDATE t2 SET b=46845 WHERE a=8935;\nUPDATE t2 SET b=88422 WHERE a=8936;\nUPDATE t2 SET b=29958 WHERE a=8937;\nUPDATE t2 SET b=32508 WHERE a=8938;\nUPDATE t2 SET b=88514 WHERE a=8939;\nUPDATE t2 SET b=1012 WHERE a=8940;\nUPDATE t2 SET b=12926 WHERE a=8941;\nUPDATE t2 SET b=2211 WHERE a=8942;\nUPDATE t2 SET b=23540 WHERE a=8943;\nUPDATE t2 SET b=3566 WHERE a=8944;\nUPDATE t2 SET b=3227 WHERE a=8945;\nUPDATE t2 SET b=22780 WHERE a=8946;\nUPDATE t2 SET b=63210 WHERE a=8947;\nUPDATE t2 SET b=45920 WHERE a=8948;\nUPDATE t2 SET b=90378 WHERE a=8949;\nUPDATE t2 SET b=32962 WHERE a=8950;\nUPDATE t2 SET b=32614 WHERE a=8951;\nUPDATE t2 SET b=70918 WHERE a=8952;\nUPDATE t2 SET b=17079 WHERE a=8953;\nUPDATE t2 SET b=94800 WHERE a=8954;\nUPDATE t2 SET b=59815 WHERE a=8955;\nUPDATE t2 SET b=7349 WHERE a=8956;\nUPDATE t2 SET b=24848 WHERE a=8957;\nUPDATE t2 SET b=284 WHERE a=8958;\nUPDATE t2 SET b=93400 WHERE a=8959;\nUPDATE t2 SET b=75385 WHERE a=8960;\nUPDATE t2 SET b=79622 WHERE a=8961;\nUPDATE t2 SET b=68323 WHERE a=8962;\nUPDATE t2 SET b=61463 WHERE a=8963;\nUPDATE t2 SET b=70693 WHERE a=8964;\nUPDATE t2 SET b=39257 WHERE a=8965;\nUPDATE t2 SET b=71321 WHERE a=8966;\nUPDATE t2 SET b=84692 WHERE a=8967;\nUPDATE t2 SET b=46942 WHERE a=8968;\nUPDATE t2 SET b=3719 WHERE a=8969;\nUPDATE t2 SET b=81904 WHERE a=8970;\nUPDATE t2 SET b=9225 WHERE a=8971;\nUPDATE t2 SET b=95092 WHERE a=8972;\nUPDATE t2 SET b=71880 WHERE a=8973;\nUPDATE t2 SET b=37075 WHERE a=8974;\nUPDATE t2 SET b=64211 WHERE a=8975;\nUPDATE t2 SET b=36425 WHERE a=8976;\nUPDATE t2 SET b=3447 WHERE a=8977;\nUPDATE t2 SET b=67887 WHERE a=8978;\nUPDATE t2 SET b=67950 WHERE a=8979;\nUPDATE t2 SET b=16765 WHERE a=8980;\nUPDATE t2 SET b=39565 WHERE a=8981;\nUPDATE t2 SET b=46218 WHERE a=8982;\nUPDATE t2 SET b=66468 WHERE a=8983;\nUPDATE t2 SET b=76695 WHERE a=8984;\nUPDATE t2 SET b=42404 WHERE a=8985;\nUPDATE t2 SET b=11240 WHERE a=8986;\nUPDATE t2 SET b=42384 WHERE a=8987;\nUPDATE t2 SET b=29156 WHERE a=8988;\nUPDATE t2 SET b=9640 WHERE a=8989;\nUPDATE t2 SET b=39356 WHERE a=8990;\nUPDATE t2 SET b=68026 WHERE a=8991;\nUPDATE t2 SET b=39526 WHERE a=8992;\nUPDATE t2 SET b=82068 WHERE a=8993;\nUPDATE t2 SET b=59542 WHERE a=8994;\nUPDATE t2 SET b=99711 WHERE a=8995;\nUPDATE t2 SET b=65695 WHERE a=8996;\nUPDATE t2 SET b=28818 WHERE a=8997;\nUPDATE t2 SET b=57798 WHERE a=8998;\nUPDATE t2 SET b=143 WHERE a=8999;\nUPDATE t2 SET b=85695 WHERE a=9000;\nUPDATE t2 SET b=28956 WHERE a=9001;\nUPDATE t2 SET b=50856 WHERE a=9002;\nUPDATE t2 SET b=56157 WHERE a=9003;\nUPDATE t2 SET b=55745 WHERE a=9004;\nUPDATE t2 SET b=14991 WHERE a=9005;\nUPDATE t2 SET b=56840 WHERE a=9006;\nUPDATE t2 SET b=63120 WHERE a=9007;\nUPDATE t2 SET b=62378 WHERE a=9008;\nUPDATE t2 SET b=43949 WHERE a=9009;\nUPDATE t2 SET b=73899 WHERE a=9010;\nUPDATE t2 SET b=26931 WHERE a=9011;\nUPDATE t2 SET b=5080 WHERE a=9012;\nUPDATE t2 SET b=14180 WHERE a=9013;\nUPDATE t2 SET b=2385 WHERE a=9014;\nUPDATE t2 SET b=49203 WHERE a=9015;\nUPDATE t2 SET b=53453 WHERE a=9016;\nUPDATE t2 SET b=55918 WHERE a=9017;\nUPDATE t2 SET b=73691 WHERE a=9018;\nUPDATE t2 SET b=7596 WHERE a=9019;\nUPDATE t2 SET b=84106 WHERE a=9020;\nUPDATE t2 SET b=76281 WHERE a=9021;\nUPDATE t2 SET b=33772 WHERE a=9022;\nUPDATE t2 SET b=4101 WHERE a=9023;\nUPDATE t2 SET b=74172 WHERE a=9024;\nUPDATE t2 SET b=51800 WHERE a=9025;\nUPDATE t2 SET b=27050 WHERE a=9026;\nUPDATE t2 SET b=25558 WHERE a=9027;\nUPDATE t2 SET b=56119 WHERE a=9028;\nUPDATE t2 SET b=62271 WHERE a=9029;\nUPDATE t2 SET b=36360 WHERE a=9030;\nUPDATE t2 SET b=65677 WHERE a=9031;\nUPDATE t2 SET b=5617 WHERE a=9032;\nUPDATE t2 SET b=40407 WHERE a=9033;\nUPDATE t2 SET b=47132 WHERE a=9034;\nUPDATE t2 SET b=92380 WHERE a=9035;\nUPDATE t2 SET b=84199 WHERE a=9036;\nUPDATE t2 SET b=90911 WHERE a=9037;\nUPDATE t2 SET b=69126 WHERE a=9038;\nUPDATE t2 SET b=65806 WHERE a=9039;\nUPDATE t2 SET b=53483 WHERE a=9040;\nUPDATE t2 SET b=85919 WHERE a=9041;\nUPDATE t2 SET b=73843 WHERE a=9042;\nUPDATE t2 SET b=51525 WHERE a=9043;\nUPDATE t2 SET b=41544 WHERE a=9044;\nUPDATE t2 SET b=48335 WHERE a=9045;\nUPDATE t2 SET b=92128 WHERE a=9046;\nUPDATE t2 SET b=85510 WHERE a=9047;\nUPDATE t2 SET b=98390 WHERE a=9048;\nUPDATE t2 SET b=97446 WHERE a=9049;\nUPDATE t2 SET b=17667 WHERE a=9050;\nUPDATE t2 SET b=75505 WHERE a=9051;\nUPDATE t2 SET b=19604 WHERE a=9052;\nUPDATE t2 SET b=89403 WHERE a=9053;\nUPDATE t2 SET b=63637 WHERE a=9054;\nUPDATE t2 SET b=46123 WHERE a=9055;\nUPDATE t2 SET b=64869 WHERE a=9056;\nUPDATE t2 SET b=49529 WHERE a=9057;\nUPDATE t2 SET b=99733 WHERE a=9058;\nUPDATE t2 SET b=78934 WHERE a=9059;\nUPDATE t2 SET b=51978 WHERE a=9060;\nUPDATE t2 SET b=55872 WHERE a=9061;\nUPDATE t2 SET b=51993 WHERE a=9062;\nUPDATE t2 SET b=1356 WHERE a=9063;\nUPDATE t2 SET b=57532 WHERE a=9064;\nUPDATE t2 SET b=81446 WHERE a=9065;\nUPDATE t2 SET b=32997 WHERE a=9066;\nUPDATE t2 SET b=86504 WHERE a=9067;\nUPDATE t2 SET b=89988 WHERE a=9068;\nUPDATE t2 SET b=40130 WHERE a=9069;\nUPDATE t2 SET b=24531 WHERE a=9070;\nUPDATE t2 SET b=62926 WHERE a=9071;\nUPDATE t2 SET b=78019 WHERE a=9072;\nUPDATE t2 SET b=14653 WHERE a=9073;\nUPDATE t2 SET b=34576 WHERE a=9074;\nUPDATE t2 SET b=15396 WHERE a=9075;\nUPDATE t2 SET b=39775 WHERE a=9076;\nUPDATE t2 SET b=93832 WHERE a=9077;\nUPDATE t2 SET b=33497 WHERE a=9078;\nUPDATE t2 SET b=20362 WHERE a=9079;\nUPDATE t2 SET b=74540 WHERE a=9080;\nUPDATE t2 SET b=22878 WHERE a=9081;\nUPDATE t2 SET b=21830 WHERE a=9082;\nUPDATE t2 SET b=43060 WHERE a=9083;\nUPDATE t2 SET b=94012 WHERE a=9084;\nUPDATE t2 SET b=31140 WHERE a=9085;\nUPDATE t2 SET b=89605 WHERE a=9086;\nUPDATE t2 SET b=3306 WHERE a=9087;\nUPDATE t2 SET b=6354 WHERE a=9088;\nUPDATE t2 SET b=82170 WHERE a=9089;\nUPDATE t2 SET b=16715 WHERE a=9090;\nUPDATE t2 SET b=59267 WHERE a=9091;\nUPDATE t2 SET b=91537 WHERE a=9092;\nUPDATE t2 SET b=94033 WHERE a=9093;\nUPDATE t2 SET b=60883 WHERE a=9094;\nUPDATE t2 SET b=1139 WHERE a=9095;\nUPDATE t2 SET b=84499 WHERE a=9096;\nUPDATE t2 SET b=66089 WHERE a=9097;\nUPDATE t2 SET b=28375 WHERE a=9098;\nUPDATE t2 SET b=67176 WHERE a=9099;\nUPDATE t2 SET b=24417 WHERE a=9100;\nUPDATE t2 SET b=14400 WHERE a=9101;\nUPDATE t2 SET b=84057 WHERE a=9102;\nUPDATE t2 SET b=31416 WHERE a=9103;\nUPDATE t2 SET b=73396 WHERE a=9104;\nUPDATE t2 SET b=39272 WHERE a=9105;\nUPDATE t2 SET b=1565 WHERE a=9106;\nUPDATE t2 SET b=80071 WHERE a=9107;\nUPDATE t2 SET b=29001 WHERE a=9108;\nUPDATE t2 SET b=5626 WHERE a=9109;\nUPDATE t2 SET b=98147 WHERE a=9110;\nUPDATE t2 SET b=24302 WHERE a=9111;\nUPDATE t2 SET b=25099 WHERE a=9112;\nUPDATE t2 SET b=64784 WHERE a=9113;\nUPDATE t2 SET b=9284 WHERE a=9114;\nUPDATE t2 SET b=16211 WHERE a=9115;\nUPDATE t2 SET b=88900 WHERE a=9116;\nUPDATE t2 SET b=41320 WHERE a=9117;\nUPDATE t2 SET b=8737 WHERE a=9118;\nUPDATE t2 SET b=15794 WHERE a=9119;\nUPDATE t2 SET b=43596 WHERE a=9120;\nUPDATE t2 SET b=46774 WHERE a=9121;\nUPDATE t2 SET b=24734 WHERE a=9122;\nUPDATE t2 SET b=44876 WHERE a=9123;\nUPDATE t2 SET b=63473 WHERE a=9124;\nUPDATE t2 SET b=73124 WHERE a=9125;\nUPDATE t2 SET b=98134 WHERE a=9126;\nUPDATE t2 SET b=36864 WHERE a=9127;\nUPDATE t2 SET b=69003 WHERE a=9128;\nUPDATE t2 SET b=18152 WHERE a=9129;\nUPDATE t2 SET b=34110 WHERE a=9130;\nUPDATE t2 SET b=98555 WHERE a=9131;\nUPDATE t2 SET b=25428 WHERE a=9132;\nUPDATE t2 SET b=63534 WHERE a=9133;\nUPDATE t2 SET b=62752 WHERE a=9134;\nUPDATE t2 SET b=58993 WHERE a=9135;\nUPDATE t2 SET b=79226 WHERE a=9136;\nUPDATE t2 SET b=39070 WHERE a=9137;\nUPDATE t2 SET b=77688 WHERE a=9138;\nUPDATE t2 SET b=92611 WHERE a=9139;\nUPDATE t2 SET b=9087 WHERE a=9140;\nUPDATE t2 SET b=72580 WHERE a=9141;\nUPDATE t2 SET b=62770 WHERE a=9142;\nUPDATE t2 SET b=80555 WHERE a=9143;\nUPDATE t2 SET b=12169 WHERE a=9144;\nUPDATE t2 SET b=27291 WHERE a=9145;\nUPDATE t2 SET b=52106 WHERE a=9146;\nUPDATE t2 SET b=85078 WHERE a=9147;\nUPDATE t2 SET b=34778 WHERE a=9148;\nUPDATE t2 SET b=50687 WHERE a=9149;\nUPDATE t2 SET b=78661 WHERE a=9150;\nUPDATE t2 SET b=15566 WHERE a=9151;\nUPDATE t2 SET b=17373 WHERE a=9152;\nUPDATE t2 SET b=76621 WHERE a=9153;\nUPDATE t2 SET b=18500 WHERE a=9154;\nUPDATE t2 SET b=85396 WHERE a=9155;\nUPDATE t2 SET b=19231 WHERE a=9156;\nUPDATE t2 SET b=97758 WHERE a=9157;\nUPDATE t2 SET b=75217 WHERE a=9158;\nUPDATE t2 SET b=96887 WHERE a=9159;\nUPDATE t2 SET b=85819 WHERE a=9160;\nUPDATE t2 SET b=6823 WHERE a=9161;\nUPDATE t2 SET b=86880 WHERE a=9162;\nUPDATE t2 SET b=98338 WHERE a=9163;\nUPDATE t2 SET b=43672 WHERE a=9164;\nUPDATE t2 SET b=1375 WHERE a=9165;\nUPDATE t2 SET b=82815 WHERE a=9166;\nUPDATE t2 SET b=18333 WHERE a=9167;\nUPDATE t2 SET b=41122 WHERE a=9168;\nUPDATE t2 SET b=28275 WHERE a=9169;\nUPDATE t2 SET b=34833 WHERE a=9170;\nUPDATE t2 SET b=39370 WHERE a=9171;\nUPDATE t2 SET b=8148 WHERE a=9172;\nUPDATE t2 SET b=3707 WHERE a=9173;\nUPDATE t2 SET b=34414 WHERE a=9174;\nUPDATE t2 SET b=62403 WHERE a=9175;\nUPDATE t2 SET b=96886 WHERE a=9176;\nUPDATE t2 SET b=85000 WHERE a=9177;\nUPDATE t2 SET b=6177 WHERE a=9178;\nUPDATE t2 SET b=9248 WHERE a=9179;\nUPDATE t2 SET b=81476 WHERE a=9180;\nUPDATE t2 SET b=33303 WHERE a=9181;\nUPDATE t2 SET b=96791 WHERE a=9182;\nUPDATE t2 SET b=75832 WHERE a=9183;\nUPDATE t2 SET b=33974 WHERE a=9184;\nUPDATE t2 SET b=95923 WHERE a=9185;\nUPDATE t2 SET b=1088 WHERE a=9186;\nUPDATE t2 SET b=57494 WHERE a=9187;\nUPDATE t2 SET b=14377 WHERE a=9188;\nUPDATE t2 SET b=16111 WHERE a=9189;\nUPDATE t2 SET b=9383 WHERE a=9190;\nUPDATE t2 SET b=60647 WHERE a=9191;\nUPDATE t2 SET b=62727 WHERE a=9192;\nUPDATE t2 SET b=84598 WHERE a=9193;\nUPDATE t2 SET b=95215 WHERE a=9194;\nUPDATE t2 SET b=74357 WHERE a=9195;\nUPDATE t2 SET b=58005 WHERE a=9196;\nUPDATE t2 SET b=57333 WHERE a=9197;\nUPDATE t2 SET b=48310 WHERE a=9198;\nUPDATE t2 SET b=92105 WHERE a=9199;\nUPDATE t2 SET b=90566 WHERE a=9200;\nUPDATE t2 SET b=57107 WHERE a=9201;\nUPDATE t2 SET b=30644 WHERE a=9202;\nUPDATE t2 SET b=47638 WHERE a=9203;\nUPDATE t2 SET b=12955 WHERE a=9204;\nUPDATE t2 SET b=81011 WHERE a=9205;\nUPDATE t2 SET b=90084 WHERE a=9206;\nUPDATE t2 SET b=5959 WHERE a=9207;\nUPDATE t2 SET b=90863 WHERE a=9208;\nUPDATE t2 SET b=16935 WHERE a=9209;\nUPDATE t2 SET b=85296 WHERE a=9210;\nUPDATE t2 SET b=84490 WHERE a=9211;\nUPDATE t2 SET b=83403 WHERE a=9212;\nUPDATE t2 SET b=17008 WHERE a=9213;\nUPDATE t2 SET b=60989 WHERE a=9214;\nUPDATE t2 SET b=79806 WHERE a=9215;\nUPDATE t2 SET b=2466 WHERE a=9216;\nUPDATE t2 SET b=20098 WHERE a=9217;\nUPDATE t2 SET b=16337 WHERE a=9218;\nUPDATE t2 SET b=2423 WHERE a=9219;\nUPDATE t2 SET b=34887 WHERE a=9220;\nUPDATE t2 SET b=19341 WHERE a=9221;\nUPDATE t2 SET b=94732 WHERE a=9222;\nUPDATE t2 SET b=64335 WHERE a=9223;\nUPDATE t2 SET b=45911 WHERE a=9224;\nUPDATE t2 SET b=92742 WHERE a=9225;\nUPDATE t2 SET b=91298 WHERE a=9226;\nUPDATE t2 SET b=99813 WHERE a=9227;\nUPDATE t2 SET b=21023 WHERE a=9228;\nUPDATE t2 SET b=6519 WHERE a=9229;\nUPDATE t2 SET b=40052 WHERE a=9230;\nUPDATE t2 SET b=66458 WHERE a=9231;\nUPDATE t2 SET b=46365 WHERE a=9232;\nUPDATE t2 SET b=15793 WHERE a=9233;\nUPDATE t2 SET b=18725 WHERE a=9234;\nUPDATE t2 SET b=52721 WHERE a=9235;\nUPDATE t2 SET b=33029 WHERE a=9236;\nUPDATE t2 SET b=73300 WHERE a=9237;\nUPDATE t2 SET b=87923 WHERE a=9238;\nUPDATE t2 SET b=44238 WHERE a=9239;\nUPDATE t2 SET b=74870 WHERE a=9240;\nUPDATE t2 SET b=37299 WHERE a=9241;\nUPDATE t2 SET b=46619 WHERE a=9242;\nUPDATE t2 SET b=16267 WHERE a=9243;\nUPDATE t2 SET b=50348 WHERE a=9244;\nUPDATE t2 SET b=99642 WHERE a=9245;\nUPDATE t2 SET b=34927 WHERE a=9246;\nUPDATE t2 SET b=50027 WHERE a=9247;\nUPDATE t2 SET b=25823 WHERE a=9248;\nUPDATE t2 SET b=36501 WHERE a=9249;\nUPDATE t2 SET b=41023 WHERE a=9250;\nUPDATE t2 SET b=53296 WHERE a=9251;\nUPDATE t2 SET b=85236 WHERE a=9252;\nUPDATE t2 SET b=54575 WHERE a=9253;\nUPDATE t2 SET b=13527 WHERE a=9254;\nUPDATE t2 SET b=14992 WHERE a=9255;\nUPDATE t2 SET b=83873 WHERE a=9256;\nUPDATE t2 SET b=20945 WHERE a=9257;\nUPDATE t2 SET b=86494 WHERE a=9258;\nUPDATE t2 SET b=42305 WHERE a=9259;\nUPDATE t2 SET b=92271 WHERE a=9260;\nUPDATE t2 SET b=32300 WHERE a=9261;\nUPDATE t2 SET b=66948 WHERE a=9262;\nUPDATE t2 SET b=88599 WHERE a=9263;\nUPDATE t2 SET b=38235 WHERE a=9264;\nUPDATE t2 SET b=19082 WHERE a=9265;\nUPDATE t2 SET b=3834 WHERE a=9266;\nUPDATE t2 SET b=83733 WHERE a=9267;\nUPDATE t2 SET b=7515 WHERE a=9268;\nUPDATE t2 SET b=80859 WHERE a=9269;\nUPDATE t2 SET b=27930 WHERE a=9270;\nUPDATE t2 SET b=32936 WHERE a=9271;\nUPDATE t2 SET b=7089 WHERE a=9272;\nUPDATE t2 SET b=9110 WHERE a=9273;\nUPDATE t2 SET b=41374 WHERE a=9274;\nUPDATE t2 SET b=52064 WHERE a=9275;\nUPDATE t2 SET b=6550 WHERE a=9276;\nUPDATE t2 SET b=61184 WHERE a=9277;\nUPDATE t2 SET b=93502 WHERE a=9278;\nUPDATE t2 SET b=74442 WHERE a=9279;\nUPDATE t2 SET b=28744 WHERE a=9280;\nUPDATE t2 SET b=7000 WHERE a=9281;\nUPDATE t2 SET b=69320 WHERE a=9282;\nUPDATE t2 SET b=1369 WHERE a=9283;\nUPDATE t2 SET b=73980 WHERE a=9284;\nUPDATE t2 SET b=57410 WHERE a=9285;\nUPDATE t2 SET b=56052 WHERE a=9286;\nUPDATE t2 SET b=1728 WHERE a=9287;\nUPDATE t2 SET b=66150 WHERE a=9288;\nUPDATE t2 SET b=52638 WHERE a=9289;\nUPDATE t2 SET b=65920 WHERE a=9290;\nUPDATE t2 SET b=81062 WHERE a=9291;\nUPDATE t2 SET b=68133 WHERE a=9292;\nUPDATE t2 SET b=37660 WHERE a=9293;\nUPDATE t2 SET b=28226 WHERE a=9294;\nUPDATE t2 SET b=95179 WHERE a=9295;\nUPDATE t2 SET b=30568 WHERE a=9296;\nUPDATE t2 SET b=78457 WHERE a=9297;\nUPDATE t2 SET b=47868 WHERE a=9298;\nUPDATE t2 SET b=40209 WHERE a=9299;\nUPDATE t2 SET b=92684 WHERE a=9300;\nUPDATE t2 SET b=90137 WHERE a=9301;\nUPDATE t2 SET b=13182 WHERE a=9302;\nUPDATE t2 SET b=94661 WHERE a=9303;\nUPDATE t2 SET b=77878 WHERE a=9304;\nUPDATE t2 SET b=12968 WHERE a=9305;\nUPDATE t2 SET b=10782 WHERE a=9306;\nUPDATE t2 SET b=75441 WHERE a=9307;\nUPDATE t2 SET b=2826 WHERE a=9308;\nUPDATE t2 SET b=39553 WHERE a=9309;\nUPDATE t2 SET b=19607 WHERE a=9310;\nUPDATE t2 SET b=23300 WHERE a=9311;\nUPDATE t2 SET b=22550 WHERE a=9312;\nUPDATE t2 SET b=6876 WHERE a=9313;\nUPDATE t2 SET b=64583 WHERE a=9314;\nUPDATE t2 SET b=82108 WHERE a=9315;\nUPDATE t2 SET b=29544 WHERE a=9316;\nUPDATE t2 SET b=99630 WHERE a=9317;\nUPDATE t2 SET b=28044 WHERE a=9318;\nUPDATE t2 SET b=4149 WHERE a=9319;\nUPDATE t2 SET b=56847 WHERE a=9320;\nUPDATE t2 SET b=6013 WHERE a=9321;\nUPDATE t2 SET b=27125 WHERE a=9322;\nUPDATE t2 SET b=35168 WHERE a=9323;\nUPDATE t2 SET b=72133 WHERE a=9324;\nUPDATE t2 SET b=14038 WHERE a=9325;\nUPDATE t2 SET b=125 WHERE a=9326;\nUPDATE t2 SET b=81663 WHERE a=9327;\nUPDATE t2 SET b=16750 WHERE a=9328;\nUPDATE t2 SET b=89000 WHERE a=9329;\nUPDATE t2 SET b=21129 WHERE a=9330;\nUPDATE t2 SET b=56115 WHERE a=9331;\nUPDATE t2 SET b=79243 WHERE a=9332;\nUPDATE t2 SET b=65490 WHERE a=9333;\nUPDATE t2 SET b=4833 WHERE a=9334;\nUPDATE t2 SET b=20420 WHERE a=9335;\nUPDATE t2 SET b=34470 WHERE a=9336;\nUPDATE t2 SET b=19820 WHERE a=9337;\nUPDATE t2 SET b=55884 WHERE a=9338;\nUPDATE t2 SET b=85928 WHERE a=9339;\nUPDATE t2 SET b=66479 WHERE a=9340;\nUPDATE t2 SET b=85219 WHERE a=9341;\nUPDATE t2 SET b=43647 WHERE a=9342;\nUPDATE t2 SET b=22770 WHERE a=9343;\nUPDATE t2 SET b=64320 WHERE a=9344;\nUPDATE t2 SET b=84644 WHERE a=9345;\nUPDATE t2 SET b=56538 WHERE a=9346;\nUPDATE t2 SET b=38611 WHERE a=9347;\nUPDATE t2 SET b=10472 WHERE a=9348;\nUPDATE t2 SET b=60447 WHERE a=9349;\nUPDATE t2 SET b=68108 WHERE a=9350;\nUPDATE t2 SET b=49901 WHERE a=9351;\nUPDATE t2 SET b=76862 WHERE a=9352;\nUPDATE t2 SET b=85462 WHERE a=9353;\nUPDATE t2 SET b=89011 WHERE a=9354;\nUPDATE t2 SET b=56618 WHERE a=9355;\nUPDATE t2 SET b=57756 WHERE a=9356;\nUPDATE t2 SET b=30437 WHERE a=9357;\nUPDATE t2 SET b=46032 WHERE a=9358;\nUPDATE t2 SET b=34467 WHERE a=9359;\nUPDATE t2 SET b=46066 WHERE a=9360;\nUPDATE t2 SET b=62616 WHERE a=9361;\nUPDATE t2 SET b=65257 WHERE a=9362;\nUPDATE t2 SET b=77735 WHERE a=9363;\nUPDATE t2 SET b=80021 WHERE a=9364;\nUPDATE t2 SET b=26954 WHERE a=9365;\nUPDATE t2 SET b=98446 WHERE a=9366;\nUPDATE t2 SET b=77357 WHERE a=9367;\nUPDATE t2 SET b=27965 WHERE a=9368;\nUPDATE t2 SET b=33420 WHERE a=9369;\nUPDATE t2 SET b=89172 WHERE a=9370;\nUPDATE t2 SET b=86437 WHERE a=9371;\nUPDATE t2 SET b=77258 WHERE a=9372;\nUPDATE t2 SET b=91396 WHERE a=9373;\nUPDATE t2 SET b=3879 WHERE a=9374;\nUPDATE t2 SET b=93646 WHERE a=9375;\nUPDATE t2 SET b=37246 WHERE a=9376;\nUPDATE t2 SET b=93509 WHERE a=9377;\nUPDATE t2 SET b=60735 WHERE a=9378;\nUPDATE t2 SET b=12620 WHERE a=9379;\nUPDATE t2 SET b=46311 WHERE a=9380;\nUPDATE t2 SET b=4759 WHERE a=9381;\nUPDATE t2 SET b=1918 WHERE a=9382;\nUPDATE t2 SET b=66188 WHERE a=9383;\nUPDATE t2 SET b=73050 WHERE a=9384;\nUPDATE t2 SET b=87988 WHERE a=9385;\nUPDATE t2 SET b=27180 WHERE a=9386;\nUPDATE t2 SET b=7847 WHERE a=9387;\nUPDATE t2 SET b=50668 WHERE a=9388;\nUPDATE t2 SET b=55243 WHERE a=9389;\nUPDATE t2 SET b=74120 WHERE a=9390;\nUPDATE t2 SET b=39616 WHERE a=9391;\nUPDATE t2 SET b=23773 WHERE a=9392;\nUPDATE t2 SET b=13551 WHERE a=9393;\nUPDATE t2 SET b=79509 WHERE a=9394;\nUPDATE t2 SET b=57218 WHERE a=9395;\nUPDATE t2 SET b=92079 WHERE a=9396;\nUPDATE t2 SET b=23716 WHERE a=9397;\nUPDATE t2 SET b=68572 WHERE a=9398;\nUPDATE t2 SET b=5806 WHERE a=9399;\nUPDATE t2 SET b=49001 WHERE a=9400;\nUPDATE t2 SET b=40541 WHERE a=9401;\nUPDATE t2 SET b=84649 WHERE a=9402;\nUPDATE t2 SET b=26690 WHERE a=9403;\nUPDATE t2 SET b=59705 WHERE a=9404;\nUPDATE t2 SET b=47608 WHERE a=9405;\nUPDATE t2 SET b=3970 WHERE a=9406;\nUPDATE t2 SET b=33060 WHERE a=9407;\nUPDATE t2 SET b=62433 WHERE a=9408;\nUPDATE t2 SET b=84196 WHERE a=9409;\nUPDATE t2 SET b=40372 WHERE a=9410;\nUPDATE t2 SET b=37698 WHERE a=9411;\nUPDATE t2 SET b=45428 WHERE a=9412;\nUPDATE t2 SET b=14478 WHERE a=9413;\nUPDATE t2 SET b=4935 WHERE a=9414;\nUPDATE t2 SET b=30197 WHERE a=9415;\nUPDATE t2 SET b=28404 WHERE a=9416;\nUPDATE t2 SET b=37602 WHERE a=9417;\nUPDATE t2 SET b=32651 WHERE a=9418;\nUPDATE t2 SET b=14047 WHERE a=9419;\nUPDATE t2 SET b=72873 WHERE a=9420;\nUPDATE t2 SET b=18333 WHERE a=9421;\nUPDATE t2 SET b=80442 WHERE a=9422;\nUPDATE t2 SET b=56775 WHERE a=9423;\nUPDATE t2 SET b=28612 WHERE a=9424;\nUPDATE t2 SET b=65771 WHERE a=9425;\nUPDATE t2 SET b=93801 WHERE a=9426;\nUPDATE t2 SET b=88702 WHERE a=9427;\nUPDATE t2 SET b=95873 WHERE a=9428;\nUPDATE t2 SET b=91965 WHERE a=9429;\nUPDATE t2 SET b=28279 WHERE a=9430;\nUPDATE t2 SET b=7654 WHERE a=9431;\nUPDATE t2 SET b=28586 WHERE a=9432;\nUPDATE t2 SET b=62426 WHERE a=9433;\nUPDATE t2 SET b=35204 WHERE a=9434;\nUPDATE t2 SET b=52820 WHERE a=9435;\nUPDATE t2 SET b=5771 WHERE a=9436;\nUPDATE t2 SET b=46072 WHERE a=9437;\nUPDATE t2 SET b=28920 WHERE a=9438;\nUPDATE t2 SET b=37974 WHERE a=9439;\nUPDATE t2 SET b=13299 WHERE a=9440;\nUPDATE t2 SET b=60196 WHERE a=9441;\nUPDATE t2 SET b=91023 WHERE a=9442;\nUPDATE t2 SET b=66444 WHERE a=9443;\nUPDATE t2 SET b=71181 WHERE a=9444;\nUPDATE t2 SET b=83761 WHERE a=9445;\nUPDATE t2 SET b=63618 WHERE a=9446;\nUPDATE t2 SET b=63665 WHERE a=9447;\nUPDATE t2 SET b=5844 WHERE a=9448;\nUPDATE t2 SET b=73908 WHERE a=9449;\nUPDATE t2 SET b=48764 WHERE a=9450;\nUPDATE t2 SET b=41918 WHERE a=9451;\nUPDATE t2 SET b=31422 WHERE a=9452;\nUPDATE t2 SET b=30862 WHERE a=9453;\nUPDATE t2 SET b=93 WHERE a=9454;\nUPDATE t2 SET b=35878 WHERE a=9455;\nUPDATE t2 SET b=81678 WHERE a=9456;\nUPDATE t2 SET b=7293 WHERE a=9457;\nUPDATE t2 SET b=82853 WHERE a=9458;\nUPDATE t2 SET b=9796 WHERE a=9459;\nUPDATE t2 SET b=94508 WHERE a=9460;\nUPDATE t2 SET b=31356 WHERE a=9461;\nUPDATE t2 SET b=74306 WHERE a=9462;\nUPDATE t2 SET b=27265 WHERE a=9463;\nUPDATE t2 SET b=80298 WHERE a=9464;\nUPDATE t2 SET b=58713 WHERE a=9465;\nUPDATE t2 SET b=66678 WHERE a=9466;\nUPDATE t2 SET b=6520 WHERE a=9467;\nUPDATE t2 SET b=55512 WHERE a=9468;\nUPDATE t2 SET b=15455 WHERE a=9469;\nUPDATE t2 SET b=95486 WHERE a=9470;\nUPDATE t2 SET b=54579 WHERE a=9471;\nUPDATE t2 SET b=74638 WHERE a=9472;\nUPDATE t2 SET b=30231 WHERE a=9473;\nUPDATE t2 SET b=23212 WHERE a=9474;\nUPDATE t2 SET b=64340 WHERE a=9475;\nUPDATE t2 SET b=83263 WHERE a=9476;\nUPDATE t2 SET b=66133 WHERE a=9477;\nUPDATE t2 SET b=98132 WHERE a=9478;\nUPDATE t2 SET b=95126 WHERE a=9479;\nUPDATE t2 SET b=71976 WHERE a=9480;\nUPDATE t2 SET b=14259 WHERE a=9481;\nUPDATE t2 SET b=41841 WHERE a=9482;\nUPDATE t2 SET b=4914 WHERE a=9483;\nUPDATE t2 SET b=10548 WHERE a=9484;\nUPDATE t2 SET b=45512 WHERE a=9485;\nUPDATE t2 SET b=27089 WHERE a=9486;\nUPDATE t2 SET b=9590 WHERE a=9487;\nUPDATE t2 SET b=27854 WHERE a=9488;\nUPDATE t2 SET b=44781 WHERE a=9489;\nUPDATE t2 SET b=16060 WHERE a=9490;\nUPDATE t2 SET b=37286 WHERE a=9491;\nUPDATE t2 SET b=13971 WHERE a=9492;\nUPDATE t2 SET b=69959 WHERE a=9493;\nUPDATE t2 SET b=28331 WHERE a=9494;\nUPDATE t2 SET b=64015 WHERE a=9495;\nUPDATE t2 SET b=93763 WHERE a=9496;\nUPDATE t2 SET b=86328 WHERE a=9497;\nUPDATE t2 SET b=13631 WHERE a=9498;\nUPDATE t2 SET b=53090 WHERE a=9499;\nUPDATE t2 SET b=15018 WHERE a=9500;\nUPDATE t2 SET b=86148 WHERE a=9501;\nUPDATE t2 SET b=10905 WHERE a=9502;\nUPDATE t2 SET b=78062 WHERE a=9503;\nUPDATE t2 SET b=49173 WHERE a=9504;\nUPDATE t2 SET b=88257 WHERE a=9505;\nUPDATE t2 SET b=71655 WHERE a=9506;\nUPDATE t2 SET b=32959 WHERE a=9507;\nUPDATE t2 SET b=43721 WHERE a=9508;\nUPDATE t2 SET b=90453 WHERE a=9509;\nUPDATE t2 SET b=98141 WHERE a=9510;\nUPDATE t2 SET b=7299 WHERE a=9511;\nUPDATE t2 SET b=64917 WHERE a=9512;\nUPDATE t2 SET b=18054 WHERE a=9513;\nUPDATE t2 SET b=13524 WHERE a=9514;\nUPDATE t2 SET b=23496 WHERE a=9515;\nUPDATE t2 SET b=75337 WHERE a=9516;\nUPDATE t2 SET b=92411 WHERE a=9517;\nUPDATE t2 SET b=63755 WHERE a=9518;\nUPDATE t2 SET b=16383 WHERE a=9519;\nUPDATE t2 SET b=17491 WHERE a=9520;\nUPDATE t2 SET b=30812 WHERE a=9521;\nUPDATE t2 SET b=31816 WHERE a=9522;\nUPDATE t2 SET b=59564 WHERE a=9523;\nUPDATE t2 SET b=75145 WHERE a=9524;\nUPDATE t2 SET b=14103 WHERE a=9525;\nUPDATE t2 SET b=72717 WHERE a=9526;\nUPDATE t2 SET b=89505 WHERE a=9527;\nUPDATE t2 SET b=1247 WHERE a=9528;\nUPDATE t2 SET b=12887 WHERE a=9529;\nUPDATE t2 SET b=48877 WHERE a=9530;\nUPDATE t2 SET b=50418 WHERE a=9531;\nUPDATE t2 SET b=2353 WHERE a=9532;\nUPDATE t2 SET b=33313 WHERE a=9533;\nUPDATE t2 SET b=74908 WHERE a=9534;\nUPDATE t2 SET b=88687 WHERE a=9535;\nUPDATE t2 SET b=7588 WHERE a=9536;\nUPDATE t2 SET b=61631 WHERE a=9537;\nUPDATE t2 SET b=84409 WHERE a=9538;\nUPDATE t2 SET b=42676 WHERE a=9539;\nUPDATE t2 SET b=14452 WHERE a=9540;\nUPDATE t2 SET b=69048 WHERE a=9541;\nUPDATE t2 SET b=9341 WHERE a=9542;\nUPDATE t2 SET b=82893 WHERE a=9543;\nUPDATE t2 SET b=88653 WHERE a=9544;\nUPDATE t2 SET b=48646 WHERE a=9545;\nUPDATE t2 SET b=39237 WHERE a=9546;\nUPDATE t2 SET b=9326 WHERE a=9547;\nUPDATE t2 SET b=66452 WHERE a=9548;\nUPDATE t2 SET b=10698 WHERE a=9549;\nUPDATE t2 SET b=48214 WHERE a=9550;\nUPDATE t2 SET b=39494 WHERE a=9551;\nUPDATE t2 SET b=6677 WHERE a=9552;\nUPDATE t2 SET b=5036 WHERE a=9553;\nUPDATE t2 SET b=58505 WHERE a=9554;\nUPDATE t2 SET b=75152 WHERE a=9555;\nUPDATE t2 SET b=96010 WHERE a=9556;\nUPDATE t2 SET b=65699 WHERE a=9557;\nUPDATE t2 SET b=4955 WHERE a=9558;\nUPDATE t2 SET b=46167 WHERE a=9559;\nUPDATE t2 SET b=13100 WHERE a=9560;\nUPDATE t2 SET b=87853 WHERE a=9561;\nUPDATE t2 SET b=51902 WHERE a=9562;\nUPDATE t2 SET b=6271 WHERE a=9563;\nUPDATE t2 SET b=26694 WHERE a=9564;\nUPDATE t2 SET b=97548 WHERE a=9565;\nUPDATE t2 SET b=46980 WHERE a=9566;\nUPDATE t2 SET b=37644 WHERE a=9567;\nUPDATE t2 SET b=68029 WHERE a=9568;\nUPDATE t2 SET b=25885 WHERE a=9569;\nUPDATE t2 SET b=96020 WHERE a=9570;\nUPDATE t2 SET b=79518 WHERE a=9571;\nUPDATE t2 SET b=26119 WHERE a=9572;\nUPDATE t2 SET b=87885 WHERE a=9573;\nUPDATE t2 SET b=34055 WHERE a=9574;\nUPDATE t2 SET b=98419 WHERE a=9575;\nUPDATE t2 SET b=83133 WHERE a=9576;\nUPDATE t2 SET b=92569 WHERE a=9577;\nUPDATE t2 SET b=8321 WHERE a=9578;\nUPDATE t2 SET b=89816 WHERE a=9579;\nUPDATE t2 SET b=92230 WHERE a=9580;\nUPDATE t2 SET b=56094 WHERE a=9581;\nUPDATE t2 SET b=59111 WHERE a=9582;\nUPDATE t2 SET b=93816 WHERE a=9583;\nUPDATE t2 SET b=51994 WHERE a=9584;\nUPDATE t2 SET b=99615 WHERE a=9585;\nUPDATE t2 SET b=380 WHERE a=9586;\nUPDATE t2 SET b=68208 WHERE a=9587;\nUPDATE t2 SET b=39810 WHERE a=9588;\nUPDATE t2 SET b=66651 WHERE a=9589;\nUPDATE t2 SET b=75371 WHERE a=9590;\nUPDATE t2 SET b=13742 WHERE a=9591;\nUPDATE t2 SET b=43482 WHERE a=9592;\nUPDATE t2 SET b=85749 WHERE a=9593;\nUPDATE t2 SET b=1156 WHERE a=9594;\nUPDATE t2 SET b=37616 WHERE a=9595;\nUPDATE t2 SET b=65010 WHERE a=9596;\nUPDATE t2 SET b=79998 WHERE a=9597;\nUPDATE t2 SET b=31662 WHERE a=9598;\nUPDATE t2 SET b=97599 WHERE a=9599;\nUPDATE t2 SET b=69638 WHERE a=9600;\nUPDATE t2 SET b=47024 WHERE a=9601;\nUPDATE t2 SET b=16802 WHERE a=9602;\nUPDATE t2 SET b=13751 WHERE a=9603;\nUPDATE t2 SET b=68826 WHERE a=9604;\nUPDATE t2 SET b=68769 WHERE a=9605;\nUPDATE t2 SET b=93811 WHERE a=9606;\nUPDATE t2 SET b=87463 WHERE a=9607;\nUPDATE t2 SET b=10699 WHERE a=9608;\nUPDATE t2 SET b=27315 WHERE a=9609;\nUPDATE t2 SET b=60902 WHERE a=9610;\nUPDATE t2 SET b=73261 WHERE a=9611;\nUPDATE t2 SET b=48275 WHERE a=9612;\nUPDATE t2 SET b=22258 WHERE a=9613;\nUPDATE t2 SET b=38148 WHERE a=9614;\nUPDATE t2 SET b=67642 WHERE a=9615;\nUPDATE t2 SET b=77694 WHERE a=9616;\nUPDATE t2 SET b=28112 WHERE a=9617;\nUPDATE t2 SET b=56570 WHERE a=9618;\nUPDATE t2 SET b=81425 WHERE a=9619;\nUPDATE t2 SET b=18532 WHERE a=9620;\nUPDATE t2 SET b=39862 WHERE a=9621;\nUPDATE t2 SET b=62 WHERE a=9622;\nUPDATE t2 SET b=30954 WHERE a=9623;\nUPDATE t2 SET b=24553 WHERE a=9624;\nUPDATE t2 SET b=65683 WHERE a=9625;\nUPDATE t2 SET b=43896 WHERE a=9626;\nUPDATE t2 SET b=91072 WHERE a=9627;\nUPDATE t2 SET b=31882 WHERE a=9628;\nUPDATE t2 SET b=3523 WHERE a=9629;\nUPDATE t2 SET b=33049 WHERE a=9630;\nUPDATE t2 SET b=2410 WHERE a=9631;\nUPDATE t2 SET b=4104 WHERE a=9632;\nUPDATE t2 SET b=20423 WHERE a=9633;\nUPDATE t2 SET b=11771 WHERE a=9634;\nUPDATE t2 SET b=59666 WHERE a=9635;\nUPDATE t2 SET b=38493 WHERE a=9636;\nUPDATE t2 SET b=13328 WHERE a=9637;\nUPDATE t2 SET b=16192 WHERE a=9638;\nUPDATE t2 SET b=76894 WHERE a=9639;\nUPDATE t2 SET b=11406 WHERE a=9640;\nUPDATE t2 SET b=76948 WHERE a=9641;\nUPDATE t2 SET b=8734 WHERE a=9642;\nUPDATE t2 SET b=24004 WHERE a=9643;\nUPDATE t2 SET b=63586 WHERE a=9644;\nUPDATE t2 SET b=99920 WHERE a=9645;\nUPDATE t2 SET b=86592 WHERE a=9646;\nUPDATE t2 SET b=83851 WHERE a=9647;\nUPDATE t2 SET b=6723 WHERE a=9648;\nUPDATE t2 SET b=67880 WHERE a=9649;\nUPDATE t2 SET b=18080 WHERE a=9650;\nUPDATE t2 SET b=62168 WHERE a=9651;\nUPDATE t2 SET b=34471 WHERE a=9652;\nUPDATE t2 SET b=27310 WHERE a=9653;\nUPDATE t2 SET b=44259 WHERE a=9654;\nUPDATE t2 SET b=10955 WHERE a=9655;\nUPDATE t2 SET b=59091 WHERE a=9656;\nUPDATE t2 SET b=49097 WHERE a=9657;\nUPDATE t2 SET b=44679 WHERE a=9658;\nUPDATE t2 SET b=16439 WHERE a=9659;\nUPDATE t2 SET b=12438 WHERE a=9660;\nUPDATE t2 SET b=86777 WHERE a=9661;\nUPDATE t2 SET b=21028 WHERE a=9662;\nUPDATE t2 SET b=46961 WHERE a=9663;\nUPDATE t2 SET b=17486 WHERE a=9664;\nUPDATE t2 SET b=69520 WHERE a=9665;\nUPDATE t2 SET b=9174 WHERE a=9666;\nUPDATE t2 SET b=5671 WHERE a=9667;\nUPDATE t2 SET b=50340 WHERE a=9668;\nUPDATE t2 SET b=35309 WHERE a=9669;\nUPDATE t2 SET b=93114 WHERE a=9670;\nUPDATE t2 SET b=63940 WHERE a=9671;\nUPDATE t2 SET b=27022 WHERE a=9672;\nUPDATE t2 SET b=46716 WHERE a=9673;\nUPDATE t2 SET b=31769 WHERE a=9674;\nUPDATE t2 SET b=15986 WHERE a=9675;\nUPDATE t2 SET b=2820 WHERE a=9676;\nUPDATE t2 SET b=89097 WHERE a=9677;\nUPDATE t2 SET b=43842 WHERE a=9678;\nUPDATE t2 SET b=73858 WHERE a=9679;\nUPDATE t2 SET b=84140 WHERE a=9680;\nUPDATE t2 SET b=66319 WHERE a=9681;\nUPDATE t2 SET b=56155 WHERE a=9682;\nUPDATE t2 SET b=23611 WHERE a=9683;\nUPDATE t2 SET b=13618 WHERE a=9684;\nUPDATE t2 SET b=13974 WHERE a=9685;\nUPDATE t2 SET b=2728 WHERE a=9686;\nUPDATE t2 SET b=49141 WHERE a=9687;\nUPDATE t2 SET b=19061 WHERE a=9688;\nUPDATE t2 SET b=47458 WHERE a=9689;\nUPDATE t2 SET b=67022 WHERE a=9690;\nUPDATE t2 SET b=48994 WHERE a=9691;\nUPDATE t2 SET b=23799 WHERE a=9692;\nUPDATE t2 SET b=74550 WHERE a=9693;\nUPDATE t2 SET b=73359 WHERE a=9694;\nUPDATE t2 SET b=8146 WHERE a=9695;\nUPDATE t2 SET b=85894 WHERE a=9696;\nUPDATE t2 SET b=68160 WHERE a=9697;\nUPDATE t2 SET b=52043 WHERE a=9698;\nUPDATE t2 SET b=28985 WHERE a=9699;\nUPDATE t2 SET b=32589 WHERE a=9700;\nUPDATE t2 SET b=86215 WHERE a=9701;\nUPDATE t2 SET b=10803 WHERE a=9702;\nUPDATE t2 SET b=36440 WHERE a=9703;\nUPDATE t2 SET b=81988 WHERE a=9704;\nUPDATE t2 SET b=43265 WHERE a=9705;\nUPDATE t2 SET b=56006 WHERE a=9706;\nUPDATE t2 SET b=42611 WHERE a=9707;\nUPDATE t2 SET b=63227 WHERE a=9708;\nUPDATE t2 SET b=77617 WHERE a=9709;\nUPDATE t2 SET b=70903 WHERE a=9710;\nUPDATE t2 SET b=35569 WHERE a=9711;\nUPDATE t2 SET b=45622 WHERE a=9712;\nUPDATE t2 SET b=69905 WHERE a=9713;\nUPDATE t2 SET b=72301 WHERE a=9714;\nUPDATE t2 SET b=86257 WHERE a=9715;\nUPDATE t2 SET b=41392 WHERE a=9716;\nUPDATE t2 SET b=55504 WHERE a=9717;\nUPDATE t2 SET b=35750 WHERE a=9718;\nUPDATE t2 SET b=92424 WHERE a=9719;\nUPDATE t2 SET b=42157 WHERE a=9720;\nUPDATE t2 SET b=91689 WHERE a=9721;\nUPDATE t2 SET b=29639 WHERE a=9722;\nUPDATE t2 SET b=7458 WHERE a=9723;\nUPDATE t2 SET b=55392 WHERE a=9724;\nUPDATE t2 SET b=67138 WHERE a=9725;\nUPDATE t2 SET b=26722 WHERE a=9726;\nUPDATE t2 SET b=35037 WHERE a=9727;\nUPDATE t2 SET b=53855 WHERE a=9728;\nUPDATE t2 SET b=96642 WHERE a=9729;\nUPDATE t2 SET b=68047 WHERE a=9730;\nUPDATE t2 SET b=95354 WHERE a=9731;\nUPDATE t2 SET b=33901 WHERE a=9732;\nUPDATE t2 SET b=37222 WHERE a=9733;\nUPDATE t2 SET b=49380 WHERE a=9734;\nUPDATE t2 SET b=84629 WHERE a=9735;\nUPDATE t2 SET b=43819 WHERE a=9736;\nUPDATE t2 SET b=80831 WHERE a=9737;\nUPDATE t2 SET b=55820 WHERE a=9738;\nUPDATE t2 SET b=10125 WHERE a=9739;\nUPDATE t2 SET b=64621 WHERE a=9740;\nUPDATE t2 SET b=1644 WHERE a=9741;\nUPDATE t2 SET b=34785 WHERE a=9742;\nUPDATE t2 SET b=62027 WHERE a=9743;\nUPDATE t2 SET b=6008 WHERE a=9744;\nUPDATE t2 SET b=76215 WHERE a=9745;\nUPDATE t2 SET b=49857 WHERE a=9746;\nUPDATE t2 SET b=96680 WHERE a=9747;\nUPDATE t2 SET b=50474 WHERE a=9748;\nUPDATE t2 SET b=91103 WHERE a=9749;\nUPDATE t2 SET b=79330 WHERE a=9750;\nUPDATE t2 SET b=8932 WHERE a=9751;\nUPDATE t2 SET b=11691 WHERE a=9752;\nUPDATE t2 SET b=71428 WHERE a=9753;\nUPDATE t2 SET b=26642 WHERE a=9754;\nUPDATE t2 SET b=76105 WHERE a=9755;\nUPDATE t2 SET b=96286 WHERE a=9756;\nUPDATE t2 SET b=39312 WHERE a=9757;\nUPDATE t2 SET b=94967 WHERE a=9758;\nUPDATE t2 SET b=69075 WHERE a=9759;\nUPDATE t2 SET b=63235 WHERE a=9760;\nUPDATE t2 SET b=13687 WHERE a=9761;\nUPDATE t2 SET b=2315 WHERE a=9762;\nUPDATE t2 SET b=12537 WHERE a=9763;\nUPDATE t2 SET b=71002 WHERE a=9764;\nUPDATE t2 SET b=75077 WHERE a=9765;\nUPDATE t2 SET b=91034 WHERE a=9766;\nUPDATE t2 SET b=48573 WHERE a=9767;\nUPDATE t2 SET b=79181 WHERE a=9768;\nUPDATE t2 SET b=81405 WHERE a=9769;\nUPDATE t2 SET b=23256 WHERE a=9770;\nUPDATE t2 SET b=72663 WHERE a=9771;\nUPDATE t2 SET b=96197 WHERE a=9772;\nUPDATE t2 SET b=18575 WHERE a=9773;\nUPDATE t2 SET b=18067 WHERE a=9774;\nUPDATE t2 SET b=56524 WHERE a=9775;\nUPDATE t2 SET b=30471 WHERE a=9776;\nUPDATE t2 SET b=85763 WHERE a=9777;\nUPDATE t2 SET b=6699 WHERE a=9778;\nUPDATE t2 SET b=34429 WHERE a=9779;\nUPDATE t2 SET b=75939 WHERE a=9780;\nUPDATE t2 SET b=44649 WHERE a=9781;\nUPDATE t2 SET b=75171 WHERE a=9782;\nUPDATE t2 SET b=86785 WHERE a=9783;\nUPDATE t2 SET b=91526 WHERE a=9784;\nUPDATE t2 SET b=18937 WHERE a=9785;\nUPDATE t2 SET b=85830 WHERE a=9786;\nUPDATE t2 SET b=19715 WHERE a=9787;\nUPDATE t2 SET b=97254 WHERE a=9788;\nUPDATE t2 SET b=54964 WHERE a=9789;\nUPDATE t2 SET b=48080 WHERE a=9790;\nUPDATE t2 SET b=97181 WHERE a=9791;\nUPDATE t2 SET b=78500 WHERE a=9792;\nUPDATE t2 SET b=93842 WHERE a=9793;\nUPDATE t2 SET b=61097 WHERE a=9794;\nUPDATE t2 SET b=55608 WHERE a=9795;\nUPDATE t2 SET b=19129 WHERE a=9796;\nUPDATE t2 SET b=68590 WHERE a=9797;\nUPDATE t2 SET b=36363 WHERE a=9798;\nUPDATE t2 SET b=89971 WHERE a=9799;\nUPDATE t2 SET b=28845 WHERE a=9800;\nUPDATE t2 SET b=72744 WHERE a=9801;\nUPDATE t2 SET b=84868 WHERE a=9802;\nUPDATE t2 SET b=97331 WHERE a=9803;\nUPDATE t2 SET b=41895 WHERE a=9804;\nUPDATE t2 SET b=22097 WHERE a=9805;\nUPDATE t2 SET b=68138 WHERE a=9806;\nUPDATE t2 SET b=88430 WHERE a=9807;\nUPDATE t2 SET b=1974 WHERE a=9808;\nUPDATE t2 SET b=4190 WHERE a=9809;\nUPDATE t2 SET b=29956 WHERE a=9810;\nUPDATE t2 SET b=10180 WHERE a=9811;\nUPDATE t2 SET b=94520 WHERE a=9812;\nUPDATE t2 SET b=88474 WHERE a=9813;\nUPDATE t2 SET b=17721 WHERE a=9814;\nUPDATE t2 SET b=71033 WHERE a=9815;\nUPDATE t2 SET b=4891 WHERE a=9816;\nUPDATE t2 SET b=74913 WHERE a=9817;\nUPDATE t2 SET b=92910 WHERE a=9818;\nUPDATE t2 SET b=1809 WHERE a=9819;\nUPDATE t2 SET b=39052 WHERE a=9820;\nUPDATE t2 SET b=66990 WHERE a=9821;\nUPDATE t2 SET b=67461 WHERE a=9822;\nUPDATE t2 SET b=7916 WHERE a=9823;\nUPDATE t2 SET b=6745 WHERE a=9824;\nUPDATE t2 SET b=28985 WHERE a=9825;\nUPDATE t2 SET b=21983 WHERE a=9826;\nUPDATE t2 SET b=10255 WHERE a=9827;\nUPDATE t2 SET b=2537 WHERE a=9828;\nUPDATE t2 SET b=44093 WHERE a=9829;\nUPDATE t2 SET b=66430 WHERE a=9830;\nUPDATE t2 SET b=65432 WHERE a=9831;\nUPDATE t2 SET b=68095 WHERE a=9832;\nUPDATE t2 SET b=10697 WHERE a=9833;\nUPDATE t2 SET b=99374 WHERE a=9834;\nUPDATE t2 SET b=9409 WHERE a=9835;\nUPDATE t2 SET b=30006 WHERE a=9836;\nUPDATE t2 SET b=55824 WHERE a=9837;\nUPDATE t2 SET b=94727 WHERE a=9838;\nUPDATE t2 SET b=24567 WHERE a=9839;\nUPDATE t2 SET b=64080 WHERE a=9840;\nUPDATE t2 SET b=84989 WHERE a=9841;\nUPDATE t2 SET b=21668 WHERE a=9842;\nUPDATE t2 SET b=60776 WHERE a=9843;\nUPDATE t2 SET b=69828 WHERE a=9844;\nUPDATE t2 SET b=66945 WHERE a=9845;\nUPDATE t2 SET b=30359 WHERE a=9846;\nUPDATE t2 SET b=29150 WHERE a=9847;\nUPDATE t2 SET b=47768 WHERE a=9848;\nUPDATE t2 SET b=81276 WHERE a=9849;\nUPDATE t2 SET b=18724 WHERE a=9850;\nUPDATE t2 SET b=81120 WHERE a=9851;\nUPDATE t2 SET b=51051 WHERE a=9852;\nUPDATE t2 SET b=16001 WHERE a=9853;\nUPDATE t2 SET b=67278 WHERE a=9854;\nUPDATE t2 SET b=23463 WHERE a=9855;\nUPDATE t2 SET b=90479 WHERE a=9856;\nUPDATE t2 SET b=95651 WHERE a=9857;\nUPDATE t2 SET b=88637 WHERE a=9858;\nUPDATE t2 SET b=41455 WHERE a=9859;\nUPDATE t2 SET b=26391 WHERE a=9860;\nUPDATE t2 SET b=25280 WHERE a=9861;\nUPDATE t2 SET b=25186 WHERE a=9862;\nUPDATE t2 SET b=54417 WHERE a=9863;\nUPDATE t2 SET b=32562 WHERE a=9864;\nUPDATE t2 SET b=74001 WHERE a=9865;\nUPDATE t2 SET b=19018 WHERE a=9866;\nUPDATE t2 SET b=12803 WHERE a=9867;\nUPDATE t2 SET b=68083 WHERE a=9868;\nUPDATE t2 SET b=70579 WHERE a=9869;\nUPDATE t2 SET b=91744 WHERE a=9870;\nUPDATE t2 SET b=44914 WHERE a=9871;\nUPDATE t2 SET b=4619 WHERE a=9872;\nUPDATE t2 SET b=57732 WHERE a=9873;\nUPDATE t2 SET b=66489 WHERE a=9874;\nUPDATE t2 SET b=12039 WHERE a=9875;\nUPDATE t2 SET b=55609 WHERE a=9876;\nUPDATE t2 SET b=29917 WHERE a=9877;\nUPDATE t2 SET b=2923 WHERE a=9878;\nUPDATE t2 SET b=47830 WHERE a=9879;\nUPDATE t2 SET b=28822 WHERE a=9880;\nUPDATE t2 SET b=99853 WHERE a=9881;\nUPDATE t2 SET b=32422 WHERE a=9882;\nUPDATE t2 SET b=28010 WHERE a=9883;\nUPDATE t2 SET b=38797 WHERE a=9884;\nUPDATE t2 SET b=30730 WHERE a=9885;\nUPDATE t2 SET b=82373 WHERE a=9886;\nUPDATE t2 SET b=58911 WHERE a=9887;\nUPDATE t2 SET b=85339 WHERE a=9888;\nUPDATE t2 SET b=98392 WHERE a=9889;\nUPDATE t2 SET b=70630 WHERE a=9890;\nUPDATE t2 SET b=96510 WHERE a=9891;\nUPDATE t2 SET b=34163 WHERE a=9892;\nUPDATE t2 SET b=77933 WHERE a=9893;\nUPDATE t2 SET b=82618 WHERE a=9894;\nUPDATE t2 SET b=15104 WHERE a=9895;\nUPDATE t2 SET b=53474 WHERE a=9896;\nUPDATE t2 SET b=74625 WHERE a=9897;\nUPDATE t2 SET b=70686 WHERE a=9898;\nUPDATE t2 SET b=71711 WHERE a=9899;\nUPDATE t2 SET b=11933 WHERE a=9900;\nUPDATE t2 SET b=86714 WHERE a=9901;\nUPDATE t2 SET b=52686 WHERE a=9902;\nUPDATE t2 SET b=59572 WHERE a=9903;\nUPDATE t2 SET b=23713 WHERE a=9904;\nUPDATE t2 SET b=8126 WHERE a=9905;\nUPDATE t2 SET b=87555 WHERE a=9906;\nUPDATE t2 SET b=97450 WHERE a=9907;\nUPDATE t2 SET b=70460 WHERE a=9908;\nUPDATE t2 SET b=4905 WHERE a=9909;\nUPDATE t2 SET b=49943 WHERE a=9910;\nUPDATE t2 SET b=48731 WHERE a=9911;\nUPDATE t2 SET b=28356 WHERE a=9912;\nUPDATE t2 SET b=3281 WHERE a=9913;\nUPDATE t2 SET b=95841 WHERE a=9914;\nUPDATE t2 SET b=15739 WHERE a=9915;\nUPDATE t2 SET b=27439 WHERE a=9916;\nUPDATE t2 SET b=66351 WHERE a=9917;\nUPDATE t2 SET b=36057 WHERE a=9918;\nUPDATE t2 SET b=4794 WHERE a=9919;\nUPDATE t2 SET b=30038 WHERE a=9920;\nUPDATE t2 SET b=72119 WHERE a=9921;\nUPDATE t2 SET b=42432 WHERE a=9922;\nUPDATE t2 SET b=7968 WHERE a=9923;\nUPDATE t2 SET b=41362 WHERE a=9924;\nUPDATE t2 SET b=5871 WHERE a=9925;\nUPDATE t2 SET b=32347 WHERE a=9926;\nUPDATE t2 SET b=6973 WHERE a=9927;\nUPDATE t2 SET b=24499 WHERE a=9928;\nUPDATE t2 SET b=45186 WHERE a=9929;\nUPDATE t2 SET b=14818 WHERE a=9930;\nUPDATE t2 SET b=74813 WHERE a=9931;\nUPDATE t2 SET b=12285 WHERE a=9932;\nUPDATE t2 SET b=77519 WHERE a=9933;\nUPDATE t2 SET b=98205 WHERE a=9934;\nUPDATE t2 SET b=10371 WHERE a=9935;\nUPDATE t2 SET b=40430 WHERE a=9936;\nUPDATE t2 SET b=75252 WHERE a=9937;\nUPDATE t2 SET b=97476 WHERE a=9938;\nUPDATE t2 SET b=84568 WHERE a=9939;\nUPDATE t2 SET b=7022 WHERE a=9940;\nUPDATE t2 SET b=31836 WHERE a=9941;\nUPDATE t2 SET b=694 WHERE a=9942;\nUPDATE t2 SET b=31922 WHERE a=9943;\nUPDATE t2 SET b=82439 WHERE a=9944;\nUPDATE t2 SET b=83546 WHERE a=9945;\nUPDATE t2 SET b=47185 WHERE a=9946;\nUPDATE t2 SET b=4887 WHERE a=9947;\nUPDATE t2 SET b=9907 WHERE a=9948;\nUPDATE t2 SET b=17173 WHERE a=9949;\nUPDATE t2 SET b=47244 WHERE a=9950;\nUPDATE t2 SET b=39468 WHERE a=9951;\nUPDATE t2 SET b=57870 WHERE a=9952;\nUPDATE t2 SET b=73670 WHERE a=9953;\nUPDATE t2 SET b=51129 WHERE a=9954;\nUPDATE t2 SET b=86787 WHERE a=9955;\nUPDATE t2 SET b=13543 WHERE a=9956;\nUPDATE t2 SET b=55096 WHERE a=9957;\nUPDATE t2 SET b=33234 WHERE a=9958;\nUPDATE t2 SET b=38642 WHERE a=9959;\nUPDATE t2 SET b=80905 WHERE a=9960;\nUPDATE t2 SET b=83611 WHERE a=9961;\nUPDATE t2 SET b=46731 WHERE a=9962;\nUPDATE t2 SET b=99488 WHERE a=9963;\nUPDATE t2 SET b=97303 WHERE a=9964;\nUPDATE t2 SET b=46767 WHERE a=9965;\nUPDATE t2 SET b=17461 WHERE a=9966;\nUPDATE t2 SET b=57598 WHERE a=9967;\nUPDATE t2 SET b=36770 WHERE a=9968;\nUPDATE t2 SET b=65189 WHERE a=9969;\nUPDATE t2 SET b=35177 WHERE a=9970;\nUPDATE t2 SET b=97571 WHERE a=9971;\nUPDATE t2 SET b=6770 WHERE a=9972;\nUPDATE t2 SET b=76373 WHERE a=9973;\nUPDATE t2 SET b=90740 WHERE a=9974;\nUPDATE t2 SET b=75669 WHERE a=9975;\nUPDATE t2 SET b=22395 WHERE a=9976;\nUPDATE t2 SET b=42601 WHERE a=9977;\nUPDATE t2 SET b=94262 WHERE a=9978;\nUPDATE t2 SET b=966 WHERE a=9979;\nUPDATE t2 SET b=74271 WHERE a=9980;\nUPDATE t2 SET b=21168 WHERE a=9981;\nUPDATE t2 SET b=98482 WHERE a=9982;\nUPDATE t2 SET b=68566 WHERE a=9983;\nUPDATE t2 SET b=60664 WHERE a=9984;\nUPDATE t2 SET b=34415 WHERE a=9985;\nUPDATE t2 SET b=10324 WHERE a=9986;\nUPDATE t2 SET b=7203 WHERE a=9987;\nUPDATE t2 SET b=88049 WHERE a=9988;\nUPDATE t2 SET b=32054 WHERE a=9989;\nUPDATE t2 SET b=86901 WHERE a=9990;\nUPDATE t2 SET b=38505 WHERE a=9991;\nUPDATE t2 SET b=27238 WHERE a=9992;\nUPDATE t2 SET b=26900 WHERE a=9993;\nUPDATE t2 SET b=74653 WHERE a=9994;\nUPDATE t2 SET b=35304 WHERE a=9995;\nUPDATE t2 SET b=65513 WHERE a=9996;\nUPDATE t2 SET b=98235 WHERE a=9997;\nUPDATE t2 SET b=69652 WHERE a=9998;\nUPDATE t2 SET b=56878 WHERE a=9999;\nUPDATE t2 SET b=71588 WHERE a=10000;\nUPDATE t2 SET b=39020 WHERE a=10001;\nUPDATE t2 SET b=6328 WHERE a=10002;\nUPDATE t2 SET b=87196 WHERE a=10003;\nUPDATE t2 SET b=75943 WHERE a=10004;\nUPDATE t2 SET b=72381 WHERE a=10005;\nUPDATE t2 SET b=67938 WHERE a=10006;\nUPDATE t2 SET b=55020 WHERE a=10007;\nUPDATE t2 SET b=99141 WHERE a=10008;\nUPDATE t2 SET b=96369 WHERE a=10009;\nUPDATE t2 SET b=79874 WHERE a=10010;\nUPDATE t2 SET b=92859 WHERE a=10011;\nUPDATE t2 SET b=45585 WHERE a=10012;\nUPDATE t2 SET b=14993 WHERE a=10013;\nUPDATE t2 SET b=40403 WHERE a=10014;\nUPDATE t2 SET b=12923 WHERE a=10015;\nUPDATE t2 SET b=58563 WHERE a=10016;\nUPDATE t2 SET b=34103 WHERE a=10017;\nUPDATE t2 SET b=39085 WHERE a=10018;\nUPDATE t2 SET b=84966 WHERE a=10019;\nUPDATE t2 SET b=41643 WHERE a=10020;\nUPDATE t2 SET b=3899 WHERE a=10021;\nUPDATE t2 SET b=83192 WHERE a=10022;\nUPDATE t2 SET b=9213 WHERE a=10023;\nUPDATE t2 SET b=69969 WHERE a=10024;\nUPDATE t2 SET b=50458 WHERE a=10025;\nUPDATE t2 SET b=35891 WHERE a=10026;\nUPDATE t2 SET b=74298 WHERE a=10027;\nUPDATE t2 SET b=22271 WHERE a=10028;\nUPDATE t2 SET b=73796 WHERE a=10029;\nUPDATE t2 SET b=22348 WHERE a=10030;\nUPDATE t2 SET b=40486 WHERE a=10031;\nUPDATE t2 SET b=16760 WHERE a=10032;\nUPDATE t2 SET b=79726 WHERE a=10033;\nUPDATE t2 SET b=83956 WHERE a=10034;\nUPDATE t2 SET b=41828 WHERE a=10035;\nUPDATE t2 SET b=54894 WHERE a=10036;\nUPDATE t2 SET b=98125 WHERE a=10037;\nUPDATE t2 SET b=52429 WHERE a=10038;\nUPDATE t2 SET b=95878 WHERE a=10039;\nUPDATE t2 SET b=69855 WHERE a=10040;\nUPDATE t2 SET b=91460 WHERE a=10041;\nUPDATE t2 SET b=1848 WHERE a=10042;\nUPDATE t2 SET b=91428 WHERE a=10043;\nUPDATE t2 SET b=33915 WHERE a=10044;\nUPDATE t2 SET b=74343 WHERE a=10045;\nUPDATE t2 SET b=32484 WHERE a=10046;\nUPDATE t2 SET b=37271 WHERE a=10047;\nUPDATE t2 SET b=77386 WHERE a=10048;\nUPDATE t2 SET b=60642 WHERE a=10049;\nUPDATE t2 SET b=95746 WHERE a=10050;\nUPDATE t2 SET b=8425 WHERE a=10051;\nUPDATE t2 SET b=70069 WHERE a=10052;\nUPDATE t2 SET b=45816 WHERE a=10053;\nUPDATE t2 SET b=10767 WHERE a=10054;\nUPDATE t2 SET b=69161 WHERE a=10055;\nUPDATE t2 SET b=98984 WHERE a=10056;\nUPDATE t2 SET b=8373 WHERE a=10057;\nUPDATE t2 SET b=26791 WHERE a=10058;\nUPDATE t2 SET b=83552 WHERE a=10059;\nUPDATE t2 SET b=72264 WHERE a=10060;\nUPDATE t2 SET b=34953 WHERE a=10061;\nUPDATE t2 SET b=36160 WHERE a=10062;\nUPDATE t2 SET b=84415 WHERE a=10063;\nUPDATE t2 SET b=72313 WHERE a=10064;\nUPDATE t2 SET b=95095 WHERE a=10065;\nUPDATE t2 SET b=95138 WHERE a=10066;\nUPDATE t2 SET b=78383 WHERE a=10067;\nUPDATE t2 SET b=40935 WHERE a=10068;\nUPDATE t2 SET b=20057 WHERE a=10069;\nUPDATE t2 SET b=48961 WHERE a=10070;\nUPDATE t2 SET b=64633 WHERE a=10071;\nUPDATE t2 SET b=59314 WHERE a=10072;\nUPDATE t2 SET b=98945 WHERE a=10073;\nUPDATE t2 SET b=3818 WHERE a=10074;\nUPDATE t2 SET b=83516 WHERE a=10075;\nUPDATE t2 SET b=64693 WHERE a=10076;\nUPDATE t2 SET b=20062 WHERE a=10077;\nUPDATE t2 SET b=92245 WHERE a=10078;\nUPDATE t2 SET b=25819 WHERE a=10079;\nUPDATE t2 SET b=9227 WHERE a=10080;\nUPDATE t2 SET b=86066 WHERE a=10081;\nUPDATE t2 SET b=84153 WHERE a=10082;\nUPDATE t2 SET b=71327 WHERE a=10083;\nUPDATE t2 SET b=42533 WHERE a=10084;\nUPDATE t2 SET b=52354 WHERE a=10085;\nUPDATE t2 SET b=11738 WHERE a=10086;\nUPDATE t2 SET b=81675 WHERE a=10087;\nUPDATE t2 SET b=76188 WHERE a=10088;\nUPDATE t2 SET b=24849 WHERE a=10089;\nUPDATE t2 SET b=47061 WHERE a=10090;\nUPDATE t2 SET b=21792 WHERE a=10091;\nUPDATE t2 SET b=77849 WHERE a=10092;\nUPDATE t2 SET b=23023 WHERE a=10093;\nUPDATE t2 SET b=94223 WHERE a=10094;\nUPDATE t2 SET b=22544 WHERE a=10095;\nUPDATE t2 SET b=18365 WHERE a=10096;\nUPDATE t2 SET b=12740 WHERE a=10097;\nUPDATE t2 SET b=39982 WHERE a=10098;\nUPDATE t2 SET b=47539 WHERE a=10099;\nUPDATE t2 SET b=73828 WHERE a=10100;\nUPDATE t2 SET b=33154 WHERE a=10101;\nUPDATE t2 SET b=77187 WHERE a=10102;\nUPDATE t2 SET b=54831 WHERE a=10103;\nUPDATE t2 SET b=96779 WHERE a=10104;\nUPDATE t2 SET b=83356 WHERE a=10105;\nUPDATE t2 SET b=5778 WHERE a=10106;\nUPDATE t2 SET b=40717 WHERE a=10107;\nUPDATE t2 SET b=51009 WHERE a=10108;\nUPDATE t2 SET b=99583 WHERE a=10109;\nUPDATE t2 SET b=55905 WHERE a=10110;\nUPDATE t2 SET b=96654 WHERE a=10111;\nUPDATE t2 SET b=55003 WHERE a=10112;\nUPDATE t2 SET b=17284 WHERE a=10113;\nUPDATE t2 SET b=28492 WHERE a=10114;\nUPDATE t2 SET b=22209 WHERE a=10115;\nUPDATE t2 SET b=15948 WHERE a=10116;\nUPDATE t2 SET b=28670 WHERE a=10117;\nUPDATE t2 SET b=53717 WHERE a=10118;\nUPDATE t2 SET b=98372 WHERE a=10119;\nUPDATE t2 SET b=40117 WHERE a=10120;\nUPDATE t2 SET b=1174 WHERE a=10121;\nUPDATE t2 SET b=24599 WHERE a=10122;\nUPDATE t2 SET b=97842 WHERE a=10123;\nUPDATE t2 SET b=68636 WHERE a=10124;\nUPDATE t2 SET b=62915 WHERE a=10125;\nUPDATE t2 SET b=51984 WHERE a=10126;\nUPDATE t2 SET b=56962 WHERE a=10127;\nUPDATE t2 SET b=43351 WHERE a=10128;\nUPDATE t2 SET b=17586 WHERE a=10129;\nUPDATE t2 SET b=72937 WHERE a=10130;\nUPDATE t2 SET b=84587 WHERE a=10131;\nUPDATE t2 SET b=38805 WHERE a=10132;\nUPDATE t2 SET b=87837 WHERE a=10133;\nUPDATE t2 SET b=22912 WHERE a=10134;\nUPDATE t2 SET b=83263 WHERE a=10135;\nUPDATE t2 SET b=9769 WHERE a=10136;\nUPDATE t2 SET b=5047 WHERE a=10137;\nUPDATE t2 SET b=47721 WHERE a=10138;\nUPDATE t2 SET b=63541 WHERE a=10139;\nUPDATE t2 SET b=86911 WHERE a=10140;\nUPDATE t2 SET b=47782 WHERE a=10141;\nUPDATE t2 SET b=44416 WHERE a=10142;\nUPDATE t2 SET b=57782 WHERE a=10143;\nUPDATE t2 SET b=76990 WHERE a=10144;\nUPDATE t2 SET b=42660 WHERE a=10145;\nUPDATE t2 SET b=50653 WHERE a=10146;\nUPDATE t2 SET b=44749 WHERE a=10147;\nUPDATE t2 SET b=44739 WHERE a=10148;\nUPDATE t2 SET b=50561 WHERE a=10149;\nUPDATE t2 SET b=44018 WHERE a=10150;\nUPDATE t2 SET b=4859 WHERE a=10151;\nUPDATE t2 SET b=5146 WHERE a=10152;\nUPDATE t2 SET b=92487 WHERE a=10153;\nUPDATE t2 SET b=94645 WHERE a=10154;\nUPDATE t2 SET b=11513 WHERE a=10155;\nUPDATE t2 SET b=61109 WHERE a=10156;\nUPDATE t2 SET b=70933 WHERE a=10157;\nUPDATE t2 SET b=99316 WHERE a=10158;\nUPDATE t2 SET b=75714 WHERE a=10159;\nUPDATE t2 SET b=55571 WHERE a=10160;\nUPDATE t2 SET b=45795 WHERE a=10161;\nUPDATE t2 SET b=78808 WHERE a=10162;\nUPDATE t2 SET b=58095 WHERE a=10163;\nUPDATE t2 SET b=33164 WHERE a=10164;\nUPDATE t2 SET b=92878 WHERE a=10165;\nUPDATE t2 SET b=18550 WHERE a=10166;\nUPDATE t2 SET b=51038 WHERE a=10167;\nUPDATE t2 SET b=11542 WHERE a=10168;\nUPDATE t2 SET b=86664 WHERE a=10169;\nUPDATE t2 SET b=30651 WHERE a=10170;\nUPDATE t2 SET b=59344 WHERE a=10171;\nUPDATE t2 SET b=9466 WHERE a=10172;\nUPDATE t2 SET b=54201 WHERE a=10173;\nUPDATE t2 SET b=89719 WHERE a=10174;\nUPDATE t2 SET b=43832 WHERE a=10175;\nUPDATE t2 SET b=63733 WHERE a=10176;\nUPDATE t2 SET b=48961 WHERE a=10177;\nUPDATE t2 SET b=40808 WHERE a=10178;\nUPDATE t2 SET b=32014 WHERE a=10179;\nUPDATE t2 SET b=24134 WHERE a=10180;\nUPDATE t2 SET b=18285 WHERE a=10181;\nUPDATE t2 SET b=66084 WHERE a=10182;\nUPDATE t2 SET b=71433 WHERE a=10183;\nUPDATE t2 SET b=44345 WHERE a=10184;\nUPDATE t2 SET b=21255 WHERE a=10185;\nUPDATE t2 SET b=94841 WHERE a=10186;\nUPDATE t2 SET b=88035 WHERE a=10187;\nUPDATE t2 SET b=19859 WHERE a=10188;\nUPDATE t2 SET b=86318 WHERE a=10189;\nUPDATE t2 SET b=54811 WHERE a=10190;\nUPDATE t2 SET b=8466 WHERE a=10191;\nUPDATE t2 SET b=27776 WHERE a=10192;\nUPDATE t2 SET b=47388 WHERE a=10193;\nUPDATE t2 SET b=94767 WHERE a=10194;\nUPDATE t2 SET b=23163 WHERE a=10195;\nUPDATE t2 SET b=55799 WHERE a=10196;\nUPDATE t2 SET b=8383 WHERE a=10197;\nUPDATE t2 SET b=31277 WHERE a=10198;\nUPDATE t2 SET b=67436 WHERE a=10199;\nUPDATE t2 SET b=61825 WHERE a=10200;\nUPDATE t2 SET b=34888 WHERE a=10201;\nUPDATE t2 SET b=29675 WHERE a=10202;\nUPDATE t2 SET b=88941 WHERE a=10203;\nUPDATE t2 SET b=24139 WHERE a=10204;\nUPDATE t2 SET b=95477 WHERE a=10205;\nUPDATE t2 SET b=4700 WHERE a=10206;\nUPDATE t2 SET b=42401 WHERE a=10207;\nUPDATE t2 SET b=73064 WHERE a=10208;\nUPDATE t2 SET b=18666 WHERE a=10209;\nUPDATE t2 SET b=84757 WHERE a=10210;\nUPDATE t2 SET b=26881 WHERE a=10211;\nUPDATE t2 SET b=42658 WHERE a=10212;\nUPDATE t2 SET b=92162 WHERE a=10213;\nUPDATE t2 SET b=87116 WHERE a=10214;\nUPDATE t2 SET b=43728 WHERE a=10215;\nUPDATE t2 SET b=12269 WHERE a=10216;\nUPDATE t2 SET b=72003 WHERE a=10217;\nUPDATE t2 SET b=634 WHERE a=10218;\nUPDATE t2 SET b=72006 WHERE a=10219;\nUPDATE t2 SET b=79507 WHERE a=10220;\nUPDATE t2 SET b=48484 WHERE a=10221;\nUPDATE t2 SET b=57089 WHERE a=10222;\nUPDATE t2 SET b=12006 WHERE a=10223;\nUPDATE t2 SET b=76661 WHERE a=10224;\nUPDATE t2 SET b=26818 WHERE a=10225;\nUPDATE t2 SET b=24511 WHERE a=10226;\nUPDATE t2 SET b=25491 WHERE a=10227;\nUPDATE t2 SET b=22578 WHERE a=10228;\nUPDATE t2 SET b=47968 WHERE a=10229;\nUPDATE t2 SET b=40459 WHERE a=10230;\nUPDATE t2 SET b=91871 WHERE a=10231;\nUPDATE t2 SET b=58161 WHERE a=10232;\nUPDATE t2 SET b=6765 WHERE a=10233;\nUPDATE t2 SET b=76996 WHERE a=10234;\nUPDATE t2 SET b=45944 WHERE a=10235;\nUPDATE t2 SET b=58226 WHERE a=10236;\nUPDATE t2 SET b=80501 WHERE a=10237;\nUPDATE t2 SET b=27931 WHERE a=10238;\nUPDATE t2 SET b=16210 WHERE a=10239;\nUPDATE t2 SET b=4632 WHERE a=10240;\nUPDATE t2 SET b=21288 WHERE a=10241;\nUPDATE t2 SET b=48933 WHERE a=10242;\nUPDATE t2 SET b=68249 WHERE a=10243;\nUPDATE t2 SET b=8097 WHERE a=10244;\nUPDATE t2 SET b=36151 WHERE a=10245;\nUPDATE t2 SET b=40210 WHERE a=10246;\nUPDATE t2 SET b=16009 WHERE a=10247;\nUPDATE t2 SET b=37789 WHERE a=10248;\nUPDATE t2 SET b=82 WHERE a=10249;\nUPDATE t2 SET b=69767 WHERE a=10250;\nUPDATE t2 SET b=84727 WHERE a=10251;\nUPDATE t2 SET b=70015 WHERE a=10252;\nUPDATE t2 SET b=90717 WHERE a=10253;\nUPDATE t2 SET b=16359 WHERE a=10254;\nUPDATE t2 SET b=86895 WHERE a=10255;\nUPDATE t2 SET b=64556 WHERE a=10256;\nUPDATE t2 SET b=16203 WHERE a=10257;\nUPDATE t2 SET b=7494 WHERE a=10258;\nUPDATE t2 SET b=60644 WHERE a=10259;\nUPDATE t2 SET b=89205 WHERE a=10260;\nUPDATE t2 SET b=44438 WHERE a=10261;\nUPDATE t2 SET b=13358 WHERE a=10262;\nUPDATE t2 SET b=32686 WHERE a=10263;\nUPDATE t2 SET b=91599 WHERE a=10264;\nUPDATE t2 SET b=61738 WHERE a=10265;\nUPDATE t2 SET b=70526 WHERE a=10266;\nUPDATE t2 SET b=73070 WHERE a=10267;\nUPDATE t2 SET b=94855 WHERE a=10268;\nUPDATE t2 SET b=10508 WHERE a=10269;\nUPDATE t2 SET b=2353 WHERE a=10270;\nUPDATE t2 SET b=15408 WHERE a=10271;\nUPDATE t2 SET b=58469 WHERE a=10272;\nUPDATE t2 SET b=64973 WHERE a=10273;\nUPDATE t2 SET b=39678 WHERE a=10274;\nUPDATE t2 SET b=54269 WHERE a=10275;\nUPDATE t2 SET b=2531 WHERE a=10276;\nUPDATE t2 SET b=65628 WHERE a=10277;\nUPDATE t2 SET b=40196 WHERE a=10278;\nUPDATE t2 SET b=38719 WHERE a=10279;\nUPDATE t2 SET b=75917 WHERE a=10280;\nUPDATE t2 SET b=36551 WHERE a=10281;\nUPDATE t2 SET b=16181 WHERE a=10282;\nUPDATE t2 SET b=66335 WHERE a=10283;\nUPDATE t2 SET b=79168 WHERE a=10284;\nUPDATE t2 SET b=61072 WHERE a=10285;\nUPDATE t2 SET b=86204 WHERE a=10286;\nUPDATE t2 SET b=61035 WHERE a=10287;\nUPDATE t2 SET b=58106 WHERE a=10288;\nUPDATE t2 SET b=15216 WHERE a=10289;\nUPDATE t2 SET b=45797 WHERE a=10290;\nUPDATE t2 SET b=69015 WHERE a=10291;\nUPDATE t2 SET b=71159 WHERE a=10292;\nUPDATE t2 SET b=54500 WHERE a=10293;\nUPDATE t2 SET b=17287 WHERE a=10294;\nUPDATE t2 SET b=12632 WHERE a=10295;\nUPDATE t2 SET b=24372 WHERE a=10296;\nUPDATE t2 SET b=66072 WHERE a=10297;\nUPDATE t2 SET b=43235 WHERE a=10298;\nUPDATE t2 SET b=72004 WHERE a=10299;\nUPDATE t2 SET b=22946 WHERE a=10300;\nUPDATE t2 SET b=45221 WHERE a=10301;\nUPDATE t2 SET b=62967 WHERE a=10302;\nUPDATE t2 SET b=70451 WHERE a=10303;\nUPDATE t2 SET b=77499 WHERE a=10304;\nUPDATE t2 SET b=12439 WHERE a=10305;\nUPDATE t2 SET b=50626 WHERE a=10306;\nUPDATE t2 SET b=81287 WHERE a=10307;\nUPDATE t2 SET b=82880 WHERE a=10308;\nUPDATE t2 SET b=81037 WHERE a=10309;\nUPDATE t2 SET b=75115 WHERE a=10310;\nUPDATE t2 SET b=38232 WHERE a=10311;\nUPDATE t2 SET b=53850 WHERE a=10312;\nUPDATE t2 SET b=68621 WHERE a=10313;\nUPDATE t2 SET b=67980 WHERE a=10314;\nUPDATE t2 SET b=25084 WHERE a=10315;\nUPDATE t2 SET b=97679 WHERE a=10316;\nUPDATE t2 SET b=72671 WHERE a=10317;\nUPDATE t2 SET b=23493 WHERE a=10318;\nUPDATE t2 SET b=83076 WHERE a=10319;\nUPDATE t2 SET b=38793 WHERE a=10320;\nUPDATE t2 SET b=15912 WHERE a=10321;\nUPDATE t2 SET b=50395 WHERE a=10322;\nUPDATE t2 SET b=97671 WHERE a=10323;\nUPDATE t2 SET b=14338 WHERE a=10324;\nUPDATE t2 SET b=12789 WHERE a=10325;\nUPDATE t2 SET b=90131 WHERE a=10326;\nUPDATE t2 SET b=5411 WHERE a=10327;\nUPDATE t2 SET b=32320 WHERE a=10328;\nUPDATE t2 SET b=5532 WHERE a=10329;\nUPDATE t2 SET b=98838 WHERE a=10330;\nUPDATE t2 SET b=7306 WHERE a=10331;\nUPDATE t2 SET b=15701 WHERE a=10332;\nUPDATE t2 SET b=69250 WHERE a=10333;\nUPDATE t2 SET b=67423 WHERE a=10334;\nUPDATE t2 SET b=36148 WHERE a=10335;\nUPDATE t2 SET b=28692 WHERE a=10336;\nUPDATE t2 SET b=68067 WHERE a=10337;\nUPDATE t2 SET b=67067 WHERE a=10338;\nUPDATE t2 SET b=84490 WHERE a=10339;\nUPDATE t2 SET b=65973 WHERE a=10340;\nUPDATE t2 SET b=56011 WHERE a=10341;\nUPDATE t2 SET b=53666 WHERE a=10342;\nUPDATE t2 SET b=77678 WHERE a=10343;\nUPDATE t2 SET b=20518 WHERE a=10344;\nUPDATE t2 SET b=57189 WHERE a=10345;\nUPDATE t2 SET b=48641 WHERE a=10346;\nUPDATE t2 SET b=88557 WHERE a=10347;\nUPDATE t2 SET b=51942 WHERE a=10348;\nUPDATE t2 SET b=30406 WHERE a=10349;\nUPDATE t2 SET b=65208 WHERE a=10350;\nUPDATE t2 SET b=37012 WHERE a=10351;\nUPDATE t2 SET b=37950 WHERE a=10352;\nUPDATE t2 SET b=31690 WHERE a=10353;\nUPDATE t2 SET b=33085 WHERE a=10354;\nUPDATE t2 SET b=99157 WHERE a=10355;\nUPDATE t2 SET b=56214 WHERE a=10356;\nUPDATE t2 SET b=91255 WHERE a=10357;\nUPDATE t2 SET b=45825 WHERE a=10358;\nUPDATE t2 SET b=24095 WHERE a=10359;\nUPDATE t2 SET b=59456 WHERE a=10360;\nUPDATE t2 SET b=49745 WHERE a=10361;\nUPDATE t2 SET b=85615 WHERE a=10362;\nUPDATE t2 SET b=25895 WHERE a=10363;\nUPDATE t2 SET b=63196 WHERE a=10364;\nUPDATE t2 SET b=92778 WHERE a=10365;\nUPDATE t2 SET b=23612 WHERE a=10366;\nUPDATE t2 SET b=53966 WHERE a=10367;\nUPDATE t2 SET b=84076 WHERE a=10368;\nUPDATE t2 SET b=13597 WHERE a=10369;\nUPDATE t2 SET b=77462 WHERE a=10370;\nUPDATE t2 SET b=44330 WHERE a=10371;\nUPDATE t2 SET b=7614 WHERE a=10372;\nUPDATE t2 SET b=20950 WHERE a=10373;\nUPDATE t2 SET b=61062 WHERE a=10374;\nUPDATE t2 SET b=56260 WHERE a=10375;\nUPDATE t2 SET b=13357 WHERE a=10376;\nUPDATE t2 SET b=16418 WHERE a=10377;\nUPDATE t2 SET b=28572 WHERE a=10378;\nUPDATE t2 SET b=98521 WHERE a=10379;\nUPDATE t2 SET b=62599 WHERE a=10380;\nUPDATE t2 SET b=91846 WHERE a=10381;\nUPDATE t2 SET b=96971 WHERE a=10382;\nUPDATE t2 SET b=17279 WHERE a=10383;\nUPDATE t2 SET b=50693 WHERE a=10384;\nUPDATE t2 SET b=26438 WHERE a=10385;\nUPDATE t2 SET b=14390 WHERE a=10386;\nUPDATE t2 SET b=43899 WHERE a=10387;\nUPDATE t2 SET b=56079 WHERE a=10388;\nUPDATE t2 SET b=50642 WHERE a=10389;\nUPDATE t2 SET b=78765 WHERE a=10390;\nUPDATE t2 SET b=28487 WHERE a=10391;\nUPDATE t2 SET b=20634 WHERE a=10392;\nUPDATE t2 SET b=53957 WHERE a=10393;\nUPDATE t2 SET b=32126 WHERE a=10394;\nUPDATE t2 SET b=90039 WHERE a=10395;\nUPDATE t2 SET b=12020 WHERE a=10396;\nUPDATE t2 SET b=64882 WHERE a=10397;\nUPDATE t2 SET b=49286 WHERE a=10398;\nUPDATE t2 SET b=6287 WHERE a=10399;\nUPDATE t2 SET b=92238 WHERE a=10400;\nUPDATE t2 SET b=11358 WHERE a=10401;\nUPDATE t2 SET b=17298 WHERE a=10402;\nUPDATE t2 SET b=31766 WHERE a=10403;\nUPDATE t2 SET b=78600 WHERE a=10404;\nUPDATE t2 SET b=1538 WHERE a=10405;\nUPDATE t2 SET b=75925 WHERE a=10406;\nUPDATE t2 SET b=25496 WHERE a=10407;\nUPDATE t2 SET b=75140 WHERE a=10408;\nUPDATE t2 SET b=73139 WHERE a=10409;\nUPDATE t2 SET b=99662 WHERE a=10410;\nUPDATE t2 SET b=65575 WHERE a=10411;\nUPDATE t2 SET b=73928 WHERE a=10412;\nUPDATE t2 SET b=88389 WHERE a=10413;\nUPDATE t2 SET b=98721 WHERE a=10414;\nUPDATE t2 SET b=40689 WHERE a=10415;\nUPDATE t2 SET b=19354 WHERE a=10416;\nUPDATE t2 SET b=10384 WHERE a=10417;\nUPDATE t2 SET b=40025 WHERE a=10418;\nUPDATE t2 SET b=70591 WHERE a=10419;\nUPDATE t2 SET b=60726 WHERE a=10420;\nUPDATE t2 SET b=95607 WHERE a=10421;\nUPDATE t2 SET b=50643 WHERE a=10422;\nUPDATE t2 SET b=2586 WHERE a=10423;\nUPDATE t2 SET b=86374 WHERE a=10424;\nUPDATE t2 SET b=87616 WHERE a=10425;\nUPDATE t2 SET b=14855 WHERE a=10426;\nUPDATE t2 SET b=63789 WHERE a=10427;\nUPDATE t2 SET b=91519 WHERE a=10428;\nUPDATE t2 SET b=578 WHERE a=10429;\nUPDATE t2 SET b=43455 WHERE a=10430;\nUPDATE t2 SET b=12159 WHERE a=10431;\nUPDATE t2 SET b=35602 WHERE a=10432;\nUPDATE t2 SET b=52238 WHERE a=10433;\nUPDATE t2 SET b=73799 WHERE a=10434;\nUPDATE t2 SET b=9076 WHERE a=10435;\nUPDATE t2 SET b=16546 WHERE a=10436;\nUPDATE t2 SET b=11361 WHERE a=10437;\nUPDATE t2 SET b=97441 WHERE a=10438;\nUPDATE t2 SET b=2592 WHERE a=10439;\nUPDATE t2 SET b=81480 WHERE a=10440;\nUPDATE t2 SET b=64951 WHERE a=10441;\nUPDATE t2 SET b=19671 WHERE a=10442;\nUPDATE t2 SET b=4253 WHERE a=10443;\nUPDATE t2 SET b=80713 WHERE a=10444;\nUPDATE t2 SET b=32369 WHERE a=10445;\nUPDATE t2 SET b=3011 WHERE a=10446;\nUPDATE t2 SET b=66563 WHERE a=10447;\nUPDATE t2 SET b=84544 WHERE a=10448;\nUPDATE t2 SET b=73408 WHERE a=10449;\nUPDATE t2 SET b=96082 WHERE a=10450;\nUPDATE t2 SET b=2461 WHERE a=10451;\nUPDATE t2 SET b=71387 WHERE a=10452;\nUPDATE t2 SET b=86286 WHERE a=10453;\nUPDATE t2 SET b=73229 WHERE a=10454;\nUPDATE t2 SET b=67030 WHERE a=10455;\nUPDATE t2 SET b=33161 WHERE a=10456;\nUPDATE t2 SET b=75897 WHERE a=10457;\nUPDATE t2 SET b=37147 WHERE a=10458;\nUPDATE t2 SET b=27735 WHERE a=10459;\nUPDATE t2 SET b=47902 WHERE a=10460;\nUPDATE t2 SET b=93978 WHERE a=10461;\nUPDATE t2 SET b=39315 WHERE a=10462;\nUPDATE t2 SET b=76627 WHERE a=10463;\nUPDATE t2 SET b=47691 WHERE a=10464;\nUPDATE t2 SET b=44365 WHERE a=10465;\nUPDATE t2 SET b=2318 WHERE a=10466;\nUPDATE t2 SET b=40431 WHERE a=10467;\nUPDATE t2 SET b=86826 WHERE a=10468;\nUPDATE t2 SET b=73256 WHERE a=10469;\nUPDATE t2 SET b=9118 WHERE a=10470;\nUPDATE t2 SET b=87618 WHERE a=10471;\nUPDATE t2 SET b=22960 WHERE a=10472;\nUPDATE t2 SET b=92218 WHERE a=10473;\nUPDATE t2 SET b=64206 WHERE a=10474;\nUPDATE t2 SET b=39726 WHERE a=10475;\nUPDATE t2 SET b=95289 WHERE a=10476;\nUPDATE t2 SET b=91669 WHERE a=10477;\nUPDATE t2 SET b=45722 WHERE a=10478;\nUPDATE t2 SET b=12831 WHERE a=10479;\nUPDATE t2 SET b=56806 WHERE a=10480;\nUPDATE t2 SET b=27322 WHERE a=10481;\nUPDATE t2 SET b=97654 WHERE a=10482;\nUPDATE t2 SET b=44497 WHERE a=10483;\nUPDATE t2 SET b=1931 WHERE a=10484;\nUPDATE t2 SET b=95353 WHERE a=10485;\nUPDATE t2 SET b=2055 WHERE a=10486;\nUPDATE t2 SET b=44168 WHERE a=10487;\nUPDATE t2 SET b=310 WHERE a=10488;\nUPDATE t2 SET b=39968 WHERE a=10489;\nUPDATE t2 SET b=47886 WHERE a=10490;\nUPDATE t2 SET b=39879 WHERE a=10491;\nUPDATE t2 SET b=97517 WHERE a=10492;\nUPDATE t2 SET b=85299 WHERE a=10493;\nUPDATE t2 SET b=88501 WHERE a=10494;\nUPDATE t2 SET b=29396 WHERE a=10495;\nUPDATE t2 SET b=49206 WHERE a=10496;\nUPDATE t2 SET b=86397 WHERE a=10497;\nUPDATE t2 SET b=72628 WHERE a=10498;\nUPDATE t2 SET b=7395 WHERE a=10499;\nUPDATE t2 SET b=76183 WHERE a=10500;\nUPDATE t2 SET b=51056 WHERE a=10501;\nUPDATE t2 SET b=49610 WHERE a=10502;\nUPDATE t2 SET b=79296 WHERE a=10503;\nUPDATE t2 SET b=66906 WHERE a=10504;\nUPDATE t2 SET b=93375 WHERE a=10505;\nUPDATE t2 SET b=4082 WHERE a=10506;\nUPDATE t2 SET b=41800 WHERE a=10507;\nUPDATE t2 SET b=93114 WHERE a=10508;\nUPDATE t2 SET b=93633 WHERE a=10509;\nUPDATE t2 SET b=55545 WHERE a=10510;\nUPDATE t2 SET b=43448 WHERE a=10511;\nUPDATE t2 SET b=72679 WHERE a=10512;\nUPDATE t2 SET b=84327 WHERE a=10513;\nUPDATE t2 SET b=521 WHERE a=10514;\nUPDATE t2 SET b=87289 WHERE a=10515;\nUPDATE t2 SET b=19810 WHERE a=10516;\nUPDATE t2 SET b=62812 WHERE a=10517;\nUPDATE t2 SET b=59141 WHERE a=10518;\nUPDATE t2 SET b=16997 WHERE a=10519;\nUPDATE t2 SET b=47999 WHERE a=10520;\nUPDATE t2 SET b=51405 WHERE a=10521;\nUPDATE t2 SET b=98970 WHERE a=10522;\nUPDATE t2 SET b=24410 WHERE a=10523;\nUPDATE t2 SET b=45804 WHERE a=10524;\nUPDATE t2 SET b=5918 WHERE a=10525;\nUPDATE t2 SET b=33188 WHERE a=10526;\nUPDATE t2 SET b=24018 WHERE a=10527;\nUPDATE t2 SET b=24056 WHERE a=10528;\nUPDATE t2 SET b=98365 WHERE a=10529;\nUPDATE t2 SET b=57205 WHERE a=10530;\nUPDATE t2 SET b=91381 WHERE a=10531;\nUPDATE t2 SET b=96729 WHERE a=10532;\nUPDATE t2 SET b=20628 WHERE a=10533;\nUPDATE t2 SET b=85734 WHERE a=10534;\nUPDATE t2 SET b=97818 WHERE a=10535;\nUPDATE t2 SET b=30656 WHERE a=10536;\nUPDATE t2 SET b=16726 WHERE a=10537;\nUPDATE t2 SET b=5979 WHERE a=10538;\nUPDATE t2 SET b=64701 WHERE a=10539;\nUPDATE t2 SET b=74328 WHERE a=10540;\nUPDATE t2 SET b=59831 WHERE a=10541;\nUPDATE t2 SET b=97985 WHERE a=10542;\nUPDATE t2 SET b=11882 WHERE a=10543;\nUPDATE t2 SET b=62201 WHERE a=10544;\nUPDATE t2 SET b=84897 WHERE a=10545;\nUPDATE t2 SET b=79978 WHERE a=10546;\nUPDATE t2 SET b=35935 WHERE a=10547;\nUPDATE t2 SET b=48855 WHERE a=10548;\nUPDATE t2 SET b=30054 WHERE a=10549;\nUPDATE t2 SET b=65079 WHERE a=10550;\nUPDATE t2 SET b=69728 WHERE a=10551;\nUPDATE t2 SET b=2399 WHERE a=10552;\nUPDATE t2 SET b=93568 WHERE a=10553;\nUPDATE t2 SET b=90567 WHERE a=10554;\nUPDATE t2 SET b=87430 WHERE a=10555;\nUPDATE t2 SET b=64915 WHERE a=10556;\nUPDATE t2 SET b=41917 WHERE a=10557;\nUPDATE t2 SET b=38339 WHERE a=10558;\nUPDATE t2 SET b=93274 WHERE a=10559;\nUPDATE t2 SET b=85920 WHERE a=10560;\nUPDATE t2 SET b=36114 WHERE a=10561;\nUPDATE t2 SET b=92552 WHERE a=10562;\nUPDATE t2 SET b=33732 WHERE a=10563;\nUPDATE t2 SET b=66700 WHERE a=10564;\nUPDATE t2 SET b=25762 WHERE a=10565;\nUPDATE t2 SET b=17041 WHERE a=10566;\nUPDATE t2 SET b=85804 WHERE a=10567;\nUPDATE t2 SET b=61857 WHERE a=10568;\nUPDATE t2 SET b=14070 WHERE a=10569;\nUPDATE t2 SET b=19654 WHERE a=10570;\nUPDATE t2 SET b=2455 WHERE a=10571;\nUPDATE t2 SET b=59825 WHERE a=10572;\nUPDATE t2 SET b=19674 WHERE a=10573;\nUPDATE t2 SET b=37163 WHERE a=10574;\nUPDATE t2 SET b=1620 WHERE a=10575;\nUPDATE t2 SET b=6715 WHERE a=10576;\nUPDATE t2 SET b=81194 WHERE a=10577;\nUPDATE t2 SET b=31896 WHERE a=10578;\nUPDATE t2 SET b=3026 WHERE a=10579;\nUPDATE t2 SET b=12603 WHERE a=10580;\nUPDATE t2 SET b=68278 WHERE a=10581;\nUPDATE t2 SET b=16454 WHERE a=10582;\nUPDATE t2 SET b=17938 WHERE a=10583;\nUPDATE t2 SET b=37554 WHERE a=10584;\nUPDATE t2 SET b=46731 WHERE a=10585;\nUPDATE t2 SET b=31098 WHERE a=10586;\nUPDATE t2 SET b=28911 WHERE a=10587;\nUPDATE t2 SET b=74219 WHERE a=10588;\nUPDATE t2 SET b=82598 WHERE a=10589;\nUPDATE t2 SET b=76698 WHERE a=10590;\nUPDATE t2 SET b=20328 WHERE a=10591;\nUPDATE t2 SET b=55165 WHERE a=10592;\nUPDATE t2 SET b=52728 WHERE a=10593;\nUPDATE t2 SET b=10522 WHERE a=10594;\nUPDATE t2 SET b=9262 WHERE a=10595;\nUPDATE t2 SET b=47486 WHERE a=10596;\nUPDATE t2 SET b=23518 WHERE a=10597;\nUPDATE t2 SET b=87423 WHERE a=10598;\nUPDATE t2 SET b=41513 WHERE a=10599;\nUPDATE t2 SET b=70554 WHERE a=10600;\nUPDATE t2 SET b=53464 WHERE a=10601;\nUPDATE t2 SET b=93558 WHERE a=10602;\nUPDATE t2 SET b=14823 WHERE a=10603;\nUPDATE t2 SET b=59729 WHERE a=10604;\nUPDATE t2 SET b=27023 WHERE a=10605;\nUPDATE t2 SET b=18189 WHERE a=10606;\nUPDATE t2 SET b=68823 WHERE a=10607;\nUPDATE t2 SET b=20432 WHERE a=10608;\nUPDATE t2 SET b=92987 WHERE a=10609;\nUPDATE t2 SET b=85268 WHERE a=10610;\nUPDATE t2 SET b=5612 WHERE a=10611;\nUPDATE t2 SET b=6586 WHERE a=10612;\nUPDATE t2 SET b=15723 WHERE a=10613;\nUPDATE t2 SET b=95222 WHERE a=10614;\nUPDATE t2 SET b=66603 WHERE a=10615;\nUPDATE t2 SET b=61102 WHERE a=10616;\nUPDATE t2 SET b=23472 WHERE a=10617;\nUPDATE t2 SET b=23852 WHERE a=10618;\nUPDATE t2 SET b=98347 WHERE a=10619;\nUPDATE t2 SET b=4518 WHERE a=10620;\nUPDATE t2 SET b=64005 WHERE a=10621;\nUPDATE t2 SET b=69810 WHERE a=10622;\nUPDATE t2 SET b=65120 WHERE a=10623;\nUPDATE t2 SET b=92879 WHERE a=10624;\nUPDATE t2 SET b=25763 WHERE a=10625;\nUPDATE t2 SET b=9774 WHERE a=10626;\nUPDATE t2 SET b=87492 WHERE a=10627;\nUPDATE t2 SET b=10788 WHERE a=10628;\nUPDATE t2 SET b=51917 WHERE a=10629;\nUPDATE t2 SET b=35643 WHERE a=10630;\nUPDATE t2 SET b=46667 WHERE a=10631;\nUPDATE t2 SET b=46688 WHERE a=10632;\nUPDATE t2 SET b=13168 WHERE a=10633;\nUPDATE t2 SET b=58668 WHERE a=10634;\nUPDATE t2 SET b=82393 WHERE a=10635;\nUPDATE t2 SET b=330 WHERE a=10636;\nUPDATE t2 SET b=78801 WHERE a=10637;\nUPDATE t2 SET b=21283 WHERE a=10638;\nUPDATE t2 SET b=51753 WHERE a=10639;\nUPDATE t2 SET b=97809 WHERE a=10640;\nUPDATE t2 SET b=23179 WHERE a=10641;\nUPDATE t2 SET b=26682 WHERE a=10642;\nUPDATE t2 SET b=53061 WHERE a=10643;\nUPDATE t2 SET b=72403 WHERE a=10644;\nUPDATE t2 SET b=64882 WHERE a=10645;\nUPDATE t2 SET b=80787 WHERE a=10646;\nUPDATE t2 SET b=1790 WHERE a=10647;\nUPDATE t2 SET b=83893 WHERE a=10648;\nUPDATE t2 SET b=77626 WHERE a=10649;\nUPDATE t2 SET b=71054 WHERE a=10650;\nUPDATE t2 SET b=46083 WHERE a=10651;\nUPDATE t2 SET b=59494 WHERE a=10652;\nUPDATE t2 SET b=57647 WHERE a=10653;\nUPDATE t2 SET b=69166 WHERE a=10654;\nUPDATE t2 SET b=62455 WHERE a=10655;\nUPDATE t2 SET b=16522 WHERE a=10656;\nUPDATE t2 SET b=34325 WHERE a=10657;\nUPDATE t2 SET b=61572 WHERE a=10658;\nUPDATE t2 SET b=87842 WHERE a=10659;\nUPDATE t2 SET b=21471 WHERE a=10660;\nUPDATE t2 SET b=6451 WHERE a=10661;\nUPDATE t2 SET b=52265 WHERE a=10662;\nUPDATE t2 SET b=56032 WHERE a=10663;\nUPDATE t2 SET b=79238 WHERE a=10664;\nUPDATE t2 SET b=76542 WHERE a=10665;\nUPDATE t2 SET b=25053 WHERE a=10666;\nUPDATE t2 SET b=78116 WHERE a=10667;\nUPDATE t2 SET b=2014 WHERE a=10668;\nUPDATE t2 SET b=41488 WHERE a=10669;\nUPDATE t2 SET b=44200 WHERE a=10670;\nUPDATE t2 SET b=56891 WHERE a=10671;\nUPDATE t2 SET b=73780 WHERE a=10672;\nUPDATE t2 SET b=11588 WHERE a=10673;\nUPDATE t2 SET b=70299 WHERE a=10674;\nUPDATE t2 SET b=74309 WHERE a=10675;\nUPDATE t2 SET b=23446 WHERE a=10676;\nUPDATE t2 SET b=15769 WHERE a=10677;\nUPDATE t2 SET b=88200 WHERE a=10678;\nUPDATE t2 SET b=39045 WHERE a=10679;\nUPDATE t2 SET b=65446 WHERE a=10680;\nUPDATE t2 SET b=23488 WHERE a=10681;\nUPDATE t2 SET b=84653 WHERE a=10682;\nUPDATE t2 SET b=40456 WHERE a=10683;\nUPDATE t2 SET b=69025 WHERE a=10684;\nUPDATE t2 SET b=12171 WHERE a=10685;\nUPDATE t2 SET b=85653 WHERE a=10686;\nUPDATE t2 SET b=13193 WHERE a=10687;\nUPDATE t2 SET b=31793 WHERE a=10688;\nUPDATE t2 SET b=55272 WHERE a=10689;\nUPDATE t2 SET b=62570 WHERE a=10690;\nUPDATE t2 SET b=1194 WHERE a=10691;\nUPDATE t2 SET b=38530 WHERE a=10692;\nUPDATE t2 SET b=60858 WHERE a=10693;\nUPDATE t2 SET b=18284 WHERE a=10694;\nUPDATE t2 SET b=62597 WHERE a=10695;\nUPDATE t2 SET b=70290 WHERE a=10696;\nUPDATE t2 SET b=61559 WHERE a=10697;\nUPDATE t2 SET b=94825 WHERE a=10698;\nUPDATE t2 SET b=34798 WHERE a=10699;\nUPDATE t2 SET b=5883 WHERE a=10700;\nUPDATE t2 SET b=1810 WHERE a=10701;\nUPDATE t2 SET b=58687 WHERE a=10702;\nUPDATE t2 SET b=44024 WHERE a=10703;\nUPDATE t2 SET b=8247 WHERE a=10704;\nUPDATE t2 SET b=20288 WHERE a=10705;\nUPDATE t2 SET b=75846 WHERE a=10706;\nUPDATE t2 SET b=72649 WHERE a=10707;\nUPDATE t2 SET b=23182 WHERE a=10708;\nUPDATE t2 SET b=49459 WHERE a=10709;\nUPDATE t2 SET b=1989 WHERE a=10710;\nUPDATE t2 SET b=75852 WHERE a=10711;\nUPDATE t2 SET b=39665 WHERE a=10712;\nUPDATE t2 SET b=92972 WHERE a=10713;\nUPDATE t2 SET b=21644 WHERE a=10714;\nUPDATE t2 SET b=62062 WHERE a=10715;\nUPDATE t2 SET b=32304 WHERE a=10716;\nUPDATE t2 SET b=14559 WHERE a=10717;\nUPDATE t2 SET b=16286 WHERE a=10718;\nUPDATE t2 SET b=1737 WHERE a=10719;\nUPDATE t2 SET b=46110 WHERE a=10720;\nUPDATE t2 SET b=65149 WHERE a=10721;\nUPDATE t2 SET b=28912 WHERE a=10722;\nUPDATE t2 SET b=10475 WHERE a=10723;\nUPDATE t2 SET b=16141 WHERE a=10724;\nUPDATE t2 SET b=42358 WHERE a=10725;\nUPDATE t2 SET b=62704 WHERE a=10726;\nUPDATE t2 SET b=63144 WHERE a=10727;\nUPDATE t2 SET b=31366 WHERE a=10728;\nUPDATE t2 SET b=14741 WHERE a=10729;\nUPDATE t2 SET b=9864 WHERE a=10730;\nUPDATE t2 SET b=6803 WHERE a=10731;\nUPDATE t2 SET b=9928 WHERE a=10732;\nUPDATE t2 SET b=1561 WHERE a=10733;\nUPDATE t2 SET b=86931 WHERE a=10734;\nUPDATE t2 SET b=3927 WHERE a=10735;\nUPDATE t2 SET b=36395 WHERE a=10736;\nUPDATE t2 SET b=50256 WHERE a=10737;\nUPDATE t2 SET b=18796 WHERE a=10738;\nUPDATE t2 SET b=43564 WHERE a=10739;\nUPDATE t2 SET b=28568 WHERE a=10740;\nUPDATE t2 SET b=42138 WHERE a=10741;\nUPDATE t2 SET b=63946 WHERE a=10742;\nUPDATE t2 SET b=49595 WHERE a=10743;\nUPDATE t2 SET b=92891 WHERE a=10744;\nUPDATE t2 SET b=31564 WHERE a=10745;\nUPDATE t2 SET b=21499 WHERE a=10746;\nUPDATE t2 SET b=29635 WHERE a=10747;\nUPDATE t2 SET b=72108 WHERE a=10748;\nUPDATE t2 SET b=17618 WHERE a=10749;\nUPDATE t2 SET b=13098 WHERE a=10750;\nUPDATE t2 SET b=44529 WHERE a=10751;\nUPDATE t2 SET b=76155 WHERE a=10752;\nUPDATE t2 SET b=24805 WHERE a=10753;\nUPDATE t2 SET b=61105 WHERE a=10754;\nUPDATE t2 SET b=73995 WHERE a=10755;\nUPDATE t2 SET b=56080 WHERE a=10756;\nUPDATE t2 SET b=10342 WHERE a=10757;\nUPDATE t2 SET b=12943 WHERE a=10758;\nUPDATE t2 SET b=18810 WHERE a=10759;\nUPDATE t2 SET b=97797 WHERE a=10760;\nUPDATE t2 SET b=15095 WHERE a=10761;\nUPDATE t2 SET b=93490 WHERE a=10762;\nUPDATE t2 SET b=53193 WHERE a=10763;\nUPDATE t2 SET b=7129 WHERE a=10764;\nUPDATE t2 SET b=71196 WHERE a=10765;\nUPDATE t2 SET b=98345 WHERE a=10766;\nUPDATE t2 SET b=93854 WHERE a=10767;\nUPDATE t2 SET b=74409 WHERE a=10768;\nUPDATE t2 SET b=85256 WHERE a=10769;\nUPDATE t2 SET b=45558 WHERE a=10770;\nUPDATE t2 SET b=55624 WHERE a=10771;\nUPDATE t2 SET b=24071 WHERE a=10772;\nUPDATE t2 SET b=22380 WHERE a=10773;\nUPDATE t2 SET b=48446 WHERE a=10774;\nUPDATE t2 SET b=25748 WHERE a=10775;\nUPDATE t2 SET b=58425 WHERE a=10776;\nUPDATE t2 SET b=30341 WHERE a=10777;\nUPDATE t2 SET b=84097 WHERE a=10778;\nUPDATE t2 SET b=8865 WHERE a=10779;\nUPDATE t2 SET b=45514 WHERE a=10780;\nUPDATE t2 SET b=10953 WHERE a=10781;\nUPDATE t2 SET b=61875 WHERE a=10782;\nUPDATE t2 SET b=78468 WHERE a=10783;\nUPDATE t2 SET b=8641 WHERE a=10784;\nUPDATE t2 SET b=54051 WHERE a=10785;\nUPDATE t2 SET b=92026 WHERE a=10786;\nUPDATE t2 SET b=91629 WHERE a=10787;\nUPDATE t2 SET b=27319 WHERE a=10788;\nUPDATE t2 SET b=27807 WHERE a=10789;\nUPDATE t2 SET b=67139 WHERE a=10790;\nUPDATE t2 SET b=93683 WHERE a=10791;\nUPDATE t2 SET b=94827 WHERE a=10792;\nUPDATE t2 SET b=86007 WHERE a=10793;\nUPDATE t2 SET b=93813 WHERE a=10794;\nUPDATE t2 SET b=78538 WHERE a=10795;\nUPDATE t2 SET b=18374 WHERE a=10796;\nUPDATE t2 SET b=69660 WHERE a=10797;\nUPDATE t2 SET b=53908 WHERE a=10798;\nUPDATE t2 SET b=17110 WHERE a=10799;\nUPDATE t2 SET b=60072 WHERE a=10800;\nUPDATE t2 SET b=3826 WHERE a=10801;\nUPDATE t2 SET b=52985 WHERE a=10802;\nUPDATE t2 SET b=67741 WHERE a=10803;\nUPDATE t2 SET b=94244 WHERE a=10804;\nUPDATE t2 SET b=76336 WHERE a=10805;\nUPDATE t2 SET b=1807 WHERE a=10806;\nUPDATE t2 SET b=80460 WHERE a=10807;\nUPDATE t2 SET b=16502 WHERE a=10808;\nUPDATE t2 SET b=60671 WHERE a=10809;\nUPDATE t2 SET b=11774 WHERE a=10810;\nUPDATE t2 SET b=24206 WHERE a=10811;\nUPDATE t2 SET b=31584 WHERE a=10812;\nUPDATE t2 SET b=37427 WHERE a=10813;\nUPDATE t2 SET b=90032 WHERE a=10814;\nUPDATE t2 SET b=61145 WHERE a=10815;\nUPDATE t2 SET b=60754 WHERE a=10816;\nUPDATE t2 SET b=18746 WHERE a=10817;\nUPDATE t2 SET b=69910 WHERE a=10818;\nUPDATE t2 SET b=73881 WHERE a=10819;\nUPDATE t2 SET b=73704 WHERE a=10820;\nUPDATE t2 SET b=70213 WHERE a=10821;\nUPDATE t2 SET b=84778 WHERE a=10822;\nUPDATE t2 SET b=35 WHERE a=10823;\nUPDATE t2 SET b=78438 WHERE a=10824;\nUPDATE t2 SET b=91405 WHERE a=10825;\nUPDATE t2 SET b=24097 WHERE a=10826;\nUPDATE t2 SET b=31815 WHERE a=10827;\nUPDATE t2 SET b=20433 WHERE a=10828;\nUPDATE t2 SET b=27745 WHERE a=10829;\nUPDATE t2 SET b=76802 WHERE a=10830;\nUPDATE t2 SET b=12 WHERE a=10831;\nUPDATE t2 SET b=74156 WHERE a=10832;\nUPDATE t2 SET b=1527 WHERE a=10833;\nUPDATE t2 SET b=18260 WHERE a=10834;\nUPDATE t2 SET b=90284 WHERE a=10835;\nUPDATE t2 SET b=36438 WHERE a=10836;\nUPDATE t2 SET b=57482 WHERE a=10837;\nUPDATE t2 SET b=41640 WHERE a=10838;\nUPDATE t2 SET b=51339 WHERE a=10839;\nUPDATE t2 SET b=19648 WHERE a=10840;\nUPDATE t2 SET b=24881 WHERE a=10841;\nUPDATE t2 SET b=1276 WHERE a=10842;\nUPDATE t2 SET b=99712 WHERE a=10843;\nUPDATE t2 SET b=89450 WHERE a=10844;\nUPDATE t2 SET b=17354 WHERE a=10845;\nUPDATE t2 SET b=77791 WHERE a=10846;\nUPDATE t2 SET b=640 WHERE a=10847;\nUPDATE t2 SET b=59919 WHERE a=10848;\nUPDATE t2 SET b=75032 WHERE a=10849;\nUPDATE t2 SET b=13004 WHERE a=10850;\nUPDATE t2 SET b=5715 WHERE a=10851;\nUPDATE t2 SET b=29476 WHERE a=10852;\nUPDATE t2 SET b=30570 WHERE a=10853;\nUPDATE t2 SET b=10161 WHERE a=10854;\nUPDATE t2 SET b=19091 WHERE a=10855;\nUPDATE t2 SET b=20592 WHERE a=10856;\nUPDATE t2 SET b=28446 WHERE a=10857;\nUPDATE t2 SET b=3970 WHERE a=10858;\nUPDATE t2 SET b=59308 WHERE a=10859;\nUPDATE t2 SET b=15314 WHERE a=10860;\nUPDATE t2 SET b=46362 WHERE a=10861;\nUPDATE t2 SET b=87026 WHERE a=10862;\nUPDATE t2 SET b=92804 WHERE a=10863;\nUPDATE t2 SET b=8010 WHERE a=10864;\nUPDATE t2 SET b=91687 WHERE a=10865;\nUPDATE t2 SET b=72598 WHERE a=10866;\nUPDATE t2 SET b=74282 WHERE a=10867;\nUPDATE t2 SET b=86156 WHERE a=10868;\nUPDATE t2 SET b=74912 WHERE a=10869;\nUPDATE t2 SET b=10875 WHERE a=10870;\nUPDATE t2 SET b=95509 WHERE a=10871;\nUPDATE t2 SET b=30369 WHERE a=10872;\nUPDATE t2 SET b=61362 WHERE a=10873;\nUPDATE t2 SET b=35896 WHERE a=10874;\nUPDATE t2 SET b=70937 WHERE a=10875;\nUPDATE t2 SET b=51031 WHERE a=10876;\nUPDATE t2 SET b=54640 WHERE a=10877;\nUPDATE t2 SET b=36335 WHERE a=10878;\nUPDATE t2 SET b=70080 WHERE a=10879;\nUPDATE t2 SET b=24973 WHERE a=10880;\nUPDATE t2 SET b=58653 WHERE a=10881;\nUPDATE t2 SET b=17184 WHERE a=10882;\nUPDATE t2 SET b=17551 WHERE a=10883;\nUPDATE t2 SET b=85602 WHERE a=10884;\nUPDATE t2 SET b=55755 WHERE a=10885;\nUPDATE t2 SET b=51344 WHERE a=10886;\nUPDATE t2 SET b=20746 WHERE a=10887;\nUPDATE t2 SET b=13840 WHERE a=10888;\nUPDATE t2 SET b=32610 WHERE a=10889;\nUPDATE t2 SET b=78372 WHERE a=10890;\nUPDATE t2 SET b=29874 WHERE a=10891;\nUPDATE t2 SET b=82183 WHERE a=10892;\nUPDATE t2 SET b=87832 WHERE a=10893;\nUPDATE t2 SET b=51822 WHERE a=10894;\nUPDATE t2 SET b=74540 WHERE a=10895;\nUPDATE t2 SET b=33231 WHERE a=10896;\nUPDATE t2 SET b=33651 WHERE a=10897;\nUPDATE t2 SET b=6244 WHERE a=10898;\nUPDATE t2 SET b=28580 WHERE a=10899;\nUPDATE t2 SET b=38615 WHERE a=10900;\nUPDATE t2 SET b=89994 WHERE a=10901;\nUPDATE t2 SET b=65430 WHERE a=10902;\nUPDATE t2 SET b=15082 WHERE a=10903;\nUPDATE t2 SET b=70600 WHERE a=10904;\nUPDATE t2 SET b=48247 WHERE a=10905;\nUPDATE t2 SET b=10848 WHERE a=10906;\nUPDATE t2 SET b=47068 WHERE a=10907;\nUPDATE t2 SET b=34226 WHERE a=10908;\nUPDATE t2 SET b=1250 WHERE a=10909;\nUPDATE t2 SET b=10257 WHERE a=10910;\nUPDATE t2 SET b=87569 WHERE a=10911;\nUPDATE t2 SET b=69856 WHERE a=10912;\nUPDATE t2 SET b=69027 WHERE a=10913;\nUPDATE t2 SET b=31742 WHERE a=10914;\nUPDATE t2 SET b=48570 WHERE a=10915;\nUPDATE t2 SET b=42141 WHERE a=10916;\nUPDATE t2 SET b=84990 WHERE a=10917;\nUPDATE t2 SET b=14172 WHERE a=10918;\nUPDATE t2 SET b=96982 WHERE a=10919;\nUPDATE t2 SET b=38134 WHERE a=10920;\nUPDATE t2 SET b=3842 WHERE a=10921;\nUPDATE t2 SET b=43841 WHERE a=10922;\nUPDATE t2 SET b=96412 WHERE a=10923;\nUPDATE t2 SET b=88367 WHERE a=10924;\nUPDATE t2 SET b=56791 WHERE a=10925;\nUPDATE t2 SET b=93613 WHERE a=10926;\nUPDATE t2 SET b=90569 WHERE a=10927;\nUPDATE t2 SET b=10705 WHERE a=10928;\nUPDATE t2 SET b=41376 WHERE a=10929;\nUPDATE t2 SET b=21539 WHERE a=10930;\nUPDATE t2 SET b=41231 WHERE a=10931;\nUPDATE t2 SET b=6744 WHERE a=10932;\nUPDATE t2 SET b=75375 WHERE a=10933;\nUPDATE t2 SET b=39638 WHERE a=10934;\nUPDATE t2 SET b=65141 WHERE a=10935;\nUPDATE t2 SET b=12677 WHERE a=10936;\nUPDATE t2 SET b=41796 WHERE a=10937;\nUPDATE t2 SET b=10906 WHERE a=10938;\nUPDATE t2 SET b=76162 WHERE a=10939;\nUPDATE t2 SET b=96431 WHERE a=10940;\nUPDATE t2 SET b=94185 WHERE a=10941;\nUPDATE t2 SET b=86673 WHERE a=10942;\nUPDATE t2 SET b=81239 WHERE a=10943;\nUPDATE t2 SET b=67838 WHERE a=10944;\nUPDATE t2 SET b=59056 WHERE a=10945;\nUPDATE t2 SET b=22542 WHERE a=10946;\nUPDATE t2 SET b=69074 WHERE a=10947;\nUPDATE t2 SET b=28368 WHERE a=10948;\nUPDATE t2 SET b=39501 WHERE a=10949;\nUPDATE t2 SET b=22881 WHERE a=10950;\nUPDATE t2 SET b=87127 WHERE a=10951;\nUPDATE t2 SET b=25328 WHERE a=10952;\nUPDATE t2 SET b=96662 WHERE a=10953;\nUPDATE t2 SET b=41582 WHERE a=10954;\nUPDATE t2 SET b=29722 WHERE a=10955;\nUPDATE t2 SET b=98186 WHERE a=10956;\nUPDATE t2 SET b=32204 WHERE a=10957;\nUPDATE t2 SET b=92640 WHERE a=10958;\nUPDATE t2 SET b=42490 WHERE a=10959;\nUPDATE t2 SET b=5634 WHERE a=10960;\nUPDATE t2 SET b=93209 WHERE a=10961;\nUPDATE t2 SET b=4550 WHERE a=10962;\nUPDATE t2 SET b=87249 WHERE a=10963;\nUPDATE t2 SET b=21656 WHERE a=10964;\nUPDATE t2 SET b=95213 WHERE a=10965;\nUPDATE t2 SET b=43995 WHERE a=10966;\nUPDATE t2 SET b=12817 WHERE a=10967;\nUPDATE t2 SET b=92419 WHERE a=10968;\nUPDATE t2 SET b=20279 WHERE a=10969;\nUPDATE t2 SET b=66474 WHERE a=10970;\nUPDATE t2 SET b=48538 WHERE a=10971;\nUPDATE t2 SET b=56422 WHERE a=10972;\nUPDATE t2 SET b=14489 WHERE a=10973;\nUPDATE t2 SET b=40218 WHERE a=10974;\nUPDATE t2 SET b=87102 WHERE a=10975;\nUPDATE t2 SET b=58018 WHERE a=10976;\nUPDATE t2 SET b=13225 WHERE a=10977;\nUPDATE t2 SET b=61099 WHERE a=10978;\nUPDATE t2 SET b=14480 WHERE a=10979;\nUPDATE t2 SET b=68648 WHERE a=10980;\nUPDATE t2 SET b=85820 WHERE a=10981;\nUPDATE t2 SET b=49563 WHERE a=10982;\nUPDATE t2 SET b=95934 WHERE a=10983;\nUPDATE t2 SET b=47564 WHERE a=10984;\nUPDATE t2 SET b=77767 WHERE a=10985;\nUPDATE t2 SET b=34507 WHERE a=10986;\nUPDATE t2 SET b=31611 WHERE a=10987;\nUPDATE t2 SET b=10806 WHERE a=10988;\nUPDATE t2 SET b=703 WHERE a=10989;\nUPDATE t2 SET b=93465 WHERE a=10990;\nUPDATE t2 SET b=32216 WHERE a=10991;\nUPDATE t2 SET b=38508 WHERE a=10992;\nUPDATE t2 SET b=64257 WHERE a=10993;\nUPDATE t2 SET b=11516 WHERE a=10994;\nUPDATE t2 SET b=33752 WHERE a=10995;\nUPDATE t2 SET b=55903 WHERE a=10996;\nUPDATE t2 SET b=31339 WHERE a=10997;\nUPDATE t2 SET b=51523 WHERE a=10998;\nUPDATE t2 SET b=64531 WHERE a=10999;\nUPDATE t2 SET b=26545 WHERE a=11000;\nUPDATE t2 SET b=59583 WHERE a=11001;\nUPDATE t2 SET b=77673 WHERE a=11002;\nUPDATE t2 SET b=16271 WHERE a=11003;\nUPDATE t2 SET b=50509 WHERE a=11004;\nUPDATE t2 SET b=69266 WHERE a=11005;\nUPDATE t2 SET b=76108 WHERE a=11006;\nUPDATE t2 SET b=28200 WHERE a=11007;\nUPDATE t2 SET b=80532 WHERE a=11008;\nUPDATE t2 SET b=74790 WHERE a=11009;\nUPDATE t2 SET b=15779 WHERE a=11010;\nUPDATE t2 SET b=76762 WHERE a=11011;\nUPDATE t2 SET b=64985 WHERE a=11012;\nUPDATE t2 SET b=51788 WHERE a=11013;\nUPDATE t2 SET b=22005 WHERE a=11014;\nUPDATE t2 SET b=39206 WHERE a=11015;\nUPDATE t2 SET b=9926 WHERE a=11016;\nUPDATE t2 SET b=82223 WHERE a=11017;\nUPDATE t2 SET b=70970 WHERE a=11018;\nUPDATE t2 SET b=84717 WHERE a=11019;\nUPDATE t2 SET b=99619 WHERE a=11020;\nUPDATE t2 SET b=76711 WHERE a=11021;\nUPDATE t2 SET b=86396 WHERE a=11022;\nUPDATE t2 SET b=37237 WHERE a=11023;\nUPDATE t2 SET b=14961 WHERE a=11024;\nUPDATE t2 SET b=60727 WHERE a=11025;\nUPDATE t2 SET b=56596 WHERE a=11026;\nUPDATE t2 SET b=99701 WHERE a=11027;\nUPDATE t2 SET b=65811 WHERE a=11028;\nUPDATE t2 SET b=52839 WHERE a=11029;\nUPDATE t2 SET b=33880 WHERE a=11030;\nUPDATE t2 SET b=7780 WHERE a=11031;\nUPDATE t2 SET b=28754 WHERE a=11032;\nUPDATE t2 SET b=94096 WHERE a=11033;\nUPDATE t2 SET b=86337 WHERE a=11034;\nUPDATE t2 SET b=12365 WHERE a=11035;\nUPDATE t2 SET b=66474 WHERE a=11036;\nUPDATE t2 SET b=16226 WHERE a=11037;\nUPDATE t2 SET b=46504 WHERE a=11038;\nUPDATE t2 SET b=63714 WHERE a=11039;\nUPDATE t2 SET b=75897 WHERE a=11040;\nUPDATE t2 SET b=71704 WHERE a=11041;\nUPDATE t2 SET b=28930 WHERE a=11042;\nUPDATE t2 SET b=40612 WHERE a=11043;\nUPDATE t2 SET b=1596 WHERE a=11044;\nUPDATE t2 SET b=10802 WHERE a=11045;\nUPDATE t2 SET b=89998 WHERE a=11046;\nUPDATE t2 SET b=76897 WHERE a=11047;\nUPDATE t2 SET b=57879 WHERE a=11048;\nUPDATE t2 SET b=34446 WHERE a=11049;\nUPDATE t2 SET b=21334 WHERE a=11050;\nUPDATE t2 SET b=22749 WHERE a=11051;\nUPDATE t2 SET b=61653 WHERE a=11052;\nUPDATE t2 SET b=69142 WHERE a=11053;\nUPDATE t2 SET b=57199 WHERE a=11054;\nUPDATE t2 SET b=23951 WHERE a=11055;\nUPDATE t2 SET b=89571 WHERE a=11056;\nUPDATE t2 SET b=5551 WHERE a=11057;\nUPDATE t2 SET b=43716 WHERE a=11058;\nUPDATE t2 SET b=18388 WHERE a=11059;\nUPDATE t2 SET b=99255 WHERE a=11060;\nUPDATE t2 SET b=7865 WHERE a=11061;\nUPDATE t2 SET b=72068 WHERE a=11062;\nUPDATE t2 SET b=1333 WHERE a=11063;\nUPDATE t2 SET b=88257 WHERE a=11064;\nUPDATE t2 SET b=13648 WHERE a=11065;\nUPDATE t2 SET b=84064 WHERE a=11066;\nUPDATE t2 SET b=55644 WHERE a=11067;\nUPDATE t2 SET b=10603 WHERE a=11068;\nUPDATE t2 SET b=47652 WHERE a=11069;\nUPDATE t2 SET b=59926 WHERE a=11070;\nUPDATE t2 SET b=36173 WHERE a=11071;\nUPDATE t2 SET b=40100 WHERE a=11072;\nUPDATE t2 SET b=10412 WHERE a=11073;\nUPDATE t2 SET b=14217 WHERE a=11074;\nUPDATE t2 SET b=64713 WHERE a=11075;\nUPDATE t2 SET b=51776 WHERE a=11076;\nUPDATE t2 SET b=7140 WHERE a=11077;\nUPDATE t2 SET b=143 WHERE a=11078;\nUPDATE t2 SET b=89169 WHERE a=11079;\nUPDATE t2 SET b=19893 WHERE a=11080;\nUPDATE t2 SET b=37409 WHERE a=11081;\nUPDATE t2 SET b=89582 WHERE a=11082;\nUPDATE t2 SET b=59274 WHERE a=11083;\nUPDATE t2 SET b=92722 WHERE a=11084;\nUPDATE t2 SET b=56380 WHERE a=11085;\nUPDATE t2 SET b=24232 WHERE a=11086;\nUPDATE t2 SET b=37579 WHERE a=11087;\nUPDATE t2 SET b=44375 WHERE a=11088;\nUPDATE t2 SET b=23557 WHERE a=11089;\nUPDATE t2 SET b=46691 WHERE a=11090;\nUPDATE t2 SET b=50747 WHERE a=11091;\nUPDATE t2 SET b=20116 WHERE a=11092;\nUPDATE t2 SET b=56709 WHERE a=11093;\nUPDATE t2 SET b=11527 WHERE a=11094;\nUPDATE t2 SET b=93809 WHERE a=11095;\nUPDATE t2 SET b=91830 WHERE a=11096;\nUPDATE t2 SET b=32316 WHERE a=11097;\nUPDATE t2 SET b=13639 WHERE a=11098;\nUPDATE t2 SET b=46074 WHERE a=11099;\nUPDATE t2 SET b=83130 WHERE a=11100;\nUPDATE t2 SET b=31453 WHERE a=11101;\nUPDATE t2 SET b=30832 WHERE a=11102;\nUPDATE t2 SET b=43620 WHERE a=11103;\nUPDATE t2 SET b=2913 WHERE a=11104;\nUPDATE t2 SET b=23470 WHERE a=11105;\nUPDATE t2 SET b=84940 WHERE a=11106;\nUPDATE t2 SET b=23628 WHERE a=11107;\nUPDATE t2 SET b=45298 WHERE a=11108;\nUPDATE t2 SET b=63110 WHERE a=11109;\nUPDATE t2 SET b=89027 WHERE a=11110;\nUPDATE t2 SET b=59551 WHERE a=11111;\nUPDATE t2 SET b=85832 WHERE a=11112;\nUPDATE t2 SET b=30119 WHERE a=11113;\nUPDATE t2 SET b=21599 WHERE a=11114;\nUPDATE t2 SET b=81095 WHERE a=11115;\nUPDATE t2 SET b=98324 WHERE a=11116;\nUPDATE t2 SET b=50161 WHERE a=11117;\nUPDATE t2 SET b=15584 WHERE a=11118;\nUPDATE t2 SET b=92038 WHERE a=11119;\nUPDATE t2 SET b=58121 WHERE a=11120;\nUPDATE t2 SET b=76125 WHERE a=11121;\nUPDATE t2 SET b=22825 WHERE a=11122;\nUPDATE t2 SET b=13817 WHERE a=11123;\nUPDATE t2 SET b=28716 WHERE a=11124;\nUPDATE t2 SET b=78829 WHERE a=11125;\nUPDATE t2 SET b=74703 WHERE a=11126;\nUPDATE t2 SET b=23472 WHERE a=11127;\nUPDATE t2 SET b=98382 WHERE a=11128;\nUPDATE t2 SET b=38190 WHERE a=11129;\nUPDATE t2 SET b=90186 WHERE a=11130;\nUPDATE t2 SET b=72897 WHERE a=11131;\nUPDATE t2 SET b=38577 WHERE a=11132;\nUPDATE t2 SET b=66106 WHERE a=11133;\nUPDATE t2 SET b=51870 WHERE a=11134;\nUPDATE t2 SET b=13156 WHERE a=11135;\nUPDATE t2 SET b=43030 WHERE a=11136;\nUPDATE t2 SET b=51549 WHERE a=11137;\nUPDATE t2 SET b=53436 WHERE a=11138;\nUPDATE t2 SET b=88916 WHERE a=11139;\nUPDATE t2 SET b=87632 WHERE a=11140;\nUPDATE t2 SET b=69851 WHERE a=11141;\nUPDATE t2 SET b=85116 WHERE a=11142;\nUPDATE t2 SET b=37374 WHERE a=11143;\nUPDATE t2 SET b=38303 WHERE a=11144;\nUPDATE t2 SET b=43936 WHERE a=11145;\nUPDATE t2 SET b=72837 WHERE a=11146;\nUPDATE t2 SET b=3496 WHERE a=11147;\nUPDATE t2 SET b=14253 WHERE a=11148;\nUPDATE t2 SET b=7547 WHERE a=11149;\nUPDATE t2 SET b=90296 WHERE a=11150;\nUPDATE t2 SET b=98922 WHERE a=11151;\nUPDATE t2 SET b=50314 WHERE a=11152;\nUPDATE t2 SET b=57190 WHERE a=11153;\nUPDATE t2 SET b=5423 WHERE a=11154;\nUPDATE t2 SET b=49541 WHERE a=11155;\nUPDATE t2 SET b=84267 WHERE a=11156;\nUPDATE t2 SET b=7944 WHERE a=11157;\nUPDATE t2 SET b=68636 WHERE a=11158;\nUPDATE t2 SET b=51309 WHERE a=11159;\nUPDATE t2 SET b=18560 WHERE a=11160;\nUPDATE t2 SET b=1497 WHERE a=11161;\nUPDATE t2 SET b=48925 WHERE a=11162;\nUPDATE t2 SET b=64463 WHERE a=11163;\nUPDATE t2 SET b=40839 WHERE a=11164;\nUPDATE t2 SET b=27425 WHERE a=11165;\nUPDATE t2 SET b=66599 WHERE a=11166;\nUPDATE t2 SET b=49785 WHERE a=11167;\nUPDATE t2 SET b=52425 WHERE a=11168;\nUPDATE t2 SET b=32819 WHERE a=11169;\nUPDATE t2 SET b=94081 WHERE a=11170;\nUPDATE t2 SET b=52067 WHERE a=11171;\nUPDATE t2 SET b=40081 WHERE a=11172;\nUPDATE t2 SET b=8197 WHERE a=11173;\nUPDATE t2 SET b=22663 WHERE a=11174;\nUPDATE t2 SET b=53717 WHERE a=11175;\nUPDATE t2 SET b=30706 WHERE a=11176;\nUPDATE t2 SET b=94816 WHERE a=11177;\nUPDATE t2 SET b=29786 WHERE a=11178;\nUPDATE t2 SET b=79779 WHERE a=11179;\nUPDATE t2 SET b=3087 WHERE a=11180;\nUPDATE t2 SET b=67718 WHERE a=11181;\nUPDATE t2 SET b=3270 WHERE a=11182;\nUPDATE t2 SET b=51903 WHERE a=11183;\nUPDATE t2 SET b=88778 WHERE a=11184;\nUPDATE t2 SET b=74054 WHERE a=11185;\nUPDATE t2 SET b=769 WHERE a=11186;\nUPDATE t2 SET b=68301 WHERE a=11187;\nUPDATE t2 SET b=17860 WHERE a=11188;\nUPDATE t2 SET b=94937 WHERE a=11189;\nUPDATE t2 SET b=91408 WHERE a=11190;\nUPDATE t2 SET b=9715 WHERE a=11191;\nUPDATE t2 SET b=62084 WHERE a=11192;\nUPDATE t2 SET b=8687 WHERE a=11193;\nUPDATE t2 SET b=53981 WHERE a=11194;\nUPDATE t2 SET b=86421 WHERE a=11195;\nUPDATE t2 SET b=46752 WHERE a=11196;\nUPDATE t2 SET b=3953 WHERE a=11197;\nUPDATE t2 SET b=72149 WHERE a=11198;\nUPDATE t2 SET b=24847 WHERE a=11199;\nUPDATE t2 SET b=1598 WHERE a=11200;\nUPDATE t2 SET b=99294 WHERE a=11201;\nUPDATE t2 SET b=26641 WHERE a=11202;\nUPDATE t2 SET b=19325 WHERE a=11203;\nUPDATE t2 SET b=67208 WHERE a=11204;\nUPDATE t2 SET b=61936 WHERE a=11205;\nUPDATE t2 SET b=32640 WHERE a=11206;\nUPDATE t2 SET b=64118 WHERE a=11207;\nUPDATE t2 SET b=69686 WHERE a=11208;\nUPDATE t2 SET b=1742 WHERE a=11209;\nUPDATE t2 SET b=8398 WHERE a=11210;\nUPDATE t2 SET b=34984 WHERE a=11211;\nUPDATE t2 SET b=39910 WHERE a=11212;\nUPDATE t2 SET b=62229 WHERE a=11213;\nUPDATE t2 SET b=37647 WHERE a=11214;\nUPDATE t2 SET b=48966 WHERE a=11215;\nUPDATE t2 SET b=40683 WHERE a=11216;\nUPDATE t2 SET b=95958 WHERE a=11217;\nUPDATE t2 SET b=39324 WHERE a=11218;\nUPDATE t2 SET b=56739 WHERE a=11219;\nUPDATE t2 SET b=78693 WHERE a=11220;\nUPDATE t2 SET b=37377 WHERE a=11221;\nUPDATE t2 SET b=20876 WHERE a=11222;\nUPDATE t2 SET b=89908 WHERE a=11223;\nUPDATE t2 SET b=78707 WHERE a=11224;\nUPDATE t2 SET b=60439 WHERE a=11225;\nUPDATE t2 SET b=85411 WHERE a=11226;\nUPDATE t2 SET b=50127 WHERE a=11227;\nUPDATE t2 SET b=1062 WHERE a=11228;\nUPDATE t2 SET b=34420 WHERE a=11229;\nUPDATE t2 SET b=58660 WHERE a=11230;\nUPDATE t2 SET b=28318 WHERE a=11231;\nUPDATE t2 SET b=34279 WHERE a=11232;\nUPDATE t2 SET b=28011 WHERE a=11233;\nUPDATE t2 SET b=13713 WHERE a=11234;\nUPDATE t2 SET b=18139 WHERE a=11235;\nUPDATE t2 SET b=21613 WHERE a=11236;\nUPDATE t2 SET b=45836 WHERE a=11237;\nUPDATE t2 SET b=20159 WHERE a=11238;\nUPDATE t2 SET b=45755 WHERE a=11239;\nUPDATE t2 SET b=60100 WHERE a=11240;\nUPDATE t2 SET b=38666 WHERE a=11241;\nUPDATE t2 SET b=33235 WHERE a=11242;\nUPDATE t2 SET b=10093 WHERE a=11243;\nUPDATE t2 SET b=54972 WHERE a=11244;\nUPDATE t2 SET b=57576 WHERE a=11245;\nUPDATE t2 SET b=18938 WHERE a=11246;\nUPDATE t2 SET b=43103 WHERE a=11247;\nUPDATE t2 SET b=98189 WHERE a=11248;\nUPDATE t2 SET b=33424 WHERE a=11249;\nUPDATE t2 SET b=11425 WHERE a=11250;\nUPDATE t2 SET b=11624 WHERE a=11251;\nUPDATE t2 SET b=97177 WHERE a=11252;\nUPDATE t2 SET b=4609 WHERE a=11253;\nUPDATE t2 SET b=66018 WHERE a=11254;\nUPDATE t2 SET b=59640 WHERE a=11255;\nUPDATE t2 SET b=66146 WHERE a=11256;\nUPDATE t2 SET b=92824 WHERE a=11257;\nUPDATE t2 SET b=53044 WHERE a=11258;\nUPDATE t2 SET b=69468 WHERE a=11259;\nUPDATE t2 SET b=12244 WHERE a=11260;\nUPDATE t2 SET b=74595 WHERE a=11261;\nUPDATE t2 SET b=68190 WHERE a=11262;\nUPDATE t2 SET b=52758 WHERE a=11263;\nUPDATE t2 SET b=44586 WHERE a=11264;\nUPDATE t2 SET b=27851 WHERE a=11265;\nUPDATE t2 SET b=15959 WHERE a=11266;\nUPDATE t2 SET b=44778 WHERE a=11267;\nUPDATE t2 SET b=23281 WHERE a=11268;\nUPDATE t2 SET b=40305 WHERE a=11269;\nUPDATE t2 SET b=40850 WHERE a=11270;\nUPDATE t2 SET b=80906 WHERE a=11271;\nUPDATE t2 SET b=9635 WHERE a=11272;\nUPDATE t2 SET b=81648 WHERE a=11273;\nUPDATE t2 SET b=58470 WHERE a=11274;\nUPDATE t2 SET b=96820 WHERE a=11275;\nUPDATE t2 SET b=93231 WHERE a=11276;\nUPDATE t2 SET b=35440 WHERE a=11277;\nUPDATE t2 SET b=52897 WHERE a=11278;\nUPDATE t2 SET b=72416 WHERE a=11279;\nUPDATE t2 SET b=9053 WHERE a=11280;\nUPDATE t2 SET b=6718 WHERE a=11281;\nUPDATE t2 SET b=57759 WHERE a=11282;\nUPDATE t2 SET b=795 WHERE a=11283;\nUPDATE t2 SET b=32375 WHERE a=11284;\nUPDATE t2 SET b=9660 WHERE a=11285;\nUPDATE t2 SET b=31442 WHERE a=11286;\nUPDATE t2 SET b=69537 WHERE a=11287;\nUPDATE t2 SET b=68399 WHERE a=11288;\nUPDATE t2 SET b=99914 WHERE a=11289;\nUPDATE t2 SET b=17572 WHERE a=11290;\nUPDATE t2 SET b=56569 WHERE a=11291;\nUPDATE t2 SET b=57354 WHERE a=11292;\nUPDATE t2 SET b=71221 WHERE a=11293;\nUPDATE t2 SET b=26099 WHERE a=11294;\nUPDATE t2 SET b=2633 WHERE a=11295;\nUPDATE t2 SET b=30695 WHERE a=11296;\nUPDATE t2 SET b=17511 WHERE a=11297;\nUPDATE t2 SET b=28016 WHERE a=11298;\nUPDATE t2 SET b=79233 WHERE a=11299;\nUPDATE t2 SET b=71416 WHERE a=11300;\nUPDATE t2 SET b=19494 WHERE a=11301;\nUPDATE t2 SET b=72619 WHERE a=11302;\nUPDATE t2 SET b=6609 WHERE a=11303;\nUPDATE t2 SET b=72876 WHERE a=11304;\nUPDATE t2 SET b=98796 WHERE a=11305;\nUPDATE t2 SET b=64530 WHERE a=11306;\nUPDATE t2 SET b=46938 WHERE a=11307;\nUPDATE t2 SET b=8742 WHERE a=11308;\nUPDATE t2 SET b=14464 WHERE a=11309;\nUPDATE t2 SET b=49515 WHERE a=11310;\nUPDATE t2 SET b=85490 WHERE a=11311;\nUPDATE t2 SET b=92163 WHERE a=11312;\nUPDATE t2 SET b=94552 WHERE a=11313;\nUPDATE t2 SET b=94239 WHERE a=11314;\nUPDATE t2 SET b=27149 WHERE a=11315;\nUPDATE t2 SET b=25811 WHERE a=11316;\nUPDATE t2 SET b=60872 WHERE a=11317;\nUPDATE t2 SET b=68058 WHERE a=11318;\nUPDATE t2 SET b=25979 WHERE a=11319;\nUPDATE t2 SET b=81638 WHERE a=11320;\nUPDATE t2 SET b=19164 WHERE a=11321;\nUPDATE t2 SET b=71363 WHERE a=11322;\nUPDATE t2 SET b=66103 WHERE a=11323;\nUPDATE t2 SET b=94265 WHERE a=11324;\nUPDATE t2 SET b=25092 WHERE a=11325;\nUPDATE t2 SET b=4623 WHERE a=11326;\nUPDATE t2 SET b=84895 WHERE a=11327;\nUPDATE t2 SET b=85618 WHERE a=11328;\nUPDATE t2 SET b=17449 WHERE a=11329;\nUPDATE t2 SET b=25995 WHERE a=11330;\nUPDATE t2 SET b=85546 WHERE a=11331;\nUPDATE t2 SET b=68784 WHERE a=11332;\nUPDATE t2 SET b=46470 WHERE a=11333;\nUPDATE t2 SET b=49614 WHERE a=11334;\nUPDATE t2 SET b=62284 WHERE a=11335;\nUPDATE t2 SET b=96641 WHERE a=11336;\nUPDATE t2 SET b=80253 WHERE a=11337;\nUPDATE t2 SET b=81421 WHERE a=11338;\nUPDATE t2 SET b=20635 WHERE a=11339;\nUPDATE t2 SET b=78165 WHERE a=11340;\nUPDATE t2 SET b=10653 WHERE a=11341;\nUPDATE t2 SET b=90613 WHERE a=11342;\nUPDATE t2 SET b=47957 WHERE a=11343;\nUPDATE t2 SET b=42830 WHERE a=11344;\nUPDATE t2 SET b=96887 WHERE a=11345;\nUPDATE t2 SET b=1093 WHERE a=11346;\nUPDATE t2 SET b=40065 WHERE a=11347;\nUPDATE t2 SET b=1273 WHERE a=11348;\nUPDATE t2 SET b=57625 WHERE a=11349;\nUPDATE t2 SET b=12535 WHERE a=11350;\nUPDATE t2 SET b=31908 WHERE a=11351;\nUPDATE t2 SET b=92336 WHERE a=11352;\nUPDATE t2 SET b=52627 WHERE a=11353;\nUPDATE t2 SET b=87812 WHERE a=11354;\nUPDATE t2 SET b=43353 WHERE a=11355;\nUPDATE t2 SET b=59641 WHERE a=11356;\nUPDATE t2 SET b=40756 WHERE a=11357;\nUPDATE t2 SET b=40541 WHERE a=11358;\nUPDATE t2 SET b=36282 WHERE a=11359;\nUPDATE t2 SET b=22533 WHERE a=11360;\nUPDATE t2 SET b=40391 WHERE a=11361;\nUPDATE t2 SET b=39584 WHERE a=11362;\nUPDATE t2 SET b=8843 WHERE a=11363;\nUPDATE t2 SET b=80619 WHERE a=11364;\nUPDATE t2 SET b=157 WHERE a=11365;\nUPDATE t2 SET b=56813 WHERE a=11366;\nUPDATE t2 SET b=29805 WHERE a=11367;\nUPDATE t2 SET b=14093 WHERE a=11368;\nUPDATE t2 SET b=72091 WHERE a=11369;\nUPDATE t2 SET b=530 WHERE a=11370;\nUPDATE t2 SET b=44364 WHERE a=11371;\nUPDATE t2 SET b=60974 WHERE a=11372;\nUPDATE t2 SET b=51584 WHERE a=11373;\nUPDATE t2 SET b=53574 WHERE a=11374;\nUPDATE t2 SET b=55827 WHERE a=11375;\nUPDATE t2 SET b=56999 WHERE a=11376;\nUPDATE t2 SET b=61436 WHERE a=11377;\nUPDATE t2 SET b=59631 WHERE a=11378;\nUPDATE t2 SET b=5281 WHERE a=11379;\nUPDATE t2 SET b=92747 WHERE a=11380;\nUPDATE t2 SET b=10459 WHERE a=11381;\nUPDATE t2 SET b=66080 WHERE a=11382;\nUPDATE t2 SET b=79494 WHERE a=11383;\nUPDATE t2 SET b=91491 WHERE a=11384;\nUPDATE t2 SET b=41181 WHERE a=11385;\nUPDATE t2 SET b=6815 WHERE a=11386;\nUPDATE t2 SET b=92335 WHERE a=11387;\nUPDATE t2 SET b=3988 WHERE a=11388;\nUPDATE t2 SET b=61502 WHERE a=11389;\nUPDATE t2 SET b=63690 WHERE a=11390;\nUPDATE t2 SET b=4827 WHERE a=11391;\nUPDATE t2 SET b=60278 WHERE a=11392;\nUPDATE t2 SET b=50355 WHERE a=11393;\nUPDATE t2 SET b=19111 WHERE a=11394;\nUPDATE t2 SET b=18374 WHERE a=11395;\nUPDATE t2 SET b=81083 WHERE a=11396;\nUPDATE t2 SET b=49904 WHERE a=11397;\nUPDATE t2 SET b=97410 WHERE a=11398;\nUPDATE t2 SET b=98491 WHERE a=11399;\nUPDATE t2 SET b=28743 WHERE a=11400;\nUPDATE t2 SET b=97918 WHERE a=11401;\nUPDATE t2 SET b=52641 WHERE a=11402;\nUPDATE t2 SET b=78834 WHERE a=11403;\nUPDATE t2 SET b=2186 WHERE a=11404;\nUPDATE t2 SET b=25188 WHERE a=11405;\nUPDATE t2 SET b=5707 WHERE a=11406;\nUPDATE t2 SET b=59002 WHERE a=11407;\nUPDATE t2 SET b=36354 WHERE a=11408;\nUPDATE t2 SET b=82034 WHERE a=11409;\nUPDATE t2 SET b=91323 WHERE a=11410;\nUPDATE t2 SET b=55231 WHERE a=11411;\nUPDATE t2 SET b=83110 WHERE a=11412;\nUPDATE t2 SET b=64815 WHERE a=11413;\nUPDATE t2 SET b=4927 WHERE a=11414;\nUPDATE t2 SET b=50514 WHERE a=11415;\nUPDATE t2 SET b=16916 WHERE a=11416;\nUPDATE t2 SET b=44262 WHERE a=11417;\nUPDATE t2 SET b=3997 WHERE a=11418;\nUPDATE t2 SET b=75531 WHERE a=11419;\nUPDATE t2 SET b=91597 WHERE a=11420;\nUPDATE t2 SET b=28168 WHERE a=11421;\nUPDATE t2 SET b=12625 WHERE a=11422;\nUPDATE t2 SET b=71787 WHERE a=11423;\nUPDATE t2 SET b=2757 WHERE a=11424;\nUPDATE t2 SET b=79782 WHERE a=11425;\nUPDATE t2 SET b=65758 WHERE a=11426;\nUPDATE t2 SET b=6841 WHERE a=11427;\nUPDATE t2 SET b=92405 WHERE a=11428;\nUPDATE t2 SET b=63706 WHERE a=11429;\nUPDATE t2 SET b=75642 WHERE a=11430;\nUPDATE t2 SET b=99134 WHERE a=11431;\nUPDATE t2 SET b=57976 WHERE a=11432;\nUPDATE t2 SET b=33198 WHERE a=11433;\nUPDATE t2 SET b=12956 WHERE a=11434;\nUPDATE t2 SET b=36696 WHERE a=11435;\nUPDATE t2 SET b=84901 WHERE a=11436;\nUPDATE t2 SET b=85004 WHERE a=11437;\nUPDATE t2 SET b=35356 WHERE a=11438;\nUPDATE t2 SET b=55791 WHERE a=11439;\nUPDATE t2 SET b=90374 WHERE a=11440;\nUPDATE t2 SET b=95098 WHERE a=11441;\nUPDATE t2 SET b=86543 WHERE a=11442;\nUPDATE t2 SET b=24848 WHERE a=11443;\nUPDATE t2 SET b=72089 WHERE a=11444;\nUPDATE t2 SET b=13450 WHERE a=11445;\nUPDATE t2 SET b=53610 WHERE a=11446;\nUPDATE t2 SET b=52937 WHERE a=11447;\nUPDATE t2 SET b=82196 WHERE a=11448;\nUPDATE t2 SET b=88176 WHERE a=11449;\nUPDATE t2 SET b=28697 WHERE a=11450;\nUPDATE t2 SET b=31877 WHERE a=11451;\nUPDATE t2 SET b=31964 WHERE a=11452;\nUPDATE t2 SET b=69086 WHERE a=11453;\nUPDATE t2 SET b=82414 WHERE a=11454;\nUPDATE t2 SET b=55259 WHERE a=11455;\nUPDATE t2 SET b=46384 WHERE a=11456;\nUPDATE t2 SET b=32431 WHERE a=11457;\nUPDATE t2 SET b=3741 WHERE a=11458;\nUPDATE t2 SET b=41057 WHERE a=11459;\nUPDATE t2 SET b=77442 WHERE a=11460;\nUPDATE t2 SET b=98926 WHERE a=11461;\nUPDATE t2 SET b=22274 WHERE a=11462;\nUPDATE t2 SET b=85663 WHERE a=11463;\nUPDATE t2 SET b=50213 WHERE a=11464;\nUPDATE t2 SET b=99556 WHERE a=11465;\nUPDATE t2 SET b=6119 WHERE a=11466;\nUPDATE t2 SET b=63514 WHERE a=11467;\nUPDATE t2 SET b=227 WHERE a=11468;\nUPDATE t2 SET b=68852 WHERE a=11469;\nUPDATE t2 SET b=8647 WHERE a=11470;\nUPDATE t2 SET b=49336 WHERE a=11471;\nUPDATE t2 SET b=14640 WHERE a=11472;\nUPDATE t2 SET b=36915 WHERE a=11473;\nUPDATE t2 SET b=39020 WHERE a=11474;\nUPDATE t2 SET b=6325 WHERE a=11475;\nUPDATE t2 SET b=82524 WHERE a=11476;\nUPDATE t2 SET b=29965 WHERE a=11477;\nUPDATE t2 SET b=31016 WHERE a=11478;\nUPDATE t2 SET b=9327 WHERE a=11479;\nUPDATE t2 SET b=5660 WHERE a=11480;\nUPDATE t2 SET b=99366 WHERE a=11481;\nUPDATE t2 SET b=20058 WHERE a=11482;\nUPDATE t2 SET b=22330 WHERE a=11483;\nUPDATE t2 SET b=3778 WHERE a=11484;\nUPDATE t2 SET b=26060 WHERE a=11485;\nUPDATE t2 SET b=83900 WHERE a=11486;\nUPDATE t2 SET b=84706 WHERE a=11487;\nUPDATE t2 SET b=35241 WHERE a=11488;\nUPDATE t2 SET b=44412 WHERE a=11489;\nUPDATE t2 SET b=55831 WHERE a=11490;\nUPDATE t2 SET b=4166 WHERE a=11491;\nUPDATE t2 SET b=35404 WHERE a=11492;\nUPDATE t2 SET b=91735 WHERE a=11493;\nUPDATE t2 SET b=4669 WHERE a=11494;\nUPDATE t2 SET b=21003 WHERE a=11495;\nUPDATE t2 SET b=77845 WHERE a=11496;\nUPDATE t2 SET b=99106 WHERE a=11497;\nUPDATE t2 SET b=2581 WHERE a=11498;\nUPDATE t2 SET b=66765 WHERE a=11499;\nUPDATE t2 SET b=10178 WHERE a=11500;\nUPDATE t2 SET b=64074 WHERE a=11501;\nUPDATE t2 SET b=54734 WHERE a=11502;\nUPDATE t2 SET b=72132 WHERE a=11503;\nUPDATE t2 SET b=19603 WHERE a=11504;\nUPDATE t2 SET b=63128 WHERE a=11505;\nUPDATE t2 SET b=76191 WHERE a=11506;\nUPDATE t2 SET b=70081 WHERE a=11507;\nUPDATE t2 SET b=58193 WHERE a=11508;\nUPDATE t2 SET b=53131 WHERE a=11509;\nUPDATE t2 SET b=49888 WHERE a=11510;\nUPDATE t2 SET b=61458 WHERE a=11511;\nUPDATE t2 SET b=12085 WHERE a=11512;\nUPDATE t2 SET b=79995 WHERE a=11513;\nUPDATE t2 SET b=45828 WHERE a=11514;\nUPDATE t2 SET b=67440 WHERE a=11515;\nUPDATE t2 SET b=23389 WHERE a=11516;\nUPDATE t2 SET b=81059 WHERE a=11517;\nUPDATE t2 SET b=75782 WHERE a=11518;\nUPDATE t2 SET b=20894 WHERE a=11519;\nUPDATE t2 SET b=32043 WHERE a=11520;\nUPDATE t2 SET b=87001 WHERE a=11521;\nUPDATE t2 SET b=16745 WHERE a=11522;\nUPDATE t2 SET b=48470 WHERE a=11523;\nUPDATE t2 SET b=92193 WHERE a=11524;\nUPDATE t2 SET b=74058 WHERE a=11525;\nUPDATE t2 SET b=80560 WHERE a=11526;\nUPDATE t2 SET b=18107 WHERE a=11527;\nUPDATE t2 SET b=27918 WHERE a=11528;\nUPDATE t2 SET b=40878 WHERE a=11529;\nUPDATE t2 SET b=23175 WHERE a=11530;\nUPDATE t2 SET b=70342 WHERE a=11531;\nUPDATE t2 SET b=87836 WHERE a=11532;\nUPDATE t2 SET b=43773 WHERE a=11533;\nUPDATE t2 SET b=97001 WHERE a=11534;\nUPDATE t2 SET b=59546 WHERE a=11535;\nUPDATE t2 SET b=62642 WHERE a=11536;\nUPDATE t2 SET b=21178 WHERE a=11537;\nUPDATE t2 SET b=64823 WHERE a=11538;\nUPDATE t2 SET b=69993 WHERE a=11539;\nUPDATE t2 SET b=1596 WHERE a=11540;\nUPDATE t2 SET b=64826 WHERE a=11541;\nUPDATE t2 SET b=78439 WHERE a=11542;\nUPDATE t2 SET b=43643 WHERE a=11543;\nUPDATE t2 SET b=27044 WHERE a=11544;\nUPDATE t2 SET b=43318 WHERE a=11545;\nUPDATE t2 SET b=62931 WHERE a=11546;\nUPDATE t2 SET b=85532 WHERE a=11547;\nUPDATE t2 SET b=2617 WHERE a=11548;\nUPDATE t2 SET b=31207 WHERE a=11549;\nUPDATE t2 SET b=84553 WHERE a=11550;\nUPDATE t2 SET b=28071 WHERE a=11551;\nUPDATE t2 SET b=3361 WHERE a=11552;\nUPDATE t2 SET b=41616 WHERE a=11553;\nUPDATE t2 SET b=34479 WHERE a=11554;\nUPDATE t2 SET b=35253 WHERE a=11555;\nUPDATE t2 SET b=27725 WHERE a=11556;\nUPDATE t2 SET b=65218 WHERE a=11557;\nUPDATE t2 SET b=67223 WHERE a=11558;\nUPDATE t2 SET b=62139 WHERE a=11559;\nUPDATE t2 SET b=72651 WHERE a=11560;\nUPDATE t2 SET b=45544 WHERE a=11561;\nUPDATE t2 SET b=50772 WHERE a=11562;\nUPDATE t2 SET b=1909 WHERE a=11563;\nUPDATE t2 SET b=86140 WHERE a=11564;\nUPDATE t2 SET b=18600 WHERE a=11565;\nUPDATE t2 SET b=44514 WHERE a=11566;\nUPDATE t2 SET b=14947 WHERE a=11567;\nUPDATE t2 SET b=6620 WHERE a=11568;\nUPDATE t2 SET b=42486 WHERE a=11569;\nUPDATE t2 SET b=78191 WHERE a=11570;\nUPDATE t2 SET b=17831 WHERE a=11571;\nUPDATE t2 SET b=83168 WHERE a=11572;\nUPDATE t2 SET b=77044 WHERE a=11573;\nUPDATE t2 SET b=95747 WHERE a=11574;\nUPDATE t2 SET b=72224 WHERE a=11575;\nUPDATE t2 SET b=62720 WHERE a=11576;\nUPDATE t2 SET b=62323 WHERE a=11577;\nUPDATE t2 SET b=93620 WHERE a=11578;\nUPDATE t2 SET b=45361 WHERE a=11579;\nUPDATE t2 SET b=8644 WHERE a=11580;\nUPDATE t2 SET b=37687 WHERE a=11581;\nUPDATE t2 SET b=54324 WHERE a=11582;\nUPDATE t2 SET b=51754 WHERE a=11583;\nUPDATE t2 SET b=77260 WHERE a=11584;\nUPDATE t2 SET b=15047 WHERE a=11585;\nUPDATE t2 SET b=55994 WHERE a=11586;\nUPDATE t2 SET b=4204 WHERE a=11587;\nUPDATE t2 SET b=80883 WHERE a=11588;\nUPDATE t2 SET b=14923 WHERE a=11589;\nUPDATE t2 SET b=47256 WHERE a=11590;\nUPDATE t2 SET b=10921 WHERE a=11591;\nUPDATE t2 SET b=59708 WHERE a=11592;\nUPDATE t2 SET b=84526 WHERE a=11593;\nUPDATE t2 SET b=46494 WHERE a=11594;\nUPDATE t2 SET b=70210 WHERE a=11595;\nUPDATE t2 SET b=29960 WHERE a=11596;\nUPDATE t2 SET b=50804 WHERE a=11597;\nUPDATE t2 SET b=90095 WHERE a=11598;\nUPDATE t2 SET b=19717 WHERE a=11599;\nUPDATE t2 SET b=20775 WHERE a=11600;\nUPDATE t2 SET b=19166 WHERE a=11601;\nUPDATE t2 SET b=52205 WHERE a=11602;\nUPDATE t2 SET b=62375 WHERE a=11603;\nUPDATE t2 SET b=61842 WHERE a=11604;\nUPDATE t2 SET b=20193 WHERE a=11605;\nUPDATE t2 SET b=14794 WHERE a=11606;\nUPDATE t2 SET b=49126 WHERE a=11607;\nUPDATE t2 SET b=94029 WHERE a=11608;\nUPDATE t2 SET b=6956 WHERE a=11609;\nUPDATE t2 SET b=5963 WHERE a=11610;\nUPDATE t2 SET b=77891 WHERE a=11611;\nUPDATE t2 SET b=75561 WHERE a=11612;\nUPDATE t2 SET b=10757 WHERE a=11613;\nUPDATE t2 SET b=22057 WHERE a=11614;\nUPDATE t2 SET b=12728 WHERE a=11615;\nUPDATE t2 SET b=45330 WHERE a=11616;\nUPDATE t2 SET b=15657 WHERE a=11617;\nUPDATE t2 SET b=86222 WHERE a=11618;\nUPDATE t2 SET b=81589 WHERE a=11619;\nUPDATE t2 SET b=3043 WHERE a=11620;\nUPDATE t2 SET b=9326 WHERE a=11621;\nUPDATE t2 SET b=33880 WHERE a=11622;\nUPDATE t2 SET b=20048 WHERE a=11623;\nUPDATE t2 SET b=49005 WHERE a=11624;\nUPDATE t2 SET b=25164 WHERE a=11625;\nUPDATE t2 SET b=27793 WHERE a=11626;\nUPDATE t2 SET b=89283 WHERE a=11627;\nUPDATE t2 SET b=30581 WHERE a=11628;\nUPDATE t2 SET b=13682 WHERE a=11629;\nUPDATE t2 SET b=83427 WHERE a=11630;\nUPDATE t2 SET b=59194 WHERE a=11631;\nUPDATE t2 SET b=19023 WHERE a=11632;\nUPDATE t2 SET b=30585 WHERE a=11633;\nUPDATE t2 SET b=33695 WHERE a=11634;\nUPDATE t2 SET b=5485 WHERE a=11635;\nUPDATE t2 SET b=78973 WHERE a=11636;\nUPDATE t2 SET b=38293 WHERE a=11637;\nUPDATE t2 SET b=65622 WHERE a=11638;\nUPDATE t2 SET b=58654 WHERE a=11639;\nUPDATE t2 SET b=60167 WHERE a=11640;\nUPDATE t2 SET b=56726 WHERE a=11641;\nUPDATE t2 SET b=73635 WHERE a=11642;\nUPDATE t2 SET b=10153 WHERE a=11643;\nUPDATE t2 SET b=30295 WHERE a=11644;\nUPDATE t2 SET b=94632 WHERE a=11645;\nUPDATE t2 SET b=81815 WHERE a=11646;\nUPDATE t2 SET b=7257 WHERE a=11647;\nUPDATE t2 SET b=20168 WHERE a=11648;\nUPDATE t2 SET b=99890 WHERE a=11649;\nUPDATE t2 SET b=23772 WHERE a=11650;\nUPDATE t2 SET b=56625 WHERE a=11651;\nUPDATE t2 SET b=10537 WHERE a=11652;\nUPDATE t2 SET b=20839 WHERE a=11653;\nUPDATE t2 SET b=21834 WHERE a=11654;\nUPDATE t2 SET b=19225 WHERE a=11655;\nUPDATE t2 SET b=88493 WHERE a=11656;\nUPDATE t2 SET b=92128 WHERE a=11657;\nUPDATE t2 SET b=65061 WHERE a=11658;\nUPDATE t2 SET b=52592 WHERE a=11659;\nUPDATE t2 SET b=34133 WHERE a=11660;\nUPDATE t2 SET b=71121 WHERE a=11661;\nUPDATE t2 SET b=49111 WHERE a=11662;\nUPDATE t2 SET b=98924 WHERE a=11663;\nUPDATE t2 SET b=36945 WHERE a=11664;\nUPDATE t2 SET b=52293 WHERE a=11665;\nUPDATE t2 SET b=33924 WHERE a=11666;\nUPDATE t2 SET b=7018 WHERE a=11667;\nUPDATE t2 SET b=41469 WHERE a=11668;\nUPDATE t2 SET b=54483 WHERE a=11669;\nUPDATE t2 SET b=67280 WHERE a=11670;\nUPDATE t2 SET b=69921 WHERE a=11671;\nUPDATE t2 SET b=74795 WHERE a=11672;\nUPDATE t2 SET b=93510 WHERE a=11673;\nUPDATE t2 SET b=57701 WHERE a=11674;\nUPDATE t2 SET b=87147 WHERE a=11675;\nUPDATE t2 SET b=62739 WHERE a=11676;\nUPDATE t2 SET b=25435 WHERE a=11677;\nUPDATE t2 SET b=68253 WHERE a=11678;\nUPDATE t2 SET b=44987 WHERE a=11679;\nUPDATE t2 SET b=98510 WHERE a=11680;\nUPDATE t2 SET b=26882 WHERE a=11681;\nUPDATE t2 SET b=70058 WHERE a=11682;\nUPDATE t2 SET b=20901 WHERE a=11683;\nUPDATE t2 SET b=31464 WHERE a=11684;\nUPDATE t2 SET b=68684 WHERE a=11685;\nUPDATE t2 SET b=18219 WHERE a=11686;\nUPDATE t2 SET b=55509 WHERE a=11687;\nUPDATE t2 SET b=47624 WHERE a=11688;\nUPDATE t2 SET b=13331 WHERE a=11689;\nUPDATE t2 SET b=23317 WHERE a=11690;\nUPDATE t2 SET b=51260 WHERE a=11691;\nUPDATE t2 SET b=5705 WHERE a=11692;\nUPDATE t2 SET b=13811 WHERE a=11693;\nUPDATE t2 SET b=64393 WHERE a=11694;\nUPDATE t2 SET b=95777 WHERE a=11695;\nUPDATE t2 SET b=47899 WHERE a=11696;\nUPDATE t2 SET b=11413 WHERE a=11697;\nUPDATE t2 SET b=37230 WHERE a=11698;\nUPDATE t2 SET b=3913 WHERE a=11699;\nUPDATE t2 SET b=43261 WHERE a=11700;\nUPDATE t2 SET b=74813 WHERE a=11701;\nUPDATE t2 SET b=59168 WHERE a=11702;\nUPDATE t2 SET b=80524 WHERE a=11703;\nUPDATE t2 SET b=93889 WHERE a=11704;\nUPDATE t2 SET b=95062 WHERE a=11705;\nUPDATE t2 SET b=32101 WHERE a=11706;\nUPDATE t2 SET b=89240 WHERE a=11707;\nUPDATE t2 SET b=50220 WHERE a=11708;\nUPDATE t2 SET b=42925 WHERE a=11709;\nUPDATE t2 SET b=57608 WHERE a=11710;\nUPDATE t2 SET b=7536 WHERE a=11711;\nUPDATE t2 SET b=1283 WHERE a=11712;\nUPDATE t2 SET b=57077 WHERE a=11713;\nUPDATE t2 SET b=32736 WHERE a=11714;\nUPDATE t2 SET b=31569 WHERE a=11715;\nUPDATE t2 SET b=19933 WHERE a=11716;\nUPDATE t2 SET b=25858 WHERE a=11717;\nUPDATE t2 SET b=14656 WHERE a=11718;\nUPDATE t2 SET b=14073 WHERE a=11719;\nUPDATE t2 SET b=37787 WHERE a=11720;\nUPDATE t2 SET b=78705 WHERE a=11721;\nUPDATE t2 SET b=14788 WHERE a=11722;\nUPDATE t2 SET b=16642 WHERE a=11723;\nUPDATE t2 SET b=33972 WHERE a=11724;\nUPDATE t2 SET b=6945 WHERE a=11725;\nUPDATE t2 SET b=18506 WHERE a=11726;\nUPDATE t2 SET b=3245 WHERE a=11727;\nUPDATE t2 SET b=9869 WHERE a=11728;\nUPDATE t2 SET b=56224 WHERE a=11729;\nUPDATE t2 SET b=77435 WHERE a=11730;\nUPDATE t2 SET b=80687 WHERE a=11731;\nUPDATE t2 SET b=55833 WHERE a=11732;\nUPDATE t2 SET b=14857 WHERE a=11733;\nUPDATE t2 SET b=41569 WHERE a=11734;\nUPDATE t2 SET b=26463 WHERE a=11735;\nUPDATE t2 SET b=79220 WHERE a=11736;\nUPDATE t2 SET b=24875 WHERE a=11737;\nUPDATE t2 SET b=93936 WHERE a=11738;\nUPDATE t2 SET b=83969 WHERE a=11739;\nUPDATE t2 SET b=99281 WHERE a=11740;\nUPDATE t2 SET b=53299 WHERE a=11741;\nUPDATE t2 SET b=37022 WHERE a=11742;\nUPDATE t2 SET b=80756 WHERE a=11743;\nUPDATE t2 SET b=66873 WHERE a=11744;\nUPDATE t2 SET b=43597 WHERE a=11745;\nUPDATE t2 SET b=79739 WHERE a=11746;\nUPDATE t2 SET b=16411 WHERE a=11747;\nUPDATE t2 SET b=39120 WHERE a=11748;\nUPDATE t2 SET b=91596 WHERE a=11749;\nUPDATE t2 SET b=3501 WHERE a=11750;\nUPDATE t2 SET b=89001 WHERE a=11751;\nUPDATE t2 SET b=65581 WHERE a=11752;\nUPDATE t2 SET b=94206 WHERE a=11753;\nUPDATE t2 SET b=5742 WHERE a=11754;\nUPDATE t2 SET b=50827 WHERE a=11755;\nUPDATE t2 SET b=24153 WHERE a=11756;\nUPDATE t2 SET b=5581 WHERE a=11757;\nUPDATE t2 SET b=77260 WHERE a=11758;\nUPDATE t2 SET b=38819 WHERE a=11759;\nUPDATE t2 SET b=52747 WHERE a=11760;\nUPDATE t2 SET b=91071 WHERE a=11761;\nUPDATE t2 SET b=73297 WHERE a=11762;\nUPDATE t2 SET b=88586 WHERE a=11763;\nUPDATE t2 SET b=48845 WHERE a=11764;\nUPDATE t2 SET b=97026 WHERE a=11765;\nUPDATE t2 SET b=82932 WHERE a=11766;\nUPDATE t2 SET b=5358 WHERE a=11767;\nUPDATE t2 SET b=98823 WHERE a=11768;\nUPDATE t2 SET b=12652 WHERE a=11769;\nUPDATE t2 SET b=23004 WHERE a=11770;\nUPDATE t2 SET b=86908 WHERE a=11771;\nUPDATE t2 SET b=4678 WHERE a=11772;\nUPDATE t2 SET b=99245 WHERE a=11773;\nUPDATE t2 SET b=83871 WHERE a=11774;\nUPDATE t2 SET b=29735 WHERE a=11775;\nUPDATE t2 SET b=4009 WHERE a=11776;\nUPDATE t2 SET b=72966 WHERE a=11777;\nUPDATE t2 SET b=22158 WHERE a=11778;\nUPDATE t2 SET b=4351 WHERE a=11779;\nUPDATE t2 SET b=92194 WHERE a=11780;\nUPDATE t2 SET b=68281 WHERE a=11781;\nUPDATE t2 SET b=65794 WHERE a=11782;\nUPDATE t2 SET b=84523 WHERE a=11783;\nUPDATE t2 SET b=75178 WHERE a=11784;\nUPDATE t2 SET b=55684 WHERE a=11785;\nUPDATE t2 SET b=79986 WHERE a=11786;\nUPDATE t2 SET b=60380 WHERE a=11787;\nUPDATE t2 SET b=36730 WHERE a=11788;\nUPDATE t2 SET b=96419 WHERE a=11789;\nUPDATE t2 SET b=2289 WHERE a=11790;\nUPDATE t2 SET b=87799 WHERE a=11791;\nUPDATE t2 SET b=17924 WHERE a=11792;\nUPDATE t2 SET b=93053 WHERE a=11793;\nUPDATE t2 SET b=52154 WHERE a=11794;\nUPDATE t2 SET b=17358 WHERE a=11795;\nUPDATE t2 SET b=38484 WHERE a=11796;\nUPDATE t2 SET b=81103 WHERE a=11797;\nUPDATE t2 SET b=55984 WHERE a=11798;\nUPDATE t2 SET b=14333 WHERE a=11799;\nUPDATE t2 SET b=13538 WHERE a=11800;\nUPDATE t2 SET b=14611 WHERE a=11801;\nUPDATE t2 SET b=6942 WHERE a=11802;\nUPDATE t2 SET b=59458 WHERE a=11803;\nUPDATE t2 SET b=42006 WHERE a=11804;\nUPDATE t2 SET b=34988 WHERE a=11805;\nUPDATE t2 SET b=44589 WHERE a=11806;\nUPDATE t2 SET b=38680 WHERE a=11807;\nUPDATE t2 SET b=13630 WHERE a=11808;\nUPDATE t2 SET b=30544 WHERE a=11809;\nUPDATE t2 SET b=48215 WHERE a=11810;\nUPDATE t2 SET b=83642 WHERE a=11811;\nUPDATE t2 SET b=22734 WHERE a=11812;\nUPDATE t2 SET b=76792 WHERE a=11813;\nUPDATE t2 SET b=87857 WHERE a=11814;\nUPDATE t2 SET b=88998 WHERE a=11815;\nUPDATE t2 SET b=94870 WHERE a=11816;\nUPDATE t2 SET b=93351 WHERE a=11817;\nUPDATE t2 SET b=79585 WHERE a=11818;\nUPDATE t2 SET b=2710 WHERE a=11819;\nUPDATE t2 SET b=33488 WHERE a=11820;\nUPDATE t2 SET b=42576 WHERE a=11821;\nUPDATE t2 SET b=5338 WHERE a=11822;\nUPDATE t2 SET b=2738 WHERE a=11823;\nUPDATE t2 SET b=32414 WHERE a=11824;\nUPDATE t2 SET b=62376 WHERE a=11825;\nUPDATE t2 SET b=562 WHERE a=11826;\nUPDATE t2 SET b=92811 WHERE a=11827;\nUPDATE t2 SET b=62979 WHERE a=11828;\nUPDATE t2 SET b=80532 WHERE a=11829;\nUPDATE t2 SET b=90437 WHERE a=11830;\nUPDATE t2 SET b=3666 WHERE a=11831;\nUPDATE t2 SET b=64949 WHERE a=11832;\nUPDATE t2 SET b=98501 WHERE a=11833;\nUPDATE t2 SET b=5057 WHERE a=11834;\nUPDATE t2 SET b=91050 WHERE a=11835;\nUPDATE t2 SET b=7895 WHERE a=11836;\nUPDATE t2 SET b=45015 WHERE a=11837;\nUPDATE t2 SET b=90217 WHERE a=11838;\nUPDATE t2 SET b=53959 WHERE a=11839;\nUPDATE t2 SET b=44129 WHERE a=11840;\nUPDATE t2 SET b=21487 WHERE a=11841;\nUPDATE t2 SET b=78695 WHERE a=11842;\nUPDATE t2 SET b=21944 WHERE a=11843;\nUPDATE t2 SET b=93333 WHERE a=11844;\nUPDATE t2 SET b=59085 WHERE a=11845;\nUPDATE t2 SET b=60665 WHERE a=11846;\nUPDATE t2 SET b=67893 WHERE a=11847;\nUPDATE t2 SET b=70790 WHERE a=11848;\nUPDATE t2 SET b=24185 WHERE a=11849;\nUPDATE t2 SET b=38929 WHERE a=11850;\nUPDATE t2 SET b=57828 WHERE a=11851;\nUPDATE t2 SET b=34379 WHERE a=11852;\nUPDATE t2 SET b=41209 WHERE a=11853;\nUPDATE t2 SET b=45560 WHERE a=11854;\nUPDATE t2 SET b=18564 WHERE a=11855;\nUPDATE t2 SET b=17657 WHERE a=11856;\nUPDATE t2 SET b=30994 WHERE a=11857;\nUPDATE t2 SET b=73338 WHERE a=11858;\nUPDATE t2 SET b=42729 WHERE a=11859;\nUPDATE t2 SET b=68573 WHERE a=11860;\nUPDATE t2 SET b=33 WHERE a=11861;\nUPDATE t2 SET b=91822 WHERE a=11862;\nUPDATE t2 SET b=14565 WHERE a=11863;\nUPDATE t2 SET b=50712 WHERE a=11864;\nUPDATE t2 SET b=39147 WHERE a=11865;\nUPDATE t2 SET b=52381 WHERE a=11866;\nUPDATE t2 SET b=67802 WHERE a=11867;\nUPDATE t2 SET b=93586 WHERE a=11868;\nUPDATE t2 SET b=6780 WHERE a=11869;\nUPDATE t2 SET b=14370 WHERE a=11870;\nUPDATE t2 SET b=17784 WHERE a=11871;\nUPDATE t2 SET b=8099 WHERE a=11872;\nUPDATE t2 SET b=28119 WHERE a=11873;\nUPDATE t2 SET b=17349 WHERE a=11874;\nUPDATE t2 SET b=18712 WHERE a=11875;\nUPDATE t2 SET b=28844 WHERE a=11876;\nUPDATE t2 SET b=34677 WHERE a=11877;\nUPDATE t2 SET b=62096 WHERE a=11878;\nUPDATE t2 SET b=62332 WHERE a=11879;\nUPDATE t2 SET b=82432 WHERE a=11880;\nUPDATE t2 SET b=89519 WHERE a=11881;\nUPDATE t2 SET b=94159 WHERE a=11882;\nUPDATE t2 SET b=44513 WHERE a=11883;\nUPDATE t2 SET b=34659 WHERE a=11884;\nUPDATE t2 SET b=27312 WHERE a=11885;\nUPDATE t2 SET b=57300 WHERE a=11886;\nUPDATE t2 SET b=87339 WHERE a=11887;\nUPDATE t2 SET b=63770 WHERE a=11888;\nUPDATE t2 SET b=79606 WHERE a=11889;\nUPDATE t2 SET b=74601 WHERE a=11890;\nUPDATE t2 SET b=98090 WHERE a=11891;\nUPDATE t2 SET b=27140 WHERE a=11892;\nUPDATE t2 SET b=92124 WHERE a=11893;\nUPDATE t2 SET b=55021 WHERE a=11894;\nUPDATE t2 SET b=58832 WHERE a=11895;\nUPDATE t2 SET b=68458 WHERE a=11896;\nUPDATE t2 SET b=75624 WHERE a=11897;\nUPDATE t2 SET b=91189 WHERE a=11898;\nUPDATE t2 SET b=64935 WHERE a=11899;\nUPDATE t2 SET b=59058 WHERE a=11900;\nUPDATE t2 SET b=49159 WHERE a=11901;\nUPDATE t2 SET b=29072 WHERE a=11902;\nUPDATE t2 SET b=9799 WHERE a=11903;\nUPDATE t2 SET b=32589 WHERE a=11904;\nUPDATE t2 SET b=55664 WHERE a=11905;\nUPDATE t2 SET b=80546 WHERE a=11906;\nUPDATE t2 SET b=84146 WHERE a=11907;\nUPDATE t2 SET b=34903 WHERE a=11908;\nUPDATE t2 SET b=8142 WHERE a=11909;\nUPDATE t2 SET b=85015 WHERE a=11910;\nUPDATE t2 SET b=81652 WHERE a=11911;\nUPDATE t2 SET b=8419 WHERE a=11912;\nUPDATE t2 SET b=41934 WHERE a=11913;\nUPDATE t2 SET b=23256 WHERE a=11914;\nUPDATE t2 SET b=15658 WHERE a=11915;\nUPDATE t2 SET b=72839 WHERE a=11916;\nUPDATE t2 SET b=84693 WHERE a=11917;\nUPDATE t2 SET b=24546 WHERE a=11918;\nUPDATE t2 SET b=90436 WHERE a=11919;\nUPDATE t2 SET b=24440 WHERE a=11920;\nUPDATE t2 SET b=81856 WHERE a=11921;\nUPDATE t2 SET b=19713 WHERE a=11922;\nUPDATE t2 SET b=23640 WHERE a=11923;\nUPDATE t2 SET b=9381 WHERE a=11924;\nUPDATE t2 SET b=91546 WHERE a=11925;\nUPDATE t2 SET b=36931 WHERE a=11926;\nUPDATE t2 SET b=49000 WHERE a=11927;\nUPDATE t2 SET b=44443 WHERE a=11928;\nUPDATE t2 SET b=69691 WHERE a=11929;\nUPDATE t2 SET b=98809 WHERE a=11930;\nUPDATE t2 SET b=80584 WHERE a=11931;\nUPDATE t2 SET b=43056 WHERE a=11932;\nUPDATE t2 SET b=87152 WHERE a=11933;\nUPDATE t2 SET b=49566 WHERE a=11934;\nUPDATE t2 SET b=79511 WHERE a=11935;\nUPDATE t2 SET b=58360 WHERE a=11936;\nUPDATE t2 SET b=72157 WHERE a=11937;\nUPDATE t2 SET b=89564 WHERE a=11938;\nUPDATE t2 SET b=64921 WHERE a=11939;\nUPDATE t2 SET b=90204 WHERE a=11940;\nUPDATE t2 SET b=12273 WHERE a=11941;\nUPDATE t2 SET b=6476 WHERE a=11942;\nUPDATE t2 SET b=60163 WHERE a=11943;\nUPDATE t2 SET b=3988 WHERE a=11944;\nUPDATE t2 SET b=26565 WHERE a=11945;\nUPDATE t2 SET b=36527 WHERE a=11946;\nUPDATE t2 SET b=81954 WHERE a=11947;\nUPDATE t2 SET b=93255 WHERE a=11948;\nUPDATE t2 SET b=83344 WHERE a=11949;\nUPDATE t2 SET b=95326 WHERE a=11950;\nUPDATE t2 SET b=10526 WHERE a=11951;\nUPDATE t2 SET b=91846 WHERE a=11952;\nUPDATE t2 SET b=86157 WHERE a=11953;\nUPDATE t2 SET b=18397 WHERE a=11954;\nUPDATE t2 SET b=79220 WHERE a=11955;\nUPDATE t2 SET b=1609 WHERE a=11956;\nUPDATE t2 SET b=34063 WHERE a=11957;\nUPDATE t2 SET b=9534 WHERE a=11958;\nUPDATE t2 SET b=28046 WHERE a=11959;\nUPDATE t2 SET b=26885 WHERE a=11960;\nUPDATE t2 SET b=91622 WHERE a=11961;\nUPDATE t2 SET b=16307 WHERE a=11962;\nUPDATE t2 SET b=64167 WHERE a=11963;\nUPDATE t2 SET b=43422 WHERE a=11964;\nUPDATE t2 SET b=88846 WHERE a=11965;\nUPDATE t2 SET b=26006 WHERE a=11966;\nUPDATE t2 SET b=90258 WHERE a=11967;\nUPDATE t2 SET b=28496 WHERE a=11968;\nUPDATE t2 SET b=46057 WHERE a=11969;\nUPDATE t2 SET b=65008 WHERE a=11970;\nUPDATE t2 SET b=90496 WHERE a=11971;\nUPDATE t2 SET b=28293 WHERE a=11972;\nUPDATE t2 SET b=84464 WHERE a=11973;\nUPDATE t2 SET b=75789 WHERE a=11974;\nUPDATE t2 SET b=20630 WHERE a=11975;\nUPDATE t2 SET b=61830 WHERE a=11976;\nUPDATE t2 SET b=87662 WHERE a=11977;\nUPDATE t2 SET b=97959 WHERE a=11978;\nUPDATE t2 SET b=66005 WHERE a=11979;\nUPDATE t2 SET b=54781 WHERE a=11980;\nUPDATE t2 SET b=36612 WHERE a=11981;\nUPDATE t2 SET b=243 WHERE a=11982;\nUPDATE t2 SET b=92051 WHERE a=11983;\nUPDATE t2 SET b=53461 WHERE a=11984;\nUPDATE t2 SET b=90007 WHERE a=11985;\nUPDATE t2 SET b=27776 WHERE a=11986;\nUPDATE t2 SET b=33232 WHERE a=11987;\nUPDATE t2 SET b=8520 WHERE a=11988;\nUPDATE t2 SET b=68067 WHERE a=11989;\nUPDATE t2 SET b=65409 WHERE a=11990;\nUPDATE t2 SET b=64040 WHERE a=11991;\nUPDATE t2 SET b=45662 WHERE a=11992;\nUPDATE t2 SET b=32667 WHERE a=11993;\nUPDATE t2 SET b=75597 WHERE a=11994;\nUPDATE t2 SET b=29747 WHERE a=11995;\nUPDATE t2 SET b=22471 WHERE a=11996;\nUPDATE t2 SET b=49335 WHERE a=11997;\nUPDATE t2 SET b=81024 WHERE a=11998;\nUPDATE t2 SET b=36670 WHERE a=11999;\nUPDATE t2 SET b=52256 WHERE a=12000;\nUPDATE t2 SET b=72354 WHERE a=12001;\nUPDATE t2 SET b=39523 WHERE a=12002;\nUPDATE t2 SET b=51210 WHERE a=12003;\nUPDATE t2 SET b=62370 WHERE a=12004;\nUPDATE t2 SET b=73917 WHERE a=12005;\nUPDATE t2 SET b=10018 WHERE a=12006;\nUPDATE t2 SET b=91976 WHERE a=12007;\nUPDATE t2 SET b=67409 WHERE a=12008;\nUPDATE t2 SET b=89104 WHERE a=12009;\nUPDATE t2 SET b=88797 WHERE a=12010;\nUPDATE t2 SET b=42465 WHERE a=12011;\nUPDATE t2 SET b=60730 WHERE a=12012;\nUPDATE t2 SET b=37501 WHERE a=12013;\nUPDATE t2 SET b=54611 WHERE a=12014;\nUPDATE t2 SET b=50272 WHERE a=12015;\nUPDATE t2 SET b=18064 WHERE a=12016;\nUPDATE t2 SET b=32250 WHERE a=12017;\nUPDATE t2 SET b=32635 WHERE a=12018;\nUPDATE t2 SET b=28842 WHERE a=12019;\nUPDATE t2 SET b=37758 WHERE a=12020;\nUPDATE t2 SET b=13689 WHERE a=12021;\nUPDATE t2 SET b=88543 WHERE a=12022;\nUPDATE t2 SET b=26957 WHERE a=12023;\nUPDATE t2 SET b=12279 WHERE a=12024;\nUPDATE t2 SET b=99898 WHERE a=12025;\nUPDATE t2 SET b=16768 WHERE a=12026;\nUPDATE t2 SET b=79134 WHERE a=12027;\nUPDATE t2 SET b=1585 WHERE a=12028;\nUPDATE t2 SET b=47374 WHERE a=12029;\nUPDATE t2 SET b=85383 WHERE a=12030;\nUPDATE t2 SET b=26961 WHERE a=12031;\nUPDATE t2 SET b=26538 WHERE a=12032;\nUPDATE t2 SET b=44748 WHERE a=12033;\nUPDATE t2 SET b=58567 WHERE a=12034;\nUPDATE t2 SET b=74328 WHERE a=12035;\nUPDATE t2 SET b=20805 WHERE a=12036;\nUPDATE t2 SET b=35177 WHERE a=12037;\nUPDATE t2 SET b=91419 WHERE a=12038;\nUPDATE t2 SET b=50518 WHERE a=12039;\nUPDATE t2 SET b=18668 WHERE a=12040;\nUPDATE t2 SET b=48193 WHERE a=12041;\nUPDATE t2 SET b=25805 WHERE a=12042;\nUPDATE t2 SET b=31987 WHERE a=12043;\nUPDATE t2 SET b=28058 WHERE a=12044;\nUPDATE t2 SET b=54552 WHERE a=12045;\nUPDATE t2 SET b=68070 WHERE a=12046;\nUPDATE t2 SET b=24117 WHERE a=12047;\nUPDATE t2 SET b=70058 WHERE a=12048;\nUPDATE t2 SET b=33599 WHERE a=12049;\nUPDATE t2 SET b=36960 WHERE a=12050;\nUPDATE t2 SET b=63767 WHERE a=12051;\nUPDATE t2 SET b=95706 WHERE a=12052;\nUPDATE t2 SET b=79991 WHERE a=12053;\nUPDATE t2 SET b=61671 WHERE a=12054;\nUPDATE t2 SET b=68988 WHERE a=12055;\nUPDATE t2 SET b=80956 WHERE a=12056;\nUPDATE t2 SET b=75557 WHERE a=12057;\nUPDATE t2 SET b=18321 WHERE a=12058;\nUPDATE t2 SET b=60978 WHERE a=12059;\nUPDATE t2 SET b=91838 WHERE a=12060;\nUPDATE t2 SET b=88902 WHERE a=12061;\nUPDATE t2 SET b=91202 WHERE a=12062;\nUPDATE t2 SET b=73396 WHERE a=12063;\nUPDATE t2 SET b=44676 WHERE a=12064;\nUPDATE t2 SET b=28018 WHERE a=12065;\nUPDATE t2 SET b=34764 WHERE a=12066;\nUPDATE t2 SET b=34157 WHERE a=12067;\nUPDATE t2 SET b=57715 WHERE a=12068;\nUPDATE t2 SET b=77104 WHERE a=12069;\nUPDATE t2 SET b=61381 WHERE a=12070;\nUPDATE t2 SET b=24825 WHERE a=12071;\nUPDATE t2 SET b=3222 WHERE a=12072;\nUPDATE t2 SET b=10231 WHERE a=12073;\nUPDATE t2 SET b=30549 WHERE a=12074;\nUPDATE t2 SET b=92785 WHERE a=12075;\nUPDATE t2 SET b=56421 WHERE a=12076;\nUPDATE t2 SET b=86231 WHERE a=12077;\nUPDATE t2 SET b=16051 WHERE a=12078;\nUPDATE t2 SET b=69118 WHERE a=12079;\nUPDATE t2 SET b=26105 WHERE a=12080;\nUPDATE t2 SET b=82005 WHERE a=12081;\nUPDATE t2 SET b=10841 WHERE a=12082;\nUPDATE t2 SET b=96080 WHERE a=12083;\nUPDATE t2 SET b=36126 WHERE a=12084;\nUPDATE t2 SET b=83364 WHERE a=12085;\nUPDATE t2 SET b=74769 WHERE a=12086;\nUPDATE t2 SET b=53098 WHERE a=12087;\nUPDATE t2 SET b=62548 WHERE a=12088;\nUPDATE t2 SET b=15210 WHERE a=12089;\nUPDATE t2 SET b=29144 WHERE a=12090;\nUPDATE t2 SET b=22105 WHERE a=12091;\nUPDATE t2 SET b=82211 WHERE a=12092;\nUPDATE t2 SET b=24799 WHERE a=12093;\nUPDATE t2 SET b=95598 WHERE a=12094;\nUPDATE t2 SET b=73489 WHERE a=12095;\nUPDATE t2 SET b=81017 WHERE a=12096;\nUPDATE t2 SET b=44251 WHERE a=12097;\nUPDATE t2 SET b=37236 WHERE a=12098;\nUPDATE t2 SET b=74074 WHERE a=12099;\nUPDATE t2 SET b=87687 WHERE a=12100;\nUPDATE t2 SET b=34691 WHERE a=12101;\nUPDATE t2 SET b=76086 WHERE a=12102;\nUPDATE t2 SET b=41856 WHERE a=12103;\nUPDATE t2 SET b=790 WHERE a=12104;\nUPDATE t2 SET b=50866 WHERE a=12105;\nUPDATE t2 SET b=58694 WHERE a=12106;\nUPDATE t2 SET b=37998 WHERE a=12107;\nUPDATE t2 SET b=91655 WHERE a=12108;\nUPDATE t2 SET b=87812 WHERE a=12109;\nUPDATE t2 SET b=1976 WHERE a=12110;\nUPDATE t2 SET b=26007 WHERE a=12111;\nUPDATE t2 SET b=86471 WHERE a=12112;\nUPDATE t2 SET b=11936 WHERE a=12113;\nUPDATE t2 SET b=93468 WHERE a=12114;\nUPDATE t2 SET b=82335 WHERE a=12115;\nUPDATE t2 SET b=94542 WHERE a=12116;\nUPDATE t2 SET b=9887 WHERE a=12117;\nUPDATE t2 SET b=93697 WHERE a=12118;\nUPDATE t2 SET b=94414 WHERE a=12119;\nUPDATE t2 SET b=62284 WHERE a=12120;\nUPDATE t2 SET b=60770 WHERE a=12121;\nUPDATE t2 SET b=95046 WHERE a=12122;\nUPDATE t2 SET b=98860 WHERE a=12123;\nUPDATE t2 SET b=11814 WHERE a=12124;\nUPDATE t2 SET b=67549 WHERE a=12125;\nUPDATE t2 SET b=96276 WHERE a=12126;\nUPDATE t2 SET b=78632 WHERE a=12127;\nUPDATE t2 SET b=60996 WHERE a=12128;\nUPDATE t2 SET b=16813 WHERE a=12129;\nUPDATE t2 SET b=15806 WHERE a=12130;\nUPDATE t2 SET b=31524 WHERE a=12131;\nUPDATE t2 SET b=56525 WHERE a=12132;\nUPDATE t2 SET b=40381 WHERE a=12133;\nUPDATE t2 SET b=82597 WHERE a=12134;\nUPDATE t2 SET b=78331 WHERE a=12135;\nUPDATE t2 SET b=46598 WHERE a=12136;\nUPDATE t2 SET b=51423 WHERE a=12137;\nUPDATE t2 SET b=72679 WHERE a=12138;\nUPDATE t2 SET b=92153 WHERE a=12139;\nUPDATE t2 SET b=51662 WHERE a=12140;\nUPDATE t2 SET b=30606 WHERE a=12141;\nUPDATE t2 SET b=58874 WHERE a=12142;\nUPDATE t2 SET b=85990 WHERE a=12143;\nUPDATE t2 SET b=4782 WHERE a=12144;\nUPDATE t2 SET b=659 WHERE a=12145;\nUPDATE t2 SET b=52476 WHERE a=12146;\nUPDATE t2 SET b=46567 WHERE a=12147;\nUPDATE t2 SET b=8136 WHERE a=12148;\nUPDATE t2 SET b=62813 WHERE a=12149;\nUPDATE t2 SET b=41772 WHERE a=12150;\nUPDATE t2 SET b=25407 WHERE a=12151;\nUPDATE t2 SET b=69359 WHERE a=12152;\nUPDATE t2 SET b=21783 WHERE a=12153;\nUPDATE t2 SET b=19200 WHERE a=12154;\nUPDATE t2 SET b=41760 WHERE a=12155;\nUPDATE t2 SET b=69829 WHERE a=12156;\nUPDATE t2 SET b=86849 WHERE a=12157;\nUPDATE t2 SET b=81173 WHERE a=12158;\nUPDATE t2 SET b=92621 WHERE a=12159;\nUPDATE t2 SET b=10592 WHERE a=12160;\nUPDATE t2 SET b=96775 WHERE a=12161;\nUPDATE t2 SET b=53120 WHERE a=12162;\nUPDATE t2 SET b=3835 WHERE a=12163;\nUPDATE t2 SET b=35086 WHERE a=12164;\nUPDATE t2 SET b=69249 WHERE a=12165;\nUPDATE t2 SET b=51249 WHERE a=12166;\nUPDATE t2 SET b=78737 WHERE a=12167;\nUPDATE t2 SET b=79434 WHERE a=12168;\nUPDATE t2 SET b=75756 WHERE a=12169;\nUPDATE t2 SET b=76445 WHERE a=12170;\nUPDATE t2 SET b=14042 WHERE a=12171;\nUPDATE t2 SET b=84681 WHERE a=12172;\nUPDATE t2 SET b=93142 WHERE a=12173;\nUPDATE t2 SET b=83597 WHERE a=12174;\nUPDATE t2 SET b=43010 WHERE a=12175;\nUPDATE t2 SET b=40316 WHERE a=12176;\nUPDATE t2 SET b=66807 WHERE a=12177;\nUPDATE t2 SET b=61244 WHERE a=12178;\nUPDATE t2 SET b=51176 WHERE a=12179;\nUPDATE t2 SET b=44106 WHERE a=12180;\nUPDATE t2 SET b=8338 WHERE a=12181;\nUPDATE t2 SET b=64109 WHERE a=12182;\nUPDATE t2 SET b=13898 WHERE a=12183;\nUPDATE t2 SET b=48393 WHERE a=12184;\nUPDATE t2 SET b=39371 WHERE a=12185;\nUPDATE t2 SET b=61218 WHERE a=12186;\nUPDATE t2 SET b=97445 WHERE a=12187;\nUPDATE t2 SET b=21813 WHERE a=12188;\nUPDATE t2 SET b=56255 WHERE a=12189;\nUPDATE t2 SET b=57630 WHERE a=12190;\nUPDATE t2 SET b=70547 WHERE a=12191;\nUPDATE t2 SET b=59015 WHERE a=12192;\nUPDATE t2 SET b=56163 WHERE a=12193;\nUPDATE t2 SET b=20200 WHERE a=12194;\nUPDATE t2 SET b=88811 WHERE a=12195;\nUPDATE t2 SET b=26467 WHERE a=12196;\nUPDATE t2 SET b=18746 WHERE a=12197;\nUPDATE t2 SET b=75612 WHERE a=12198;\nUPDATE t2 SET b=48005 WHERE a=12199;\nUPDATE t2 SET b=26501 WHERE a=12200;\nUPDATE t2 SET b=58574 WHERE a=12201;\nUPDATE t2 SET b=97685 WHERE a=12202;\nUPDATE t2 SET b=12378 WHERE a=12203;\nUPDATE t2 SET b=13987 WHERE a=12204;\nUPDATE t2 SET b=41325 WHERE a=12205;\nUPDATE t2 SET b=78613 WHERE a=12206;\nUPDATE t2 SET b=37169 WHERE a=12207;\nUPDATE t2 SET b=22110 WHERE a=12208;\nUPDATE t2 SET b=83659 WHERE a=12209;\nUPDATE t2 SET b=41494 WHERE a=12210;\nUPDATE t2 SET b=57097 WHERE a=12211;\nUPDATE t2 SET b=32354 WHERE a=12212;\nUPDATE t2 SET b=35005 WHERE a=12213;\nUPDATE t2 SET b=99731 WHERE a=12214;\nUPDATE t2 SET b=35098 WHERE a=12215;\nUPDATE t2 SET b=30559 WHERE a=12216;\nUPDATE t2 SET b=77720 WHERE a=12217;\nUPDATE t2 SET b=93331 WHERE a=12218;\nUPDATE t2 SET b=35216 WHERE a=12219;\nUPDATE t2 SET b=91778 WHERE a=12220;\nUPDATE t2 SET b=36056 WHERE a=12221;\nUPDATE t2 SET b=69969 WHERE a=12222;\nUPDATE t2 SET b=15162 WHERE a=12223;\nUPDATE t2 SET b=50032 WHERE a=12224;\nUPDATE t2 SET b=36439 WHERE a=12225;\nUPDATE t2 SET b=72771 WHERE a=12226;\nUPDATE t2 SET b=34090 WHERE a=12227;\nUPDATE t2 SET b=63867 WHERE a=12228;\nUPDATE t2 SET b=48552 WHERE a=12229;\nUPDATE t2 SET b=51690 WHERE a=12230;\nUPDATE t2 SET b=94703 WHERE a=12231;\nUPDATE t2 SET b=36335 WHERE a=12232;\nUPDATE t2 SET b=72968 WHERE a=12233;\nUPDATE t2 SET b=7043 WHERE a=12234;\nUPDATE t2 SET b=52577 WHERE a=12235;\nUPDATE t2 SET b=17836 WHERE a=12236;\nUPDATE t2 SET b=80401 WHERE a=12237;\nUPDATE t2 SET b=24560 WHERE a=12238;\nUPDATE t2 SET b=7696 WHERE a=12239;\nUPDATE t2 SET b=78236 WHERE a=12240;\nUPDATE t2 SET b=65713 WHERE a=12241;\nUPDATE t2 SET b=28663 WHERE a=12242;\nUPDATE t2 SET b=7395 WHERE a=12243;\nUPDATE t2 SET b=49655 WHERE a=12244;\nUPDATE t2 SET b=9979 WHERE a=12245;\nUPDATE t2 SET b=51661 WHERE a=12246;\nUPDATE t2 SET b=19209 WHERE a=12247;\nUPDATE t2 SET b=36470 WHERE a=12248;\nUPDATE t2 SET b=75982 WHERE a=12249;\nUPDATE t2 SET b=91706 WHERE a=12250;\nUPDATE t2 SET b=56695 WHERE a=12251;\nUPDATE t2 SET b=65323 WHERE a=12252;\nUPDATE t2 SET b=53228 WHERE a=12253;\nUPDATE t2 SET b=56277 WHERE a=12254;\nUPDATE t2 SET b=62014 WHERE a=12255;\nUPDATE t2 SET b=23280 WHERE a=12256;\nUPDATE t2 SET b=17654 WHERE a=12257;\nUPDATE t2 SET b=40028 WHERE a=12258;\nUPDATE t2 SET b=86365 WHERE a=12259;\nUPDATE t2 SET b=97673 WHERE a=12260;\nUPDATE t2 SET b=60137 WHERE a=12261;\nUPDATE t2 SET b=91469 WHERE a=12262;\nUPDATE t2 SET b=99253 WHERE a=12263;\nUPDATE t2 SET b=9161 WHERE a=12264;\nUPDATE t2 SET b=17204 WHERE a=12265;\nUPDATE t2 SET b=46998 WHERE a=12266;\nUPDATE t2 SET b=22176 WHERE a=12267;\nUPDATE t2 SET b=58430 WHERE a=12268;\nUPDATE t2 SET b=96941 WHERE a=12269;\nUPDATE t2 SET b=42722 WHERE a=12270;\nUPDATE t2 SET b=36207 WHERE a=12271;\nUPDATE t2 SET b=31046 WHERE a=12272;\nUPDATE t2 SET b=20276 WHERE a=12273;\nUPDATE t2 SET b=94296 WHERE a=12274;\nUPDATE t2 SET b=50295 WHERE a=12275;\nUPDATE t2 SET b=37184 WHERE a=12276;\nUPDATE t2 SET b=55709 WHERE a=12277;\nUPDATE t2 SET b=64891 WHERE a=12278;\nUPDATE t2 SET b=4833 WHERE a=12279;\nUPDATE t2 SET b=86213 WHERE a=12280;\nUPDATE t2 SET b=68910 WHERE a=12281;\nUPDATE t2 SET b=92271 WHERE a=12282;\nUPDATE t2 SET b=15305 WHERE a=12283;\nUPDATE t2 SET b=8219 WHERE a=12284;\nUPDATE t2 SET b=55762 WHERE a=12285;\nUPDATE t2 SET b=46418 WHERE a=12286;\nUPDATE t2 SET b=43432 WHERE a=12287;\nUPDATE t2 SET b=85465 WHERE a=12288;\nUPDATE t2 SET b=90663 WHERE a=12289;\nUPDATE t2 SET b=3824 WHERE a=12290;\nUPDATE t2 SET b=83877 WHERE a=12291;\nUPDATE t2 SET b=30093 WHERE a=12292;\nUPDATE t2 SET b=99286 WHERE a=12293;\nUPDATE t2 SET b=71420 WHERE a=12294;\nUPDATE t2 SET b=91841 WHERE a=12295;\nUPDATE t2 SET b=61753 WHERE a=12296;\nUPDATE t2 SET b=13210 WHERE a=12297;\nUPDATE t2 SET b=88922 WHERE a=12298;\nUPDATE t2 SET b=6523 WHERE a=12299;\nUPDATE t2 SET b=29921 WHERE a=12300;\nUPDATE t2 SET b=92826 WHERE a=12301;\nUPDATE t2 SET b=28274 WHERE a=12302;\nUPDATE t2 SET b=5932 WHERE a=12303;\nUPDATE t2 SET b=33103 WHERE a=12304;\nUPDATE t2 SET b=86335 WHERE a=12305;\nUPDATE t2 SET b=44959 WHERE a=12306;\nUPDATE t2 SET b=60855 WHERE a=12307;\nUPDATE t2 SET b=83573 WHERE a=12308;\nUPDATE t2 SET b=99449 WHERE a=12309;\nUPDATE t2 SET b=14190 WHERE a=12310;\nUPDATE t2 SET b=45643 WHERE a=12311;\nUPDATE t2 SET b=45508 WHERE a=12312;\nUPDATE t2 SET b=56778 WHERE a=12313;\nUPDATE t2 SET b=51882 WHERE a=12314;\nUPDATE t2 SET b=35614 WHERE a=12315;\nUPDATE t2 SET b=69820 WHERE a=12316;\nUPDATE t2 SET b=46256 WHERE a=12317;\nUPDATE t2 SET b=67015 WHERE a=12318;\nUPDATE t2 SET b=26479 WHERE a=12319;\nUPDATE t2 SET b=46467 WHERE a=12320;\nUPDATE t2 SET b=73002 WHERE a=12321;\nUPDATE t2 SET b=41627 WHERE a=12322;\nUPDATE t2 SET b=95401 WHERE a=12323;\nUPDATE t2 SET b=66003 WHERE a=12324;\nUPDATE t2 SET b=44376 WHERE a=12325;\nUPDATE t2 SET b=63315 WHERE a=12326;\nUPDATE t2 SET b=66899 WHERE a=12327;\nUPDATE t2 SET b=92630 WHERE a=12328;\nUPDATE t2 SET b=5881 WHERE a=12329;\nUPDATE t2 SET b=78175 WHERE a=12330;\nUPDATE t2 SET b=28386 WHERE a=12331;\nUPDATE t2 SET b=16860 WHERE a=12332;\nUPDATE t2 SET b=82305 WHERE a=12333;\nUPDATE t2 SET b=41933 WHERE a=12334;\nUPDATE t2 SET b=18811 WHERE a=12335;\nUPDATE t2 SET b=33353 WHERE a=12336;\nUPDATE t2 SET b=96727 WHERE a=12337;\nUPDATE t2 SET b=44637 WHERE a=12338;\nUPDATE t2 SET b=53061 WHERE a=12339;\nUPDATE t2 SET b=29836 WHERE a=12340;\nUPDATE t2 SET b=50220 WHERE a=12341;\nUPDATE t2 SET b=98382 WHERE a=12342;\nUPDATE t2 SET b=46495 WHERE a=12343;\nUPDATE t2 SET b=58030 WHERE a=12344;\nUPDATE t2 SET b=35826 WHERE a=12345;\nUPDATE t2 SET b=90637 WHERE a=12346;\nUPDATE t2 SET b=47496 WHERE a=12347;\nUPDATE t2 SET b=83311 WHERE a=12348;\nUPDATE t2 SET b=17407 WHERE a=12349;\nUPDATE t2 SET b=31625 WHERE a=12350;\nUPDATE t2 SET b=41813 WHERE a=12351;\nUPDATE t2 SET b=85056 WHERE a=12352;\nUPDATE t2 SET b=53301 WHERE a=12353;\nUPDATE t2 SET b=54122 WHERE a=12354;\nUPDATE t2 SET b=82599 WHERE a=12355;\nUPDATE t2 SET b=28902 WHERE a=12356;\nUPDATE t2 SET b=2917 WHERE a=12357;\nUPDATE t2 SET b=22115 WHERE a=12358;\nUPDATE t2 SET b=20151 WHERE a=12359;\nUPDATE t2 SET b=81001 WHERE a=12360;\nUPDATE t2 SET b=84104 WHERE a=12361;\nUPDATE t2 SET b=12280 WHERE a=12362;\nUPDATE t2 SET b=7948 WHERE a=12363;\nUPDATE t2 SET b=27110 WHERE a=12364;\nUPDATE t2 SET b=59118 WHERE a=12365;\nUPDATE t2 SET b=29608 WHERE a=12366;\nUPDATE t2 SET b=14748 WHERE a=12367;\nUPDATE t2 SET b=80181 WHERE a=12368;\nUPDATE t2 SET b=73972 WHERE a=12369;\nUPDATE t2 SET b=46840 WHERE a=12370;\nUPDATE t2 SET b=1805 WHERE a=12371;\nUPDATE t2 SET b=48431 WHERE a=12372;\nUPDATE t2 SET b=38323 WHERE a=12373;\nUPDATE t2 SET b=49577 WHERE a=12374;\nUPDATE t2 SET b=9058 WHERE a=12375;\nUPDATE t2 SET b=75182 WHERE a=12376;\nUPDATE t2 SET b=47245 WHERE a=12377;\nUPDATE t2 SET b=79105 WHERE a=12378;\nUPDATE t2 SET b=65739 WHERE a=12379;\nUPDATE t2 SET b=19728 WHERE a=12380;\nUPDATE t2 SET b=76566 WHERE a=12381;\nUPDATE t2 SET b=65946 WHERE a=12382;\nUPDATE t2 SET b=30707 WHERE a=12383;\nUPDATE t2 SET b=94611 WHERE a=12384;\nUPDATE t2 SET b=45447 WHERE a=12385;\nUPDATE t2 SET b=39787 WHERE a=12386;\nUPDATE t2 SET b=68331 WHERE a=12387;\nUPDATE t2 SET b=1460 WHERE a=12388;\nUPDATE t2 SET b=16243 WHERE a=12389;\nUPDATE t2 SET b=17534 WHERE a=12390;\nUPDATE t2 SET b=34172 WHERE a=12391;\nUPDATE t2 SET b=87835 WHERE a=12392;\nUPDATE t2 SET b=29404 WHERE a=12393;\nUPDATE t2 SET b=45899 WHERE a=12394;\nUPDATE t2 SET b=8343 WHERE a=12395;\nUPDATE t2 SET b=39877 WHERE a=12396;\nUPDATE t2 SET b=84311 WHERE a=12397;\nUPDATE t2 SET b=98407 WHERE a=12398;\nUPDATE t2 SET b=19489 WHERE a=12399;\nUPDATE t2 SET b=52507 WHERE a=12400;\nUPDATE t2 SET b=25667 WHERE a=12401;\nUPDATE t2 SET b=2608 WHERE a=12402;\nUPDATE t2 SET b=62116 WHERE a=12403;\nUPDATE t2 SET b=98539 WHERE a=12404;\nUPDATE t2 SET b=5554 WHERE a=12405;\nUPDATE t2 SET b=95945 WHERE a=12406;\nUPDATE t2 SET b=21579 WHERE a=12407;\nUPDATE t2 SET b=8994 WHERE a=12408;\nUPDATE t2 SET b=95190 WHERE a=12409;\nUPDATE t2 SET b=11623 WHERE a=12410;\nUPDATE t2 SET b=72819 WHERE a=12411;\nUPDATE t2 SET b=69144 WHERE a=12412;\nUPDATE t2 SET b=32508 WHERE a=12413;\nUPDATE t2 SET b=98919 WHERE a=12414;\nUPDATE t2 SET b=86139 WHERE a=12415;\nUPDATE t2 SET b=6912 WHERE a=12416;\nUPDATE t2 SET b=3578 WHERE a=12417;\nUPDATE t2 SET b=16364 WHERE a=12418;\nUPDATE t2 SET b=2558 WHERE a=12419;\nUPDATE t2 SET b=74659 WHERE a=12420;\nUPDATE t2 SET b=48078 WHERE a=12421;\nUPDATE t2 SET b=51154 WHERE a=12422;\nUPDATE t2 SET b=38856 WHERE a=12423;\nUPDATE t2 SET b=26579 WHERE a=12424;\nUPDATE t2 SET b=89220 WHERE a=12425;\nUPDATE t2 SET b=4023 WHERE a=12426;\nUPDATE t2 SET b=43644 WHERE a=12427;\nUPDATE t2 SET b=42372 WHERE a=12428;\nUPDATE t2 SET b=5128 WHERE a=12429;\nUPDATE t2 SET b=61987 WHERE a=12430;\nUPDATE t2 SET b=84698 WHERE a=12431;\nUPDATE t2 SET b=17560 WHERE a=12432;\nUPDATE t2 SET b=3659 WHERE a=12433;\nUPDATE t2 SET b=61130 WHERE a=12434;\nUPDATE t2 SET b=13466 WHERE a=12435;\nUPDATE t2 SET b=51974 WHERE a=12436;\nUPDATE t2 SET b=98380 WHERE a=12437;\nUPDATE t2 SET b=1972 WHERE a=12438;\nUPDATE t2 SET b=45671 WHERE a=12439;\nUPDATE t2 SET b=68191 WHERE a=12440;\nUPDATE t2 SET b=46203 WHERE a=12441;\nUPDATE t2 SET b=66100 WHERE a=12442;\nUPDATE t2 SET b=70784 WHERE a=12443;\nUPDATE t2 SET b=8979 WHERE a=12444;\nUPDATE t2 SET b=82810 WHERE a=12445;\nUPDATE t2 SET b=69119 WHERE a=12446;\nUPDATE t2 SET b=61710 WHERE a=12447;\nUPDATE t2 SET b=96408 WHERE a=12448;\nUPDATE t2 SET b=11364 WHERE a=12449;\nUPDATE t2 SET b=83945 WHERE a=12450;\nUPDATE t2 SET b=41105 WHERE a=12451;\nUPDATE t2 SET b=12656 WHERE a=12452;\nUPDATE t2 SET b=28178 WHERE a=12453;\nUPDATE t2 SET b=60459 WHERE a=12454;\nUPDATE t2 SET b=19707 WHERE a=12455;\nUPDATE t2 SET b=2939 WHERE a=12456;\nUPDATE t2 SET b=31409 WHERE a=12457;\nUPDATE t2 SET b=51833 WHERE a=12458;\nUPDATE t2 SET b=87917 WHERE a=12459;\nUPDATE t2 SET b=6824 WHERE a=12460;\nUPDATE t2 SET b=36150 WHERE a=12461;\nUPDATE t2 SET b=73905 WHERE a=12462;\nUPDATE t2 SET b=79828 WHERE a=12463;\nUPDATE t2 SET b=97380 WHERE a=12464;\nUPDATE t2 SET b=28594 WHERE a=12465;\nUPDATE t2 SET b=40109 WHERE a=12466;\nUPDATE t2 SET b=37884 WHERE a=12467;\nUPDATE t2 SET b=27592 WHERE a=12468;\nUPDATE t2 SET b=7014 WHERE a=12469;\nUPDATE t2 SET b=17829 WHERE a=12470;\nUPDATE t2 SET b=17328 WHERE a=12471;\nUPDATE t2 SET b=43642 WHERE a=12472;\nUPDATE t2 SET b=66725 WHERE a=12473;\nUPDATE t2 SET b=76689 WHERE a=12474;\nUPDATE t2 SET b=44687 WHERE a=12475;\nUPDATE t2 SET b=37293 WHERE a=12476;\nUPDATE t2 SET b=17518 WHERE a=12477;\nUPDATE t2 SET b=23726 WHERE a=12478;\nUPDATE t2 SET b=73393 WHERE a=12479;\nUPDATE t2 SET b=45802 WHERE a=12480;\nUPDATE t2 SET b=93329 WHERE a=12481;\nUPDATE t2 SET b=18649 WHERE a=12482;\nUPDATE t2 SET b=89487 WHERE a=12483;\nUPDATE t2 SET b=70382 WHERE a=12484;\nUPDATE t2 SET b=474 WHERE a=12485;\nUPDATE t2 SET b=87033 WHERE a=12486;\nUPDATE t2 SET b=5420 WHERE a=12487;\nUPDATE t2 SET b=41810 WHERE a=12488;\nUPDATE t2 SET b=66289 WHERE a=12489;\nUPDATE t2 SET b=43332 WHERE a=12490;\nUPDATE t2 SET b=21903 WHERE a=12491;\nUPDATE t2 SET b=35186 WHERE a=12492;\nUPDATE t2 SET b=31893 WHERE a=12493;\nUPDATE t2 SET b=21135 WHERE a=12494;\nUPDATE t2 SET b=7614 WHERE a=12495;\nUPDATE t2 SET b=85571 WHERE a=12496;\nUPDATE t2 SET b=20023 WHERE a=12497;\nUPDATE t2 SET b=68907 WHERE a=12498;\nUPDATE t2 SET b=88623 WHERE a=12499;\nUPDATE t2 SET b=67718 WHERE a=12500;\nUPDATE t2 SET b=36255 WHERE a=12501;\nUPDATE t2 SET b=99916 WHERE a=12502;\nUPDATE t2 SET b=70100 WHERE a=12503;\nUPDATE t2 SET b=98011 WHERE a=12504;\nUPDATE t2 SET b=1474 WHERE a=12505;\nUPDATE t2 SET b=79648 WHERE a=12506;\nUPDATE t2 SET b=50522 WHERE a=12507;\nUPDATE t2 SET b=17354 WHERE a=12508;\nUPDATE t2 SET b=86824 WHERE a=12509;\nUPDATE t2 SET b=57606 WHERE a=12510;\nUPDATE t2 SET b=81323 WHERE a=12511;\nUPDATE t2 SET b=28383 WHERE a=12512;\nUPDATE t2 SET b=4202 WHERE a=12513;\nUPDATE t2 SET b=90337 WHERE a=12514;\nUPDATE t2 SET b=15036 WHERE a=12515;\nUPDATE t2 SET b=2531 WHERE a=12516;\nUPDATE t2 SET b=86420 WHERE a=12517;\nUPDATE t2 SET b=55239 WHERE a=12518;\nUPDATE t2 SET b=35111 WHERE a=12519;\nUPDATE t2 SET b=59332 WHERE a=12520;\nUPDATE t2 SET b=62952 WHERE a=12521;\nUPDATE t2 SET b=91492 WHERE a=12522;\nUPDATE t2 SET b=70229 WHERE a=12523;\nUPDATE t2 SET b=16511 WHERE a=12524;\nUPDATE t2 SET b=29764 WHERE a=12525;\nUPDATE t2 SET b=4895 WHERE a=12526;\nUPDATE t2 SET b=39655 WHERE a=12527;\nUPDATE t2 SET b=95528 WHERE a=12528;\nUPDATE t2 SET b=97530 WHERE a=12529;\nUPDATE t2 SET b=72030 WHERE a=12530;\nUPDATE t2 SET b=58641 WHERE a=12531;\nUPDATE t2 SET b=67716 WHERE a=12532;\nUPDATE t2 SET b=59606 WHERE a=12533;\nUPDATE t2 SET b=84120 WHERE a=12534;\nUPDATE t2 SET b=40915 WHERE a=12535;\nUPDATE t2 SET b=30057 WHERE a=12536;\nUPDATE t2 SET b=39260 WHERE a=12537;\nUPDATE t2 SET b=12816 WHERE a=12538;\nUPDATE t2 SET b=3678 WHERE a=12539;\nUPDATE t2 SET b=24690 WHERE a=12540;\nUPDATE t2 SET b=75244 WHERE a=12541;\nUPDATE t2 SET b=70174 WHERE a=12542;\nUPDATE t2 SET b=63608 WHERE a=12543;\nUPDATE t2 SET b=75781 WHERE a=12544;\nUPDATE t2 SET b=73506 WHERE a=12545;\nUPDATE t2 SET b=92682 WHERE a=12546;\nUPDATE t2 SET b=27815 WHERE a=12547;\nUPDATE t2 SET b=63706 WHERE a=12548;\nUPDATE t2 SET b=66481 WHERE a=12549;\nUPDATE t2 SET b=47458 WHERE a=12550;\nUPDATE t2 SET b=60772 WHERE a=12551;\nUPDATE t2 SET b=96097 WHERE a=12552;\nUPDATE t2 SET b=62328 WHERE a=12553;\nUPDATE t2 SET b=85170 WHERE a=12554;\nUPDATE t2 SET b=70551 WHERE a=12555;\nUPDATE t2 SET b=4680 WHERE a=12556;\nUPDATE t2 SET b=38802 WHERE a=12557;\nUPDATE t2 SET b=73472 WHERE a=12558;\nUPDATE t2 SET b=16987 WHERE a=12559;\nUPDATE t2 SET b=24254 WHERE a=12560;\nUPDATE t2 SET b=82907 WHERE a=12561;\nUPDATE t2 SET b=37983 WHERE a=12562;\nUPDATE t2 SET b=2480 WHERE a=12563;\nUPDATE t2 SET b=67515 WHERE a=12564;\nUPDATE t2 SET b=26553 WHERE a=12565;\nUPDATE t2 SET b=35587 WHERE a=12566;\nUPDATE t2 SET b=44563 WHERE a=12567;\nUPDATE t2 SET b=35143 WHERE a=12568;\nUPDATE t2 SET b=30818 WHERE a=12569;\nUPDATE t2 SET b=83599 WHERE a=12570;\nUPDATE t2 SET b=6557 WHERE a=12571;\nUPDATE t2 SET b=82241 WHERE a=12572;\nUPDATE t2 SET b=44716 WHERE a=12573;\nUPDATE t2 SET b=50316 WHERE a=12574;\nUPDATE t2 SET b=18216 WHERE a=12575;\nUPDATE t2 SET b=9706 WHERE a=12576;\nUPDATE t2 SET b=90926 WHERE a=12577;\nUPDATE t2 SET b=54896 WHERE a=12578;\nUPDATE t2 SET b=90949 WHERE a=12579;\nUPDATE t2 SET b=96502 WHERE a=12580;\nUPDATE t2 SET b=63371 WHERE a=12581;\nUPDATE t2 SET b=65307 WHERE a=12582;\nUPDATE t2 SET b=15365 WHERE a=12583;\nUPDATE t2 SET b=39370 WHERE a=12584;\nUPDATE t2 SET b=1701 WHERE a=12585;\nUPDATE t2 SET b=52378 WHERE a=12586;\nUPDATE t2 SET b=97431 WHERE a=12587;\nUPDATE t2 SET b=23070 WHERE a=12588;\nUPDATE t2 SET b=86353 WHERE a=12589;\nUPDATE t2 SET b=94208 WHERE a=12590;\nUPDATE t2 SET b=3433 WHERE a=12591;\nUPDATE t2 SET b=30822 WHERE a=12592;\nUPDATE t2 SET b=69577 WHERE a=12593;\nUPDATE t2 SET b=6604 WHERE a=12594;\nUPDATE t2 SET b=93876 WHERE a=12595;\nUPDATE t2 SET b=68922 WHERE a=12596;\nUPDATE t2 SET b=34409 WHERE a=12597;\nUPDATE t2 SET b=4977 WHERE a=12598;\nUPDATE t2 SET b=66364 WHERE a=12599;\nUPDATE t2 SET b=78589 WHERE a=12600;\nUPDATE t2 SET b=14684 WHERE a=12601;\nUPDATE t2 SET b=18927 WHERE a=12602;\nUPDATE t2 SET b=82498 WHERE a=12603;\nUPDATE t2 SET b=53728 WHERE a=12604;\nUPDATE t2 SET b=42966 WHERE a=12605;\nUPDATE t2 SET b=64473 WHERE a=12606;\nUPDATE t2 SET b=88425 WHERE a=12607;\nUPDATE t2 SET b=64085 WHERE a=12608;\nUPDATE t2 SET b=77588 WHERE a=12609;\nUPDATE t2 SET b=53406 WHERE a=12610;\nUPDATE t2 SET b=67168 WHERE a=12611;\nUPDATE t2 SET b=41655 WHERE a=12612;\nUPDATE t2 SET b=36461 WHERE a=12613;\nUPDATE t2 SET b=19805 WHERE a=12614;\nUPDATE t2 SET b=47678 WHERE a=12615;\nUPDATE t2 SET b=22918 WHERE a=12616;\nUPDATE t2 SET b=84119 WHERE a=12617;\nUPDATE t2 SET b=16602 WHERE a=12618;\nUPDATE t2 SET b=48842 WHERE a=12619;\nUPDATE t2 SET b=94052 WHERE a=12620;\nUPDATE t2 SET b=41028 WHERE a=12621;\nUPDATE t2 SET b=1337 WHERE a=12622;\nUPDATE t2 SET b=60070 WHERE a=12623;\nUPDATE t2 SET b=98955 WHERE a=12624;\nUPDATE t2 SET b=84553 WHERE a=12625;\nUPDATE t2 SET b=67258 WHERE a=12626;\nUPDATE t2 SET b=6987 WHERE a=12627;\nUPDATE t2 SET b=26715 WHERE a=12628;\nUPDATE t2 SET b=70082 WHERE a=12629;\nUPDATE t2 SET b=80913 WHERE a=12630;\nUPDATE t2 SET b=25224 WHERE a=12631;\nUPDATE t2 SET b=66116 WHERE a=12632;\nUPDATE t2 SET b=30622 WHERE a=12633;\nUPDATE t2 SET b=1627 WHERE a=12634;\nUPDATE t2 SET b=45173 WHERE a=12635;\nUPDATE t2 SET b=32839 WHERE a=12636;\nUPDATE t2 SET b=44527 WHERE a=12637;\nUPDATE t2 SET b=79672 WHERE a=12638;\nUPDATE t2 SET b=95081 WHERE a=12639;\nUPDATE t2 SET b=6171 WHERE a=12640;\nUPDATE t2 SET b=35194 WHERE a=12641;\nUPDATE t2 SET b=4056 WHERE a=12642;\nUPDATE t2 SET b=83848 WHERE a=12643;\nUPDATE t2 SET b=12202 WHERE a=12644;\nUPDATE t2 SET b=82981 WHERE a=12645;\nUPDATE t2 SET b=81394 WHERE a=12646;\nUPDATE t2 SET b=65014 WHERE a=12647;\nUPDATE t2 SET b=17607 WHERE a=12648;\nUPDATE t2 SET b=70159 WHERE a=12649;\nUPDATE t2 SET b=92412 WHERE a=12650;\nUPDATE t2 SET b=3835 WHERE a=12651;\nUPDATE t2 SET b=55770 WHERE a=12652;\nUPDATE t2 SET b=48307 WHERE a=12653;\nUPDATE t2 SET b=37177 WHERE a=12654;\nUPDATE t2 SET b=16035 WHERE a=12655;\nUPDATE t2 SET b=88292 WHERE a=12656;\nUPDATE t2 SET b=27176 WHERE a=12657;\nUPDATE t2 SET b=50364 WHERE a=12658;\nUPDATE t2 SET b=12041 WHERE a=12659;\nUPDATE t2 SET b=20171 WHERE a=12660;\nUPDATE t2 SET b=40467 WHERE a=12661;\nUPDATE t2 SET b=5618 WHERE a=12662;\nUPDATE t2 SET b=2224 WHERE a=12663;\nUPDATE t2 SET b=96047 WHERE a=12664;\nUPDATE t2 SET b=48560 WHERE a=12665;\nUPDATE t2 SET b=60274 WHERE a=12666;\nUPDATE t2 SET b=25398 WHERE a=12667;\nUPDATE t2 SET b=45693 WHERE a=12668;\nUPDATE t2 SET b=48155 WHERE a=12669;\nUPDATE t2 SET b=44245 WHERE a=12670;\nUPDATE t2 SET b=93583 WHERE a=12671;\nUPDATE t2 SET b=18845 WHERE a=12672;\nUPDATE t2 SET b=10880 WHERE a=12673;\nUPDATE t2 SET b=28304 WHERE a=12674;\nUPDATE t2 SET b=76669 WHERE a=12675;\nUPDATE t2 SET b=52701 WHERE a=12676;\nUPDATE t2 SET b=83022 WHERE a=12677;\nUPDATE t2 SET b=15397 WHERE a=12678;\nUPDATE t2 SET b=21736 WHERE a=12679;\nUPDATE t2 SET b=28522 WHERE a=12680;\nUPDATE t2 SET b=80429 WHERE a=12681;\nUPDATE t2 SET b=79416 WHERE a=12682;\nUPDATE t2 SET b=59862 WHERE a=12683;\nUPDATE t2 SET b=5153 WHERE a=12684;\nUPDATE t2 SET b=18961 WHERE a=12685;\nUPDATE t2 SET b=12301 WHERE a=12686;\nUPDATE t2 SET b=35498 WHERE a=12687;\nUPDATE t2 SET b=8922 WHERE a=12688;\nUPDATE t2 SET b=45882 WHERE a=12689;\nUPDATE t2 SET b=83192 WHERE a=12690;\nUPDATE t2 SET b=78556 WHERE a=12691;\nUPDATE t2 SET b=39241 WHERE a=12692;\nUPDATE t2 SET b=67992 WHERE a=12693;\nUPDATE t2 SET b=71257 WHERE a=12694;\nUPDATE t2 SET b=87507 WHERE a=12695;\nUPDATE t2 SET b=67198 WHERE a=12696;\nUPDATE t2 SET b=41727 WHERE a=12697;\nUPDATE t2 SET b=18331 WHERE a=12698;\nUPDATE t2 SET b=37090 WHERE a=12699;\nUPDATE t2 SET b=7177 WHERE a=12700;\nUPDATE t2 SET b=74969 WHERE a=12701;\nUPDATE t2 SET b=24028 WHERE a=12702;\nUPDATE t2 SET b=94694 WHERE a=12703;\nUPDATE t2 SET b=66296 WHERE a=12704;\nUPDATE t2 SET b=39061 WHERE a=12705;\nUPDATE t2 SET b=44630 WHERE a=12706;\nUPDATE t2 SET b=96847 WHERE a=12707;\nUPDATE t2 SET b=30560 WHERE a=12708;\nUPDATE t2 SET b=69657 WHERE a=12709;\nUPDATE t2 SET b=45131 WHERE a=12710;\nUPDATE t2 SET b=3817 WHERE a=12711;\nUPDATE t2 SET b=26610 WHERE a=12712;\nUPDATE t2 SET b=10607 WHERE a=12713;\nUPDATE t2 SET b=85175 WHERE a=12714;\nUPDATE t2 SET b=35017 WHERE a=12715;\nUPDATE t2 SET b=46685 WHERE a=12716;\nUPDATE t2 SET b=95181 WHERE a=12717;\nUPDATE t2 SET b=82638 WHERE a=12718;\nUPDATE t2 SET b=10001 WHERE a=12719;\nUPDATE t2 SET b=85420 WHERE a=12720;\nUPDATE t2 SET b=48635 WHERE a=12721;\nUPDATE t2 SET b=85126 WHERE a=12722;\nUPDATE t2 SET b=70955 WHERE a=12723;\nUPDATE t2 SET b=33047 WHERE a=12724;\nUPDATE t2 SET b=11279 WHERE a=12725;\nUPDATE t2 SET b=43006 WHERE a=12726;\nUPDATE t2 SET b=98055 WHERE a=12727;\nUPDATE t2 SET b=34935 WHERE a=12728;\nUPDATE t2 SET b=18940 WHERE a=12729;\nUPDATE t2 SET b=60367 WHERE a=12730;\nUPDATE t2 SET b=91507 WHERE a=12731;\nUPDATE t2 SET b=23412 WHERE a=12732;\nUPDATE t2 SET b=105 WHERE a=12733;\nUPDATE t2 SET b=8538 WHERE a=12734;\nUPDATE t2 SET b=61254 WHERE a=12735;\nUPDATE t2 SET b=78399 WHERE a=12736;\nUPDATE t2 SET b=54067 WHERE a=12737;\nUPDATE t2 SET b=61349 WHERE a=12738;\nUPDATE t2 SET b=41485 WHERE a=12739;\nUPDATE t2 SET b=51556 WHERE a=12740;\nUPDATE t2 SET b=5671 WHERE a=12741;\nUPDATE t2 SET b=39559 WHERE a=12742;\nUPDATE t2 SET b=80231 WHERE a=12743;\nUPDATE t2 SET b=16703 WHERE a=12744;\nUPDATE t2 SET b=23193 WHERE a=12745;\nUPDATE t2 SET b=9322 WHERE a=12746;\nUPDATE t2 SET b=51878 WHERE a=12747;\nUPDATE t2 SET b=44574 WHERE a=12748;\nUPDATE t2 SET b=43275 WHERE a=12749;\nUPDATE t2 SET b=56009 WHERE a=12750;\nUPDATE t2 SET b=71880 WHERE a=12751;\nUPDATE t2 SET b=24758 WHERE a=12752;\nUPDATE t2 SET b=34616 WHERE a=12753;\nUPDATE t2 SET b=2956 WHERE a=12754;\nUPDATE t2 SET b=73955 WHERE a=12755;\nUPDATE t2 SET b=35942 WHERE a=12756;\nUPDATE t2 SET b=48430 WHERE a=12757;\nUPDATE t2 SET b=56874 WHERE a=12758;\nUPDATE t2 SET b=62434 WHERE a=12759;\nUPDATE t2 SET b=11282 WHERE a=12760;\nUPDATE t2 SET b=52436 WHERE a=12761;\nUPDATE t2 SET b=13506 WHERE a=12762;\nUPDATE t2 SET b=31264 WHERE a=12763;\nUPDATE t2 SET b=9435 WHERE a=12764;\nUPDATE t2 SET b=74276 WHERE a=12765;\nUPDATE t2 SET b=24787 WHERE a=12766;\nUPDATE t2 SET b=60218 WHERE a=12767;\nUPDATE t2 SET b=42230 WHERE a=12768;\nUPDATE t2 SET b=82741 WHERE a=12769;\nUPDATE t2 SET b=91460 WHERE a=12770;\nUPDATE t2 SET b=7260 WHERE a=12771;\nUPDATE t2 SET b=43696 WHERE a=12772;\nUPDATE t2 SET b=88032 WHERE a=12773;\nUPDATE t2 SET b=48011 WHERE a=12774;\nUPDATE t2 SET b=13235 WHERE a=12775;\nUPDATE t2 SET b=96924 WHERE a=12776;\nUPDATE t2 SET b=86703 WHERE a=12777;\nUPDATE t2 SET b=39217 WHERE a=12778;\nUPDATE t2 SET b=50410 WHERE a=12779;\nUPDATE t2 SET b=59789 WHERE a=12780;\nUPDATE t2 SET b=36960 WHERE a=12781;\nUPDATE t2 SET b=81967 WHERE a=12782;\nUPDATE t2 SET b=49162 WHERE a=12783;\nUPDATE t2 SET b=47116 WHERE a=12784;\nUPDATE t2 SET b=88214 WHERE a=12785;\nUPDATE t2 SET b=44388 WHERE a=12786;\nUPDATE t2 SET b=39624 WHERE a=12787;\nUPDATE t2 SET b=75554 WHERE a=12788;\nUPDATE t2 SET b=12559 WHERE a=12789;\nUPDATE t2 SET b=76107 WHERE a=12790;\nUPDATE t2 SET b=44716 WHERE a=12791;\nUPDATE t2 SET b=35647 WHERE a=12792;\nUPDATE t2 SET b=53275 WHERE a=12793;\nUPDATE t2 SET b=18519 WHERE a=12794;\nUPDATE t2 SET b=45638 WHERE a=12795;\nUPDATE t2 SET b=30130 WHERE a=12796;\nUPDATE t2 SET b=45682 WHERE a=12797;\nUPDATE t2 SET b=99979 WHERE a=12798;\nUPDATE t2 SET b=40659 WHERE a=12799;\nUPDATE t2 SET b=77059 WHERE a=12800;\nUPDATE t2 SET b=36241 WHERE a=12801;\nUPDATE t2 SET b=89287 WHERE a=12802;\nUPDATE t2 SET b=37909 WHERE a=12803;\nUPDATE t2 SET b=84869 WHERE a=12804;\nUPDATE t2 SET b=99122 WHERE a=12805;\nUPDATE t2 SET b=61485 WHERE a=12806;\nUPDATE t2 SET b=21573 WHERE a=12807;\nUPDATE t2 SET b=1390 WHERE a=12808;\nUPDATE t2 SET b=51218 WHERE a=12809;\nUPDATE t2 SET b=89956 WHERE a=12810;\nUPDATE t2 SET b=31485 WHERE a=12811;\nUPDATE t2 SET b=60648 WHERE a=12812;\nUPDATE t2 SET b=32444 WHERE a=12813;\nUPDATE t2 SET b=85590 WHERE a=12814;\nUPDATE t2 SET b=97578 WHERE a=12815;\nUPDATE t2 SET b=46839 WHERE a=12816;\nUPDATE t2 SET b=84736 WHERE a=12817;\nUPDATE t2 SET b=80280 WHERE a=12818;\nUPDATE t2 SET b=82936 WHERE a=12819;\nUPDATE t2 SET b=23387 WHERE a=12820;\nUPDATE t2 SET b=37589 WHERE a=12821;\nUPDATE t2 SET b=433 WHERE a=12822;\nUPDATE t2 SET b=69015 WHERE a=12823;\nUPDATE t2 SET b=28230 WHERE a=12824;\nUPDATE t2 SET b=70134 WHERE a=12825;\nUPDATE t2 SET b=21696 WHERE a=12826;\nUPDATE t2 SET b=94862 WHERE a=12827;\nUPDATE t2 SET b=72132 WHERE a=12828;\nUPDATE t2 SET b=78644 WHERE a=12829;\nUPDATE t2 SET b=37594 WHERE a=12830;\nUPDATE t2 SET b=38950 WHERE a=12831;\nUPDATE t2 SET b=39457 WHERE a=12832;\nUPDATE t2 SET b=74350 WHERE a=12833;\nUPDATE t2 SET b=54475 WHERE a=12834;\nUPDATE t2 SET b=41707 WHERE a=12835;\nUPDATE t2 SET b=87500 WHERE a=12836;\nUPDATE t2 SET b=69695 WHERE a=12837;\nUPDATE t2 SET b=52383 WHERE a=12838;\nUPDATE t2 SET b=25756 WHERE a=12839;\nUPDATE t2 SET b=9802 WHERE a=12840;\nUPDATE t2 SET b=43 WHERE a=12841;\nUPDATE t2 SET b=7912 WHERE a=12842;\nUPDATE t2 SET b=40982 WHERE a=12843;\nUPDATE t2 SET b=23031 WHERE a=12844;\nUPDATE t2 SET b=1729 WHERE a=12845;\nUPDATE t2 SET b=89250 WHERE a=12846;\nUPDATE t2 SET b=67636 WHERE a=12847;\nUPDATE t2 SET b=91065 WHERE a=12848;\nUPDATE t2 SET b=97052 WHERE a=12849;\nUPDATE t2 SET b=77837 WHERE a=12850;\nUPDATE t2 SET b=77342 WHERE a=12851;\nUPDATE t2 SET b=24164 WHERE a=12852;\nUPDATE t2 SET b=40663 WHERE a=12853;\nUPDATE t2 SET b=77212 WHERE a=12854;\nUPDATE t2 SET b=64195 WHERE a=12855;\nUPDATE t2 SET b=89050 WHERE a=12856;\nUPDATE t2 SET b=19710 WHERE a=12857;\nUPDATE t2 SET b=54591 WHERE a=12858;\nUPDATE t2 SET b=21774 WHERE a=12859;\nUPDATE t2 SET b=54848 WHERE a=12860;\nUPDATE t2 SET b=85827 WHERE a=12861;\nUPDATE t2 SET b=51375 WHERE a=12862;\nUPDATE t2 SET b=65640 WHERE a=12863;\nUPDATE t2 SET b=57831 WHERE a=12864;\nUPDATE t2 SET b=4814 WHERE a=12865;\nUPDATE t2 SET b=76999 WHERE a=12866;\nUPDATE t2 SET b=33028 WHERE a=12867;\nUPDATE t2 SET b=77047 WHERE a=12868;\nUPDATE t2 SET b=36006 WHERE a=12869;\nUPDATE t2 SET b=11911 WHERE a=12870;\nUPDATE t2 SET b=45774 WHERE a=12871;\nUPDATE t2 SET b=10558 WHERE a=12872;\nUPDATE t2 SET b=10342 WHERE a=12873;\nUPDATE t2 SET b=815 WHERE a=12874;\nUPDATE t2 SET b=52465 WHERE a=12875;\nUPDATE t2 SET b=60874 WHERE a=12876;\nUPDATE t2 SET b=32998 WHERE a=12877;\nUPDATE t2 SET b=6416 WHERE a=12878;\nUPDATE t2 SET b=11287 WHERE a=12879;\nUPDATE t2 SET b=81143 WHERE a=12880;\nUPDATE t2 SET b=67012 WHERE a=12881;\nUPDATE t2 SET b=72490 WHERE a=12882;\nUPDATE t2 SET b=46731 WHERE a=12883;\nUPDATE t2 SET b=37731 WHERE a=12884;\nUPDATE t2 SET b=67438 WHERE a=12885;\nUPDATE t2 SET b=15398 WHERE a=12886;\nUPDATE t2 SET b=56341 WHERE a=12887;\nUPDATE t2 SET b=7280 WHERE a=12888;\nUPDATE t2 SET b=46412 WHERE a=12889;\nUPDATE t2 SET b=21762 WHERE a=12890;\nUPDATE t2 SET b=61769 WHERE a=12891;\nUPDATE t2 SET b=1859 WHERE a=12892;\nUPDATE t2 SET b=52329 WHERE a=12893;\nUPDATE t2 SET b=49753 WHERE a=12894;\nUPDATE t2 SET b=90670 WHERE a=12895;\nUPDATE t2 SET b=38468 WHERE a=12896;\nUPDATE t2 SET b=24340 WHERE a=12897;\nUPDATE t2 SET b=7024 WHERE a=12898;\nUPDATE t2 SET b=26737 WHERE a=12899;\nUPDATE t2 SET b=27843 WHERE a=12900;\nUPDATE t2 SET b=4030 WHERE a=12901;\nUPDATE t2 SET b=41845 WHERE a=12902;\nUPDATE t2 SET b=57204 WHERE a=12903;\nUPDATE t2 SET b=99427 WHERE a=12904;\nUPDATE t2 SET b=19949 WHERE a=12905;\nUPDATE t2 SET b=64463 WHERE a=12906;\nUPDATE t2 SET b=14965 WHERE a=12907;\nUPDATE t2 SET b=59323 WHERE a=12908;\nUPDATE t2 SET b=4872 WHERE a=12909;\nUPDATE t2 SET b=24366 WHERE a=12910;\nUPDATE t2 SET b=71525 WHERE a=12911;\nUPDATE t2 SET b=40280 WHERE a=12912;\nUPDATE t2 SET b=98326 WHERE a=12913;\nUPDATE t2 SET b=11229 WHERE a=12914;\nUPDATE t2 SET b=17165 WHERE a=12915;\nUPDATE t2 SET b=5427 WHERE a=12916;\nUPDATE t2 SET b=35575 WHERE a=12917;\nUPDATE t2 SET b=99386 WHERE a=12918;\nUPDATE t2 SET b=99430 WHERE a=12919;\nUPDATE t2 SET b=20447 WHERE a=12920;\nUPDATE t2 SET b=14746 WHERE a=12921;\nUPDATE t2 SET b=62857 WHERE a=12922;\nUPDATE t2 SET b=86489 WHERE a=12923;\nUPDATE t2 SET b=39840 WHERE a=12924;\nUPDATE t2 SET b=1882 WHERE a=12925;\nUPDATE t2 SET b=17919 WHERE a=12926;\nUPDATE t2 SET b=63778 WHERE a=12927;\nUPDATE t2 SET b=64609 WHERE a=12928;\nUPDATE t2 SET b=64250 WHERE a=12929;\nUPDATE t2 SET b=83621 WHERE a=12930;\nUPDATE t2 SET b=65537 WHERE a=12931;\nUPDATE t2 SET b=53599 WHERE a=12932;\nUPDATE t2 SET b=59384 WHERE a=12933;\nUPDATE t2 SET b=34104 WHERE a=12934;\nUPDATE t2 SET b=97597 WHERE a=12935;\nUPDATE t2 SET b=25854 WHERE a=12936;\nUPDATE t2 SET b=12579 WHERE a=12937;\nUPDATE t2 SET b=54635 WHERE a=12938;\nUPDATE t2 SET b=44054 WHERE a=12939;\nUPDATE t2 SET b=77641 WHERE a=12940;\nUPDATE t2 SET b=50719 WHERE a=12941;\nUPDATE t2 SET b=584 WHERE a=12942;\nUPDATE t2 SET b=46375 WHERE a=12943;\nUPDATE t2 SET b=23225 WHERE a=12944;\nUPDATE t2 SET b=80648 WHERE a=12945;\nUPDATE t2 SET b=90614 WHERE a=12946;\nUPDATE t2 SET b=53497 WHERE a=12947;\nUPDATE t2 SET b=64317 WHERE a=12948;\nUPDATE t2 SET b=72026 WHERE a=12949;\nUPDATE t2 SET b=15483 WHERE a=12950;\nUPDATE t2 SET b=10370 WHERE a=12951;\nUPDATE t2 SET b=16891 WHERE a=12952;\nUPDATE t2 SET b=31405 WHERE a=12953;\nUPDATE t2 SET b=82916 WHERE a=12954;\nUPDATE t2 SET b=63457 WHERE a=12955;\nUPDATE t2 SET b=79756 WHERE a=12956;\nUPDATE t2 SET b=89832 WHERE a=12957;\nUPDATE t2 SET b=76015 WHERE a=12958;\nUPDATE t2 SET b=79949 WHERE a=12959;\nUPDATE t2 SET b=58807 WHERE a=12960;\nUPDATE t2 SET b=74316 WHERE a=12961;\nUPDATE t2 SET b=94463 WHERE a=12962;\nUPDATE t2 SET b=18582 WHERE a=12963;\nUPDATE t2 SET b=74052 WHERE a=12964;\nUPDATE t2 SET b=68550 WHERE a=12965;\nUPDATE t2 SET b=12226 WHERE a=12966;\nUPDATE t2 SET b=14364 WHERE a=12967;\nUPDATE t2 SET b=731 WHERE a=12968;\nUPDATE t2 SET b=91187 WHERE a=12969;\nUPDATE t2 SET b=25190 WHERE a=12970;\nUPDATE t2 SET b=85507 WHERE a=12971;\nUPDATE t2 SET b=94362 WHERE a=12972;\nUPDATE t2 SET b=87555 WHERE a=12973;\nUPDATE t2 SET b=29132 WHERE a=12974;\nUPDATE t2 SET b=89686 WHERE a=12975;\nUPDATE t2 SET b=60861 WHERE a=12976;\nUPDATE t2 SET b=66674 WHERE a=12977;\nUPDATE t2 SET b=56663 WHERE a=12978;\nUPDATE t2 SET b=98267 WHERE a=12979;\nUPDATE t2 SET b=75054 WHERE a=12980;\nUPDATE t2 SET b=49539 WHERE a=12981;\nUPDATE t2 SET b=89726 WHERE a=12982;\nUPDATE t2 SET b=86771 WHERE a=12983;\nUPDATE t2 SET b=27740 WHERE a=12984;\nUPDATE t2 SET b=57618 WHERE a=12985;\nUPDATE t2 SET b=2165 WHERE a=12986;\nUPDATE t2 SET b=6267 WHERE a=12987;\nUPDATE t2 SET b=8009 WHERE a=12988;\nUPDATE t2 SET b=39779 WHERE a=12989;\nUPDATE t2 SET b=1306 WHERE a=12990;\nUPDATE t2 SET b=41719 WHERE a=12991;\nUPDATE t2 SET b=94330 WHERE a=12992;\nUPDATE t2 SET b=15315 WHERE a=12993;\nUPDATE t2 SET b=23943 WHERE a=12994;\nUPDATE t2 SET b=62736 WHERE a=12995;\nUPDATE t2 SET b=66539 WHERE a=12996;\nUPDATE t2 SET b=62134 WHERE a=12997;\nUPDATE t2 SET b=76702 WHERE a=12998;\nUPDATE t2 SET b=4766 WHERE a=12999;\nUPDATE t2 SET b=68165 WHERE a=13000;\nUPDATE t2 SET b=70962 WHERE a=13001;\nUPDATE t2 SET b=63416 WHERE a=13002;\nUPDATE t2 SET b=99570 WHERE a=13003;\nUPDATE t2 SET b=3669 WHERE a=13004;\nUPDATE t2 SET b=47609 WHERE a=13005;\nUPDATE t2 SET b=12789 WHERE a=13006;\nUPDATE t2 SET b=53861 WHERE a=13007;\nUPDATE t2 SET b=3722 WHERE a=13008;\nUPDATE t2 SET b=87735 WHERE a=13009;\nUPDATE t2 SET b=65285 WHERE a=13010;\nUPDATE t2 SET b=35745 WHERE a=13011;\nUPDATE t2 SET b=9527 WHERE a=13012;\nUPDATE t2 SET b=87368 WHERE a=13013;\nUPDATE t2 SET b=42261 WHERE a=13014;\nUPDATE t2 SET b=79199 WHERE a=13015;\nUPDATE t2 SET b=71466 WHERE a=13016;\nUPDATE t2 SET b=781 WHERE a=13017;\nUPDATE t2 SET b=36256 WHERE a=13018;\nUPDATE t2 SET b=5657 WHERE a=13019;\nUPDATE t2 SET b=87440 WHERE a=13020;\nUPDATE t2 SET b=49837 WHERE a=13021;\nUPDATE t2 SET b=4305 WHERE a=13022;\nUPDATE t2 SET b=95036 WHERE a=13023;\nUPDATE t2 SET b=66344 WHERE a=13024;\nUPDATE t2 SET b=84835 WHERE a=13025;\nUPDATE t2 SET b=37671 WHERE a=13026;\nUPDATE t2 SET b=68445 WHERE a=13027;\nUPDATE t2 SET b=36762 WHERE a=13028;\nUPDATE t2 SET b=56618 WHERE a=13029;\nUPDATE t2 SET b=35079 WHERE a=13030;\nUPDATE t2 SET b=45383 WHERE a=13031;\nUPDATE t2 SET b=70427 WHERE a=13032;\nUPDATE t2 SET b=40384 WHERE a=13033;\nUPDATE t2 SET b=11265 WHERE a=13034;\nUPDATE t2 SET b=43759 WHERE a=13035;\nUPDATE t2 SET b=92637 WHERE a=13036;\nUPDATE t2 SET b=46549 WHERE a=13037;\nUPDATE t2 SET b=54537 WHERE a=13038;\nUPDATE t2 SET b=24662 WHERE a=13039;\nUPDATE t2 SET b=39120 WHERE a=13040;\nUPDATE t2 SET b=1573 WHERE a=13041;\nUPDATE t2 SET b=30391 WHERE a=13042;\nUPDATE t2 SET b=48044 WHERE a=13043;\nUPDATE t2 SET b=14231 WHERE a=13044;\nUPDATE t2 SET b=21498 WHERE a=13045;\nUPDATE t2 SET b=95761 WHERE a=13046;\nUPDATE t2 SET b=65609 WHERE a=13047;\nUPDATE t2 SET b=85521 WHERE a=13048;\nUPDATE t2 SET b=53164 WHERE a=13049;\nUPDATE t2 SET b=79946 WHERE a=13050;\nUPDATE t2 SET b=18467 WHERE a=13051;\nUPDATE t2 SET b=99031 WHERE a=13052;\nUPDATE t2 SET b=49998 WHERE a=13053;\nUPDATE t2 SET b=35647 WHERE a=13054;\nUPDATE t2 SET b=31965 WHERE a=13055;\nUPDATE t2 SET b=95415 WHERE a=13056;\nUPDATE t2 SET b=660 WHERE a=13057;\nUPDATE t2 SET b=1711 WHERE a=13058;\nUPDATE t2 SET b=42119 WHERE a=13059;\nUPDATE t2 SET b=47628 WHERE a=13060;\nUPDATE t2 SET b=61296 WHERE a=13061;\nUPDATE t2 SET b=20495 WHERE a=13062;\nUPDATE t2 SET b=25779 WHERE a=13063;\nUPDATE t2 SET b=7307 WHERE a=13064;\nUPDATE t2 SET b=39725 WHERE a=13065;\nUPDATE t2 SET b=91814 WHERE a=13066;\nUPDATE t2 SET b=20963 WHERE a=13067;\nUPDATE t2 SET b=91586 WHERE a=13068;\nUPDATE t2 SET b=4957 WHERE a=13069;\nUPDATE t2 SET b=47688 WHERE a=13070;\nUPDATE t2 SET b=8062 WHERE a=13071;\nUPDATE t2 SET b=42251 WHERE a=13072;\nUPDATE t2 SET b=18781 WHERE a=13073;\nUPDATE t2 SET b=78259 WHERE a=13074;\nUPDATE t2 SET b=89652 WHERE a=13075;\nUPDATE t2 SET b=26780 WHERE a=13076;\nUPDATE t2 SET b=53605 WHERE a=13077;\nUPDATE t2 SET b=51194 WHERE a=13078;\nUPDATE t2 SET b=76527 WHERE a=13079;\nUPDATE t2 SET b=87202 WHERE a=13080;\nUPDATE t2 SET b=86512 WHERE a=13081;\nUPDATE t2 SET b=90225 WHERE a=13082;\nUPDATE t2 SET b=4048 WHERE a=13083;\nUPDATE t2 SET b=74776 WHERE a=13084;\nUPDATE t2 SET b=31437 WHERE a=13085;\nUPDATE t2 SET b=50401 WHERE a=13086;\nUPDATE t2 SET b=68775 WHERE a=13087;\nUPDATE t2 SET b=7137 WHERE a=13088;\nUPDATE t2 SET b=68345 WHERE a=13089;\nUPDATE t2 SET b=48513 WHERE a=13090;\nUPDATE t2 SET b=55644 WHERE a=13091;\nUPDATE t2 SET b=4478 WHERE a=13092;\nUPDATE t2 SET b=45085 WHERE a=13093;\nUPDATE t2 SET b=88082 WHERE a=13094;\nUPDATE t2 SET b=47434 WHERE a=13095;\nUPDATE t2 SET b=79701 WHERE a=13096;\nUPDATE t2 SET b=64597 WHERE a=13097;\nUPDATE t2 SET b=3695 WHERE a=13098;\nUPDATE t2 SET b=80956 WHERE a=13099;\nUPDATE t2 SET b=77393 WHERE a=13100;\nUPDATE t2 SET b=47009 WHERE a=13101;\nUPDATE t2 SET b=1090 WHERE a=13102;\nUPDATE t2 SET b=42950 WHERE a=13103;\nUPDATE t2 SET b=8074 WHERE a=13104;\nUPDATE t2 SET b=75062 WHERE a=13105;\nUPDATE t2 SET b=3091 WHERE a=13106;\nUPDATE t2 SET b=335 WHERE a=13107;\nUPDATE t2 SET b=66127 WHERE a=13108;\nUPDATE t2 SET b=83057 WHERE a=13109;\nUPDATE t2 SET b=94390 WHERE a=13110;\nUPDATE t2 SET b=66121 WHERE a=13111;\nUPDATE t2 SET b=73173 WHERE a=13112;\nUPDATE t2 SET b=697 WHERE a=13113;\nUPDATE t2 SET b=2666 WHERE a=13114;\nUPDATE t2 SET b=13455 WHERE a=13115;\nUPDATE t2 SET b=57127 WHERE a=13116;\nUPDATE t2 SET b=89950 WHERE a=13117;\nUPDATE t2 SET b=77808 WHERE a=13118;\nUPDATE t2 SET b=57433 WHERE a=13119;\nUPDATE t2 SET b=81918 WHERE a=13120;\nUPDATE t2 SET b=66307 WHERE a=13121;\nUPDATE t2 SET b=52927 WHERE a=13122;\nUPDATE t2 SET b=81884 WHERE a=13123;\nUPDATE t2 SET b=36407 WHERE a=13124;\nUPDATE t2 SET b=66677 WHERE a=13125;\nUPDATE t2 SET b=41428 WHERE a=13126;\nUPDATE t2 SET b=22418 WHERE a=13127;\nUPDATE t2 SET b=12712 WHERE a=13128;\nUPDATE t2 SET b=58248 WHERE a=13129;\nUPDATE t2 SET b=11639 WHERE a=13130;\nUPDATE t2 SET b=34383 WHERE a=13131;\nUPDATE t2 SET b=3162 WHERE a=13132;\nUPDATE t2 SET b=18723 WHERE a=13133;\nUPDATE t2 SET b=39433 WHERE a=13134;\nUPDATE t2 SET b=73473 WHERE a=13135;\nUPDATE t2 SET b=84482 WHERE a=13136;\nUPDATE t2 SET b=47776 WHERE a=13137;\nUPDATE t2 SET b=33394 WHERE a=13138;\nUPDATE t2 SET b=82344 WHERE a=13139;\nUPDATE t2 SET b=25003 WHERE a=13140;\nUPDATE t2 SET b=38275 WHERE a=13141;\nUPDATE t2 SET b=47935 WHERE a=13142;\nUPDATE t2 SET b=20391 WHERE a=13143;\nUPDATE t2 SET b=86405 WHERE a=13144;\nUPDATE t2 SET b=92722 WHERE a=13145;\nUPDATE t2 SET b=57450 WHERE a=13146;\nUPDATE t2 SET b=16784 WHERE a=13147;\nUPDATE t2 SET b=29571 WHERE a=13148;\nUPDATE t2 SET b=33139 WHERE a=13149;\nUPDATE t2 SET b=54052 WHERE a=13150;\nUPDATE t2 SET b=8012 WHERE a=13151;\nUPDATE t2 SET b=68372 WHERE a=13152;\nUPDATE t2 SET b=74815 WHERE a=13153;\nUPDATE t2 SET b=30498 WHERE a=13154;\nUPDATE t2 SET b=12289 WHERE a=13155;\nUPDATE t2 SET b=23304 WHERE a=13156;\nUPDATE t2 SET b=61534 WHERE a=13157;\nUPDATE t2 SET b=24885 WHERE a=13158;\nUPDATE t2 SET b=42503 WHERE a=13159;\nUPDATE t2 SET b=96899 WHERE a=13160;\nUPDATE t2 SET b=78419 WHERE a=13161;\nUPDATE t2 SET b=34270 WHERE a=13162;\nUPDATE t2 SET b=130 WHERE a=13163;\nUPDATE t2 SET b=84485 WHERE a=13164;\nUPDATE t2 SET b=12956 WHERE a=13165;\nUPDATE t2 SET b=33785 WHERE a=13166;\nUPDATE t2 SET b=93893 WHERE a=13167;\nUPDATE t2 SET b=86536 WHERE a=13168;\nUPDATE t2 SET b=20647 WHERE a=13169;\nUPDATE t2 SET b=26329 WHERE a=13170;\nUPDATE t2 SET b=56408 WHERE a=13171;\nUPDATE t2 SET b=42738 WHERE a=13172;\nUPDATE t2 SET b=86235 WHERE a=13173;\nUPDATE t2 SET b=44385 WHERE a=13174;\nUPDATE t2 SET b=74593 WHERE a=13175;\nUPDATE t2 SET b=45274 WHERE a=13176;\nUPDATE t2 SET b=74456 WHERE a=13177;\nUPDATE t2 SET b=95678 WHERE a=13178;\nUPDATE t2 SET b=82868 WHERE a=13179;\nUPDATE t2 SET b=15760 WHERE a=13180;\nUPDATE t2 SET b=9160 WHERE a=13181;\nUPDATE t2 SET b=29519 WHERE a=13182;\nUPDATE t2 SET b=10479 WHERE a=13183;\nUPDATE t2 SET b=73949 WHERE a=13184;\nUPDATE t2 SET b=15830 WHERE a=13185;\nUPDATE t2 SET b=57316 WHERE a=13186;\nUPDATE t2 SET b=75279 WHERE a=13187;\nUPDATE t2 SET b=77387 WHERE a=13188;\nUPDATE t2 SET b=24253 WHERE a=13189;\nUPDATE t2 SET b=61703 WHERE a=13190;\nUPDATE t2 SET b=34658 WHERE a=13191;\nUPDATE t2 SET b=95286 WHERE a=13192;\nUPDATE t2 SET b=46361 WHERE a=13193;\nUPDATE t2 SET b=81446 WHERE a=13194;\nUPDATE t2 SET b=92350 WHERE a=13195;\nUPDATE t2 SET b=24327 WHERE a=13196;\nUPDATE t2 SET b=46656 WHERE a=13197;\nUPDATE t2 SET b=84807 WHERE a=13198;\nUPDATE t2 SET b=15155 WHERE a=13199;\nUPDATE t2 SET b=51354 WHERE a=13200;\nUPDATE t2 SET b=80313 WHERE a=13201;\nUPDATE t2 SET b=71307 WHERE a=13202;\nUPDATE t2 SET b=5012 WHERE a=13203;\nUPDATE t2 SET b=95130 WHERE a=13204;\nUPDATE t2 SET b=87246 WHERE a=13205;\nUPDATE t2 SET b=31446 WHERE a=13206;\nUPDATE t2 SET b=69217 WHERE a=13207;\nUPDATE t2 SET b=53603 WHERE a=13208;\nUPDATE t2 SET b=45958 WHERE a=13209;\nUPDATE t2 SET b=91947 WHERE a=13210;\nUPDATE t2 SET b=29921 WHERE a=13211;\nUPDATE t2 SET b=14439 WHERE a=13212;\nUPDATE t2 SET b=81122 WHERE a=13213;\nUPDATE t2 SET b=92640 WHERE a=13214;\nUPDATE t2 SET b=57412 WHERE a=13215;\nUPDATE t2 SET b=59969 WHERE a=13216;\nUPDATE t2 SET b=69528 WHERE a=13217;\nUPDATE t2 SET b=60988 WHERE a=13218;\nUPDATE t2 SET b=83892 WHERE a=13219;\nUPDATE t2 SET b=89122 WHERE a=13220;\nUPDATE t2 SET b=61027 WHERE a=13221;\nUPDATE t2 SET b=37146 WHERE a=13222;\nUPDATE t2 SET b=26636 WHERE a=13223;\nUPDATE t2 SET b=9185 WHERE a=13224;\nUPDATE t2 SET b=76463 WHERE a=13225;\nUPDATE t2 SET b=16771 WHERE a=13226;\nUPDATE t2 SET b=71497 WHERE a=13227;\nUPDATE t2 SET b=62582 WHERE a=13228;\nUPDATE t2 SET b=74183 WHERE a=13229;\nUPDATE t2 SET b=48927 WHERE a=13230;\nUPDATE t2 SET b=25209 WHERE a=13231;\nUPDATE t2 SET b=88762 WHERE a=13232;\nUPDATE t2 SET b=69774 WHERE a=13233;\nUPDATE t2 SET b=73118 WHERE a=13234;\nUPDATE t2 SET b=25815 WHERE a=13235;\nUPDATE t2 SET b=52719 WHERE a=13236;\nUPDATE t2 SET b=50395 WHERE a=13237;\nUPDATE t2 SET b=4078 WHERE a=13238;\nUPDATE t2 SET b=42069 WHERE a=13239;\nUPDATE t2 SET b=41996 WHERE a=13240;\nUPDATE t2 SET b=62292 WHERE a=13241;\nUPDATE t2 SET b=50816 WHERE a=13242;\nUPDATE t2 SET b=27068 WHERE a=13243;\nUPDATE t2 SET b=58417 WHERE a=13244;\nUPDATE t2 SET b=40705 WHERE a=13245;\nUPDATE t2 SET b=67874 WHERE a=13246;\nUPDATE t2 SET b=37440 WHERE a=13247;\nUPDATE t2 SET b=78077 WHERE a=13248;\nUPDATE t2 SET b=23597 WHERE a=13249;\nUPDATE t2 SET b=63277 WHERE a=13250;\nUPDATE t2 SET b=87315 WHERE a=13251;\nUPDATE t2 SET b=26981 WHERE a=13252;\nUPDATE t2 SET b=87665 WHERE a=13253;\nUPDATE t2 SET b=80154 WHERE a=13254;\nUPDATE t2 SET b=43861 WHERE a=13255;\nUPDATE t2 SET b=85956 WHERE a=13256;\nUPDATE t2 SET b=5436 WHERE a=13257;\nUPDATE t2 SET b=13410 WHERE a=13258;\nUPDATE t2 SET b=97609 WHERE a=13259;\nUPDATE t2 SET b=1178 WHERE a=13260;\nUPDATE t2 SET b=43794 WHERE a=13261;\nUPDATE t2 SET b=99554 WHERE a=13262;\nUPDATE t2 SET b=55911 WHERE a=13263;\nUPDATE t2 SET b=35660 WHERE a=13264;\nUPDATE t2 SET b=43399 WHERE a=13265;\nUPDATE t2 SET b=87949 WHERE a=13266;\nUPDATE t2 SET b=59210 WHERE a=13267;\nUPDATE t2 SET b=85085 WHERE a=13268;\nUPDATE t2 SET b=85201 WHERE a=13269;\nUPDATE t2 SET b=91818 WHERE a=13270;\nUPDATE t2 SET b=10283 WHERE a=13271;\nUPDATE t2 SET b=57827 WHERE a=13272;\nUPDATE t2 SET b=72955 WHERE a=13273;\nUPDATE t2 SET b=54152 WHERE a=13274;\nUPDATE t2 SET b=12894 WHERE a=13275;\nUPDATE t2 SET b=22153 WHERE a=13276;\nUPDATE t2 SET b=59522 WHERE a=13277;\nUPDATE t2 SET b=84562 WHERE a=13278;\nUPDATE t2 SET b=45813 WHERE a=13279;\nUPDATE t2 SET b=91545 WHERE a=13280;\nUPDATE t2 SET b=52456 WHERE a=13281;\nUPDATE t2 SET b=20070 WHERE a=13282;\nUPDATE t2 SET b=43795 WHERE a=13283;\nUPDATE t2 SET b=59292 WHERE a=13284;\nUPDATE t2 SET b=1399 WHERE a=13285;\nUPDATE t2 SET b=31946 WHERE a=13286;\nUPDATE t2 SET b=22049 WHERE a=13287;\nUPDATE t2 SET b=72257 WHERE a=13288;\nUPDATE t2 SET b=50129 WHERE a=13289;\nUPDATE t2 SET b=65097 WHERE a=13290;\nUPDATE t2 SET b=59256 WHERE a=13291;\nUPDATE t2 SET b=16457 WHERE a=13292;\nUPDATE t2 SET b=90938 WHERE a=13293;\nUPDATE t2 SET b=16357 WHERE a=13294;\nUPDATE t2 SET b=75620 WHERE a=13295;\nUPDATE t2 SET b=65273 WHERE a=13296;\nUPDATE t2 SET b=36003 WHERE a=13297;\nUPDATE t2 SET b=56398 WHERE a=13298;\nUPDATE t2 SET b=58330 WHERE a=13299;\nUPDATE t2 SET b=1710 WHERE a=13300;\nUPDATE t2 SET b=61264 WHERE a=13301;\nUPDATE t2 SET b=91879 WHERE a=13302;\nUPDATE t2 SET b=57204 WHERE a=13303;\nUPDATE t2 SET b=62665 WHERE a=13304;\nUPDATE t2 SET b=65818 WHERE a=13305;\nUPDATE t2 SET b=72574 WHERE a=13306;\nUPDATE t2 SET b=9415 WHERE a=13307;\nUPDATE t2 SET b=76507 WHERE a=13308;\nUPDATE t2 SET b=8498 WHERE a=13309;\nUPDATE t2 SET b=97993 WHERE a=13310;\nUPDATE t2 SET b=36630 WHERE a=13311;\nUPDATE t2 SET b=18835 WHERE a=13312;\nUPDATE t2 SET b=6405 WHERE a=13313;\nUPDATE t2 SET b=14470 WHERE a=13314;\nUPDATE t2 SET b=20387 WHERE a=13315;\nUPDATE t2 SET b=33792 WHERE a=13316;\nUPDATE t2 SET b=43486 WHERE a=13317;\nUPDATE t2 SET b=10752 WHERE a=13318;\nUPDATE t2 SET b=73315 WHERE a=13319;\nUPDATE t2 SET b=95144 WHERE a=13320;\nUPDATE t2 SET b=17944 WHERE a=13321;\nUPDATE t2 SET b=66087 WHERE a=13322;\nUPDATE t2 SET b=40545 WHERE a=13323;\nUPDATE t2 SET b=18526 WHERE a=13324;\nUPDATE t2 SET b=67185 WHERE a=13325;\nUPDATE t2 SET b=34674 WHERE a=13326;\nUPDATE t2 SET b=35467 WHERE a=13327;\nUPDATE t2 SET b=69508 WHERE a=13328;\nUPDATE t2 SET b=65185 WHERE a=13329;\nUPDATE t2 SET b=25047 WHERE a=13330;\nUPDATE t2 SET b=56017 WHERE a=13331;\nUPDATE t2 SET b=58660 WHERE a=13332;\nUPDATE t2 SET b=26121 WHERE a=13333;\nUPDATE t2 SET b=13066 WHERE a=13334;\nUPDATE t2 SET b=85895 WHERE a=13335;\nUPDATE t2 SET b=34092 WHERE a=13336;\nUPDATE t2 SET b=31339 WHERE a=13337;\nUPDATE t2 SET b=23552 WHERE a=13338;\nUPDATE t2 SET b=83410 WHERE a=13339;\nUPDATE t2 SET b=26034 WHERE a=13340;\nUPDATE t2 SET b=87321 WHERE a=13341;\nUPDATE t2 SET b=13694 WHERE a=13342;\nUPDATE t2 SET b=45424 WHERE a=13343;\nUPDATE t2 SET b=58536 WHERE a=13344;\nUPDATE t2 SET b=85679 WHERE a=13345;\nUPDATE t2 SET b=54745 WHERE a=13346;\nUPDATE t2 SET b=92637 WHERE a=13347;\nUPDATE t2 SET b=25061 WHERE a=13348;\nUPDATE t2 SET b=75368 WHERE a=13349;\nUPDATE t2 SET b=61196 WHERE a=13350;\nUPDATE t2 SET b=58751 WHERE a=13351;\nUPDATE t2 SET b=36581 WHERE a=13352;\nUPDATE t2 SET b=75822 WHERE a=13353;\nUPDATE t2 SET b=7748 WHERE a=13354;\nUPDATE t2 SET b=10644 WHERE a=13355;\nUPDATE t2 SET b=21037 WHERE a=13356;\nUPDATE t2 SET b=57608 WHERE a=13357;\nUPDATE t2 SET b=71935 WHERE a=13358;\nUPDATE t2 SET b=77695 WHERE a=13359;\nUPDATE t2 SET b=21913 WHERE a=13360;\nUPDATE t2 SET b=7546 WHERE a=13361;\nUPDATE t2 SET b=63891 WHERE a=13362;\nUPDATE t2 SET b=20135 WHERE a=13363;\nUPDATE t2 SET b=59652 WHERE a=13364;\nUPDATE t2 SET b=35679 WHERE a=13365;\nUPDATE t2 SET b=5938 WHERE a=13366;\nUPDATE t2 SET b=68379 WHERE a=13367;\nUPDATE t2 SET b=5656 WHERE a=13368;\nUPDATE t2 SET b=98241 WHERE a=13369;\nUPDATE t2 SET b=80570 WHERE a=13370;\nUPDATE t2 SET b=87421 WHERE a=13371;\nUPDATE t2 SET b=99989 WHERE a=13372;\nUPDATE t2 SET b=45365 WHERE a=13373;\nUPDATE t2 SET b=1426 WHERE a=13374;\nUPDATE t2 SET b=56929 WHERE a=13375;\nUPDATE t2 SET b=28491 WHERE a=13376;\nUPDATE t2 SET b=7550 WHERE a=13377;\nUPDATE t2 SET b=94346 WHERE a=13378;\nUPDATE t2 SET b=93509 WHERE a=13379;\nUPDATE t2 SET b=87448 WHERE a=13380;\nUPDATE t2 SET b=68212 WHERE a=13381;\nUPDATE t2 SET b=59244 WHERE a=13382;\nUPDATE t2 SET b=18248 WHERE a=13383;\nUPDATE t2 SET b=7008 WHERE a=13384;\nUPDATE t2 SET b=10649 WHERE a=13385;\nUPDATE t2 SET b=37892 WHERE a=13386;\nUPDATE t2 SET b=86444 WHERE a=13387;\nUPDATE t2 SET b=30772 WHERE a=13388;\nUPDATE t2 SET b=94249 WHERE a=13389;\nUPDATE t2 SET b=95889 WHERE a=13390;\nUPDATE t2 SET b=74089 WHERE a=13391;\nUPDATE t2 SET b=79069 WHERE a=13392;\nUPDATE t2 SET b=24399 WHERE a=13393;\nUPDATE t2 SET b=20189 WHERE a=13394;\nUPDATE t2 SET b=31828 WHERE a=13395;\nUPDATE t2 SET b=84575 WHERE a=13396;\nUPDATE t2 SET b=88947 WHERE a=13397;\nUPDATE t2 SET b=26540 WHERE a=13398;\nUPDATE t2 SET b=68831 WHERE a=13399;\nUPDATE t2 SET b=59557 WHERE a=13400;\nUPDATE t2 SET b=81850 WHERE a=13401;\nUPDATE t2 SET b=8520 WHERE a=13402;\nUPDATE t2 SET b=24728 WHERE a=13403;\nUPDATE t2 SET b=59636 WHERE a=13404;\nUPDATE t2 SET b=78175 WHERE a=13405;\nUPDATE t2 SET b=72336 WHERE a=13406;\nUPDATE t2 SET b=32171 WHERE a=13407;\nUPDATE t2 SET b=93456 WHERE a=13408;\nUPDATE t2 SET b=9654 WHERE a=13409;\nUPDATE t2 SET b=60959 WHERE a=13410;\nUPDATE t2 SET b=20268 WHERE a=13411;\nUPDATE t2 SET b=54710 WHERE a=13412;\nUPDATE t2 SET b=3470 WHERE a=13413;\nUPDATE t2 SET b=84862 WHERE a=13414;\nUPDATE t2 SET b=55945 WHERE a=13415;\nUPDATE t2 SET b=15256 WHERE a=13416;\nUPDATE t2 SET b=73579 WHERE a=13417;\nUPDATE t2 SET b=76426 WHERE a=13418;\nUPDATE t2 SET b=29234 WHERE a=13419;\nUPDATE t2 SET b=42647 WHERE a=13420;\nUPDATE t2 SET b=95835 WHERE a=13421;\nUPDATE t2 SET b=8476 WHERE a=13422;\nUPDATE t2 SET b=45041 WHERE a=13423;\nUPDATE t2 SET b=50148 WHERE a=13424;\nUPDATE t2 SET b=5149 WHERE a=13425;\nUPDATE t2 SET b=36897 WHERE a=13426;\nUPDATE t2 SET b=57834 WHERE a=13427;\nUPDATE t2 SET b=17881 WHERE a=13428;\nUPDATE t2 SET b=88752 WHERE a=13429;\nUPDATE t2 SET b=75843 WHERE a=13430;\nUPDATE t2 SET b=69227 WHERE a=13431;\nUPDATE t2 SET b=19471 WHERE a=13432;\nUPDATE t2 SET b=47439 WHERE a=13433;\nUPDATE t2 SET b=85667 WHERE a=13434;\nUPDATE t2 SET b=49603 WHERE a=13435;\nUPDATE t2 SET b=30256 WHERE a=13436;\nUPDATE t2 SET b=28763 WHERE a=13437;\nUPDATE t2 SET b=32447 WHERE a=13438;\nUPDATE t2 SET b=77266 WHERE a=13439;\nUPDATE t2 SET b=19192 WHERE a=13440;\nUPDATE t2 SET b=47472 WHERE a=13441;\nUPDATE t2 SET b=86448 WHERE a=13442;\nUPDATE t2 SET b=63855 WHERE a=13443;\nUPDATE t2 SET b=72919 WHERE a=13444;\nUPDATE t2 SET b=63518 WHERE a=13445;\nUPDATE t2 SET b=79326 WHERE a=13446;\nUPDATE t2 SET b=14607 WHERE a=13447;\nUPDATE t2 SET b=10593 WHERE a=13448;\nUPDATE t2 SET b=33550 WHERE a=13449;\nUPDATE t2 SET b=82654 WHERE a=13450;\nUPDATE t2 SET b=69591 WHERE a=13451;\nUPDATE t2 SET b=11120 WHERE a=13452;\nUPDATE t2 SET b=97042 WHERE a=13453;\nUPDATE t2 SET b=14062 WHERE a=13454;\nUPDATE t2 SET b=38421 WHERE a=13455;\nUPDATE t2 SET b=67474 WHERE a=13456;\nUPDATE t2 SET b=35924 WHERE a=13457;\nUPDATE t2 SET b=11088 WHERE a=13458;\nUPDATE t2 SET b=11332 WHERE a=13459;\nUPDATE t2 SET b=4094 WHERE a=13460;\nUPDATE t2 SET b=70638 WHERE a=13461;\nUPDATE t2 SET b=58942 WHERE a=13462;\nUPDATE t2 SET b=73208 WHERE a=13463;\nUPDATE t2 SET b=22342 WHERE a=13464;\nUPDATE t2 SET b=8908 WHERE a=13465;\nUPDATE t2 SET b=10029 WHERE a=13466;\nUPDATE t2 SET b=99521 WHERE a=13467;\nUPDATE t2 SET b=85903 WHERE a=13468;\nUPDATE t2 SET b=66359 WHERE a=13469;\nUPDATE t2 SET b=97216 WHERE a=13470;\nUPDATE t2 SET b=3678 WHERE a=13471;\nUPDATE t2 SET b=72994 WHERE a=13472;\nUPDATE t2 SET b=16133 WHERE a=13473;\nUPDATE t2 SET b=61989 WHERE a=13474;\nUPDATE t2 SET b=3771 WHERE a=13475;\nUPDATE t2 SET b=87006 WHERE a=13476;\nUPDATE t2 SET b=84628 WHERE a=13477;\nUPDATE t2 SET b=51697 WHERE a=13478;\nUPDATE t2 SET b=43658 WHERE a=13479;\nUPDATE t2 SET b=73979 WHERE a=13480;\nUPDATE t2 SET b=32703 WHERE a=13481;\nUPDATE t2 SET b=24927 WHERE a=13482;\nUPDATE t2 SET b=51049 WHERE a=13483;\nUPDATE t2 SET b=73559 WHERE a=13484;\nUPDATE t2 SET b=59338 WHERE a=13485;\nUPDATE t2 SET b=98223 WHERE a=13486;\nUPDATE t2 SET b=66622 WHERE a=13487;\nUPDATE t2 SET b=34160 WHERE a=13488;\nUPDATE t2 SET b=42316 WHERE a=13489;\nUPDATE t2 SET b=60091 WHERE a=13490;\nUPDATE t2 SET b=62364 WHERE a=13491;\nUPDATE t2 SET b=94725 WHERE a=13492;\nUPDATE t2 SET b=2681 WHERE a=13493;\nUPDATE t2 SET b=69774 WHERE a=13494;\nUPDATE t2 SET b=65054 WHERE a=13495;\nUPDATE t2 SET b=60552 WHERE a=13496;\nUPDATE t2 SET b=47855 WHERE a=13497;\nUPDATE t2 SET b=3155 WHERE a=13498;\nUPDATE t2 SET b=91981 WHERE a=13499;\nUPDATE t2 SET b=19093 WHERE a=13500;\nUPDATE t2 SET b=15123 WHERE a=13501;\nUPDATE t2 SET b=27447 WHERE a=13502;\nUPDATE t2 SET b=22003 WHERE a=13503;\nUPDATE t2 SET b=26002 WHERE a=13504;\nUPDATE t2 SET b=51990 WHERE a=13505;\nUPDATE t2 SET b=12793 WHERE a=13506;\nUPDATE t2 SET b=18406 WHERE a=13507;\nUPDATE t2 SET b=35247 WHERE a=13508;\nUPDATE t2 SET b=85594 WHERE a=13509;\nUPDATE t2 SET b=75133 WHERE a=13510;\nUPDATE t2 SET b=45090 WHERE a=13511;\nUPDATE t2 SET b=91333 WHERE a=13512;\nUPDATE t2 SET b=78508 WHERE a=13513;\nUPDATE t2 SET b=62581 WHERE a=13514;\nUPDATE t2 SET b=83830 WHERE a=13515;\nUPDATE t2 SET b=43180 WHERE a=13516;\nUPDATE t2 SET b=49213 WHERE a=13517;\nUPDATE t2 SET b=13430 WHERE a=13518;\nUPDATE t2 SET b=78419 WHERE a=13519;\nUPDATE t2 SET b=4451 WHERE a=13520;\nUPDATE t2 SET b=5163 WHERE a=13521;\nUPDATE t2 SET b=18812 WHERE a=13522;\nUPDATE t2 SET b=66566 WHERE a=13523;\nUPDATE t2 SET b=27953 WHERE a=13524;\nUPDATE t2 SET b=20902 WHERE a=13525;\nUPDATE t2 SET b=4714 WHERE a=13526;\nUPDATE t2 SET b=63943 WHERE a=13527;\nUPDATE t2 SET b=91732 WHERE a=13528;\nUPDATE t2 SET b=2428 WHERE a=13529;\nUPDATE t2 SET b=42102 WHERE a=13530;\nUPDATE t2 SET b=60376 WHERE a=13531;\nUPDATE t2 SET b=50573 WHERE a=13532;\nUPDATE t2 SET b=51404 WHERE a=13533;\nUPDATE t2 SET b=63583 WHERE a=13534;\nUPDATE t2 SET b=96279 WHERE a=13535;\nUPDATE t2 SET b=67951 WHERE a=13536;\nUPDATE t2 SET b=551 WHERE a=13537;\nUPDATE t2 SET b=39541 WHERE a=13538;\nUPDATE t2 SET b=737 WHERE a=13539;\nUPDATE t2 SET b=35728 WHERE a=13540;\nUPDATE t2 SET b=4639 WHERE a=13541;\nUPDATE t2 SET b=81542 WHERE a=13542;\nUPDATE t2 SET b=18892 WHERE a=13543;\nUPDATE t2 SET b=32265 WHERE a=13544;\nUPDATE t2 SET b=54018 WHERE a=13545;\nUPDATE t2 SET b=6730 WHERE a=13546;\nUPDATE t2 SET b=36390 WHERE a=13547;\nUPDATE t2 SET b=39574 WHERE a=13548;\nUPDATE t2 SET b=50517 WHERE a=13549;\nUPDATE t2 SET b=53364 WHERE a=13550;\nUPDATE t2 SET b=16677 WHERE a=13551;\nUPDATE t2 SET b=31137 WHERE a=13552;\nUPDATE t2 SET b=31742 WHERE a=13553;\nUPDATE t2 SET b=61118 WHERE a=13554;\nUPDATE t2 SET b=36422 WHERE a=13555;\nUPDATE t2 SET b=44941 WHERE a=13556;\nUPDATE t2 SET b=52895 WHERE a=13557;\nUPDATE t2 SET b=67115 WHERE a=13558;\nUPDATE t2 SET b=10474 WHERE a=13559;\nUPDATE t2 SET b=92682 WHERE a=13560;\nUPDATE t2 SET b=40010 WHERE a=13561;\nUPDATE t2 SET b=56012 WHERE a=13562;\nUPDATE t2 SET b=41644 WHERE a=13563;\nUPDATE t2 SET b=18633 WHERE a=13564;\nUPDATE t2 SET b=62085 WHERE a=13565;\nUPDATE t2 SET b=82612 WHERE a=13566;\nUPDATE t2 SET b=95944 WHERE a=13567;\nUPDATE t2 SET b=96117 WHERE a=13568;\nUPDATE t2 SET b=63946 WHERE a=13569;\nUPDATE t2 SET b=81058 WHERE a=13570;\nUPDATE t2 SET b=28074 WHERE a=13571;\nUPDATE t2 SET b=34563 WHERE a=13572;\nUPDATE t2 SET b=81 WHERE a=13573;\nUPDATE t2 SET b=32636 WHERE a=13574;\nUPDATE t2 SET b=78591 WHERE a=13575;\nUPDATE t2 SET b=23144 WHERE a=13576;\nUPDATE t2 SET b=7896 WHERE a=13577;\nUPDATE t2 SET b=97348 WHERE a=13578;\nUPDATE t2 SET b=71710 WHERE a=13579;\nUPDATE t2 SET b=6443 WHERE a=13580;\nUPDATE t2 SET b=59548 WHERE a=13581;\nUPDATE t2 SET b=5773 WHERE a=13582;\nUPDATE t2 SET b=37971 WHERE a=13583;\nUPDATE t2 SET b=94069 WHERE a=13584;\nUPDATE t2 SET b=99177 WHERE a=13585;\nUPDATE t2 SET b=86918 WHERE a=13586;\nUPDATE t2 SET b=32412 WHERE a=13587;\nUPDATE t2 SET b=304 WHERE a=13588;\nUPDATE t2 SET b=51121 WHERE a=13589;\nUPDATE t2 SET b=3324 WHERE a=13590;\nUPDATE t2 SET b=6883 WHERE a=13591;\nUPDATE t2 SET b=33064 WHERE a=13592;\nUPDATE t2 SET b=28230 WHERE a=13593;\nUPDATE t2 SET b=13240 WHERE a=13594;\nUPDATE t2 SET b=31420 WHERE a=13595;\nUPDATE t2 SET b=70669 WHERE a=13596;\nUPDATE t2 SET b=33060 WHERE a=13597;\nUPDATE t2 SET b=99004 WHERE a=13598;\nUPDATE t2 SET b=33070 WHERE a=13599;\nUPDATE t2 SET b=65574 WHERE a=13600;\nUPDATE t2 SET b=90469 WHERE a=13601;\nUPDATE t2 SET b=73871 WHERE a=13602;\nUPDATE t2 SET b=1393 WHERE a=13603;\nUPDATE t2 SET b=87811 WHERE a=13604;\nUPDATE t2 SET b=37309 WHERE a=13605;\nUPDATE t2 SET b=70406 WHERE a=13606;\nUPDATE t2 SET b=64280 WHERE a=13607;\nUPDATE t2 SET b=82851 WHERE a=13608;\nUPDATE t2 SET b=43965 WHERE a=13609;\nUPDATE t2 SET b=26877 WHERE a=13610;\nUPDATE t2 SET b=5132 WHERE a=13611;\nUPDATE t2 SET b=74365 WHERE a=13612;\nUPDATE t2 SET b=98559 WHERE a=13613;\nUPDATE t2 SET b=58951 WHERE a=13614;\nUPDATE t2 SET b=61978 WHERE a=13615;\nUPDATE t2 SET b=7321 WHERE a=13616;\nUPDATE t2 SET b=617 WHERE a=13617;\nUPDATE t2 SET b=61718 WHERE a=13618;\nUPDATE t2 SET b=35971 WHERE a=13619;\nUPDATE t2 SET b=33181 WHERE a=13620;\nUPDATE t2 SET b=99909 WHERE a=13621;\nUPDATE t2 SET b=84861 WHERE a=13622;\nUPDATE t2 SET b=99921 WHERE a=13623;\nUPDATE t2 SET b=71669 WHERE a=13624;\nUPDATE t2 SET b=91379 WHERE a=13625;\nUPDATE t2 SET b=39892 WHERE a=13626;\nUPDATE t2 SET b=47800 WHERE a=13627;\nUPDATE t2 SET b=8810 WHERE a=13628;\nUPDATE t2 SET b=11714 WHERE a=13629;\nUPDATE t2 SET b=15148 WHERE a=13630;\nUPDATE t2 SET b=10376 WHERE a=13631;\nUPDATE t2 SET b=95768 WHERE a=13632;\nUPDATE t2 SET b=47106 WHERE a=13633;\nUPDATE t2 SET b=59618 WHERE a=13634;\nUPDATE t2 SET b=11175 WHERE a=13635;\nUPDATE t2 SET b=6361 WHERE a=13636;\nUPDATE t2 SET b=78392 WHERE a=13637;\nUPDATE t2 SET b=73397 WHERE a=13638;\nUPDATE t2 SET b=48256 WHERE a=13639;\nUPDATE t2 SET b=88668 WHERE a=13640;\nUPDATE t2 SET b=21863 WHERE a=13641;\nUPDATE t2 SET b=11225 WHERE a=13642;\nUPDATE t2 SET b=57283 WHERE a=13643;\nUPDATE t2 SET b=80474 WHERE a=13644;\nUPDATE t2 SET b=42395 WHERE a=13645;\nUPDATE t2 SET b=61495 WHERE a=13646;\nUPDATE t2 SET b=16390 WHERE a=13647;\nUPDATE t2 SET b=76668 WHERE a=13648;\nUPDATE t2 SET b=13291 WHERE a=13649;\nUPDATE t2 SET b=68101 WHERE a=13650;\nUPDATE t2 SET b=20238 WHERE a=13651;\nUPDATE t2 SET b=10026 WHERE a=13652;\nUPDATE t2 SET b=53773 WHERE a=13653;\nUPDATE t2 SET b=4533 WHERE a=13654;\nUPDATE t2 SET b=25096 WHERE a=13655;\nUPDATE t2 SET b=57635 WHERE a=13656;\nUPDATE t2 SET b=38350 WHERE a=13657;\nUPDATE t2 SET b=18367 WHERE a=13658;\nUPDATE t2 SET b=50525 WHERE a=13659;\nUPDATE t2 SET b=11453 WHERE a=13660;\nUPDATE t2 SET b=88153 WHERE a=13661;\nUPDATE t2 SET b=12478 WHERE a=13662;\nUPDATE t2 SET b=3899 WHERE a=13663;\nUPDATE t2 SET b=66023 WHERE a=13664;\nUPDATE t2 SET b=9083 WHERE a=13665;\nUPDATE t2 SET b=51039 WHERE a=13666;\nUPDATE t2 SET b=37777 WHERE a=13667;\nUPDATE t2 SET b=68517 WHERE a=13668;\nUPDATE t2 SET b=44871 WHERE a=13669;\nUPDATE t2 SET b=20359 WHERE a=13670;\nUPDATE t2 SET b=20047 WHERE a=13671;\nUPDATE t2 SET b=18913 WHERE a=13672;\nUPDATE t2 SET b=62277 WHERE a=13673;\nUPDATE t2 SET b=98802 WHERE a=13674;\nUPDATE t2 SET b=48473 WHERE a=13675;\nUPDATE t2 SET b=53744 WHERE a=13676;\nUPDATE t2 SET b=77983 WHERE a=13677;\nUPDATE t2 SET b=69118 WHERE a=13678;\nUPDATE t2 SET b=69633 WHERE a=13679;\nUPDATE t2 SET b=806 WHERE a=13680;\nUPDATE t2 SET b=16955 WHERE a=13681;\nUPDATE t2 SET b=13039 WHERE a=13682;\nUPDATE t2 SET b=51976 WHERE a=13683;\nUPDATE t2 SET b=92689 WHERE a=13684;\nUPDATE t2 SET b=46837 WHERE a=13685;\nUPDATE t2 SET b=26818 WHERE a=13686;\nUPDATE t2 SET b=43159 WHERE a=13687;\nUPDATE t2 SET b=36548 WHERE a=13688;\nUPDATE t2 SET b=60364 WHERE a=13689;\nUPDATE t2 SET b=48692 WHERE a=13690;\nUPDATE t2 SET b=66602 WHERE a=13691;\nUPDATE t2 SET b=7764 WHERE a=13692;\nUPDATE t2 SET b=27251 WHERE a=13693;\nUPDATE t2 SET b=97554 WHERE a=13694;\nUPDATE t2 SET b=76667 WHERE a=13695;\nUPDATE t2 SET b=79183 WHERE a=13696;\nUPDATE t2 SET b=54983 WHERE a=13697;\nUPDATE t2 SET b=61522 WHERE a=13698;\nUPDATE t2 SET b=68034 WHERE a=13699;\nUPDATE t2 SET b=3410 WHERE a=13700;\nUPDATE t2 SET b=49751 WHERE a=13701;\nUPDATE t2 SET b=53670 WHERE a=13702;\nUPDATE t2 SET b=86282 WHERE a=13703;\nUPDATE t2 SET b=50885 WHERE a=13704;\nUPDATE t2 SET b=28890 WHERE a=13705;\nUPDATE t2 SET b=25353 WHERE a=13706;\nUPDATE t2 SET b=60415 WHERE a=13707;\nUPDATE t2 SET b=7600 WHERE a=13708;\nUPDATE t2 SET b=58698 WHERE a=13709;\nUPDATE t2 SET b=37081 WHERE a=13710;\nUPDATE t2 SET b=26860 WHERE a=13711;\nUPDATE t2 SET b=50456 WHERE a=13712;\nUPDATE t2 SET b=35826 WHERE a=13713;\nUPDATE t2 SET b=2420 WHERE a=13714;\nUPDATE t2 SET b=78779 WHERE a=13715;\nUPDATE t2 SET b=18700 WHERE a=13716;\nUPDATE t2 SET b=41843 WHERE a=13717;\nUPDATE t2 SET b=96090 WHERE a=13718;\nUPDATE t2 SET b=70622 WHERE a=13719;\nUPDATE t2 SET b=25069 WHERE a=13720;\nUPDATE t2 SET b=38553 WHERE a=13721;\nUPDATE t2 SET b=72133 WHERE a=13722;\nUPDATE t2 SET b=45808 WHERE a=13723;\nUPDATE t2 SET b=14049 WHERE a=13724;\nUPDATE t2 SET b=14774 WHERE a=13725;\nUPDATE t2 SET b=51306 WHERE a=13726;\nUPDATE t2 SET b=25112 WHERE a=13727;\nUPDATE t2 SET b=96861 WHERE a=13728;\nUPDATE t2 SET b=83968 WHERE a=13729;\nUPDATE t2 SET b=64928 WHERE a=13730;\nUPDATE t2 SET b=90537 WHERE a=13731;\nUPDATE t2 SET b=69702 WHERE a=13732;\nUPDATE t2 SET b=82501 WHERE a=13733;\nUPDATE t2 SET b=76503 WHERE a=13734;\nUPDATE t2 SET b=53272 WHERE a=13735;\nUPDATE t2 SET b=77617 WHERE a=13736;\nUPDATE t2 SET b=69089 WHERE a=13737;\nUPDATE t2 SET b=30126 WHERE a=13738;\nUPDATE t2 SET b=15559 WHERE a=13739;\nUPDATE t2 SET b=70488 WHERE a=13740;\nUPDATE t2 SET b=15639 WHERE a=13741;\nUPDATE t2 SET b=6545 WHERE a=13742;\nUPDATE t2 SET b=49647 WHERE a=13743;\nUPDATE t2 SET b=93740 WHERE a=13744;\nUPDATE t2 SET b=85057 WHERE a=13745;\nUPDATE t2 SET b=24183 WHERE a=13746;\nUPDATE t2 SET b=2110 WHERE a=13747;\nUPDATE t2 SET b=77796 WHERE a=13748;\nUPDATE t2 SET b=96309 WHERE a=13749;\nUPDATE t2 SET b=89380 WHERE a=13750;\nUPDATE t2 SET b=72218 WHERE a=13751;\nUPDATE t2 SET b=64672 WHERE a=13752;\nUPDATE t2 SET b=63836 WHERE a=13753;\nUPDATE t2 SET b=78254 WHERE a=13754;\nUPDATE t2 SET b=95301 WHERE a=13755;\nUPDATE t2 SET b=82595 WHERE a=13756;\nUPDATE t2 SET b=79897 WHERE a=13757;\nUPDATE t2 SET b=60010 WHERE a=13758;\nUPDATE t2 SET b=56993 WHERE a=13759;\nUPDATE t2 SET b=23023 WHERE a=13760;\nUPDATE t2 SET b=80588 WHERE a=13761;\nUPDATE t2 SET b=9262 WHERE a=13762;\nUPDATE t2 SET b=50048 WHERE a=13763;\nUPDATE t2 SET b=33232 WHERE a=13764;\nUPDATE t2 SET b=55090 WHERE a=13765;\nUPDATE t2 SET b=50981 WHERE a=13766;\nUPDATE t2 SET b=81172 WHERE a=13767;\nUPDATE t2 SET b=28937 WHERE a=13768;\nUPDATE t2 SET b=45512 WHERE a=13769;\nUPDATE t2 SET b=61756 WHERE a=13770;\nUPDATE t2 SET b=89102 WHERE a=13771;\nUPDATE t2 SET b=38295 WHERE a=13772;\nUPDATE t2 SET b=28987 WHERE a=13773;\nUPDATE t2 SET b=64781 WHERE a=13774;\nUPDATE t2 SET b=55548 WHERE a=13775;\nUPDATE t2 SET b=74226 WHERE a=13776;\nUPDATE t2 SET b=50341 WHERE a=13777;\nUPDATE t2 SET b=81444 WHERE a=13778;\nUPDATE t2 SET b=55139 WHERE a=13779;\nUPDATE t2 SET b=587 WHERE a=13780;\nUPDATE t2 SET b=1124 WHERE a=13781;\nUPDATE t2 SET b=85144 WHERE a=13782;\nUPDATE t2 SET b=30935 WHERE a=13783;\nUPDATE t2 SET b=21842 WHERE a=13784;\nUPDATE t2 SET b=43719 WHERE a=13785;\nUPDATE t2 SET b=94434 WHERE a=13786;\nUPDATE t2 SET b=69102 WHERE a=13787;\nUPDATE t2 SET b=97376 WHERE a=13788;\nUPDATE t2 SET b=2442 WHERE a=13789;\nUPDATE t2 SET b=99896 WHERE a=13790;\nUPDATE t2 SET b=4251 WHERE a=13791;\nUPDATE t2 SET b=11131 WHERE a=13792;\nUPDATE t2 SET b=97901 WHERE a=13793;\nUPDATE t2 SET b=2012 WHERE a=13794;\nUPDATE t2 SET b=41626 WHERE a=13795;\nUPDATE t2 SET b=36452 WHERE a=13796;\nUPDATE t2 SET b=21603 WHERE a=13797;\nUPDATE t2 SET b=44988 WHERE a=13798;\nUPDATE t2 SET b=6654 WHERE a=13799;\nUPDATE t2 SET b=93626 WHERE a=13800;\nUPDATE t2 SET b=95922 WHERE a=13801;\nUPDATE t2 SET b=4400 WHERE a=13802;\nUPDATE t2 SET b=52595 WHERE a=13803;\nUPDATE t2 SET b=82205 WHERE a=13804;\nUPDATE t2 SET b=22497 WHERE a=13805;\nUPDATE t2 SET b=30629 WHERE a=13806;\nUPDATE t2 SET b=98612 WHERE a=13807;\nUPDATE t2 SET b=20778 WHERE a=13808;\nUPDATE t2 SET b=94219 WHERE a=13809;\nUPDATE t2 SET b=93343 WHERE a=13810;\nUPDATE t2 SET b=60510 WHERE a=13811;\nUPDATE t2 SET b=58732 WHERE a=13812;\nUPDATE t2 SET b=16824 WHERE a=13813;\nUPDATE t2 SET b=34499 WHERE a=13814;\nUPDATE t2 SET b=34490 WHERE a=13815;\nUPDATE t2 SET b=93655 WHERE a=13816;\nUPDATE t2 SET b=76458 WHERE a=13817;\nUPDATE t2 SET b=65545 WHERE a=13818;\nUPDATE t2 SET b=99176 WHERE a=13819;\nUPDATE t2 SET b=54531 WHERE a=13820;\nUPDATE t2 SET b=73292 WHERE a=13821;\nUPDATE t2 SET b=48565 WHERE a=13822;\nUPDATE t2 SET b=25799 WHERE a=13823;\nUPDATE t2 SET b=44212 WHERE a=13824;\nUPDATE t2 SET b=74546 WHERE a=13825;\nUPDATE t2 SET b=38488 WHERE a=13826;\nUPDATE t2 SET b=67280 WHERE a=13827;\nUPDATE t2 SET b=75169 WHERE a=13828;\nUPDATE t2 SET b=44604 WHERE a=13829;\nUPDATE t2 SET b=58523 WHERE a=13830;\nUPDATE t2 SET b=1457 WHERE a=13831;\nUPDATE t2 SET b=71411 WHERE a=13832;\nUPDATE t2 SET b=65882 WHERE a=13833;\nUPDATE t2 SET b=26474 WHERE a=13834;\nUPDATE t2 SET b=29740 WHERE a=13835;\nUPDATE t2 SET b=48312 WHERE a=13836;\nUPDATE t2 SET b=13226 WHERE a=13837;\nUPDATE t2 SET b=18196 WHERE a=13838;\nUPDATE t2 SET b=65105 WHERE a=13839;\nUPDATE t2 SET b=95168 WHERE a=13840;\nUPDATE t2 SET b=60121 WHERE a=13841;\nUPDATE t2 SET b=41491 WHERE a=13842;\nUPDATE t2 SET b=16697 WHERE a=13843;\nUPDATE t2 SET b=35612 WHERE a=13844;\nUPDATE t2 SET b=89241 WHERE a=13845;\nUPDATE t2 SET b=77915 WHERE a=13846;\nUPDATE t2 SET b=65755 WHERE a=13847;\nUPDATE t2 SET b=56364 WHERE a=13848;\nUPDATE t2 SET b=89637 WHERE a=13849;\nUPDATE t2 SET b=61272 WHERE a=13850;\nUPDATE t2 SET b=25502 WHERE a=13851;\nUPDATE t2 SET b=54868 WHERE a=13852;\nUPDATE t2 SET b=59070 WHERE a=13853;\nUPDATE t2 SET b=6874 WHERE a=13854;\nUPDATE t2 SET b=50251 WHERE a=13855;\nUPDATE t2 SET b=17753 WHERE a=13856;\nUPDATE t2 SET b=97679 WHERE a=13857;\nUPDATE t2 SET b=67143 WHERE a=13858;\nUPDATE t2 SET b=38485 WHERE a=13859;\nUPDATE t2 SET b=5959 WHERE a=13860;\nUPDATE t2 SET b=11431 WHERE a=13861;\nUPDATE t2 SET b=55814 WHERE a=13862;\nUPDATE t2 SET b=24873 WHERE a=13863;\nUPDATE t2 SET b=40420 WHERE a=13864;\nUPDATE t2 SET b=56078 WHERE a=13865;\nUPDATE t2 SET b=12847 WHERE a=13866;\nUPDATE t2 SET b=93485 WHERE a=13867;\nUPDATE t2 SET b=3208 WHERE a=13868;\nUPDATE t2 SET b=61189 WHERE a=13869;\nUPDATE t2 SET b=2405 WHERE a=13870;\nUPDATE t2 SET b=91811 WHERE a=13871;\nUPDATE t2 SET b=94380 WHERE a=13872;\nUPDATE t2 SET b=40744 WHERE a=13873;\nUPDATE t2 SET b=22886 WHERE a=13874;\nUPDATE t2 SET b=45154 WHERE a=13875;\nUPDATE t2 SET b=44487 WHERE a=13876;\nUPDATE t2 SET b=77600 WHERE a=13877;\nUPDATE t2 SET b=54519 WHERE a=13878;\nUPDATE t2 SET b=5507 WHERE a=13879;\nUPDATE t2 SET b=73789 WHERE a=13880;\nUPDATE t2 SET b=18542 WHERE a=13881;\nUPDATE t2 SET b=60305 WHERE a=13882;\nUPDATE t2 SET b=11619 WHERE a=13883;\nUPDATE t2 SET b=3879 WHERE a=13884;\nUPDATE t2 SET b=30127 WHERE a=13885;\nUPDATE t2 SET b=4441 WHERE a=13886;\nUPDATE t2 SET b=45810 WHERE a=13887;\nUPDATE t2 SET b=51601 WHERE a=13888;\nUPDATE t2 SET b=1208 WHERE a=13889;\nUPDATE t2 SET b=5677 WHERE a=13890;\nUPDATE t2 SET b=78727 WHERE a=13891;\nUPDATE t2 SET b=73087 WHERE a=13892;\nUPDATE t2 SET b=73766 WHERE a=13893;\nUPDATE t2 SET b=63487 WHERE a=13894;\nUPDATE t2 SET b=4161 WHERE a=13895;\nUPDATE t2 SET b=87809 WHERE a=13896;\nUPDATE t2 SET b=14906 WHERE a=13897;\nUPDATE t2 SET b=43677 WHERE a=13898;\nUPDATE t2 SET b=32755 WHERE a=13899;\nUPDATE t2 SET b=43188 WHERE a=13900;\nUPDATE t2 SET b=42148 WHERE a=13901;\nUPDATE t2 SET b=98728 WHERE a=13902;\nUPDATE t2 SET b=81542 WHERE a=13903;\nUPDATE t2 SET b=95065 WHERE a=13904;\nUPDATE t2 SET b=29072 WHERE a=13905;\nUPDATE t2 SET b=99574 WHERE a=13906;\nUPDATE t2 SET b=94898 WHERE a=13907;\nUPDATE t2 SET b=72110 WHERE a=13908;\nUPDATE t2 SET b=67391 WHERE a=13909;\nUPDATE t2 SET b=60351 WHERE a=13910;\nUPDATE t2 SET b=36535 WHERE a=13911;\nUPDATE t2 SET b=30657 WHERE a=13912;\nUPDATE t2 SET b=80097 WHERE a=13913;\nUPDATE t2 SET b=73903 WHERE a=13914;\nUPDATE t2 SET b=58626 WHERE a=13915;\nUPDATE t2 SET b=40848 WHERE a=13916;\nUPDATE t2 SET b=85191 WHERE a=13917;\nUPDATE t2 SET b=52589 WHERE a=13918;\nUPDATE t2 SET b=33067 WHERE a=13919;\nUPDATE t2 SET b=96925 WHERE a=13920;\nUPDATE t2 SET b=64248 WHERE a=13921;\nUPDATE t2 SET b=17277 WHERE a=13922;\nUPDATE t2 SET b=36093 WHERE a=13923;\nUPDATE t2 SET b=25564 WHERE a=13924;\nUPDATE t2 SET b=68275 WHERE a=13925;\nUPDATE t2 SET b=78636 WHERE a=13926;\nUPDATE t2 SET b=81015 WHERE a=13927;\nUPDATE t2 SET b=62260 WHERE a=13928;\nUPDATE t2 SET b=27121 WHERE a=13929;\nUPDATE t2 SET b=86710 WHERE a=13930;\nUPDATE t2 SET b=17960 WHERE a=13931;\nUPDATE t2 SET b=4395 WHERE a=13932;\nUPDATE t2 SET b=22560 WHERE a=13933;\nUPDATE t2 SET b=75095 WHERE a=13934;\nUPDATE t2 SET b=74252 WHERE a=13935;\nUPDATE t2 SET b=28051 WHERE a=13936;\nUPDATE t2 SET b=37810 WHERE a=13937;\nUPDATE t2 SET b=3873 WHERE a=13938;\nUPDATE t2 SET b=42963 WHERE a=13939;\nUPDATE t2 SET b=56526 WHERE a=13940;\nUPDATE t2 SET b=49662 WHERE a=13941;\nUPDATE t2 SET b=89034 WHERE a=13942;\nUPDATE t2 SET b=15023 WHERE a=13943;\nUPDATE t2 SET b=62959 WHERE a=13944;\nUPDATE t2 SET b=24980 WHERE a=13945;\nUPDATE t2 SET b=92369 WHERE a=13946;\nUPDATE t2 SET b=94414 WHERE a=13947;\nUPDATE t2 SET b=89267 WHERE a=13948;\nUPDATE t2 SET b=24918 WHERE a=13949;\nUPDATE t2 SET b=87659 WHERE a=13950;\nUPDATE t2 SET b=69545 WHERE a=13951;\nUPDATE t2 SET b=22558 WHERE a=13952;\nUPDATE t2 SET b=80401 WHERE a=13953;\nUPDATE t2 SET b=65897 WHERE a=13954;\nUPDATE t2 SET b=10838 WHERE a=13955;\nUPDATE t2 SET b=88327 WHERE a=13956;\nUPDATE t2 SET b=13569 WHERE a=13957;\nUPDATE t2 SET b=29216 WHERE a=13958;\nUPDATE t2 SET b=20236 WHERE a=13959;\nUPDATE t2 SET b=9886 WHERE a=13960;\nUPDATE t2 SET b=70058 WHERE a=13961;\nUPDATE t2 SET b=33681 WHERE a=13962;\nUPDATE t2 SET b=84674 WHERE a=13963;\nUPDATE t2 SET b=45100 WHERE a=13964;\nUPDATE t2 SET b=83734 WHERE a=13965;\nUPDATE t2 SET b=79368 WHERE a=13966;\nUPDATE t2 SET b=83853 WHERE a=13967;\nUPDATE t2 SET b=5128 WHERE a=13968;\nUPDATE t2 SET b=53572 WHERE a=13969;\nUPDATE t2 SET b=79965 WHERE a=13970;\nUPDATE t2 SET b=5786 WHERE a=13971;\nUPDATE t2 SET b=29191 WHERE a=13972;\nUPDATE t2 SET b=65483 WHERE a=13973;\nUPDATE t2 SET b=13159 WHERE a=13974;\nUPDATE t2 SET b=9216 WHERE a=13975;\nUPDATE t2 SET b=12992 WHERE a=13976;\nUPDATE t2 SET b=38985 WHERE a=13977;\nUPDATE t2 SET b=45977 WHERE a=13978;\nUPDATE t2 SET b=27089 WHERE a=13979;\nUPDATE t2 SET b=4578 WHERE a=13980;\nUPDATE t2 SET b=66459 WHERE a=13981;\nUPDATE t2 SET b=77657 WHERE a=13982;\nUPDATE t2 SET b=76698 WHERE a=13983;\nUPDATE t2 SET b=33180 WHERE a=13984;\nUPDATE t2 SET b=47363 WHERE a=13985;\nUPDATE t2 SET b=12448 WHERE a=13986;\nUPDATE t2 SET b=77026 WHERE a=13987;\nUPDATE t2 SET b=71490 WHERE a=13988;\nUPDATE t2 SET b=77377 WHERE a=13989;\nUPDATE t2 SET b=22565 WHERE a=13990;\nUPDATE t2 SET b=28799 WHERE a=13991;\nUPDATE t2 SET b=16304 WHERE a=13992;\nUPDATE t2 SET b=39195 WHERE a=13993;\nUPDATE t2 SET b=99624 WHERE a=13994;\nUPDATE t2 SET b=38538 WHERE a=13995;\nUPDATE t2 SET b=66287 WHERE a=13996;\nUPDATE t2 SET b=21272 WHERE a=13997;\nUPDATE t2 SET b=35562 WHERE a=13998;\nUPDATE t2 SET b=422 WHERE a=13999;\nUPDATE t2 SET b=56304 WHERE a=14000;\nUPDATE t2 SET b=8535 WHERE a=14001;\nUPDATE t2 SET b=36260 WHERE a=14002;\nUPDATE t2 SET b=37693 WHERE a=14003;\nUPDATE t2 SET b=76997 WHERE a=14004;\nUPDATE t2 SET b=22752 WHERE a=14005;\nUPDATE t2 SET b=31610 WHERE a=14006;\nUPDATE t2 SET b=41268 WHERE a=14007;\nUPDATE t2 SET b=99809 WHERE a=14008;\nUPDATE t2 SET b=14164 WHERE a=14009;\nUPDATE t2 SET b=67026 WHERE a=14010;\nUPDATE t2 SET b=19191 WHERE a=14011;\nUPDATE t2 SET b=36903 WHERE a=14012;\nUPDATE t2 SET b=90269 WHERE a=14013;\nUPDATE t2 SET b=9260 WHERE a=14014;\nUPDATE t2 SET b=90355 WHERE a=14015;\nUPDATE t2 SET b=1454 WHERE a=14016;\nUPDATE t2 SET b=77531 WHERE a=14017;\nUPDATE t2 SET b=80538 WHERE a=14018;\nUPDATE t2 SET b=973 WHERE a=14019;\nUPDATE t2 SET b=75256 WHERE a=14020;\nUPDATE t2 SET b=8007 WHERE a=14021;\nUPDATE t2 SET b=54187 WHERE a=14022;\nUPDATE t2 SET b=55885 WHERE a=14023;\nUPDATE t2 SET b=59891 WHERE a=14024;\nUPDATE t2 SET b=23470 WHERE a=14025;\nUPDATE t2 SET b=19232 WHERE a=14026;\nUPDATE t2 SET b=94737 WHERE a=14027;\nUPDATE t2 SET b=34332 WHERE a=14028;\nUPDATE t2 SET b=68263 WHERE a=14029;\nUPDATE t2 SET b=52423 WHERE a=14030;\nUPDATE t2 SET b=34848 WHERE a=14031;\nUPDATE t2 SET b=74459 WHERE a=14032;\nUPDATE t2 SET b=71101 WHERE a=14033;\nUPDATE t2 SET b=67427 WHERE a=14034;\nUPDATE t2 SET b=34703 WHERE a=14035;\nUPDATE t2 SET b=45083 WHERE a=14036;\nUPDATE t2 SET b=30251 WHERE a=14037;\nUPDATE t2 SET b=57902 WHERE a=14038;\nUPDATE t2 SET b=67560 WHERE a=14039;\nUPDATE t2 SET b=74933 WHERE a=14040;\nUPDATE t2 SET b=49154 WHERE a=14041;\nUPDATE t2 SET b=24663 WHERE a=14042;\nUPDATE t2 SET b=91667 WHERE a=14043;\nUPDATE t2 SET b=23519 WHERE a=14044;\nUPDATE t2 SET b=85444 WHERE a=14045;\nUPDATE t2 SET b=95026 WHERE a=14046;\nUPDATE t2 SET b=97582 WHERE a=14047;\nUPDATE t2 SET b=14077 WHERE a=14048;\nUPDATE t2 SET b=14338 WHERE a=14049;\nUPDATE t2 SET b=79361 WHERE a=14050;\nUPDATE t2 SET b=82932 WHERE a=14051;\nUPDATE t2 SET b=21244 WHERE a=14052;\nUPDATE t2 SET b=21811 WHERE a=14053;\nUPDATE t2 SET b=56406 WHERE a=14054;\nUPDATE t2 SET b=15203 WHERE a=14055;\nUPDATE t2 SET b=58786 WHERE a=14056;\nUPDATE t2 SET b=85895 WHERE a=14057;\nUPDATE t2 SET b=55981 WHERE a=14058;\nUPDATE t2 SET b=75741 WHERE a=14059;\nUPDATE t2 SET b=13837 WHERE a=14060;\nUPDATE t2 SET b=64934 WHERE a=14061;\nUPDATE t2 SET b=18701 WHERE a=14062;\nUPDATE t2 SET b=32801 WHERE a=14063;\nUPDATE t2 SET b=3981 WHERE a=14064;\nUPDATE t2 SET b=53175 WHERE a=14065;\nUPDATE t2 SET b=85477 WHERE a=14066;\nUPDATE t2 SET b=82230 WHERE a=14067;\nUPDATE t2 SET b=56525 WHERE a=14068;\nUPDATE t2 SET b=36947 WHERE a=14069;\nUPDATE t2 SET b=74238 WHERE a=14070;\nUPDATE t2 SET b=85433 WHERE a=14071;\nUPDATE t2 SET b=11663 WHERE a=14072;\nUPDATE t2 SET b=90172 WHERE a=14073;\nUPDATE t2 SET b=37626 WHERE a=14074;\nUPDATE t2 SET b=67856 WHERE a=14075;\nUPDATE t2 SET b=37914 WHERE a=14076;\nUPDATE t2 SET b=34090 WHERE a=14077;\nUPDATE t2 SET b=95898 WHERE a=14078;\nUPDATE t2 SET b=27444 WHERE a=14079;\nUPDATE t2 SET b=54535 WHERE a=14080;\nUPDATE t2 SET b=76830 WHERE a=14081;\nUPDATE t2 SET b=5384 WHERE a=14082;\nUPDATE t2 SET b=4302 WHERE a=14083;\nUPDATE t2 SET b=63409 WHERE a=14084;\nUPDATE t2 SET b=86344 WHERE a=14085;\nUPDATE t2 SET b=62646 WHERE a=14086;\nUPDATE t2 SET b=2548 WHERE a=14087;\nUPDATE t2 SET b=67580 WHERE a=14088;\nUPDATE t2 SET b=99229 WHERE a=14089;\nUPDATE t2 SET b=54126 WHERE a=14090;\nUPDATE t2 SET b=21806 WHERE a=14091;\nUPDATE t2 SET b=61531 WHERE a=14092;\nUPDATE t2 SET b=94011 WHERE a=14093;\nUPDATE t2 SET b=53013 WHERE a=14094;\nUPDATE t2 SET b=53154 WHERE a=14095;\nUPDATE t2 SET b=37352 WHERE a=14096;\nUPDATE t2 SET b=18295 WHERE a=14097;\nUPDATE t2 SET b=54314 WHERE a=14098;\nUPDATE t2 SET b=53094 WHERE a=14099;\nUPDATE t2 SET b=62648 WHERE a=14100;\nUPDATE t2 SET b=76710 WHERE a=14101;\nUPDATE t2 SET b=49768 WHERE a=14102;\nUPDATE t2 SET b=8262 WHERE a=14103;\nUPDATE t2 SET b=38746 WHERE a=14104;\nUPDATE t2 SET b=11854 WHERE a=14105;\nUPDATE t2 SET b=1605 WHERE a=14106;\nUPDATE t2 SET b=66832 WHERE a=14107;\nUPDATE t2 SET b=20626 WHERE a=14108;\nUPDATE t2 SET b=3128 WHERE a=14109;\nUPDATE t2 SET b=77899 WHERE a=14110;\nUPDATE t2 SET b=83851 WHERE a=14111;\nUPDATE t2 SET b=33341 WHERE a=14112;\nUPDATE t2 SET b=21231 WHERE a=14113;\nUPDATE t2 SET b=29062 WHERE a=14114;\nUPDATE t2 SET b=13622 WHERE a=14115;\nUPDATE t2 SET b=3166 WHERE a=14116;\nUPDATE t2 SET b=5177 WHERE a=14117;\nUPDATE t2 SET b=25275 WHERE a=14118;\nUPDATE t2 SET b=29583 WHERE a=14119;\nUPDATE t2 SET b=23077 WHERE a=14120;\nUPDATE t2 SET b=54311 WHERE a=14121;\nUPDATE t2 SET b=17884 WHERE a=14122;\nUPDATE t2 SET b=50983 WHERE a=14123;\nUPDATE t2 SET b=22499 WHERE a=14124;\nUPDATE t2 SET b=95523 WHERE a=14125;\nUPDATE t2 SET b=33069 WHERE a=14126;\nUPDATE t2 SET b=16742 WHERE a=14127;\nUPDATE t2 SET b=14121 WHERE a=14128;\nUPDATE t2 SET b=77360 WHERE a=14129;\nUPDATE t2 SET b=43214 WHERE a=14130;\nUPDATE t2 SET b=39492 WHERE a=14131;\nUPDATE t2 SET b=35791 WHERE a=14132;\nUPDATE t2 SET b=51502 WHERE a=14133;\nUPDATE t2 SET b=56317 WHERE a=14134;\nUPDATE t2 SET b=30135 WHERE a=14135;\nUPDATE t2 SET b=73042 WHERE a=14136;\nUPDATE t2 SET b=85999 WHERE a=14137;\nUPDATE t2 SET b=55421 WHERE a=14138;\nUPDATE t2 SET b=93846 WHERE a=14139;\nUPDATE t2 SET b=44062 WHERE a=14140;\nUPDATE t2 SET b=21070 WHERE a=14141;\nUPDATE t2 SET b=5826 WHERE a=14142;\nUPDATE t2 SET b=82271 WHERE a=14143;\nUPDATE t2 SET b=83669 WHERE a=14144;\nUPDATE t2 SET b=80805 WHERE a=14145;\nUPDATE t2 SET b=59679 WHERE a=14146;\nUPDATE t2 SET b=63917 WHERE a=14147;\nUPDATE t2 SET b=52813 WHERE a=14148;\nUPDATE t2 SET b=30440 WHERE a=14149;\nUPDATE t2 SET b=34754 WHERE a=14150;\nUPDATE t2 SET b=37013 WHERE a=14151;\nUPDATE t2 SET b=943 WHERE a=14152;\nUPDATE t2 SET b=79187 WHERE a=14153;\nUPDATE t2 SET b=20466 WHERE a=14154;\nUPDATE t2 SET b=81081 WHERE a=14155;\nUPDATE t2 SET b=26090 WHERE a=14156;\nUPDATE t2 SET b=40370 WHERE a=14157;\nUPDATE t2 SET b=75040 WHERE a=14158;\nUPDATE t2 SET b=68193 WHERE a=14159;\nUPDATE t2 SET b=46685 WHERE a=14160;\nUPDATE t2 SET b=68576 WHERE a=14161;\nUPDATE t2 SET b=76281 WHERE a=14162;\nUPDATE t2 SET b=55879 WHERE a=14163;\nUPDATE t2 SET b=90022 WHERE a=14164;\nUPDATE t2 SET b=91374 WHERE a=14165;\nUPDATE t2 SET b=3280 WHERE a=14166;\nUPDATE t2 SET b=40828 WHERE a=14167;\nUPDATE t2 SET b=11270 WHERE a=14168;\nUPDATE t2 SET b=93564 WHERE a=14169;\nUPDATE t2 SET b=24880 WHERE a=14170;\nUPDATE t2 SET b=43694 WHERE a=14171;\nUPDATE t2 SET b=60313 WHERE a=14172;\nUPDATE t2 SET b=32863 WHERE a=14173;\nUPDATE t2 SET b=95573 WHERE a=14174;\nUPDATE t2 SET b=2314 WHERE a=14175;\nUPDATE t2 SET b=33948 WHERE a=14176;\nUPDATE t2 SET b=36246 WHERE a=14177;\nUPDATE t2 SET b=49495 WHERE a=14178;\nUPDATE t2 SET b=68127 WHERE a=14179;\nUPDATE t2 SET b=86313 WHERE a=14180;\nUPDATE t2 SET b=64590 WHERE a=14181;\nUPDATE t2 SET b=76398 WHERE a=14182;\nUPDATE t2 SET b=67110 WHERE a=14183;\nUPDATE t2 SET b=81950 WHERE a=14184;\nUPDATE t2 SET b=15290 WHERE a=14185;\nUPDATE t2 SET b=21665 WHERE a=14186;\nUPDATE t2 SET b=62043 WHERE a=14187;\nUPDATE t2 SET b=25633 WHERE a=14188;\nUPDATE t2 SET b=22742 WHERE a=14189;\nUPDATE t2 SET b=61703 WHERE a=14190;\nUPDATE t2 SET b=82029 WHERE a=14191;\nUPDATE t2 SET b=99723 WHERE a=14192;\nUPDATE t2 SET b=79902 WHERE a=14193;\nUPDATE t2 SET b=93117 WHERE a=14194;\nUPDATE t2 SET b=96334 WHERE a=14195;\nUPDATE t2 SET b=15604 WHERE a=14196;\nUPDATE t2 SET b=68209 WHERE a=14197;\nUPDATE t2 SET b=3942 WHERE a=14198;\nUPDATE t2 SET b=52552 WHERE a=14199;\nUPDATE t2 SET b=78342 WHERE a=14200;\nUPDATE t2 SET b=59615 WHERE a=14201;\nUPDATE t2 SET b=17548 WHERE a=14202;\nUPDATE t2 SET b=69095 WHERE a=14203;\nUPDATE t2 SET b=76765 WHERE a=14204;\nUPDATE t2 SET b=35259 WHERE a=14205;\nUPDATE t2 SET b=3863 WHERE a=14206;\nUPDATE t2 SET b=23645 WHERE a=14207;\nUPDATE t2 SET b=2570 WHERE a=14208;\nUPDATE t2 SET b=5981 WHERE a=14209;\nUPDATE t2 SET b=5395 WHERE a=14210;\nUPDATE t2 SET b=29526 WHERE a=14211;\nUPDATE t2 SET b=67702 WHERE a=14212;\nUPDATE t2 SET b=895 WHERE a=14213;\nUPDATE t2 SET b=67574 WHERE a=14214;\nUPDATE t2 SET b=69242 WHERE a=14215;\nUPDATE t2 SET b=45301 WHERE a=14216;\nUPDATE t2 SET b=95384 WHERE a=14217;\nUPDATE t2 SET b=98704 WHERE a=14218;\nUPDATE t2 SET b=21273 WHERE a=14219;\nUPDATE t2 SET b=53562 WHERE a=14220;\nUPDATE t2 SET b=86357 WHERE a=14221;\nUPDATE t2 SET b=47497 WHERE a=14222;\nUPDATE t2 SET b=75707 WHERE a=14223;\nUPDATE t2 SET b=32817 WHERE a=14224;\nUPDATE t2 SET b=21302 WHERE a=14225;\nUPDATE t2 SET b=41843 WHERE a=14226;\nUPDATE t2 SET b=89108 WHERE a=14227;\nUPDATE t2 SET b=36815 WHERE a=14228;\nUPDATE t2 SET b=72751 WHERE a=14229;\nUPDATE t2 SET b=47750 WHERE a=14230;\nUPDATE t2 SET b=84258 WHERE a=14231;\nUPDATE t2 SET b=24114 WHERE a=14232;\nUPDATE t2 SET b=46592 WHERE a=14233;\nUPDATE t2 SET b=69121 WHERE a=14234;\nUPDATE t2 SET b=50583 WHERE a=14235;\nUPDATE t2 SET b=77191 WHERE a=14236;\nUPDATE t2 SET b=99461 WHERE a=14237;\nUPDATE t2 SET b=79491 WHERE a=14238;\nUPDATE t2 SET b=51237 WHERE a=14239;\nUPDATE t2 SET b=90549 WHERE a=14240;\nUPDATE t2 SET b=87175 WHERE a=14241;\nUPDATE t2 SET b=90811 WHERE a=14242;\nUPDATE t2 SET b=53502 WHERE a=14243;\nUPDATE t2 SET b=16197 WHERE a=14244;\nUPDATE t2 SET b=17269 WHERE a=14245;\nUPDATE t2 SET b=94666 WHERE a=14246;\nUPDATE t2 SET b=31098 WHERE a=14247;\nUPDATE t2 SET b=10923 WHERE a=14248;\nUPDATE t2 SET b=46225 WHERE a=14249;\nUPDATE t2 SET b=50012 WHERE a=14250;\nUPDATE t2 SET b=25202 WHERE a=14251;\nUPDATE t2 SET b=38631 WHERE a=14252;\nUPDATE t2 SET b=6735 WHERE a=14253;\nUPDATE t2 SET b=91863 WHERE a=14254;\nUPDATE t2 SET b=35485 WHERE a=14255;\nUPDATE t2 SET b=22957 WHERE a=14256;\nUPDATE t2 SET b=81173 WHERE a=14257;\nUPDATE t2 SET b=57173 WHERE a=14258;\nUPDATE t2 SET b=54432 WHERE a=14259;\nUPDATE t2 SET b=19117 WHERE a=14260;\nUPDATE t2 SET b=40062 WHERE a=14261;\nUPDATE t2 SET b=61678 WHERE a=14262;\nUPDATE t2 SET b=86838 WHERE a=14263;\nUPDATE t2 SET b=92135 WHERE a=14264;\nUPDATE t2 SET b=42195 WHERE a=14265;\nUPDATE t2 SET b=80541 WHERE a=14266;\nUPDATE t2 SET b=90528 WHERE a=14267;\nUPDATE t2 SET b=39703 WHERE a=14268;\nUPDATE t2 SET b=87894 WHERE a=14269;\nUPDATE t2 SET b=23826 WHERE a=14270;\nUPDATE t2 SET b=39993 WHERE a=14271;\nUPDATE t2 SET b=44526 WHERE a=14272;\nUPDATE t2 SET b=80232 WHERE a=14273;\nUPDATE t2 SET b=25638 WHERE a=14274;\nUPDATE t2 SET b=94974 WHERE a=14275;\nUPDATE t2 SET b=19138 WHERE a=14276;\nUPDATE t2 SET b=37762 WHERE a=14277;\nUPDATE t2 SET b=64882 WHERE a=14278;\nUPDATE t2 SET b=24289 WHERE a=14279;\nUPDATE t2 SET b=17432 WHERE a=14280;\nUPDATE t2 SET b=96242 WHERE a=14281;\nUPDATE t2 SET b=25542 WHERE a=14282;\nUPDATE t2 SET b=32912 WHERE a=14283;\nUPDATE t2 SET b=96523 WHERE a=14284;\nUPDATE t2 SET b=5921 WHERE a=14285;\nUPDATE t2 SET b=50680 WHERE a=14286;\nUPDATE t2 SET b=10530 WHERE a=14287;\nUPDATE t2 SET b=34376 WHERE a=14288;\nUPDATE t2 SET b=39630 WHERE a=14289;\nUPDATE t2 SET b=40577 WHERE a=14290;\nUPDATE t2 SET b=49716 WHERE a=14291;\nUPDATE t2 SET b=81219 WHERE a=14292;\nUPDATE t2 SET b=79060 WHERE a=14293;\nUPDATE t2 SET b=21393 WHERE a=14294;\nUPDATE t2 SET b=85510 WHERE a=14295;\nUPDATE t2 SET b=86456 WHERE a=14296;\nUPDATE t2 SET b=21145 WHERE a=14297;\nUPDATE t2 SET b=26581 WHERE a=14298;\nUPDATE t2 SET b=87141 WHERE a=14299;\nUPDATE t2 SET b=54236 WHERE a=14300;\nUPDATE t2 SET b=66836 WHERE a=14301;\nUPDATE t2 SET b=50487 WHERE a=14302;\nUPDATE t2 SET b=52606 WHERE a=14303;\nUPDATE t2 SET b=19853 WHERE a=14304;\nUPDATE t2 SET b=50632 WHERE a=14305;\nUPDATE t2 SET b=72186 WHERE a=14306;\nUPDATE t2 SET b=37870 WHERE a=14307;\nUPDATE t2 SET b=70788 WHERE a=14308;\nUPDATE t2 SET b=36390 WHERE a=14309;\nUPDATE t2 SET b=4345 WHERE a=14310;\nUPDATE t2 SET b=82745 WHERE a=14311;\nUPDATE t2 SET b=68079 WHERE a=14312;\nUPDATE t2 SET b=45815 WHERE a=14313;\nUPDATE t2 SET b=20715 WHERE a=14314;\nUPDATE t2 SET b=77663 WHERE a=14315;\nUPDATE t2 SET b=32593 WHERE a=14316;\nUPDATE t2 SET b=95250 WHERE a=14317;\nUPDATE t2 SET b=75425 WHERE a=14318;\nUPDATE t2 SET b=63155 WHERE a=14319;\nUPDATE t2 SET b=35139 WHERE a=14320;\nUPDATE t2 SET b=94843 WHERE a=14321;\nUPDATE t2 SET b=649 WHERE a=14322;\nUPDATE t2 SET b=82523 WHERE a=14323;\nUPDATE t2 SET b=78515 WHERE a=14324;\nUPDATE t2 SET b=51432 WHERE a=14325;\nUPDATE t2 SET b=56550 WHERE a=14326;\nUPDATE t2 SET b=42347 WHERE a=14327;\nUPDATE t2 SET b=23635 WHERE a=14328;\nUPDATE t2 SET b=65110 WHERE a=14329;\nUPDATE t2 SET b=1172 WHERE a=14330;\nUPDATE t2 SET b=73816 WHERE a=14331;\nUPDATE t2 SET b=75344 WHERE a=14332;\nUPDATE t2 SET b=16221 WHERE a=14333;\nUPDATE t2 SET b=45054 WHERE a=14334;\nUPDATE t2 SET b=46004 WHERE a=14335;\nUPDATE t2 SET b=54180 WHERE a=14336;\nUPDATE t2 SET b=99293 WHERE a=14337;\nUPDATE t2 SET b=51093 WHERE a=14338;\nUPDATE t2 SET b=39448 WHERE a=14339;\nUPDATE t2 SET b=75402 WHERE a=14340;\nUPDATE t2 SET b=83241 WHERE a=14341;\nUPDATE t2 SET b=5186 WHERE a=14342;\nUPDATE t2 SET b=9742 WHERE a=14343;\nUPDATE t2 SET b=67926 WHERE a=14344;\nUPDATE t2 SET b=37181 WHERE a=14345;\nUPDATE t2 SET b=26672 WHERE a=14346;\nUPDATE t2 SET b=94627 WHERE a=14347;\nUPDATE t2 SET b=6343 WHERE a=14348;\nUPDATE t2 SET b=40011 WHERE a=14349;\nUPDATE t2 SET b=47424 WHERE a=14350;\nUPDATE t2 SET b=39637 WHERE a=14351;\nUPDATE t2 SET b=43811 WHERE a=14352;\nUPDATE t2 SET b=51818 WHERE a=14353;\nUPDATE t2 SET b=71690 WHERE a=14354;\nUPDATE t2 SET b=45687 WHERE a=14355;\nUPDATE t2 SET b=26617 WHERE a=14356;\nUPDATE t2 SET b=12821 WHERE a=14357;\nUPDATE t2 SET b=70912 WHERE a=14358;\nUPDATE t2 SET b=71506 WHERE a=14359;\nUPDATE t2 SET b=83574 WHERE a=14360;\nUPDATE t2 SET b=13843 WHERE a=14361;\nUPDATE t2 SET b=7205 WHERE a=14362;\nUPDATE t2 SET b=78590 WHERE a=14363;\nUPDATE t2 SET b=33761 WHERE a=14364;\nUPDATE t2 SET b=38169 WHERE a=14365;\nUPDATE t2 SET b=37311 WHERE a=14366;\nUPDATE t2 SET b=75207 WHERE a=14367;\nUPDATE t2 SET b=69494 WHERE a=14368;\nUPDATE t2 SET b=90424 WHERE a=14369;\nUPDATE t2 SET b=21928 WHERE a=14370;\nUPDATE t2 SET b=93290 WHERE a=14371;\nUPDATE t2 SET b=47049 WHERE a=14372;\nUPDATE t2 SET b=10340 WHERE a=14373;\nUPDATE t2 SET b=23800 WHERE a=14374;\nUPDATE t2 SET b=56163 WHERE a=14375;\nUPDATE t2 SET b=57527 WHERE a=14376;\nUPDATE t2 SET b=4419 WHERE a=14377;\nUPDATE t2 SET b=51234 WHERE a=14378;\nUPDATE t2 SET b=85890 WHERE a=14379;\nUPDATE t2 SET b=36065 WHERE a=14380;\nUPDATE t2 SET b=95546 WHERE a=14381;\nUPDATE t2 SET b=90373 WHERE a=14382;\nUPDATE t2 SET b=54962 WHERE a=14383;\nUPDATE t2 SET b=9005 WHERE a=14384;\nUPDATE t2 SET b=56736 WHERE a=14385;\nUPDATE t2 SET b=4437 WHERE a=14386;\nUPDATE t2 SET b=48291 WHERE a=14387;\nUPDATE t2 SET b=23569 WHERE a=14388;\nUPDATE t2 SET b=75545 WHERE a=14389;\nUPDATE t2 SET b=42070 WHERE a=14390;\nUPDATE t2 SET b=85978 WHERE a=14391;\nUPDATE t2 SET b=36915 WHERE a=14392;\nUPDATE t2 SET b=99356 WHERE a=14393;\nUPDATE t2 SET b=84424 WHERE a=14394;\nUPDATE t2 SET b=90487 WHERE a=14395;\nUPDATE t2 SET b=72037 WHERE a=14396;\nUPDATE t2 SET b=29141 WHERE a=14397;\nUPDATE t2 SET b=44211 WHERE a=14398;\nUPDATE t2 SET b=40192 WHERE a=14399;\nUPDATE t2 SET b=17031 WHERE a=14400;\nUPDATE t2 SET b=57138 WHERE a=14401;\nUPDATE t2 SET b=6942 WHERE a=14402;\nUPDATE t2 SET b=94832 WHERE a=14403;\nUPDATE t2 SET b=15223 WHERE a=14404;\nUPDATE t2 SET b=13389 WHERE a=14405;\nUPDATE t2 SET b=34431 WHERE a=14406;\nUPDATE t2 SET b=76052 WHERE a=14407;\nUPDATE t2 SET b=4354 WHERE a=14408;\nUPDATE t2 SET b=59904 WHERE a=14409;\nUPDATE t2 SET b=15756 WHERE a=14410;\nUPDATE t2 SET b=44940 WHERE a=14411;\nUPDATE t2 SET b=72080 WHERE a=14412;\nUPDATE t2 SET b=60530 WHERE a=14413;\nUPDATE t2 SET b=15753 WHERE a=14414;\nUPDATE t2 SET b=54564 WHERE a=14415;\nUPDATE t2 SET b=83183 WHERE a=14416;\nUPDATE t2 SET b=97230 WHERE a=14417;\nUPDATE t2 SET b=91576 WHERE a=14418;\nUPDATE t2 SET b=67622 WHERE a=14419;\nUPDATE t2 SET b=18896 WHERE a=14420;\nUPDATE t2 SET b=92656 WHERE a=14421;\nUPDATE t2 SET b=79537 WHERE a=14422;\nUPDATE t2 SET b=36554 WHERE a=14423;\nUPDATE t2 SET b=25432 WHERE a=14424;\nUPDATE t2 SET b=40105 WHERE a=14425;\nUPDATE t2 SET b=49225 WHERE a=14426;\nUPDATE t2 SET b=22975 WHERE a=14427;\nUPDATE t2 SET b=75193 WHERE a=14428;\nUPDATE t2 SET b=46674 WHERE a=14429;\nUPDATE t2 SET b=47243 WHERE a=14430;\nUPDATE t2 SET b=48279 WHERE a=14431;\nUPDATE t2 SET b=26746 WHERE a=14432;\nUPDATE t2 SET b=53995 WHERE a=14433;\nUPDATE t2 SET b=61625 WHERE a=14434;\nUPDATE t2 SET b=47218 WHERE a=14435;\nUPDATE t2 SET b=93230 WHERE a=14436;\nUPDATE t2 SET b=61567 WHERE a=14437;\nUPDATE t2 SET b=11688 WHERE a=14438;\nUPDATE t2 SET b=51123 WHERE a=14439;\nUPDATE t2 SET b=54921 WHERE a=14440;\nUPDATE t2 SET b=36134 WHERE a=14441;\nUPDATE t2 SET b=97758 WHERE a=14442;\nUPDATE t2 SET b=73873 WHERE a=14443;\nUPDATE t2 SET b=99382 WHERE a=14444;\nUPDATE t2 SET b=69796 WHERE a=14445;\nUPDATE t2 SET b=52396 WHERE a=14446;\nUPDATE t2 SET b=46093 WHERE a=14447;\nUPDATE t2 SET b=94927 WHERE a=14448;\nUPDATE t2 SET b=16072 WHERE a=14449;\nUPDATE t2 SET b=19009 WHERE a=14450;\nUPDATE t2 SET b=51050 WHERE a=14451;\nUPDATE t2 SET b=53570 WHERE a=14452;\nUPDATE t2 SET b=79201 WHERE a=14453;\nUPDATE t2 SET b=75367 WHERE a=14454;\nUPDATE t2 SET b=88674 WHERE a=14455;\nUPDATE t2 SET b=84430 WHERE a=14456;\nUPDATE t2 SET b=27822 WHERE a=14457;\nUPDATE t2 SET b=50653 WHERE a=14458;\nUPDATE t2 SET b=2918 WHERE a=14459;\nUPDATE t2 SET b=58511 WHERE a=14460;\nUPDATE t2 SET b=4560 WHERE a=14461;\nUPDATE t2 SET b=25436 WHERE a=14462;\nUPDATE t2 SET b=5115 WHERE a=14463;\nUPDATE t2 SET b=21623 WHERE a=14464;\nUPDATE t2 SET b=66695 WHERE a=14465;\nUPDATE t2 SET b=3142 WHERE a=14466;\nUPDATE t2 SET b=24945 WHERE a=14467;\nUPDATE t2 SET b=61176 WHERE a=14468;\nUPDATE t2 SET b=1847 WHERE a=14469;\nUPDATE t2 SET b=14462 WHERE a=14470;\nUPDATE t2 SET b=86310 WHERE a=14471;\nUPDATE t2 SET b=91021 WHERE a=14472;\nUPDATE t2 SET b=51899 WHERE a=14473;\nUPDATE t2 SET b=29445 WHERE a=14474;\nUPDATE t2 SET b=25390 WHERE a=14475;\nUPDATE t2 SET b=64782 WHERE a=14476;\nUPDATE t2 SET b=9919 WHERE a=14477;\nUPDATE t2 SET b=335 WHERE a=14478;\nUPDATE t2 SET b=47957 WHERE a=14479;\nUPDATE t2 SET b=43776 WHERE a=14480;\nUPDATE t2 SET b=48136 WHERE a=14481;\nUPDATE t2 SET b=69340 WHERE a=14482;\nUPDATE t2 SET b=55960 WHERE a=14483;\nUPDATE t2 SET b=42722 WHERE a=14484;\nUPDATE t2 SET b=12134 WHERE a=14485;\nUPDATE t2 SET b=62583 WHERE a=14486;\nUPDATE t2 SET b=27558 WHERE a=14487;\nUPDATE t2 SET b=57164 WHERE a=14488;\nUPDATE t2 SET b=47867 WHERE a=14489;\nUPDATE t2 SET b=243 WHERE a=14490;\nUPDATE t2 SET b=57182 WHERE a=14491;\nUPDATE t2 SET b=84641 WHERE a=14492;\nUPDATE t2 SET b=70689 WHERE a=14493;\nUPDATE t2 SET b=19498 WHERE a=14494;\nUPDATE t2 SET b=67797 WHERE a=14495;\nUPDATE t2 SET b=47520 WHERE a=14496;\nUPDATE t2 SET b=15129 WHERE a=14497;\nUPDATE t2 SET b=9424 WHERE a=14498;\nUPDATE t2 SET b=72408 WHERE a=14499;\nUPDATE t2 SET b=46157 WHERE a=14500;\nUPDATE t2 SET b=56113 WHERE a=14501;\nUPDATE t2 SET b=52223 WHERE a=14502;\nUPDATE t2 SET b=73676 WHERE a=14503;\nUPDATE t2 SET b=77809 WHERE a=14504;\nUPDATE t2 SET b=66016 WHERE a=14505;\nUPDATE t2 SET b=19993 WHERE a=14506;\nUPDATE t2 SET b=14279 WHERE a=14507;\nUPDATE t2 SET b=48515 WHERE a=14508;\nUPDATE t2 SET b=89452 WHERE a=14509;\nUPDATE t2 SET b=63062 WHERE a=14510;\nUPDATE t2 SET b=62157 WHERE a=14511;\nUPDATE t2 SET b=89829 WHERE a=14512;\nUPDATE t2 SET b=2916 WHERE a=14513;\nUPDATE t2 SET b=66852 WHERE a=14514;\nUPDATE t2 SET b=77799 WHERE a=14515;\nUPDATE t2 SET b=216 WHERE a=14516;\nUPDATE t2 SET b=98571 WHERE a=14517;\nUPDATE t2 SET b=567 WHERE a=14518;\nUPDATE t2 SET b=51218 WHERE a=14519;\nUPDATE t2 SET b=70955 WHERE a=14520;\nUPDATE t2 SET b=79350 WHERE a=14521;\nUPDATE t2 SET b=93305 WHERE a=14522;\nUPDATE t2 SET b=29535 WHERE a=14523;\nUPDATE t2 SET b=43877 WHERE a=14524;\nUPDATE t2 SET b=58211 WHERE a=14525;\nUPDATE t2 SET b=29064 WHERE a=14526;\nUPDATE t2 SET b=70076 WHERE a=14527;\nUPDATE t2 SET b=27493 WHERE a=14528;\nUPDATE t2 SET b=65242 WHERE a=14529;\nUPDATE t2 SET b=76059 WHERE a=14530;\nUPDATE t2 SET b=99180 WHERE a=14531;\nUPDATE t2 SET b=3104 WHERE a=14532;\nUPDATE t2 SET b=1575 WHERE a=14533;\nUPDATE t2 SET b=34885 WHERE a=14534;\nUPDATE t2 SET b=44009 WHERE a=14535;\nUPDATE t2 SET b=33587 WHERE a=14536;\nUPDATE t2 SET b=17611 WHERE a=14537;\nUPDATE t2 SET b=55616 WHERE a=14538;\nUPDATE t2 SET b=16151 WHERE a=14539;\nUPDATE t2 SET b=26303 WHERE a=14540;\nUPDATE t2 SET b=2332 WHERE a=14541;\nUPDATE t2 SET b=77562 WHERE a=14542;\nUPDATE t2 SET b=62757 WHERE a=14543;\nUPDATE t2 SET b=97774 WHERE a=14544;\nUPDATE t2 SET b=81984 WHERE a=14545;\nUPDATE t2 SET b=8918 WHERE a=14546;\nUPDATE t2 SET b=3075 WHERE a=14547;\nUPDATE t2 SET b=22536 WHERE a=14548;\nUPDATE t2 SET b=95414 WHERE a=14549;\nUPDATE t2 SET b=1435 WHERE a=14550;\nUPDATE t2 SET b=27705 WHERE a=14551;\nUPDATE t2 SET b=3959 WHERE a=14552;\nUPDATE t2 SET b=24474 WHERE a=14553;\nUPDATE t2 SET b=58594 WHERE a=14554;\nUPDATE t2 SET b=26523 WHERE a=14555;\nUPDATE t2 SET b=5140 WHERE a=14556;\nUPDATE t2 SET b=51695 WHERE a=14557;\nUPDATE t2 SET b=46617 WHERE a=14558;\nUPDATE t2 SET b=41263 WHERE a=14559;\nUPDATE t2 SET b=79344 WHERE a=14560;\nUPDATE t2 SET b=44370 WHERE a=14561;\nUPDATE t2 SET b=1464 WHERE a=14562;\nUPDATE t2 SET b=19846 WHERE a=14563;\nUPDATE t2 SET b=97233 WHERE a=14564;\nUPDATE t2 SET b=85070 WHERE a=14565;\nUPDATE t2 SET b=16326 WHERE a=14566;\nUPDATE t2 SET b=65690 WHERE a=14567;\nUPDATE t2 SET b=71480 WHERE a=14568;\nUPDATE t2 SET b=86281 WHERE a=14569;\nUPDATE t2 SET b=81372 WHERE a=14570;\nUPDATE t2 SET b=59926 WHERE a=14571;\nUPDATE t2 SET b=4447 WHERE a=14572;\nUPDATE t2 SET b=93293 WHERE a=14573;\nUPDATE t2 SET b=42018 WHERE a=14574;\nUPDATE t2 SET b=5835 WHERE a=14575;\nUPDATE t2 SET b=16464 WHERE a=14576;\nUPDATE t2 SET b=40563 WHERE a=14577;\nUPDATE t2 SET b=79559 WHERE a=14578;\nUPDATE t2 SET b=60928 WHERE a=14579;\nUPDATE t2 SET b=10595 WHERE a=14580;\nUPDATE t2 SET b=28815 WHERE a=14581;\nUPDATE t2 SET b=11776 WHERE a=14582;\nUPDATE t2 SET b=80055 WHERE a=14583;\nUPDATE t2 SET b=61953 WHERE a=14584;\nUPDATE t2 SET b=48159 WHERE a=14585;\nUPDATE t2 SET b=12131 WHERE a=14586;\nUPDATE t2 SET b=48912 WHERE a=14587;\nUPDATE t2 SET b=2569 WHERE a=14588;\nUPDATE t2 SET b=44663 WHERE a=14589;\nUPDATE t2 SET b=29106 WHERE a=14590;\nUPDATE t2 SET b=14026 WHERE a=14591;\nUPDATE t2 SET b=96047 WHERE a=14592;\nUPDATE t2 SET b=36602 WHERE a=14593;\nUPDATE t2 SET b=14486 WHERE a=14594;\nUPDATE t2 SET b=398 WHERE a=14595;\nUPDATE t2 SET b=45381 WHERE a=14596;\nUPDATE t2 SET b=15321 WHERE a=14597;\nUPDATE t2 SET b=56575 WHERE a=14598;\nUPDATE t2 SET b=73163 WHERE a=14599;\nUPDATE t2 SET b=37309 WHERE a=14600;\nUPDATE t2 SET b=1032 WHERE a=14601;\nUPDATE t2 SET b=28860 WHERE a=14602;\nUPDATE t2 SET b=99245 WHERE a=14603;\nUPDATE t2 SET b=91459 WHERE a=14604;\nUPDATE t2 SET b=68724 WHERE a=14605;\nUPDATE t2 SET b=8106 WHERE a=14606;\nUPDATE t2 SET b=99804 WHERE a=14607;\nUPDATE t2 SET b=96430 WHERE a=14608;\nUPDATE t2 SET b=10901 WHERE a=14609;\nUPDATE t2 SET b=32977 WHERE a=14610;\nUPDATE t2 SET b=93222 WHERE a=14611;\nUPDATE t2 SET b=19483 WHERE a=14612;\nUPDATE t2 SET b=66179 WHERE a=14613;\nUPDATE t2 SET b=81955 WHERE a=14614;\nUPDATE t2 SET b=84844 WHERE a=14615;\nUPDATE t2 SET b=48171 WHERE a=14616;\nUPDATE t2 SET b=4066 WHERE a=14617;\nUPDATE t2 SET b=21153 WHERE a=14618;\nUPDATE t2 SET b=63067 WHERE a=14619;\nUPDATE t2 SET b=26429 WHERE a=14620;\nUPDATE t2 SET b=76035 WHERE a=14621;\nUPDATE t2 SET b=12351 WHERE a=14622;\nUPDATE t2 SET b=19408 WHERE a=14623;\nUPDATE t2 SET b=22945 WHERE a=14624;\nUPDATE t2 SET b=32405 WHERE a=14625;\nUPDATE t2 SET b=46229 WHERE a=14626;\nUPDATE t2 SET b=85772 WHERE a=14627;\nUPDATE t2 SET b=16576 WHERE a=14628;\nUPDATE t2 SET b=80519 WHERE a=14629;\nUPDATE t2 SET b=93299 WHERE a=14630;\nUPDATE t2 SET b=37792 WHERE a=14631;\nUPDATE t2 SET b=48686 WHERE a=14632;\nUPDATE t2 SET b=68182 WHERE a=14633;\nUPDATE t2 SET b=71149 WHERE a=14634;\nUPDATE t2 SET b=13041 WHERE a=14635;\nUPDATE t2 SET b=25233 WHERE a=14636;\nUPDATE t2 SET b=92960 WHERE a=14637;\nUPDATE t2 SET b=83281 WHERE a=14638;\nUPDATE t2 SET b=96296 WHERE a=14639;\nUPDATE t2 SET b=54519 WHERE a=14640;\nUPDATE t2 SET b=21874 WHERE a=14641;\nUPDATE t2 SET b=32198 WHERE a=14642;\nUPDATE t2 SET b=99870 WHERE a=14643;\nUPDATE t2 SET b=46649 WHERE a=14644;\nUPDATE t2 SET b=7289 WHERE a=14645;\nUPDATE t2 SET b=95286 WHERE a=14646;\nUPDATE t2 SET b=85494 WHERE a=14647;\nUPDATE t2 SET b=60846 WHERE a=14648;\nUPDATE t2 SET b=38715 WHERE a=14649;\nUPDATE t2 SET b=28869 WHERE a=14650;\nUPDATE t2 SET b=44986 WHERE a=14651;\nUPDATE t2 SET b=41890 WHERE a=14652;\nUPDATE t2 SET b=14998 WHERE a=14653;\nUPDATE t2 SET b=19758 WHERE a=14654;\nUPDATE t2 SET b=7262 WHERE a=14655;\nUPDATE t2 SET b=25977 WHERE a=14656;\nUPDATE t2 SET b=30137 WHERE a=14657;\nUPDATE t2 SET b=7393 WHERE a=14658;\nUPDATE t2 SET b=28570 WHERE a=14659;\nUPDATE t2 SET b=37521 WHERE a=14660;\nUPDATE t2 SET b=24192 WHERE a=14661;\nUPDATE t2 SET b=97800 WHERE a=14662;\nUPDATE t2 SET b=19968 WHERE a=14663;\nUPDATE t2 SET b=64388 WHERE a=14664;\nUPDATE t2 SET b=93455 WHERE a=14665;\nUPDATE t2 SET b=65625 WHERE a=14666;\nUPDATE t2 SET b=81483 WHERE a=14667;\nUPDATE t2 SET b=21402 WHERE a=14668;\nUPDATE t2 SET b=43271 WHERE a=14669;\nUPDATE t2 SET b=41937 WHERE a=14670;\nUPDATE t2 SET b=82877 WHERE a=14671;\nUPDATE t2 SET b=61898 WHERE a=14672;\nUPDATE t2 SET b=36020 WHERE a=14673;\nUPDATE t2 SET b=92206 WHERE a=14674;\nUPDATE t2 SET b=9113 WHERE a=14675;\nUPDATE t2 SET b=50978 WHERE a=14676;\nUPDATE t2 SET b=55026 WHERE a=14677;\nUPDATE t2 SET b=83435 WHERE a=14678;\nUPDATE t2 SET b=58827 WHERE a=14679;\nUPDATE t2 SET b=38828 WHERE a=14680;\nUPDATE t2 SET b=65211 WHERE a=14681;\nUPDATE t2 SET b=31169 WHERE a=14682;\nUPDATE t2 SET b=44578 WHERE a=14683;\nUPDATE t2 SET b=1752 WHERE a=14684;\nUPDATE t2 SET b=89068 WHERE a=14685;\nUPDATE t2 SET b=24274 WHERE a=14686;\nUPDATE t2 SET b=53867 WHERE a=14687;\nUPDATE t2 SET b=35734 WHERE a=14688;\nUPDATE t2 SET b=32173 WHERE a=14689;\nUPDATE t2 SET b=21779 WHERE a=14690;\nUPDATE t2 SET b=86816 WHERE a=14691;\nUPDATE t2 SET b=8736 WHERE a=14692;\nUPDATE t2 SET b=31925 WHERE a=14693;\nUPDATE t2 SET b=97833 WHERE a=14694;\nUPDATE t2 SET b=11515 WHERE a=14695;\nUPDATE t2 SET b=13506 WHERE a=14696;\nUPDATE t2 SET b=20977 WHERE a=14697;\nUPDATE t2 SET b=88113 WHERE a=14698;\nUPDATE t2 SET b=73866 WHERE a=14699;\nUPDATE t2 SET b=45342 WHERE a=14700;\nUPDATE t2 SET b=3239 WHERE a=14701;\nUPDATE t2 SET b=52580 WHERE a=14702;\nUPDATE t2 SET b=59158 WHERE a=14703;\nUPDATE t2 SET b=3833 WHERE a=14704;\nUPDATE t2 SET b=5429 WHERE a=14705;\nUPDATE t2 SET b=81174 WHERE a=14706;\nUPDATE t2 SET b=85146 WHERE a=14707;\nUPDATE t2 SET b=73513 WHERE a=14708;\nUPDATE t2 SET b=17784 WHERE a=14709;\nUPDATE t2 SET b=20144 WHERE a=14710;\nUPDATE t2 SET b=38997 WHERE a=14711;\nUPDATE t2 SET b=6490 WHERE a=14712;\nUPDATE t2 SET b=31094 WHERE a=14713;\nUPDATE t2 SET b=53040 WHERE a=14714;\nUPDATE t2 SET b=89454 WHERE a=14715;\nUPDATE t2 SET b=21091 WHERE a=14716;\nUPDATE t2 SET b=29581 WHERE a=14717;\nUPDATE t2 SET b=79466 WHERE a=14718;\nUPDATE t2 SET b=46795 WHERE a=14719;\nUPDATE t2 SET b=31146 WHERE a=14720;\nUPDATE t2 SET b=45618 WHERE a=14721;\nUPDATE t2 SET b=99437 WHERE a=14722;\nUPDATE t2 SET b=81953 WHERE a=14723;\nUPDATE t2 SET b=81506 WHERE a=14724;\nUPDATE t2 SET b=48971 WHERE a=14725;\nUPDATE t2 SET b=37357 WHERE a=14726;\nUPDATE t2 SET b=78938 WHERE a=14727;\nUPDATE t2 SET b=94383 WHERE a=14728;\nUPDATE t2 SET b=48266 WHERE a=14729;\nUPDATE t2 SET b=83592 WHERE a=14730;\nUPDATE t2 SET b=56963 WHERE a=14731;\nUPDATE t2 SET b=90321 WHERE a=14732;\nUPDATE t2 SET b=89070 WHERE a=14733;\nUPDATE t2 SET b=13434 WHERE a=14734;\nUPDATE t2 SET b=71464 WHERE a=14735;\nUPDATE t2 SET b=19477 WHERE a=14736;\nUPDATE t2 SET b=48051 WHERE a=14737;\nUPDATE t2 SET b=61544 WHERE a=14738;\nUPDATE t2 SET b=93623 WHERE a=14739;\nUPDATE t2 SET b=29085 WHERE a=14740;\nUPDATE t2 SET b=42048 WHERE a=14741;\nUPDATE t2 SET b=22525 WHERE a=14742;\nUPDATE t2 SET b=42531 WHERE a=14743;\nUPDATE t2 SET b=63295 WHERE a=14744;\nUPDATE t2 SET b=65336 WHERE a=14745;\nUPDATE t2 SET b=51461 WHERE a=14746;\nUPDATE t2 SET b=24674 WHERE a=14747;\nUPDATE t2 SET b=52325 WHERE a=14748;\nUPDATE t2 SET b=43516 WHERE a=14749;\nUPDATE t2 SET b=48211 WHERE a=14750;\nUPDATE t2 SET b=41537 WHERE a=14751;\nUPDATE t2 SET b=69387 WHERE a=14752;\nUPDATE t2 SET b=25202 WHERE a=14753;\nUPDATE t2 SET b=33579 WHERE a=14754;\nUPDATE t2 SET b=70422 WHERE a=14755;\nUPDATE t2 SET b=47343 WHERE a=14756;\nUPDATE t2 SET b=29225 WHERE a=14757;\nUPDATE t2 SET b=62601 WHERE a=14758;\nUPDATE t2 SET b=21237 WHERE a=14759;\nUPDATE t2 SET b=77939 WHERE a=14760;\nUPDATE t2 SET b=23447 WHERE a=14761;\nUPDATE t2 SET b=23681 WHERE a=14762;\nUPDATE t2 SET b=52908 WHERE a=14763;\nUPDATE t2 SET b=42762 WHERE a=14764;\nUPDATE t2 SET b=25874 WHERE a=14765;\nUPDATE t2 SET b=15712 WHERE a=14766;\nUPDATE t2 SET b=97548 WHERE a=14767;\nUPDATE t2 SET b=41464 WHERE a=14768;\nUPDATE t2 SET b=18040 WHERE a=14769;\nUPDATE t2 SET b=61768 WHERE a=14770;\nUPDATE t2 SET b=71190 WHERE a=14771;\nUPDATE t2 SET b=66677 WHERE a=14772;\nUPDATE t2 SET b=96564 WHERE a=14773;\nUPDATE t2 SET b=67940 WHERE a=14774;\nUPDATE t2 SET b=79348 WHERE a=14775;\nUPDATE t2 SET b=91729 WHERE a=14776;\nUPDATE t2 SET b=3280 WHERE a=14777;\nUPDATE t2 SET b=10721 WHERE a=14778;\nUPDATE t2 SET b=40499 WHERE a=14779;\nUPDATE t2 SET b=38797 WHERE a=14780;\nUPDATE t2 SET b=99037 WHERE a=14781;\nUPDATE t2 SET b=65191 WHERE a=14782;\nUPDATE t2 SET b=90751 WHERE a=14783;\nUPDATE t2 SET b=85053 WHERE a=14784;\nUPDATE t2 SET b=59339 WHERE a=14785;\nUPDATE t2 SET b=84513 WHERE a=14786;\nUPDATE t2 SET b=85365 WHERE a=14787;\nUPDATE t2 SET b=28244 WHERE a=14788;\nUPDATE t2 SET b=58873 WHERE a=14789;\nUPDATE t2 SET b=42358 WHERE a=14790;\nUPDATE t2 SET b=19458 WHERE a=14791;\nUPDATE t2 SET b=67232 WHERE a=14792;\nUPDATE t2 SET b=97187 WHERE a=14793;\nUPDATE t2 SET b=26253 WHERE a=14794;\nUPDATE t2 SET b=13792 WHERE a=14795;\nUPDATE t2 SET b=59944 WHERE a=14796;\nUPDATE t2 SET b=36290 WHERE a=14797;\nUPDATE t2 SET b=62583 WHERE a=14798;\nUPDATE t2 SET b=12018 WHERE a=14799;\nUPDATE t2 SET b=98059 WHERE a=14800;\nUPDATE t2 SET b=46053 WHERE a=14801;\nUPDATE t2 SET b=7667 WHERE a=14802;\nUPDATE t2 SET b=65598 WHERE a=14803;\nUPDATE t2 SET b=55642 WHERE a=14804;\nUPDATE t2 SET b=37219 WHERE a=14805;\nUPDATE t2 SET b=41311 WHERE a=14806;\nUPDATE t2 SET b=93579 WHERE a=14807;\nUPDATE t2 SET b=14147 WHERE a=14808;\nUPDATE t2 SET b=11718 WHERE a=14809;\nUPDATE t2 SET b=66651 WHERE a=14810;\nUPDATE t2 SET b=35571 WHERE a=14811;\nUPDATE t2 SET b=46680 WHERE a=14812;\nUPDATE t2 SET b=17986 WHERE a=14813;\nUPDATE t2 SET b=16990 WHERE a=14814;\nUPDATE t2 SET b=83980 WHERE a=14815;\nUPDATE t2 SET b=58369 WHERE a=14816;\nUPDATE t2 SET b=78133 WHERE a=14817;\nUPDATE t2 SET b=44776 WHERE a=14818;\nUPDATE t2 SET b=87612 WHERE a=14819;\nUPDATE t2 SET b=97395 WHERE a=14820;\nUPDATE t2 SET b=94730 WHERE a=14821;\nUPDATE t2 SET b=2873 WHERE a=14822;\nUPDATE t2 SET b=92765 WHERE a=14823;\nUPDATE t2 SET b=41025 WHERE a=14824;\nUPDATE t2 SET b=30249 WHERE a=14825;\nUPDATE t2 SET b=78008 WHERE a=14826;\nUPDATE t2 SET b=36258 WHERE a=14827;\nUPDATE t2 SET b=42859 WHERE a=14828;\nUPDATE t2 SET b=51262 WHERE a=14829;\nUPDATE t2 SET b=10751 WHERE a=14830;\nUPDATE t2 SET b=70144 WHERE a=14831;\nUPDATE t2 SET b=94857 WHERE a=14832;\nUPDATE t2 SET b=84367 WHERE a=14833;\nUPDATE t2 SET b=76530 WHERE a=14834;\nUPDATE t2 SET b=28352 WHERE a=14835;\nUPDATE t2 SET b=91018 WHERE a=14836;\nUPDATE t2 SET b=8884 WHERE a=14837;\nUPDATE t2 SET b=35564 WHERE a=14838;\nUPDATE t2 SET b=28175 WHERE a=14839;\nUPDATE t2 SET b=843 WHERE a=14840;\nUPDATE t2 SET b=65740 WHERE a=14841;\nUPDATE t2 SET b=51156 WHERE a=14842;\nUPDATE t2 SET b=7538 WHERE a=14843;\nUPDATE t2 SET b=41480 WHERE a=14844;\nUPDATE t2 SET b=83865 WHERE a=14845;\nUPDATE t2 SET b=98469 WHERE a=14846;\nUPDATE t2 SET b=95586 WHERE a=14847;\nUPDATE t2 SET b=87574 WHERE a=14848;\nUPDATE t2 SET b=94284 WHERE a=14849;\nUPDATE t2 SET b=111 WHERE a=14850;\nUPDATE t2 SET b=24343 WHERE a=14851;\nUPDATE t2 SET b=14031 WHERE a=14852;\nUPDATE t2 SET b=67251 WHERE a=14853;\nUPDATE t2 SET b=47508 WHERE a=14854;\nUPDATE t2 SET b=84091 WHERE a=14855;\nUPDATE t2 SET b=81358 WHERE a=14856;\nUPDATE t2 SET b=35364 WHERE a=14857;\nUPDATE t2 SET b=10200 WHERE a=14858;\nUPDATE t2 SET b=58092 WHERE a=14859;\nUPDATE t2 SET b=41625 WHERE a=14860;\nUPDATE t2 SET b=70950 WHERE a=14861;\nUPDATE t2 SET b=14918 WHERE a=14862;\nUPDATE t2 SET b=54678 WHERE a=14863;\nUPDATE t2 SET b=84874 WHERE a=14864;\nUPDATE t2 SET b=43755 WHERE a=14865;\nUPDATE t2 SET b=63961 WHERE a=14866;\nUPDATE t2 SET b=46153 WHERE a=14867;\nUPDATE t2 SET b=30071 WHERE a=14868;\nUPDATE t2 SET b=67457 WHERE a=14869;\nUPDATE t2 SET b=90491 WHERE a=14870;\nUPDATE t2 SET b=93577 WHERE a=14871;\nUPDATE t2 SET b=13679 WHERE a=14872;\nUPDATE t2 SET b=61067 WHERE a=14873;\nUPDATE t2 SET b=83486 WHERE a=14874;\nUPDATE t2 SET b=34782 WHERE a=14875;\nUPDATE t2 SET b=8578 WHERE a=14876;\nUPDATE t2 SET b=57409 WHERE a=14877;\nUPDATE t2 SET b=37627 WHERE a=14878;\nUPDATE t2 SET b=60196 WHERE a=14879;\nUPDATE t2 SET b=16920 WHERE a=14880;\nUPDATE t2 SET b=55658 WHERE a=14881;\nUPDATE t2 SET b=32286 WHERE a=14882;\nUPDATE t2 SET b=51482 WHERE a=14883;\nUPDATE t2 SET b=29842 WHERE a=14884;\nUPDATE t2 SET b=28454 WHERE a=14885;\nUPDATE t2 SET b=83440 WHERE a=14886;\nUPDATE t2 SET b=19448 WHERE a=14887;\nUPDATE t2 SET b=1516 WHERE a=14888;\nUPDATE t2 SET b=77745 WHERE a=14889;\nUPDATE t2 SET b=51207 WHERE a=14890;\nUPDATE t2 SET b=2764 WHERE a=14891;\nUPDATE t2 SET b=45620 WHERE a=14892;\nUPDATE t2 SET b=59915 WHERE a=14893;\nUPDATE t2 SET b=81770 WHERE a=14894;\nUPDATE t2 SET b=34749 WHERE a=14895;\nUPDATE t2 SET b=1808 WHERE a=14896;\nUPDATE t2 SET b=40232 WHERE a=14897;\nUPDATE t2 SET b=61521 WHERE a=14898;\nUPDATE t2 SET b=23543 WHERE a=14899;\nUPDATE t2 SET b=4556 WHERE a=14900;\nUPDATE t2 SET b=38630 WHERE a=14901;\nUPDATE t2 SET b=47727 WHERE a=14902;\nUPDATE t2 SET b=17913 WHERE a=14903;\nUPDATE t2 SET b=99428 WHERE a=14904;\nUPDATE t2 SET b=1105 WHERE a=14905;\nUPDATE t2 SET b=28395 WHERE a=14906;\nUPDATE t2 SET b=36348 WHERE a=14907;\nUPDATE t2 SET b=16057 WHERE a=14908;\nUPDATE t2 SET b=43912 WHERE a=14909;\nUPDATE t2 SET b=89428 WHERE a=14910;\nUPDATE t2 SET b=61543 WHERE a=14911;\nUPDATE t2 SET b=64863 WHERE a=14912;\nUPDATE t2 SET b=23043 WHERE a=14913;\nUPDATE t2 SET b=87103 WHERE a=14914;\nUPDATE t2 SET b=61236 WHERE a=14915;\nUPDATE t2 SET b=39204 WHERE a=14916;\nUPDATE t2 SET b=93010 WHERE a=14917;\nUPDATE t2 SET b=35435 WHERE a=14918;\nUPDATE t2 SET b=17864 WHERE a=14919;\nUPDATE t2 SET b=27143 WHERE a=14920;\nUPDATE t2 SET b=65643 WHERE a=14921;\nUPDATE t2 SET b=55305 WHERE a=14922;\nUPDATE t2 SET b=33668 WHERE a=14923;\nUPDATE t2 SET b=5368 WHERE a=14924;\nUPDATE t2 SET b=26225 WHERE a=14925;\nUPDATE t2 SET b=64271 WHERE a=14926;\nUPDATE t2 SET b=45686 WHERE a=14927;\nUPDATE t2 SET b=45627 WHERE a=14928;\nUPDATE t2 SET b=32657 WHERE a=14929;\nUPDATE t2 SET b=34815 WHERE a=14930;\nUPDATE t2 SET b=5202 WHERE a=14931;\nUPDATE t2 SET b=96965 WHERE a=14932;\nUPDATE t2 SET b=64540 WHERE a=14933;\nUPDATE t2 SET b=91037 WHERE a=14934;\nUPDATE t2 SET b=25215 WHERE a=14935;\nUPDATE t2 SET b=34101 WHERE a=14936;\nUPDATE t2 SET b=45969 WHERE a=14937;\nUPDATE t2 SET b=76159 WHERE a=14938;\nUPDATE t2 SET b=61106 WHERE a=14939;\nUPDATE t2 SET b=83572 WHERE a=14940;\nUPDATE t2 SET b=37491 WHERE a=14941;\nUPDATE t2 SET b=12681 WHERE a=14942;\nUPDATE t2 SET b=93530 WHERE a=14943;\nUPDATE t2 SET b=2914 WHERE a=14944;\nUPDATE t2 SET b=68005 WHERE a=14945;\nUPDATE t2 SET b=74001 WHERE a=14946;\nUPDATE t2 SET b=94222 WHERE a=14947;\nUPDATE t2 SET b=10908 WHERE a=14948;\nUPDATE t2 SET b=60720 WHERE a=14949;\nUPDATE t2 SET b=71612 WHERE a=14950;\nUPDATE t2 SET b=24657 WHERE a=14951;\nUPDATE t2 SET b=5176 WHERE a=14952;\nUPDATE t2 SET b=77699 WHERE a=14953;\nUPDATE t2 SET b=36685 WHERE a=14954;\nUPDATE t2 SET b=1649 WHERE a=14955;\nUPDATE t2 SET b=10336 WHERE a=14956;\nUPDATE t2 SET b=9216 WHERE a=14957;\nUPDATE t2 SET b=63985 WHERE a=14958;\nUPDATE t2 SET b=76937 WHERE a=14959;\nUPDATE t2 SET b=33886 WHERE a=14960;\nUPDATE t2 SET b=34729 WHERE a=14961;\nUPDATE t2 SET b=59372 WHERE a=14962;\nUPDATE t2 SET b=28247 WHERE a=14963;\nUPDATE t2 SET b=81257 WHERE a=14964;\nUPDATE t2 SET b=34924 WHERE a=14965;\nUPDATE t2 SET b=98711 WHERE a=14966;\nUPDATE t2 SET b=86157 WHERE a=14967;\nUPDATE t2 SET b=54183 WHERE a=14968;\nUPDATE t2 SET b=28117 WHERE a=14969;\nUPDATE t2 SET b=19514 WHERE a=14970;\nUPDATE t2 SET b=91775 WHERE a=14971;\nUPDATE t2 SET b=91684 WHERE a=14972;\nUPDATE t2 SET b=11719 WHERE a=14973;\nUPDATE t2 SET b=87803 WHERE a=14974;\nUPDATE t2 SET b=23343 WHERE a=14975;\nUPDATE t2 SET b=55783 WHERE a=14976;\nUPDATE t2 SET b=85722 WHERE a=14977;\nUPDATE t2 SET b=48191 WHERE a=14978;\nUPDATE t2 SET b=4638 WHERE a=14979;\nUPDATE t2 SET b=51584 WHERE a=14980;\nUPDATE t2 SET b=31509 WHERE a=14981;\nUPDATE t2 SET b=58007 WHERE a=14982;\nUPDATE t2 SET b=58222 WHERE a=14983;\nUPDATE t2 SET b=43324 WHERE a=14984;\nUPDATE t2 SET b=62955 WHERE a=14985;\nUPDATE t2 SET b=9124 WHERE a=14986;\nUPDATE t2 SET b=14755 WHERE a=14987;\nUPDATE t2 SET b=4463 WHERE a=14988;\nUPDATE t2 SET b=12267 WHERE a=14989;\nUPDATE t2 SET b=7341 WHERE a=14990;\nUPDATE t2 SET b=58459 WHERE a=14991;\nUPDATE t2 SET b=99649 WHERE a=14992;\nUPDATE t2 SET b=88595 WHERE a=14993;\nUPDATE t2 SET b=66942 WHERE a=14994;\nUPDATE t2 SET b=89925 WHERE a=14995;\nUPDATE t2 SET b=8045 WHERE a=14996;\nUPDATE t2 SET b=77455 WHERE a=14997;\nUPDATE t2 SET b=46241 WHERE a=14998;\nUPDATE t2 SET b=64519 WHERE a=14999;\nUPDATE t2 SET b=61046 WHERE a=15000;\nUPDATE t2 SET b=8768 WHERE a=15001;\nUPDATE t2 SET b=87918 WHERE a=15002;\nUPDATE t2 SET b=65342 WHERE a=15003;\nUPDATE t2 SET b=36851 WHERE a=15004;\nUPDATE t2 SET b=56983 WHERE a=15005;\nUPDATE t2 SET b=94040 WHERE a=15006;\nUPDATE t2 SET b=7014 WHERE a=15007;\nUPDATE t2 SET b=85923 WHERE a=15008;\nUPDATE t2 SET b=32003 WHERE a=15009;\nUPDATE t2 SET b=67884 WHERE a=15010;\nUPDATE t2 SET b=45136 WHERE a=15011;\nUPDATE t2 SET b=11257 WHERE a=15012;\nUPDATE t2 SET b=92689 WHERE a=15013;\nUPDATE t2 SET b=30082 WHERE a=15014;\nUPDATE t2 SET b=86713 WHERE a=15015;\nUPDATE t2 SET b=61075 WHERE a=15016;\nUPDATE t2 SET b=19824 WHERE a=15017;\nUPDATE t2 SET b=45667 WHERE a=15018;\nUPDATE t2 SET b=20930 WHERE a=15019;\nUPDATE t2 SET b=6307 WHERE a=15020;\nUPDATE t2 SET b=8655 WHERE a=15021;\nUPDATE t2 SET b=40627 WHERE a=15022;\nUPDATE t2 SET b=79358 WHERE a=15023;\nUPDATE t2 SET b=96749 WHERE a=15024;\nUPDATE t2 SET b=32495 WHERE a=15025;\nUPDATE t2 SET b=25053 WHERE a=15026;\nUPDATE t2 SET b=53060 WHERE a=15027;\nUPDATE t2 SET b=64193 WHERE a=15028;\nUPDATE t2 SET b=48964 WHERE a=15029;\nUPDATE t2 SET b=60720 WHERE a=15030;\nUPDATE t2 SET b=59976 WHERE a=15031;\nUPDATE t2 SET b=32238 WHERE a=15032;\nUPDATE t2 SET b=62913 WHERE a=15033;\nUPDATE t2 SET b=90220 WHERE a=15034;\nUPDATE t2 SET b=62192 WHERE a=15035;\nUPDATE t2 SET b=40789 WHERE a=15036;\nUPDATE t2 SET b=34893 WHERE a=15037;\nUPDATE t2 SET b=47817 WHERE a=15038;\nUPDATE t2 SET b=51203 WHERE a=15039;\nUPDATE t2 SET b=17985 WHERE a=15040;\nUPDATE t2 SET b=83096 WHERE a=15041;\nUPDATE t2 SET b=43298 WHERE a=15042;\nUPDATE t2 SET b=43777 WHERE a=15043;\nUPDATE t2 SET b=59415 WHERE a=15044;\nUPDATE t2 SET b=34374 WHERE a=15045;\nUPDATE t2 SET b=59036 WHERE a=15046;\nUPDATE t2 SET b=42367 WHERE a=15047;\nUPDATE t2 SET b=61341 WHERE a=15048;\nUPDATE t2 SET b=86494 WHERE a=15049;\nUPDATE t2 SET b=88145 WHERE a=15050;\nUPDATE t2 SET b=65246 WHERE a=15051;\nUPDATE t2 SET b=58004 WHERE a=15052;\nUPDATE t2 SET b=49724 WHERE a=15053;\nUPDATE t2 SET b=1412 WHERE a=15054;\nUPDATE t2 SET b=96087 WHERE a=15055;\nUPDATE t2 SET b=63235 WHERE a=15056;\nUPDATE t2 SET b=50599 WHERE a=15057;\nUPDATE t2 SET b=61411 WHERE a=15058;\nUPDATE t2 SET b=12734 WHERE a=15059;\nUPDATE t2 SET b=92362 WHERE a=15060;\nUPDATE t2 SET b=58436 WHERE a=15061;\nUPDATE t2 SET b=10762 WHERE a=15062;\nUPDATE t2 SET b=28881 WHERE a=15063;\nUPDATE t2 SET b=76481 WHERE a=15064;\nUPDATE t2 SET b=25190 WHERE a=15065;\nUPDATE t2 SET b=79827 WHERE a=15066;\nUPDATE t2 SET b=98286 WHERE a=15067;\nUPDATE t2 SET b=19077 WHERE a=15068;\nUPDATE t2 SET b=18484 WHERE a=15069;\nUPDATE t2 SET b=11019 WHERE a=15070;\nUPDATE t2 SET b=27703 WHERE a=15071;\nUPDATE t2 SET b=79664 WHERE a=15072;\nUPDATE t2 SET b=59104 WHERE a=15073;\nUPDATE t2 SET b=83803 WHERE a=15074;\nUPDATE t2 SET b=53668 WHERE a=15075;\nUPDATE t2 SET b=8410 WHERE a=15076;\nUPDATE t2 SET b=87791 WHERE a=15077;\nUPDATE t2 SET b=25752 WHERE a=15078;\nUPDATE t2 SET b=59933 WHERE a=15079;\nUPDATE t2 SET b=52096 WHERE a=15080;\nUPDATE t2 SET b=6395 WHERE a=15081;\nUPDATE t2 SET b=59149 WHERE a=15082;\nUPDATE t2 SET b=59298 WHERE a=15083;\nUPDATE t2 SET b=19181 WHERE a=15084;\nUPDATE t2 SET b=37294 WHERE a=15085;\nUPDATE t2 SET b=51990 WHERE a=15086;\nUPDATE t2 SET b=15279 WHERE a=15087;\nUPDATE t2 SET b=85464 WHERE a=15088;\nUPDATE t2 SET b=75700 WHERE a=15089;\nUPDATE t2 SET b=54584 WHERE a=15090;\nUPDATE t2 SET b=76553 WHERE a=15091;\nUPDATE t2 SET b=62325 WHERE a=15092;\nUPDATE t2 SET b=42645 WHERE a=15093;\nUPDATE t2 SET b=48380 WHERE a=15094;\nUPDATE t2 SET b=90649 WHERE a=15095;\nUPDATE t2 SET b=92281 WHERE a=15096;\nUPDATE t2 SET b=99232 WHERE a=15097;\nUPDATE t2 SET b=6528 WHERE a=15098;\nUPDATE t2 SET b=46917 WHERE a=15099;\nUPDATE t2 SET b=95319 WHERE a=15100;\nUPDATE t2 SET b=65690 WHERE a=15101;\nUPDATE t2 SET b=76333 WHERE a=15102;\nUPDATE t2 SET b=30424 WHERE a=15103;\nUPDATE t2 SET b=45910 WHERE a=15104;\nUPDATE t2 SET b=52643 WHERE a=15105;\nUPDATE t2 SET b=25055 WHERE a=15106;\nUPDATE t2 SET b=60159 WHERE a=15107;\nUPDATE t2 SET b=24399 WHERE a=15108;\nUPDATE t2 SET b=67542 WHERE a=15109;\nUPDATE t2 SET b=80310 WHERE a=15110;\nUPDATE t2 SET b=31740 WHERE a=15111;\nUPDATE t2 SET b=99510 WHERE a=15112;\nUPDATE t2 SET b=88970 WHERE a=15113;\nUPDATE t2 SET b=9475 WHERE a=15114;\nUPDATE t2 SET b=32546 WHERE a=15115;\nUPDATE t2 SET b=25173 WHERE a=15116;\nUPDATE t2 SET b=45340 WHERE a=15117;\nUPDATE t2 SET b=78010 WHERE a=15118;\nUPDATE t2 SET b=434 WHERE a=15119;\nUPDATE t2 SET b=44623 WHERE a=15120;\nUPDATE t2 SET b=97216 WHERE a=15121;\nUPDATE t2 SET b=82907 WHERE a=15122;\nUPDATE t2 SET b=29759 WHERE a=15123;\nUPDATE t2 SET b=14533 WHERE a=15124;\nUPDATE t2 SET b=7398 WHERE a=15125;\nUPDATE t2 SET b=76111 WHERE a=15126;\nUPDATE t2 SET b=19491 WHERE a=15127;\nUPDATE t2 SET b=81223 WHERE a=15128;\nUPDATE t2 SET b=28686 WHERE a=15129;\nUPDATE t2 SET b=33064 WHERE a=15130;\nUPDATE t2 SET b=38590 WHERE a=15131;\nUPDATE t2 SET b=95528 WHERE a=15132;\nUPDATE t2 SET b=88813 WHERE a=15133;\nUPDATE t2 SET b=34947 WHERE a=15134;\nUPDATE t2 SET b=98500 WHERE a=15135;\nUPDATE t2 SET b=80344 WHERE a=15136;\nUPDATE t2 SET b=46837 WHERE a=15137;\nUPDATE t2 SET b=58062 WHERE a=15138;\nUPDATE t2 SET b=65504 WHERE a=15139;\nUPDATE t2 SET b=39722 WHERE a=15140;\nUPDATE t2 SET b=94182 WHERE a=15141;\nUPDATE t2 SET b=62402 WHERE a=15142;\nUPDATE t2 SET b=71447 WHERE a=15143;\nUPDATE t2 SET b=53060 WHERE a=15144;\nUPDATE t2 SET b=19916 WHERE a=15145;\nUPDATE t2 SET b=57212 WHERE a=15146;\nUPDATE t2 SET b=14929 WHERE a=15147;\nUPDATE t2 SET b=63549 WHERE a=15148;\nUPDATE t2 SET b=30024 WHERE a=15149;\nUPDATE t2 SET b=71608 WHERE a=15150;\nUPDATE t2 SET b=38934 WHERE a=15151;\nUPDATE t2 SET b=76760 WHERE a=15152;\nUPDATE t2 SET b=91863 WHERE a=15153;\nUPDATE t2 SET b=88764 WHERE a=15154;\nUPDATE t2 SET b=69440 WHERE a=15155;\nUPDATE t2 SET b=76123 WHERE a=15156;\nUPDATE t2 SET b=10505 WHERE a=15157;\nUPDATE t2 SET b=74231 WHERE a=15158;\nUPDATE t2 SET b=76043 WHERE a=15159;\nUPDATE t2 SET b=5522 WHERE a=15160;\nUPDATE t2 SET b=61488 WHERE a=15161;\nUPDATE t2 SET b=53468 WHERE a=15162;\nUPDATE t2 SET b=51809 WHERE a=15163;\nUPDATE t2 SET b=45081 WHERE a=15164;\nUPDATE t2 SET b=75868 WHERE a=15165;\nUPDATE t2 SET b=36251 WHERE a=15166;\nUPDATE t2 SET b=82221 WHERE a=15167;\nUPDATE t2 SET b=45004 WHERE a=15168;\nUPDATE t2 SET b=1775 WHERE a=15169;\nUPDATE t2 SET b=87063 WHERE a=15170;\nUPDATE t2 SET b=60342 WHERE a=15171;\nUPDATE t2 SET b=88968 WHERE a=15172;\nUPDATE t2 SET b=75302 WHERE a=15173;\nUPDATE t2 SET b=42553 WHERE a=15174;\nUPDATE t2 SET b=79374 WHERE a=15175;\nUPDATE t2 SET b=47695 WHERE a=15176;\nUPDATE t2 SET b=61654 WHERE a=15177;\nUPDATE t2 SET b=61920 WHERE a=15178;\nUPDATE t2 SET b=96925 WHERE a=15179;\nUPDATE t2 SET b=39645 WHERE a=15180;\nUPDATE t2 SET b=16471 WHERE a=15181;\nUPDATE t2 SET b=61966 WHERE a=15182;\nUPDATE t2 SET b=42295 WHERE a=15183;\nUPDATE t2 SET b=25718 WHERE a=15184;\nUPDATE t2 SET b=43979 WHERE a=15185;\nUPDATE t2 SET b=30468 WHERE a=15186;\nUPDATE t2 SET b=62951 WHERE a=15187;\nUPDATE t2 SET b=31055 WHERE a=15188;\nUPDATE t2 SET b=11858 WHERE a=15189;\nUPDATE t2 SET b=55811 WHERE a=15190;\nUPDATE t2 SET b=44686 WHERE a=15191;\nUPDATE t2 SET b=92245 WHERE a=15192;\nUPDATE t2 SET b=53709 WHERE a=15193;\nUPDATE t2 SET b=28318 WHERE a=15194;\nUPDATE t2 SET b=62801 WHERE a=15195;\nUPDATE t2 SET b=41993 WHERE a=15196;\nUPDATE t2 SET b=83796 WHERE a=15197;\nUPDATE t2 SET b=13452 WHERE a=15198;\nUPDATE t2 SET b=56388 WHERE a=15199;\nUPDATE t2 SET b=12807 WHERE a=15200;\nUPDATE t2 SET b=62495 WHERE a=15201;\nUPDATE t2 SET b=36960 WHERE a=15202;\nUPDATE t2 SET b=43840 WHERE a=15203;\nUPDATE t2 SET b=6220 WHERE a=15204;\nUPDATE t2 SET b=14508 WHERE a=15205;\nUPDATE t2 SET b=54426 WHERE a=15206;\nUPDATE t2 SET b=83209 WHERE a=15207;\nUPDATE t2 SET b=24908 WHERE a=15208;\nUPDATE t2 SET b=31272 WHERE a=15209;\nUPDATE t2 SET b=89009 WHERE a=15210;\nUPDATE t2 SET b=57689 WHERE a=15211;\nUPDATE t2 SET b=67321 WHERE a=15212;\nUPDATE t2 SET b=50123 WHERE a=15213;\nUPDATE t2 SET b=42371 WHERE a=15214;\nUPDATE t2 SET b=71130 WHERE a=15215;\nUPDATE t2 SET b=73565 WHERE a=15216;\nUPDATE t2 SET b=21814 WHERE a=15217;\nUPDATE t2 SET b=91996 WHERE a=15218;\nUPDATE t2 SET b=3953 WHERE a=15219;\nUPDATE t2 SET b=58968 WHERE a=15220;\nUPDATE t2 SET b=96122 WHERE a=15221;\nUPDATE t2 SET b=46229 WHERE a=15222;\nUPDATE t2 SET b=70850 WHERE a=15223;\nUPDATE t2 SET b=86393 WHERE a=15224;\nUPDATE t2 SET b=44049 WHERE a=15225;\nUPDATE t2 SET b=42860 WHERE a=15226;\nUPDATE t2 SET b=69307 WHERE a=15227;\nUPDATE t2 SET b=19840 WHERE a=15228;\nUPDATE t2 SET b=84587 WHERE a=15229;\nUPDATE t2 SET b=73696 WHERE a=15230;\nUPDATE t2 SET b=86081 WHERE a=15231;\nUPDATE t2 SET b=14851 WHERE a=15232;\nUPDATE t2 SET b=10961 WHERE a=15233;\nUPDATE t2 SET b=72235 WHERE a=15234;\nUPDATE t2 SET b=86554 WHERE a=15235;\nUPDATE t2 SET b=43521 WHERE a=15236;\nUPDATE t2 SET b=74865 WHERE a=15237;\nUPDATE t2 SET b=46689 WHERE a=15238;\nUPDATE t2 SET b=56996 WHERE a=15239;\nUPDATE t2 SET b=86398 WHERE a=15240;\nUPDATE t2 SET b=6189 WHERE a=15241;\nUPDATE t2 SET b=45280 WHERE a=15242;\nUPDATE t2 SET b=23497 WHERE a=15243;\nUPDATE t2 SET b=43872 WHERE a=15244;\nUPDATE t2 SET b=92052 WHERE a=15245;\nUPDATE t2 SET b=89841 WHERE a=15246;\nUPDATE t2 SET b=8734 WHERE a=15247;\nUPDATE t2 SET b=40376 WHERE a=15248;\nUPDATE t2 SET b=54137 WHERE a=15249;\nUPDATE t2 SET b=48829 WHERE a=15250;\nUPDATE t2 SET b=21293 WHERE a=15251;\nUPDATE t2 SET b=47634 WHERE a=15252;\nUPDATE t2 SET b=31420 WHERE a=15253;\nUPDATE t2 SET b=56525 WHERE a=15254;\nUPDATE t2 SET b=97985 WHERE a=15255;\nUPDATE t2 SET b=20031 WHERE a=15256;\nUPDATE t2 SET b=30821 WHERE a=15257;\nUPDATE t2 SET b=40329 WHERE a=15258;\nUPDATE t2 SET b=82984 WHERE a=15259;\nUPDATE t2 SET b=20528 WHERE a=15260;\nUPDATE t2 SET b=77714 WHERE a=15261;\nUPDATE t2 SET b=77903 WHERE a=15262;\nUPDATE t2 SET b=39214 WHERE a=15263;\nUPDATE t2 SET b=90045 WHERE a=15264;\nUPDATE t2 SET b=65660 WHERE a=15265;\nUPDATE t2 SET b=2205 WHERE a=15266;\nUPDATE t2 SET b=13037 WHERE a=15267;\nUPDATE t2 SET b=7764 WHERE a=15268;\nUPDATE t2 SET b=37553 WHERE a=15269;\nUPDATE t2 SET b=41592 WHERE a=15270;\nUPDATE t2 SET b=78178 WHERE a=15271;\nUPDATE t2 SET b=77559 WHERE a=15272;\nUPDATE t2 SET b=19772 WHERE a=15273;\nUPDATE t2 SET b=80362 WHERE a=15274;\nUPDATE t2 SET b=79437 WHERE a=15275;\nUPDATE t2 SET b=74302 WHERE a=15276;\nUPDATE t2 SET b=48292 WHERE a=15277;\nUPDATE t2 SET b=88624 WHERE a=15278;\nUPDATE t2 SET b=66471 WHERE a=15279;\nUPDATE t2 SET b=14237 WHERE a=15280;\nUPDATE t2 SET b=86627 WHERE a=15281;\nUPDATE t2 SET b=35224 WHERE a=15282;\nUPDATE t2 SET b=7245 WHERE a=15283;\nUPDATE t2 SET b=18816 WHERE a=15284;\nUPDATE t2 SET b=84341 WHERE a=15285;\nUPDATE t2 SET b=5781 WHERE a=15286;\nUPDATE t2 SET b=47646 WHERE a=15287;\nUPDATE t2 SET b=44586 WHERE a=15288;\nUPDATE t2 SET b=99912 WHERE a=15289;\nUPDATE t2 SET b=10518 WHERE a=15290;\nUPDATE t2 SET b=8539 WHERE a=15291;\nUPDATE t2 SET b=64834 WHERE a=15292;\nUPDATE t2 SET b=14442 WHERE a=15293;\nUPDATE t2 SET b=67919 WHERE a=15294;\nUPDATE t2 SET b=36419 WHERE a=15295;\nUPDATE t2 SET b=45183 WHERE a=15296;\nUPDATE t2 SET b=72096 WHERE a=15297;\nUPDATE t2 SET b=11788 WHERE a=15298;\nUPDATE t2 SET b=14070 WHERE a=15299;\nUPDATE t2 SET b=28084 WHERE a=15300;\nUPDATE t2 SET b=55174 WHERE a=15301;\nUPDATE t2 SET b=45569 WHERE a=15302;\nUPDATE t2 SET b=73550 WHERE a=15303;\nUPDATE t2 SET b=30929 WHERE a=15304;\nUPDATE t2 SET b=9740 WHERE a=15305;\nUPDATE t2 SET b=13843 WHERE a=15306;\nUPDATE t2 SET b=77490 WHERE a=15307;\nUPDATE t2 SET b=92280 WHERE a=15308;\nUPDATE t2 SET b=15272 WHERE a=15309;\nUPDATE t2 SET b=70913 WHERE a=15310;\nUPDATE t2 SET b=47440 WHERE a=15311;\nUPDATE t2 SET b=37358 WHERE a=15312;\nUPDATE t2 SET b=89136 WHERE a=15313;\nUPDATE t2 SET b=39367 WHERE a=15314;\nUPDATE t2 SET b=83152 WHERE a=15315;\nUPDATE t2 SET b=58220 WHERE a=15316;\nUPDATE t2 SET b=22675 WHERE a=15317;\nUPDATE t2 SET b=32771 WHERE a=15318;\nUPDATE t2 SET b=81756 WHERE a=15319;\nUPDATE t2 SET b=84459 WHERE a=15320;\nUPDATE t2 SET b=96940 WHERE a=15321;\nUPDATE t2 SET b=72370 WHERE a=15322;\nUPDATE t2 SET b=89578 WHERE a=15323;\nUPDATE t2 SET b=48359 WHERE a=15324;\nUPDATE t2 SET b=34525 WHERE a=15325;\nUPDATE t2 SET b=73681 WHERE a=15326;\nUPDATE t2 SET b=44998 WHERE a=15327;\nUPDATE t2 SET b=71850 WHERE a=15328;\nUPDATE t2 SET b=78933 WHERE a=15329;\nUPDATE t2 SET b=20234 WHERE a=15330;\nUPDATE t2 SET b=15863 WHERE a=15331;\nUPDATE t2 SET b=63592 WHERE a=15332;\nUPDATE t2 SET b=21911 WHERE a=15333;\nUPDATE t2 SET b=92801 WHERE a=15334;\nUPDATE t2 SET b=18598 WHERE a=15335;\nUPDATE t2 SET b=44293 WHERE a=15336;\nUPDATE t2 SET b=19025 WHERE a=15337;\nUPDATE t2 SET b=66328 WHERE a=15338;\nUPDATE t2 SET b=98461 WHERE a=15339;\nUPDATE t2 SET b=52392 WHERE a=15340;\nUPDATE t2 SET b=14940 WHERE a=15341;\nUPDATE t2 SET b=39744 WHERE a=15342;\nUPDATE t2 SET b=69933 WHERE a=15343;\nUPDATE t2 SET b=20869 WHERE a=15344;\nUPDATE t2 SET b=6356 WHERE a=15345;\nUPDATE t2 SET b=7153 WHERE a=15346;\nUPDATE t2 SET b=33533 WHERE a=15347;\nUPDATE t2 SET b=30021 WHERE a=15348;\nUPDATE t2 SET b=36389 WHERE a=15349;\nUPDATE t2 SET b=29882 WHERE a=15350;\nUPDATE t2 SET b=57029 WHERE a=15351;\nUPDATE t2 SET b=72839 WHERE a=15352;\nUPDATE t2 SET b=45314 WHERE a=15353;\nUPDATE t2 SET b=63736 WHERE a=15354;\nUPDATE t2 SET b=40359 WHERE a=15355;\nUPDATE t2 SET b=54491 WHERE a=15356;\nUPDATE t2 SET b=9048 WHERE a=15357;\nUPDATE t2 SET b=79164 WHERE a=15358;\nUPDATE t2 SET b=92515 WHERE a=15359;\nUPDATE t2 SET b=85265 WHERE a=15360;\nUPDATE t2 SET b=17656 WHERE a=15361;\nUPDATE t2 SET b=58379 WHERE a=15362;\nUPDATE t2 SET b=83179 WHERE a=15363;\nUPDATE t2 SET b=77087 WHERE a=15364;\nUPDATE t2 SET b=5725 WHERE a=15365;\nUPDATE t2 SET b=10830 WHERE a=15366;\nUPDATE t2 SET b=38036 WHERE a=15367;\nUPDATE t2 SET b=88730 WHERE a=15368;\nUPDATE t2 SET b=60719 WHERE a=15369;\nUPDATE t2 SET b=69238 WHERE a=15370;\nUPDATE t2 SET b=62492 WHERE a=15371;\nUPDATE t2 SET b=7641 WHERE a=15372;\nUPDATE t2 SET b=50380 WHERE a=15373;\nUPDATE t2 SET b=29816 WHERE a=15374;\nUPDATE t2 SET b=16860 WHERE a=15375;\nUPDATE t2 SET b=41634 WHERE a=15376;\nUPDATE t2 SET b=48098 WHERE a=15377;\nUPDATE t2 SET b=62295 WHERE a=15378;\nUPDATE t2 SET b=1617 WHERE a=15379;\nUPDATE t2 SET b=65085 WHERE a=15380;\nUPDATE t2 SET b=91773 WHERE a=15381;\nUPDATE t2 SET b=79303 WHERE a=15382;\nUPDATE t2 SET b=9355 WHERE a=15383;\nUPDATE t2 SET b=29025 WHERE a=15384;\nUPDATE t2 SET b=40362 WHERE a=15385;\nUPDATE t2 SET b=73255 WHERE a=15386;\nUPDATE t2 SET b=2858 WHERE a=15387;\nUPDATE t2 SET b=51817 WHERE a=15388;\nUPDATE t2 SET b=10186 WHERE a=15389;\nUPDATE t2 SET b=54069 WHERE a=15390;\nUPDATE t2 SET b=55617 WHERE a=15391;\nUPDATE t2 SET b=15096 WHERE a=15392;\nUPDATE t2 SET b=83598 WHERE a=15393;\nUPDATE t2 SET b=85195 WHERE a=15394;\nUPDATE t2 SET b=49903 WHERE a=15395;\nUPDATE t2 SET b=81861 WHERE a=15396;\nUPDATE t2 SET b=4493 WHERE a=15397;\nUPDATE t2 SET b=27178 WHERE a=15398;\nUPDATE t2 SET b=63806 WHERE a=15399;\nUPDATE t2 SET b=68271 WHERE a=15400;\nUPDATE t2 SET b=83320 WHERE a=15401;\nUPDATE t2 SET b=32151 WHERE a=15402;\nUPDATE t2 SET b=99158 WHERE a=15403;\nUPDATE t2 SET b=77581 WHERE a=15404;\nUPDATE t2 SET b=97914 WHERE a=15405;\nUPDATE t2 SET b=13870 WHERE a=15406;\nUPDATE t2 SET b=6493 WHERE a=15407;\nUPDATE t2 SET b=54538 WHERE a=15408;\nUPDATE t2 SET b=98795 WHERE a=15409;\nUPDATE t2 SET b=57214 WHERE a=15410;\nUPDATE t2 SET b=9333 WHERE a=15411;\nUPDATE t2 SET b=5410 WHERE a=15412;\nUPDATE t2 SET b=36672 WHERE a=15413;\nUPDATE t2 SET b=8321 WHERE a=15414;\nUPDATE t2 SET b=46096 WHERE a=15415;\nUPDATE t2 SET b=71256 WHERE a=15416;\nUPDATE t2 SET b=47623 WHERE a=15417;\nUPDATE t2 SET b=84535 WHERE a=15418;\nUPDATE t2 SET b=84242 WHERE a=15419;\nUPDATE t2 SET b=70297 WHERE a=15420;\nUPDATE t2 SET b=566 WHERE a=15421;\nUPDATE t2 SET b=29539 WHERE a=15422;\nUPDATE t2 SET b=4930 WHERE a=15423;\nUPDATE t2 SET b=27373 WHERE a=15424;\nUPDATE t2 SET b=73871 WHERE a=15425;\nUPDATE t2 SET b=61570 WHERE a=15426;\nUPDATE t2 SET b=83017 WHERE a=15427;\nUPDATE t2 SET b=89689 WHERE a=15428;\nUPDATE t2 SET b=93393 WHERE a=15429;\nUPDATE t2 SET b=68196 WHERE a=15430;\nUPDATE t2 SET b=78145 WHERE a=15431;\nUPDATE t2 SET b=18049 WHERE a=15432;\nUPDATE t2 SET b=30863 WHERE a=15433;\nUPDATE t2 SET b=76603 WHERE a=15434;\nUPDATE t2 SET b=90482 WHERE a=15435;\nUPDATE t2 SET b=4936 WHERE a=15436;\nUPDATE t2 SET b=20710 WHERE a=15437;\nUPDATE t2 SET b=90588 WHERE a=15438;\nUPDATE t2 SET b=4269 WHERE a=15439;\nUPDATE t2 SET b=29900 WHERE a=15440;\nUPDATE t2 SET b=55621 WHERE a=15441;\nUPDATE t2 SET b=88414 WHERE a=15442;\nUPDATE t2 SET b=38312 WHERE a=15443;\nUPDATE t2 SET b=93479 WHERE a=15444;\nUPDATE t2 SET b=92898 WHERE a=15445;\nUPDATE t2 SET b=82386 WHERE a=15446;\nUPDATE t2 SET b=63225 WHERE a=15447;\nUPDATE t2 SET b=31808 WHERE a=15448;\nUPDATE t2 SET b=41449 WHERE a=15449;\nUPDATE t2 SET b=81135 WHERE a=15450;\nUPDATE t2 SET b=60525 WHERE a=15451;\nUPDATE t2 SET b=66 WHERE a=15452;\nUPDATE t2 SET b=44670 WHERE a=15453;\nUPDATE t2 SET b=2015 WHERE a=15454;\nUPDATE t2 SET b=28474 WHERE a=15455;\nUPDATE t2 SET b=32008 WHERE a=15456;\nUPDATE t2 SET b=64566 WHERE a=15457;\nUPDATE t2 SET b=48388 WHERE a=15458;\nUPDATE t2 SET b=37760 WHERE a=15459;\nUPDATE t2 SET b=52844 WHERE a=15460;\nUPDATE t2 SET b=5483 WHERE a=15461;\nUPDATE t2 SET b=27452 WHERE a=15462;\nUPDATE t2 SET b=75623 WHERE a=15463;\nUPDATE t2 SET b=5117 WHERE a=15464;\nUPDATE t2 SET b=66987 WHERE a=15465;\nUPDATE t2 SET b=68497 WHERE a=15466;\nUPDATE t2 SET b=53500 WHERE a=15467;\nUPDATE t2 SET b=96221 WHERE a=15468;\nUPDATE t2 SET b=37555 WHERE a=15469;\nUPDATE t2 SET b=34149 WHERE a=15470;\nUPDATE t2 SET b=56925 WHERE a=15471;\nUPDATE t2 SET b=49421 WHERE a=15472;\nUPDATE t2 SET b=12963 WHERE a=15473;\nUPDATE t2 SET b=46047 WHERE a=15474;\nUPDATE t2 SET b=73708 WHERE a=15475;\nUPDATE t2 SET b=59540 WHERE a=15476;\nUPDATE t2 SET b=87119 WHERE a=15477;\nUPDATE t2 SET b=4170 WHERE a=15478;\nUPDATE t2 SET b=16266 WHERE a=15479;\nUPDATE t2 SET b=42721 WHERE a=15480;\nUPDATE t2 SET b=10485 WHERE a=15481;\nUPDATE t2 SET b=97959 WHERE a=15482;\nUPDATE t2 SET b=87359 WHERE a=15483;\nUPDATE t2 SET b=55159 WHERE a=15484;\nUPDATE t2 SET b=31856 WHERE a=15485;\nUPDATE t2 SET b=84932 WHERE a=15486;\nUPDATE t2 SET b=60839 WHERE a=15487;\nUPDATE t2 SET b=94417 WHERE a=15488;\nUPDATE t2 SET b=83508 WHERE a=15489;\nUPDATE t2 SET b=76186 WHERE a=15490;\nUPDATE t2 SET b=23457 WHERE a=15491;\nUPDATE t2 SET b=59983 WHERE a=15492;\nUPDATE t2 SET b=37420 WHERE a=15493;\nUPDATE t2 SET b=66058 WHERE a=15494;\nUPDATE t2 SET b=43813 WHERE a=15495;\nUPDATE t2 SET b=27446 WHERE a=15496;\nUPDATE t2 SET b=57324 WHERE a=15497;\nUPDATE t2 SET b=68495 WHERE a=15498;\nUPDATE t2 SET b=74567 WHERE a=15499;\nUPDATE t2 SET b=64371 WHERE a=15500;\nUPDATE t2 SET b=32754 WHERE a=15501;\nUPDATE t2 SET b=12166 WHERE a=15502;\nUPDATE t2 SET b=66074 WHERE a=15503;\nUPDATE t2 SET b=71421 WHERE a=15504;\nUPDATE t2 SET b=91130 WHERE a=15505;\nUPDATE t2 SET b=37665 WHERE a=15506;\nUPDATE t2 SET b=5772 WHERE a=15507;\nUPDATE t2 SET b=32019 WHERE a=15508;\nUPDATE t2 SET b=21049 WHERE a=15509;\nUPDATE t2 SET b=23299 WHERE a=15510;\nUPDATE t2 SET b=32573 WHERE a=15511;\nUPDATE t2 SET b=95111 WHERE a=15512;\nUPDATE t2 SET b=10909 WHERE a=15513;\nUPDATE t2 SET b=40535 WHERE a=15514;\nUPDATE t2 SET b=54341 WHERE a=15515;\nUPDATE t2 SET b=40348 WHERE a=15516;\nUPDATE t2 SET b=47839 WHERE a=15517;\nUPDATE t2 SET b=97017 WHERE a=15518;\nUPDATE t2 SET b=8878 WHERE a=15519;\nUPDATE t2 SET b=53143 WHERE a=15520;\nUPDATE t2 SET b=55524 WHERE a=15521;\nUPDATE t2 SET b=55644 WHERE a=15522;\nUPDATE t2 SET b=50131 WHERE a=15523;\nUPDATE t2 SET b=82893 WHERE a=15524;\nUPDATE t2 SET b=6589 WHERE a=15525;\nUPDATE t2 SET b=39444 WHERE a=15526;\nUPDATE t2 SET b=21817 WHERE a=15527;\nUPDATE t2 SET b=10978 WHERE a=15528;\nUPDATE t2 SET b=18133 WHERE a=15529;\nUPDATE t2 SET b=27248 WHERE a=15530;\nUPDATE t2 SET b=10518 WHERE a=15531;\nUPDATE t2 SET b=22550 WHERE a=15532;\nUPDATE t2 SET b=72849 WHERE a=15533;\nUPDATE t2 SET b=31256 WHERE a=15534;\nUPDATE t2 SET b=14536 WHERE a=15535;\nUPDATE t2 SET b=77911 WHERE a=15536;\nUPDATE t2 SET b=63485 WHERE a=15537;\nUPDATE t2 SET b=28182 WHERE a=15538;\nUPDATE t2 SET b=30231 WHERE a=15539;\nUPDATE t2 SET b=25016 WHERE a=15540;\nUPDATE t2 SET b=40452 WHERE a=15541;\nUPDATE t2 SET b=17669 WHERE a=15542;\nUPDATE t2 SET b=22568 WHERE a=15543;\nUPDATE t2 SET b=99889 WHERE a=15544;\nUPDATE t2 SET b=8403 WHERE a=15545;\nUPDATE t2 SET b=38365 WHERE a=15546;\nUPDATE t2 SET b=16040 WHERE a=15547;\nUPDATE t2 SET b=83108 WHERE a=15548;\nUPDATE t2 SET b=32468 WHERE a=15549;\nUPDATE t2 SET b=91164 WHERE a=15550;\nUPDATE t2 SET b=72909 WHERE a=15551;\nUPDATE t2 SET b=69887 WHERE a=15552;\nUPDATE t2 SET b=71304 WHERE a=15553;\nUPDATE t2 SET b=89904 WHERE a=15554;\nUPDATE t2 SET b=87392 WHERE a=15555;\nUPDATE t2 SET b=8245 WHERE a=15556;\nUPDATE t2 SET b=59706 WHERE a=15557;\nUPDATE t2 SET b=6628 WHERE a=15558;\nUPDATE t2 SET b=2041 WHERE a=15559;\nUPDATE t2 SET b=80690 WHERE a=15560;\nUPDATE t2 SET b=76888 WHERE a=15561;\nUPDATE t2 SET b=17141 WHERE a=15562;\nUPDATE t2 SET b=81278 WHERE a=15563;\nUPDATE t2 SET b=48403 WHERE a=15564;\nUPDATE t2 SET b=17872 WHERE a=15565;\nUPDATE t2 SET b=65465 WHERE a=15566;\nUPDATE t2 SET b=69432 WHERE a=15567;\nUPDATE t2 SET b=15369 WHERE a=15568;\nUPDATE t2 SET b=66729 WHERE a=15569;\nUPDATE t2 SET b=13633 WHERE a=15570;\nUPDATE t2 SET b=17575 WHERE a=15571;\nUPDATE t2 SET b=74469 WHERE a=15572;\nUPDATE t2 SET b=9969 WHERE a=15573;\nUPDATE t2 SET b=2271 WHERE a=15574;\nUPDATE t2 SET b=2738 WHERE a=15575;\nUPDATE t2 SET b=87570 WHERE a=15576;\nUPDATE t2 SET b=78640 WHERE a=15577;\nUPDATE t2 SET b=14909 WHERE a=15578;\nUPDATE t2 SET b=1139 WHERE a=15579;\nUPDATE t2 SET b=60178 WHERE a=15580;\nUPDATE t2 SET b=32178 WHERE a=15581;\nUPDATE t2 SET b=41515 WHERE a=15582;\nUPDATE t2 SET b=11922 WHERE a=15583;\nUPDATE t2 SET b=61989 WHERE a=15584;\nUPDATE t2 SET b=95145 WHERE a=15585;\nUPDATE t2 SET b=91355 WHERE a=15586;\nUPDATE t2 SET b=83248 WHERE a=15587;\nUPDATE t2 SET b=83315 WHERE a=15588;\nUPDATE t2 SET b=81414 WHERE a=15589;\nUPDATE t2 SET b=93564 WHERE a=15590;\nUPDATE t2 SET b=14764 WHERE a=15591;\nUPDATE t2 SET b=89575 WHERE a=15592;\nUPDATE t2 SET b=27776 WHERE a=15593;\nUPDATE t2 SET b=65565 WHERE a=15594;\nUPDATE t2 SET b=4500 WHERE a=15595;\nUPDATE t2 SET b=60335 WHERE a=15596;\nUPDATE t2 SET b=62931 WHERE a=15597;\nUPDATE t2 SET b=84178 WHERE a=15598;\nUPDATE t2 SET b=54088 WHERE a=15599;\nUPDATE t2 SET b=34642 WHERE a=15600;\nUPDATE t2 SET b=94690 WHERE a=15601;\nUPDATE t2 SET b=88900 WHERE a=15602;\nUPDATE t2 SET b=29467 WHERE a=15603;\nUPDATE t2 SET b=63966 WHERE a=15604;\nUPDATE t2 SET b=85871 WHERE a=15605;\nUPDATE t2 SET b=35421 WHERE a=15606;\nUPDATE t2 SET b=95889 WHERE a=15607;\nUPDATE t2 SET b=42029 WHERE a=15608;\nUPDATE t2 SET b=65896 WHERE a=15609;\nUPDATE t2 SET b=96603 WHERE a=15610;\nUPDATE t2 SET b=74136 WHERE a=15611;\nUPDATE t2 SET b=46184 WHERE a=15612;\nUPDATE t2 SET b=62233 WHERE a=15613;\nUPDATE t2 SET b=84820 WHERE a=15614;\nUPDATE t2 SET b=69162 WHERE a=15615;\nUPDATE t2 SET b=44189 WHERE a=15616;\nUPDATE t2 SET b=21762 WHERE a=15617;\nUPDATE t2 SET b=78127 WHERE a=15618;\nUPDATE t2 SET b=16761 WHERE a=15619;\nUPDATE t2 SET b=48081 WHERE a=15620;\nUPDATE t2 SET b=89197 WHERE a=15621;\nUPDATE t2 SET b=31087 WHERE a=15622;\nUPDATE t2 SET b=62537 WHERE a=15623;\nUPDATE t2 SET b=81816 WHERE a=15624;\nUPDATE t2 SET b=7479 WHERE a=15625;\nUPDATE t2 SET b=88771 WHERE a=15626;\nUPDATE t2 SET b=15302 WHERE a=15627;\nUPDATE t2 SET b=76177 WHERE a=15628;\nUPDATE t2 SET b=69570 WHERE a=15629;\nUPDATE t2 SET b=73672 WHERE a=15630;\nUPDATE t2 SET b=29133 WHERE a=15631;\nUPDATE t2 SET b=38315 WHERE a=15632;\nUPDATE t2 SET b=62124 WHERE a=15633;\nUPDATE t2 SET b=1995 WHERE a=15634;\nUPDATE t2 SET b=26604 WHERE a=15635;\nUPDATE t2 SET b=30724 WHERE a=15636;\nUPDATE t2 SET b=8517 WHERE a=15637;\nUPDATE t2 SET b=14143 WHERE a=15638;\nUPDATE t2 SET b=63189 WHERE a=15639;\nUPDATE t2 SET b=41092 WHERE a=15640;\nUPDATE t2 SET b=34714 WHERE a=15641;\nUPDATE t2 SET b=43557 WHERE a=15642;\nUPDATE t2 SET b=95460 WHERE a=15643;\nUPDATE t2 SET b=86160 WHERE a=15644;\nUPDATE t2 SET b=45170 WHERE a=15645;\nUPDATE t2 SET b=77130 WHERE a=15646;\nUPDATE t2 SET b=78901 WHERE a=15647;\nUPDATE t2 SET b=14597 WHERE a=15648;\nUPDATE t2 SET b=1708 WHERE a=15649;\nUPDATE t2 SET b=33485 WHERE a=15650;\nUPDATE t2 SET b=73734 WHERE a=15651;\nUPDATE t2 SET b=83506 WHERE a=15652;\nUPDATE t2 SET b=84705 WHERE a=15653;\nUPDATE t2 SET b=84479 WHERE a=15654;\nUPDATE t2 SET b=44452 WHERE a=15655;\nUPDATE t2 SET b=93267 WHERE a=15656;\nUPDATE t2 SET b=72545 WHERE a=15657;\nUPDATE t2 SET b=27744 WHERE a=15658;\nUPDATE t2 SET b=75297 WHERE a=15659;\nUPDATE t2 SET b=57622 WHERE a=15660;\nUPDATE t2 SET b=686 WHERE a=15661;\nUPDATE t2 SET b=62137 WHERE a=15662;\nUPDATE t2 SET b=46187 WHERE a=15663;\nUPDATE t2 SET b=96327 WHERE a=15664;\nUPDATE t2 SET b=21735 WHERE a=15665;\nUPDATE t2 SET b=51265 WHERE a=15666;\nUPDATE t2 SET b=172 WHERE a=15667;\nUPDATE t2 SET b=74860 WHERE a=15668;\nUPDATE t2 SET b=71051 WHERE a=15669;\nUPDATE t2 SET b=86523 WHERE a=15670;\nUPDATE t2 SET b=15353 WHERE a=15671;\nUPDATE t2 SET b=7339 WHERE a=15672;\nUPDATE t2 SET b=48954 WHERE a=15673;\nUPDATE t2 SET b=78734 WHERE a=15674;\nUPDATE t2 SET b=80930 WHERE a=15675;\nUPDATE t2 SET b=93435 WHERE a=15676;\nUPDATE t2 SET b=68553 WHERE a=15677;\nUPDATE t2 SET b=38265 WHERE a=15678;\nUPDATE t2 SET b=71944 WHERE a=15679;\nUPDATE t2 SET b=74811 WHERE a=15680;\nUPDATE t2 SET b=11750 WHERE a=15681;\nUPDATE t2 SET b=96346 WHERE a=15682;\nUPDATE t2 SET b=13361 WHERE a=15683;\nUPDATE t2 SET b=806 WHERE a=15684;\nUPDATE t2 SET b=31093 WHERE a=15685;\nUPDATE t2 SET b=68706 WHERE a=15686;\nUPDATE t2 SET b=32453 WHERE a=15687;\nUPDATE t2 SET b=64082 WHERE a=15688;\nUPDATE t2 SET b=44020 WHERE a=15689;\nUPDATE t2 SET b=18636 WHERE a=15690;\nUPDATE t2 SET b=75194 WHERE a=15691;\nUPDATE t2 SET b=25111 WHERE a=15692;\nUPDATE t2 SET b=60806 WHERE a=15693;\nUPDATE t2 SET b=49447 WHERE a=15694;\nUPDATE t2 SET b=33264 WHERE a=15695;\nUPDATE t2 SET b=3592 WHERE a=15696;\nUPDATE t2 SET b=22157 WHERE a=15697;\nUPDATE t2 SET b=15613 WHERE a=15698;\nUPDATE t2 SET b=50884 WHERE a=15699;\nUPDATE t2 SET b=72099 WHERE a=15700;\nUPDATE t2 SET b=80633 WHERE a=15701;\nUPDATE t2 SET b=50628 WHERE a=15702;\nUPDATE t2 SET b=29497 WHERE a=15703;\nUPDATE t2 SET b=61757 WHERE a=15704;\nUPDATE t2 SET b=74814 WHERE a=15705;\nUPDATE t2 SET b=78616 WHERE a=15706;\nUPDATE t2 SET b=29755 WHERE a=15707;\nUPDATE t2 SET b=5890 WHERE a=15708;\nUPDATE t2 SET b=25504 WHERE a=15709;\nUPDATE t2 SET b=92291 WHERE a=15710;\nUPDATE t2 SET b=73579 WHERE a=15711;\nUPDATE t2 SET b=8060 WHERE a=15712;\nUPDATE t2 SET b=71422 WHERE a=15713;\nUPDATE t2 SET b=2933 WHERE a=15714;\nUPDATE t2 SET b=12426 WHERE a=15715;\nUPDATE t2 SET b=30856 WHERE a=15716;\nUPDATE t2 SET b=8958 WHERE a=15717;\nUPDATE t2 SET b=80216 WHERE a=15718;\nUPDATE t2 SET b=90961 WHERE a=15719;\nUPDATE t2 SET b=43352 WHERE a=15720;\nUPDATE t2 SET b=81636 WHERE a=15721;\nUPDATE t2 SET b=66892 WHERE a=15722;\nUPDATE t2 SET b=22750 WHERE a=15723;\nUPDATE t2 SET b=4826 WHERE a=15724;\nUPDATE t2 SET b=16439 WHERE a=15725;\nUPDATE t2 SET b=57482 WHERE a=15726;\nUPDATE t2 SET b=49966 WHERE a=15727;\nUPDATE t2 SET b=50235 WHERE a=15728;\nUPDATE t2 SET b=25770 WHERE a=15729;\nUPDATE t2 SET b=88374 WHERE a=15730;\nUPDATE t2 SET b=42685 WHERE a=15731;\nUPDATE t2 SET b=70484 WHERE a=15732;\nUPDATE t2 SET b=29669 WHERE a=15733;\nUPDATE t2 SET b=57335 WHERE a=15734;\nUPDATE t2 SET b=79689 WHERE a=15735;\nUPDATE t2 SET b=40607 WHERE a=15736;\nUPDATE t2 SET b=16770 WHERE a=15737;\nUPDATE t2 SET b=754 WHERE a=15738;\nUPDATE t2 SET b=95600 WHERE a=15739;\nUPDATE t2 SET b=90019 WHERE a=15740;\nUPDATE t2 SET b=8618 WHERE a=15741;\nUPDATE t2 SET b=59194 WHERE a=15742;\nUPDATE t2 SET b=36778 WHERE a=15743;\nUPDATE t2 SET b=88080 WHERE a=15744;\nUPDATE t2 SET b=72668 WHERE a=15745;\nUPDATE t2 SET b=89784 WHERE a=15746;\nUPDATE t2 SET b=723 WHERE a=15747;\nUPDATE t2 SET b=59345 WHERE a=15748;\nUPDATE t2 SET b=98654 WHERE a=15749;\nUPDATE t2 SET b=29599 WHERE a=15750;\nUPDATE t2 SET b=11347 WHERE a=15751;\nUPDATE t2 SET b=88148 WHERE a=15752;\nUPDATE t2 SET b=7284 WHERE a=15753;\nUPDATE t2 SET b=7917 WHERE a=15754;\nUPDATE t2 SET b=67438 WHERE a=15755;\nUPDATE t2 SET b=76849 WHERE a=15756;\nUPDATE t2 SET b=60540 WHERE a=15757;\nUPDATE t2 SET b=62934 WHERE a=15758;\nUPDATE t2 SET b=60100 WHERE a=15759;\nUPDATE t2 SET b=79130 WHERE a=15760;\nUPDATE t2 SET b=66891 WHERE a=15761;\nUPDATE t2 SET b=1530 WHERE a=15762;\nUPDATE t2 SET b=27548 WHERE a=15763;\nUPDATE t2 SET b=59029 WHERE a=15764;\nUPDATE t2 SET b=40927 WHERE a=15765;\nUPDATE t2 SET b=86305 WHERE a=15766;\nUPDATE t2 SET b=18833 WHERE a=15767;\nUPDATE t2 SET b=26817 WHERE a=15768;\nUPDATE t2 SET b=3743 WHERE a=15769;\nUPDATE t2 SET b=99047 WHERE a=15770;\nUPDATE t2 SET b=26767 WHERE a=15771;\nUPDATE t2 SET b=23474 WHERE a=15772;\nUPDATE t2 SET b=9193 WHERE a=15773;\nUPDATE t2 SET b=42720 WHERE a=15774;\nUPDATE t2 SET b=40729 WHERE a=15775;\nUPDATE t2 SET b=80038 WHERE a=15776;\nUPDATE t2 SET b=25001 WHERE a=15777;\nUPDATE t2 SET b=33302 WHERE a=15778;\nUPDATE t2 SET b=8043 WHERE a=15779;\nUPDATE t2 SET b=95718 WHERE a=15780;\nUPDATE t2 SET b=36322 WHERE a=15781;\nUPDATE t2 SET b=14243 WHERE a=15782;\nUPDATE t2 SET b=4061 WHERE a=15783;\nUPDATE t2 SET b=8657 WHERE a=15784;\nUPDATE t2 SET b=75157 WHERE a=15785;\nUPDATE t2 SET b=42176 WHERE a=15786;\nUPDATE t2 SET b=1016 WHERE a=15787;\nUPDATE t2 SET b=45886 WHERE a=15788;\nUPDATE t2 SET b=17839 WHERE a=15789;\nUPDATE t2 SET b=1907 WHERE a=15790;\nUPDATE t2 SET b=91591 WHERE a=15791;\nUPDATE t2 SET b=6153 WHERE a=15792;\nUPDATE t2 SET b=6724 WHERE a=15793;\nUPDATE t2 SET b=12982 WHERE a=15794;\nUPDATE t2 SET b=76090 WHERE a=15795;\nUPDATE t2 SET b=41572 WHERE a=15796;\nUPDATE t2 SET b=68307 WHERE a=15797;\nUPDATE t2 SET b=45063 WHERE a=15798;\nUPDATE t2 SET b=11327 WHERE a=15799;\nUPDATE t2 SET b=63267 WHERE a=15800;\nUPDATE t2 SET b=72330 WHERE a=15801;\nUPDATE t2 SET b=22622 WHERE a=15802;\nUPDATE t2 SET b=92184 WHERE a=15803;\nUPDATE t2 SET b=85050 WHERE a=15804;\nUPDATE t2 SET b=67017 WHERE a=15805;\nUPDATE t2 SET b=51900 WHERE a=15806;\nUPDATE t2 SET b=42722 WHERE a=15807;\nUPDATE t2 SET b=76434 WHERE a=15808;\nUPDATE t2 SET b=47952 WHERE a=15809;\nUPDATE t2 SET b=43516 WHERE a=15810;\nUPDATE t2 SET b=92221 WHERE a=15811;\nUPDATE t2 SET b=54363 WHERE a=15812;\nUPDATE t2 SET b=67259 WHERE a=15813;\nUPDATE t2 SET b=7684 WHERE a=15814;\nUPDATE t2 SET b=132 WHERE a=15815;\nUPDATE t2 SET b=76685 WHERE a=15816;\nUPDATE t2 SET b=95029 WHERE a=15817;\nUPDATE t2 SET b=9480 WHERE a=15818;\nUPDATE t2 SET b=7099 WHERE a=15819;\nUPDATE t2 SET b=80507 WHERE a=15820;\nUPDATE t2 SET b=29888 WHERE a=15821;\nUPDATE t2 SET b=73003 WHERE a=15822;\nUPDATE t2 SET b=10293 WHERE a=15823;\nUPDATE t2 SET b=38307 WHERE a=15824;\nUPDATE t2 SET b=99080 WHERE a=15825;\nUPDATE t2 SET b=50209 WHERE a=15826;\nUPDATE t2 SET b=35353 WHERE a=15827;\nUPDATE t2 SET b=95499 WHERE a=15828;\nUPDATE t2 SET b=99720 WHERE a=15829;\nUPDATE t2 SET b=93184 WHERE a=15830;\nUPDATE t2 SET b=53874 WHERE a=15831;\nUPDATE t2 SET b=14713 WHERE a=15832;\nUPDATE t2 SET b=95271 WHERE a=15833;\nUPDATE t2 SET b=5497 WHERE a=15834;\nUPDATE t2 SET b=92886 WHERE a=15835;\nUPDATE t2 SET b=9478 WHERE a=15836;\nUPDATE t2 SET b=298 WHERE a=15837;\nUPDATE t2 SET b=59715 WHERE a=15838;\nUPDATE t2 SET b=83714 WHERE a=15839;\nUPDATE t2 SET b=64370 WHERE a=15840;\nUPDATE t2 SET b=63816 WHERE a=15841;\nUPDATE t2 SET b=25877 WHERE a=15842;\nUPDATE t2 SET b=69758 WHERE a=15843;\nUPDATE t2 SET b=7331 WHERE a=15844;\nUPDATE t2 SET b=98630 WHERE a=15845;\nUPDATE t2 SET b=38606 WHERE a=15846;\nUPDATE t2 SET b=23544 WHERE a=15847;\nUPDATE t2 SET b=13518 WHERE a=15848;\nUPDATE t2 SET b=78144 WHERE a=15849;\nUPDATE t2 SET b=18423 WHERE a=15850;\nUPDATE t2 SET b=89081 WHERE a=15851;\nUPDATE t2 SET b=82096 WHERE a=15852;\nUPDATE t2 SET b=74411 WHERE a=15853;\nUPDATE t2 SET b=29510 WHERE a=15854;\nUPDATE t2 SET b=98729 WHERE a=15855;\nUPDATE t2 SET b=28252 WHERE a=15856;\nUPDATE t2 SET b=32539 WHERE a=15857;\nUPDATE t2 SET b=43833 WHERE a=15858;\nUPDATE t2 SET b=70180 WHERE a=15859;\nUPDATE t2 SET b=57569 WHERE a=15860;\nUPDATE t2 SET b=6355 WHERE a=15861;\nUPDATE t2 SET b=77046 WHERE a=15862;\nUPDATE t2 SET b=23906 WHERE a=15863;\nUPDATE t2 SET b=53219 WHERE a=15864;\nUPDATE t2 SET b=18830 WHERE a=15865;\nUPDATE t2 SET b=51826 WHERE a=15866;\nUPDATE t2 SET b=76812 WHERE a=15867;\nUPDATE t2 SET b=35932 WHERE a=15868;\nUPDATE t2 SET b=61765 WHERE a=15869;\nUPDATE t2 SET b=95730 WHERE a=15870;\nUPDATE t2 SET b=76139 WHERE a=15871;\nUPDATE t2 SET b=84722 WHERE a=15872;\nUPDATE t2 SET b=2704 WHERE a=15873;\nUPDATE t2 SET b=16580 WHERE a=15874;\nUPDATE t2 SET b=54765 WHERE a=15875;\nUPDATE t2 SET b=45552 WHERE a=15876;\nUPDATE t2 SET b=82713 WHERE a=15877;\nUPDATE t2 SET b=33559 WHERE a=15878;\nUPDATE t2 SET b=68598 WHERE a=15879;\nUPDATE t2 SET b=46758 WHERE a=15880;\nUPDATE t2 SET b=57010 WHERE a=15881;\nUPDATE t2 SET b=20019 WHERE a=15882;\nUPDATE t2 SET b=13366 WHERE a=15883;\nUPDATE t2 SET b=51551 WHERE a=15884;\nUPDATE t2 SET b=72812 WHERE a=15885;\nUPDATE t2 SET b=50928 WHERE a=15886;\nUPDATE t2 SET b=97892 WHERE a=15887;\nUPDATE t2 SET b=31193 WHERE a=15888;\nUPDATE t2 SET b=56592 WHERE a=15889;\nUPDATE t2 SET b=22955 WHERE a=15890;\nUPDATE t2 SET b=23347 WHERE a=15891;\nUPDATE t2 SET b=27487 WHERE a=15892;\nUPDATE t2 SET b=30343 WHERE a=15893;\nUPDATE t2 SET b=34741 WHERE a=15894;\nUPDATE t2 SET b=68817 WHERE a=15895;\nUPDATE t2 SET b=59626 WHERE a=15896;\nUPDATE t2 SET b=56618 WHERE a=15897;\nUPDATE t2 SET b=70258 WHERE a=15898;\nUPDATE t2 SET b=73970 WHERE a=15899;\nUPDATE t2 SET b=57630 WHERE a=15900;\nUPDATE t2 SET b=44098 WHERE a=15901;\nUPDATE t2 SET b=33867 WHERE a=15902;\nUPDATE t2 SET b=54200 WHERE a=15903;\nUPDATE t2 SET b=44572 WHERE a=15904;\nUPDATE t2 SET b=99344 WHERE a=15905;\nUPDATE t2 SET b=78872 WHERE a=15906;\nUPDATE t2 SET b=65909 WHERE a=15907;\nUPDATE t2 SET b=21227 WHERE a=15908;\nUPDATE t2 SET b=54308 WHERE a=15909;\nUPDATE t2 SET b=33007 WHERE a=15910;\nUPDATE t2 SET b=8721 WHERE a=15911;\nUPDATE t2 SET b=92389 WHERE a=15912;\nUPDATE t2 SET b=37480 WHERE a=15913;\nUPDATE t2 SET b=12070 WHERE a=15914;\nUPDATE t2 SET b=76975 WHERE a=15915;\nUPDATE t2 SET b=9865 WHERE a=15916;\nUPDATE t2 SET b=30634 WHERE a=15917;\nUPDATE t2 SET b=35366 WHERE a=15918;\nUPDATE t2 SET b=39073 WHERE a=15919;\nUPDATE t2 SET b=49178 WHERE a=15920;\nUPDATE t2 SET b=98546 WHERE a=15921;\nUPDATE t2 SET b=89255 WHERE a=15922;\nUPDATE t2 SET b=81776 WHERE a=15923;\nUPDATE t2 SET b=26809 WHERE a=15924;\nUPDATE t2 SET b=69768 WHERE a=15925;\nUPDATE t2 SET b=43790 WHERE a=15926;\nUPDATE t2 SET b=34398 WHERE a=15927;\nUPDATE t2 SET b=4750 WHERE a=15928;\nUPDATE t2 SET b=64546 WHERE a=15929;\nUPDATE t2 SET b=25689 WHERE a=15930;\nUPDATE t2 SET b=45784 WHERE a=15931;\nUPDATE t2 SET b=66257 WHERE a=15932;\nUPDATE t2 SET b=91093 WHERE a=15933;\nUPDATE t2 SET b=44917 WHERE a=15934;\nUPDATE t2 SET b=33397 WHERE a=15935;\nUPDATE t2 SET b=51128 WHERE a=15936;\nUPDATE t2 SET b=35606 WHERE a=15937;\nUPDATE t2 SET b=66336 WHERE a=15938;\nUPDATE t2 SET b=33389 WHERE a=15939;\nUPDATE t2 SET b=65109 WHERE a=15940;\nUPDATE t2 SET b=54905 WHERE a=15941;\nUPDATE t2 SET b=6387 WHERE a=15942;\nUPDATE t2 SET b=58323 WHERE a=15943;\nUPDATE t2 SET b=51029 WHERE a=15944;\nUPDATE t2 SET b=27908 WHERE a=15945;\nUPDATE t2 SET b=46090 WHERE a=15946;\nUPDATE t2 SET b=69993 WHERE a=15947;\nUPDATE t2 SET b=54560 WHERE a=15948;\nUPDATE t2 SET b=81970 WHERE a=15949;\nUPDATE t2 SET b=72602 WHERE a=15950;\nUPDATE t2 SET b=89682 WHERE a=15951;\nUPDATE t2 SET b=94202 WHERE a=15952;\nUPDATE t2 SET b=94901 WHERE a=15953;\nUPDATE t2 SET b=87430 WHERE a=15954;\nUPDATE t2 SET b=84668 WHERE a=15955;\nUPDATE t2 SET b=72273 WHERE a=15956;\nUPDATE t2 SET b=19785 WHERE a=15957;\nUPDATE t2 SET b=18942 WHERE a=15958;\nUPDATE t2 SET b=62794 WHERE a=15959;\nUPDATE t2 SET b=51578 WHERE a=15960;\nUPDATE t2 SET b=4077 WHERE a=15961;\nUPDATE t2 SET b=86994 WHERE a=15962;\nUPDATE t2 SET b=75904 WHERE a=15963;\nUPDATE t2 SET b=5404 WHERE a=15964;\nUPDATE t2 SET b=92289 WHERE a=15965;\nUPDATE t2 SET b=55623 WHERE a=15966;\nUPDATE t2 SET b=75354 WHERE a=15967;\nUPDATE t2 SET b=65105 WHERE a=15968;\nUPDATE t2 SET b=26081 WHERE a=15969;\nUPDATE t2 SET b=42957 WHERE a=15970;\nUPDATE t2 SET b=90966 WHERE a=15971;\nUPDATE t2 SET b=85047 WHERE a=15972;\nUPDATE t2 SET b=78894 WHERE a=15973;\nUPDATE t2 SET b=75384 WHERE a=15974;\nUPDATE t2 SET b=58776 WHERE a=15975;\nUPDATE t2 SET b=36240 WHERE a=15976;\nUPDATE t2 SET b=48659 WHERE a=15977;\nUPDATE t2 SET b=29780 WHERE a=15978;\nUPDATE t2 SET b=2 WHERE a=15979;\nUPDATE t2 SET b=85533 WHERE a=15980;\nUPDATE t2 SET b=75819 WHERE a=15981;\nUPDATE t2 SET b=7594 WHERE a=15982;\nUPDATE t2 SET b=38555 WHERE a=15983;\nUPDATE t2 SET b=94626 WHERE a=15984;\nUPDATE t2 SET b=96670 WHERE a=15985;\nUPDATE t2 SET b=43161 WHERE a=15986;\nUPDATE t2 SET b=75637 WHERE a=15987;\nUPDATE t2 SET b=35986 WHERE a=15988;\nUPDATE t2 SET b=18593 WHERE a=15989;\nUPDATE t2 SET b=86937 WHERE a=15990;\nUPDATE t2 SET b=18739 WHERE a=15991;\nUPDATE t2 SET b=91800 WHERE a=15992;\nUPDATE t2 SET b=37214 WHERE a=15993;\nUPDATE t2 SET b=20349 WHERE a=15994;\nUPDATE t2 SET b=88904 WHERE a=15995;\nUPDATE t2 SET b=18769 WHERE a=15996;\nUPDATE t2 SET b=67485 WHERE a=15997;\nUPDATE t2 SET b=1224 WHERE a=15998;\nUPDATE t2 SET b=56917 WHERE a=15999;\nUPDATE t2 SET b=60369 WHERE a=16000;\nUPDATE t2 SET b=85983 WHERE a=16001;\nUPDATE t2 SET b=46553 WHERE a=16002;\nUPDATE t2 SET b=85342 WHERE a=16003;\nUPDATE t2 SET b=72250 WHERE a=16004;\nUPDATE t2 SET b=48973 WHERE a=16005;\nUPDATE t2 SET b=38767 WHERE a=16006;\nUPDATE t2 SET b=99875 WHERE a=16007;\nUPDATE t2 SET b=98266 WHERE a=16008;\nUPDATE t2 SET b=56225 WHERE a=16009;\nUPDATE t2 SET b=71778 WHERE a=16010;\nUPDATE t2 SET b=97146 WHERE a=16011;\nUPDATE t2 SET b=3606 WHERE a=16012;\nUPDATE t2 SET b=83608 WHERE a=16013;\nUPDATE t2 SET b=64469 WHERE a=16014;\nUPDATE t2 SET b=80695 WHERE a=16015;\nUPDATE t2 SET b=93516 WHERE a=16016;\nUPDATE t2 SET b=70976 WHERE a=16017;\nUPDATE t2 SET b=28541 WHERE a=16018;\nUPDATE t2 SET b=86505 WHERE a=16019;\nUPDATE t2 SET b=11547 WHERE a=16020;\nUPDATE t2 SET b=63763 WHERE a=16021;\nUPDATE t2 SET b=11462 WHERE a=16022;\nUPDATE t2 SET b=54896 WHERE a=16023;\nUPDATE t2 SET b=71039 WHERE a=16024;\nUPDATE t2 SET b=18189 WHERE a=16025;\nUPDATE t2 SET b=18653 WHERE a=16026;\nUPDATE t2 SET b=8065 WHERE a=16027;\nUPDATE t2 SET b=12111 WHERE a=16028;\nUPDATE t2 SET b=68950 WHERE a=16029;\nUPDATE t2 SET b=11156 WHERE a=16030;\nUPDATE t2 SET b=50376 WHERE a=16031;\nUPDATE t2 SET b=48839 WHERE a=16032;\nUPDATE t2 SET b=81775 WHERE a=16033;\nUPDATE t2 SET b=43411 WHERE a=16034;\nUPDATE t2 SET b=14601 WHERE a=16035;\nUPDATE t2 SET b=82412 WHERE a=16036;\nUPDATE t2 SET b=72275 WHERE a=16037;\nUPDATE t2 SET b=76709 WHERE a=16038;\nUPDATE t2 SET b=55360 WHERE a=16039;\nUPDATE t2 SET b=86067 WHERE a=16040;\nUPDATE t2 SET b=98406 WHERE a=16041;\nUPDATE t2 SET b=65404 WHERE a=16042;\nUPDATE t2 SET b=22669 WHERE a=16043;\nUPDATE t2 SET b=43595 WHERE a=16044;\nUPDATE t2 SET b=4685 WHERE a=16045;\nUPDATE t2 SET b=25398 WHERE a=16046;\nUPDATE t2 SET b=23360 WHERE a=16047;\nUPDATE t2 SET b=53680 WHERE a=16048;\nUPDATE t2 SET b=65251 WHERE a=16049;\nUPDATE t2 SET b=17767 WHERE a=16050;\nUPDATE t2 SET b=91712 WHERE a=16051;\nUPDATE t2 SET b=56163 WHERE a=16052;\nUPDATE t2 SET b=94045 WHERE a=16053;\nUPDATE t2 SET b=34148 WHERE a=16054;\nUPDATE t2 SET b=18113 WHERE a=16055;\nUPDATE t2 SET b=68703 WHERE a=16056;\nUPDATE t2 SET b=3173 WHERE a=16057;\nUPDATE t2 SET b=74158 WHERE a=16058;\nUPDATE t2 SET b=4149 WHERE a=16059;\nUPDATE t2 SET b=60181 WHERE a=16060;\nUPDATE t2 SET b=1251 WHERE a=16061;\nUPDATE t2 SET b=95209 WHERE a=16062;\nUPDATE t2 SET b=14417 WHERE a=16063;\nUPDATE t2 SET b=58951 WHERE a=16064;\nUPDATE t2 SET b=13762 WHERE a=16065;\nUPDATE t2 SET b=37132 WHERE a=16066;\nUPDATE t2 SET b=14289 WHERE a=16067;\nUPDATE t2 SET b=54286 WHERE a=16068;\nUPDATE t2 SET b=93577 WHERE a=16069;\nUPDATE t2 SET b=52099 WHERE a=16070;\nUPDATE t2 SET b=16211 WHERE a=16071;\nUPDATE t2 SET b=98620 WHERE a=16072;\nUPDATE t2 SET b=20036 WHERE a=16073;\nUPDATE t2 SET b=75485 WHERE a=16074;\nUPDATE t2 SET b=27838 WHERE a=16075;\nUPDATE t2 SET b=37659 WHERE a=16076;\nUPDATE t2 SET b=22119 WHERE a=16077;\nUPDATE t2 SET b=31609 WHERE a=16078;\nUPDATE t2 SET b=85799 WHERE a=16079;\nUPDATE t2 SET b=37179 WHERE a=16080;\nUPDATE t2 SET b=29886 WHERE a=16081;\nUPDATE t2 SET b=78468 WHERE a=16082;\nUPDATE t2 SET b=41794 WHERE a=16083;\nUPDATE t2 SET b=52595 WHERE a=16084;\nUPDATE t2 SET b=75200 WHERE a=16085;\nUPDATE t2 SET b=83774 WHERE a=16086;\nUPDATE t2 SET b=98584 WHERE a=16087;\nUPDATE t2 SET b=96292 WHERE a=16088;\nUPDATE t2 SET b=93580 WHERE a=16089;\nUPDATE t2 SET b=11419 WHERE a=16090;\nUPDATE t2 SET b=23044 WHERE a=16091;\nUPDATE t2 SET b=78727 WHERE a=16092;\nUPDATE t2 SET b=35062 WHERE a=16093;\nUPDATE t2 SET b=18803 WHERE a=16094;\nUPDATE t2 SET b=94622 WHERE a=16095;\nUPDATE t2 SET b=43432 WHERE a=16096;\nUPDATE t2 SET b=7657 WHERE a=16097;\nUPDATE t2 SET b=76691 WHERE a=16098;\nUPDATE t2 SET b=1955 WHERE a=16099;\nUPDATE t2 SET b=65063 WHERE a=16100;\nUPDATE t2 SET b=73911 WHERE a=16101;\nUPDATE t2 SET b=89148 WHERE a=16102;\nUPDATE t2 SET b=32761 WHERE a=16103;\nUPDATE t2 SET b=70555 WHERE a=16104;\nUPDATE t2 SET b=54411 WHERE a=16105;\nUPDATE t2 SET b=40604 WHERE a=16106;\nUPDATE t2 SET b=44693 WHERE a=16107;\nUPDATE t2 SET b=20317 WHERE a=16108;\nUPDATE t2 SET b=79150 WHERE a=16109;\nUPDATE t2 SET b=79493 WHERE a=16110;\nUPDATE t2 SET b=2050 WHERE a=16111;\nUPDATE t2 SET b=73073 WHERE a=16112;\nUPDATE t2 SET b=32613 WHERE a=16113;\nUPDATE t2 SET b=71042 WHERE a=16114;\nUPDATE t2 SET b=98442 WHERE a=16115;\nUPDATE t2 SET b=94206 WHERE a=16116;\nUPDATE t2 SET b=42842 WHERE a=16117;\nUPDATE t2 SET b=91120 WHERE a=16118;\nUPDATE t2 SET b=29783 WHERE a=16119;\nUPDATE t2 SET b=79911 WHERE a=16120;\nUPDATE t2 SET b=66077 WHERE a=16121;\nUPDATE t2 SET b=69528 WHERE a=16122;\nUPDATE t2 SET b=59787 WHERE a=16123;\nUPDATE t2 SET b=97375 WHERE a=16124;\nUPDATE t2 SET b=12127 WHERE a=16125;\nUPDATE t2 SET b=75396 WHERE a=16126;\nUPDATE t2 SET b=44016 WHERE a=16127;\nUPDATE t2 SET b=95677 WHERE a=16128;\nUPDATE t2 SET b=43584 WHERE a=16129;\nUPDATE t2 SET b=6237 WHERE a=16130;\nUPDATE t2 SET b=84829 WHERE a=16131;\nUPDATE t2 SET b=7492 WHERE a=16132;\nUPDATE t2 SET b=39281 WHERE a=16133;\nUPDATE t2 SET b=19188 WHERE a=16134;\nUPDATE t2 SET b=43194 WHERE a=16135;\nUPDATE t2 SET b=61618 WHERE a=16136;\nUPDATE t2 SET b=57949 WHERE a=16137;\nUPDATE t2 SET b=24048 WHERE a=16138;\nUPDATE t2 SET b=15550 WHERE a=16139;\nUPDATE t2 SET b=19448 WHERE a=16140;\nUPDATE t2 SET b=33976 WHERE a=16141;\nUPDATE t2 SET b=42355 WHERE a=16142;\nUPDATE t2 SET b=10292 WHERE a=16143;\nUPDATE t2 SET b=45998 WHERE a=16144;\nUPDATE t2 SET b=71855 WHERE a=16145;\nUPDATE t2 SET b=62235 WHERE a=16146;\nUPDATE t2 SET b=34529 WHERE a=16147;\nUPDATE t2 SET b=17890 WHERE a=16148;\nUPDATE t2 SET b=43582 WHERE a=16149;\nUPDATE t2 SET b=62818 WHERE a=16150;\nUPDATE t2 SET b=41949 WHERE a=16151;\nUPDATE t2 SET b=95088 WHERE a=16152;\nUPDATE t2 SET b=90768 WHERE a=16153;\nUPDATE t2 SET b=95615 WHERE a=16154;\nUPDATE t2 SET b=92745 WHERE a=16155;\nUPDATE t2 SET b=48545 WHERE a=16156;\nUPDATE t2 SET b=75716 WHERE a=16157;\nUPDATE t2 SET b=5214 WHERE a=16158;\nUPDATE t2 SET b=55635 WHERE a=16159;\nUPDATE t2 SET b=77561 WHERE a=16160;\nUPDATE t2 SET b=35697 WHERE a=16161;\nUPDATE t2 SET b=9422 WHERE a=16162;\nUPDATE t2 SET b=91951 WHERE a=16163;\nUPDATE t2 SET b=64496 WHERE a=16164;\nUPDATE t2 SET b=68315 WHERE a=16165;\nUPDATE t2 SET b=19816 WHERE a=16166;\nUPDATE t2 SET b=12216 WHERE a=16167;\nUPDATE t2 SET b=19555 WHERE a=16168;\nUPDATE t2 SET b=85180 WHERE a=16169;\nUPDATE t2 SET b=27457 WHERE a=16170;\nUPDATE t2 SET b=14322 WHERE a=16171;\nUPDATE t2 SET b=47738 WHERE a=16172;\nUPDATE t2 SET b=33419 WHERE a=16173;\nUPDATE t2 SET b=46307 WHERE a=16174;\nUPDATE t2 SET b=22772 WHERE a=16175;\nUPDATE t2 SET b=50876 WHERE a=16176;\nUPDATE t2 SET b=75806 WHERE a=16177;\nUPDATE t2 SET b=79189 WHERE a=16178;\nUPDATE t2 SET b=53445 WHERE a=16179;\nUPDATE t2 SET b=99096 WHERE a=16180;\nUPDATE t2 SET b=36471 WHERE a=16181;\nUPDATE t2 SET b=63846 WHERE a=16182;\nUPDATE t2 SET b=87756 WHERE a=16183;\nUPDATE t2 SET b=21400 WHERE a=16184;\nUPDATE t2 SET b=12 WHERE a=16185;\nUPDATE t2 SET b=57504 WHERE a=16186;\nUPDATE t2 SET b=26277 WHERE a=16187;\nUPDATE t2 SET b=2901 WHERE a=16188;\nUPDATE t2 SET b=46815 WHERE a=16189;\nUPDATE t2 SET b=85795 WHERE a=16190;\nUPDATE t2 SET b=84103 WHERE a=16191;\nUPDATE t2 SET b=23498 WHERE a=16192;\nUPDATE t2 SET b=50849 WHERE a=16193;\nUPDATE t2 SET b=73532 WHERE a=16194;\nUPDATE t2 SET b=62849 WHERE a=16195;\nUPDATE t2 SET b=90561 WHERE a=16196;\nUPDATE t2 SET b=52835 WHERE a=16197;\nUPDATE t2 SET b=42619 WHERE a=16198;\nUPDATE t2 SET b=52372 WHERE a=16199;\nUPDATE t2 SET b=19958 WHERE a=16200;\nUPDATE t2 SET b=68381 WHERE a=16201;\nUPDATE t2 SET b=48624 WHERE a=16202;\nUPDATE t2 SET b=18935 WHERE a=16203;\nUPDATE t2 SET b=20587 WHERE a=16204;\nUPDATE t2 SET b=90865 WHERE a=16205;\nUPDATE t2 SET b=4179 WHERE a=16206;\nUPDATE t2 SET b=22128 WHERE a=16207;\nUPDATE t2 SET b=92622 WHERE a=16208;\nUPDATE t2 SET b=48281 WHERE a=16209;\nUPDATE t2 SET b=18392 WHERE a=16210;\nUPDATE t2 SET b=73493 WHERE a=16211;\nUPDATE t2 SET b=27123 WHERE a=16212;\nUPDATE t2 SET b=55677 WHERE a=16213;\nUPDATE t2 SET b=65864 WHERE a=16214;\nUPDATE t2 SET b=1958 WHERE a=16215;\nUPDATE t2 SET b=32399 WHERE a=16216;\nUPDATE t2 SET b=20708 WHERE a=16217;\nUPDATE t2 SET b=58493 WHERE a=16218;\nUPDATE t2 SET b=12417 WHERE a=16219;\nUPDATE t2 SET b=14041 WHERE a=16220;\nUPDATE t2 SET b=75158 WHERE a=16221;\nUPDATE t2 SET b=9611 WHERE a=16222;\nUPDATE t2 SET b=59080 WHERE a=16223;\nUPDATE t2 SET b=14569 WHERE a=16224;\nUPDATE t2 SET b=80395 WHERE a=16225;\nUPDATE t2 SET b=85433 WHERE a=16226;\nUPDATE t2 SET b=16926 WHERE a=16227;\nUPDATE t2 SET b=62196 WHERE a=16228;\nUPDATE t2 SET b=41226 WHERE a=16229;\nUPDATE t2 SET b=70091 WHERE a=16230;\nUPDATE t2 SET b=82355 WHERE a=16231;\nUPDATE t2 SET b=29721 WHERE a=16232;\nUPDATE t2 SET b=80334 WHERE a=16233;\nUPDATE t2 SET b=73069 WHERE a=16234;\nUPDATE t2 SET b=89696 WHERE a=16235;\nUPDATE t2 SET b=24732 WHERE a=16236;\nUPDATE t2 SET b=22135 WHERE a=16237;\nUPDATE t2 SET b=58387 WHERE a=16238;\nUPDATE t2 SET b=85965 WHERE a=16239;\nUPDATE t2 SET b=9961 WHERE a=16240;\nUPDATE t2 SET b=6747 WHERE a=16241;\nUPDATE t2 SET b=85040 WHERE a=16242;\nUPDATE t2 SET b=59757 WHERE a=16243;\nUPDATE t2 SET b=68142 WHERE a=16244;\nUPDATE t2 SET b=83445 WHERE a=16245;\nUPDATE t2 SET b=74033 WHERE a=16246;\nUPDATE t2 SET b=34071 WHERE a=16247;\nUPDATE t2 SET b=90219 WHERE a=16248;\nUPDATE t2 SET b=68639 WHERE a=16249;\nUPDATE t2 SET b=14208 WHERE a=16250;\nUPDATE t2 SET b=67742 WHERE a=16251;\nUPDATE t2 SET b=74205 WHERE a=16252;\nUPDATE t2 SET b=6338 WHERE a=16253;\nUPDATE t2 SET b=2921 WHERE a=16254;\nUPDATE t2 SET b=26952 WHERE a=16255;\nUPDATE t2 SET b=25645 WHERE a=16256;\nUPDATE t2 SET b=34469 WHERE a=16257;\nUPDATE t2 SET b=98250 WHERE a=16258;\nUPDATE t2 SET b=73907 WHERE a=16259;\nUPDATE t2 SET b=85468 WHERE a=16260;\nUPDATE t2 SET b=35919 WHERE a=16261;\nUPDATE t2 SET b=30942 WHERE a=16262;\nUPDATE t2 SET b=17541 WHERE a=16263;\nUPDATE t2 SET b=46242 WHERE a=16264;\nUPDATE t2 SET b=75563 WHERE a=16265;\nUPDATE t2 SET b=15086 WHERE a=16266;\nUPDATE t2 SET b=98159 WHERE a=16267;\nUPDATE t2 SET b=3679 WHERE a=16268;\nUPDATE t2 SET b=74641 WHERE a=16269;\nUPDATE t2 SET b=5636 WHERE a=16270;\nUPDATE t2 SET b=98449 WHERE a=16271;\nUPDATE t2 SET b=74578 WHERE a=16272;\nUPDATE t2 SET b=82479 WHERE a=16273;\nUPDATE t2 SET b=4803 WHERE a=16274;\nUPDATE t2 SET b=7130 WHERE a=16275;\nUPDATE t2 SET b=42992 WHERE a=16276;\nUPDATE t2 SET b=28831 WHERE a=16277;\nUPDATE t2 SET b=60168 WHERE a=16278;\nUPDATE t2 SET b=80119 WHERE a=16279;\nUPDATE t2 SET b=63487 WHERE a=16280;\nUPDATE t2 SET b=4089 WHERE a=16281;\nUPDATE t2 SET b=73928 WHERE a=16282;\nUPDATE t2 SET b=10126 WHERE a=16283;\nUPDATE t2 SET b=85896 WHERE a=16284;\nUPDATE t2 SET b=33812 WHERE a=16285;\nUPDATE t2 SET b=92384 WHERE a=16286;\nUPDATE t2 SET b=97021 WHERE a=16287;\nUPDATE t2 SET b=27539 WHERE a=16288;\nUPDATE t2 SET b=61976 WHERE a=16289;\nUPDATE t2 SET b=45337 WHERE a=16290;\nUPDATE t2 SET b=17631 WHERE a=16291;\nUPDATE t2 SET b=71285 WHERE a=16292;\nUPDATE t2 SET b=27557 WHERE a=16293;\nUPDATE t2 SET b=99794 WHERE a=16294;\nUPDATE t2 SET b=40112 WHERE a=16295;\nUPDATE t2 SET b=68860 WHERE a=16296;\nUPDATE t2 SET b=45846 WHERE a=16297;\nUPDATE t2 SET b=69851 WHERE a=16298;\nUPDATE t2 SET b=17869 WHERE a=16299;\nUPDATE t2 SET b=71886 WHERE a=16300;\nUPDATE t2 SET b=50123 WHERE a=16301;\nUPDATE t2 SET b=8105 WHERE a=16302;\nUPDATE t2 SET b=73817 WHERE a=16303;\nUPDATE t2 SET b=69269 WHERE a=16304;\nUPDATE t2 SET b=48090 WHERE a=16305;\nUPDATE t2 SET b=27320 WHERE a=16306;\nUPDATE t2 SET b=91655 WHERE a=16307;\nUPDATE t2 SET b=23637 WHERE a=16308;\nUPDATE t2 SET b=60166 WHERE a=16309;\nUPDATE t2 SET b=44387 WHERE a=16310;\nUPDATE t2 SET b=5985 WHERE a=16311;\nUPDATE t2 SET b=81369 WHERE a=16312;\nUPDATE t2 SET b=59894 WHERE a=16313;\nUPDATE t2 SET b=85691 WHERE a=16314;\nUPDATE t2 SET b=97126 WHERE a=16315;\nUPDATE t2 SET b=42711 WHERE a=16316;\nUPDATE t2 SET b=80044 WHERE a=16317;\nUPDATE t2 SET b=53021 WHERE a=16318;\nUPDATE t2 SET b=57612 WHERE a=16319;\nUPDATE t2 SET b=28491 WHERE a=16320;\nUPDATE t2 SET b=46451 WHERE a=16321;\nUPDATE t2 SET b=44558 WHERE a=16322;\nUPDATE t2 SET b=35599 WHERE a=16323;\nUPDATE t2 SET b=11167 WHERE a=16324;\nUPDATE t2 SET b=98690 WHERE a=16325;\nUPDATE t2 SET b=30613 WHERE a=16326;\nUPDATE t2 SET b=83214 WHERE a=16327;\nUPDATE t2 SET b=96865 WHERE a=16328;\nUPDATE t2 SET b=54940 WHERE a=16329;\nUPDATE t2 SET b=52222 WHERE a=16330;\nUPDATE t2 SET b=75553 WHERE a=16331;\nUPDATE t2 SET b=51191 WHERE a=16332;\nUPDATE t2 SET b=78569 WHERE a=16333;\nUPDATE t2 SET b=80928 WHERE a=16334;\nUPDATE t2 SET b=11156 WHERE a=16335;\nUPDATE t2 SET b=94519 WHERE a=16336;\nUPDATE t2 SET b=13672 WHERE a=16337;\nUPDATE t2 SET b=43387 WHERE a=16338;\nUPDATE t2 SET b=88551 WHERE a=16339;\nUPDATE t2 SET b=78186 WHERE a=16340;\nUPDATE t2 SET b=26320 WHERE a=16341;\nUPDATE t2 SET b=69110 WHERE a=16342;\nUPDATE t2 SET b=44196 WHERE a=16343;\nUPDATE t2 SET b=13381 WHERE a=16344;\nUPDATE t2 SET b=10401 WHERE a=16345;\nUPDATE t2 SET b=52098 WHERE a=16346;\nUPDATE t2 SET b=4969 WHERE a=16347;\nUPDATE t2 SET b=88249 WHERE a=16348;\nUPDATE t2 SET b=27149 WHERE a=16349;\nUPDATE t2 SET b=51884 WHERE a=16350;\nUPDATE t2 SET b=51316 WHERE a=16351;\nUPDATE t2 SET b=92182 WHERE a=16352;\nUPDATE t2 SET b=62411 WHERE a=16353;\nUPDATE t2 SET b=56767 WHERE a=16354;\nUPDATE t2 SET b=85475 WHERE a=16355;\nUPDATE t2 SET b=20410 WHERE a=16356;\nUPDATE t2 SET b=9442 WHERE a=16357;\nUPDATE t2 SET b=23521 WHERE a=16358;\nUPDATE t2 SET b=49121 WHERE a=16359;\nUPDATE t2 SET b=81692 WHERE a=16360;\nUPDATE t2 SET b=31738 WHERE a=16361;\nUPDATE t2 SET b=71118 WHERE a=16362;\nUPDATE t2 SET b=34016 WHERE a=16363;\nUPDATE t2 SET b=30199 WHERE a=16364;\nUPDATE t2 SET b=71412 WHERE a=16365;\nUPDATE t2 SET b=38478 WHERE a=16366;\nUPDATE t2 SET b=91914 WHERE a=16367;\nUPDATE t2 SET b=28505 WHERE a=16368;\nUPDATE t2 SET b=10438 WHERE a=16369;\nUPDATE t2 SET b=54822 WHERE a=16370;\nUPDATE t2 SET b=61807 WHERE a=16371;\nUPDATE t2 SET b=87487 WHERE a=16372;\nUPDATE t2 SET b=32901 WHERE a=16373;\nUPDATE t2 SET b=76330 WHERE a=16374;\nUPDATE t2 SET b=6077 WHERE a=16375;\nUPDATE t2 SET b=25154 WHERE a=16376;\nUPDATE t2 SET b=74100 WHERE a=16377;\nUPDATE t2 SET b=90281 WHERE a=16378;\nUPDATE t2 SET b=86081 WHERE a=16379;\nUPDATE t2 SET b=9951 WHERE a=16380;\nUPDATE t2 SET b=9808 WHERE a=16381;\nUPDATE t2 SET b=68435 WHERE a=16382;\nUPDATE t2 SET b=21290 WHERE a=16383;\nUPDATE t2 SET b=42493 WHERE a=16384;\nUPDATE t2 SET b=73363 WHERE a=16385;\nUPDATE t2 SET b=29233 WHERE a=16386;\nUPDATE t2 SET b=37293 WHERE a=16387;\nUPDATE t2 SET b=52556 WHERE a=16388;\nUPDATE t2 SET b=97703 WHERE a=16389;\nUPDATE t2 SET b=97278 WHERE a=16390;\nUPDATE t2 SET b=38892 WHERE a=16391;\nUPDATE t2 SET b=45062 WHERE a=16392;\nUPDATE t2 SET b=29290 WHERE a=16393;\nUPDATE t2 SET b=95900 WHERE a=16394;\nUPDATE t2 SET b=23047 WHERE a=16395;\nUPDATE t2 SET b=68582 WHERE a=16396;\nUPDATE t2 SET b=99497 WHERE a=16397;\nUPDATE t2 SET b=48445 WHERE a=16398;\nUPDATE t2 SET b=96303 WHERE a=16399;\nUPDATE t2 SET b=32461 WHERE a=16400;\nUPDATE t2 SET b=18574 WHERE a=16401;\nUPDATE t2 SET b=52159 WHERE a=16402;\nUPDATE t2 SET b=38617 WHERE a=16403;\nUPDATE t2 SET b=14062 WHERE a=16404;\nUPDATE t2 SET b=89294 WHERE a=16405;\nUPDATE t2 SET b=73607 WHERE a=16406;\nUPDATE t2 SET b=49205 WHERE a=16407;\nUPDATE t2 SET b=73475 WHERE a=16408;\nUPDATE t2 SET b=81109 WHERE a=16409;\nUPDATE t2 SET b=62987 WHERE a=16410;\nUPDATE t2 SET b=90294 WHERE a=16411;\nUPDATE t2 SET b=7895 WHERE a=16412;\nUPDATE t2 SET b=26184 WHERE a=16413;\nUPDATE t2 SET b=80117 WHERE a=16414;\nUPDATE t2 SET b=52625 WHERE a=16415;\nUPDATE t2 SET b=76190 WHERE a=16416;\nUPDATE t2 SET b=8903 WHERE a=16417;\nUPDATE t2 SET b=63560 WHERE a=16418;\nUPDATE t2 SET b=47329 WHERE a=16419;\nUPDATE t2 SET b=49609 WHERE a=16420;\nUPDATE t2 SET b=90904 WHERE a=16421;\nUPDATE t2 SET b=3582 WHERE a=16422;\nUPDATE t2 SET b=62478 WHERE a=16423;\nUPDATE t2 SET b=43626 WHERE a=16424;\nUPDATE t2 SET b=69532 WHERE a=16425;\nUPDATE t2 SET b=44428 WHERE a=16426;\nUPDATE t2 SET b=21617 WHERE a=16427;\nUPDATE t2 SET b=66858 WHERE a=16428;\nUPDATE t2 SET b=35586 WHERE a=16429;\nUPDATE t2 SET b=43080 WHERE a=16430;\nUPDATE t2 SET b=27373 WHERE a=16431;\nUPDATE t2 SET b=50934 WHERE a=16432;\nUPDATE t2 SET b=20784 WHERE a=16433;\nUPDATE t2 SET b=19226 WHERE a=16434;\nUPDATE t2 SET b=72462 WHERE a=16435;\nUPDATE t2 SET b=61997 WHERE a=16436;\nUPDATE t2 SET b=15146 WHERE a=16437;\nUPDATE t2 SET b=96807 WHERE a=16438;\nUPDATE t2 SET b=5101 WHERE a=16439;\nUPDATE t2 SET b=64043 WHERE a=16440;\nUPDATE t2 SET b=26065 WHERE a=16441;\nUPDATE t2 SET b=12336 WHERE a=16442;\nUPDATE t2 SET b=98763 WHERE a=16443;\nUPDATE t2 SET b=99155 WHERE a=16444;\nUPDATE t2 SET b=36557 WHERE a=16445;\nUPDATE t2 SET b=26769 WHERE a=16446;\nUPDATE t2 SET b=87304 WHERE a=16447;\nUPDATE t2 SET b=72747 WHERE a=16448;\nUPDATE t2 SET b=6545 WHERE a=16449;\nUPDATE t2 SET b=7654 WHERE a=16450;\nUPDATE t2 SET b=96126 WHERE a=16451;\nUPDATE t2 SET b=84857 WHERE a=16452;\nUPDATE t2 SET b=84184 WHERE a=16453;\nUPDATE t2 SET b=12838 WHERE a=16454;\nUPDATE t2 SET b=69009 WHERE a=16455;\nUPDATE t2 SET b=84928 WHERE a=16456;\nUPDATE t2 SET b=55230 WHERE a=16457;\nUPDATE t2 SET b=68365 WHERE a=16458;\nUPDATE t2 SET b=64121 WHERE a=16459;\nUPDATE t2 SET b=18176 WHERE a=16460;\nUPDATE t2 SET b=71408 WHERE a=16461;\nUPDATE t2 SET b=88126 WHERE a=16462;\nUPDATE t2 SET b=54487 WHERE a=16463;\nUPDATE t2 SET b=4340 WHERE a=16464;\nUPDATE t2 SET b=35413 WHERE a=16465;\nUPDATE t2 SET b=49816 WHERE a=16466;\nUPDATE t2 SET b=29302 WHERE a=16467;\nUPDATE t2 SET b=27239 WHERE a=16468;\nUPDATE t2 SET b=7748 WHERE a=16469;\nUPDATE t2 SET b=9021 WHERE a=16470;\nUPDATE t2 SET b=19973 WHERE a=16471;\nUPDATE t2 SET b=84262 WHERE a=16472;\nUPDATE t2 SET b=2444 WHERE a=16473;\nUPDATE t2 SET b=25766 WHERE a=16474;\nUPDATE t2 SET b=75500 WHERE a=16475;\nUPDATE t2 SET b=34213 WHERE a=16476;\nUPDATE t2 SET b=71745 WHERE a=16477;\nUPDATE t2 SET b=16507 WHERE a=16478;\nUPDATE t2 SET b=82944 WHERE a=16479;\nUPDATE t2 SET b=52985 WHERE a=16480;\nUPDATE t2 SET b=3964 WHERE a=16481;\nUPDATE t2 SET b=70301 WHERE a=16482;\nUPDATE t2 SET b=15098 WHERE a=16483;\nUPDATE t2 SET b=23779 WHERE a=16484;\nUPDATE t2 SET b=68355 WHERE a=16485;\nUPDATE t2 SET b=80159 WHERE a=16486;\nUPDATE t2 SET b=25451 WHERE a=16487;\nUPDATE t2 SET b=54865 WHERE a=16488;\nUPDATE t2 SET b=81575 WHERE a=16489;\nUPDATE t2 SET b=48592 WHERE a=16490;\nUPDATE t2 SET b=83112 WHERE a=16491;\nUPDATE t2 SET b=21803 WHERE a=16492;\nUPDATE t2 SET b=15321 WHERE a=16493;\nUPDATE t2 SET b=71084 WHERE a=16494;\nUPDATE t2 SET b=59082 WHERE a=16495;\nUPDATE t2 SET b=89886 WHERE a=16496;\nUPDATE t2 SET b=461 WHERE a=16497;\nUPDATE t2 SET b=14455 WHERE a=16498;\nUPDATE t2 SET b=66115 WHERE a=16499;\nUPDATE t2 SET b=76760 WHERE a=16500;\nUPDATE t2 SET b=95668 WHERE a=16501;\nUPDATE t2 SET b=24478 WHERE a=16502;\nUPDATE t2 SET b=48744 WHERE a=16503;\nUPDATE t2 SET b=84480 WHERE a=16504;\nUPDATE t2 SET b=3789 WHERE a=16505;\nUPDATE t2 SET b=66150 WHERE a=16506;\nUPDATE t2 SET b=816 WHERE a=16507;\nUPDATE t2 SET b=54410 WHERE a=16508;\nUPDATE t2 SET b=18172 WHERE a=16509;\nUPDATE t2 SET b=10215 WHERE a=16510;\nUPDATE t2 SET b=38621 WHERE a=16511;\nUPDATE t2 SET b=41243 WHERE a=16512;\nUPDATE t2 SET b=42367 WHERE a=16513;\nUPDATE t2 SET b=39518 WHERE a=16514;\nUPDATE t2 SET b=100 WHERE a=16515;\nUPDATE t2 SET b=37810 WHERE a=16516;\nUPDATE t2 SET b=90028 WHERE a=16517;\nUPDATE t2 SET b=30774 WHERE a=16518;\nUPDATE t2 SET b=57471 WHERE a=16519;\nUPDATE t2 SET b=29831 WHERE a=16520;\nUPDATE t2 SET b=78059 WHERE a=16521;\nUPDATE t2 SET b=51380 WHERE a=16522;\nUPDATE t2 SET b=31572 WHERE a=16523;\nUPDATE t2 SET b=44119 WHERE a=16524;\nUPDATE t2 SET b=71661 WHERE a=16525;\nUPDATE t2 SET b=17215 WHERE a=16526;\nUPDATE t2 SET b=62515 WHERE a=16527;\nUPDATE t2 SET b=236 WHERE a=16528;\nUPDATE t2 SET b=74840 WHERE a=16529;\nUPDATE t2 SET b=78855 WHERE a=16530;\nUPDATE t2 SET b=17140 WHERE a=16531;\nUPDATE t2 SET b=46895 WHERE a=16532;\nUPDATE t2 SET b=71398 WHERE a=16533;\nUPDATE t2 SET b=24155 WHERE a=16534;\nUPDATE t2 SET b=26529 WHERE a=16535;\nUPDATE t2 SET b=90662 WHERE a=16536;\nUPDATE t2 SET b=38284 WHERE a=16537;\nUPDATE t2 SET b=86120 WHERE a=16538;\nUPDATE t2 SET b=97564 WHERE a=16539;\nUPDATE t2 SET b=16484 WHERE a=16540;\nUPDATE t2 SET b=18813 WHERE a=16541;\nUPDATE t2 SET b=88557 WHERE a=16542;\nUPDATE t2 SET b=92227 WHERE a=16543;\nUPDATE t2 SET b=78833 WHERE a=16544;\nUPDATE t2 SET b=61719 WHERE a=16545;\nUPDATE t2 SET b=97407 WHERE a=16546;\nUPDATE t2 SET b=41849 WHERE a=16547;\nUPDATE t2 SET b=65788 WHERE a=16548;\nUPDATE t2 SET b=52884 WHERE a=16549;\nUPDATE t2 SET b=84408 WHERE a=16550;\nUPDATE t2 SET b=76870 WHERE a=16551;\nUPDATE t2 SET b=43134 WHERE a=16552;\nUPDATE t2 SET b=4703 WHERE a=16553;\nUPDATE t2 SET b=80417 WHERE a=16554;\nUPDATE t2 SET b=57129 WHERE a=16555;\nUPDATE t2 SET b=58346 WHERE a=16556;\nUPDATE t2 SET b=63138 WHERE a=16557;\nUPDATE t2 SET b=77137 WHERE a=16558;\nUPDATE t2 SET b=69856 WHERE a=16559;\nUPDATE t2 SET b=51498 WHERE a=16560;\nUPDATE t2 SET b=66324 WHERE a=16561;\nUPDATE t2 SET b=51967 WHERE a=16562;\nUPDATE t2 SET b=45725 WHERE a=16563;\nUPDATE t2 SET b=94186 WHERE a=16564;\nUPDATE t2 SET b=90425 WHERE a=16565;\nUPDATE t2 SET b=58682 WHERE a=16566;\nUPDATE t2 SET b=43526 WHERE a=16567;\nUPDATE t2 SET b=94083 WHERE a=16568;\nUPDATE t2 SET b=69891 WHERE a=16569;\nUPDATE t2 SET b=97261 WHERE a=16570;\nUPDATE t2 SET b=6106 WHERE a=16571;\nUPDATE t2 SET b=19845 WHERE a=16572;\nUPDATE t2 SET b=36194 WHERE a=16573;\nUPDATE t2 SET b=44760 WHERE a=16574;\nUPDATE t2 SET b=61133 WHERE a=16575;\nUPDATE t2 SET b=33224 WHERE a=16576;\nUPDATE t2 SET b=67941 WHERE a=16577;\nUPDATE t2 SET b=56241 WHERE a=16578;\nUPDATE t2 SET b=28539 WHERE a=16579;\nUPDATE t2 SET b=46983 WHERE a=16580;\nUPDATE t2 SET b=66089 WHERE a=16581;\nUPDATE t2 SET b=57298 WHERE a=16582;\nUPDATE t2 SET b=64020 WHERE a=16583;\nUPDATE t2 SET b=92602 WHERE a=16584;\nUPDATE t2 SET b=93708 WHERE a=16585;\nUPDATE t2 SET b=66120 WHERE a=16586;\nUPDATE t2 SET b=28508 WHERE a=16587;\nUPDATE t2 SET b=65355 WHERE a=16588;\nUPDATE t2 SET b=46527 WHERE a=16589;\nUPDATE t2 SET b=96298 WHERE a=16590;\nUPDATE t2 SET b=49923 WHERE a=16591;\nUPDATE t2 SET b=21341 WHERE a=16592;\nUPDATE t2 SET b=27066 WHERE a=16593;\nUPDATE t2 SET b=13772 WHERE a=16594;\nUPDATE t2 SET b=20755 WHERE a=16595;\nUPDATE t2 SET b=41214 WHERE a=16596;\nUPDATE t2 SET b=30988 WHERE a=16597;\nUPDATE t2 SET b=85458 WHERE a=16598;\nUPDATE t2 SET b=28318 WHERE a=16599;\nUPDATE t2 SET b=60985 WHERE a=16600;\nUPDATE t2 SET b=55477 WHERE a=16601;\nUPDATE t2 SET b=56974 WHERE a=16602;\nUPDATE t2 SET b=2792 WHERE a=16603;\nUPDATE t2 SET b=28271 WHERE a=16604;\nUPDATE t2 SET b=8229 WHERE a=16605;\nUPDATE t2 SET b=27180 WHERE a=16606;\nUPDATE t2 SET b=61272 WHERE a=16607;\nUPDATE t2 SET b=69290 WHERE a=16608;\nUPDATE t2 SET b=20306 WHERE a=16609;\nUPDATE t2 SET b=8402 WHERE a=16610;\nUPDATE t2 SET b=71472 WHERE a=16611;\nUPDATE t2 SET b=98716 WHERE a=16612;\nUPDATE t2 SET b=18053 WHERE a=16613;\nUPDATE t2 SET b=64321 WHERE a=16614;\nUPDATE t2 SET b=99185 WHERE a=16615;\nUPDATE t2 SET b=72764 WHERE a=16616;\nUPDATE t2 SET b=56444 WHERE a=16617;\nUPDATE t2 SET b=89111 WHERE a=16618;\nUPDATE t2 SET b=85138 WHERE a=16619;\nUPDATE t2 SET b=53627 WHERE a=16620;\nUPDATE t2 SET b=23971 WHERE a=16621;\nUPDATE t2 SET b=54178 WHERE a=16622;\nUPDATE t2 SET b=72722 WHERE a=16623;\nUPDATE t2 SET b=82041 WHERE a=16624;\nUPDATE t2 SET b=28246 WHERE a=16625;\nUPDATE t2 SET b=83042 WHERE a=16626;\nUPDATE t2 SET b=64575 WHERE a=16627;\nUPDATE t2 SET b=62371 WHERE a=16628;\nUPDATE t2 SET b=1525 WHERE a=16629;\nUPDATE t2 SET b=13099 WHERE a=16630;\nUPDATE t2 SET b=15070 WHERE a=16631;\nUPDATE t2 SET b=59763 WHERE a=16632;\nUPDATE t2 SET b=42643 WHERE a=16633;\nUPDATE t2 SET b=79961 WHERE a=16634;\nUPDATE t2 SET b=7079 WHERE a=16635;\nUPDATE t2 SET b=40589 WHERE a=16636;\nUPDATE t2 SET b=60289 WHERE a=16637;\nUPDATE t2 SET b=31294 WHERE a=16638;\nUPDATE t2 SET b=90835 WHERE a=16639;\nUPDATE t2 SET b=86274 WHERE a=16640;\nUPDATE t2 SET b=79146 WHERE a=16641;\nUPDATE t2 SET b=86384 WHERE a=16642;\nUPDATE t2 SET b=67336 WHERE a=16643;\nUPDATE t2 SET b=21552 WHERE a=16644;\nUPDATE t2 SET b=49183 WHERE a=16645;\nUPDATE t2 SET b=88483 WHERE a=16646;\nUPDATE t2 SET b=59695 WHERE a=16647;\nUPDATE t2 SET b=53994 WHERE a=16648;\nUPDATE t2 SET b=7178 WHERE a=16649;\nUPDATE t2 SET b=47419 WHERE a=16650;\nUPDATE t2 SET b=16050 WHERE a=16651;\nUPDATE t2 SET b=66391 WHERE a=16652;\nUPDATE t2 SET b=23830 WHERE a=16653;\nUPDATE t2 SET b=53777 WHERE a=16654;\nUPDATE t2 SET b=80957 WHERE a=16655;\nUPDATE t2 SET b=78029 WHERE a=16656;\nUPDATE t2 SET b=13953 WHERE a=16657;\nUPDATE t2 SET b=99658 WHERE a=16658;\nUPDATE t2 SET b=86943 WHERE a=16659;\nUPDATE t2 SET b=90234 WHERE a=16660;\nUPDATE t2 SET b=33738 WHERE a=16661;\nUPDATE t2 SET b=66805 WHERE a=16662;\nUPDATE t2 SET b=22496 WHERE a=16663;\nUPDATE t2 SET b=42133 WHERE a=16664;\nUPDATE t2 SET b=47043 WHERE a=16665;\nUPDATE t2 SET b=36547 WHERE a=16666;\nUPDATE t2 SET b=99929 WHERE a=16667;\nUPDATE t2 SET b=78005 WHERE a=16668;\nUPDATE t2 SET b=99968 WHERE a=16669;\nUPDATE t2 SET b=25785 WHERE a=16670;\nUPDATE t2 SET b=83699 WHERE a=16671;\nUPDATE t2 SET b=11245 WHERE a=16672;\nUPDATE t2 SET b=78692 WHERE a=16673;\nUPDATE t2 SET b=20481 WHERE a=16674;\nUPDATE t2 SET b=34595 WHERE a=16675;\nUPDATE t2 SET b=78663 WHERE a=16676;\nUPDATE t2 SET b=82951 WHERE a=16677;\nUPDATE t2 SET b=77142 WHERE a=16678;\nUPDATE t2 SET b=8212 WHERE a=16679;\nUPDATE t2 SET b=88985 WHERE a=16680;\nUPDATE t2 SET b=29648 WHERE a=16681;\nUPDATE t2 SET b=2511 WHERE a=16682;\nUPDATE t2 SET b=25470 WHERE a=16683;\nUPDATE t2 SET b=94402 WHERE a=16684;\nUPDATE t2 SET b=83577 WHERE a=16685;\nUPDATE t2 SET b=24067 WHERE a=16686;\nUPDATE t2 SET b=46400 WHERE a=16687;\nUPDATE t2 SET b=92208 WHERE a=16688;\nUPDATE t2 SET b=92533 WHERE a=16689;\nUPDATE t2 SET b=54877 WHERE a=16690;\nUPDATE t2 SET b=81069 WHERE a=16691;\nUPDATE t2 SET b=52884 WHERE a=16692;\nUPDATE t2 SET b=33606 WHERE a=16693;\nUPDATE t2 SET b=41412 WHERE a=16694;\nUPDATE t2 SET b=49478 WHERE a=16695;\nUPDATE t2 SET b=9664 WHERE a=16696;\nUPDATE t2 SET b=37907 WHERE a=16697;\nUPDATE t2 SET b=31395 WHERE a=16698;\nUPDATE t2 SET b=78561 WHERE a=16699;\nUPDATE t2 SET b=63151 WHERE a=16700;\nUPDATE t2 SET b=7969 WHERE a=16701;\nUPDATE t2 SET b=110 WHERE a=16702;\nUPDATE t2 SET b=73167 WHERE a=16703;\nUPDATE t2 SET b=50024 WHERE a=16704;\nUPDATE t2 SET b=27688 WHERE a=16705;\nUPDATE t2 SET b=51527 WHERE a=16706;\nUPDATE t2 SET b=96932 WHERE a=16707;\nUPDATE t2 SET b=95972 WHERE a=16708;\nUPDATE t2 SET b=22895 WHERE a=16709;\nUPDATE t2 SET b=36365 WHERE a=16710;\nUPDATE t2 SET b=68126 WHERE a=16711;\nUPDATE t2 SET b=40196 WHERE a=16712;\nUPDATE t2 SET b=12581 WHERE a=16713;\nUPDATE t2 SET b=3401 WHERE a=16714;\nUPDATE t2 SET b=34815 WHERE a=16715;\nUPDATE t2 SET b=83299 WHERE a=16716;\nUPDATE t2 SET b=6020 WHERE a=16717;\nUPDATE t2 SET b=46067 WHERE a=16718;\nUPDATE t2 SET b=57361 WHERE a=16719;\nUPDATE t2 SET b=97971 WHERE a=16720;\nUPDATE t2 SET b=58196 WHERE a=16721;\nUPDATE t2 SET b=78143 WHERE a=16722;\nUPDATE t2 SET b=4726 WHERE a=16723;\nUPDATE t2 SET b=95300 WHERE a=16724;\nUPDATE t2 SET b=37320 WHERE a=16725;\nUPDATE t2 SET b=90262 WHERE a=16726;\nUPDATE t2 SET b=68756 WHERE a=16727;\nUPDATE t2 SET b=5281 WHERE a=16728;\nUPDATE t2 SET b=43138 WHERE a=16729;\nUPDATE t2 SET b=41659 WHERE a=16730;\nUPDATE t2 SET b=93979 WHERE a=16731;\nUPDATE t2 SET b=90919 WHERE a=16732;\nUPDATE t2 SET b=8035 WHERE a=16733;\nUPDATE t2 SET b=92356 WHERE a=16734;\nUPDATE t2 SET b=19785 WHERE a=16735;\nUPDATE t2 SET b=95714 WHERE a=16736;\nUPDATE t2 SET b=87147 WHERE a=16737;\nUPDATE t2 SET b=27477 WHERE a=16738;\nUPDATE t2 SET b=8212 WHERE a=16739;\nUPDATE t2 SET b=86606 WHERE a=16740;\nUPDATE t2 SET b=18476 WHERE a=16741;\nUPDATE t2 SET b=50132 WHERE a=16742;\nUPDATE t2 SET b=77545 WHERE a=16743;\nUPDATE t2 SET b=88045 WHERE a=16744;\nUPDATE t2 SET b=61303 WHERE a=16745;\nUPDATE t2 SET b=41283 WHERE a=16746;\nUPDATE t2 SET b=38884 WHERE a=16747;\nUPDATE t2 SET b=510 WHERE a=16748;\nUPDATE t2 SET b=36665 WHERE a=16749;\nUPDATE t2 SET b=32955 WHERE a=16750;\nUPDATE t2 SET b=42320 WHERE a=16751;\nUPDATE t2 SET b=6395 WHERE a=16752;\nUPDATE t2 SET b=87879 WHERE a=16753;\nUPDATE t2 SET b=92172 WHERE a=16754;\nUPDATE t2 SET b=27566 WHERE a=16755;\nUPDATE t2 SET b=80719 WHERE a=16756;\nUPDATE t2 SET b=29710 WHERE a=16757;\nUPDATE t2 SET b=16533 WHERE a=16758;\nUPDATE t2 SET b=24248 WHERE a=16759;\nUPDATE t2 SET b=78118 WHERE a=16760;\nUPDATE t2 SET b=48732 WHERE a=16761;\nUPDATE t2 SET b=3351 WHERE a=16762;\nUPDATE t2 SET b=37246 WHERE a=16763;\nUPDATE t2 SET b=94021 WHERE a=16764;\nUPDATE t2 SET b=27185 WHERE a=16765;\nUPDATE t2 SET b=8128 WHERE a=16766;\nUPDATE t2 SET b=15515 WHERE a=16767;\nUPDATE t2 SET b=57883 WHERE a=16768;\nUPDATE t2 SET b=4661 WHERE a=16769;\nUPDATE t2 SET b=61831 WHERE a=16770;\nUPDATE t2 SET b=47279 WHERE a=16771;\nUPDATE t2 SET b=86332 WHERE a=16772;\nUPDATE t2 SET b=27502 WHERE a=16773;\nUPDATE t2 SET b=12991 WHERE a=16774;\nUPDATE t2 SET b=10561 WHERE a=16775;\nUPDATE t2 SET b=56951 WHERE a=16776;\nUPDATE t2 SET b=32250 WHERE a=16777;\nUPDATE t2 SET b=16663 WHERE a=16778;\nUPDATE t2 SET b=17300 WHERE a=16779;\nUPDATE t2 SET b=5963 WHERE a=16780;\nUPDATE t2 SET b=96878 WHERE a=16781;\nUPDATE t2 SET b=91694 WHERE a=16782;\nUPDATE t2 SET b=78893 WHERE a=16783;\nUPDATE t2 SET b=65694 WHERE a=16784;\nUPDATE t2 SET b=2772 WHERE a=16785;\nUPDATE t2 SET b=8151 WHERE a=16786;\nUPDATE t2 SET b=88661 WHERE a=16787;\nUPDATE t2 SET b=77789 WHERE a=16788;\nUPDATE t2 SET b=11354 WHERE a=16789;\nUPDATE t2 SET b=66645 WHERE a=16790;\nUPDATE t2 SET b=84120 WHERE a=16791;\nUPDATE t2 SET b=84532 WHERE a=16792;\nUPDATE t2 SET b=45504 WHERE a=16793;\nUPDATE t2 SET b=71610 WHERE a=16794;\nUPDATE t2 SET b=85797 WHERE a=16795;\nUPDATE t2 SET b=53497 WHERE a=16796;\nUPDATE t2 SET b=31820 WHERE a=16797;\nUPDATE t2 SET b=29814 WHERE a=16798;\nUPDATE t2 SET b=16857 WHERE a=16799;\nUPDATE t2 SET b=87295 WHERE a=16800;\nUPDATE t2 SET b=50253 WHERE a=16801;\nUPDATE t2 SET b=83150 WHERE a=16802;\nUPDATE t2 SET b=43689 WHERE a=16803;\nUPDATE t2 SET b=64633 WHERE a=16804;\nUPDATE t2 SET b=37960 WHERE a=16805;\nUPDATE t2 SET b=2992 WHERE a=16806;\nUPDATE t2 SET b=26161 WHERE a=16807;\nUPDATE t2 SET b=42980 WHERE a=16808;\nUPDATE t2 SET b=37057 WHERE a=16809;\nUPDATE t2 SET b=91833 WHERE a=16810;\nUPDATE t2 SET b=75280 WHERE a=16811;\nUPDATE t2 SET b=39714 WHERE a=16812;\nUPDATE t2 SET b=40353 WHERE a=16813;\nUPDATE t2 SET b=87238 WHERE a=16814;\nUPDATE t2 SET b=99527 WHERE a=16815;\nUPDATE t2 SET b=92774 WHERE a=16816;\nUPDATE t2 SET b=83800 WHERE a=16817;\nUPDATE t2 SET b=55336 WHERE a=16818;\nUPDATE t2 SET b=60167 WHERE a=16819;\nUPDATE t2 SET b=24302 WHERE a=16820;\nUPDATE t2 SET b=17692 WHERE a=16821;\nUPDATE t2 SET b=65405 WHERE a=16822;\nUPDATE t2 SET b=84251 WHERE a=16823;\nUPDATE t2 SET b=15095 WHERE a=16824;\nUPDATE t2 SET b=21623 WHERE a=16825;\nUPDATE t2 SET b=55634 WHERE a=16826;\nUPDATE t2 SET b=5960 WHERE a=16827;\nUPDATE t2 SET b=7102 WHERE a=16828;\nUPDATE t2 SET b=85918 WHERE a=16829;\nUPDATE t2 SET b=6127 WHERE a=16830;\nUPDATE t2 SET b=20541 WHERE a=16831;\nUPDATE t2 SET b=13424 WHERE a=16832;\nUPDATE t2 SET b=88224 WHERE a=16833;\nUPDATE t2 SET b=97487 WHERE a=16834;\nUPDATE t2 SET b=90927 WHERE a=16835;\nUPDATE t2 SET b=79209 WHERE a=16836;\nUPDATE t2 SET b=27863 WHERE a=16837;\nUPDATE t2 SET b=91201 WHERE a=16838;\nUPDATE t2 SET b=24756 WHERE a=16839;\nUPDATE t2 SET b=96762 WHERE a=16840;\nUPDATE t2 SET b=8104 WHERE a=16841;\nUPDATE t2 SET b=67976 WHERE a=16842;\nUPDATE t2 SET b=21890 WHERE a=16843;\nUPDATE t2 SET b=68478 WHERE a=16844;\nUPDATE t2 SET b=94112 WHERE a=16845;\nUPDATE t2 SET b=39423 WHERE a=16846;\nUPDATE t2 SET b=50351 WHERE a=16847;\nUPDATE t2 SET b=16669 WHERE a=16848;\nUPDATE t2 SET b=65185 WHERE a=16849;\nUPDATE t2 SET b=49045 WHERE a=16850;\nUPDATE t2 SET b=86878 WHERE a=16851;\nUPDATE t2 SET b=65890 WHERE a=16852;\nUPDATE t2 SET b=43799 WHERE a=16853;\nUPDATE t2 SET b=63340 WHERE a=16854;\nUPDATE t2 SET b=53387 WHERE a=16855;\nUPDATE t2 SET b=43321 WHERE a=16856;\nUPDATE t2 SET b=88406 WHERE a=16857;\nUPDATE t2 SET b=21375 WHERE a=16858;\nUPDATE t2 SET b=93981 WHERE a=16859;\nUPDATE t2 SET b=79757 WHERE a=16860;\nUPDATE t2 SET b=852 WHERE a=16861;\nUPDATE t2 SET b=52765 WHERE a=16862;\nUPDATE t2 SET b=28478 WHERE a=16863;\nUPDATE t2 SET b=83909 WHERE a=16864;\nUPDATE t2 SET b=54710 WHERE a=16865;\nUPDATE t2 SET b=53273 WHERE a=16866;\nUPDATE t2 SET b=27106 WHERE a=16867;\nUPDATE t2 SET b=94726 WHERE a=16868;\nUPDATE t2 SET b=27115 WHERE a=16869;\nUPDATE t2 SET b=26483 WHERE a=16870;\nUPDATE t2 SET b=15250 WHERE a=16871;\nUPDATE t2 SET b=73687 WHERE a=16872;\nUPDATE t2 SET b=35779 WHERE a=16873;\nUPDATE t2 SET b=52789 WHERE a=16874;\nUPDATE t2 SET b=43523 WHERE a=16875;\nUPDATE t2 SET b=95970 WHERE a=16876;\nUPDATE t2 SET b=66033 WHERE a=16877;\nUPDATE t2 SET b=88106 WHERE a=16878;\nUPDATE t2 SET b=68521 WHERE a=16879;\nUPDATE t2 SET b=16329 WHERE a=16880;\nUPDATE t2 SET b=68699 WHERE a=16881;\nUPDATE t2 SET b=56468 WHERE a=16882;\nUPDATE t2 SET b=5329 WHERE a=16883;\nUPDATE t2 SET b=34480 WHERE a=16884;\nUPDATE t2 SET b=84322 WHERE a=16885;\nUPDATE t2 SET b=52842 WHERE a=16886;\nUPDATE t2 SET b=184 WHERE a=16887;\nUPDATE t2 SET b=18953 WHERE a=16888;\nUPDATE t2 SET b=93096 WHERE a=16889;\nUPDATE t2 SET b=96504 WHERE a=16890;\nUPDATE t2 SET b=85206 WHERE a=16891;\nUPDATE t2 SET b=24108 WHERE a=16892;\nUPDATE t2 SET b=74809 WHERE a=16893;\nUPDATE t2 SET b=95031 WHERE a=16894;\nUPDATE t2 SET b=210 WHERE a=16895;\nUPDATE t2 SET b=54315 WHERE a=16896;\nUPDATE t2 SET b=49256 WHERE a=16897;\nUPDATE t2 SET b=77598 WHERE a=16898;\nUPDATE t2 SET b=80888 WHERE a=16899;\nUPDATE t2 SET b=75676 WHERE a=16900;\nUPDATE t2 SET b=74659 WHERE a=16901;\nUPDATE t2 SET b=36317 WHERE a=16902;\nUPDATE t2 SET b=22574 WHERE a=16903;\nUPDATE t2 SET b=40358 WHERE a=16904;\nUPDATE t2 SET b=1169 WHERE a=16905;\nUPDATE t2 SET b=95739 WHERE a=16906;\nUPDATE t2 SET b=1572 WHERE a=16907;\nUPDATE t2 SET b=96499 WHERE a=16908;\nUPDATE t2 SET b=32867 WHERE a=16909;\nUPDATE t2 SET b=50356 WHERE a=16910;\nUPDATE t2 SET b=59975 WHERE a=16911;\nUPDATE t2 SET b=58823 WHERE a=16912;\nUPDATE t2 SET b=43362 WHERE a=16913;\nUPDATE t2 SET b=57574 WHERE a=16914;\nUPDATE t2 SET b=83548 WHERE a=16915;\nUPDATE t2 SET b=5089 WHERE a=16916;\nUPDATE t2 SET b=51883 WHERE a=16917;\nUPDATE t2 SET b=21741 WHERE a=16918;\nUPDATE t2 SET b=21912 WHERE a=16919;\nUPDATE t2 SET b=58475 WHERE a=16920;\nUPDATE t2 SET b=95000 WHERE a=16921;\nUPDATE t2 SET b=39999 WHERE a=16922;\nUPDATE t2 SET b=25751 WHERE a=16923;\nUPDATE t2 SET b=96750 WHERE a=16924;\nUPDATE t2 SET b=63410 WHERE a=16925;\nUPDATE t2 SET b=43905 WHERE a=16926;\nUPDATE t2 SET b=40866 WHERE a=16927;\nUPDATE t2 SET b=57819 WHERE a=16928;\nUPDATE t2 SET b=72889 WHERE a=16929;\nUPDATE t2 SET b=54587 WHERE a=16930;\nUPDATE t2 SET b=16476 WHERE a=16931;\nUPDATE t2 SET b=68972 WHERE a=16932;\nUPDATE t2 SET b=23089 WHERE a=16933;\nUPDATE t2 SET b=73078 WHERE a=16934;\nUPDATE t2 SET b=15926 WHERE a=16935;\nUPDATE t2 SET b=25819 WHERE a=16936;\nUPDATE t2 SET b=26319 WHERE a=16937;\nUPDATE t2 SET b=39777 WHERE a=16938;\nUPDATE t2 SET b=81776 WHERE a=16939;\nUPDATE t2 SET b=83596 WHERE a=16940;\nUPDATE t2 SET b=84644 WHERE a=16941;\nUPDATE t2 SET b=4131 WHERE a=16942;\nUPDATE t2 SET b=84192 WHERE a=16943;\nUPDATE t2 SET b=61094 WHERE a=16944;\nUPDATE t2 SET b=53091 WHERE a=16945;\nUPDATE t2 SET b=43965 WHERE a=16946;\nUPDATE t2 SET b=43533 WHERE a=16947;\nUPDATE t2 SET b=87958 WHERE a=16948;\nUPDATE t2 SET b=88585 WHERE a=16949;\nUPDATE t2 SET b=74779 WHERE a=16950;\nUPDATE t2 SET b=21782 WHERE a=16951;\nUPDATE t2 SET b=82881 WHERE a=16952;\nUPDATE t2 SET b=13895 WHERE a=16953;\nUPDATE t2 SET b=98867 WHERE a=16954;\nUPDATE t2 SET b=76279 WHERE a=16955;\nUPDATE t2 SET b=93452 WHERE a=16956;\nUPDATE t2 SET b=36860 WHERE a=16957;\nUPDATE t2 SET b=39956 WHERE a=16958;\nUPDATE t2 SET b=91989 WHERE a=16959;\nUPDATE t2 SET b=31573 WHERE a=16960;\nUPDATE t2 SET b=74924 WHERE a=16961;\nUPDATE t2 SET b=82122 WHERE a=16962;\nUPDATE t2 SET b=11431 WHERE a=16963;\nUPDATE t2 SET b=89863 WHERE a=16964;\nUPDATE t2 SET b=80501 WHERE a=16965;\nUPDATE t2 SET b=23736 WHERE a=16966;\nUPDATE t2 SET b=17605 WHERE a=16967;\nUPDATE t2 SET b=85459 WHERE a=16968;\nUPDATE t2 SET b=75205 WHERE a=16969;\nUPDATE t2 SET b=42342 WHERE a=16970;\nUPDATE t2 SET b=95394 WHERE a=16971;\nUPDATE t2 SET b=62424 WHERE a=16972;\nUPDATE t2 SET b=36942 WHERE a=16973;\nUPDATE t2 SET b=28295 WHERE a=16974;\nUPDATE t2 SET b=66157 WHERE a=16975;\nUPDATE t2 SET b=54159 WHERE a=16976;\nUPDATE t2 SET b=55567 WHERE a=16977;\nUPDATE t2 SET b=97551 WHERE a=16978;\nUPDATE t2 SET b=7231 WHERE a=16979;\nUPDATE t2 SET b=4246 WHERE a=16980;\nUPDATE t2 SET b=51987 WHERE a=16981;\nUPDATE t2 SET b=90872 WHERE a=16982;\nUPDATE t2 SET b=68762 WHERE a=16983;\nUPDATE t2 SET b=35638 WHERE a=16984;\nUPDATE t2 SET b=34272 WHERE a=16985;\nUPDATE t2 SET b=73013 WHERE a=16986;\nUPDATE t2 SET b=81243 WHERE a=16987;\nUPDATE t2 SET b=97324 WHERE a=16988;\nUPDATE t2 SET b=94253 WHERE a=16989;\nUPDATE t2 SET b=18392 WHERE a=16990;\nUPDATE t2 SET b=92274 WHERE a=16991;\nUPDATE t2 SET b=70564 WHERE a=16992;\nUPDATE t2 SET b=84326 WHERE a=16993;\nUPDATE t2 SET b=49653 WHERE a=16994;\nUPDATE t2 SET b=22628 WHERE a=16995;\nUPDATE t2 SET b=68019 WHERE a=16996;\nUPDATE t2 SET b=19252 WHERE a=16997;\nUPDATE t2 SET b=75358 WHERE a=16998;\nUPDATE t2 SET b=76321 WHERE a=16999;\nUPDATE t2 SET b=738 WHERE a=17000;\nUPDATE t2 SET b=26040 WHERE a=17001;\nUPDATE t2 SET b=46502 WHERE a=17002;\nUPDATE t2 SET b=914 WHERE a=17003;\nUPDATE t2 SET b=15937 WHERE a=17004;\nUPDATE t2 SET b=92674 WHERE a=17005;\nUPDATE t2 SET b=38654 WHERE a=17006;\nUPDATE t2 SET b=89838 WHERE a=17007;\nUPDATE t2 SET b=59448 WHERE a=17008;\nUPDATE t2 SET b=26933 WHERE a=17009;\nUPDATE t2 SET b=58573 WHERE a=17010;\nUPDATE t2 SET b=45434 WHERE a=17011;\nUPDATE t2 SET b=87753 WHERE a=17012;\nUPDATE t2 SET b=18588 WHERE a=17013;\nUPDATE t2 SET b=72602 WHERE a=17014;\nUPDATE t2 SET b=67248 WHERE a=17015;\nUPDATE t2 SET b=82292 WHERE a=17016;\nUPDATE t2 SET b=1952 WHERE a=17017;\nUPDATE t2 SET b=67449 WHERE a=17018;\nUPDATE t2 SET b=54545 WHERE a=17019;\nUPDATE t2 SET b=94296 WHERE a=17020;\nUPDATE t2 SET b=22622 WHERE a=17021;\nUPDATE t2 SET b=78658 WHERE a=17022;\nUPDATE t2 SET b=36110 WHERE a=17023;\nUPDATE t2 SET b=66682 WHERE a=17024;\nUPDATE t2 SET b=69654 WHERE a=17025;\nUPDATE t2 SET b=7668 WHERE a=17026;\nUPDATE t2 SET b=55116 WHERE a=17027;\nUPDATE t2 SET b=37115 WHERE a=17028;\nUPDATE t2 SET b=7835 WHERE a=17029;\nUPDATE t2 SET b=57160 WHERE a=17030;\nUPDATE t2 SET b=24267 WHERE a=17031;\nUPDATE t2 SET b=5688 WHERE a=17032;\nUPDATE t2 SET b=4922 WHERE a=17033;\nUPDATE t2 SET b=70016 WHERE a=17034;\nUPDATE t2 SET b=81575 WHERE a=17035;\nUPDATE t2 SET b=3799 WHERE a=17036;\nUPDATE t2 SET b=63102 WHERE a=17037;\nUPDATE t2 SET b=11682 WHERE a=17038;\nUPDATE t2 SET b=33924 WHERE a=17039;\nUPDATE t2 SET b=66607 WHERE a=17040;\nUPDATE t2 SET b=56343 WHERE a=17041;\nUPDATE t2 SET b=34267 WHERE a=17042;\nUPDATE t2 SET b=24251 WHERE a=17043;\nUPDATE t2 SET b=57480 WHERE a=17044;\nUPDATE t2 SET b=8314 WHERE a=17045;\nUPDATE t2 SET b=89318 WHERE a=17046;\nUPDATE t2 SET b=97878 WHERE a=17047;\nUPDATE t2 SET b=71104 WHERE a=17048;\nUPDATE t2 SET b=38696 WHERE a=17049;\nUPDATE t2 SET b=82099 WHERE a=17050;\nUPDATE t2 SET b=18155 WHERE a=17051;\nUPDATE t2 SET b=25597 WHERE a=17052;\nUPDATE t2 SET b=43384 WHERE a=17053;\nUPDATE t2 SET b=20453 WHERE a=17054;\nUPDATE t2 SET b=92662 WHERE a=17055;\nUPDATE t2 SET b=5046 WHERE a=17056;\nUPDATE t2 SET b=99482 WHERE a=17057;\nUPDATE t2 SET b=20112 WHERE a=17058;\nUPDATE t2 SET b=47390 WHERE a=17059;\nUPDATE t2 SET b=25312 WHERE a=17060;\nUPDATE t2 SET b=53544 WHERE a=17061;\nUPDATE t2 SET b=64869 WHERE a=17062;\nUPDATE t2 SET b=99677 WHERE a=17063;\nUPDATE t2 SET b=66710 WHERE a=17064;\nUPDATE t2 SET b=98958 WHERE a=17065;\nUPDATE t2 SET b=93144 WHERE a=17066;\nUPDATE t2 SET b=84750 WHERE a=17067;\nUPDATE t2 SET b=55982 WHERE a=17068;\nUPDATE t2 SET b=25765 WHERE a=17069;\nUPDATE t2 SET b=33164 WHERE a=17070;\nUPDATE t2 SET b=48046 WHERE a=17071;\nUPDATE t2 SET b=78408 WHERE a=17072;\nUPDATE t2 SET b=80861 WHERE a=17073;\nUPDATE t2 SET b=18747 WHERE a=17074;\nUPDATE t2 SET b=99057 WHERE a=17075;\nUPDATE t2 SET b=33228 WHERE a=17076;\nUPDATE t2 SET b=18524 WHERE a=17077;\nUPDATE t2 SET b=26170 WHERE a=17078;\nUPDATE t2 SET b=68286 WHERE a=17079;\nUPDATE t2 SET b=4914 WHERE a=17080;\nUPDATE t2 SET b=4019 WHERE a=17081;\nUPDATE t2 SET b=98811 WHERE a=17082;\nUPDATE t2 SET b=44765 WHERE a=17083;\nUPDATE t2 SET b=1308 WHERE a=17084;\nUPDATE t2 SET b=16805 WHERE a=17085;\nUPDATE t2 SET b=1395 WHERE a=17086;\nUPDATE t2 SET b=20619 WHERE a=17087;\nUPDATE t2 SET b=76051 WHERE a=17088;\nUPDATE t2 SET b=52822 WHERE a=17089;\nUPDATE t2 SET b=80890 WHERE a=17090;\nUPDATE t2 SET b=65241 WHERE a=17091;\nUPDATE t2 SET b=68613 WHERE a=17092;\nUPDATE t2 SET b=5847 WHERE a=17093;\nUPDATE t2 SET b=62334 WHERE a=17094;\nUPDATE t2 SET b=21482 WHERE a=17095;\nUPDATE t2 SET b=61742 WHERE a=17096;\nUPDATE t2 SET b=64678 WHERE a=17097;\nUPDATE t2 SET b=16406 WHERE a=17098;\nUPDATE t2 SET b=97110 WHERE a=17099;\nUPDATE t2 SET b=71839 WHERE a=17100;\nUPDATE t2 SET b=92958 WHERE a=17101;\nUPDATE t2 SET b=55968 WHERE a=17102;\nUPDATE t2 SET b=51056 WHERE a=17103;\nUPDATE t2 SET b=69771 WHERE a=17104;\nUPDATE t2 SET b=95481 WHERE a=17105;\nUPDATE t2 SET b=18556 WHERE a=17106;\nUPDATE t2 SET b=26502 WHERE a=17107;\nUPDATE t2 SET b=73953 WHERE a=17108;\nUPDATE t2 SET b=15149 WHERE a=17109;\nUPDATE t2 SET b=74085 WHERE a=17110;\nUPDATE t2 SET b=94637 WHERE a=17111;\nUPDATE t2 SET b=21685 WHERE a=17112;\nUPDATE t2 SET b=27214 WHERE a=17113;\nUPDATE t2 SET b=29901 WHERE a=17114;\nUPDATE t2 SET b=71020 WHERE a=17115;\nUPDATE t2 SET b=59302 WHERE a=17116;\nUPDATE t2 SET b=40460 WHERE a=17117;\nUPDATE t2 SET b=49298 WHERE a=17118;\nUPDATE t2 SET b=46273 WHERE a=17119;\nUPDATE t2 SET b=35963 WHERE a=17120;\nUPDATE t2 SET b=81084 WHERE a=17121;\nUPDATE t2 SET b=77402 WHERE a=17122;\nUPDATE t2 SET b=18355 WHERE a=17123;\nUPDATE t2 SET b=77618 WHERE a=17124;\nUPDATE t2 SET b=76430 WHERE a=17125;\nUPDATE t2 SET b=94417 WHERE a=17126;\nUPDATE t2 SET b=47593 WHERE a=17127;\nUPDATE t2 SET b=78987 WHERE a=17128;\nUPDATE t2 SET b=9827 WHERE a=17129;\nUPDATE t2 SET b=85251 WHERE a=17130;\nUPDATE t2 SET b=59111 WHERE a=17131;\nUPDATE t2 SET b=54701 WHERE a=17132;\nUPDATE t2 SET b=28062 WHERE a=17133;\nUPDATE t2 SET b=38177 WHERE a=17134;\nUPDATE t2 SET b=94121 WHERE a=17135;\nUPDATE t2 SET b=82967 WHERE a=17136;\nUPDATE t2 SET b=4637 WHERE a=17137;\nUPDATE t2 SET b=14215 WHERE a=17138;\nUPDATE t2 SET b=29219 WHERE a=17139;\nUPDATE t2 SET b=32458 WHERE a=17140;\nUPDATE t2 SET b=97969 WHERE a=17141;\nUPDATE t2 SET b=54130 WHERE a=17142;\nUPDATE t2 SET b=61161 WHERE a=17143;\nUPDATE t2 SET b=65736 WHERE a=17144;\nUPDATE t2 SET b=21973 WHERE a=17145;\nUPDATE t2 SET b=67393 WHERE a=17146;\nUPDATE t2 SET b=30018 WHERE a=17147;\nUPDATE t2 SET b=37056 WHERE a=17148;\nUPDATE t2 SET b=80845 WHERE a=17149;\nUPDATE t2 SET b=61300 WHERE a=17150;\nUPDATE t2 SET b=90125 WHERE a=17151;\nUPDATE t2 SET b=66013 WHERE a=17152;\nUPDATE t2 SET b=52379 WHERE a=17153;\nUPDATE t2 SET b=7241 WHERE a=17154;\nUPDATE t2 SET b=76452 WHERE a=17155;\nUPDATE t2 SET b=74592 WHERE a=17156;\nUPDATE t2 SET b=10964 WHERE a=17157;\nUPDATE t2 SET b=34721 WHERE a=17158;\nUPDATE t2 SET b=72094 WHERE a=17159;\nUPDATE t2 SET b=84863 WHERE a=17160;\nUPDATE t2 SET b=72715 WHERE a=17161;\nUPDATE t2 SET b=50693 WHERE a=17162;\nUPDATE t2 SET b=15447 WHERE a=17163;\nUPDATE t2 SET b=51417 WHERE a=17164;\nUPDATE t2 SET b=10281 WHERE a=17165;\nUPDATE t2 SET b=44941 WHERE a=17166;\nUPDATE t2 SET b=51088 WHERE a=17167;\nUPDATE t2 SET b=27356 WHERE a=17168;\nUPDATE t2 SET b=87150 WHERE a=17169;\nUPDATE t2 SET b=44619 WHERE a=17170;\nUPDATE t2 SET b=11430 WHERE a=17171;\nUPDATE t2 SET b=79574 WHERE a=17172;\nUPDATE t2 SET b=90799 WHERE a=17173;\nUPDATE t2 SET b=68738 WHERE a=17174;\nUPDATE t2 SET b=9490 WHERE a=17175;\nUPDATE t2 SET b=16377 WHERE a=17176;\nUPDATE t2 SET b=21130 WHERE a=17177;\nUPDATE t2 SET b=65906 WHERE a=17178;\nUPDATE t2 SET b=2021 WHERE a=17179;\nUPDATE t2 SET b=27632 WHERE a=17180;\nUPDATE t2 SET b=58423 WHERE a=17181;\nUPDATE t2 SET b=36540 WHERE a=17182;\nUPDATE t2 SET b=83687 WHERE a=17183;\nUPDATE t2 SET b=31606 WHERE a=17184;\nUPDATE t2 SET b=18457 WHERE a=17185;\nUPDATE t2 SET b=78925 WHERE a=17186;\nUPDATE t2 SET b=1335 WHERE a=17187;\nUPDATE t2 SET b=17866 WHERE a=17188;\nUPDATE t2 SET b=93602 WHERE a=17189;\nUPDATE t2 SET b=78190 WHERE a=17190;\nUPDATE t2 SET b=73851 WHERE a=17191;\nUPDATE t2 SET b=55555 WHERE a=17192;\nUPDATE t2 SET b=52275 WHERE a=17193;\nUPDATE t2 SET b=62535 WHERE a=17194;\nUPDATE t2 SET b=26477 WHERE a=17195;\nUPDATE t2 SET b=47369 WHERE a=17196;\nUPDATE t2 SET b=88149 WHERE a=17197;\nUPDATE t2 SET b=97500 WHERE a=17198;\nUPDATE t2 SET b=42776 WHERE a=17199;\nUPDATE t2 SET b=1869 WHERE a=17200;\nUPDATE t2 SET b=93283 WHERE a=17201;\nUPDATE t2 SET b=87447 WHERE a=17202;\nUPDATE t2 SET b=50028 WHERE a=17203;\nUPDATE t2 SET b=79674 WHERE a=17204;\nUPDATE t2 SET b=45041 WHERE a=17205;\nUPDATE t2 SET b=46301 WHERE a=17206;\nUPDATE t2 SET b=71728 WHERE a=17207;\nUPDATE t2 SET b=60104 WHERE a=17208;\nUPDATE t2 SET b=66050 WHERE a=17209;\nUPDATE t2 SET b=13111 WHERE a=17210;\nUPDATE t2 SET b=90640 WHERE a=17211;\nUPDATE t2 SET b=30860 WHERE a=17212;\nUPDATE t2 SET b=6749 WHERE a=17213;\nUPDATE t2 SET b=24517 WHERE a=17214;\nUPDATE t2 SET b=51164 WHERE a=17215;\nUPDATE t2 SET b=73726 WHERE a=17216;\nUPDATE t2 SET b=97018 WHERE a=17217;\nUPDATE t2 SET b=42571 WHERE a=17218;\nUPDATE t2 SET b=58329 WHERE a=17219;\nUPDATE t2 SET b=77033 WHERE a=17220;\nUPDATE t2 SET b=95957 WHERE a=17221;\nUPDATE t2 SET b=88990 WHERE a=17222;\nUPDATE t2 SET b=78213 WHERE a=17223;\nUPDATE t2 SET b=31195 WHERE a=17224;\nUPDATE t2 SET b=47176 WHERE a=17225;\nUPDATE t2 SET b=32873 WHERE a=17226;\nUPDATE t2 SET b=46275 WHERE a=17227;\nUPDATE t2 SET b=27211 WHERE a=17228;\nUPDATE t2 SET b=96907 WHERE a=17229;\nUPDATE t2 SET b=55477 WHERE a=17230;\nUPDATE t2 SET b=7583 WHERE a=17231;\nUPDATE t2 SET b=35102 WHERE a=17232;\nUPDATE t2 SET b=61538 WHERE a=17233;\nUPDATE t2 SET b=78723 WHERE a=17234;\nUPDATE t2 SET b=44221 WHERE a=17235;\nUPDATE t2 SET b=83400 WHERE a=17236;\nUPDATE t2 SET b=15597 WHERE a=17237;\nUPDATE t2 SET b=77077 WHERE a=17238;\nUPDATE t2 SET b=25006 WHERE a=17239;\nUPDATE t2 SET b=3217 WHERE a=17240;\nUPDATE t2 SET b=13454 WHERE a=17241;\nUPDATE t2 SET b=11366 WHERE a=17242;\nUPDATE t2 SET b=73738 WHERE a=17243;\nUPDATE t2 SET b=50894 WHERE a=17244;\nUPDATE t2 SET b=32864 WHERE a=17245;\nUPDATE t2 SET b=34710 WHERE a=17246;\nUPDATE t2 SET b=10737 WHERE a=17247;\nUPDATE t2 SET b=52345 WHERE a=17248;\nUPDATE t2 SET b=81521 WHERE a=17249;\nUPDATE t2 SET b=29499 WHERE a=17250;\nUPDATE t2 SET b=79824 WHERE a=17251;\nUPDATE t2 SET b=65976 WHERE a=17252;\nUPDATE t2 SET b=14319 WHERE a=17253;\nUPDATE t2 SET b=72801 WHERE a=17254;\nUPDATE t2 SET b=31717 WHERE a=17255;\nUPDATE t2 SET b=56565 WHERE a=17256;\nUPDATE t2 SET b=39099 WHERE a=17257;\nUPDATE t2 SET b=34286 WHERE a=17258;\nUPDATE t2 SET b=77036 WHERE a=17259;\nUPDATE t2 SET b=42471 WHERE a=17260;\nUPDATE t2 SET b=83023 WHERE a=17261;\nUPDATE t2 SET b=27142 WHERE a=17262;\nUPDATE t2 SET b=32599 WHERE a=17263;\nUPDATE t2 SET b=54530 WHERE a=17264;\nUPDATE t2 SET b=71378 WHERE a=17265;\nUPDATE t2 SET b=88183 WHERE a=17266;\nUPDATE t2 SET b=93714 WHERE a=17267;\nUPDATE t2 SET b=54256 WHERE a=17268;\nUPDATE t2 SET b=71479 WHERE a=17269;\nUPDATE t2 SET b=78222 WHERE a=17270;\nUPDATE t2 SET b=50286 WHERE a=17271;\nUPDATE t2 SET b=26601 WHERE a=17272;\nUPDATE t2 SET b=33700 WHERE a=17273;\nUPDATE t2 SET b=36836 WHERE a=17274;\nUPDATE t2 SET b=9919 WHERE a=17275;\nUPDATE t2 SET b=69674 WHERE a=17276;\nUPDATE t2 SET b=19075 WHERE a=17277;\nUPDATE t2 SET b=68283 WHERE a=17278;\nUPDATE t2 SET b=46529 WHERE a=17279;\nUPDATE t2 SET b=75832 WHERE a=17280;\nUPDATE t2 SET b=33386 WHERE a=17281;\nUPDATE t2 SET b=6776 WHERE a=17282;\nUPDATE t2 SET b=78517 WHERE a=17283;\nUPDATE t2 SET b=58779 WHERE a=17284;\nUPDATE t2 SET b=3996 WHERE a=17285;\nUPDATE t2 SET b=80339 WHERE a=17286;\nUPDATE t2 SET b=46262 WHERE a=17287;\nUPDATE t2 SET b=54853 WHERE a=17288;\nUPDATE t2 SET b=47360 WHERE a=17289;\nUPDATE t2 SET b=72363 WHERE a=17290;\nUPDATE t2 SET b=18114 WHERE a=17291;\nUPDATE t2 SET b=22641 WHERE a=17292;\nUPDATE t2 SET b=58923 WHERE a=17293;\nUPDATE t2 SET b=91852 WHERE a=17294;\nUPDATE t2 SET b=74191 WHERE a=17295;\nUPDATE t2 SET b=65324 WHERE a=17296;\nUPDATE t2 SET b=19509 WHERE a=17297;\nUPDATE t2 SET b=56899 WHERE a=17298;\nUPDATE t2 SET b=93011 WHERE a=17299;\nUPDATE t2 SET b=12934 WHERE a=17300;\nUPDATE t2 SET b=50882 WHERE a=17301;\nUPDATE t2 SET b=79069 WHERE a=17302;\nUPDATE t2 SET b=16152 WHERE a=17303;\nUPDATE t2 SET b=6798 WHERE a=17304;\nUPDATE t2 SET b=86286 WHERE a=17305;\nUPDATE t2 SET b=64921 WHERE a=17306;\nUPDATE t2 SET b=46019 WHERE a=17307;\nUPDATE t2 SET b=65105 WHERE a=17308;\nUPDATE t2 SET b=15463 WHERE a=17309;\nUPDATE t2 SET b=72952 WHERE a=17310;\nUPDATE t2 SET b=56177 WHERE a=17311;\nUPDATE t2 SET b=58724 WHERE a=17312;\nUPDATE t2 SET b=9386 WHERE a=17313;\nUPDATE t2 SET b=11828 WHERE a=17314;\nUPDATE t2 SET b=68743 WHERE a=17315;\nUPDATE t2 SET b=49875 WHERE a=17316;\nUPDATE t2 SET b=6661 WHERE a=17317;\nUPDATE t2 SET b=91041 WHERE a=17318;\nUPDATE t2 SET b=55590 WHERE a=17319;\nUPDATE t2 SET b=16276 WHERE a=17320;\nUPDATE t2 SET b=81186 WHERE a=17321;\nUPDATE t2 SET b=84815 WHERE a=17322;\nUPDATE t2 SET b=42845 WHERE a=17323;\nUPDATE t2 SET b=58162 WHERE a=17324;\nUPDATE t2 SET b=50952 WHERE a=17325;\nUPDATE t2 SET b=75971 WHERE a=17326;\nUPDATE t2 SET b=59797 WHERE a=17327;\nUPDATE t2 SET b=48464 WHERE a=17328;\nUPDATE t2 SET b=92583 WHERE a=17329;\nUPDATE t2 SET b=77693 WHERE a=17330;\nUPDATE t2 SET b=90677 WHERE a=17331;\nUPDATE t2 SET b=2390 WHERE a=17332;\nUPDATE t2 SET b=96179 WHERE a=17333;\nUPDATE t2 SET b=18774 WHERE a=17334;\nUPDATE t2 SET b=49357 WHERE a=17335;\nUPDATE t2 SET b=60556 WHERE a=17336;\nUPDATE t2 SET b=36828 WHERE a=17337;\nUPDATE t2 SET b=21179 WHERE a=17338;\nUPDATE t2 SET b=89971 WHERE a=17339;\nUPDATE t2 SET b=34651 WHERE a=17340;\nUPDATE t2 SET b=10776 WHERE a=17341;\nUPDATE t2 SET b=63043 WHERE a=17342;\nUPDATE t2 SET b=20176 WHERE a=17343;\nUPDATE t2 SET b=96402 WHERE a=17344;\nUPDATE t2 SET b=76489 WHERE a=17345;\nUPDATE t2 SET b=89386 WHERE a=17346;\nUPDATE t2 SET b=90884 WHERE a=17347;\nUPDATE t2 SET b=35905 WHERE a=17348;\nUPDATE t2 SET b=82698 WHERE a=17349;\nUPDATE t2 SET b=43984 WHERE a=17350;\nUPDATE t2 SET b=90243 WHERE a=17351;\nUPDATE t2 SET b=35656 WHERE a=17352;\nUPDATE t2 SET b=76367 WHERE a=17353;\nUPDATE t2 SET b=86970 WHERE a=17354;\nUPDATE t2 SET b=68065 WHERE a=17355;\nUPDATE t2 SET b=31927 WHERE a=17356;\nUPDATE t2 SET b=46739 WHERE a=17357;\nUPDATE t2 SET b=29522 WHERE a=17358;\nUPDATE t2 SET b=82651 WHERE a=17359;\nUPDATE t2 SET b=85497 WHERE a=17360;\nUPDATE t2 SET b=91565 WHERE a=17361;\nUPDATE t2 SET b=8141 WHERE a=17362;\nUPDATE t2 SET b=39288 WHERE a=17363;\nUPDATE t2 SET b=12550 WHERE a=17364;\nUPDATE t2 SET b=3422 WHERE a=17365;\nUPDATE t2 SET b=14389 WHERE a=17366;\nUPDATE t2 SET b=32550 WHERE a=17367;\nUPDATE t2 SET b=82926 WHERE a=17368;\nUPDATE t2 SET b=72384 WHERE a=17369;\nUPDATE t2 SET b=15180 WHERE a=17370;\nUPDATE t2 SET b=50250 WHERE a=17371;\nUPDATE t2 SET b=744 WHERE a=17372;\nUPDATE t2 SET b=96372 WHERE a=17373;\nUPDATE t2 SET b=19910 WHERE a=17374;\nUPDATE t2 SET b=49711 WHERE a=17375;\nUPDATE t2 SET b=486 WHERE a=17376;\nUPDATE t2 SET b=90017 WHERE a=17377;\nUPDATE t2 SET b=17117 WHERE a=17378;\nUPDATE t2 SET b=41474 WHERE a=17379;\nUPDATE t2 SET b=85853 WHERE a=17380;\nUPDATE t2 SET b=93339 WHERE a=17381;\nUPDATE t2 SET b=91435 WHERE a=17382;\nUPDATE t2 SET b=70933 WHERE a=17383;\nUPDATE t2 SET b=57315 WHERE a=17384;\nUPDATE t2 SET b=67940 WHERE a=17385;\nUPDATE t2 SET b=70892 WHERE a=17386;\nUPDATE t2 SET b=10549 WHERE a=17387;\nUPDATE t2 SET b=30151 WHERE a=17388;\nUPDATE t2 SET b=3623 WHERE a=17389;\nUPDATE t2 SET b=25779 WHERE a=17390;\nUPDATE t2 SET b=56104 WHERE a=17391;\nUPDATE t2 SET b=41088 WHERE a=17392;\nUPDATE t2 SET b=5369 WHERE a=17393;\nUPDATE t2 SET b=67360 WHERE a=17394;\nUPDATE t2 SET b=50377 WHERE a=17395;\nUPDATE t2 SET b=78399 WHERE a=17396;\nUPDATE t2 SET b=92192 WHERE a=17397;\nUPDATE t2 SET b=26596 WHERE a=17398;\nUPDATE t2 SET b=10532 WHERE a=17399;\nUPDATE t2 SET b=75249 WHERE a=17400;\nUPDATE t2 SET b=97076 WHERE a=17401;\nUPDATE t2 SET b=90052 WHERE a=17402;\nUPDATE t2 SET b=29379 WHERE a=17403;\nUPDATE t2 SET b=47629 WHERE a=17404;\nUPDATE t2 SET b=90246 WHERE a=17405;\nUPDATE t2 SET b=36829 WHERE a=17406;\nUPDATE t2 SET b=8374 WHERE a=17407;\nUPDATE t2 SET b=18927 WHERE a=17408;\nUPDATE t2 SET b=24053 WHERE a=17409;\nUPDATE t2 SET b=25862 WHERE a=17410;\nUPDATE t2 SET b=70018 WHERE a=17411;\nUPDATE t2 SET b=98796 WHERE a=17412;\nUPDATE t2 SET b=97729 WHERE a=17413;\nUPDATE t2 SET b=73064 WHERE a=17414;\nUPDATE t2 SET b=54441 WHERE a=17415;\nUPDATE t2 SET b=64071 WHERE a=17416;\nUPDATE t2 SET b=75401 WHERE a=17417;\nUPDATE t2 SET b=62467 WHERE a=17418;\nUPDATE t2 SET b=52853 WHERE a=17419;\nUPDATE t2 SET b=22239 WHERE a=17420;\nUPDATE t2 SET b=11128 WHERE a=17421;\nUPDATE t2 SET b=86187 WHERE a=17422;\nUPDATE t2 SET b=84147 WHERE a=17423;\nUPDATE t2 SET b=48932 WHERE a=17424;\nUPDATE t2 SET b=21695 WHERE a=17425;\nUPDATE t2 SET b=94972 WHERE a=17426;\nUPDATE t2 SET b=75501 WHERE a=17427;\nUPDATE t2 SET b=40789 WHERE a=17428;\nUPDATE t2 SET b=23176 WHERE a=17429;\nUPDATE t2 SET b=73711 WHERE a=17430;\nUPDATE t2 SET b=95284 WHERE a=17431;\nUPDATE t2 SET b=40769 WHERE a=17432;\nUPDATE t2 SET b=2000 WHERE a=17433;\nUPDATE t2 SET b=85550 WHERE a=17434;\nUPDATE t2 SET b=61581 WHERE a=17435;\nUPDATE t2 SET b=63541 WHERE a=17436;\nUPDATE t2 SET b=52253 WHERE a=17437;\nUPDATE t2 SET b=21950 WHERE a=17438;\nUPDATE t2 SET b=47170 WHERE a=17439;\nUPDATE t2 SET b=8388 WHERE a=17440;\nUPDATE t2 SET b=12002 WHERE a=17441;\nUPDATE t2 SET b=21143 WHERE a=17442;\nUPDATE t2 SET b=97710 WHERE a=17443;\nUPDATE t2 SET b=41977 WHERE a=17444;\nUPDATE t2 SET b=44406 WHERE a=17445;\nUPDATE t2 SET b=85494 WHERE a=17446;\nUPDATE t2 SET b=41341 WHERE a=17447;\nUPDATE t2 SET b=98279 WHERE a=17448;\nUPDATE t2 SET b=70947 WHERE a=17449;\nUPDATE t2 SET b=68591 WHERE a=17450;\nUPDATE t2 SET b=50672 WHERE a=17451;\nUPDATE t2 SET b=80240 WHERE a=17452;\nUPDATE t2 SET b=10325 WHERE a=17453;\nUPDATE t2 SET b=67746 WHERE a=17454;\nUPDATE t2 SET b=12116 WHERE a=17455;\nUPDATE t2 SET b=22148 WHERE a=17456;\nUPDATE t2 SET b=50798 WHERE a=17457;\nUPDATE t2 SET b=34747 WHERE a=17458;\nUPDATE t2 SET b=37554 WHERE a=17459;\nUPDATE t2 SET b=5944 WHERE a=17460;\nUPDATE t2 SET b=28343 WHERE a=17461;\nUPDATE t2 SET b=23136 WHERE a=17462;\nUPDATE t2 SET b=78314 WHERE a=17463;\nUPDATE t2 SET b=7609 WHERE a=17464;\nUPDATE t2 SET b=20426 WHERE a=17465;\nUPDATE t2 SET b=34820 WHERE a=17466;\nUPDATE t2 SET b=98876 WHERE a=17467;\nUPDATE t2 SET b=42242 WHERE a=17468;\nUPDATE t2 SET b=96273 WHERE a=17469;\nUPDATE t2 SET b=26611 WHERE a=17470;\nUPDATE t2 SET b=23133 WHERE a=17471;\nUPDATE t2 SET b=23554 WHERE a=17472;\nUPDATE t2 SET b=29325 WHERE a=17473;\nUPDATE t2 SET b=56872 WHERE a=17474;\nUPDATE t2 SET b=10732 WHERE a=17475;\nUPDATE t2 SET b=64690 WHERE a=17476;\nUPDATE t2 SET b=47781 WHERE a=17477;\nUPDATE t2 SET b=7467 WHERE a=17478;\nUPDATE t2 SET b=19520 WHERE a=17479;\nUPDATE t2 SET b=89965 WHERE a=17480;\nUPDATE t2 SET b=42334 WHERE a=17481;\nUPDATE t2 SET b=16256 WHERE a=17482;\nUPDATE t2 SET b=68991 WHERE a=17483;\nUPDATE t2 SET b=14584 WHERE a=17484;\nUPDATE t2 SET b=75462 WHERE a=17485;\nUPDATE t2 SET b=74086 WHERE a=17486;\nUPDATE t2 SET b=57569 WHERE a=17487;\nUPDATE t2 SET b=53391 WHERE a=17488;\nUPDATE t2 SET b=27903 WHERE a=17489;\nUPDATE t2 SET b=43494 WHERE a=17490;\nUPDATE t2 SET b=65106 WHERE a=17491;\nUPDATE t2 SET b=20545 WHERE a=17492;\nUPDATE t2 SET b=13379 WHERE a=17493;\nUPDATE t2 SET b=59500 WHERE a=17494;\nUPDATE t2 SET b=52367 WHERE a=17495;\nUPDATE t2 SET b=52252 WHERE a=17496;\nUPDATE t2 SET b=27176 WHERE a=17497;\nUPDATE t2 SET b=28640 WHERE a=17498;\nUPDATE t2 SET b=5010 WHERE a=17499;\nUPDATE t2 SET b=32405 WHERE a=17500;\nUPDATE t2 SET b=76310 WHERE a=17501;\nUPDATE t2 SET b=78324 WHERE a=17502;\nUPDATE t2 SET b=8014 WHERE a=17503;\nUPDATE t2 SET b=48799 WHERE a=17504;\nUPDATE t2 SET b=34608 WHERE a=17505;\nUPDATE t2 SET b=52833 WHERE a=17506;\nUPDATE t2 SET b=95276 WHERE a=17507;\nUPDATE t2 SET b=81462 WHERE a=17508;\nUPDATE t2 SET b=27569 WHERE a=17509;\nUPDATE t2 SET b=70780 WHERE a=17510;\nUPDATE t2 SET b=45157 WHERE a=17511;\nUPDATE t2 SET b=12130 WHERE a=17512;\nUPDATE t2 SET b=70136 WHERE a=17513;\nUPDATE t2 SET b=13813 WHERE a=17514;\nUPDATE t2 SET b=18218 WHERE a=17515;\nUPDATE t2 SET b=89530 WHERE a=17516;\nUPDATE t2 SET b=44092 WHERE a=17517;\nUPDATE t2 SET b=57939 WHERE a=17518;\nUPDATE t2 SET b=99322 WHERE a=17519;\nUPDATE t2 SET b=645 WHERE a=17520;\nUPDATE t2 SET b=73632 WHERE a=17521;\nUPDATE t2 SET b=75504 WHERE a=17522;\nUPDATE t2 SET b=35026 WHERE a=17523;\nUPDATE t2 SET b=38393 WHERE a=17524;\nUPDATE t2 SET b=46993 WHERE a=17525;\nUPDATE t2 SET b=49593 WHERE a=17526;\nUPDATE t2 SET b=83873 WHERE a=17527;\nUPDATE t2 SET b=42139 WHERE a=17528;\nUPDATE t2 SET b=68527 WHERE a=17529;\nUPDATE t2 SET b=91439 WHERE a=17530;\nUPDATE t2 SET b=32773 WHERE a=17531;\nUPDATE t2 SET b=8115 WHERE a=17532;\nUPDATE t2 SET b=65705 WHERE a=17533;\nUPDATE t2 SET b=47416 WHERE a=17534;\nUPDATE t2 SET b=38910 WHERE a=17535;\nUPDATE t2 SET b=67829 WHERE a=17536;\nUPDATE t2 SET b=1131 WHERE a=17537;\nUPDATE t2 SET b=3272 WHERE a=17538;\nUPDATE t2 SET b=53880 WHERE a=17539;\nUPDATE t2 SET b=88559 WHERE a=17540;\nUPDATE t2 SET b=53108 WHERE a=17541;\nUPDATE t2 SET b=41075 WHERE a=17542;\nUPDATE t2 SET b=16541 WHERE a=17543;\nUPDATE t2 SET b=88789 WHERE a=17544;\nUPDATE t2 SET b=47229 WHERE a=17545;\nUPDATE t2 SET b=65054 WHERE a=17546;\nUPDATE t2 SET b=34100 WHERE a=17547;\nUPDATE t2 SET b=55820 WHERE a=17548;\nUPDATE t2 SET b=17564 WHERE a=17549;\nUPDATE t2 SET b=1008 WHERE a=17550;\nUPDATE t2 SET b=98744 WHERE a=17551;\nUPDATE t2 SET b=10085 WHERE a=17552;\nUPDATE t2 SET b=43638 WHERE a=17553;\nUPDATE t2 SET b=44839 WHERE a=17554;\nUPDATE t2 SET b=61357 WHERE a=17555;\nUPDATE t2 SET b=15966 WHERE a=17556;\nUPDATE t2 SET b=54153 WHERE a=17557;\nUPDATE t2 SET b=33545 WHERE a=17558;\nUPDATE t2 SET b=24559 WHERE a=17559;\nUPDATE t2 SET b=8460 WHERE a=17560;\nUPDATE t2 SET b=6218 WHERE a=17561;\nUPDATE t2 SET b=11394 WHERE a=17562;\nUPDATE t2 SET b=73162 WHERE a=17563;\nUPDATE t2 SET b=43386 WHERE a=17564;\nUPDATE t2 SET b=75130 WHERE a=17565;\nUPDATE t2 SET b=12800 WHERE a=17566;\nUPDATE t2 SET b=42225 WHERE a=17567;\nUPDATE t2 SET b=40780 WHERE a=17568;\nUPDATE t2 SET b=3176 WHERE a=17569;\nUPDATE t2 SET b=79872 WHERE a=17570;\nUPDATE t2 SET b=89911 WHERE a=17571;\nUPDATE t2 SET b=43394 WHERE a=17572;\nUPDATE t2 SET b=81617 WHERE a=17573;\nUPDATE t2 SET b=84066 WHERE a=17574;\nUPDATE t2 SET b=90947 WHERE a=17575;\nUPDATE t2 SET b=52643 WHERE a=17576;\nUPDATE t2 SET b=24115 WHERE a=17577;\nUPDATE t2 SET b=16890 WHERE a=17578;\nUPDATE t2 SET b=50484 WHERE a=17579;\nUPDATE t2 SET b=61 WHERE a=17580;\nUPDATE t2 SET b=74404 WHERE a=17581;\nUPDATE t2 SET b=75397 WHERE a=17582;\nUPDATE t2 SET b=50125 WHERE a=17583;\nUPDATE t2 SET b=5456 WHERE a=17584;\nUPDATE t2 SET b=65264 WHERE a=17585;\nUPDATE t2 SET b=3030 WHERE a=17586;\nUPDATE t2 SET b=80088 WHERE a=17587;\nUPDATE t2 SET b=46781 WHERE a=17588;\nUPDATE t2 SET b=52602 WHERE a=17589;\nUPDATE t2 SET b=65137 WHERE a=17590;\nUPDATE t2 SET b=57954 WHERE a=17591;\nUPDATE t2 SET b=14289 WHERE a=17592;\nUPDATE t2 SET b=49166 WHERE a=17593;\nUPDATE t2 SET b=57366 WHERE a=17594;\nUPDATE t2 SET b=91792 WHERE a=17595;\nUPDATE t2 SET b=9961 WHERE a=17596;\nUPDATE t2 SET b=50870 WHERE a=17597;\nUPDATE t2 SET b=15064 WHERE a=17598;\nUPDATE t2 SET b=90522 WHERE a=17599;\nUPDATE t2 SET b=5486 WHERE a=17600;\nUPDATE t2 SET b=85196 WHERE a=17601;\nUPDATE t2 SET b=16081 WHERE a=17602;\nUPDATE t2 SET b=84789 WHERE a=17603;\nUPDATE t2 SET b=42536 WHERE a=17604;\nUPDATE t2 SET b=7305 WHERE a=17605;\nUPDATE t2 SET b=36341 WHERE a=17606;\nUPDATE t2 SET b=74019 WHERE a=17607;\nUPDATE t2 SET b=1465 WHERE a=17608;\nUPDATE t2 SET b=90094 WHERE a=17609;\nUPDATE t2 SET b=43947 WHERE a=17610;\nUPDATE t2 SET b=30027 WHERE a=17611;\nUPDATE t2 SET b=9700 WHERE a=17612;\nUPDATE t2 SET b=58613 WHERE a=17613;\nUPDATE t2 SET b=78799 WHERE a=17614;\nUPDATE t2 SET b=22564 WHERE a=17615;\nUPDATE t2 SET b=23326 WHERE a=17616;\nUPDATE t2 SET b=45402 WHERE a=17617;\nUPDATE t2 SET b=37189 WHERE a=17618;\nUPDATE t2 SET b=66266 WHERE a=17619;\nUPDATE t2 SET b=53557 WHERE a=17620;\nUPDATE t2 SET b=43157 WHERE a=17621;\nUPDATE t2 SET b=23214 WHERE a=17622;\nUPDATE t2 SET b=77545 WHERE a=17623;\nUPDATE t2 SET b=81432 WHERE a=17624;\nUPDATE t2 SET b=21816 WHERE a=17625;\nUPDATE t2 SET b=78154 WHERE a=17626;\nUPDATE t2 SET b=80438 WHERE a=17627;\nUPDATE t2 SET b=21218 WHERE a=17628;\nUPDATE t2 SET b=2679 WHERE a=17629;\nUPDATE t2 SET b=27302 WHERE a=17630;\nUPDATE t2 SET b=93785 WHERE a=17631;\nUPDATE t2 SET b=32782 WHERE a=17632;\nUPDATE t2 SET b=14147 WHERE a=17633;\nUPDATE t2 SET b=62375 WHERE a=17634;\nUPDATE t2 SET b=68133 WHERE a=17635;\nUPDATE t2 SET b=91644 WHERE a=17636;\nUPDATE t2 SET b=13375 WHERE a=17637;\nUPDATE t2 SET b=93967 WHERE a=17638;\nUPDATE t2 SET b=46523 WHERE a=17639;\nUPDATE t2 SET b=76983 WHERE a=17640;\nUPDATE t2 SET b=71597 WHERE a=17641;\nUPDATE t2 SET b=18147 WHERE a=17642;\nUPDATE t2 SET b=87032 WHERE a=17643;\nUPDATE t2 SET b=96056 WHERE a=17644;\nUPDATE t2 SET b=89873 WHERE a=17645;\nUPDATE t2 SET b=83196 WHERE a=17646;\nUPDATE t2 SET b=59202 WHERE a=17647;\nUPDATE t2 SET b=18753 WHERE a=17648;\nUPDATE t2 SET b=39229 WHERE a=17649;\nUPDATE t2 SET b=42336 WHERE a=17650;\nUPDATE t2 SET b=89298 WHERE a=17651;\nUPDATE t2 SET b=43787 WHERE a=17652;\nUPDATE t2 SET b=98150 WHERE a=17653;\nUPDATE t2 SET b=98256 WHERE a=17654;\nUPDATE t2 SET b=26841 WHERE a=17655;\nUPDATE t2 SET b=24355 WHERE a=17656;\nUPDATE t2 SET b=28757 WHERE a=17657;\nUPDATE t2 SET b=11140 WHERE a=17658;\nUPDATE t2 SET b=90134 WHERE a=17659;\nUPDATE t2 SET b=2827 WHERE a=17660;\nUPDATE t2 SET b=2453 WHERE a=17661;\nUPDATE t2 SET b=41030 WHERE a=17662;\nUPDATE t2 SET b=32677 WHERE a=17663;\nUPDATE t2 SET b=46240 WHERE a=17664;\nUPDATE t2 SET b=40648 WHERE a=17665;\nUPDATE t2 SET b=61376 WHERE a=17666;\nUPDATE t2 SET b=52478 WHERE a=17667;\nUPDATE t2 SET b=60585 WHERE a=17668;\nUPDATE t2 SET b=87798 WHERE a=17669;\nUPDATE t2 SET b=9686 WHERE a=17670;\nUPDATE t2 SET b=39274 WHERE a=17671;\nUPDATE t2 SET b=94401 WHERE a=17672;\nUPDATE t2 SET b=28622 WHERE a=17673;\nUPDATE t2 SET b=73164 WHERE a=17674;\nUPDATE t2 SET b=87609 WHERE a=17675;\nUPDATE t2 SET b=14873 WHERE a=17676;\nUPDATE t2 SET b=51501 WHERE a=17677;\nUPDATE t2 SET b=59261 WHERE a=17678;\nUPDATE t2 SET b=82878 WHERE a=17679;\nUPDATE t2 SET b=28771 WHERE a=17680;\nUPDATE t2 SET b=46281 WHERE a=17681;\nUPDATE t2 SET b=43078 WHERE a=17682;\nUPDATE t2 SET b=7778 WHERE a=17683;\nUPDATE t2 SET b=74525 WHERE a=17684;\nUPDATE t2 SET b=95528 WHERE a=17685;\nUPDATE t2 SET b=10146 WHERE a=17686;\nUPDATE t2 SET b=35141 WHERE a=17687;\nUPDATE t2 SET b=80157 WHERE a=17688;\nUPDATE t2 SET b=34667 WHERE a=17689;\nUPDATE t2 SET b=96056 WHERE a=17690;\nUPDATE t2 SET b=81281 WHERE a=17691;\nUPDATE t2 SET b=33658 WHERE a=17692;\nUPDATE t2 SET b=41942 WHERE a=17693;\nUPDATE t2 SET b=63776 WHERE a=17694;\nUPDATE t2 SET b=83937 WHERE a=17695;\nUPDATE t2 SET b=52043 WHERE a=17696;\nUPDATE t2 SET b=44802 WHERE a=17697;\nUPDATE t2 SET b=13992 WHERE a=17698;\nUPDATE t2 SET b=54976 WHERE a=17699;\nUPDATE t2 SET b=61105 WHERE a=17700;\nUPDATE t2 SET b=11791 WHERE a=17701;\nUPDATE t2 SET b=41655 WHERE a=17702;\nUPDATE t2 SET b=82820 WHERE a=17703;\nUPDATE t2 SET b=54796 WHERE a=17704;\nUPDATE t2 SET b=35574 WHERE a=17705;\nUPDATE t2 SET b=28614 WHERE a=17706;\nUPDATE t2 SET b=46262 WHERE a=17707;\nUPDATE t2 SET b=14085 WHERE a=17708;\nUPDATE t2 SET b=17631 WHERE a=17709;\nUPDATE t2 SET b=90486 WHERE a=17710;\nUPDATE t2 SET b=18725 WHERE a=17711;\nUPDATE t2 SET b=79797 WHERE a=17712;\nUPDATE t2 SET b=37212 WHERE a=17713;\nUPDATE t2 SET b=18027 WHERE a=17714;\nUPDATE t2 SET b=53200 WHERE a=17715;\nUPDATE t2 SET b=89395 WHERE a=17716;\nUPDATE t2 SET b=36277 WHERE a=17717;\nUPDATE t2 SET b=87947 WHERE a=17718;\nUPDATE t2 SET b=28035 WHERE a=17719;\nUPDATE t2 SET b=25 WHERE a=17720;\nUPDATE t2 SET b=71298 WHERE a=17721;\nUPDATE t2 SET b=16456 WHERE a=17722;\nUPDATE t2 SET b=4774 WHERE a=17723;\nUPDATE t2 SET b=72417 WHERE a=17724;\nUPDATE t2 SET b=96953 WHERE a=17725;\nUPDATE t2 SET b=54823 WHERE a=17726;\nUPDATE t2 SET b=50402 WHERE a=17727;\nUPDATE t2 SET b=1827 WHERE a=17728;\nUPDATE t2 SET b=91807 WHERE a=17729;\nUPDATE t2 SET b=6801 WHERE a=17730;\nUPDATE t2 SET b=52924 WHERE a=17731;\nUPDATE t2 SET b=41644 WHERE a=17732;\nUPDATE t2 SET b=52564 WHERE a=17733;\nUPDATE t2 SET b=83712 WHERE a=17734;\nUPDATE t2 SET b=64486 WHERE a=17735;\nUPDATE t2 SET b=11792 WHERE a=17736;\nUPDATE t2 SET b=69852 WHERE a=17737;\nUPDATE t2 SET b=35275 WHERE a=17738;\nUPDATE t2 SET b=70791 WHERE a=17739;\nUPDATE t2 SET b=96927 WHERE a=17740;\nUPDATE t2 SET b=44221 WHERE a=17741;\nUPDATE t2 SET b=47160 WHERE a=17742;\nUPDATE t2 SET b=19594 WHERE a=17743;\nUPDATE t2 SET b=84277 WHERE a=17744;\nUPDATE t2 SET b=77937 WHERE a=17745;\nUPDATE t2 SET b=79214 WHERE a=17746;\nUPDATE t2 SET b=20262 WHERE a=17747;\nUPDATE t2 SET b=66301 WHERE a=17748;\nUPDATE t2 SET b=31124 WHERE a=17749;\nUPDATE t2 SET b=34578 WHERE a=17750;\nUPDATE t2 SET b=7977 WHERE a=17751;\nUPDATE t2 SET b=43968 WHERE a=17752;\nUPDATE t2 SET b=87585 WHERE a=17753;\nUPDATE t2 SET b=89215 WHERE a=17754;\nUPDATE t2 SET b=35601 WHERE a=17755;\nUPDATE t2 SET b=58490 WHERE a=17756;\nUPDATE t2 SET b=47360 WHERE a=17757;\nUPDATE t2 SET b=49348 WHERE a=17758;\nUPDATE t2 SET b=33563 WHERE a=17759;\nUPDATE t2 SET b=6123 WHERE a=17760;\nUPDATE t2 SET b=93873 WHERE a=17761;\nUPDATE t2 SET b=66281 WHERE a=17762;\nUPDATE t2 SET b=80330 WHERE a=17763;\nUPDATE t2 SET b=90512 WHERE a=17764;\nUPDATE t2 SET b=71581 WHERE a=17765;\nUPDATE t2 SET b=92174 WHERE a=17766;\nUPDATE t2 SET b=88986 WHERE a=17767;\nUPDATE t2 SET b=48992 WHERE a=17768;\nUPDATE t2 SET b=87516 WHERE a=17769;\nUPDATE t2 SET b=16556 WHERE a=17770;\nUPDATE t2 SET b=8648 WHERE a=17771;\nUPDATE t2 SET b=46493 WHERE a=17772;\nUPDATE t2 SET b=98528 WHERE a=17773;\nUPDATE t2 SET b=83087 WHERE a=17774;\nUPDATE t2 SET b=58256 WHERE a=17775;\nUPDATE t2 SET b=80362 WHERE a=17776;\nUPDATE t2 SET b=1539 WHERE a=17777;\nUPDATE t2 SET b=31818 WHERE a=17778;\nUPDATE t2 SET b=54060 WHERE a=17779;\nUPDATE t2 SET b=82931 WHERE a=17780;\nUPDATE t2 SET b=67256 WHERE a=17781;\nUPDATE t2 SET b=966 WHERE a=17782;\nUPDATE t2 SET b=71067 WHERE a=17783;\nUPDATE t2 SET b=19241 WHERE a=17784;\nUPDATE t2 SET b=92880 WHERE a=17785;\nUPDATE t2 SET b=43054 WHERE a=17786;\nUPDATE t2 SET b=25672 WHERE a=17787;\nUPDATE t2 SET b=8783 WHERE a=17788;\nUPDATE t2 SET b=26135 WHERE a=17789;\nUPDATE t2 SET b=61300 WHERE a=17790;\nUPDATE t2 SET b=71409 WHERE a=17791;\nUPDATE t2 SET b=483 WHERE a=17792;\nUPDATE t2 SET b=23044 WHERE a=17793;\nUPDATE t2 SET b=48864 WHERE a=17794;\nUPDATE t2 SET b=20342 WHERE a=17795;\nUPDATE t2 SET b=56130 WHERE a=17796;\nUPDATE t2 SET b=99072 WHERE a=17797;\nUPDATE t2 SET b=18455 WHERE a=17798;\nUPDATE t2 SET b=17752 WHERE a=17799;\nUPDATE t2 SET b=40335 WHERE a=17800;\nUPDATE t2 SET b=543 WHERE a=17801;\nUPDATE t2 SET b=96030 WHERE a=17802;\nUPDATE t2 SET b=85747 WHERE a=17803;\nUPDATE t2 SET b=15395 WHERE a=17804;\nUPDATE t2 SET b=23045 WHERE a=17805;\nUPDATE t2 SET b=66940 WHERE a=17806;\nUPDATE t2 SET b=44152 WHERE a=17807;\nUPDATE t2 SET b=71412 WHERE a=17808;\nUPDATE t2 SET b=52227 WHERE a=17809;\nUPDATE t2 SET b=55760 WHERE a=17810;\nUPDATE t2 SET b=81182 WHERE a=17811;\nUPDATE t2 SET b=71 WHERE a=17812;\nUPDATE t2 SET b=47077 WHERE a=17813;\nUPDATE t2 SET b=1468 WHERE a=17814;\nUPDATE t2 SET b=22888 WHERE a=17815;\nUPDATE t2 SET b=95593 WHERE a=17816;\nUPDATE t2 SET b=24263 WHERE a=17817;\nUPDATE t2 SET b=24533 WHERE a=17818;\nUPDATE t2 SET b=35355 WHERE a=17819;\nUPDATE t2 SET b=68422 WHERE a=17820;\nUPDATE t2 SET b=46946 WHERE a=17821;\nUPDATE t2 SET b=19663 WHERE a=17822;\nUPDATE t2 SET b=1428 WHERE a=17823;\nUPDATE t2 SET b=26645 WHERE a=17824;\nUPDATE t2 SET b=78292 WHERE a=17825;\nUPDATE t2 SET b=30033 WHERE a=17826;\nUPDATE t2 SET b=32285 WHERE a=17827;\nUPDATE t2 SET b=72538 WHERE a=17828;\nUPDATE t2 SET b=61891 WHERE a=17829;\nUPDATE t2 SET b=78426 WHERE a=17830;\nUPDATE t2 SET b=24601 WHERE a=17831;\nUPDATE t2 SET b=51673 WHERE a=17832;\nUPDATE t2 SET b=83339 WHERE a=17833;\nUPDATE t2 SET b=10618 WHERE a=17834;\nUPDATE t2 SET b=23785 WHERE a=17835;\nUPDATE t2 SET b=66867 WHERE a=17836;\nUPDATE t2 SET b=44142 WHERE a=17837;\nUPDATE t2 SET b=10870 WHERE a=17838;\nUPDATE t2 SET b=91042 WHERE a=17839;\nUPDATE t2 SET b=13797 WHERE a=17840;\nUPDATE t2 SET b=62988 WHERE a=17841;\nUPDATE t2 SET b=52356 WHERE a=17842;\nUPDATE t2 SET b=39793 WHERE a=17843;\nUPDATE t2 SET b=3257 WHERE a=17844;\nUPDATE t2 SET b=74848 WHERE a=17845;\nUPDATE t2 SET b=76764 WHERE a=17846;\nUPDATE t2 SET b=38238 WHERE a=17847;\nUPDATE t2 SET b=8490 WHERE a=17848;\nUPDATE t2 SET b=8319 WHERE a=17849;\nUPDATE t2 SET b=56310 WHERE a=17850;\nUPDATE t2 SET b=12392 WHERE a=17851;\nUPDATE t2 SET b=24253 WHERE a=17852;\nUPDATE t2 SET b=65717 WHERE a=17853;\nUPDATE t2 SET b=15317 WHERE a=17854;\nUPDATE t2 SET b=51343 WHERE a=17855;\nUPDATE t2 SET b=94469 WHERE a=17856;\nUPDATE t2 SET b=37560 WHERE a=17857;\nUPDATE t2 SET b=34606 WHERE a=17858;\nUPDATE t2 SET b=25263 WHERE a=17859;\nUPDATE t2 SET b=70453 WHERE a=17860;\nUPDATE t2 SET b=83322 WHERE a=17861;\nUPDATE t2 SET b=67468 WHERE a=17862;\nUPDATE t2 SET b=61075 WHERE a=17863;\nUPDATE t2 SET b=14252 WHERE a=17864;\nUPDATE t2 SET b=38089 WHERE a=17865;\nUPDATE t2 SET b=36729 WHERE a=17866;\nUPDATE t2 SET b=76349 WHERE a=17867;\nUPDATE t2 SET b=81735 WHERE a=17868;\nUPDATE t2 SET b=51585 WHERE a=17869;\nUPDATE t2 SET b=67035 WHERE a=17870;\nUPDATE t2 SET b=58229 WHERE a=17871;\nUPDATE t2 SET b=43847 WHERE a=17872;\nUPDATE t2 SET b=62790 WHERE a=17873;\nUPDATE t2 SET b=69223 WHERE a=17874;\nUPDATE t2 SET b=78223 WHERE a=17875;\nUPDATE t2 SET b=34229 WHERE a=17876;\nUPDATE t2 SET b=48303 WHERE a=17877;\nUPDATE t2 SET b=73471 WHERE a=17878;\nUPDATE t2 SET b=98884 WHERE a=17879;\nUPDATE t2 SET b=87507 WHERE a=17880;\nUPDATE t2 SET b=72091 WHERE a=17881;\nUPDATE t2 SET b=62403 WHERE a=17882;\nUPDATE t2 SET b=6415 WHERE a=17883;\nUPDATE t2 SET b=40433 WHERE a=17884;\nUPDATE t2 SET b=10246 WHERE a=17885;\nUPDATE t2 SET b=28753 WHERE a=17886;\nUPDATE t2 SET b=20785 WHERE a=17887;\nUPDATE t2 SET b=70680 WHERE a=17888;\nUPDATE t2 SET b=27507 WHERE a=17889;\nUPDATE t2 SET b=26154 WHERE a=17890;\nUPDATE t2 SET b=55535 WHERE a=17891;\nUPDATE t2 SET b=71302 WHERE a=17892;\nUPDATE t2 SET b=95949 WHERE a=17893;\nUPDATE t2 SET b=35155 WHERE a=17894;\nUPDATE t2 SET b=3262 WHERE a=17895;\nUPDATE t2 SET b=15878 WHERE a=17896;\nUPDATE t2 SET b=92945 WHERE a=17897;\nUPDATE t2 SET b=15434 WHERE a=17898;\nUPDATE t2 SET b=72904 WHERE a=17899;\nUPDATE t2 SET b=31459 WHERE a=17900;\nUPDATE t2 SET b=55281 WHERE a=17901;\nUPDATE t2 SET b=36863 WHERE a=17902;\nUPDATE t2 SET b=17348 WHERE a=17903;\nUPDATE t2 SET b=4520 WHERE a=17904;\nUPDATE t2 SET b=96424 WHERE a=17905;\nUPDATE t2 SET b=96427 WHERE a=17906;\nUPDATE t2 SET b=99214 WHERE a=17907;\nUPDATE t2 SET b=31001 WHERE a=17908;\nUPDATE t2 SET b=493 WHERE a=17909;\nUPDATE t2 SET b=6070 WHERE a=17910;\nUPDATE t2 SET b=30049 WHERE a=17911;\nUPDATE t2 SET b=96753 WHERE a=17912;\nUPDATE t2 SET b=27752 WHERE a=17913;\nUPDATE t2 SET b=50046 WHERE a=17914;\nUPDATE t2 SET b=77363 WHERE a=17915;\nUPDATE t2 SET b=87874 WHERE a=17916;\nUPDATE t2 SET b=34805 WHERE a=17917;\nUPDATE t2 SET b=66848 WHERE a=17918;\nUPDATE t2 SET b=79861 WHERE a=17919;\nUPDATE t2 SET b=82069 WHERE a=17920;\nUPDATE t2 SET b=51328 WHERE a=17921;\nUPDATE t2 SET b=28484 WHERE a=17922;\nUPDATE t2 SET b=60109 WHERE a=17923;\nUPDATE t2 SET b=23839 WHERE a=17924;\nUPDATE t2 SET b=52678 WHERE a=17925;\nUPDATE t2 SET b=34687 WHERE a=17926;\nUPDATE t2 SET b=90962 WHERE a=17927;\nUPDATE t2 SET b=37174 WHERE a=17928;\nUPDATE t2 SET b=45721 WHERE a=17929;\nUPDATE t2 SET b=87846 WHERE a=17930;\nUPDATE t2 SET b=44744 WHERE a=17931;\nUPDATE t2 SET b=15706 WHERE a=17932;\nUPDATE t2 SET b=31966 WHERE a=17933;\nUPDATE t2 SET b=78597 WHERE a=17934;\nUPDATE t2 SET b=7967 WHERE a=17935;\nUPDATE t2 SET b=19291 WHERE a=17936;\nUPDATE t2 SET b=61863 WHERE a=17937;\nUPDATE t2 SET b=65590 WHERE a=17938;\nUPDATE t2 SET b=91891 WHERE a=17939;\nUPDATE t2 SET b=64537 WHERE a=17940;\nUPDATE t2 SET b=73873 WHERE a=17941;\nUPDATE t2 SET b=49932 WHERE a=17942;\nUPDATE t2 SET b=48660 WHERE a=17943;\nUPDATE t2 SET b=45426 WHERE a=17944;\nUPDATE t2 SET b=55262 WHERE a=17945;\nUPDATE t2 SET b=26876 WHERE a=17946;\nUPDATE t2 SET b=76891 WHERE a=17947;\nUPDATE t2 SET b=4624 WHERE a=17948;\nUPDATE t2 SET b=17539 WHERE a=17949;\nUPDATE t2 SET b=33213 WHERE a=17950;\nUPDATE t2 SET b=35061 WHERE a=17951;\nUPDATE t2 SET b=79587 WHERE a=17952;\nUPDATE t2 SET b=57112 WHERE a=17953;\nUPDATE t2 SET b=93731 WHERE a=17954;\nUPDATE t2 SET b=42100 WHERE a=17955;\nUPDATE t2 SET b=86778 WHERE a=17956;\nUPDATE t2 SET b=80669 WHERE a=17957;\nUPDATE t2 SET b=14531 WHERE a=17958;\nUPDATE t2 SET b=76757 WHERE a=17959;\nUPDATE t2 SET b=85168 WHERE a=17960;\nUPDATE t2 SET b=52044 WHERE a=17961;\nUPDATE t2 SET b=39789 WHERE a=17962;\nUPDATE t2 SET b=73008 WHERE a=17963;\nUPDATE t2 SET b=12869 WHERE a=17964;\nUPDATE t2 SET b=43045 WHERE a=17965;\nUPDATE t2 SET b=1760 WHERE a=17966;\nUPDATE t2 SET b=85963 WHERE a=17967;\nUPDATE t2 SET b=14038 WHERE a=17968;\nUPDATE t2 SET b=59979 WHERE a=17969;\nUPDATE t2 SET b=96659 WHERE a=17970;\nUPDATE t2 SET b=45597 WHERE a=17971;\nUPDATE t2 SET b=82153 WHERE a=17972;\nUPDATE t2 SET b=88147 WHERE a=17973;\nUPDATE t2 SET b=26299 WHERE a=17974;\nUPDATE t2 SET b=11233 WHERE a=17975;\nUPDATE t2 SET b=13180 WHERE a=17976;\nUPDATE t2 SET b=8447 WHERE a=17977;\nUPDATE t2 SET b=83874 WHERE a=17978;\nUPDATE t2 SET b=52276 WHERE a=17979;\nUPDATE t2 SET b=24995 WHERE a=17980;\nUPDATE t2 SET b=10688 WHERE a=17981;\nUPDATE t2 SET b=4965 WHERE a=17982;\nUPDATE t2 SET b=9859 WHERE a=17983;\nUPDATE t2 SET b=80666 WHERE a=17984;\nUPDATE t2 SET b=14718 WHERE a=17985;\nUPDATE t2 SET b=42288 WHERE a=17986;\nUPDATE t2 SET b=93828 WHERE a=17987;\nUPDATE t2 SET b=34618 WHERE a=17988;\nUPDATE t2 SET b=64260 WHERE a=17989;\nUPDATE t2 SET b=36752 WHERE a=17990;\nUPDATE t2 SET b=15152 WHERE a=17991;\nUPDATE t2 SET b=63294 WHERE a=17992;\nUPDATE t2 SET b=11837 WHERE a=17993;\nUPDATE t2 SET b=9830 WHERE a=17994;\nUPDATE t2 SET b=58628 WHERE a=17995;\nUPDATE t2 SET b=34746 WHERE a=17996;\nUPDATE t2 SET b=25093 WHERE a=17997;\nUPDATE t2 SET b=67091 WHERE a=17998;\nUPDATE t2 SET b=4729 WHERE a=17999;\nUPDATE t2 SET b=53523 WHERE a=18000;\nUPDATE t2 SET b=94537 WHERE a=18001;\nUPDATE t2 SET b=99238 WHERE a=18002;\nUPDATE t2 SET b=40209 WHERE a=18003;\nUPDATE t2 SET b=21492 WHERE a=18004;\nUPDATE t2 SET b=84814 WHERE a=18005;\nUPDATE t2 SET b=86578 WHERE a=18006;\nUPDATE t2 SET b=79579 WHERE a=18007;\nUPDATE t2 SET b=27679 WHERE a=18008;\nUPDATE t2 SET b=42420 WHERE a=18009;\nUPDATE t2 SET b=55724 WHERE a=18010;\nUPDATE t2 SET b=4837 WHERE a=18011;\nUPDATE t2 SET b=67329 WHERE a=18012;\nUPDATE t2 SET b=17419 WHERE a=18013;\nUPDATE t2 SET b=59492 WHERE a=18014;\nUPDATE t2 SET b=50208 WHERE a=18015;\nUPDATE t2 SET b=1214 WHERE a=18016;\nUPDATE t2 SET b=99705 WHERE a=18017;\nUPDATE t2 SET b=54431 WHERE a=18018;\nUPDATE t2 SET b=5722 WHERE a=18019;\nUPDATE t2 SET b=51052 WHERE a=18020;\nUPDATE t2 SET b=64362 WHERE a=18021;\nUPDATE t2 SET b=5159 WHERE a=18022;\nUPDATE t2 SET b=65666 WHERE a=18023;\nUPDATE t2 SET b=85160 WHERE a=18024;\nUPDATE t2 SET b=41852 WHERE a=18025;\nUPDATE t2 SET b=48922 WHERE a=18026;\nUPDATE t2 SET b=8316 WHERE a=18027;\nUPDATE t2 SET b=25150 WHERE a=18028;\nUPDATE t2 SET b=13018 WHERE a=18029;\nUPDATE t2 SET b=56757 WHERE a=18030;\nUPDATE t2 SET b=22790 WHERE a=18031;\nUPDATE t2 SET b=95286 WHERE a=18032;\nUPDATE t2 SET b=74927 WHERE a=18033;\nUPDATE t2 SET b=36518 WHERE a=18034;\nUPDATE t2 SET b=61881 WHERE a=18035;\nUPDATE t2 SET b=69523 WHERE a=18036;\nUPDATE t2 SET b=3345 WHERE a=18037;\nUPDATE t2 SET b=99201 WHERE a=18038;\nUPDATE t2 SET b=25094 WHERE a=18039;\nUPDATE t2 SET b=10916 WHERE a=18040;\nUPDATE t2 SET b=5547 WHERE a=18041;\nUPDATE t2 SET b=37268 WHERE a=18042;\nUPDATE t2 SET b=45115 WHERE a=18043;\nUPDATE t2 SET b=80256 WHERE a=18044;\nUPDATE t2 SET b=10317 WHERE a=18045;\nUPDATE t2 SET b=11061 WHERE a=18046;\nUPDATE t2 SET b=40691 WHERE a=18047;\nUPDATE t2 SET b=22544 WHERE a=18048;\nUPDATE t2 SET b=31092 WHERE a=18049;\nUPDATE t2 SET b=18501 WHERE a=18050;\nUPDATE t2 SET b=79527 WHERE a=18051;\nUPDATE t2 SET b=59197 WHERE a=18052;\nUPDATE t2 SET b=61481 WHERE a=18053;\nUPDATE t2 SET b=46871 WHERE a=18054;\nUPDATE t2 SET b=64941 WHERE a=18055;\nUPDATE t2 SET b=81488 WHERE a=18056;\nUPDATE t2 SET b=72218 WHERE a=18057;\nUPDATE t2 SET b=39867 WHERE a=18058;\nUPDATE t2 SET b=68915 WHERE a=18059;\nUPDATE t2 SET b=58630 WHERE a=18060;\nUPDATE t2 SET b=79856 WHERE a=18061;\nUPDATE t2 SET b=54582 WHERE a=18062;\nUPDATE t2 SET b=50843 WHERE a=18063;\nUPDATE t2 SET b=45578 WHERE a=18064;\nUPDATE t2 SET b=83842 WHERE a=18065;\nUPDATE t2 SET b=6360 WHERE a=18066;\nUPDATE t2 SET b=50259 WHERE a=18067;\nUPDATE t2 SET b=20512 WHERE a=18068;\nUPDATE t2 SET b=50339 WHERE a=18069;\nUPDATE t2 SET b=21116 WHERE a=18070;\nUPDATE t2 SET b=28041 WHERE a=18071;\nUPDATE t2 SET b=70600 WHERE a=18072;\nUPDATE t2 SET b=68846 WHERE a=18073;\nUPDATE t2 SET b=15152 WHERE a=18074;\nUPDATE t2 SET b=37349 WHERE a=18075;\nUPDATE t2 SET b=46174 WHERE a=18076;\nUPDATE t2 SET b=20194 WHERE a=18077;\nUPDATE t2 SET b=17625 WHERE a=18078;\nUPDATE t2 SET b=51394 WHERE a=18079;\nUPDATE t2 SET b=15387 WHERE a=18080;\nUPDATE t2 SET b=77054 WHERE a=18081;\nUPDATE t2 SET b=37868 WHERE a=18082;\nUPDATE t2 SET b=5395 WHERE a=18083;\nUPDATE t2 SET b=45308 WHERE a=18084;\nUPDATE t2 SET b=12297 WHERE a=18085;\nUPDATE t2 SET b=77525 WHERE a=18086;\nUPDATE t2 SET b=41960 WHERE a=18087;\nUPDATE t2 SET b=26305 WHERE a=18088;\nUPDATE t2 SET b=30611 WHERE a=18089;\nUPDATE t2 SET b=35362 WHERE a=18090;\nUPDATE t2 SET b=74420 WHERE a=18091;\nUPDATE t2 SET b=56935 WHERE a=18092;\nUPDATE t2 SET b=91739 WHERE a=18093;\nUPDATE t2 SET b=64266 WHERE a=18094;\nUPDATE t2 SET b=22669 WHERE a=18095;\nUPDATE t2 SET b=33895 WHERE a=18096;\nUPDATE t2 SET b=22155 WHERE a=18097;\nUPDATE t2 SET b=62485 WHERE a=18098;\nUPDATE t2 SET b=27256 WHERE a=18099;\nUPDATE t2 SET b=1905 WHERE a=18100;\nUPDATE t2 SET b=46038 WHERE a=18101;\nUPDATE t2 SET b=40149 WHERE a=18102;\nUPDATE t2 SET b=16587 WHERE a=18103;\nUPDATE t2 SET b=72318 WHERE a=18104;\nUPDATE t2 SET b=96550 WHERE a=18105;\nUPDATE t2 SET b=15657 WHERE a=18106;\nUPDATE t2 SET b=14375 WHERE a=18107;\nUPDATE t2 SET b=74128 WHERE a=18108;\nUPDATE t2 SET b=43744 WHERE a=18109;\nUPDATE t2 SET b=39402 WHERE a=18110;\nUPDATE t2 SET b=783 WHERE a=18111;\nUPDATE t2 SET b=92337 WHERE a=18112;\nUPDATE t2 SET b=37733 WHERE a=18113;\nUPDATE t2 SET b=88230 WHERE a=18114;\nUPDATE t2 SET b=81319 WHERE a=18115;\nUPDATE t2 SET b=5195 WHERE a=18116;\nUPDATE t2 SET b=16122 WHERE a=18117;\nUPDATE t2 SET b=94337 WHERE a=18118;\nUPDATE t2 SET b=60633 WHERE a=18119;\nUPDATE t2 SET b=89454 WHERE a=18120;\nUPDATE t2 SET b=9466 WHERE a=18121;\nUPDATE t2 SET b=85130 WHERE a=18122;\nUPDATE t2 SET b=33162 WHERE a=18123;\nUPDATE t2 SET b=53465 WHERE a=18124;\nUPDATE t2 SET b=29364 WHERE a=18125;\nUPDATE t2 SET b=39981 WHERE a=18126;\nUPDATE t2 SET b=37280 WHERE a=18127;\nUPDATE t2 SET b=24125 WHERE a=18128;\nUPDATE t2 SET b=26679 WHERE a=18129;\nUPDATE t2 SET b=77858 WHERE a=18130;\nUPDATE t2 SET b=44518 WHERE a=18131;\nUPDATE t2 SET b=3212 WHERE a=18132;\nUPDATE t2 SET b=52985 WHERE a=18133;\nUPDATE t2 SET b=75672 WHERE a=18134;\nUPDATE t2 SET b=5993 WHERE a=18135;\nUPDATE t2 SET b=69147 WHERE a=18136;\nUPDATE t2 SET b=74097 WHERE a=18137;\nUPDATE t2 SET b=87048 WHERE a=18138;\nUPDATE t2 SET b=79440 WHERE a=18139;\nUPDATE t2 SET b=97925 WHERE a=18140;\nUPDATE t2 SET b=80793 WHERE a=18141;\nUPDATE t2 SET b=3300 WHERE a=18142;\nUPDATE t2 SET b=71156 WHERE a=18143;\nUPDATE t2 SET b=77533 WHERE a=18144;\nUPDATE t2 SET b=29656 WHERE a=18145;\nUPDATE t2 SET b=13888 WHERE a=18146;\nUPDATE t2 SET b=77772 WHERE a=18147;\nUPDATE t2 SET b=62150 WHERE a=18148;\nUPDATE t2 SET b=66609 WHERE a=18149;\nUPDATE t2 SET b=25095 WHERE a=18150;\nUPDATE t2 SET b=56023 WHERE a=18151;\nUPDATE t2 SET b=93262 WHERE a=18152;\nUPDATE t2 SET b=73612 WHERE a=18153;\nUPDATE t2 SET b=1103 WHERE a=18154;\nUPDATE t2 SET b=5471 WHERE a=18155;\nUPDATE t2 SET b=2129 WHERE a=18156;\nUPDATE t2 SET b=92371 WHERE a=18157;\nUPDATE t2 SET b=88386 WHERE a=18158;\nUPDATE t2 SET b=70092 WHERE a=18159;\nUPDATE t2 SET b=97481 WHERE a=18160;\nUPDATE t2 SET b=29564 WHERE a=18161;\nUPDATE t2 SET b=1995 WHERE a=18162;\nUPDATE t2 SET b=97310 WHERE a=18163;\nUPDATE t2 SET b=1050 WHERE a=18164;\nUPDATE t2 SET b=66986 WHERE a=18165;\nUPDATE t2 SET b=49145 WHERE a=18166;\nUPDATE t2 SET b=51726 WHERE a=18167;\nUPDATE t2 SET b=37127 WHERE a=18168;\nUPDATE t2 SET b=5140 WHERE a=18169;\nUPDATE t2 SET b=89433 WHERE a=18170;\nUPDATE t2 SET b=91035 WHERE a=18171;\nUPDATE t2 SET b=8279 WHERE a=18172;\nUPDATE t2 SET b=93286 WHERE a=18173;\nUPDATE t2 SET b=72504 WHERE a=18174;\nUPDATE t2 SET b=63005 WHERE a=18175;\nUPDATE t2 SET b=9827 WHERE a=18176;\nUPDATE t2 SET b=92725 WHERE a=18177;\nUPDATE t2 SET b=60150 WHERE a=18178;\nUPDATE t2 SET b=98522 WHERE a=18179;\nUPDATE t2 SET b=6787 WHERE a=18180;\nUPDATE t2 SET b=52965 WHERE a=18181;\nUPDATE t2 SET b=80348 WHERE a=18182;\nUPDATE t2 SET b=81240 WHERE a=18183;\nUPDATE t2 SET b=49463 WHERE a=18184;\nUPDATE t2 SET b=31967 WHERE a=18185;\nUPDATE t2 SET b=30190 WHERE a=18186;\nUPDATE t2 SET b=42464 WHERE a=18187;\nUPDATE t2 SET b=85448 WHERE a=18188;\nUPDATE t2 SET b=1449 WHERE a=18189;\nUPDATE t2 SET b=37918 WHERE a=18190;\nUPDATE t2 SET b=43595 WHERE a=18191;\nUPDATE t2 SET b=62409 WHERE a=18192;\nUPDATE t2 SET b=35672 WHERE a=18193;\nUPDATE t2 SET b=24242 WHERE a=18194;\nUPDATE t2 SET b=13133 WHERE a=18195;\nUPDATE t2 SET b=70445 WHERE a=18196;\nUPDATE t2 SET b=10785 WHERE a=18197;\nUPDATE t2 SET b=44031 WHERE a=18198;\nUPDATE t2 SET b=93474 WHERE a=18199;\nUPDATE t2 SET b=18348 WHERE a=18200;\nUPDATE t2 SET b=65622 WHERE a=18201;\nUPDATE t2 SET b=87321 WHERE a=18202;\nUPDATE t2 SET b=11532 WHERE a=18203;\nUPDATE t2 SET b=99397 WHERE a=18204;\nUPDATE t2 SET b=15257 WHERE a=18205;\nUPDATE t2 SET b=79239 WHERE a=18206;\nUPDATE t2 SET b=17140 WHERE a=18207;\nUPDATE t2 SET b=1426 WHERE a=18208;\nUPDATE t2 SET b=56282 WHERE a=18209;\nUPDATE t2 SET b=63284 WHERE a=18210;\nUPDATE t2 SET b=80624 WHERE a=18211;\nUPDATE t2 SET b=56224 WHERE a=18212;\nUPDATE t2 SET b=3596 WHERE a=18213;\nUPDATE t2 SET b=73674 WHERE a=18214;\nUPDATE t2 SET b=89427 WHERE a=18215;\nUPDATE t2 SET b=78031 WHERE a=18216;\nUPDATE t2 SET b=49708 WHERE a=18217;\nUPDATE t2 SET b=50526 WHERE a=18218;\nUPDATE t2 SET b=78123 WHERE a=18219;\nUPDATE t2 SET b=76467 WHERE a=18220;\nUPDATE t2 SET b=38298 WHERE a=18221;\nUPDATE t2 SET b=92008 WHERE a=18222;\nUPDATE t2 SET b=58248 WHERE a=18223;\nUPDATE t2 SET b=33082 WHERE a=18224;\nUPDATE t2 SET b=66354 WHERE a=18225;\nUPDATE t2 SET b=25449 WHERE a=18226;\nUPDATE t2 SET b=70173 WHERE a=18227;\nUPDATE t2 SET b=66631 WHERE a=18228;\nUPDATE t2 SET b=46987 WHERE a=18229;\nUPDATE t2 SET b=46885 WHERE a=18230;\nUPDATE t2 SET b=71799 WHERE a=18231;\nUPDATE t2 SET b=74645 WHERE a=18232;\nUPDATE t2 SET b=6942 WHERE a=18233;\nUPDATE t2 SET b=98076 WHERE a=18234;\nUPDATE t2 SET b=45776 WHERE a=18235;\nUPDATE t2 SET b=8359 WHERE a=18236;\nUPDATE t2 SET b=67262 WHERE a=18237;\nUPDATE t2 SET b=1730 WHERE a=18238;\nUPDATE t2 SET b=5358 WHERE a=18239;\nUPDATE t2 SET b=11999 WHERE a=18240;\nUPDATE t2 SET b=17913 WHERE a=18241;\nUPDATE t2 SET b=3376 WHERE a=18242;\nUPDATE t2 SET b=21590 WHERE a=18243;\nUPDATE t2 SET b=37183 WHERE a=18244;\nUPDATE t2 SET b=55786 WHERE a=18245;\nUPDATE t2 SET b=58975 WHERE a=18246;\nUPDATE t2 SET b=48568 WHERE a=18247;\nUPDATE t2 SET b=65763 WHERE a=18248;\nUPDATE t2 SET b=17108 WHERE a=18249;\nUPDATE t2 SET b=48370 WHERE a=18250;\nUPDATE t2 SET b=72817 WHERE a=18251;\nUPDATE t2 SET b=39644 WHERE a=18252;\nUPDATE t2 SET b=69885 WHERE a=18253;\nUPDATE t2 SET b=99731 WHERE a=18254;\nUPDATE t2 SET b=93010 WHERE a=18255;\nUPDATE t2 SET b=60695 WHERE a=18256;\nUPDATE t2 SET b=14328 WHERE a=18257;\nUPDATE t2 SET b=30389 WHERE a=18258;\nUPDATE t2 SET b=46107 WHERE a=18259;\nUPDATE t2 SET b=23947 WHERE a=18260;\nUPDATE t2 SET b=50918 WHERE a=18261;\nUPDATE t2 SET b=76276 WHERE a=18262;\nUPDATE t2 SET b=96533 WHERE a=18263;\nUPDATE t2 SET b=42290 WHERE a=18264;\nUPDATE t2 SET b=40842 WHERE a=18265;\nUPDATE t2 SET b=21642 WHERE a=18266;\nUPDATE t2 SET b=72234 WHERE a=18267;\nUPDATE t2 SET b=18093 WHERE a=18268;\nUPDATE t2 SET b=98503 WHERE a=18269;\nUPDATE t2 SET b=66708 WHERE a=18270;\nUPDATE t2 SET b=48612 WHERE a=18271;\nUPDATE t2 SET b=77209 WHERE a=18272;\nUPDATE t2 SET b=51308 WHERE a=18273;\nUPDATE t2 SET b=71789 WHERE a=18274;\nUPDATE t2 SET b=72136 WHERE a=18275;\nUPDATE t2 SET b=50700 WHERE a=18276;\nUPDATE t2 SET b=98145 WHERE a=18277;\nUPDATE t2 SET b=59473 WHERE a=18278;\nUPDATE t2 SET b=51375 WHERE a=18279;\nUPDATE t2 SET b=95694 WHERE a=18280;\nUPDATE t2 SET b=18504 WHERE a=18281;\nUPDATE t2 SET b=24844 WHERE a=18282;\nUPDATE t2 SET b=35397 WHERE a=18283;\nUPDATE t2 SET b=89264 WHERE a=18284;\nUPDATE t2 SET b=5369 WHERE a=18285;\nUPDATE t2 SET b=32835 WHERE a=18286;\nUPDATE t2 SET b=26833 WHERE a=18287;\nUPDATE t2 SET b=29664 WHERE a=18288;\nUPDATE t2 SET b=27368 WHERE a=18289;\nUPDATE t2 SET b=34115 WHERE a=18290;\nUPDATE t2 SET b=61592 WHERE a=18291;\nUPDATE t2 SET b=32806 WHERE a=18292;\nUPDATE t2 SET b=444 WHERE a=18293;\nUPDATE t2 SET b=88630 WHERE a=18294;\nUPDATE t2 SET b=76546 WHERE a=18295;\nUPDATE t2 SET b=39838 WHERE a=18296;\nUPDATE t2 SET b=73686 WHERE a=18297;\nUPDATE t2 SET b=46987 WHERE a=18298;\nUPDATE t2 SET b=82067 WHERE a=18299;\nUPDATE t2 SET b=74035 WHERE a=18300;\nUPDATE t2 SET b=94914 WHERE a=18301;\nUPDATE t2 SET b=22621 WHERE a=18302;\nUPDATE t2 SET b=92479 WHERE a=18303;\nUPDATE t2 SET b=44470 WHERE a=18304;\nUPDATE t2 SET b=72717 WHERE a=18305;\nUPDATE t2 SET b=20265 WHERE a=18306;\nUPDATE t2 SET b=72909 WHERE a=18307;\nUPDATE t2 SET b=54188 WHERE a=18308;\nUPDATE t2 SET b=35677 WHERE a=18309;\nUPDATE t2 SET b=37003 WHERE a=18310;\nUPDATE t2 SET b=97612 WHERE a=18311;\nUPDATE t2 SET b=44307 WHERE a=18312;\nUPDATE t2 SET b=99217 WHERE a=18313;\nUPDATE t2 SET b=2265 WHERE a=18314;\nUPDATE t2 SET b=5528 WHERE a=18315;\nUPDATE t2 SET b=81187 WHERE a=18316;\nUPDATE t2 SET b=8355 WHERE a=18317;\nUPDATE t2 SET b=26080 WHERE a=18318;\nUPDATE t2 SET b=59420 WHERE a=18319;\nUPDATE t2 SET b=74362 WHERE a=18320;\nUPDATE t2 SET b=54111 WHERE a=18321;\nUPDATE t2 SET b=66554 WHERE a=18322;\nUPDATE t2 SET b=54671 WHERE a=18323;\nUPDATE t2 SET b=4358 WHERE a=18324;\nUPDATE t2 SET b=55876 WHERE a=18325;\nUPDATE t2 SET b=73849 WHERE a=18326;\nUPDATE t2 SET b=52837 WHERE a=18327;\nUPDATE t2 SET b=39844 WHERE a=18328;\nUPDATE t2 SET b=95258 WHERE a=18329;\nUPDATE t2 SET b=29173 WHERE a=18330;\nUPDATE t2 SET b=31574 WHERE a=18331;\nUPDATE t2 SET b=89584 WHERE a=18332;\nUPDATE t2 SET b=69209 WHERE a=18333;\nUPDATE t2 SET b=81483 WHERE a=18334;\nUPDATE t2 SET b=91951 WHERE a=18335;\nUPDATE t2 SET b=56306 WHERE a=18336;\nUPDATE t2 SET b=26037 WHERE a=18337;\nUPDATE t2 SET b=12611 WHERE a=18338;\nUPDATE t2 SET b=24801 WHERE a=18339;\nUPDATE t2 SET b=54946 WHERE a=18340;\nUPDATE t2 SET b=58003 WHERE a=18341;\nUPDATE t2 SET b=32843 WHERE a=18342;\nUPDATE t2 SET b=42103 WHERE a=18343;\nUPDATE t2 SET b=96585 WHERE a=18344;\nUPDATE t2 SET b=89077 WHERE a=18345;\nUPDATE t2 SET b=30651 WHERE a=18346;\nUPDATE t2 SET b=27448 WHERE a=18347;\nUPDATE t2 SET b=8497 WHERE a=18348;\nUPDATE t2 SET b=92168 WHERE a=18349;\nUPDATE t2 SET b=71183 WHERE a=18350;\nUPDATE t2 SET b=46296 WHERE a=18351;\nUPDATE t2 SET b=24927 WHERE a=18352;\nUPDATE t2 SET b=79670 WHERE a=18353;\nUPDATE t2 SET b=81822 WHERE a=18354;\nUPDATE t2 SET b=63362 WHERE a=18355;\nUPDATE t2 SET b=73366 WHERE a=18356;\nUPDATE t2 SET b=11414 WHERE a=18357;\nUPDATE t2 SET b=45386 WHERE a=18358;\nUPDATE t2 SET b=83542 WHERE a=18359;\nUPDATE t2 SET b=31547 WHERE a=18360;\nUPDATE t2 SET b=28415 WHERE a=18361;\nUPDATE t2 SET b=39982 WHERE a=18362;\nUPDATE t2 SET b=78131 WHERE a=18363;\nUPDATE t2 SET b=96038 WHERE a=18364;\nUPDATE t2 SET b=47654 WHERE a=18365;\nUPDATE t2 SET b=32871 WHERE a=18366;\nUPDATE t2 SET b=4135 WHERE a=18367;\nUPDATE t2 SET b=56159 WHERE a=18368;\nUPDATE t2 SET b=24891 WHERE a=18369;\nUPDATE t2 SET b=72258 WHERE a=18370;\nUPDATE t2 SET b=32235 WHERE a=18371;\nUPDATE t2 SET b=40025 WHERE a=18372;\nUPDATE t2 SET b=13891 WHERE a=18373;\nUPDATE t2 SET b=45501 WHERE a=18374;\nUPDATE t2 SET b=79287 WHERE a=18375;\nUPDATE t2 SET b=54468 WHERE a=18376;\nUPDATE t2 SET b=9635 WHERE a=18377;\nUPDATE t2 SET b=93959 WHERE a=18378;\nUPDATE t2 SET b=67983 WHERE a=18379;\nUPDATE t2 SET b=12855 WHERE a=18380;\nUPDATE t2 SET b=74780 WHERE a=18381;\nUPDATE t2 SET b=7736 WHERE a=18382;\nUPDATE t2 SET b=24924 WHERE a=18383;\nUPDATE t2 SET b=22916 WHERE a=18384;\nUPDATE t2 SET b=43967 WHERE a=18385;\nUPDATE t2 SET b=34372 WHERE a=18386;\nUPDATE t2 SET b=48596 WHERE a=18387;\nUPDATE t2 SET b=77571 WHERE a=18388;\nUPDATE t2 SET b=36411 WHERE a=18389;\nUPDATE t2 SET b=60166 WHERE a=18390;\nUPDATE t2 SET b=15349 WHERE a=18391;\nUPDATE t2 SET b=96316 WHERE a=18392;\nUPDATE t2 SET b=16317 WHERE a=18393;\nUPDATE t2 SET b=99010 WHERE a=18394;\nUPDATE t2 SET b=65257 WHERE a=18395;\nUPDATE t2 SET b=63544 WHERE a=18396;\nUPDATE t2 SET b=25234 WHERE a=18397;\nUPDATE t2 SET b=28452 WHERE a=18398;\nUPDATE t2 SET b=202 WHERE a=18399;\nUPDATE t2 SET b=9271 WHERE a=18400;\nUPDATE t2 SET b=16396 WHERE a=18401;\nUPDATE t2 SET b=94572 WHERE a=18402;\nUPDATE t2 SET b=61341 WHERE a=18403;\nUPDATE t2 SET b=40630 WHERE a=18404;\nUPDATE t2 SET b=81403 WHERE a=18405;\nUPDATE t2 SET b=29196 WHERE a=18406;\nUPDATE t2 SET b=28890 WHERE a=18407;\nUPDATE t2 SET b=40651 WHERE a=18408;\nUPDATE t2 SET b=86059 WHERE a=18409;\nUPDATE t2 SET b=72082 WHERE a=18410;\nUPDATE t2 SET b=82430 WHERE a=18411;\nUPDATE t2 SET b=33869 WHERE a=18412;\nUPDATE t2 SET b=28367 WHERE a=18413;\nUPDATE t2 SET b=41509 WHERE a=18414;\nUPDATE t2 SET b=95604 WHERE a=18415;\nUPDATE t2 SET b=95620 WHERE a=18416;\nUPDATE t2 SET b=40916 WHERE a=18417;\nUPDATE t2 SET b=34132 WHERE a=18418;\nUPDATE t2 SET b=37429 WHERE a=18419;\nUPDATE t2 SET b=15066 WHERE a=18420;\nUPDATE t2 SET b=35802 WHERE a=18421;\nUPDATE t2 SET b=68549 WHERE a=18422;\nUPDATE t2 SET b=44900 WHERE a=18423;\nUPDATE t2 SET b=12828 WHERE a=18424;\nUPDATE t2 SET b=35654 WHERE a=18425;\nUPDATE t2 SET b=62009 WHERE a=18426;\nUPDATE t2 SET b=34779 WHERE a=18427;\nUPDATE t2 SET b=52395 WHERE a=18428;\nUPDATE t2 SET b=33616 WHERE a=18429;\nUPDATE t2 SET b=29170 WHERE a=18430;\nUPDATE t2 SET b=98474 WHERE a=18431;\nUPDATE t2 SET b=10375 WHERE a=18432;\nUPDATE t2 SET b=52037 WHERE a=18433;\nUPDATE t2 SET b=66134 WHERE a=18434;\nUPDATE t2 SET b=19770 WHERE a=18435;\nUPDATE t2 SET b=85575 WHERE a=18436;\nUPDATE t2 SET b=78915 WHERE a=18437;\nUPDATE t2 SET b=34699 WHERE a=18438;\nUPDATE t2 SET b=27614 WHERE a=18439;\nUPDATE t2 SET b=47284 WHERE a=18440;\nUPDATE t2 SET b=53739 WHERE a=18441;\nUPDATE t2 SET b=43126 WHERE a=18442;\nUPDATE t2 SET b=6958 WHERE a=18443;\nUPDATE t2 SET b=97117 WHERE a=18444;\nUPDATE t2 SET b=21180 WHERE a=18445;\nUPDATE t2 SET b=59025 WHERE a=18446;\nUPDATE t2 SET b=15783 WHERE a=18447;\nUPDATE t2 SET b=29152 WHERE a=18448;\nUPDATE t2 SET b=64424 WHERE a=18449;\nUPDATE t2 SET b=3587 WHERE a=18450;\nUPDATE t2 SET b=41370 WHERE a=18451;\nUPDATE t2 SET b=43732 WHERE a=18452;\nUPDATE t2 SET b=60387 WHERE a=18453;\nUPDATE t2 SET b=61494 WHERE a=18454;\nUPDATE t2 SET b=32105 WHERE a=18455;\nUPDATE t2 SET b=76905 WHERE a=18456;\nUPDATE t2 SET b=61706 WHERE a=18457;\nUPDATE t2 SET b=23502 WHERE a=18458;\nUPDATE t2 SET b=7110 WHERE a=18459;\nUPDATE t2 SET b=51769 WHERE a=18460;\nUPDATE t2 SET b=18466 WHERE a=18461;\nUPDATE t2 SET b=84974 WHERE a=18462;\nUPDATE t2 SET b=88201 WHERE a=18463;\nUPDATE t2 SET b=61427 WHERE a=18464;\nUPDATE t2 SET b=93609 WHERE a=18465;\nUPDATE t2 SET b=33083 WHERE a=18466;\nUPDATE t2 SET b=51919 WHERE a=18467;\nUPDATE t2 SET b=44962 WHERE a=18468;\nUPDATE t2 SET b=72461 WHERE a=18469;\nUPDATE t2 SET b=1463 WHERE a=18470;\nUPDATE t2 SET b=51217 WHERE a=18471;\nUPDATE t2 SET b=2538 WHERE a=18472;\nUPDATE t2 SET b=87113 WHERE a=18473;\nUPDATE t2 SET b=86804 WHERE a=18474;\nUPDATE t2 SET b=10930 WHERE a=18475;\nUPDATE t2 SET b=18003 WHERE a=18476;\nUPDATE t2 SET b=74096 WHERE a=18477;\nUPDATE t2 SET b=87628 WHERE a=18478;\nUPDATE t2 SET b=82961 WHERE a=18479;\nUPDATE t2 SET b=45401 WHERE a=18480;\nUPDATE t2 SET b=87153 WHERE a=18481;\nUPDATE t2 SET b=29019 WHERE a=18482;\nUPDATE t2 SET b=74931 WHERE a=18483;\nUPDATE t2 SET b=27059 WHERE a=18484;\nUPDATE t2 SET b=7083 WHERE a=18485;\nUPDATE t2 SET b=28999 WHERE a=18486;\nUPDATE t2 SET b=90424 WHERE a=18487;\nUPDATE t2 SET b=35515 WHERE a=18488;\nUPDATE t2 SET b=26771 WHERE a=18489;\nUPDATE t2 SET b=53619 WHERE a=18490;\nUPDATE t2 SET b=67643 WHERE a=18491;\nUPDATE t2 SET b=48243 WHERE a=18492;\nUPDATE t2 SET b=71416 WHERE a=18493;\nUPDATE t2 SET b=36792 WHERE a=18494;\nUPDATE t2 SET b=26990 WHERE a=18495;\nUPDATE t2 SET b=73087 WHERE a=18496;\nUPDATE t2 SET b=52824 WHERE a=18497;\nUPDATE t2 SET b=29478 WHERE a=18498;\nUPDATE t2 SET b=15060 WHERE a=18499;\nUPDATE t2 SET b=38039 WHERE a=18500;\nUPDATE t2 SET b=59359 WHERE a=18501;\nUPDATE t2 SET b=11189 WHERE a=18502;\nUPDATE t2 SET b=12031 WHERE a=18503;\nUPDATE t2 SET b=3702 WHERE a=18504;\nUPDATE t2 SET b=26223 WHERE a=18505;\nUPDATE t2 SET b=18409 WHERE a=18506;\nUPDATE t2 SET b=98219 WHERE a=18507;\nUPDATE t2 SET b=12226 WHERE a=18508;\nUPDATE t2 SET b=33704 WHERE a=18509;\nUPDATE t2 SET b=40761 WHERE a=18510;\nUPDATE t2 SET b=12733 WHERE a=18511;\nUPDATE t2 SET b=88334 WHERE a=18512;\nUPDATE t2 SET b=88735 WHERE a=18513;\nUPDATE t2 SET b=77398 WHERE a=18514;\nUPDATE t2 SET b=42671 WHERE a=18515;\nUPDATE t2 SET b=52051 WHERE a=18516;\nUPDATE t2 SET b=73646 WHERE a=18517;\nUPDATE t2 SET b=65606 WHERE a=18518;\nUPDATE t2 SET b=58944 WHERE a=18519;\nUPDATE t2 SET b=7252 WHERE a=18520;\nUPDATE t2 SET b=53103 WHERE a=18521;\nUPDATE t2 SET b=62274 WHERE a=18522;\nUPDATE t2 SET b=33691 WHERE a=18523;\nUPDATE t2 SET b=19433 WHERE a=18524;\nUPDATE t2 SET b=85297 WHERE a=18525;\nUPDATE t2 SET b=73072 WHERE a=18526;\nUPDATE t2 SET b=66722 WHERE a=18527;\nUPDATE t2 SET b=93984 WHERE a=18528;\nUPDATE t2 SET b=63243 WHERE a=18529;\nUPDATE t2 SET b=27857 WHERE a=18530;\nUPDATE t2 SET b=45539 WHERE a=18531;\nUPDATE t2 SET b=62844 WHERE a=18532;\nUPDATE t2 SET b=66631 WHERE a=18533;\nUPDATE t2 SET b=59976 WHERE a=18534;\nUPDATE t2 SET b=77798 WHERE a=18535;\nUPDATE t2 SET b=7325 WHERE a=18536;\nUPDATE t2 SET b=22548 WHERE a=18537;\nUPDATE t2 SET b=39750 WHERE a=18538;\nUPDATE t2 SET b=70828 WHERE a=18539;\nUPDATE t2 SET b=33230 WHERE a=18540;\nUPDATE t2 SET b=70810 WHERE a=18541;\nUPDATE t2 SET b=47697 WHERE a=18542;\nUPDATE t2 SET b=94067 WHERE a=18543;\nUPDATE t2 SET b=25279 WHERE a=18544;\nUPDATE t2 SET b=92771 WHERE a=18545;\nUPDATE t2 SET b=46597 WHERE a=18546;\nUPDATE t2 SET b=71831 WHERE a=18547;\nUPDATE t2 SET b=37228 WHERE a=18548;\nUPDATE t2 SET b=42188 WHERE a=18549;\nUPDATE t2 SET b=76689 WHERE a=18550;\nUPDATE t2 SET b=7784 WHERE a=18551;\nUPDATE t2 SET b=1276 WHERE a=18552;\nUPDATE t2 SET b=55836 WHERE a=18553;\nUPDATE t2 SET b=83889 WHERE a=18554;\nUPDATE t2 SET b=71939 WHERE a=18555;\nUPDATE t2 SET b=206 WHERE a=18556;\nUPDATE t2 SET b=87671 WHERE a=18557;\nUPDATE t2 SET b=5104 WHERE a=18558;\nUPDATE t2 SET b=3045 WHERE a=18559;\nUPDATE t2 SET b=95547 WHERE a=18560;\nUPDATE t2 SET b=76388 WHERE a=18561;\nUPDATE t2 SET b=12901 WHERE a=18562;\nUPDATE t2 SET b=1579 WHERE a=18563;\nUPDATE t2 SET b=55549 WHERE a=18564;\nUPDATE t2 SET b=19065 WHERE a=18565;\nUPDATE t2 SET b=48402 WHERE a=18566;\nUPDATE t2 SET b=16605 WHERE a=18567;\nUPDATE t2 SET b=7619 WHERE a=18568;\nUPDATE t2 SET b=16005 WHERE a=18569;\nUPDATE t2 SET b=59778 WHERE a=18570;\nUPDATE t2 SET b=93593 WHERE a=18571;\nUPDATE t2 SET b=78377 WHERE a=18572;\nUPDATE t2 SET b=28411 WHERE a=18573;\nUPDATE t2 SET b=32432 WHERE a=18574;\nUPDATE t2 SET b=50463 WHERE a=18575;\nUPDATE t2 SET b=14493 WHERE a=18576;\nUPDATE t2 SET b=50551 WHERE a=18577;\nUPDATE t2 SET b=87106 WHERE a=18578;\nUPDATE t2 SET b=521 WHERE a=18579;\nUPDATE t2 SET b=65028 WHERE a=18580;\nUPDATE t2 SET b=47019 WHERE a=18581;\nUPDATE t2 SET b=24393 WHERE a=18582;\nUPDATE t2 SET b=60181 WHERE a=18583;\nUPDATE t2 SET b=27617 WHERE a=18584;\nUPDATE t2 SET b=57542 WHERE a=18585;\nUPDATE t2 SET b=53469 WHERE a=18586;\nUPDATE t2 SET b=77462 WHERE a=18587;\nUPDATE t2 SET b=98969 WHERE a=18588;\nUPDATE t2 SET b=27265 WHERE a=18589;\nUPDATE t2 SET b=61362 WHERE a=18590;\nUPDATE t2 SET b=46932 WHERE a=18591;\nUPDATE t2 SET b=75118 WHERE a=18592;\nUPDATE t2 SET b=39897 WHERE a=18593;\nUPDATE t2 SET b=77188 WHERE a=18594;\nUPDATE t2 SET b=76947 WHERE a=18595;\nUPDATE t2 SET b=62166 WHERE a=18596;\nUPDATE t2 SET b=54917 WHERE a=18597;\nUPDATE t2 SET b=20953 WHERE a=18598;\nUPDATE t2 SET b=66983 WHERE a=18599;\nUPDATE t2 SET b=97644 WHERE a=18600;\nUPDATE t2 SET b=35385 WHERE a=18601;\nUPDATE t2 SET b=81564 WHERE a=18602;\nUPDATE t2 SET b=31163 WHERE a=18603;\nUPDATE t2 SET b=59155 WHERE a=18604;\nUPDATE t2 SET b=68692 WHERE a=18605;\nUPDATE t2 SET b=52366 WHERE a=18606;\nUPDATE t2 SET b=89057 WHERE a=18607;\nUPDATE t2 SET b=39211 WHERE a=18608;\nUPDATE t2 SET b=64889 WHERE a=18609;\nUPDATE t2 SET b=17755 WHERE a=18610;\nUPDATE t2 SET b=94900 WHERE a=18611;\nUPDATE t2 SET b=84435 WHERE a=18612;\nUPDATE t2 SET b=83808 WHERE a=18613;\nUPDATE t2 SET b=38495 WHERE a=18614;\nUPDATE t2 SET b=68367 WHERE a=18615;\nUPDATE t2 SET b=3369 WHERE a=18616;\nUPDATE t2 SET b=4653 WHERE a=18617;\nUPDATE t2 SET b=73672 WHERE a=18618;\nUPDATE t2 SET b=95498 WHERE a=18619;\nUPDATE t2 SET b=78429 WHERE a=18620;\nUPDATE t2 SET b=98397 WHERE a=18621;\nUPDATE t2 SET b=86697 WHERE a=18622;\nUPDATE t2 SET b=6601 WHERE a=18623;\nUPDATE t2 SET b=43601 WHERE a=18624;\nUPDATE t2 SET b=94240 WHERE a=18625;\nUPDATE t2 SET b=898 WHERE a=18626;\nUPDATE t2 SET b=72914 WHERE a=18627;\nUPDATE t2 SET b=94823 WHERE a=18628;\nUPDATE t2 SET b=46820 WHERE a=18629;\nUPDATE t2 SET b=46822 WHERE a=18630;\nUPDATE t2 SET b=71232 WHERE a=18631;\nUPDATE t2 SET b=72967 WHERE a=18632;\nUPDATE t2 SET b=22213 WHERE a=18633;\nUPDATE t2 SET b=21326 WHERE a=18634;\nUPDATE t2 SET b=33059 WHERE a=18635;\nUPDATE t2 SET b=67159 WHERE a=18636;\nUPDATE t2 SET b=78634 WHERE a=18637;\nUPDATE t2 SET b=9845 WHERE a=18638;\nUPDATE t2 SET b=63391 WHERE a=18639;\nUPDATE t2 SET b=32597 WHERE a=18640;\nUPDATE t2 SET b=822 WHERE a=18641;\nUPDATE t2 SET b=55433 WHERE a=18642;\nUPDATE t2 SET b=22042 WHERE a=18643;\nUPDATE t2 SET b=95830 WHERE a=18644;\nUPDATE t2 SET b=55404 WHERE a=18645;\nUPDATE t2 SET b=99528 WHERE a=18646;\nUPDATE t2 SET b=48950 WHERE a=18647;\nUPDATE t2 SET b=89354 WHERE a=18648;\nUPDATE t2 SET b=77444 WHERE a=18649;\nUPDATE t2 SET b=99481 WHERE a=18650;\nUPDATE t2 SET b=63569 WHERE a=18651;\nUPDATE t2 SET b=97856 WHERE a=18652;\nUPDATE t2 SET b=44077 WHERE a=18653;\nUPDATE t2 SET b=28837 WHERE a=18654;\nUPDATE t2 SET b=1210 WHERE a=18655;\nUPDATE t2 SET b=16587 WHERE a=18656;\nUPDATE t2 SET b=19304 WHERE a=18657;\nUPDATE t2 SET b=63791 WHERE a=18658;\nUPDATE t2 SET b=74946 WHERE a=18659;\nUPDATE t2 SET b=36494 WHERE a=18660;\nUPDATE t2 SET b=88921 WHERE a=18661;\nUPDATE t2 SET b=20246 WHERE a=18662;\nUPDATE t2 SET b=81620 WHERE a=18663;\nUPDATE t2 SET b=43411 WHERE a=18664;\nUPDATE t2 SET b=90694 WHERE a=18665;\nUPDATE t2 SET b=24774 WHERE a=18666;\nUPDATE t2 SET b=2156 WHERE a=18667;\nUPDATE t2 SET b=81439 WHERE a=18668;\nUPDATE t2 SET b=72769 WHERE a=18669;\nUPDATE t2 SET b=41360 WHERE a=18670;\nUPDATE t2 SET b=35599 WHERE a=18671;\nUPDATE t2 SET b=54815 WHERE a=18672;\nUPDATE t2 SET b=22187 WHERE a=18673;\nUPDATE t2 SET b=10665 WHERE a=18674;\nUPDATE t2 SET b=46261 WHERE a=18675;\nUPDATE t2 SET b=20815 WHERE a=18676;\nUPDATE t2 SET b=77357 WHERE a=18677;\nUPDATE t2 SET b=8561 WHERE a=18678;\nUPDATE t2 SET b=83052 WHERE a=18679;\nUPDATE t2 SET b=25370 WHERE a=18680;\nUPDATE t2 SET b=5486 WHERE a=18681;\nUPDATE t2 SET b=52075 WHERE a=18682;\nUPDATE t2 SET b=4394 WHERE a=18683;\nUPDATE t2 SET b=73811 WHERE a=18684;\nUPDATE t2 SET b=24166 WHERE a=18685;\nUPDATE t2 SET b=62165 WHERE a=18686;\nUPDATE t2 SET b=52147 WHERE a=18687;\nUPDATE t2 SET b=78024 WHERE a=18688;\nUPDATE t2 SET b=34767 WHERE a=18689;\nUPDATE t2 SET b=22808 WHERE a=18690;\nUPDATE t2 SET b=77431 WHERE a=18691;\nUPDATE t2 SET b=48565 WHERE a=18692;\nUPDATE t2 SET b=93829 WHERE a=18693;\nUPDATE t2 SET b=55896 WHERE a=18694;\nUPDATE t2 SET b=88073 WHERE a=18695;\nUPDATE t2 SET b=9001 WHERE a=18696;\nUPDATE t2 SET b=95955 WHERE a=18697;\nUPDATE t2 SET b=14460 WHERE a=18698;\nUPDATE t2 SET b=42303 WHERE a=18699;\nUPDATE t2 SET b=10145 WHERE a=18700;\nUPDATE t2 SET b=79551 WHERE a=18701;\nUPDATE t2 SET b=73850 WHERE a=18702;\nUPDATE t2 SET b=99712 WHERE a=18703;\nUPDATE t2 SET b=57254 WHERE a=18704;\nUPDATE t2 SET b=44420 WHERE a=18705;\nUPDATE t2 SET b=51825 WHERE a=18706;\nUPDATE t2 SET b=8466 WHERE a=18707;\nUPDATE t2 SET b=50137 WHERE a=18708;\nUPDATE t2 SET b=77181 WHERE a=18709;\nUPDATE t2 SET b=26950 WHERE a=18710;\nUPDATE t2 SET b=17382 WHERE a=18711;\nUPDATE t2 SET b=1867 WHERE a=18712;\nUPDATE t2 SET b=30506 WHERE a=18713;\nUPDATE t2 SET b=73072 WHERE a=18714;\nUPDATE t2 SET b=13360 WHERE a=18715;\nUPDATE t2 SET b=87661 WHERE a=18716;\nUPDATE t2 SET b=66799 WHERE a=18717;\nUPDATE t2 SET b=27977 WHERE a=18718;\nUPDATE t2 SET b=15114 WHERE a=18719;\nUPDATE t2 SET b=15338 WHERE a=18720;\nUPDATE t2 SET b=77087 WHERE a=18721;\nUPDATE t2 SET b=15721 WHERE a=18722;\nUPDATE t2 SET b=8509 WHERE a=18723;\nUPDATE t2 SET b=50861 WHERE a=18724;\nUPDATE t2 SET b=36420 WHERE a=18725;\nUPDATE t2 SET b=28233 WHERE a=18726;\nUPDATE t2 SET b=69702 WHERE a=18727;\nUPDATE t2 SET b=16238 WHERE a=18728;\nUPDATE t2 SET b=24180 WHERE a=18729;\nUPDATE t2 SET b=80652 WHERE a=18730;\nUPDATE t2 SET b=13904 WHERE a=18731;\nUPDATE t2 SET b=86916 WHERE a=18732;\nUPDATE t2 SET b=17968 WHERE a=18733;\nUPDATE t2 SET b=44399 WHERE a=18734;\nUPDATE t2 SET b=78329 WHERE a=18735;\nUPDATE t2 SET b=95817 WHERE a=18736;\nUPDATE t2 SET b=39629 WHERE a=18737;\nUPDATE t2 SET b=61514 WHERE a=18738;\nUPDATE t2 SET b=678 WHERE a=18739;\nUPDATE t2 SET b=98412 WHERE a=18740;\nUPDATE t2 SET b=8636 WHERE a=18741;\nUPDATE t2 SET b=70025 WHERE a=18742;\nUPDATE t2 SET b=42020 WHERE a=18743;\nUPDATE t2 SET b=38306 WHERE a=18744;\nUPDATE t2 SET b=82335 WHERE a=18745;\nUPDATE t2 SET b=62071 WHERE a=18746;\nUPDATE t2 SET b=67484 WHERE a=18747;\nUPDATE t2 SET b=82830 WHERE a=18748;\nUPDATE t2 SET b=60684 WHERE a=18749;\nUPDATE t2 SET b=77169 WHERE a=18750;\nUPDATE t2 SET b=17421 WHERE a=18751;\nUPDATE t2 SET b=5428 WHERE a=18752;\nUPDATE t2 SET b=70532 WHERE a=18753;\nUPDATE t2 SET b=79019 WHERE a=18754;\nUPDATE t2 SET b=4024 WHERE a=18755;\nUPDATE t2 SET b=69962 WHERE a=18756;\nUPDATE t2 SET b=62020 WHERE a=18757;\nUPDATE t2 SET b=54370 WHERE a=18758;\nUPDATE t2 SET b=50656 WHERE a=18759;\nUPDATE t2 SET b=33178 WHERE a=18760;\nUPDATE t2 SET b=16158 WHERE a=18761;\nUPDATE t2 SET b=58447 WHERE a=18762;\nUPDATE t2 SET b=74488 WHERE a=18763;\nUPDATE t2 SET b=13744 WHERE a=18764;\nUPDATE t2 SET b=74336 WHERE a=18765;\nUPDATE t2 SET b=36427 WHERE a=18766;\nUPDATE t2 SET b=44698 WHERE a=18767;\nUPDATE t2 SET b=50212 WHERE a=18768;\nUPDATE t2 SET b=43314 WHERE a=18769;\nUPDATE t2 SET b=81031 WHERE a=18770;\nUPDATE t2 SET b=90947 WHERE a=18771;\nUPDATE t2 SET b=53882 WHERE a=18772;\nUPDATE t2 SET b=90466 WHERE a=18773;\nUPDATE t2 SET b=33489 WHERE a=18774;\nUPDATE t2 SET b=67125 WHERE a=18775;\nUPDATE t2 SET b=22358 WHERE a=18776;\nUPDATE t2 SET b=59761 WHERE a=18777;\nUPDATE t2 SET b=25604 WHERE a=18778;\nUPDATE t2 SET b=18468 WHERE a=18779;\nUPDATE t2 SET b=61509 WHERE a=18780;\nUPDATE t2 SET b=11677 WHERE a=18781;\nUPDATE t2 SET b=86512 WHERE a=18782;\nUPDATE t2 SET b=82567 WHERE a=18783;\nUPDATE t2 SET b=75816 WHERE a=18784;\nUPDATE t2 SET b=98908 WHERE a=18785;\nUPDATE t2 SET b=72517 WHERE a=18786;\nUPDATE t2 SET b=4889 WHERE a=18787;\nUPDATE t2 SET b=16337 WHERE a=18788;\nUPDATE t2 SET b=85673 WHERE a=18789;\nUPDATE t2 SET b=93465 WHERE a=18790;\nUPDATE t2 SET b=15996 WHERE a=18791;\nUPDATE t2 SET b=52138 WHERE a=18792;\nUPDATE t2 SET b=26060 WHERE a=18793;\nUPDATE t2 SET b=74611 WHERE a=18794;\nUPDATE t2 SET b=53623 WHERE a=18795;\nUPDATE t2 SET b=21390 WHERE a=18796;\nUPDATE t2 SET b=61710 WHERE a=18797;\nUPDATE t2 SET b=82339 WHERE a=18798;\nUPDATE t2 SET b=81137 WHERE a=18799;\nUPDATE t2 SET b=51347 WHERE a=18800;\nUPDATE t2 SET b=34539 WHERE a=18801;\nUPDATE t2 SET b=44788 WHERE a=18802;\nUPDATE t2 SET b=61487 WHERE a=18803;\nUPDATE t2 SET b=19084 WHERE a=18804;\nUPDATE t2 SET b=91928 WHERE a=18805;\nUPDATE t2 SET b=72856 WHERE a=18806;\nUPDATE t2 SET b=64847 WHERE a=18807;\nUPDATE t2 SET b=67122 WHERE a=18808;\nUPDATE t2 SET b=49182 WHERE a=18809;\nUPDATE t2 SET b=97931 WHERE a=18810;\nUPDATE t2 SET b=45152 WHERE a=18811;\nUPDATE t2 SET b=35359 WHERE a=18812;\nUPDATE t2 SET b=73251 WHERE a=18813;\nUPDATE t2 SET b=57229 WHERE a=18814;\nUPDATE t2 SET b=25593 WHERE a=18815;\nUPDATE t2 SET b=58509 WHERE a=18816;\nUPDATE t2 SET b=23196 WHERE a=18817;\nUPDATE t2 SET b=67041 WHERE a=18818;\nUPDATE t2 SET b=78135 WHERE a=18819;\nUPDATE t2 SET b=30341 WHERE a=18820;\nUPDATE t2 SET b=98178 WHERE a=18821;\nUPDATE t2 SET b=68215 WHERE a=18822;\nUPDATE t2 SET b=11443 WHERE a=18823;\nUPDATE t2 SET b=41269 WHERE a=18824;\nUPDATE t2 SET b=97784 WHERE a=18825;\nUPDATE t2 SET b=8612 WHERE a=18826;\nUPDATE t2 SET b=37654 WHERE a=18827;\nUPDATE t2 SET b=69478 WHERE a=18828;\nUPDATE t2 SET b=36868 WHERE a=18829;\nUPDATE t2 SET b=4264 WHERE a=18830;\nUPDATE t2 SET b=44173 WHERE a=18831;\nUPDATE t2 SET b=22893 WHERE a=18832;\nUPDATE t2 SET b=34683 WHERE a=18833;\nUPDATE t2 SET b=71100 WHERE a=18834;\nUPDATE t2 SET b=28961 WHERE a=18835;\nUPDATE t2 SET b=35694 WHERE a=18836;\nUPDATE t2 SET b=7087 WHERE a=18837;\nUPDATE t2 SET b=46702 WHERE a=18838;\nUPDATE t2 SET b=89383 WHERE a=18839;\nUPDATE t2 SET b=26696 WHERE a=18840;\nUPDATE t2 SET b=1283 WHERE a=18841;\nUPDATE t2 SET b=88785 WHERE a=18842;\nUPDATE t2 SET b=80306 WHERE a=18843;\nUPDATE t2 SET b=5341 WHERE a=18844;\nUPDATE t2 SET b=21606 WHERE a=18845;\nUPDATE t2 SET b=5418 WHERE a=18846;\nUPDATE t2 SET b=35792 WHERE a=18847;\nUPDATE t2 SET b=64640 WHERE a=18848;\nUPDATE t2 SET b=14334 WHERE a=18849;\nUPDATE t2 SET b=16561 WHERE a=18850;\nUPDATE t2 SET b=86431 WHERE a=18851;\nUPDATE t2 SET b=72513 WHERE a=18852;\nUPDATE t2 SET b=76887 WHERE a=18853;\nUPDATE t2 SET b=46734 WHERE a=18854;\nUPDATE t2 SET b=71107 WHERE a=18855;\nUPDATE t2 SET b=26470 WHERE a=18856;\nUPDATE t2 SET b=65573 WHERE a=18857;\nUPDATE t2 SET b=91535 WHERE a=18858;\nUPDATE t2 SET b=67983 WHERE a=18859;\nUPDATE t2 SET b=52591 WHERE a=18860;\nUPDATE t2 SET b=37423 WHERE a=18861;\nUPDATE t2 SET b=39620 WHERE a=18862;\nUPDATE t2 SET b=21926 WHERE a=18863;\nUPDATE t2 SET b=12809 WHERE a=18864;\nUPDATE t2 SET b=24395 WHERE a=18865;\nUPDATE t2 SET b=23924 WHERE a=18866;\nUPDATE t2 SET b=12926 WHERE a=18867;\nUPDATE t2 SET b=616 WHERE a=18868;\nUPDATE t2 SET b=18757 WHERE a=18869;\nUPDATE t2 SET b=47962 WHERE a=18870;\nUPDATE t2 SET b=32327 WHERE a=18871;\nUPDATE t2 SET b=38945 WHERE a=18872;\nUPDATE t2 SET b=82091 WHERE a=18873;\nUPDATE t2 SET b=38724 WHERE a=18874;\nUPDATE t2 SET b=68145 WHERE a=18875;\nUPDATE t2 SET b=96794 WHERE a=18876;\nUPDATE t2 SET b=56544 WHERE a=18877;\nUPDATE t2 SET b=58654 WHERE a=18878;\nUPDATE t2 SET b=18146 WHERE a=18879;\nUPDATE t2 SET b=38247 WHERE a=18880;\nUPDATE t2 SET b=71966 WHERE a=18881;\nUPDATE t2 SET b=29126 WHERE a=18882;\nUPDATE t2 SET b=83525 WHERE a=18883;\nUPDATE t2 SET b=75080 WHERE a=18884;\nUPDATE t2 SET b=72164 WHERE a=18885;\nUPDATE t2 SET b=15337 WHERE a=18886;\nUPDATE t2 SET b=78502 WHERE a=18887;\nUPDATE t2 SET b=79674 WHERE a=18888;\nUPDATE t2 SET b=23911 WHERE a=18889;\nUPDATE t2 SET b=86606 WHERE a=18890;\nUPDATE t2 SET b=7746 WHERE a=18891;\nUPDATE t2 SET b=70065 WHERE a=18892;\nUPDATE t2 SET b=22586 WHERE a=18893;\nUPDATE t2 SET b=20052 WHERE a=18894;\nUPDATE t2 SET b=40363 WHERE a=18895;\nUPDATE t2 SET b=23269 WHERE a=18896;\nUPDATE t2 SET b=84546 WHERE a=18897;\nUPDATE t2 SET b=19561 WHERE a=18898;\nUPDATE t2 SET b=58307 WHERE a=18899;\nUPDATE t2 SET b=49085 WHERE a=18900;\nUPDATE t2 SET b=72341 WHERE a=18901;\nUPDATE t2 SET b=19955 WHERE a=18902;\nUPDATE t2 SET b=49810 WHERE a=18903;\nUPDATE t2 SET b=36792 WHERE a=18904;\nUPDATE t2 SET b=4585 WHERE a=18905;\nUPDATE t2 SET b=25294 WHERE a=18906;\nUPDATE t2 SET b=67202 WHERE a=18907;\nUPDATE t2 SET b=26819 WHERE a=18908;\nUPDATE t2 SET b=71554 WHERE a=18909;\nUPDATE t2 SET b=60115 WHERE a=18910;\nUPDATE t2 SET b=4514 WHERE a=18911;\nUPDATE t2 SET b=56771 WHERE a=18912;\nUPDATE t2 SET b=12352 WHERE a=18913;\nUPDATE t2 SET b=81534 WHERE a=18914;\nUPDATE t2 SET b=60860 WHERE a=18915;\nUPDATE t2 SET b=8408 WHERE a=18916;\nUPDATE t2 SET b=25808 WHERE a=18917;\nUPDATE t2 SET b=31782 WHERE a=18918;\nUPDATE t2 SET b=18004 WHERE a=18919;\nUPDATE t2 SET b=74852 WHERE a=18920;\nUPDATE t2 SET b=46803 WHERE a=18921;\nUPDATE t2 SET b=6896 WHERE a=18922;\nUPDATE t2 SET b=7994 WHERE a=18923;\nUPDATE t2 SET b=62128 WHERE a=18924;\nUPDATE t2 SET b=11111 WHERE a=18925;\nUPDATE t2 SET b=91679 WHERE a=18926;\nUPDATE t2 SET b=20565 WHERE a=18927;\nUPDATE t2 SET b=63659 WHERE a=18928;\nUPDATE t2 SET b=44906 WHERE a=18929;\nUPDATE t2 SET b=94157 WHERE a=18930;\nUPDATE t2 SET b=2422 WHERE a=18931;\nUPDATE t2 SET b=45065 WHERE a=18932;\nUPDATE t2 SET b=20438 WHERE a=18933;\nUPDATE t2 SET b=68598 WHERE a=18934;\nUPDATE t2 SET b=51709 WHERE a=18935;\nUPDATE t2 SET b=41719 WHERE a=18936;\nUPDATE t2 SET b=21466 WHERE a=18937;\nUPDATE t2 SET b=69779 WHERE a=18938;\nUPDATE t2 SET b=36333 WHERE a=18939;\nUPDATE t2 SET b=10623 WHERE a=18940;\nUPDATE t2 SET b=88015 WHERE a=18941;\nUPDATE t2 SET b=32716 WHERE a=18942;\nUPDATE t2 SET b=12080 WHERE a=18943;\nUPDATE t2 SET b=74942 WHERE a=18944;\nUPDATE t2 SET b=86545 WHERE a=18945;\nUPDATE t2 SET b=32567 WHERE a=18946;\nUPDATE t2 SET b=74670 WHERE a=18947;\nUPDATE t2 SET b=70420 WHERE a=18948;\nUPDATE t2 SET b=79106 WHERE a=18949;\nUPDATE t2 SET b=40335 WHERE a=18950;\nUPDATE t2 SET b=68762 WHERE a=18951;\nUPDATE t2 SET b=66505 WHERE a=18952;\nUPDATE t2 SET b=71375 WHERE a=18953;\nUPDATE t2 SET b=83276 WHERE a=18954;\nUPDATE t2 SET b=72474 WHERE a=18955;\nUPDATE t2 SET b=59083 WHERE a=18956;\nUPDATE t2 SET b=95983 WHERE a=18957;\nUPDATE t2 SET b=64123 WHERE a=18958;\nUPDATE t2 SET b=54451 WHERE a=18959;\nUPDATE t2 SET b=73480 WHERE a=18960;\nUPDATE t2 SET b=39715 WHERE a=18961;\nUPDATE t2 SET b=74969 WHERE a=18962;\nUPDATE t2 SET b=81241 WHERE a=18963;\nUPDATE t2 SET b=27562 WHERE a=18964;\nUPDATE t2 SET b=15281 WHERE a=18965;\nUPDATE t2 SET b=48570 WHERE a=18966;\nUPDATE t2 SET b=74472 WHERE a=18967;\nUPDATE t2 SET b=17786 WHERE a=18968;\nUPDATE t2 SET b=36823 WHERE a=18969;\nUPDATE t2 SET b=74910 WHERE a=18970;\nUPDATE t2 SET b=1610 WHERE a=18971;\nUPDATE t2 SET b=84171 WHERE a=18972;\nUPDATE t2 SET b=59986 WHERE a=18973;\nUPDATE t2 SET b=71512 WHERE a=18974;\nUPDATE t2 SET b=91743 WHERE a=18975;\nUPDATE t2 SET b=43553 WHERE a=18976;\nUPDATE t2 SET b=49204 WHERE a=18977;\nUPDATE t2 SET b=65568 WHERE a=18978;\nUPDATE t2 SET b=60034 WHERE a=18979;\nUPDATE t2 SET b=97755 WHERE a=18980;\nUPDATE t2 SET b=85474 WHERE a=18981;\nUPDATE t2 SET b=97563 WHERE a=18982;\nUPDATE t2 SET b=17097 WHERE a=18983;\nUPDATE t2 SET b=46593 WHERE a=18984;\nUPDATE t2 SET b=60083 WHERE a=18985;\nUPDATE t2 SET b=12695 WHERE a=18986;\nUPDATE t2 SET b=82679 WHERE a=18987;\nUPDATE t2 SET b=68030 WHERE a=18988;\nUPDATE t2 SET b=78040 WHERE a=18989;\nUPDATE t2 SET b=506 WHERE a=18990;\nUPDATE t2 SET b=9330 WHERE a=18991;\nUPDATE t2 SET b=69220 WHERE a=18992;\nUPDATE t2 SET b=80602 WHERE a=18993;\nUPDATE t2 SET b=62313 WHERE a=18994;\nUPDATE t2 SET b=20674 WHERE a=18995;\nUPDATE t2 SET b=64161 WHERE a=18996;\nUPDATE t2 SET b=75898 WHERE a=18997;\nUPDATE t2 SET b=14208 WHERE a=18998;\nUPDATE t2 SET b=72310 WHERE a=18999;\nUPDATE t2 SET b=59343 WHERE a=19000;\nUPDATE t2 SET b=87001 WHERE a=19001;\nUPDATE t2 SET b=82078 WHERE a=19002;\nUPDATE t2 SET b=30657 WHERE a=19003;\nUPDATE t2 SET b=55113 WHERE a=19004;\nUPDATE t2 SET b=7104 WHERE a=19005;\nUPDATE t2 SET b=15788 WHERE a=19006;\nUPDATE t2 SET b=75819 WHERE a=19007;\nUPDATE t2 SET b=74802 WHERE a=19008;\nUPDATE t2 SET b=23577 WHERE a=19009;\nUPDATE t2 SET b=23313 WHERE a=19010;\nUPDATE t2 SET b=19193 WHERE a=19011;\nUPDATE t2 SET b=89497 WHERE a=19012;\nUPDATE t2 SET b=39381 WHERE a=19013;\nUPDATE t2 SET b=92008 WHERE a=19014;\nUPDATE t2 SET b=5626 WHERE a=19015;\nUPDATE t2 SET b=91767 WHERE a=19016;\nUPDATE t2 SET b=79611 WHERE a=19017;\nUPDATE t2 SET b=7549 WHERE a=19018;\nUPDATE t2 SET b=30378 WHERE a=19019;\nUPDATE t2 SET b=9220 WHERE a=19020;\nUPDATE t2 SET b=31474 WHERE a=19021;\nUPDATE t2 SET b=51377 WHERE a=19022;\nUPDATE t2 SET b=68674 WHERE a=19023;\nUPDATE t2 SET b=24240 WHERE a=19024;\nUPDATE t2 SET b=8720 WHERE a=19025;\nUPDATE t2 SET b=8924 WHERE a=19026;\nUPDATE t2 SET b=58577 WHERE a=19027;\nUPDATE t2 SET b=36610 WHERE a=19028;\nUPDATE t2 SET b=6389 WHERE a=19029;\nUPDATE t2 SET b=66037 WHERE a=19030;\nUPDATE t2 SET b=29526 WHERE a=19031;\nUPDATE t2 SET b=55271 WHERE a=19032;\nUPDATE t2 SET b=26644 WHERE a=19033;\nUPDATE t2 SET b=46583 WHERE a=19034;\nUPDATE t2 SET b=5843 WHERE a=19035;\nUPDATE t2 SET b=43124 WHERE a=19036;\nUPDATE t2 SET b=9208 WHERE a=19037;\nUPDATE t2 SET b=15216 WHERE a=19038;\nUPDATE t2 SET b=76635 WHERE a=19039;\nUPDATE t2 SET b=21693 WHERE a=19040;\nUPDATE t2 SET b=76270 WHERE a=19041;\nUPDATE t2 SET b=83788 WHERE a=19042;\nUPDATE t2 SET b=74913 WHERE a=19043;\nUPDATE t2 SET b=762 WHERE a=19044;\nUPDATE t2 SET b=80481 WHERE a=19045;\nUPDATE t2 SET b=80862 WHERE a=19046;\nUPDATE t2 SET b=1308 WHERE a=19047;\nUPDATE t2 SET b=2880 WHERE a=19048;\nUPDATE t2 SET b=41381 WHERE a=19049;\nUPDATE t2 SET b=54099 WHERE a=19050;\nUPDATE t2 SET b=4853 WHERE a=19051;\nUPDATE t2 SET b=18209 WHERE a=19052;\nUPDATE t2 SET b=38845 WHERE a=19053;\nUPDATE t2 SET b=48575 WHERE a=19054;\nUPDATE t2 SET b=43482 WHERE a=19055;\nUPDATE t2 SET b=86774 WHERE a=19056;\nUPDATE t2 SET b=46830 WHERE a=19057;\nUPDATE t2 SET b=95795 WHERE a=19058;\nUPDATE t2 SET b=37746 WHERE a=19059;\nUPDATE t2 SET b=43870 WHERE a=19060;\nUPDATE t2 SET b=89437 WHERE a=19061;\nUPDATE t2 SET b=24089 WHERE a=19062;\nUPDATE t2 SET b=42813 WHERE a=19063;\nUPDATE t2 SET b=38296 WHERE a=19064;\nUPDATE t2 SET b=76877 WHERE a=19065;\nUPDATE t2 SET b=41024 WHERE a=19066;\nUPDATE t2 SET b=30233 WHERE a=19067;\nUPDATE t2 SET b=18929 WHERE a=19068;\nUPDATE t2 SET b=59547 WHERE a=19069;\nUPDATE t2 SET b=71118 WHERE a=19070;\nUPDATE t2 SET b=53135 WHERE a=19071;\nUPDATE t2 SET b=35744 WHERE a=19072;\nUPDATE t2 SET b=96711 WHERE a=19073;\nUPDATE t2 SET b=95038 WHERE a=19074;\nUPDATE t2 SET b=71496 WHERE a=19075;\nUPDATE t2 SET b=98117 WHERE a=19076;\nUPDATE t2 SET b=95353 WHERE a=19077;\nUPDATE t2 SET b=84001 WHERE a=19078;\nUPDATE t2 SET b=43592 WHERE a=19079;\nUPDATE t2 SET b=75947 WHERE a=19080;\nUPDATE t2 SET b=37997 WHERE a=19081;\nUPDATE t2 SET b=32103 WHERE a=19082;\nUPDATE t2 SET b=1955 WHERE a=19083;\nUPDATE t2 SET b=44490 WHERE a=19084;\nUPDATE t2 SET b=86015 WHERE a=19085;\nUPDATE t2 SET b=55976 WHERE a=19086;\nUPDATE t2 SET b=92004 WHERE a=19087;\nUPDATE t2 SET b=30857 WHERE a=19088;\nUPDATE t2 SET b=45479 WHERE a=19089;\nUPDATE t2 SET b=2388 WHERE a=19090;\nUPDATE t2 SET b=89291 WHERE a=19091;\nUPDATE t2 SET b=37646 WHERE a=19092;\nUPDATE t2 SET b=24053 WHERE a=19093;\nUPDATE t2 SET b=93616 WHERE a=19094;\nUPDATE t2 SET b=9493 WHERE a=19095;\nUPDATE t2 SET b=10919 WHERE a=19096;\nUPDATE t2 SET b=47327 WHERE a=19097;\nUPDATE t2 SET b=23295 WHERE a=19098;\nUPDATE t2 SET b=52494 WHERE a=19099;\nUPDATE t2 SET b=59357 WHERE a=19100;\nUPDATE t2 SET b=82367 WHERE a=19101;\nUPDATE t2 SET b=52633 WHERE a=19102;\nUPDATE t2 SET b=48492 WHERE a=19103;\nUPDATE t2 SET b=3780 WHERE a=19104;\nUPDATE t2 SET b=179 WHERE a=19105;\nUPDATE t2 SET b=82287 WHERE a=19106;\nUPDATE t2 SET b=50632 WHERE a=19107;\nUPDATE t2 SET b=48496 WHERE a=19108;\nUPDATE t2 SET b=49387 WHERE a=19109;\nUPDATE t2 SET b=75722 WHERE a=19110;\nUPDATE t2 SET b=69504 WHERE a=19111;\nUPDATE t2 SET b=53154 WHERE a=19112;\nUPDATE t2 SET b=88714 WHERE a=19113;\nUPDATE t2 SET b=86975 WHERE a=19114;\nUPDATE t2 SET b=83319 WHERE a=19115;\nUPDATE t2 SET b=52321 WHERE a=19116;\nUPDATE t2 SET b=95667 WHERE a=19117;\nUPDATE t2 SET b=57776 WHERE a=19118;\nUPDATE t2 SET b=47252 WHERE a=19119;\nUPDATE t2 SET b=96332 WHERE a=19120;\nUPDATE t2 SET b=98358 WHERE a=19121;\nUPDATE t2 SET b=20994 WHERE a=19122;\nUPDATE t2 SET b=76308 WHERE a=19123;\nUPDATE t2 SET b=707 WHERE a=19124;\nUPDATE t2 SET b=20393 WHERE a=19125;\nUPDATE t2 SET b=45446 WHERE a=19126;\nUPDATE t2 SET b=80760 WHERE a=19127;\nUPDATE t2 SET b=55002 WHERE a=19128;\nUPDATE t2 SET b=66450 WHERE a=19129;\nUPDATE t2 SET b=78742 WHERE a=19130;\nUPDATE t2 SET b=55908 WHERE a=19131;\nUPDATE t2 SET b=4307 WHERE a=19132;\nUPDATE t2 SET b=4296 WHERE a=19133;\nUPDATE t2 SET b=34919 WHERE a=19134;\nUPDATE t2 SET b=80423 WHERE a=19135;\nUPDATE t2 SET b=27475 WHERE a=19136;\nUPDATE t2 SET b=63045 WHERE a=19137;\nUPDATE t2 SET b=70230 WHERE a=19138;\nUPDATE t2 SET b=63399 WHERE a=19139;\nUPDATE t2 SET b=9313 WHERE a=19140;\nUPDATE t2 SET b=87001 WHERE a=19141;\nUPDATE t2 SET b=52224 WHERE a=19142;\nUPDATE t2 SET b=15457 WHERE a=19143;\nUPDATE t2 SET b=4633 WHERE a=19144;\nUPDATE t2 SET b=56653 WHERE a=19145;\nUPDATE t2 SET b=65859 WHERE a=19146;\nUPDATE t2 SET b=5387 WHERE a=19147;\nUPDATE t2 SET b=7216 WHERE a=19148;\nUPDATE t2 SET b=32923 WHERE a=19149;\nUPDATE t2 SET b=53657 WHERE a=19150;\nUPDATE t2 SET b=80511 WHERE a=19151;\nUPDATE t2 SET b=61493 WHERE a=19152;\nUPDATE t2 SET b=27749 WHERE a=19153;\nUPDATE t2 SET b=33897 WHERE a=19154;\nUPDATE t2 SET b=45254 WHERE a=19155;\nUPDATE t2 SET b=90062 WHERE a=19156;\nUPDATE t2 SET b=24043 WHERE a=19157;\nUPDATE t2 SET b=60480 WHERE a=19158;\nUPDATE t2 SET b=63771 WHERE a=19159;\nUPDATE t2 SET b=45750 WHERE a=19160;\nUPDATE t2 SET b=61287 WHERE a=19161;\nUPDATE t2 SET b=1509 WHERE a=19162;\nUPDATE t2 SET b=77211 WHERE a=19163;\nUPDATE t2 SET b=27118 WHERE a=19164;\nUPDATE t2 SET b=16410 WHERE a=19165;\nUPDATE t2 SET b=99887 WHERE a=19166;\nUPDATE t2 SET b=9035 WHERE a=19167;\nUPDATE t2 SET b=69163 WHERE a=19168;\nUPDATE t2 SET b=35692 WHERE a=19169;\nUPDATE t2 SET b=29281 WHERE a=19170;\nUPDATE t2 SET b=38416 WHERE a=19171;\nUPDATE t2 SET b=40149 WHERE a=19172;\nUPDATE t2 SET b=6869 WHERE a=19173;\nUPDATE t2 SET b=12429 WHERE a=19174;\nUPDATE t2 SET b=5568 WHERE a=19175;\nUPDATE t2 SET b=3639 WHERE a=19176;\nUPDATE t2 SET b=87260 WHERE a=19177;\nUPDATE t2 SET b=99936 WHERE a=19178;\nUPDATE t2 SET b=10414 WHERE a=19179;\nUPDATE t2 SET b=50014 WHERE a=19180;\nUPDATE t2 SET b=66378 WHERE a=19181;\nUPDATE t2 SET b=5071 WHERE a=19182;\nUPDATE t2 SET b=90827 WHERE a=19183;\nUPDATE t2 SET b=33989 WHERE a=19184;\nUPDATE t2 SET b=88706 WHERE a=19185;\nUPDATE t2 SET b=51723 WHERE a=19186;\nUPDATE t2 SET b=13832 WHERE a=19187;\nUPDATE t2 SET b=70863 WHERE a=19188;\nUPDATE t2 SET b=85173 WHERE a=19189;\nUPDATE t2 SET b=63940 WHERE a=19190;\nUPDATE t2 SET b=86315 WHERE a=19191;\nUPDATE t2 SET b=48820 WHERE a=19192;\nUPDATE t2 SET b=88015 WHERE a=19193;\nUPDATE t2 SET b=56010 WHERE a=19194;\nUPDATE t2 SET b=75853 WHERE a=19195;\nUPDATE t2 SET b=41001 WHERE a=19196;\nUPDATE t2 SET b=58437 WHERE a=19197;\nUPDATE t2 SET b=6496 WHERE a=19198;\nUPDATE t2 SET b=72815 WHERE a=19199;\nUPDATE t2 SET b=29450 WHERE a=19200;\nUPDATE t2 SET b=39389 WHERE a=19201;\nUPDATE t2 SET b=15659 WHERE a=19202;\nUPDATE t2 SET b=17192 WHERE a=19203;\nUPDATE t2 SET b=22766 WHERE a=19204;\nUPDATE t2 SET b=13636 WHERE a=19205;\nUPDATE t2 SET b=23624 WHERE a=19206;\nUPDATE t2 SET b=79129 WHERE a=19207;\nUPDATE t2 SET b=70915 WHERE a=19208;\nUPDATE t2 SET b=75768 WHERE a=19209;\nUPDATE t2 SET b=16775 WHERE a=19210;\nUPDATE t2 SET b=3395 WHERE a=19211;\nUPDATE t2 SET b=77244 WHERE a=19212;\nUPDATE t2 SET b=80607 WHERE a=19213;\nUPDATE t2 SET b=70601 WHERE a=19214;\nUPDATE t2 SET b=4455 WHERE a=19215;\nUPDATE t2 SET b=74734 WHERE a=19216;\nUPDATE t2 SET b=74055 WHERE a=19217;\nUPDATE t2 SET b=22427 WHERE a=19218;\nUPDATE t2 SET b=143 WHERE a=19219;\nUPDATE t2 SET b=11531 WHERE a=19220;\nUPDATE t2 SET b=7631 WHERE a=19221;\nUPDATE t2 SET b=92745 WHERE a=19222;\nUPDATE t2 SET b=20040 WHERE a=19223;\nUPDATE t2 SET b=25711 WHERE a=19224;\nUPDATE t2 SET b=2302 WHERE a=19225;\nUPDATE t2 SET b=98224 WHERE a=19226;\nUPDATE t2 SET b=58815 WHERE a=19227;\nUPDATE t2 SET b=67441 WHERE a=19228;\nUPDATE t2 SET b=48035 WHERE a=19229;\nUPDATE t2 SET b=98828 WHERE a=19230;\nUPDATE t2 SET b=93102 WHERE a=19231;\nUPDATE t2 SET b=59043 WHERE a=19232;\nUPDATE t2 SET b=27422 WHERE a=19233;\nUPDATE t2 SET b=39404 WHERE a=19234;\nUPDATE t2 SET b=18013 WHERE a=19235;\nUPDATE t2 SET b=22058 WHERE a=19236;\nUPDATE t2 SET b=57945 WHERE a=19237;\nUPDATE t2 SET b=12327 WHERE a=19238;\nUPDATE t2 SET b=88175 WHERE a=19239;\nUPDATE t2 SET b=74788 WHERE a=19240;\nUPDATE t2 SET b=49925 WHERE a=19241;\nUPDATE t2 SET b=30008 WHERE a=19242;\nUPDATE t2 SET b=65284 WHERE a=19243;\nUPDATE t2 SET b=61081 WHERE a=19244;\nUPDATE t2 SET b=78353 WHERE a=19245;\nUPDATE t2 SET b=72945 WHERE a=19246;\nUPDATE t2 SET b=26338 WHERE a=19247;\nUPDATE t2 SET b=69694 WHERE a=19248;\nUPDATE t2 SET b=75259 WHERE a=19249;\nUPDATE t2 SET b=404 WHERE a=19250;\nUPDATE t2 SET b=97603 WHERE a=19251;\nUPDATE t2 SET b=56002 WHERE a=19252;\nUPDATE t2 SET b=5394 WHERE a=19253;\nUPDATE t2 SET b=40257 WHERE a=19254;\nUPDATE t2 SET b=44533 WHERE a=19255;\nUPDATE t2 SET b=24224 WHERE a=19256;\nUPDATE t2 SET b=61081 WHERE a=19257;\nUPDATE t2 SET b=32531 WHERE a=19258;\nUPDATE t2 SET b=38177 WHERE a=19259;\nUPDATE t2 SET b=98570 WHERE a=19260;\nUPDATE t2 SET b=19717 WHERE a=19261;\nUPDATE t2 SET b=81565 WHERE a=19262;\nUPDATE t2 SET b=77514 WHERE a=19263;\nUPDATE t2 SET b=40723 WHERE a=19264;\nUPDATE t2 SET b=19602 WHERE a=19265;\nUPDATE t2 SET b=81247 WHERE a=19266;\nUPDATE t2 SET b=10029 WHERE a=19267;\nUPDATE t2 SET b=68231 WHERE a=19268;\nUPDATE t2 SET b=54639 WHERE a=19269;\nUPDATE t2 SET b=58161 WHERE a=19270;\nUPDATE t2 SET b=87626 WHERE a=19271;\nUPDATE t2 SET b=16787 WHERE a=19272;\nUPDATE t2 SET b=75569 WHERE a=19273;\nUPDATE t2 SET b=9867 WHERE a=19274;\nUPDATE t2 SET b=74206 WHERE a=19275;\nUPDATE t2 SET b=50752 WHERE a=19276;\nUPDATE t2 SET b=86128 WHERE a=19277;\nUPDATE t2 SET b=4567 WHERE a=19278;\nUPDATE t2 SET b=5981 WHERE a=19279;\nUPDATE t2 SET b=61108 WHERE a=19280;\nUPDATE t2 SET b=82365 WHERE a=19281;\nUPDATE t2 SET b=37408 WHERE a=19282;\nUPDATE t2 SET b=86315 WHERE a=19283;\nUPDATE t2 SET b=69849 WHERE a=19284;\nUPDATE t2 SET b=47019 WHERE a=19285;\nUPDATE t2 SET b=82147 WHERE a=19286;\nUPDATE t2 SET b=5431 WHERE a=19287;\nUPDATE t2 SET b=31007 WHERE a=19288;\nUPDATE t2 SET b=91984 WHERE a=19289;\nUPDATE t2 SET b=15656 WHERE a=19290;\nUPDATE t2 SET b=43416 WHERE a=19291;\nUPDATE t2 SET b=31464 WHERE a=19292;\nUPDATE t2 SET b=17565 WHERE a=19293;\nUPDATE t2 SET b=86911 WHERE a=19294;\nUPDATE t2 SET b=17998 WHERE a=19295;\nUPDATE t2 SET b=50290 WHERE a=19296;\nUPDATE t2 SET b=22672 WHERE a=19297;\nUPDATE t2 SET b=71939 WHERE a=19298;\nUPDATE t2 SET b=38861 WHERE a=19299;\nUPDATE t2 SET b=20173 WHERE a=19300;\nUPDATE t2 SET b=84197 WHERE a=19301;\nUPDATE t2 SET b=609 WHERE a=19302;\nUPDATE t2 SET b=6432 WHERE a=19303;\nUPDATE t2 SET b=11512 WHERE a=19304;\nUPDATE t2 SET b=35782 WHERE a=19305;\nUPDATE t2 SET b=47275 WHERE a=19306;\nUPDATE t2 SET b=73229 WHERE a=19307;\nUPDATE t2 SET b=21369 WHERE a=19308;\nUPDATE t2 SET b=62906 WHERE a=19309;\nUPDATE t2 SET b=37493 WHERE a=19310;\nUPDATE t2 SET b=54777 WHERE a=19311;\nUPDATE t2 SET b=62512 WHERE a=19312;\nUPDATE t2 SET b=37925 WHERE a=19313;\nUPDATE t2 SET b=74292 WHERE a=19314;\nUPDATE t2 SET b=36595 WHERE a=19315;\nUPDATE t2 SET b=21481 WHERE a=19316;\nUPDATE t2 SET b=15506 WHERE a=19317;\nUPDATE t2 SET b=51922 WHERE a=19318;\nUPDATE t2 SET b=58977 WHERE a=19319;\nUPDATE t2 SET b=1242 WHERE a=19320;\nUPDATE t2 SET b=42770 WHERE a=19321;\nUPDATE t2 SET b=52579 WHERE a=19322;\nUPDATE t2 SET b=7514 WHERE a=19323;\nUPDATE t2 SET b=98502 WHERE a=19324;\nUPDATE t2 SET b=80675 WHERE a=19325;\nUPDATE t2 SET b=21405 WHERE a=19326;\nUPDATE t2 SET b=78311 WHERE a=19327;\nUPDATE t2 SET b=92566 WHERE a=19328;\nUPDATE t2 SET b=27589 WHERE a=19329;\nUPDATE t2 SET b=91350 WHERE a=19330;\nUPDATE t2 SET b=93301 WHERE a=19331;\nUPDATE t2 SET b=34235 WHERE a=19332;\nUPDATE t2 SET b=77103 WHERE a=19333;\nUPDATE t2 SET b=4956 WHERE a=19334;\nUPDATE t2 SET b=70075 WHERE a=19335;\nUPDATE t2 SET b=50378 WHERE a=19336;\nUPDATE t2 SET b=60095 WHERE a=19337;\nUPDATE t2 SET b=95068 WHERE a=19338;\nUPDATE t2 SET b=44819 WHERE a=19339;\nUPDATE t2 SET b=3311 WHERE a=19340;\nUPDATE t2 SET b=49851 WHERE a=19341;\nUPDATE t2 SET b=45450 WHERE a=19342;\nUPDATE t2 SET b=6773 WHERE a=19343;\nUPDATE t2 SET b=71648 WHERE a=19344;\nUPDATE t2 SET b=79136 WHERE a=19345;\nUPDATE t2 SET b=54209 WHERE a=19346;\nUPDATE t2 SET b=28038 WHERE a=19347;\nUPDATE t2 SET b=1535 WHERE a=19348;\nUPDATE t2 SET b=93295 WHERE a=19349;\nUPDATE t2 SET b=63633 WHERE a=19350;\nUPDATE t2 SET b=37198 WHERE a=19351;\nUPDATE t2 SET b=92880 WHERE a=19352;\nUPDATE t2 SET b=35069 WHERE a=19353;\nUPDATE t2 SET b=78648 WHERE a=19354;\nUPDATE t2 SET b=86209 WHERE a=19355;\nUPDATE t2 SET b=84945 WHERE a=19356;\nUPDATE t2 SET b=23608 WHERE a=19357;\nUPDATE t2 SET b=20133 WHERE a=19358;\nUPDATE t2 SET b=70500 WHERE a=19359;\nUPDATE t2 SET b=39954 WHERE a=19360;\nUPDATE t2 SET b=23780 WHERE a=19361;\nUPDATE t2 SET b=40377 WHERE a=19362;\nUPDATE t2 SET b=4815 WHERE a=19363;\nUPDATE t2 SET b=69103 WHERE a=19364;\nUPDATE t2 SET b=12583 WHERE a=19365;\nUPDATE t2 SET b=77203 WHERE a=19366;\nUPDATE t2 SET b=93586 WHERE a=19367;\nUPDATE t2 SET b=19711 WHERE a=19368;\nUPDATE t2 SET b=15718 WHERE a=19369;\nUPDATE t2 SET b=69763 WHERE a=19370;\nUPDATE t2 SET b=18678 WHERE a=19371;\nUPDATE t2 SET b=63399 WHERE a=19372;\nUPDATE t2 SET b=22830 WHERE a=19373;\nUPDATE t2 SET b=6452 WHERE a=19374;\nUPDATE t2 SET b=86033 WHERE a=19375;\nUPDATE t2 SET b=37012 WHERE a=19376;\nUPDATE t2 SET b=85034 WHERE a=19377;\nUPDATE t2 SET b=21631 WHERE a=19378;\nUPDATE t2 SET b=24025 WHERE a=19379;\nUPDATE t2 SET b=85199 WHERE a=19380;\nUPDATE t2 SET b=439 WHERE a=19381;\nUPDATE t2 SET b=58038 WHERE a=19382;\nUPDATE t2 SET b=88307 WHERE a=19383;\nUPDATE t2 SET b=58362 WHERE a=19384;\nUPDATE t2 SET b=13386 WHERE a=19385;\nUPDATE t2 SET b=24209 WHERE a=19386;\nUPDATE t2 SET b=36985 WHERE a=19387;\nUPDATE t2 SET b=94617 WHERE a=19388;\nUPDATE t2 SET b=18786 WHERE a=19389;\nUPDATE t2 SET b=29935 WHERE a=19390;\nUPDATE t2 SET b=8095 WHERE a=19391;\nUPDATE t2 SET b=36875 WHERE a=19392;\nUPDATE t2 SET b=8821 WHERE a=19393;\nUPDATE t2 SET b=1969 WHERE a=19394;\nUPDATE t2 SET b=10820 WHERE a=19395;\nUPDATE t2 SET b=83391 WHERE a=19396;\nUPDATE t2 SET b=60895 WHERE a=19397;\nUPDATE t2 SET b=68181 WHERE a=19398;\nUPDATE t2 SET b=43085 WHERE a=19399;\nUPDATE t2 SET b=53357 WHERE a=19400;\nUPDATE t2 SET b=29582 WHERE a=19401;\nUPDATE t2 SET b=255 WHERE a=19402;\nUPDATE t2 SET b=97357 WHERE a=19403;\nUPDATE t2 SET b=98236 WHERE a=19404;\nUPDATE t2 SET b=15666 WHERE a=19405;\nUPDATE t2 SET b=94554 WHERE a=19406;\nUPDATE t2 SET b=20259 WHERE a=19407;\nUPDATE t2 SET b=98727 WHERE a=19408;\nUPDATE t2 SET b=76514 WHERE a=19409;\nUPDATE t2 SET b=30133 WHERE a=19410;\nUPDATE t2 SET b=13673 WHERE a=19411;\nUPDATE t2 SET b=62432 WHERE a=19412;\nUPDATE t2 SET b=46364 WHERE a=19413;\nUPDATE t2 SET b=7212 WHERE a=19414;\nUPDATE t2 SET b=33088 WHERE a=19415;\nUPDATE t2 SET b=45171 WHERE a=19416;\nUPDATE t2 SET b=83356 WHERE a=19417;\nUPDATE t2 SET b=11682 WHERE a=19418;\nUPDATE t2 SET b=87883 WHERE a=19419;\nUPDATE t2 SET b=87501 WHERE a=19420;\nUPDATE t2 SET b=36115 WHERE a=19421;\nUPDATE t2 SET b=65308 WHERE a=19422;\nUPDATE t2 SET b=83918 WHERE a=19423;\nUPDATE t2 SET b=50269 WHERE a=19424;\nUPDATE t2 SET b=62739 WHERE a=19425;\nUPDATE t2 SET b=56865 WHERE a=19426;\nUPDATE t2 SET b=51552 WHERE a=19427;\nUPDATE t2 SET b=43494 WHERE a=19428;\nUPDATE t2 SET b=53048 WHERE a=19429;\nUPDATE t2 SET b=88595 WHERE a=19430;\nUPDATE t2 SET b=17577 WHERE a=19431;\nUPDATE t2 SET b=97764 WHERE a=19432;\nUPDATE t2 SET b=69433 WHERE a=19433;\nUPDATE t2 SET b=90997 WHERE a=19434;\nUPDATE t2 SET b=68129 WHERE a=19435;\nUPDATE t2 SET b=94617 WHERE a=19436;\nUPDATE t2 SET b=79427 WHERE a=19437;\nUPDATE t2 SET b=27644 WHERE a=19438;\nUPDATE t2 SET b=73240 WHERE a=19439;\nUPDATE t2 SET b=8826 WHERE a=19440;\nUPDATE t2 SET b=21117 WHERE a=19441;\nUPDATE t2 SET b=73168 WHERE a=19442;\nUPDATE t2 SET b=11087 WHERE a=19443;\nUPDATE t2 SET b=42396 WHERE a=19444;\nUPDATE t2 SET b=46736 WHERE a=19445;\nUPDATE t2 SET b=4436 WHERE a=19446;\nUPDATE t2 SET b=20264 WHERE a=19447;\nUPDATE t2 SET b=90194 WHERE a=19448;\nUPDATE t2 SET b=9805 WHERE a=19449;\nUPDATE t2 SET b=48965 WHERE a=19450;\nUPDATE t2 SET b=68084 WHERE a=19451;\nUPDATE t2 SET b=61273 WHERE a=19452;\nUPDATE t2 SET b=28225 WHERE a=19453;\nUPDATE t2 SET b=39555 WHERE a=19454;\nUPDATE t2 SET b=88373 WHERE a=19455;\nUPDATE t2 SET b=54218 WHERE a=19456;\nUPDATE t2 SET b=2994 WHERE a=19457;\nUPDATE t2 SET b=4999 WHERE a=19458;\nUPDATE t2 SET b=92585 WHERE a=19459;\nUPDATE t2 SET b=31403 WHERE a=19460;\nUPDATE t2 SET b=18276 WHERE a=19461;\nUPDATE t2 SET b=43396 WHERE a=19462;\nUPDATE t2 SET b=82739 WHERE a=19463;\nUPDATE t2 SET b=98759 WHERE a=19464;\nUPDATE t2 SET b=50866 WHERE a=19465;\nUPDATE t2 SET b=88712 WHERE a=19466;\nUPDATE t2 SET b=74407 WHERE a=19467;\nUPDATE t2 SET b=70026 WHERE a=19468;\nUPDATE t2 SET b=46719 WHERE a=19469;\nUPDATE t2 SET b=24405 WHERE a=19470;\nUPDATE t2 SET b=22643 WHERE a=19471;\nUPDATE t2 SET b=92717 WHERE a=19472;\nUPDATE t2 SET b=57971 WHERE a=19473;\nUPDATE t2 SET b=59499 WHERE a=19474;\nUPDATE t2 SET b=418 WHERE a=19475;\nUPDATE t2 SET b=40237 WHERE a=19476;\nUPDATE t2 SET b=65847 WHERE a=19477;\nUPDATE t2 SET b=95214 WHERE a=19478;\nUPDATE t2 SET b=15268 WHERE a=19479;\nUPDATE t2 SET b=11583 WHERE a=19480;\nUPDATE t2 SET b=33379 WHERE a=19481;\nUPDATE t2 SET b=85382 WHERE a=19482;\nUPDATE t2 SET b=84640 WHERE a=19483;\nUPDATE t2 SET b=49875 WHERE a=19484;\nUPDATE t2 SET b=2322 WHERE a=19485;\nUPDATE t2 SET b=61859 WHERE a=19486;\nUPDATE t2 SET b=98561 WHERE a=19487;\nUPDATE t2 SET b=55416 WHERE a=19488;\nUPDATE t2 SET b=83783 WHERE a=19489;\nUPDATE t2 SET b=98261 WHERE a=19490;\nUPDATE t2 SET b=59503 WHERE a=19491;\nUPDATE t2 SET b=22337 WHERE a=19492;\nUPDATE t2 SET b=8921 WHERE a=19493;\nUPDATE t2 SET b=84554 WHERE a=19494;\nUPDATE t2 SET b=32090 WHERE a=19495;\nUPDATE t2 SET b=92707 WHERE a=19496;\nUPDATE t2 SET b=98159 WHERE a=19497;\nUPDATE t2 SET b=80881 WHERE a=19498;\nUPDATE t2 SET b=1018 WHERE a=19499;\nUPDATE t2 SET b=84064 WHERE a=19500;\nUPDATE t2 SET b=27386 WHERE a=19501;\nUPDATE t2 SET b=23744 WHERE a=19502;\nUPDATE t2 SET b=56662 WHERE a=19503;\nUPDATE t2 SET b=50537 WHERE a=19504;\nUPDATE t2 SET b=77633 WHERE a=19505;\nUPDATE t2 SET b=33699 WHERE a=19506;\nUPDATE t2 SET b=18191 WHERE a=19507;\nUPDATE t2 SET b=48136 WHERE a=19508;\nUPDATE t2 SET b=70147 WHERE a=19509;\nUPDATE t2 SET b=79188 WHERE a=19510;\nUPDATE t2 SET b=47177 WHERE a=19511;\nUPDATE t2 SET b=85035 WHERE a=19512;\nUPDATE t2 SET b=77862 WHERE a=19513;\nUPDATE t2 SET b=63248 WHERE a=19514;\nUPDATE t2 SET b=16168 WHERE a=19515;\nUPDATE t2 SET b=44688 WHERE a=19516;\nUPDATE t2 SET b=57332 WHERE a=19517;\nUPDATE t2 SET b=95633 WHERE a=19518;\nUPDATE t2 SET b=82713 WHERE a=19519;\nUPDATE t2 SET b=35564 WHERE a=19520;\nUPDATE t2 SET b=48453 WHERE a=19521;\nUPDATE t2 SET b=61448 WHERE a=19522;\nUPDATE t2 SET b=83921 WHERE a=19523;\nUPDATE t2 SET b=38773 WHERE a=19524;\nUPDATE t2 SET b=39287 WHERE a=19525;\nUPDATE t2 SET b=77290 WHERE a=19526;\nUPDATE t2 SET b=53245 WHERE a=19527;\nUPDATE t2 SET b=98597 WHERE a=19528;\nUPDATE t2 SET b=86054 WHERE a=19529;\nUPDATE t2 SET b=65931 WHERE a=19530;\nUPDATE t2 SET b=38324 WHERE a=19531;\nUPDATE t2 SET b=25451 WHERE a=19532;\nUPDATE t2 SET b=78680 WHERE a=19533;\nUPDATE t2 SET b=23516 WHERE a=19534;\nUPDATE t2 SET b=19753 WHERE a=19535;\nUPDATE t2 SET b=13816 WHERE a=19536;\nUPDATE t2 SET b=32056 WHERE a=19537;\nUPDATE t2 SET b=49082 WHERE a=19538;\nUPDATE t2 SET b=40336 WHERE a=19539;\nUPDATE t2 SET b=21906 WHERE a=19540;\nUPDATE t2 SET b=55916 WHERE a=19541;\nUPDATE t2 SET b=87088 WHERE a=19542;\nUPDATE t2 SET b=80835 WHERE a=19543;\nUPDATE t2 SET b=17797 WHERE a=19544;\nUPDATE t2 SET b=24764 WHERE a=19545;\nUPDATE t2 SET b=99562 WHERE a=19546;\nUPDATE t2 SET b=2511 WHERE a=19547;\nUPDATE t2 SET b=20030 WHERE a=19548;\nUPDATE t2 SET b=15453 WHERE a=19549;\nUPDATE t2 SET b=67163 WHERE a=19550;\nUPDATE t2 SET b=41588 WHERE a=19551;\nUPDATE t2 SET b=2668 WHERE a=19552;\nUPDATE t2 SET b=59657 WHERE a=19553;\nUPDATE t2 SET b=39704 WHERE a=19554;\nUPDATE t2 SET b=89698 WHERE a=19555;\nUPDATE t2 SET b=71499 WHERE a=19556;\nUPDATE t2 SET b=9072 WHERE a=19557;\nUPDATE t2 SET b=20020 WHERE a=19558;\nUPDATE t2 SET b=95332 WHERE a=19559;\nUPDATE t2 SET b=12086 WHERE a=19560;\nUPDATE t2 SET b=6096 WHERE a=19561;\nUPDATE t2 SET b=67415 WHERE a=19562;\nUPDATE t2 SET b=35869 WHERE a=19563;\nUPDATE t2 SET b=40315 WHERE a=19564;\nUPDATE t2 SET b=81630 WHERE a=19565;\nUPDATE t2 SET b=34395 WHERE a=19566;\nUPDATE t2 SET b=98208 WHERE a=19567;\nUPDATE t2 SET b=3570 WHERE a=19568;\nUPDATE t2 SET b=85585 WHERE a=19569;\nUPDATE t2 SET b=57728 WHERE a=19570;\nUPDATE t2 SET b=97848 WHERE a=19571;\nUPDATE t2 SET b=86009 WHERE a=19572;\nUPDATE t2 SET b=79109 WHERE a=19573;\nUPDATE t2 SET b=21855 WHERE a=19574;\nUPDATE t2 SET b=61611 WHERE a=19575;\nUPDATE t2 SET b=19795 WHERE a=19576;\nUPDATE t2 SET b=28507 WHERE a=19577;\nUPDATE t2 SET b=15448 WHERE a=19578;\nUPDATE t2 SET b=72103 WHERE a=19579;\nUPDATE t2 SET b=22434 WHERE a=19580;\nUPDATE t2 SET b=96317 WHERE a=19581;\nUPDATE t2 SET b=39685 WHERE a=19582;\nUPDATE t2 SET b=95585 WHERE a=19583;\nUPDATE t2 SET b=43969 WHERE a=19584;\nUPDATE t2 SET b=2567 WHERE a=19585;\nUPDATE t2 SET b=47500 WHERE a=19586;\nUPDATE t2 SET b=49282 WHERE a=19587;\nUPDATE t2 SET b=42199 WHERE a=19588;\nUPDATE t2 SET b=62408 WHERE a=19589;\nUPDATE t2 SET b=79332 WHERE a=19590;\nUPDATE t2 SET b=40763 WHERE a=19591;\nUPDATE t2 SET b=41139 WHERE a=19592;\nUPDATE t2 SET b=99891 WHERE a=19593;\nUPDATE t2 SET b=5569 WHERE a=19594;\nUPDATE t2 SET b=12862 WHERE a=19595;\nUPDATE t2 SET b=41403 WHERE a=19596;\nUPDATE t2 SET b=42507 WHERE a=19597;\nUPDATE t2 SET b=93416 WHERE a=19598;\nUPDATE t2 SET b=4091 WHERE a=19599;\nUPDATE t2 SET b=11108 WHERE a=19600;\nUPDATE t2 SET b=65174 WHERE a=19601;\nUPDATE t2 SET b=32667 WHERE a=19602;\nUPDATE t2 SET b=53741 WHERE a=19603;\nUPDATE t2 SET b=92703 WHERE a=19604;\nUPDATE t2 SET b=86734 WHERE a=19605;\nUPDATE t2 SET b=85419 WHERE a=19606;\nUPDATE t2 SET b=73555 WHERE a=19607;\nUPDATE t2 SET b=30046 WHERE a=19608;\nUPDATE t2 SET b=39392 WHERE a=19609;\nUPDATE t2 SET b=25583 WHERE a=19610;\nUPDATE t2 SET b=39976 WHERE a=19611;\nUPDATE t2 SET b=61183 WHERE a=19612;\nUPDATE t2 SET b=54998 WHERE a=19613;\nUPDATE t2 SET b=45767 WHERE a=19614;\nUPDATE t2 SET b=87278 WHERE a=19615;\nUPDATE t2 SET b=14439 WHERE a=19616;\nUPDATE t2 SET b=45226 WHERE a=19617;\nUPDATE t2 SET b=5879 WHERE a=19618;\nUPDATE t2 SET b=51617 WHERE a=19619;\nUPDATE t2 SET b=20216 WHERE a=19620;\nUPDATE t2 SET b=81229 WHERE a=19621;\nUPDATE t2 SET b=78006 WHERE a=19622;\nUPDATE t2 SET b=69098 WHERE a=19623;\nUPDATE t2 SET b=34762 WHERE a=19624;\nUPDATE t2 SET b=78835 WHERE a=19625;\nUPDATE t2 SET b=58671 WHERE a=19626;\nUPDATE t2 SET b=37659 WHERE a=19627;\nUPDATE t2 SET b=35937 WHERE a=19628;\nUPDATE t2 SET b=40965 WHERE a=19629;\nUPDATE t2 SET b=5028 WHERE a=19630;\nUPDATE t2 SET b=76319 WHERE a=19631;\nUPDATE t2 SET b=93927 WHERE a=19632;\nUPDATE t2 SET b=41329 WHERE a=19633;\nUPDATE t2 SET b=80536 WHERE a=19634;\nUPDATE t2 SET b=58667 WHERE a=19635;\nUPDATE t2 SET b=89851 WHERE a=19636;\nUPDATE t2 SET b=75205 WHERE a=19637;\nUPDATE t2 SET b=54994 WHERE a=19638;\nUPDATE t2 SET b=56515 WHERE a=19639;\nUPDATE t2 SET b=9587 WHERE a=19640;\nUPDATE t2 SET b=80925 WHERE a=19641;\nUPDATE t2 SET b=18932 WHERE a=19642;\nUPDATE t2 SET b=90277 WHERE a=19643;\nUPDATE t2 SET b=20430 WHERE a=19644;\nUPDATE t2 SET b=49674 WHERE a=19645;\nUPDATE t2 SET b=3944 WHERE a=19646;\nUPDATE t2 SET b=67861 WHERE a=19647;\nUPDATE t2 SET b=52707 WHERE a=19648;\nUPDATE t2 SET b=8380 WHERE a=19649;\nUPDATE t2 SET b=87362 WHERE a=19650;\nUPDATE t2 SET b=58315 WHERE a=19651;\nUPDATE t2 SET b=84876 WHERE a=19652;\nUPDATE t2 SET b=10081 WHERE a=19653;\nUPDATE t2 SET b=67383 WHERE a=19654;\nUPDATE t2 SET b=53908 WHERE a=19655;\nUPDATE t2 SET b=72099 WHERE a=19656;\nUPDATE t2 SET b=14800 WHERE a=19657;\nUPDATE t2 SET b=84197 WHERE a=19658;\nUPDATE t2 SET b=62196 WHERE a=19659;\nUPDATE t2 SET b=40540 WHERE a=19660;\nUPDATE t2 SET b=62635 WHERE a=19661;\nUPDATE t2 SET b=97113 WHERE a=19662;\nUPDATE t2 SET b=51169 WHERE a=19663;\nUPDATE t2 SET b=47027 WHERE a=19664;\nUPDATE t2 SET b=84803 WHERE a=19665;\nUPDATE t2 SET b=11293 WHERE a=19666;\nUPDATE t2 SET b=53087 WHERE a=19667;\nUPDATE t2 SET b=24587 WHERE a=19668;\nUPDATE t2 SET b=87766 WHERE a=19669;\nUPDATE t2 SET b=58092 WHERE a=19670;\nUPDATE t2 SET b=19290 WHERE a=19671;\nUPDATE t2 SET b=59197 WHERE a=19672;\nUPDATE t2 SET b=44041 WHERE a=19673;\nUPDATE t2 SET b=40450 WHERE a=19674;\nUPDATE t2 SET b=54639 WHERE a=19675;\nUPDATE t2 SET b=8279 WHERE a=19676;\nUPDATE t2 SET b=44453 WHERE a=19677;\nUPDATE t2 SET b=64735 WHERE a=19678;\nUPDATE t2 SET b=31838 WHERE a=19679;\nUPDATE t2 SET b=7756 WHERE a=19680;\nUPDATE t2 SET b=60639 WHERE a=19681;\nUPDATE t2 SET b=26249 WHERE a=19682;\nUPDATE t2 SET b=83669 WHERE a=19683;\nUPDATE t2 SET b=68844 WHERE a=19684;\nUPDATE t2 SET b=89156 WHERE a=19685;\nUPDATE t2 SET b=88224 WHERE a=19686;\nUPDATE t2 SET b=71125 WHERE a=19687;\nUPDATE t2 SET b=43986 WHERE a=19688;\nUPDATE t2 SET b=45173 WHERE a=19689;\nUPDATE t2 SET b=34302 WHERE a=19690;\nUPDATE t2 SET b=43002 WHERE a=19691;\nUPDATE t2 SET b=86384 WHERE a=19692;\nUPDATE t2 SET b=55575 WHERE a=19693;\nUPDATE t2 SET b=35240 WHERE a=19694;\nUPDATE t2 SET b=84446 WHERE a=19695;\nUPDATE t2 SET b=16593 WHERE a=19696;\nUPDATE t2 SET b=31912 WHERE a=19697;\nUPDATE t2 SET b=72408 WHERE a=19698;\nUPDATE t2 SET b=19845 WHERE a=19699;\nUPDATE t2 SET b=82677 WHERE a=19700;\nUPDATE t2 SET b=79028 WHERE a=19701;\nUPDATE t2 SET b=75035 WHERE a=19702;\nUPDATE t2 SET b=6359 WHERE a=19703;\nUPDATE t2 SET b=65175 WHERE a=19704;\nUPDATE t2 SET b=59913 WHERE a=19705;\nUPDATE t2 SET b=37607 WHERE a=19706;\nUPDATE t2 SET b=41535 WHERE a=19707;\nUPDATE t2 SET b=70963 WHERE a=19708;\nUPDATE t2 SET b=92537 WHERE a=19709;\nUPDATE t2 SET b=17662 WHERE a=19710;\nUPDATE t2 SET b=39986 WHERE a=19711;\nUPDATE t2 SET b=34789 WHERE a=19712;\nUPDATE t2 SET b=38354 WHERE a=19713;\nUPDATE t2 SET b=7016 WHERE a=19714;\nUPDATE t2 SET b=52450 WHERE a=19715;\nUPDATE t2 SET b=11712 WHERE a=19716;\nUPDATE t2 SET b=27931 WHERE a=19717;\nUPDATE t2 SET b=71749 WHERE a=19718;\nUPDATE t2 SET b=32136 WHERE a=19719;\nUPDATE t2 SET b=90198 WHERE a=19720;\nUPDATE t2 SET b=29256 WHERE a=19721;\nUPDATE t2 SET b=2224 WHERE a=19722;\nUPDATE t2 SET b=80003 WHERE a=19723;\nUPDATE t2 SET b=6772 WHERE a=19724;\nUPDATE t2 SET b=25577 WHERE a=19725;\nUPDATE t2 SET b=7921 WHERE a=19726;\nUPDATE t2 SET b=20899 WHERE a=19727;\nUPDATE t2 SET b=67688 WHERE a=19728;\nUPDATE t2 SET b=77967 WHERE a=19729;\nUPDATE t2 SET b=47292 WHERE a=19730;\nUPDATE t2 SET b=21102 WHERE a=19731;\nUPDATE t2 SET b=92268 WHERE a=19732;\nUPDATE t2 SET b=51430 WHERE a=19733;\nUPDATE t2 SET b=75186 WHERE a=19734;\nUPDATE t2 SET b=49659 WHERE a=19735;\nUPDATE t2 SET b=37955 WHERE a=19736;\nUPDATE t2 SET b=3027 WHERE a=19737;\nUPDATE t2 SET b=82320 WHERE a=19738;\nUPDATE t2 SET b=53285 WHERE a=19739;\nUPDATE t2 SET b=33846 WHERE a=19740;\nUPDATE t2 SET b=50330 WHERE a=19741;\nUPDATE t2 SET b=85648 WHERE a=19742;\nUPDATE t2 SET b=16126 WHERE a=19743;\nUPDATE t2 SET b=11923 WHERE a=19744;\nUPDATE t2 SET b=66094 WHERE a=19745;\nUPDATE t2 SET b=64255 WHERE a=19746;\nUPDATE t2 SET b=73306 WHERE a=19747;\nUPDATE t2 SET b=39728 WHERE a=19748;\nUPDATE t2 SET b=91238 WHERE a=19749;\nUPDATE t2 SET b=14997 WHERE a=19750;\nUPDATE t2 SET b=96799 WHERE a=19751;\nUPDATE t2 SET b=59416 WHERE a=19752;\nUPDATE t2 SET b=98155 WHERE a=19753;\nUPDATE t2 SET b=47063 WHERE a=19754;\nUPDATE t2 SET b=2177 WHERE a=19755;\nUPDATE t2 SET b=78694 WHERE a=19756;\nUPDATE t2 SET b=8853 WHERE a=19757;\nUPDATE t2 SET b=19235 WHERE a=19758;\nUPDATE t2 SET b=21570 WHERE a=19759;\nUPDATE t2 SET b=63365 WHERE a=19760;\nUPDATE t2 SET b=48475 WHERE a=19761;\nUPDATE t2 SET b=31192 WHERE a=19762;\nUPDATE t2 SET b=7219 WHERE a=19763;\nUPDATE t2 SET b=78480 WHERE a=19764;\nUPDATE t2 SET b=34642 WHERE a=19765;\nUPDATE t2 SET b=49397 WHERE a=19766;\nUPDATE t2 SET b=51475 WHERE a=19767;\nUPDATE t2 SET b=63392 WHERE a=19768;\nUPDATE t2 SET b=41986 WHERE a=19769;\nUPDATE t2 SET b=28490 WHERE a=19770;\nUPDATE t2 SET b=8011 WHERE a=19771;\nUPDATE t2 SET b=10501 WHERE a=19772;\nUPDATE t2 SET b=12715 WHERE a=19773;\nUPDATE t2 SET b=93716 WHERE a=19774;\nUPDATE t2 SET b=10778 WHERE a=19775;\nUPDATE t2 SET b=76984 WHERE a=19776;\nUPDATE t2 SET b=24772 WHERE a=19777;\nUPDATE t2 SET b=52958 WHERE a=19778;\nUPDATE t2 SET b=58042 WHERE a=19779;\nUPDATE t2 SET b=35507 WHERE a=19780;\nUPDATE t2 SET b=25385 WHERE a=19781;\nUPDATE t2 SET b=72499 WHERE a=19782;\nUPDATE t2 SET b=40717 WHERE a=19783;\nUPDATE t2 SET b=39190 WHERE a=19784;\nUPDATE t2 SET b=62864 WHERE a=19785;\nUPDATE t2 SET b=66137 WHERE a=19786;\nUPDATE t2 SET b=86105 WHERE a=19787;\nUPDATE t2 SET b=49538 WHERE a=19788;\nUPDATE t2 SET b=91614 WHERE a=19789;\nUPDATE t2 SET b=25547 WHERE a=19790;\nUPDATE t2 SET b=84122 WHERE a=19791;\nUPDATE t2 SET b=83379 WHERE a=19792;\nUPDATE t2 SET b=91456 WHERE a=19793;\nUPDATE t2 SET b=8936 WHERE a=19794;\nUPDATE t2 SET b=6101 WHERE a=19795;\nUPDATE t2 SET b=77451 WHERE a=19796;\nUPDATE t2 SET b=261 WHERE a=19797;\nUPDATE t2 SET b=4907 WHERE a=19798;\nUPDATE t2 SET b=2721 WHERE a=19799;\nUPDATE t2 SET b=94367 WHERE a=19800;\nUPDATE t2 SET b=92970 WHERE a=19801;\nUPDATE t2 SET b=47261 WHERE a=19802;\nUPDATE t2 SET b=12089 WHERE a=19803;\nUPDATE t2 SET b=45365 WHERE a=19804;\nUPDATE t2 SET b=22659 WHERE a=19805;\nUPDATE t2 SET b=12756 WHERE a=19806;\nUPDATE t2 SET b=85973 WHERE a=19807;\nUPDATE t2 SET b=93183 WHERE a=19808;\nUPDATE t2 SET b=40854 WHERE a=19809;\nUPDATE t2 SET b=20740 WHERE a=19810;\nUPDATE t2 SET b=80238 WHERE a=19811;\nUPDATE t2 SET b=12739 WHERE a=19812;\nUPDATE t2 SET b=24513 WHERE a=19813;\nUPDATE t2 SET b=84977 WHERE a=19814;\nUPDATE t2 SET b=46795 WHERE a=19815;\nUPDATE t2 SET b=98450 WHERE a=19816;\nUPDATE t2 SET b=97814 WHERE a=19817;\nUPDATE t2 SET b=58294 WHERE a=19818;\nUPDATE t2 SET b=2755 WHERE a=19819;\nUPDATE t2 SET b=19587 WHERE a=19820;\nUPDATE t2 SET b=17338 WHERE a=19821;\nUPDATE t2 SET b=19852 WHERE a=19822;\nUPDATE t2 SET b=37279 WHERE a=19823;\nUPDATE t2 SET b=55386 WHERE a=19824;\nUPDATE t2 SET b=61175 WHERE a=19825;\nUPDATE t2 SET b=87526 WHERE a=19826;\nUPDATE t2 SET b=10984 WHERE a=19827;\nUPDATE t2 SET b=42743 WHERE a=19828;\nUPDATE t2 SET b=87599 WHERE a=19829;\nUPDATE t2 SET b=10055 WHERE a=19830;\nUPDATE t2 SET b=9168 WHERE a=19831;\nUPDATE t2 SET b=62073 WHERE a=19832;\nUPDATE t2 SET b=53498 WHERE a=19833;\nUPDATE t2 SET b=24425 WHERE a=19834;\nUPDATE t2 SET b=58855 WHERE a=19835;\nUPDATE t2 SET b=54078 WHERE a=19836;\nUPDATE t2 SET b=9431 WHERE a=19837;\nUPDATE t2 SET b=14008 WHERE a=19838;\nUPDATE t2 SET b=44608 WHERE a=19839;\nUPDATE t2 SET b=48469 WHERE a=19840;\nUPDATE t2 SET b=23008 WHERE a=19841;\nUPDATE t2 SET b=69109 WHERE a=19842;\nUPDATE t2 SET b=75732 WHERE a=19843;\nUPDATE t2 SET b=98425 WHERE a=19844;\nUPDATE t2 SET b=97744 WHERE a=19845;\nUPDATE t2 SET b=65718 WHERE a=19846;\nUPDATE t2 SET b=3693 WHERE a=19847;\nUPDATE t2 SET b=34384 WHERE a=19848;\nUPDATE t2 SET b=41486 WHERE a=19849;\nUPDATE t2 SET b=76177 WHERE a=19850;\nUPDATE t2 SET b=87303 WHERE a=19851;\nUPDATE t2 SET b=85459 WHERE a=19852;\nUPDATE t2 SET b=29033 WHERE a=19853;\nUPDATE t2 SET b=66628 WHERE a=19854;\nUPDATE t2 SET b=25135 WHERE a=19855;\nUPDATE t2 SET b=207 WHERE a=19856;\nUPDATE t2 SET b=27939 WHERE a=19857;\nUPDATE t2 SET b=372 WHERE a=19858;\nUPDATE t2 SET b=94966 WHERE a=19859;\nUPDATE t2 SET b=78718 WHERE a=19860;\nUPDATE t2 SET b=363 WHERE a=19861;\nUPDATE t2 SET b=1021 WHERE a=19862;\nUPDATE t2 SET b=79656 WHERE a=19863;\nUPDATE t2 SET b=79010 WHERE a=19864;\nUPDATE t2 SET b=96906 WHERE a=19865;\nUPDATE t2 SET b=83584 WHERE a=19866;\nUPDATE t2 SET b=50942 WHERE a=19867;\nUPDATE t2 SET b=77529 WHERE a=19868;\nUPDATE t2 SET b=995 WHERE a=19869;\nUPDATE t2 SET b=45833 WHERE a=19870;\nUPDATE t2 SET b=78180 WHERE a=19871;\nUPDATE t2 SET b=30088 WHERE a=19872;\nUPDATE t2 SET b=49030 WHERE a=19873;\nUPDATE t2 SET b=21953 WHERE a=19874;\nUPDATE t2 SET b=98653 WHERE a=19875;\nUPDATE t2 SET b=87344 WHERE a=19876;\nUPDATE t2 SET b=92851 WHERE a=19877;\nUPDATE t2 SET b=61683 WHERE a=19878;\nUPDATE t2 SET b=42356 WHERE a=19879;\nUPDATE t2 SET b=96902 WHERE a=19880;\nUPDATE t2 SET b=5930 WHERE a=19881;\nUPDATE t2 SET b=62758 WHERE a=19882;\nUPDATE t2 SET b=8533 WHERE a=19883;\nUPDATE t2 SET b=95679 WHERE a=19884;\nUPDATE t2 SET b=40451 WHERE a=19885;\nUPDATE t2 SET b=60466 WHERE a=19886;\nUPDATE t2 SET b=41758 WHERE a=19887;\nUPDATE t2 SET b=48733 WHERE a=19888;\nUPDATE t2 SET b=53471 WHERE a=19889;\nUPDATE t2 SET b=10868 WHERE a=19890;\nUPDATE t2 SET b=25937 WHERE a=19891;\nUPDATE t2 SET b=93696 WHERE a=19892;\nUPDATE t2 SET b=13753 WHERE a=19893;\nUPDATE t2 SET b=43654 WHERE a=19894;\nUPDATE t2 SET b=12954 WHERE a=19895;\nUPDATE t2 SET b=65960 WHERE a=19896;\nUPDATE t2 SET b=54507 WHERE a=19897;\nUPDATE t2 SET b=47254 WHERE a=19898;\nUPDATE t2 SET b=68936 WHERE a=19899;\nUPDATE t2 SET b=63298 WHERE a=19900;\nUPDATE t2 SET b=16322 WHERE a=19901;\nUPDATE t2 SET b=31703 WHERE a=19902;\nUPDATE t2 SET b=18721 WHERE a=19903;\nUPDATE t2 SET b=59338 WHERE a=19904;\nUPDATE t2 SET b=2296 WHERE a=19905;\nUPDATE t2 SET b=39867 WHERE a=19906;\nUPDATE t2 SET b=36683 WHERE a=19907;\nUPDATE t2 SET b=43171 WHERE a=19908;\nUPDATE t2 SET b=2332 WHERE a=19909;\nUPDATE t2 SET b=56713 WHERE a=19910;\nUPDATE t2 SET b=15803 WHERE a=19911;\nUPDATE t2 SET b=24057 WHERE a=19912;\nUPDATE t2 SET b=73726 WHERE a=19913;\nUPDATE t2 SET b=90556 WHERE a=19914;\nUPDATE t2 SET b=69272 WHERE a=19915;\nUPDATE t2 SET b=69937 WHERE a=19916;\nUPDATE t2 SET b=11877 WHERE a=19917;\nUPDATE t2 SET b=19219 WHERE a=19918;\nUPDATE t2 SET b=32867 WHERE a=19919;\nUPDATE t2 SET b=51119 WHERE a=19920;\nUPDATE t2 SET b=48783 WHERE a=19921;\nUPDATE t2 SET b=32755 WHERE a=19922;\nUPDATE t2 SET b=1111 WHERE a=19923;\nUPDATE t2 SET b=4583 WHERE a=19924;\nUPDATE t2 SET b=27153 WHERE a=19925;\nUPDATE t2 SET b=98153 WHERE a=19926;\nUPDATE t2 SET b=44837 WHERE a=19927;\nUPDATE t2 SET b=74950 WHERE a=19928;\nUPDATE t2 SET b=25891 WHERE a=19929;\nUPDATE t2 SET b=32762 WHERE a=19930;\nUPDATE t2 SET b=98327 WHERE a=19931;\nUPDATE t2 SET b=50465 WHERE a=19932;\nUPDATE t2 SET b=85916 WHERE a=19933;\nUPDATE t2 SET b=58419 WHERE a=19934;\nUPDATE t2 SET b=82838 WHERE a=19935;\nUPDATE t2 SET b=16965 WHERE a=19936;\nUPDATE t2 SET b=63981 WHERE a=19937;\nUPDATE t2 SET b=58687 WHERE a=19938;\nUPDATE t2 SET b=81401 WHERE a=19939;\nUPDATE t2 SET b=11194 WHERE a=19940;\nUPDATE t2 SET b=64063 WHERE a=19941;\nUPDATE t2 SET b=96953 WHERE a=19942;\nUPDATE t2 SET b=1407 WHERE a=19943;\nUPDATE t2 SET b=52760 WHERE a=19944;\nUPDATE t2 SET b=95487 WHERE a=19945;\nUPDATE t2 SET b=33598 WHERE a=19946;\nUPDATE t2 SET b=61758 WHERE a=19947;\nUPDATE t2 SET b=53723 WHERE a=19948;\nUPDATE t2 SET b=57496 WHERE a=19949;\nUPDATE t2 SET b=82442 WHERE a=19950;\nUPDATE t2 SET b=14350 WHERE a=19951;\nUPDATE t2 SET b=52545 WHERE a=19952;\nUPDATE t2 SET b=36471 WHERE a=19953;\nUPDATE t2 SET b=68112 WHERE a=19954;\nUPDATE t2 SET b=97999 WHERE a=19955;\nUPDATE t2 SET b=30631 WHERE a=19956;\nUPDATE t2 SET b=96744 WHERE a=19957;\nUPDATE t2 SET b=28255 WHERE a=19958;\nUPDATE t2 SET b=62764 WHERE a=19959;\nUPDATE t2 SET b=43197 WHERE a=19960;\nUPDATE t2 SET b=21098 WHERE a=19961;\nUPDATE t2 SET b=45107 WHERE a=19962;\nUPDATE t2 SET b=68513 WHERE a=19963;\nUPDATE t2 SET b=22109 WHERE a=19964;\nUPDATE t2 SET b=96570 WHERE a=19965;\nUPDATE t2 SET b=78312 WHERE a=19966;\nUPDATE t2 SET b=18438 WHERE a=19967;\nUPDATE t2 SET b=20138 WHERE a=19968;\nUPDATE t2 SET b=16905 WHERE a=19969;\nUPDATE t2 SET b=65463 WHERE a=19970;\nUPDATE t2 SET b=26144 WHERE a=19971;\nUPDATE t2 SET b=90509 WHERE a=19972;\nUPDATE t2 SET b=10246 WHERE a=19973;\nUPDATE t2 SET b=10420 WHERE a=19974;\nUPDATE t2 SET b=24678 WHERE a=19975;\nUPDATE t2 SET b=9750 WHERE a=19976;\nUPDATE t2 SET b=64580 WHERE a=19977;\nUPDATE t2 SET b=32021 WHERE a=19978;\nUPDATE t2 SET b=94411 WHERE a=19979;\nUPDATE t2 SET b=82804 WHERE a=19980;\nUPDATE t2 SET b=96099 WHERE a=19981;\nUPDATE t2 SET b=27619 WHERE a=19982;\nUPDATE t2 SET b=42387 WHERE a=19983;\nUPDATE t2 SET b=30347 WHERE a=19984;\nUPDATE t2 SET b=60280 WHERE a=19985;\nUPDATE t2 SET b=10151 WHERE a=19986;\nUPDATE t2 SET b=54470 WHERE a=19987;\nUPDATE t2 SET b=54795 WHERE a=19988;\nUPDATE t2 SET b=74475 WHERE a=19989;\nUPDATE t2 SET b=14939 WHERE a=19990;\nUPDATE t2 SET b=42649 WHERE a=19991;\nUPDATE t2 SET b=98811 WHERE a=19992;\nUPDATE t2 SET b=16653 WHERE a=19993;\nUPDATE t2 SET b=46623 WHERE a=19994;\nUPDATE t2 SET b=37213 WHERE a=19995;\nUPDATE t2 SET b=60649 WHERE a=19996;\nUPDATE t2 SET b=47643 WHERE a=19997;\nUPDATE t2 SET b=44118 WHERE a=19998;\nUPDATE t2 SET b=58313 WHERE a=19999;\nUPDATE t2 SET b=73569 WHERE a=20000;\nUPDATE t2 SET b=65872 WHERE a=20001;\nUPDATE t2 SET b=33913 WHERE a=20002;\nUPDATE t2 SET b=56093 WHERE a=20003;\nUPDATE t2 SET b=23235 WHERE a=20004;\nUPDATE t2 SET b=97868 WHERE a=20005;\nUPDATE t2 SET b=85790 WHERE a=20006;\nUPDATE t2 SET b=16283 WHERE a=20007;\nUPDATE t2 SET b=53123 WHERE a=20008;\nUPDATE t2 SET b=85477 WHERE a=20009;\nUPDATE t2 SET b=9707 WHERE a=20010;\nUPDATE t2 SET b=53738 WHERE a=20011;\nUPDATE t2 SET b=18886 WHERE a=20012;\nUPDATE t2 SET b=37246 WHERE a=20013;\nUPDATE t2 SET b=95006 WHERE a=20014;\nUPDATE t2 SET b=81843 WHERE a=20015;\nUPDATE t2 SET b=66062 WHERE a=20016;\nUPDATE t2 SET b=29884 WHERE a=20017;\nUPDATE t2 SET b=29410 WHERE a=20018;\nUPDATE t2 SET b=30278 WHERE a=20019;\nUPDATE t2 SET b=45999 WHERE a=20020;\nUPDATE t2 SET b=56649 WHERE a=20021;\nUPDATE t2 SET b=64098 WHERE a=20022;\nUPDATE t2 SET b=8476 WHERE a=20023;\nUPDATE t2 SET b=14824 WHERE a=20024;\nUPDATE t2 SET b=60124 WHERE a=20025;\nUPDATE t2 SET b=53742 WHERE a=20026;\nUPDATE t2 SET b=3421 WHERE a=20027;\nUPDATE t2 SET b=39755 WHERE a=20028;\nUPDATE t2 SET b=22157 WHERE a=20029;\nUPDATE t2 SET b=24364 WHERE a=20030;\nUPDATE t2 SET b=21598 WHERE a=20031;\nUPDATE t2 SET b=12526 WHERE a=20032;\nUPDATE t2 SET b=39693 WHERE a=20033;\nUPDATE t2 SET b=68184 WHERE a=20034;\nUPDATE t2 SET b=22952 WHERE a=20035;\nUPDATE t2 SET b=18097 WHERE a=20036;\nUPDATE t2 SET b=86157 WHERE a=20037;\nUPDATE t2 SET b=35926 WHERE a=20038;\nUPDATE t2 SET b=20261 WHERE a=20039;\nUPDATE t2 SET b=79200 WHERE a=20040;\nUPDATE t2 SET b=29979 WHERE a=20041;\nUPDATE t2 SET b=81336 WHERE a=20042;\nUPDATE t2 SET b=90203 WHERE a=20043;\nUPDATE t2 SET b=53856 WHERE a=20044;\nUPDATE t2 SET b=99085 WHERE a=20045;\nUPDATE t2 SET b=87710 WHERE a=20046;\nUPDATE t2 SET b=86246 WHERE a=20047;\nUPDATE t2 SET b=96508 WHERE a=20048;\nUPDATE t2 SET b=45098 WHERE a=20049;\nUPDATE t2 SET b=65898 WHERE a=20050;\nUPDATE t2 SET b=3489 WHERE a=20051;\nUPDATE t2 SET b=61281 WHERE a=20052;\nUPDATE t2 SET b=16926 WHERE a=20053;\nUPDATE t2 SET b=81092 WHERE a=20054;\nUPDATE t2 SET b=18842 WHERE a=20055;\nUPDATE t2 SET b=11435 WHERE a=20056;\nUPDATE t2 SET b=26431 WHERE a=20057;\nUPDATE t2 SET b=22261 WHERE a=20058;\nUPDATE t2 SET b=7438 WHERE a=20059;\nUPDATE t2 SET b=92497 WHERE a=20060;\nUPDATE t2 SET b=38529 WHERE a=20061;\nUPDATE t2 SET b=12638 WHERE a=20062;\nUPDATE t2 SET b=69938 WHERE a=20063;\nUPDATE t2 SET b=74914 WHERE a=20064;\nUPDATE t2 SET b=19038 WHERE a=20065;\nUPDATE t2 SET b=50632 WHERE a=20066;\nUPDATE t2 SET b=5150 WHERE a=20067;\nUPDATE t2 SET b=6392 WHERE a=20068;\nUPDATE t2 SET b=43958 WHERE a=20069;\nUPDATE t2 SET b=28779 WHERE a=20070;\nUPDATE t2 SET b=37396 WHERE a=20071;\nUPDATE t2 SET b=91352 WHERE a=20072;\nUPDATE t2 SET b=60381 WHERE a=20073;\nUPDATE t2 SET b=1575 WHERE a=20074;\nUPDATE t2 SET b=15516 WHERE a=20075;\nUPDATE t2 SET b=82760 WHERE a=20076;\nUPDATE t2 SET b=16085 WHERE a=20077;\nUPDATE t2 SET b=6582 WHERE a=20078;\nUPDATE t2 SET b=22312 WHERE a=20079;\nUPDATE t2 SET b=93702 WHERE a=20080;\nUPDATE t2 SET b=33711 WHERE a=20081;\nUPDATE t2 SET b=49354 WHERE a=20082;\nUPDATE t2 SET b=22426 WHERE a=20083;\nUPDATE t2 SET b=17579 WHERE a=20084;\nUPDATE t2 SET b=55177 WHERE a=20085;\nUPDATE t2 SET b=90192 WHERE a=20086;\nUPDATE t2 SET b=53560 WHERE a=20087;\nUPDATE t2 SET b=10311 WHERE a=20088;\nUPDATE t2 SET b=44961 WHERE a=20089;\nUPDATE t2 SET b=16894 WHERE a=20090;\nUPDATE t2 SET b=63375 WHERE a=20091;\nUPDATE t2 SET b=58402 WHERE a=20092;\nUPDATE t2 SET b=79232 WHERE a=20093;\nUPDATE t2 SET b=64777 WHERE a=20094;\nUPDATE t2 SET b=7570 WHERE a=20095;\nUPDATE t2 SET b=21453 WHERE a=20096;\nUPDATE t2 SET b=77519 WHERE a=20097;\nUPDATE t2 SET b=41568 WHERE a=20098;\nUPDATE t2 SET b=95137 WHERE a=20099;\nUPDATE t2 SET b=79795 WHERE a=20100;\nUPDATE t2 SET b=98214 WHERE a=20101;\nUPDATE t2 SET b=69626 WHERE a=20102;\nUPDATE t2 SET b=62146 WHERE a=20103;\nUPDATE t2 SET b=75178 WHERE a=20104;\nUPDATE t2 SET b=4257 WHERE a=20105;\nUPDATE t2 SET b=95356 WHERE a=20106;\nUPDATE t2 SET b=93138 WHERE a=20107;\nUPDATE t2 SET b=30998 WHERE a=20108;\nUPDATE t2 SET b=41415 WHERE a=20109;\nUPDATE t2 SET b=96492 WHERE a=20110;\nUPDATE t2 SET b=87231 WHERE a=20111;\nUPDATE t2 SET b=67359 WHERE a=20112;\nUPDATE t2 SET b=20816 WHERE a=20113;\nUPDATE t2 SET b=16634 WHERE a=20114;\nUPDATE t2 SET b=68864 WHERE a=20115;\nUPDATE t2 SET b=24279 WHERE a=20116;\nUPDATE t2 SET b=39864 WHERE a=20117;\nUPDATE t2 SET b=23467 WHERE a=20118;\nUPDATE t2 SET b=18937 WHERE a=20119;\nUPDATE t2 SET b=7419 WHERE a=20120;\nUPDATE t2 SET b=99290 WHERE a=20121;\nUPDATE t2 SET b=19004 WHERE a=20122;\nUPDATE t2 SET b=90179 WHERE a=20123;\nUPDATE t2 SET b=93036 WHERE a=20124;\nUPDATE t2 SET b=313 WHERE a=20125;\nUPDATE t2 SET b=8311 WHERE a=20126;\nUPDATE t2 SET b=9489 WHERE a=20127;\nUPDATE t2 SET b=69771 WHERE a=20128;\nUPDATE t2 SET b=15073 WHERE a=20129;\nUPDATE t2 SET b=98823 WHERE a=20130;\nUPDATE t2 SET b=24748 WHERE a=20131;\nUPDATE t2 SET b=58662 WHERE a=20132;\nUPDATE t2 SET b=3581 WHERE a=20133;\nUPDATE t2 SET b=82652 WHERE a=20134;\nUPDATE t2 SET b=97985 WHERE a=20135;\nUPDATE t2 SET b=95905 WHERE a=20136;\nUPDATE t2 SET b=94051 WHERE a=20137;\nUPDATE t2 SET b=77816 WHERE a=20138;\nUPDATE t2 SET b=19625 WHERE a=20139;\nUPDATE t2 SET b=7416 WHERE a=20140;\nUPDATE t2 SET b=56740 WHERE a=20141;\nUPDATE t2 SET b=9012 WHERE a=20142;\nUPDATE t2 SET b=81319 WHERE a=20143;\nUPDATE t2 SET b=6087 WHERE a=20144;\nUPDATE t2 SET b=12587 WHERE a=20145;\nUPDATE t2 SET b=33250 WHERE a=20146;\nUPDATE t2 SET b=56243 WHERE a=20147;\nUPDATE t2 SET b=486 WHERE a=20148;\nUPDATE t2 SET b=58227 WHERE a=20149;\nUPDATE t2 SET b=67943 WHERE a=20150;\nUPDATE t2 SET b=12418 WHERE a=20151;\nUPDATE t2 SET b=46802 WHERE a=20152;\nUPDATE t2 SET b=90646 WHERE a=20153;\nUPDATE t2 SET b=5864 WHERE a=20154;\nUPDATE t2 SET b=53391 WHERE a=20155;\nUPDATE t2 SET b=79738 WHERE a=20156;\nUPDATE t2 SET b=9667 WHERE a=20157;\nUPDATE t2 SET b=51184 WHERE a=20158;\nUPDATE t2 SET b=41671 WHERE a=20159;\nUPDATE t2 SET b=21470 WHERE a=20160;\nUPDATE t2 SET b=43914 WHERE a=20161;\nUPDATE t2 SET b=84726 WHERE a=20162;\nUPDATE t2 SET b=29175 WHERE a=20163;\nUPDATE t2 SET b=31233 WHERE a=20164;\nUPDATE t2 SET b=92745 WHERE a=20165;\nUPDATE t2 SET b=26724 WHERE a=20166;\nUPDATE t2 SET b=13921 WHERE a=20167;\nUPDATE t2 SET b=52824 WHERE a=20168;\nUPDATE t2 SET b=50372 WHERE a=20169;\nUPDATE t2 SET b=26973 WHERE a=20170;\nUPDATE t2 SET b=67274 WHERE a=20171;\nUPDATE t2 SET b=53078 WHERE a=20172;\nUPDATE t2 SET b=26016 WHERE a=20173;\nUPDATE t2 SET b=23885 WHERE a=20174;\nUPDATE t2 SET b=91581 WHERE a=20175;\nUPDATE t2 SET b=37658 WHERE a=20176;\nUPDATE t2 SET b=64210 WHERE a=20177;\nUPDATE t2 SET b=38051 WHERE a=20178;\nUPDATE t2 SET b=31580 WHERE a=20179;\nUPDATE t2 SET b=10017 WHERE a=20180;\nUPDATE t2 SET b=13191 WHERE a=20181;\nUPDATE t2 SET b=10398 WHERE a=20182;\nUPDATE t2 SET b=41581 WHERE a=20183;\nUPDATE t2 SET b=16438 WHERE a=20184;\nUPDATE t2 SET b=56769 WHERE a=20185;\nUPDATE t2 SET b=97795 WHERE a=20186;\nUPDATE t2 SET b=17884 WHERE a=20187;\nUPDATE t2 SET b=1951 WHERE a=20188;\nUPDATE t2 SET b=84676 WHERE a=20189;\nUPDATE t2 SET b=39839 WHERE a=20190;\nUPDATE t2 SET b=67309 WHERE a=20191;\nUPDATE t2 SET b=20272 WHERE a=20192;\nUPDATE t2 SET b=12282 WHERE a=20193;\nUPDATE t2 SET b=97460 WHERE a=20194;\nUPDATE t2 SET b=32557 WHERE a=20195;\nUPDATE t2 SET b=8746 WHERE a=20196;\nUPDATE t2 SET b=70091 WHERE a=20197;\nUPDATE t2 SET b=50849 WHERE a=20198;\nUPDATE t2 SET b=10387 WHERE a=20199;\nUPDATE t2 SET b=17461 WHERE a=20200;\nUPDATE t2 SET b=92965 WHERE a=20201;\nUPDATE t2 SET b=44169 WHERE a=20202;\nUPDATE t2 SET b=67779 WHERE a=20203;\nUPDATE t2 SET b=97591 WHERE a=20204;\nUPDATE t2 SET b=45613 WHERE a=20205;\nUPDATE t2 SET b=69621 WHERE a=20206;\nUPDATE t2 SET b=59706 WHERE a=20207;\nUPDATE t2 SET b=42425 WHERE a=20208;\nUPDATE t2 SET b=376 WHERE a=20209;\nUPDATE t2 SET b=40069 WHERE a=20210;\nUPDATE t2 SET b=54995 WHERE a=20211;\nUPDATE t2 SET b=13137 WHERE a=20212;\nUPDATE t2 SET b=86579 WHERE a=20213;\nUPDATE t2 SET b=47171 WHERE a=20214;\nUPDATE t2 SET b=55797 WHERE a=20215;\nUPDATE t2 SET b=86490 WHERE a=20216;\nUPDATE t2 SET b=56993 WHERE a=20217;\nUPDATE t2 SET b=34860 WHERE a=20218;\nUPDATE t2 SET b=34479 WHERE a=20219;\nUPDATE t2 SET b=86400 WHERE a=20220;\nUPDATE t2 SET b=43561 WHERE a=20221;\nUPDATE t2 SET b=73066 WHERE a=20222;\nUPDATE t2 SET b=32662 WHERE a=20223;\nUPDATE t2 SET b=56045 WHERE a=20224;\nUPDATE t2 SET b=59010 WHERE a=20225;\nUPDATE t2 SET b=39616 WHERE a=20226;\nUPDATE t2 SET b=44788 WHERE a=20227;\nUPDATE t2 SET b=5728 WHERE a=20228;\nUPDATE t2 SET b=14026 WHERE a=20229;\nUPDATE t2 SET b=44455 WHERE a=20230;\nUPDATE t2 SET b=50423 WHERE a=20231;\nUPDATE t2 SET b=75088 WHERE a=20232;\nUPDATE t2 SET b=88849 WHERE a=20233;\nUPDATE t2 SET b=14145 WHERE a=20234;\nUPDATE t2 SET b=42209 WHERE a=20235;\nUPDATE t2 SET b=59840 WHERE a=20236;\nUPDATE t2 SET b=87723 WHERE a=20237;\nUPDATE t2 SET b=47980 WHERE a=20238;\nUPDATE t2 SET b=22714 WHERE a=20239;\nUPDATE t2 SET b=75250 WHERE a=20240;\nUPDATE t2 SET b=78763 WHERE a=20241;\nUPDATE t2 SET b=78779 WHERE a=20242;\nUPDATE t2 SET b=37542 WHERE a=20243;\nUPDATE t2 SET b=76111 WHERE a=20244;\nUPDATE t2 SET b=72688 WHERE a=20245;\nUPDATE t2 SET b=21053 WHERE a=20246;\nUPDATE t2 SET b=47162 WHERE a=20247;\nUPDATE t2 SET b=98987 WHERE a=20248;\nUPDATE t2 SET b=77722 WHERE a=20249;\nUPDATE t2 SET b=44159 WHERE a=20250;\nUPDATE t2 SET b=75722 WHERE a=20251;\nUPDATE t2 SET b=95609 WHERE a=20252;\nUPDATE t2 SET b=95174 WHERE a=20253;\nUPDATE t2 SET b=27210 WHERE a=20254;\nUPDATE t2 SET b=12178 WHERE a=20255;\nUPDATE t2 SET b=96513 WHERE a=20256;\nUPDATE t2 SET b=83746 WHERE a=20257;\nUPDATE t2 SET b=91384 WHERE a=20258;\nUPDATE t2 SET b=10070 WHERE a=20259;\nUPDATE t2 SET b=62346 WHERE a=20260;\nUPDATE t2 SET b=54748 WHERE a=20261;\nUPDATE t2 SET b=85490 WHERE a=20262;\nUPDATE t2 SET b=27068 WHERE a=20263;\nUPDATE t2 SET b=44025 WHERE a=20264;\nUPDATE t2 SET b=95268 WHERE a=20265;\nUPDATE t2 SET b=86398 WHERE a=20266;\nUPDATE t2 SET b=87091 WHERE a=20267;\nUPDATE t2 SET b=15598 WHERE a=20268;\nUPDATE t2 SET b=70166 WHERE a=20269;\nUPDATE t2 SET b=48330 WHERE a=20270;\nUPDATE t2 SET b=85587 WHERE a=20271;\nUPDATE t2 SET b=54050 WHERE a=20272;\nUPDATE t2 SET b=45675 WHERE a=20273;\nUPDATE t2 SET b=17916 WHERE a=20274;\nUPDATE t2 SET b=14080 WHERE a=20275;\nUPDATE t2 SET b=19486 WHERE a=20276;\nUPDATE t2 SET b=94107 WHERE a=20277;\nUPDATE t2 SET b=91574 WHERE a=20278;\nUPDATE t2 SET b=97512 WHERE a=20279;\nUPDATE t2 SET b=57746 WHERE a=20280;\nUPDATE t2 SET b=77502 WHERE a=20281;\nUPDATE t2 SET b=84790 WHERE a=20282;\nUPDATE t2 SET b=63424 WHERE a=20283;\nUPDATE t2 SET b=73650 WHERE a=20284;\nUPDATE t2 SET b=41273 WHERE a=20285;\nUPDATE t2 SET b=40145 WHERE a=20286;\nUPDATE t2 SET b=41676 WHERE a=20287;\nUPDATE t2 SET b=66854 WHERE a=20288;\nUPDATE t2 SET b=77278 WHERE a=20289;\nUPDATE t2 SET b=50116 WHERE a=20290;\nUPDATE t2 SET b=17231 WHERE a=20291;\nUPDATE t2 SET b=79293 WHERE a=20292;\nUPDATE t2 SET b=40629 WHERE a=20293;\nUPDATE t2 SET b=76971 WHERE a=20294;\nUPDATE t2 SET b=80154 WHERE a=20295;\nUPDATE t2 SET b=97876 WHERE a=20296;\nUPDATE t2 SET b=30831 WHERE a=20297;\nUPDATE t2 SET b=19511 WHERE a=20298;\nUPDATE t2 SET b=59354 WHERE a=20299;\nUPDATE t2 SET b=69674 WHERE a=20300;\nUPDATE t2 SET b=63110 WHERE a=20301;\nUPDATE t2 SET b=63840 WHERE a=20302;\nUPDATE t2 SET b=58906 WHERE a=20303;\nUPDATE t2 SET b=17076 WHERE a=20304;\nUPDATE t2 SET b=30862 WHERE a=20305;\nUPDATE t2 SET b=3033 WHERE a=20306;\nUPDATE t2 SET b=7203 WHERE a=20307;\nUPDATE t2 SET b=65846 WHERE a=20308;\nUPDATE t2 SET b=44276 WHERE a=20309;\nUPDATE t2 SET b=90745 WHERE a=20310;\nUPDATE t2 SET b=55821 WHERE a=20311;\nUPDATE t2 SET b=24823 WHERE a=20312;\nUPDATE t2 SET b=30303 WHERE a=20313;\nUPDATE t2 SET b=65592 WHERE a=20314;\nUPDATE t2 SET b=29954 WHERE a=20315;\nUPDATE t2 SET b=89419 WHERE a=20316;\nUPDATE t2 SET b=10291 WHERE a=20317;\nUPDATE t2 SET b=73902 WHERE a=20318;\nUPDATE t2 SET b=84557 WHERE a=20319;\nUPDATE t2 SET b=82695 WHERE a=20320;\nUPDATE t2 SET b=48919 WHERE a=20321;\nUPDATE t2 SET b=21960 WHERE a=20322;\nUPDATE t2 SET b=19382 WHERE a=20323;\nUPDATE t2 SET b=89409 WHERE a=20324;\nUPDATE t2 SET b=77892 WHERE a=20325;\nUPDATE t2 SET b=29602 WHERE a=20326;\nUPDATE t2 SET b=54568 WHERE a=20327;\nUPDATE t2 SET b=99791 WHERE a=20328;\nUPDATE t2 SET b=68342 WHERE a=20329;\nUPDATE t2 SET b=82841 WHERE a=20330;\nUPDATE t2 SET b=27397 WHERE a=20331;\nUPDATE t2 SET b=63158 WHERE a=20332;\nUPDATE t2 SET b=34381 WHERE a=20333;\nUPDATE t2 SET b=19832 WHERE a=20334;\nUPDATE t2 SET b=5694 WHERE a=20335;\nUPDATE t2 SET b=35610 WHERE a=20336;\nUPDATE t2 SET b=45520 WHERE a=20337;\nUPDATE t2 SET b=48931 WHERE a=20338;\nUPDATE t2 SET b=35534 WHERE a=20339;\nUPDATE t2 SET b=65155 WHERE a=20340;\nUPDATE t2 SET b=63355 WHERE a=20341;\nUPDATE t2 SET b=30956 WHERE a=20342;\nUPDATE t2 SET b=6081 WHERE a=20343;\nUPDATE t2 SET b=82083 WHERE a=20344;\nUPDATE t2 SET b=31911 WHERE a=20345;\nUPDATE t2 SET b=21141 WHERE a=20346;\nUPDATE t2 SET b=58150 WHERE a=20347;\nUPDATE t2 SET b=87505 WHERE a=20348;\nUPDATE t2 SET b=90599 WHERE a=20349;\nUPDATE t2 SET b=77049 WHERE a=20350;\nUPDATE t2 SET b=28350 WHERE a=20351;\nUPDATE t2 SET b=26432 WHERE a=20352;\nUPDATE t2 SET b=2342 WHERE a=20353;\nUPDATE t2 SET b=5906 WHERE a=20354;\nUPDATE t2 SET b=89475 WHERE a=20355;\nUPDATE t2 SET b=3052 WHERE a=20356;\nUPDATE t2 SET b=33883 WHERE a=20357;\nUPDATE t2 SET b=12309 WHERE a=20358;\nUPDATE t2 SET b=1351 WHERE a=20359;\nUPDATE t2 SET b=42651 WHERE a=20360;\nUPDATE t2 SET b=46764 WHERE a=20361;\nUPDATE t2 SET b=31328 WHERE a=20362;\nUPDATE t2 SET b=22694 WHERE a=20363;\nUPDATE t2 SET b=27442 WHERE a=20364;\nUPDATE t2 SET b=84495 WHERE a=20365;\nUPDATE t2 SET b=73180 WHERE a=20366;\nUPDATE t2 SET b=74435 WHERE a=20367;\nUPDATE t2 SET b=42397 WHERE a=20368;\nUPDATE t2 SET b=36596 WHERE a=20369;\nUPDATE t2 SET b=14409 WHERE a=20370;\nUPDATE t2 SET b=71130 WHERE a=20371;\nUPDATE t2 SET b=1683 WHERE a=20372;\nUPDATE t2 SET b=43 WHERE a=20373;\nUPDATE t2 SET b=98092 WHERE a=20374;\nUPDATE t2 SET b=43067 WHERE a=20375;\nUPDATE t2 SET b=25089 WHERE a=20376;\nUPDATE t2 SET b=94767 WHERE a=20377;\nUPDATE t2 SET b=55517 WHERE a=20378;\nUPDATE t2 SET b=34349 WHERE a=20379;\nUPDATE t2 SET b=13435 WHERE a=20380;\nUPDATE t2 SET b=34107 WHERE a=20381;\nUPDATE t2 SET b=19981 WHERE a=20382;\nUPDATE t2 SET b=91355 WHERE a=20383;\nUPDATE t2 SET b=6880 WHERE a=20384;\nUPDATE t2 SET b=52265 WHERE a=20385;\nUPDATE t2 SET b=18561 WHERE a=20386;\nUPDATE t2 SET b=31226 WHERE a=20387;\nUPDATE t2 SET b=39022 WHERE a=20388;\nUPDATE t2 SET b=27601 WHERE a=20389;\nUPDATE t2 SET b=48344 WHERE a=20390;\nUPDATE t2 SET b=5273 WHERE a=20391;\nUPDATE t2 SET b=18181 WHERE a=20392;\nUPDATE t2 SET b=66534 WHERE a=20393;\nUPDATE t2 SET b=41126 WHERE a=20394;\nUPDATE t2 SET b=47316 WHERE a=20395;\nUPDATE t2 SET b=11791 WHERE a=20396;\nUPDATE t2 SET b=54655 WHERE a=20397;\nUPDATE t2 SET b=42647 WHERE a=20398;\nUPDATE t2 SET b=36615 WHERE a=20399;\nUPDATE t2 SET b=97837 WHERE a=20400;\nUPDATE t2 SET b=4112 WHERE a=20401;\nUPDATE t2 SET b=41484 WHERE a=20402;\nUPDATE t2 SET b=85295 WHERE a=20403;\nUPDATE t2 SET b=43513 WHERE a=20404;\nUPDATE t2 SET b=87516 WHERE a=20405;\nUPDATE t2 SET b=45314 WHERE a=20406;\nUPDATE t2 SET b=10297 WHERE a=20407;\nUPDATE t2 SET b=13930 WHERE a=20408;\nUPDATE t2 SET b=15982 WHERE a=20409;\nUPDATE t2 SET b=38271 WHERE a=20410;\nUPDATE t2 SET b=50819 WHERE a=20411;\nUPDATE t2 SET b=37331 WHERE a=20412;\nUPDATE t2 SET b=32142 WHERE a=20413;\nUPDATE t2 SET b=87152 WHERE a=20414;\nUPDATE t2 SET b=44155 WHERE a=20415;\nUPDATE t2 SET b=85278 WHERE a=20416;\nUPDATE t2 SET b=79919 WHERE a=20417;\nUPDATE t2 SET b=54585 WHERE a=20418;\nUPDATE t2 SET b=30000 WHERE a=20419;\nUPDATE t2 SET b=81288 WHERE a=20420;\nUPDATE t2 SET b=84274 WHERE a=20421;\nUPDATE t2 SET b=52445 WHERE a=20422;\nUPDATE t2 SET b=80109 WHERE a=20423;\nUPDATE t2 SET b=71261 WHERE a=20424;\nUPDATE t2 SET b=43114 WHERE a=20425;\nUPDATE t2 SET b=44244 WHERE a=20426;\nUPDATE t2 SET b=86813 WHERE a=20427;\nUPDATE t2 SET b=28379 WHERE a=20428;\nUPDATE t2 SET b=64385 WHERE a=20429;\nUPDATE t2 SET b=98793 WHERE a=20430;\nUPDATE t2 SET b=91148 WHERE a=20431;\nUPDATE t2 SET b=42913 WHERE a=20432;\nUPDATE t2 SET b=75432 WHERE a=20433;\nUPDATE t2 SET b=14094 WHERE a=20434;\nUPDATE t2 SET b=43823 WHERE a=20435;\nUPDATE t2 SET b=81540 WHERE a=20436;\nUPDATE t2 SET b=33653 WHERE a=20437;\nUPDATE t2 SET b=29841 WHERE a=20438;\nUPDATE t2 SET b=64166 WHERE a=20439;\nUPDATE t2 SET b=80453 WHERE a=20440;\nUPDATE t2 SET b=28367 WHERE a=20441;\nUPDATE t2 SET b=21 WHERE a=20442;\nUPDATE t2 SET b=10526 WHERE a=20443;\nUPDATE t2 SET b=38704 WHERE a=20444;\nUPDATE t2 SET b=65139 WHERE a=20445;\nUPDATE t2 SET b=67707 WHERE a=20446;\nUPDATE t2 SET b=172 WHERE a=20447;\nUPDATE t2 SET b=47493 WHERE a=20448;\nUPDATE t2 SET b=28396 WHERE a=20449;\nUPDATE t2 SET b=30727 WHERE a=20450;\nUPDATE t2 SET b=91501 WHERE a=20451;\nUPDATE t2 SET b=50770 WHERE a=20452;\nUPDATE t2 SET b=55402 WHERE a=20453;\nUPDATE t2 SET b=62915 WHERE a=20454;\nUPDATE t2 SET b=76555 WHERE a=20455;\nUPDATE t2 SET b=2178 WHERE a=20456;\nUPDATE t2 SET b=42433 WHERE a=20457;\nUPDATE t2 SET b=91850 WHERE a=20458;\nUPDATE t2 SET b=10115 WHERE a=20459;\nUPDATE t2 SET b=87426 WHERE a=20460;\nUPDATE t2 SET b=27840 WHERE a=20461;\nUPDATE t2 SET b=15276 WHERE a=20462;\nUPDATE t2 SET b=6104 WHERE a=20463;\nUPDATE t2 SET b=83006 WHERE a=20464;\nUPDATE t2 SET b=80228 WHERE a=20465;\nUPDATE t2 SET b=51683 WHERE a=20466;\nUPDATE t2 SET b=67678 WHERE a=20467;\nUPDATE t2 SET b=90464 WHERE a=20468;\nUPDATE t2 SET b=21107 WHERE a=20469;\nUPDATE t2 SET b=41011 WHERE a=20470;\nUPDATE t2 SET b=27896 WHERE a=20471;\nUPDATE t2 SET b=53291 WHERE a=20472;\nUPDATE t2 SET b=39149 WHERE a=20473;\nUPDATE t2 SET b=57313 WHERE a=20474;\nUPDATE t2 SET b=9222 WHERE a=20475;\nUPDATE t2 SET b=53618 WHERE a=20476;\nUPDATE t2 SET b=57372 WHERE a=20477;\nUPDATE t2 SET b=61753 WHERE a=20478;\nUPDATE t2 SET b=54185 WHERE a=20479;\nUPDATE t2 SET b=70787 WHERE a=20480;\nUPDATE t2 SET b=45985 WHERE a=20481;\nUPDATE t2 SET b=97052 WHERE a=20482;\nUPDATE t2 SET b=55411 WHERE a=20483;\nUPDATE t2 SET b=54909 WHERE a=20484;\nUPDATE t2 SET b=94326 WHERE a=20485;\nUPDATE t2 SET b=84379 WHERE a=20486;\nUPDATE t2 SET b=44385 WHERE a=20487;\nUPDATE t2 SET b=53201 WHERE a=20488;\nUPDATE t2 SET b=54315 WHERE a=20489;\nUPDATE t2 SET b=64213 WHERE a=20490;\nUPDATE t2 SET b=74776 WHERE a=20491;\nUPDATE t2 SET b=75775 WHERE a=20492;\nUPDATE t2 SET b=51230 WHERE a=20493;\nUPDATE t2 SET b=5134 WHERE a=20494;\nUPDATE t2 SET b=51076 WHERE a=20495;\nUPDATE t2 SET b=70418 WHERE a=20496;\nUPDATE t2 SET b=62911 WHERE a=20497;\nUPDATE t2 SET b=40921 WHERE a=20498;\nUPDATE t2 SET b=54776 WHERE a=20499;\nUPDATE t2 SET b=93746 WHERE a=20500;\nUPDATE t2 SET b=45773 WHERE a=20501;\nUPDATE t2 SET b=49281 WHERE a=20502;\nUPDATE t2 SET b=10484 WHERE a=20503;\nUPDATE t2 SET b=65335 WHERE a=20504;\nUPDATE t2 SET b=79051 WHERE a=20505;\nUPDATE t2 SET b=30591 WHERE a=20506;\nUPDATE t2 SET b=88939 WHERE a=20507;\nUPDATE t2 SET b=14464 WHERE a=20508;\nUPDATE t2 SET b=69357 WHERE a=20509;\nUPDATE t2 SET b=17637 WHERE a=20510;\nUPDATE t2 SET b=68835 WHERE a=20511;\nUPDATE t2 SET b=23926 WHERE a=20512;\nUPDATE t2 SET b=72372 WHERE a=20513;\nUPDATE t2 SET b=70859 WHERE a=20514;\nUPDATE t2 SET b=70839 WHERE a=20515;\nUPDATE t2 SET b=40819 WHERE a=20516;\nUPDATE t2 SET b=95443 WHERE a=20517;\nUPDATE t2 SET b=64351 WHERE a=20518;\nUPDATE t2 SET b=79015 WHERE a=20519;\nUPDATE t2 SET b=29434 WHERE a=20520;\nUPDATE t2 SET b=11031 WHERE a=20521;\nUPDATE t2 SET b=96722 WHERE a=20522;\nUPDATE t2 SET b=56719 WHERE a=20523;\nUPDATE t2 SET b=30581 WHERE a=20524;\nUPDATE t2 SET b=42298 WHERE a=20525;\nUPDATE t2 SET b=63946 WHERE a=20526;\nUPDATE t2 SET b=93945 WHERE a=20527;\nUPDATE t2 SET b=38878 WHERE a=20528;\nUPDATE t2 SET b=48768 WHERE a=20529;\nUPDATE t2 SET b=72849 WHERE a=20530;\nUPDATE t2 SET b=26245 WHERE a=20531;\nUPDATE t2 SET b=22185 WHERE a=20532;\nUPDATE t2 SET b=42807 WHERE a=20533;\nUPDATE t2 SET b=88112 WHERE a=20534;\nUPDATE t2 SET b=50222 WHERE a=20535;\nUPDATE t2 SET b=13737 WHERE a=20536;\nUPDATE t2 SET b=46620 WHERE a=20537;\nUPDATE t2 SET b=40591 WHERE a=20538;\nUPDATE t2 SET b=22920 WHERE a=20539;\nUPDATE t2 SET b=68261 WHERE a=20540;\nUPDATE t2 SET b=94276 WHERE a=20541;\nUPDATE t2 SET b=9393 WHERE a=20542;\nUPDATE t2 SET b=17203 WHERE a=20543;\nUPDATE t2 SET b=85816 WHERE a=20544;\nUPDATE t2 SET b=18626 WHERE a=20545;\nUPDATE t2 SET b=95559 WHERE a=20546;\nUPDATE t2 SET b=41927 WHERE a=20547;\nUPDATE t2 SET b=78878 WHERE a=20548;\nUPDATE t2 SET b=99212 WHERE a=20549;\nUPDATE t2 SET b=93816 WHERE a=20550;\nUPDATE t2 SET b=1040 WHERE a=20551;\nUPDATE t2 SET b=5624 WHERE a=20552;\nUPDATE t2 SET b=95424 WHERE a=20553;\nUPDATE t2 SET b=59513 WHERE a=20554;\nUPDATE t2 SET b=7814 WHERE a=20555;\nUPDATE t2 SET b=91131 WHERE a=20556;\nUPDATE t2 SET b=20884 WHERE a=20557;\nUPDATE t2 SET b=3646 WHERE a=20558;\nUPDATE t2 SET b=91757 WHERE a=20559;\nUPDATE t2 SET b=85197 WHERE a=20560;\nUPDATE t2 SET b=8807 WHERE a=20561;\nUPDATE t2 SET b=23306 WHERE a=20562;\nUPDATE t2 SET b=87876 WHERE a=20563;\nUPDATE t2 SET b=24944 WHERE a=20564;\nUPDATE t2 SET b=20875 WHERE a=20565;\nUPDATE t2 SET b=71602 WHERE a=20566;\nUPDATE t2 SET b=34742 WHERE a=20567;\nUPDATE t2 SET b=8240 WHERE a=20568;\nUPDATE t2 SET b=51064 WHERE a=20569;\nUPDATE t2 SET b=98980 WHERE a=20570;\nUPDATE t2 SET b=73155 WHERE a=20571;\nUPDATE t2 SET b=74299 WHERE a=20572;\nUPDATE t2 SET b=36816 WHERE a=20573;\nUPDATE t2 SET b=66477 WHERE a=20574;\nUPDATE t2 SET b=66427 WHERE a=20575;\nUPDATE t2 SET b=7124 WHERE a=20576;\nUPDATE t2 SET b=52035 WHERE a=20577;\nUPDATE t2 SET b=53688 WHERE a=20578;\nUPDATE t2 SET b=40747 WHERE a=20579;\nUPDATE t2 SET b=73779 WHERE a=20580;\nUPDATE t2 SET b=71087 WHERE a=20581;\nUPDATE t2 SET b=26152 WHERE a=20582;\nUPDATE t2 SET b=92652 WHERE a=20583;\nUPDATE t2 SET b=90447 WHERE a=20584;\nUPDATE t2 SET b=86647 WHERE a=20585;\nUPDATE t2 SET b=96550 WHERE a=20586;\nUPDATE t2 SET b=98877 WHERE a=20587;\nUPDATE t2 SET b=84530 WHERE a=20588;\nUPDATE t2 SET b=6021 WHERE a=20589;\nUPDATE t2 SET b=94528 WHERE a=20590;\nUPDATE t2 SET b=53798 WHERE a=20591;\nUPDATE t2 SET b=46614 WHERE a=20592;\nUPDATE t2 SET b=24810 WHERE a=20593;\nUPDATE t2 SET b=7614 WHERE a=20594;\nUPDATE t2 SET b=49412 WHERE a=20595;\nUPDATE t2 SET b=35556 WHERE a=20596;\nUPDATE t2 SET b=83257 WHERE a=20597;\nUPDATE t2 SET b=57535 WHERE a=20598;\nUPDATE t2 SET b=5331 WHERE a=20599;\nUPDATE t2 SET b=59856 WHERE a=20600;\nUPDATE t2 SET b=36150 WHERE a=20601;\nUPDATE t2 SET b=21140 WHERE a=20602;\nUPDATE t2 SET b=41603 WHERE a=20603;\nUPDATE t2 SET b=25088 WHERE a=20604;\nUPDATE t2 SET b=10637 WHERE a=20605;\nUPDATE t2 SET b=22276 WHERE a=20606;\nUPDATE t2 SET b=86741 WHERE a=20607;\nUPDATE t2 SET b=81263 WHERE a=20608;\nUPDATE t2 SET b=77873 WHERE a=20609;\nUPDATE t2 SET b=75893 WHERE a=20610;\nUPDATE t2 SET b=17079 WHERE a=20611;\nUPDATE t2 SET b=26661 WHERE a=20612;\nUPDATE t2 SET b=79508 WHERE a=20613;\nUPDATE t2 SET b=53212 WHERE a=20614;\nUPDATE t2 SET b=44482 WHERE a=20615;\nUPDATE t2 SET b=4219 WHERE a=20616;\nUPDATE t2 SET b=20954 WHERE a=20617;\nUPDATE t2 SET b=69770 WHERE a=20618;\nUPDATE t2 SET b=72273 WHERE a=20619;\nUPDATE t2 SET b=52159 WHERE a=20620;\nUPDATE t2 SET b=5930 WHERE a=20621;\nUPDATE t2 SET b=26090 WHERE a=20622;\nUPDATE t2 SET b=94129 WHERE a=20623;\nUPDATE t2 SET b=57083 WHERE a=20624;\nUPDATE t2 SET b=81911 WHERE a=20625;\nUPDATE t2 SET b=56615 WHERE a=20626;\nUPDATE t2 SET b=53709 WHERE a=20627;\nUPDATE t2 SET b=9675 WHERE a=20628;\nUPDATE t2 SET b=42997 WHERE a=20629;\nUPDATE t2 SET b=80567 WHERE a=20630;\nUPDATE t2 SET b=34428 WHERE a=20631;\nUPDATE t2 SET b=43823 WHERE a=20632;\nUPDATE t2 SET b=24238 WHERE a=20633;\nUPDATE t2 SET b=79583 WHERE a=20634;\nUPDATE t2 SET b=8357 WHERE a=20635;\nUPDATE t2 SET b=87017 WHERE a=20636;\nUPDATE t2 SET b=51243 WHERE a=20637;\nUPDATE t2 SET b=55957 WHERE a=20638;\nUPDATE t2 SET b=16317 WHERE a=20639;\nUPDATE t2 SET b=14217 WHERE a=20640;\nUPDATE t2 SET b=51695 WHERE a=20641;\nUPDATE t2 SET b=47880 WHERE a=20642;\nUPDATE t2 SET b=48360 WHERE a=20643;\nUPDATE t2 SET b=62189 WHERE a=20644;\nUPDATE t2 SET b=88716 WHERE a=20645;\nUPDATE t2 SET b=84361 WHERE a=20646;\nUPDATE t2 SET b=15982 WHERE a=20647;\nUPDATE t2 SET b=24964 WHERE a=20648;\nUPDATE t2 SET b=49903 WHERE a=20649;\nUPDATE t2 SET b=74752 WHERE a=20650;\nUPDATE t2 SET b=34227 WHERE a=20651;\nUPDATE t2 SET b=40253 WHERE a=20652;\nUPDATE t2 SET b=12672 WHERE a=20653;\nUPDATE t2 SET b=88888 WHERE a=20654;\nUPDATE t2 SET b=43258 WHERE a=20655;\nUPDATE t2 SET b=91541 WHERE a=20656;\nUPDATE t2 SET b=62131 WHERE a=20657;\nUPDATE t2 SET b=53154 WHERE a=20658;\nUPDATE t2 SET b=36833 WHERE a=20659;\nUPDATE t2 SET b=98124 WHERE a=20660;\nUPDATE t2 SET b=18037 WHERE a=20661;\nUPDATE t2 SET b=94577 WHERE a=20662;\nUPDATE t2 SET b=35421 WHERE a=20663;\nUPDATE t2 SET b=17754 WHERE a=20664;\nUPDATE t2 SET b=7707 WHERE a=20665;\nUPDATE t2 SET b=55416 WHERE a=20666;\nUPDATE t2 SET b=86782 WHERE a=20667;\nUPDATE t2 SET b=82916 WHERE a=20668;\nUPDATE t2 SET b=32099 WHERE a=20669;\nUPDATE t2 SET b=3201 WHERE a=20670;\nUPDATE t2 SET b=71332 WHERE a=20671;\nUPDATE t2 SET b=94160 WHERE a=20672;\nUPDATE t2 SET b=64054 WHERE a=20673;\nUPDATE t2 SET b=71802 WHERE a=20674;\nUPDATE t2 SET b=80621 WHERE a=20675;\nUPDATE t2 SET b=72286 WHERE a=20676;\nUPDATE t2 SET b=14436 WHERE a=20677;\nUPDATE t2 SET b=17690 WHERE a=20678;\nUPDATE t2 SET b=60915 WHERE a=20679;\nUPDATE t2 SET b=12008 WHERE a=20680;\nUPDATE t2 SET b=58092 WHERE a=20681;\nUPDATE t2 SET b=60457 WHERE a=20682;\nUPDATE t2 SET b=54784 WHERE a=20683;\nUPDATE t2 SET b=71146 WHERE a=20684;\nUPDATE t2 SET b=32463 WHERE a=20685;\nUPDATE t2 SET b=9362 WHERE a=20686;\nUPDATE t2 SET b=22470 WHERE a=20687;\nUPDATE t2 SET b=91626 WHERE a=20688;\nUPDATE t2 SET b=71651 WHERE a=20689;\nUPDATE t2 SET b=52556 WHERE a=20690;\nUPDATE t2 SET b=37331 WHERE a=20691;\nUPDATE t2 SET b=62454 WHERE a=20692;\nUPDATE t2 SET b=88501 WHERE a=20693;\nUPDATE t2 SET b=97002 WHERE a=20694;\nUPDATE t2 SET b=28442 WHERE a=20695;\nUPDATE t2 SET b=9647 WHERE a=20696;\nUPDATE t2 SET b=95191 WHERE a=20697;\nUPDATE t2 SET b=48460 WHERE a=20698;\nUPDATE t2 SET b=61137 WHERE a=20699;\nUPDATE t2 SET b=89597 WHERE a=20700;\nUPDATE t2 SET b=37294 WHERE a=20701;\nUPDATE t2 SET b=79274 WHERE a=20702;\nUPDATE t2 SET b=36881 WHERE a=20703;\nUPDATE t2 SET b=3877 WHERE a=20704;\nUPDATE t2 SET b=26744 WHERE a=20705;\nUPDATE t2 SET b=40024 WHERE a=20706;\nUPDATE t2 SET b=19563 WHERE a=20707;\nUPDATE t2 SET b=92476 WHERE a=20708;\nUPDATE t2 SET b=34615 WHERE a=20709;\nUPDATE t2 SET b=75014 WHERE a=20710;\nUPDATE t2 SET b=40313 WHERE a=20711;\nUPDATE t2 SET b=56713 WHERE a=20712;\nUPDATE t2 SET b=27206 WHERE a=20713;\nUPDATE t2 SET b=52751 WHERE a=20714;\nUPDATE t2 SET b=62385 WHERE a=20715;\nUPDATE t2 SET b=61434 WHERE a=20716;\nUPDATE t2 SET b=75912 WHERE a=20717;\nUPDATE t2 SET b=30473 WHERE a=20718;\nUPDATE t2 SET b=79523 WHERE a=20719;\nUPDATE t2 SET b=17208 WHERE a=20720;\nUPDATE t2 SET b=7101 WHERE a=20721;\nUPDATE t2 SET b=8876 WHERE a=20722;\nUPDATE t2 SET b=57754 WHERE a=20723;\nUPDATE t2 SET b=29886 WHERE a=20724;\nUPDATE t2 SET b=79388 WHERE a=20725;\nUPDATE t2 SET b=82691 WHERE a=20726;\nUPDATE t2 SET b=16427 WHERE a=20727;\nUPDATE t2 SET b=26025 WHERE a=20728;\nUPDATE t2 SET b=75 WHERE a=20729;\nUPDATE t2 SET b=57288 WHERE a=20730;\nUPDATE t2 SET b=52424 WHERE a=20731;\nUPDATE t2 SET b=26614 WHERE a=20732;\nUPDATE t2 SET b=21568 WHERE a=20733;\nUPDATE t2 SET b=99819 WHERE a=20734;\nUPDATE t2 SET b=15212 WHERE a=20735;\nUPDATE t2 SET b=17790 WHERE a=20736;\nUPDATE t2 SET b=79578 WHERE a=20737;\nUPDATE t2 SET b=67956 WHERE a=20738;\nUPDATE t2 SET b=74002 WHERE a=20739;\nUPDATE t2 SET b=12435 WHERE a=20740;\nUPDATE t2 SET b=35369 WHERE a=20741;\nUPDATE t2 SET b=91530 WHERE a=20742;\nUPDATE t2 SET b=95938 WHERE a=20743;\nUPDATE t2 SET b=37698 WHERE a=20744;\nUPDATE t2 SET b=9639 WHERE a=20745;\nUPDATE t2 SET b=9414 WHERE a=20746;\nUPDATE t2 SET b=53118 WHERE a=20747;\nUPDATE t2 SET b=36571 WHERE a=20748;\nUPDATE t2 SET b=7866 WHERE a=20749;\nUPDATE t2 SET b=8357 WHERE a=20750;\nUPDATE t2 SET b=51364 WHERE a=20751;\nUPDATE t2 SET b=24329 WHERE a=20752;\nUPDATE t2 SET b=23512 WHERE a=20753;\nUPDATE t2 SET b=98584 WHERE a=20754;\nUPDATE t2 SET b=41933 WHERE a=20755;\nUPDATE t2 SET b=75243 WHERE a=20756;\nUPDATE t2 SET b=41465 WHERE a=20757;\nUPDATE t2 SET b=79641 WHERE a=20758;\nUPDATE t2 SET b=26391 WHERE a=20759;\nUPDATE t2 SET b=89719 WHERE a=20760;\nUPDATE t2 SET b=35364 WHERE a=20761;\nUPDATE t2 SET b=63777 WHERE a=20762;\nUPDATE t2 SET b=89713 WHERE a=20763;\nUPDATE t2 SET b=62753 WHERE a=20764;\nUPDATE t2 SET b=21856 WHERE a=20765;\nUPDATE t2 SET b=19812 WHERE a=20766;\nUPDATE t2 SET b=12797 WHERE a=20767;\nUPDATE t2 SET b=11243 WHERE a=20768;\nUPDATE t2 SET b=1608 WHERE a=20769;\nUPDATE t2 SET b=45741 WHERE a=20770;\nUPDATE t2 SET b=43989 WHERE a=20771;\nUPDATE t2 SET b=47753 WHERE a=20772;\nUPDATE t2 SET b=57436 WHERE a=20773;\nUPDATE t2 SET b=52550 WHERE a=20774;\nUPDATE t2 SET b=59550 WHERE a=20775;\nUPDATE t2 SET b=75800 WHERE a=20776;\nUPDATE t2 SET b=13818 WHERE a=20777;\nUPDATE t2 SET b=10949 WHERE a=20778;\nUPDATE t2 SET b=53159 WHERE a=20779;\nUPDATE t2 SET b=78794 WHERE a=20780;\nUPDATE t2 SET b=42530 WHERE a=20781;\nUPDATE t2 SET b=99557 WHERE a=20782;\nUPDATE t2 SET b=46465 WHERE a=20783;\nUPDATE t2 SET b=10681 WHERE a=20784;\nUPDATE t2 SET b=25695 WHERE a=20785;\nUPDATE t2 SET b=22567 WHERE a=20786;\nUPDATE t2 SET b=13831 WHERE a=20787;\nUPDATE t2 SET b=52434 WHERE a=20788;\nUPDATE t2 SET b=73210 WHERE a=20789;\nUPDATE t2 SET b=59702 WHERE a=20790;\nUPDATE t2 SET b=22893 WHERE a=20791;\nUPDATE t2 SET b=62428 WHERE a=20792;\nUPDATE t2 SET b=7037 WHERE a=20793;\nUPDATE t2 SET b=34330 WHERE a=20794;\nUPDATE t2 SET b=97634 WHERE a=20795;\nUPDATE t2 SET b=58492 WHERE a=20796;\nUPDATE t2 SET b=249 WHERE a=20797;\nUPDATE t2 SET b=95429 WHERE a=20798;\nUPDATE t2 SET b=49086 WHERE a=20799;\nUPDATE t2 SET b=39480 WHERE a=20800;\nUPDATE t2 SET b=49005 WHERE a=20801;\nUPDATE t2 SET b=77907 WHERE a=20802;\nUPDATE t2 SET b=11751 WHERE a=20803;\nUPDATE t2 SET b=8042 WHERE a=20804;\nUPDATE t2 SET b=99344 WHERE a=20805;\nUPDATE t2 SET b=64741 WHERE a=20806;\nUPDATE t2 SET b=41517 WHERE a=20807;\nUPDATE t2 SET b=10427 WHERE a=20808;\nUPDATE t2 SET b=94805 WHERE a=20809;\nUPDATE t2 SET b=40634 WHERE a=20810;\nUPDATE t2 SET b=25485 WHERE a=20811;\nUPDATE t2 SET b=67027 WHERE a=20812;\nUPDATE t2 SET b=11209 WHERE a=20813;\nUPDATE t2 SET b=35217 WHERE a=20814;\nUPDATE t2 SET b=64998 WHERE a=20815;\nUPDATE t2 SET b=50581 WHERE a=20816;\nUPDATE t2 SET b=31577 WHERE a=20817;\nUPDATE t2 SET b=58865 WHERE a=20818;\nUPDATE t2 SET b=50058 WHERE a=20819;\nUPDATE t2 SET b=6036 WHERE a=20820;\nUPDATE t2 SET b=2194 WHERE a=20821;\nUPDATE t2 SET b=97812 WHERE a=20822;\nUPDATE t2 SET b=15154 WHERE a=20823;\nUPDATE t2 SET b=94923 WHERE a=20824;\nUPDATE t2 SET b=75724 WHERE a=20825;\nUPDATE t2 SET b=74691 WHERE a=20826;\nUPDATE t2 SET b=96911 WHERE a=20827;\nUPDATE t2 SET b=61789 WHERE a=20828;\nUPDATE t2 SET b=11998 WHERE a=20829;\nUPDATE t2 SET b=23741 WHERE a=20830;\nUPDATE t2 SET b=95483 WHERE a=20831;\nUPDATE t2 SET b=48812 WHERE a=20832;\nUPDATE t2 SET b=23972 WHERE a=20833;\nUPDATE t2 SET b=62256 WHERE a=20834;\nUPDATE t2 SET b=44449 WHERE a=20835;\nUPDATE t2 SET b=67869 WHERE a=20836;\nUPDATE t2 SET b=83601 WHERE a=20837;\nUPDATE t2 SET b=66634 WHERE a=20838;\nUPDATE t2 SET b=84052 WHERE a=20839;\nUPDATE t2 SET b=78186 WHERE a=20840;\nUPDATE t2 SET b=8133 WHERE a=20841;\nUPDATE t2 SET b=22704 WHERE a=20842;\nUPDATE t2 SET b=65070 WHERE a=20843;\nUPDATE t2 SET b=6156 WHERE a=20844;\nUPDATE t2 SET b=49057 WHERE a=20845;\nUPDATE t2 SET b=15671 WHERE a=20846;\nUPDATE t2 SET b=50221 WHERE a=20847;\nUPDATE t2 SET b=88440 WHERE a=20848;\nUPDATE t2 SET b=74331 WHERE a=20849;\nUPDATE t2 SET b=12458 WHERE a=20850;\nUPDATE t2 SET b=33321 WHERE a=20851;\nUPDATE t2 SET b=20725 WHERE a=20852;\nUPDATE t2 SET b=33097 WHERE a=20853;\nUPDATE t2 SET b=9830 WHERE a=20854;\nUPDATE t2 SET b=50713 WHERE a=20855;\nUPDATE t2 SET b=66399 WHERE a=20856;\nUPDATE t2 SET b=82602 WHERE a=20857;\nUPDATE t2 SET b=83206 WHERE a=20858;\nUPDATE t2 SET b=61577 WHERE a=20859;\nUPDATE t2 SET b=5517 WHERE a=20860;\nUPDATE t2 SET b=92919 WHERE a=20861;\nUPDATE t2 SET b=14810 WHERE a=20862;\nUPDATE t2 SET b=74313 WHERE a=20863;\nUPDATE t2 SET b=67010 WHERE a=20864;\nUPDATE t2 SET b=87069 WHERE a=20865;\nUPDATE t2 SET b=46752 WHERE a=20866;\nUPDATE t2 SET b=29900 WHERE a=20867;\nUPDATE t2 SET b=30085 WHERE a=20868;\nUPDATE t2 SET b=45516 WHERE a=20869;\nUPDATE t2 SET b=8840 WHERE a=20870;\nUPDATE t2 SET b=3156 WHERE a=20871;\nUPDATE t2 SET b=96213 WHERE a=20872;\nUPDATE t2 SET b=68682 WHERE a=20873;\nUPDATE t2 SET b=5553 WHERE a=20874;\nUPDATE t2 SET b=44755 WHERE a=20875;\nUPDATE t2 SET b=93647 WHERE a=20876;\nUPDATE t2 SET b=64743 WHERE a=20877;\nUPDATE t2 SET b=18782 WHERE a=20878;\nUPDATE t2 SET b=65415 WHERE a=20879;\nUPDATE t2 SET b=31534 WHERE a=20880;\nUPDATE t2 SET b=45725 WHERE a=20881;\nUPDATE t2 SET b=24092 WHERE a=20882;\nUPDATE t2 SET b=91033 WHERE a=20883;\nUPDATE t2 SET b=5251 WHERE a=20884;\nUPDATE t2 SET b=55490 WHERE a=20885;\nUPDATE t2 SET b=81000 WHERE a=20886;\nUPDATE t2 SET b=31605 WHERE a=20887;\nUPDATE t2 SET b=39358 WHERE a=20888;\nUPDATE t2 SET b=62332 WHERE a=20889;\nUPDATE t2 SET b=66444 WHERE a=20890;\nUPDATE t2 SET b=69571 WHERE a=20891;\nUPDATE t2 SET b=66537 WHERE a=20892;\nUPDATE t2 SET b=12182 WHERE a=20893;\nUPDATE t2 SET b=3201 WHERE a=20894;\nUPDATE t2 SET b=30301 WHERE a=20895;\nUPDATE t2 SET b=13024 WHERE a=20896;\nUPDATE t2 SET b=52773 WHERE a=20897;\nUPDATE t2 SET b=76771 WHERE a=20898;\nUPDATE t2 SET b=37992 WHERE a=20899;\nUPDATE t2 SET b=16549 WHERE a=20900;\nUPDATE t2 SET b=87635 WHERE a=20901;\nUPDATE t2 SET b=8003 WHERE a=20902;\nUPDATE t2 SET b=77649 WHERE a=20903;\nUPDATE t2 SET b=77307 WHERE a=20904;\nUPDATE t2 SET b=46567 WHERE a=20905;\nUPDATE t2 SET b=25549 WHERE a=20906;\nUPDATE t2 SET b=26735 WHERE a=20907;\nUPDATE t2 SET b=67338 WHERE a=20908;\nUPDATE t2 SET b=33434 WHERE a=20909;\nUPDATE t2 SET b=19460 WHERE a=20910;\nUPDATE t2 SET b=56219 WHERE a=20911;\nUPDATE t2 SET b=22041 WHERE a=20912;\nUPDATE t2 SET b=82328 WHERE a=20913;\nUPDATE t2 SET b=28504 WHERE a=20914;\nUPDATE t2 SET b=46405 WHERE a=20915;\nUPDATE t2 SET b=316 WHERE a=20916;\nUPDATE t2 SET b=2854 WHERE a=20917;\nUPDATE t2 SET b=82345 WHERE a=20918;\nUPDATE t2 SET b=80356 WHERE a=20919;\nUPDATE t2 SET b=64550 WHERE a=20920;\nUPDATE t2 SET b=19266 WHERE a=20921;\nUPDATE t2 SET b=93203 WHERE a=20922;\nUPDATE t2 SET b=45865 WHERE a=20923;\nUPDATE t2 SET b=18365 WHERE a=20924;\nUPDATE t2 SET b=19945 WHERE a=20925;\nUPDATE t2 SET b=57003 WHERE a=20926;\nUPDATE t2 SET b=53692 WHERE a=20927;\nUPDATE t2 SET b=29397 WHERE a=20928;\nUPDATE t2 SET b=2672 WHERE a=20929;\nUPDATE t2 SET b=12215 WHERE a=20930;\nUPDATE t2 SET b=92268 WHERE a=20931;\nUPDATE t2 SET b=97615 WHERE a=20932;\nUPDATE t2 SET b=17836 WHERE a=20933;\nUPDATE t2 SET b=90624 WHERE a=20934;\nUPDATE t2 SET b=96626 WHERE a=20935;\nUPDATE t2 SET b=48256 WHERE a=20936;\nUPDATE t2 SET b=78602 WHERE a=20937;\nUPDATE t2 SET b=65096 WHERE a=20938;\nUPDATE t2 SET b=92637 WHERE a=20939;\nUPDATE t2 SET b=74555 WHERE a=20940;\nUPDATE t2 SET b=52687 WHERE a=20941;\nUPDATE t2 SET b=12381 WHERE a=20942;\nUPDATE t2 SET b=12848 WHERE a=20943;\nUPDATE t2 SET b=30340 WHERE a=20944;\nUPDATE t2 SET b=19385 WHERE a=20945;\nUPDATE t2 SET b=6331 WHERE a=20946;\nUPDATE t2 SET b=23940 WHERE a=20947;\nUPDATE t2 SET b=33574 WHERE a=20948;\nUPDATE t2 SET b=40358 WHERE a=20949;\nUPDATE t2 SET b=23538 WHERE a=20950;\nUPDATE t2 SET b=58943 WHERE a=20951;\nUPDATE t2 SET b=86902 WHERE a=20952;\nUPDATE t2 SET b=67132 WHERE a=20953;\nUPDATE t2 SET b=80204 WHERE a=20954;\nUPDATE t2 SET b=19820 WHERE a=20955;\nUPDATE t2 SET b=94898 WHERE a=20956;\nUPDATE t2 SET b=17584 WHERE a=20957;\nUPDATE t2 SET b=19778 WHERE a=20958;\nUPDATE t2 SET b=91711 WHERE a=20959;\nUPDATE t2 SET b=69716 WHERE a=20960;\nUPDATE t2 SET b=78030 WHERE a=20961;\nUPDATE t2 SET b=98757 WHERE a=20962;\nUPDATE t2 SET b=67966 WHERE a=20963;\nUPDATE t2 SET b=25155 WHERE a=20964;\nUPDATE t2 SET b=11878 WHERE a=20965;\nUPDATE t2 SET b=14474 WHERE a=20966;\nUPDATE t2 SET b=49764 WHERE a=20967;\nUPDATE t2 SET b=20290 WHERE a=20968;\nUPDATE t2 SET b=87894 WHERE a=20969;\nUPDATE t2 SET b=87125 WHERE a=20970;\nUPDATE t2 SET b=55926 WHERE a=20971;\nUPDATE t2 SET b=36578 WHERE a=20972;\nUPDATE t2 SET b=39639 WHERE a=20973;\nUPDATE t2 SET b=5037 WHERE a=20974;\nUPDATE t2 SET b=99104 WHERE a=20975;\nUPDATE t2 SET b=47869 WHERE a=20976;\nUPDATE t2 SET b=92466 WHERE a=20977;\nUPDATE t2 SET b=70926 WHERE a=20978;\nUPDATE t2 SET b=88817 WHERE a=20979;\nUPDATE t2 SET b=56615 WHERE a=20980;\nUPDATE t2 SET b=40723 WHERE a=20981;\nUPDATE t2 SET b=92536 WHERE a=20982;\nUPDATE t2 SET b=38714 WHERE a=20983;\nUPDATE t2 SET b=54347 WHERE a=20984;\nUPDATE t2 SET b=49458 WHERE a=20985;\nUPDATE t2 SET b=92836 WHERE a=20986;\nUPDATE t2 SET b=99599 WHERE a=20987;\nUPDATE t2 SET b=8599 WHERE a=20988;\nUPDATE t2 SET b=29882 WHERE a=20989;\nUPDATE t2 SET b=2209 WHERE a=20990;\nUPDATE t2 SET b=69932 WHERE a=20991;\nUPDATE t2 SET b=11050 WHERE a=20992;\nUPDATE t2 SET b=60127 WHERE a=20993;\nUPDATE t2 SET b=34029 WHERE a=20994;\nUPDATE t2 SET b=67040 WHERE a=20995;\nUPDATE t2 SET b=35321 WHERE a=20996;\nUPDATE t2 SET b=856 WHERE a=20997;\nUPDATE t2 SET b=30724 WHERE a=20998;\nUPDATE t2 SET b=18444 WHERE a=20999;\nUPDATE t2 SET b=54283 WHERE a=21000;\nUPDATE t2 SET b=67616 WHERE a=21001;\nUPDATE t2 SET b=21857 WHERE a=21002;\nUPDATE t2 SET b=42712 WHERE a=21003;\nUPDATE t2 SET b=11276 WHERE a=21004;\nUPDATE t2 SET b=68599 WHERE a=21005;\nUPDATE t2 SET b=38622 WHERE a=21006;\nUPDATE t2 SET b=87308 WHERE a=21007;\nUPDATE t2 SET b=25782 WHERE a=21008;\nUPDATE t2 SET b=89647 WHERE a=21009;\nUPDATE t2 SET b=83004 WHERE a=21010;\nUPDATE t2 SET b=37988 WHERE a=21011;\nUPDATE t2 SET b=82560 WHERE a=21012;\nUPDATE t2 SET b=3639 WHERE a=21013;\nUPDATE t2 SET b=49543 WHERE a=21014;\nUPDATE t2 SET b=57215 WHERE a=21015;\nUPDATE t2 SET b=74512 WHERE a=21016;\nUPDATE t2 SET b=64111 WHERE a=21017;\nUPDATE t2 SET b=22655 WHERE a=21018;\nUPDATE t2 SET b=82533 WHERE a=21019;\nUPDATE t2 SET b=73772 WHERE a=21020;\nUPDATE t2 SET b=22144 WHERE a=21021;\nUPDATE t2 SET b=88942 WHERE a=21022;\nUPDATE t2 SET b=75252 WHERE a=21023;\nUPDATE t2 SET b=44814 WHERE a=21024;\nUPDATE t2 SET b=88953 WHERE a=21025;\nUPDATE t2 SET b=91467 WHERE a=21026;\nUPDATE t2 SET b=49503 WHERE a=21027;\nUPDATE t2 SET b=54668 WHERE a=21028;\nUPDATE t2 SET b=68997 WHERE a=21029;\nUPDATE t2 SET b=77926 WHERE a=21030;\nUPDATE t2 SET b=38165 WHERE a=21031;\nUPDATE t2 SET b=96816 WHERE a=21032;\nUPDATE t2 SET b=89809 WHERE a=21033;\nUPDATE t2 SET b=20392 WHERE a=21034;\nUPDATE t2 SET b=75649 WHERE a=21035;\nUPDATE t2 SET b=23074 WHERE a=21036;\nUPDATE t2 SET b=36248 WHERE a=21037;\nUPDATE t2 SET b=18872 WHERE a=21038;\nUPDATE t2 SET b=63635 WHERE a=21039;\nUPDATE t2 SET b=9631 WHERE a=21040;\nUPDATE t2 SET b=8321 WHERE a=21041;\nUPDATE t2 SET b=16205 WHERE a=21042;\nUPDATE t2 SET b=14250 WHERE a=21043;\nUPDATE t2 SET b=96131 WHERE a=21044;\nUPDATE t2 SET b=91977 WHERE a=21045;\nUPDATE t2 SET b=33412 WHERE a=21046;\nUPDATE t2 SET b=27596 WHERE a=21047;\nUPDATE t2 SET b=37096 WHERE a=21048;\nUPDATE t2 SET b=39088 WHERE a=21049;\nUPDATE t2 SET b=11925 WHERE a=21050;\nUPDATE t2 SET b=55820 WHERE a=21051;\nUPDATE t2 SET b=58405 WHERE a=21052;\nUPDATE t2 SET b=48758 WHERE a=21053;\nUPDATE t2 SET b=62737 WHERE a=21054;\nUPDATE t2 SET b=48797 WHERE a=21055;\nUPDATE t2 SET b=1356 WHERE a=21056;\nUPDATE t2 SET b=18931 WHERE a=21057;\nUPDATE t2 SET b=59945 WHERE a=21058;\nUPDATE t2 SET b=73405 WHERE a=21059;\nUPDATE t2 SET b=60686 WHERE a=21060;\nUPDATE t2 SET b=56523 WHERE a=21061;\nUPDATE t2 SET b=95048 WHERE a=21062;\nUPDATE t2 SET b=27498 WHERE a=21063;\nUPDATE t2 SET b=22375 WHERE a=21064;\nUPDATE t2 SET b=69952 WHERE a=21065;\nUPDATE t2 SET b=53011 WHERE a=21066;\nUPDATE t2 SET b=81574 WHERE a=21067;\nUPDATE t2 SET b=52197 WHERE a=21068;\nUPDATE t2 SET b=6083 WHERE a=21069;\nUPDATE t2 SET b=86896 WHERE a=21070;\nUPDATE t2 SET b=18897 WHERE a=21071;\nUPDATE t2 SET b=89231 WHERE a=21072;\nUPDATE t2 SET b=42674 WHERE a=21073;\nUPDATE t2 SET b=63709 WHERE a=21074;\nUPDATE t2 SET b=31465 WHERE a=21075;\nUPDATE t2 SET b=78213 WHERE a=21076;\nUPDATE t2 SET b=91256 WHERE a=21077;\nUPDATE t2 SET b=39328 WHERE a=21078;\nUPDATE t2 SET b=24070 WHERE a=21079;\nUPDATE t2 SET b=61992 WHERE a=21080;\nUPDATE t2 SET b=22300 WHERE a=21081;\nUPDATE t2 SET b=23182 WHERE a=21082;\nUPDATE t2 SET b=31567 WHERE a=21083;\nUPDATE t2 SET b=88573 WHERE a=21084;\nUPDATE t2 SET b=55631 WHERE a=21085;\nUPDATE t2 SET b=83709 WHERE a=21086;\nUPDATE t2 SET b=63582 WHERE a=21087;\nUPDATE t2 SET b=65459 WHERE a=21088;\nUPDATE t2 SET b=43991 WHERE a=21089;\nUPDATE t2 SET b=310 WHERE a=21090;\nUPDATE t2 SET b=91449 WHERE a=21091;\nUPDATE t2 SET b=40735 WHERE a=21092;\nUPDATE t2 SET b=16978 WHERE a=21093;\nUPDATE t2 SET b=62365 WHERE a=21094;\nUPDATE t2 SET b=42006 WHERE a=21095;\nUPDATE t2 SET b=38183 WHERE a=21096;\nUPDATE t2 SET b=74518 WHERE a=21097;\nUPDATE t2 SET b=70095 WHERE a=21098;\nUPDATE t2 SET b=79264 WHERE a=21099;\nUPDATE t2 SET b=77462 WHERE a=21100;\nUPDATE t2 SET b=85666 WHERE a=21101;\nUPDATE t2 SET b=42153 WHERE a=21102;\nUPDATE t2 SET b=13758 WHERE a=21103;\nUPDATE t2 SET b=56194 WHERE a=21104;\nUPDATE t2 SET b=2563 WHERE a=21105;\nUPDATE t2 SET b=45356 WHERE a=21106;\nUPDATE t2 SET b=87531 WHERE a=21107;\nUPDATE t2 SET b=78682 WHERE a=21108;\nUPDATE t2 SET b=42155 WHERE a=21109;\nUPDATE t2 SET b=6007 WHERE a=21110;\nUPDATE t2 SET b=67705 WHERE a=21111;\nUPDATE t2 SET b=13189 WHERE a=21112;\nUPDATE t2 SET b=75917 WHERE a=21113;\nUPDATE t2 SET b=91822 WHERE a=21114;\nUPDATE t2 SET b=41046 WHERE a=21115;\nUPDATE t2 SET b=95397 WHERE a=21116;\nUPDATE t2 SET b=67076 WHERE a=21117;\nUPDATE t2 SET b=8493 WHERE a=21118;\nUPDATE t2 SET b=21668 WHERE a=21119;\nUPDATE t2 SET b=43513 WHERE a=21120;\nUPDATE t2 SET b=76615 WHERE a=21121;\nUPDATE t2 SET b=49461 WHERE a=21122;\nUPDATE t2 SET b=29493 WHERE a=21123;\nUPDATE t2 SET b=29797 WHERE a=21124;\nUPDATE t2 SET b=27789 WHERE a=21125;\nUPDATE t2 SET b=36082 WHERE a=21126;\nUPDATE t2 SET b=15341 WHERE a=21127;\nUPDATE t2 SET b=63706 WHERE a=21128;\nUPDATE t2 SET b=76906 WHERE a=21129;\nUPDATE t2 SET b=31824 WHERE a=21130;\nUPDATE t2 SET b=67645 WHERE a=21131;\nUPDATE t2 SET b=29914 WHERE a=21132;\nUPDATE t2 SET b=45743 WHERE a=21133;\nUPDATE t2 SET b=92418 WHERE a=21134;\nUPDATE t2 SET b=77181 WHERE a=21135;\nUPDATE t2 SET b=87816 WHERE a=21136;\nUPDATE t2 SET b=65580 WHERE a=21137;\nUPDATE t2 SET b=8434 WHERE a=21138;\nUPDATE t2 SET b=85183 WHERE a=21139;\nUPDATE t2 SET b=91160 WHERE a=21140;\nUPDATE t2 SET b=50810 WHERE a=21141;\nUPDATE t2 SET b=57546 WHERE a=21142;\nUPDATE t2 SET b=74594 WHERE a=21143;\nUPDATE t2 SET b=84695 WHERE a=21144;\nUPDATE t2 SET b=49721 WHERE a=21145;\nUPDATE t2 SET b=50165 WHERE a=21146;\nUPDATE t2 SET b=72947 WHERE a=21147;\nUPDATE t2 SET b=32656 WHERE a=21148;\nUPDATE t2 SET b=86545 WHERE a=21149;\nUPDATE t2 SET b=70240 WHERE a=21150;\nUPDATE t2 SET b=5891 WHERE a=21151;\nUPDATE t2 SET b=44074 WHERE a=21152;\nUPDATE t2 SET b=40630 WHERE a=21153;\nUPDATE t2 SET b=22611 WHERE a=21154;\nUPDATE t2 SET b=86031 WHERE a=21155;\nUPDATE t2 SET b=23123 WHERE a=21156;\nUPDATE t2 SET b=98507 WHERE a=21157;\nUPDATE t2 SET b=1591 WHERE a=21158;\nUPDATE t2 SET b=37233 WHERE a=21159;\nUPDATE t2 SET b=54716 WHERE a=21160;\nUPDATE t2 SET b=50283 WHERE a=21161;\nUPDATE t2 SET b=67898 WHERE a=21162;\nUPDATE t2 SET b=70601 WHERE a=21163;\nUPDATE t2 SET b=23388 WHERE a=21164;\nUPDATE t2 SET b=43428 WHERE a=21165;\nUPDATE t2 SET b=62165 WHERE a=21166;\nUPDATE t2 SET b=53738 WHERE a=21167;\nUPDATE t2 SET b=37113 WHERE a=21168;\nUPDATE t2 SET b=49420 WHERE a=21169;\nUPDATE t2 SET b=72142 WHERE a=21170;\nUPDATE t2 SET b=93344 WHERE a=21171;\nUPDATE t2 SET b=70956 WHERE a=21172;\nUPDATE t2 SET b=70848 WHERE a=21173;\nUPDATE t2 SET b=99438 WHERE a=21174;\nUPDATE t2 SET b=68131 WHERE a=21175;\nUPDATE t2 SET b=6286 WHERE a=21176;\nUPDATE t2 SET b=26456 WHERE a=21177;\nUPDATE t2 SET b=63815 WHERE a=21178;\nUPDATE t2 SET b=43039 WHERE a=21179;\nUPDATE t2 SET b=28472 WHERE a=21180;\nUPDATE t2 SET b=29755 WHERE a=21181;\nUPDATE t2 SET b=42173 WHERE a=21182;\nUPDATE t2 SET b=33833 WHERE a=21183;\nUPDATE t2 SET b=25064 WHERE a=21184;\nUPDATE t2 SET b=99137 WHERE a=21185;\nUPDATE t2 SET b=70421 WHERE a=21186;\nUPDATE t2 SET b=64483 WHERE a=21187;\nUPDATE t2 SET b=80263 WHERE a=21188;\nUPDATE t2 SET b=16130 WHERE a=21189;\nUPDATE t2 SET b=74877 WHERE a=21190;\nUPDATE t2 SET b=80523 WHERE a=21191;\nUPDATE t2 SET b=2978 WHERE a=21192;\nUPDATE t2 SET b=63848 WHERE a=21193;\nUPDATE t2 SET b=2426 WHERE a=21194;\nUPDATE t2 SET b=58109 WHERE a=21195;\nUPDATE t2 SET b=36579 WHERE a=21196;\nUPDATE t2 SET b=82169 WHERE a=21197;\nUPDATE t2 SET b=42299 WHERE a=21198;\nUPDATE t2 SET b=43063 WHERE a=21199;\nUPDATE t2 SET b=10853 WHERE a=21200;\nUPDATE t2 SET b=43885 WHERE a=21201;\nUPDATE t2 SET b=82248 WHERE a=21202;\nUPDATE t2 SET b=79958 WHERE a=21203;\nUPDATE t2 SET b=13563 WHERE a=21204;\nUPDATE t2 SET b=12599 WHERE a=21205;\nUPDATE t2 SET b=61231 WHERE a=21206;\nUPDATE t2 SET b=78 WHERE a=21207;\nUPDATE t2 SET b=67334 WHERE a=21208;\nUPDATE t2 SET b=89867 WHERE a=21209;\nUPDATE t2 SET b=53978 WHERE a=21210;\nUPDATE t2 SET b=40152 WHERE a=21211;\nUPDATE t2 SET b=49864 WHERE a=21212;\nUPDATE t2 SET b=56188 WHERE a=21213;\nUPDATE t2 SET b=13412 WHERE a=21214;\nUPDATE t2 SET b=94604 WHERE a=21215;\nUPDATE t2 SET b=77113 WHERE a=21216;\nUPDATE t2 SET b=26583 WHERE a=21217;\nUPDATE t2 SET b=3550 WHERE a=21218;\nUPDATE t2 SET b=63367 WHERE a=21219;\nUPDATE t2 SET b=19946 WHERE a=21220;\nUPDATE t2 SET b=71107 WHERE a=21221;\nUPDATE t2 SET b=59255 WHERE a=21222;\nUPDATE t2 SET b=61467 WHERE a=21223;\nUPDATE t2 SET b=63189 WHERE a=21224;\nUPDATE t2 SET b=84567 WHERE a=21225;\nUPDATE t2 SET b=27891 WHERE a=21226;\nUPDATE t2 SET b=79127 WHERE a=21227;\nUPDATE t2 SET b=34060 WHERE a=21228;\nUPDATE t2 SET b=89709 WHERE a=21229;\nUPDATE t2 SET b=50132 WHERE a=21230;\nUPDATE t2 SET b=60423 WHERE a=21231;\nUPDATE t2 SET b=60268 WHERE a=21232;\nUPDATE t2 SET b=90276 WHERE a=21233;\nUPDATE t2 SET b=44328 WHERE a=21234;\nUPDATE t2 SET b=71738 WHERE a=21235;\nUPDATE t2 SET b=84812 WHERE a=21236;\nUPDATE t2 SET b=26288 WHERE a=21237;\nUPDATE t2 SET b=57273 WHERE a=21238;\nUPDATE t2 SET b=98501 WHERE a=21239;\nUPDATE t2 SET b=17172 WHERE a=21240;\nUPDATE t2 SET b=81867 WHERE a=21241;\nUPDATE t2 SET b=53342 WHERE a=21242;\nUPDATE t2 SET b=85139 WHERE a=21243;\nUPDATE t2 SET b=12718 WHERE a=21244;\nUPDATE t2 SET b=65307 WHERE a=21245;\nUPDATE t2 SET b=20724 WHERE a=21246;\nUPDATE t2 SET b=27502 WHERE a=21247;\nUPDATE t2 SET b=60995 WHERE a=21248;\nUPDATE t2 SET b=4519 WHERE a=21249;\nUPDATE t2 SET b=57566 WHERE a=21250;\nUPDATE t2 SET b=80489 WHERE a=21251;\nUPDATE t2 SET b=88419 WHERE a=21252;\nUPDATE t2 SET b=16411 WHERE a=21253;\nUPDATE t2 SET b=21309 WHERE a=21254;\nUPDATE t2 SET b=70965 WHERE a=21255;\nUPDATE t2 SET b=57369 WHERE a=21256;\nUPDATE t2 SET b=99390 WHERE a=21257;\nUPDATE t2 SET b=70699 WHERE a=21258;\nUPDATE t2 SET b=23494 WHERE a=21259;\nUPDATE t2 SET b=68953 WHERE a=21260;\nUPDATE t2 SET b=15715 WHERE a=21261;\nUPDATE t2 SET b=26634 WHERE a=21262;\nUPDATE t2 SET b=84567 WHERE a=21263;\nUPDATE t2 SET b=95286 WHERE a=21264;\nUPDATE t2 SET b=70738 WHERE a=21265;\nUPDATE t2 SET b=90350 WHERE a=21266;\nUPDATE t2 SET b=33513 WHERE a=21267;\nUPDATE t2 SET b=79891 WHERE a=21268;\nUPDATE t2 SET b=27734 WHERE a=21269;\nUPDATE t2 SET b=82928 WHERE a=21270;\nUPDATE t2 SET b=8184 WHERE a=21271;\nUPDATE t2 SET b=39474 WHERE a=21272;\nUPDATE t2 SET b=76323 WHERE a=21273;\nUPDATE t2 SET b=67595 WHERE a=21274;\nUPDATE t2 SET b=97746 WHERE a=21275;\nUPDATE t2 SET b=50578 WHERE a=21276;\nUPDATE t2 SET b=69059 WHERE a=21277;\nUPDATE t2 SET b=43623 WHERE a=21278;\nUPDATE t2 SET b=77116 WHERE a=21279;\nUPDATE t2 SET b=56691 WHERE a=21280;\nUPDATE t2 SET b=3579 WHERE a=21281;\nUPDATE t2 SET b=47075 WHERE a=21282;\nUPDATE t2 SET b=8320 WHERE a=21283;\nUPDATE t2 SET b=28647 WHERE a=21284;\nUPDATE t2 SET b=361 WHERE a=21285;\nUPDATE t2 SET b=89362 WHERE a=21286;\nUPDATE t2 SET b=8829 WHERE a=21287;\nUPDATE t2 SET b=26920 WHERE a=21288;\nUPDATE t2 SET b=74590 WHERE a=21289;\nUPDATE t2 SET b=28586 WHERE a=21290;\nUPDATE t2 SET b=20587 WHERE a=21291;\nUPDATE t2 SET b=62484 WHERE a=21292;\nUPDATE t2 SET b=97682 WHERE a=21293;\nUPDATE t2 SET b=70118 WHERE a=21294;\nUPDATE t2 SET b=11563 WHERE a=21295;\nUPDATE t2 SET b=9849 WHERE a=21296;\nUPDATE t2 SET b=11993 WHERE a=21297;\nUPDATE t2 SET b=1124 WHERE a=21298;\nUPDATE t2 SET b=43508 WHERE a=21299;\nUPDATE t2 SET b=10318 WHERE a=21300;\nUPDATE t2 SET b=72144 WHERE a=21301;\nUPDATE t2 SET b=98146 WHERE a=21302;\nUPDATE t2 SET b=74099 WHERE a=21303;\nUPDATE t2 SET b=28281 WHERE a=21304;\nUPDATE t2 SET b=19416 WHERE a=21305;\nUPDATE t2 SET b=36204 WHERE a=21306;\nUPDATE t2 SET b=92613 WHERE a=21307;\nUPDATE t2 SET b=66513 WHERE a=21308;\nUPDATE t2 SET b=88398 WHERE a=21309;\nUPDATE t2 SET b=90702 WHERE a=21310;\nUPDATE t2 SET b=79992 WHERE a=21311;\nUPDATE t2 SET b=9107 WHERE a=21312;\nUPDATE t2 SET b=4560 WHERE a=21313;\nUPDATE t2 SET b=93972 WHERE a=21314;\nUPDATE t2 SET b=49150 WHERE a=21315;\nUPDATE t2 SET b=23459 WHERE a=21316;\nUPDATE t2 SET b=52128 WHERE a=21317;\nUPDATE t2 SET b=82598 WHERE a=21318;\nUPDATE t2 SET b=86199 WHERE a=21319;\nUPDATE t2 SET b=40683 WHERE a=21320;\nUPDATE t2 SET b=64843 WHERE a=21321;\nUPDATE t2 SET b=46827 WHERE a=21322;\nUPDATE t2 SET b=50498 WHERE a=21323;\nUPDATE t2 SET b=33532 WHERE a=21324;\nUPDATE t2 SET b=37438 WHERE a=21325;\nUPDATE t2 SET b=48685 WHERE a=21326;\nUPDATE t2 SET b=50905 WHERE a=21327;\nUPDATE t2 SET b=30413 WHERE a=21328;\nUPDATE t2 SET b=32871 WHERE a=21329;\nUPDATE t2 SET b=9867 WHERE a=21330;\nUPDATE t2 SET b=20139 WHERE a=21331;\nUPDATE t2 SET b=67120 WHERE a=21332;\nUPDATE t2 SET b=14338 WHERE a=21333;\nUPDATE t2 SET b=22517 WHERE a=21334;\nUPDATE t2 SET b=94224 WHERE a=21335;\nUPDATE t2 SET b=19194 WHERE a=21336;\nUPDATE t2 SET b=96920 WHERE a=21337;\nUPDATE t2 SET b=4270 WHERE a=21338;\nUPDATE t2 SET b=730 WHERE a=21339;\nUPDATE t2 SET b=47646 WHERE a=21340;\nUPDATE t2 SET b=14244 WHERE a=21341;\nUPDATE t2 SET b=17551 WHERE a=21342;\nUPDATE t2 SET b=95103 WHERE a=21343;\nUPDATE t2 SET b=5495 WHERE a=21344;\nUPDATE t2 SET b=49325 WHERE a=21345;\nUPDATE t2 SET b=39142 WHERE a=21346;\nUPDATE t2 SET b=70791 WHERE a=21347;\nUPDATE t2 SET b=45094 WHERE a=21348;\nUPDATE t2 SET b=75638 WHERE a=21349;\nUPDATE t2 SET b=31713 WHERE a=21350;\nUPDATE t2 SET b=90321 WHERE a=21351;\nUPDATE t2 SET b=89124 WHERE a=21352;\nUPDATE t2 SET b=66682 WHERE a=21353;\nUPDATE t2 SET b=21567 WHERE a=21354;\nUPDATE t2 SET b=40680 WHERE a=21355;\nUPDATE t2 SET b=73144 WHERE a=21356;\nUPDATE t2 SET b=9874 WHERE a=21357;\nUPDATE t2 SET b=27352 WHERE a=21358;\nUPDATE t2 SET b=35543 WHERE a=21359;\nUPDATE t2 SET b=43258 WHERE a=21360;\nUPDATE t2 SET b=16445 WHERE a=21361;\nUPDATE t2 SET b=28967 WHERE a=21362;\nUPDATE t2 SET b=11023 WHERE a=21363;\nUPDATE t2 SET b=17747 WHERE a=21364;\nUPDATE t2 SET b=6783 WHERE a=21365;\nUPDATE t2 SET b=95122 WHERE a=21366;\nUPDATE t2 SET b=3151 WHERE a=21367;\nUPDATE t2 SET b=87924 WHERE a=21368;\nUPDATE t2 SET b=69569 WHERE a=21369;\nUPDATE t2 SET b=25846 WHERE a=21370;\nUPDATE t2 SET b=63388 WHERE a=21371;\nUPDATE t2 SET b=56855 WHERE a=21372;\nUPDATE t2 SET b=31921 WHERE a=21373;\nUPDATE t2 SET b=63148 WHERE a=21374;\nUPDATE t2 SET b=98095 WHERE a=21375;\nUPDATE t2 SET b=27447 WHERE a=21376;\nUPDATE t2 SET b=38856 WHERE a=21377;\nUPDATE t2 SET b=81276 WHERE a=21378;\nUPDATE t2 SET b=51911 WHERE a=21379;\nUPDATE t2 SET b=13092 WHERE a=21380;\nUPDATE t2 SET b=75979 WHERE a=21381;\nUPDATE t2 SET b=47140 WHERE a=21382;\nUPDATE t2 SET b=41813 WHERE a=21383;\nUPDATE t2 SET b=30711 WHERE a=21384;\nUPDATE t2 SET b=15885 WHERE a=21385;\nUPDATE t2 SET b=71366 WHERE a=21386;\nUPDATE t2 SET b=39176 WHERE a=21387;\nUPDATE t2 SET b=92674 WHERE a=21388;\nUPDATE t2 SET b=17521 WHERE a=21389;\nUPDATE t2 SET b=96959 WHERE a=21390;\nUPDATE t2 SET b=1905 WHERE a=21391;\nUPDATE t2 SET b=19602 WHERE a=21392;\nUPDATE t2 SET b=93324 WHERE a=21393;\nUPDATE t2 SET b=89978 WHERE a=21394;\nUPDATE t2 SET b=3474 WHERE a=21395;\nUPDATE t2 SET b=11405 WHERE a=21396;\nUPDATE t2 SET b=38725 WHERE a=21397;\nUPDATE t2 SET b=3308 WHERE a=21398;\nUPDATE t2 SET b=34152 WHERE a=21399;\nUPDATE t2 SET b=15227 WHERE a=21400;\nUPDATE t2 SET b=71392 WHERE a=21401;\nUPDATE t2 SET b=4450 WHERE a=21402;\nUPDATE t2 SET b=3447 WHERE a=21403;\nUPDATE t2 SET b=97568 WHERE a=21404;\nUPDATE t2 SET b=86121 WHERE a=21405;\nUPDATE t2 SET b=89456 WHERE a=21406;\nUPDATE t2 SET b=57662 WHERE a=21407;\nUPDATE t2 SET b=45671 WHERE a=21408;\nUPDATE t2 SET b=28938 WHERE a=21409;\nUPDATE t2 SET b=29529 WHERE a=21410;\nUPDATE t2 SET b=79928 WHERE a=21411;\nUPDATE t2 SET b=66365 WHERE a=21412;\nUPDATE t2 SET b=79489 WHERE a=21413;\nUPDATE t2 SET b=87068 WHERE a=21414;\nUPDATE t2 SET b=31802 WHERE a=21415;\nUPDATE t2 SET b=9399 WHERE a=21416;\nUPDATE t2 SET b=63411 WHERE a=21417;\nUPDATE t2 SET b=30475 WHERE a=21418;\nUPDATE t2 SET b=1780 WHERE a=21419;\nUPDATE t2 SET b=51361 WHERE a=21420;\nUPDATE t2 SET b=32844 WHERE a=21421;\nUPDATE t2 SET b=48259 WHERE a=21422;\nUPDATE t2 SET b=5094 WHERE a=21423;\nUPDATE t2 SET b=27506 WHERE a=21424;\nUPDATE t2 SET b=41344 WHERE a=21425;\nUPDATE t2 SET b=30840 WHERE a=21426;\nUPDATE t2 SET b=98500 WHERE a=21427;\nUPDATE t2 SET b=40431 WHERE a=21428;\nUPDATE t2 SET b=12042 WHERE a=21429;\nUPDATE t2 SET b=90795 WHERE a=21430;\nUPDATE t2 SET b=83638 WHERE a=21431;\nUPDATE t2 SET b=38713 WHERE a=21432;\nUPDATE t2 SET b=30890 WHERE a=21433;\nUPDATE t2 SET b=4609 WHERE a=21434;\nUPDATE t2 SET b=94899 WHERE a=21435;\nUPDATE t2 SET b=82216 WHERE a=21436;\nUPDATE t2 SET b=10561 WHERE a=21437;\nUPDATE t2 SET b=46841 WHERE a=21438;\nUPDATE t2 SET b=932 WHERE a=21439;\nUPDATE t2 SET b=763 WHERE a=21440;\nUPDATE t2 SET b=68665 WHERE a=21441;\nUPDATE t2 SET b=68750 WHERE a=21442;\nUPDATE t2 SET b=33639 WHERE a=21443;\nUPDATE t2 SET b=1545 WHERE a=21444;\nUPDATE t2 SET b=61017 WHERE a=21445;\nUPDATE t2 SET b=16940 WHERE a=21446;\nUPDATE t2 SET b=44940 WHERE a=21447;\nUPDATE t2 SET b=93509 WHERE a=21448;\nUPDATE t2 SET b=68547 WHERE a=21449;\nUPDATE t2 SET b=84646 WHERE a=21450;\nUPDATE t2 SET b=18054 WHERE a=21451;\nUPDATE t2 SET b=94335 WHERE a=21452;\nUPDATE t2 SET b=12076 WHERE a=21453;\nUPDATE t2 SET b=51573 WHERE a=21454;\nUPDATE t2 SET b=33729 WHERE a=21455;\nUPDATE t2 SET b=80438 WHERE a=21456;\nUPDATE t2 SET b=91590 WHERE a=21457;\nUPDATE t2 SET b=54205 WHERE a=21458;\nUPDATE t2 SET b=90070 WHERE a=21459;\nUPDATE t2 SET b=68203 WHERE a=21460;\nUPDATE t2 SET b=6697 WHERE a=21461;\nUPDATE t2 SET b=7601 WHERE a=21462;\nUPDATE t2 SET b=79277 WHERE a=21463;\nUPDATE t2 SET b=12845 WHERE a=21464;\nUPDATE t2 SET b=12550 WHERE a=21465;\nUPDATE t2 SET b=22424 WHERE a=21466;\nUPDATE t2 SET b=98315 WHERE a=21467;\nUPDATE t2 SET b=25051 WHERE a=21468;\nUPDATE t2 SET b=46655 WHERE a=21469;\nUPDATE t2 SET b=28235 WHERE a=21470;\nUPDATE t2 SET b=95229 WHERE a=21471;\nUPDATE t2 SET b=804 WHERE a=21472;\nUPDATE t2 SET b=83450 WHERE a=21473;\nUPDATE t2 SET b=53516 WHERE a=21474;\nUPDATE t2 SET b=55645 WHERE a=21475;\nUPDATE t2 SET b=90538 WHERE a=21476;\nUPDATE t2 SET b=67380 WHERE a=21477;\nUPDATE t2 SET b=79498 WHERE a=21478;\nUPDATE t2 SET b=27726 WHERE a=21479;\nUPDATE t2 SET b=57881 WHERE a=21480;\nUPDATE t2 SET b=53998 WHERE a=21481;\nUPDATE t2 SET b=68510 WHERE a=21482;\nUPDATE t2 SET b=76151 WHERE a=21483;\nUPDATE t2 SET b=56272 WHERE a=21484;\nUPDATE t2 SET b=55152 WHERE a=21485;\nUPDATE t2 SET b=47743 WHERE a=21486;\nUPDATE t2 SET b=87823 WHERE a=21487;\nUPDATE t2 SET b=66511 WHERE a=21488;\nUPDATE t2 SET b=26215 WHERE a=21489;\nUPDATE t2 SET b=64508 WHERE a=21490;\nUPDATE t2 SET b=10029 WHERE a=21491;\nUPDATE t2 SET b=12143 WHERE a=21492;\nUPDATE t2 SET b=23892 WHERE a=21493;\nUPDATE t2 SET b=23809 WHERE a=21494;\nUPDATE t2 SET b=86988 WHERE a=21495;\nUPDATE t2 SET b=13822 WHERE a=21496;\nUPDATE t2 SET b=13299 WHERE a=21497;\nUPDATE t2 SET b=97830 WHERE a=21498;\nUPDATE t2 SET b=84921 WHERE a=21499;\nUPDATE t2 SET b=98918 WHERE a=21500;\nUPDATE t2 SET b=72832 WHERE a=21501;\nUPDATE t2 SET b=41796 WHERE a=21502;\nUPDATE t2 SET b=20082 WHERE a=21503;\nUPDATE t2 SET b=27524 WHERE a=21504;\nUPDATE t2 SET b=69431 WHERE a=21505;\nUPDATE t2 SET b=15358 WHERE a=21506;\nUPDATE t2 SET b=10549 WHERE a=21507;\nUPDATE t2 SET b=42155 WHERE a=21508;\nUPDATE t2 SET b=5441 WHERE a=21509;\nUPDATE t2 SET b=73754 WHERE a=21510;\nUPDATE t2 SET b=36615 WHERE a=21511;\nUPDATE t2 SET b=87280 WHERE a=21512;\nUPDATE t2 SET b=76557 WHERE a=21513;\nUPDATE t2 SET b=7843 WHERE a=21514;\nUPDATE t2 SET b=39387 WHERE a=21515;\nUPDATE t2 SET b=56959 WHERE a=21516;\nUPDATE t2 SET b=66305 WHERE a=21517;\nUPDATE t2 SET b=81125 WHERE a=21518;\nUPDATE t2 SET b=54071 WHERE a=21519;\nUPDATE t2 SET b=65070 WHERE a=21520;\nUPDATE t2 SET b=38369 WHERE a=21521;\nUPDATE t2 SET b=69623 WHERE a=21522;\nUPDATE t2 SET b=72421 WHERE a=21523;\nUPDATE t2 SET b=83917 WHERE a=21524;\nUPDATE t2 SET b=36118 WHERE a=21525;\nUPDATE t2 SET b=16041 WHERE a=21526;\nUPDATE t2 SET b=62009 WHERE a=21527;\nUPDATE t2 SET b=50402 WHERE a=21528;\nUPDATE t2 SET b=85444 WHERE a=21529;\nUPDATE t2 SET b=17404 WHERE a=21530;\nUPDATE t2 SET b=44638 WHERE a=21531;\nUPDATE t2 SET b=90828 WHERE a=21532;\nUPDATE t2 SET b=66687 WHERE a=21533;\nUPDATE t2 SET b=62570 WHERE a=21534;\nUPDATE t2 SET b=85946 WHERE a=21535;\nUPDATE t2 SET b=95777 WHERE a=21536;\nUPDATE t2 SET b=21727 WHERE a=21537;\nUPDATE t2 SET b=80227 WHERE a=21538;\nUPDATE t2 SET b=56641 WHERE a=21539;\nUPDATE t2 SET b=41138 WHERE a=21540;\nUPDATE t2 SET b=17809 WHERE a=21541;\nUPDATE t2 SET b=55739 WHERE a=21542;\nUPDATE t2 SET b=55456 WHERE a=21543;\nUPDATE t2 SET b=90496 WHERE a=21544;\nUPDATE t2 SET b=58085 WHERE a=21545;\nUPDATE t2 SET b=19047 WHERE a=21546;\nUPDATE t2 SET b=66980 WHERE a=21547;\nUPDATE t2 SET b=27056 WHERE a=21548;\nUPDATE t2 SET b=15080 WHERE a=21549;\nUPDATE t2 SET b=710 WHERE a=21550;\nUPDATE t2 SET b=55376 WHERE a=21551;\nUPDATE t2 SET b=85134 WHERE a=21552;\nUPDATE t2 SET b=68700 WHERE a=21553;\nUPDATE t2 SET b=63113 WHERE a=21554;\nUPDATE t2 SET b=30589 WHERE a=21555;\nUPDATE t2 SET b=8406 WHERE a=21556;\nUPDATE t2 SET b=19453 WHERE a=21557;\nUPDATE t2 SET b=27128 WHERE a=21558;\nUPDATE t2 SET b=4405 WHERE a=21559;\nUPDATE t2 SET b=95982 WHERE a=21560;\nUPDATE t2 SET b=88194 WHERE a=21561;\nUPDATE t2 SET b=13289 WHERE a=21562;\nUPDATE t2 SET b=45760 WHERE a=21563;\nUPDATE t2 SET b=81296 WHERE a=21564;\nUPDATE t2 SET b=71875 WHERE a=21565;\nUPDATE t2 SET b=87366 WHERE a=21566;\nUPDATE t2 SET b=22545 WHERE a=21567;\nUPDATE t2 SET b=90087 WHERE a=21568;\nUPDATE t2 SET b=39201 WHERE a=21569;\nUPDATE t2 SET b=78108 WHERE a=21570;\nUPDATE t2 SET b=14205 WHERE a=21571;\nUPDATE t2 SET b=53440 WHERE a=21572;\nUPDATE t2 SET b=50360 WHERE a=21573;\nUPDATE t2 SET b=32089 WHERE a=21574;\nUPDATE t2 SET b=82112 WHERE a=21575;\nUPDATE t2 SET b=7086 WHERE a=21576;\nUPDATE t2 SET b=11484 WHERE a=21577;\nUPDATE t2 SET b=50050 WHERE a=21578;\nUPDATE t2 SET b=93240 WHERE a=21579;\nUPDATE t2 SET b=90065 WHERE a=21580;\nUPDATE t2 SET b=17127 WHERE a=21581;\nUPDATE t2 SET b=37335 WHERE a=21582;\nUPDATE t2 SET b=45207 WHERE a=21583;\nUPDATE t2 SET b=35642 WHERE a=21584;\nUPDATE t2 SET b=53198 WHERE a=21585;\nUPDATE t2 SET b=35978 WHERE a=21586;\nUPDATE t2 SET b=49805 WHERE a=21587;\nUPDATE t2 SET b=67920 WHERE a=21588;\nUPDATE t2 SET b=23566 WHERE a=21589;\nUPDATE t2 SET b=71455 WHERE a=21590;\nUPDATE t2 SET b=39479 WHERE a=21591;\nUPDATE t2 SET b=78913 WHERE a=21592;\nUPDATE t2 SET b=82804 WHERE a=21593;\nUPDATE t2 SET b=57391 WHERE a=21594;\nUPDATE t2 SET b=21368 WHERE a=21595;\nUPDATE t2 SET b=85150 WHERE a=21596;\nUPDATE t2 SET b=19139 WHERE a=21597;\nUPDATE t2 SET b=5911 WHERE a=21598;\nUPDATE t2 SET b=37754 WHERE a=21599;\nUPDATE t2 SET b=47590 WHERE a=21600;\nUPDATE t2 SET b=80346 WHERE a=21601;\nUPDATE t2 SET b=86421 WHERE a=21602;\nUPDATE t2 SET b=26194 WHERE a=21603;\nUPDATE t2 SET b=26871 WHERE a=21604;\nUPDATE t2 SET b=54334 WHERE a=21605;\nUPDATE t2 SET b=30068 WHERE a=21606;\nUPDATE t2 SET b=64383 WHERE a=21607;\nUPDATE t2 SET b=64225 WHERE a=21608;\nUPDATE t2 SET b=25589 WHERE a=21609;\nUPDATE t2 SET b=30958 WHERE a=21610;\nUPDATE t2 SET b=2015 WHERE a=21611;\nUPDATE t2 SET b=97280 WHERE a=21612;\nUPDATE t2 SET b=28741 WHERE a=21613;\nUPDATE t2 SET b=11874 WHERE a=21614;\nUPDATE t2 SET b=34929 WHERE a=21615;\nUPDATE t2 SET b=2260 WHERE a=21616;\nUPDATE t2 SET b=27252 WHERE a=21617;\nUPDATE t2 SET b=10522 WHERE a=21618;\nUPDATE t2 SET b=47003 WHERE a=21619;\nUPDATE t2 SET b=38017 WHERE a=21620;\nUPDATE t2 SET b=86853 WHERE a=21621;\nUPDATE t2 SET b=83091 WHERE a=21622;\nUPDATE t2 SET b=16320 WHERE a=21623;\nUPDATE t2 SET b=54782 WHERE a=21624;\nUPDATE t2 SET b=86489 WHERE a=21625;\nUPDATE t2 SET b=34973 WHERE a=21626;\nUPDATE t2 SET b=18558 WHERE a=21627;\nUPDATE t2 SET b=21828 WHERE a=21628;\nUPDATE t2 SET b=42773 WHERE a=21629;\nUPDATE t2 SET b=50892 WHERE a=21630;\nUPDATE t2 SET b=55755 WHERE a=21631;\nUPDATE t2 SET b=7221 WHERE a=21632;\nUPDATE t2 SET b=53283 WHERE a=21633;\nUPDATE t2 SET b=56278 WHERE a=21634;\nUPDATE t2 SET b=14189 WHERE a=21635;\nUPDATE t2 SET b=85839 WHERE a=21636;\nUPDATE t2 SET b=73144 WHERE a=21637;\nUPDATE t2 SET b=25554 WHERE a=21638;\nUPDATE t2 SET b=65347 WHERE a=21639;\nUPDATE t2 SET b=63678 WHERE a=21640;\nUPDATE t2 SET b=76569 WHERE a=21641;\nUPDATE t2 SET b=27915 WHERE a=21642;\nUPDATE t2 SET b=38032 WHERE a=21643;\nUPDATE t2 SET b=59375 WHERE a=21644;\nUPDATE t2 SET b=83720 WHERE a=21645;\nUPDATE t2 SET b=85712 WHERE a=21646;\nUPDATE t2 SET b=27008 WHERE a=21647;\nUPDATE t2 SET b=34142 WHERE a=21648;\nUPDATE t2 SET b=81458 WHERE a=21649;\nUPDATE t2 SET b=4724 WHERE a=21650;\nUPDATE t2 SET b=2109 WHERE a=21651;\nUPDATE t2 SET b=36021 WHERE a=21652;\nUPDATE t2 SET b=82144 WHERE a=21653;\nUPDATE t2 SET b=46840 WHERE a=21654;\nUPDATE t2 SET b=85932 WHERE a=21655;\nUPDATE t2 SET b=937 WHERE a=21656;\nUPDATE t2 SET b=31397 WHERE a=21657;\nUPDATE t2 SET b=92080 WHERE a=21658;\nUPDATE t2 SET b=73979 WHERE a=21659;\nUPDATE t2 SET b=98983 WHERE a=21660;\nUPDATE t2 SET b=18294 WHERE a=21661;\nUPDATE t2 SET b=21634 WHERE a=21662;\nUPDATE t2 SET b=95631 WHERE a=21663;\nUPDATE t2 SET b=64352 WHERE a=21664;\nUPDATE t2 SET b=15253 WHERE a=21665;\nUPDATE t2 SET b=67004 WHERE a=21666;\nUPDATE t2 SET b=85326 WHERE a=21667;\nUPDATE t2 SET b=28566 WHERE a=21668;\nUPDATE t2 SET b=44538 WHERE a=21669;\nUPDATE t2 SET b=38612 WHERE a=21670;\nUPDATE t2 SET b=93422 WHERE a=21671;\nUPDATE t2 SET b=85206 WHERE a=21672;\nUPDATE t2 SET b=82774 WHERE a=21673;\nUPDATE t2 SET b=74774 WHERE a=21674;\nUPDATE t2 SET b=52406 WHERE a=21675;\nUPDATE t2 SET b=63697 WHERE a=21676;\nUPDATE t2 SET b=41192 WHERE a=21677;\nUPDATE t2 SET b=51873 WHERE a=21678;\nUPDATE t2 SET b=34317 WHERE a=21679;\nUPDATE t2 SET b=54400 WHERE a=21680;\nUPDATE t2 SET b=74010 WHERE a=21681;\nUPDATE t2 SET b=21541 WHERE a=21682;\nUPDATE t2 SET b=39397 WHERE a=21683;\nUPDATE t2 SET b=13538 WHERE a=21684;\nUPDATE t2 SET b=92037 WHERE a=21685;\nUPDATE t2 SET b=96706 WHERE a=21686;\nUPDATE t2 SET b=13412 WHERE a=21687;\nUPDATE t2 SET b=53292 WHERE a=21688;\nUPDATE t2 SET b=59584 WHERE a=21689;\nUPDATE t2 SET b=22865 WHERE a=21690;\nUPDATE t2 SET b=85068 WHERE a=21691;\nUPDATE t2 SET b=29672 WHERE a=21692;\nUPDATE t2 SET b=50606 WHERE a=21693;\nUPDATE t2 SET b=32510 WHERE a=21694;\nUPDATE t2 SET b=7961 WHERE a=21695;\nUPDATE t2 SET b=65258 WHERE a=21696;\nUPDATE t2 SET b=5691 WHERE a=21697;\nUPDATE t2 SET b=60236 WHERE a=21698;\nUPDATE t2 SET b=5006 WHERE a=21699;\nUPDATE t2 SET b=97171 WHERE a=21700;\nUPDATE t2 SET b=51598 WHERE a=21701;\nUPDATE t2 SET b=97292 WHERE a=21702;\nUPDATE t2 SET b=46445 WHERE a=21703;\nUPDATE t2 SET b=75579 WHERE a=21704;\nUPDATE t2 SET b=29791 WHERE a=21705;\nUPDATE t2 SET b=27338 WHERE a=21706;\nUPDATE t2 SET b=70261 WHERE a=21707;\nUPDATE t2 SET b=62345 WHERE a=21708;\nUPDATE t2 SET b=10715 WHERE a=21709;\nUPDATE t2 SET b=93148 WHERE a=21710;\nUPDATE t2 SET b=34576 WHERE a=21711;\nUPDATE t2 SET b=67750 WHERE a=21712;\nUPDATE t2 SET b=43559 WHERE a=21713;\nUPDATE t2 SET b=95250 WHERE a=21714;\nUPDATE t2 SET b=82913 WHERE a=21715;\nUPDATE t2 SET b=23615 WHERE a=21716;\nUPDATE t2 SET b=83601 WHERE a=21717;\nUPDATE t2 SET b=92658 WHERE a=21718;\nUPDATE t2 SET b=60656 WHERE a=21719;\nUPDATE t2 SET b=24541 WHERE a=21720;\nUPDATE t2 SET b=99094 WHERE a=21721;\nUPDATE t2 SET b=98880 WHERE a=21722;\nUPDATE t2 SET b=23624 WHERE a=21723;\nUPDATE t2 SET b=33998 WHERE a=21724;\nUPDATE t2 SET b=65271 WHERE a=21725;\nUPDATE t2 SET b=69788 WHERE a=21726;\nUPDATE t2 SET b=22784 WHERE a=21727;\nUPDATE t2 SET b=50170 WHERE a=21728;\nUPDATE t2 SET b=25554 WHERE a=21729;\nUPDATE t2 SET b=92176 WHERE a=21730;\nUPDATE t2 SET b=85683 WHERE a=21731;\nUPDATE t2 SET b=49573 WHERE a=21732;\nUPDATE t2 SET b=29081 WHERE a=21733;\nUPDATE t2 SET b=62719 WHERE a=21734;\nUPDATE t2 SET b=25463 WHERE a=21735;\nUPDATE t2 SET b=82257 WHERE a=21736;\nUPDATE t2 SET b=47249 WHERE a=21737;\nUPDATE t2 SET b=61507 WHERE a=21738;\nUPDATE t2 SET b=80222 WHERE a=21739;\nUPDATE t2 SET b=42997 WHERE a=21740;\nUPDATE t2 SET b=87363 WHERE a=21741;\nUPDATE t2 SET b=54582 WHERE a=21742;\nUPDATE t2 SET b=5204 WHERE a=21743;\nUPDATE t2 SET b=31545 WHERE a=21744;\nUPDATE t2 SET b=93281 WHERE a=21745;\nUPDATE t2 SET b=4068 WHERE a=21746;\nUPDATE t2 SET b=12590 WHERE a=21747;\nUPDATE t2 SET b=81687 WHERE a=21748;\nUPDATE t2 SET b=87316 WHERE a=21749;\nUPDATE t2 SET b=13818 WHERE a=21750;\nUPDATE t2 SET b=19679 WHERE a=21751;\nUPDATE t2 SET b=66 WHERE a=21752;\nUPDATE t2 SET b=19425 WHERE a=21753;\nUPDATE t2 SET b=59908 WHERE a=21754;\nUPDATE t2 SET b=7028 WHERE a=21755;\nUPDATE t2 SET b=16994 WHERE a=21756;\nUPDATE t2 SET b=38935 WHERE a=21757;\nUPDATE t2 SET b=67021 WHERE a=21758;\nUPDATE t2 SET b=53520 WHERE a=21759;\nUPDATE t2 SET b=66628 WHERE a=21760;\nUPDATE t2 SET b=25957 WHERE a=21761;\nUPDATE t2 SET b=96397 WHERE a=21762;\nUPDATE t2 SET b=69677 WHERE a=21763;\nUPDATE t2 SET b=55394 WHERE a=21764;\nUPDATE t2 SET b=76417 WHERE a=21765;\nUPDATE t2 SET b=99162 WHERE a=21766;\nUPDATE t2 SET b=53920 WHERE a=21767;\nUPDATE t2 SET b=63752 WHERE a=21768;\nUPDATE t2 SET b=77380 WHERE a=21769;\nUPDATE t2 SET b=20767 WHERE a=21770;\nUPDATE t2 SET b=67993 WHERE a=21771;\nUPDATE t2 SET b=39298 WHERE a=21772;\nUPDATE t2 SET b=59195 WHERE a=21773;\nUPDATE t2 SET b=56063 WHERE a=21774;\nUPDATE t2 SET b=1160 WHERE a=21775;\nUPDATE t2 SET b=21326 WHERE a=21776;\nUPDATE t2 SET b=17099 WHERE a=21777;\nUPDATE t2 SET b=1323 WHERE a=21778;\nUPDATE t2 SET b=50850 WHERE a=21779;\nUPDATE t2 SET b=70489 WHERE a=21780;\nUPDATE t2 SET b=92984 WHERE a=21781;\nUPDATE t2 SET b=35174 WHERE a=21782;\nUPDATE t2 SET b=33970 WHERE a=21783;\nUPDATE t2 SET b=62087 WHERE a=21784;\nUPDATE t2 SET b=52437 WHERE a=21785;\nUPDATE t2 SET b=49766 WHERE a=21786;\nUPDATE t2 SET b=70641 WHERE a=21787;\nUPDATE t2 SET b=18331 WHERE a=21788;\nUPDATE t2 SET b=5406 WHERE a=21789;\nUPDATE t2 SET b=72621 WHERE a=21790;\nUPDATE t2 SET b=7091 WHERE a=21791;\nUPDATE t2 SET b=1491 WHERE a=21792;\nUPDATE t2 SET b=68853 WHERE a=21793;\nUPDATE t2 SET b=44997 WHERE a=21794;\nUPDATE t2 SET b=14597 WHERE a=21795;\nUPDATE t2 SET b=15036 WHERE a=21796;\nUPDATE t2 SET b=62257 WHERE a=21797;\nUPDATE t2 SET b=27247 WHERE a=21798;\nUPDATE t2 SET b=44016 WHERE a=21799;\nUPDATE t2 SET b=84212 WHERE a=21800;\nUPDATE t2 SET b=96335 WHERE a=21801;\nUPDATE t2 SET b=84868 WHERE a=21802;\nUPDATE t2 SET b=81212 WHERE a=21803;\nUPDATE t2 SET b=86514 WHERE a=21804;\nUPDATE t2 SET b=85108 WHERE a=21805;\nUPDATE t2 SET b=19940 WHERE a=21806;\nUPDATE t2 SET b=82324 WHERE a=21807;\nUPDATE t2 SET b=70054 WHERE a=21808;\nUPDATE t2 SET b=77812 WHERE a=21809;\nUPDATE t2 SET b=3562 WHERE a=21810;\nUPDATE t2 SET b=89605 WHERE a=21811;\nUPDATE t2 SET b=37026 WHERE a=21812;\nUPDATE t2 SET b=37806 WHERE a=21813;\nUPDATE t2 SET b=15117 WHERE a=21814;\nUPDATE t2 SET b=74481 WHERE a=21815;\nUPDATE t2 SET b=45885 WHERE a=21816;\nUPDATE t2 SET b=6718 WHERE a=21817;\nUPDATE t2 SET b=48798 WHERE a=21818;\nUPDATE t2 SET b=23327 WHERE a=21819;\nUPDATE t2 SET b=3587 WHERE a=21820;\nUPDATE t2 SET b=53053 WHERE a=21821;\nUPDATE t2 SET b=341 WHERE a=21822;\nUPDATE t2 SET b=92040 WHERE a=21823;\nUPDATE t2 SET b=59463 WHERE a=21824;\nUPDATE t2 SET b=75409 WHERE a=21825;\nUPDATE t2 SET b=20639 WHERE a=21826;\nUPDATE t2 SET b=53359 WHERE a=21827;\nUPDATE t2 SET b=34397 WHERE a=21828;\nUPDATE t2 SET b=28962 WHERE a=21829;\nUPDATE t2 SET b=45648 WHERE a=21830;\nUPDATE t2 SET b=53670 WHERE a=21831;\nUPDATE t2 SET b=66276 WHERE a=21832;\nUPDATE t2 SET b=23466 WHERE a=21833;\nUPDATE t2 SET b=33507 WHERE a=21834;\nUPDATE t2 SET b=38978 WHERE a=21835;\nUPDATE t2 SET b=42273 WHERE a=21836;\nUPDATE t2 SET b=85372 WHERE a=21837;\nUPDATE t2 SET b=5436 WHERE a=21838;\nUPDATE t2 SET b=5805 WHERE a=21839;\nUPDATE t2 SET b=19256 WHERE a=21840;\nUPDATE t2 SET b=71123 WHERE a=21841;\nUPDATE t2 SET b=4536 WHERE a=21842;\nUPDATE t2 SET b=79068 WHERE a=21843;\nUPDATE t2 SET b=65796 WHERE a=21844;\nUPDATE t2 SET b=98641 WHERE a=21845;\nUPDATE t2 SET b=2997 WHERE a=21846;\nUPDATE t2 SET b=60071 WHERE a=21847;\nUPDATE t2 SET b=50629 WHERE a=21848;\nUPDATE t2 SET b=65092 WHERE a=21849;\nUPDATE t2 SET b=9771 WHERE a=21850;\nUPDATE t2 SET b=73415 WHERE a=21851;\nUPDATE t2 SET b=48336 WHERE a=21852;\nUPDATE t2 SET b=14166 WHERE a=21853;\nUPDATE t2 SET b=89832 WHERE a=21854;\nUPDATE t2 SET b=26708 WHERE a=21855;\nUPDATE t2 SET b=46645 WHERE a=21856;\nUPDATE t2 SET b=51518 WHERE a=21857;\nUPDATE t2 SET b=52844 WHERE a=21858;\nUPDATE t2 SET b=99611 WHERE a=21859;\nUPDATE t2 SET b=94363 WHERE a=21860;\nUPDATE t2 SET b=97370 WHERE a=21861;\nUPDATE t2 SET b=32667 WHERE a=21862;\nUPDATE t2 SET b=15440 WHERE a=21863;\nUPDATE t2 SET b=35509 WHERE a=21864;\nUPDATE t2 SET b=96726 WHERE a=21865;\nUPDATE t2 SET b=37431 WHERE a=21866;\nUPDATE t2 SET b=68189 WHERE a=21867;\nUPDATE t2 SET b=63583 WHERE a=21868;\nUPDATE t2 SET b=34887 WHERE a=21869;\nUPDATE t2 SET b=4191 WHERE a=21870;\nUPDATE t2 SET b=10315 WHERE a=21871;\nUPDATE t2 SET b=7016 WHERE a=21872;\nUPDATE t2 SET b=12057 WHERE a=21873;\nUPDATE t2 SET b=44545 WHERE a=21874;\nUPDATE t2 SET b=3918 WHERE a=21875;\nUPDATE t2 SET b=12003 WHERE a=21876;\nUPDATE t2 SET b=3797 WHERE a=21877;\nUPDATE t2 SET b=78527 WHERE a=21878;\nUPDATE t2 SET b=2321 WHERE a=21879;\nUPDATE t2 SET b=20972 WHERE a=21880;\nUPDATE t2 SET b=35175 WHERE a=21881;\nUPDATE t2 SET b=20944 WHERE a=21882;\nUPDATE t2 SET b=81233 WHERE a=21883;\nUPDATE t2 SET b=29384 WHERE a=21884;\nUPDATE t2 SET b=65524 WHERE a=21885;\nUPDATE t2 SET b=27367 WHERE a=21886;\nUPDATE t2 SET b=1023 WHERE a=21887;\nUPDATE t2 SET b=31580 WHERE a=21888;\nUPDATE t2 SET b=73681 WHERE a=21889;\nUPDATE t2 SET b=54534 WHERE a=21890;\nUPDATE t2 SET b=25639 WHERE a=21891;\nUPDATE t2 SET b=98190 WHERE a=21892;\nUPDATE t2 SET b=55800 WHERE a=21893;\nUPDATE t2 SET b=93042 WHERE a=21894;\nUPDATE t2 SET b=79767 WHERE a=21895;\nUPDATE t2 SET b=28332 WHERE a=21896;\nUPDATE t2 SET b=37692 WHERE a=21897;\nUPDATE t2 SET b=6056 WHERE a=21898;\nUPDATE t2 SET b=69968 WHERE a=21899;\nUPDATE t2 SET b=14250 WHERE a=21900;\nUPDATE t2 SET b=85024 WHERE a=21901;\nUPDATE t2 SET b=39741 WHERE a=21902;\nUPDATE t2 SET b=16890 WHERE a=21903;\nUPDATE t2 SET b=44769 WHERE a=21904;\nUPDATE t2 SET b=52961 WHERE a=21905;\nUPDATE t2 SET b=38460 WHERE a=21906;\nUPDATE t2 SET b=37567 WHERE a=21907;\nUPDATE t2 SET b=86489 WHERE a=21908;\nUPDATE t2 SET b=82968 WHERE a=21909;\nUPDATE t2 SET b=72674 WHERE a=21910;\nUPDATE t2 SET b=96146 WHERE a=21911;\nUPDATE t2 SET b=23494 WHERE a=21912;\nUPDATE t2 SET b=4281 WHERE a=21913;\nUPDATE t2 SET b=13652 WHERE a=21914;\nUPDATE t2 SET b=41638 WHERE a=21915;\nUPDATE t2 SET b=78370 WHERE a=21916;\nUPDATE t2 SET b=17405 WHERE a=21917;\nUPDATE t2 SET b=94262 WHERE a=21918;\nUPDATE t2 SET b=17897 WHERE a=21919;\nUPDATE t2 SET b=78513 WHERE a=21920;\nUPDATE t2 SET b=1741 WHERE a=21921;\nUPDATE t2 SET b=46582 WHERE a=21922;\nUPDATE t2 SET b=28128 WHERE a=21923;\nUPDATE t2 SET b=96420 WHERE a=21924;\nUPDATE t2 SET b=44952 WHERE a=21925;\nUPDATE t2 SET b=42481 WHERE a=21926;\nUPDATE t2 SET b=63524 WHERE a=21927;\nUPDATE t2 SET b=92905 WHERE a=21928;\nUPDATE t2 SET b=43487 WHERE a=21929;\nUPDATE t2 SET b=42658 WHERE a=21930;\nUPDATE t2 SET b=90617 WHERE a=21931;\nUPDATE t2 SET b=23689 WHERE a=21932;\nUPDATE t2 SET b=49203 WHERE a=21933;\nUPDATE t2 SET b=253 WHERE a=21934;\nUPDATE t2 SET b=65598 WHERE a=21935;\nUPDATE t2 SET b=53651 WHERE a=21936;\nUPDATE t2 SET b=43124 WHERE a=21937;\nUPDATE t2 SET b=32708 WHERE a=21938;\nUPDATE t2 SET b=89649 WHERE a=21939;\nUPDATE t2 SET b=4497 WHERE a=21940;\nUPDATE t2 SET b=22689 WHERE a=21941;\nUPDATE t2 SET b=17970 WHERE a=21942;\nUPDATE t2 SET b=63590 WHERE a=21943;\nUPDATE t2 SET b=31079 WHERE a=21944;\nUPDATE t2 SET b=8948 WHERE a=21945;\nUPDATE t2 SET b=74790 WHERE a=21946;\nUPDATE t2 SET b=74752 WHERE a=21947;\nUPDATE t2 SET b=91525 WHERE a=21948;\nUPDATE t2 SET b=32293 WHERE a=21949;\nUPDATE t2 SET b=40534 WHERE a=21950;\nUPDATE t2 SET b=59333 WHERE a=21951;\nUPDATE t2 SET b=97394 WHERE a=21952;\nUPDATE t2 SET b=5784 WHERE a=21953;\nUPDATE t2 SET b=35818 WHERE a=21954;\nUPDATE t2 SET b=23284 WHERE a=21955;\nUPDATE t2 SET b=99410 WHERE a=21956;\nUPDATE t2 SET b=98182 WHERE a=21957;\nUPDATE t2 SET b=50463 WHERE a=21958;\nUPDATE t2 SET b=66541 WHERE a=21959;\nUPDATE t2 SET b=24021 WHERE a=21960;\nUPDATE t2 SET b=27181 WHERE a=21961;\nUPDATE t2 SET b=77267 WHERE a=21962;\nUPDATE t2 SET b=23125 WHERE a=21963;\nUPDATE t2 SET b=19245 WHERE a=21964;\nUPDATE t2 SET b=20425 WHERE a=21965;\nUPDATE t2 SET b=82714 WHERE a=21966;\nUPDATE t2 SET b=75735 WHERE a=21967;\nUPDATE t2 SET b=72183 WHERE a=21968;\nUPDATE t2 SET b=49847 WHERE a=21969;\nUPDATE t2 SET b=88475 WHERE a=21970;\nUPDATE t2 SET b=62700 WHERE a=21971;\nUPDATE t2 SET b=3127 WHERE a=21972;\nUPDATE t2 SET b=22570 WHERE a=21973;\nUPDATE t2 SET b=20597 WHERE a=21974;\nUPDATE t2 SET b=7793 WHERE a=21975;\nUPDATE t2 SET b=38933 WHERE a=21976;\nUPDATE t2 SET b=31024 WHERE a=21977;\nUPDATE t2 SET b=4713 WHERE a=21978;\nUPDATE t2 SET b=90260 WHERE a=21979;\nUPDATE t2 SET b=78774 WHERE a=21980;\nUPDATE t2 SET b=34201 WHERE a=21981;\nUPDATE t2 SET b=96976 WHERE a=21982;\nUPDATE t2 SET b=94845 WHERE a=21983;\nUPDATE t2 SET b=89937 WHERE a=21984;\nUPDATE t2 SET b=91305 WHERE a=21985;\nUPDATE t2 SET b=3086 WHERE a=21986;\nUPDATE t2 SET b=905 WHERE a=21987;\nUPDATE t2 SET b=93548 WHERE a=21988;\nUPDATE t2 SET b=17439 WHERE a=21989;\nUPDATE t2 SET b=42820 WHERE a=21990;\nUPDATE t2 SET b=76139 WHERE a=21991;\nUPDATE t2 SET b=13728 WHERE a=21992;\nUPDATE t2 SET b=38296 WHERE a=21993;\nUPDATE t2 SET b=86793 WHERE a=21994;\nUPDATE t2 SET b=77811 WHERE a=21995;\nUPDATE t2 SET b=80394 WHERE a=21996;\nUPDATE t2 SET b=89612 WHERE a=21997;\nUPDATE t2 SET b=84454 WHERE a=21998;\nUPDATE t2 SET b=58237 WHERE a=21999;\nUPDATE t2 SET b=7959 WHERE a=22000;\nUPDATE t2 SET b=5530 WHERE a=22001;\nUPDATE t2 SET b=5209 WHERE a=22002;\nUPDATE t2 SET b=25964 WHERE a=22003;\nUPDATE t2 SET b=54636 WHERE a=22004;\nUPDATE t2 SET b=90593 WHERE a=22005;\nUPDATE t2 SET b=8249 WHERE a=22006;\nUPDATE t2 SET b=16909 WHERE a=22007;\nUPDATE t2 SET b=18722 WHERE a=22008;\nUPDATE t2 SET b=93226 WHERE a=22009;\nUPDATE t2 SET b=16449 WHERE a=22010;\nUPDATE t2 SET b=40619 WHERE a=22011;\nUPDATE t2 SET b=63349 WHERE a=22012;\nUPDATE t2 SET b=83080 WHERE a=22013;\nUPDATE t2 SET b=77219 WHERE a=22014;\nUPDATE t2 SET b=12301 WHERE a=22015;\nUPDATE t2 SET b=17148 WHERE a=22016;\nUPDATE t2 SET b=5746 WHERE a=22017;\nUPDATE t2 SET b=56857 WHERE a=22018;\nUPDATE t2 SET b=97701 WHERE a=22019;\nUPDATE t2 SET b=35984 WHERE a=22020;\nUPDATE t2 SET b=79520 WHERE a=22021;\nUPDATE t2 SET b=53929 WHERE a=22022;\nUPDATE t2 SET b=15128 WHERE a=22023;\nUPDATE t2 SET b=93340 WHERE a=22024;\nUPDATE t2 SET b=3682 WHERE a=22025;\nUPDATE t2 SET b=36542 WHERE a=22026;\nUPDATE t2 SET b=27913 WHERE a=22027;\nUPDATE t2 SET b=628 WHERE a=22028;\nUPDATE t2 SET b=7519 WHERE a=22029;\nUPDATE t2 SET b=96208 WHERE a=22030;\nUPDATE t2 SET b=76529 WHERE a=22031;\nUPDATE t2 SET b=89431 WHERE a=22032;\nUPDATE t2 SET b=5508 WHERE a=22033;\nUPDATE t2 SET b=4814 WHERE a=22034;\nUPDATE t2 SET b=13273 WHERE a=22035;\nUPDATE t2 SET b=33121 WHERE a=22036;\nUPDATE t2 SET b=79587 WHERE a=22037;\nUPDATE t2 SET b=74238 WHERE a=22038;\nUPDATE t2 SET b=44033 WHERE a=22039;\nUPDATE t2 SET b=797 WHERE a=22040;\nUPDATE t2 SET b=67533 WHERE a=22041;\nUPDATE t2 SET b=88810 WHERE a=22042;\nUPDATE t2 SET b=94528 WHERE a=22043;\nUPDATE t2 SET b=90847 WHERE a=22044;\nUPDATE t2 SET b=39925 WHERE a=22045;\nUPDATE t2 SET b=29043 WHERE a=22046;\nUPDATE t2 SET b=15506 WHERE a=22047;\nUPDATE t2 SET b=92836 WHERE a=22048;\nUPDATE t2 SET b=42399 WHERE a=22049;\nUPDATE t2 SET b=30896 WHERE a=22050;\nUPDATE t2 SET b=75305 WHERE a=22051;\nUPDATE t2 SET b=75977 WHERE a=22052;\nUPDATE t2 SET b=23978 WHERE a=22053;\nUPDATE t2 SET b=44268 WHERE a=22054;\nUPDATE t2 SET b=41410 WHERE a=22055;\nUPDATE t2 SET b=38239 WHERE a=22056;\nUPDATE t2 SET b=14914 WHERE a=22057;\nUPDATE t2 SET b=78960 WHERE a=22058;\nUPDATE t2 SET b=77256 WHERE a=22059;\nUPDATE t2 SET b=90681 WHERE a=22060;\nUPDATE t2 SET b=80601 WHERE a=22061;\nUPDATE t2 SET b=24792 WHERE a=22062;\nUPDATE t2 SET b=67079 WHERE a=22063;\nUPDATE t2 SET b=1117 WHERE a=22064;\nUPDATE t2 SET b=35066 WHERE a=22065;\nUPDATE t2 SET b=23960 WHERE a=22066;\nUPDATE t2 SET b=14710 WHERE a=22067;\nUPDATE t2 SET b=13293 WHERE a=22068;\nUPDATE t2 SET b=18275 WHERE a=22069;\nUPDATE t2 SET b=54483 WHERE a=22070;\nUPDATE t2 SET b=49413 WHERE a=22071;\nUPDATE t2 SET b=78879 WHERE a=22072;\nUPDATE t2 SET b=98906 WHERE a=22073;\nUPDATE t2 SET b=31531 WHERE a=22074;\nUPDATE t2 SET b=4583 WHERE a=22075;\nUPDATE t2 SET b=40078 WHERE a=22076;\nUPDATE t2 SET b=70764 WHERE a=22077;\nUPDATE t2 SET b=36262 WHERE a=22078;\nUPDATE t2 SET b=75085 WHERE a=22079;\nUPDATE t2 SET b=52588 WHERE a=22080;\nUPDATE t2 SET b=33708 WHERE a=22081;\nUPDATE t2 SET b=17104 WHERE a=22082;\nUPDATE t2 SET b=8746 WHERE a=22083;\nUPDATE t2 SET b=94710 WHERE a=22084;\nUPDATE t2 SET b=86394 WHERE a=22085;\nUPDATE t2 SET b=23624 WHERE a=22086;\nUPDATE t2 SET b=91328 WHERE a=22087;\nUPDATE t2 SET b=20784 WHERE a=22088;\nUPDATE t2 SET b=61969 WHERE a=22089;\nUPDATE t2 SET b=78808 WHERE a=22090;\nUPDATE t2 SET b=32877 WHERE a=22091;\nUPDATE t2 SET b=22578 WHERE a=22092;\nUPDATE t2 SET b=21337 WHERE a=22093;\nUPDATE t2 SET b=70445 WHERE a=22094;\nUPDATE t2 SET b=46340 WHERE a=22095;\nUPDATE t2 SET b=27102 WHERE a=22096;\nUPDATE t2 SET b=33952 WHERE a=22097;\nUPDATE t2 SET b=96829 WHERE a=22098;\nUPDATE t2 SET b=62903 WHERE a=22099;\nUPDATE t2 SET b=1500 WHERE a=22100;\nUPDATE t2 SET b=42047 WHERE a=22101;\nUPDATE t2 SET b=82218 WHERE a=22102;\nUPDATE t2 SET b=25586 WHERE a=22103;\nUPDATE t2 SET b=60274 WHERE a=22104;\nUPDATE t2 SET b=38908 WHERE a=22105;\nUPDATE t2 SET b=58335 WHERE a=22106;\nUPDATE t2 SET b=75538 WHERE a=22107;\nUPDATE t2 SET b=98057 WHERE a=22108;\nUPDATE t2 SET b=4221 WHERE a=22109;\nUPDATE t2 SET b=14184 WHERE a=22110;\nUPDATE t2 SET b=60090 WHERE a=22111;\nUPDATE t2 SET b=61274 WHERE a=22112;\nUPDATE t2 SET b=63003 WHERE a=22113;\nUPDATE t2 SET b=3170 WHERE a=22114;\nUPDATE t2 SET b=27152 WHERE a=22115;\nUPDATE t2 SET b=38711 WHERE a=22116;\nUPDATE t2 SET b=40491 WHERE a=22117;\nUPDATE t2 SET b=45391 WHERE a=22118;\nUPDATE t2 SET b=29627 WHERE a=22119;\nUPDATE t2 SET b=40949 WHERE a=22120;\nUPDATE t2 SET b=73102 WHERE a=22121;\nUPDATE t2 SET b=89919 WHERE a=22122;\nUPDATE t2 SET b=94053 WHERE a=22123;\nUPDATE t2 SET b=2776 WHERE a=22124;\nUPDATE t2 SET b=89078 WHERE a=22125;\nUPDATE t2 SET b=99094 WHERE a=22126;\nUPDATE t2 SET b=29433 WHERE a=22127;\nUPDATE t2 SET b=84278 WHERE a=22128;\nUPDATE t2 SET b=59138 WHERE a=22129;\nUPDATE t2 SET b=12708 WHERE a=22130;\nUPDATE t2 SET b=30686 WHERE a=22131;\nUPDATE t2 SET b=61533 WHERE a=22132;\nUPDATE t2 SET b=3715 WHERE a=22133;\nUPDATE t2 SET b=83801 WHERE a=22134;\nUPDATE t2 SET b=25244 WHERE a=22135;\nUPDATE t2 SET b=10005 WHERE a=22136;\nUPDATE t2 SET b=26263 WHERE a=22137;\nUPDATE t2 SET b=38399 WHERE a=22138;\nUPDATE t2 SET b=49446 WHERE a=22139;\nUPDATE t2 SET b=1817 WHERE a=22140;\nUPDATE t2 SET b=89539 WHERE a=22141;\nUPDATE t2 SET b=32930 WHERE a=22142;\nUPDATE t2 SET b=17016 WHERE a=22143;\nUPDATE t2 SET b=15536 WHERE a=22144;\nUPDATE t2 SET b=71214 WHERE a=22145;\nUPDATE t2 SET b=76623 WHERE a=22146;\nUPDATE t2 SET b=86980 WHERE a=22147;\nUPDATE t2 SET b=78307 WHERE a=22148;\nUPDATE t2 SET b=79979 WHERE a=22149;\nUPDATE t2 SET b=18461 WHERE a=22150;\nUPDATE t2 SET b=28308 WHERE a=22151;\nUPDATE t2 SET b=31222 WHERE a=22152;\nUPDATE t2 SET b=81395 WHERE a=22153;\nUPDATE t2 SET b=91618 WHERE a=22154;\nUPDATE t2 SET b=56773 WHERE a=22155;\nUPDATE t2 SET b=95838 WHERE a=22156;\nUPDATE t2 SET b=35604 WHERE a=22157;\nUPDATE t2 SET b=14620 WHERE a=22158;\nUPDATE t2 SET b=23884 WHERE a=22159;\nUPDATE t2 SET b=12943 WHERE a=22160;\nUPDATE t2 SET b=39696 WHERE a=22161;\nUPDATE t2 SET b=52338 WHERE a=22162;\nUPDATE t2 SET b=68597 WHERE a=22163;\nUPDATE t2 SET b=78880 WHERE a=22164;\nUPDATE t2 SET b=41171 WHERE a=22165;\nUPDATE t2 SET b=11513 WHERE a=22166;\nUPDATE t2 SET b=79353 WHERE a=22167;\nUPDATE t2 SET b=29319 WHERE a=22168;\nUPDATE t2 SET b=78572 WHERE a=22169;\nUPDATE t2 SET b=21425 WHERE a=22170;\nUPDATE t2 SET b=35055 WHERE a=22171;\nUPDATE t2 SET b=48004 WHERE a=22172;\nUPDATE t2 SET b=26963 WHERE a=22173;\nUPDATE t2 SET b=2813 WHERE a=22174;\nUPDATE t2 SET b=3371 WHERE a=22175;\nUPDATE t2 SET b=62791 WHERE a=22176;\nUPDATE t2 SET b=17874 WHERE a=22177;\nUPDATE t2 SET b=404 WHERE a=22178;\nUPDATE t2 SET b=22817 WHERE a=22179;\nUPDATE t2 SET b=432 WHERE a=22180;\nUPDATE t2 SET b=13442 WHERE a=22181;\nUPDATE t2 SET b=16036 WHERE a=22182;\nUPDATE t2 SET b=77605 WHERE a=22183;\nUPDATE t2 SET b=66169 WHERE a=22184;\nUPDATE t2 SET b=98271 WHERE a=22185;\nUPDATE t2 SET b=24695 WHERE a=22186;\nUPDATE t2 SET b=3750 WHERE a=22187;\nUPDATE t2 SET b=4012 WHERE a=22188;\nUPDATE t2 SET b=40815 WHERE a=22189;\nUPDATE t2 SET b=26905 WHERE a=22190;\nUPDATE t2 SET b=18170 WHERE a=22191;\nUPDATE t2 SET b=82707 WHERE a=22192;\nUPDATE t2 SET b=40525 WHERE a=22193;\nUPDATE t2 SET b=43557 WHERE a=22194;\nUPDATE t2 SET b=64984 WHERE a=22195;\nUPDATE t2 SET b=74406 WHERE a=22196;\nUPDATE t2 SET b=95040 WHERE a=22197;\nUPDATE t2 SET b=63646 WHERE a=22198;\nUPDATE t2 SET b=68140 WHERE a=22199;\nUPDATE t2 SET b=73887 WHERE a=22200;\nUPDATE t2 SET b=73738 WHERE a=22201;\nUPDATE t2 SET b=72516 WHERE a=22202;\nUPDATE t2 SET b=40982 WHERE a=22203;\nUPDATE t2 SET b=68871 WHERE a=22204;\nUPDATE t2 SET b=88273 WHERE a=22205;\nUPDATE t2 SET b=23599 WHERE a=22206;\nUPDATE t2 SET b=90056 WHERE a=22207;\nUPDATE t2 SET b=31839 WHERE a=22208;\nUPDATE t2 SET b=2296 WHERE a=22209;\nUPDATE t2 SET b=73374 WHERE a=22210;\nUPDATE t2 SET b=91405 WHERE a=22211;\nUPDATE t2 SET b=65105 WHERE a=22212;\nUPDATE t2 SET b=23010 WHERE a=22213;\nUPDATE t2 SET b=26206 WHERE a=22214;\nUPDATE t2 SET b=947 WHERE a=22215;\nUPDATE t2 SET b=83788 WHERE a=22216;\nUPDATE t2 SET b=84708 WHERE a=22217;\nUPDATE t2 SET b=37685 WHERE a=22218;\nUPDATE t2 SET b=88430 WHERE a=22219;\nUPDATE t2 SET b=57863 WHERE a=22220;\nUPDATE t2 SET b=45616 WHERE a=22221;\nUPDATE t2 SET b=29006 WHERE a=22222;\nUPDATE t2 SET b=49624 WHERE a=22223;\nUPDATE t2 SET b=8949 WHERE a=22224;\nUPDATE t2 SET b=4883 WHERE a=22225;\nUPDATE t2 SET b=57743 WHERE a=22226;\nUPDATE t2 SET b=13327 WHERE a=22227;\nUPDATE t2 SET b=80708 WHERE a=22228;\nUPDATE t2 SET b=26189 WHERE a=22229;\nUPDATE t2 SET b=60110 WHERE a=22230;\nUPDATE t2 SET b=57576 WHERE a=22231;\nUPDATE t2 SET b=40709 WHERE a=22232;\nUPDATE t2 SET b=74630 WHERE a=22233;\nUPDATE t2 SET b=69028 WHERE a=22234;\nUPDATE t2 SET b=22218 WHERE a=22235;\nUPDATE t2 SET b=72550 WHERE a=22236;\nUPDATE t2 SET b=75517 WHERE a=22237;\nUPDATE t2 SET b=22690 WHERE a=22238;\nUPDATE t2 SET b=68072 WHERE a=22239;\nUPDATE t2 SET b=18227 WHERE a=22240;\nUPDATE t2 SET b=5476 WHERE a=22241;\nUPDATE t2 SET b=6103 WHERE a=22242;\nUPDATE t2 SET b=45587 WHERE a=22243;\nUPDATE t2 SET b=55313 WHERE a=22244;\nUPDATE t2 SET b=91075 WHERE a=22245;\nUPDATE t2 SET b=89287 WHERE a=22246;\nUPDATE t2 SET b=91566 WHERE a=22247;\nUPDATE t2 SET b=8993 WHERE a=22248;\nUPDATE t2 SET b=15132 WHERE a=22249;\nUPDATE t2 SET b=19705 WHERE a=22250;\nUPDATE t2 SET b=80590 WHERE a=22251;\nUPDATE t2 SET b=53835 WHERE a=22252;\nUPDATE t2 SET b=890 WHERE a=22253;\nUPDATE t2 SET b=25739 WHERE a=22254;\nUPDATE t2 SET b=41254 WHERE a=22255;\nUPDATE t2 SET b=58242 WHERE a=22256;\nUPDATE t2 SET b=63383 WHERE a=22257;\nUPDATE t2 SET b=57940 WHERE a=22258;\nUPDATE t2 SET b=66012 WHERE a=22259;\nUPDATE t2 SET b=62382 WHERE a=22260;\nUPDATE t2 SET b=97762 WHERE a=22261;\nUPDATE t2 SET b=97613 WHERE a=22262;\nUPDATE t2 SET b=35854 WHERE a=22263;\nUPDATE t2 SET b=78 WHERE a=22264;\nUPDATE t2 SET b=40303 WHERE a=22265;\nUPDATE t2 SET b=40133 WHERE a=22266;\nUPDATE t2 SET b=87372 WHERE a=22267;\nUPDATE t2 SET b=23946 WHERE a=22268;\nUPDATE t2 SET b=96347 WHERE a=22269;\nUPDATE t2 SET b=51441 WHERE a=22270;\nUPDATE t2 SET b=67541 WHERE a=22271;\nUPDATE t2 SET b=20560 WHERE a=22272;\nUPDATE t2 SET b=51878 WHERE a=22273;\nUPDATE t2 SET b=98407 WHERE a=22274;\nUPDATE t2 SET b=45322 WHERE a=22275;\nUPDATE t2 SET b=23846 WHERE a=22276;\nUPDATE t2 SET b=43473 WHERE a=22277;\nUPDATE t2 SET b=23467 WHERE a=22278;\nUPDATE t2 SET b=97743 WHERE a=22279;\nUPDATE t2 SET b=4252 WHERE a=22280;\nUPDATE t2 SET b=73857 WHERE a=22281;\nUPDATE t2 SET b=79523 WHERE a=22282;\nUPDATE t2 SET b=21162 WHERE a=22283;\nUPDATE t2 SET b=28502 WHERE a=22284;\nUPDATE t2 SET b=53819 WHERE a=22285;\nUPDATE t2 SET b=51740 WHERE a=22286;\nUPDATE t2 SET b=36367 WHERE a=22287;\nUPDATE t2 SET b=82559 WHERE a=22288;\nUPDATE t2 SET b=43133 WHERE a=22289;\nUPDATE t2 SET b=63827 WHERE a=22290;\nUPDATE t2 SET b=76396 WHERE a=22291;\nUPDATE t2 SET b=46974 WHERE a=22292;\nUPDATE t2 SET b=42639 WHERE a=22293;\nUPDATE t2 SET b=84224 WHERE a=22294;\nUPDATE t2 SET b=64051 WHERE a=22295;\nUPDATE t2 SET b=47253 WHERE a=22296;\nUPDATE t2 SET b=27624 WHERE a=22297;\nUPDATE t2 SET b=60691 WHERE a=22298;\nUPDATE t2 SET b=96615 WHERE a=22299;\nUPDATE t2 SET b=42221 WHERE a=22300;\nUPDATE t2 SET b=20637 WHERE a=22301;\nUPDATE t2 SET b=79442 WHERE a=22302;\nUPDATE t2 SET b=50043 WHERE a=22303;\nUPDATE t2 SET b=77459 WHERE a=22304;\nUPDATE t2 SET b=94993 WHERE a=22305;\nUPDATE t2 SET b=84819 WHERE a=22306;\nUPDATE t2 SET b=39458 WHERE a=22307;\nUPDATE t2 SET b=8572 WHERE a=22308;\nUPDATE t2 SET b=22808 WHERE a=22309;\nUPDATE t2 SET b=52098 WHERE a=22310;\nUPDATE t2 SET b=44405 WHERE a=22311;\nUPDATE t2 SET b=35971 WHERE a=22312;\nUPDATE t2 SET b=34299 WHERE a=22313;\nUPDATE t2 SET b=83797 WHERE a=22314;\nUPDATE t2 SET b=60471 WHERE a=22315;\nUPDATE t2 SET b=87436 WHERE a=22316;\nUPDATE t2 SET b=18963 WHERE a=22317;\nUPDATE t2 SET b=10247 WHERE a=22318;\nUPDATE t2 SET b=70695 WHERE a=22319;\nUPDATE t2 SET b=1487 WHERE a=22320;\nUPDATE t2 SET b=22831 WHERE a=22321;\nUPDATE t2 SET b=43216 WHERE a=22322;\nUPDATE t2 SET b=16989 WHERE a=22323;\nUPDATE t2 SET b=67035 WHERE a=22324;\nUPDATE t2 SET b=18476 WHERE a=22325;\nUPDATE t2 SET b=52030 WHERE a=22326;\nUPDATE t2 SET b=98523 WHERE a=22327;\nUPDATE t2 SET b=32573 WHERE a=22328;\nUPDATE t2 SET b=70913 WHERE a=22329;\nUPDATE t2 SET b=53324 WHERE a=22330;\nUPDATE t2 SET b=27307 WHERE a=22331;\nUPDATE t2 SET b=30017 WHERE a=22332;\nUPDATE t2 SET b=322 WHERE a=22333;\nUPDATE t2 SET b=7893 WHERE a=22334;\nUPDATE t2 SET b=18920 WHERE a=22335;\nUPDATE t2 SET b=55958 WHERE a=22336;\nUPDATE t2 SET b=87206 WHERE a=22337;\nUPDATE t2 SET b=68733 WHERE a=22338;\nUPDATE t2 SET b=88432 WHERE a=22339;\nUPDATE t2 SET b=18444 WHERE a=22340;\nUPDATE t2 SET b=79196 WHERE a=22341;\nUPDATE t2 SET b=96455 WHERE a=22342;\nUPDATE t2 SET b=17915 WHERE a=22343;\nUPDATE t2 SET b=76899 WHERE a=22344;\nUPDATE t2 SET b=37737 WHERE a=22345;\nUPDATE t2 SET b=24031 WHERE a=22346;\nUPDATE t2 SET b=44199 WHERE a=22347;\nUPDATE t2 SET b=69021 WHERE a=22348;\nUPDATE t2 SET b=16985 WHERE a=22349;\nUPDATE t2 SET b=36429 WHERE a=22350;\nUPDATE t2 SET b=40726 WHERE a=22351;\nUPDATE t2 SET b=52489 WHERE a=22352;\nUPDATE t2 SET b=56906 WHERE a=22353;\nUPDATE t2 SET b=57398 WHERE a=22354;\nUPDATE t2 SET b=72982 WHERE a=22355;\nUPDATE t2 SET b=77456 WHERE a=22356;\nUPDATE t2 SET b=33314 WHERE a=22357;\nUPDATE t2 SET b=47931 WHERE a=22358;\nUPDATE t2 SET b=23734 WHERE a=22359;\nUPDATE t2 SET b=64641 WHERE a=22360;\nUPDATE t2 SET b=82397 WHERE a=22361;\nUPDATE t2 SET b=30406 WHERE a=22362;\nUPDATE t2 SET b=48684 WHERE a=22363;\nUPDATE t2 SET b=13910 WHERE a=22364;\nUPDATE t2 SET b=17086 WHERE a=22365;\nUPDATE t2 SET b=99493 WHERE a=22366;\nUPDATE t2 SET b=8085 WHERE a=22367;\nUPDATE t2 SET b=25839 WHERE a=22368;\nUPDATE t2 SET b=97241 WHERE a=22369;\nUPDATE t2 SET b=60794 WHERE a=22370;\nUPDATE t2 SET b=90761 WHERE a=22371;\nUPDATE t2 SET b=14151 WHERE a=22372;\nUPDATE t2 SET b=19675 WHERE a=22373;\nUPDATE t2 SET b=73581 WHERE a=22374;\nUPDATE t2 SET b=96217 WHERE a=22375;\nUPDATE t2 SET b=21529 WHERE a=22376;\nUPDATE t2 SET b=68993 WHERE a=22377;\nUPDATE t2 SET b=96085 WHERE a=22378;\nUPDATE t2 SET b=69557 WHERE a=22379;\nUPDATE t2 SET b=12670 WHERE a=22380;\nUPDATE t2 SET b=99791 WHERE a=22381;\nUPDATE t2 SET b=35300 WHERE a=22382;\nUPDATE t2 SET b=45460 WHERE a=22383;\nUPDATE t2 SET b=43124 WHERE a=22384;\nUPDATE t2 SET b=99643 WHERE a=22385;\nUPDATE t2 SET b=75177 WHERE a=22386;\nUPDATE t2 SET b=37625 WHERE a=22387;\nUPDATE t2 SET b=44967 WHERE a=22388;\nUPDATE t2 SET b=40640 WHERE a=22389;\nUPDATE t2 SET b=9977 WHERE a=22390;\nUPDATE t2 SET b=68231 WHERE a=22391;\nUPDATE t2 SET b=48567 WHERE a=22392;\nUPDATE t2 SET b=24841 WHERE a=22393;\nUPDATE t2 SET b=48463 WHERE a=22394;\nUPDATE t2 SET b=25688 WHERE a=22395;\nUPDATE t2 SET b=76138 WHERE a=22396;\nUPDATE t2 SET b=42541 WHERE a=22397;\nUPDATE t2 SET b=82495 WHERE a=22398;\nUPDATE t2 SET b=57048 WHERE a=22399;\nUPDATE t2 SET b=64863 WHERE a=22400;\nUPDATE t2 SET b=10615 WHERE a=22401;\nUPDATE t2 SET b=38484 WHERE a=22402;\nUPDATE t2 SET b=42837 WHERE a=22403;\nUPDATE t2 SET b=16229 WHERE a=22404;\nUPDATE t2 SET b=32715 WHERE a=22405;\nUPDATE t2 SET b=96368 WHERE a=22406;\nUPDATE t2 SET b=36034 WHERE a=22407;\nUPDATE t2 SET b=97168 WHERE a=22408;\nUPDATE t2 SET b=43087 WHERE a=22409;\nUPDATE t2 SET b=89965 WHERE a=22410;\nUPDATE t2 SET b=90362 WHERE a=22411;\nUPDATE t2 SET b=7149 WHERE a=22412;\nUPDATE t2 SET b=76641 WHERE a=22413;\nUPDATE t2 SET b=49602 WHERE a=22414;\nUPDATE t2 SET b=21525 WHERE a=22415;\nUPDATE t2 SET b=35548 WHERE a=22416;\nUPDATE t2 SET b=79684 WHERE a=22417;\nUPDATE t2 SET b=12924 WHERE a=22418;\nUPDATE t2 SET b=44394 WHERE a=22419;\nUPDATE t2 SET b=23536 WHERE a=22420;\nUPDATE t2 SET b=63764 WHERE a=22421;\nUPDATE t2 SET b=79489 WHERE a=22422;\nUPDATE t2 SET b=51122 WHERE a=22423;\nUPDATE t2 SET b=24755 WHERE a=22424;\nUPDATE t2 SET b=42073 WHERE a=22425;\nUPDATE t2 SET b=29256 WHERE a=22426;\nUPDATE t2 SET b=64014 WHERE a=22427;\nUPDATE t2 SET b=13554 WHERE a=22428;\nUPDATE t2 SET b=44625 WHERE a=22429;\nUPDATE t2 SET b=46998 WHERE a=22430;\nUPDATE t2 SET b=55124 WHERE a=22431;\nUPDATE t2 SET b=20003 WHERE a=22432;\nUPDATE t2 SET b=68585 WHERE a=22433;\nUPDATE t2 SET b=32535 WHERE a=22434;\nUPDATE t2 SET b=48639 WHERE a=22435;\nUPDATE t2 SET b=37954 WHERE a=22436;\nUPDATE t2 SET b=58377 WHERE a=22437;\nUPDATE t2 SET b=26762 WHERE a=22438;\nUPDATE t2 SET b=80075 WHERE a=22439;\nUPDATE t2 SET b=30986 WHERE a=22440;\nUPDATE t2 SET b=43646 WHERE a=22441;\nUPDATE t2 SET b=51362 WHERE a=22442;\nUPDATE t2 SET b=71348 WHERE a=22443;\nUPDATE t2 SET b=59967 WHERE a=22444;\nUPDATE t2 SET b=56715 WHERE a=22445;\nUPDATE t2 SET b=70006 WHERE a=22446;\nUPDATE t2 SET b=6483 WHERE a=22447;\nUPDATE t2 SET b=61233 WHERE a=22448;\nUPDATE t2 SET b=69956 WHERE a=22449;\nUPDATE t2 SET b=21607 WHERE a=22450;\nUPDATE t2 SET b=49714 WHERE a=22451;\nUPDATE t2 SET b=53859 WHERE a=22452;\nUPDATE t2 SET b=59640 WHERE a=22453;\nUPDATE t2 SET b=38985 WHERE a=22454;\nUPDATE t2 SET b=32520 WHERE a=22455;\nUPDATE t2 SET b=65680 WHERE a=22456;\nUPDATE t2 SET b=82882 WHERE a=22457;\nUPDATE t2 SET b=93812 WHERE a=22458;\nUPDATE t2 SET b=7116 WHERE a=22459;\nUPDATE t2 SET b=4278 WHERE a=22460;\nUPDATE t2 SET b=71041 WHERE a=22461;\nUPDATE t2 SET b=70080 WHERE a=22462;\nUPDATE t2 SET b=49998 WHERE a=22463;\nUPDATE t2 SET b=75376 WHERE a=22464;\nUPDATE t2 SET b=6854 WHERE a=22465;\nUPDATE t2 SET b=32021 WHERE a=22466;\nUPDATE t2 SET b=5710 WHERE a=22467;\nUPDATE t2 SET b=35291 WHERE a=22468;\nUPDATE t2 SET b=37955 WHERE a=22469;\nUPDATE t2 SET b=86094 WHERE a=22470;\nUPDATE t2 SET b=67031 WHERE a=22471;\nUPDATE t2 SET b=23034 WHERE a=22472;\nUPDATE t2 SET b=27387 WHERE a=22473;\nUPDATE t2 SET b=70185 WHERE a=22474;\nUPDATE t2 SET b=45392 WHERE a=22475;\nUPDATE t2 SET b=60363 WHERE a=22476;\nUPDATE t2 SET b=50548 WHERE a=22477;\nUPDATE t2 SET b=80366 WHERE a=22478;\nUPDATE t2 SET b=28358 WHERE a=22479;\nUPDATE t2 SET b=69535 WHERE a=22480;\nUPDATE t2 SET b=77374 WHERE a=22481;\nUPDATE t2 SET b=55179 WHERE a=22482;\nUPDATE t2 SET b=44734 WHERE a=22483;\nUPDATE t2 SET b=60215 WHERE a=22484;\nUPDATE t2 SET b=330 WHERE a=22485;\nUPDATE t2 SET b=80658 WHERE a=22486;\nUPDATE t2 SET b=42952 WHERE a=22487;\nUPDATE t2 SET b=79183 WHERE a=22488;\nUPDATE t2 SET b=57987 WHERE a=22489;\nUPDATE t2 SET b=46478 WHERE a=22490;\nUPDATE t2 SET b=68798 WHERE a=22491;\nUPDATE t2 SET b=51994 WHERE a=22492;\nUPDATE t2 SET b=82795 WHERE a=22493;\nUPDATE t2 SET b=35451 WHERE a=22494;\nUPDATE t2 SET b=45261 WHERE a=22495;\nUPDATE t2 SET b=63685 WHERE a=22496;\nUPDATE t2 SET b=84319 WHERE a=22497;\nUPDATE t2 SET b=47237 WHERE a=22498;\nUPDATE t2 SET b=49740 WHERE a=22499;\nUPDATE t2 SET b=79889 WHERE a=22500;\nUPDATE t2 SET b=50275 WHERE a=22501;\nUPDATE t2 SET b=4992 WHERE a=22502;\nUPDATE t2 SET b=8042 WHERE a=22503;\nUPDATE t2 SET b=56031 WHERE a=22504;\nUPDATE t2 SET b=76728 WHERE a=22505;\nUPDATE t2 SET b=71780 WHERE a=22506;\nUPDATE t2 SET b=16928 WHERE a=22507;\nUPDATE t2 SET b=79241 WHERE a=22508;\nUPDATE t2 SET b=55058 WHERE a=22509;\nUPDATE t2 SET b=50585 WHERE a=22510;\nUPDATE t2 SET b=71997 WHERE a=22511;\nUPDATE t2 SET b=53987 WHERE a=22512;\nUPDATE t2 SET b=59217 WHERE a=22513;\nUPDATE t2 SET b=34021 WHERE a=22514;\nUPDATE t2 SET b=49661 WHERE a=22515;\nUPDATE t2 SET b=46136 WHERE a=22516;\nUPDATE t2 SET b=23943 WHERE a=22517;\nUPDATE t2 SET b=30865 WHERE a=22518;\nUPDATE t2 SET b=74365 WHERE a=22519;\nUPDATE t2 SET b=11474 WHERE a=22520;\nUPDATE t2 SET b=40897 WHERE a=22521;\nUPDATE t2 SET b=66485 WHERE a=22522;\nUPDATE t2 SET b=86343 WHERE a=22523;\nUPDATE t2 SET b=81058 WHERE a=22524;\nUPDATE t2 SET b=8882 WHERE a=22525;\nUPDATE t2 SET b=4188 WHERE a=22526;\nUPDATE t2 SET b=55831 WHERE a=22527;\nUPDATE t2 SET b=83880 WHERE a=22528;\nUPDATE t2 SET b=73496 WHERE a=22529;\nUPDATE t2 SET b=86005 WHERE a=22530;\nUPDATE t2 SET b=85334 WHERE a=22531;\nUPDATE t2 SET b=60230 WHERE a=22532;\nUPDATE t2 SET b=27791 WHERE a=22533;\nUPDATE t2 SET b=46535 WHERE a=22534;\nUPDATE t2 SET b=43907 WHERE a=22535;\nUPDATE t2 SET b=98494 WHERE a=22536;\nUPDATE t2 SET b=14638 WHERE a=22537;\nUPDATE t2 SET b=931 WHERE a=22538;\nUPDATE t2 SET b=429 WHERE a=22539;\nUPDATE t2 SET b=53663 WHERE a=22540;\nUPDATE t2 SET b=18770 WHERE a=22541;\nUPDATE t2 SET b=98981 WHERE a=22542;\nUPDATE t2 SET b=67904 WHERE a=22543;\nUPDATE t2 SET b=27205 WHERE a=22544;\nUPDATE t2 SET b=70998 WHERE a=22545;\nUPDATE t2 SET b=38822 WHERE a=22546;\nUPDATE t2 SET b=76242 WHERE a=22547;\nUPDATE t2 SET b=73999 WHERE a=22548;\nUPDATE t2 SET b=16156 WHERE a=22549;\nUPDATE t2 SET b=78924 WHERE a=22550;\nUPDATE t2 SET b=45127 WHERE a=22551;\nUPDATE t2 SET b=75351 WHERE a=22552;\nUPDATE t2 SET b=60126 WHERE a=22553;\nUPDATE t2 SET b=69810 WHERE a=22554;\nUPDATE t2 SET b=40455 WHERE a=22555;\nUPDATE t2 SET b=85873 WHERE a=22556;\nUPDATE t2 SET b=78193 WHERE a=22557;\nUPDATE t2 SET b=74709 WHERE a=22558;\nUPDATE t2 SET b=65257 WHERE a=22559;\nUPDATE t2 SET b=79619 WHERE a=22560;\nUPDATE t2 SET b=60256 WHERE a=22561;\nUPDATE t2 SET b=82812 WHERE a=22562;\nUPDATE t2 SET b=48278 WHERE a=22563;\nUPDATE t2 SET b=25742 WHERE a=22564;\nUPDATE t2 SET b=14500 WHERE a=22565;\nUPDATE t2 SET b=50866 WHERE a=22566;\nUPDATE t2 SET b=20094 WHERE a=22567;\nUPDATE t2 SET b=67898 WHERE a=22568;\nUPDATE t2 SET b=33978 WHERE a=22569;\nUPDATE t2 SET b=6267 WHERE a=22570;\nUPDATE t2 SET b=53017 WHERE a=22571;\nUPDATE t2 SET b=58567 WHERE a=22572;\nUPDATE t2 SET b=55119 WHERE a=22573;\nUPDATE t2 SET b=72142 WHERE a=22574;\nUPDATE t2 SET b=47076 WHERE a=22575;\nUPDATE t2 SET b=49187 WHERE a=22576;\nUPDATE t2 SET b=66596 WHERE a=22577;\nUPDATE t2 SET b=55971 WHERE a=22578;\nUPDATE t2 SET b=26041 WHERE a=22579;\nUPDATE t2 SET b=87738 WHERE a=22580;\nUPDATE t2 SET b=17808 WHERE a=22581;\nUPDATE t2 SET b=77721 WHERE a=22582;\nUPDATE t2 SET b=73277 WHERE a=22583;\nUPDATE t2 SET b=93101 WHERE a=22584;\nUPDATE t2 SET b=34890 WHERE a=22585;\nUPDATE t2 SET b=18747 WHERE a=22586;\nUPDATE t2 SET b=16284 WHERE a=22587;\nUPDATE t2 SET b=407 WHERE a=22588;\nUPDATE t2 SET b=38730 WHERE a=22589;\nUPDATE t2 SET b=36892 WHERE a=22590;\nUPDATE t2 SET b=54680 WHERE a=22591;\nUPDATE t2 SET b=10858 WHERE a=22592;\nUPDATE t2 SET b=41550 WHERE a=22593;\nUPDATE t2 SET b=96623 WHERE a=22594;\nUPDATE t2 SET b=33417 WHERE a=22595;\nUPDATE t2 SET b=23570 WHERE a=22596;\nUPDATE t2 SET b=24176 WHERE a=22597;\nUPDATE t2 SET b=72874 WHERE a=22598;\nUPDATE t2 SET b=10768 WHERE a=22599;\nUPDATE t2 SET b=84840 WHERE a=22600;\nUPDATE t2 SET b=49563 WHERE a=22601;\nUPDATE t2 SET b=83889 WHERE a=22602;\nUPDATE t2 SET b=7651 WHERE a=22603;\nUPDATE t2 SET b=58590 WHERE a=22604;\nUPDATE t2 SET b=58690 WHERE a=22605;\nUPDATE t2 SET b=98250 WHERE a=22606;\nUPDATE t2 SET b=69945 WHERE a=22607;\nUPDATE t2 SET b=22935 WHERE a=22608;\nUPDATE t2 SET b=81066 WHERE a=22609;\nUPDATE t2 SET b=84288 WHERE a=22610;\nUPDATE t2 SET b=36952 WHERE a=22611;\nUPDATE t2 SET b=62515 WHERE a=22612;\nUPDATE t2 SET b=67092 WHERE a=22613;\nUPDATE t2 SET b=64489 WHERE a=22614;\nUPDATE t2 SET b=46452 WHERE a=22615;\nUPDATE t2 SET b=44477 WHERE a=22616;\nUPDATE t2 SET b=89838 WHERE a=22617;\nUPDATE t2 SET b=44292 WHERE a=22618;\nUPDATE t2 SET b=31689 WHERE a=22619;\nUPDATE t2 SET b=57132 WHERE a=22620;\nUPDATE t2 SET b=71745 WHERE a=22621;\nUPDATE t2 SET b=35600 WHERE a=22622;\nUPDATE t2 SET b=76315 WHERE a=22623;\nUPDATE t2 SET b=96972 WHERE a=22624;\nUPDATE t2 SET b=60971 WHERE a=22625;\nUPDATE t2 SET b=89022 WHERE a=22626;\nUPDATE t2 SET b=7292 WHERE a=22627;\nUPDATE t2 SET b=20556 WHERE a=22628;\nUPDATE t2 SET b=73103 WHERE a=22629;\nUPDATE t2 SET b=86783 WHERE a=22630;\nUPDATE t2 SET b=49483 WHERE a=22631;\nUPDATE t2 SET b=23764 WHERE a=22632;\nUPDATE t2 SET b=82693 WHERE a=22633;\nUPDATE t2 SET b=84840 WHERE a=22634;\nUPDATE t2 SET b=97464 WHERE a=22635;\nUPDATE t2 SET b=24794 WHERE a=22636;\nUPDATE t2 SET b=52313 WHERE a=22637;\nUPDATE t2 SET b=57801 WHERE a=22638;\nUPDATE t2 SET b=67521 WHERE a=22639;\nUPDATE t2 SET b=93642 WHERE a=22640;\nUPDATE t2 SET b=72872 WHERE a=22641;\nUPDATE t2 SET b=19652 WHERE a=22642;\nUPDATE t2 SET b=83781 WHERE a=22643;\nUPDATE t2 SET b=36124 WHERE a=22644;\nUPDATE t2 SET b=380 WHERE a=22645;\nUPDATE t2 SET b=82892 WHERE a=22646;\nUPDATE t2 SET b=59800 WHERE a=22647;\nUPDATE t2 SET b=8380 WHERE a=22648;\nUPDATE t2 SET b=18728 WHERE a=22649;\nUPDATE t2 SET b=54502 WHERE a=22650;\nUPDATE t2 SET b=75341 WHERE a=22651;\nUPDATE t2 SET b=45447 WHERE a=22652;\nUPDATE t2 SET b=12500 WHERE a=22653;\nUPDATE t2 SET b=7869 WHERE a=22654;\nUPDATE t2 SET b=21821 WHERE a=22655;\nUPDATE t2 SET b=99981 WHERE a=22656;\nUPDATE t2 SET b=33223 WHERE a=22657;\nUPDATE t2 SET b=21448 WHERE a=22658;\nUPDATE t2 SET b=20718 WHERE a=22659;\nUPDATE t2 SET b=87386 WHERE a=22660;\nUPDATE t2 SET b=35507 WHERE a=22661;\nUPDATE t2 SET b=30158 WHERE a=22662;\nUPDATE t2 SET b=95829 WHERE a=22663;\nUPDATE t2 SET b=72117 WHERE a=22664;\nUPDATE t2 SET b=19625 WHERE a=22665;\nUPDATE t2 SET b=80243 WHERE a=22666;\nUPDATE t2 SET b=81650 WHERE a=22667;\nUPDATE t2 SET b=2911 WHERE a=22668;\nUPDATE t2 SET b=38251 WHERE a=22669;\nUPDATE t2 SET b=63238 WHERE a=22670;\nUPDATE t2 SET b=2703 WHERE a=22671;\nUPDATE t2 SET b=78416 WHERE a=22672;\nUPDATE t2 SET b=57246 WHERE a=22673;\nUPDATE t2 SET b=77709 WHERE a=22674;\nUPDATE t2 SET b=59112 WHERE a=22675;\nUPDATE t2 SET b=98689 WHERE a=22676;\nUPDATE t2 SET b=60809 WHERE a=22677;\nUPDATE t2 SET b=52210 WHERE a=22678;\nUPDATE t2 SET b=94524 WHERE a=22679;\nUPDATE t2 SET b=1899 WHERE a=22680;\nUPDATE t2 SET b=47463 WHERE a=22681;\nUPDATE t2 SET b=22860 WHERE a=22682;\nUPDATE t2 SET b=85497 WHERE a=22683;\nUPDATE t2 SET b=91725 WHERE a=22684;\nUPDATE t2 SET b=99720 WHERE a=22685;\nUPDATE t2 SET b=33290 WHERE a=22686;\nUPDATE t2 SET b=43841 WHERE a=22687;\nUPDATE t2 SET b=76443 WHERE a=22688;\nUPDATE t2 SET b=12756 WHERE a=22689;\nUPDATE t2 SET b=27377 WHERE a=22690;\nUPDATE t2 SET b=89002 WHERE a=22691;\nUPDATE t2 SET b=32867 WHERE a=22692;\nUPDATE t2 SET b=20215 WHERE a=22693;\nUPDATE t2 SET b=59653 WHERE a=22694;\nUPDATE t2 SET b=78545 WHERE a=22695;\nUPDATE t2 SET b=28063 WHERE a=22696;\nUPDATE t2 SET b=70674 WHERE a=22697;\nUPDATE t2 SET b=40715 WHERE a=22698;\nUPDATE t2 SET b=99822 WHERE a=22699;\nUPDATE t2 SET b=16656 WHERE a=22700;\nUPDATE t2 SET b=39884 WHERE a=22701;\nUPDATE t2 SET b=18974 WHERE a=22702;\nUPDATE t2 SET b=87252 WHERE a=22703;\nUPDATE t2 SET b=98688 WHERE a=22704;\nUPDATE t2 SET b=42563 WHERE a=22705;\nUPDATE t2 SET b=61368 WHERE a=22706;\nUPDATE t2 SET b=56978 WHERE a=22707;\nUPDATE t2 SET b=14111 WHERE a=22708;\nUPDATE t2 SET b=51295 WHERE a=22709;\nUPDATE t2 SET b=45884 WHERE a=22710;\nUPDATE t2 SET b=65865 WHERE a=22711;\nUPDATE t2 SET b=57622 WHERE a=22712;\nUPDATE t2 SET b=89962 WHERE a=22713;\nUPDATE t2 SET b=71186 WHERE a=22714;\nUPDATE t2 SET b=31378 WHERE a=22715;\nUPDATE t2 SET b=63879 WHERE a=22716;\nUPDATE t2 SET b=54809 WHERE a=22717;\nUPDATE t2 SET b=20782 WHERE a=22718;\nUPDATE t2 SET b=53349 WHERE a=22719;\nUPDATE t2 SET b=8074 WHERE a=22720;\nUPDATE t2 SET b=90397 WHERE a=22721;\nUPDATE t2 SET b=19386 WHERE a=22722;\nUPDATE t2 SET b=68739 WHERE a=22723;\nUPDATE t2 SET b=96054 WHERE a=22724;\nUPDATE t2 SET b=70249 WHERE a=22725;\nUPDATE t2 SET b=46026 WHERE a=22726;\nUPDATE t2 SET b=44059 WHERE a=22727;\nUPDATE t2 SET b=66804 WHERE a=22728;\nUPDATE t2 SET b=74527 WHERE a=22729;\nUPDATE t2 SET b=87066 WHERE a=22730;\nUPDATE t2 SET b=33932 WHERE a=22731;\nUPDATE t2 SET b=19931 WHERE a=22732;\nUPDATE t2 SET b=17334 WHERE a=22733;\nUPDATE t2 SET b=16499 WHERE a=22734;\nUPDATE t2 SET b=75991 WHERE a=22735;\nUPDATE t2 SET b=88766 WHERE a=22736;\nUPDATE t2 SET b=66248 WHERE a=22737;\nUPDATE t2 SET b=82856 WHERE a=22738;\nUPDATE t2 SET b=8685 WHERE a=22739;\nUPDATE t2 SET b=94725 WHERE a=22740;\nUPDATE t2 SET b=62199 WHERE a=22741;\nUPDATE t2 SET b=76949 WHERE a=22742;\nUPDATE t2 SET b=9180 WHERE a=22743;\nUPDATE t2 SET b=3574 WHERE a=22744;\nUPDATE t2 SET b=16906 WHERE a=22745;\nUPDATE t2 SET b=79992 WHERE a=22746;\nUPDATE t2 SET b=89409 WHERE a=22747;\nUPDATE t2 SET b=97632 WHERE a=22748;\nUPDATE t2 SET b=59043 WHERE a=22749;\nUPDATE t2 SET b=65054 WHERE a=22750;\nUPDATE t2 SET b=18515 WHERE a=22751;\nUPDATE t2 SET b=79517 WHERE a=22752;\nUPDATE t2 SET b=65130 WHERE a=22753;\nUPDATE t2 SET b=49627 WHERE a=22754;\nUPDATE t2 SET b=15219 WHERE a=22755;\nUPDATE t2 SET b=73662 WHERE a=22756;\nUPDATE t2 SET b=26444 WHERE a=22757;\nUPDATE t2 SET b=3120 WHERE a=22758;\nUPDATE t2 SET b=74245 WHERE a=22759;\nUPDATE t2 SET b=50796 WHERE a=22760;\nUPDATE t2 SET b=55518 WHERE a=22761;\nUPDATE t2 SET b=2834 WHERE a=22762;\nUPDATE t2 SET b=50400 WHERE a=22763;\nUPDATE t2 SET b=28611 WHERE a=22764;\nUPDATE t2 SET b=77830 WHERE a=22765;\nUPDATE t2 SET b=68064 WHERE a=22766;\nUPDATE t2 SET b=74887 WHERE a=22767;\nUPDATE t2 SET b=43627 WHERE a=22768;\nUPDATE t2 SET b=4431 WHERE a=22769;\nUPDATE t2 SET b=85232 WHERE a=22770;\nUPDATE t2 SET b=56035 WHERE a=22771;\nUPDATE t2 SET b=85361 WHERE a=22772;\nUPDATE t2 SET b=33207 WHERE a=22773;\nUPDATE t2 SET b=15042 WHERE a=22774;\nUPDATE t2 SET b=31194 WHERE a=22775;\nUPDATE t2 SET b=29180 WHERE a=22776;\nUPDATE t2 SET b=79961 WHERE a=22777;\nUPDATE t2 SET b=91381 WHERE a=22778;\nUPDATE t2 SET b=97551 WHERE a=22779;\nUPDATE t2 SET b=9167 WHERE a=22780;\nUPDATE t2 SET b=61888 WHERE a=22781;\nUPDATE t2 SET b=65176 WHERE a=22782;\nUPDATE t2 SET b=15960 WHERE a=22783;\nUPDATE t2 SET b=39104 WHERE a=22784;\nUPDATE t2 SET b=30194 WHERE a=22785;\nUPDATE t2 SET b=46275 WHERE a=22786;\nUPDATE t2 SET b=25522 WHERE a=22787;\nUPDATE t2 SET b=70054 WHERE a=22788;\nUPDATE t2 SET b=42789 WHERE a=22789;\nUPDATE t2 SET b=83276 WHERE a=22790;\nUPDATE t2 SET b=73288 WHERE a=22791;\nUPDATE t2 SET b=35884 WHERE a=22792;\nUPDATE t2 SET b=45455 WHERE a=22793;\nUPDATE t2 SET b=74221 WHERE a=22794;\nUPDATE t2 SET b=66102 WHERE a=22795;\nUPDATE t2 SET b=38540 WHERE a=22796;\nUPDATE t2 SET b=93778 WHERE a=22797;\nUPDATE t2 SET b=56149 WHERE a=22798;\nUPDATE t2 SET b=7885 WHERE a=22799;\nUPDATE t2 SET b=41447 WHERE a=22800;\nUPDATE t2 SET b=29024 WHERE a=22801;\nUPDATE t2 SET b=25165 WHERE a=22802;\nUPDATE t2 SET b=79598 WHERE a=22803;\nUPDATE t2 SET b=45429 WHERE a=22804;\nUPDATE t2 SET b=73043 WHERE a=22805;\nUPDATE t2 SET b=70729 WHERE a=22806;\nUPDATE t2 SET b=77251 WHERE a=22807;\nUPDATE t2 SET b=22936 WHERE a=22808;\nUPDATE t2 SET b=14510 WHERE a=22809;\nUPDATE t2 SET b=68188 WHERE a=22810;\nUPDATE t2 SET b=85513 WHERE a=22811;\nUPDATE t2 SET b=85836 WHERE a=22812;\nUPDATE t2 SET b=29253 WHERE a=22813;\nUPDATE t2 SET b=98684 WHERE a=22814;\nUPDATE t2 SET b=70399 WHERE a=22815;\nUPDATE t2 SET b=9489 WHERE a=22816;\nUPDATE t2 SET b=23517 WHERE a=22817;\nUPDATE t2 SET b=36975 WHERE a=22818;\nUPDATE t2 SET b=78376 WHERE a=22819;\nUPDATE t2 SET b=32795 WHERE a=22820;\nUPDATE t2 SET b=87030 WHERE a=22821;\nUPDATE t2 SET b=4586 WHERE a=22822;\nUPDATE t2 SET b=90013 WHERE a=22823;\nUPDATE t2 SET b=29615 WHERE a=22824;\nUPDATE t2 SET b=25092 WHERE a=22825;\nUPDATE t2 SET b=48630 WHERE a=22826;\nUPDATE t2 SET b=75673 WHERE a=22827;\nUPDATE t2 SET b=45686 WHERE a=22828;\nUPDATE t2 SET b=62121 WHERE a=22829;\nUPDATE t2 SET b=65139 WHERE a=22830;\nUPDATE t2 SET b=76952 WHERE a=22831;\nUPDATE t2 SET b=27008 WHERE a=22832;\nUPDATE t2 SET b=63107 WHERE a=22833;\nUPDATE t2 SET b=10442 WHERE a=22834;\nUPDATE t2 SET b=44138 WHERE a=22835;\nUPDATE t2 SET b=53 WHERE a=22836;\nUPDATE t2 SET b=89464 WHERE a=22837;\nUPDATE t2 SET b=82867 WHERE a=22838;\nUPDATE t2 SET b=9241 WHERE a=22839;\nUPDATE t2 SET b=53577 WHERE a=22840;\nUPDATE t2 SET b=14207 WHERE a=22841;\nUPDATE t2 SET b=18619 WHERE a=22842;\nUPDATE t2 SET b=57101 WHERE a=22843;\nUPDATE t2 SET b=84000 WHERE a=22844;\nUPDATE t2 SET b=79067 WHERE a=22845;\nUPDATE t2 SET b=71008 WHERE a=22846;\nUPDATE t2 SET b=73735 WHERE a=22847;\nUPDATE t2 SET b=22925 WHERE a=22848;\nUPDATE t2 SET b=28957 WHERE a=22849;\nUPDATE t2 SET b=3855 WHERE a=22850;\nUPDATE t2 SET b=49259 WHERE a=22851;\nUPDATE t2 SET b=28171 WHERE a=22852;\nUPDATE t2 SET b=13208 WHERE a=22853;\nUPDATE t2 SET b=88808 WHERE a=22854;\nUPDATE t2 SET b=55734 WHERE a=22855;\nUPDATE t2 SET b=50072 WHERE a=22856;\nUPDATE t2 SET b=79330 WHERE a=22857;\nUPDATE t2 SET b=26425 WHERE a=22858;\nUPDATE t2 SET b=34988 WHERE a=22859;\nUPDATE t2 SET b=38018 WHERE a=22860;\nUPDATE t2 SET b=19489 WHERE a=22861;\nUPDATE t2 SET b=47952 WHERE a=22862;\nUPDATE t2 SET b=4846 WHERE a=22863;\nUPDATE t2 SET b=49800 WHERE a=22864;\nUPDATE t2 SET b=3924 WHERE a=22865;\nUPDATE t2 SET b=43087 WHERE a=22866;\nUPDATE t2 SET b=54138 WHERE a=22867;\nUPDATE t2 SET b=23756 WHERE a=22868;\nUPDATE t2 SET b=69746 WHERE a=22869;\nUPDATE t2 SET b=9598 WHERE a=22870;\nUPDATE t2 SET b=60998 WHERE a=22871;\nUPDATE t2 SET b=96878 WHERE a=22872;\nUPDATE t2 SET b=68380 WHERE a=22873;\nUPDATE t2 SET b=87206 WHERE a=22874;\nUPDATE t2 SET b=70838 WHERE a=22875;\nUPDATE t2 SET b=2666 WHERE a=22876;\nUPDATE t2 SET b=47185 WHERE a=22877;\nUPDATE t2 SET b=9252 WHERE a=22878;\nUPDATE t2 SET b=8228 WHERE a=22879;\nUPDATE t2 SET b=19446 WHERE a=22880;\nUPDATE t2 SET b=85407 WHERE a=22881;\nUPDATE t2 SET b=41147 WHERE a=22882;\nUPDATE t2 SET b=18920 WHERE a=22883;\nUPDATE t2 SET b=45767 WHERE a=22884;\nUPDATE t2 SET b=53520 WHERE a=22885;\nUPDATE t2 SET b=29872 WHERE a=22886;\nUPDATE t2 SET b=89527 WHERE a=22887;\nUPDATE t2 SET b=41994 WHERE a=22888;\nUPDATE t2 SET b=92544 WHERE a=22889;\nUPDATE t2 SET b=53513 WHERE a=22890;\nUPDATE t2 SET b=16582 WHERE a=22891;\nUPDATE t2 SET b=27689 WHERE a=22892;\nUPDATE t2 SET b=14114 WHERE a=22893;\nUPDATE t2 SET b=42438 WHERE a=22894;\nUPDATE t2 SET b=88017 WHERE a=22895;\nUPDATE t2 SET b=33176 WHERE a=22896;\nUPDATE t2 SET b=15375 WHERE a=22897;\nUPDATE t2 SET b=81959 WHERE a=22898;\nUPDATE t2 SET b=12622 WHERE a=22899;\nUPDATE t2 SET b=65776 WHERE a=22900;\nUPDATE t2 SET b=8139 WHERE a=22901;\nUPDATE t2 SET b=96698 WHERE a=22902;\nUPDATE t2 SET b=44772 WHERE a=22903;\nUPDATE t2 SET b=64199 WHERE a=22904;\nUPDATE t2 SET b=39429 WHERE a=22905;\nUPDATE t2 SET b=37477 WHERE a=22906;\nUPDATE t2 SET b=84286 WHERE a=22907;\nUPDATE t2 SET b=29281 WHERE a=22908;\nUPDATE t2 SET b=19022 WHERE a=22909;\nUPDATE t2 SET b=97310 WHERE a=22910;\nUPDATE t2 SET b=35385 WHERE a=22911;\nUPDATE t2 SET b=80092 WHERE a=22912;\nUPDATE t2 SET b=69579 WHERE a=22913;\nUPDATE t2 SET b=53782 WHERE a=22914;\nUPDATE t2 SET b=29228 WHERE a=22915;\nUPDATE t2 SET b=53534 WHERE a=22916;\nUPDATE t2 SET b=78513 WHERE a=22917;\nUPDATE t2 SET b=49127 WHERE a=22918;\nUPDATE t2 SET b=2543 WHERE a=22919;\nUPDATE t2 SET b=43925 WHERE a=22920;\nUPDATE t2 SET b=5767 WHERE a=22921;\nUPDATE t2 SET b=61618 WHERE a=22922;\nUPDATE t2 SET b=58451 WHERE a=22923;\nUPDATE t2 SET b=74633 WHERE a=22924;\nUPDATE t2 SET b=86786 WHERE a=22925;\nUPDATE t2 SET b=31812 WHERE a=22926;\nUPDATE t2 SET b=86347 WHERE a=22927;\nUPDATE t2 SET b=55625 WHERE a=22928;\nUPDATE t2 SET b=62952 WHERE a=22929;\nUPDATE t2 SET b=45015 WHERE a=22930;\nUPDATE t2 SET b=32446 WHERE a=22931;\nUPDATE t2 SET b=19228 WHERE a=22932;\nUPDATE t2 SET b=79070 WHERE a=22933;\nUPDATE t2 SET b=65666 WHERE a=22934;\nUPDATE t2 SET b=50022 WHERE a=22935;\nUPDATE t2 SET b=81273 WHERE a=22936;\nUPDATE t2 SET b=75946 WHERE a=22937;\nUPDATE t2 SET b=20378 WHERE a=22938;\nUPDATE t2 SET b=74200 WHERE a=22939;\nUPDATE t2 SET b=16792 WHERE a=22940;\nUPDATE t2 SET b=44932 WHERE a=22941;\nUPDATE t2 SET b=62071 WHERE a=22942;\nUPDATE t2 SET b=71655 WHERE a=22943;\nUPDATE t2 SET b=87920 WHERE a=22944;\nUPDATE t2 SET b=32494 WHERE a=22945;\nUPDATE t2 SET b=3963 WHERE a=22946;\nUPDATE t2 SET b=95624 WHERE a=22947;\nUPDATE t2 SET b=70701 WHERE a=22948;\nUPDATE t2 SET b=12930 WHERE a=22949;\nUPDATE t2 SET b=40431 WHERE a=22950;\nUPDATE t2 SET b=26297 WHERE a=22951;\nUPDATE t2 SET b=68871 WHERE a=22952;\nUPDATE t2 SET b=79329 WHERE a=22953;\nUPDATE t2 SET b=91321 WHERE a=22954;\nUPDATE t2 SET b=52874 WHERE a=22955;\nUPDATE t2 SET b=90917 WHERE a=22956;\nUPDATE t2 SET b=70752 WHERE a=22957;\nUPDATE t2 SET b=48017 WHERE a=22958;\nUPDATE t2 SET b=62873 WHERE a=22959;\nUPDATE t2 SET b=7714 WHERE a=22960;\nUPDATE t2 SET b=82695 WHERE a=22961;\nUPDATE t2 SET b=40498 WHERE a=22962;\nUPDATE t2 SET b=11293 WHERE a=22963;\nUPDATE t2 SET b=30222 WHERE a=22964;\nUPDATE t2 SET b=28721 WHERE a=22965;\nUPDATE t2 SET b=25694 WHERE a=22966;\nUPDATE t2 SET b=81476 WHERE a=22967;\nUPDATE t2 SET b=57760 WHERE a=22968;\nUPDATE t2 SET b=52160 WHERE a=22969;\nUPDATE t2 SET b=38840 WHERE a=22970;\nUPDATE t2 SET b=50775 WHERE a=22971;\nUPDATE t2 SET b=48070 WHERE a=22972;\nUPDATE t2 SET b=20222 WHERE a=22973;\nUPDATE t2 SET b=36818 WHERE a=22974;\nUPDATE t2 SET b=32898 WHERE a=22975;\nUPDATE t2 SET b=21232 WHERE a=22976;\nUPDATE t2 SET b=59054 WHERE a=22977;\nUPDATE t2 SET b=77163 WHERE a=22978;\nUPDATE t2 SET b=30747 WHERE a=22979;\nUPDATE t2 SET b=46367 WHERE a=22980;\nUPDATE t2 SET b=11759 WHERE a=22981;\nUPDATE t2 SET b=11713 WHERE a=22982;\nUPDATE t2 SET b=86716 WHERE a=22983;\nUPDATE t2 SET b=692 WHERE a=22984;\nUPDATE t2 SET b=18554 WHERE a=22985;\nUPDATE t2 SET b=74477 WHERE a=22986;\nUPDATE t2 SET b=85513 WHERE a=22987;\nUPDATE t2 SET b=71010 WHERE a=22988;\nUPDATE t2 SET b=53157 WHERE a=22989;\nUPDATE t2 SET b=34101 WHERE a=22990;\nUPDATE t2 SET b=6356 WHERE a=22991;\nUPDATE t2 SET b=91546 WHERE a=22992;\nUPDATE t2 SET b=64808 WHERE a=22993;\nUPDATE t2 SET b=80397 WHERE a=22994;\nUPDATE t2 SET b=7149 WHERE a=22995;\nUPDATE t2 SET b=92766 WHERE a=22996;\nUPDATE t2 SET b=69393 WHERE a=22997;\nUPDATE t2 SET b=38707 WHERE a=22998;\nUPDATE t2 SET b=84202 WHERE a=22999;\nUPDATE t2 SET b=72008 WHERE a=23000;\nUPDATE t2 SET b=44769 WHERE a=23001;\nUPDATE t2 SET b=6237 WHERE a=23002;\nUPDATE t2 SET b=15432 WHERE a=23003;\nUPDATE t2 SET b=11189 WHERE a=23004;\nUPDATE t2 SET b=6244 WHERE a=23005;\nUPDATE t2 SET b=25560 WHERE a=23006;\nUPDATE t2 SET b=7765 WHERE a=23007;\nUPDATE t2 SET b=3784 WHERE a=23008;\nUPDATE t2 SET b=80874 WHERE a=23009;\nUPDATE t2 SET b=66656 WHERE a=23010;\nUPDATE t2 SET b=10220 WHERE a=23011;\nUPDATE t2 SET b=71168 WHERE a=23012;\nUPDATE t2 SET b=11064 WHERE a=23013;\nUPDATE t2 SET b=25550 WHERE a=23014;\nUPDATE t2 SET b=1659 WHERE a=23015;\nUPDATE t2 SET b=95717 WHERE a=23016;\nUPDATE t2 SET b=60150 WHERE a=23017;\nUPDATE t2 SET b=26004 WHERE a=23018;\nUPDATE t2 SET b=11369 WHERE a=23019;\nUPDATE t2 SET b=48145 WHERE a=23020;\nUPDATE t2 SET b=30424 WHERE a=23021;\nUPDATE t2 SET b=68562 WHERE a=23022;\nUPDATE t2 SET b=43441 WHERE a=23023;\nUPDATE t2 SET b=67607 WHERE a=23024;\nUPDATE t2 SET b=77071 WHERE a=23025;\nUPDATE t2 SET b=2818 WHERE a=23026;\nUPDATE t2 SET b=99071 WHERE a=23027;\nUPDATE t2 SET b=32703 WHERE a=23028;\nUPDATE t2 SET b=61815 WHERE a=23029;\nUPDATE t2 SET b=91361 WHERE a=23030;\nUPDATE t2 SET b=93710 WHERE a=23031;\nUPDATE t2 SET b=26064 WHERE a=23032;\nUPDATE t2 SET b=21861 WHERE a=23033;\nUPDATE t2 SET b=62719 WHERE a=23034;\nUPDATE t2 SET b=13266 WHERE a=23035;\nUPDATE t2 SET b=19588 WHERE a=23036;\nUPDATE t2 SET b=49207 WHERE a=23037;\nUPDATE t2 SET b=48217 WHERE a=23038;\nUPDATE t2 SET b=23945 WHERE a=23039;\nUPDATE t2 SET b=77346 WHERE a=23040;\nUPDATE t2 SET b=91502 WHERE a=23041;\nUPDATE t2 SET b=84525 WHERE a=23042;\nUPDATE t2 SET b=39763 WHERE a=23043;\nUPDATE t2 SET b=85404 WHERE a=23044;\nUPDATE t2 SET b=71025 WHERE a=23045;\nUPDATE t2 SET b=39014 WHERE a=23046;\nUPDATE t2 SET b=51442 WHERE a=23047;\nUPDATE t2 SET b=18687 WHERE a=23048;\nUPDATE t2 SET b=9073 WHERE a=23049;\nUPDATE t2 SET b=74499 WHERE a=23050;\nUPDATE t2 SET b=39486 WHERE a=23051;\nUPDATE t2 SET b=49618 WHERE a=23052;\nUPDATE t2 SET b=397 WHERE a=23053;\nUPDATE t2 SET b=15288 WHERE a=23054;\nUPDATE t2 SET b=85262 WHERE a=23055;\nUPDATE t2 SET b=20610 WHERE a=23056;\nUPDATE t2 SET b=38925 WHERE a=23057;\nUPDATE t2 SET b=81067 WHERE a=23058;\nUPDATE t2 SET b=53853 WHERE a=23059;\nUPDATE t2 SET b=29050 WHERE a=23060;\nUPDATE t2 SET b=42002 WHERE a=23061;\nUPDATE t2 SET b=51394 WHERE a=23062;\nUPDATE t2 SET b=60324 WHERE a=23063;\nUPDATE t2 SET b=85116 WHERE a=23064;\nUPDATE t2 SET b=56580 WHERE a=23065;\nUPDATE t2 SET b=44408 WHERE a=23066;\nUPDATE t2 SET b=9592 WHERE a=23067;\nUPDATE t2 SET b=40244 WHERE a=23068;\nUPDATE t2 SET b=51062 WHERE a=23069;\nUPDATE t2 SET b=16611 WHERE a=23070;\nUPDATE t2 SET b=10386 WHERE a=23071;\nUPDATE t2 SET b=55299 WHERE a=23072;\nUPDATE t2 SET b=43259 WHERE a=23073;\nUPDATE t2 SET b=8119 WHERE a=23074;\nUPDATE t2 SET b=63946 WHERE a=23075;\nUPDATE t2 SET b=18375 WHERE a=23076;\nUPDATE t2 SET b=50897 WHERE a=23077;\nUPDATE t2 SET b=72310 WHERE a=23078;\nUPDATE t2 SET b=7211 WHERE a=23079;\nUPDATE t2 SET b=11580 WHERE a=23080;\nUPDATE t2 SET b=13086 WHERE a=23081;\nUPDATE t2 SET b=5623 WHERE a=23082;\nUPDATE t2 SET b=27056 WHERE a=23083;\nUPDATE t2 SET b=86996 WHERE a=23084;\nUPDATE t2 SET b=56157 WHERE a=23085;\nUPDATE t2 SET b=7588 WHERE a=23086;\nUPDATE t2 SET b=8560 WHERE a=23087;\nUPDATE t2 SET b=53305 WHERE a=23088;\nUPDATE t2 SET b=39365 WHERE a=23089;\nUPDATE t2 SET b=40857 WHERE a=23090;\nUPDATE t2 SET b=11050 WHERE a=23091;\nUPDATE t2 SET b=53609 WHERE a=23092;\nUPDATE t2 SET b=9797 WHERE a=23093;\nUPDATE t2 SET b=36071 WHERE a=23094;\nUPDATE t2 SET b=15772 WHERE a=23095;\nUPDATE t2 SET b=71473 WHERE a=23096;\nUPDATE t2 SET b=80342 WHERE a=23097;\nUPDATE t2 SET b=25310 WHERE a=23098;\nUPDATE t2 SET b=86468 WHERE a=23099;\nUPDATE t2 SET b=56224 WHERE a=23100;\nUPDATE t2 SET b=89383 WHERE a=23101;\nUPDATE t2 SET b=72867 WHERE a=23102;\nUPDATE t2 SET b=65194 WHERE a=23103;\nUPDATE t2 SET b=34153 WHERE a=23104;\nUPDATE t2 SET b=70654 WHERE a=23105;\nUPDATE t2 SET b=44720 WHERE a=23106;\nUPDATE t2 SET b=56307 WHERE a=23107;\nUPDATE t2 SET b=96859 WHERE a=23108;\nUPDATE t2 SET b=87919 WHERE a=23109;\nUPDATE t2 SET b=71443 WHERE a=23110;\nUPDATE t2 SET b=96465 WHERE a=23111;\nUPDATE t2 SET b=43666 WHERE a=23112;\nUPDATE t2 SET b=91276 WHERE a=23113;\nUPDATE t2 SET b=33001 WHERE a=23114;\nUPDATE t2 SET b=59339 WHERE a=23115;\nUPDATE t2 SET b=4811 WHERE a=23116;\nUPDATE t2 SET b=24227 WHERE a=23117;\nUPDATE t2 SET b=2034 WHERE a=23118;\nUPDATE t2 SET b=79327 WHERE a=23119;\nUPDATE t2 SET b=62433 WHERE a=23120;\nUPDATE t2 SET b=34768 WHERE a=23121;\nUPDATE t2 SET b=94937 WHERE a=23122;\nUPDATE t2 SET b=47742 WHERE a=23123;\nUPDATE t2 SET b=97451 WHERE a=23124;\nUPDATE t2 SET b=13726 WHERE a=23125;\nUPDATE t2 SET b=13527 WHERE a=23126;\nUPDATE t2 SET b=39441 WHERE a=23127;\nUPDATE t2 SET b=73397 WHERE a=23128;\nUPDATE t2 SET b=36078 WHERE a=23129;\nUPDATE t2 SET b=22201 WHERE a=23130;\nUPDATE t2 SET b=57372 WHERE a=23131;\nUPDATE t2 SET b=34679 WHERE a=23132;\nUPDATE t2 SET b=70650 WHERE a=23133;\nUPDATE t2 SET b=30459 WHERE a=23134;\nUPDATE t2 SET b=85435 WHERE a=23135;\nUPDATE t2 SET b=89818 WHERE a=23136;\nUPDATE t2 SET b=19678 WHERE a=23137;\nUPDATE t2 SET b=3082 WHERE a=23138;\nUPDATE t2 SET b=28123 WHERE a=23139;\nUPDATE t2 SET b=20839 WHERE a=23140;\nUPDATE t2 SET b=8672 WHERE a=23141;\nUPDATE t2 SET b=94287 WHERE a=23142;\nUPDATE t2 SET b=63303 WHERE a=23143;\nUPDATE t2 SET b=25179 WHERE a=23144;\nUPDATE t2 SET b=87100 WHERE a=23145;\nUPDATE t2 SET b=17315 WHERE a=23146;\nUPDATE t2 SET b=3691 WHERE a=23147;\nUPDATE t2 SET b=51699 WHERE a=23148;\nUPDATE t2 SET b=121 WHERE a=23149;\nUPDATE t2 SET b=82072 WHERE a=23150;\nUPDATE t2 SET b=35795 WHERE a=23151;\nUPDATE t2 SET b=62153 WHERE a=23152;\nUPDATE t2 SET b=63733 WHERE a=23153;\nUPDATE t2 SET b=33678 WHERE a=23154;\nUPDATE t2 SET b=60478 WHERE a=23155;\nUPDATE t2 SET b=22815 WHERE a=23156;\nUPDATE t2 SET b=84629 WHERE a=23157;\nUPDATE t2 SET b=34544 WHERE a=23158;\nUPDATE t2 SET b=92699 WHERE a=23159;\nUPDATE t2 SET b=35627 WHERE a=23160;\nUPDATE t2 SET b=92999 WHERE a=23161;\nUPDATE t2 SET b=2108 WHERE a=23162;\nUPDATE t2 SET b=67993 WHERE a=23163;\nUPDATE t2 SET b=1197 WHERE a=23164;\nUPDATE t2 SET b=50064 WHERE a=23165;\nUPDATE t2 SET b=81869 WHERE a=23166;\nUPDATE t2 SET b=71838 WHERE a=23167;\nUPDATE t2 SET b=38183 WHERE a=23168;\nUPDATE t2 SET b=92287 WHERE a=23169;\nUPDATE t2 SET b=70121 WHERE a=23170;\nUPDATE t2 SET b=62896 WHERE a=23171;\nUPDATE t2 SET b=6269 WHERE a=23172;\nUPDATE t2 SET b=52587 WHERE a=23173;\nUPDATE t2 SET b=55316 WHERE a=23174;\nUPDATE t2 SET b=20868 WHERE a=23175;\nUPDATE t2 SET b=92001 WHERE a=23176;\nUPDATE t2 SET b=75514 WHERE a=23177;\nUPDATE t2 SET b=57416 WHERE a=23178;\nUPDATE t2 SET b=64388 WHERE a=23179;\nUPDATE t2 SET b=61611 WHERE a=23180;\nUPDATE t2 SET b=77871 WHERE a=23181;\nUPDATE t2 SET b=77185 WHERE a=23182;\nUPDATE t2 SET b=59456 WHERE a=23183;\nUPDATE t2 SET b=10463 WHERE a=23184;\nUPDATE t2 SET b=74726 WHERE a=23185;\nUPDATE t2 SET b=81848 WHERE a=23186;\nUPDATE t2 SET b=43287 WHERE a=23187;\nUPDATE t2 SET b=43448 WHERE a=23188;\nUPDATE t2 SET b=21600 WHERE a=23189;\nUPDATE t2 SET b=59601 WHERE a=23190;\nUPDATE t2 SET b=18348 WHERE a=23191;\nUPDATE t2 SET b=80393 WHERE a=23192;\nUPDATE t2 SET b=89741 WHERE a=23193;\nUPDATE t2 SET b=23279 WHERE a=23194;\nUPDATE t2 SET b=40487 WHERE a=23195;\nUPDATE t2 SET b=86726 WHERE a=23196;\nUPDATE t2 SET b=25760 WHERE a=23197;\nUPDATE t2 SET b=67657 WHERE a=23198;\nUPDATE t2 SET b=87632 WHERE a=23199;\nUPDATE t2 SET b=71253 WHERE a=23200;\nUPDATE t2 SET b=81391 WHERE a=23201;\nUPDATE t2 SET b=54653 WHERE a=23202;\nUPDATE t2 SET b=22192 WHERE a=23203;\nUPDATE t2 SET b=22585 WHERE a=23204;\nUPDATE t2 SET b=95163 WHERE a=23205;\nUPDATE t2 SET b=66575 WHERE a=23206;\nUPDATE t2 SET b=6752 WHERE a=23207;\nUPDATE t2 SET b=51093 WHERE a=23208;\nUPDATE t2 SET b=14122 WHERE a=23209;\nUPDATE t2 SET b=1578 WHERE a=23210;\nUPDATE t2 SET b=28276 WHERE a=23211;\nUPDATE t2 SET b=54268 WHERE a=23212;\nUPDATE t2 SET b=5548 WHERE a=23213;\nUPDATE t2 SET b=15502 WHERE a=23214;\nUPDATE t2 SET b=40266 WHERE a=23215;\nUPDATE t2 SET b=80465 WHERE a=23216;\nUPDATE t2 SET b=68100 WHERE a=23217;\nUPDATE t2 SET b=95771 WHERE a=23218;\nUPDATE t2 SET b=88771 WHERE a=23219;\nUPDATE t2 SET b=94851 WHERE a=23220;\nUPDATE t2 SET b=7857 WHERE a=23221;\nUPDATE t2 SET b=8564 WHERE a=23222;\nUPDATE t2 SET b=76198 WHERE a=23223;\nUPDATE t2 SET b=65682 WHERE a=23224;\nUPDATE t2 SET b=3598 WHERE a=23225;\nUPDATE t2 SET b=35510 WHERE a=23226;\nUPDATE t2 SET b=74235 WHERE a=23227;\nUPDATE t2 SET b=77216 WHERE a=23228;\nUPDATE t2 SET b=36600 WHERE a=23229;\nUPDATE t2 SET b=3242 WHERE a=23230;\nUPDATE t2 SET b=990 WHERE a=23231;\nUPDATE t2 SET b=43535 WHERE a=23232;\nUPDATE t2 SET b=16017 WHERE a=23233;\nUPDATE t2 SET b=58208 WHERE a=23234;\nUPDATE t2 SET b=67854 WHERE a=23235;\nUPDATE t2 SET b=68608 WHERE a=23236;\nUPDATE t2 SET b=15629 WHERE a=23237;\nUPDATE t2 SET b=99966 WHERE a=23238;\nUPDATE t2 SET b=64372 WHERE a=23239;\nUPDATE t2 SET b=38757 WHERE a=23240;\nUPDATE t2 SET b=97088 WHERE a=23241;\nUPDATE t2 SET b=19851 WHERE a=23242;\nUPDATE t2 SET b=62091 WHERE a=23243;\nUPDATE t2 SET b=94744 WHERE a=23244;\nUPDATE t2 SET b=67586 WHERE a=23245;\nUPDATE t2 SET b=30431 WHERE a=23246;\nUPDATE t2 SET b=74090 WHERE a=23247;\nUPDATE t2 SET b=99856 WHERE a=23248;\nUPDATE t2 SET b=22596 WHERE a=23249;\nUPDATE t2 SET b=52614 WHERE a=23250;\nUPDATE t2 SET b=76302 WHERE a=23251;\nUPDATE t2 SET b=21016 WHERE a=23252;\nUPDATE t2 SET b=20004 WHERE a=23253;\nUPDATE t2 SET b=52668 WHERE a=23254;\nUPDATE t2 SET b=20231 WHERE a=23255;\nUPDATE t2 SET b=90309 WHERE a=23256;\nUPDATE t2 SET b=55124 WHERE a=23257;\nUPDATE t2 SET b=61187 WHERE a=23258;\nUPDATE t2 SET b=58675 WHERE a=23259;\nUPDATE t2 SET b=47510 WHERE a=23260;\nUPDATE t2 SET b=67775 WHERE a=23261;\nUPDATE t2 SET b=25903 WHERE a=23262;\nUPDATE t2 SET b=95346 WHERE a=23263;\nUPDATE t2 SET b=21623 WHERE a=23264;\nUPDATE t2 SET b=28382 WHERE a=23265;\nUPDATE t2 SET b=58266 WHERE a=23266;\nUPDATE t2 SET b=69447 WHERE a=23267;\nUPDATE t2 SET b=53227 WHERE a=23268;\nUPDATE t2 SET b=63725 WHERE a=23269;\nUPDATE t2 SET b=79485 WHERE a=23270;\nUPDATE t2 SET b=75390 WHERE a=23271;\nUPDATE t2 SET b=72793 WHERE a=23272;\nUPDATE t2 SET b=35373 WHERE a=23273;\nUPDATE t2 SET b=90315 WHERE a=23274;\nUPDATE t2 SET b=800 WHERE a=23275;\nUPDATE t2 SET b=1121 WHERE a=23276;\nUPDATE t2 SET b=19147 WHERE a=23277;\nUPDATE t2 SET b=30221 WHERE a=23278;\nUPDATE t2 SET b=25712 WHERE a=23279;\nUPDATE t2 SET b=34172 WHERE a=23280;\nUPDATE t2 SET b=52374 WHERE a=23281;\nUPDATE t2 SET b=44465 WHERE a=23282;\nUPDATE t2 SET b=85827 WHERE a=23283;\nUPDATE t2 SET b=60508 WHERE a=23284;\nUPDATE t2 SET b=35521 WHERE a=23285;\nUPDATE t2 SET b=85134 WHERE a=23286;\nUPDATE t2 SET b=20391 WHERE a=23287;\nUPDATE t2 SET b=63291 WHERE a=23288;\nUPDATE t2 SET b=97774 WHERE a=23289;\nUPDATE t2 SET b=88993 WHERE a=23290;\nUPDATE t2 SET b=62709 WHERE a=23291;\nUPDATE t2 SET b=92281 WHERE a=23292;\nUPDATE t2 SET b=31387 WHERE a=23293;\nUPDATE t2 SET b=17613 WHERE a=23294;\nUPDATE t2 SET b=36220 WHERE a=23295;\nUPDATE t2 SET b=27297 WHERE a=23296;\nUPDATE t2 SET b=93318 WHERE a=23297;\nUPDATE t2 SET b=67054 WHERE a=23298;\nUPDATE t2 SET b=29977 WHERE a=23299;\nUPDATE t2 SET b=74220 WHERE a=23300;\nUPDATE t2 SET b=46664 WHERE a=23301;\nUPDATE t2 SET b=99917 WHERE a=23302;\nUPDATE t2 SET b=49724 WHERE a=23303;\nUPDATE t2 SET b=60790 WHERE a=23304;\nUPDATE t2 SET b=69212 WHERE a=23305;\nUPDATE t2 SET b=11030 WHERE a=23306;\nUPDATE t2 SET b=86962 WHERE a=23307;\nUPDATE t2 SET b=74367 WHERE a=23308;\nUPDATE t2 SET b=55246 WHERE a=23309;\nUPDATE t2 SET b=73934 WHERE a=23310;\nUPDATE t2 SET b=47487 WHERE a=23311;\nUPDATE t2 SET b=31472 WHERE a=23312;\nUPDATE t2 SET b=10619 WHERE a=23313;\nUPDATE t2 SET b=24527 WHERE a=23314;\nUPDATE t2 SET b=95858 WHERE a=23315;\nUPDATE t2 SET b=31548 WHERE a=23316;\nUPDATE t2 SET b=50451 WHERE a=23317;\nUPDATE t2 SET b=21533 WHERE a=23318;\nUPDATE t2 SET b=1357 WHERE a=23319;\nUPDATE t2 SET b=77766 WHERE a=23320;\nUPDATE t2 SET b=44440 WHERE a=23321;\nUPDATE t2 SET b=92511 WHERE a=23322;\nUPDATE t2 SET b=49133 WHERE a=23323;\nUPDATE t2 SET b=64515 WHERE a=23324;\nUPDATE t2 SET b=95679 WHERE a=23325;\nUPDATE t2 SET b=58107 WHERE a=23326;\nUPDATE t2 SET b=86966 WHERE a=23327;\nUPDATE t2 SET b=11190 WHERE a=23328;\nUPDATE t2 SET b=81613 WHERE a=23329;\nUPDATE t2 SET b=62659 WHERE a=23330;\nUPDATE t2 SET b=79584 WHERE a=23331;\nUPDATE t2 SET b=29246 WHERE a=23332;\nUPDATE t2 SET b=97236 WHERE a=23333;\nUPDATE t2 SET b=74978 WHERE a=23334;\nUPDATE t2 SET b=34138 WHERE a=23335;\nUPDATE t2 SET b=45507 WHERE a=23336;\nUPDATE t2 SET b=37786 WHERE a=23337;\nUPDATE t2 SET b=47278 WHERE a=23338;\nUPDATE t2 SET b=74362 WHERE a=23339;\nUPDATE t2 SET b=2774 WHERE a=23340;\nUPDATE t2 SET b=77619 WHERE a=23341;\nUPDATE t2 SET b=19954 WHERE a=23342;\nUPDATE t2 SET b=67267 WHERE a=23343;\nUPDATE t2 SET b=21262 WHERE a=23344;\nUPDATE t2 SET b=80112 WHERE a=23345;\nUPDATE t2 SET b=3037 WHERE a=23346;\nUPDATE t2 SET b=7724 WHERE a=23347;\nUPDATE t2 SET b=59288 WHERE a=23348;\nUPDATE t2 SET b=49151 WHERE a=23349;\nUPDATE t2 SET b=19202 WHERE a=23350;\nUPDATE t2 SET b=3250 WHERE a=23351;\nUPDATE t2 SET b=77998 WHERE a=23352;\nUPDATE t2 SET b=70650 WHERE a=23353;\nUPDATE t2 SET b=36462 WHERE a=23354;\nUPDATE t2 SET b=61429 WHERE a=23355;\nUPDATE t2 SET b=65197 WHERE a=23356;\nUPDATE t2 SET b=10124 WHERE a=23357;\nUPDATE t2 SET b=21052 WHERE a=23358;\nUPDATE t2 SET b=92919 WHERE a=23359;\nUPDATE t2 SET b=68576 WHERE a=23360;\nUPDATE t2 SET b=2812 WHERE a=23361;\nUPDATE t2 SET b=88135 WHERE a=23362;\nUPDATE t2 SET b=88245 WHERE a=23363;\nUPDATE t2 SET b=57487 WHERE a=23364;\nUPDATE t2 SET b=24430 WHERE a=23365;\nUPDATE t2 SET b=85564 WHERE a=23366;\nUPDATE t2 SET b=52140 WHERE a=23367;\nUPDATE t2 SET b=15560 WHERE a=23368;\nUPDATE t2 SET b=90236 WHERE a=23369;\nUPDATE t2 SET b=89442 WHERE a=23370;\nUPDATE t2 SET b=54287 WHERE a=23371;\nUPDATE t2 SET b=29482 WHERE a=23372;\nUPDATE t2 SET b=28271 WHERE a=23373;\nUPDATE t2 SET b=34122 WHERE a=23374;\nUPDATE t2 SET b=58955 WHERE a=23375;\nUPDATE t2 SET b=34603 WHERE a=23376;\nUPDATE t2 SET b=52993 WHERE a=23377;\nUPDATE t2 SET b=93683 WHERE a=23378;\nUPDATE t2 SET b=68370 WHERE a=23379;\nUPDATE t2 SET b=88213 WHERE a=23380;\nUPDATE t2 SET b=4035 WHERE a=23381;\nUPDATE t2 SET b=74977 WHERE a=23382;\nUPDATE t2 SET b=34492 WHERE a=23383;\nUPDATE t2 SET b=21662 WHERE a=23384;\nUPDATE t2 SET b=89316 WHERE a=23385;\nUPDATE t2 SET b=97833 WHERE a=23386;\nUPDATE t2 SET b=56686 WHERE a=23387;\nUPDATE t2 SET b=65121 WHERE a=23388;\nUPDATE t2 SET b=85891 WHERE a=23389;\nUPDATE t2 SET b=89944 WHERE a=23390;\nUPDATE t2 SET b=68324 WHERE a=23391;\nUPDATE t2 SET b=2446 WHERE a=23392;\nUPDATE t2 SET b=37590 WHERE a=23393;\nUPDATE t2 SET b=7594 WHERE a=23394;\nUPDATE t2 SET b=30846 WHERE a=23395;\nUPDATE t2 SET b=75716 WHERE a=23396;\nUPDATE t2 SET b=85147 WHERE a=23397;\nUPDATE t2 SET b=29098 WHERE a=23398;\nUPDATE t2 SET b=56352 WHERE a=23399;\nUPDATE t2 SET b=99274 WHERE a=23400;\nUPDATE t2 SET b=74072 WHERE a=23401;\nUPDATE t2 SET b=10264 WHERE a=23402;\nUPDATE t2 SET b=53187 WHERE a=23403;\nUPDATE t2 SET b=20830 WHERE a=23404;\nUPDATE t2 SET b=3961 WHERE a=23405;\nUPDATE t2 SET b=373 WHERE a=23406;\nUPDATE t2 SET b=60649 WHERE a=23407;\nUPDATE t2 SET b=64760 WHERE a=23408;\nUPDATE t2 SET b=6409 WHERE a=23409;\nUPDATE t2 SET b=63145 WHERE a=23410;\nUPDATE t2 SET b=59364 WHERE a=23411;\nUPDATE t2 SET b=40280 WHERE a=23412;\nUPDATE t2 SET b=32262 WHERE a=23413;\nUPDATE t2 SET b=95556 WHERE a=23414;\nUPDATE t2 SET b=58879 WHERE a=23415;\nUPDATE t2 SET b=94446 WHERE a=23416;\nUPDATE t2 SET b=90348 WHERE a=23417;\nUPDATE t2 SET b=73377 WHERE a=23418;\nUPDATE t2 SET b=93762 WHERE a=23419;\nUPDATE t2 SET b=37131 WHERE a=23420;\nUPDATE t2 SET b=82341 WHERE a=23421;\nUPDATE t2 SET b=74965 WHERE a=23422;\nUPDATE t2 SET b=38309 WHERE a=23423;\nUPDATE t2 SET b=44259 WHERE a=23424;\nUPDATE t2 SET b=99810 WHERE a=23425;\nUPDATE t2 SET b=55577 WHERE a=23426;\nUPDATE t2 SET b=79071 WHERE a=23427;\nUPDATE t2 SET b=40738 WHERE a=23428;\nUPDATE t2 SET b=19762 WHERE a=23429;\nUPDATE t2 SET b=10744 WHERE a=23430;\nUPDATE t2 SET b=20684 WHERE a=23431;\nUPDATE t2 SET b=29940 WHERE a=23432;\nUPDATE t2 SET b=77426 WHERE a=23433;\nUPDATE t2 SET b=70862 WHERE a=23434;\nUPDATE t2 SET b=13793 WHERE a=23435;\nUPDATE t2 SET b=51919 WHERE a=23436;\nUPDATE t2 SET b=48580 WHERE a=23437;\nUPDATE t2 SET b=55971 WHERE a=23438;\nUPDATE t2 SET b=13823 WHERE a=23439;\nUPDATE t2 SET b=21199 WHERE a=23440;\nUPDATE t2 SET b=52006 WHERE a=23441;\nUPDATE t2 SET b=6690 WHERE a=23442;\nUPDATE t2 SET b=38576 WHERE a=23443;\nUPDATE t2 SET b=429 WHERE a=23444;\nUPDATE t2 SET b=50221 WHERE a=23445;\nUPDATE t2 SET b=11108 WHERE a=23446;\nUPDATE t2 SET b=47975 WHERE a=23447;\nUPDATE t2 SET b=5614 WHERE a=23448;\nUPDATE t2 SET b=53346 WHERE a=23449;\nUPDATE t2 SET b=10093 WHERE a=23450;\nUPDATE t2 SET b=34730 WHERE a=23451;\nUPDATE t2 SET b=71808 WHERE a=23452;\nUPDATE t2 SET b=16771 WHERE a=23453;\nUPDATE t2 SET b=68914 WHERE a=23454;\nUPDATE t2 SET b=88732 WHERE a=23455;\nUPDATE t2 SET b=17798 WHERE a=23456;\nUPDATE t2 SET b=64036 WHERE a=23457;\nUPDATE t2 SET b=30966 WHERE a=23458;\nUPDATE t2 SET b=90834 WHERE a=23459;\nUPDATE t2 SET b=79229 WHERE a=23460;\nUPDATE t2 SET b=93306 WHERE a=23461;\nUPDATE t2 SET b=14288 WHERE a=23462;\nUPDATE t2 SET b=86025 WHERE a=23463;\nUPDATE t2 SET b=92230 WHERE a=23464;\nUPDATE t2 SET b=21514 WHERE a=23465;\nUPDATE t2 SET b=51406 WHERE a=23466;\nUPDATE t2 SET b=36322 WHERE a=23467;\nUPDATE t2 SET b=84 WHERE a=23468;\nUPDATE t2 SET b=55267 WHERE a=23469;\nUPDATE t2 SET b=48912 WHERE a=23470;\nUPDATE t2 SET b=32339 WHERE a=23471;\nUPDATE t2 SET b=72626 WHERE a=23472;\nUPDATE t2 SET b=55642 WHERE a=23473;\nUPDATE t2 SET b=90391 WHERE a=23474;\nUPDATE t2 SET b=11042 WHERE a=23475;\nUPDATE t2 SET b=24506 WHERE a=23476;\nUPDATE t2 SET b=93348 WHERE a=23477;\nUPDATE t2 SET b=98776 WHERE a=23478;\nUPDATE t2 SET b=52993 WHERE a=23479;\nUPDATE t2 SET b=84125 WHERE a=23480;\nUPDATE t2 SET b=2719 WHERE a=23481;\nUPDATE t2 SET b=55666 WHERE a=23482;\nUPDATE t2 SET b=89562 WHERE a=23483;\nUPDATE t2 SET b=56368 WHERE a=23484;\nUPDATE t2 SET b=5376 WHERE a=23485;\nUPDATE t2 SET b=23917 WHERE a=23486;\nUPDATE t2 SET b=33517 WHERE a=23487;\nUPDATE t2 SET b=17269 WHERE a=23488;\nUPDATE t2 SET b=77709 WHERE a=23489;\nUPDATE t2 SET b=58106 WHERE a=23490;\nUPDATE t2 SET b=20082 WHERE a=23491;\nUPDATE t2 SET b=74145 WHERE a=23492;\nUPDATE t2 SET b=5080 WHERE a=23493;\nUPDATE t2 SET b=30461 WHERE a=23494;\nUPDATE t2 SET b=53852 WHERE a=23495;\nUPDATE t2 SET b=20872 WHERE a=23496;\nUPDATE t2 SET b=189 WHERE a=23497;\nUPDATE t2 SET b=78123 WHERE a=23498;\nUPDATE t2 SET b=563 WHERE a=23499;\nUPDATE t2 SET b=42744 WHERE a=23500;\nUPDATE t2 SET b=42069 WHERE a=23501;\nUPDATE t2 SET b=78711 WHERE a=23502;\nUPDATE t2 SET b=77178 WHERE a=23503;\nUPDATE t2 SET b=47078 WHERE a=23504;\nUPDATE t2 SET b=86489 WHERE a=23505;\nUPDATE t2 SET b=6572 WHERE a=23506;\nUPDATE t2 SET b=75613 WHERE a=23507;\nUPDATE t2 SET b=42084 WHERE a=23508;\nUPDATE t2 SET b=73206 WHERE a=23509;\nUPDATE t2 SET b=55408 WHERE a=23510;\nUPDATE t2 SET b=90141 WHERE a=23511;\nUPDATE t2 SET b=37249 WHERE a=23512;\nUPDATE t2 SET b=46710 WHERE a=23513;\nUPDATE t2 SET b=13378 WHERE a=23514;\nUPDATE t2 SET b=76401 WHERE a=23515;\nUPDATE t2 SET b=22623 WHERE a=23516;\nUPDATE t2 SET b=65131 WHERE a=23517;\nUPDATE t2 SET b=86419 WHERE a=23518;\nUPDATE t2 SET b=41778 WHERE a=23519;\nUPDATE t2 SET b=64262 WHERE a=23520;\nUPDATE t2 SET b=30900 WHERE a=23521;\nUPDATE t2 SET b=2340 WHERE a=23522;\nUPDATE t2 SET b=77838 WHERE a=23523;\nUPDATE t2 SET b=84646 WHERE a=23524;\nUPDATE t2 SET b=42181 WHERE a=23525;\nUPDATE t2 SET b=73279 WHERE a=23526;\nUPDATE t2 SET b=43450 WHERE a=23527;\nUPDATE t2 SET b=80435 WHERE a=23528;\nUPDATE t2 SET b=58206 WHERE a=23529;\nUPDATE t2 SET b=38733 WHERE a=23530;\nUPDATE t2 SET b=52364 WHERE a=23531;\nUPDATE t2 SET b=16109 WHERE a=23532;\nUPDATE t2 SET b=41050 WHERE a=23533;\nUPDATE t2 SET b=87959 WHERE a=23534;\nUPDATE t2 SET b=80440 WHERE a=23535;\nUPDATE t2 SET b=67596 WHERE a=23536;\nUPDATE t2 SET b=27529 WHERE a=23537;\nUPDATE t2 SET b=23588 WHERE a=23538;\nUPDATE t2 SET b=83952 WHERE a=23539;\nUPDATE t2 SET b=82228 WHERE a=23540;\nUPDATE t2 SET b=67764 WHERE a=23541;\nUPDATE t2 SET b=90016 WHERE a=23542;\nUPDATE t2 SET b=81087 WHERE a=23543;\nUPDATE t2 SET b=47754 WHERE a=23544;\nUPDATE t2 SET b=20349 WHERE a=23545;\nUPDATE t2 SET b=25033 WHERE a=23546;\nUPDATE t2 SET b=54123 WHERE a=23547;\nUPDATE t2 SET b=57651 WHERE a=23548;\nUPDATE t2 SET b=60251 WHERE a=23549;\nUPDATE t2 SET b=92299 WHERE a=23550;\nUPDATE t2 SET b=23407 WHERE a=23551;\nUPDATE t2 SET b=88573 WHERE a=23552;\nUPDATE t2 SET b=59536 WHERE a=23553;\nUPDATE t2 SET b=13755 WHERE a=23554;\nUPDATE t2 SET b=36190 WHERE a=23555;\nUPDATE t2 SET b=12994 WHERE a=23556;\nUPDATE t2 SET b=69602 WHERE a=23557;\nUPDATE t2 SET b=20437 WHERE a=23558;\nUPDATE t2 SET b=96897 WHERE a=23559;\nUPDATE t2 SET b=67973 WHERE a=23560;\nUPDATE t2 SET b=17367 WHERE a=23561;\nUPDATE t2 SET b=49586 WHERE a=23562;\nUPDATE t2 SET b=35595 WHERE a=23563;\nUPDATE t2 SET b=18053 WHERE a=23564;\nUPDATE t2 SET b=42293 WHERE a=23565;\nUPDATE t2 SET b=78662 WHERE a=23566;\nUPDATE t2 SET b=14060 WHERE a=23567;\nUPDATE t2 SET b=10124 WHERE a=23568;\nUPDATE t2 SET b=54316 WHERE a=23569;\nUPDATE t2 SET b=7438 WHERE a=23570;\nUPDATE t2 SET b=44783 WHERE a=23571;\nUPDATE t2 SET b=36747 WHERE a=23572;\nUPDATE t2 SET b=35695 WHERE a=23573;\nUPDATE t2 SET b=24915 WHERE a=23574;\nUPDATE t2 SET b=94042 WHERE a=23575;\nUPDATE t2 SET b=84567 WHERE a=23576;\nUPDATE t2 SET b=23974 WHERE a=23577;\nUPDATE t2 SET b=40271 WHERE a=23578;\nUPDATE t2 SET b=13338 WHERE a=23579;\nUPDATE t2 SET b=70222 WHERE a=23580;\nUPDATE t2 SET b=13025 WHERE a=23581;\nUPDATE t2 SET b=85374 WHERE a=23582;\nUPDATE t2 SET b=28408 WHERE a=23583;\nUPDATE t2 SET b=95572 WHERE a=23584;\nUPDATE t2 SET b=42518 WHERE a=23585;\nUPDATE t2 SET b=74215 WHERE a=23586;\nUPDATE t2 SET b=67583 WHERE a=23587;\nUPDATE t2 SET b=98433 WHERE a=23588;\nUPDATE t2 SET b=5357 WHERE a=23589;\nUPDATE t2 SET b=71200 WHERE a=23590;\nUPDATE t2 SET b=47810 WHERE a=23591;\nUPDATE t2 SET b=13891 WHERE a=23592;\nUPDATE t2 SET b=44988 WHERE a=23593;\nUPDATE t2 SET b=28001 WHERE a=23594;\nUPDATE t2 SET b=83597 WHERE a=23595;\nUPDATE t2 SET b=22601 WHERE a=23596;\nUPDATE t2 SET b=78104 WHERE a=23597;\nUPDATE t2 SET b=32514 WHERE a=23598;\nUPDATE t2 SET b=27158 WHERE a=23599;\nUPDATE t2 SET b=22100 WHERE a=23600;\nUPDATE t2 SET b=53293 WHERE a=23601;\nUPDATE t2 SET b=71385 WHERE a=23602;\nUPDATE t2 SET b=23462 WHERE a=23603;\nUPDATE t2 SET b=32961 WHERE a=23604;\nUPDATE t2 SET b=25033 WHERE a=23605;\nUPDATE t2 SET b=7499 WHERE a=23606;\nUPDATE t2 SET b=56270 WHERE a=23607;\nUPDATE t2 SET b=9295 WHERE a=23608;\nUPDATE t2 SET b=7207 WHERE a=23609;\nUPDATE t2 SET b=5712 WHERE a=23610;\nUPDATE t2 SET b=94522 WHERE a=23611;\nUPDATE t2 SET b=82026 WHERE a=23612;\nUPDATE t2 SET b=11571 WHERE a=23613;\nUPDATE t2 SET b=36961 WHERE a=23614;\nUPDATE t2 SET b=99456 WHERE a=23615;\nUPDATE t2 SET b=324 WHERE a=23616;\nUPDATE t2 SET b=9425 WHERE a=23617;\nUPDATE t2 SET b=37151 WHERE a=23618;\nUPDATE t2 SET b=55112 WHERE a=23619;\nUPDATE t2 SET b=66006 WHERE a=23620;\nUPDATE t2 SET b=35782 WHERE a=23621;\nUPDATE t2 SET b=31126 WHERE a=23622;\nUPDATE t2 SET b=65988 WHERE a=23623;\nUPDATE t2 SET b=21987 WHERE a=23624;\nUPDATE t2 SET b=22399 WHERE a=23625;\nUPDATE t2 SET b=46228 WHERE a=23626;\nUPDATE t2 SET b=785 WHERE a=23627;\nUPDATE t2 SET b=16784 WHERE a=23628;\nUPDATE t2 SET b=73596 WHERE a=23629;\nUPDATE t2 SET b=11884 WHERE a=23630;\nUPDATE t2 SET b=41480 WHERE a=23631;\nUPDATE t2 SET b=31988 WHERE a=23632;\nUPDATE t2 SET b=42275 WHERE a=23633;\nUPDATE t2 SET b=66790 WHERE a=23634;\nUPDATE t2 SET b=81946 WHERE a=23635;\nUPDATE t2 SET b=75944 WHERE a=23636;\nUPDATE t2 SET b=34158 WHERE a=23637;\nUPDATE t2 SET b=46707 WHERE a=23638;\nUPDATE t2 SET b=29628 WHERE a=23639;\nUPDATE t2 SET b=91503 WHERE a=23640;\nUPDATE t2 SET b=55025 WHERE a=23641;\nUPDATE t2 SET b=66929 WHERE a=23642;\nUPDATE t2 SET b=93463 WHERE a=23643;\nUPDATE t2 SET b=67614 WHERE a=23644;\nUPDATE t2 SET b=6120 WHERE a=23645;\nUPDATE t2 SET b=5075 WHERE a=23646;\nUPDATE t2 SET b=81729 WHERE a=23647;\nUPDATE t2 SET b=93911 WHERE a=23648;\nUPDATE t2 SET b=90563 WHERE a=23649;\nUPDATE t2 SET b=80913 WHERE a=23650;\nUPDATE t2 SET b=4209 WHERE a=23651;\nUPDATE t2 SET b=98063 WHERE a=23652;\nUPDATE t2 SET b=58964 WHERE a=23653;\nUPDATE t2 SET b=73038 WHERE a=23654;\nUPDATE t2 SET b=25685 WHERE a=23655;\nUPDATE t2 SET b=50511 WHERE a=23656;\nUPDATE t2 SET b=89839 WHERE a=23657;\nUPDATE t2 SET b=1972 WHERE a=23658;\nUPDATE t2 SET b=87006 WHERE a=23659;\nUPDATE t2 SET b=49351 WHERE a=23660;\nUPDATE t2 SET b=22627 WHERE a=23661;\nUPDATE t2 SET b=54337 WHERE a=23662;\nUPDATE t2 SET b=8840 WHERE a=23663;\nUPDATE t2 SET b=57915 WHERE a=23664;\nUPDATE t2 SET b=69671 WHERE a=23665;\nUPDATE t2 SET b=87133 WHERE a=23666;\nUPDATE t2 SET b=90324 WHERE a=23667;\nUPDATE t2 SET b=64220 WHERE a=23668;\nUPDATE t2 SET b=5721 WHERE a=23669;\nUPDATE t2 SET b=86209 WHERE a=23670;\nUPDATE t2 SET b=65227 WHERE a=23671;\nUPDATE t2 SET b=56608 WHERE a=23672;\nUPDATE t2 SET b=10090 WHERE a=23673;\nUPDATE t2 SET b=99334 WHERE a=23674;\nUPDATE t2 SET b=85695 WHERE a=23675;\nUPDATE t2 SET b=53494 WHERE a=23676;\nUPDATE t2 SET b=80911 WHERE a=23677;\nUPDATE t2 SET b=11469 WHERE a=23678;\nUPDATE t2 SET b=24121 WHERE a=23679;\nUPDATE t2 SET b=49265 WHERE a=23680;\nUPDATE t2 SET b=53918 WHERE a=23681;\nUPDATE t2 SET b=58409 WHERE a=23682;\nUPDATE t2 SET b=74890 WHERE a=23683;\nUPDATE t2 SET b=40426 WHERE a=23684;\nUPDATE t2 SET b=53187 WHERE a=23685;\nUPDATE t2 SET b=44005 WHERE a=23686;\nUPDATE t2 SET b=11482 WHERE a=23687;\nUPDATE t2 SET b=9854 WHERE a=23688;\nUPDATE t2 SET b=56099 WHERE a=23689;\nUPDATE t2 SET b=39466 WHERE a=23690;\nUPDATE t2 SET b=12953 WHERE a=23691;\nUPDATE t2 SET b=30263 WHERE a=23692;\nUPDATE t2 SET b=93837 WHERE a=23693;\nUPDATE t2 SET b=16097 WHERE a=23694;\nUPDATE t2 SET b=42872 WHERE a=23695;\nUPDATE t2 SET b=93196 WHERE a=23696;\nUPDATE t2 SET b=14433 WHERE a=23697;\nUPDATE t2 SET b=65647 WHERE a=23698;\nUPDATE t2 SET b=84884 WHERE a=23699;\nUPDATE t2 SET b=63873 WHERE a=23700;\nUPDATE t2 SET b=91877 WHERE a=23701;\nUPDATE t2 SET b=19360 WHERE a=23702;\nUPDATE t2 SET b=37734 WHERE a=23703;\nUPDATE t2 SET b=88906 WHERE a=23704;\nUPDATE t2 SET b=95613 WHERE a=23705;\nUPDATE t2 SET b=71545 WHERE a=23706;\nUPDATE t2 SET b=97186 WHERE a=23707;\nUPDATE t2 SET b=35863 WHERE a=23708;\nUPDATE t2 SET b=81904 WHERE a=23709;\nUPDATE t2 SET b=75563 WHERE a=23710;\nUPDATE t2 SET b=3942 WHERE a=23711;\nUPDATE t2 SET b=29790 WHERE a=23712;\nUPDATE t2 SET b=87898 WHERE a=23713;\nUPDATE t2 SET b=66946 WHERE a=23714;\nUPDATE t2 SET b=38911 WHERE a=23715;\nUPDATE t2 SET b=11446 WHERE a=23716;\nUPDATE t2 SET b=59351 WHERE a=23717;\nUPDATE t2 SET b=8713 WHERE a=23718;\nUPDATE t2 SET b=85507 WHERE a=23719;\nUPDATE t2 SET b=58300 WHERE a=23720;\nUPDATE t2 SET b=66809 WHERE a=23721;\nUPDATE t2 SET b=62039 WHERE a=23722;\nUPDATE t2 SET b=22561 WHERE a=23723;\nUPDATE t2 SET b=54528 WHERE a=23724;\nUPDATE t2 SET b=14359 WHERE a=23725;\nUPDATE t2 SET b=23630 WHERE a=23726;\nUPDATE t2 SET b=14023 WHERE a=23727;\nUPDATE t2 SET b=82239 WHERE a=23728;\nUPDATE t2 SET b=66037 WHERE a=23729;\nUPDATE t2 SET b=2557 WHERE a=23730;\nUPDATE t2 SET b=97493 WHERE a=23731;\nUPDATE t2 SET b=99044 WHERE a=23732;\nUPDATE t2 SET b=11947 WHERE a=23733;\nUPDATE t2 SET b=82592 WHERE a=23734;\nUPDATE t2 SET b=34985 WHERE a=23735;\nUPDATE t2 SET b=70334 WHERE a=23736;\nUPDATE t2 SET b=48068 WHERE a=23737;\nUPDATE t2 SET b=13335 WHERE a=23738;\nUPDATE t2 SET b=30040 WHERE a=23739;\nUPDATE t2 SET b=43882 WHERE a=23740;\nUPDATE t2 SET b=77202 WHERE a=23741;\nUPDATE t2 SET b=56926 WHERE a=23742;\nUPDATE t2 SET b=23260 WHERE a=23743;\nUPDATE t2 SET b=94345 WHERE a=23744;\nUPDATE t2 SET b=43829 WHERE a=23745;\nUPDATE t2 SET b=25274 WHERE a=23746;\nUPDATE t2 SET b=62267 WHERE a=23747;\nUPDATE t2 SET b=13313 WHERE a=23748;\nUPDATE t2 SET b=70491 WHERE a=23749;\nUPDATE t2 SET b=17460 WHERE a=23750;\nUPDATE t2 SET b=38313 WHERE a=23751;\nUPDATE t2 SET b=88545 WHERE a=23752;\nUPDATE t2 SET b=35491 WHERE a=23753;\nUPDATE t2 SET b=57498 WHERE a=23754;\nUPDATE t2 SET b=1810 WHERE a=23755;\nUPDATE t2 SET b=44455 WHERE a=23756;\nUPDATE t2 SET b=81985 WHERE a=23757;\nUPDATE t2 SET b=37912 WHERE a=23758;\nUPDATE t2 SET b=3770 WHERE a=23759;\nUPDATE t2 SET b=5086 WHERE a=23760;\nUPDATE t2 SET b=25768 WHERE a=23761;\nUPDATE t2 SET b=88880 WHERE a=23762;\nUPDATE t2 SET b=35535 WHERE a=23763;\nUPDATE t2 SET b=75468 WHERE a=23764;\nUPDATE t2 SET b=9663 WHERE a=23765;\nUPDATE t2 SET b=58094 WHERE a=23766;\nUPDATE t2 SET b=96522 WHERE a=23767;\nUPDATE t2 SET b=5871 WHERE a=23768;\nUPDATE t2 SET b=66534 WHERE a=23769;\nUPDATE t2 SET b=78650 WHERE a=23770;\nUPDATE t2 SET b=945 WHERE a=23771;\nUPDATE t2 SET b=77493 WHERE a=23772;\nUPDATE t2 SET b=99023 WHERE a=23773;\nUPDATE t2 SET b=56551 WHERE a=23774;\nUPDATE t2 SET b=53735 WHERE a=23775;\nUPDATE t2 SET b=53956 WHERE a=23776;\nUPDATE t2 SET b=36749 WHERE a=23777;\nUPDATE t2 SET b=56016 WHERE a=23778;\nUPDATE t2 SET b=110 WHERE a=23779;\nUPDATE t2 SET b=22492 WHERE a=23780;\nUPDATE t2 SET b=12110 WHERE a=23781;\nUPDATE t2 SET b=33927 WHERE a=23782;\nUPDATE t2 SET b=43076 WHERE a=23783;\nUPDATE t2 SET b=92171 WHERE a=23784;\nUPDATE t2 SET b=93309 WHERE a=23785;\nUPDATE t2 SET b=49529 WHERE a=23786;\nUPDATE t2 SET b=77945 WHERE a=23787;\nUPDATE t2 SET b=24960 WHERE a=23788;\nUPDATE t2 SET b=6460 WHERE a=23789;\nUPDATE t2 SET b=94348 WHERE a=23790;\nUPDATE t2 SET b=21306 WHERE a=23791;\nUPDATE t2 SET b=72014 WHERE a=23792;\nUPDATE t2 SET b=96175 WHERE a=23793;\nUPDATE t2 SET b=81603 WHERE a=23794;\nUPDATE t2 SET b=41230 WHERE a=23795;\nUPDATE t2 SET b=87930 WHERE a=23796;\nUPDATE t2 SET b=34929 WHERE a=23797;\nUPDATE t2 SET b=93287 WHERE a=23798;\nUPDATE t2 SET b=92343 WHERE a=23799;\nUPDATE t2 SET b=12646 WHERE a=23800;\nUPDATE t2 SET b=39140 WHERE a=23801;\nUPDATE t2 SET b=85609 WHERE a=23802;\nUPDATE t2 SET b=3348 WHERE a=23803;\nUPDATE t2 SET b=10408 WHERE a=23804;\nUPDATE t2 SET b=78466 WHERE a=23805;\nUPDATE t2 SET b=4458 WHERE a=23806;\nUPDATE t2 SET b=46140 WHERE a=23807;\nUPDATE t2 SET b=50 WHERE a=23808;\nUPDATE t2 SET b=3350 WHERE a=23809;\nUPDATE t2 SET b=88253 WHERE a=23810;\nUPDATE t2 SET b=277 WHERE a=23811;\nUPDATE t2 SET b=63411 WHERE a=23812;\nUPDATE t2 SET b=85009 WHERE a=23813;\nUPDATE t2 SET b=74393 WHERE a=23814;\nUPDATE t2 SET b=71304 WHERE a=23815;\nUPDATE t2 SET b=94324 WHERE a=23816;\nUPDATE t2 SET b=89110 WHERE a=23817;\nUPDATE t2 SET b=42247 WHERE a=23818;\nUPDATE t2 SET b=80560 WHERE a=23819;\nUPDATE t2 SET b=40480 WHERE a=23820;\nUPDATE t2 SET b=76827 WHERE a=23821;\nUPDATE t2 SET b=79156 WHERE a=23822;\nUPDATE t2 SET b=15698 WHERE a=23823;\nUPDATE t2 SET b=96241 WHERE a=23824;\nUPDATE t2 SET b=31430 WHERE a=23825;\nUPDATE t2 SET b=42260 WHERE a=23826;\nUPDATE t2 SET b=57211 WHERE a=23827;\nUPDATE t2 SET b=93693 WHERE a=23828;\nUPDATE t2 SET b=80266 WHERE a=23829;\nUPDATE t2 SET b=43370 WHERE a=23830;\nUPDATE t2 SET b=4398 WHERE a=23831;\nUPDATE t2 SET b=74514 WHERE a=23832;\nUPDATE t2 SET b=2813 WHERE a=23833;\nUPDATE t2 SET b=21083 WHERE a=23834;\nUPDATE t2 SET b=53797 WHERE a=23835;\nUPDATE t2 SET b=47499 WHERE a=23836;\nUPDATE t2 SET b=39939 WHERE a=23837;\nUPDATE t2 SET b=97586 WHERE a=23838;\nUPDATE t2 SET b=71125 WHERE a=23839;\nUPDATE t2 SET b=74468 WHERE a=23840;\nUPDATE t2 SET b=32986 WHERE a=23841;\nUPDATE t2 SET b=63885 WHERE a=23842;\nUPDATE t2 SET b=49566 WHERE a=23843;\nUPDATE t2 SET b=67338 WHERE a=23844;\nUPDATE t2 SET b=78789 WHERE a=23845;\nUPDATE t2 SET b=62139 WHERE a=23846;\nUPDATE t2 SET b=48999 WHERE a=23847;\nUPDATE t2 SET b=82465 WHERE a=23848;\nUPDATE t2 SET b=64083 WHERE a=23849;\nUPDATE t2 SET b=56710 WHERE a=23850;\nUPDATE t2 SET b=3046 WHERE a=23851;\nUPDATE t2 SET b=53214 WHERE a=23852;\nUPDATE t2 SET b=59039 WHERE a=23853;\nUPDATE t2 SET b=70753 WHERE a=23854;\nUPDATE t2 SET b=16796 WHERE a=23855;\nUPDATE t2 SET b=26257 WHERE a=23856;\nUPDATE t2 SET b=70346 WHERE a=23857;\nUPDATE t2 SET b=76665 WHERE a=23858;\nUPDATE t2 SET b=11011 WHERE a=23859;\nUPDATE t2 SET b=3338 WHERE a=23860;\nUPDATE t2 SET b=60063 WHERE a=23861;\nUPDATE t2 SET b=92325 WHERE a=23862;\nUPDATE t2 SET b=73792 WHERE a=23863;\nUPDATE t2 SET b=21974 WHERE a=23864;\nUPDATE t2 SET b=70965 WHERE a=23865;\nUPDATE t2 SET b=73100 WHERE a=23866;\nUPDATE t2 SET b=99602 WHERE a=23867;\nUPDATE t2 SET b=7869 WHERE a=23868;\nUPDATE t2 SET b=91492 WHERE a=23869;\nUPDATE t2 SET b=72334 WHERE a=23870;\nUPDATE t2 SET b=72392 WHERE a=23871;\nUPDATE t2 SET b=84519 WHERE a=23872;\nUPDATE t2 SET b=96426 WHERE a=23873;\nUPDATE t2 SET b=42768 WHERE a=23874;\nUPDATE t2 SET b=15195 WHERE a=23875;\nUPDATE t2 SET b=52045 WHERE a=23876;\nUPDATE t2 SET b=52707 WHERE a=23877;\nUPDATE t2 SET b=8982 WHERE a=23878;\nUPDATE t2 SET b=43081 WHERE a=23879;\nUPDATE t2 SET b=84384 WHERE a=23880;\nUPDATE t2 SET b=29915 WHERE a=23881;\nUPDATE t2 SET b=26478 WHERE a=23882;\nUPDATE t2 SET b=20296 WHERE a=23883;\nUPDATE t2 SET b=9825 WHERE a=23884;\nUPDATE t2 SET b=81132 WHERE a=23885;\nUPDATE t2 SET b=56197 WHERE a=23886;\nUPDATE t2 SET b=61163 WHERE a=23887;\nUPDATE t2 SET b=92297 WHERE a=23888;\nUPDATE t2 SET b=95765 WHERE a=23889;\nUPDATE t2 SET b=72821 WHERE a=23890;\nUPDATE t2 SET b=66355 WHERE a=23891;\nUPDATE t2 SET b=31095 WHERE a=23892;\nUPDATE t2 SET b=86626 WHERE a=23893;\nUPDATE t2 SET b=58612 WHERE a=23894;\nUPDATE t2 SET b=37457 WHERE a=23895;\nUPDATE t2 SET b=70107 WHERE a=23896;\nUPDATE t2 SET b=20477 WHERE a=23897;\nUPDATE t2 SET b=92058 WHERE a=23898;\nUPDATE t2 SET b=6812 WHERE a=23899;\nUPDATE t2 SET b=18914 WHERE a=23900;\nUPDATE t2 SET b=3091 WHERE a=23901;\nUPDATE t2 SET b=71668 WHERE a=23902;\nUPDATE t2 SET b=93635 WHERE a=23903;\nUPDATE t2 SET b=93197 WHERE a=23904;\nUPDATE t2 SET b=10570 WHERE a=23905;\nUPDATE t2 SET b=94782 WHERE a=23906;\nUPDATE t2 SET b=90993 WHERE a=23907;\nUPDATE t2 SET b=69942 WHERE a=23908;\nUPDATE t2 SET b=46583 WHERE a=23909;\nUPDATE t2 SET b=92783 WHERE a=23910;\nUPDATE t2 SET b=82943 WHERE a=23911;\nUPDATE t2 SET b=27409 WHERE a=23912;\nUPDATE t2 SET b=16768 WHERE a=23913;\nUPDATE t2 SET b=68475 WHERE a=23914;\nUPDATE t2 SET b=46951 WHERE a=23915;\nUPDATE t2 SET b=31797 WHERE a=23916;\nUPDATE t2 SET b=82131 WHERE a=23917;\nUPDATE t2 SET b=43250 WHERE a=23918;\nUPDATE t2 SET b=7923 WHERE a=23919;\nUPDATE t2 SET b=46635 WHERE a=23920;\nUPDATE t2 SET b=8772 WHERE a=23921;\nUPDATE t2 SET b=92270 WHERE a=23922;\nUPDATE t2 SET b=52552 WHERE a=23923;\nUPDATE t2 SET b=47534 WHERE a=23924;\nUPDATE t2 SET b=67393 WHERE a=23925;\nUPDATE t2 SET b=64636 WHERE a=23926;\nUPDATE t2 SET b=37399 WHERE a=23927;\nUPDATE t2 SET b=23449 WHERE a=23928;\nUPDATE t2 SET b=27352 WHERE a=23929;\nUPDATE t2 SET b=12054 WHERE a=23930;\nUPDATE t2 SET b=38233 WHERE a=23931;\nUPDATE t2 SET b=11711 WHERE a=23932;\nUPDATE t2 SET b=57423 WHERE a=23933;\nUPDATE t2 SET b=33151 WHERE a=23934;\nUPDATE t2 SET b=62959 WHERE a=23935;\nUPDATE t2 SET b=45014 WHERE a=23936;\nUPDATE t2 SET b=84974 WHERE a=23937;\nUPDATE t2 SET b=48158 WHERE a=23938;\nUPDATE t2 SET b=42420 WHERE a=23939;\nUPDATE t2 SET b=48327 WHERE a=23940;\nUPDATE t2 SET b=90306 WHERE a=23941;\nUPDATE t2 SET b=27869 WHERE a=23942;\nUPDATE t2 SET b=70978 WHERE a=23943;\nUPDATE t2 SET b=26750 WHERE a=23944;\nUPDATE t2 SET b=73571 WHERE a=23945;\nUPDATE t2 SET b=71599 WHERE a=23946;\nUPDATE t2 SET b=92789 WHERE a=23947;\nUPDATE t2 SET b=80413 WHERE a=23948;\nUPDATE t2 SET b=90201 WHERE a=23949;\nUPDATE t2 SET b=18520 WHERE a=23950;\nUPDATE t2 SET b=91958 WHERE a=23951;\nUPDATE t2 SET b=33227 WHERE a=23952;\nUPDATE t2 SET b=65963 WHERE a=23953;\nUPDATE t2 SET b=93138 WHERE a=23954;\nUPDATE t2 SET b=3279 WHERE a=23955;\nUPDATE t2 SET b=52966 WHERE a=23956;\nUPDATE t2 SET b=2557 WHERE a=23957;\nUPDATE t2 SET b=25743 WHERE a=23958;\nUPDATE t2 SET b=2640 WHERE a=23959;\nUPDATE t2 SET b=63308 WHERE a=23960;\nUPDATE t2 SET b=39718 WHERE a=23961;\nUPDATE t2 SET b=5903 WHERE a=23962;\nUPDATE t2 SET b=35964 WHERE a=23963;\nUPDATE t2 SET b=6682 WHERE a=23964;\nUPDATE t2 SET b=60598 WHERE a=23965;\nUPDATE t2 SET b=96610 WHERE a=23966;\nUPDATE t2 SET b=67266 WHERE a=23967;\nUPDATE t2 SET b=48253 WHERE a=23968;\nUPDATE t2 SET b=69086 WHERE a=23969;\nUPDATE t2 SET b=95 WHERE a=23970;\nUPDATE t2 SET b=99551 WHERE a=23971;\nUPDATE t2 SET b=53391 WHERE a=23972;\nUPDATE t2 SET b=94695 WHERE a=23973;\nUPDATE t2 SET b=14819 WHERE a=23974;\nUPDATE t2 SET b=3566 WHERE a=23975;\nUPDATE t2 SET b=49396 WHERE a=23976;\nUPDATE t2 SET b=29331 WHERE a=23977;\nUPDATE t2 SET b=3670 WHERE a=23978;\nUPDATE t2 SET b=62397 WHERE a=23979;\nUPDATE t2 SET b=32284 WHERE a=23980;\nUPDATE t2 SET b=67400 WHERE a=23981;\nUPDATE t2 SET b=17125 WHERE a=23982;\nUPDATE t2 SET b=6054 WHERE a=23983;\nUPDATE t2 SET b=57421 WHERE a=23984;\nUPDATE t2 SET b=62135 WHERE a=23985;\nUPDATE t2 SET b=1420 WHERE a=23986;\nUPDATE t2 SET b=93066 WHERE a=23987;\nUPDATE t2 SET b=17811 WHERE a=23988;\nUPDATE t2 SET b=4684 WHERE a=23989;\nUPDATE t2 SET b=34537 WHERE a=23990;\nUPDATE t2 SET b=72593 WHERE a=23991;\nUPDATE t2 SET b=20702 WHERE a=23992;\nUPDATE t2 SET b=21499 WHERE a=23993;\nUPDATE t2 SET b=49323 WHERE a=23994;\nUPDATE t2 SET b=85818 WHERE a=23995;\nUPDATE t2 SET b=12090 WHERE a=23996;\nUPDATE t2 SET b=16287 WHERE a=23997;\nUPDATE t2 SET b=41871 WHERE a=23998;\nUPDATE t2 SET b=4106 WHERE a=23999;\nUPDATE t2 SET b=43013 WHERE a=24000;\nUPDATE t2 SET b=19636 WHERE a=24001;\nUPDATE t2 SET b=25150 WHERE a=24002;\nUPDATE t2 SET b=4003 WHERE a=24003;\nUPDATE t2 SET b=49511 WHERE a=24004;\nUPDATE t2 SET b=44575 WHERE a=24005;\nUPDATE t2 SET b=36718 WHERE a=24006;\nUPDATE t2 SET b=3598 WHERE a=24007;\nUPDATE t2 SET b=27840 WHERE a=24008;\nUPDATE t2 SET b=62719 WHERE a=24009;\nUPDATE t2 SET b=57307 WHERE a=24010;\nUPDATE t2 SET b=16066 WHERE a=24011;\nUPDATE t2 SET b=41375 WHERE a=24012;\nUPDATE t2 SET b=70842 WHERE a=24013;\nUPDATE t2 SET b=29032 WHERE a=24014;\nUPDATE t2 SET b=59464 WHERE a=24015;\nUPDATE t2 SET b=70149 WHERE a=24016;\nUPDATE t2 SET b=86560 WHERE a=24017;\nUPDATE t2 SET b=63174 WHERE a=24018;\nUPDATE t2 SET b=65423 WHERE a=24019;\nUPDATE t2 SET b=7366 WHERE a=24020;\nUPDATE t2 SET b=45046 WHERE a=24021;\nUPDATE t2 SET b=42311 WHERE a=24022;\nUPDATE t2 SET b=77154 WHERE a=24023;\nUPDATE t2 SET b=83803 WHERE a=24024;\nUPDATE t2 SET b=21476 WHERE a=24025;\nUPDATE t2 SET b=828 WHERE a=24026;\nUPDATE t2 SET b=59703 WHERE a=24027;\nUPDATE t2 SET b=90297 WHERE a=24028;\nUPDATE t2 SET b=29442 WHERE a=24029;\nUPDATE t2 SET b=37 WHERE a=24030;\nUPDATE t2 SET b=30746 WHERE a=24031;\nUPDATE t2 SET b=93740 WHERE a=24032;\nUPDATE t2 SET b=70937 WHERE a=24033;\nUPDATE t2 SET b=74502 WHERE a=24034;\nUPDATE t2 SET b=92893 WHERE a=24035;\nUPDATE t2 SET b=17281 WHERE a=24036;\nUPDATE t2 SET b=38676 WHERE a=24037;\nUPDATE t2 SET b=84448 WHERE a=24038;\nUPDATE t2 SET b=58215 WHERE a=24039;\nUPDATE t2 SET b=32264 WHERE a=24040;\nUPDATE t2 SET b=68402 WHERE a=24041;\nUPDATE t2 SET b=75872 WHERE a=24042;\nUPDATE t2 SET b=76615 WHERE a=24043;\nUPDATE t2 SET b=18794 WHERE a=24044;\nUPDATE t2 SET b=78853 WHERE a=24045;\nUPDATE t2 SET b=81892 WHERE a=24046;\nUPDATE t2 SET b=83339 WHERE a=24047;\nUPDATE t2 SET b=4025 WHERE a=24048;\nUPDATE t2 SET b=16451 WHERE a=24049;\nUPDATE t2 SET b=65846 WHERE a=24050;\nUPDATE t2 SET b=82042 WHERE a=24051;\nUPDATE t2 SET b=4294 WHERE a=24052;\nUPDATE t2 SET b=24149 WHERE a=24053;\nUPDATE t2 SET b=29931 WHERE a=24054;\nUPDATE t2 SET b=43808 WHERE a=24055;\nUPDATE t2 SET b=15912 WHERE a=24056;\nUPDATE t2 SET b=35138 WHERE a=24057;\nUPDATE t2 SET b=19427 WHERE a=24058;\nUPDATE t2 SET b=48758 WHERE a=24059;\nUPDATE t2 SET b=28179 WHERE a=24060;\nUPDATE t2 SET b=94185 WHERE a=24061;\nUPDATE t2 SET b=22866 WHERE a=24062;\nUPDATE t2 SET b=96916 WHERE a=24063;\nUPDATE t2 SET b=20040 WHERE a=24064;\nUPDATE t2 SET b=94431 WHERE a=24065;\nUPDATE t2 SET b=73823 WHERE a=24066;\nUPDATE t2 SET b=21297 WHERE a=24067;\nUPDATE t2 SET b=24374 WHERE a=24068;\nUPDATE t2 SET b=74507 WHERE a=24069;\nUPDATE t2 SET b=71370 WHERE a=24070;\nUPDATE t2 SET b=10175 WHERE a=24071;\nUPDATE t2 SET b=30118 WHERE a=24072;\nUPDATE t2 SET b=83836 WHERE a=24073;\nUPDATE t2 SET b=45092 WHERE a=24074;\nUPDATE t2 SET b=54701 WHERE a=24075;\nUPDATE t2 SET b=34645 WHERE a=24076;\nUPDATE t2 SET b=42355 WHERE a=24077;\nUPDATE t2 SET b=62683 WHERE a=24078;\nUPDATE t2 SET b=7769 WHERE a=24079;\nUPDATE t2 SET b=17907 WHERE a=24080;\nUPDATE t2 SET b=96226 WHERE a=24081;\nUPDATE t2 SET b=20635 WHERE a=24082;\nUPDATE t2 SET b=52887 WHERE a=24083;\nUPDATE t2 SET b=76154 WHERE a=24084;\nUPDATE t2 SET b=44709 WHERE a=24085;\nUPDATE t2 SET b=86889 WHERE a=24086;\nUPDATE t2 SET b=74752 WHERE a=24087;\nUPDATE t2 SET b=75090 WHERE a=24088;\nUPDATE t2 SET b=20162 WHERE a=24089;\nUPDATE t2 SET b=79370 WHERE a=24090;\nUPDATE t2 SET b=89269 WHERE a=24091;\nUPDATE t2 SET b=14617 WHERE a=24092;\nUPDATE t2 SET b=66869 WHERE a=24093;\nUPDATE t2 SET b=99067 WHERE a=24094;\nUPDATE t2 SET b=12857 WHERE a=24095;\nUPDATE t2 SET b=96561 WHERE a=24096;\nUPDATE t2 SET b=36323 WHERE a=24097;\nUPDATE t2 SET b=71112 WHERE a=24098;\nUPDATE t2 SET b=80698 WHERE a=24099;\nUPDATE t2 SET b=69981 WHERE a=24100;\nUPDATE t2 SET b=7553 WHERE a=24101;\nUPDATE t2 SET b=31776 WHERE a=24102;\nUPDATE t2 SET b=73899 WHERE a=24103;\nUPDATE t2 SET b=14177 WHERE a=24104;\nUPDATE t2 SET b=59237 WHERE a=24105;\nUPDATE t2 SET b=98251 WHERE a=24106;\nUPDATE t2 SET b=2698 WHERE a=24107;\nUPDATE t2 SET b=84194 WHERE a=24108;\nUPDATE t2 SET b=62293 WHERE a=24109;\nUPDATE t2 SET b=30852 WHERE a=24110;\nUPDATE t2 SET b=34556 WHERE a=24111;\nUPDATE t2 SET b=49945 WHERE a=24112;\nUPDATE t2 SET b=53859 WHERE a=24113;\nUPDATE t2 SET b=13611 WHERE a=24114;\nUPDATE t2 SET b=50245 WHERE a=24115;\nUPDATE t2 SET b=90331 WHERE a=24116;\nUPDATE t2 SET b=73599 WHERE a=24117;\nUPDATE t2 SET b=1455 WHERE a=24118;\nUPDATE t2 SET b=65657 WHERE a=24119;\nUPDATE t2 SET b=64669 WHERE a=24120;\nUPDATE t2 SET b=12610 WHERE a=24121;\nUPDATE t2 SET b=66435 WHERE a=24122;\nUPDATE t2 SET b=83285 WHERE a=24123;\nUPDATE t2 SET b=62540 WHERE a=24124;\nUPDATE t2 SET b=54956 WHERE a=24125;\nUPDATE t2 SET b=82087 WHERE a=24126;\nUPDATE t2 SET b=39159 WHERE a=24127;\nUPDATE t2 SET b=53195 WHERE a=24128;\nUPDATE t2 SET b=98498 WHERE a=24129;\nUPDATE t2 SET b=69273 WHERE a=24130;\nUPDATE t2 SET b=72288 WHERE a=24131;\nUPDATE t2 SET b=65498 WHERE a=24132;\nUPDATE t2 SET b=11569 WHERE a=24133;\nUPDATE t2 SET b=92463 WHERE a=24134;\nUPDATE t2 SET b=84253 WHERE a=24135;\nUPDATE t2 SET b=18414 WHERE a=24136;\nUPDATE t2 SET b=21419 WHERE a=24137;\nUPDATE t2 SET b=16838 WHERE a=24138;\nUPDATE t2 SET b=66665 WHERE a=24139;\nUPDATE t2 SET b=4735 WHERE a=24140;\nUPDATE t2 SET b=50438 WHERE a=24141;\nUPDATE t2 SET b=21904 WHERE a=24142;\nUPDATE t2 SET b=18388 WHERE a=24143;\nUPDATE t2 SET b=75426 WHERE a=24144;\nUPDATE t2 SET b=3090 WHERE a=24145;\nUPDATE t2 SET b=86423 WHERE a=24146;\nUPDATE t2 SET b=57429 WHERE a=24147;\nUPDATE t2 SET b=58294 WHERE a=24148;\nUPDATE t2 SET b=36522 WHERE a=24149;\nUPDATE t2 SET b=43097 WHERE a=24150;\nUPDATE t2 SET b=92330 WHERE a=24151;\nUPDATE t2 SET b=79385 WHERE a=24152;\nUPDATE t2 SET b=74785 WHERE a=24153;\nUPDATE t2 SET b=3327 WHERE a=24154;\nUPDATE t2 SET b=29796 WHERE a=24155;\nUPDATE t2 SET b=79823 WHERE a=24156;\nUPDATE t2 SET b=61479 WHERE a=24157;\nUPDATE t2 SET b=57969 WHERE a=24158;\nUPDATE t2 SET b=15967 WHERE a=24159;\nUPDATE t2 SET b=93227 WHERE a=24160;\nUPDATE t2 SET b=49210 WHERE a=24161;\nUPDATE t2 SET b=94198 WHERE a=24162;\nUPDATE t2 SET b=11996 WHERE a=24163;\nUPDATE t2 SET b=19324 WHERE a=24164;\nUPDATE t2 SET b=72022 WHERE a=24165;\nUPDATE t2 SET b=71465 WHERE a=24166;\nUPDATE t2 SET b=26829 WHERE a=24167;\nUPDATE t2 SET b=42936 WHERE a=24168;\nUPDATE t2 SET b=37881 WHERE a=24169;\nUPDATE t2 SET b=3056 WHERE a=24170;\nUPDATE t2 SET b=33666 WHERE a=24171;\nUPDATE t2 SET b=62484 WHERE a=24172;\nUPDATE t2 SET b=16168 WHERE a=24173;\nUPDATE t2 SET b=88228 WHERE a=24174;\nUPDATE t2 SET b=5821 WHERE a=24175;\nUPDATE t2 SET b=80006 WHERE a=24176;\nUPDATE t2 SET b=59482 WHERE a=24177;\nUPDATE t2 SET b=28908 WHERE a=24178;\nUPDATE t2 SET b=65583 WHERE a=24179;\nUPDATE t2 SET b=74224 WHERE a=24180;\nUPDATE t2 SET b=83007 WHERE a=24181;\nUPDATE t2 SET b=99455 WHERE a=24182;\nUPDATE t2 SET b=57557 WHERE a=24183;\nUPDATE t2 SET b=16013 WHERE a=24184;\nUPDATE t2 SET b=4448 WHERE a=24185;\nUPDATE t2 SET b=47366 WHERE a=24186;\nUPDATE t2 SET b=4133 WHERE a=24187;\nUPDATE t2 SET b=44344 WHERE a=24188;\nUPDATE t2 SET b=67268 WHERE a=24189;\nUPDATE t2 SET b=91789 WHERE a=24190;\nUPDATE t2 SET b=84432 WHERE a=24191;\nUPDATE t2 SET b=54414 WHERE a=24192;\nUPDATE t2 SET b=81243 WHERE a=24193;\nUPDATE t2 SET b=99112 WHERE a=24194;\nUPDATE t2 SET b=39056 WHERE a=24195;\nUPDATE t2 SET b=10101 WHERE a=24196;\nUPDATE t2 SET b=65251 WHERE a=24197;\nUPDATE t2 SET b=40999 WHERE a=24198;\nUPDATE t2 SET b=1521 WHERE a=24199;\nUPDATE t2 SET b=27080 WHERE a=24200;\nUPDATE t2 SET b=1764 WHERE a=24201;\nUPDATE t2 SET b=10171 WHERE a=24202;\nUPDATE t2 SET b=92850 WHERE a=24203;\nUPDATE t2 SET b=60956 WHERE a=24204;\nUPDATE t2 SET b=40071 WHERE a=24205;\nUPDATE t2 SET b=11718 WHERE a=24206;\nUPDATE t2 SET b=36149 WHERE a=24207;\nUPDATE t2 SET b=99187 WHERE a=24208;\nUPDATE t2 SET b=3554 WHERE a=24209;\nUPDATE t2 SET b=2294 WHERE a=24210;\nUPDATE t2 SET b=29515 WHERE a=24211;\nUPDATE t2 SET b=82406 WHERE a=24212;\nUPDATE t2 SET b=92586 WHERE a=24213;\nUPDATE t2 SET b=94855 WHERE a=24214;\nUPDATE t2 SET b=1873 WHERE a=24215;\nUPDATE t2 SET b=21714 WHERE a=24216;\nUPDATE t2 SET b=41416 WHERE a=24217;\nUPDATE t2 SET b=8097 WHERE a=24218;\nUPDATE t2 SET b=4927 WHERE a=24219;\nUPDATE t2 SET b=58949 WHERE a=24220;\nUPDATE t2 SET b=49495 WHERE a=24221;\nUPDATE t2 SET b=54647 WHERE a=24222;\nUPDATE t2 SET b=51229 WHERE a=24223;\nUPDATE t2 SET b=27291 WHERE a=24224;\nUPDATE t2 SET b=36198 WHERE a=24225;\nUPDATE t2 SET b=9901 WHERE a=24226;\nUPDATE t2 SET b=65395 WHERE a=24227;\nUPDATE t2 SET b=63362 WHERE a=24228;\nUPDATE t2 SET b=47127 WHERE a=24229;\nUPDATE t2 SET b=6868 WHERE a=24230;\nUPDATE t2 SET b=35372 WHERE a=24231;\nUPDATE t2 SET b=91497 WHERE a=24232;\nUPDATE t2 SET b=41082 WHERE a=24233;\nUPDATE t2 SET b=24643 WHERE a=24234;\nUPDATE t2 SET b=817 WHERE a=24235;\nUPDATE t2 SET b=95652 WHERE a=24236;\nUPDATE t2 SET b=95048 WHERE a=24237;\nUPDATE t2 SET b=67256 WHERE a=24238;\nUPDATE t2 SET b=44591 WHERE a=24239;\nUPDATE t2 SET b=12886 WHERE a=24240;\nUPDATE t2 SET b=21180 WHERE a=24241;\nUPDATE t2 SET b=5352 WHERE a=24242;\nUPDATE t2 SET b=93595 WHERE a=24243;\nUPDATE t2 SET b=17542 WHERE a=24244;\nUPDATE t2 SET b=96784 WHERE a=24245;\nUPDATE t2 SET b=73203 WHERE a=24246;\nUPDATE t2 SET b=72052 WHERE a=24247;\nUPDATE t2 SET b=75518 WHERE a=24248;\nUPDATE t2 SET b=91692 WHERE a=24249;\nUPDATE t2 SET b=34493 WHERE a=24250;\nUPDATE t2 SET b=98746 WHERE a=24251;\nUPDATE t2 SET b=2743 WHERE a=24252;\nUPDATE t2 SET b=14009 WHERE a=24253;\nUPDATE t2 SET b=72737 WHERE a=24254;\nUPDATE t2 SET b=47788 WHERE a=24255;\nUPDATE t2 SET b=76284 WHERE a=24256;\nUPDATE t2 SET b=72267 WHERE a=24257;\nUPDATE t2 SET b=36513 WHERE a=24258;\nUPDATE t2 SET b=52757 WHERE a=24259;\nUPDATE t2 SET b=55505 WHERE a=24260;\nUPDATE t2 SET b=71681 WHERE a=24261;\nUPDATE t2 SET b=15465 WHERE a=24262;\nUPDATE t2 SET b=68659 WHERE a=24263;\nUPDATE t2 SET b=65140 WHERE a=24264;\nUPDATE t2 SET b=13754 WHERE a=24265;\nUPDATE t2 SET b=34094 WHERE a=24266;\nUPDATE t2 SET b=94542 WHERE a=24267;\nUPDATE t2 SET b=46369 WHERE a=24268;\nUPDATE t2 SET b=63075 WHERE a=24269;\nUPDATE t2 SET b=28909 WHERE a=24270;\nUPDATE t2 SET b=82356 WHERE a=24271;\nUPDATE t2 SET b=65786 WHERE a=24272;\nUPDATE t2 SET b=4316 WHERE a=24273;\nUPDATE t2 SET b=89243 WHERE a=24274;\nUPDATE t2 SET b=14971 WHERE a=24275;\nUPDATE t2 SET b=33812 WHERE a=24276;\nUPDATE t2 SET b=7662 WHERE a=24277;\nUPDATE t2 SET b=383 WHERE a=24278;\nUPDATE t2 SET b=94254 WHERE a=24279;\nUPDATE t2 SET b=57471 WHERE a=24280;\nUPDATE t2 SET b=34638 WHERE a=24281;\nUPDATE t2 SET b=4199 WHERE a=24282;\nUPDATE t2 SET b=3324 WHERE a=24283;\nUPDATE t2 SET b=44983 WHERE a=24284;\nUPDATE t2 SET b=26292 WHERE a=24285;\nUPDATE t2 SET b=27914 WHERE a=24286;\nUPDATE t2 SET b=41731 WHERE a=24287;\nUPDATE t2 SET b=79791 WHERE a=24288;\nUPDATE t2 SET b=13931 WHERE a=24289;\nUPDATE t2 SET b=73283 WHERE a=24290;\nUPDATE t2 SET b=72600 WHERE a=24291;\nUPDATE t2 SET b=67559 WHERE a=24292;\nUPDATE t2 SET b=82272 WHERE a=24293;\nUPDATE t2 SET b=29949 WHERE a=24294;\nUPDATE t2 SET b=65100 WHERE a=24295;\nUPDATE t2 SET b=72402 WHERE a=24296;\nUPDATE t2 SET b=96447 WHERE a=24297;\nUPDATE t2 SET b=98925 WHERE a=24298;\nUPDATE t2 SET b=33048 WHERE a=24299;\nUPDATE t2 SET b=7290 WHERE a=24300;\nUPDATE t2 SET b=73168 WHERE a=24301;\nUPDATE t2 SET b=7276 WHERE a=24302;\nUPDATE t2 SET b=88288 WHERE a=24303;\nUPDATE t2 SET b=2513 WHERE a=24304;\nUPDATE t2 SET b=97333 WHERE a=24305;\nUPDATE t2 SET b=16440 WHERE a=24306;\nUPDATE t2 SET b=44480 WHERE a=24307;\nUPDATE t2 SET b=48232 WHERE a=24308;\nUPDATE t2 SET b=69986 WHERE a=24309;\nUPDATE t2 SET b=7248 WHERE a=24310;\nUPDATE t2 SET b=2853 WHERE a=24311;\nUPDATE t2 SET b=37701 WHERE a=24312;\nUPDATE t2 SET b=23727 WHERE a=24313;\nUPDATE t2 SET b=58353 WHERE a=24314;\nUPDATE t2 SET b=18107 WHERE a=24315;\nUPDATE t2 SET b=8577 WHERE a=24316;\nUPDATE t2 SET b=99821 WHERE a=24317;\nUPDATE t2 SET b=11412 WHERE a=24318;\nUPDATE t2 SET b=81022 WHERE a=24319;\nUPDATE t2 SET b=3708 WHERE a=24320;\nUPDATE t2 SET b=55715 WHERE a=24321;\nUPDATE t2 SET b=89023 WHERE a=24322;\nUPDATE t2 SET b=79718 WHERE a=24323;\nUPDATE t2 SET b=20865 WHERE a=24324;\nUPDATE t2 SET b=59831 WHERE a=24325;\nUPDATE t2 SET b=69794 WHERE a=24326;\nUPDATE t2 SET b=73710 WHERE a=24327;\nUPDATE t2 SET b=43872 WHERE a=24328;\nUPDATE t2 SET b=16479 WHERE a=24329;\nUPDATE t2 SET b=33366 WHERE a=24330;\nUPDATE t2 SET b=8787 WHERE a=24331;\nUPDATE t2 SET b=88238 WHERE a=24332;\nUPDATE t2 SET b=95676 WHERE a=24333;\nUPDATE t2 SET b=84321 WHERE a=24334;\nUPDATE t2 SET b=5880 WHERE a=24335;\nUPDATE t2 SET b=91687 WHERE a=24336;\nUPDATE t2 SET b=1928 WHERE a=24337;\nUPDATE t2 SET b=52296 WHERE a=24338;\nUPDATE t2 SET b=46200 WHERE a=24339;\nUPDATE t2 SET b=28182 WHERE a=24340;\nUPDATE t2 SET b=91460 WHERE a=24341;\nUPDATE t2 SET b=75450 WHERE a=24342;\nUPDATE t2 SET b=93502 WHERE a=24343;\nUPDATE t2 SET b=60316 WHERE a=24344;\nUPDATE t2 SET b=75120 WHERE a=24345;\nUPDATE t2 SET b=55401 WHERE a=24346;\nUPDATE t2 SET b=26835 WHERE a=24347;\nUPDATE t2 SET b=65520 WHERE a=24348;\nUPDATE t2 SET b=11001 WHERE a=24349;\nUPDATE t2 SET b=68621 WHERE a=24350;\nUPDATE t2 SET b=72076 WHERE a=24351;\nUPDATE t2 SET b=80529 WHERE a=24352;\nUPDATE t2 SET b=42835 WHERE a=24353;\nUPDATE t2 SET b=12858 WHERE a=24354;\nUPDATE t2 SET b=43081 WHERE a=24355;\nUPDATE t2 SET b=5732 WHERE a=24356;\nUPDATE t2 SET b=2984 WHERE a=24357;\nUPDATE t2 SET b=99503 WHERE a=24358;\nUPDATE t2 SET b=82277 WHERE a=24359;\nUPDATE t2 SET b=12290 WHERE a=24360;\nUPDATE t2 SET b=25014 WHERE a=24361;\nUPDATE t2 SET b=75356 WHERE a=24362;\nUPDATE t2 SET b=66795 WHERE a=24363;\nUPDATE t2 SET b=38017 WHERE a=24364;\nUPDATE t2 SET b=236 WHERE a=24365;\nUPDATE t2 SET b=57651 WHERE a=24366;\nUPDATE t2 SET b=30321 WHERE a=24367;\nUPDATE t2 SET b=8845 WHERE a=24368;\nUPDATE t2 SET b=52893 WHERE a=24369;\nUPDATE t2 SET b=60891 WHERE a=24370;\nUPDATE t2 SET b=62751 WHERE a=24371;\nUPDATE t2 SET b=32486 WHERE a=24372;\nUPDATE t2 SET b=25138 WHERE a=24373;\nUPDATE t2 SET b=10408 WHERE a=24374;\nUPDATE t2 SET b=74324 WHERE a=24375;\nUPDATE t2 SET b=91143 WHERE a=24376;\nUPDATE t2 SET b=85306 WHERE a=24377;\nUPDATE t2 SET b=48004 WHERE a=24378;\nUPDATE t2 SET b=77479 WHERE a=24379;\nUPDATE t2 SET b=63928 WHERE a=24380;\nUPDATE t2 SET b=61772 WHERE a=24381;\nUPDATE t2 SET b=45270 WHERE a=24382;\nUPDATE t2 SET b=60212 WHERE a=24383;\nUPDATE t2 SET b=34720 WHERE a=24384;\nUPDATE t2 SET b=22309 WHERE a=24385;\nUPDATE t2 SET b=12185 WHERE a=24386;\nUPDATE t2 SET b=14741 WHERE a=24387;\nUPDATE t2 SET b=54874 WHERE a=24388;\nUPDATE t2 SET b=95784 WHERE a=24389;\nUPDATE t2 SET b=38340 WHERE a=24390;\nUPDATE t2 SET b=988 WHERE a=24391;\nUPDATE t2 SET b=92909 WHERE a=24392;\nUPDATE t2 SET b=1648 WHERE a=24393;\nUPDATE t2 SET b=96539 WHERE a=24394;\nUPDATE t2 SET b=74785 WHERE a=24395;\nUPDATE t2 SET b=4299 WHERE a=24396;\nUPDATE t2 SET b=12483 WHERE a=24397;\nUPDATE t2 SET b=72889 WHERE a=24398;\nUPDATE t2 SET b=78607 WHERE a=24399;\nUPDATE t2 SET b=47100 WHERE a=24400;\nUPDATE t2 SET b=69593 WHERE a=24401;\nUPDATE t2 SET b=6365 WHERE a=24402;\nUPDATE t2 SET b=61793 WHERE a=24403;\nUPDATE t2 SET b=72276 WHERE a=24404;\nUPDATE t2 SET b=41603 WHERE a=24405;\nUPDATE t2 SET b=96343 WHERE a=24406;\nUPDATE t2 SET b=78672 WHERE a=24407;\nUPDATE t2 SET b=59126 WHERE a=24408;\nUPDATE t2 SET b=22280 WHERE a=24409;\nUPDATE t2 SET b=74890 WHERE a=24410;\nUPDATE t2 SET b=60122 WHERE a=24411;\nUPDATE t2 SET b=10892 WHERE a=24412;\nUPDATE t2 SET b=40170 WHERE a=24413;\nUPDATE t2 SET b=90293 WHERE a=24414;\nUPDATE t2 SET b=55593 WHERE a=24415;\nUPDATE t2 SET b=54123 WHERE a=24416;\nUPDATE t2 SET b=40055 WHERE a=24417;\nUPDATE t2 SET b=65905 WHERE a=24418;\nUPDATE t2 SET b=58193 WHERE a=24419;\nUPDATE t2 SET b=72235 WHERE a=24420;\nUPDATE t2 SET b=6046 WHERE a=24421;\nUPDATE t2 SET b=38061 WHERE a=24422;\nUPDATE t2 SET b=90627 WHERE a=24423;\nUPDATE t2 SET b=10805 WHERE a=24424;\nUPDATE t2 SET b=78416 WHERE a=24425;\nUPDATE t2 SET b=86678 WHERE a=24426;\nUPDATE t2 SET b=143 WHERE a=24427;\nUPDATE t2 SET b=6461 WHERE a=24428;\nUPDATE t2 SET b=58811 WHERE a=24429;\nUPDATE t2 SET b=21280 WHERE a=24430;\nUPDATE t2 SET b=1238 WHERE a=24431;\nUPDATE t2 SET b=88887 WHERE a=24432;\nUPDATE t2 SET b=86566 WHERE a=24433;\nUPDATE t2 SET b=32181 WHERE a=24434;\nUPDATE t2 SET b=69646 WHERE a=24435;\nUPDATE t2 SET b=74428 WHERE a=24436;\nUPDATE t2 SET b=74576 WHERE a=24437;\nUPDATE t2 SET b=24353 WHERE a=24438;\nUPDATE t2 SET b=59935 WHERE a=24439;\nUPDATE t2 SET b=96184 WHERE a=24440;\nUPDATE t2 SET b=96984 WHERE a=24441;\nUPDATE t2 SET b=66451 WHERE a=24442;\nUPDATE t2 SET b=27836 WHERE a=24443;\nUPDATE t2 SET b=26042 WHERE a=24444;\nUPDATE t2 SET b=48205 WHERE a=24445;\nUPDATE t2 SET b=91442 WHERE a=24446;\nUPDATE t2 SET b=5743 WHERE a=24447;\nUPDATE t2 SET b=82319 WHERE a=24448;\nUPDATE t2 SET b=88881 WHERE a=24449;\nUPDATE t2 SET b=49633 WHERE a=24450;\nUPDATE t2 SET b=59967 WHERE a=24451;\nUPDATE t2 SET b=70236 WHERE a=24452;\nUPDATE t2 SET b=30948 WHERE a=24453;\nUPDATE t2 SET b=47033 WHERE a=24454;\nUPDATE t2 SET b=66375 WHERE a=24455;\nUPDATE t2 SET b=32406 WHERE a=24456;\nUPDATE t2 SET b=28493 WHERE a=24457;\nUPDATE t2 SET b=4843 WHERE a=24458;\nUPDATE t2 SET b=93391 WHERE a=24459;\nUPDATE t2 SET b=95795 WHERE a=24460;\nUPDATE t2 SET b=77945 WHERE a=24461;\nUPDATE t2 SET b=83304 WHERE a=24462;\nUPDATE t2 SET b=90599 WHERE a=24463;\nUPDATE t2 SET b=6048 WHERE a=24464;\nUPDATE t2 SET b=9494 WHERE a=24465;\nUPDATE t2 SET b=97853 WHERE a=24466;\nUPDATE t2 SET b=79908 WHERE a=24467;\nUPDATE t2 SET b=34611 WHERE a=24468;\nUPDATE t2 SET b=45483 WHERE a=24469;\nUPDATE t2 SET b=89121 WHERE a=24470;\nUPDATE t2 SET b=53544 WHERE a=24471;\nUPDATE t2 SET b=23840 WHERE a=24472;\nUPDATE t2 SET b=56926 WHERE a=24473;\nUPDATE t2 SET b=67324 WHERE a=24474;\nUPDATE t2 SET b=16594 WHERE a=24475;\nUPDATE t2 SET b=38931 WHERE a=24476;\nUPDATE t2 SET b=86916 WHERE a=24477;\nUPDATE t2 SET b=37232 WHERE a=24478;\nUPDATE t2 SET b=2415 WHERE a=24479;\nUPDATE t2 SET b=45009 WHERE a=24480;\nUPDATE t2 SET b=47952 WHERE a=24481;\nUPDATE t2 SET b=62258 WHERE a=24482;\nUPDATE t2 SET b=94443 WHERE a=24483;\nUPDATE t2 SET b=89651 WHERE a=24484;\nUPDATE t2 SET b=85559 WHERE a=24485;\nUPDATE t2 SET b=39865 WHERE a=24486;\nUPDATE t2 SET b=19413 WHERE a=24487;\nUPDATE t2 SET b=1130 WHERE a=24488;\nUPDATE t2 SET b=61040 WHERE a=24489;\nUPDATE t2 SET b=44714 WHERE a=24490;\nUPDATE t2 SET b=30857 WHERE a=24491;\nUPDATE t2 SET b=24262 WHERE a=24492;\nUPDATE t2 SET b=41080 WHERE a=24493;\nUPDATE t2 SET b=68931 WHERE a=24494;\nUPDATE t2 SET b=64 WHERE a=24495;\nUPDATE t2 SET b=97667 WHERE a=24496;\nUPDATE t2 SET b=99547 WHERE a=24497;\nUPDATE t2 SET b=31487 WHERE a=24498;\nUPDATE t2 SET b=56569 WHERE a=24499;\nUPDATE t2 SET b=7624 WHERE a=24500;\nUPDATE t2 SET b=97416 WHERE a=24501;\nUPDATE t2 SET b=38295 WHERE a=24502;\nUPDATE t2 SET b=99405 WHERE a=24503;\nUPDATE t2 SET b=79366 WHERE a=24504;\nUPDATE t2 SET b=27421 WHERE a=24505;\nUPDATE t2 SET b=26481 WHERE a=24506;\nUPDATE t2 SET b=44047 WHERE a=24507;\nUPDATE t2 SET b=90917 WHERE a=24508;\nUPDATE t2 SET b=56191 WHERE a=24509;\nUPDATE t2 SET b=68219 WHERE a=24510;\nUPDATE t2 SET b=64184 WHERE a=24511;\nUPDATE t2 SET b=69087 WHERE a=24512;\nUPDATE t2 SET b=8320 WHERE a=24513;\nUPDATE t2 SET b=14332 WHERE a=24514;\nUPDATE t2 SET b=71361 WHERE a=24515;\nUPDATE t2 SET b=3098 WHERE a=24516;\nUPDATE t2 SET b=95012 WHERE a=24517;\nUPDATE t2 SET b=50484 WHERE a=24518;\nUPDATE t2 SET b=97214 WHERE a=24519;\nUPDATE t2 SET b=41393 WHERE a=24520;\nUPDATE t2 SET b=71994 WHERE a=24521;\nUPDATE t2 SET b=33574 WHERE a=24522;\nUPDATE t2 SET b=1633 WHERE a=24523;\nUPDATE t2 SET b=44757 WHERE a=24524;\nUPDATE t2 SET b=69873 WHERE a=24525;\nUPDATE t2 SET b=92193 WHERE a=24526;\nUPDATE t2 SET b=32834 WHERE a=24527;\nUPDATE t2 SET b=70537 WHERE a=24528;\nUPDATE t2 SET b=20230 WHERE a=24529;\nUPDATE t2 SET b=68637 WHERE a=24530;\nUPDATE t2 SET b=4004 WHERE a=24531;\nUPDATE t2 SET b=18286 WHERE a=24532;\nUPDATE t2 SET b=30755 WHERE a=24533;\nUPDATE t2 SET b=58859 WHERE a=24534;\nUPDATE t2 SET b=53328 WHERE a=24535;\nUPDATE t2 SET b=57526 WHERE a=24536;\nUPDATE t2 SET b=39948 WHERE a=24537;\nUPDATE t2 SET b=59704 WHERE a=24538;\nUPDATE t2 SET b=9868 WHERE a=24539;\nUPDATE t2 SET b=85245 WHERE a=24540;\nUPDATE t2 SET b=81593 WHERE a=24541;\nUPDATE t2 SET b=99940 WHERE a=24542;\nUPDATE t2 SET b=38660 WHERE a=24543;\nUPDATE t2 SET b=93232 WHERE a=24544;\nUPDATE t2 SET b=46221 WHERE a=24545;\nUPDATE t2 SET b=18283 WHERE a=24546;\nUPDATE t2 SET b=28734 WHERE a=24547;\nUPDATE t2 SET b=82620 WHERE a=24548;\nUPDATE t2 SET b=19917 WHERE a=24549;\nUPDATE t2 SET b=15164 WHERE a=24550;\nUPDATE t2 SET b=16432 WHERE a=24551;\nUPDATE t2 SET b=34516 WHERE a=24552;\nUPDATE t2 SET b=34406 WHERE a=24553;\nUPDATE t2 SET b=9258 WHERE a=24554;\nUPDATE t2 SET b=83079 WHERE a=24555;\nUPDATE t2 SET b=33590 WHERE a=24556;\nUPDATE t2 SET b=3891 WHERE a=24557;\nUPDATE t2 SET b=28337 WHERE a=24558;\nUPDATE t2 SET b=76551 WHERE a=24559;\nUPDATE t2 SET b=30053 WHERE a=24560;\nUPDATE t2 SET b=82826 WHERE a=24561;\nUPDATE t2 SET b=38999 WHERE a=24562;\nUPDATE t2 SET b=79269 WHERE a=24563;\nUPDATE t2 SET b=92299 WHERE a=24564;\nUPDATE t2 SET b=24392 WHERE a=24565;\nUPDATE t2 SET b=85383 WHERE a=24566;\nUPDATE t2 SET b=39549 WHERE a=24567;\nUPDATE t2 SET b=74162 WHERE a=24568;\nUPDATE t2 SET b=28735 WHERE a=24569;\nUPDATE t2 SET b=73329 WHERE a=24570;\nUPDATE t2 SET b=68547 WHERE a=24571;\nUPDATE t2 SET b=39595 WHERE a=24572;\nUPDATE t2 SET b=79796 WHERE a=24573;\nUPDATE t2 SET b=44039 WHERE a=24574;\nUPDATE t2 SET b=40746 WHERE a=24575;\nUPDATE t2 SET b=24689 WHERE a=24576;\nUPDATE t2 SET b=90000 WHERE a=24577;\nUPDATE t2 SET b=71642 WHERE a=24578;\nUPDATE t2 SET b=47823 WHERE a=24579;\nUPDATE t2 SET b=94945 WHERE a=24580;\nUPDATE t2 SET b=50027 WHERE a=24581;\nUPDATE t2 SET b=5790 WHERE a=24582;\nUPDATE t2 SET b=18413 WHERE a=24583;\nUPDATE t2 SET b=80939 WHERE a=24584;\nUPDATE t2 SET b=56374 WHERE a=24585;\nUPDATE t2 SET b=36383 WHERE a=24586;\nUPDATE t2 SET b=44267 WHERE a=24587;\nUPDATE t2 SET b=55390 WHERE a=24588;\nUPDATE t2 SET b=97258 WHERE a=24589;\nUPDATE t2 SET b=46120 WHERE a=24590;\nUPDATE t2 SET b=65385 WHERE a=24591;\nUPDATE t2 SET b=5282 WHERE a=24592;\nUPDATE t2 SET b=89247 WHERE a=24593;\nUPDATE t2 SET b=20755 WHERE a=24594;\nUPDATE t2 SET b=26900 WHERE a=24595;\nUPDATE t2 SET b=1157 WHERE a=24596;\nUPDATE t2 SET b=43851 WHERE a=24597;\nUPDATE t2 SET b=49127 WHERE a=24598;\nUPDATE t2 SET b=78374 WHERE a=24599;\nUPDATE t2 SET b=10009 WHERE a=24600;\nUPDATE t2 SET b=22974 WHERE a=24601;\nUPDATE t2 SET b=93779 WHERE a=24602;\nUPDATE t2 SET b=36429 WHERE a=24603;\nUPDATE t2 SET b=15067 WHERE a=24604;\nUPDATE t2 SET b=47079 WHERE a=24605;\nUPDATE t2 SET b=82939 WHERE a=24606;\nUPDATE t2 SET b=20839 WHERE a=24607;\nUPDATE t2 SET b=41434 WHERE a=24608;\nUPDATE t2 SET b=88551 WHERE a=24609;\nUPDATE t2 SET b=44201 WHERE a=24610;\nUPDATE t2 SET b=96744 WHERE a=24611;\nUPDATE t2 SET b=17367 WHERE a=24612;\nUPDATE t2 SET b=59821 WHERE a=24613;\nUPDATE t2 SET b=60560 WHERE a=24614;\nUPDATE t2 SET b=75370 WHERE a=24615;\nUPDATE t2 SET b=26481 WHERE a=24616;\nUPDATE t2 SET b=49841 WHERE a=24617;\nUPDATE t2 SET b=60404 WHERE a=24618;\nUPDATE t2 SET b=12762 WHERE a=24619;\nUPDATE t2 SET b=5865 WHERE a=24620;\nUPDATE t2 SET b=66958 WHERE a=24621;\nUPDATE t2 SET b=42515 WHERE a=24622;\nUPDATE t2 SET b=70552 WHERE a=24623;\nUPDATE t2 SET b=26851 WHERE a=24624;\nUPDATE t2 SET b=75261 WHERE a=24625;\nUPDATE t2 SET b=59336 WHERE a=24626;\nUPDATE t2 SET b=54165 WHERE a=24627;\nUPDATE t2 SET b=92515 WHERE a=24628;\nUPDATE t2 SET b=37969 WHERE a=24629;\nUPDATE t2 SET b=25180 WHERE a=24630;\nUPDATE t2 SET b=29214 WHERE a=24631;\nUPDATE t2 SET b=36951 WHERE a=24632;\nUPDATE t2 SET b=36308 WHERE a=24633;\nUPDATE t2 SET b=88948 WHERE a=24634;\nUPDATE t2 SET b=76650 WHERE a=24635;\nUPDATE t2 SET b=47537 WHERE a=24636;\nUPDATE t2 SET b=23036 WHERE a=24637;\nUPDATE t2 SET b=72868 WHERE a=24638;\nUPDATE t2 SET b=82555 WHERE a=24639;\nUPDATE t2 SET b=797 WHERE a=24640;\nUPDATE t2 SET b=38245 WHERE a=24641;\nUPDATE t2 SET b=81298 WHERE a=24642;\nUPDATE t2 SET b=30813 WHERE a=24643;\nUPDATE t2 SET b=79263 WHERE a=24644;\nUPDATE t2 SET b=61908 WHERE a=24645;\nUPDATE t2 SET b=42963 WHERE a=24646;\nUPDATE t2 SET b=98929 WHERE a=24647;\nUPDATE t2 SET b=86673 WHERE a=24648;\nUPDATE t2 SET b=17472 WHERE a=24649;\nUPDATE t2 SET b=50482 WHERE a=24650;\nUPDATE t2 SET b=26112 WHERE a=24651;\nUPDATE t2 SET b=82712 WHERE a=24652;\nUPDATE t2 SET b=39091 WHERE a=24653;\nUPDATE t2 SET b=50518 WHERE a=24654;\nUPDATE t2 SET b=62098 WHERE a=24655;\nUPDATE t2 SET b=61225 WHERE a=24656;\nUPDATE t2 SET b=15820 WHERE a=24657;\nUPDATE t2 SET b=79770 WHERE a=24658;\nUPDATE t2 SET b=95037 WHERE a=24659;\nUPDATE t2 SET b=87861 WHERE a=24660;\nUPDATE t2 SET b=61279 WHERE a=24661;\nUPDATE t2 SET b=66723 WHERE a=24662;\nUPDATE t2 SET b=77278 WHERE a=24663;\nUPDATE t2 SET b=35616 WHERE a=24664;\nUPDATE t2 SET b=32191 WHERE a=24665;\nUPDATE t2 SET b=96367 WHERE a=24666;\nUPDATE t2 SET b=17328 WHERE a=24667;\nUPDATE t2 SET b=89380 WHERE a=24668;\nUPDATE t2 SET b=29714 WHERE a=24669;\nUPDATE t2 SET b=82473 WHERE a=24670;\nUPDATE t2 SET b=18042 WHERE a=24671;\nUPDATE t2 SET b=74959 WHERE a=24672;\nUPDATE t2 SET b=30377 WHERE a=24673;\nUPDATE t2 SET b=12271 WHERE a=24674;\nUPDATE t2 SET b=87535 WHERE a=24675;\nUPDATE t2 SET b=40123 WHERE a=24676;\nUPDATE t2 SET b=9644 WHERE a=24677;\nUPDATE t2 SET b=70018 WHERE a=24678;\nUPDATE t2 SET b=38326 WHERE a=24679;\nUPDATE t2 SET b=31947 WHERE a=24680;\nUPDATE t2 SET b=16769 WHERE a=24681;\nUPDATE t2 SET b=91451 WHERE a=24682;\nUPDATE t2 SET b=88615 WHERE a=24683;\nUPDATE t2 SET b=2490 WHERE a=24684;\nUPDATE t2 SET b=52375 WHERE a=24685;\nUPDATE t2 SET b=85622 WHERE a=24686;\nUPDATE t2 SET b=99148 WHERE a=24687;\nUPDATE t2 SET b=53514 WHERE a=24688;\nUPDATE t2 SET b=27083 WHERE a=24689;\nUPDATE t2 SET b=84776 WHERE a=24690;\nUPDATE t2 SET b=53543 WHERE a=24691;\nUPDATE t2 SET b=59275 WHERE a=24692;\nUPDATE t2 SET b=31220 WHERE a=24693;\nUPDATE t2 SET b=9664 WHERE a=24694;\nUPDATE t2 SET b=53171 WHERE a=24695;\nUPDATE t2 SET b=13678 WHERE a=24696;\nUPDATE t2 SET b=31428 WHERE a=24697;\nUPDATE t2 SET b=28125 WHERE a=24698;\nUPDATE t2 SET b=31713 WHERE a=24699;\nUPDATE t2 SET b=63823 WHERE a=24700;\nUPDATE t2 SET b=70537 WHERE a=24701;\nUPDATE t2 SET b=7406 WHERE a=24702;\nUPDATE t2 SET b=92918 WHERE a=24703;\nUPDATE t2 SET b=35582 WHERE a=24704;\nUPDATE t2 SET b=89173 WHERE a=24705;\nUPDATE t2 SET b=51782 WHERE a=24706;\nUPDATE t2 SET b=94540 WHERE a=24707;\nUPDATE t2 SET b=98135 WHERE a=24708;\nUPDATE t2 SET b=44816 WHERE a=24709;\nUPDATE t2 SET b=50766 WHERE a=24710;\nUPDATE t2 SET b=82826 WHERE a=24711;\nUPDATE t2 SET b=45753 WHERE a=24712;\nUPDATE t2 SET b=92348 WHERE a=24713;\nUPDATE t2 SET b=17176 WHERE a=24714;\nUPDATE t2 SET b=46787 WHERE a=24715;\nUPDATE t2 SET b=21244 WHERE a=24716;\nUPDATE t2 SET b=59399 WHERE a=24717;\nUPDATE t2 SET b=55888 WHERE a=24718;\nUPDATE t2 SET b=8639 WHERE a=24719;\nUPDATE t2 SET b=18558 WHERE a=24720;\nUPDATE t2 SET b=4391 WHERE a=24721;\nUPDATE t2 SET b=23362 WHERE a=24722;\nUPDATE t2 SET b=67135 WHERE a=24723;\nUPDATE t2 SET b=57818 WHERE a=24724;\nUPDATE t2 SET b=6501 WHERE a=24725;\nUPDATE t2 SET b=16532 WHERE a=24726;\nUPDATE t2 SET b=49008 WHERE a=24727;\nUPDATE t2 SET b=12254 WHERE a=24728;\nUPDATE t2 SET b=14923 WHERE a=24729;\nUPDATE t2 SET b=84485 WHERE a=24730;\nUPDATE t2 SET b=69382 WHERE a=24731;\nUPDATE t2 SET b=75209 WHERE a=24732;\nUPDATE t2 SET b=88766 WHERE a=24733;\nUPDATE t2 SET b=56824 WHERE a=24734;\nUPDATE t2 SET b=22347 WHERE a=24735;\nUPDATE t2 SET b=26016 WHERE a=24736;\nUPDATE t2 SET b=28908 WHERE a=24737;\nUPDATE t2 SET b=7600 WHERE a=24738;\nUPDATE t2 SET b=35848 WHERE a=24739;\nUPDATE t2 SET b=40740 WHERE a=24740;\nUPDATE t2 SET b=13993 WHERE a=24741;\nUPDATE t2 SET b=23454 WHERE a=24742;\nUPDATE t2 SET b=32224 WHERE a=24743;\nUPDATE t2 SET b=35581 WHERE a=24744;\nUPDATE t2 SET b=63431 WHERE a=24745;\nUPDATE t2 SET b=40017 WHERE a=24746;\nUPDATE t2 SET b=68378 WHERE a=24747;\nUPDATE t2 SET b=92021 WHERE a=24748;\nUPDATE t2 SET b=76937 WHERE a=24749;\nUPDATE t2 SET b=99818 WHERE a=24750;\nUPDATE t2 SET b=72650 WHERE a=24751;\nUPDATE t2 SET b=91601 WHERE a=24752;\nUPDATE t2 SET b=38487 WHERE a=24753;\nUPDATE t2 SET b=59241 WHERE a=24754;\nUPDATE t2 SET b=12006 WHERE a=24755;\nUPDATE t2 SET b=65932 WHERE a=24756;\nUPDATE t2 SET b=71851 WHERE a=24757;\nUPDATE t2 SET b=30973 WHERE a=24758;\nUPDATE t2 SET b=14665 WHERE a=24759;\nUPDATE t2 SET b=82987 WHERE a=24760;\nUPDATE t2 SET b=13867 WHERE a=24761;\nUPDATE t2 SET b=26903 WHERE a=24762;\nUPDATE t2 SET b=59994 WHERE a=24763;\nUPDATE t2 SET b=31048 WHERE a=24764;\nUPDATE t2 SET b=14002 WHERE a=24765;\nUPDATE t2 SET b=73724 WHERE a=24766;\nUPDATE t2 SET b=47051 WHERE a=24767;\nUPDATE t2 SET b=6494 WHERE a=24768;\nUPDATE t2 SET b=65812 WHERE a=24769;\nUPDATE t2 SET b=69984 WHERE a=24770;\nUPDATE t2 SET b=86630 WHERE a=24771;\nUPDATE t2 SET b=54005 WHERE a=24772;\nUPDATE t2 SET b=95562 WHERE a=24773;\nUPDATE t2 SET b=36159 WHERE a=24774;\nUPDATE t2 SET b=50995 WHERE a=24775;\nUPDATE t2 SET b=21551 WHERE a=24776;\nUPDATE t2 SET b=10619 WHERE a=24777;\nUPDATE t2 SET b=57949 WHERE a=24778;\nUPDATE t2 SET b=8898 WHERE a=24779;\nUPDATE t2 SET b=30425 WHERE a=24780;\nUPDATE t2 SET b=25473 WHERE a=24781;\nUPDATE t2 SET b=12437 WHERE a=24782;\nUPDATE t2 SET b=69736 WHERE a=24783;\nUPDATE t2 SET b=7861 WHERE a=24784;\nUPDATE t2 SET b=18592 WHERE a=24785;\nUPDATE t2 SET b=97244 WHERE a=24786;\nUPDATE t2 SET b=10387 WHERE a=24787;\nUPDATE t2 SET b=70136 WHERE a=24788;\nUPDATE t2 SET b=50849 WHERE a=24789;\nUPDATE t2 SET b=21531 WHERE a=24790;\nUPDATE t2 SET b=82903 WHERE a=24791;\nUPDATE t2 SET b=20611 WHERE a=24792;\nUPDATE t2 SET b=53014 WHERE a=24793;\nUPDATE t2 SET b=46262 WHERE a=24794;\nUPDATE t2 SET b=49876 WHERE a=24795;\nUPDATE t2 SET b=38350 WHERE a=24796;\nUPDATE t2 SET b=34815 WHERE a=24797;\nUPDATE t2 SET b=27498 WHERE a=24798;\nUPDATE t2 SET b=95610 WHERE a=24799;\nUPDATE t2 SET b=53922 WHERE a=24800;\nUPDATE t2 SET b=72696 WHERE a=24801;\nUPDATE t2 SET b=28855 WHERE a=24802;\nUPDATE t2 SET b=87139 WHERE a=24803;\nUPDATE t2 SET b=8387 WHERE a=24804;\nUPDATE t2 SET b=15664 WHERE a=24805;\nUPDATE t2 SET b=30064 WHERE a=24806;\nUPDATE t2 SET b=51822 WHERE a=24807;\nUPDATE t2 SET b=43515 WHERE a=24808;\nUPDATE t2 SET b=10702 WHERE a=24809;\nUPDATE t2 SET b=78476 WHERE a=24810;\nUPDATE t2 SET b=12477 WHERE a=24811;\nUPDATE t2 SET b=27072 WHERE a=24812;\nUPDATE t2 SET b=60500 WHERE a=24813;\nUPDATE t2 SET b=9020 WHERE a=24814;\nUPDATE t2 SET b=57854 WHERE a=24815;\nUPDATE t2 SET b=23193 WHERE a=24816;\nUPDATE t2 SET b=6329 WHERE a=24817;\nUPDATE t2 SET b=2207 WHERE a=24818;\nUPDATE t2 SET b=3359 WHERE a=24819;\nUPDATE t2 SET b=3476 WHERE a=24820;\nUPDATE t2 SET b=21891 WHERE a=24821;\nUPDATE t2 SET b=4003 WHERE a=24822;\nUPDATE t2 SET b=18371 WHERE a=24823;\nUPDATE t2 SET b=51717 WHERE a=24824;\nUPDATE t2 SET b=6131 WHERE a=24825;\nUPDATE t2 SET b=10159 WHERE a=24826;\nUPDATE t2 SET b=19009 WHERE a=24827;\nUPDATE t2 SET b=90495 WHERE a=24828;\nUPDATE t2 SET b=12353 WHERE a=24829;\nUPDATE t2 SET b=44433 WHERE a=24830;\nUPDATE t2 SET b=31025 WHERE a=24831;\nUPDATE t2 SET b=30528 WHERE a=24832;\nUPDATE t2 SET b=51169 WHERE a=24833;\nUPDATE t2 SET b=69400 WHERE a=24834;\nUPDATE t2 SET b=96326 WHERE a=24835;\nUPDATE t2 SET b=31661 WHERE a=24836;\nUPDATE t2 SET b=6670 WHERE a=24837;\nUPDATE t2 SET b=63701 WHERE a=24838;\nUPDATE t2 SET b=20845 WHERE a=24839;\nUPDATE t2 SET b=52924 WHERE a=24840;\nUPDATE t2 SET b=64448 WHERE a=24841;\nUPDATE t2 SET b=6494 WHERE a=24842;\nUPDATE t2 SET b=20802 WHERE a=24843;\nUPDATE t2 SET b=6521 WHERE a=24844;\nUPDATE t2 SET b=70554 WHERE a=24845;\nUPDATE t2 SET b=41091 WHERE a=24846;\nUPDATE t2 SET b=83276 WHERE a=24847;\nUPDATE t2 SET b=16119 WHERE a=24848;\nUPDATE t2 SET b=91533 WHERE a=24849;\nUPDATE t2 SET b=63562 WHERE a=24850;\nUPDATE t2 SET b=71858 WHERE a=24851;\nUPDATE t2 SET b=30924 WHERE a=24852;\nUPDATE t2 SET b=21101 WHERE a=24853;\nUPDATE t2 SET b=67622 WHERE a=24854;\nUPDATE t2 SET b=64743 WHERE a=24855;\nUPDATE t2 SET b=44668 WHERE a=24856;\nUPDATE t2 SET b=25625 WHERE a=24857;\nUPDATE t2 SET b=16160 WHERE a=24858;\nUPDATE t2 SET b=15556 WHERE a=24859;\nUPDATE t2 SET b=81122 WHERE a=24860;\nUPDATE t2 SET b=56392 WHERE a=24861;\nUPDATE t2 SET b=97080 WHERE a=24862;\nUPDATE t2 SET b=2066 WHERE a=24863;\nUPDATE t2 SET b=50339 WHERE a=24864;\nUPDATE t2 SET b=53237 WHERE a=24865;\nUPDATE t2 SET b=78793 WHERE a=24866;\nUPDATE t2 SET b=93895 WHERE a=24867;\nUPDATE t2 SET b=10938 WHERE a=24868;\nUPDATE t2 SET b=39418 WHERE a=24869;\nUPDATE t2 SET b=26156 WHERE a=24870;\nUPDATE t2 SET b=2403 WHERE a=24871;\nUPDATE t2 SET b=9662 WHERE a=24872;\nUPDATE t2 SET b=36252 WHERE a=24873;\nUPDATE t2 SET b=80464 WHERE a=24874;\nUPDATE t2 SET b=1842 WHERE a=24875;\nUPDATE t2 SET b=61670 WHERE a=24876;\nUPDATE t2 SET b=96251 WHERE a=24877;\nUPDATE t2 SET b=59783 WHERE a=24878;\nUPDATE t2 SET b=99761 WHERE a=24879;\nUPDATE t2 SET b=23634 WHERE a=24880;\nUPDATE t2 SET b=18170 WHERE a=24881;\nUPDATE t2 SET b=64123 WHERE a=24882;\nUPDATE t2 SET b=53894 WHERE a=24883;\nUPDATE t2 SET b=73070 WHERE a=24884;\nUPDATE t2 SET b=99395 WHERE a=24885;\nUPDATE t2 SET b=62292 WHERE a=24886;\nUPDATE t2 SET b=4762 WHERE a=24887;\nUPDATE t2 SET b=93225 WHERE a=24888;\nUPDATE t2 SET b=50995 WHERE a=24889;\nUPDATE t2 SET b=97871 WHERE a=24890;\nUPDATE t2 SET b=82258 WHERE a=24891;\nUPDATE t2 SET b=96473 WHERE a=24892;\nUPDATE t2 SET b=26516 WHERE a=24893;\nUPDATE t2 SET b=18084 WHERE a=24894;\nUPDATE t2 SET b=67607 WHERE a=24895;\nUPDATE t2 SET b=62917 WHERE a=24896;\nUPDATE t2 SET b=37748 WHERE a=24897;\nUPDATE t2 SET b=65481 WHERE a=24898;\nUPDATE t2 SET b=48402 WHERE a=24899;\nUPDATE t2 SET b=43004 WHERE a=24900;\nUPDATE t2 SET b=79155 WHERE a=24901;\nUPDATE t2 SET b=76561 WHERE a=24902;\nUPDATE t2 SET b=59299 WHERE a=24903;\nUPDATE t2 SET b=2693 WHERE a=24904;\nUPDATE t2 SET b=73875 WHERE a=24905;\nUPDATE t2 SET b=22280 WHERE a=24906;\nUPDATE t2 SET b=30150 WHERE a=24907;\nUPDATE t2 SET b=58647 WHERE a=24908;\nUPDATE t2 SET b=41818 WHERE a=24909;\nUPDATE t2 SET b=66919 WHERE a=24910;\nUPDATE t2 SET b=40731 WHERE a=24911;\nUPDATE t2 SET b=2094 WHERE a=24912;\nUPDATE t2 SET b=2408 WHERE a=24913;\nUPDATE t2 SET b=88669 WHERE a=24914;\nUPDATE t2 SET b=58165 WHERE a=24915;\nUPDATE t2 SET b=64229 WHERE a=24916;\nUPDATE t2 SET b=78054 WHERE a=24917;\nUPDATE t2 SET b=95613 WHERE a=24918;\nUPDATE t2 SET b=27941 WHERE a=24919;\nUPDATE t2 SET b=48 WHERE a=24920;\nUPDATE t2 SET b=36039 WHERE a=24921;\nUPDATE t2 SET b=45581 WHERE a=24922;\nUPDATE t2 SET b=5570 WHERE a=24923;\nUPDATE t2 SET b=23362 WHERE a=24924;\nUPDATE t2 SET b=57829 WHERE a=24925;\nUPDATE t2 SET b=47959 WHERE a=24926;\nUPDATE t2 SET b=13151 WHERE a=24927;\nUPDATE t2 SET b=2966 WHERE a=24928;\nUPDATE t2 SET b=26815 WHERE a=24929;\nUPDATE t2 SET b=4616 WHERE a=24930;\nUPDATE t2 SET b=31286 WHERE a=24931;\nUPDATE t2 SET b=38228 WHERE a=24932;\nUPDATE t2 SET b=4867 WHERE a=24933;\nUPDATE t2 SET b=65628 WHERE a=24934;\nUPDATE t2 SET b=89286 WHERE a=24935;\nUPDATE t2 SET b=88192 WHERE a=24936;\nUPDATE t2 SET b=34849 WHERE a=24937;\nUPDATE t2 SET b=53741 WHERE a=24938;\nUPDATE t2 SET b=43537 WHERE a=24939;\nUPDATE t2 SET b=41771 WHERE a=24940;\nUPDATE t2 SET b=80807 WHERE a=24941;\nUPDATE t2 SET b=99544 WHERE a=24942;\nUPDATE t2 SET b=14072 WHERE a=24943;\nUPDATE t2 SET b=45523 WHERE a=24944;\nUPDATE t2 SET b=15499 WHERE a=24945;\nUPDATE t2 SET b=2875 WHERE a=24946;\nUPDATE t2 SET b=41352 WHERE a=24947;\nUPDATE t2 SET b=10155 WHERE a=24948;\nUPDATE t2 SET b=70938 WHERE a=24949;\nUPDATE t2 SET b=37088 WHERE a=24950;\nUPDATE t2 SET b=19602 WHERE a=24951;\nUPDATE t2 SET b=20921 WHERE a=24952;\nUPDATE t2 SET b=19928 WHERE a=24953;\nUPDATE t2 SET b=99103 WHERE a=24954;\nUPDATE t2 SET b=91710 WHERE a=24955;\nUPDATE t2 SET b=33261 WHERE a=24956;\nUPDATE t2 SET b=58161 WHERE a=24957;\nUPDATE t2 SET b=34648 WHERE a=24958;\nUPDATE t2 SET b=20776 WHERE a=24959;\nUPDATE t2 SET b=68180 WHERE a=24960;\nUPDATE t2 SET b=49268 WHERE a=24961;\nUPDATE t2 SET b=83860 WHERE a=24962;\nUPDATE t2 SET b=88002 WHERE a=24963;\nUPDATE t2 SET b=87672 WHERE a=24964;\nUPDATE t2 SET b=92708 WHERE a=24965;\nUPDATE t2 SET b=48911 WHERE a=24966;\nUPDATE t2 SET b=52773 WHERE a=24967;\nUPDATE t2 SET b=22420 WHERE a=24968;\nUPDATE t2 SET b=56443 WHERE a=24969;\nUPDATE t2 SET b=24421 WHERE a=24970;\nUPDATE t2 SET b=9045 WHERE a=24971;\nUPDATE t2 SET b=81558 WHERE a=24972;\nUPDATE t2 SET b=47647 WHERE a=24973;\nUPDATE t2 SET b=20467 WHERE a=24974;\nUPDATE t2 SET b=8929 WHERE a=24975;\nUPDATE t2 SET b=2349 WHERE a=24976;\nUPDATE t2 SET b=9892 WHERE a=24977;\nUPDATE t2 SET b=63368 WHERE a=24978;\nUPDATE t2 SET b=76164 WHERE a=24979;\nUPDATE t2 SET b=96670 WHERE a=24980;\nUPDATE t2 SET b=65858 WHERE a=24981;\nUPDATE t2 SET b=37114 WHERE a=24982;\nUPDATE t2 SET b=20938 WHERE a=24983;\nUPDATE t2 SET b=10859 WHERE a=24984;\nUPDATE t2 SET b=12219 WHERE a=24985;\nUPDATE t2 SET b=13035 WHERE a=24986;\nUPDATE t2 SET b=8699 WHERE a=24987;\nUPDATE t2 SET b=34577 WHERE a=24988;\nUPDATE t2 SET b=81145 WHERE a=24989;\nUPDATE t2 SET b=72930 WHERE a=24990;\nUPDATE t2 SET b=90839 WHERE a=24991;\nUPDATE t2 SET b=62751 WHERE a=24992;\nUPDATE t2 SET b=81141 WHERE a=24993;\nUPDATE t2 SET b=19366 WHERE a=24994;\nUPDATE t2 SET b=87519 WHERE a=24995;\nUPDATE t2 SET b=56768 WHERE a=24996;\nUPDATE t2 SET b=43942 WHERE a=24997;\nUPDATE t2 SET b=50494 WHERE a=24998;\nUPDATE t2 SET b=74260 WHERE a=24999;\nUPDATE t2 SET b=41153 WHERE a=25000;\nCOMMIT;\n"
  },
  {
    "path": "sqlite3_web/benchmark/worker.dart",
    "content": "import 'dart:async';\nimport 'dart:js_interop';\n\nimport 'package:sqlite3_web/sqlite3_web.dart';\nimport 'package:sqlite3_web/src/locks.dart';\nimport 'package:web/web.dart';\n\nimport '../example/controller.dart';\nimport 'message.dart';\n\nfinal _locks = WebLocks.instance!;\n\nvoid main() {\n  WorkerEnvironment environment;\n\n  if (globalContext.instanceOfString('SharedWorkerGlobalScope')) {\n    // This shared worker is used both to hand out database access and to\n    // coordinate multiple tabs running concurrency benchmarks. We encapsulate\n    // messages from the sqlite3_async package in a WorkerMessage struct, which\n    // allows this worker to speak both protocols.\n    final fakeEnvironment = environment = FakeWorkerEnvironment(\n      WorkerConnector.defaultWorkers(Uri.base),\n    );\n\n    final scope = globalContext as SharedWorkerGlobalScope;\n    final clients = ClientsDriver();\n    clients.run();\n\n    EventStreamProviders.connectEvent.forTarget(scope).listen((event) {\n      for (final port in (event as MessageEvent).ports.toDart) {\n        port.start();\n\n        EventStreamProviders.messageEvent.forTarget(port).listen((message) {\n          final data = message.data as WorkerMessage;\n          switch (ToWorkerMessageType.values.byName(data.type)) {\n            case ToWorkerMessageType.sqlite:\n              fakeEnvironment.postMessage(data.payload);\n            case ToWorkerMessageType.connectTab:\n              final payload = data.payload as ConnectTab;\n              clients._events.add(\n                _ClientConnected(ConnectedClient(port), payload.lockName),\n              );\n          }\n        });\n      }\n    });\n  } else {\n    environment = WorkerEnvironment();\n  }\n\n  WebSqlite.workerEntrypoint(\n    controller: ExampleController(),\n    environment: environment,\n  );\n}\n\n/// Actor handling tabs connecting, disconnecting and requesting benchmark runs.\nfinal class ClientsDriver {\n  final StreamController<_ClientsDriverEvent> _events = StreamController();\n  final List<ConnectedClient> _clients = [];\n\n  void run() async {\n    await for (final event in _events.stream) {\n      _handleEvent(event);\n    }\n  }\n\n  void _handleEvent(_ClientsDriverEvent event) {\n    switch (event) {\n      case _ClientConnected():\n        _clients.add(event.client);\n        _reindexClients();\n\n        _locks.request(event.lockName).then((lock) {\n          _events.add(_ClientDisconnected(event.client));\n          lock.release();\n        });\n      case _ClientDisconnected():\n        _clients.remove(event.client);\n        _reindexClients();\n    }\n  }\n\n  void _reindexClients() {\n    for (final (i, client) in _clients.indexed) {\n      client.port.postMessage(\n        WorkerMessage(\n          type: ToClientMessageType.tabId.name,\n          payload: ReceiveTabId(index: i.toJS, numTabs: _clients.length.toJS),\n        ),\n      );\n    }\n  }\n}\n\nfinal class ConnectedClient {\n  final MessagePort port;\n\n  ConnectedClient(this.port);\n}\n\nsealed class _ClientsDriverEvent {}\n\nfinal class _ClientConnected implements _ClientsDriverEvent {\n  final ConnectedClient client;\n  final String lockName;\n\n  _ClientConnected(this.client, this.lockName);\n}\n\nfinal class _ClientDisconnected implements _ClientsDriverEvent {\n  final ConnectedClient client;\n\n  _ClientDisconnected(this.client);\n}\n"
  },
  {
    "path": "sqlite3_web/build.yaml",
    "content": "\ntargets:\n  # This setup exists so that the main entrypoint (web/main.dart) gets compiled\n  # with dartdevc for debug builds while the worker is compiled with dart2js\n  # (since workers don't support the JS moduled emitted by dartdevc).\n  # In release builds (`--release` on the CLI), both entrypoints are compiled\n  # with dart2js.\n  #\n  # If you're ok with compiling everything with dart2js, just use\n  # `compiler: dartj2s` on the options of the default target and ignore the two\n  # additional targets here.\n  dart2js_archives:\n    auto_apply_builders: false\n    dependencies: [\":$default\", \":worker\"]\n    builders:\n      build_web_compilers:dart2js_archive_extractor:\n        enabled: true\n  worker:\n    auto_apply_builders: false\n    dependencies: [\":$default\"]\n    builders:\n      build_web_compilers:entrypoint:\n        enabled: true\n        generate_for:\n          - \"**/worker.dart\"\n        options:\n          compiler: dart2js\n      build_web_compilers:dart2js_archive_extractor:\n        enabled: false\n\n  $default:\n    builders:\n      build_web_compilers:entrypoint:\n        generate_for:\n          include:\n            - example/**\n            - benchmark/**\n            - web/**\n          # Workers are compiled by the other target.\n          exclude:\n            - \"**/worker.dart\"\n        options:\n          compilers:\n            dart2js:\n            dart2wasm:\n          loader:\n      # We have a designated target for this step.\n      build_web_compilers:dart2js_archive_extractor:\n        enabled: false\n"
  },
  {
    "path": "sqlite3_web/dart_test.yaml",
    "content": "platforms: [vm, chrome, firefox]\ncompilers: [dart2wasm, dart2js]\n\ntags:\n  webdriver:\n    # Sometimes spawning the driver times out, it's just easier to retry.\n    retry: 2\n\noverride_platforms:\n  firefox:\n    settings:\n      arguments: \"-headless\"\n\npresets:\n  gh_actions:\n    concurrency: 1\n"
  },
  {
    "path": "sqlite3_web/example/controller.dart",
    "content": "import 'dart:js_interop';\n\nimport 'package:sqlite3/common.dart';\nimport 'package:sqlite3/src/wasm/sqlite3.dart';\nimport 'package:sqlite3_web/sqlite3_web.dart';\n\nfinal class ExampleController extends DatabaseController {\n  @override\n  Future<JSAny?> handleCustomRequest(\n    ClientConnection connection,\n    CustomClientRequest request,\n  ) async {\n    return null;\n  }\n\n  @override\n  Future<WorkerDatabase> openDatabase(\n    WasmSqlite3 sqlite3,\n    String path,\n    String vfs,\n    JSAny? additionalOptions,\n  ) async {\n    return ExampleDatabase(database: sqlite3.open(path, vfs: vfs));\n  }\n}\n\nfinal class ExampleDatabase extends WorkerDatabase {\n  @override\n  final CommonDatabase database;\n\n  ExampleDatabase({required this.database});\n\n  @override\n  Future<JSAny?> handleCustomRequest(\n    ClientConnection connection,\n    CustomClientRequest request,\n  ) async {\n    return null;\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/example/index.html",
    "content": "<!DOCTYPE html>\n\n<html>\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"scaffolded-by\" content=\"https://github.com/dart-lang/sdk\">\n    <title>sqlite on the web</title>\n    <script defer src=\"main.js\"></script>\n</head>\n\n<body>\n\n<h1>sqlite3 web demo</h1>\n\nThis demo can be used to open databases in different storage implementations and\naccess modes (e.g. through shared or dedicated workers).\n\nTo open a database, open the consule and run <code>await open('name', 'implementation')</code>.\nSupported values for <code>implementation</code> are:\n<ul>\n    <li><code>inMemoryLocal</code>: Only stores files in memory without persistence.</li>\n    <li><code>inMemoryShared</code>: In-memory database, but shared across tabs with a shared worker.</li>\n    <li><code>indexedDbUnsafeLocal</code>: Store data in IndexedDB, using each tab unisolated access to the database. Because data is just read once on startup, this is not a good file system implementation and prone to data corruption when used across multiple tabs.</li>\n    <li><code>indexedDbUnsafeWorker</code>: Like local, but in a shared worker.</li>\n    <li><code>indexedDbShared</code>: Safely store data in IndexedDB with a shared worker. Limited durability guarantees compared to OPFS.</li>\n\n    <li><code>opfsWithExternalLocks</code>: Uses the <a href=\"https://developer.mozilla.org/en-US/docs/Web/API/File_System_API/Origin_private_file_system\">Origin private file system</a>. This uses the experimental <code>readwrite-unsafe</code> mode only available on Chrome.</li>\n    <li><code>opfsAtomics</code>: OPFS storage, but uses a pair of dedicated workers using shared memory and atomics to syncify requests. This requires COOP + COEP headers.</li>\n    <li><code>opfsShared</code>: OPFS storage, using a dedicated worker in a shared worker. This is only supported on Firefox.</li>\n</ul>\n\nAfter opening a database, you can use <code>execute</code> in the console to run\nSQL on it, e.g:\n\n<code>\n<pre>\nlet db = await open('test', 'opfsWithExternalLocks');\nawait execute(db, 'create table foo (bar);');\n</pre>\n</code>\n\n</body>\n</html>\n"
  },
  {
    "path": "sqlite3_web/example/main.dart",
    "content": "import 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\n\nimport 'package:sqlite3_web/sqlite3_web.dart';\n\nvoid main() async {\n  final sqlite = WebSqlite.open(\n    workers: WorkerConnector.defaultWorkers(Uri.parse('worker.dart.js')),\n    wasmModule: Uri.parse('sqlite3.wasm'),\n  );\n\n  final features = await sqlite.runFeatureDetection();\n  print('got features: $features');\n\n  globalContext['open'] = (JSString name, JSString implementation) {\n    return Future(() async {\n      final database = await sqlite.connect(\n        name.toDart,\n        DatabaseImplementation.values.byName(implementation.toDart),\n      );\n\n      database.updates.listen((update) {\n        print('Update on $name: $update');\n      });\n\n      return database.toJSBox;\n    }).toJS;\n  }.toJS;\n\n  globalContext['execute'] = (JSBoxedDartObject database, JSString sql) {\n    return Future(() async {\n      await (database.toDart as Database).execute(sql.toDart);\n    }).toJS;\n  }.toJS;\n}\n"
  },
  {
    "path": "sqlite3_web/example/main.js",
    "content": "(async () => {\n    const thisScript = document.currentScript;\n    const params = new URL(document.location.toString()).searchParams;\n    const wasmOption = params.get(\"wasm\");\n\n    function relativeURL(ref) {\n      const base = thisScript?.src ?? document.baseURI;\n      return new URL(ref, base).toString();\n    }\n\n    if (wasmOption == \"1\") {\n        let { compileStreaming } = await import(\"./main.mjs\");\n\n        let app = await compileStreaming(fetch(relativeURL(\"main.wasm\")));\n        let module = await app.instantiate({});\n        module.invokeMain();\n    } else {\n        const scriptTag = document.createElement(\"script\");\n        scriptTag.type = \"application/javascript\";\n        scriptTag.src = relativeURL(\"./main.dart2js.js\");\n        document.head.append(scriptTag);\n    }\n})();\n"
  },
  {
    "path": "sqlite3_web/example/worker.dart",
    "content": "import 'package:sqlite3_web/sqlite3_web.dart';\n\nimport 'controller.dart';\n\nvoid main() {\n  WebSqlite.workerEntrypoint(controller: ExampleController());\n}\n"
  },
  {
    "path": "sqlite3_web/lib/protocol_utils.dart",
    "content": "/// Utilities for encoding sqlite3 types across web message ports.\nlibrary;\n\nimport 'dart:js_interop';\n\nimport 'package:sqlite3/wasm.dart';\nimport 'src/protocol.dart';\n\n/// Serializes a list of [parameters] compatible with the sqlite3 package into\n/// a pair of an [JSArrayBuffer] and a [JSArray].\n///\n/// The [JSArray] is backwards-compatible with clients calling `toDart` on the\n/// array and `dartify()` on the entries.\n/// However, the [JSArrayBuffer] provides out-of-band type information about\n/// the entries in the array. When one of the communication partners was\n/// compiled with dart2wasm, this is useful to tell integers and doubles apart\n/// reliably.\n(JSArray, JSArrayBuffer) serializeParameters(List<Object?> parameters) {\n  return TypeCode.encodeValues(parameters);\n}\n\n/// Given an array of values and optionally also type information obtained from\n/// [serializeParameters], return the parameters.\nList<Object?> deserializeParameters(JSArray values, JSArrayBuffer? types) {\n  return TypeCode.decodeValues(values, types);\n}\n\n/// Serializes a [ResultSet] into a serializable [JSObject].\nJSObject serializeResultSet(ResultSet resultSet) {\n  return RowsResponseUtils.wrapResultSet(\n    0,\n    resultSet: resultSet,\n    autoCommit: false,\n    lastInsertRowId: 0,\n  );\n}\n\n/// Deserializes a result set from the format in [serializeResultSet].\nResultSet deserializeResultSet(JSObject object) {\n  return (object as RowsResponse).readResultSet()!;\n}\n"
  },
  {
    "path": "sqlite3_web/lib/sqlite3_web.dart",
    "content": "export 'src/types.dart';\nexport 'src/database.dart' hide lockTokenFromId, lockTokenToId;\nexport 'src/worker_connector.dart';\n"
  },
  {
    "path": "sqlite3_web/lib/src/channel.dart",
    "content": "import 'dart:async';\nimport 'dart:js_interop';\nimport 'dart:math';\n\nimport 'package:stream_channel/stream_channel.dart';\nimport 'package:web/web.dart' hide Request, Response, Notification;\n\nimport 'locks.dart';\nimport 'protocol.dart';\nimport 'types.dart';\n\nconst _disconnectMessage = '_disconnect';\nfinal Random _random = Random();\n\n@JS()\n@anonymous\nextension type WebEndpoint._(JSObject _) implements JSObject {\n  external MessagePort get port;\n  external String? get lockName;\n\n  external factory WebEndpoint({\n    required MessagePort port,\n    required String? lockName,\n  });\n\n  StreamChannel<Message> connect() {\n    return _channel(port, lockName, null);\n  }\n}\n\nFuture<(WebEndpoint, StreamChannel<Message>)> createChannel() async {\n  final webChannel = MessageChannel();\n  final locks = WebLocks.instance;\n\n  // For servers, it's useful to know when a connection is closed, so that it\n  // can release locks or otherwise clean up resources occupied by the\n  // connection. This is kind of tricky for message ports, because they have\n  // no \"closed\" event.\n  // As a workaround, we're making one side take a unique lock and tell the\n  // other endpoint about it. When that side closes for any reason, even just\n  // because the tab is improperly closed, the other end will be able to take\n  // the lock and thus know that the connection has been closed.\n  HeldLock? lock;\n  String? lockName;\n  if (locks != null) {\n    lockName = _randomLockName();\n    lock = await locks.request(lockName);\n  }\n\n  final channel = _channel(webChannel.port2, lockName, lock);\n  return (WebEndpoint(port: webChannel.port1, lockName: lockName), channel);\n}\n\nString _randomLockName() {\n  final buffer = StringBuffer('channel-close-');\n  for (var i = 0; i < 16; i++) {\n    const charCodeSmallA = 97;\n    buffer.writeCharCode(charCodeSmallA + _random.nextInt(26));\n  }\n\n  return buffer.toString();\n}\n\nStreamChannel<Message> _channel(\n  MessagePort port,\n  String? lockName,\n  HeldLock? lock,\n) {\n  final controller = StreamChannelController<Message>();\n  port.start();\n  EventStreamProviders.messageEvent.forTarget(port).listen((event) {\n    final message = event.data;\n\n    if (message == _disconnectMessage.toJS) {\n      // Other end has closed the connection\n      controller.local.sink.close();\n    } else {\n      controller.local.sink.add(message as Message);\n    }\n  });\n\n  controller.local.stream.listen(\n    (msg) {\n      msg.sendToPort(port);\n    },\n    onDone: () {\n      // Closed locally, inform the other end.\n      port\n        ..postMessage(_disconnectMessage.toJS)\n        ..close();\n      lock?.release();\n    },\n  );\n\n  if (lock == null && lockName != null) {\n    // Once this side is able to acquire the lock, the connection is closed.\n    WebLocks.instance!.request(lockName).then((lock) {\n      controller.local.sink.close();\n      lock.release();\n    });\n  }\n\n  return controller.foreign;\n}\n\nabstract base class ProtocolChannel extends RequestHandler {\n  final StreamChannel<Message> _channel;\n\n  var _nextRequestId = 0;\n  final Map<int, Completer<Response>> _responses = {};\n\n  /// Requests that are currently being handled, identified by their id. This\n  /// allows aborting them.\n  final Map<int, AbortController> _handlingRequests = {};\n\n  ProtocolChannel(this._channel) {\n    _channel.stream.listen(\n      _handleIncoming,\n      onError: (e) {\n        close(e);\n      },\n    );\n  }\n\n  Future<void> get closed => _channel.sink.done;\n\n  /// Handle an incoming message from the client.\n  void _handleIncoming(Message message) async {\n    dispatchMessage(\n      message,\n      whenResponse: (response) {\n        _responses.remove(response.requestId)?.complete(response);\n      },\n      whenRequest: (request) async {\n        Response response;\n\n        final requestId = request.requestId;\n        final abortController = _handlingRequests[requestId] =\n            AbortController();\n\n        try {\n          response = await dispatchRequest(request, abortController.signal);\n        } catch (e, s) {\n          if (e is! AbortException) {\n            console.error('Error in worker: ${e.toString()}'.toJS);\n            console.error('Original trace: $s'.toJS);\n          }\n\n          response = ErrorResponseUtils.wrapException(requestId, e);\n        } finally {\n          _handlingRequests.remove(requestId);\n        }\n\n        _channel.sink.add(response);\n      },\n      whenNotification: handleNotification,\n      whenAbortRequest: (abort) {\n        if (_handlingRequests.remove(abort.requestId) case final token?) {\n          token.abort();\n        }\n      },\n      whenStartFileSystemServer: (_) =>\n          throw StateError('Should only be a top-level message'),\n    );\n  }\n\n  /// Sends a request to the other end and expects a response of the\n  /// [expectedType].\n  ///\n  /// The returned future completes with an error if the type doesn't match\n  /// what's expected (for instance because an [ErrorResponse]) is sent instead.\n  /// It also completes with an error if the channel gets closed in the\n  /// meantime.\n  ///\n  /// If [abortTrigger] is given and completes before this request is completed,\n  /// a request to cancel the request is sent to the remote.\n  Future<Res> sendRequest<Res extends Response>(\n    Request request,\n    MessageType<Res> expectedType, {\n    Future<void>? abortTrigger,\n  }) async {\n    final id = _nextRequestId++;\n    final completer = _responses[id] = Completer.sync();\n\n    _channel.sink.add(request..requestId = id);\n    var hasResponse = false;\n\n    if (abortTrigger != null) {\n      abortTrigger.whenComplete(() {\n        if (!hasResponse) {\n          _channel.sink.add(newAbortRequest(requestId: id));\n        }\n      });\n    }\n\n    final response = await completer.future;\n    hasResponse = true;\n    hasResponse = true;\n    if (response.type == expectedType.name) {\n      return response as Res;\n    } else {\n      throw response.interpretAsError();\n    }\n  }\n\n  void sendNotification(Notification notification) {\n    _channel.sink.add(notification);\n  }\n\n  void handleNotification(Notification notification);\n\n  Future<void> close([Object? error]) async {\n    await _channel.sink.close();\n\n    for (final response in _responses.values) {\n      response.completeError(\n        StateError('Channel closed before receiving response: $error'),\n      );\n    }\n    _responses.clear();\n  }\n}\n\nextension InjectErrors<T> on StreamChannel<T> {\n  /// Returns a stream channel reporting error events from [target] through its\n  /// [StreamChannel.stream].\n  StreamChannel<T> injectErrorsFrom(EventTarget target) {\n    return changeStream((original) {\n      return Stream.multi((listener) {\n        // Listen to the original stream...\n        final upstreamSubscription = original.listen(\n          listener.addSync,\n          onDone: listener.closeSync,\n          onError: listener.addErrorSync,\n          cancelOnError: false,\n        );\n\n        // And also to errors which are forwarded to the listener\n        final errorSubscription = EventStreamProviders.errorEvent\n            .forTarget(target)\n            .listen(listener.addErrorSync);\n\n        // Don't pause the error subscription, but propagate pauses upstream.\n        listener\n          ..onPause = upstreamSubscription.pause\n          ..onResume = upstreamSubscription.resume\n          ..onCancel = () async {\n            await upstreamSubscription.cancel();\n            await errorSubscription.cancel();\n          };\n      });\n    });\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/lib/src/client.dart",
    "content": "import 'dart:async';\nimport 'dart:js_interop';\nimport 'dart:typed_data';\n\nimport 'package:sqlite3/wasm.dart' hide WorkerOptions;\nimport 'package:stream_channel/stream_channel.dart';\nimport 'package:web/web.dart'\n    hide Response, Request, FileSystem, Notification, Lock;\n\nimport 'locks.dart';\nimport 'types.dart';\nimport 'channel.dart';\nimport 'database.dart';\nimport 'protocol.dart';\nimport 'shared.dart';\nimport 'worker_connector.dart';\n\nfinal class _CommitOrRollbackStream {\n  StreamSubscription<Notification>? workerSubscription;\n  final StreamController<void> controller = StreamController.broadcast();\n}\n\nfinal class RemoteDatabase implements Database {\n  final WorkerConnection connection;\n  final int databaseId;\n  final Completer<Object?> _isClosed = Completer();\n\n  StreamSubscription<Notification>? _updateNotificationSubscription;\n  final StreamController<SqliteUpdate> _updates = StreamController.broadcast();\n\n  final _CommitOrRollbackStream _commits = _CommitOrRollbackStream();\n  final _CommitOrRollbackStream _rollbacks = _CommitOrRollbackStream();\n\n  RemoteDatabase({required this.connection, required this.databaseId}) {\n    connection.closed.then((_) {\n      if (!isClosed) {\n        _isClosed.complete();\n        _updates.close();\n        _rollbacks.controller.close();\n        _commits.controller.close();\n      }\n    });\n\n    _updates\n      ..onListen = (() {\n        _updateNotificationSubscription ??= connection.notifications.stream\n            .listen((notification) {\n              if (notification.type == MessageType.notifyUpdate.name) {\n                if (notification.databaseId == databaseId) {\n                  final rawUpdate = notification as UpdateNotification;\n                  _updates.add(rawUpdate.sqliteUpdate);\n                }\n              }\n            });\n        if (!isClosed) {\n          connection.sendRequest(\n            newUpdateStreamRequest(\n              action: true,\n              requestId: 0,\n              databaseId: databaseId,\n            ),\n            MessageType.simpleSuccessResponse,\n          );\n        }\n      })\n      ..onCancel = (() {\n        _updateNotificationSubscription?.cancel();\n        _updateNotificationSubscription = null;\n        if (!isClosed) {\n          connection.sendRequest(\n            newUpdateStreamRequest(\n              action: false,\n              requestId: 0,\n              databaseId: databaseId,\n            ),\n            MessageType.simpleSuccessResponse,\n          );\n        }\n      });\n\n    _setupCommitOrRollbackStream(\n      _commits,\n      (action) => newCommitsStreamRequest(\n        action: action,\n        requestId: 0,\n        databaseId: databaseId,\n      ),\n      MessageType.notifyCommit.name,\n    );\n    _setupCommitOrRollbackStream(\n      _rollbacks,\n      (action) => newRollbackStreamRequest(\n        action: action,\n        requestId: 0,\n        databaseId: databaseId,\n      ),\n      MessageType.notifyRollback.name,\n    );\n  }\n\n  void _setupCommitOrRollbackStream(\n    _CommitOrRollbackStream stream,\n    StreamRequest Function(bool action) generateRequest,\n    String notificationType,\n  ) {\n    stream.controller\n      ..onListen = (() {\n        stream.workerSubscription ??= connection.notifications.stream.listen((\n          notification,\n        ) {\n          if (notification.type == notificationType &&\n              notification.databaseId == databaseId) {\n            stream.controller.add(null);\n          }\n        });\n        if (!isClosed) {\n          connection.sendRequest(\n            generateRequest(true),\n            MessageType.simpleSuccessResponse,\n          );\n        }\n      })\n      ..onCancel = (() {\n        stream.workerSubscription?.cancel();\n        stream.workerSubscription = null;\n        if (!isClosed) {\n          connection.sendRequest(\n            generateRequest(false),\n            MessageType.simpleSuccessResponse,\n          );\n        }\n      });\n  }\n\n  @override\n  bool get isClosed => _isClosed.isCompleted;\n\n  @override\n  Future<void> get closed => _isClosed.future;\n\n  @override\n  Future<void> dispose() async {\n    if (!isClosed) {\n      _isClosed.complete(\n        (\n          _updates.close(),\n          _rollbacks.controller.close(),\n          _commits.controller.close(),\n          connection.sendRequest(\n            newCloseDatabase(requestId: 0, databaseId: databaseId),\n            MessageType.simpleSuccessResponse,\n          ),\n        ).wait,\n      );\n    }\n\n    return await closed;\n  }\n\n  @override\n  Future<JSAny?> customRequest(\n    JSAny? request, {\n    LockToken? token,\n    Future<void>? abortTrigger,\n  }) async {\n    final response = await connection.sendRequest(\n      newCustomRequest(\n        payload: request,\n        requestId: 0,\n        databaseId: databaseId,\n        lockId: token != null ? lockTokenToId(token) : null,\n      ),\n      MessageType.simpleSuccessResponse,\n      abortTrigger: abortTrigger,\n    );\n    return response.response;\n  }\n\n  @override\n  Future<DatabaseResult<void>> execute(\n    String sql, {\n    List<Object?> parameters = const [],\n    bool checkInTransaction = false,\n    LockToken? token,\n    Future<void>? abortTrigger,\n  }) async {\n    final (serializedParameters, typeVector) = TypeCode.encodeValues(\n      parameters,\n    );\n    final response = await connection.sendRequest(\n      newRunQuery(\n        requestId: 0,\n        databaseId: databaseId,\n        lockId: token == null ? null : lockTokenToId(token),\n        sql: sql,\n        parameters: serializedParameters,\n        typeVector: typeVector,\n        returnRows: false,\n        checkInTransaction: checkInTransaction,\n      ),\n      MessageType.rowsResponse,\n      abortTrigger: abortTrigger,\n    );\n\n    return (\n      autocommit: response.autoCommit,\n      lastInsertRowid: response.lastInsertRowId,\n      result: null,\n    );\n  }\n\n  @override\n  Future<T> requestLock<T>(\n    Future<T> Function(LockToken token) body, {\n    Future<void>? abortTrigger,\n  }) async {\n    final response = await connection.sendRequest(\n      newRequestExclusiveLock(requestId: 0, databaseId: databaseId),\n      MessageType.simpleSuccessResponse,\n      abortTrigger: abortTrigger,\n    );\n    final lockId = (response.response as JSNumber).toDartInt;\n\n    try {\n      return await body(lockTokenFromId(lockId));\n    } finally {\n      await connection.sendRequest(\n        newReleaseLock(requestId: 0, databaseId: databaseId, lockId: lockId),\n        MessageType.simpleSuccessResponse,\n      );\n    }\n  }\n\n  @override\n  late final FileSystem fileSystem = RemoteFileSystem(this);\n\n  @override\n  Future<DatabaseResult<ResultSet>> select(\n    String sql, {\n    List<Object?> parameters = const [],\n    bool checkInTransaction = false,\n    LockToken? token,\n    Future<void>? abortTrigger,\n  }) async {\n    final (serializedParameters, typeVector) = TypeCode.encodeValues(\n      parameters,\n    );\n\n    final response = await connection.sendRequest(\n      newRunQuery(\n        requestId: 0,\n        databaseId: databaseId,\n        lockId: token == null ? null : lockTokenToId(token),\n        sql: sql,\n        parameters: serializedParameters,\n        typeVector: typeVector,\n        returnRows: true,\n        checkInTransaction: checkInTransaction,\n      ),\n      MessageType.rowsResponse,\n      abortTrigger: abortTrigger,\n    );\n\n    return (\n      autocommit: response.autoCommit,\n      lastInsertRowid: response.lastInsertRowId,\n      result: response.readResultSet()!,\n    );\n  }\n\n  @override\n  Stream<SqliteUpdate> get updates => _updates.stream;\n\n  @override\n  Stream<void> get rollbacks => _rollbacks.controller.stream;\n\n  @override\n  Stream<void> get commits => _commits.controller.stream;\n\n  @override\n  Future<SqliteWebEndpoint> additionalConnection() async {\n    final response = await connection.sendRequest(\n      newOpenAdditionalConnection(requestId: 0, databaseId: databaseId),\n      MessageType.endpointResponse,\n    );\n    final endpoint = response.endpoint;\n    return (endpoint.port, endpoint.lockName!);\n  }\n}\n\nfinal class RemoteFileSystem implements FileSystem {\n  final RemoteDatabase database;\n\n  RemoteFileSystem(this.database);\n\n  @override\n  Future<bool> exists(FileType type) async {\n    final response = await database.connection.sendRequest(\n      newFileSystemExistsQuery(\n        databaseId: database.databaseId,\n        fsType: type.index,\n        requestId: 0,\n      ),\n      MessageType.simpleSuccessResponse,\n    );\n\n    return (response.response as JSBoolean).toDart;\n  }\n\n  @override\n  Future<void> flush() async {\n    await database.connection.sendRequest(\n      newFileSystemFlushRequest(databaseId: database.databaseId, requestId: 0),\n      MessageType.simpleSuccessResponse,\n    );\n  }\n\n  @override\n  Future<Uint8List> readFile(FileType type) async {\n    final response = await database.connection.sendRequest(\n      newFileSystemAccess(\n        databaseId: database.databaseId,\n        requestId: 0,\n        buffer: null,\n        fsType: type.index,\n      ),\n      MessageType.simpleSuccessResponse,\n    );\n\n    final buffer = (response.response as JSArrayBuffer);\n    return buffer.toDart.asUint8List();\n  }\n\n  @override\n  Future<void> writeFile(FileType type, Uint8List content) async {\n    // We need to copy since we're about to transfer contents over\n    final copy = Uint8List(content.length)..setAll(0, content);\n\n    await database.connection.sendRequest(\n      newFileSystemAccess(\n        databaseId: database.databaseId,\n        requestId: 0,\n        buffer: copy.buffer.toJS,\n        fsType: type.index,\n      ),\n      MessageType.simpleSuccessResponse,\n    );\n  }\n}\n\nfinal class WorkerConnection extends ProtocolChannel {\n  final StreamController<Notification> notifications =\n      StreamController.broadcast();\n  final Future<JSAny?> Function(JSAny?) handleCustomRequest;\n\n  WorkerConnection(super.channel, this.handleCustomRequest) {\n    closed.whenComplete(notifications.close);\n  }\n\n  @override\n  FutureOr<Response> handleCustom(\n    CustomRequest request,\n    AbortSignal abortSignal,\n  ) async {\n    final response = await handleCustomRequest(request.payload);\n    return newSimpleSuccessResponse(\n      response: response,\n      requestId: request.requestId,\n    );\n  }\n\n  Future<RemoteDatabase> requestDatabase({\n    required Uri wasmUri,\n    required String databaseName,\n    required DatabaseImplementation implementation,\n    required bool onlyOpenVfs,\n    required JSAny? additionalOptions,\n  }) async {\n    final response = await sendRequest(\n      newOpenRequest(\n        requestId: 0,\n        wasmUri: wasmUri.toString(),\n        databaseName: databaseName,\n        storageMode: implementation.resolveToVfs().toJS,\n        onlyOpenVfs: onlyOpenVfs,\n        additionalData: additionalOptions,\n      ),\n      MessageType.simpleSuccessResponse,\n    );\n\n    return RemoteDatabase(\n      connection: this,\n      databaseId: (response.response as JSNumber).toDartInt,\n    );\n  }\n\n  @override\n  void handleNotification(Notification notification) {\n    notifications.add(notification);\n  }\n}\n\nfinal class DatabaseClient implements WebSqlite {\n  final WorkerConnector workers;\n  final Uri wasmUri;\n  final DatabaseController _localController;\n  final Future<JSAny?> Function(JSAny?) _handleCustomRequest;\n\n  final Mutex _startWorkers = Mutex();\n  bool _startedWorkers = false;\n  WorkerConnection? _connectionToDedicated;\n  WorkerConnection? _connectionToShared;\n  WorkerConnection? _connectionToDedicatedInShared;\n\n  WorkerConnection? _connectionToLocal;\n\n  final Set<MissingBrowserFeature> _missingFeatures = {};\n\n  DatabaseClient(\n    this.workers,\n    this.wasmUri,\n    this._localController,\n    Future<JSAny?> Function(JSAny?)? handleCustomRequest,\n  ) : _handleCustomRequest =\n          handleCustomRequest ??\n          ((_) async {\n            throw StateError('No custom request handler installed');\n          });\n\n  Future<void> startWorkers() {\n    return _startWorkers.withCriticalSection(() async {\n      if (_startedWorkers) {\n        return;\n      }\n      _startedWorkers = true;\n\n      await _startDedicated();\n      await _startShared();\n    });\n  }\n\n  WorkerConnection _connection(StreamChannel<Message> channel) {\n    return WorkerConnection(channel, _handleCustomRequest);\n  }\n\n  Future<void> _startDedicated() async {\n    WorkerHandle? dedicated;\n    try {\n      dedicated = workers.spawnDedicatedWorker();\n    } on Object {\n      // Add missing feature and move on.\n    }\n\n    if (dedicated == null) {\n      _missingFeatures.add(MissingBrowserFeature.dedicatedWorkers);\n      return;\n    }\n\n    final (endpoint, channel) = await createChannel();\n    newConnectRequest(\n      endpoint: endpoint,\n      requestId: 0,\n      databaseId: null,\n    ).sendToWorker(dedicated);\n\n    _connectionToDedicated = _connection(\n      channel.injectErrorsFrom(dedicated.targetForErrorEvents),\n    );\n  }\n\n  Future<void> _startShared() async {\n    WorkerHandle? shared;\n    try {\n      shared = workers.spawnSharedWorker();\n    } on Object {\n      // Add missing feature and move on.\n    }\n\n    if (shared == null) {\n      _missingFeatures.add(MissingBrowserFeature.sharedWorkers);\n      return;\n    }\n\n    final (endpoint, channel) = await createChannel();\n\n    newConnectRequest(\n      endpoint: endpoint,\n      requestId: 0,\n      databaseId: null,\n    ).sendToWorker(shared);\n\n    _connectionToShared = _connection(\n      channel.injectErrorsFrom(shared.targetForErrorEvents),\n    );\n  }\n\n  Future<WorkerConnection> _connectToDedicatedInShared() {\n    return _startWorkers.withCriticalSection(() async {\n      if (_connectionToDedicatedInShared case final conn?) {\n        return conn;\n      }\n\n      final (endpoint, channel) = await createChannel();\n      await _connectionToShared!.sendRequest(\n        newConnectRequest(requestId: 0, endpoint: endpoint, databaseId: null),\n        MessageType.simpleSuccessResponse,\n      );\n\n      return _connectionToDedicatedInShared = _connection(channel);\n    });\n  }\n\n  Future<WorkerConnection> _connectToLocal() async {\n    return _startWorkers.withCriticalSection(() async {\n      if (_connectionToLocal case final conn?) {\n        return conn;\n      }\n\n      final local = FakeWorkerEnvironment();\n      final (endpoint, channel) = await createChannel();\n      WebSqlite.workerEntrypoint(\n        controller: _localController,\n        environment: local,\n      );\n\n      newConnectRequest(\n        requestId: 0,\n        endpoint: endpoint,\n        databaseId: null,\n      ).sendToWorker(local);\n\n      return _connectionToLocal = _connection(channel);\n    });\n  }\n\n  @override\n  Future<void> deleteDatabase({\n    required String name,\n    required StorageMode storage,\n  }) async {\n    switch (storage) {\n      case StorageMode.opfs:\n        await SimpleOpfsFileSystem.deleteFromStorage(pathForOpfs(name));\n      case StorageMode.indexedDb:\n        await IndexedDbFileSystem.deleteDatabase(name);\n      case StorageMode.inMemory:\n    }\n  }\n\n  @override\n  Future<FeatureDetectionResult> runFeatureDetection({\n    String? databaseName,\n  }) async {\n    await startWorkers();\n\n    final existing = <ExistingDatabase>{};\n    final available = <DatabaseImplementation>[];\n    var workersReportedIndexedDbSupport = false;\n\n    Future<void> dedicatedCompatibilityCheck(\n      WorkerConnection connection,\n    ) async {\n      SimpleSuccessResponse response;\n      try {\n        response = await connection\n            .sendRequest(\n              newDedicatedCompatibilityCheck(\n                requestId: 0,\n                databaseName: databaseName,\n              ),\n              MessageType.simpleSuccessResponse,\n            )\n            .timeout(_workerInitializationTimeout);\n      } on Object {\n        return;\n      }\n\n      final result = CompatibilityResult.fromJS(response.response as JSObject);\n      existing.addAll(result.existingDatabases);\n\n      if (result.canUseIndexedDb) {\n        available.add(DatabaseImplementation.indexedDbUnsafeWorker);\n\n        workersReportedIndexedDbSupport = true;\n      } else {\n        _missingFeatures.add(MissingBrowserFeature.indexedDb);\n      }\n\n      if (!result.canUseOpfs) {\n        _missingFeatures.add(MissingBrowserFeature.fileSystemAccess);\n      }\n      if (!result.opfsSupportsReadWriteUnsafe) {\n        _missingFeatures.add(\n          MissingBrowserFeature.createSyncAccessHandleReadWriteUnsafe,\n        );\n      }\n      if (!result.supportsSharedArrayBuffers) {\n        _missingFeatures.add(MissingBrowserFeature.sharedArrayBuffers);\n      }\n      if (!result.dedicatedWorkersCanNest) {\n        _missingFeatures.add(MissingBrowserFeature.dedicatedWorkersCanNest);\n      }\n\n      // For the OPFS storage layer in dedicated workers, we're spawning two\n      // nested workers communicating through a synchronous channel created by\n      // Atomics and SharedArrayBuffers.\n      if (result.canUseOpfs &&\n          result.supportsSharedArrayBuffers &&\n          result.dedicatedWorkersCanNest) {\n        available.add(DatabaseImplementation.opfsAtomics);\n      }\n\n      // Another option is to use a single worker opening files with\n      // readwrite-unsafe. That allows opening the database in multiple tabs,\n      // but we'd then have to use weblocks to coordinate access.\n      if (result.canUseOpfs && result.opfsSupportsReadWriteUnsafe) {\n        available.add(DatabaseImplementation.opfsWithExternalLocks);\n      }\n    }\n\n    Future<void> sharedCompatibilityCheck(WorkerConnection connection) async {\n      SimpleSuccessResponse response;\n      try {\n        response = await connection\n            .sendRequest(\n              newSharedCompatibilityCheck(\n                requestId: 0,\n                databaseName: databaseName,\n              ),\n              MessageType.simpleSuccessResponse,\n            )\n            .timeout(_workerInitializationTimeout);\n      } on Object {\n        return;\n      }\n\n      final result = CompatibilityResult.fromJS(response.response as JSObject);\n      existing.addAll(result.existingDatabases);\n\n      if (result.canUseIndexedDb) {\n        workersReportedIndexedDbSupport = true;\n        available.add(DatabaseImplementation.indexedDbShared);\n      } else {\n        _missingFeatures.add(MissingBrowserFeature.indexedDb);\n      }\n\n      if (result.canUseOpfs) {\n        available.add(DatabaseImplementation.opfsShared);\n      } else if (result.sharedCanSpawnDedicated) {\n        // Only report OPFS as unavailable if we can spawn dedicated workers.\n        // If we can't, it's known that we can't use OPFS.\n        _missingFeatures.add(MissingBrowserFeature.fileSystemAccess);\n      }\n\n      available.add(DatabaseImplementation.inMemoryShared);\n      if (!result.sharedCanSpawnDedicated) {\n        _missingFeatures.add(\n          MissingBrowserFeature.dedicatedWorkersInSharedWorkers,\n        );\n      }\n    }\n\n    if (_connectionToDedicated case final dedicated?) {\n      await dedicatedCompatibilityCheck(dedicated);\n    }\n    if (_connectionToShared case final shared?) {\n      await sharedCompatibilityCheck(shared);\n    }\n\n    available.add(DatabaseImplementation.inMemoryLocal);\n    if (workersReportedIndexedDbSupport || await checkIndexedDbSupport()) {\n      // If the workers can use IndexedDb, so can we.\n      available.add(DatabaseImplementation.indexedDbUnsafeLocal);\n    }\n\n    return FeatureDetectionResult(\n      missingFeatures: _missingFeatures.toList(),\n      existingDatabases: existing.toList(),\n      availableImplementations: available,\n    );\n  }\n\n  Future<Database> connectToExisting(SqliteWebEndpoint endpoint) async {\n    final channel = _connection(\n      WebEndpoint(port: endpoint.$1, lockName: endpoint.$2).connect(),\n    );\n\n    return RemoteDatabase(\n      connection: channel,\n      // The database id for this pre-existing connection is always zero.\n      // It gets assigned by the worker handling the OpenAdditonalConnection\n      // request.\n      databaseId: 0,\n    );\n  }\n\n  @override\n  Future<Database> connect(\n    String name,\n    DatabaseImplementation implementation, {\n    bool onlyOpenVfs = false,\n    JSAny? additionalOptions,\n  }) async {\n    await startWorkers();\n\n    WorkerConnection connection;\n    switch (implementation.access) {\n      case AccessMode.throughSharedWorker:\n        if (implementation.storage == StorageMode.opfs) {\n          // Shared workers don't support OPFS, but we can spawn a dedicated\n          // worker inside of the shared worker and connect to that one.\n          connection = await _connectToDedicatedInShared();\n        } else {\n          connection = _connectionToShared!;\n        }\n      case AccessMode.throughDedicatedWorker:\n        connection = _connectionToDedicated!;\n      case AccessMode.inCurrentContext:\n        connection = await _connectToLocal();\n    }\n\n    return await connection.requestDatabase(\n      wasmUri: wasmUri,\n      databaseName: name,\n      implementation: implementation,\n      onlyOpenVfs: onlyOpenVfs,\n      additionalOptions: additionalOptions,\n    );\n  }\n\n  @override\n  Future<ConnectToRecommendedResult> connectToRecommended(\n    String name, {\n    bool onlyOpenVfs = false,\n    JSAny? additionalOptions,\n  }) async {\n    final probed = await runFeatureDetection(databaseName: name);\n\n    // If we have an existing database in storage, we want to keep using that\n    // format to avoid data loss (e.g. after a browser update that enables a\n    // otherwise preferred storage implementation). In the future, we might want\n    // to consider migrating between storage implementations as well.\n    final availableImplementations = probed.availableImplementations.toList();\n\n    checkExisting:\n    for (final (location, name) in probed.existingDatabases) {\n      if (name == name) {\n        // If any of the implementations for this location is still availalable,\n        // we want to use it instead of another location.\n        final locationIsAccessible = availableImplementations.any(\n          (e) => e.storage == location,\n        );\n        if (locationIsAccessible) {\n          availableImplementations.removeWhere((e) => e.storage != location);\n          break checkExisting;\n        }\n      }\n    }\n\n    // Enum values are ordered by preferrability, so just pick the best option\n    // left.\n    availableImplementations.sort(preferrableMode);\n\n    final implementation =\n        availableImplementations.firstOrNull ??\n        DatabaseImplementation.inMemoryLocal;\n    final database = await connect(\n      name,\n      implementation,\n      onlyOpenVfs: onlyOpenVfs,\n      additionalOptions: additionalOptions,\n    );\n\n    return ConnectToRecommendedResult(\n      database: database,\n      features: probed,\n      implementation: implementation,\n    );\n  }\n\n  /// Compares available ways to access databases by the performance and\n  /// and reliability of the implementation.\n  ///\n  /// Returns negative values if `a` is more preferrable than `b` and positive\n  /// values if `b` is more preferrable than `a`.\n  static int preferrableMode(\n    DatabaseImplementation a,\n    DatabaseImplementation b,\n  ) {\n    // First, prefer OPFS (an actual file system API) over IndexedDB, a custom\n    // file system implementation.\n    if (a.storage != b.storage) {\n      return a.storage.index.compareTo(b.storage.index);\n    }\n\n    // In a storage API, prefer shared workers which cause less contention\n    // because we can actually share database resources between tabs.\n    if (a.access != b.access) {\n      return a.access.index.compareTo(b.access.index);\n    }\n\n    // Storage and access are only equal between opfsAtomics and\n    // opfsWithExternalLocks. We prefer the later.\n    return a.index.compareTo(b.index);\n  }\n\n  static const _workerInitializationTimeout = Duration(seconds: 1);\n}\n\nextension on DatabaseImplementation {\n  FileSystemImplementation resolveToVfs() {\n    return switch (storage) {\n      StorageMode.opfs => switch (this) {\n        DatabaseImplementation.opfsAtomics =>\n          FileSystemImplementation.opfsAtomics,\n        DatabaseImplementation.opfsShared =>\n          FileSystemImplementation.opfsShared,\n        DatabaseImplementation.opfsWithExternalLocks =>\n          FileSystemImplementation.opfsExternalLocks,\n        _ => throw AssertionError('Unknown OPFS implementation'),\n      },\n      StorageMode.indexedDb => FileSystemImplementation.indexedDb,\n      StorageMode.inMemory => FileSystemImplementation.inMemory,\n    };\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/lib/src/database.dart",
    "content": "import 'dart:async';\nimport 'dart:js_interop';\n\nimport 'package:meta/meta.dart';\nimport 'package:sqlite3/wasm.dart';\nimport 'package:web/web.dart' hide FileSystem;\n\nimport 'types.dart';\nimport 'client.dart';\nimport 'worker.dart';\nimport 'worker_connector.dart';\n\n/// A controller responsible for opening databases in the worker.\nabstract base class DatabaseController {\n  /// Constant base constructor.\n  const DatabaseController();\n\n  /// Loads a wasm module from the given [uri] with the specified [headers].\n  Future<WasmSqlite3> loadWasmModule(\n    Uri uri, {\n    Map<String, String>? headers,\n  }) async {\n    return WasmSqlite3.loadFromUrl(uri, headers: headers);\n  }\n\n  /// Opens a database in the pre-configured [sqlite3] instance under the\n  /// specified [path] in the given [vfs].\n  ///\n  /// This should virtually always call `sqlite3.open(path, vfs: vfs)` and wrap\n  /// the result in a [WorkerDatabase] subclass.\n  ///\n  /// The [additionalData] can be set by clients when opening the database. It\n  /// might be useful to transport additional options relevant when opening the\n  /// database.\n  Future<WorkerDatabase> openDatabase(\n    WasmSqlite3 sqlite3,\n    String path,\n    String vfs,\n    JSAny? additionalData,\n  );\n\n  /// Handles custom requests from clients that are not bound to a database.\n  ///\n  /// This is not currently used.\n  Future<JSAny?> handleCustomRequest(\n    ClientConnection connection,\n    CustomClientRequest request,\n  );\n}\n\n/// A custom request sent from a client to a worker hosting a database.\nfinal class CustomClientRequest {\n  /// The custom message sent from the client.\n  final JSAny? request;\n\n  /// A signal allowing clients to abort this request.\n  ///\n  /// Implementations can query this signal to throw an [AbortException] instead\n  /// of completing their work if that's more efficient. There is no guarantee\n  /// that aborting a signal actually cancels the pending task, though.\n  final AbortSignal abortSignal;\n\n  CustomClientRequest({required this.request, required this.abortSignal});\n}\n\n/// A [CustomClientRequest] sent to a worker-managed database\nfinal class CustomClientDatabaseRequest extends CustomClientRequest {\n  /// Runs a synchronous function with exclusive access to the underlying\n  /// database.\n  ///\n  /// This respects the lock token sent by [Database.customRequest], allowing\n  /// custom requests to integrate with the locking mechanism of\n  /// [Database.execute] and [Database.requestLock].\n  ///\n  /// Requesting a lock automatically respects an [abortSignal].\n  final Future<T> Function<T>(T Function() inner) useLock;\n\n  CustomClientDatabaseRequest({\n    required super.request,\n    required super.abortSignal,\n    required this.useLock,\n  });\n}\n\n/// An endpoint that can be used, by any running JavaScript context in the same\n/// website, to connect to an existing [Database].\n///\n/// These endpoints are created by calling [Database.additionalConnection] and\n/// consist of a [MessagePort] and a [String] internally identifying the\n/// connection. Both objects can be transferred over send ports towards another\n/// worker or context. That context can then use [WebSqlite.connectToPort] to\n/// connect to the port already opened.\ntypedef SqliteWebEndpoint = (MessagePort, String);\n\ntypedef DatabaseResult<T> = ({T result, bool autocommit, int lastInsertRowid});\n\n/// Abstraction over a database either available locally or in a remote worker.\nabstract class Database {\n  FileSystem get fileSystem;\n\n  /// A relayed stream of [CommonDatabase.updates] from the remote worker.\n  ///\n  /// {@template sqlite3_web_streams}\n  /// This stream only emits events emitted on the worker hosting the database.\n  /// In [DatabaseImplementation]s where each tab has its own worker, events\n  /// from different tabs would not be reflected in the returned stream.\n  ///\n  /// Updates are only sent across worker channels while a subscription to this\n  /// stream is active.\n  /// {@endtemplate}\n  Stream<SqliteUpdate> get updates;\n\n  /// A relayed stream of events triggered by rollbacks from the remote worker.\n  ///\n  /// {@macro sqlite3_web_streams}\n  Stream<void> get rollbacks;\n\n  /// A relayed stream of events triggered by commits from the remote worker.\n  ///\n  /// {@macro sqlite3_web_streams}\n  Stream<void> get commits;\n\n  /// A future that resolves when the database is closed.\n  ///\n  /// Typically, databases are closed because [dispose] is called. For databases\n  /// opened with [WebSqlite.connectToPort] however, it's possible that the\n  /// original worker hosting the database gets closed without this [Database]\n  /// instance being explicitly [dispose]d. In those cases, monitoring [closed]\n  /// is useful to react to databases closing.\n  Future<void> get closed;\n\n  /// Whether the database is currently closed.\n  bool get isClosed;\n\n  /// Closes this database and instructs the worker to release associated\n  /// resources.\n  ///\n  /// No methods may be called after a call to [dispose].\n  Future<void> dispose();\n\n  /// Prepares [sql] and executes it with the given [parameters].\n  ///\n  /// If [checkInTransaction] is enabled, the host will verify that the\n  /// autocommit mode is disabled before running the statement (and report an\n  /// exception otherwise).\n  ///\n  /// The [abortTrigger] can be used to abort the request. When that future\n  /// completes before the lock has been granted, the future may complete\n  /// with a [AbortException] without running the statement.\n  Future<DatabaseResult<void>> execute(\n    String sql, {\n    List<Object?> parameters = const [],\n    bool checkInTransaction = false,\n    LockToken? token,\n    Future<void>? abortTrigger,\n  });\n\n  /// Prepares [sql], executes it with the given [parameters] and returns the\n  /// [ResultSet].\n  ///\n  /// If [checkInTransaction] is enabled, the host will verify that the\n  /// autocommit mode is disabled before running the statement (and report an\n  /// exception otherwise).\n  ///\n  /// The [abortTrigger] can be used to abort the request. When that future\n  /// completes before the lock has been granted, the future may complete\n  /// with a [AbortException] without running the statement.\n  Future<DatabaseResult<ResultSet>> select(\n    String sql, {\n    List<Object?> parameters = const [],\n    bool checkInTransaction = false,\n    LockToken? token,\n    Future<void>? abortTrigger,\n  });\n\n  /// Runs [body] with an exclusive lock on the database.\n  ///\n  /// This can be used to implement transactions on the database, where multiple\n  /// statements may have to run without interference from other tabs.\n  ///\n  /// The callback receives a [LockToken], which can be passed to [select] and\n  /// [execute] to run statements.\n  ///\n  /// The [abortTrigger] can be used to abort requesting the lock. When that\n  /// future completes before the lock has been granted, the future may complete\n  /// with a [AbortException] without ever invoking [body].\n  Future<T> requestLock<T>(\n    Future<T> Function(LockToken lock) body, {\n    Future<void>? abortTrigger,\n  });\n\n  /// Sends a custom request to the worker database.\n  ///\n  /// Custom requests are handled by implementing `handleCustomRequest` in your\n  /// `WorkerDatabase` subclass.\n  Future<JSAny?> customRequest(\n    JSAny? request, {\n    LockToken? token,\n    Future<void>? abortTrigger,\n  });\n\n  /// Creates a [MessagePort] (a transferrable object that can be sent to\n  /// another JavaScript context like a worker) that can be used with\n  /// [WebSqlite.connectToPort] to open another instance of this database\n  /// remotely.\n  Future<SqliteWebEndpoint> additionalConnection();\n}\n\n// A token representing a held lock, available to callbacks in\n/// [Database.requestLock].\nextension type LockToken._(int _id) {}\n\n@internal\nLockToken lockTokenFromId(int id) {\n  return LockToken._(id);\n}\n\n@internal\nint lockTokenToId(LockToken token) {\n  return token._id;\n}\n\n/// A connection from a client from the perspective of a worker.\nabstract class ClientConnection {\n  /// The unique id for this connection.\n  int get id;\n\n  /// A future that completes when the connection get closed, for instance\n  /// because the owning tab is closed.\n  Future<void> get closed;\n\n  /// Sends a custom request __towards the client__.\n  Future<JSAny?> customRequest(JSAny? request);\n}\n\n/// A [CommonDatabase] wrapped with functionality to handle custom requests.\nabstract class WorkerDatabase {\n  /// The database made available to the worker.\n  CommonDatabase get database;\n\n  /// Handles a custom [request] (encoded as any JS value) from the\n  /// [connection].\n  ///\n  /// The response is sent over the channel and completes a\n  /// [Database.customRequest] call for clients.\n  Future<JSAny?> handleCustomRequest(\n    ClientConnection connection,\n    CustomClientDatabaseRequest request,\n  );\n}\n\n/// The result of [WebSqlite.connectToRecommended], containing the opened\n/// [database] as well as the [FeatureDetectionResult] leading to that database\n/// implementation being chosen.\nfinal class ConnectToRecommendedResult {\n  /// The opened [Database] hosted on another worker.\n  final Database database;\n\n  /// The missing or available browser features that lead to the current\n  /// [DatabaseImplementation] being selected.\n  final FeatureDetectionResult features;\n\n  /// The [DatabaseImplementation] used.\n  final DatabaseImplementation implementation;\n\n  StorageMode get storage => implementation.storage;\n  AccessMode get access => implementation.access;\n\n  ConnectToRecommendedResult({\n    required this.database,\n    required this.features,\n    required this.implementation,\n  });\n}\n\n/// Provides asynchronous access to databases hosted in web workers.\n///\n/// Please see the readme of the `sqlite3_web` package for an overview on how\n/// to set up and use this package.\nabstract class WebSqlite {\n  /// Deletes a database from the [storage] if it exists.\n  ///\n  /// This method should not be called while the database is still open.\n  Future<void> deleteDatabase({\n    required String name,\n    required StorageMode storage,\n  });\n\n  /// Tries to find features related to storing and accessing databases.\n  ///\n  /// The [databaseName] can optionally be used to make\n  /// [FeatureDetectionResult.existingDatabases] more reliable, as IndexedDB\n  /// databases are not found otherwise.\n  Future<FeatureDetectionResult> runFeatureDetection({String? databaseName});\n\n  /// Connects to a database identified by its [name] using the selected\n  /// [DatabaseImplementation].\n  ///\n  /// For a list of implementations supported by the current browser, use\n  /// [runFeatureDetection].\n  ///\n  /// When [onlyOpenVfs] is enabled, only the underlying file system for the\n  /// database is initialized before [connect] returns. By default, the database\n  /// will also be opened in [connect]. Otherwise, the database will be opened\n  /// on the worker when it's first used.\n  /// Only opening the VFS can be used to, for instance, check if the database\n  /// already exists and to initialize it manually if it doesn't.\n  ///\n  /// The optional [additionalOptions] must be sendable over message ports and\n  /// is passed to [DatabaseController.openDatabase] on the worker opening the\n  /// database.\n  Future<Database> connect(\n    String name,\n    DatabaseImplementation implementation, {\n    bool onlyOpenVfs = false,\n    JSAny? additionalOptions,\n  });\n\n  /// Starts a feature detection via [runFeatureDetection] and then [connect]s\n  /// to the best database available.\n  ///\n  /// When [onlyOpenVfs] is enabled, only the underlying file system for the\n  /// database is initialized before [connect] returns. By default, the database\n  /// will also be opened in [connect]. Otherwise, the database will be opened\n  /// on the worker when it's first used.\n  /// Only opening the VFS can be used to, for instance, check if the database\n  /// already exists and to initialize it manually if it doesn't.\n  ///\n  /// The optional [additionalOptions] must be sendable over message ports and\n  /// is passed to [DatabaseController.openDatabase] on the worker opening the\n  /// database.\n  Future<ConnectToRecommendedResult> connectToRecommended(\n    String name, {\n    bool onlyOpenVfs = false,\n    JSAny? additionalOptions,\n  });\n\n  /// Entrypoints for workers hosting databases.\n  static void workerEntrypoint({\n    required DatabaseController controller,\n    WorkerEnvironment? environment,\n  }) {\n    WorkerRunner(\n      controller,\n      environment ?? WorkerEnvironment(),\n    ).handleRequests();\n  }\n\n  /// Opens a [WebSqlite] instance by connecting to workers with the given\n  /// [workers] connector and using the [wasmModule] url to load sqlite3.\n  ///\n  /// The [controller] is used when connecting to a sqlite3 database without\n  /// using workers. It should typically be the same implementation as the one\n  /// passed to [workerEntrypoint].\n  ///\n  /// The optional [handleCustomRequest] function is invoked when the controller\n  /// sends a custom request to the client (via [ClientConnection.customRequest]).\n  /// If it's absent, the default is to throw an exception when called.\n  static WebSqlite open({\n    required WorkerConnector workers,\n    required Uri wasmModule,\n    DatabaseController? controller,\n    Future<JSAny?> Function(JSAny?)? handleCustomRequest,\n  }) {\n    return DatabaseClient(\n      workers,\n      wasmModule,\n      controller ?? const _DefaultDatabaseController(),\n      handleCustomRequest,\n    );\n  }\n\n  /// Connects to an endpoint previously obtained with [Database.additionalConnection].\n  ///\n  /// As a [SqliteWebEndpoint] record only consists of fields that are\n  /// transferrable in JavaScript, these endpoints can be sent to other workers,\n  /// which can then call [connectToPort] to open a database connection\n  /// originally established by another JavaScript connection.\n  ///\n  /// Note that, depending on the access mode, the returned [Database] may only\n  /// be valid as long as the original [Database] where [Database.additionalConnection]\n  /// was called. This limitation does not exist for databases hosted by shared\n  /// workers.\n  ///\n  /// The optional [handleCustomRequest] function is invoked when the controller\n  /// sends a custom request to the client (via [ClientConnection.customRequest]).\n  /// If it's absent, the default is to throw an exception when called.\n  static Future<Database> connectToPort(\n    SqliteWebEndpoint endpoint, {\n    Future<JSAny?> Function(JSAny?)? handleCustomRequest,\n  }) {\n    final client = DatabaseClient(\n      const WorkerConnector.unsupported(),\n      Uri.base,\n      const _DefaultDatabaseController(),\n      handleCustomRequest,\n    );\n    return client.connectToExisting(endpoint);\n  }\n}\n\nfinal class _DefaultDatabaseController extends DatabaseController {\n  const _DefaultDatabaseController();\n\n  @override\n  Future<JSAny?> handleCustomRequest(\n    ClientConnection connection,\n    CustomClientRequest request,\n  ) {\n    throw UnimplementedError();\n  }\n\n  @override\n  Future<WorkerDatabase> openDatabase(\n    WasmSqlite3 sqlite3,\n    String path,\n    String vfs,\n    JSAny? additionalOptions,\n  ) async {\n    return _DefaultWorkerDatabase(sqlite3.open(path, vfs: vfs));\n  }\n}\n\nfinal class _DefaultWorkerDatabase extends WorkerDatabase {\n  @override\n  final CommonDatabase database;\n\n  _DefaultWorkerDatabase(this.database);\n\n  @override\n  Future<JSAny?> handleCustomRequest(\n    ClientConnection connection,\n    CustomClientRequest request,\n  ) {\n    throw UnimplementedError();\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/lib/src/locks.dart",
    "content": "import 'dart:async';\nimport 'dart:collection';\nimport 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\n\nimport 'package:web/web.dart';\n\nimport 'types.dart';\n\n@JS('navigator')\nexternal Navigator get _navigator;\n\nclass WebLocks {\n  final LockManager _lockManager;\n\n  WebLocks._(this._lockManager);\n\n  Future<HeldLock> request(String name, {AbortSignal? abortSignal}) {\n    final gotLock = Completer<HeldLock>.sync();\n\n    JSPromise callback(JSAny lock) {\n      final completer = Completer<void>.sync();\n      gotLock.complete(HeldLock._(completer));\n      return completer.future.toJS;\n    }\n\n    final options = LockOptions();\n    if (abortSignal case final signal?) {\n      options.signal = signal;\n    }\n\n    _lockManager.request(name, options, callback.toJS).toDart.onError((e, s) {\n      final domError = e as DOMException;\n\n      if (!gotLock.isCompleted) {\n        if (domError.name == 'AbortError') {\n          gotLock.completeError(AbortException(), s);\n        } else {\n          gotLock.completeError(domError, s);\n        }\n      }\n\n      return null;\n    });\n    return gotLock.future;\n  }\n\n  static WebLocks? instance =\n      (_navigator as JSObject).hasProperty('locks'.toJS).toDart\n      ? WebLocks._(_navigator.locks)\n      : null;\n}\n\nclass HeldLock {\n  final Completer<void> _completer;\n\n  HeldLock._(this._completer);\n\n  void release() => _completer.complete();\n}\n\nfinal class DatabaseLocks {\n  final String lockName;\n  final Mutex _dartMutex = Mutex();\n\n  /// Whether this database needs a lock implementation providing exclusive\n  /// access across tabs.\n  ///\n  /// When a database is hosted by a shared worker, this is not necessary and\n  /// we can use a Dart implementation with less overhead.\n  /// For databases hosted on multiple dedicated workers, the navigator lock API\n  /// is necessary to manage exclusive access.\n  final bool needsInterContextLocks;\n\n  DatabaseLocks(this.lockName, this.needsInterContextLocks);\n\n  /// Returns whether a synchronous block could run immediately.\n  ///\n  /// This is the case if no inter-context locks are required and the local\n  /// mutex is not currently held. Because the inner block would run\n  /// synchronously, no concurrency is possible and we don't need to explicitly\n  /// update the lock's state.\n  bool get canRunSynchronousBlockDirectly {\n    return !needsInterContextLocks && !_dartMutex._inCriticalSection;\n  }\n\n  Future<T> lock<T>(\n    FutureOr<T> Function() criticalSection,\n    AbortSignal? abortSignal,\n  ) async {\n    if (needsInterContextLocks) {\n      final held = await WebLocks.instance!.request(\n        lockName,\n        abortSignal: abortSignal,\n      );\n      return Future(criticalSection).whenComplete(held.release);\n    }\n\n    return _dartMutex.withCriticalSection(criticalSection, abort: abortSignal);\n  }\n}\n\n/// A simple async mutex implemented in Dart.\nfinal class Mutex {\n  bool _inCriticalSection = false;\n  final Queue<void Function()> _waiting = Queue();\n\n  Future<T> withCriticalSection<T>(\n    FutureOr<T> Function() action, {\n    AbortSignal? abort,\n  }) async {\n    var holdsMutex = false;\n\n    void markCompleted() {\n      if (!holdsMutex) {\n        return;\n      }\n\n      if (_waiting.isNotEmpty) {\n        _waiting.removeFirst()();\n      } else {\n        _inCriticalSection = false;\n      }\n    }\n\n    if (!_inCriticalSection) {\n      assert(_waiting.isEmpty);\n      _inCriticalSection = true;\n      holdsMutex = true;\n      return Future.sync(action).whenComplete(markCompleted);\n    } else {\n      assert(_inCriticalSection);\n      final completer = Completer<T>.sync();\n\n      void complete() {\n        holdsMutex = true;\n        completer.complete(Future.sync(action));\n      }\n\n      late StreamSubscription<void> abortSubscription;\n      abortSubscription = EventStreamProviders.abortEvent\n          .forTarget(abort)\n          .listen((_) {\n            abortSubscription.cancel();\n\n            if (!completer.isCompleted) {\n              final didRemove = _waiting.remove(complete);\n\n              // The only way for waiters to get removed is for [complete] to get\n              // called, so we wouldn't enter this branch.\n              assert(didRemove);\n              completer.completeError(const AbortException());\n            }\n          });\n\n      _waiting.addLast(complete);\n      return completer.future.whenComplete(markCompleted);\n    }\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/lib/src/protocol/compatibility_result.dart",
    "content": "import 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\n\nimport '../types.dart';\n\nfinal class CompatibilityResult {\n  final List<ExistingDatabase> existingDatabases;\n\n  // Fields set when a shared worker replies.\n\n  /// Whether shared workers are allowed to spawn dedicated workers.\n  ///\n  /// As far as the web standard goes, they're supposed to. It allows us to\n  /// spawn a dedicated worker using OPFS in the context of a shared worker,\n  /// which is a very reliable storage implementation. Sadly, only Firefox has\n  /// implemented this feature.\n  final bool sharedCanSpawnDedicated;\n\n  /// Whether dedicated workers can use OPFS.\n  ///\n  /// The file system API is only available in dedicated workers, so if they\n  /// can't use it, the browser just likely doesn't support that API.\n  final bool canUseOpfs;\n\n  /// Whether dedicated workers can use the proposed [New FS locking scheme](https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md#modes-of-creating-a-filesystemsyncaccesshandle).\n  ///\n  /// While this is not a standardized web API yet, it is supported in Chrome\n  /// and enables a more efficient way to host databases. So, we want to check\n  /// for it.\n  final bool opfsSupportsReadWriteUnsafe;\n\n  /// Whether IndexedDB is available to shared workers.\n  ///\n  /// On some browsers, IndexedDB is not available in private/incognito tabs.\n  final bool canUseIndexedDb;\n\n  /// Whether dedicated workers can use shared array buffers and the atomics\n  /// API.\n  ///\n  /// This is required for the synchronous channel used to host an OPFS\n  /// filesystem between threads. However, it is only available when the page is\n  /// served with special headers for security purposes.\n  final bool supportsSharedArrayBuffers;\n\n  /// Whether dedicated workers can spawn their own dedicated workers.\n  ///\n  /// We need two dedicated workers with a synchronous channel between them to\n  /// host an OPFS filesystem.\n  final bool dedicatedWorkersCanNest;\n\n  CompatibilityResult({\n    required this.existingDatabases,\n    required this.sharedCanSpawnDedicated,\n    required this.canUseOpfs,\n    required this.opfsSupportsReadWriteUnsafe,\n    required this.canUseIndexedDb,\n    required this.supportsSharedArrayBuffers,\n    required this.dedicatedWorkersCanNest,\n  });\n\n  factory CompatibilityResult.fromJS(JSObject result) {\n    final existing = <ExistingDatabase>[];\n\n    final encodedExisting = (result['a'] as JSArray<JSString>).toDart;\n    for (var i = 0; i < encodedExisting.length / 2; i++) {\n      final mode = StorageMode.values.byName(encodedExisting[i * 2].toDart);\n      final name = encodedExisting[i * 2 + 1].toDart;\n\n      existing.add((mode, name));\n    }\n\n    return CompatibilityResult(\n      existingDatabases: existing,\n      sharedCanSpawnDedicated: (result['b'] as JSBoolean).toDart,\n      canUseOpfs: (result['c'] as JSBoolean).toDart,\n      canUseIndexedDb: (result['d'] as JSBoolean).toDart,\n      supportsSharedArrayBuffers: (result['e'] as JSBoolean).toDart,\n      dedicatedWorkersCanNest: (result['f'] as JSBoolean).toDart,\n      opfsSupportsReadWriteUnsafe: (result['g'] as JSBoolean).toDart,\n    );\n  }\n\n  JSObject get toJS {\n    final encodedDatabases = <JSString>[\n      for (final existing in existingDatabases) ...[\n        existing.$1.name.toJS,\n        existing.$2.toJS,\n      ],\n    ];\n\n    return JSObject()\n      ..['a'] = encodedDatabases.toJS\n      ..['b'] = sharedCanSpawnDedicated.toJS\n      ..['c'] = canUseOpfs.toJS\n      ..['d'] = canUseIndexedDb.toJS\n      ..['e'] = supportsSharedArrayBuffers.toJS\n      ..['f'] = dedicatedWorkersCanNest.toJS\n      ..['g'] = opfsSupportsReadWriteUnsafe.toJS;\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/lib/src/protocol/dsl.dart",
    "content": "import 'package:meta/meta_meta.dart';\n\n/// Annotation on protocol messages that can't be instantiated.\nconst abstract = 'abstract';\n\n/// Annotation on protocol fields to indicate that they need to be passed in the\n/// transfer array of `postMessage` calls to e.g. transfer typed buffers.\nconst transfer = 'transfer';\n\n/// Like [transfer], but for `JSAny` types that should only be transferred if\n/// they're array buffers.\nconst transferIfArrayBuffer = 'transferIfArrayBuffer';\n\n/// Marker for the `Message.type` special field.\nconst isType = 'is:type';\n\n/// Name of the message type used in the protocol.\n@Target({TargetKind.extensionType})\nfinal class MessageTypeName {\n  final String name;\n\n  const MessageTypeName(this.name);\n}\n"
  },
  {
    "path": "sqlite3_web/lib/src/protocol/extensions.dart",
    "content": "import 'dart:js_interop';\nimport 'dart:typed_data';\n\nimport 'package:sqlite3/wasm.dart';\nimport 'package:web/web.dart' show MessagePort;\n\nimport '../types.dart';\nimport '../worker_connector.dart';\nimport 'helper.g.dart';\nimport 'messages.dart';\n\nextension MessageUtils on Message {\n  void sendToPort(MessagePort port) {\n    final transfer = extractTransferrable(this);\n    port.postMessage(this, transfer);\n  }\n\n  void sendToWorker(WorkerHandle port) {\n    final transfer = extractTransferrable(this);\n    port.postMessage(this, transfer);\n  }\n}\n\nextension ResponseUtils on Response {\n  RemoteException interpretAsError() {\n    if (type == MessageType.errorResponse.name) {\n      final asError = this as ErrorResponse;\n      final exception = asError.deserializeException();\n\n      if (exception case final AbortException e?) {\n        return e;\n      } else {\n        return RemoteException(message: asError.message, exception: exception);\n      }\n    } else {\n      return RemoteException(\n        message: 'Did not respond with expected type, got $this',\n      );\n    }\n  }\n}\n\nextension ErrorResponseUtils on ErrorResponse {\n  static ErrorResponse wrapException(int requestId, Object error) {\n    JSNumber? serializedExceptionType;\n    JSAny? serializedException;\n\n    if (error is SqliteException) {\n      serializedExceptionType = _typeSqliteException.toJS;\n      serializedException = serializeSqliteException(error);\n    } else if (error is AbortException) {\n      serializedExceptionType = _typeAbortException.toJS;\n    }\n\n    return newErrorResponse(\n      message: error.toString(),\n      serializedExceptionType: serializedExceptionType,\n      serializedException: serializedException,\n      requestId: requestId,\n    );\n  }\n\n  Object? deserializeException() {\n    return switch (serializedExceptionType?.toDartInt) {\n      _typeSqliteException => deserializeSqliteException(\n        serializedException as JSArray,\n      ),\n      _typeAbortException => const AbortException(),\n      _ => null,\n    };\n  }\n\n  static SqliteException deserializeSqliteException(JSArray data) {\n    final [\n      message,\n      explanation,\n      extendedResultCode,\n      operation,\n      causingStatement,\n      paramData,\n      paramTypes,\n      offset,\n      ..._,\n    ] = data.toDart;\n\n    String? decodeNullableString(JSAny? jsValue) {\n      if (jsValue.isDefinedAndNotNull) {\n        return (jsValue as JSString).toDart;\n      }\n      return null;\n    }\n\n    return SqliteException(\n      extendedResultCode: (extendedResultCode as JSNumber).toDartInt,\n      message: (message as JSString).toDart,\n      explanation: decodeNullableString(explanation),\n      causingStatement: decodeNullableString(causingStatement),\n      parametersToStatement:\n          paramData.isDefinedAndNotNull && paramTypes.isDefinedAndNotNull\n          ? TypeCode.decodeValues(\n              paramData as JSArray,\n              paramTypes as JSArrayBuffer,\n            )\n          : null,\n      operation: decodeNullableString(operation),\n      offset: (offset as JSNumber?)?.toDartInt,\n    );\n  }\n\n  static JSArray serializeSqliteException(SqliteException e) {\n    final params = switch (e.parametersToStatement) {\n      null => null,\n      final parameters => TypeCode.encodeValues(parameters),\n    };\n\n    return [\n      e.message.toJS,\n      e.explanation?.toJS,\n      e.extendedResultCode.toJS,\n      e.operation?.toJS,\n      e.causingStatement?.toJS,\n      params?.$1,\n      params?.$2,\n      e.offset?.toJS,\n    ].toJS;\n  }\n\n  static const _typeSqliteException = 0;\n  static const _typeAbortException = 1;\n}\n\nextension UpdateNotificationUtils on UpdateNotification {\n  SqliteUpdate get sqliteUpdate {\n    return SqliteUpdate(\n      SqliteUpdateKind.values[updateKind],\n      updateTableName,\n      rowId,\n    );\n  }\n}\n\nextension RowsResponseUtils on RowsResponse {\n  static RowsResponse wrapResultSet(\n    int requestId, {\n    required ResultSet resultSet,\n    required bool autoCommit,\n    required int lastInsertRowId,\n  }) {\n    final jsRows = <JSArray>[];\n    final columns = resultSet.columnNames.length;\n    final typeVector = Uint8List(resultSet.length * columns);\n\n    for (var i = 0; i < resultSet.length; i++) {\n      final row = resultSet.rows[i];\n      assert(row.length == columns);\n      final jsRow = List<JSAny?>.filled(row.length, null);\n\n      for (var j = 0; j < columns; j++) {\n        final (code, value) = TypeCode.encodeValue(row[j]);\n\n        jsRow[j] = value;\n        typeVector[i * columns + j] = code.index;\n      }\n\n      jsRows.add(jsRow.toJS);\n    }\n\n    final rows = <JSArray>[\n      for (final row in resultSet.rows)\n        <JSAny?>[for (final column in row) column.jsify()].toJS,\n    ].toJS;\n\n    JSArray<JSString?>? tableNames;\n    if (resultSet.tableNames case var dartTableNames?) {\n      tableNames = <JSString?>[\n        for (final entry in dartTableNames) entry?.toJS,\n      ].toJS;\n    }\n\n    return newRowsResponse(\n      columnNames: <JSString>[\n        for (final entry in resultSet.columnNames) entry.toJS,\n      ].toJS,\n      tableNames: tableNames,\n      typeVector: typeVector.buffer.toJS,\n      rows: rows,\n      autoCommit: autoCommit,\n      lastInsertRowId: lastInsertRowId,\n      requestId: requestId,\n    );\n  }\n\n  ResultSet? readResultSet() {\n    if (columnNames case final rawColumnNames?) {\n      final columnNames = rawColumnNames.toDart.map((e) => e.toDart).toList();\n      final tableNames = this.tableNames?.toDart.map((e) => e?.toDart).toList();\n      final typeVector = this.typeVector?.toDart.asUint8List();\n\n      final rows = <List<Object?>>[];\n      var i = 0;\n      for (final row in this.rows!.toDart) {\n        final dartRow = <Object?>[];\n\n        for (final column in row.toDart) {\n          final typeCode = typeVector != null\n              ? TypeCode.of(typeVector[i])\n              : TypeCode.unknown;\n          dartRow.add(typeCode.decodeColumn(column));\n          i++;\n        }\n\n        rows.add(dartRow);\n      }\n\n      return ResultSet(columnNames, tableNames, rows);\n    } else {\n      return null;\n    }\n  }\n}\n\nextension CompatibilityCheckUtils on CompatibilityCheck {\n  bool get shouldCheckOpfsCompatibility {\n    return type == MessageType.dedicatedCompatibilityCheck.name ||\n        type == MessageType.dedicatedInSharedCompatibilityCheck.name;\n  }\n\n  bool get shouldCheckIndexedDbCompatbility {\n    return type == MessageType.dedicatedCompatibilityCheck.name ||\n        type == MessageType.sharedCompatibilityCheck.name;\n  }\n}\n\nbool isCompatibilityCheck(String messageType) {\n  if (messageType == MessageType.sharedCompatibilityCheck.name ||\n      messageType == MessageType.dedicatedCompatibilityCheck.name ||\n      messageType == MessageType.dedicatedInSharedCompatibilityCheck.name) {\n    return true;\n  } else {\n    return false;\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/lib/src/protocol/helper.g.dart",
    "content": "// Generated by tool/protocol_generator.dart, do not modify by hand.\nimport 'dart:async';\nimport 'dart:js_interop';\n\nimport 'package:web/web.dart' show AbortSignal;\nimport 'package:sqlite3/wasm.dart' show WorkerOptions;\n\nimport '../channel.dart';\nimport 'messages.dart';\n\nenum MessageType<T extends Message> {\n  open<OpenRequest>(),\n  connect<ConnectRequest>(),\n  startFileSystemServer<StartFileSystemServer>(),\n  custom<CustomRequest>(),\n  fileSystemExists<FileSystemExistsQuery>(),\n  fileSystemFlush<FileSystemFlushRequest>(),\n  fileSystemAccess<FileSystemAccess>(),\n  runQuery<RunQuery>(),\n  exclusiveLock<RequestExclusiveLock>(),\n  releaseLock<ReleaseLock>(),\n  closeDatabase<CloseDatabase>(),\n  openAdditionalConnection<OpenAdditionalConnection>(),\n  simpleSuccessResponse<SimpleSuccessResponse>(),\n  endpointResponse<EndpointResponse>(),\n  rowsResponse<RowsResponse>(),\n  errorResponse<ErrorResponse>(),\n  updateRequest<UpdateStreamRequest>(),\n  rollbackRequest<RollbackStreamRequest>(),\n  commitRequest<CommitsStreamRequest>(),\n  dedicatedCompatibilityCheck<DedicatedCompatibilityCheck>(),\n  sharedCompatibilityCheck<SharedCompatibilityCheck>(),\n  dedicatedInSharedCompatibilityCheck<DedicatedInSharedCompatibilityCheck>(),\n  notifyUpdate<UpdateNotification>(),\n  notifyCommit<CommitNotification>(),\n  notifyRollback<RollbackNotification>(),\n  abort<AbortRequest>(),\n}\n\nabstract base class RequestHandler {\n  FutureOr<Response> handleOpen(OpenRequest request, AbortSignal abortSignal) =>\n      _unsupportedRequest(request);\n\n  FutureOr<Response> handleConnect(\n    ConnectRequest request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleCustom(\n    CustomRequest request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleFileSystemExists(\n    FileSystemExistsQuery request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleFileSystemFlush(\n    FileSystemFlushRequest request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleFileSystemAccess(\n    FileSystemAccess request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleRunQuery(\n    RunQuery request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleExclusiveLock(\n    RequestExclusiveLock request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleReleaseLock(\n    ReleaseLock request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleCloseDatabase(\n    CloseDatabase request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleOpenAdditionalConnection(\n    OpenAdditionalConnection request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleUpdateRequest(\n    UpdateStreamRequest request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleRollbackRequest(\n    RollbackStreamRequest request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleCommitRequest(\n    CommitsStreamRequest request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleDedicatedCompatibilityCheck(\n    DedicatedCompatibilityCheck request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleSharedCompatibilityCheck(\n    SharedCompatibilityCheck request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  FutureOr<Response> handleDedicatedInSharedCompatibilityCheck(\n    DedicatedInSharedCompatibilityCheck request,\n    AbortSignal abortSignal,\n  ) => _unsupportedRequest(request);\n\n  Future<Never> _unsupportedRequest(Request request) {\n    return Future.error(ArgumentError('Unsupported request ${request.type}'));\n  }\n\n  FutureOr<Response> dispatchRequest(Request request, AbortSignal abortSignal) {\n    switch (request.type) {\n      case 'open':\n        return handleOpen(request as OpenRequest, abortSignal);\n      case 'connect':\n        return handleConnect(request as ConnectRequest, abortSignal);\n      case 'custom':\n        return handleCustom(request as CustomRequest, abortSignal);\n      case 'fileSystemExists':\n        return handleFileSystemExists(\n          request as FileSystemExistsQuery,\n          abortSignal,\n        );\n      case 'fileSystemFlush':\n        return handleFileSystemFlush(\n          request as FileSystemFlushRequest,\n          abortSignal,\n        );\n      case 'fileSystemAccess':\n        return handleFileSystemAccess(request as FileSystemAccess, abortSignal);\n      case 'runQuery':\n        return handleRunQuery(request as RunQuery, abortSignal);\n      case 'exclusiveLock':\n        return handleExclusiveLock(\n          request as RequestExclusiveLock,\n          abortSignal,\n        );\n      case 'releaseLock':\n        return handleReleaseLock(request as ReleaseLock, abortSignal);\n      case 'closeDatabase':\n        return handleCloseDatabase(request as CloseDatabase, abortSignal);\n      case 'openAdditionalConnection':\n        return handleOpenAdditionalConnection(\n          request as OpenAdditionalConnection,\n          abortSignal,\n        );\n      case 'updateRequest':\n        return handleUpdateRequest(request as UpdateStreamRequest, abortSignal);\n      case 'rollbackRequest':\n        return handleRollbackRequest(\n          request as RollbackStreamRequest,\n          abortSignal,\n        );\n      case 'commitRequest':\n        return handleCommitRequest(\n          request as CommitsStreamRequest,\n          abortSignal,\n        );\n      case 'dedicatedCompatibilityCheck':\n        return handleDedicatedCompatibilityCheck(\n          request as DedicatedCompatibilityCheck,\n          abortSignal,\n        );\n      case 'sharedCompatibilityCheck':\n        return handleSharedCompatibilityCheck(\n          request as SharedCompatibilityCheck,\n          abortSignal,\n        );\n      case 'dedicatedInSharedCompatibilityCheck':\n        return handleDedicatedInSharedCompatibilityCheck(\n          request as DedicatedInSharedCompatibilityCheck,\n          abortSignal,\n        );\n      default:\n        return _unsupportedRequest(request);\n    }\n  }\n}\n\n@anonymous\nextension type _OpenRequest._(OpenRequest _) implements OpenRequest {\n  external factory _OpenRequest({\n    @JS('u') required String wasmUri,\n    @JS('d') required String databaseName,\n    @JS('s') required JSString storageMode,\n    @JS('o') required bool onlyOpenVfs,\n    @JS('a') required JSAny? additionalData,\n    @JS('i') required int requestId,\n    @JS('t') required String type,\n  });\n}\nOpenRequest newOpenRequest({\n  required String wasmUri,\n  required String databaseName,\n  required JSString storageMode,\n  required bool onlyOpenVfs,\n  required JSAny? additionalData,\n  required int requestId,\n}) {\n  return _OpenRequest(\n    wasmUri: wasmUri,\n    databaseName: databaseName,\n    storageMode: storageMode,\n    onlyOpenVfs: onlyOpenVfs,\n    additionalData: additionalData,\n    requestId: requestId,\n    type: 'open',\n  );\n}\n\n@anonymous\nextension type _ConnectRequest._(ConnectRequest _) implements ConnectRequest {\n  external factory _ConnectRequest({\n    @JS('r') required WebEndpoint endpoint,\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nConnectRequest newConnectRequest({\n  required WebEndpoint endpoint,\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _ConnectRequest(\n    endpoint: endpoint,\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'connect',\n  );\n}\n\n@anonymous\nextension type _StartFileSystemServer._(StartFileSystemServer _)\n    implements StartFileSystemServer {\n  external factory _StartFileSystemServer({\n    @JS('a') required WorkerOptions options,\n    @JS('t') required String type,\n  });\n}\nStartFileSystemServer newStartFileSystemServer({\n  required WorkerOptions options,\n}) {\n  return _StartFileSystemServer(\n    options: options,\n    type: 'startFileSystemServer',\n  );\n}\n\n@anonymous\nextension type _CustomRequest._(CustomRequest _) implements CustomRequest {\n  external factory _CustomRequest({\n    @JS('r') required JSAny? payload,\n    @JS('z') required int? lockId,\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nCustomRequest newCustomRequest({\n  required JSAny? payload,\n  required int? lockId,\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _CustomRequest(\n    payload: payload,\n    lockId: lockId,\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'custom',\n  );\n}\n\n@anonymous\nextension type _FileSystemExistsQuery._(FileSystemExistsQuery _)\n    implements FileSystemExistsQuery {\n  external factory _FileSystemExistsQuery({\n    @JS('f') required int fsType,\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nFileSystemExistsQuery newFileSystemExistsQuery({\n  required int fsType,\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _FileSystemExistsQuery(\n    fsType: fsType,\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'fileSystemExists',\n  );\n}\n\n@anonymous\nextension type _FileSystemFlushRequest._(FileSystemFlushRequest _)\n    implements FileSystemFlushRequest {\n  external factory _FileSystemFlushRequest({\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nFileSystemFlushRequest newFileSystemFlushRequest({\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _FileSystemFlushRequest(\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'fileSystemFlush',\n  );\n}\n\n@anonymous\nextension type _FileSystemAccess._(FileSystemAccess _)\n    implements FileSystemAccess {\n  external factory _FileSystemAccess({\n    @JS('b') required JSArrayBuffer? buffer,\n    @JS('f') required int fsType,\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nFileSystemAccess newFileSystemAccess({\n  required JSArrayBuffer? buffer,\n  required int fsType,\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _FileSystemAccess(\n    buffer: buffer,\n    fsType: fsType,\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'fileSystemAccess',\n  );\n}\n\n@anonymous\nextension type _RunQuery._(RunQuery _) implements RunQuery {\n  external factory _RunQuery({\n    @JS('s') required String sql,\n    @JS('p') required JSArray parameters,\n    @JS('v') required JSArrayBuffer? typeVector,\n    @JS('z') required int? lockId,\n    @JS('r') required bool returnRows,\n    @JS('c') required bool checkInTransaction,\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nRunQuery newRunQuery({\n  required String sql,\n  required JSArray parameters,\n  required JSArrayBuffer? typeVector,\n  required int? lockId,\n  required bool returnRows,\n  required bool checkInTransaction,\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _RunQuery(\n    sql: sql,\n    parameters: parameters,\n    typeVector: typeVector,\n    lockId: lockId,\n    returnRows: returnRows,\n    checkInTransaction: checkInTransaction,\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'runQuery',\n  );\n}\n\n@anonymous\nextension type _RequestExclusiveLock._(RequestExclusiveLock _)\n    implements RequestExclusiveLock {\n  external factory _RequestExclusiveLock({\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nRequestExclusiveLock newRequestExclusiveLock({\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _RequestExclusiveLock(\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'exclusiveLock',\n  );\n}\n\n@anonymous\nextension type _ReleaseLock._(ReleaseLock _) implements ReleaseLock {\n  external factory _ReleaseLock({\n    @JS('z') required int lockId,\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nReleaseLock newReleaseLock({\n  required int lockId,\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _ReleaseLock(\n    lockId: lockId,\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'releaseLock',\n  );\n}\n\n@anonymous\nextension type _CloseDatabase._(CloseDatabase _) implements CloseDatabase {\n  external factory _CloseDatabase({\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nCloseDatabase newCloseDatabase({\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _CloseDatabase(\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'closeDatabase',\n  );\n}\n\n@anonymous\nextension type _OpenAdditionalConnection._(OpenAdditionalConnection _)\n    implements OpenAdditionalConnection {\n  external factory _OpenAdditionalConnection({\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nOpenAdditionalConnection newOpenAdditionalConnection({\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _OpenAdditionalConnection(\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'openAdditionalConnection',\n  );\n}\n\n@anonymous\nextension type _SimpleSuccessResponse._(SimpleSuccessResponse _)\n    implements SimpleSuccessResponse {\n  external factory _SimpleSuccessResponse({\n    @JS('r') required JSAny? response,\n    @JS('i') required int requestId,\n    @JS('t') required String type,\n  });\n}\nSimpleSuccessResponse newSimpleSuccessResponse({\n  required JSAny? response,\n  required int requestId,\n}) {\n  return _SimpleSuccessResponse(\n    response: response,\n    requestId: requestId,\n    type: 'simpleSuccessResponse',\n  );\n}\n\n@anonymous\nextension type _EndpointResponse._(EndpointResponse _)\n    implements EndpointResponse {\n  external factory _EndpointResponse({\n    @JS('r') required WebEndpoint endpoint,\n    @JS('i') required int requestId,\n    @JS('t') required String type,\n  });\n}\nEndpointResponse newEndpointResponse({\n  required WebEndpoint endpoint,\n  required int requestId,\n}) {\n  return _EndpointResponse(\n    endpoint: endpoint,\n    requestId: requestId,\n    type: 'endpointResponse',\n  );\n}\n\n@anonymous\nextension type _RowsResponse._(RowsResponse _) implements RowsResponse {\n  external factory _RowsResponse({\n    @JS('c') required JSArray<JSString>? columnNames,\n    @JS('n') required JSArray<JSString?>? tableNames,\n    @JS('v') required JSArrayBuffer? typeVector,\n    @JS('r') required JSArray<JSArray<JSAny?>>? rows,\n    @JS('x') required bool autoCommit,\n    @JS('y') required int lastInsertRowId,\n    @JS('i') required int requestId,\n    @JS('t') required String type,\n  });\n}\nRowsResponse newRowsResponse({\n  required JSArray<JSString>? columnNames,\n  required JSArray<JSString?>? tableNames,\n  required JSArrayBuffer? typeVector,\n  required JSArray<JSArray<JSAny?>>? rows,\n  required bool autoCommit,\n  required int lastInsertRowId,\n  required int requestId,\n}) {\n  return _RowsResponse(\n    columnNames: columnNames,\n    tableNames: tableNames,\n    typeVector: typeVector,\n    rows: rows,\n    autoCommit: autoCommit,\n    lastInsertRowId: lastInsertRowId,\n    requestId: requestId,\n    type: 'rowsResponse',\n  );\n}\n\n@anonymous\nextension type _ErrorResponse._(ErrorResponse _) implements ErrorResponse {\n  external factory _ErrorResponse({\n    @JS('e') required String message,\n    @JS('s') required JSNumber? serializedExceptionType,\n    @JS('r') required JSAny? serializedException,\n    @JS('i') required int requestId,\n    @JS('t') required String type,\n  });\n}\nErrorResponse newErrorResponse({\n  required String message,\n  required JSNumber? serializedExceptionType,\n  required JSAny? serializedException,\n  required int requestId,\n}) {\n  return _ErrorResponse(\n    message: message,\n    serializedExceptionType: serializedExceptionType,\n    serializedException: serializedException,\n    requestId: requestId,\n    type: 'errorResponse',\n  );\n}\n\n@anonymous\nextension type _UpdateStreamRequest._(UpdateStreamRequest _)\n    implements UpdateStreamRequest {\n  external factory _UpdateStreamRequest({\n    @JS('a') required bool action,\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nUpdateStreamRequest newUpdateStreamRequest({\n  required bool action,\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _UpdateStreamRequest(\n    action: action,\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'updateRequest',\n  );\n}\n\n@anonymous\nextension type _RollbackStreamRequest._(RollbackStreamRequest _)\n    implements RollbackStreamRequest {\n  external factory _RollbackStreamRequest({\n    @JS('a') required bool action,\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nRollbackStreamRequest newRollbackStreamRequest({\n  required bool action,\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _RollbackStreamRequest(\n    action: action,\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'rollbackRequest',\n  );\n}\n\n@anonymous\nextension type _CommitsStreamRequest._(CommitsStreamRequest _)\n    implements CommitsStreamRequest {\n  external factory _CommitsStreamRequest({\n    @JS('a') required bool action,\n    @JS('i') required int requestId,\n    @JS('d') required int? databaseId,\n    @JS('t') required String type,\n  });\n}\nCommitsStreamRequest newCommitsStreamRequest({\n  required bool action,\n  required int requestId,\n  required int? databaseId,\n}) {\n  return _CommitsStreamRequest(\n    action: action,\n    requestId: requestId,\n    databaseId: databaseId,\n    type: 'commitRequest',\n  );\n}\n\n@anonymous\nextension type _DedicatedCompatibilityCheck._(DedicatedCompatibilityCheck _)\n    implements DedicatedCompatibilityCheck {\n  external factory _DedicatedCompatibilityCheck({\n    @JS('d') required String? databaseName,\n    @JS('i') required int requestId,\n    @JS('t') required String type,\n  });\n}\nDedicatedCompatibilityCheck newDedicatedCompatibilityCheck({\n  required String? databaseName,\n  required int requestId,\n}) {\n  return _DedicatedCompatibilityCheck(\n    databaseName: databaseName,\n    requestId: requestId,\n    type: 'dedicatedCompatibilityCheck',\n  );\n}\n\n@anonymous\nextension type _SharedCompatibilityCheck._(SharedCompatibilityCheck _)\n    implements SharedCompatibilityCheck {\n  external factory _SharedCompatibilityCheck({\n    @JS('d') required String? databaseName,\n    @JS('i') required int requestId,\n    @JS('t') required String type,\n  });\n}\nSharedCompatibilityCheck newSharedCompatibilityCheck({\n  required String? databaseName,\n  required int requestId,\n}) {\n  return _SharedCompatibilityCheck(\n    databaseName: databaseName,\n    requestId: requestId,\n    type: 'sharedCompatibilityCheck',\n  );\n}\n\n@anonymous\nextension type _DedicatedInSharedCompatibilityCheck._(\n  DedicatedInSharedCompatibilityCheck _\n)\n    implements DedicatedInSharedCompatibilityCheck {\n  external factory _DedicatedInSharedCompatibilityCheck({\n    @JS('d') required String? databaseName,\n    @JS('i') required int requestId,\n    @JS('t') required String type,\n  });\n}\nDedicatedInSharedCompatibilityCheck newDedicatedInSharedCompatibilityCheck({\n  required String? databaseName,\n  required int requestId,\n}) {\n  return _DedicatedInSharedCompatibilityCheck(\n    databaseName: databaseName,\n    requestId: requestId,\n    type: 'dedicatedInSharedCompatibilityCheck',\n  );\n}\n\n@anonymous\nextension type _UpdateNotification._(UpdateNotification _)\n    implements UpdateNotification {\n  external factory _UpdateNotification({\n    @JS('k') required int updateKind,\n    @JS('u') required String updateTableName,\n    @JS('r') required int rowId,\n    @JS('d') required int databaseId,\n    @JS('t') required String type,\n  });\n}\nUpdateNotification newUpdateNotification({\n  required int updateKind,\n  required String updateTableName,\n  required int rowId,\n  required int databaseId,\n}) {\n  return _UpdateNotification(\n    updateKind: updateKind,\n    updateTableName: updateTableName,\n    rowId: rowId,\n    databaseId: databaseId,\n    type: 'notifyUpdate',\n  );\n}\n\n@anonymous\nextension type _CommitNotification._(CommitNotification _)\n    implements CommitNotification {\n  external factory _CommitNotification({\n    @JS('d') required int databaseId,\n    @JS('t') required String type,\n  });\n}\nCommitNotification newCommitNotification({required int databaseId}) {\n  return _CommitNotification(databaseId: databaseId, type: 'notifyCommit');\n}\n\n@anonymous\nextension type _RollbackNotification._(RollbackNotification _)\n    implements RollbackNotification {\n  external factory _RollbackNotification({\n    @JS('d') required int databaseId,\n    @JS('t') required String type,\n  });\n}\nRollbackNotification newRollbackNotification({required int databaseId}) {\n  return _RollbackNotification(databaseId: databaseId, type: 'notifyRollback');\n}\n\n@anonymous\nextension type _AbortRequest._(AbortRequest _) implements AbortRequest {\n  external factory _AbortRequest({\n    @JS('i') required int requestId,\n    @JS('t') required String type,\n  });\n}\nAbortRequest newAbortRequest({required int requestId}) {\n  return _AbortRequest(requestId: requestId, type: 'abort');\n}\n\n@JS('ArrayBuffer')\nexternal JSFunction get _arrayBufferConstructor;\nJSArray<JSAny> extractTransferrable(Message message) {\n  final result = JSArray<JSAny>();\n  switch (message.type) {\n    case 'connect':\n      result.add((message as ConnectRequest).endpoint.port);\n      break;\n    case 'fileSystemAccess':\n      if ((message as FileSystemAccess).buffer case final e?) result.add(e);\n      break;\n    case 'runQuery':\n      if ((message as RunQuery).typeVector case final e?) result.add(e);\n      break;\n    case 'simpleSuccessResponse':\n      if ((message as SimpleSuccessResponse).response case JSAny a\n          when a.instanceof(_arrayBufferConstructor)) {\n        result.add(a);\n      }\n      break;\n    case 'endpointResponse':\n      result.add((message as EndpointResponse).endpoint.port);\n      break;\n    case 'rowsResponse':\n      if ((message as RowsResponse).typeVector case final e?) result.add(e);\n      break;\n  }\n  return result;\n}\n\nT dispatchMessage<T>(\n  Message msg, {\n  required T Function(StartFileSystemServer) whenStartFileSystemServer,\n  required T Function(AbortRequest) whenAbortRequest,\n  required T Function(Notification) whenNotification,\n  required T Function(Response) whenResponse,\n  required T Function(Request) whenRequest,\n}) {\n  switch (msg.type) {\n    case 'startFileSystemServer':\n      return whenStartFileSystemServer(msg as StartFileSystemServer);\n    case 'abort':\n      return whenAbortRequest(msg as AbortRequest);\n    case 'notifyUpdate':\n    case 'notifyCommit':\n    case 'notifyRollback':\n      return whenNotification(msg as Notification);\n    case 'simpleSuccessResponse':\n    case 'endpointResponse':\n    case 'rowsResponse':\n    case 'errorResponse':\n      return whenResponse(msg as Response);\n    default:\n      return whenRequest(msg as Request);\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/lib/src/protocol/messages.dart",
    "content": "import 'dart:js_interop';\nimport 'dart:typed_data';\n\nimport 'package:sqlite3/wasm.dart';\n// ignore: implementation_imports\nimport 'package:sqlite3/src/wasm/js_interop/core.dart';\n\nimport '../channel.dart';\nimport 'dsl.dart';\n\n@abstract\nextension type Message._(JSObject _) implements JSObject {\n  @JS(_UniqueFieldNames.type)\n  @isType\n  external String type;\n}\n\n@abstract\nextension type Notification._(JSObject _) implements Message {\n  @JS(_UniqueFieldNames.databaseId)\n  external int databaseId;\n}\n\n@abstract\nextension type Request._(JSObject _) implements Message {\n  /// A unique id, incremented by each endpoint when making requests over the\n  /// channel.\n  @JS(_UniqueFieldNames.id)\n  external int requestId;\n\n  @JS(_UniqueFieldNames.databaseId)\n  external int? databaseId;\n}\n\n@abstract\nextension type Response._(JSObject _) implements Message {\n  /// The [Request.requestId] that this is a response of.\n  @JS(_UniqueFieldNames.id)\n  external int requestId;\n}\n\nenum FileSystemImplementation {\n  opfsShared('s'),\n  opfsAtomics('l'),\n  opfsExternalLocks('x'),\n  indexedDb('i'),\n  inMemory('m');\n\n  final String jsRepresentation;\n\n  const FileSystemImplementation(this.jsRepresentation);\n\n  JSString get toJS => jsRepresentation.toJS;\n\n  bool get needsExternalLocks =>\n      // Technically, opfsAtomics doesn't need external locks around each\n      // database access. We just do this to avoid contention in the underlying\n      // VFS.\n      this == opfsAtomics || this == opfsExternalLocks;\n\n  static FileSystemImplementation fromJS(JSString js) {\n    final toDart = js.toDart;\n\n    for (final entry in values) {\n      if (entry.jsRepresentation == toDart) return entry;\n    }\n\n    throw ArgumentError('Unknown FS implementation: $toDart');\n  }\n}\n\n@MessageTypeName('open')\nextension type OpenRequest._(JSObject _) implements Request {\n  @JS(_UniqueFieldNames.wasmUri)\n  external String wasmUri;\n\n  @JS(_UniqueFieldNames.databaseName)\n  external String databaseName;\n  @JS(_UniqueFieldNames.storageMode)\n  external JSString storageMode;\n  @JS(_UniqueFieldNames.onlyOpenVfs)\n  external bool onlyOpenVfs;\n\n  /// Additional data passsed to `DatabaseController.openDatabase`.\n  @JS(_UniqueFieldNames.additionalData)\n  external JSAny? additionalData;\n}\n\n/// Requests the receiving end of this message to connect to the channel\n/// reachable through [endpoint].\n///\n/// This message it sent to dedicated and shared workers under their top-level\n/// receive handler.\n/// This can also be a request as part of an existing communication channel. In\n/// that form, the client asks the receiver to forward the connect request to\n/// a nested context. In particular, this is used for different tabs to connect\n/// to a dedicated worker spawned by a shared worker.\n/// As only dedicated workers can use synchronous file system APIs, this allows\n/// different tabs to share a dedicated worker hosting a database with OPFS,\n/// which is by far the most efficient way access dabases.\n@MessageTypeName('connect')\nextension type ConnectRequest._(JSObject _) implements Request {\n  /// The endpoint under which the client is reachable.\n  @JS(_UniqueFieldNames.responseData)\n  @transfer\n  external WebEndpoint endpoint;\n}\n\n@MessageTypeName('startFileSystemServer')\nextension type StartFileSystemServer._(JSObject _) implements Message {\n  @JS(_UniqueFieldNames.additionalData)\n  external WorkerOptions options;\n}\n\n/// Allows users of this package to implement their own RPC calls handled by\n/// workers hosting the database.\n@MessageTypeName('custom')\nextension type CustomRequest._(JSObject _) implements Request {\n  @JS(_UniqueFieldNames.responseData)\n  external JSAny? payload;\n  @JS(_UniqueFieldNames.lockId)\n  external int? lockId;\n}\n\n/// The other side will respond with a [SimpleSuccessResponse] containing a\n/// boolean indicating whether the file exists.\n@MessageTypeName('fileSystemExists')\nextension type FileSystemExistsQuery._(JSObject _) implements Request {\n  @JS(_UniqueFieldNames.fileType)\n  external int fsType;\n}\n\n@MessageTypeName('fileSystemFlush')\nextension type FileSystemFlushRequest._(JSObject _) implements Request {}\n\n@MessageTypeName('fileSystemAccess')\nextension type FileSystemAccess._(JSObject _) implements Request {\n  @JS(_UniqueFieldNames.buffer)\n  @transfer\n  external JSArrayBuffer? buffer;\n  @JS(_UniqueFieldNames.fileType)\n  external int fsType;\n}\n\n@MessageTypeName('runQuery')\nextension type RunQuery._(JSObject _) implements Request {\n  @JS(_UniqueFieldNames.sql)\n  external String sql;\n\n  @JS(_UniqueFieldNames.parameters)\n  external JSArray parameters;\n  @JS(_UniqueFieldNames.typeVector)\n  @transfer\n  external JSArrayBuffer? typeVector;\n\n  @JS(_UniqueFieldNames.lockId)\n  external int? lockId;\n  @JS(_UniqueFieldNames.returnRows)\n  external bool returnRows;\n  @JS(_UniqueFieldNames.checkInTransaction)\n  external bool checkInTransaction;\n}\n\n@MessageTypeName('exclusiveLock')\nextension type RequestExclusiveLock._(JSObject _) implements Request {}\n\n@MessageTypeName('releaseLock')\nextension type ReleaseLock._(JSObject _) implements Request {\n  @JS(_UniqueFieldNames.lockId)\n  external int lockId;\n}\n\n@MessageTypeName('closeDatabase')\nextension type CloseDatabase._(JSObject _) implements Request {}\n\n@MessageTypeName('openAdditionalConnection')\nextension type OpenAdditionalConnection._(JSObject _) implements Request {}\n\n@MessageTypeName('simpleSuccessResponse')\nextension type SimpleSuccessResponse._(JSObject _) implements Response {\n  @JS(_UniqueFieldNames.responseData)\n  @transferIfArrayBuffer\n  external JSAny? response;\n}\n\n@MessageTypeName('endpointResponse')\nextension type EndpointResponse._(JSObject _) implements Response {\n  @JS(_UniqueFieldNames.responseData)\n  @transfer\n  external WebEndpoint endpoint;\n}\n\nenum TypeCode {\n  unknown,\n  integer,\n  bigInt,\n  float,\n  text,\n  blob,\n  $null,\n  boolean;\n\n  static TypeCode of(int i) {\n    return i >= TypeCode.values.length ? TypeCode.unknown : TypeCode.values[i];\n  }\n\n  Object? decodeColumn(JSAny? column) {\n    const hasNativeInts = !identical(0, 0.0);\n\n    return switch (this) {\n      TypeCode.unknown => column.dartify(),\n      TypeCode.integer => (column as JSNumber).toDartInt,\n      TypeCode.bigInt =>\n        hasNativeInts\n            ? (column as JsBigInt).asDartInt\n            : (column as JsBigInt).asDartBigInt,\n      TypeCode.float => (column as JSNumber).toDartDouble,\n      TypeCode.text => (column as JSString).toDart,\n      TypeCode.blob => (column as JSUint8Array).toDart,\n      TypeCode.boolean => (column as JSBoolean).toDart,\n      TypeCode.$null => null,\n    };\n  }\n\n  static (TypeCode, JSAny?) encodeValue(Object? dart) {\n    // In previous clients/workers, values were encoded with dartify() and\n    // jsify() only. For backwards-compatibility, this value must be compatible\n    // with dartify() used on the other end.\n    // An exception are BigInts, which have not been sent correctly before this\n    // encoder.\n    // The reasons for adopting a custom format are: Being able to properly\n    // serialize BigInts, possible dartify/jsify incompatibilities between\n    // dart2js and dart2wasm and most importantly, being able to keep 1 and 1.0\n    // apart in dart2wasm when the worker is compiled with dart2js.\n    final JSAny? value;\n    final TypeCode code;\n\n    switch (dart) {\n      case null:\n        value = null;\n        code = TypeCode.$null;\n      case final int integer:\n        value = integer.toJS;\n        code = TypeCode.integer;\n      case final BigInt bi:\n        value = JsBigInt.fromBigInt(bi);\n        code = TypeCode.bigInt;\n      case final double d:\n        value = d.toJS;\n        code = TypeCode.float;\n      case final String s:\n        value = s.toJS;\n        code = TypeCode.text;\n      case final Uint8List blob:\n        value = blob.toJS;\n        code = TypeCode.blob;\n      case final bool boolean:\n        value = boolean.toJS;\n        code = TypeCode.boolean;\n      case final other:\n        value = other.jsify();\n        code = TypeCode.unknown;\n    }\n\n    return (code, value);\n  }\n\n  static (JSArray, JSArrayBuffer) encodeValues(List<Object?> values) {\n    final jsParams = <JSAny?>[];\n    final typeCodes = Uint8List(values.length);\n    for (var i = 0; i < values.length; i++) {\n      final (code, jsParam) = TypeCode.encodeValue(values[i]);\n      typeCodes[i] = code.index;\n      jsParams.add(jsParam);\n    }\n\n    final jsTypes = typeCodes.buffer.toJS;\n    return (jsParams.toJS, jsTypes);\n  }\n\n  static List<Object?> decodeValues(JSArray array, JSArrayBuffer? types) {\n    final rawParameters = array.toDart;\n    final typeVector = types?.toDart.asUint8List();\n\n    final parameters = List<Object?>.filled(rawParameters.length, null);\n    for (var i = 0; i < parameters.length; i++) {\n      final typeCode = typeVector != null\n          ? TypeCode.of(typeVector[i])\n          : TypeCode.unknown;\n      parameters[i] = typeCode.decodeColumn(rawParameters[i]);\n    }\n\n    return parameters;\n  }\n}\n\n@MessageTypeName('rowsResponse')\nextension type RowsResponse._(JSObject _) implements Response {\n  @JS(_UniqueFieldNames.columnNames)\n  external JSArray<JSString>? columnNames;\n  @JS(_UniqueFieldNames.tableNames)\n  external JSArray<JSString?>? tableNames;\n  @JS(_UniqueFieldNames.typeVector)\n  @transfer\n  external JSArrayBuffer? typeVector;\n  @JS(_UniqueFieldNames.rows)\n  external JSArray<JSArray<JSAny?>>? rows;\n\n  @JS(_UniqueFieldNames.autocommit)\n  external bool autoCommit;\n  @JS(_UniqueFieldNames.lastInsertRowid)\n  external int lastInsertRowId;\n}\n\n@MessageTypeName('errorResponse')\nextension type ErrorResponse._(JSObject _) implements Response {\n  @JS(_UniqueFieldNames.errorMessage)\n  external String message;\n\n  @JS(_UniqueFieldNames.serializedExceptionType)\n  external JSNumber? serializedExceptionType;\n\n  @JS(_UniqueFieldNames.serializedException)\n  external JSAny? serializedException;\n}\n\n@abstract\nextension type StreamRequest._(JSObject _) implements Request {\n  /// When true, the client is requesting to be informed about updates happening\n  /// on the database identified by this request.\n  ///\n  /// When false, the client is requesting to no longer be informed about these\n  /// updates.\n  @JS(_UniqueFieldNames.action)\n  external bool action;\n}\n\n@MessageTypeName('updateRequest')\nextension type UpdateStreamRequest._(JSObject _) implements StreamRequest {}\n\n@MessageTypeName('rollbackRequest')\nextension type RollbackStreamRequest._(JSObject _) implements StreamRequest {}\n\n@MessageTypeName('commitRequest')\nextension type CommitsStreamRequest._(JSObject _) implements StreamRequest {}\n\n@abstract\nextension type CompatibilityCheck._(JSObject _) implements Request {\n  @JS(_UniqueFieldNames.databaseName)\n  external String? databaseName;\n}\n\n@MessageTypeName('dedicatedCompatibilityCheck')\nextension type DedicatedCompatibilityCheck._(JSObject _)\n    implements CompatibilityCheck {}\n\n@MessageTypeName('sharedCompatibilityCheck')\nextension type SharedCompatibilityCheck._(JSObject _)\n    implements CompatibilityCheck {}\n\n@MessageTypeName('dedicatedInSharedCompatibilityCheck')\nextension type DedicatedInSharedCompatibilityCheck._(JSObject _)\n    implements CompatibilityCheck {}\n\n@MessageTypeName('notifyUpdate')\nextension type UpdateNotification._(JSObject _) implements Notification {\n  @JS(_UniqueFieldNames.updateKind)\n  external int updateKind;\n  @JS(_UniqueFieldNames.updateTableName)\n  external String updateTableName;\n  @JS(_UniqueFieldNames.updateRowId)\n  external int rowId;\n}\n\n@MessageTypeName('notifyCommit')\nextension type CommitNotification._(JSObject _) implements Notification {}\n\n@MessageTypeName('notifyRollback')\nextension type RollbackNotification._(JSObject _) implements Notification {}\n\n/// Requests a previously issued request to be cancelled.\n///\n/// An endpoint will not respond to this message, but it may abort the previous\n/// request by completing it with an error.\n@MessageTypeName('abort')\nextension type AbortRequest._(JSObject _) implements Message {\n  @JS(_UniqueFieldNames.id)\n  external int requestId;\n}\n\n/// Field names used when serializing messages to JS objects.\n///\n/// Since we're using unsafe JS interop here, these can't be mangled by dart2js.\n/// Thus, we should keep them short.\nclass _UniqueFieldNames {\n  static const action = 'a'; // Only used in StreamRequest\n  static const additionalData = 'a'; // only used in OpenRequest\n  static const buffer = 'b';\n  // no clash, used in RowResponse and RunQuery\n  static const columnNames = 'c';\n  static const checkInTransaction = 'c';\n  static const databaseId = 'd';\n  static const databaseName = 'd'; // no clash, used on different types\n  static const errorMessage = 'e';\n  static const fileType = 'f';\n  static const id = 'i';\n  static const updateKind = 'k';\n  static const tableNames = 'n';\n  static const onlyOpenVfs = 'o';\n  static const parameters = 'p';\n  static const storageMode = 's';\n  static const serializedExceptionType = 's';\n  static const sql = 's'; // not used in same message\n  static const type = 't';\n  static const wasmUri = 'u';\n  static const updateTableName = 'u';\n  static const responseData = 'r';\n  static const returnRows = 'r';\n  static const updateRowId = 'r';\n  static const serializedException = 'r';\n  static const rows = 'r'; // no clash, used on different message types\n  static const typeVector = 'v';\n  static const autocommit = 'x';\n  static const lastInsertRowid = 'y';\n  static const lockId = 'z';\n}\n"
  },
  {
    "path": "sqlite3_web/lib/src/protocol.dart",
    "content": "export 'protocol/compatibility_result.dart';\nexport 'protocol/extensions.dart';\nexport 'protocol/helper.g.dart';\nexport 'protocol/messages.dart';\n"
  },
  {
    "path": "sqlite3_web/lib/src/shared.dart",
    "content": "/// Functionality shared between workers and client code.\n\nlibrary;\n\nimport 'dart:async';\nimport 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\n\n// ignore: implementation_imports\nimport 'package:sqlite3/src/wasm/js_interop/new_file_system_access.dart';\nimport 'package:web/web.dart';\n\n/// Checks whether IndexedDB is working in the current browser.\nFuture<bool> checkIndexedDbSupport() async {\n  if (!globalContext.has('indexedDB') ||\n      // FileReader needed to read and write blobs efficiently\n      !globalContext.has('FileReader')) {\n    return false;\n  }\n\n  final idb = globalContext['indexedDB'] as IDBFactory;\n\n  try {\n    const name = 'drift_mock_db';\n\n    final mockDb = await idb.open(name).completeOpen<IDBDatabase>();\n    mockDb.close();\n    idb.deleteDatabase(name);\n  } catch (error) {\n    return false;\n  }\n\n  return true;\n}\n\n/// Returns whether an drift-wasm database with the given [databaseName] exists.\nFuture<bool> checkIndexedDbExists(String databaseName) async {\n  bool? indexedDbExists;\n\n  try {\n    final idb = globalContext['indexedDB'] as IDBFactory;\n\n    final openRequest = idb.open(databaseName, 1);\n    openRequest.onupgradeneeded = (IDBVersionChangeEvent event) {\n      // If there's an upgrade, we're going from 0 to 1 - the database doesn't\n      // exist! Abort the transaction so that we don't create it here.\n      openRequest.transaction!.abort();\n      indexedDbExists = false;\n    }.toJS;\n    final database = await openRequest.complete<IDBDatabase>();\n\n    indexedDbExists ??= true;\n    database.close();\n  } catch (_) {\n    // May throw due to us aborting in the upgrade callback.\n  }\n\n  return indexedDbExists ?? false;\n}\n\n/// Deletes a database from IndexedDb if supported.\nFuture<void> deleteDatabaseInIndexedDb(String databaseName) async {\n  final idb = globalContext['indexedDB'] as IDBFactory;\n  await idb.deleteDatabase(databaseName).complete<JSAny?>();\n}\n\n/// Collects all drift OPFS databases.\nFuture<List<String>> opfsDatabases() async {\n  final storage = storageManager;\n  if (storage == null) return const [];\n\n  var directory = await storage.directory;\n  try {\n    directory = await directory.getDirectory('drift_db');\n  } on Object {\n    // The drift_db folder doesn't exist, so there aren't any databases.\n    return const [];\n  }\n\n  return [\n    await for (final entry in directory.list())\n      if (entry.isDirectory) entry.name,\n  ];\n}\n\n/// Constructs the path used by drift to store a database in the origin-private\n/// section of the agent's file system.\nString pathForOpfs(String databaseName) {\n  return 'drift_db/$databaseName';\n}\n\n/// Deletes the OPFS folder storing a database with the given [databaseName] if\n/// such folder exists.\nFuture<void> deleteDatabaseInOpfs(String databaseName) async {\n  final storage = storageManager;\n  if (storage == null) return;\n\n  var directory = await storage.directory;\n  try {\n    directory = await directory.getDirectory('drift_db');\n    await directory.remove(databaseName, recursive: true);\n  } on Object {\n    // fine, an error probably means that the database didn't exist in the first\n    // place.\n  }\n}\n\nextension CompleteIdbRequest on IDBRequest {\n  Future<T> complete<T extends JSAny?>() {\n    final completer = Completer<T>.sync();\n\n    EventStreamProviders.successEvent.forTarget(this).listen((event) {\n      completer.complete(result as T);\n    });\n    EventStreamProviders.errorEvent.forTarget(this).listen((event) {\n      completer.completeError(error ?? event);\n    });\n\n    return completer.future;\n  }\n}\n\nextension CompleteOpenIdbRequest on IDBRequest {\n  Future<T> completeOpen<T extends JSAny?>() {\n    final completer = Completer<T>.sync();\n\n    EventStreamProviders.successEvent.forTarget(this).listen((event) {\n      completer.complete(result as T);\n    });\n    EventStreamProviders.errorEvent.forTarget(this).listen((event) {\n      completer.completeError(error ?? event);\n    });\n    EventStreamProviders.blockedEvent.forTarget(this).listen((event) {\n      completer.completeError(error ?? event);\n    });\n\n    return completer.future;\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/lib/src/types.dart",
    "content": "import 'dart:typed_data';\nimport 'package:sqlite3/common.dart';\n\n/// A [StorageMode], name pair representing an existing database already stored\n/// by the current browsing context.\ntypedef ExistingDatabase = (StorageMode, String);\n\n/// Types of files persisted for databases by virtual file system\n/// implementations.\nenum FileType {\n  /// The main database file.\n  database,\n\n  /// A journal file used to synchronize changes on the database file.\n  journal,\n}\n\n/// An implemented mechanism to use SQLite on the web.\n///\n/// Due to the large variety of browsers and the web standards they support,\n/// a number of implementations are available. The most important are:\n///\n///  - [opfsShared]: Only available on Firefox, but very efficient.\n///  - [opfsWithExternalLocks]: Only available on recent Chrome versions, also\n///    quite efficient.\n///  - [opfsAtomics]: Only available when using COEP and COOP headers, but also\n///    reasonably efficient and supported across browsers.\n///  - [indexedDbShared]: A less efficient IndexedDB-based implementation used\n///    as a fallback on older Chrome versions.\n///\n/// All other options are not recommended, but may be selected if there's no\n/// better option (e.g. older Chrome versions on Android may use\n/// [indexedDbUnsafeWorker]).\nenum DatabaseImplementation {\n  /// Host an in-memory database in the current tab.\n  ///\n  /// This isn't really useful outside of tests.\n  inMemoryLocal(StorageMode.inMemory, AccessMode.inCurrentContext),\n\n  /// Host an in-memory database in a shared worker.\n  ///\n  /// This isn't really useful outside of tests.\n  inMemoryShared(StorageMode.inMemory, AccessMode.throughSharedWorker),\n\n  /// Open an IndexedDB database with a dedicated worker per tab.\n  ///\n  /// There is no concurrency control between these tabs, so this effectively\n  /// does not support multiple tabs. It's mostly included for legacy reasons.\n  indexedDbUnsafeLocal(StorageMode.indexedDb, AccessMode.inCurrentContext),\n\n  /// Open an IndexedDB database with a dedicated worker per tab.\n  ///\n  /// There is no concurrency control between these tabs, so this effectively\n  /// does not support multiple tabs. It's mostly included for legacy reasons.\n  indexedDbUnsafeWorker(\n    StorageMode.indexedDb,\n    AccessMode.throughDedicatedWorker,\n  ),\n\n  /// Open an IndexedDB database in a shared worker.\n  indexedDbShared(StorageMode.indexedDb, AccessMode.throughSharedWorker),\n\n  /// Open an synchronous database stored in OPFS.\n  ///\n  /// The database is opened with the non-standard `readwrite-unsafe` option,\n  /// and the web locks API is used to ensure two tabs don't access the same\n  /// database concurrently.\n  opfsWithExternalLocks(StorageMode.opfs, AccessMode.throughDedicatedWorker),\n\n  /// Open an asynchronous database stored in OPFS. It is \"syncified\" by using\n  /// a pair of two dedicated workers implementing an RPC channel over shared\n  /// memory and atomics.\n  opfsAtomics(StorageMode.opfs, AccessMode.throughDedicatedWorker),\n\n  /// Open a synchronous database stored in OPFS.\n  ///\n  /// This works by letting a shared worker spawn a dedicated worker. This is\n  /// supposed to work, but only implemented in Firefox.\n  opfsShared(StorageMode.opfs, AccessMode.throughSharedWorker);\n\n  final StorageMode storage;\n  final AccessMode access;\n\n  const DatabaseImplementation(this.storage, this.access);\n}\n\n/// Available locations to store database content in browsers.\nenum StorageMode {\n  // Note: Indices in this enum are used in the protocol, changing them is a\n  // backwards-incompatible change.\n  /// A origin-private folder provided by the file system access API.\n  ///\n  /// This is generally considered to be the most reliable way to store large\n  /// data efficiently.\n  opfs,\n\n  /// A virtual file system implemented by splitting files into chunks which are\n  /// then stored in IndexedDB.\n  ///\n  /// As sqlite3 expects a synchronous file system and IndexedDB is\n  /// asynchronous, we maintain the illusion if synchronous access by keeping\n  /// the entire database cached in memory and then flushing changes\n  /// asynchronously.\n  /// This technically looses durability, but is reasonably reliable in\n  /// practice.\n  indexedDb,\n\n  /// Don't persist databases, instead keeping them in memory only.\n  inMemory,\n}\n\n/// In addition to the [StorageMode] describing which browser API is used to\n/// store content, this enum describes how databases are accessed.\nenum AccessMode {\n  /// Access databases by spawning a shared worker shared across tabs.\n  ///\n  /// This is more efficient as it avoids synchronization conflicts between tabs\n  /// which may slow things down.\n  throughSharedWorker,\n\n  /// Access databases by spawning a dedicated worker for this tab.\n  throughDedicatedWorker,\n\n  /// Access databases without any shared or dedicated worker.\n  inCurrentContext,\n}\n\n/// An exception thrown when a operation fails on the remote worker.\n///\n/// As the worker and the main tab have been compiled independently and don't\n/// share a class hierarchy or object representations, it is impossible to send\n/// typed exception objects. Instead, this exception wraps every error or\n/// exception thrown by the remote worker and contains the [toString]\n/// representation in [message].\nfinal class RemoteException implements Exception {\n  /// The [Object.toString] representation of the original exception.\n  final String message;\n\n  /// The exception that happened in the context running the operation.\n  ///\n  /// Since that context may be a web worker which can't send arbitrary Dart\n  /// objects to us, only a few common exception types are recognized and\n  /// serialized.\n  /// At the moment, this only includes [SqliteException].\n  final Object? exception;\n\n  /// Creates a remote exception from the [message] thrown.\n  const RemoteException({required this.message, this.exception});\n\n  @override\n  String toString() {\n    return 'Remote error: $message';\n  }\n}\n\n/// An exception thrown when the remote end accepts an abort requeset sent for a\n/// previous request.\nfinal class AbortException extends RemoteException {\n  const AbortException() : super(message: 'Operation was cancelled');\n}\n\n/// A virtual file system used by a worker to persist database files.\nabstract class FileSystem {\n  /// Returns whether a database file identified by its [type] exists.\n  Future<bool> exists(FileType type);\n\n  /// Reads the database file (or its journal).\n  Future<Uint8List> readFile(FileType type);\n\n  /// Replaces the database file (or its journal), creating the virtual file if\n  /// it doesn't exist.\n  Future<void> writeFile(FileType type, Uint8List content);\n\n  /// If the file system hosting the database in the worker is not synchronous,\n  /// flushes pending writes.\n  Future<void> flush();\n}\n\n/// An enumeration of features not supported by the current browsers.\n///\n/// While this information may not be useful to end users, it can be used to\n/// understand why a particular file system implementation is unavailable.\nenum MissingBrowserFeature {\n  /// The browser is missing support for [shared workers].\n  ///\n  /// [shared workers]: https://developer.mozilla.org/en-US/docs/Web/API/SharedWorker\n  sharedWorkers,\n\n  /// The browser is missing support for [web workers] in general.\n  ///\n  /// [web workers]: https://developer.mozilla.org/en-US/docs/Web/API/Worker\n  dedicatedWorkers,\n\n  /// The browser doesn't allow shared workers to spawn dedicated workers in\n  /// their context.\n  ///\n  /// While the specification for web workers explicitly allows this, this\n  /// feature is only implemented by Firefox at the time of writing.\n  dedicatedWorkersInSharedWorkers,\n\n  /// The browser doesn't allow dedicated workers to spawn their own dedicated\n  /// workers.\n  dedicatedWorkersCanNest,\n\n  /// The browser does not support a synchronous version of the [File System API]\n  ///\n  /// [File System API]: https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API\n  fileSystemAccess,\n\n  /// The browser does not support the (non-standard) `readwrite-unsafe` open\n  /// mode proposed in https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md#modes-of-creating-a-filesystemsyncaccesshandle.\n  createSyncAccessHandleReadWriteUnsafe,\n\n  /// The browser does not support IndexedDB.\n  indexedDb,\n\n  /// The browser does not support shared array buffers and `Atomics.wait`.\n  ///\n  /// To enable this feature in most browsers, you need to serve your app with\n  /// two [special headers](https://web.dev/coop-coep/).\n  sharedArrayBuffers,\n}\n\n/// The result of [WebSqlite.runFeatureDetection], describing which browsers\n/// and databases are available in the current browser.\nfinal class FeatureDetectionResult {\n  /// A list of features that were probed and found to be unsupported in the\n  /// current browser.\n  final List<MissingBrowserFeature> missingFeatures;\n\n  /// All existing databases that have been found.\n  ///\n  /// Databases are only found reliably when a database name is passed to\n  /// [WebSqlite.runFeatureDetection].\n  final List<ExistingDatabase> existingDatabases;\n\n  /// All available [StorageMode], [AccessMode] pairs describing the databases\n  /// supported by this browser.\n  final List<DatabaseImplementation> availableImplementations;\n\n  FeatureDetectionResult({\n    required this.missingFeatures,\n    required this.existingDatabases,\n    required this.availableImplementations,\n  });\n\n  @override\n  String toString() {\n    return 'Existing: $existingDatabases, available: '\n        '$availableImplementations, missing: $missingFeatures';\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/lib/src/worker.dart",
    "content": "import 'dart:async';\nimport 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\nimport 'dart:typed_data';\nimport 'package:sqlite3/wasm.dart';\nimport 'package:stream_channel/stream_channel.dart';\nimport 'package:web/web.dart'\n    show\n        AbortSignal,\n        DedicatedWorkerGlobalScope,\n        EventStreamProviders,\n        FileSystemDirectoryHandle,\n        FileSystemFileHandle,\n        FileSystemSyncAccessHandle,\n        AbortController;\n// ignore: implementation_imports\nimport 'package:sqlite3/src/wasm/js_interop/new_file_system_access.dart';\n\nimport 'database.dart';\nimport 'channel.dart';\nimport 'locks.dart';\nimport 'protocol.dart';\nimport 'shared.dart';\nimport 'types.dart';\nimport 'worker_connector.dart';\n\nextension on WorkerEnvironment {\n  /// Messages outside of a connection being posted to the worker or a connect\n  /// port of a shared worker.\n  ///\n  /// We're not using them for actual channels, but instead have clients\n  /// setup message ports which are then forwarded to workers using these\n  /// top-level requests.\n  Stream<Message> get topLevelRequests {\n    return incomingMessages.map((event) {\n      return event.data as Message;\n    });\n  }\n}\n\nclass _StreamState {\n  StreamSubscription<void>? subscription;\n\n  void cancel() {\n    subscription?.cancel();\n    subscription = null;\n  }\n}\n\n/// A database opened by a client.\nfinal class _ConnectionDatabase {\n  final DatabaseState database;\n  final int id;\n\n  final _StreamState updates = _StreamState();\n  final _StreamState rollbacks = _StreamState();\n  final _StreamState commits = _StreamState();\n\n  /// If the connection currently holds a lock on the database, this contains\n  /// an id assigned to that lock and a completer to release it.\n  (int, Completer<void>)? _heldLock;\n  int _nextLockId = 1;\n  final List<AbortController> _activeAbortableOperations = [];\n\n  _ConnectionDatabase(this.database, [int? id]) : id = id ?? database.id;\n\n  Future<void> close() async {\n    updates.cancel();\n    rollbacks.cancel();\n    commits.cancel();\n\n    for (final signal in _activeAbortableOperations) {\n      signal.abort();\n    }\n    _activeAbortableOperations.clear();\n\n    _heldLock?.$2.complete();\n    await database.decrementRefCount();\n  }\n\n  AbortController _startAbortableOperation(AbortSignal parent) {\n    final controller = AbortController();\n    parent.onabort = (() => controller.abort()).toJS;\n    _activeAbortableOperations.add(controller);\n    return controller;\n  }\n\n  void _removeAbortableOperation(AbortController controller) {\n    _activeAbortableOperations.remove(controller);\n  }\n\n  Future<T> useLock<T>(\n    int? lockId,\n    AbortSignal abortSignal,\n    T Function() block,\n  ) {\n    if (lockId == null) {\n      // Not in an explicit lock context, just use global database lock.\n      if (!database.locks.canRunSynchronousBlockDirectly) {\n        final started = _startAbortableOperation(abortSignal);\n        return database.locks.lock(block, started.signal).whenComplete(() {\n          _removeAbortableOperation(started);\n        });\n      }\n    } else {\n      if (_heldLock?.$1 != lockId) {\n        throw StateError('Requested operation on inactive lock state.');\n      }\n    }\n\n    // Can run synchronous block directly.\n    return Future.sync(block);\n  }\n\n  Future<int> obtainLockAsync(AbortSignal abortSignal) {\n    final started = _startAbortableOperation(abortSignal);\n    final resolvedLockId = Completer<int>();\n\n    database.locks\n        .lock(() {\n          // Since we just obtained an exclusive lock, we cannot possibly be holding\n          // the lock already.\n          assert(_heldLock == null);\n\n          final id = _nextLockId++;\n          final completer = Completer<void>();\n          _heldLock = (id, completer);\n          resolvedLockId.complete(id);\n          return completer.future;\n        }, started.signal)\n        .onError<Object>((e, s) {\n          if (!resolvedLockId.isCompleted) {\n            resolvedLockId.completeError(e, s);\n          }\n        });\n\n    return resolvedLockId.future.whenComplete(() {\n      _removeAbortableOperation(started);\n    });\n  }\n\n  void releaseLock(int id) {\n    if (_heldLock?.$1 != id) {\n      throw StateError('Lock to be released is not active.');\n    }\n\n    _heldLock!.$2.complete();\n    _heldLock = null;\n  }\n}\n\nfinal class _ClientConnection extends ProtocolChannel\n    implements ClientConnection {\n  final WorkerRunner _runner;\n  final List<_ConnectionDatabase> _openedDatabases = [];\n\n  @override\n  final int id;\n\n  _ClientConnection({\n    required WorkerRunner runner,\n    required StreamChannel<Message> channel,\n    required this.id,\n  }) : _runner = runner,\n       super(channel) {\n    closed.whenComplete(() async {\n      for (final id in _openedDatabases) {\n        await id.close();\n      }\n      _openedDatabases.clear();\n    });\n  }\n\n  Future<Response> _handleCompatibilityCheck(\n    CompatibilityCheck request,\n    AbortSignal abortSignal,\n  ) async {\n    return newSimpleSuccessResponse(\n      response: (await _runner.checkCompatibility(request)).toJS,\n      requestId: request.requestId,\n    );\n  }\n\n  @override\n  FutureOr<Response> handleDedicatedCompatibilityCheck(\n    DedicatedCompatibilityCheck request,\n    AbortSignal abortSignal,\n  ) {\n    return _handleCompatibilityCheck(request, abortSignal);\n  }\n\n  @override\n  FutureOr<Response> handleDedicatedInSharedCompatibilityCheck(\n    DedicatedInSharedCompatibilityCheck request,\n    AbortSignal abortSignal,\n  ) {\n    return _handleCompatibilityCheck(request, abortSignal);\n  }\n\n  @override\n  FutureOr<Response> handleSharedCompatibilityCheck(\n    SharedCompatibilityCheck request,\n    AbortSignal abortSignal,\n  ) {\n    return _handleCompatibilityCheck(request, abortSignal);\n  }\n\n  @override\n  Future<Response> handleConnect(\n    ConnectRequest request,\n    AbortSignal abortSignal,\n  ) async {\n    // This is only used to let clients connect to a dedicated worker hosted in\n    // this shared worker.\n    final inner = _runner._innerWorker!;\n    newConnectRequest(\n      endpoint: request.endpoint,\n      requestId: 0,\n      databaseId: null,\n    ).sendToWorker(inner);\n\n    return newSimpleSuccessResponse(\n      response: null,\n      requestId: request.requestId,\n    );\n  }\n\n  @override\n  Future<Response> handleCustom(\n    CustomRequest request,\n    AbortSignal abortSignal,\n  ) async {\n    JSAny? response;\n\n    if (request.databaseId case final id?) {\n      final database = _databaseById(id);\n      final lockId = request.lockId;\n      final wrapped = CustomClientDatabaseRequest(\n        request: request.payload,\n        abortSignal: abortSignal,\n        useLock: <T>(block) {\n          return database.useLock(lockId, abortSignal, block);\n        },\n      );\n\n      response = await (await database.database.opened).handleCustomRequest(\n        this,\n        wrapped,\n      );\n    } else {\n      response = await _runner._controller.handleCustomRequest(\n        this,\n        CustomClientRequest(request: request, abortSignal: abortSignal),\n      );\n    }\n\n    return newSimpleSuccessResponse(\n      requestId: request.requestId,\n      response: response,\n    );\n  }\n\n  @override\n  Future<Response> handleOpen(\n    OpenRequest request,\n    AbortSignal abortSignal,\n  ) async {\n    await _runner.loadWasmModule(Uri.parse(request.wasmUri));\n    DatabaseState? database;\n    _ConnectionDatabase? connectionDatabase;\n\n    try {\n      database = _runner.findDatabase(\n        request.databaseName,\n        FileSystemImplementation.fromJS(request.storageMode),\n        request.additionalData,\n      );\n\n      await (request.onlyOpenVfs ? database.vfs : database.opened);\n\n      connectionDatabase = _ConnectionDatabase(database);\n      _openedDatabases.add(connectionDatabase);\n\n      return newSimpleSuccessResponse(\n        response: database.id.toJS,\n        requestId: request.requestId,\n      );\n    } catch (e) {\n      if (database != null) {\n        _openedDatabases.remove(connectionDatabase);\n        await database.decrementRefCount();\n      }\n\n      rethrow;\n    }\n  }\n\n  @override\n  Future<Response> handleRunQuery(\n    RunQuery request,\n    AbortSignal abortSignal,\n  ) async {\n    final database = _requireDatabase(request);\n    final openedDatabase = await database.database.opened;\n\n    return database.useLock(request.lockId, abortSignal, () {\n      final db = openedDatabase.database;\n\n      if (request.checkInTransaction && db.autocommit) {\n        throw StateError('Database is not in a transaction');\n      }\n\n      final parameters = TypeCode.decodeValues(\n        request.parameters,\n        request.typeVector,\n      );\n\n      ResultSet? resultSet;\n      if (request.returnRows) {\n        resultSet = db.select(request.sql, parameters);\n\n        return RowsResponseUtils.wrapResultSet(\n          request.requestId,\n          resultSet: resultSet,\n          autoCommit: db.autocommit,\n          lastInsertRowId: db.lastInsertRowId,\n        );\n      } else {\n        db.execute(request.sql, parameters);\n\n        return newRowsResponse(\n          columnNames: null,\n          tableNames: null,\n          typeVector: null,\n          rows: null,\n          autoCommit: db.autocommit,\n          lastInsertRowId: db.lastInsertRowId,\n          requestId: request.requestId,\n        );\n      }\n    });\n  }\n\n  @override\n  Future<Response> handleExclusiveLock(\n    RequestExclusiveLock request,\n    AbortSignal abortSignal,\n  ) async {\n    final database = _requireDatabase(request);\n    final lock = await database.obtainLockAsync(abortSignal);\n    return newSimpleSuccessResponse(\n      response: lock.toJS,\n      requestId: request.requestId,\n    );\n  }\n\n  @override\n  Response handleReleaseLock(ReleaseLock request, AbortSignal abortSignal) {\n    final database = _requireDatabase(request);\n    database.releaseLock(request.lockId);\n    return newSimpleSuccessResponse(\n      response: null,\n      requestId: request.requestId,\n    );\n  }\n\n  @override\n  FutureOr<Response> handleCommitRequest(\n    CommitsStreamRequest request,\n    AbortSignal abortSignal,\n  ) async {\n    final database = _requireDatabase(request);\n    if (request.action) {\n      return await subscribe(database.commits, () async {\n        final rawDatabase = await database.database.opened;\n        return rawDatabase.database.commits.listen((event) {\n          sendNotification(newCommitNotification(databaseId: database.id));\n        });\n      }, request);\n    } else {\n      database.commits.cancel();\n\n      return newSimpleSuccessResponse(\n        response: null,\n        requestId: request.requestId,\n      );\n    }\n  }\n\n  @override\n  FutureOr<Response> handleRollbackRequest(\n    RollbackStreamRequest request,\n    AbortSignal abortSignal,\n  ) async {\n    final database = _requireDatabase(request);\n    if (request.action) {\n      return await subscribe(database.rollbacks, () async {\n        final rawDatabase = await database.database.opened;\n        return rawDatabase.database.rollbacks.listen((event) {\n          sendNotification(newRollbackNotification(databaseId: database.id));\n        });\n      }, request);\n    } else {\n      database.rollbacks.cancel();\n\n      return newSimpleSuccessResponse(\n        response: null,\n        requestId: request.requestId,\n      );\n    }\n  }\n\n  @override\n  FutureOr<Response> handleUpdateRequest(\n    UpdateStreamRequest request,\n    AbortSignal abortSignal,\n  ) async {\n    final database = _requireDatabase(request);\n    if (request.action) {\n      return await subscribe(database.updates, () async {\n        final rawDatabase = await database.database.opened;\n        return rawDatabase.database.updates.listen((event) {\n          sendNotification(\n            newUpdateNotification(\n              updateKind: event.kind.index,\n              rowId: event.rowId,\n              updateTableName: event.tableName,\n              databaseId: database.id,\n            ),\n          );\n        });\n      }, request);\n    } else {\n      database.updates.cancel();\n\n      return newSimpleSuccessResponse(\n        response: null,\n        requestId: request.requestId,\n      );\n    }\n  }\n\n  @override\n  Future<Response> handleOpenAdditionalConnection(\n    OpenAdditionalConnection request,\n    AbortSignal abortSignal,\n  ) async {\n    final database = _requireDatabase(request).database;\n    database.refCount++;\n    final (endpoint, channel) = await createChannel();\n\n    final client = _runner._accept(channel);\n    client._openedDatabases.add(_ConnectionDatabase(database, 0));\n\n    return newEndpointResponse(\n      requestId: request.requestId,\n      endpoint: endpoint,\n    );\n  }\n\n  @override\n  Future<Response> handleCloseDatabase(\n    CloseDatabase request,\n    AbortSignal abortSignal,\n  ) async {\n    final database = _requireDatabase(request);\n    _openedDatabases.remove(database);\n    await database.close();\n    return newSimpleSuccessResponse(\n      response: null,\n      requestId: request.requestId,\n    );\n  }\n\n  @override\n  Future<Response> handleFileSystemFlush(\n    FileSystemFlushRequest request,\n    AbortSignal abortSignal,\n  ) async {\n    if (await _requireDatabase(request).database.vfs\n        case IndexedDbFileSystem idb) {\n      await idb.flush();\n    }\n\n    return newSimpleSuccessResponse(\n      response: null,\n      requestId: request.requestId,\n    );\n  }\n\n  @override\n  Future<Response> handleFileSystemAccess(\n    FileSystemAccess request,\n    AbortSignal abortSignal,\n  ) async {\n    final database = _requireDatabase(request);\n    final fsType = FileType.values[request.fsType];\n    final buffer = request.buffer;\n\n    final vfs = await database.database.vfs;\n    final file = vfs\n        .xOpen(Sqlite3Filename(fsType.pathInVfs), SqlFlag.SQLITE_OPEN_CREATE)\n        .file;\n\n    try {\n      if (buffer != null) {\n        final asDartBuffer = buffer.toDart;\n        file.xTruncate(asDartBuffer.lengthInBytes);\n        file.xWrite(asDartBuffer.asUint8List(), 0);\n\n        return newSimpleSuccessResponse(\n          response: null,\n          requestId: request.requestId,\n        );\n      } else {\n        final buffer = Uint8List(file.xFileSize());\n        file.xRead(buffer, 0);\n\n        return newSimpleSuccessResponse(\n          response: buffer.buffer.toJS,\n          requestId: request.requestId,\n        );\n      }\n    } finally {\n      file.xClose();\n    }\n  }\n\n  @override\n  FutureOr<Response> handleFileSystemExists(\n    FileSystemExistsQuery request,\n    AbortSignal abortSignal,\n  ) async {\n    final database = _requireDatabase(request);\n    final vfs = await database.database.vfs;\n    final exists =\n        vfs.xAccess(FileType.values[request.fsType].pathInVfs, 0) == 1;\n\n    return newSimpleSuccessResponse(\n      response: exists.toJS,\n      requestId: request.requestId,\n    );\n  }\n\n  Future<Response> subscribe(\n    _StreamState state,\n    Future<StreamSubscription<void>> Function() subscribeInternally,\n    StreamRequest request,\n  ) async {\n    state.subscription ??= await subscribeInternally();\n    return newSimpleSuccessResponse(\n      response: null,\n      requestId: request.requestId,\n    );\n  }\n\n  @override\n  void handleNotification(Notification notification) {\n    // There aren't supposed to be any notifications from the client.\n  }\n\n  @override\n  Future<JSAny?> customRequest(JSAny? request) async {\n    final response = await sendRequest(\n      newCustomRequest(\n        requestId: 0,\n        payload: request,\n        databaseId: null,\n        lockId: null,\n      ),\n      MessageType.simpleSuccessResponse,\n    );\n    return response.response;\n  }\n\n  _ConnectionDatabase _databaseById(int id) {\n    return _openedDatabases.firstWhere((e) => e.id == id);\n  }\n\n  _ConnectionDatabase _requireDatabase(Request request) {\n    if (request.databaseId case final id?) {\n      return _databaseById(id);\n    } else {\n      throw ArgumentError('Request requires database id');\n    }\n  }\n}\n\nextension on FileType {\n  String get pathInVfs => switch (this) {\n    FileType.database => '/database',\n    FileType.journal => '/database-journal',\n  };\n}\n\nfinal class DatabaseState {\n  final WorkerRunner runner;\n  final int id;\n  final String name;\n  final FileSystemImplementation mode;\n  final JSAny? additionalOptions;\n  final DatabaseLocks locks;\n  int refCount = 1;\n\n  Future<WorkerDatabase>? _database;\n  Future<void>? _openVfs;\n  VirtualFileSystem? _resolvedVfs;\n\n  /// Runs additional async work, such as flushing the VFS to IndexedDB when\n  /// the database is closed.\n  FutureOr<void> Function()? closeHandler;\n\n  DatabaseState({\n    required this.id,\n    required this.runner,\n    required this.name,\n    required this.mode,\n    required this.additionalOptions,\n  }) : locks = DatabaseLocks('pkg-sqlite3-web-$name', mode.needsExternalLocks);\n\n  String get vfsName => 'vfs-web-$id';\n\n  Future<VirtualFileSystem> get vfs async {\n    await (_openVfs ??= Future.sync(() async {\n      switch (mode) {\n        case FileSystemImplementation.opfsAtomics:\n          final options = WasmVfs.createOptions(root: pathForOpfs(name));\n          final worker = runner._environment.connector.spawnDedicatedWorker()!;\n\n          newStartFileSystemServer(options: options).sendToWorker(worker);\n\n          // Wait for the server worker to report that it's ready\n          await EventStreamProviders.messageEvent\n              .forTarget(worker.targetForErrorEvents)\n              .first;\n\n          final wasmVfs = _resolvedVfs = WasmVfs(\n            workerOptions: options,\n            vfsName: vfsName,\n          );\n          closeHandler = wasmVfs.close;\n        case FileSystemImplementation.opfsShared:\n          final simple = _resolvedVfs =\n              await SimpleOpfsFileSystem.loadFromStorage(\n                pathForOpfs(name),\n                vfsName: vfsName,\n              );\n          closeHandler = simple.close;\n        case FileSystemImplementation.opfsExternalLocks:\n          final simple = _resolvedVfs =\n              await SimpleOpfsFileSystem.loadFromStorage(\n                pathForOpfs(name),\n                vfsName: vfsName,\n                readWriteUnsafe: true,\n              );\n          closeHandler = simple.close;\n        case FileSystemImplementation.indexedDb:\n          final idb = _resolvedVfs = await IndexedDbFileSystem.open(\n            dbName: name,\n            vfsName: vfsName,\n          );\n          closeHandler = idb.close;\n        case FileSystemImplementation.inMemory:\n          _resolvedVfs = InMemoryFileSystem(name: vfsName);\n      }\n    }));\n\n    return _resolvedVfs!;\n  }\n\n  Future<WorkerDatabase> get opened async {\n    final database = _database ??= Future.sync(() async {\n      final sqlite3 = await runner._sqlite3!;\n      final fileSystem = await vfs;\n\n      sqlite3.registerVirtualFileSystem(fileSystem);\n      return await locks.lock(() {\n        return runner._controller.openDatabase(\n          sqlite3,\n          // We're currently using /database as the in-VFS path. This is because\n          // we need to pre-open persistent files in SimpleOpfsFileSystem, and\n          // that VFS only stores `/database` and `/database-journal`.\n          // We still provide support for multiple databases by keeping multiple\n          // VFS instances around.\n          '/database',\n          vfsName,\n          additionalOptions,\n        );\n      }, null);\n    });\n\n    return await database;\n  }\n\n  Future<void> decrementRefCount() async {\n    if (--refCount == 0) {\n      await close();\n    }\n  }\n\n  Future<void> close() async {\n    final sqlite3 = await runner._sqlite3!;\n    final database = await _database!;\n\n    database.database.close();\n    if (_resolvedVfs case final vfs?) {\n      sqlite3.unregisterVirtualFileSystem(vfs);\n    }\n\n    await closeHandler?.call();\n  }\n}\n\nfinal class WorkerRunner {\n  final WorkerEnvironment _environment;\n  final DatabaseController _controller;\n\n  final List<_ClientConnection> _connections = [];\n  var _nextConnectionId = 0;\n\n  final Map<int, DatabaseState> openedDatabases = {};\n  var _nextDatabaseId = 0;\n\n  Future<WasmSqlite3>? _sqlite3;\n  Uri? _wasmUri;\n\n  final Mutex _compatibilityCheck = Mutex();\n  CompatibilityResult? _compatibilityResult;\n\n  /// For shared workers, a dedicated inner worker allowing tabs to connect to\n  /// a shared context that can use synchronous JS APIs.\n  late final WorkerHandle? _innerWorker = _environment.connector\n      .spawnDedicatedWorker();\n\n  WorkerRunner(this._controller, this._environment);\n\n  void handleRequests() async {\n    await for (final message in _environment.topLevelRequests) {\n      if (message.type == MessageType.connect.name) {\n        final channel = (message as ConnectRequest).endpoint.connect();\n        _accept(channel);\n      } else if (message.type == MessageType.startFileSystemServer.name) {\n        final worker = await VfsWorker.create(\n          (message as StartFileSystemServer).options,\n        );\n        // Inform the requester that the VFS is ready\n        (globalContext as DedicatedWorkerGlobalScope).postMessage(true.toJS);\n        await worker.start();\n      } else if (isCompatibilityCheck(message.type)) {\n        // A compatibility check message is sent to dedicated workers inside of\n        // shared workers, we respond through the top-level port.\n        final result = await checkCompatibility(message as CompatibilityCheck);\n        (globalContext as DedicatedWorkerGlobalScope).postMessage(result.toJS);\n      }\n    }\n  }\n\n  _ClientConnection _accept(StreamChannel<Message> channel) {\n    final connection = _ClientConnection(\n      runner: this,\n      channel: channel,\n      id: _nextConnectionId++,\n    );\n    _connections.add(connection);\n    connection.closed.whenComplete(() => _connections.remove(connection));\n\n    return connection;\n  }\n\n  Future<CompatibilityResult> checkCompatibility(CompatibilityCheck check) {\n    return _compatibilityCheck.withCriticalSection(() async {\n      if (_compatibilityResult != null) {\n        // todo: We may have to update information about existing databases\n        // as they come and go\n        return _compatibilityResult!;\n      }\n\n      var supportsOpfs = false;\n      var opfsSupportsReadWriteUnsafe = false;\n      final databaseName = check.databaseName;\n      if (check.shouldCheckOpfsCompatibility) {\n        (\n          basicSupport: supportsOpfs,\n          supportsReadWriteUnsafe: opfsSupportsReadWriteUnsafe,\n        ) = await checkOpfsSupport();\n      }\n\n      final supportsIndexedDb = check.shouldCheckIndexedDbCompatbility\n          ? await checkIndexedDbSupport()\n          : false;\n\n      var sharedCanSpawnDedicated = false;\n      final existingDatabases = <ExistingDatabase>{};\n\n      if (check.type == MessageType.sharedCompatibilityCheck.name) {\n        if (_innerWorker case final innerWorker?) {\n          sharedCanSpawnDedicated = true;\n\n          newDedicatedInSharedCompatibilityCheck(\n            databaseName: databaseName,\n            requestId: 0,\n          ).sendToWorker(innerWorker);\n\n          final response = await EventStreamProviders.messageEvent\n              .forTarget(innerWorker.targetForErrorEvents)\n              .first;\n          final result = CompatibilityResult.fromJS(response.data as JSObject);\n\n          supportsOpfs = result.canUseOpfs;\n          opfsSupportsReadWriteUnsafe = result.opfsSupportsReadWriteUnsafe;\n          existingDatabases.addAll(result.existingDatabases);\n        }\n      }\n\n      if (supportsOpfs) {\n        for (final database in await opfsDatabases()) {\n          existingDatabases.add((StorageMode.opfs, database));\n        }\n      }\n      if (supportsIndexedDb && databaseName != null) {\n        if (await checkIndexedDbExists(databaseName)) {\n          existingDatabases.add((StorageMode.indexedDb, databaseName));\n        }\n      }\n\n      return CompatibilityResult(\n        existingDatabases: existingDatabases.toList(),\n        sharedCanSpawnDedicated: sharedCanSpawnDedicated,\n        canUseOpfs: supportsOpfs,\n        opfsSupportsReadWriteUnsafe: opfsSupportsReadWriteUnsafe,\n        canUseIndexedDb: supportsIndexedDb,\n        supportsSharedArrayBuffers: globalContext.has('SharedArrayBuffer'),\n        dedicatedWorkersCanNest: globalContext.has('Worker'),\n      );\n    });\n  }\n\n  Future<void> loadWasmModule(Uri uri) async {\n    if (_sqlite3 != null) {\n      if (_wasmUri != uri) {\n        throw StateError(\n          'Workers only support a single sqlite3 wasm module, provided '\n          'different URI (has $_wasmUri, got $uri)',\n        );\n      }\n\n      await _sqlite3;\n    } else {\n      final future = _sqlite3 = _controller.loadWasmModule(uri).onError((\n        error,\n        stackTrace,\n      ) {\n        _sqlite3 = null;\n        throw error!;\n      });\n      await future;\n      _wasmUri = uri;\n    }\n  }\n\n  DatabaseState findDatabase(\n    String name,\n    FileSystemImplementation mode,\n    JSAny? additionalOptions,\n  ) {\n    for (final existing in openedDatabases.values) {\n      if (existing.refCount != 0 &&\n          existing.name == name &&\n          existing.mode == mode) {\n        existing.refCount++;\n        return existing;\n      }\n    }\n\n    final id = _nextDatabaseId++;\n    return openedDatabases[id] = DatabaseState(\n      id: id,\n      runner: this,\n      name: name,\n      mode: mode,\n      additionalOptions: additionalOptions,\n    );\n  }\n}\n\ntypedef OpfsSupport = ({bool basicSupport, bool supportsReadWriteUnsafe});\n\n/// Checks whether the OPFS API is likely to be correctly implemented in the\n/// current browser.\n///\n/// Since OPFS uses the synchronous file system access API, this method can only\n/// return true when called in a dedicated worker.\nFuture<OpfsSupport> checkOpfsSupport() async {\n  const noSupport = (basicSupport: false, supportsReadWriteUnsafe: false);\n  final storage = storageManager;\n\n  if (storage == null) return noSupport;\n\n  const testFileName = '_drift_feature_detection';\n\n  FileSystemDirectoryHandle? opfsRoot;\n  FileSystemFileHandle? fileHandle;\n  JSObject? openedFile;\n  var canOpenWithReadWriteUnsafe = false;\n\n  try {\n    opfsRoot = await storage.directory;\n\n    fileHandle = await opfsRoot.openFile(testFileName, create: true);\n    (canOpenWithReadWriteUnsafe, openedFile) =\n        await _tryOpeningWithReadWriteUnsafe(fileHandle);\n\n    // In earlier versions of the OPFS standard, some methods like `getSize()`\n    // on a sync file handle have actually been asynchronous. We don't support\n    // Browsers that implement the outdated spec.\n    final getSizeResult = openedFile.callMethod('getSize'.toJS);\n    if (getSizeResult.typeofEquals('object')) {\n      // Returned a promise, that's no good.\n      await (getSizeResult as JSPromise).toDart;\n      return noSupport;\n    }\n\n    return (\n      basicSupport: true,\n      supportsReadWriteUnsafe: canOpenWithReadWriteUnsafe,\n    );\n  } on Object {\n    return noSupport;\n  } finally {\n    if (openedFile != null) {\n      (openedFile as FileSystemSyncAccessHandle).close();\n    }\n\n    if (opfsRoot != null && fileHandle != null) {\n      await opfsRoot.remove(testFileName);\n    }\n  }\n}\n\nFuture<(bool, FileSystemSyncAccessHandle)> _tryOpeningWithReadWriteUnsafe(\n  FileSystemFileHandle handle,\n) async {\n  FileSystemSyncAccessHandle? opened;\n\n  try {\n    // First, try opening with readwrite-unsafe\n    opened = await ProposedLockingSchemeApi(handle)\n        .createSyncAccessHandle(\n          FileSystemCreateSyncAccessHandleOptions.unsafeReadWrite(),\n        )\n        .toDart;\n\n    // The mode is supported if we can do it again (that means no lock has been\n    // applied).\n    final openedAgain = await ProposedLockingSchemeApi(handle)\n        .createSyncAccessHandle(\n          FileSystemCreateSyncAccessHandleOptions.unsafeReadWrite(),\n        )\n        .toDart;\n    openedAgain.close();\n\n    return (true, opened);\n  } catch (e) {\n    opened?.close();\n\n    // Fallback to opening without the special option.\n    final sync = await handle.createSyncAccessHandle().toDart;\n    return (false, sync);\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/lib/src/worker_connector.dart",
    "content": "/// @docImport 'database.dart';\nlibrary;\n\nimport 'dart:async';\nimport 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\n\nimport 'package:web/web.dart';\n\n/// Environment for workers hosting SQLite databases.\n\nabstract interface class WorkerEnvironment {\n  /// A connector that can be used to spawn nested workers, if that feature is\n  /// available in the current context.\n  WorkerConnector get connector;\n\n  /// Incoming messages.\n  ///\n  /// For dedicated workers, this would be all messages received on the\n  /// [DedicatedWorkerGlobalScope]. For shared workers, all messages received on\n  /// connecting ports.\n  Stream<MessageEvent> get incomingMessages;\n\n  /// The default environment for the current worker context.\n  ///\n  /// This should only be called in Dart programs compiled to workers.\n  factory WorkerEnvironment() {\n    final context = globalContext;\n    if (context.instanceOfString('DedicatedWorkerGlobalScope')) {\n      return _DedicatedWorkerEnvironment();\n    } else {\n      return _SharedWorkerEnvironment();\n    }\n  }\n}\n\nabstract class _WorkerEnvironment<T extends WorkerGlobalScope>\n    implements WorkerEnvironment {\n  final T scope;\n\n  @override\n  final WorkerConnector connector = WorkerConnector.defaultWorkers(Uri.base);\n\n  _WorkerEnvironment() : scope = globalContext as T;\n}\n\nfinal class _DedicatedWorkerEnvironment\n    extends _WorkerEnvironment<DedicatedWorkerGlobalScope> {\n  @override\n  Stream<MessageEvent> get incomingMessages {\n    return EventStreamProviders.messageEvent.forTarget(scope);\n  }\n}\n\nfinal class _SharedWorkerEnvironment\n    extends _WorkerEnvironment<SharedWorkerGlobalScope> {\n  @override\n  Stream<MessageEvent> get incomingMessages {\n    // Listen for connect events, then watch each connected port to send a a\n    // connect message.\n    // Tabs will only use one message port to this worker, but may use multiple\n    // connections for different databases. So we're not using the connect port\n    // for the actual connection and instead wait for clients to send message\n    // ports through the connect port.\n    return Stream.multi((listener) {\n      final connectPorts = <MessagePort>[];\n      final subscriptions = <StreamSubscription>[];\n\n      void handlePort(MessagePort port) {\n        connectPorts.add(port);\n        port.start();\n\n        subscriptions.add(\n          EventStreamProviders.messageEvent.forTarget(port).listen((event) {\n            listener.addSync(event);\n          }),\n        );\n      }\n\n      subscriptions.add(\n        EventStreamProviders.connectEvent.forTarget(scope).listen((event) {\n          for (final port in (event as MessageEvent).ports.toDart) {\n            handlePort(port);\n          }\n        }),\n      );\n\n      listener.onCancel = () {\n        for (final subscription in subscriptions) {\n          subscription.cancel();\n        }\n      };\n    });\n  }\n}\n\n/// A worker environment that isn't in an actual web worker.\n///\n/// This package uses this to connect to a local worker implementation running\n/// in the same context if workers aren't available.\nfinal class FakeWorkerEnvironment implements WorkerEnvironment, WorkerHandle {\n  @override\n  final WorkerConnector connector;\n\n  @override\n  final EventTarget targetForErrorEvents = EventTarget();\n\n  final StreamController<MessageEvent> _messages = StreamController();\n\n  FakeWorkerEnvironment([this.connector = const WorkerConnector.unsupported()]);\n\n  @override\n  Stream<MessageEvent> get incomingMessages {\n    return _messages.stream;\n  }\n\n  /// Adds a message that will show up in [incomingMessages].\n  @override\n  void postMessage(JSAny? message, [JSObject? options]) {\n    _messages.add(MessageEvent('message', MessageEventInit(data: message)));\n  }\n\n  void close() {\n    _messages.close();\n  }\n}\n\n/// An interface abstracting over `Worker` and `SharedWorker` constructors,\n/// allowing clients of `sqlite3_web` to customize if and how workers are used.\nabstract interface class WorkerConnector {\n  /// Spawn a new shared database worker, or returns `null` if dedicated workers\n  /// aren't supported.\n  WorkerHandle? spawnDedicatedWorker();\n\n  /// Spawn a new shared database worker, or returns `null` if shared workers\n  /// aren't supported.\n  WorkerHandle? spawnSharedWorker();\n\n  /// The default implementation, spawning workers with the [Worker] and\n  /// [SharedWorker] constructors.\n  ///\n  /// The [uri] must point to a compiled Dart program using\n  /// [WebSqlite.workerEntrypoint] to receive messages.\n  factory WorkerConnector.defaultWorkers(Uri uri) {\n    return _DefaultWorkerConnector(uri);\n  }\n\n  /// A [WorkerConnector] implementation that doesn't allow the use of workers.\n  const factory WorkerConnector.unsupported() = _WithoutWorkers;\n}\n\n/// Handle to a shared or dedicated web worker.\nabstract interface class WorkerHandle {\n  /// The web [EventTarget] representing the worker.\n  ///\n  /// This package will listen for errors on this target. Errors are assumed to\n  /// be fatal and unhandled errors from the worker and will lead to the\n  /// connection closing.\n  EventTarget get targetForErrorEvents;\n\n  /// Posts a JavaScript value as a message to this worker (or, for shared\n  /// workers, the respective port).\n  ///\n  /// This method can wrap the message to send in another structure, allowing a\n  /// single worker file to handle both `sqlite3_web` and other tasks.\n  void postMessage(JSAny? msg, JSObject transfer);\n}\n\nfinal class _DefaultWorkerConnector implements WorkerConnector {\n  final Uri _worker;\n\n  _DefaultWorkerConnector(this._worker);\n\n  @override\n  WorkerHandle? spawnDedicatedWorker() {\n    if (!globalContext.has('Worker')) {\n      return null;\n    }\n\n    return _DedicatedWorker(\n      Worker(_worker.toString().toJS, WorkerOptions(name: 'sqlite3_worker')),\n    );\n  }\n\n  @override\n  WorkerHandle? spawnSharedWorker() {\n    if (!globalContext.has('SharedWorker')) {\n      return null;\n    }\n\n    final worker = SharedWorker(_worker.toString().toJS);\n    worker.port.start();\n    return _SharedWorker(worker);\n  }\n}\n\nfinal class _WithoutWorkers implements WorkerConnector {\n  const _WithoutWorkers();\n\n  @override\n  WorkerHandle? spawnDedicatedWorker() {\n    return null;\n  }\n\n  @override\n  WorkerHandle? spawnSharedWorker() {\n    return null;\n  }\n}\n\nfinal class _DedicatedWorker implements WorkerHandle {\n  final Worker _worker;\n\n  _DedicatedWorker(this._worker);\n\n  @override\n  void postMessage(JSAny? msg, JSObject transfer) {\n    _worker.postMessage(msg, transfer);\n  }\n\n  @override\n  EventTarget get targetForErrorEvents => _worker;\n}\n\nfinal class _SharedWorker implements WorkerHandle {\n  final SharedWorker _worker;\n\n  _SharedWorker(this._worker);\n\n  @override\n  void postMessage(JSAny? msg, JSObject transfer) {\n    _worker.port.postMessage(msg, transfer);\n  }\n\n  @override\n  EventTarget get targetForErrorEvents => _worker;\n}\n"
  },
  {
    "path": "sqlite3_web/pubspec.yaml",
    "content": "name: sqlite3_web\ndescription: Utilities to simplify accessing sqlite3 on the web, with automated feature detection.\nversion: 0.7.0\nhomepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_web\nrepository: https://github.com/simolus3/sqlite3.dart\nresolution: workspace\n\nenvironment:\n  sdk: '>=3.10.0 <4.0.0'\n\ndependencies:\n  meta: ^1.11.0\n  sqlite3: ^3.0.0\n  stream_channel: ^2.1.2\n  web: ^1.0.0\n\ndev_dependencies:\n  lints: ^6.0.0\n  test: ^1.25.5\n  build_web_compilers: ^4.1.0\n  build_runner: ^2.4.8\n  build_daemon: ^4.0.2\n  webdriver: ^3.0.3\n  shelf: ^1.4.1\n  shelf_proxy: ^1.0.4\n  package_config: ^2.1.0\n  path: ^1.9.0\n  collection: ^1.18.0\n  async: ^2.11.0\n  shelf_static: ^1.1.3\n\n  # For benchmarks\n  jaspr: ^0.23.0\n  jaspr_riverpod: ^0.4.3\n  http: ^1.6.0\n\n  # For the protocol generator\n  analyzer: ^12.0.0\n  dart_style: ^3.1.5\n  pub_semver: ^2.2.0\n"
  },
  {
    "path": "sqlite3_web/test/asset_server.dart",
    "content": "import 'dart:io';\n\nimport 'package:shelf/shelf.dart';\nimport 'package:shelf/shelf_io.dart' as io;\nimport 'package:shelf_static/shelf_static.dart';\nimport 'package:stream_channel/stream_channel.dart';\n\nconst _corsHeaders = {'Access-Control-Allow-Origin': '*'};\n\nMiddleware cors() {\n  Response? handleOptionsRequest(Request request) {\n    if (request.method == 'OPTIONS') {\n      return Response.ok(null, headers: _corsHeaders);\n    } else {\n      // Returning null will run the regular request handler\n      return null;\n    }\n  }\n\n  Response addCorsHeaders(Response response) {\n    return response.change(headers: _corsHeaders);\n  }\n\n  return createMiddleware(\n    requestHandler: handleOptionsRequest,\n    responseHandler: addCorsHeaders,\n  );\n}\n\nFuture<void> hybridMain(StreamChannel<Object?> channel) async {\n  final server = await HttpServer.bind('localhost', 0);\n\n  final handler = const Pipeline()\n      .addMiddleware(cors())\n      .addHandler(createStaticHandler('.'));\n  io.serveRequests(server, handler);\n\n  channel.sink.add(server.port);\n  await channel.stream\n      .listen(null)\n      .asFuture<void>()\n      .then<void>((_) => server.close());\n}\n"
  },
  {
    "path": "sqlite3_web/test/client_test.dart",
    "content": "@TestOn('browser')\nlibrary;\n\nimport 'package:sqlite3_web/sqlite3_web.dart';\nimport 'package:sqlite3_web/src/client.dart';\nimport 'package:test/test.dart';\n\nvoid main() {\n  test('finds preferrable implementations', () {\n    final all = DatabaseImplementation.values.toList();\n\n    all.shuffle();\n    all.sort(DatabaseClient.preferrableMode);\n\n    expect(all, [\n      DatabaseImplementation.opfsShared,\n      DatabaseImplementation.opfsWithExternalLocks,\n      DatabaseImplementation.opfsAtomics,\n      DatabaseImplementation.indexedDbShared,\n      DatabaseImplementation.indexedDbUnsafeWorker,\n      DatabaseImplementation.indexedDbUnsafeLocal,\n      DatabaseImplementation.inMemoryShared,\n      DatabaseImplementation.inMemoryLocal,\n    ]);\n  });\n}\n"
  },
  {
    "path": "sqlite3_web/test/integration_test.dart",
    "content": "@TestOn('vm')\n@Tags(['webdriver'])\nlibrary;\n\nimport 'dart:async';\nimport 'dart:io';\n\nimport 'package:sqlite3_web/src/types.dart';\nimport 'package:test/test.dart';\nimport 'package:webdriver/async_io.dart';\nimport 'package:webdriver/support/async.dart';\n\nimport '../tool/server.dart';\n\nenum Browser {\n  chrome(\n    driverUriString: 'http://localhost:4444/wd/hub/',\n    isChromium: true,\n    unsupportedImplementations: {DatabaseImplementation.opfsShared},\n    missingFeatures: {MissingBrowserFeature.dedicatedWorkersInSharedWorkers},\n    defaultImplementation: DatabaseImplementation.opfsWithExternalLocks,\n  ),\n  firefox(\n    driverUriString: 'http://localhost:4444/',\n    defaultImplementation: DatabaseImplementation.opfsShared,\n    unsupportedImplementations: {DatabaseImplementation.opfsWithExternalLocks},\n    missingFeatures: {\n      MissingBrowserFeature.createSyncAccessHandleReadWriteUnsafe,\n    },\n  );\n\n  final bool isChromium;\n  final String driverUriString;\n  final Set<DatabaseImplementation> unsupportedImplementations;\n  final Set<MissingBrowserFeature> missingFeatures;\n  final DatabaseImplementation defaultImplementation;\n\n  const Browser({\n    required this.driverUriString,\n    required this.defaultImplementation,\n    this.isChromium = false,\n    this.unsupportedImplementations = const {},\n    this.missingFeatures = const {},\n  });\n\n  Uri get driverUri => Uri.parse(driverUriString);\n\n  Set<DatabaseImplementation> get availableImplementations {\n    return DatabaseImplementation.values.where(supports).toSet();\n  }\n\n  bool supports(DatabaseImplementation impl) =>\n      !unsupportedImplementations.contains(impl);\n\n  Future<Process> spawnDriver() async {\n    return switch (this) {\n      firefox => Process.start('geckodriver', []).then((result) async {\n        // geckodriver seems to take a while to initialize\n        await Future.delayed(const Duration(seconds: 1));\n        return result;\n      }),\n      chrome => Process.start('chromedriver', [\n        '--port=4444',\n        '--url-base=/wd/hub',\n      ]),\n    };\n  }\n}\n\nvoid main() {\n  late TestAssetServer server;\n\n  setUpAll(() async {\n    server = await TestAssetServer.start();\n  });\n  tearDownAll(() => server.close());\n\n  for (final browser in Browser.values) {\n    group(browser.name, () {\n      late Process driverProcess;\n      var isStoppingProcess = false;\n      final processStopped = Completer<void>();\n\n      setUpAll(() async {\n        final process = driverProcess = await browser.spawnDriver();\n        process.exitCode.then((code) {\n          if (!isStoppingProcess) {\n            throw 'Webdriver stopped (code $code) before tearing down tests.';\n          }\n\n          processStopped.complete();\n        });\n      });\n      tearDownAll(() {\n        isStoppingProcess = true;\n        driverProcess.kill();\n        return processStopped.future;\n      });\n\n      for (final wasm in [false, true]) {\n        group(wasm ? 'dart2wasm' : 'dart2js', () {\n          final config = _TestConfiguration(browser, () => server, wasm);\n\n          setUp(() async {\n            await config.setUp();\n          });\n          tearDown(() => config.tearDown());\n\n          config.declareTests();\n        });\n      }\n    });\n  }\n}\n\nfinal class _TestConfiguration {\n  final Browser browser;\n  final TestAssetServer Function() _server;\n  final bool isDart2Wasm;\n\n  late TestWebDriver driver;\n\n  _TestConfiguration(this.browser, this._server, this.isDart2Wasm);\n\n  TestAssetServer get server => _server();\n\n  Future<void> setUp() async {\n    late WebDriver rawDriver;\n    for (var i = 0; i < 3; i++) {\n      try {\n        rawDriver = await createDriver(\n          spec: browser.isChromium ? WebDriverSpec.JsonWire : WebDriverSpec.W3c,\n          uri: browser.driverUri,\n          desired: {\n            'goog:chromeOptions': {\n              'args': [\n                '--headless=new',\n                '--disable-search-engine-choice-screen',\n              ],\n            },\n            'moz:firefoxOptions': {\n              'args': ['-headless'],\n            },\n          },\n        );\n        break;\n      } on SocketException {\n        // webdriver server taking a bit longer to start up...\n        if (i == 2) {\n          rethrow;\n        }\n\n        await Future.delayed(const Duration(milliseconds: 500));\n      }\n    }\n\n    // logs.get() isn't supported on Firefox\n    if (browser != Browser.firefox) {\n      rawDriver.logs.get(LogType.browser).listen((entry) {\n        print('[console]: ${entry.message}');\n      });\n    }\n\n    driver = TestWebDriver(server, rawDriver);\n    await driver.driver.get(\n      isDart2Wasm ? 'http://localhost:8080/?wasm=1' : 'http://localhost:8080/',\n    );\n    await driver.waitReady();\n  }\n\n  Future<void> tearDown() async {\n    await driver.driver.quit();\n  }\n\n  void declareTests() {\n    test('compatibility check', () async {\n      // Make sure we're not testing the same compiler twice due to e.g. bugs in\n      // the loader script.\n      expect(await driver.isDart2wasm(), isDart2Wasm);\n\n      final result = await driver.probeImplementations();\n\n      expect(result.missingFeatures, browser.missingFeatures);\n      expect(result.impls, browser.availableImplementations);\n    });\n\n    test('picks recommended option', () async {\n      final implementation = await driver.openDatabase();\n      expect(implementation, browser.defaultImplementation);\n    });\n\n    for (final implementation in browser.availableImplementations) {\n      group(implementation.name, () {\n        test('basic tests', () async {\n          await driver.openDatabase(\n            implementation: implementation,\n            onlyOpenVfs: true,\n          );\n          await driver.assertFile(false);\n\n          expect(await driver.customRequest(), 42);\n\n          await driver.execute('CREATE TABLE foo (bar TEXT);');\n          var events = await driver.countEvents();\n          expect(events.updates, 0);\n          expect(events.commits, 0);\n          expect(events.rollbacks, 0);\n          await driver.execute(\"INSERT INTO foo (bar) VALUES ('hello');\");\n\n          await waitFor(() async {\n            events = await driver.countEvents();\n            expect(events.updates, 1);\n            expect(events.commits, 1);\n          });\n\n          expect(await driver.assertFile(true), isPositive);\n          await driver.flush();\n\n          await driver.execute('begin');\n          await driver.execute('rollback');\n\n          await waitFor(() async {\n            final events = await driver.countEvents();\n            return events.rollbacks;\n          }, matcher: 1);\n\n          if (implementation.storage != StorageMode.inMemory) {\n            await driver.driver.refresh();\n            await driver.waitReady();\n\n            await driver.openDatabase(\n              implementation: implementation,\n              onlyOpenVfs: true,\n            );\n            await driver.assertFile(true);\n\n            await driver.driver.refresh();\n            await driver.waitReady();\n            await driver.delete(implementation.storage);\n            await driver.openDatabase(\n              implementation: implementation,\n              onlyOpenVfs: true,\n            );\n            await driver.assertFile(false);\n          }\n        });\n\n        test('check large write and read', () async {\n          await driver.openDatabase(\n            implementation: implementation,\n            onlyOpenVfs: true,\n          );\n          await driver.assertFile(false);\n\n          await driver.checkReadWrite();\n        });\n      });\n    }\n\n    test('can share databases', () async {\n      await driver.testSecond();\n    });\n\n    test('re-uses IndexedDB after OPFS becomes available', () async {\n      // In 0.4.0, we've added a new OPFS implementation that would be used by\n      // default on browsers that previously only supported IndexedDB.\n      await driver.openDatabase(\n        implementation: DatabaseImplementation.indexedDbShared,\n      );\n      await driver.execute('CREATE TABLE foo (bar TEXT);');\n      await driver.closeDatabase();\n\n      await driver.driver.refresh();\n      await driver.waitReady();\n\n      final features = await driver.probeImplementations();\n      expect(features.existing, [(StorageMode.indexedDb, 'database')]);\n\n      final actualImplementation = await driver.openDatabase();\n      expect(actualImplementation.storage, StorageMode.indexedDb);\n      await driver.execute('INSERT INTO foo DEFAULT VALUES');\n    });\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/test/protocol_test.dart",
    "content": "@TestOn('browser')\nlibrary;\n\nimport 'dart:async';\nimport 'dart:js_interop';\nimport 'dart:typed_data';\n\nimport 'package:sqlite3/common.dart';\nimport 'package:sqlite3_web/sqlite3_web.dart';\nimport 'package:sqlite3_web/src/channel.dart';\nimport 'package:sqlite3_web/src/protocol.dart';\nimport 'package:test/test.dart';\nimport 'package:web/src/dom/dom.dart';\n\nvoid main() {\n  late TestServer server;\n  late TestClient client;\n\n  setUp(() async {\n    final (endpoint, channel) = await createChannel();\n\n    server = TestServer(channel);\n    client = TestClient(endpoint.connect());\n  });\n\n  tearDown(() async {\n    await server.close();\n    await client.close();\n  });\n\n  group('TypeCode', () {\n    test('is compatible with dartify()', () {\n      for (final value in [\n        1,\n        3.4,\n        true,\n        null,\n        {'custom': 'object'},\n        'string',\n        Uint8List(10),\n      ]) {\n        final (_, jsified) = TypeCode.encodeValue(value);\n        expect(jsified.dartify(), value);\n      }\n    });\n  });\n\n  test('serializes types in request', () async {\n    server.handleRequestFunction = expectAsync1((request) async {\n      final run = request as RunQuery;\n      expect(run.sql, 'sql');\n      final parameters = TypeCode.decodeValues(run.parameters, run.typeVector);\n      expect(parameters, [\n        1,\n        1.0,\n        true,\n        false,\n        'a string',\n        isA<Uint8List>().having((e) => e.length, 'length', 10),\n        isDart2Wasm ? 100 : BigInt.from(100),\n        null,\n        {'custom': 'object'},\n      ]);\n      if (isDart2Wasm) {\n        // Make sure we don't loose type information in the js conversion across\n        // the message ports.\n        expect(parameters[0].runtimeType, int);\n        expect(parameters[1].runtimeType, double);\n      }\n\n      return newSimpleSuccessResponse(\n        requestId: request.requestId,\n        response: null,\n      );\n    });\n\n    final (serializedParams, typeVector) = TypeCode.encodeValues([\n      1,\n      1.0,\n      true,\n      false,\n      'a string',\n      Uint8List(10),\n      BigInt.from(100),\n      null,\n      {'custom': 'object'},\n    ]);\n    await client.sendRequest(\n      newRunQuery(\n        requestId: 0,\n        databaseId: 0,\n        sql: 'sql',\n        checkInTransaction: false,\n        lockId: null,\n        parameters: serializedParams,\n        typeVector: typeVector,\n        returnRows: true,\n      ),\n      MessageType.simpleSuccessResponse,\n    );\n  });\n\n  test('serializes types in response', () async {\n    server.handleRequestFunction = expectAsync1((request) async {\n      return RowsResponseUtils.wrapResultSet(\n        request.requestId,\n        resultSet: ResultSet(\n          ['a'],\n          null,\n          [\n            [1],\n            [Uint8List(10)],\n            [null],\n            ['string value'],\n          ],\n        ),\n        autoCommit: false,\n        lastInsertRowId: 0,\n      );\n    });\n\n    final response = await client.sendRequest(\n      newRunQuery(\n        requestId: 0,\n        databaseId: 0,\n        sql: 'sql',\n        lockId: null,\n        parameters: JSArray(),\n        typeVector: null,\n        returnRows: true,\n        checkInTransaction: false,\n      ),\n      MessageType.rowsResponse,\n    );\n    final resultSet = response.readResultSet()!;\n\n    expect(resultSet.length, 4);\n    expect(resultSet.map((e) => e['a']), [\n      1,\n      Uint8List(10),\n      null,\n      'string value',\n    ]);\n  });\n\n  test('can serialize SqliteExceptions', () async {\n    server.handleRequestFunction = expectAsync1((req) {\n      throw SqliteException(\n        extendedResultCode: 42,\n        message: 'test exception',\n        explanation: 'explanation',\n        causingStatement: 'causingStatement',\n        parametersToStatement: [1, null, 'a'],\n        operation: 'operation',\n        offset: 3,\n      );\n    });\n\n    await expectLater(\n      () => client.sendRequest(\n        newRunQuery(\n          requestId: 0,\n          databaseId: 0,\n          sql: 'sql',\n          lockId: null,\n          parameters: JSArray(),\n          typeVector: null,\n          returnRows: true,\n          checkInTransaction: false,\n        ),\n        MessageType.rowsResponse,\n      ),\n      throwsA(\n        isA<RemoteException>().having(\n          (e) => e.exception,\n          'exception',\n          isA<SqliteException>()\n              .having((e) => e.extendedResultCode, 'extendedResultCode', 42)\n              .having((e) => e.message, 'message', 'test exception')\n              .having((e) => e.explanation, 'explanation', 'explanation')\n              .having((e) => e.operation, 'operation', 'operation')\n              .having(\n                (e) => e.causingStatement,\n                'causingStatement',\n                'causingStatement',\n              )\n              .having((e) => e.offset, 'offset', 3)\n              .having((e) => e.parametersToStatement, 'parametersToStatement', [\n                1,\n                null,\n                'a',\n              ]),\n        ),\n      ),\n    );\n  });\n}\n\nconst isDart2Wasm = bool.fromEnvironment('dart.tool.dart2wasm');\n\nfinal class TestServer extends ProtocolChannel {\n  final StreamController<Notification> _notifications = StreamController();\n  Future<Response> Function(Request request) handleRequestFunction =\n      (req) async {\n        throw 'unsupported';\n      };\n\n  TestServer(super.channel);\n\n  Stream<Notification> get notification => _notifications.stream;\n\n  @override\n  void handleNotification(Notification notification) {\n    _notifications.add(notification);\n  }\n\n  @override\n  FutureOr<Response> handleRunQuery(RunQuery request, AbortSignal abortSignal) {\n    return handleRequestFunction(request);\n  }\n}\n\nfinal class TestClient extends ProtocolChannel {\n  TestClient(super.channel);\n\n  @override\n  void handleNotification(Notification notification) {}\n}\n"
  },
  {
    "path": "sqlite3_web/test/worker_test.dart",
    "content": "@TestOn('browser')\nlibrary;\n\nimport 'dart:async';\nimport 'dart:js_interop';\n\nimport 'package:sqlite3/common.dart';\nimport 'package:sqlite3/src/wasm/sqlite3.dart';\nimport 'package:sqlite3_web/sqlite3_web.dart';\nimport 'package:sqlite3_web/src/client.dart';\nimport 'package:test/test.dart';\n\nvoid main() {\n  late Uri sqlite3WasmUri;\n  late FakeWorkerEnvironment fakeWorkers;\n\n  setUpAll(() async {\n    final channel = spawnHybridUri('/test/asset_server.dart');\n    final port = (await channel.stream.first as double).toInt();\n    sqlite3WasmUri = Uri.parse('http://localhost:$port/web/sqlite3.wasm');\n  });\n\n  setUp(() {\n    fakeWorkers = FakeWorkerEnvironment();\n    WebSqlite.workerEntrypoint(\n      controller: _TestController(),\n      environment: fakeWorkers,\n    );\n  });\n\n  tearDown(() {\n    fakeWorkers.close();\n  });\n\n  Future<RemoteDatabase> requestDatabase(\n    String name,\n    DatabaseImplementation implementation,\n  ) async {\n    final client = WebSqlite.open(\n      workers: _FakeWorkerConnector(fakeWorkers),\n      wasmModule: sqlite3WasmUri,\n    );\n    return (await client.connect(name, implementation)) as RemoteDatabase;\n  }\n\n  test('can open database', () async {\n    final db = await requestDatabase(\n      'foo',\n      DatabaseImplementation.inMemoryShared,\n    );\n\n    final results = await db.select('SELECT 1 as r;');\n    expect(results.result, [\n      {'r': 1},\n    ]);\n  });\n\n  test('can share database between clients', () async {\n    final a = await requestDatabase(\n      'foo',\n      DatabaseImplementation.inMemoryShared,\n    );\n    final b = await requestDatabase(\n      'foo',\n      DatabaseImplementation.inMemoryShared,\n    );\n    await a.execute('CREATE TABLE foo (bar TEXT);');\n    await b.execute('INSERT INTO foo DEFAULT VALUES');\n    final results = await a.select('SELECT * FROM foo');\n    expect(results.result, hasLength(1));\n  });\n\n  test('releases resources for closed databases', () async {\n    final a = await requestDatabase(\n      'foo',\n      DatabaseImplementation.inMemoryShared,\n    );\n    await a.execute('CREATE TABLE foo (bar TEXT);');\n    await a.dispose();\n\n    final b = await requestDatabase(\n      'foo',\n      DatabaseImplementation.inMemoryShared,\n    );\n    // This would fail if the in-memory database were reused.\n    await b.execute('CREATE TABLE foo (bar TEXT);');\n  });\n\n  test('returns autocommit state', () async {\n    final a = await requestDatabase(\n      'foo',\n      DatabaseImplementation.inMemoryShared,\n    );\n    var res = await a.execute('BEGIN');\n    expect(res.autocommit, isFalse);\n\n    res = await a.execute('COMMIT');\n    expect(res.autocommit, isTrue);\n  });\n\n  test('returns last insert rowid', () async {\n    final a = await requestDatabase(\n      'foo',\n      DatabaseImplementation.inMemoryShared,\n    );\n    await a.execute('CREATE TABLE foo (bar TEXT);');\n\n    final insert = await a.execute(\n      'INSERT INTO foo (bar) VALUES (?)',\n      parameters: ['test'],\n    );\n    expect(insert.lastInsertRowid, 1);\n  });\n\n  test('check in transaction', () async {\n    final a = await requestDatabase(\n      'foo',\n      DatabaseImplementation.inMemoryShared,\n    );\n    await a.execute('CREATE TABLE foo (bar TEXT);');\n\n    await a.execute('BEGIN');\n    await a.execute(\n      'INSERT INTO foo (bar) VALUES (?)',\n      parameters: ['test'],\n      checkInTransaction: true,\n    );\n    await a.execute('COMMIT');\n\n    await expectLater(\n      a.execute('SELECT 1', checkInTransaction: true),\n      throwsA(isA<RemoteException>()),\n    );\n  });\n\n  group('locks', () {\n    late RemoteDatabase a, b;\n\n    setUp(() async {\n      a = await requestDatabase('foo', DatabaseImplementation.inMemoryShared);\n      b = await requestDatabase('foo', DatabaseImplementation.inMemoryShared);\n    });\n\n    test('run sequentially', () async {\n      final obtainedA = Completer();\n      final releaseA = Completer();\n      final obtainedB = Completer();\n\n      a.requestLock((token) async {\n        obtainedA.complete();\n        await releaseA.future;\n      });\n\n      final futureB = b.requestLock((token) async {\n        obtainedB.complete();\n      });\n\n      await obtainedA.future;\n      expect(obtainedB.isCompleted, isFalse);\n      await pumpEventQueue();\n      expect(obtainedB.isCompleted, isFalse);\n\n      releaseA.complete();\n      await obtainedB.future;\n      await futureB;\n    });\n\n    test('does not run statement while in lock', () async {\n      final queryResult = Completer<DatabaseResult<ResultSet>>();\n      var hasResults = false;\n\n      await a.requestLock((token) async {\n        // The token needs to be passed for statements to work.\n        queryResult.complete(\n          a.select('SELECT 1').whenComplete(() => hasResults = true),\n        );\n        expect(hasResults, isFalse);\n        await pumpEventQueue();\n        expect(hasResults, isFalse);\n      });\n\n      final results = await queryResult.future;\n      expect(results.result, hasLength(1));\n    });\n\n    test('can run statements in lock context', () async {\n      await a.requestLock((token) async {\n        final response = await a.select('SELECT 1', token: token);\n        expect(response.result, hasLength(1));\n\n        await a.execute('SELECT 1', token: token);\n      });\n    });\n\n    test('closing database releases lock', () async {\n      final obtainedA = Completer();\n      a.requestLock((token) async {\n        obtainedA.complete();\n        // Never complete\n        await Future.any([]);\n      });\n      await obtainedA.future;\n\n      final lockB = b.requestLock((_) async {});\n      await a.dispose();\n      await lockB;\n    });\n\n    test('can cancel lock', () async {\n      final obtainedA = Completer();\n      final releaseA = Completer();\n      final cancelB = Completer();\n\n      final lockA = a.requestLock((token) async {\n        obtainedA.complete();\n        await releaseA.future;\n      });\n\n      await obtainedA.future;\n\n      final lockB = b.requestLock((token) async {\n        fail('should not grant lock');\n      }, abortTrigger: cancelB.future);\n      await pumpEventQueue();\n      cancelB.complete();\n      await expectLater(lockB, throwsA(isA<AbortException>()));\n\n      releaseA.complete();\n      await lockA;\n    });\n\n    test('does not cancel lock after it has been granted', () async {\n      final obtainedA = Completer();\n      final releaseA = Completer();\n      final cancelA = Completer();\n\n      final lockA = a.requestLock((token) async {\n        obtainedA.complete();\n        await releaseA.future;\n      }, abortTrigger: cancelA.future);\n\n      await obtainedA.future;\n      cancelA.complete();\n      await pumpEventQueue();\n      releaseA.complete();\n      await lockA;\n    });\n\n    test('can cancel statements', () async {\n      final obtainedA = Completer();\n      final releaseA = Completer();\n\n      final lockA = a.requestLock((token) async {\n        obtainedA.complete();\n        await releaseA.future;\n      });\n\n      await obtainedA.future;\n      await expectLater(\n        b.select('SELECT 1', abortTrigger: Future.value(null)),\n        throwsA(isA<AbortException>()),\n      );\n      await expectLater(\n        b.execute('SELECT 1', abortTrigger: Future.value(null)),\n        throwsA(isA<AbortException>()),\n      );\n\n      releaseA.complete();\n      await lockA;\n    });\n\n    test('can integrate with custom requests', () async {\n      final obtainedA = Completer();\n      final releaseA = Completer();\n\n      final lockA = a.requestLock((token) async {\n        obtainedA.complete();\n        expect(\n          (await a.customRequest(null, token: token) as JSString).toDart,\n          'response',\n        );\n        await releaseA.future;\n      });\n\n      await obtainedA.future;\n      await expectLater(\n        b.customRequest(null, abortTrigger: Future.value(null)),\n        throwsA(isA<AbortException>()),\n      );\n\n      releaseA.complete();\n      await lockA;\n      expect((await a.customRequest(null) as JSString).toDart, 'response');\n    });\n  });\n}\n\nfinal class _FakeWorkerConnector implements WorkerConnector {\n  final FakeWorkerEnvironment _env;\n\n  _FakeWorkerConnector(this._env);\n\n  @override\n  WorkerHandle? spawnDedicatedWorker() {\n    return _env;\n  }\n\n  @override\n  WorkerHandle? spawnSharedWorker() {\n    return _env;\n  }\n}\n\nfinal class _TestController extends DatabaseController {\n  @override\n  Future<JSAny?> handleCustomRequest(\n    ClientConnection connection,\n    CustomClientRequest request,\n  ) {\n    throw UnimplementedError();\n  }\n\n  @override\n  Future<WorkerDatabase> openDatabase(\n    WasmSqlite3 sqlite3,\n    String path,\n    String vfs,\n    JSAny? additionalData,\n  ) async {\n    return _TestDatabase(sqlite3.open(path, vfs: vfs));\n  }\n}\n\nfinal class _TestDatabase extends WorkerDatabase {\n  @override\n  final CommonDatabase database;\n\n  _TestDatabase(this.database);\n\n  @override\n  Future<JSAny?> handleCustomRequest(\n    ClientConnection connection,\n    CustomClientDatabaseRequest request,\n  ) {\n    return request.useLock(() {\n      return 'response'.toJS;\n    });\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/tool/protocol_generator.dart",
    "content": "import 'dart:io';\n\nimport 'package:analyzer/dart/analysis/features.dart';\nimport 'package:analyzer/dart/analysis/utilities.dart';\nimport 'package:analyzer/dart/ast/ast.dart';\nimport 'package:collection/collection.dart';\nimport 'package:dart_style/dart_style.dart';\nimport 'package:pub_semver/pub_semver.dart';\n\n// This tool generates `lib/src/protocol/helper.g.dart` containing an\n// enumeration of message types and utilities to generate messages as object\n// literals.\nvoid main() {\n  final types = ProtocolMessageType.readFromDart(\n    File('lib/src/protocol/messages.dart').readAsStringSync(),\n  );\n\n  final codegen = DartCodeGenerator()..generate(types);\n  File('lib/src/protocol/helper.g.dart').writeAsStringSync(codegen.content);\n}\n\nfinal class ProtocolMessageType {\n  final String name;\n\n  /// The name of this message type in `MessageType` enum.\n  final String messageTypeName;\n  final bool isAbstract;\n  final List<ProtocolMessageField> definedFields = [];\n  final ProtocolMessageType? parent;\n\n  ProtocolMessageType({\n    required this.name,\n    required this.messageTypeName,\n    this.parent,\n    this.isAbstract = false,\n  });\n\n  String get requestMethodName {\n    final firstChar = messageTypeName.substring(0, 1);\n    final rest = messageTypeName.substring(1);\n\n    return 'handle${firstChar.toUpperCase()}$rest';\n  }\n\n  Iterable<ProtocolMessageField> get allFields sync* {\n    final fieldNames = <String>{};\n\n    ProtocolMessageType? current = this;\n    while (current != null) {\n      for (final field in current.definedFields) {\n        if (fieldNames.add(field.javaScriptName)) {\n          yield field;\n        }\n      }\n\n      current = current.parent;\n    }\n  }\n\n  bool inheritsFromName(String name) {\n    return switch (parent) {\n      null => false,\n      final parent => parent.name == name || parent.inheritsFromName(name),\n    };\n  }\n\n  static List<ProtocolMessageType> readFromDart(String source) {\n    final parsed = parseString(\n      content: source,\n      featureSet: FeatureSet.latestLanguageVersion(),\n    ).unit;\n\n    final messageTypes = <String, ProtocolMessageType>{};\n    final uniqueFieldNames = UniqueFieldNames();\n    // First, read unique field names (used to resolve @JS annotations without\n    // having to fully resolve the source file).\n    for (final declaration in parsed.declarations) {\n      if (declaration is ClassDeclaration &&\n          declaration.namePart.typeName.lexeme == '_UniqueFieldNames') {\n        uniqueFieldNames.readFrom(declaration);\n      }\n    }\n\n    for (final declaration in parsed.declarations) {\n      if (declaration is ExtensionTypeDeclaration) {\n        final implements = declaration.implementsClause;\n        if (implements == null || implements.interfaces.length != 1) {\n          continue;\n        }\n\n        final name = declaration.primaryConstructor.typeName.lexeme;\n        var isAbstract = false;\n        var messageTypeName = name;\n        for (final annotation in declaration.metadata) {\n          if (_isAnnotation(annotation, 'abstract')) {\n            isAbstract = true;\n          }\n          if (annotation.name.name == 'MessageTypeName') {\n            messageTypeName =\n                (annotation.arguments!.arguments[0] as SimpleStringLiteral)\n                    .value;\n          }\n        }\n\n        ProtocolMessageType? resolvedParentType;\n        if (name != 'Message') {\n          final parentTypeName = implements.interfaces[0].name.lexeme;\n          resolvedParentType = messageTypes[parentTypeName];\n          if (resolvedParentType == null) {\n            throw 'For $name: Could not find $parentTypeName';\n          }\n        }\n\n        final definedType = ProtocolMessageType(\n          name: name,\n          messageTypeName: messageTypeName,\n          parent: resolvedParentType,\n          isAbstract: isAbstract,\n        );\n        messageTypes[name] = definedType;\n\n        for (final definition in declaration.body.childEntities) {\n          if (definition is FieldDeclaration) {\n            String? jsName;\n            TransferMode mode = TransferMode.clone;\n            for (final annotation in definition.metadata) {\n              if (uniqueFieldNames.readJsAnnotation(annotation)\n                  case final name?) {\n                jsName = name;\n                continue;\n              }\n\n              if (_isAnnotation(annotation, 'transfer')) {\n                mode = TransferMode.move;\n              } else if (_isAnnotation(annotation, 'transferIfArrayBuffer')) {\n                mode = TransferMode.moveIfArrayBuffer;\n              }\n            }\n\n            final type = definition.fields.type!;\n            for (final field in definition.fields.variables) {\n              definedType.definedFields.add(\n                ProtocolMessageField(\n                  dartType: source.substring(type.offset, type.end),\n                  dartName: field.name.lexeme,\n                  javaScriptName: jsName ?? field.name.lexeme,\n                  isMessageType: _hasAnnotation(definition, 'isType'),\n                  transferMode: mode,\n                ),\n              );\n            }\n          }\n        }\n      }\n    }\n\n    return messageTypes.values.toList();\n  }\n\n  static bool _isAnnotation(Annotation annotation, String name) {\n    return annotation.name.name == name;\n  }\n\n  static bool _hasAnnotation(AnnotatedNode node, String name) {\n    return node.metadata.any((a) => _isAnnotation(a, name));\n  }\n}\n\nfinal class ProtocolMessageField {\n  final String dartName;\n  final String dartType;\n  final String javaScriptName;\n\n  /// Whether this is the `type` field on `Message`.\n  ///\n  /// This field is auto-generated for each subtype.\n  final bool isMessageType;\n\n  final TransferMode transferMode;\n\n  ProtocolMessageField({\n    required this.dartName,\n    required this.dartType,\n    required this.javaScriptName,\n    this.isMessageType = false,\n    this.transferMode = TransferMode.clone,\n  });\n}\n\nenum TransferMode { clone, move, moveIfArrayBuffer }\n\n/// Parsed `_UniqueFIeldNames` constants, used to resolve `@JS` annotations.\nfinal class UniqueFieldNames {\n  final Map<String, String> fieldValues = {};\n\n  void readFrom(ClassDeclaration declaration) {\n    for (final child in declaration.body.childEntities) {\n      if (child is FieldDeclaration) {\n        for (final variable in child.fields.variables) {\n          final value = variable.initializer as SimpleStringLiteral;\n          fieldValues[variable.name.lexeme] = value.value;\n        }\n      }\n    }\n  }\n\n  String? readJsAnnotation(Annotation annotation) {\n    if (annotation.name.name == 'JS') {\n      final arg = annotation.arguments!.arguments[0];\n      if (arg is SimpleStringLiteral) {\n        return arg.value;\n      }\n      if (arg is PrefixedIdentifier && arg.prefix.name == '_UniqueFieldNames') {\n        return fieldValues[arg.identifier.name]!;\n      }\n\n      throw 'Unsupported @JS argument';\n    }\n\n    return null;\n  }\n}\n\nfinal class DartCodeGenerator {\n  final buffer = StringBuffer(\"\"\"\n// Generated by tool/protocol_generator.dart, do not modify by hand.\nimport 'dart:async';\nimport 'dart:js_interop';\n\nimport 'package:web/web.dart' show AbortSignal;\nimport 'package:sqlite3/wasm.dart' show WorkerOptions;\n\nimport '../channel.dart';\nimport 'messages.dart';\n\n\"\"\");\n\n  String get content {\n    final formatter = DartFormatter(languageVersion: Version(3, 10, 0));\n    try {\n      return formatter.format(buffer.toString());\n    } on Object {\n      // Probably a syntax error in sources, we want to inspect that further.\n      return buffer.toString();\n    }\n  }\n\n  void generate(List<ProtocolMessageType> types) {\n    _generateMessageTypeEnum(types);\n    _generateRequestHandler(types);\n    _generateFactories(types);\n    _generateExtractTransferrable(types);\n    _generateDispatchMessage(types);\n  }\n\n  void _generateMessageTypeEnum(List<ProtocolMessageType> types) {\n    buffer.writeln('enum MessageType<T extends Message> {');\n    for (final type in types) {\n      if (type.isAbstract) continue;\n\n      buffer.writeln('  ${type.messageTypeName}<${type.name}>(),');\n    }\n    buffer.writeln('}');\n  }\n\n  void _generateRequestHandler(List<ProtocolMessageType> types) {\n    buffer.writeln('abstract base class RequestHandler {');\n    for (final type in types) {\n      if (type.isAbstract || !type.inheritsFromName('Request')) continue;\n\n      buffer\n        ..writeln(\n          'FutureOr<Response> ${type.requestMethodName}'\n          '(${type.name} request, AbortSignal abortSignal) => '\n          '_unsupportedRequest(request);',\n        )\n        ..writeln();\n    }\n\n    buffer.writeln('Future<Never> _unsupportedRequest(Request request) {');\n    buffer.writeln(\n      \"  return Future.error(ArgumentError('Unsupported request \\${request.type}'));\",\n    );\n    buffer.writeln('}');\n\n    buffer.writeln(\n      'FutureOr<Response> dispatchRequest(Request request, AbortSignal abortSignal) {',\n    );\n    buffer.writeln('switch(request.type) {');\n    for (final type in types) {\n      if (type.isAbstract || !type.inheritsFromName('Request')) continue;\n\n      buffer.write(\"case '${type.messageTypeName}': return \");\n      buffer.writeln(\n        '${type.requestMethodName}(request as ${type.name}, abortSignal);',\n      );\n    }\n    buffer.writeln('default: return _unsupportedRequest(request);');\n    buffer.writeln('}');\n    buffer.writeln('}');\n\n    buffer.writeln('}');\n  }\n\n  void _generateFactories(List<ProtocolMessageType> types) {\n    for (final type in types) {\n      if (type.isAbstract) continue;\n      final name = type.name;\n\n      buffer\n        ..writeln('@anonymous')\n        ..writeln('extension type _$name._($name _) implements $name {')\n        ..writeln('external factory _$name({');\n\n      for (final field in type.allFields) {\n        buffer\n          ..write(\" @JS('${field.javaScriptName}')\")\n          ..write('required ${field.dartType} ${field.dartName},');\n      }\n\n      buffer\n        ..writeln('});')\n        ..writeln('}')\n        ..write(type.name)\n        ..write(' new${type.name}({');\n\n      final defaultValues = <String, String>{};\n      for (final field in type.allFields) {\n        var hasDefault = false;\n\n        if (field.isMessageType) {\n          defaultValues[field.dartName] = \"'${type.messageTypeName}'\";\n          hasDefault = true;\n          continue;\n        }\n\n        if (!hasDefault) {\n          buffer.write('required ');\n        }\n\n        buffer\n          ..write('${field.dartType}  ')\n          ..write(field.dartName)\n          ..writeln(', ');\n      }\n\n      buffer\n        ..writeln('}) {')\n        ..write('  return _$name(');\n\n      for (final field in type.allFields) {\n        buffer\n          ..write(field.dartName)\n          ..write(': ');\n\n        if (defaultValues[field.dartName] case final defaultValue?) {\n          buffer.write(defaultValue);\n        } else {\n          buffer.write(field.dartName);\n        }\n\n        buffer.writeln(', ');\n      }\n\n      buffer\n        ..writeln(');')\n        ..writeln('}');\n    }\n  }\n\n  void _generateExtractTransferrable(List<ProtocolMessageType> types) {\n    buffer\n      ..writeln(r\"@JS('ArrayBuffer')\")\n      ..writeln('external JSFunction get _arrayBufferConstructor;')\n      ..writeln('JSArray<JSAny> extractTransferrable(Message message) {')\n      ..writeln('final result = JSArray<JSAny>();')\n      ..writeln('switch (message.type) {');\n\n    for (final type in types) {\n      if (type.isAbstract) continue;\n\n      final statements = <String>[];\n      String addToResult(String expr) {\n        return 'result.add($expr);';\n      }\n\n      for (final field in type.allFields) {\n        final expr = '(message as ${type.name}).${field.dartName}';\n\n        switch (field.transferMode) {\n          case TransferMode.clone:\n            // Don't include this field in transferrable\n            continue;\n          case TransferMode.move:\n            final isNullable = field.dartType.endsWith('?');\n            if (field.dartType == 'WebEndpoint') {\n              statements.add(addToResult('$expr.port'));\n            } else if (isNullable) {\n              statements.add('if ($expr case final e?) ${addToResult('e')}');\n            } else {\n              statements.add(addToResult(expr));\n            }\n          case TransferMode.moveIfArrayBuffer:\n            statements.add(\n              'if ($expr case JSAny a when a.instanceof(_arrayBufferConstructor)) {${addToResult('a')}}',\n            );\n        }\n      }\n\n      if (statements.isNotEmpty) {\n        buffer.writeln(\n          \"case '${type.messageTypeName}': ${statements.join()}break;\",\n        );\n      }\n    }\n\n    buffer\n      ..writeln('}')\n      ..writeln('return result;')\n      ..writeln('}');\n  }\n\n  void _generateDispatchMessage(List<ProtocolMessageType> types) {\n    final typesDirectlyExtendingMessage = types\n        .where(\n          (t) => switch (t.parent) {\n            ProtocolMessageType(name: 'Message') => true,\n            _ => false,\n          },\n        )\n        .toList();\n\n    Iterable<ProtocolMessageType> subtypesOf(ProtocolMessageType type) {\n      return types.where((sub) => sub.inheritsFromName(type.name));\n    }\n\n    typesDirectlyExtendingMessage.sortBy((parent) => subtypesOf(parent).length);\n\n    buffer.writeln('T dispatchMessage<T>(Message msg, {');\n    for (final type in typesDirectlyExtendingMessage) {\n      buffer.writeln('  required T Function(${type.name}) when${type.name},');\n    }\n    buffer\n      ..writeln('})  {')\n      ..writeln('switch (msg.type) {');\n\n    for (final type in typesDirectlyExtendingMessage) {\n      if (type != typesDirectlyExtendingMessage.last) {\n        var subTypes = subtypesOf(type);\n        if (!type.isAbstract) {\n          subTypes = subTypes.followedBy([type]);\n        }\n\n        for (final subType in subTypes) {\n          buffer.writeln(\"case '${subType.messageTypeName}':\");\n        }\n      } else {\n        // We've covered all other cases, so handle this one as a default.\n        buffer.write('default:');\n      }\n\n      buffer.writeln('return when${type.name}(msg as ${type.name});');\n    }\n\n    buffer\n      ..writeln('}')\n      ..writeln('}');\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/tool/server.dart",
    "content": "import 'dart:convert';\nimport 'dart:io';\nimport 'dart:isolate';\n\nimport 'package:build_daemon/client.dart';\nimport 'package:build_daemon/constants.dart';\nimport 'package:build_daemon/data/build_status.dart';\nimport 'package:build_daemon/data/build_target.dart';\nimport 'package:collection/collection.dart';\nimport 'package:package_config/package_config.dart';\nimport 'package:path/path.dart' as p;\nimport 'package:shelf/shelf_io.dart';\nimport 'package:shelf_proxy/shelf_proxy.dart';\nimport 'package:webdriver/async_io.dart';\nimport 'package:sqlite3_web/src/types.dart';\nimport 'package:webdriver/support/async.dart';\n\nvoid main(List<String> args) async {\n  final target = switch (args) {\n    [] => 'web',\n    [final target] => target,\n    _ => throw ArgumentError('Expected no args or one (the folder to serve)'),\n  };\n\n  await TestAssetServer.start(target: target);\n  print('Serving $target/ on http://localhost:8080/');\n}\n\nclass TestAssetServer {\n  final BuildDaemonClient buildRunner;\n  late final HttpServer server;\n\n  TestAssetServer(this.buildRunner);\n\n  Future<void> close() async {\n    await server.close(force: true);\n    await buildRunner.close();\n  }\n\n  static Future<TestAssetServer> start({String target = 'web'}) async {\n    final packageConfig = await loadPackageConfigUri(\n      (await Isolate.packageConfig)!,\n    );\n    final ownPackage = packageConfig['sqlite3_web']!.root;\n    var packageDir = ownPackage.toFilePath(windows: Platform.isWindows);\n    if (packageDir.endsWith('/')) {\n      packageDir = packageDir.substring(0, packageDir.length - 1);\n    }\n\n    final buildRunner = await BuildDaemonClient.connect(packageDir, [\n      Platform.executable, // dart\n      'run',\n      'build_runner',\n      'daemon',\n    ], logHandler: (log) => print(log.message));\n\n    buildRunner\n      ..registerBuildTarget(DefaultBuildTarget((b) => b.target = target))\n      ..startBuild();\n\n    // Wait for the build to complete, so that the server we return is ready to\n    // go.\n    await buildRunner.buildResults.firstWhere((b) {\n      final buildResult = b.results.firstWhereOrNull((r) => r.target == target);\n      return buildResult != null && buildResult.status != BuildStatus.started;\n    });\n\n    final assetServerPortFile = File(\n      p.join(daemonWorkspace(packageDir), '.asset_server_port'),\n    );\n    final assetServerPort = int.parse(await assetServerPortFile.readAsString());\n\n    final server = TestAssetServer(buildRunner);\n\n    final proxy = proxyHandler('http://localhost:$assetServerPort/$target/');\n    server.server = await serve(\n      (request) async {\n        final pathSegments = request.url.pathSegments;\n\n        if (pathSegments.isNotEmpty && pathSegments[0] == 'no-coep') {\n          // Serve stuff under /no-coep like the regular website, but without\n          // adding the security headers.\n          return await proxy(request.change(path: 'no-coep'));\n        } else {\n          final response = await proxy(request);\n\n          if (!request.url.path.startsWith('/no-coep')) {\n            return response.change(\n              headers: {\n                // Needed for shared array buffers to work\n                'Cross-Origin-Opener-Policy': 'same-origin',\n                'Cross-Origin-Embedder-Policy': 'require-corp',\n              },\n            );\n          }\n\n          return response;\n        }\n      },\n      'localhost',\n      8080,\n    );\n\n    return server;\n  }\n}\n\nclass TestWebDriver {\n  final TestAssetServer server;\n  final WebDriver driver;\n\n  TestWebDriver(this.server, this.driver);\n\n  /// Wait for the Dart code on the test page to finish its main method, which\n  /// it signals by creating an element.\n  Future<void> waitReady() async {\n    await waitFor(() => driver.findElement(By.id('ready')));\n  }\n\n  Future<bool> isDart2wasm() async {\n    return await driver.executeAsync('isDart2wasm(\"\", arguments[0])', []);\n  }\n\n  Future<\n    ({\n      Set<DatabaseImplementation> impls,\n      Set<MissingBrowserFeature> missingFeatures,\n      List<ExistingDatabase> existing,\n    })\n  >\n  probeImplementations() async {\n    final rawResult = await driver.executeAsync(\n      'detectImplementations(\"\", arguments[0])',\n      [],\n    );\n    final result = json.decode(rawResult);\n\n    return (\n      impls: {\n        for (final entry in result['impls'])\n          DatabaseImplementation.values.byName(entry as String),\n      },\n      missingFeatures: {\n        for (final entry in result['missing'])\n          MissingBrowserFeature.values.byName(entry),\n      },\n      existing: <ExistingDatabase>[\n        for (final entry in result['existing'])\n          (StorageMode.values.byName(entry[0] as String), entry[1] as String),\n      ],\n    );\n  }\n\n  Future<DatabaseImplementation> openDatabase({\n    DatabaseImplementation? implementation,\n    bool onlyOpenVfs = false,\n  }) async {\n    final desc = implementation?.name;\n    final method = onlyOpenVfs ? 'open_only_vfs' : 'open';\n    final res =\n        await driver.executeAsync('$method(arguments[0], arguments[1])', [desc])\n            as String?;\n\n    // This returns the implementation actually chosen.\n    return DatabaseImplementation.values.byName(res!);\n  }\n\n  Future<void> closeDatabase() async {\n    await driver.executeAsync(\"close('', arguments[0])\", []);\n  }\n\n  Future<({int updates, int commits, int rollbacks})> countEvents() async {\n    final result = await driver.executeAsync(\n      'get_updates(\"\", arguments[0])',\n      [],\n    );\n    return (\n      updates: result[0] as int,\n      commits: result[1] as int,\n      rollbacks: result[2] as int,\n    );\n  }\n\n  Future<void> execute(String sql) async {\n    await driver.executeAsync('exec(arguments[0], arguments[1])', [sql]);\n  }\n\n  Future<void> testSecond() async {\n    final res = await driver.executeAsync('test_second(\"\", arguments[0])', []);\n    if (res != true) {\n      throw 'test_second failed! More information may be available in the console.';\n    }\n  }\n\n  Future<int?> assertFile(bool shouldExist) async {\n    final res = await driver.executeAsync(\n      'assert_file(arguments[0], arguments[1])',\n      [shouldExist.toString()],\n    );\n    res!;\n\n    if (res == false) {\n      throw 'assertFile failed! Expected $shouldExist, match return was $res';\n    }\n\n    if (res is int) {\n      return res;\n    } else {\n      return null;\n    }\n  }\n\n  Future<int> customRequest() async {\n    final res = await driver.executeAsync(\n      'custom_request(\"\", arguments[0])',\n      [],\n    );\n\n    return res as int;\n  }\n\n  Future<void> flush() async {\n    final result = await driver.executeAsync('flush(\"\", arguments[0])', []);\n    if (result != true) {\n      throw 'flush() failed: $result';\n    }\n  }\n\n  Future<void> checkReadWrite() async {\n    final result = await driver.executeAsync(\n      'check_read_write(\"\", arguments[0])',\n      [],\n    );\n    if (result != null) {\n      throw 'check_read_write() failed: $result';\n    }\n  }\n\n  Future<void> delete(StorageMode mode) async {\n    await driver.executeAsync('delete_db(arguments[0], arguments[1])', [\n      mode.name,\n    ]);\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/web/controller.dart",
    "content": "import 'dart:js_interop';\n\nimport 'package:sqlite3/common.dart';\nimport 'package:sqlite3/src/wasm/sqlite3.dart';\nimport 'package:sqlite3_web/sqlite3_web.dart';\n\nfinal class ExampleController extends DatabaseController {\n  final bool isInWorker;\n\n  ExampleController({required this.isInWorker});\n\n  @override\n  Future<JSAny?> handleCustomRequest(\n    ClientConnection connection,\n    CustomClientRequest request,\n  ) async {\n    return null;\n  }\n\n  @override\n  Future<WorkerDatabase> openDatabase(\n    WasmSqlite3 sqlite3,\n    String path,\n    String vfs,\n    JSAny? additionalData,\n  ) async {\n    final raw = sqlite3.open(path, vfs: vfs);\n    raw.createFunction(\n      functionName: 'database_host',\n      function: (args) => isInWorker ? 'worker' : 'document',\n      argumentCount: const AllowedArgumentCount(0),\n    );\n    raw.createFunction(\n      functionName: 'additional_data',\n      function: (args) => (additionalData as JSString).toDart,\n      argumentCount: const AllowedArgumentCount(0),\n    );\n\n    return ExampleDatabase(database: raw);\n  }\n}\n\nfinal class ExampleDatabase extends WorkerDatabase {\n  @override\n  final CommonDatabase database;\n\n  ExampleDatabase({required this.database});\n\n  @override\n  Future<JSAny?> handleCustomRequest(\n    ClientConnection connection,\n    CustomClientRequest request,\n  ) async {\n    final response =\n        ((await connection.customRequest(null)) as JSNumber).toDartInt;\n\n    return (2 * response).toJS;\n  }\n}\n"
  },
  {
    "path": "sqlite3_web/web/index.html",
    "content": "<!DOCTYPE html>\n\n<html>\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"scaffolded-by\" content=\"https://github.com/dart-lang/sdk\">\n    <title>web_wasm</title>\n    <script defer src=\"main.js\"></script>\n</head>\n\n<body>\n\n<h1><code>package:sqlite3_web</code> integration tests</h1>\n<p>\nWelcome! For integration tests, this page is opened through a web driver, and scripts are injected\nto run tests. To test that things are generally working, you can start a quick self-check here.\nResults are logged to the console.\n\n<button id=\"selfcheck\">Check that this browser works</button>\n\n<a href=\"/\" target=\"_blank\" id=\"newtab\">Open this page in a new tab</a>\n</p>\n\n</body>\n</html>\n"
  },
  {
    "path": "sqlite3_web/web/main.dart",
    "content": "import 'dart:convert';\nimport 'dart:js_interop';\nimport 'dart:js_interop_unsafe';\nimport 'dart:typed_data';\n\nimport 'package:sqlite3_web/sqlite3_web.dart';\nimport 'package:sqlite3_web/src/client.dart';\nimport 'package:web/web.dart';\n\nimport 'controller.dart';\n\nfinal sqlite3WasmUri = Uri.parse('sqlite3.wasm');\nfinal workerUri = Uri.parse('worker.dart.js');\nconst databaseName = 'database';\nconst additionalOptions = 'test-additional-options';\n\nWebSqlite? webSqlite;\n\nDatabase? database;\nint updates = 0;\nint commits = 0;\nint rollbacks = 0;\nbool listeningForUpdates = false;\n\nvoid main() {\n  _addCallbackForWebDriver('isDart2wasm', (_) async {\n    const isWasm = bool.fromEnvironment('dart.tool.dart2wasm');\n    return isWasm.toJS;\n  });\n  _addCallbackForWebDriver('detectImplementations', _detectImplementations);\n  _addCallbackForWebDriver('close', (arg) async {\n    await database?.dispose();\n    return null;\n  });\n  _addCallbackForWebDriver('get_updates', (arg) async {\n    listenForUpdates();\n    return [updates.toJS, commits.toJS, rollbacks.toJS].toJS;\n  });\n  _addCallbackForWebDriver('open', (arg) => _open(arg, false));\n  _addCallbackForWebDriver('open_only_vfs', (arg) => _open(arg, true));\n  _addCallbackForWebDriver('exec', _exec);\n  _addCallbackForWebDriver('test_second', (arg) async {\n    final sqlite = initializeSqlite();\n    // Open one database to occupy the database id of zero in the worker\n    final unused = await sqlite.connect(\n      'a',\n      DatabaseImplementation.inMemoryShared,\n    );\n    await unused.execute('CREATE TABLE unused (bar TEXT);');\n\n    // Then open another one\n    final first =\n        await sqlite.connect('b', DatabaseImplementation.inMemoryShared)\n            as RemoteDatabase;\n    await first.execute('CREATE TABLE foo (bar TEXT);');\n\n    final endpoint = await first.additionalConnection();\n    final second = await WebSqlite.connectToPort(endpoint) as RemoteDatabase;\n\n    // First and second should have different internal ids (that's what the\n    // setup with the unused database was trying to accomplish).\n    if (first.databaseId == second.databaseId) {\n      return 'Unexpected same id'.toJS;\n    }\n\n    await second.execute('SELECT * FROM foo;');\n\n    var receivedUpdates = 0;\n    second.updates.listen((_) => receivedUpdates++);\n\n    await first.execute('INSERT INTO foo VALUES (?)', parameters: ['a']);\n    await unused.execute('INSERT INTO unused VALUES (?)', parameters: ['a']);\n\n    await Future.delayed(const Duration(milliseconds: 200));\n\n    await unused.dispose();\n    await first.dispose();\n    await second.dispose();\n    // This should have received the update from the first database without\n    // receiving the one from the unrelated database.\n    return (receivedUpdates == 1).toJS;\n  });\n  _addCallbackForWebDriver('assert_file', (arg) async {\n    final vfs = database!.fileSystem;\n\n    final exists = await vfs.exists(FileType.database);\n    print('exists: $exists');\n    if (exists != bool.parse(arg!)) {\n      return false.toJS;\n    }\n\n    if (exists) {\n      // Try reading file contents\n      final buffer = await vfs.readFile(FileType.database);\n      return buffer.length.toJS;\n    }\n\n    return true.toJS;\n  });\n  _addCallbackForWebDriver('flush', (arg) async {\n    final vfs = database!.fileSystem;\n    await vfs.flush();\n    return true.toJS;\n  });\n  _addCallbackForWebDriver('delete_db', (arg) async {\n    final storage = StorageMode.values.byName(arg!);\n    await initializeSqlite().deleteDatabase(\n      name: databaseName,\n      storage: storage,\n    );\n    return true.toJS;\n  });\n  _addCallbackForWebDriver('check_read_write', (arg) async {\n    final vfs = database!.fileSystem;\n\n    final bytes = Uint8List(1024 * 128);\n    for (var i = 0; i < 128; i++) {\n      bytes[i * 1024] = i;\n    }\n\n    await vfs.writeFile(FileType.database, bytes);\n    await vfs.flush();\n    final result = await vfs.readFile(FileType.database);\n    if (result.length != bytes.length) {\n      return 'length mismatch'.toJS;\n    }\n\n    for (var i = 0; i < 128; i++) {\n      if (result[i * 1024] != i) {\n        return 'mismatch, i=$i, byte ${result[i * 1024]}'.toJS;\n      }\n    }\n\n    return null;\n  });\n  _addCallbackForWebDriver('custom_request', (arg) async {\n    return database!.customRequest(null);\n  });\n\n  document.getElementById('selfcheck')?.onClick.listen((event) async {\n    print('starting');\n    final sqlite = initializeSqlite();\n    final database = await sqlite.connectToRecommended(databaseName);\n\n    print(\n      'selected storage: ${database.storage} through ${database.access} (${database.implementation})',\n    );\n    print('missing features: ${database.features.missingFeatures}');\n  });\n\n  document.body!.appendChild(HTMLDivElement()..id = 'ready');\n}\n\nvoid _addCallbackForWebDriver(\n  String name,\n  Future<JSAny?> Function(String?) impl,\n) {\n  globalContext.setProperty(\n    name.toJS,\n    (JSString? arg, JSFunction callback) {\n      Future(() async {\n        JSAny? result;\n\n        try {\n          result = await impl(arg?.toDart);\n        } catch (e, s) {\n          final console = globalContext['console']! as JSObject;\n          console.callMethod(\n            'error'.toJS,\n            e.toString().toJS,\n            s.toString().toJS,\n          );\n        }\n\n        callback.callAsFunction(null, result);\n      });\n    }.toJS,\n  );\n}\n\nWebSqlite initializeSqlite() {\n  return webSqlite ??= WebSqlite.open(\n    workers: WorkerConnector.defaultWorkers(workerUri),\n    wasmModule: sqlite3WasmUri,\n    controller: ExampleController(isInWorker: false),\n    handleCustomRequest: (request) async {\n      return 21.toJS;\n    },\n  );\n}\n\nFuture<JSString> _detectImplementations(String? _) async {\n  final instance = initializeSqlite();\n  final result = await instance.runFeatureDetection(databaseName: 'database');\n\n  return json.encode({\n    'impls': result.availableImplementations.map((r) => r.name).toList(),\n    'missing': result.missingFeatures.map((r) => r.name).toList(),\n    'existing': result.existingDatabases.map((r) => [r.$1.name, r.$2]).toList(),\n  }).toJS;\n}\n\nFuture<JSAny?> _open(String? implementationName, bool onlyOpenVfs) async {\n  final sqlite = initializeSqlite();\n  Database db;\n  var returnValue = implementationName;\n\n  if (implementationName != null) {\n    db = await sqlite.connect(\n      databaseName,\n      DatabaseImplementation.values.byName(implementationName),\n      onlyOpenVfs: onlyOpenVfs,\n      additionalOptions: additionalOptions.toJS,\n    );\n  } else {\n    final result = await sqlite.connectToRecommended(\n      databaseName,\n      onlyOpenVfs: onlyOpenVfs,\n      additionalOptions: additionalOptions.toJS,\n    );\n    db = result.database;\n    returnValue = result.implementation.name;\n  }\n\n  database = db;\n\n  // Make sure it works!\n  if (!onlyOpenVfs) {\n    final result = await db.select(\n      'SELECT database_host() as host, additional_data() as data;',\n    );\n    final rows = result.result;\n    if (rows.length != 1) {\n      throw 'unexpected row count';\n    }\n    final row = rows[0];\n    if (row['data'] != additionalOptions) {\n      throw 'unexpected data: $row';\n    }\n\n    listenForUpdates();\n  }\n\n  return returnValue?.toJS;\n}\n\nvoid listenForUpdates() {\n  if (!listeningForUpdates) {\n    listeningForUpdates = true;\n    database!.updates.listen((_) => updates++);\n    database!.commits.listen((_) => commits++);\n    database!.rollbacks.listen((_) => rollbacks++);\n  }\n}\n\nFuture<JSAny?> _exec(String? sql) async {\n  await database!.execute(sql!);\n  return null;\n}\n"
  },
  {
    "path": "sqlite3_web/web/main.js",
    "content": "(async () => {\n    const thisScript = document.currentScript;\n    const params = new URL(document.location.toString()).searchParams;\n    const wasmOption = params.get(\"wasm\");\n\n    function relativeURL(ref) {\n      const base = thisScript?.src ?? document.baseURI;\n      return new URL(ref, base).toString();\n    }\n\n    if (wasmOption == \"1\") {\n        let { compileStreaming } = await import(\"./main.mjs\");\n\n        let app = await compileStreaming(fetch(relativeURL(\"main.wasm\")));\n        let module = await app.instantiate({});\n        module.invokeMain();\n    } else {\n        const scriptTag = document.createElement(\"script\");\n        scriptTag.type = \"application/javascript\";\n        scriptTag.src = relativeURL(\"./main.dart2js.js\");\n        document.head.append(scriptTag);\n    }\n})();\n"
  },
  {
    "path": "sqlite3_web/web/worker.dart",
    "content": "import 'package:sqlite3_web/sqlite3_web.dart';\n\nimport 'controller.dart';\n\nvoid main() {\n  WebSqlite.workerEntrypoint(controller: ExampleController(isInWorker: true));\n}\n"
  },
  {
    "path": "tool/build_sqlite.dart",
    "content": "import 'dart:async';\nimport 'dart:convert';\nimport 'dart:io';\n\nimport 'package:code_assets/code_assets.dart';\nimport 'package:file/local.dart';\nimport 'package:hooks/hooks.dart';\nimport 'package:pool/pool.dart';\nimport 'package:path/path.dart' as p;\n\nimport '../sqlite3/hook/build.dart' as hook;\n\nfinal _limitConcurrency = Pool(Platform.numberOfProcessors);\n\n/// Invokes `package:sqlite3` build hooks for multiple operating systems and\n/// architectures, merging outputs into `sqlite3-compiled/`.\nvoid main(List<String> args) async {\n  Directory.current = Directory('sqlite3');\n\n  var operatingSystems = args.map(OS.fromString).toList();\n  if (operatingSystems.isEmpty) {\n    if (Platform.isLinux) {\n      operatingSystems = [OS.linux, OS.android];\n    } else if (Platform.isMacOS) {\n      operatingSystems = [OS.macOS, OS.iOS];\n    } else if (Platform.isWindows) {\n      operatingSystems = [OS.windows];\n    }\n  }\n\n  if (operatingSystems.isEmpty) {\n    print('Usage: dart run tool/build_sqlite3.dart <operating systems...>');\n    exit(1);\n  }\n  print('Compiling for $operatingSystems');\n\n  const fs = LocalFileSystem();\n\n  final outputDirectory =\n      fs.currentDirectory.parent.childDirectory('sqlite-compiled');\n  print('Compiling to ${outputDirectory.path}');\n\n  if (await outputDirectory.exists()) {\n    await outputDirectory.delete(recursive: true);\n  }\n  await outputDirectory.create();\n\n  final buildTasks = <Future<void>>[];\n\n  for (final mode in ['sqlite3', 'sqlite3mc']) {\n    final sourcePath = fs.currentDirectory.parent\n        .childDirectory('sqlite-src')\n        .childDirectory(mode)\n        .childFile(mode == 'sqlite3' ? 'sqlite3.c' : 'sqlite3mc_amalgamation.c')\n        .path;\n\n    Future<void> buildAndCopy(OS os, Architecture architecture,\n        {IOSCodeConfig? iOS, String? osNameOverride}) async {\n      final osName = osNameOverride ?? os.name;\n      CCompilerConfig? compilerConfig;\n\n      if (os == OS.iOS || os == OS.macOS) {\n        // Ensure we use an XCode toolchain to avoid issues when uploading apps\n        // to AppStore connect.\n        final xcode = Process.runSync('xcode-select', ['-p']);\n        final [path] = const LineSplitter().convert(xcode.stdout);\n\n        Uri tool(String name) {\n          return Uri.file(p.join(\n              path, 'Toolchains/XcodeDefault.xctoolchain/usr/bin/$name'));\n        }\n\n        compilerConfig = CCompilerConfig(\n          archiver: tool('ar'),\n          compiler: tool('clang'),\n          linker: tool('ld'),\n        );\n      }\n\n      await testBuildHook(\n        extensions: [\n          CodeAssetExtension(\n            cCompiler: compilerConfig,\n            targetArchitecture: architecture,\n            targetOS: os,\n            linkModePreference: LinkModePreference.dynamic,\n            iOS: iOS,\n            macOS: os == OS.macOS ? MacOSCodeConfig(targetVersion: 13) : null,\n            android:\n                os == OS.android ? AndroidCodeConfig(targetNdkApi: 24) : null,\n          )\n        ],\n        linkingEnabled: true,\n        mainMethod: hook.main,\n        check: (_, output) async {\n          final name =\n              os.dylibFileName('${mode}.${architecture.name}.${osName}');\n          for (final file in output.assets.code) {\n            await fs\n                .file(file.file!)\n                .copy(outputDirectory.childFile(name).path);\n          }\n        },\n        userDefines: PackageUserDefines(\n            workspacePubspec: PackageUserDefinesSource(\n          defines: {\n            'source': 'source',\n            'path': p.relative(sourcePath, from: fs.currentDirectory.path),\n          },\n          basePath: fs.currentDirectory.uri,\n        )),\n      );\n    }\n\n    void scheduleTask(Future<void> Function() task) {\n      buildTasks.add(_limitConcurrency.withResource(task));\n    }\n\n    for (final os in operatingSystems) {\n      for (final architecture in _osToAbis[os]!) {\n        // Compiling sqlite3mc for x86 on Linux does not work.\n        if (mode == 'sqlite3mc' &&\n            os == OS.linux &&\n            architecture == Architecture.ia32) {\n          continue;\n        }\n\n        scheduleTask(() => buildAndCopy(os, architecture,\n            iOS: IOSCodeConfig(targetSdk: IOSSdk.iPhoneOS, targetVersion: 12)));\n      }\n\n      if (os == OS.iOS) {\n        // Also compile for iOS simulators\n        final simulatorConfig =\n            IOSCodeConfig(targetSdk: IOSSdk.iPhoneSimulator, targetVersion: 12);\n\n        scheduleTask(() => buildAndCopy(os, Architecture.arm64,\n            iOS: simulatorConfig, osNameOverride: 'ios_sim'));\n        scheduleTask(() => buildAndCopy(os, Architecture.x64,\n            iOS: simulatorConfig, osNameOverride: 'ios_sim'));\n      }\n    }\n  }\n\n  await Future.wait(buildTasks, eagerError: true);\n  print('Done building');\n}\n\nconst _osToAbis = {\n  OS.linux: [\n    Architecture.arm,\n    Architecture.arm64,\n    Architecture.ia32,\n    Architecture.x64,\n    Architecture.riscv64,\n  ],\n  OS.android: [\n    Architecture.arm,\n    Architecture.arm64,\n    Architecture.ia32,\n    Architecture.x64,\n  ],\n  OS.windows: [\n    Architecture.arm64,\n    Architecture.ia32,\n    Architecture.x64,\n  ],\n  OS.macOS: [\n    Architecture.arm64,\n    Architecture.x64,\n  ],\n  OS.iOS: [\n    Architecture.arm64,\n    // Note: There's a special check to also compile simulator builds for x64\n  ],\n};\n"
  },
  {
    "path": "tool/build_with_sanitizers.dart",
    "content": "import 'dart:io';\n\nimport 'package:file/local.dart';\nimport 'package:hooks/hooks.dart';\nimport 'package:code_assets/code_assets.dart';\nimport 'package:native_toolchain_c/native_toolchain_c.dart';\nimport 'package:path/path.dart' as p;\nimport 'package:pool/pool.dart';\n\nimport 'package:sqlite3/src/hook/description.dart';\nimport '../sqlite3/hook/build.dart' as hook;\n\nfinal _limitConcurrency = Pool(Platform.numberOfProcessors);\n\n/// Builds `libsqlite3.so` variants for X64 Linux with different sanitizers\n/// enabled.\nvoid main() async {\n  const fs = LocalFileSystem();\n  Directory.current = Directory('sqlite3');\n\n  final sourcePath = fs.currentDirectory.parent\n      .childDirectory('sqlite-src')\n      .childDirectory('sqlite3')\n      .childFile('sqlite3.c')\n      .path;\n\n  final outputDirectory =\n      fs.currentDirectory.parent.childDirectory('sqlite-sanitized');\n  if (await outputDirectory.exists()) {\n    await outputDirectory.delete(recursive: true);\n  }\n  await outputDirectory.create();\n\n  Future<void> compileWithSanitizer(String sanitizer) async {\n    await testBuildHook(\n      extensions: [\n        CodeAssetExtension(\n          targetArchitecture: Architecture.x64,\n          targetOS: OS.linux,\n          linkModePreference: LinkModePreference.dynamic,\n          cCompiler: CCompilerConfig(\n            archiver: _which('llvm-ar'),\n            compiler: _which('clang'),\n            linker: _which('lld'),\n          ),\n        )\n      ],\n      linkingEnabled: true,\n      mainMethod: (args) {\n        return build(args, (input, output) async {\n          final sourceFile =\n              p.relative(sourcePath, from: fs.currentDirectory.path);\n          final library = CBuilder.library(\n            name: 'sqlite3',\n            packageName: 'sqlite3',\n            assetName: hook.name,\n            sources: [sourceFile],\n            includes: [p.dirname(sourceFile)],\n            defines: {\n              'SQLITE_ENABLE_API_ARMOR': '1',\n              ...CompilerDefines.defaults(false),\n            },\n            flags: [\n              '-fsanitize=$sanitizer',\n              '-fno-omit-frame-pointer',\n              // It looks like os calls like stat() don't count as initializing\n              // memory, so we have to exclude SQLite itself from msan tests.\n              // But we can already assume it to be correct, we mainly want to\n              // test Dart parts.\n              if (sanitizer == 'memory')\n                '-fsanitize-ignorelist=../native_tests/ignorelist.txt'\n            ],\n          );\n\n          await library.run(input: input, output: output);\n        });\n      },\n      check: (_, output) async {\n        final name = 'sqlite3.san_$sanitizer.so';\n        for (final file in output.assets.code) {\n          await fs.file(file.file!).copy(outputDirectory.childFile(name).path);\n        }\n      },\n    );\n  }\n\n  await [\n    for (final sanitizer in ['address', 'memory', 'thread'])\n      _limitConcurrency.withResource(() => compileWithSanitizer(sanitizer)),\n  ].wait;\n}\n\nUri _which(String tool) {\n  final result = Process.runSync('which', [tool]);\n  if (result.exitCode != 0) {\n    throw 'Tool not found: $tool';\n  }\n\n  final path = (result.stdout as String).trim();\n  return Uri.file(path);\n}\n"
  },
  {
    "path": "tool/download_sqlite.dart",
    "content": "import 'dart:io';\n\n// Note: When updating these sources, also change\n// sqlite3_wasm_build/src/CMakeLists.txt\nconst sqlitePath = 'sqlite-amalgamation-3530000';\nconst sqliteSource = 'https://sqlite.org/2026/$sqlitePath.zip';\nconst sqliteMultipleCiphersSource =\n    'https://github.com/utelle/SQLite3MultipleCiphers/releases/download/v2.3.3/sqlite3mc-2.3.3-sqlite-3.53.0-amalgamation.zip';\n\nconst tmpDir = 'tmp';\n\n/// This runs as part of a GitHub actions workflow in this repository. It's not\n/// really supposed to be used outside of that, but can be used to reproduce\n/// what hooks are doing in the CI.\nvoid main(List<String> args) async {\n  await Directory(tmpDir).create();\n\n  await _downloadAndExtract(sqliteSource, 'sqlite3');\n  await _downloadAndExtract(sqliteMultipleCiphersSource, 'sqlite3mc');\n\n  await Directory('sqlite-src').create();\n  await Directory('sqlite-src/sqlite3mc').create();\n  await File('$tmpDir/sqlite3mc_amalgamation.h')\n      .copy('sqlite-src/sqlite3mc/sqlite3mc_amalgamation.h');\n  await File('$tmpDir/sqlite3mc_amalgamation.c')\n      .copy('sqlite-src/sqlite3mc/sqlite3mc_amalgamation.c');\n\n  await Directory('sqlite-src/sqlite3').create();\n  await File('$tmpDir/$sqlitePath/sqlite3.h')\n      .copy('sqlite-src/sqlite3/sqlite3.h');\n  await File('$tmpDir/$sqlitePath/sqlite3.c')\n      .copy('sqlite-src/sqlite3/sqlite3.c');\n  await File('$tmpDir/$sqlitePath/sqlite3ext.h')\n      .copy('sqlite-src/sqlite3/sqlite3ext.h');\n}\n\nFuture<void> _downloadAndExtract(String url, String filename) async {\n  await _run('curl -L $url --output $filename.zip', workingDirectory: tmpDir);\n  await _run('unzip $filename.zip', workingDirectory: tmpDir);\n}\n\nFuture<void> _run(String command, {String? workingDirectory}) async {\n  print('Running $command');\n\n  final proc = await Process.start(\n    'sh',\n    ['-c', command],\n    mode: ProcessStartMode.inheritStdio,\n    workingDirectory: workingDirectory,\n  );\n  final exitCode = await proc.exitCode;\n\n  if (exitCode != 0) {\n    exit(exitCode);\n  }\n}\n"
  },
  {
    "path": "tool/hook_overrides.dart",
    "content": "import 'dart:io';\n\nimport 'package:path/path.dart' as p;\n\n/// Adds a `hooks` section to the `pubspec.yaml` of the directory the script is\n/// running in to customize how `package:sqlite3` loads `libsqlite3`.\nvoid main(List<String> args) async {\n  for (final path in ['pubspec.yaml', 'examples/pubspec.yaml']) {\n    Process.runSync('git', ['restore', '--', path]);\n\n    final out = await File(path).openWrite(mode: FileMode.append);\n    final [mode] = args;\n    switch (mode) {\n      case 'system':\n        out.write('''\nhooks:\n  user_defines:\n    sqlite3:\n      source: system\n''');\n      case 'system-os-specific':\n        out.write('''\nhooks:\n  user_defines:\n    sqlite3:\n      source: system\n      name_linux: sqlite3\n      name_macos: sqlite3\n      name_windows: winsqlite3\n      name: bogus_value_to_fail_if_selected\n''');\n      case 'compiled':\n        final outPath = p.relative('sqlite-compiled', from: p.dirname(path));\n\n        out.write('''\nhooks:\n  user_defines:\n    sqlite3:\n      source: test-sqlite3\n      directory: $outPath/\n''');\n      case 'compiled-ciphers':\n        final outPath = p.relative('sqlite-compiled', from: p.dirname(path));\n\n        out.write('''\nhooks:\n  user_defines:\n    sqlite3:\n      source: test-sqlite3mc\n      directory: $outPath/\n''');\n      default:\n        throw 'Unsupported mode, can use system, system-os-specific, '\n            'compiled, compiled-ciphers';\n    }\n\n    await out.flush();\n    await out.close();\n  }\n}\n"
  },
  {
    "path": "tool/write_asset_hashes.dart",
    "content": "import 'dart:io';\n\nimport 'package:collection/collection.dart';\nimport 'package:crypto/crypto.dart';\nimport 'package:path/path.dart' as p;\n\n/// A GH actions step will download all sqlite3 binaries attached to a release\n/// to `sqlite/out`.\n///\n/// This program replaces `sqlite3/lib/src/hook/asset_hashes.dart` to reference\n/// those hashes.\n///\n/// When given an argument, that is interpreted as a tag name about to be\n/// released. It asserts the source matches what this script would generate.\nvoid main(List<String> args) {\n  final releaseTag = switch (args) {\n    [] => null,\n    [final arg] => arg,\n    _ => throw ArgumentError.value(\n        args.join(' '), 'args', 'Must be empty or the tag'),\n  };\n\n  final buffer = StringBuffer('''\n// This file contains hashes of SQLite binaries downloaded by the default hook.\n// For tests, it is replaced with actual assets. For releases, a pre-release\n// check asserts it's up-to-date.\n//\n// Generated by tool/write_asset_hashes.dart\n\n// dart format off\n// ignore: unnecessary_nullable_for_final_variable_declarations\nconst String? releaseTag = ${releaseTag == null ? 'null' : \"'$releaseTag'\"};\n\nconst Map<String, String> assetNameToSha256Hash = {\n''');\n\n  final files =\n      Directory('sqlite-compiled').listSync().whereType<File>().toList();\n  files.sortBy((f) => f.path);\n\n  for (final file in files) {\n    final name = p.basename(file.path);\n    final hash = sha256.convert(file.readAsBytesSync());\n\n    buffer.writeln(\"  '$name': '$hash',\");\n  }\n\n  buffer.writeln('};');\n\n  print(buffer);\n\n  final targetFile =\n      File(p.join('sqlite3', 'lib', 'src', 'hook', 'asset_hashes.dart'));\n  if (releaseTag == null) {\n    targetFile.writeAsStringSync(buffer.toString());\n  } else {\n    final actual = targetFile.readAsStringSync();\n    if (actual != buffer.toString()) {\n      print('Contents did not match expected outputs');\n      exit(1);\n    }\n  }\n}\n"
  }
]